diff --git a/.gitignore b/.gitignore
index 723ef36f..7e53d31f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
-.idea
\ No newline at end of file
+/.idea/
+/target/
diff --git a/README.md b/README.md
index 754f402d..3134dfbb 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,3 @@
-更新于 : 2023-02-09-13:43:10
+- 使用 java 进行刷题
+- 搭配 [leetcode 插件](https://github.com/shuzijun/leetcode-editor/blob/master/README_ZH.md) 使用
+- 笔记记录在 [notion](https://mmmwhy.notion.site/9defb52cde6f497abe2a8433ca344e66?v=dca562b492764428985b0c3bcdb2332e) 上
diff --git "a/leetcode/editor/cn/[1008]\345\211\215\345\272\217\351\201\215\345\216\206\346\236\204\351\200\240\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.py" "b/leetcode/editor/cn/[1008]\345\211\215\345\272\217\351\201\215\345\216\206\346\236\204\351\200\240\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.py"
deleted file mode 100644
index 757ca6cb..00000000
--- "a/leetcode/editor/cn/[1008]\345\211\215\345\272\217\351\201\215\345\216\206\346\236\204\351\200\240\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.py"
+++ /dev/null
@@ -1,50 +0,0 @@
-from typing import List, Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def bstFromPreorder(self, preorder: List[int]) -> Optional[TreeNode]:
- # 两侧封闭的
- return self.build(preorder, 0, len(preorder) - 1)
-
- def build(self, preorder, left, right) -> Optional[TreeNode]:
- if left > right:
- return
- root_node = TreeNode(preorder[left])
-
- # 找到 root_node 的左节点出来
- p = left + 1
- while p <= right and preorder[p] < preorder[left]:
- p += 1
- root_node.left = self.build(preorder, left + 1, p - 1)
- root_node.right = self.build(preorder, p, right)
-
- return root_node
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- res = solution.bstFromPreorder([8, 5, 1, 7, 10, 12])
- print(res.val)
-
- res = solution.bstFromPreorder([1, 3])
- print(res.val)
-
- res = solution.bstFromPreorder([4, 2])
- print(res.val)
diff --git "a/leetcode/editor/cn/[1020]\351\243\236\345\234\260\347\232\204\346\225\260\351\207\217.py" "b/leetcode/editor/cn/[1020]\351\243\236\345\234\260\347\232\204\346\225\260\351\207\217.py"
deleted file mode 100644
index d539191c..00000000
--- "a/leetcode/editor/cn/[1020]\351\243\236\345\234\260\347\232\204\346\225\260\351\207\217.py"
+++ /dev/null
@@ -1,46 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def numEnclaves(self, grid: List[List[int]]) -> int:
-
- m, n = len(grid), len(grid[0])
-
- # 第一列和最后一列
- for i in range(m):
- self.dfs(grid, i, 0)
- self.dfs(grid, i, n - 1)
-
- # 第一行和最后一行
- for j in range(n):
- self.dfs(grid, 0, j)
- self.dfs(grid, m - 1, j)
-
- res = 0
- for i in range(m):
- for j in range(n):
- if grid[i][j] == 1:
- res += self.dfs(grid, i, j)
- return res
-
- def dfs(self, grid: List[List[int]], i, j):
- m, n = len(grid), len(grid[0])
- if i < 0 or i >= m or j < 0 or j >= n:
- return 0
- if grid[i][j] == 0:
- return 0
- grid[i][j] = 0
-
- return self.dfs(grid, i + 1, j) + \
- self.dfs(grid, i - 1, j) + \
- self.dfs(grid, i, j + 1) + \
- self.dfs(grid, i, j - 1) + 1
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- grid = [[0, 0, 0, 0], [1, 0, 1, 0], [0, 1, 1, 0], [0, 0, 0, 0]]
- print(solution.numEnclaves(grid))
diff --git "a/leetcode/editor/cn/[1026]\350\212\202\347\202\271\344\270\216\345\205\266\347\245\226\345\205\210\344\271\213\351\227\264\347\232\204\346\234\200\345\244\247\345\267\256\345\200\274.py" "b/leetcode/editor/cn/[1026]\350\212\202\347\202\271\344\270\216\345\205\266\347\245\226\345\205\210\344\271\213\351\227\264\347\232\204\346\234\200\345\244\247\345\267\256\345\200\274.py"
deleted file mode 100644
index d6aedb8a..00000000
--- "a/leetcode/editor/cn/[1026]\350\212\202\347\202\271\344\270\216\345\205\266\347\245\226\345\205\210\344\271\213\351\227\264\347\232\204\346\234\200\345\244\247\345\267\256\345\200\274.py"
+++ /dev/null
@@ -1,68 +0,0 @@
-import math
-from typing import Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def __init__(self):
- self.max_diff = -1
-
- def maxAncestorDiff(self, root: Optional[TreeNode]) -> int:
- if root is None:
- return 0
-
- self.findMaxMinSon(root)
-
- return self.max_diff
-
- def findMaxMinSon(self, root):
- if root.left is None and root.right is None:
- return root.val, root.val
-
- if root.left is not None:
- left_max, left_min = self.findMaxMinSon(root.left)
- else:
- left_max, left_min = -math.inf, math.inf
-
- if root.right is not None:
- right_max, right_min = self.findMaxMinSon(root.right)
- else:
- right_max, right_min = -math.inf, math.inf
-
- self.max_diff = max(self.max_diff,
- abs(max(left_max, right_max) - root.val),
- abs(min(left_min, right_min) - root.val))
-
- return max([left_max, right_max, root.val]), min([left_min, right_min, root.val])
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- node1 = TreeNode(1)
- node2 = TreeNode(2)
- node3 = TreeNode(3)
- node4 = TreeNode(4)
- node5 = TreeNode(5)
-
- node1.left = node2
- node1.right = node3
- # node3.left = node4
- node3.right = node5
-
- solution = Solution()
- print(solution.maxAncestorDiff(node1))
diff --git "a/leetcode/editor/cn/[102]\344\272\214\345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206.py" "b/leetcode/editor/cn/[102]\344\272\214\345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206.py"
deleted file mode 100644
index c97897d4..00000000
--- "a/leetcode/editor/cn/[102]\344\272\214\345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206.py"
+++ /dev/null
@@ -1,64 +0,0 @@
-from typing import Optional, List
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def levelOrder(self, root: Optional[TreeNode]) -> List[List[int]]:
- if not root:
- return []
-
- queue = []
- res = []
-
- queue.append([root, 0])
-
- while len(queue) > 0:
- cur, depth = queue.pop(0)
- if cur.left is not None:
- queue.append([cur.left, depth + 1])
- if cur.right is not None:
- queue.append([cur.right, depth + 1])
-
- # depth 为 0 的时候,res 需要有 1 个长度了
- if len(res) == depth:
- res.append([cur.val])
- else:
- res[depth].append(cur.val)
-
- return res
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- node3 = TreeNode(3)
- node9 = TreeNode(9)
- node20 = TreeNode(20)
- node15 = TreeNode(15)
- node7 = TreeNode(7)
- node1 = TreeNode(1)
- node2 = TreeNode(2)
-
- node3.left = node9
- node9.left = node1
- node9.right = node2
-
- node3.right = node20
- node20.left = node15
- node20.right = node7
-
- solution = Solution()
- print(solution.levelOrder(node3))
diff --git "a/leetcode/editor/cn/[1038]\344\273\216\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\345\210\260\346\233\264\345\244\247\345\222\214\346\240\221.py" "b/leetcode/editor/cn/[1038]\344\273\216\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\345\210\260\346\233\264\345\244\247\345\222\214\346\240\221.py"
deleted file mode 100644
index b245afdc..00000000
--- "a/leetcode/editor/cn/[1038]\344\273\216\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\345\210\260\346\233\264\345\244\247\345\222\214\346\240\221.py"
+++ /dev/null
@@ -1,24 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def __init__(self):
- self.last_val = 0
-
- def bstToGst(self, root: TreeNode) -> TreeNode:
- # 递归
- if root is None:
- return
-
- self.bstToGst(root.right)
- root.val = self.last_val + root.val
- self.last_val = root.val
- self.bstToGst(root.left)
-
- return root
-
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[1049]\346\234\200\345\220\216\344\270\200\345\235\227\347\237\263\345\244\264\347\232\204\351\207\215\351\207\217 II.py" "b/leetcode/editor/cn/[1049]\346\234\200\345\220\216\344\270\200\345\235\227\347\237\263\345\244\264\347\232\204\351\207\215\351\207\217 II.py"
deleted file mode 100644
index 39504c25..00000000
--- "a/leetcode/editor/cn/[1049]\346\234\200\345\220\216\344\270\200\345\235\227\347\237\263\345\244\264\347\232\204\351\207\215\351\207\217 II.py"
+++ /dev/null
@@ -1,49 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def lastStoneWeightII(self, stones: List[int]) -> int:
- """
- 题目可以抽象为:石头重量之间进行 +、- 符号的组合, 使用最后的结果最小。
- 记:石头的总重量为 sum、+ 的石头总重量为 pos、 - 的石头总重量为 neg:
- -> pos = sum - neg
- -> pos - neg = sum - 2 * neg
- -> sum - 2 * neg 取最小值时,满足题目要求。
- -> 为满足题目要求, neg 需要在不超过 sum/2 的前提下,尽可能的大。
-
- -> 最终题目转化为,在 stones 在 sum/2 最多可以占用的空间
- """
-
- m = len(stones)
- total = sum(stones)
- n = total // 2
-
- # 定义 dp[i][j] 为前 i 个石头是否可以凑出重量 j
- dp = [[False for _ in range(n + 1)] for _ in range(m + 1)]
- dp[0][0] = True
-
- for i in range(1, m + 1):
- for j in range(n + 1):
- if j < stones[i - 1]:
- dp[i][j] = dp[i - 1][j]
- else:
- dp[i][j] = dp[i - 1][j] or dp[i - 1][j - stones[i - 1]]
-
- # 找到 dp[m] 行中,最后一个为 1 的位置,此时即为 neg 的值,带入 sum - 2 * neg
- ans = None
- for j in range(n, -1, -1):
- if dp[m][j]:
- ans = total - 2 * j
- break
- return ans
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.lastStoneWeightII([1, 2]), 1)
- print(solution.lastStoneWeightII([2, 7, 4, 1, 8, 1]), 1)
- print(solution.lastStoneWeightII([31, 26, 33, 21, 40]), 5)
diff --git "a/leetcode/editor/cn/[104]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\345\244\247\346\267\261\345\272\246.py" "b/leetcode/editor/cn/[104]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\345\244\247\346\267\261\345\272\246.py"
deleted file mode 100644
index 1317dad7..00000000
--- "a/leetcode/editor/cn/[104]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\345\244\247\346\267\261\345\272\246.py"
+++ /dev/null
@@ -1,69 +0,0 @@
-from typing import Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
-
- def maxDepth(self, root: Optional[TreeNode]) -> int:
- # 遍历
- global depth, res
- res = 0 # 记录最终深度结果
- depth = 0 # 记录当前循环中深度的结果
-
- def traverse(root: Optional[TreeNode]):
- global depth, res
- if root is None:
- return 0
- depth += 1
- if root.left is None and root.right is None:
- # 叶子节点
- res = max(res, depth)
- traverse(root.left)
- traverse(root.right)
-
- depth -= 1
-
- return res
-
- return traverse(root)
-
- def maxDepth2(self, root: Optional[TreeNode]) -> int:
- # 分解问题,当前节点的深度等于左右节点的深度之和
- if root is None:
- return 0
- left_depth = self.maxDepth(root.left)
- right_depth = self.maxDepth(root.right)
-
- return max(left_depth, right_depth) + 1
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- node1 = TreeNode(3)
- node2 = TreeNode(9)
- node3 = TreeNode(20)
- node4 = TreeNode(15)
- node5 = TreeNode(7)
-
- node1.left = node2
- node1.right = node3
- node3.left = node4
- node3.right = node5
-
- solution = Solution()
- print(solution.maxDepth(None))
diff --git "a/leetcode/editor/cn/[105]\344\273\216\345\211\215\345\272\217\344\270\216\344\270\255\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.py" "b/leetcode/editor/cn/[105]\344\273\216\345\211\215\345\272\217\344\270\216\344\270\255\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.py"
deleted file mode 100644
index 64676680..00000000
--- "a/leetcode/editor/cn/[105]\344\273\216\345\211\215\345\272\217\344\270\216\344\270\255\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.py"
+++ /dev/null
@@ -1,47 +0,0 @@
-from typing import List, Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def buildTree(self, preorder: List[int], inorder: List[int]) -> Optional[TreeNode]:
-
- if len(preorder) == 0:
- return None
-
- root_node = TreeNode(preorder[0])
- if len(preorder) == 1:
- return root_node
-
- root_pos = -1
- for idx, value in enumerate(inorder):
- if value == preorder[0]:
- root_pos = idx
-
- root_node.left = self.buildTree(preorder[1:1 + root_pos], inorder[0:root_pos])
- root_node.right = self.buildTree(preorder[1 + root_pos:], inorder[root_pos + 1:])
-
- return root_node
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- preorder = [3, 9, 20, 15, 7]
- inorder = [9, 3, 15, 20, 7]
- solution = Solution()
- res = solution.buildTree(preorder, inorder)
- print(res.val)
diff --git "a/leetcode/editor/cn/[106]\344\273\216\344\270\255\345\272\217\344\270\216\345\220\216\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.py" "b/leetcode/editor/cn/[106]\344\273\216\344\270\255\345\272\217\344\270\216\345\220\216\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.py"
deleted file mode 100644
index 50602653..00000000
--- "a/leetcode/editor/cn/[106]\344\273\216\344\270\255\345\272\217\344\270\216\345\220\216\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.py"
+++ /dev/null
@@ -1,46 +0,0 @@
-from typing import List, Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def buildTree(self, inorder: List[int], postorder: List[int]) -> Optional[TreeNode]:
- if len(postorder) == 0:
- return
-
- if len(postorder) == 1:
- return TreeNode(postorder[-1])
-
- root_node = TreeNode(postorder[-1])
-
- # 找出 root_value 的在 inorder 的位置
- idx = 0
- for idx, value in enumerate(inorder):
- if value == postorder[-1]:
- break
- root_node.left = self.buildTree(inorder[:idx], postorder[:idx])
- root_node.right = self.buildTree(inorder[idx + 1:], postorder[idx:-1])
-
- return root_node
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- inorder = [9, 3, 15, 20, 7]
- postorder = [9, 15, 7, 20, 3]
- solution = Solution()
- res = solution.buildTree(inorder, postorder)
- print(res.val)
diff --git "a/leetcode/editor/cn/[1081]\344\270\215\345\220\214\345\255\227\347\254\246\347\232\204\346\234\200\345\260\217\345\255\220\345\272\217\345\210\227.py" "b/leetcode/editor/cn/[1081]\344\270\215\345\220\214\345\255\227\347\254\246\347\232\204\346\234\200\345\260\217\345\255\220\345\272\217\345\210\227.py"
deleted file mode 100644
index e2257371..00000000
--- "a/leetcode/editor/cn/[1081]\344\270\215\345\220\214\345\255\227\347\254\246\347\232\204\346\234\200\345\260\217\345\255\220\345\272\217\345\210\227.py"
+++ /dev/null
@@ -1,27 +0,0 @@
-import collections
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def smallestSubsequence(self, s: str) -> str:
- queue = []
- remain_counter = collections.Counter(s)
-
- for c in s:
- if c not in queue:
- while queue and queue[-1] > c and remain_counter[queue[-1]] > 0:
- queue.pop()
-
- queue.append(c)
- remain_counter[c] -= 1
-
- return "".join(queue)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.smallestSubsequence("abcd"), "abcd")
- print(solution.smallestSubsequence("bcabc"), "abc")
- print(solution.smallestSubsequence("cbacdcbc"), "acdb")
diff --git "a/leetcode/editor/cn/[1094]\346\213\274\350\275\246.py" "b/leetcode/editor/cn/[1094]\346\213\274\350\275\246.py"
deleted file mode 100644
index abb50529..00000000
--- "a/leetcode/editor/cn/[1094]\346\213\274\350\275\246.py"
+++ /dev/null
@@ -1,29 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def carPooling(self, trips: List[List[int]], capacity: int) -> bool:
- max_to = max([trip[2] for trip in trips])
- diff_list = [0] * max_to
-
- for trip in trips:
- # 开始位置是 0
- diff_list[trip[1]] += trip[0]
- if trip[2] < max_to:
- diff_list[trip[2]] -= trip[0]
-
- res = [diff_list[0]]
- for idx in range(1, max_to):
- res.append(res[-1] + diff_list[idx])
- return max(res) <= capacity
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.carPooling([[9, 0, 1], [3, 3, 7]], 4), False)
- print(solution.carPooling([[2, 1, 5], [3, 5, 7]], 3), True)
- print(solution.carPooling([[2, 1, 5], [3, 3, 7]], 5), True)
- print(solution.carPooling([[2, 1, 5], [3, 3, 7]], 4), False)
diff --git "a/leetcode/editor/cn/[10]\346\255\243\345\210\231\350\241\250\350\276\276\345\274\217\345\214\271\351\205\215.py" "b/leetcode/editor/cn/[10]\346\255\243\345\210\231\350\241\250\350\276\276\345\274\217\345\214\271\351\205\215.py"
deleted file mode 100644
index bc47a345..00000000
--- "a/leetcode/editor/cn/[10]\346\255\243\345\210\231\350\241\250\350\276\276\345\274\217\345\214\271\351\205\215.py"
+++ /dev/null
@@ -1,4 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def isMatch(self, s: str, p: str) -> bool:
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[1109]\350\210\252\347\217\255\351\242\204\350\256\242\347\273\237\350\256\241.py" "b/leetcode/editor/cn/[1109]\350\210\252\347\217\255\351\242\204\350\256\242\347\273\237\350\256\241.py"
deleted file mode 100644
index 18df8d2b..00000000
--- "a/leetcode/editor/cn/[1109]\350\210\252\347\217\255\351\242\204\350\256\242\347\273\237\350\256\241.py"
+++ /dev/null
@@ -1,27 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def corpFlightBookings(self, bookings: List[List[int]], n: int) -> List[int]:
- diff_list = [0 for _ in range(n)]
-
- for book in bookings:
- # 因为 book 的 index 是从 1 开始的,所以整体右移
- diff_list[book[0] - 1] += book[2]
- if book[1] < n:
- diff_list[book[1]] -= book[2]
-
- res = [diff_list[0]]
- for idx in range(1, n):
- res.append(res[-1] + diff_list[idx])
- return res
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.corpFlightBookings([[2, 3, 30], [2, 3, 45], [2, 3, 15], [1, 3, 15]], 4), [15, 105, 105, 0])
- print(solution.corpFlightBookings([[1, 2, 10], [2, 2, 15]], 2), [10, 25])
- print(solution.corpFlightBookings([[1, 2, 10], [2, 3, 20], [2, 5, 25]], 5), [10, 55, 45, 25, 25])
diff --git "a/leetcode/editor/cn/[1110]\345\210\240\347\202\271\346\210\220\346\236\227.py" "b/leetcode/editor/cn/[1110]\345\210\240\347\202\271\346\210\220\346\236\227.py"
deleted file mode 100644
index 6c5f8d28..00000000
--- "a/leetcode/editor/cn/[1110]\345\210\240\347\202\271\346\210\220\346\236\227.py"
+++ /dev/null
@@ -1,43 +0,0 @@
-from typing import Optional, List
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def delNodes(self, root: Optional[TreeNode], to_delete: List[int]) -> List[TreeNode]:
- self.to_delete = to_delete
- self.res = []
-
- self.helper(root)
-
- return self.res
-
- def helper(self, root):
- if not root:
- return root
-
- root.left = self.helper(root.left)
- root.right = self.helper(root.right)
-
- if root.val in self.to_delete:
- if root.left:
- self.res.append(root.left)
- if root.right:
- self.res.append(root.right)
-
- root = None
- return root
-
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[111]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\345\260\217\346\267\261\345\272\246.py" "b/leetcode/editor/cn/[111]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\345\260\217\346\267\261\345\272\246.py"
deleted file mode 100644
index 55107225..00000000
--- "a/leetcode/editor/cn/[111]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\345\260\217\346\267\261\345\272\246.py"
+++ /dev/null
@@ -1,89 +0,0 @@
-import math
-from typing import Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
-
- def minDepth2(self, root: Optional[TreeNode]) -> int:
- # 遍历
- global depth, res
- res = math.inf # 记录最终深度结果
- depth = 0 # 记录当前循环中深度的结果
-
- def traverse(root: Optional[TreeNode]):
- global depth, res
- if root is None:
- return 0
- depth += 1
- if root.left is None and root.right is None:
- # 叶子节点
- res = min(res, depth)
- traverse(root.left)
- traverse(root.right)
-
- depth -= 1
-
- return res
-
- return traverse(root)
-
- def minDepth(self, root: Optional[TreeNode]) -> int:
- # 分解问题,当前节点的深度等于左右节点的深度之和
- if root is None:
- return 0
- left_depth = self.minDepth(root.left)
- right_depth = self.minDepth(root.right)
-
- if left_depth == 0:
- return right_depth + 1
- elif right_depth == 0:
- return left_depth + 1
- else:
- return min(left_depth, right_depth) + 1
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- node1 = TreeNode(3)
- node2 = TreeNode(9)
- node3 = TreeNode(20)
- node4 = TreeNode(15)
- node5 = TreeNode(7)
-
- node1.left = node2
- node2.left = node3
- node3.left = node4
- node4.left = node5
-
- solution = Solution()
- print(solution.minDepth(node1))
-
- node1 = TreeNode(3)
- node2 = TreeNode(9)
- node3 = TreeNode(20)
- node4 = TreeNode(15)
- node5 = TreeNode(7)
-
- node1.left = node2
- node1.right = node3
- node3.left = node4
- node3.right = node5
-
- solution = Solution()
- print(solution.minDepth(node1))
diff --git "a/leetcode/editor/cn/[113]\350\267\257\345\276\204\346\200\273\345\222\214 II.py" "b/leetcode/editor/cn/[113]\350\267\257\345\276\204\346\200\273\345\222\214 II.py"
deleted file mode 100644
index baefd973..00000000
--- "a/leetcode/editor/cn/[113]\350\267\257\345\276\204\346\200\273\345\222\214 II.py"
+++ /dev/null
@@ -1,69 +0,0 @@
-from typing import Optional, List
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def pathSum(self, root: Optional[TreeNode], targetSum: int) -> List[List[int]]:
- # 边缘情况
- if root is None:
- return []
-
- self.res = []
- self.traverse(root, targetSum, [root.val])
- return self.res
-
- def traverse(self, root, target_sum, track_list):
-
- # 处理当前节点
- if root.left is None and root.right is None:
- # 叶子节点了
- if sum(track_list) == target_sum:
- self.res.append(track_list.copy())
- else:
- return
-
- if root.left is not None:
- self.traverse(root.left, target_sum, track_list + [root.left.val])
-
- if root.right is not None:
- self.traverse(root.right, target_sum, track_list + [root.right.val])
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- root = [5, 4, 8, 11, None, 13, 4, 7, 2, None, None, 5, 1]
-
- tree_root = TreeNode(root.pop(0))
- q = [tree_root]
-
- while len(root) > 0:
- temp_root = q.pop(0)
- value = root.pop(0)
- if value is not None:
- left = TreeNode(value)
- temp_root.left = left
- q.append(left)
-
- value = root.pop(0)
- if value is not None:
- right = TreeNode(value)
- temp_root.right = right
- q.append(right)
-
- print(solution.pathSum(tree_root, 22))
diff --git "a/leetcode/editor/cn/[1143]\346\234\200\351\225\277\345\205\254\345\205\261\345\255\220\345\272\217\345\210\227.py" "b/leetcode/editor/cn/[1143]\346\234\200\351\225\277\345\205\254\345\205\261\345\255\220\345\272\217\345\210\227.py"
deleted file mode 100644
index 5f12a9ad..00000000
--- "a/leetcode/editor/cn/[1143]\346\234\200\351\225\277\345\205\254\345\205\261\345\255\220\345\272\217\345\210\227.py"
+++ /dev/null
@@ -1,22 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def longestCommonSubsequence(self, text1: str, text2: str) -> int:
- # 因为依赖于上一个位置, 所以 dp 长宽 + 1
- # 定义 text1[:i-1] 与 text2[:j-1] 的最长公共子序列的长度是 dp[i][j]
- m, n = len(text1), len(text2)
- dp = [[0 for _ in range(n + 1)] for _ in range(m + 1)]
-
- for i in range(1, m + 1):
- for j in range(1, n + 1):
- if text1[i - 1] == text2[j - 1]:
- dp[i][j] = dp[i - 1][j - 1] + 1
- else:
- dp[i][j] = max(dp[i - 1][j], dp[i][j - 1])
- return dp[m][n]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.longestCommonSubsequence("abcde", "ace"))
diff --git "a/leetcode/editor/cn/[114]\344\272\214\345\217\211\346\240\221\345\261\225\345\274\200\344\270\272\351\223\276\350\241\250.py" "b/leetcode/editor/cn/[114]\344\272\214\345\217\211\346\240\221\345\261\225\345\274\200\344\270\272\351\223\276\350\241\250.py"
deleted file mode 100644
index 0bb16701..00000000
--- "a/leetcode/editor/cn/[114]\344\272\214\345\217\211\346\240\221\345\261\225\345\274\200\344\270\272\351\223\276\350\241\250.py"
+++ /dev/null
@@ -1,82 +0,0 @@
-#!/usr/bin/env Python
-# coding=utf-8
-
-from typing import Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def __init__(self):
- self.new_root = TreeNode(-1)
- self.cur_node = self.new_root
-
- def flatten1(self, root: Optional[TreeNode]) -> None:
- """
- Do not return anything, modify root in-place instead.
- """
- # 遍历的方法
- self.traverse(root)
- if root is not None:
- root.right = self.new_root.right.right
- root.left = None
-
- def traverse(self, root: Optional[TreeNode]):
- # do something
- if root is None:
- return
- self.cur_node.right = TreeNode(root.val)
- self.cur_node = self.cur_node.right
-
- self.traverse(root.left)
- self.traverse(root.right)
-
- def flatten(self, root: Optional[TreeNode]) -> None:
- # 可以用分解的方式来做,函数确保返回将左子树放在右边的结果即可
- if root is None:
- return
- self.flatten(root.left)
- self.flatten(root.right)
-
- node_left = root.left
-
- if node_left is not None:
- while node_left.right is not None:
- node_left = node_left.right
-
- node_left.right = root.right
- root.right = root.left
- root.left = None
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- # 根据层序遍历结构,构造树
- nums = [1, 2, 3, 4, 5, 6, 7]
- node_list = [TreeNode(i) for i in nums]
- node_list[0].left = node_list[1]
- node_list[0].right = node_list[2]
-
- node_list[1].left = node_list[3]
- node_list[1].right = node_list[4]
-
- node_list[2].left = node_list[5]
- node_list[2].right = node_list[6]
-
- q = node_list[0]
-
- solution = Solution()
- solution.flatten(q)
diff --git "a/leetcode/editor/cn/[116]\345\241\253\345\205\205\346\257\217\344\270\252\350\212\202\347\202\271\347\232\204\344\270\213\344\270\200\344\270\252\345\217\263\344\276\247\350\212\202\347\202\271\346\214\207\351\222\210.py" "b/leetcode/editor/cn/[116]\345\241\253\345\205\205\346\257\217\344\270\252\350\212\202\347\202\271\347\232\204\344\270\213\344\270\200\344\270\252\345\217\263\344\276\247\350\212\202\347\202\271\346\214\207\351\222\210.py"
deleted file mode 100644
index d3ff029c..00000000
--- "a/leetcode/editor/cn/[116]\345\241\253\345\205\205\346\257\217\344\270\252\350\212\202\347\202\271\347\232\204\344\270\213\344\270\200\344\270\252\345\217\263\344\276\247\350\212\202\347\202\271\346\214\207\351\222\210.py"
+++ /dev/null
@@ -1,64 +0,0 @@
-from typing import Optional
-
-
-class Node:
- def __init__(self, val: int = 0, left: 'Node' = None, right: 'Node' = None, next: 'Node' = None):
- self.val = val
- self.left = left
- self.right = right
- self.next = next
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-"""
-# Definition for a Node.
-class Node:
- def __init__(self, val: int = 0, left: 'Node' = None, right: 'Node' = None, next: 'Node' = None):
- self.val = val
- self.left = left
- self.right = right
- self.next = next
-"""
-
-
-class Solution:
- def connect(self, root: 'Optional[Node]') -> 'Optional[Node]':
- self.traverse(root)
- return root
-
- def traverse(self, cur_node):
- # 遍历完成节点
- if cur_node is None:
- return
-
- if cur_node.left is not None:
- # 完美二叉树,两边都有
- cur_node.left.next = cur_node.right
-
- if cur_node.right is not None and cur_node.next is not None:
- # 不是第一个节点即可
- cur_node.right.next = cur_node.next.left
-
- self.traverse(cur_node.left)
- self.traverse(cur_node.right)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- # 根据层序遍历结构,构造树
- nums = [1, 2, 3, 4, 5, 6, 7]
- node_list = [Node(i) for i in nums]
- node_list[0].left = node_list[1]
- node_list[0].right = node_list[2]
-
- node_list[1].left = node_list[3]
- node_list[1].right = node_list[4]
-
- node_list[2].left = node_list[5]
- node_list[2].right = node_list[6]
-
- solution = Solution()
- res = solution.connect(node_list[0])
- print(res)
diff --git "a/leetcode/editor/cn/[11]\347\233\233\346\234\200\345\244\232\346\260\264\347\232\204\345\256\271\345\231\250.py" "b/leetcode/editor/cn/[11]\347\233\233\346\234\200\345\244\232\346\260\264\347\232\204\345\256\271\345\231\250.py"
deleted file mode 100644
index 61ffac33..00000000
--- "a/leetcode/editor/cn/[11]\347\233\233\346\234\200\345\244\232\346\260\264\347\232\204\345\256\271\345\231\250.py"
+++ /dev/null
@@ -1,25 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def maxArea(self, height: List[int]) -> int:
- # 边界都是闭的
- left, right, res = 0, len(height) - 1, 0
- while left < right:
- if height[left] < height[right]:
- res = max(res, min(height[left], height[right]) * (right - left))
- left += 1
- else:
- res = max(res, min(height[left], height[right]) * (right - left))
- right -= 1
-
- return res
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.maxArea([1, 8, 6, 2, 5, 4, 8, 3, 7]))
- print(solution.maxArea([1, 1]))
diff --git "a/leetcode/editor/cn/[121]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272.py" "b/leetcode/editor/cn/[121]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272.py"
deleted file mode 100644
index 8bbb6093..00000000
--- "a/leetcode/editor/cn/[121]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272.py"
+++ /dev/null
@@ -1,26 +0,0 @@
-import math
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def maxProfit(self, prices: List[int]) -> int:
- # dp[时间][交易次数][1/0], 第 i 个时间点上,最多允许交易 j 次的情况下,持有&未持有的最大收益
- # 这里的交易次数是 1
- n = len(prices)
- dp = [[0, 0] for _ in range(n + 1)]
-
- dp[0][0] = 0 # 0 时间,交易 0 次
- dp[0][1] = -math.inf # 不可能的情况
-
- for i in range(1, n + 1):
- dp[i][0] = max(dp[i - 1][0], dp[i - 1][1] + prices[i - 1])
- dp[i][1] = max(dp[i - 1][1], - prices[i - 1])
- return dp[n][0]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.maxProfit([7, 6, 4, 3, 1]))
diff --git "a/leetcode/editor/cn/[122]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 II.py" "b/leetcode/editor/cn/[122]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 II.py"
deleted file mode 100644
index 04bc453e..00000000
--- "a/leetcode/editor/cn/[122]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 II.py"
+++ /dev/null
@@ -1,33 +0,0 @@
-import math
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def maxProfit(self, prices: List[int]) -> int:
- n = len(prices) # 时间
-
- # 定义 dp 为第 i 个时间点,最多允许交易 j 次,当前状态为有&无持有
- # !!如果交易次数无限制,那么 k 和 k - 1 就没有什么区别!!
- dp = [[0, 0] for _ in range(n + 1)]
-
- # 第0个时间点,不应该持有股票,认为是错误情况
- dp[0][1] = -math.inf
-
- for i in range(1, n + 1):
- # 保持不持有 & 上个时间点持有,但是卖掉了
- dp[i][0] = max(dp[i - 1][0], dp[i - 1][1] + prices[i - 1])
- # 保持持有 & 上个时间点不持有,买入
- dp[i][1] = max(dp[i - 1][1], dp[i - 1][0] - prices[i - 1])
- return dp[n][0]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.maxProfit([7, 1, 5, 3, 6, 4]), 7)
- print(solution.maxProfit([1, 2, 3, 4, 5]), 4)
- print(solution.maxProfit([7, 6, 4, 3, 1]), 0)
- print(solution.maxProfit([3, 3]))
- print(solution.maxProfit([1, 2]))
diff --git "a/leetcode/editor/cn/[123]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 III.py" "b/leetcode/editor/cn/[123]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 III.py"
deleted file mode 100644
index 6282289d..00000000
--- "a/leetcode/editor/cn/[123]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 III.py"
+++ /dev/null
@@ -1,35 +0,0 @@
-import math
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def maxProfit(self, prices: List[int]) -> int:
- n = len(prices)
- # 定义, 第 i 个时间点,最多允许交易 2 次下的收益
- dp = [[[0, 0] for _ in range(3)] for _ in range(n + 1)]
-
- for i in range(n + 1):
- dp[i][0][0] = 0 # 没有交易、也没有股票
- dp[i][0][1] = -math.inf # 没有交易的时候,持有股票
-
- for j in range(3):
- dp[0][j][0] = 0 # 第 0 个时间点,未持有股票
- dp[0][j][1] = -math.inf # 第 0 个时间点,不应持有股票
-
- for i in range(1, n + 1):
- for j in range(1, 3):
- dp[i][j][0] = max(dp[i - 1][j][0], dp[i - 1][j][1] + prices[i - 1])
- dp[i][j][1] = max(dp[i - 1][j][1], dp[i - 1][j - 1][0] - prices[i - 1])
-
- return dp[n][2][0]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.maxProfit([3, 3, 5, 0, 0, 3, 1, 4]), 6)
- print(solution.maxProfit([1, 2, 3, 4, 5]), 4)
- print(solution.maxProfit([7, 6, 4, 3, 1]), 0)
- print(solution.maxProfit([1]), 0)
diff --git "a/leetcode/editor/cn/[1254]\347\273\237\350\256\241\345\260\201\351\227\255\345\262\233\345\261\277\347\232\204\346\225\260\347\233\256.py" "b/leetcode/editor/cn/[1254]\347\273\237\350\256\241\345\260\201\351\227\255\345\262\233\345\261\277\347\232\204\346\225\260\347\233\256.py"
deleted file mode 100644
index a81fad52..00000000
--- "a/leetcode/editor/cn/[1254]\347\273\237\350\256\241\345\260\201\351\227\255\345\262\233\345\261\277\347\232\204\346\225\260\347\233\256.py"
+++ /dev/null
@@ -1,36 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def closedIsland(self, grid: List[List[int]]) -> int:
- m, n = len(grid), len(grid[0])
- for i in range(m):
- self.dfs(grid, i, 0)
- self.dfs(grid, i, n - 1)
-
- for j in range(n):
- self.dfs(grid, 0, j)
- self.dfs(grid, m - 1, j)
-
- res = 0
- for i in range(m):
- for j in range(n):
- if grid[i][j] == 0:
- res += 1
- self.dfs(grid, i, j)
- return res
-
- def dfs(self, grid: List[List[int]], i, j):
- m, n = len(grid), len(grid[0])
- if i < 0 or i >= m or j < 0 or j >= n:
- return 0
- if grid[i][j] == 1:
- return 0
-
- grid[i][j] = 1
- self.dfs(grid, i + 1, j)
- self.dfs(grid, i - 1, j)
- self.dfs(grid, i, j + 1)
- self.dfs(grid, i, j - 1)
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[130]\350\242\253\345\233\264\347\273\225\347\232\204\345\214\272\345\237\237.py" "b/leetcode/editor/cn/[130]\350\242\253\345\233\264\347\273\225\347\232\204\345\214\272\345\237\237.py"
deleted file mode 100644
index cbb7ac34..00000000
--- "a/leetcode/editor/cn/[130]\350\242\253\345\233\264\347\273\225\347\232\204\345\214\272\345\237\237.py"
+++ /dev/null
@@ -1,54 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def solve(self, board: List[List[str]]) -> None:
- """
- Do not return anything, modify board in-place instead.
- """
- m, n = len(board), len(board[0])
- self.extra_o = [[False for _ in range(n)] for _ in range(m)]
- for i in range(m):
- for j in [0, n - 1]:
- if board[i][j] == "O" and not self.extra_o[i][j]:
- # 为 "O" + 没有访问过 + 不是额外的 O
- self.traverse(board, i, j)
-
- for j in range(n):
- for i in [0, m - 1]:
- if board[i][j] == "O" and not self.extra_o[i][j]:
- # 为 "O" + 没有访问过 + 不是额外的 O
- self.traverse(board, i, j)
-
- # board 中将 self.extra_o 的位置给填上
- for i in range(m):
- for j in range(n):
- if board[i][j] == "O" and not self.extra_o[i][j]:
- # board 内是 O,但是 extra_o 内是 False
- board[i][j] = "X"
-
- def traverse(self, board, i, j):
- if self.extra_o[i][j]:
- return
- self.extra_o[i][j] = True
- if i - 1 >= 0 and board[i - 1][j] == "O":
- self.traverse(board, i - 1, j)
-
- if i + 1 <= len(board) - 1 and board[i + 1][j] == "O":
- self.traverse(board, i + 1, j)
-
- if j - 1 >= 0 and board[i][j - 1] == "O":
- self.traverse(board, i, j - 1)
-
- if j + 1 <= len(board[0]) - 1 and board[i][j + 1] == "O":
- self.traverse(board, i, j + 1)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- board = [["O", "O"], ["O", "O"]]
- solution.solve(board)
- print(board)
diff --git "a/leetcode/editor/cn/[139]\345\215\225\350\257\215\346\213\206\345\210\206.py" "b/leetcode/editor/cn/[139]\345\215\225\350\257\215\346\213\206\345\210\206.py"
deleted file mode 100644
index aadda99b..00000000
--- "a/leetcode/editor/cn/[139]\345\215\225\350\257\215\346\213\206\345\210\206.py"
+++ /dev/null
@@ -1,30 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def wordBreak(self, s: str, wordDict: List[str]) -> bool:
- m = len(s)
-
- # 定义 dp[i] 为前 i 个字符是否可以用字典拼出结果
- dp = [False for _ in range(m + 1)]
- dp[0] = True
-
- for i in range(1, m + 1):
- for word in wordDict:
- # 当前 i 的值,仅依赖于 i - word
- if i - len(word) >= 0:
- if s[i - len(word):i] == word:
- dp[i] = dp[i] or dp[i - len(word)]
-
- return dp[m]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.wordBreak("catsandog", ["cats", "dog", "sand", "and", "cat"]), False)
- print(solution.wordBreak("leetcode", ["leet", "code"]), True)
- print(solution.wordBreak("applepenapple", ["apple", "pen"]), True)
diff --git "a/leetcode/editor/cn/[141]\347\216\257\345\275\242\351\223\276\350\241\250.py" "b/leetcode/editor/cn/[141]\347\216\257\345\275\242\351\223\276\350\241\250.py"
deleted file mode 100644
index cf9cfb81..00000000
--- "a/leetcode/editor/cn/[141]\347\216\257\345\275\242\351\223\276\350\241\250.py"
+++ /dev/null
@@ -1,54 +0,0 @@
-from typing import Optional
-
-
-class ListNode:
- def __init__(self, x):
- self.val = x
- self.next = None
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for singly-linked list.
-# class ListNode:
-# def __init__(self, x):
-# self.val = x
-# self.next = None
-
-class Solution:
- def hasCycle(self, head: Optional[ListNode]) -> bool:
- # 边缘条件,没有节点或者单个节点的时候
- if head is None or head.next is None:
- return False
-
- # 构造快慢指针
- quick = head
- slow = head
-
- while quick is not None:
- slow = slow.next
-
- # 走到头了,肯定不是环
- if quick.next is None:
- return False
- else:
- quick = quick.next.next
-
- # 遇到环了
- if slow == quick:
- return True
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- # 构造一个有环的 list
- node1 = ListNode(1)
- node2 = ListNode(2)
- node3 = ListNode(3)
-
- node1.next = node2
- node2.next = node1
- node3.next = node1
-
- solution = Solution()
- print(solution.hasCycle(node1))
diff --git "a/leetcode/editor/cn/[142]\347\216\257\345\275\242\351\223\276\350\241\250 II.py" "b/leetcode/editor/cn/[142]\347\216\257\345\275\242\351\223\276\350\241\250 II.py"
deleted file mode 100644
index 95a0d71d..00000000
--- "a/leetcode/editor/cn/[142]\347\216\257\345\275\242\351\223\276\350\241\250 II.py"
+++ /dev/null
@@ -1,70 +0,0 @@
-# 给定一个链表的头节点 head ,返回链表开始入环的第一个节点。 如果链表无环,则返回 null。
-#
-# 如果链表中有某个节点,可以通过连续跟踪 next 指针再次到达,则链表中存在环。 为了表示给定链表中的环,评测系统内部使用整数 pos 来表示链表尾连接到
-# 链表中的位置(索引从 0 开始)。如果 pos 是 -1,则在该链表中没有环。注意:pos 不作为参数进行传递,仅仅是为了标识链表的实际情况。
-#
-# 不允许修改 链表。
-#
-#
-#
-#
-#
-#
-# 示例 1:
-#
-#
-#
-#
-# 输入:head = [3,2,0,-4], pos = 1
-# 输出:返回索引为 1 的链表节点
-# 解释:链表中有一个环,其尾部连接到第二个节点。
-#
-#
-# 示例 2:
-#
-#
-#
-#
-# 输入:head = [1,2], pos = 0
-# 输出:返回索引为 0 的链表节点
-# 解释:链表中有一个环,其尾部连接到第一个节点。
-#
-#
-# 示例 3:
-#
-#
-#
-#
-# 输入:head = [1], pos = -1
-# 输出:返回 null
-# 解释:链表中没有环。
-#
-#
-#
-#
-# 提示:
-#
-#
-# 链表中节点的数目范围在范围 [0, 10⁴] 内
-# -10⁵ <= Node.val <= 10⁵
-# pos 的值为 -1 或者链表中的一个有效索引
-#
-#
-#
-#
-# 进阶:你是否可以使用 O(1) 空间解决此题?
-#
-# Related Topics 哈希表 链表 双指针 👍 1817 👎 0
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for singly-linked list.
-# class ListNode:
-# def __init__(self, x):
-# self.val = x
-# self.next = None
-
-class Solution:
- def detectCycle(self, head: Optional[ListNode]) -> Optional[ListNode]:
-
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[146]LRU \347\274\223\345\255\230.py" "b/leetcode/editor/cn/[146]LRU \347\274\223\345\255\230.py"
deleted file mode 100644
index f02d4a1d..00000000
--- "a/leetcode/editor/cn/[146]LRU \347\274\223\345\255\230.py"
+++ /dev/null
@@ -1,118 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Node:
- # 普通的链表节点
- def __init__(self, key: int = 0, val: int = 0):
- self.key = key
- self.val = val
-
- self.next = None
- self.prev = None
-
-
-class DoubleListNode:
- # 双向节点
- def __init__(self):
- # head 和 tail 是虚拟的节点
- self.head = Node(0, 0)
- self.tail = Node(0, 0)
- self.head.next = self.tail
- self.tail.prev = self.head
- self.size = 0
-
- def add_first(self, new_node: Node):
- # 在我们的定义中,越靠前的元素越新
- new_node.next = self.head.next
- new_node.prev = self.head
-
- self.head.next.prev = new_node
- self.head.next = new_node
-
- self.size += 1
-
- def remove(self, node: Node):
- node.next.prev = node.prev
- node.prev.next = node.next
-
- node.prev = None
- node.next = None
-
- self.size -= 1
-
- def remove_last(self):
- # 队列满,移除尾部节点
- if self.head.next == self.tail:
- # 此时没有节点
- return None
-
- last_node = self.tail.prev
- self.remove(last_node)
- return last_node
-
-
-class LRUCache:
-
- def __init__(self, capacity: int):
- self.map = {}
- self.cache = DoubleListNode()
- self.cap = capacity
-
- def get(self, key: int) -> int:
- if key not in self.map:
- return -1
- else:
- self.make_recently(key)
- return self.map[key].val
-
- def put(self, key: int, value: int) -> None:
-
- if key in self.map:
- # 也许是更新 key 对应的 value
- self.delete_key(key)
- self.add_recently(key, value)
- else:
- # 不存在,需要新增
- if self.cache.size == self.cap:
- self.remove_least_recent()
-
- self.add_recently(key, value)
-
- def make_recently(self, key):
- temp_node = self.map[key]
- self.cache.remove(temp_node)
- self.cache.add_first(temp_node)
-
- def add_recently(self, key, value):
- temp = Node(key, value)
- self.cache.add_first(temp)
- self.map[key] = temp
-
- def delete_key(self, key):
- temp_node = self.map[key]
- self.cache.remove(temp_node)
- del self.map[key]
-
- def remove_least_recent(self):
- last_node = self.cache.remove_last()
- del self.map[last_node.key]
-
-
-# Your LRUCache object will be instantiated and called as such:
-# obj = LRUCache(capacity)
-# param_1 = obj.get(key)
-# obj.put(key,value)
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- cache = LRUCache(2)
-
- # 定义双向链表, 表头为最近使用的元素, 表尾是最久使用的元素
- cache.put(1, 1) # {1:1}
- cache.put(2, 2) # {2:2, 1:1}
- assert cache.get(1) == 1 # {1:1,2:2}
- cache.put(3, 3) # {3:3, 1:1}, 2:2 挤出去了
- assert cache.get(2) == -1 # 没有结果
- cache.put(4, 4) # {4:4,3:3}
- assert cache.get(1) == -1 # 没有结果
- assert cache.get(3) == 3 # {3:3,4:4}
- assert cache.get(4) == 4 # {4:4,3:3}
diff --git "a/leetcode/editor/cn/[14]\346\234\200\351\225\277\345\205\254\345\205\261\345\211\215\347\274\200.py" "b/leetcode/editor/cn/[14]\346\234\200\351\225\277\345\205\254\345\205\261\345\211\215\347\274\200.py"
deleted file mode 100644
index 2b3232fa..00000000
--- "a/leetcode/editor/cn/[14]\346\234\200\351\225\277\345\205\254\345\205\261\345\211\215\347\274\200.py"
+++ /dev/null
@@ -1,34 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def longestCommonPrefix(self, strs: List[str]) -> str:
- if len(strs) == 1:
- return strs[0]
-
- min_length = 200
- for sub_str in strs:
- min_length = min(len(sub_str), min_length)
-
- idx = 1
- while idx <= min_length:
- flag = True
- for sub_str in strs[1:]:
- if sub_str[:idx] != strs[0][:idx]:
- flag = False
- break
- if not flag:
- break
- else:
- idx += 1
- return strs[0][:idx - 1]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.longestCommonPrefix(["ab", "a"]))
- print(solution.longestCommonPrefix(["flower", "flow", "flight"]))
- print(solution.longestCommonPrefix(["dog", "racecar", "car"]))
diff --git "a/leetcode/editor/cn/[1514]\346\246\202\347\216\207\346\234\200\345\244\247\347\232\204\350\267\257\345\276\204.py" "b/leetcode/editor/cn/[1514]\346\246\202\347\216\207\346\234\200\345\244\247\347\232\204\350\267\257\345\276\204.py"
deleted file mode 100644
index 2cd5092d..00000000
--- "a/leetcode/editor/cn/[1514]\346\246\202\347\216\207\346\234\200\345\244\247\347\232\204\350\267\257\345\276\204.py"
+++ /dev/null
@@ -1,78 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def maxProbability(self, n: int, edges: List[List[int]], succProb: List[float], start: int, end: int) -> float:
- # 权重
- weight = {}
- for edge, prob in zip(edges, succProb):
- weight[tuple([edge[0], edge[1]])] = prob
- weight[tuple([edge[1], edge[0]])] = prob
-
- graph = self.build_graph(n, edges)
-
- # 每个点距离 start 的距离, start 本身为 0
- distance_to_start = [0] * n
- distance_to_start[start] = 1
-
- # 开始 bfs
- queue = [[start, 1]]
- while len(queue) > 0:
- from_node, from_distance = queue.pop(0)
- if from_distance < distance_to_start[from_node]:
- # 已经有概率更大的实现了
- continue
-
- for neighbor_node in graph[from_node]:
- if tuple([from_node, neighbor_node]) in weight:
- neighbor_distance = distance_to_start[from_node] * weight[tuple([from_node, neighbor_node])]
- if distance_to_start[neighbor_node] < neighbor_distance:
- distance_to_start[neighbor_node] = neighbor_distance
- queue.append([neighbor_node, neighbor_distance])
-
- return distance_to_start[end]
-
- def build_graph(self, n, edges):
- graph = [[] for _ in range(n)]
- for edge in edges:
- from_node, to_node = edge
- graph[from_node].append(to_node)
- graph[to_node].append(from_node)
- return graph
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
-
- n = 5
- edges = [[1, 4], [2, 4], [0, 4], [0, 3], [0, 2], [2, 3]]
- succProb = [0.37, 0.17, 0.93, 0.23, 0.39, 0.04]
- start = 3
- end = 4
- print(solution.maxProbability(n, edges, succProb, start, end), 0.2139)
-
- n = 3
- edges = [[0, 1]]
- succProb = [0.5]
- start = 0
- end = 2
- print(solution.maxProbability(n, edges, succProb, start, end), 0)
-
- n = 3
- edges = [[0, 1], [1, 2], [0, 2]]
- succProb = [0.5, 0.5, 0.2]
- start = 0
- end = 2
-
- print(solution.maxProbability(n, edges, succProb, start, end), 0.25)
-
- n = 3
- edges = [[0, 1], [1, 2], [0, 2]]
- succProb = [0.5, 0.5, 0.3]
- start = 0
- end = 2
- print(solution.maxProbability(n, edges, succProb, start, end), 0.3)
diff --git "a/leetcode/editor/cn/[151]\345\217\215\350\275\254\345\255\227\347\254\246\344\270\262\344\270\255\347\232\204\345\215\225\350\257\215.py" "b/leetcode/editor/cn/[151]\345\217\215\350\275\254\345\255\227\347\254\246\344\270\262\344\270\255\347\232\204\345\215\225\350\257\215.py"
deleted file mode 100644
index 1bc5b0af..00000000
--- "a/leetcode/editor/cn/[151]\345\217\215\350\275\254\345\255\227\347\254\246\344\270\262\344\270\255\347\232\204\345\215\225\350\257\215.py"
+++ /dev/null
@@ -1,25 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def reverseWords(self, s: str) -> str:
- res = []
-
- temp = []
- for c in s:
- if c != ' ':
- temp.append(c)
- elif len(temp) > 0:
- res.insert(0, "".join(temp))
- temp.clear()
- if len(temp) > 0:
- res.insert(0, "".join(temp))
- return " ".join(res)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.reverseWords(" ") == "")
- print(solution.reverseWords(" hello world ") == "world hello")
- print(solution.reverseWords("the sky is blue") == "blue is sky the")
- print(solution.reverseWords("a good example") == "example good a")
diff --git "a/leetcode/editor/cn/[15]\344\270\211\346\225\260\344\271\213\345\222\214.py" "b/leetcode/editor/cn/[15]\344\270\211\346\225\260\344\271\213\345\222\214.py"
deleted file mode 100644
index 65b686e5..00000000
--- "a/leetcode/editor/cn/[15]\344\270\211\346\225\260\344\271\213\345\222\214.py"
+++ /dev/null
@@ -1,49 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def threeSum(self, nums: List[int]) -> List[List[int]]:
- length = len(nums)
- if not nums or length < 3:
- return []
-
- # 确保结果有序
- nums = sorted(nums)
- result = []
- for i in range(len(nums) - 2):
- # 后续均大于 0
- if nums[i] > 0:
- return result
-
- # 细节的可以跳过的地方
- if i > 0 and nums[i] == nums[i-1]:
- continue
-
- j = i + 1
- k = length - 1
- while j < k:
- if nums[i] + nums[j] + nums[k] > 0:
- k -= 1
-
- elif nums[i] + nums[j] + nums[k] < 0:
- j += 1
-
- elif nums[i] + nums[j] + nums[k] == 0:
- if [nums[i], nums[j], nums[k]] not in result:
- result.append([nums[i], nums[j], nums[k]])
- j += 1
- k -= 1
-
- return result
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.threeSum(nums=[-1, 0, 1, 2, -1, -4, -2, -3, 3, 0, 4]))
- print(solution.threeSum(nums=[3, 0, -2, -1, 1, 2]))
- print(solution.threeSum(nums=[-1, 0, 1, 2, -1, -4]))
- print(solution.threeSum(nums=[0, 1, 1]))
- print(solution.threeSum(nums=[0, 0, 0]))
diff --git "a/leetcode/editor/cn/[1631]\346\234\200\345\260\217\344\275\223\345\212\233\346\266\210\350\200\227\350\267\257\345\276\204.py" "b/leetcode/editor/cn/[1631]\346\234\200\345\260\217\344\275\223\345\212\233\346\266\210\350\200\227\350\267\257\345\276\204.py"
deleted file mode 100644
index d61a5eb9..00000000
--- "a/leetcode/editor/cn/[1631]\346\234\200\345\260\217\344\275\223\345\212\233\346\266\210\350\200\227\350\267\257\345\276\204.py"
+++ /dev/null
@@ -1,43 +0,0 @@
-import math
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def minimumEffortPath(self, heights: List[List[int]]) -> int:
- m, n = len(heights), len(heights[0])
-
- # 出发点
- queue = [[[0, 0], 0]]
- distance_from_index = [[math.inf for _ in range(n)] for _ in range(m)]
- distance_from_index[0][0] = 0
-
- while len(queue) > 0:
- from_node, from_distance = queue.pop(0)
- for move in [[-1, 0], [1, 0], [0, -1], [0, 1]]:
- neighbor = [from_node[0] + move[0], from_node[1] + move[1]]
- if 0 <= neighbor[0] < m and 0 <= neighbor[1] < n:
- # 判断是否越界
- neighbor_distance = max(
- distance_from_index[from_node[0]][from_node[1]],
- abs(
- heights[from_node[0]][from_node[1]] -
- heights[neighbor[0]][neighbor[1]]
- )
- )
- if neighbor_distance < distance_from_index[neighbor[0]][neighbor[1]]:
- distance_from_index[neighbor[0]][neighbor[1]] = neighbor_distance
- queue.append([neighbor, neighbor_distance])
-
- return distance_from_index[m - 1][n - 1]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.minimumEffortPath([[1, 10, 6, 7, 9, 10, 4, 9]]), 9)
- print(solution.minimumEffortPath([[1, 2, 2], [3, 8, 2], [5, 3, 5]]), 2)
- print(solution.minimumEffortPath(
- [[1, 2, 1, 1, 1], [1, 2, 1, 2, 1], [1, 2, 1, 2, 1], [1, 2, 1, 2, 1], [1, 1, 1, 2, 1]]), 0)
- print(solution.minimumEffortPath([[1, 2, 3], [3, 8, 4], [5, 3, 5]]), 1)
diff --git "a/leetcode/editor/cn/[1664]\347\224\237\346\210\220\345\271\263\350\241\241\346\225\260\347\273\204\347\232\204\346\226\271\346\241\210\346\225\260.py" "b/leetcode/editor/cn/[1664]\347\224\237\346\210\220\345\271\263\350\241\241\346\225\260\347\273\204\347\232\204\346\226\271\346\241\210\346\225\260.py"
deleted file mode 100644
index c21a67e2..00000000
--- "a/leetcode/editor/cn/[1664]\347\224\237\346\210\220\345\271\263\350\241\241\346\225\260\347\273\204\347\232\204\346\226\271\346\241\210\346\225\260.py"
+++ /dev/null
@@ -1,4 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def waysToMakeFair(self, nums: List[int]) -> int:
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[187]\351\207\215\345\244\215\347\232\204DNA\345\272\217\345\210\227.py" "b/leetcode/editor/cn/[187]\351\207\215\345\244\215\347\232\204DNA\345\272\217\345\210\227.py"
deleted file mode 100644
index 83e4dd79..00000000
--- "a/leetcode/editor/cn/[187]\351\207\215\345\244\215\347\232\204DNA\345\272\217\345\210\227.py"
+++ /dev/null
@@ -1,26 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def findRepeatedDnaSequences(self, s: str) -> List[str]:
- seen = set()
- res = set()
-
- for start_idx in range(len(s) - 9):
- sub_str = s[start_idx:start_idx + 10]
- if sub_str in seen:
- res.add(sub_str)
- else:
- seen.add(sub_str)
- return list(res)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.findRepeatedDnaSequences("AAAAACCCCCAAAAACCCCCCAAAAAGGGTTT"))
-
- print(solution.findRepeatedDnaSequences("AAAAAAAAAAA"))
diff --git "a/leetcode/editor/cn/[188]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 IV.py" "b/leetcode/editor/cn/[188]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 IV.py"
deleted file mode 100644
index 3dac971c..00000000
--- "a/leetcode/editor/cn/[188]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 IV.py"
+++ /dev/null
@@ -1,31 +0,0 @@
-import math
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def maxProfit(self, k: int, prices: List[int]) -> int:
- n = len(prices)
- # 定义: 第 i 日最多 k 次交易,是否持有的收益
- dp = [[[0, 0] for _ in range(k + 1)] for _ in range(n + 1)]
- for i in range(n + 1):
- dp[i][0][0] = 0
- dp[i][0][1] = -math.inf
-
- for j in range(k + 1):
- dp[0][j][0] = 0
- dp[0][j][1] = -math.inf
-
- for i in range(1, n + 1):
- for j in range(1, k + 1):
- dp[i][j][0] = max(dp[i - 1][j][0], dp[i - 1][j][1] + prices[i - 1])
- dp[i][j][1] = max(dp[i - 1][j][1], dp[i - 1][j - 1][0] - prices[i - 1])
-
- return dp[n][k][0]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.maxProfit(2, [3, 3, 5, 0, 0, 3, 1, 4]), 6)
diff --git "a/leetcode/editor/cn/[1905]\347\273\237\350\256\241\345\255\220\345\262\233\345\261\277.py" "b/leetcode/editor/cn/[1905]\347\273\237\350\256\241\345\255\220\345\262\233\345\261\277.py"
deleted file mode 100644
index a0cb1226..00000000
--- "a/leetcode/editor/cn/[1905]\347\273\237\350\256\241\345\255\220\345\262\233\345\261\277.py"
+++ /dev/null
@@ -1,45 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def countSubIslands(self, grid1: List[List[int]], grid2: List[List[int]]) -> int:
- m, n = len(grid1), len(grid1[0])
- for i in range(m):
- for j in range(n):
- if grid1[i][j] == 0 and grid2[i][j] == 1:
- self.dfs(grid2, i, j)
-
- res = 0
- for i in range(m):
- for j in range(n):
- if grid2[i][j] == 1:
- res += 1
- self.dfs(grid2, i, j)
- return res
-
- def dfs(self, grid: List[List[int]], i, j):
- m, n = len(grid), len(grid[0])
- if i < 0 or i >= m or j < 0 or j >= n:
- return
-
- if grid[i][j] == 0:
- return
-
- grid[i][j] = 0
-
- self.dfs(grid, i + 1, j)
- self.dfs(grid, i - 1, j)
- self.dfs(grid, i, j + 1)
- self.dfs(grid, i, j - 1)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-"""
-什么情况下 grid2 中的一个岛屿 B 是 grid1 中的一个岛屿 A 的子岛?
-
-当岛屿 B 中所有陆地在岛屿 A 中也是陆地的时候,岛屿 B 是岛屿 A 的子岛。
-
-反过来说,如果岛屿 B 中存在一片陆地,在岛屿 A 的对应位置是海水,那么岛屿 B 就不是岛屿 A 的子岛。
-"""
diff --git "a/leetcode/editor/cn/[19]\345\210\240\351\231\244\351\223\276\350\241\250\347\232\204\345\200\222\346\225\260\347\254\254 N \344\270\252\347\273\223\347\202\271.py" "b/leetcode/editor/cn/[19]\345\210\240\351\231\244\351\223\276\350\241\250\347\232\204\345\200\222\346\225\260\347\254\254 N \344\270\252\347\273\223\347\202\271.py"
deleted file mode 100644
index 5fa9ff8b..00000000
--- "a/leetcode/editor/cn/[19]\345\210\240\351\231\244\351\223\276\350\241\250\347\232\204\345\200\222\346\225\260\347\254\254 N \344\270\252\347\273\223\347\202\271.py"
+++ /dev/null
@@ -1,55 +0,0 @@
-from typing import Optional
-
-
-class ListNode:
- def __init__(self, x):
- self.val = x
- self.next = None
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for singly-linked list.
-# class ListNode:
-# def __init__(self, val=0, next=None):
-# self.val = val
-# self.next = next
-class Solution:
- def removeNthFromEnd(self, head: Optional[ListNode], n: int) -> Optional[ListNode]:
- # 前边指针先走 n 步
- quick, slow = head, head
- for _ in range(n):
- quick = quick.next
-
- # 考虑 len(head) == n 的情况
- if quick is None:
- return head.next
-
- # slow 停在了需要删除点的前边
- while quick is not None and quick.next is not None:
- slow = slow.next
- quick = quick.next
-
- slow.next = slow.next.next
- return head
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- node1 = ListNode(1)
- node2 = ListNode(2)
- node3 = ListNode(3)
- node4 = ListNode(4)
- node5 = ListNode(5)
-
- node1.next = node2
- node2.next = node3
- node3.next = node4
- node4.next = node5
-
- solution = Solution()
- res = solution.removeNthFromEnd(node1, 5)
-
- while res is not None:
- print(res.val)
- res = res.next
diff --git "a/leetcode/editor/cn/[1]\344\270\244\346\225\260\344\271\213\345\222\214.py" "b/leetcode/editor/cn/[1]\344\270\244\346\225\260\344\271\213\345\222\214.py"
deleted file mode 100644
index 21ed8775..00000000
--- "a/leetcode/editor/cn/[1]\344\270\244\346\225\260\344\271\213\345\222\214.py"
+++ /dev/null
@@ -1,18 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def twoSum(self, nums: List[int], target: int) -> List[int]:
- for idx, value in enumerate(nums):
- target_value = target - value
- for another_idx, another_value in enumerate(nums[idx + 1:]):
- if another_value == target_value:
- return [idx, idx + 1 + another_idx]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.twoSum([3, 2, 4], 6))
diff --git "a/leetcode/editor/cn/[200]\345\262\233\345\261\277\346\225\260\351\207\217.py" "b/leetcode/editor/cn/[200]\345\262\233\345\261\277\346\225\260\351\207\217.py"
deleted file mode 100644
index b5a6c4e1..00000000
--- "a/leetcode/editor/cn/[200]\345\262\233\345\261\277\346\225\260\351\207\217.py"
+++ /dev/null
@@ -1,37 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def numIslands(self, grid: List[List[str]]) -> int:
- m, n = len(grid), len(grid[0])
- res = 0
- for i in range(m):
- for j in range(n):
- if grid[i][j] == "1":
- res += 1
- self.dfs(grid, i, j)
- return res
-
- def dfs(self, grid: List[List[str]], i, j):
- m, n = len(grid), len(grid[0])
- if i < 0 or i >= m or j < 0 or j >= n:
- return
- if grid[i][j] == "0":
- return
-
- # 访问过了
- grid[i][j] = "0"
-
- self.dfs(grid, i - 1, j)
- self.dfs(grid, i + 1, j)
- self.dfs(grid, i, j - 1)
- self.dfs(grid, i, j + 1)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- grid = [["1", "1", "0", "0", "0"], ["1", "1", "0", "0", "0"], ["0", "0", "1", "0", "0"], ["0", "0", "0", "1", "1"]]
- print(solution.numIslands(grid))
diff --git "a/leetcode/editor/cn/[206]\345\217\215\350\275\254\351\223\276\350\241\250.py" "b/leetcode/editor/cn/[206]\345\217\215\350\275\254\351\223\276\350\241\250.py"
deleted file mode 100644
index 2a646f11..00000000
--- "a/leetcode/editor/cn/[206]\345\217\215\350\275\254\351\223\276\350\241\250.py"
+++ /dev/null
@@ -1,57 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for singly-linked list.
-# class ListNode:
-# def __init__(self, val=0, next=None):
-# self.val = val
-# self.next = next
-from typing import Optional
-
-
-class ListNode:
- def __init__(self, val=0, next=None):
- self.val = val
- self.next = next
-
-
-class Solution:
- def reverseList(self, head: Optional[ListNode]) -> Optional[ListNode]:
- # 边缘情况
- if head is None or head.next is None:
- return head
-
- """
- 构造3个指针, pre,cur,next, pre 为一个空表头
- head -> 1 -> 2 -> 3 -> 4
- head -> 2 -> 1 -> 3 -> 4
- head -> 3 -> 2 -> 1 -> 4
- head -> 4 -> 3 -> 2 -> 1
- """
- pre = ListNode()
- pre.next = head # head
- cur = head # 1
- next: Optional[ListNode] = head.next # 2
-
- while cur.next is not None:
- cur.next = next.next
- next.next = pre.next
- pre.next = next
-
- next = cur.next
- return pre.next
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- begin = ListNode()
- temp = begin
- for i in [1, 2, 3, 4, 5]:
- cur = ListNode(i)
- temp.next = cur
- temp = temp.next
-
- res = solution.reverseList(begin.next)
- while res is not None:
- print(res.val)
- res = res.next
diff --git "a/leetcode/editor/cn/[207]\350\257\276\347\250\213\350\241\250.py" "b/leetcode/editor/cn/[207]\350\257\276\347\250\213\350\241\250.py"
deleted file mode 100644
index d825aea7..00000000
--- "a/leetcode/editor/cn/[207]\350\257\276\347\250\213\350\241\250.py"
+++ /dev/null
@@ -1,47 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def canFinish(self, numCourses: int, prerequisites: List[List[int]]) -> bool:
- # 实现 DFS
- graph = self.build_graph(prerequisites)
-
- self.visited = [False] * numCourses
- self.on_path = [False] * numCourses
- self.has_cycle = False
-
- for node in range(numCourses):
- self.traverse(graph, node)
-
- return not self.has_cycle
-
- def traverse(self, graph, node):
- if self.on_path[node]:
- self.has_cycle = True
-
- if self.visited[node]:
- return
-
- self.visited[node] = True
- self.on_path[node] = True
- for neighbor in graph[node]:
- self.traverse(graph, neighbor)
- self.on_path[node] = False
-
- def build_graph(self, prerequisites):
- from collections import defaultdict
- graph = defaultdict(list)
- for to_node, from_node in prerequisites:
- graph[from_node].append(to_node)
- return graph
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.canFinish(20, [[0, 10], [3, 18], [5, 5], [6, 11], [11, 14], [13, 1], [15, 1], [17, 4]]), False)
- print(solution.canFinish(2, [[1, 0], [0, 1]]), False)
- print(solution.canFinish(2, [[1, 0]]), True)
diff --git "a/leetcode/editor/cn/[209]\351\225\277\345\272\246\346\234\200\345\260\217\347\232\204\345\255\220\346\225\260\347\273\204.py" "b/leetcode/editor/cn/[209]\351\225\277\345\272\246\346\234\200\345\260\217\347\232\204\345\255\220\346\225\260\347\273\204.py"
deleted file mode 100644
index 849d0e83..00000000
--- "a/leetcode/editor/cn/[209]\351\225\277\345\272\246\346\234\200\345\260\217\347\232\204\345\255\220\346\225\260\347\273\204.py"
+++ /dev/null
@@ -1,38 +0,0 @@
-import math
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def minSubArrayLen(self, target: int, nums: List[int]) -> int:
- # left、right 都是闭合区间
- left, right, sum_nums = 0, 0, nums[0]
- min_length = math.inf
-
- while right < len(nums):
- if sum_nums >= target:
- min_length = min(min_length, right - left + 1)
- sum_nums -= nums[left]
- left += 1
- else:
- right += 1
- if right < len(nums):
- sum_nums += nums[right] # 闭合区间
-
- if min_length == math.inf:
- # 没有成功的迭代
- return 0
-
- return min_length
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.minSubArrayLen(7, [2, 3, 1, 2, 4, 3]))
- print(solution.minSubArrayLen(4, [1, 4, 4]))
- print(solution.minSubArrayLen(11, [1, 1, 1, 1, 1, 1, 1, 1]))
- # 11, 14, 9, 16, 10, 20
- print(solution.minSubArrayLen(80,
- [10, 5, 13, 4, 8, 4, 5, 11, 14, 9, 16, 10, 20, 8]))
diff --git "a/leetcode/editor/cn/[210]\350\257\276\347\250\213\350\241\250 II.py" "b/leetcode/editor/cn/[210]\350\257\276\347\250\213\350\241\250 II.py"
deleted file mode 100644
index 8324b9a8..00000000
--- "a/leetcode/editor/cn/[210]\350\257\276\347\250\213\350\241\250 II.py"
+++ /dev/null
@@ -1,53 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def findOrder(self, numCourses: int, prerequisites: List[List[int]]) -> List[int]:
- graph = self.build_graph(prerequisites)
-
- self.visited = [False] * numCourses
- self.on_path = [False] * numCourses
- self.has_cycle = False
-
- self.post_order = []
-
- for node in range(numCourses):
- self.traverse(graph, node)
- if self.has_cycle:
- return []
- else:
- return list(reversed(self.post_order))
-
- def traverse(self, graph, node):
- if self.on_path[node]:
- self.has_cycle = True
- if self.visited[node]:
- return
-
- self.visited[node] = True
- self.on_path[node] = True
-
- for neighbor in graph[node]:
- self.traverse(graph, neighbor)
-
- self.post_order.append(node)
-
- self.on_path[node] = False
-
- def build_graph(self, prerequisites):
- from collections import defaultdict
- graph = defaultdict(list)
-
- for to_node, from_node in prerequisites:
- graph[from_node].append(to_node)
-
- return graph
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.findOrder(2, [[1, 0]]), [0, 1])
- print(solution.findOrder(4, [[1, 0], [2, 0], [3, 1], [3, 2]]), [0, 2, 1, 3])
diff --git "a/leetcode/editor/cn/[215]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254K\344\270\252\346\234\200\345\244\247\345\205\203\347\264\240.py" "b/leetcode/editor/cn/[215]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254K\344\270\252\346\234\200\345\244\247\345\205\203\347\264\240.py"
deleted file mode 100644
index dc18a869..00000000
--- "a/leetcode/editor/cn/[215]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254K\344\270\252\346\234\200\345\244\247\345\205\203\347\264\240.py"
+++ /dev/null
@@ -1,41 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
-
- def partition(self, nums: List[int], left: int, right: int) -> int:
- # 前闭后闭,左右都是可以取到的
- pivot = nums[right]
- i = left - 1
- for j in range(left, right):
- if nums[j] < pivot:
- i += 1
- nums[i], nums[j] = nums[j], nums[i]
- nums[i + 1], nums[right] = nums[right], nums[i + 1]
- return i + 1
-
- def findKthLargest(self, nums: List[int], k: int) -> int:
- # 第 2 大,也就是第 5 小,对应从小到大排序的第 4 位
- k_1 = len(nums) - k
- left, right = 0, len(nums) - 1
-
- while left <= right:
- # 变形的快排
- pivot_pos = self.partition(nums, left, right)
- if pivot_pos < k_1:
- left = pivot_pos + 1
- elif pivot_pos > k_1:
- right = pivot_pos - 1
- else:
- return nums[pivot_pos]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.findKthLargest([3, 2, 1, 5, 6, 4], 2))
- print(solution.findKthLargest([3, 2, 3, 1, 2, 4, 5, 5, 6], 4))
- print(solution.findKthLargest([1], 1))
diff --git "a/leetcode/editor/cn/[216]\347\273\204\345\220\210\346\200\273\345\222\214 III.py" "b/leetcode/editor/cn/[216]\347\273\204\345\220\210\346\200\273\345\222\214 III.py"
deleted file mode 100644
index 2c14faac..00000000
--- "a/leetcode/editor/cn/[216]\347\273\204\345\220\210\346\200\273\345\222\214 III.py"
+++ /dev/null
@@ -1,51 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def combinationSum3(self, k: int, n: int) -> List[List[int]]:
-
- self.res = []
- nums = list(range(1, 10))
- used_value = {i: False for i in range(1, 10)}
-
- self.back_track(k, nums, 0, [], 0, used_value, n)
-
- return self.res
-
- def back_track(self, k, nums, start, track_list, track_sum, used_value, target_num):
- if len(track_list) > k:
- return
-
- if track_sum == target_num and len(track_list) == k:
- self.res.append(track_list.copy())
- return
-
- if start == len(nums) or used_value[nums[start]]:
- return
-
- for idx in range(start, len(nums)):
- # 跳过 case
- if track_sum + nums[idx] > target_num:
- # 后边会越来越大
- break
-
- # 做选择
- used_value[nums[idx]] = True
- track_list.append(nums[idx])
- track_sum += nums[idx]
-
- self.back_track(k, nums, idx + 1, track_list, track_sum,
- used_value, target_num)
-
- # 撤销选择
- used_value[nums[idx]] = False
- track_list.pop(-1)
- track_sum -= nums[idx]
-
- # leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.combinationSum3(9, 45), "[[1,2,3,4,5,6,7,8,9]]")
diff --git "a/leetcode/editor/cn/[222]\345\256\214\345\205\250\344\272\214\345\217\211\346\240\221\347\232\204\350\212\202\347\202\271\344\270\252\346\225\260.py" "b/leetcode/editor/cn/[222]\345\256\214\345\205\250\344\272\214\345\217\211\346\240\221\347\232\204\350\212\202\347\202\271\344\270\252\346\225\260.py"
deleted file mode 100644
index d30ee390..00000000
--- "a/leetcode/editor/cn/[222]\345\256\214\345\205\250\344\272\214\345\217\211\346\240\221\347\232\204\350\212\202\347\202\271\344\270\252\346\225\260.py"
+++ /dev/null
@@ -1,46 +0,0 @@
-from typing import Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def countNodes(self, root: Optional[TreeNode]) -> int:
- if root is None:
- return 0
- root_left_count = self.countNodes(root.left)
- root_right_count = self.countNodes(root.right)
-
- return root_left_count + root_right_count + 1
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- node1 = TreeNode(1)
- node2 = TreeNode(2)
- node3 = TreeNode(3)
- node4 = TreeNode(4)
- node5 = TreeNode(5)
- node6 = TreeNode(6)
-
- node5.left = node3
- node5.right = node6
- node3.left = node2
- node3.right = node4
- node2.right = node1
-
- solution = Solution()
- print(solution.countNodes(node5))
diff --git "a/leetcode/editor/cn/[22]\346\213\254\345\217\267\347\224\237\346\210\220.py" "b/leetcode/editor/cn/[22]\346\213\254\345\217\267\347\224\237\346\210\220.py"
deleted file mode 100644
index c06b44cb..00000000
--- "a/leetcode/editor/cn/[22]\346\213\254\345\217\267\347\224\237\346\210\220.py"
+++ /dev/null
@@ -1,43 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def __init__(self):
- self.res = []
-
- def generateParenthesis(self, n: int) -> List[str]:
- self.dfs(n, [], n, n)
- return self.res
-
- def dfs(self, n, track_list, left_count, right_count):
- if len(track_list) == n * 2:
- self.res.append("".join(track_list))
-
- if left_count == 0 and right_count == 0:
- return
-
- # 左括号剩余数量大于右括号的数量,剪枝
- if left_count > right_count:
- return
-
- # 做选择
- if left_count > 0:
- track_list.append("(")
- self.dfs(n, track_list, left_count - 1, right_count)
- # 撤销选择
- track_list.pop(-1)
-
- if right_count > 0:
- # 做选择
- track_list.append(")")
- self.dfs(n, track_list, left_count, right_count - 1)
- # 撤销选择
- track_list.pop(-1)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.generateParenthesis(2))
diff --git "a/leetcode/editor/cn/[230]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\254\254K\345\260\217\347\232\204\345\205\203\347\264\240.py" "b/leetcode/editor/cn/[230]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\254\254K\345\260\217\347\232\204\345\205\203\347\264\240.py"
deleted file mode 100644
index a5e0be1d..00000000
--- "a/leetcode/editor/cn/[230]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\254\254K\345\260\217\347\232\204\345\205\203\347\264\240.py"
+++ /dev/null
@@ -1,57 +0,0 @@
-from typing import Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def __init__(self):
- self.k = 0
- self.kth_count = 0
- self.kth_node = None
-
- def inorder_traverse(self, root: TreeNode):
- if root is None:
- return
- self.inorder_traverse(root.left)
- self.kth_count += 1
- if self.kth_count == self.k:
- self.kth_node = root
- else:
- self.inorder_traverse(root.right)
-
- def kthSmallest(self, root: Optional[TreeNode], k: int) -> int:
- self.k = k
- self.inorder_traverse(root)
- return self.kth_node.val
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- node1 = TreeNode(1)
- node2 = TreeNode(2)
- node3 = TreeNode(3)
- node4 = TreeNode(4)
- node5 = TreeNode(5)
- node6 = TreeNode(6)
-
- node5.left = node3
- node5.right = node6
- node3.left = node2
- node3.right = node4
- node2.right = node1
-
- solution = Solution()
- print(solution.kthSmallest(node5, 3))
diff --git "a/leetcode/editor/cn/[2315]\347\273\237\350\256\241\346\230\237\345\217\267.py" "b/leetcode/editor/cn/[2315]\347\273\237\350\256\241\346\230\237\345\217\267.py"
deleted file mode 100644
index 189d7bed..00000000
--- "a/leetcode/editor/cn/[2315]\347\273\237\350\256\241\346\230\237\345\217\267.py"
+++ /dev/null
@@ -1,4 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def countAsterisks(self, s: str) -> int:
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[234]\345\233\236\346\226\207\351\223\276\350\241\250.py" "b/leetcode/editor/cn/[234]\345\233\236\346\226\207\351\223\276\350\241\250.py"
deleted file mode 100644
index 20f1182b..00000000
--- "a/leetcode/editor/cn/[234]\345\233\236\346\226\207\351\223\276\350\241\250.py"
+++ /dev/null
@@ -1,116 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for singly-linked list.
-# class ListNode:
-# def __init__(self, val=0, next=None):
-# self.val = val
-# self.next = next
-
-from typing import Optional
-
-
-class ListNode:
- def __init__(self, val=0, next=None):
- self.val = val
- self.next = next
-
-
-class SolutionHalf:
- def isPalindrome(self, head: Optional[ListNode]) -> bool:
-
- node_count = 0
- cur_node = head
-
- while cur_node is not None:
- cur_node = cur_node.next
- node_count += 1
- # 边界条件
- if node_count <= 1:
- return True
-
- node_list = []
- cur_node = head
-
- cur_node_count = node_count
- while cur_node_count > node_count / 2:
- node_list.append(cur_node.val)
- cur_node = cur_node.next
- cur_node_count -= 1
- # cur_node_count 此时到了后半段,挨个与 node_list 结果对比就可以了
-
- while cur_node_count > 0:
- if cur_node.val == node_list[cur_node_count - 1]:
- cur_node = cur_node.next
- cur_node_count -= 1
- else:
- return False
- return True
-
-
-class Solution:
- def isPalindrome(self, head: Optional[ListNode]) -> bool:
- import copy
- # 实现一个链表反转的实现
- reversed_head = self.reverse(copy.deepcopy(head))
- while reversed_head:
- if head.val != reversed_head.val:
- return False
- head = head.next
- reversed_head = reversed_head.next
-
- return True
-
- def reverse(self, head):
- pre = ListNode(-1)
- pre.next = head
- cur = head
- next = head.next
-
- while next is not None:
- # 挪的其实一直是 next,所以需要判断 next 是否存在
- cur.next = next.next
- next.next = pre.next # 不可以是 cur,因为 cur 现在不一定在 pre 的后边
- pre.next = next
-
- next = cur.next
- return pre.next
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
-
- root_node = ListNode(-1)
- temp = root_node
- for i in [1, 2, 3, 4]:
- temp.next = ListNode(i)
- temp = temp.next
-
- solution = Solution()
- print(solution.isPalindrome(root_node.next))
-
- root_node = ListNode(-1)
- temp = root_node
- for i in [1, 0, 1]:
- temp.next = ListNode(i)
- temp = temp.next
-
- solution = Solution()
- print(solution.isPalindrome(root_node.next))
-
- root_node = ListNode(-1)
- temp = root_node
- for i in [1]:
- temp.next = ListNode(i)
- temp = temp.next
-
- solution = Solution()
- print(solution.isPalindrome(root_node.next))
-
- root_node = ListNode(-1)
- temp = root_node
- for i in [1, 2]:
- temp.next = ListNode(i)
- temp = temp.next
-
- solution = Solution()
- print(solution.isPalindrome(root_node.next))
diff --git "a/leetcode/editor/cn/[235]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\347\232\204\346\234\200\350\277\221\345\205\254\345\205\261\347\245\226\345\205\210.py" "b/leetcode/editor/cn/[235]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\347\232\204\346\234\200\350\277\221\345\205\254\345\205\261\347\245\226\345\205\210.py"
deleted file mode 100644
index a6d1484b..00000000
--- "a/leetcode/editor/cn/[235]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\347\232\204\346\234\200\350\277\221\345\205\254\345\205\261\347\245\226\345\205\210.py"
+++ /dev/null
@@ -1,51 +0,0 @@
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, x):
-# self.val = x
-# self.left = None
-# self.right = None
-
-class Solution:
- def lowestCommonAncestor(self, root: 'TreeNode', p: 'TreeNode', q: 'TreeNode') -> 'TreeNode':
- if root is None:
- return None
- if root.val == p.val or root.val == q.val:
- return root
-
- left = self.lowestCommonAncestor(root.left, p, q)
- right = self.lowestCommonAncestor(root.right, p, q)
-
- if left is not None and right is not None:
- return root
-
- if left is not None:
- return left
- else:
- return right
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- node1 = TreeNode(1)
- node2 = TreeNode(2)
- node3 = TreeNode(3)
- node4 = TreeNode(4)
- node5 = TreeNode(5)
-
- node1.left = node2
- node1.right = node3
- node3.left = node4
- node3.right = node5
-
- solution = Solution()
- res = solution.lowestCommonAncestor(node1, node3, node5)
- print(res.val)
diff --git "a/leetcode/editor/cn/[236]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\350\277\221\345\205\254\345\205\261\347\245\226\345\205\210.py" "b/leetcode/editor/cn/[236]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\350\277\221\345\205\254\345\205\261\347\245\226\345\205\210.py"
deleted file mode 100644
index 96559f89..00000000
--- "a/leetcode/editor/cn/[236]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\350\277\221\345\205\254\345\205\261\347\245\226\345\205\210.py"
+++ /dev/null
@@ -1,50 +0,0 @@
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, x):
-# self.val = x
-# self.left = None
-# self.right = None
-
-class Solution:
- def lowestCommonAncestor(self, root: 'TreeNode', p: 'TreeNode', q: 'TreeNode') -> 'TreeNode':
- if root is None:
- return None
- # 前序遍历的过程中,没找到 lca,但先遇到了 q 或者 p。
- if root.val == p.val or root.val == q.val:
- return root
-
- left = self.lowestCommonAncestor(root.left, p, q)
- right = self.lowestCommonAncestor(root.right, p, q)
-
- if left is not None and right is not None:
- # 认为是 lca 点
- return root
-
- # 兼容了均为 None 的情况
- if left is not None:
- return left
- else:
- return right
-
- # leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- node1 = TreeNode(1)
- node2 = TreeNode(2)
- node3 = TreeNode(3)
- node4 = TreeNode(4)
- node5 = TreeNode(5)
-
- node1.left = node2
- node1.right = node3
- node3.left = node4
- node3.right = node5
diff --git "a/leetcode/editor/cn/[23]\345\220\210\345\271\266K\344\270\252\345\215\207\345\272\217\351\223\276\350\241\250.py" "b/leetcode/editor/cn/[23]\345\220\210\345\271\266K\344\270\252\345\215\207\345\272\217\351\223\276\350\241\250.py"
deleted file mode 100644
index 7f334836..00000000
--- "a/leetcode/editor/cn/[23]\345\220\210\345\271\266K\344\270\252\345\215\207\345\272\217\351\223\276\350\241\250.py"
+++ /dev/null
@@ -1,69 +0,0 @@
-import math
-from typing import List, Optional
-
-
-class ListNode:
- def __init__(self, val=0, next=None):
- self.val = val
- self.next = next
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for singly-linked list.
-# class ListNode:
-# def __init__(self, val=0, next=None):
-# self.val = val
-# self.next = next
-class Solution:
- def mergeKLists(self, lists: List[Optional[ListNode]]) -> Optional[ListNode]:
- dummy = ListNode()
- last = dummy
- while True:
- min_value = math.inf
- min_index = -1
- for index, node in enumerate(lists):
- if not node:
- continue
- # 找出最小的 node
- if node.val < min_value:
- min_value = node.val
- min_index = index
-
- if min_value == math.inf:
- break
-
- # 合并结果,并移动位置
- temp_node = ListNode(min_value)
- last.next = temp_node
- last = temp_node
-
- lists[min_index] = lists[min_index].next
-
- return dummy.next
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-def generate_list_node(nums):
- last = ListNode()
- dummy = last
-
- for num in nums:
- cur = ListNode(val=num)
- last.next = cur
- last = cur
- return dummy.next
-
-
-if __name__ == "__main__":
- solution = Solution()
- res = solution.mergeKLists([
- generate_list_node([1, 4, 5]),
- generate_list_node([1, 3, 4]),
- generate_list_node([2, 6])
- ])
-
- while res:
- print(res.val)
- res = res.next
diff --git "a/leetcode/editor/cn/[241]\344\270\272\350\277\220\347\256\227\350\241\250\350\276\276\345\274\217\350\256\276\350\256\241\344\274\230\345\205\210\347\272\247.py" "b/leetcode/editor/cn/[241]\344\270\272\350\277\220\347\256\227\350\241\250\350\276\276\345\274\217\350\256\276\350\256\241\344\274\230\345\205\210\347\272\247.py"
deleted file mode 100644
index d831889d..00000000
--- "a/leetcode/editor/cn/[241]\344\270\272\350\277\220\347\256\227\350\241\250\350\276\276\345\274\217\350\256\276\350\256\241\344\274\230\345\205\210\347\272\247.py"
+++ /dev/null
@@ -1,31 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def diffWaysToCompute(self, expression: str) -> List[int]:
- res = []
- for idx, c in enumerate(expression):
- if c in ["*", "-", "+"]:
- left_list = self.diffWaysToCompute(expression[:idx])
- right_list = self.diffWaysToCompute(expression[idx + 1:])
- for left in left_list:
- for right in right_list:
- if c == "*":
- res.append(left * right)
- if c == "-":
- res.append(left - right)
- if c == "+":
- res.append(left + right)
-
- if len(res) == 0:
- # 说明其中没有 * - + 等符号,纯数字
- res.append(int(expression))
- return res
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.diffWaysToCompute("2*3-4*5"))
diff --git "a/leetcode/editor/cn/[25]K \344\270\252\344\270\200\347\273\204\347\277\273\350\275\254\351\223\276\350\241\250.py" "b/leetcode/editor/cn/[25]K \344\270\252\344\270\200\347\273\204\347\277\273\350\275\254\351\223\276\350\241\250.py"
deleted file mode 100644
index 012647d5..00000000
--- "a/leetcode/editor/cn/[25]K \344\270\252\344\270\200\347\273\204\347\277\273\350\275\254\351\223\276\350\241\250.py"
+++ /dev/null
@@ -1,71 +0,0 @@
-from typing import Optional
-
-
-class ListNode:
- def __init__(self, val=0, next=None):
- self.val = val
- self.next = next
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for singly-linked list.
-# class ListNode:
-# def __init__(self, val=0, next=None):
-# self.val = val
-# self.next = next
-class Solution:
- def reverseBetween(self, head: Optional[ListNode], left: int, right: int):
- res_node = ListNode(-1)
- res_node.next = head
-
- pre = res_node
- cur = head
- next = head.next
-
- for _ in range(left - 1):
- pre = pre.next
- cur = cur.next
- next = next.next
-
- for i in range(right - left):
- cur.next = next.next
- next.next = pre.next
- pre.next = next
- if cur.next:
- next = cur.next
-
- return res_node.next
-
- def reverseKGroup(self, head: Optional[ListNode], k: int) -> Optional[ListNode]:
- # 统计一下长度
- n = 0
- temp_node = head
- while temp_node:
- n += 1
- temp_node = temp_node.next
-
- for start_pos in range(1, n, k):
- if start_pos + k - 1 <= n:
- head = self.reverseBetween(head, start_pos, start_pos + k - 1)
- continue
-
- return head
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- for j in range(1, 6):
- node_list = []
- for i in range(1, 6):
- node_list.append(ListNode(i))
- for i in range(4):
- node_list[i].next = node_list[i + 1]
-
- res = solution.reverseKGroup(node_list[0], j)
-
- print(f"#### {j}")
- while res:
- print(res.val)
- res = res.next
diff --git "a/leetcode/editor/cn/[279]\345\256\214\345\205\250\345\271\263\346\226\271\346\225\260.py" "b/leetcode/editor/cn/[279]\345\256\214\345\205\250\345\271\263\346\226\271\346\225\260.py"
deleted file mode 100644
index 7bab202a..00000000
--- "a/leetcode/editor/cn/[279]\345\256\214\345\205\250\345\271\263\346\226\271\346\225\260.py"
+++ /dev/null
@@ -1,25 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def numSquares(self, n: int) -> int:
- # 定义 dp[i] 为数字 i 需要的完全平方数的最小数量
- dp = [999999 for _ in range(n + 1)]
- dp[0] = 0
-
- # 当前 i 的值,仅依赖于 i - k^2,比如 i - 4、i - 9 、 i - 16
- for i in range(1, n + 1):
- # 可以取到 i
- for j in range(1, i + 1):
- if j * j > i:
- break
- dp[i] = min(dp[i], dp[i - j * j] + 1)
- return dp[n]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.numSquares(1), 1)
- print(solution.numSquares(12), 3)
- print(solution.numSquares(13), 2)
diff --git "a/leetcode/editor/cn/[283]\347\247\273\345\212\250\351\233\266.py" "b/leetcode/editor/cn/[283]\347\247\273\345\212\250\351\233\266.py"
deleted file mode 100644
index c5641272..00000000
--- "a/leetcode/editor/cn/[283]\347\247\273\345\212\250\351\233\266.py"
+++ /dev/null
@@ -1,39 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def moveZeroes(self, nums: List[int]) -> None:
- """
- Do not return anything, modify nums in-place instead.
- """
- # 左指针指向当前为0的位置,右指针指向不为零的地方,交换位置
- left, right = 0, 0
-
- while right < len(nums):
-
- while left < len(nums) and nums[left] != 0:
- left += 1
- if left >= len(nums):
- break
-
- right = left + 1
- while right < len(nums) and nums[right] == 0:
- right += 1
- if right >= len(nums):
- break
-
- # 交换位置
- nums[left], nums[right] = nums[right], nums[left]
-
- left += 1
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- test = [0, 1, 0, 3, 12, 0, 1]
- solution.moveZeroes(test)
- print(test)
diff --git "a/leetcode/editor/cn/[287]\345\257\273\346\211\276\351\207\215\345\244\215\346\225\260.py" "b/leetcode/editor/cn/[287]\345\257\273\346\211\276\351\207\215\345\244\215\346\225\260.py"
deleted file mode 100644
index 1f984dbe..00000000
--- "a/leetcode/editor/cn/[287]\345\257\273\346\211\276\351\207\215\345\244\215\346\225\260.py"
+++ /dev/null
@@ -1,22 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def findDuplicate(self, nums: List[int]) -> int:
- used_pos = [0] * len(nums)
- for i in nums:
- if used_pos[i] == 0:
- used_pos[i] = 1
- else:
- return i
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.findDuplicate([1, 3, 4, 2, 2]))
- print(solution.findDuplicate([3, 1, 3, 4, 2]))
- print(solution.findDuplicate([2, 2, 2, 2, 2, 2]))
diff --git "a/leetcode/editor/cn/[28]\346\211\276\345\207\272\345\255\227\347\254\246\344\270\262\344\270\255\347\254\254\344\270\200\344\270\252\345\214\271\351\205\215\351\241\271\347\232\204\344\270\213\346\240\207.py" "b/leetcode/editor/cn/[28]\346\211\276\345\207\272\345\255\227\347\254\246\344\270\262\344\270\255\347\254\254\344\270\200\344\270\252\345\214\271\351\205\215\351\241\271\347\232\204\344\270\213\346\240\207.py"
deleted file mode 100644
index cda5a376..00000000
--- "a/leetcode/editor/cn/[28]\346\211\276\345\207\272\345\255\227\347\254\246\344\270\262\344\270\255\347\254\254\344\270\200\344\270\252\345\214\271\351\205\215\351\241\271\347\232\204\344\270\213\346\240\207.py"
+++ /dev/null
@@ -1,58 +0,0 @@
-import string
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def build_kmp(self, needle):
- # 定义 dp[i][j] 为: 在第 i 个位置,遇到 j 字母,应该去的位置
- dp = {}
- for i in range(len(needle)):
- dp[i] = {}
- for j in string.ascii_lowercase:
- dp[i][j] = 0
-
- # 基础情况,在第 0 个位置,遇到第 0 个字母,应该跳转到第 1 个位置
- dp[0][needle[0]] = 1
-
- # X 为跟随在 i 后边的重叠子问题状态
- X = 0
- for i in range(1, len(needle)):
- for j in string.ascii_lowercase:
- if j == needle[i]:
- dp[i][j] = i + 1
- else:
- dp[i][j] = dp[X][j]
- X = dp[X][needle[i]]
- return dp
-
- def strStrKMP(self, haystack: str, needle: str) -> int:
- kmp_pattern_dp = self.build_kmp(needle)
- m, n = len(needle), len(haystack)
- j = 0
- for idx, char in enumerate(haystack):
- j = kmp_pattern_dp[j][char]
- if j == m:
- return idx - m + 1
-
- return -1
-
- def strStr(self, haystack: str, needle: str) -> int:
- res = -1
- m, n = len(haystack), len(needle)
- if m < n:
- return res
-
- for idx in range(m - n + 1):
- if haystack[idx:idx + n] == needle:
- return idx
- return res
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.strStr("a", "a"), 0)
- print(solution.strStr("sadbutsad", "sad"), 0)
- print(solution.strStr("leetcode", "leeto"), -1)
diff --git "a/leetcode/editor/cn/[297]\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226.py" "b/leetcode/editor/cn/[297]\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226.py"
deleted file mode 100644
index 39c3cf6d..00000000
--- "a/leetcode/editor/cn/[297]\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226.py"
+++ /dev/null
@@ -1,99 +0,0 @@
-from typing import List, Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode(object):
-# def __init__(self, x):
-# self.val = x
-# self.left = None
-# self.right = None
-
-class Codec:
-
- def serialize(self, root):
- """Encodes a tree to a single string.
-
- :type root: TreeNode
- :rtype: str
- """
- res = []
- self.pre_order(root, res)
- return ",".join(res)
-
- def pre_order(self, root, res):
- if not root:
- res.append("null")
- return
-
- res.append(str(root.val))
- self.pre_order(root.left, res)
- self.pre_order(root.right, res)
-
- def bfs(self, res: List) -> Optional[TreeNode]:
- val = res.pop(0)
- if val == 'null':
- return None
- root = TreeNode(val)
- root.left = self.bfs(res)
- root.right = self.bfs(res)
-
- return root
-
- def deserialize(self, data):
- """Decodes your encoded data to tree.
-
- :type data: str
- :rtype: TreeNode
- """
- print(data)
- return self.bfs(data.split(','))
-
-
-# Your Codec object will be instantiated and called as such:
-# ser = Codec()
-# deser = Codec()
-# ans = deser.deserialize(ser.serialize(root))
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- node1 = TreeNode(1)
- node2 = TreeNode(2)
- node3 = TreeNode(3)
- node4 = TreeNode(4)
- node5 = TreeNode(5)
-
- node1.left = node2
- node1.right = node3
- node3.left = node4
- node3.right = node5
-
- ser = Codec()
- deser = Codec()
-
- ans = deser.deserialize(ser.serialize(node1))
-
- print(ans.val)
-
- node1 = TreeNode(3)
- node2 = TreeNode(2)
- node3 = TreeNode(4)
- node4 = TreeNode(3)
-
- node1.left = node2
- node1.right = node3
- node2.left = node4
-
- ser = Codec()
- deser = Codec()
-
- ans = deser.deserialize(ser.serialize(node1))
-
- print(ans.val)
diff --git "a/leetcode/editor/cn/[29]\344\270\244\346\225\260\347\233\270\351\231\244.py" "b/leetcode/editor/cn/[29]\344\270\244\346\225\260\347\233\270\351\231\244.py"
deleted file mode 100644
index fc9fa979..00000000
--- "a/leetcode/editor/cn/[29]\344\270\244\346\225\260\347\233\270\351\231\244.py"
+++ /dev/null
@@ -1,15 +0,0 @@
-import math
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def divide(self, dividend: int, divisor: int) -> int:
- res = int(dividend / divisor)
- inf = int(math.pow(2, 31) - 1)
- _inf = -int(math.pow(2, 31))
- if res >= inf:
- return inf
- if res <= _inf:
- return _inf
- return res
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[2]\344\270\244\346\225\260\347\233\270\345\212\240.py" "b/leetcode/editor/cn/[2]\344\270\244\346\225\260\347\233\270\345\212\240.py"
deleted file mode 100644
index 188d363a..00000000
--- "a/leetcode/editor/cn/[2]\344\270\244\346\225\260\347\233\270\345\212\240.py"
+++ /dev/null
@@ -1,61 +0,0 @@
-from typing import Optional
-
-
-class ListNode:
- def __init__(self, val=0, next=None):
- self.val = val
- self.next = next
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for singly-linked list.
-# class ListNode:
-# def __init__(self, val=0, next=None):
-# self.val = val
-# self.next = next
-class Solution:
- def addTwoNumbers(self, l1: Optional[ListNode], l2: Optional[ListNode]) -> Optional[ListNode]:
- root = ListNode(-1)
- cur = root
-
- extra_value = 0
- while l1 and l2:
- temp_value = l1.val + l2.val + extra_value
- cur.next = ListNode(temp_value % 10)
- cur = cur.next
-
- extra_value = temp_value // 10
-
- l1 = l1.next
- l2 = l2.next
-
- while l1:
- temp_value = l1.val + extra_value
- cur.next = ListNode(temp_value % 10)
- cur = cur.next
-
- extra_value = temp_value // 10
-
- l1 = l1.next
-
- while l2:
- temp_value = l2.val + extra_value
- cur.next = ListNode(temp_value % 10)
- cur = cur.next
-
- extra_value = temp_value // 10
-
- l2 = l2.next
-
- if extra_value > 0:
- cur.next = ListNode(extra_value)
-
- return root.next
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- solution.addTwoNumbers()
diff --git "a/leetcode/editor/cn/[300]\346\234\200\351\225\277\351\200\222\345\242\236\345\255\220\345\272\217\345\210\227.py" "b/leetcode/editor/cn/[300]\346\234\200\351\225\277\351\200\222\345\242\236\345\255\220\345\272\217\345\210\227.py"
deleted file mode 100644
index b98ce85c..00000000
--- "a/leetcode/editor/cn/[300]\346\234\200\351\225\277\351\200\222\345\242\236\345\255\220\345\272\217\345\210\227.py"
+++ /dev/null
@@ -1,27 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def lengthOfLIS(self, nums: List[int]) -> int:
- # dp[i] 截止到 i 位置最长递增子序列长度是多少
- n = len(nums)
- dp = [1] * n
-
- for i in range(n):
- # 对于每一个位置 i,如果其之前的某个位置 j 所对应的数字小于位置 i 所对应的数字
- for j in range(i):
- if nums[j] < nums[i]:
- dp[i] = max(dp[i], dp[j] + 1)
-
- return max(dp)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.lengthOfLIS([1, 3, 6, 7, 9, 4, 10, 5, 6]))
- print(solution.lengthOfLIS([10, 9, 2, 5, 3, 7, 101, 18]))
- print(solution.lengthOfLIS([0, 1, 0, 3, 2, 3]))
- print(solution.lengthOfLIS([7, 7, 7, 7, 7, 7, 7]))
diff --git "a/leetcode/editor/cn/[303]\345\214\272\345\237\237\345\222\214\346\243\200\347\264\242 - \346\225\260\347\273\204\344\270\215\345\217\257\345\217\230.py" "b/leetcode/editor/cn/[303]\345\214\272\345\237\237\345\222\214\346\243\200\347\264\242 - \346\225\260\347\273\204\344\270\215\345\217\257\345\217\230.py"
deleted file mode 100644
index faf87526..00000000
--- "a/leetcode/editor/cn/[303]\345\214\272\345\237\237\345\222\214\346\243\200\347\264\242 - \346\225\260\347\273\204\344\270\215\345\217\257\345\217\230.py"
+++ /dev/null
@@ -1,28 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class NumArray:
-
- def __init__(self, nums: List[int]):
- self.nums = nums
-
- # preSum[i] 记录 nums[0..i-1] 的累加和
- self.pre_sum = [0] * (len(nums) + 1)
- for i in range(1, len(self.pre_sum)):
- self.pre_sum.append(self.pre_sum[i - 1] + nums[i - 1])
-
- def sumRange(self, left: int, right: int) -> int:
- return self.pre_sum[right + 1] - self.pre_sum[left]
-
-
-# Your NumArray object will be instantiated and called as such:
-# obj = NumArray(nums)
-# param_1 = obj.sumRange(left,right)
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = NumArray([-2, 0, 3, -5, 2, -1])
- print(solution.sumRange(0, 2), 1)
- print(solution.sumRange(2, 5), -1)
- print(solution.sumRange(0, 5), -3)
diff --git "a/leetcode/editor/cn/[304]\344\272\214\347\273\264\345\214\272\345\237\237\345\222\214\346\243\200\347\264\242 - \347\237\251\351\230\265\344\270\215\345\217\257\345\217\230.py" "b/leetcode/editor/cn/[304]\344\272\214\347\273\264\345\214\272\345\237\237\345\222\214\346\243\200\347\264\242 - \347\237\251\351\230\265\344\270\215\345\217\257\345\217\230.py"
deleted file mode 100644
index 4e295aa3..00000000
--- "a/leetcode/editor/cn/[304]\344\272\214\347\273\264\345\214\272\345\237\237\345\222\214\346\243\200\347\264\242 - \347\237\251\351\230\265\344\270\215\345\217\257\345\217\230.py"
+++ /dev/null
@@ -1,37 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class NumMatrix:
-
- def __init__(self, matrix: List[List[int]]):
- m, n = len(matrix), len(matrix[0])
-
- # preSum[i][j] 记录 matrix[i][j] 之前的和
- self.preSum = {}
- for i in range(-1, m):
- self.preSum[i] = {}
- for j in range(-1, n):
- self.preSum[i][j] = 0
-
- for i in range(m):
- for j in range(n):
- self.preSum[i][j] = self.preSum[i - 1][j] + self.preSum[i][j - 1] \
- - self.preSum[i - 1][j - 1] + matrix[i][j]
-
- def sumRegion(self, row1: int, col1: int, row2: int, col2: int) -> int:
- return self.preSum[row2][col2] - self.preSum[row2][col1 - 1] - \
- self.preSum[row1 - 1][col2] + self.preSum[row1 - 1][col1 - 1]
-
-
-# Your NumMatrix object will be instantiated and called as such:
-# obj = NumMatrix(matrix)
-# param_1 = obj.sumRegion(row1,col1,row2,col2)
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = NumMatrix([[3, 0, 1, 4, 2], [5, 6, 3, 2, 1], [1, 2, 0, 1, 5], [4, 1, 0, 1, 7], [1, 0, 3, 0, 5]])
- print(solution.sumRegion(2, 1, 4, 3), 8)
- print(solution.sumRegion(1, 1, 2, 2), 11)
- print(solution.sumRegion(1, 2, 2, 4), 12)
diff --git "a/leetcode/editor/cn/[309]\346\234\200\344\275\263\344\271\260\345\215\226\350\202\241\347\245\250\346\227\266\346\234\272\345\220\253\345\206\267\345\206\273\346\234\237.py" "b/leetcode/editor/cn/[309]\346\234\200\344\275\263\344\271\260\345\215\226\350\202\241\347\245\250\346\227\266\346\234\272\345\220\253\345\206\267\345\206\273\346\234\237.py"
deleted file mode 100644
index e6d271e9..00000000
--- "a/leetcode/editor/cn/[309]\346\234\200\344\275\263\344\271\260\345\215\226\350\202\241\347\245\250\346\227\266\346\234\272\345\220\253\345\206\267\345\206\273\346\234\237.py"
+++ /dev/null
@@ -1,18 +0,0 @@
-import math
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def maxProfit(self, prices: List[int]) -> int:
- n = len(prices)
- # 定义,第i天最多交易k的情况下,是否持有的收益,但因为这里k是无穷的,所以不用考虑
- dp = [[0, 0] for _ in range(n + 1)]
-
- dp[0][1] = -math.inf
- for i in range(1, n + 1):
- dp[i][0] = max(dp[i - 1][0], dp[i - 1][1] + prices[i - 1])
- dp[i][1] = max(dp[i - 1][1], dp[i - 2][0] - prices[i - 1]) # 卖出后的冷冻期
- return dp[n][0]
-
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[30]\344\270\262\350\201\224\346\211\200\346\234\211\345\215\225\350\257\215\347\232\204\345\255\220\344\270\262.py" "b/leetcode/editor/cn/[30]\344\270\262\350\201\224\346\211\200\346\234\211\345\215\225\350\257\215\347\232\204\345\255\220\344\270\262.py"
deleted file mode 100644
index 1db71f79..00000000
--- "a/leetcode/editor/cn/[30]\344\270\262\350\201\224\346\211\200\346\234\211\345\215\225\350\257\215\347\232\204\345\255\220\344\270\262.py"
+++ /dev/null
@@ -1,41 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def findSubstring(self, s: str, words: List[str]) -> List[int]:
- # n 是字符串的长度, m 是有多少个字符串
- n, m = len(words[0]), len(words)
- window_length = n * m
-
- sorted_words = sorted(words)
-
- res = []
- for i in range(0, len(s) - window_length + 1):
- window_text = s[i:i + window_length]
- window_word = []
- for j in range(0, len(window_text), n):
- window_word.append(window_text[j:j + n])
-
- sorted_window_word = sorted(window_word)
- flag = True
- for word1, word2 in zip(sorted_words, sorted_window_word):
- if word1 != word2:
- flag = False
- if flag:
- res.append(i)
-
- return res
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.findSubstring(
- "lingmindraboofooowingdingbarrwingmonkeypoundcake",
- ["fooo", "barr", "wing", "ding", "wing"]), [13])
- print(solution.findSubstring("wordgoodgoodgoodbestword", ["word", "good", "best", "word"]), [])
- print(solution.findSubstring("barfoothefoobarman", ["foo", "bar"]), [0, 9])
- print(solution.findSubstring("barfoofoobarthefoobarman", ["bar", "foo", "the"]), [6, 9, 12])
diff --git "a/leetcode/editor/cn/[316]\345\216\273\351\231\244\351\207\215\345\244\215\345\255\227\346\257\215.py" "b/leetcode/editor/cn/[316]\345\216\273\351\231\244\351\207\215\345\244\215\345\255\227\346\257\215.py"
deleted file mode 100644
index c96f67a5..00000000
--- "a/leetcode/editor/cn/[316]\345\216\273\351\231\244\351\207\215\345\244\215\345\255\227\346\257\215.py"
+++ /dev/null
@@ -1,28 +0,0 @@
-import collections
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def removeDuplicateLetters(self, s: str) -> str:
- res = []
- remain_counter = collections.Counter(s)
-
- for value in s:
- if value not in res:
- while res and value < res[-1] and remain_counter[res[-1]] > 0:
- res.pop(-1)
-
- res.append(value)
- remain_counter[value] -= 1
-
- return "".join(res)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.removeDuplicateLetters("abcd"), "abcd")
- print(solution.removeDuplicateLetters("bcabc"), "abc")
- print(solution.removeDuplicateLetters("cbacdcbc"), "acdb")
diff --git "a/leetcode/editor/cn/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260.py" "b/leetcode/editor/cn/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260.py"
deleted file mode 100644
index 62a33ee1..00000000
--- "a/leetcode/editor/cn/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260.py"
+++ /dev/null
@@ -1,48 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def merge_list(self, nums1: List[int], nums2: List[int]):
- res = []
- while nums1 or nums2:
- if nums1 > nums2:
- res.append(nums1.pop(0))
- else:
- res.append(nums2.pop(0))
-
- return res
-
- def remove_k_digits(self, nums: List[int], remain: int) -> List[int]:
- assert len(nums) >= remain, "保留的数量不应超过 nums 的长度"
-
- k = len(nums) - remain
- queue = []
- for num in nums:
- while queue and queue[-1] < num and k:
- queue.pop()
- k -= 1
- queue.append(num)
- return queue[:remain]
-
- def maxNumber(self, nums1: List[int], nums2: List[int], k: int) -> List[int]:
- res = []
- for part_remain in range(k + 1):
- if part_remain <= len(nums1) and (k - part_remain) <= len(nums2):
- part1 = self.remove_k_digits(nums1, part_remain)
- part2 = self.remove_k_digits(nums2, k - part_remain)
-
- merge = self.merge_list(part1, part2)
- res.append(merge)
-
- return max(res)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.maxNumber([6, 7], [6, 0, 4], 5), [6, 7, 6, 0, 4])
- print(solution.maxNumber([8, 1, 8, 8, 6], [4], 2), [8, 8])
- print(solution.maxNumber([3, 9], [8, 9], 3), [9, 8, 9])
- print(solution.maxNumber([3, 4, 6, 5], [9, 1, 2, 5, 8, 3], 5), [9, 8, 6, 5, 3])
diff --git "a/leetcode/editor/cn/[322]\351\233\266\351\222\261\345\205\221\346\215\242.py" "b/leetcode/editor/cn/[322]\351\233\266\351\222\261\345\205\221\346\215\242.py"
deleted file mode 100644
index 640b86f7..00000000
--- "a/leetcode/editor/cn/[322]\351\233\266\351\222\261\345\205\221\346\215\242.py"
+++ /dev/null
@@ -1,34 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def coinChange(self, coins: List[int], amount: int) -> int:
- m = len(coins)
-
- # 定义 dp,对前 i 个物品,空间 j 的情况下,最少可以凑满的方式
- dp = [[amount + 1 for _ in range(amount + 1)] for _ in range(m + 1)]
-
- # 前 i 个物品,空间 0 的情况下,没有可以凑出来的方法
- for i in range(m + 1):
- dp[i][0] = 0
-
- for i in range(1, m + 1):
- for j in range(1, amount + 1):
- if j - coins[i - 1] < 0:
- dp[i][j] = dp[i - 1][j]
- else:
- dp[i][j] = min(dp[i - 1][j], 1 + dp[i][j - coins[i - 1]])
-
- if dp[m][amount] == amount + 1:
- return -1
- else:
- return dp[m][amount]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.coinChange([1, 2, 5], 11))
- print(solution.coinChange([2], 3))
diff --git "a/leetcode/editor/cn/[33]\346\220\234\347\264\242\346\227\213\350\275\254\346\216\222\345\272\217\346\225\260\347\273\204.py" "b/leetcode/editor/cn/[33]\346\220\234\347\264\242\346\227\213\350\275\254\346\216\222\345\272\217\346\225\260\347\273\204.py"
deleted file mode 100644
index c52e1e14..00000000
--- "a/leetcode/editor/cn/[33]\346\220\234\347\264\242\346\227\213\350\275\254\346\216\222\345\272\217\346\225\260\347\273\204.py"
+++ /dev/null
@@ -1,4 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def search(self, nums: List[int], target: int) -> int:
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[34]\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\345\205\203\347\264\240\347\232\204\347\254\254\344\270\200\344\270\252\345\222\214\346\234\200\345\220\216\344\270\200\344\270\252\344\275\215\347\275\256.py" "b/leetcode/editor/cn/[34]\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\345\205\203\347\264\240\347\232\204\347\254\254\344\270\200\344\270\252\345\222\214\346\234\200\345\220\216\344\270\200\344\270\252\344\275\215\347\275\256.py"
deleted file mode 100644
index b92a3f15..00000000
--- "a/leetcode/editor/cn/[34]\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\345\205\203\347\264\240\347\232\204\347\254\254\344\270\200\344\270\252\345\222\214\346\234\200\345\220\216\344\270\200\344\270\252\344\275\215\347\275\256.py"
+++ /dev/null
@@ -1,24 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def searchRange(self, nums: List[int], target: int) -> List[int]:
- res = []
- for idx, value in enumerate(nums):
- if target == value:
- res.append(idx)
- if len(res) > 0:
- return [res[0], res[-1]]
- else:
- return [-1, -1]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.searchRange([5, 7, 7, 8, 8, 10], 8), [3, 4])
- print(solution.searchRange([5, 7, 7, 8, 8, 10], 5), [0, 0])
- print(solution.searchRange([5, 7, 7, 8, 8, 10], 6), [-1, -1])
- print(solution.searchRange([], 0), [-1, -1])
diff --git "a/leetcode/editor/cn/[380]O(1) \346\227\266\351\227\264\346\217\222\345\205\245\343\200\201\345\210\240\351\231\244\345\222\214\350\216\267\345\217\226\351\232\217\346\234\272\345\205\203\347\264\240.py" "b/leetcode/editor/cn/[380]O(1) \346\227\266\351\227\264\346\217\222\345\205\245\343\200\201\345\210\240\351\231\244\345\222\214\350\216\267\345\217\226\351\232\217\346\234\272\345\205\203\347\264\240.py"
deleted file mode 100644
index 8e7e3022..00000000
--- "a/leetcode/editor/cn/[380]O(1) \346\227\266\351\227\264\346\217\222\345\205\245\343\200\201\345\210\240\351\231\244\345\222\214\350\216\267\345\217\226\351\232\217\346\234\272\345\205\203\347\264\240.py"
+++ /dev/null
@@ -1,50 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class RandomizedSet:
-
- def __init__(self):
- self.value_2_index = {}
- self.value_list = []
-
- def insert(self, val: int) -> bool:
- if val in self.value_2_index:
- return False
- else:
- self.value_2_index[val] = len(self.value_list)
- self.value_list.append(val)
- return True
-
- def remove(self, val: int) -> bool:
- if val not in self.value_2_index:
- return False
- else:
- index = self.value_2_index[val]
-
- self.value_2_index[self.value_list[-1]] = index
-
- self.value_list[index], self.value_list[-1] = self.value_list[-1], self.value_list[index]
-
- self.value_list.pop(-1)
- self.value_2_index.pop(val)
- return True
-
- def getRandom(self) -> int:
- import random
- return random.choice(self.value_list)
-
-
-# Your RandomizedSet object will be instantiated and called as such:
-# obj = RandomizedSet()
-# param_1 = obj.insert(val)
-# param_2 = obj.remove(val)
-# param_3 = obj.getRandom()
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = RandomizedSet()
- print(solution.insert(1))
- print(solution.remove(2))
- print(solution.insert(2))
- print(solution.getRandom())
- print(solution.remove(1))
- print(solution.insert(2))
- print(solution.getRandom())
diff --git "a/leetcode/editor/cn/[39]\347\273\204\345\220\210\346\200\273\345\222\214.py" "b/leetcode/editor/cn/[39]\347\273\204\345\220\210\346\200\273\345\222\214.py"
deleted file mode 100644
index 84983050..00000000
--- "a/leetcode/editor/cn/[39]\347\273\204\345\220\210\346\200\273\345\222\214.py"
+++ /dev/null
@@ -1,39 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def combinationSum(self, candidates: List[int], target: int) -> List[List[int]]:
- self.res = []
- self.track_list = []
- self.track_sum = 0
-
- candidates = sorted(candidates)
- self.back_track(candidates, 0, target)
- return self.res
-
- def back_track(self, candidates, start, target):
- if self.track_sum == target:
- self.res.append(self.track_list.copy())
-
- for idx in range(start, len(candidates)):
- if self.track_sum + candidates[idx] > target:
- # 后边的更大,不用考虑了
- continue
-
- self.track_sum += candidates[idx]
- self.track_list.append(candidates[idx])
-
- self.back_track(candidates, idx, target)
-
- self.track_list.pop(-1)
- self.track_sum -= candidates[idx]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.combinationSum([2, 3, 6, 7], 7))
- print(solution.combinationSum([2, 3, 5], 8))
diff --git "a/leetcode/editor/cn/[3]\346\227\240\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\346\234\200\351\225\277\345\255\220\344\270\262.py" "b/leetcode/editor/cn/[3]\346\227\240\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\346\234\200\351\225\277\345\255\220\344\270\262.py"
deleted file mode 100644
index b90c88d3..00000000
--- "a/leetcode/editor/cn/[3]\346\227\240\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\346\234\200\351\225\277\345\255\220\344\270\262.py"
+++ /dev/null
@@ -1,23 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def lengthOfLongestSubstring(self, s: str) -> int:
- left, right, max_length = 0, 0, 0
- while right < len(s):
- if s[right] in s[left:right]:
- left += 1
- else:
- # 如果 right 不被包含,那么需要先记录结果
- right += 1
- max_length = max(max_length, right - left)
-
- return max_length
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.lengthOfLongestSubstring("abcabcbb"))
- print(solution.lengthOfLongestSubstring("bbbbb"))
- print(solution.lengthOfLongestSubstring("pwwkew"))
- print(solution.lengthOfLongestSubstring(""))
diff --git "a/leetcode/editor/cn/[402]\347\247\273\346\216\211 K \344\275\215\346\225\260\345\255\227.py" "b/leetcode/editor/cn/[402]\347\247\273\346\216\211 K \344\275\215\346\225\260\345\255\227.py"
deleted file mode 100644
index 24a343b0..00000000
--- "a/leetcode/editor/cn/[402]\347\247\273\346\216\211 K \344\275\215\346\225\260\345\255\227.py"
+++ /dev/null
@@ -1,32 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def removeKdigits(self, num: str, k: int) -> str:
- """
- 后边的数进入后:
- 1、如果进入的数比前边的数小,则弹出前边的数;
- 2、否则正常插入
- 3、极端情况下,单调递增,则取前 [:len(num)-k] 的结果
- """
- queue = []
- remain = len(num) - k
- for c in num:
- while queue and queue[-1] > c and k:
- queue.pop()
- k -= 1
- queue.append(c)
-
- queue = queue[:remain]
- if queue:
- return str(int("".join(queue)))
- else:
- return "0"
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.removeKdigits("1173", 2), 11)
- print(solution.removeKdigits("1432219", 3), 1219)
- print(solution.removeKdigits("10200", 1), 200)
- print(solution.removeKdigits("10", 2), 0)
diff --git "a/leetcode/editor/cn/[40]\347\273\204\345\220\210\346\200\273\345\222\214 II.py" "b/leetcode/editor/cn/[40]\347\273\204\345\220\210\346\200\273\345\222\214 II.py"
deleted file mode 100644
index 7f28ba29..00000000
--- "a/leetcode/editor/cn/[40]\347\273\204\345\220\210\346\200\273\345\222\214 II.py"
+++ /dev/null
@@ -1,48 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def __init__(self):
- self.res = []
- self.track_list = []
- self.track_sum = 0
-
- def combinationSum2(self, candidates: List[int], target: int) -> List[List[int]]:
- # 一些边界条件
- if sum(candidates) < target:
- return self.res
-
- candidates = sorted(candidates)
- self.back_track(candidates, 0, target)
- return self.res
-
- def back_track(self, candidates, start, target):
- if self.track_sum > target:
- return
- if self.track_sum == target and self.track_list not in self.res:
- self.res.append(self.track_list.copy())
- return
-
- for idx in range(start, len(candidates)):
- if idx > start and candidates[idx] == candidates[idx - 1]:
- # 避免重复数导致耗时增加
- continue
- self.track_sum += candidates[idx]
- self.track_list.append(candidates[idx])
-
- self.back_track(candidates, idx + 1, target)
-
- self.track_list.pop(-1)
- self.track_sum -= candidates[idx]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- # print(solution.combinationSum2([10, 1, 2, 7, 6, 1, 5], 8))
- print(solution.combinationSum2(
- [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
- 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], 30))
diff --git "a/leetcode/editor/cn/[416]\345\210\206\345\211\262\347\255\211\345\222\214\345\255\220\351\233\206.py" "b/leetcode/editor/cn/[416]\345\210\206\345\211\262\347\255\211\345\222\214\345\255\220\351\233\206.py"
deleted file mode 100644
index 8c5ad900..00000000
--- "a/leetcode/editor/cn/[416]\345\210\206\345\211\262\347\255\211\345\222\214\345\255\220\351\233\206.py"
+++ /dev/null
@@ -1,33 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def canPartition(self, nums: List[int]) -> bool:
- nums_sum = sum(nums)
- half_sum = nums_sum // 2
- if half_sum * 2 != nums_sum:
- return False
-
- m = len(nums)
- # dp 定义:对于前 i 个物品(从1开始),空间 j 的情况下,是否可以放满
- dp = [[False for _ in range(half_sum + 1)] for _ in range(m + 1)]
- for i in range(m + 1):
- dp[i][0] = True
-
- for i in range(1, m + 1):
- for j in range(1, half_sum + 1):
- if j - nums[i - 1] < 0:
- dp[i][j] = dp[i - 1][j]
- else:
- dp[i][j] = max(dp[i - 1][j], dp[i - 1][j - nums[i - 1]])
- return dp[m][half_sum]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.canPartition([1, 5, 11, 5]))
- print(solution.canPartition([1, 2, 3, 5]))
diff --git "a/leetcode/editor/cn/[429]N \345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206.py" "b/leetcode/editor/cn/[429]N \345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206.py"
deleted file mode 100644
index 7fb88172..00000000
--- "a/leetcode/editor/cn/[429]N \345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206.py"
+++ /dev/null
@@ -1,30 +0,0 @@
-from typing import List
-
-# leetcode submit region begin(Prohibit modification and deletion)
-"""
-# Definition for a Node.
-class Node:
- def __init__(self, val=None, children=None):
- self.val = val
- self.children = children
-"""
-
-
-# 广度优先
-class Solution:
- def levelOrder(self, root: 'Node') -> List[List[int]]:
- if not root:
- return []
- queue = [(root, 0)]
- res = []
- while queue:
- node, deep = queue.pop(0)
- if len(res) > deep:
- res[deep].append(node.val)
- else:
- res.append([node.val])
- for n in node.children:
- queue.append((n, deep + 1))
- return res
-
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[42]\346\216\245\351\233\250\346\260\264.py" "b/leetcode/editor/cn/[42]\346\216\245\351\233\250\346\260\264.py"
deleted file mode 100644
index f59c578d..00000000
--- "a/leetcode/editor/cn/[42]\346\216\245\351\233\250\346\260\264.py"
+++ /dev/null
@@ -1,67 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def trap_force(self, height: List[int]) -> int:
- """
- 对于每一列,考虑左边最高和右边最高列中,较低列 与 cur 的差:
- 1、较低的列 大于 cur 的高度,那么可以放下的水为较低列高度-cur高度
- 2、如果较低的列高度 与 cur 的高度一致或小于,那么放不下水。
- 耗时为 n^2, 看起来 ac 不了
- """
- water_count = 0
- # cur 表示当前位置
- for cur in range(1, len(height) - 1):
- left_height = max(height[:cur]) if cur > 0 else -1
- right_height = max(height[cur + 1:])
-
- # 左右墙中较低的那个
- low_height = min(left_height, right_height)
- if low_height > height[cur]:
- water_count += low_height - height[cur]
- return water_count
-
- def trap(self, height: List[int]) -> int:
- # 考虑没必要左右都穷举来计算
- n = len(height)
- left_height = [0] * n
- right_height = [0] * n
-
- # 用 2n 的时间,填满整个表
- for idx, column_height in enumerate(height):
- if idx == 0 or column_height > left_height[idx - 1]:
- left_height[idx] = column_height
- else:
- left_height[idx] = left_height[idx - 1]
-
- idx = n - 1
- while idx >= 0:
- column_height = height[idx]
- if idx == n - 1 or column_height > right_height[idx + 1]:
- right_height[idx] = column_height
- else:
- right_height[idx] = right_height[idx + 1]
- idx -= 1
-
- # 开始单独看每一列了
- water_count = 0
- # cur 表示当前位置
- for cur in range(1, len(height) - 1):
- # 左右墙中较低的那个
- low_height = min(left_height[cur], right_height[cur])
- if low_height > height[cur]:
- water_count += low_height - height[cur]
- return water_count
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- import time
-
- start = time.time()
- print(solution.trap([0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1]))
- print(time.time() - start)
diff --git "a/leetcode/editor/cn/[435]\346\227\240\351\207\215\345\217\240\345\214\272\351\227\264.py" "b/leetcode/editor/cn/[435]\346\227\240\351\207\215\345\217\240\345\214\272\351\227\264.py"
deleted file mode 100644
index 07bae81f..00000000
--- "a/leetcode/editor/cn/[435]\346\227\240\351\207\215\345\217\240\345\214\272\351\227\264.py"
+++ /dev/null
@@ -1,31 +0,0 @@
-import math
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def eraseOverlapIntervals(self, intervals: List[List[int]]) -> int:
- # 根据结束时间,从大到小降序排列
- sorted_intervals = sorted(intervals, key=lambda x: x[1])
-
- count = 0
-
- end_interval = -math.inf
- for interval in sorted_intervals:
- start, end = interval
- # 当前元素的开始位置,在上一个元素的结束位置后
- if start >= end_interval:
- end_interval = end
- count += 1
-
- return len(intervals) - count
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.eraseOverlapIntervals([[1, 2], [2, 3], [3, 4], [1, 3]]))
- print(solution.eraseOverlapIntervals([[1, 2], [1, 2], [1, 2]]))
- print(solution.eraseOverlapIntervals([[1, 2], [2, 3]]))
- print(solution.eraseOverlapIntervals([[1, 2], [2, 3], [3, 4], [-100, -2], [5, 7]]))
diff --git "a/leetcode/editor/cn/[450]\345\210\240\351\231\244\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\350\212\202\347\202\271.py" "b/leetcode/editor/cn/[450]\345\210\240\351\231\244\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\350\212\202\347\202\271.py"
deleted file mode 100644
index e5ad553f..00000000
--- "a/leetcode/editor/cn/[450]\345\210\240\351\231\244\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\350\212\202\347\202\271.py"
+++ /dev/null
@@ -1,73 +0,0 @@
-from typing import Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
-
- def deleteNode(self, root: Optional[TreeNode], key: int) -> Optional[TreeNode]:
- if root is None:
- return None
-
- if root.val == key:
- if root.left is None and root.right is None:
- # 叶子节点直接删除
- return None
- elif root.left is None and root.right is not None:
- # 右子树不为空
- return root.right
- elif root.right is None and root.left is not None:
- # 左子树不为空
- return root.left
- else:
- # 左右都不空
- left_node = root.left
- while left_node.right is not None:
- left_node = left_node.right
- # 删除左子树中最大的点
- root.left = self.deleteNode(root.left, left_node.val)
-
- left_node.left = root.left
- left_node.right = root.right
- root = left_node
- # 左节点的最右侧节点
- elif key < root.val:
- root.left = self.deleteNode(root.left, key)
- elif key > root.val:
- root.right = self.deleteNode(root.right, key)
-
- return root
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- node1 = TreeNode(1)
- node2 = TreeNode(2)
- node3 = TreeNode(3)
- node4 = TreeNode(4)
- node5 = TreeNode(5)
- node6 = TreeNode(6)
-
- node5.left = node3
- node5.right = node6
- node3.left = node2
- node3.right = node4
- node2.left = node1
-
- solution = Solution()
- res = solution.deleteNode(node5, 5)
- print(res.val)
diff --git "a/leetcode/editor/cn/[452]\347\224\250\346\234\200\345\260\221\346\225\260\351\207\217\347\232\204\347\256\255\345\274\225\347\210\206\346\260\224\347\220\203.py" "b/leetcode/editor/cn/[452]\347\224\250\346\234\200\345\260\221\346\225\260\351\207\217\347\232\204\347\256\255\345\274\225\347\210\206\346\260\224\347\220\203.py"
deleted file mode 100644
index 4edf7579..00000000
--- "a/leetcode/editor/cn/[452]\347\224\250\346\234\200\345\260\221\346\225\260\351\207\217\347\232\204\347\256\255\345\274\225\347\210\206\346\260\224\347\220\203.py"
+++ /dev/null
@@ -1,27 +0,0 @@
-import math
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def findMinArrowShots(self, points: List[List[int]]) -> int:
- sorted_points = sorted(points, key=lambda x: x[1])
- # 使用贪心策略计算不重叠区域
- count = 0
- end_point = -math.inf
- for point in sorted_points:
- start, end = point
- # 当前元素的开始位置,在上一个元素的结束位置后
- if start > end_point:
- count += 1
- end_point = end
- return count
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.findMinArrowShots([[10, 16], [2, 8], [1, 6], [7, 12]]))
- print(solution.findMinArrowShots([[1, 2], [3, 4], [5, 6], [7, 8]]))
- print(solution.findMinArrowShots([[1, 2], [2, 3], [3, 4], [4, 5]]))
diff --git "a/leetcode/editor/cn/[46]\345\205\250\346\216\222\345\210\227.py" "b/leetcode/editor/cn/[46]\345\205\250\346\216\222\345\210\227.py"
deleted file mode 100644
index f28d8cf3..00000000
--- "a/leetcode/editor/cn/[46]\345\205\250\346\216\222\345\210\227.py"
+++ /dev/null
@@ -1,36 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def __init__(self):
- self.res = []
-
- def permute(self, nums: List[int]) -> List[List[int]]:
- self.back_track(nums, [], [False] * len(nums))
- return self.res
-
- def back_track(self, nums, track_list, used_pos):
- if len(track_list) == len(nums):
- self.res.append(track_list.copy())
-
- for idx in range(len(nums)):
- if used_pos[idx]:
- continue
-
- # 做选择
- track_list.append(nums[idx])
- used_pos[idx] = True
-
- self.back_track(nums, track_list, used_pos)
-
- # 撤销选择
- track_list.pop(-1)
- used_pos[idx] = False
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.permute([1, 2, 3]))
diff --git "a/leetcode/editor/cn/[474]\344\270\200\345\222\214\351\233\266.py" "b/leetcode/editor/cn/[474]\344\270\200\345\222\214\351\233\266.py"
deleted file mode 100644
index d9660d33..00000000
--- "a/leetcode/editor/cn/[474]\344\270\200\345\222\214\351\233\266.py"
+++ /dev/null
@@ -1,42 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-from collections import Counter
-from typing import List
-
-
-class Solution:
- def findMaxForm(self, strs: List[str], m: int, n: int) -> int:
- res = 0
- # 前 i 个数字,在 「0 的数量不超过 j, 1 的数量不超过 k」 的前提下,所能达到的最大值
-
- dp = [[[0 for _ in range(n + 1)] for _ in range(m + 1)] for _ in range(len(strs) + 1)]
-
- for i in range(1, len(strs) + 1):
- counter = Counter(strs[i - 1])
- count_0 = counter['0']
- count_1 = counter['1']
-
- for j in range(0, m + 1):
- for k in range(0, n + 1):
- if j < count_0 or k < count_1:
- dp[i][j][k] = dp[i - 1][j][k]
- else:
- dp[i][j][k] = max(dp[i - 1][j][k], dp[i - 1][j - count_0][k - count_1] + 1)
-
- return dp[len(strs)][m][n]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
-
- strs = ["10", "0001", "111001", "1", "0"]
- m = 5
- n = 3
- print(solution.findMaxForm(strs, m, n), 4)
-
- strs = ["10", "0", "1"]
- m = 1
- n = 1
- print(solution.findMaxForm(strs, m, n), 2)
diff --git "a/leetcode/editor/cn/[47]\345\205\250\346\216\222\345\210\227 II.py" "b/leetcode/editor/cn/[47]\345\205\250\346\216\222\345\210\227 II.py"
deleted file mode 100644
index 834b6a27..00000000
--- "a/leetcode/editor/cn/[47]\345\205\250\346\216\222\345\210\227 II.py"
+++ /dev/null
@@ -1,42 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def __init__(self):
- self.res = []
-
- def permuteUnique(self, nums: List[int]) -> List[List[int]]:
- nums = sorted(nums)
- self.back_track(nums, [], [False] * len(nums))
- return self.res
-
- def back_track(self, nums, track_list, used_pos):
- if len(track_list) == len(nums):
- self.res.append(track_list.copy())
-
- for idx in range(len(nums)):
- if used_pos[idx]:
- continue
- if idx > 0 and nums[idx] == nums[idx - 1] and not used_pos[idx - 1]:
- """
- 若当前元素与上一个元素相同,那么从当前元素开始的回溯,应该要跳过。
- 如何判断从**当前元素开始的回溯**:从当前元素开始,代表这上一个元素还未回溯到(未使用到),可以直接跳过。
- """
- continue
- # 进行选择
- track_list.append(nums[idx])
- used_pos[idx] = True
-
- self.back_track(nums, track_list, used_pos)
- # 取消选择
- del track_list[-1]
- used_pos[idx] = False
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.permuteUnique([1, 1, 2]))
diff --git "a/leetcode/editor/cn/[48]\346\227\213\350\275\254\345\233\276\345\203\217.py" "b/leetcode/editor/cn/[48]\346\227\213\350\275\254\345\233\276\345\203\217.py"
deleted file mode 100644
index b3971fdf..00000000
--- "a/leetcode/editor/cn/[48]\346\227\213\350\275\254\345\233\276\345\203\217.py"
+++ /dev/null
@@ -1,28 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def rotate(self, matrix: List[List[int]]) -> None:
- """
- Do not return anything, modify matrix in-place instead.
- """
- import copy
- old_matrix = copy.deepcopy(matrix)
- # 提示中已说明 m,n 一致
- n = len(old_matrix)
-
- for j in range(n):
- # 固定第一列
- for i in range(n):
- # 逆序遍历每一行
- matrix[j][i] = old_matrix[n - 1 - i][j]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- matrix = [[5, 1, 9, 11], [2, 4, 8, 10], [13, 3, 6, 7], [15, 14, 12, 16]]
- solution.rotate(matrix)
- print(matrix)
diff --git "a/leetcode/editor/cn/[494]\347\233\256\346\240\207\345\222\214.py" "b/leetcode/editor/cn/[494]\347\233\256\346\240\207\345\222\214.py"
deleted file mode 100644
index c9f515e8..00000000
--- "a/leetcode/editor/cn/[494]\347\233\256\346\240\207\345\222\214.py"
+++ /dev/null
@@ -1,81 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def findTargetSumWaysBack(self, nums: List[int], target: int) -> int:
- self.res = []
- self.memo = {}
- self.back_track(nums, [], 0, target)
- return len(self.res)
-
- def back_track(self, nums, track_list, start, remain):
- if start == len(nums):
- if remain == 0:
- self.res.append(track_list.copy())
- return
-
- # 做选择
- track_list.append("+")
- self.back_track(nums, track_list, start + 1, remain - nums[start])
- # 撤销选择
- track_list.pop(-1)
-
- track_list.append("-")
- self.back_track(nums, track_list, start + 1, remain + nums[start])
- track_list.pop(-1)
-
- def findTargetSumWaysMemo(self, nums: List[int], target: int) -> int:
- # 消除重叠子问题
- self.memo = {}
- return self.dp(nums, 0, target)
-
- def dp(self, nums, start, remain):
- if start == len(nums):
- if remain == 0:
- return 1
- else:
- return 0
- if (start, remain) in self.memo:
- return self.memo[(start, remain)]
- else:
- result = self.dp(
- nums, start + 1, remain - nums[start]) + self.dp(
- nums, start + 1, remain + nums[start])
-
- return result
-
- def findTargetSumWays(self, nums: List[int], target: int) -> int:
- # sum(a) = (target + sum(nums)) / 2
- # 从 nums 中选择一组数,使其相加为 (target + sum(nums)) / 2,问,有多少种方法
- if sum(nums) < abs(target) or (sum(nums) + target) % 2 == 1:
- return 0
-
- return self.subset(nums, (sum(nums) + target) // 2)
-
- def subset(self, nums, target):
- m = len(nums)
- # 前 i 个数,填满 j 个空间的方法
- dp = [[0 for _ in range(target + 1)] for _ in range(m + 1)]
- # 前 0 个数,占满前 0 个空间的方式为1个
- dp[0][0] = 1
-
- for i in range(1, m + 1):
- for j in range(0, target + 1):
- if j - nums[i - 1] < 0:
- dp[i][j] = dp[i - 1][j]
- else:
- dp[i][j] = dp[i - 1][j] + dp[i - 1][j - nums[i - 1]]
-
- return dp[m][target]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.findTargetSumWays([0, 0, 0, 0, 0, 0, 0, 0, 1], 1), 1)
- print(solution.findTargetSumWays([100], -200), 0)
- print(solution.findTargetSumWays([7, 9, 3, 8, 0, 2, 4, 8, 3, 9], 0), 0)
- print(solution.findTargetSumWays([1000], -1000), 1)
- print(solution.findTargetSumWays([1, 1, 1, 1, 1], 3), 5)
diff --git "a/leetcode/editor/cn/[509]\346\226\220\346\263\242\351\202\243\345\245\221\346\225\260.py" "b/leetcode/editor/cn/[509]\346\226\220\346\263\242\351\202\243\345\245\221\346\225\260.py"
deleted file mode 100644
index 47abe1ce..00000000
--- "a/leetcode/editor/cn/[509]\346\226\220\346\263\242\351\202\243\345\245\221\346\225\260.py"
+++ /dev/null
@@ -1,13 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def fib(self, n: int) -> int:
- if n == 0:
- return 0
- if 0 < n <= 2:
- return 1
- value = [1, 1]
- for idx in range(n - 2):
- value.append(value[-1] + value[-2])
- return value[-1]
-
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[516]\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\345\272\217\345\210\227.py" "b/leetcode/editor/cn/[516]\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\345\272\217\345\210\227.py"
deleted file mode 100644
index ac1550a9..00000000
--- "a/leetcode/editor/cn/[516]\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\345\272\217\345\210\227.py"
+++ /dev/null
@@ -1,26 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def longestPalindromeSubseq(self, s: str) -> int:
- # s[i:j] 中的最长回文子序列的长度是 dp[i][j]
- length = len(s)
- dp = [[0 for _ in range(length)] for _ in range(length)]
-
- # i 和 j 位置相同的时候为 1
- for i in range(length):
- dp[i][i] = 1
- for i in range(length - 1, -1, -1):
- for j in range(i + 1, length):
- if s[i] == s[j]:
- dp[i][j] = dp[i + 1][j - 1] + 2
- else:
- dp[i][j] = max(dp[i + 1][j], dp[i][j - 1])
-
- return dp[0][length - 1]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.longestPalindromeSubseq("cbbd"))
- print(solution.longestPalindromeSubseq("bbbab"))
diff --git "a/leetcode/editor/cn/[518]\351\233\266\351\222\261\345\205\221\346\215\242 II.py" "b/leetcode/editor/cn/[518]\351\233\266\351\222\261\345\205\221\346\215\242 II.py"
deleted file mode 100644
index 96fc668f..00000000
--- "a/leetcode/editor/cn/[518]\351\233\266\351\222\261\345\205\221\346\215\242 II.py"
+++ /dev/null
@@ -1,32 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def change(self, amount: int, coins: List[int]) -> int:
- m = len(coins)
-
- # 定义 dp,对前 i 个物品,空间 j 的情况下,有多少种凑满的方式
- dp = [[0 for _ in range(amount + 1)] for _ in range(m + 1)]
-
- for i in range(m + 1):
- # 只要不选择任何钱币,就可以凑出 0,这里不存在「目标和」问题中的负号情况。
- dp[i][0] = 1
-
- for i in range(1, m + 1):
- for j in range(1, amount + 1):
- if j - coins[i - 1] < 0:
- dp[i][j] = dp[i - 1][j]
- else:
- # 凑满方式分为:不使用第 i 个物品的凑满 + 使用第 i 个物品的凑满
- dp[i][j] = dp[i - 1][j] + dp[i][j - coins[i - 1]]
- return dp[m][amount]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.change(5, [1, 2, 5]))
- print(solution.change(3, [2]))
- print(solution.change(10, [10]))
diff --git "a/leetcode/editor/cn/[528]\346\214\211\346\235\203\351\207\215\351\232\217\346\234\272\351\200\211\346\213\251.py" "b/leetcode/editor/cn/[528]\346\214\211\346\235\203\351\207\215\351\232\217\346\234\272\351\200\211\346\213\251.py"
deleted file mode 100644
index 990f9ffa..00000000
--- "a/leetcode/editor/cn/[528]\346\214\211\346\235\203\351\207\215\351\232\217\346\234\272\351\200\211\346\213\251.py"
+++ /dev/null
@@ -1,42 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
-
- def __init__(self, w: List[int]):
- self.pre_sum = [w[0]]
-
- for value in w[1:]:
- self.pre_sum.append(self.pre_sum[-1] + value)
-
- @staticmethod
- def left_bound(nums, target):
- left, right = 0, len(nums) - 1
- while left <= right:
- mid = int(left + (right - left) / 2)
- if nums[mid] == target:
- right = mid - 1
- elif nums[mid] < target:
- left = mid + 1
- elif nums[mid] > target:
- right = mid - 1
-
- return left
-
- def pickIndex(self) -> int:
- import random
- target = random.randint(1, self.pre_sum[-1])
- return self.left_bound(self.pre_sum, target)
-
-
-# Your Solution object will be instantiated and called as such:
-# obj = Solution(w)
-# param_1 = obj.pickIndex()
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- obj = Solution([1, 3, 2, 1])
- for _ in range(50):
- print(obj.pickIndex())
diff --git "a/leetcode/editor/cn/[538]\346\212\212\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\350\275\254\346\215\242\344\270\272\347\264\257\345\212\240\346\240\221.py" "b/leetcode/editor/cn/[538]\346\212\212\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\350\275\254\346\215\242\344\270\272\347\264\257\345\212\240\346\240\221.py"
deleted file mode 100644
index 06a2fe25..00000000
--- "a/leetcode/editor/cn/[538]\346\212\212\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\350\275\254\346\215\242\344\270\272\347\264\257\345\212\240\346\240\221.py"
+++ /dev/null
@@ -1,54 +0,0 @@
-from typing import Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def __init__(self):
- self.last_val = 0
-
- def convertBST(self, root: Optional[TreeNode]) -> Optional[TreeNode]:
- # 递归
- if root is None:
- return
-
- self.convertBST(root.right)
- root.val = self.last_val + root.val
- self.last_val = root.val
- self.convertBST(root.left)
-
- return root
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- node1 = TreeNode(1)
- node2 = TreeNode(2)
- node3 = TreeNode(3)
- node4 = TreeNode(4)
- node5 = TreeNode(5)
- node6 = TreeNode(6)
-
- node5.left = node3
- node5.right = node6
- node3.left = node2
- node3.right = node4
- node2.left = node1
-
- solution = Solution()
- res = solution.convertBST(node5)
- print(res)
diff --git "a/leetcode/editor/cn/[54]\350\236\272\346\227\213\347\237\251\351\230\265.py" "b/leetcode/editor/cn/[54]\350\236\272\346\227\213\347\237\251\351\230\265.py"
deleted file mode 100644
index 58d9afb6..00000000
--- "a/leetcode/editor/cn/[54]\350\236\272\346\227\213\347\237\251\351\230\265.py"
+++ /dev/null
@@ -1,43 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def spiralOrder(self, matrix: List[List[int]]) -> List[int]:
- res = []
-
- m, n = len(matrix), len(matrix[0])
- upper_bound, lower_bound = 0, m - 1
- left_bound, right_bound = 0, n - 1
- while len(res) < m * n:
- if upper_bound <= lower_bound:
- for j in range(left_bound, right_bound + 1):
- res.append(matrix[upper_bound][j])
- upper_bound += 1
-
- if left_bound <= right_bound:
- for i in range(upper_bound, lower_bound + 1):
- res.append(matrix[i][right_bound])
- right_bound -= 1
-
- if upper_bound <= lower_bound:
- for j in range(right_bound, left_bound - 1, -1):
- res.append(matrix[lower_bound][j])
- lower_bound -= 1
-
- if left_bound <= right_bound:
- for i in range(lower_bound, upper_bound - 1, -1):
- res.append(matrix[i][left_bound])
- left_bound += 1
- return res
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.spiralOrder([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12], [13, 14, 15, 16]]),
- [1, 2, 3, 4, 8, 12, 16, 15, 14, 13, 9, 5, 6, 7, 11, 10])
- print(solution.spiralOrder([[2, 5], [8, 4], [0, -1]]), [2, 5, 4, -1, 0, 8])
- print(solution.spiralOrder([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]]), [1, 2, 3, 4, 8, 12, 11, 10, 9, 5, 6, 7])
diff --git "a/leetcode/editor/cn/[583]\344\270\244\344\270\252\345\255\227\347\254\246\344\270\262\347\232\204\345\210\240\351\231\244\346\223\215\344\275\234.py" "b/leetcode/editor/cn/[583]\344\270\244\344\270\252\345\255\227\347\254\246\344\270\262\347\232\204\345\210\240\351\231\244\346\223\215\344\275\234.py"
deleted file mode 100644
index 64d33f1a..00000000
--- "a/leetcode/editor/cn/[583]\344\270\244\344\270\252\345\255\227\347\254\246\344\270\262\347\232\204\345\210\240\351\231\244\346\223\215\344\275\234.py"
+++ /dev/null
@@ -1,22 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def minDistance(self, word1: str, word2: str) -> int:
- # 定义: word1[:i-1] 和 word2[:j-1] 的最大公共长度为 dp[i][j]
- m, n = len(word1), len(word2)
- dp = [[0 for _ in range(n + 1)] for _ in range(m + 1)]
-
- for i in range(1, m + 1):
- for j in range(1, n + 1):
- if word1[i - 1] == word2[j - 1]:
- dp[i][j] = dp[i - 1][j - 1] + 1
- else:
- dp[i][j] = max(dp[i - 1][j], dp[i][j - 1])
-
- return m - dp[m][n] + n - dp[m][n]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
diff --git "a/leetcode/editor/cn/[59]\350\236\272\346\227\213\347\237\251\351\230\265 II.py" "b/leetcode/editor/cn/[59]\350\236\272\346\227\213\347\237\251\351\230\265 II.py"
deleted file mode 100644
index c259d5d9..00000000
--- "a/leetcode/editor/cn/[59]\350\236\272\346\227\213\347\237\251\351\230\265 II.py"
+++ /dev/null
@@ -1,44 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def generateMatrix(self, n: int) -> List[List[int]]:
- res = [[0 for _ in range(n)] for _ in range(n)]
- upper_bound, lower_bound = 0, n - 1
- left_bound, right_bound = 0, n - 1
-
- value = 1
- while value <= n * n:
- if upper_bound <= lower_bound:
- for j in range(left_bound, right_bound + 1):
- res[upper_bound][j] = value
- value += 1
- upper_bound += 1
-
- if left_bound <= right_bound:
- for i in range(upper_bound, lower_bound + 1):
- res[i][right_bound] = value
- value += 1
- right_bound -= 1
-
- if upper_bound <= lower_bound:
- # [right_bound, left_bound)
- for j in range(right_bound, left_bound - 1, -1):
- res[lower_bound][j] = value
- value += 1
- lower_bound -= 1
-
- if left_bound <= right_bound:
- for i in range(lower_bound, upper_bound - 1, -1):
- res[i][left_bound] = value
- value += 1
- left_bound += 1
-
- return res
- # leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.generateMatrix(5))
diff --git "a/leetcode/editor/cn/[5]\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\344\270\262.py" "b/leetcode/editor/cn/[5]\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\344\270\262.py"
deleted file mode 100644
index 501924ab..00000000
--- "a/leetcode/editor/cn/[5]\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\344\270\262.py"
+++ /dev/null
@@ -1,39 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def longestPalindrome(self, s: str) -> str:
- # 边界条件
- if len(s) == 0:
- return ""
-
- # s[i:j] 为最长回文子串的长度是 dp[i][j]
- length = len(s)
- dp = [[0 for _ in range(length)] for _ in range(length)]
- for i in range(length):
- dp[i][i] = 1
-
- max_length = 1
- max_str = s[0]
-
- for i in range(length - 1, -1, -1):
- for j in range(i + 1, length):
- if s[i] == s[j] and (j - i == 1 or dp[i + 1][j - 1] != 0):
- dp[i][j] = dp[i + 1][j - 1] + 2
-
- if dp[i][j] > max_length:
- max_length = dp[i][j]
- max_str = s[i:j + 1]
-
- return max_str
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.longestPalindrome("cbbd"), "bb")
- print(solution.longestPalindrome("aacabdkacaa"), "aca")
- print(solution.longestPalindrome("ac"), "a")
- print(solution.longestPalindrome("a"), "a")
- print(solution.longestPalindrome("babad"), "bab")
- print(solution.longestPalindrome("cbbd"), "bb")
diff --git "a/leetcode/editor/cn/[61]\346\227\213\350\275\254\351\223\276\350\241\250.py" "b/leetcode/editor/cn/[61]\346\227\213\350\275\254\351\223\276\350\241\250.py"
deleted file mode 100644
index 276eea0d..00000000
--- "a/leetcode/editor/cn/[61]\346\227\213\350\275\254\351\223\276\350\241\250.py"
+++ /dev/null
@@ -1,68 +0,0 @@
-from typing import Optional
-
-
-class ListNode:
- def __init__(self, val=0, next=None):
- self.val = val
- self.next = next
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for singly-linked list.
-# class ListNode:
-# def __init__(self, val=0, next=None):
-# self.val = val
-# self.next = next
-class Solution:
- def rotateRight(self, head: Optional[ListNode], k: int) -> Optional[ListNode]:
- # 长度为 0,1 的边界情况
- if head is None or head.next is None:
- return head
-
- root_node = ListNode(-1)
- root_node.next = head
-
- # right 走到最后一个节点的位置
- right = root_node
- node_count = 0
- while right.next is not None:
- node_count += 1
- right = right.next
-
- # 避免 k 超过 head 的长度
- k = k % node_count
-
- # 从开始的位置,走上 node_count - k 步
- left_node = root_node
- walk_count = node_count - k
-
- # left_node.next 是要开始换的位置
- while walk_count > 0:
- left_node = left_node.next
- walk_count -= 1
-
- # 开始进行交换操作
- right.next = root_node.next
- root_node.next = left_node.next
- left_node.next = None
-
- return root_node.next
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- root = ListNode(-1)
- cur_node = root
-
- for i in [0, 1, 2]:
- new_node = ListNode(i)
- cur_node.next = new_node
- cur_node = cur_node.next
-
- res = solution.rotateRight(root.next, 99999999)
- while res is not None:
- print(res.val)
- res = res.next
diff --git "a/leetcode/editor/cn/[64]\346\234\200\345\260\217\350\267\257\345\276\204\345\222\214.py" "b/leetcode/editor/cn/[64]\346\234\200\345\260\217\350\267\257\345\276\204\345\222\214.py"
deleted file mode 100644
index 0a579db6..00000000
--- "a/leetcode/editor/cn/[64]\346\234\200\345\260\217\350\267\257\345\276\204\345\222\214.py"
+++ /dev/null
@@ -1,37 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def minPathSum(self, grid: List[List[int]]) -> int:
- self.cache = {}
- return self.dp(grid, 0, 0)
-
- def dp(self, grid, i, j):
- # base case
- if i == len(grid) - 1:
- return sum(grid[-1][j:])
- if j == len(grid[0]) - 1:
- res = 0
- for idx in range(i, len(grid)):
- res += grid[idx][-1]
- return res
-
- if (i, j) in self.cache:
- return self.cache[(i, j)]
-
- else:
- self.cache[(i, j)] = min(self.dp(grid, i + 1, j),
- self.dp(grid, i, j + 1)) + grid[i][j]
- return self.cache[(i, j)]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.minPathSum(
- [[1, 4, 8, 6, 2, 2, 1, 7], [4, 7, 3, 1, 4, 5, 5, 1], [8, 8, 2, 1, 1, 8, 0, 1], [8, 9, 2, 9, 8, 0, 8, 9],
- [5, 7, 5, 7, 1, 8, 5, 5], [7, 0, 9, 4, 5, 6, 5, 6], [4, 9, 9, 7, 9, 1, 9, 0]]), 47)
- print(solution.minPathSum([[1, 3, 1], [1, 5, 1], [4, 2, 1]]), 7)
- print(solution.minPathSum([[1, 2, 3], [4, 5, 6]]), 12)
diff --git "a/leetcode/editor/cn/[652]\345\257\273\346\211\276\351\207\215\345\244\215\347\232\204\345\255\220\346\240\221.py" "b/leetcode/editor/cn/[652]\345\257\273\346\211\276\351\207\215\345\244\215\347\232\204\345\255\220\346\240\221.py"
deleted file mode 100644
index b95dccac..00000000
--- "a/leetcode/editor/cn/[652]\345\257\273\346\211\276\351\207\215\345\244\215\347\232\204\345\255\220\346\240\221.py"
+++ /dev/null
@@ -1,68 +0,0 @@
-from typing import List, Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def __init__(self):
- self.res = []
- self.sub_tree_str_count = {}
-
- def findDuplicateSubtrees(self, root: Optional[TreeNode]) -> List[Optional[TreeNode]]:
- self.traverse(root)
- return self.res
-
- def traverse(self, root: Optional[TreeNode]):
- if not root:
- return "#"
-
- left = self.traverse(root.left)
- right = self.traverse(root.right)
-
- sub_tree_str = left + "," + right + "," + str(root.val)
-
- if sub_tree_str not in self.sub_tree_str_count:
- self.sub_tree_str_count[sub_tree_str] = 1
- else:
- self.sub_tree_str_count[sub_tree_str] += 1
-
- if self.sub_tree_str_count[sub_tree_str] == 2:
- self.res.append(root)
-
- return sub_tree_str
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- node1 = TreeNode(1)
- node2 = TreeNode(2)
- node22 = TreeNode(2)
- node4 = TreeNode(4)
- node44 = TreeNode(4)
- node3 = TreeNode(3)
- node444 = TreeNode(4)
-
- node1.left = node2
- node1.right = node3
- node2.left = node4
- node3.left = node22
- node22.left = node44
- node3.right = node444
-
- solution = Solution()
- res = solution.findDuplicateSubtrees(node1)
- print(len(res))
diff --git "a/leetcode/editor/cn/[654]\346\234\200\345\244\247\344\272\214\345\217\211\346\240\221.py" "b/leetcode/editor/cn/[654]\346\234\200\345\244\247\344\272\214\345\217\211\346\240\221.py"
deleted file mode 100644
index 55d63def..00000000
--- "a/leetcode/editor/cn/[654]\346\234\200\345\244\247\344\272\214\345\217\211\346\240\221.py"
+++ /dev/null
@@ -1,50 +0,0 @@
-from typing import List, Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def constructMaximumBinaryTree(self, nums: List[int]) -> Optional[TreeNode]:
- # 两端都是封闭区间
- return self.sub_question(nums, 0, len(nums) - 1)
-
- def sub_question(self, nums, left, right):
- if left > right:
- return None
-
- if left == right:
- return TreeNode(nums[left])
-
- # 找到最大的位置
- max_pos = 0
- max_value = -1
- for i in range(left, right + 1):
- if nums[i] > max_value:
- max_pos = i
- max_value = nums[i]
-
- tree_root = TreeNode(max_value)
- tree_root.left = self.sub_question(nums, left, max_pos - 1)
- tree_root.right = self.sub_question(nums, max_pos + 1, right)
-
- return tree_root
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- res = solution.constructMaximumBinaryTree([3])
- print(res.val)
diff --git "a/leetcode/editor/cn/[674]\346\234\200\351\225\277\350\277\236\347\273\255\351\200\222\345\242\236\345\272\217\345\210\227.py" "b/leetcode/editor/cn/[674]\346\234\200\351\225\277\350\277\236\347\273\255\351\200\222\345\242\236\345\272\217\345\210\227.py"
deleted file mode 100644
index 45c9a9ad..00000000
--- "a/leetcode/editor/cn/[674]\346\234\200\351\225\277\350\277\236\347\273\255\351\200\222\345\242\236\345\272\217\345\210\227.py"
+++ /dev/null
@@ -1,20 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def findLengthOfLCIS(self, nums: List[int]) -> int:
- max_length = 1
-
- temp_length = 1
- for index, num in enumerate(nums):
- if index == 0:
- continue
- if num > nums[index - 1]:
- temp_length += 1
- else:
- temp_length = 1
-
- max_length = max(max_length, temp_length)
- return max_length
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[695]\345\262\233\345\261\277\347\232\204\346\234\200\345\244\247\351\235\242\347\247\257.py" "b/leetcode/editor/cn/[695]\345\262\233\345\261\277\347\232\204\346\234\200\345\244\247\351\235\242\347\247\257.py"
deleted file mode 100644
index 5254e838..00000000
--- "a/leetcode/editor/cn/[695]\345\262\233\345\261\277\347\232\204\346\234\200\345\244\247\351\235\242\347\247\257.py"
+++ /dev/null
@@ -1,38 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def maxAreaOfIsland(self, grid: List[List[int]]) -> int:
- res = 0
- m, n = len(grid), len(grid[0])
- for i in range(m):
- for j in range(n):
- if grid[i][j] == 1:
- res = max(self.dfs(grid, i, j), res)
- return res
-
- def dfs(self, grid: List[List[int]], i, j):
- m, n = len(grid), len(grid[0])
- if i < 0 or i >= m or j < 0 or j >= n:
- return 0
-
- if grid[i][j] == 0:
- return 0
- # 访问过了
- grid[i][j] = 0
- return self.dfs(grid, i - 1, j) + \
- self.dfs(grid, i + 1, j) + \
- self.dfs(grid, i, j + 1) + \
- self.dfs(grid, i, j - 1) + 1
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- grid = [[0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0],
- [0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], [0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0],
- [0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0],
- [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0]]
- print(solution.maxAreaOfIsland(grid))
diff --git "a/leetcode/editor/cn/[698]\345\210\222\345\210\206\344\270\272k\344\270\252\347\233\270\347\255\211\347\232\204\345\255\220\351\233\206.py" "b/leetcode/editor/cn/[698]\345\210\222\345\210\206\344\270\272k\344\270\252\347\233\270\347\255\211\347\232\204\345\255\220\351\233\206.py"
deleted file mode 100644
index 04ecd1bd..00000000
--- "a/leetcode/editor/cn/[698]\345\210\222\345\210\206\344\270\272k\344\270\252\347\233\270\347\255\211\347\232\204\345\255\220\351\233\206.py"
+++ /dev/null
@@ -1,67 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def __init__(self):
- self.state_res_cache = {}
-
- def canPartitionKSubsets(self, nums: List[int], k: int) -> bool:
- if k > len(nums):
- return False
-
- target_num = sum(nums) // k
- if sum(nums) != target_num * k:
- return False
-
- nums = sorted(nums, reverse=True)
- return self.back_track(k, nums, 0, 0, [False] * len(nums), target_num)
-
- def back_track(self, k, nums, start, bucket, used_pos, target_num):
- """
- :param k: 桶的数量
- :param nums: 原始数组
- :param start: 数组中开始的位置
- :param bucket: 当前桶的大小
- :param used_pos: 使用过的位置
- :param target_num: 目标数量
- :return:
- """
- if k == 0:
- # 所有的桶都被装满了
- return True
-
- state = tuple(used_pos)
-
- if bucket == target_num:
- res = self.back_track(k=k - 1, nums=nums, start=0, bucket=0, used_pos=used_pos, target_num=target_num)
- self.state_res_cache[state] = res
- return res
-
- if state in self.state_res_cache:
- return self.state_res_cache[state]
-
- for idx in range(start, len(nums)):
- if used_pos[idx]:
- # 已使用
- continue
- if nums[idx] + bucket > target_num:
- # 已装满
- continue
- bucket += nums[idx]
- used_pos[idx] = True
- if self.back_track(k, nums, idx + 1, bucket, used_pos, target_num):
- return True
- bucket -= nums[idx]
- used_pos[idx] = False
-
- return False
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.canPartitionKSubsets([4, 3, 2, 3, 5, 2, 1], 4))
- print(solution.canPartitionKSubsets([1, 2, 3, 4], 3))
- print(solution.canPartitionKSubsets([3, 9, 4, 5, 8, 8, 7, 9, 3, 6, 2, 10, 10, 4, 10, 2], 10))
- print(solution.canPartitionKSubsets(
- [3522, 181, 521, 515, 304, 123, 2512, 312, 922, 407, 146, 1932, 4037, 2646, 3871, 269], 5))
diff --git "a/leetcode/editor/cn/[6]Z \345\255\227\345\275\242\345\217\230\346\215\242.py" "b/leetcode/editor/cn/[6]Z \345\255\227\345\275\242\345\217\230\346\215\242.py"
deleted file mode 100644
index 0368560f..00000000
--- "a/leetcode/editor/cn/[6]Z \345\255\227\345\275\242\345\217\230\346\215\242.py"
+++ /dev/null
@@ -1,57 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def convert(self, s: str, numRows: int) -> str:
- new_str_metric = [["" for _ in range(len(s))] for _ in range(numRows)]
-
- # 向下的部分
- old_str_index = 0
-
- new_str_row = 0
- new_str_column = 0
-
- while old_str_index < len(s):
- for i in range(numRows):
- if old_str_index == len(s):
- break
-
- new_str_metric[new_str_row][new_str_column] = s[old_str_index]
-
- old_str_index += 1
- new_str_row += 1
-
- # 斜着向右上方移动
- if numRows == 1:
- new_str_row -= 1
- else:
- new_str_row -= 2
-
- new_str_column += 1
-
- for i in range(numRows - 2):
- if old_str_index == len(s):
- break
-
- new_str_metric[new_str_row][new_str_column] = s[old_str_index]
-
- new_str_row -= 1
- new_str_column += 1
- old_str_index += 1
-
- new_str = ""
-
- for i in range(numRows):
- for j in range(len(s)):
- if new_str_metric[i][j] != "":
- new_str += new_str_metric[i][j]
- return new_str
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.convert("ABC", 1), "ABC")
- print(solution.convert("PAYPALISHIRING", 3) == "PAHNAPLSIIGYIR")
- print(solution.convert("PAYPALISHIRING", 4) == "PINALSIGYAHRPI")
- print(solution.convert("A", 1) == "A")
diff --git "a/leetcode/editor/cn/[700]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\346\220\234\347\264\242.py" "b/leetcode/editor/cn/[700]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\346\220\234\347\264\242.py"
deleted file mode 100644
index a91f9224..00000000
--- "a/leetcode/editor/cn/[700]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\346\220\234\347\264\242.py"
+++ /dev/null
@@ -1,50 +0,0 @@
-from typing import Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def searchBST(self, root: Optional[TreeNode], val: int) -> Optional[TreeNode]:
- if root is None:
- return None
-
- if val == root.val:
- return root
-
- elif val < root.val:
- return self.searchBST(root.left, val)
-
- elif val > root.val:
- return self.searchBST(root.right, val)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- node1 = TreeNode(1)
- node2 = TreeNode(2)
- node3 = TreeNode(3)
- node4 = TreeNode(4)
- node5 = TreeNode(5)
- node6 = TreeNode(6)
-
- node5.left = node3
- node5.right = node6
- node3.left = node2
- node3.right = node4
- node2.left = node1
-
- solution = Solution()
- print(solution.searchBST(node5, 9).val)
diff --git "a/leetcode/editor/cn/[701]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\346\217\222\345\205\245\346\223\215\344\275\234.py" "b/leetcode/editor/cn/[701]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\346\217\222\345\205\245\346\223\215\344\275\234.py"
deleted file mode 100644
index 02d70721..00000000
--- "a/leetcode/editor/cn/[701]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\346\217\222\345\205\245\346\223\215\344\275\234.py"
+++ /dev/null
@@ -1,59 +0,0 @@
-from typing import Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def search(self, root: Optional[TreeNode], val: int):
-
- if val < root.val:
- if root.left is None:
- root.left = TreeNode(val)
- else:
- self.search(root.left, val)
- else:
- if root.right is None:
- root.right = TreeNode(val)
- else:
- self.search(root.right, val)
-
- def insertIntoBST(self, root: Optional[TreeNode], val: int) -> Optional[TreeNode]:
- if root is None:
- return TreeNode(val)
-
- self.search(root, val)
- return root
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- node1 = TreeNode(1)
- node2 = TreeNode(2)
- node3 = TreeNode(3)
- node4 = TreeNode(4)
- node5 = TreeNode(5)
- node6 = TreeNode(6)
-
- node5.left = node3
- node5.right = node6
- node3.left = node2
- node3.right = node4
- node2.left = node1
-
- solution = Solution()
- res = solution.insertIntoBST(None, 7)
- print(res.val)
diff --git "a/leetcode/editor/cn/[704]\344\272\214\345\210\206\346\237\245\346\211\276.py" "b/leetcode/editor/cn/[704]\344\272\214\345\210\206\346\237\245\346\211\276.py"
deleted file mode 100644
index 7745418d..00000000
--- "a/leetcode/editor/cn/[704]\344\272\214\345\210\206\346\237\245\346\211\276.py"
+++ /dev/null
@@ -1,18 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def search(self, nums: List[int], target: int) -> int:
- left, right = 0, len(nums) - 1
- while left <= right:
- mid = int(left + (right - left) / 2)
- if nums[mid] < target:
- left = mid + 1
- elif nums[mid] > target:
- right = mid - 1
- elif nums[mid] == target:
- return mid
-
- return -1
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[714]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272\345\220\253\346\211\213\347\273\255\350\264\271.py" "b/leetcode/editor/cn/[714]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272\345\220\253\346\211\213\347\273\255\350\264\271.py"
deleted file mode 100644
index b152160a..00000000
--- "a/leetcode/editor/cn/[714]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272\345\220\253\346\211\213\347\273\255\350\264\271.py"
+++ /dev/null
@@ -1,19 +0,0 @@
-import math
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def maxProfit(self, prices: List[int], fee: int) -> int:
- n = len(prices)
- # dp: 第 i 个时间最多交易 j 次,是否持有股票的收益
- dp = [[0, 0] for _ in range(n + 1)]
- dp[0][1] = -math.inf
-
- for i in range(1, n + 1):
- dp[i][0] = max(dp[i - 1][0], dp[i - 1][1] + prices[i - 1] - fee)
- dp[i][1] = max(dp[i - 1][1], dp[i - 1][0] - prices[i - 1])
-
- return dp[n][0]
-
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[718]\346\234\200\351\225\277\351\207\215\345\244\215\345\255\220\346\225\260\347\273\204.py" "b/leetcode/editor/cn/[718]\346\234\200\351\225\277\351\207\215\345\244\215\345\255\220\346\225\260\347\273\204.py"
deleted file mode 100644
index 6421c5f2..00000000
--- "a/leetcode/editor/cn/[718]\346\234\200\351\225\277\351\207\215\345\244\215\345\255\220\346\225\260\347\273\204.py"
+++ /dev/null
@@ -1,28 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def findLength(self, nums1: List[int], nums2: List[int]) -> int:
- # 定义: nums1[:i-1], nums2[:j-j] 的最长公共子数组的长度为 dp[i][j]
- m, n = len(nums1), len(nums2)
- dp = [[0 for _ in range(n + 1)] for _ in range(m + 1)]
-
- for i in range(1, m + 1):
- for j in range(1, n + 1):
- if nums1[i - 1] == nums2[j - 1]:
- dp[i][j] = dp[i - 1][j - 1] + 1
-
- return max([max(row) for row in dp])
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
-
- print(solution.findLength([1, 2, 3, 2, 1], [3, 2, 1, 4]), 3)
- print(solution.findLength([1, 1, 0, 0, 1], [1, 1, 0, 0, 0]), 4)
- print(solution.findLength([0, 0, 0, 0, 1], [1, 0, 0, 0, 0]), 4)
- print(solution.findLength([0, 0, 0, 0, 0], [0, 0, 0, 0, 0]), 5)
- print(solution.findLength([1, 2, 3, 2, 1], [3, 2, 1, 4, 7]), 3)
diff --git "a/leetcode/editor/cn/[72]\347\274\226\350\276\221\350\267\235\347\246\273.py" "b/leetcode/editor/cn/[72]\347\274\226\350\276\221\350\267\235\347\246\273.py"
deleted file mode 100644
index 47d9b39d..00000000
--- "a/leetcode/editor/cn/[72]\347\274\226\350\276\221\350\267\235\347\246\273.py"
+++ /dev/null
@@ -1,31 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def minDistance(self, word1: str, word2: str) -> int:
- m = len(word1)
- n = len(word2)
-
- dp = [[0 for _ in range(n + 1)] for _ in range(m + 1)]
- for i in range(m + 1):
- for j in range(n + 1):
- if i == 0:
- # i 为 0 ,那就需要修改 j 步
- dp[i][j] = j
- elif j == 0:
- dp[i][j] = i
- elif word1[i - 1] == word2[j - 1]:
- dp[i][j] = dp[i - 1][j - 1]
- elif word1[i - 1] != word2[j - 1]:
- dp[i][j] = min(
- dp[i - 1][j - 1] + 1,
- dp[i - 1][j] + 1,
- dp[i][j - 1] + 1)
-
- return dp[m][n]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.minDistance("horse", "ros"))
- print(solution.minDistance("intention", "execution"))
diff --git "a/leetcode/editor/cn/[743]\347\275\221\347\273\234\345\273\266\350\277\237\346\227\266\351\227\264.py" "b/leetcode/editor/cn/[743]\347\275\221\347\273\234\345\273\266\350\277\237\346\227\266\351\227\264.py"
deleted file mode 100644
index 50e7596b..00000000
--- "a/leetcode/editor/cn/[743]\347\275\221\347\273\234\345\273\266\350\277\237\346\227\266\351\227\264.py"
+++ /dev/null
@@ -1,44 +0,0 @@
-import math
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def networkDelayTime(self, times: List[List[int]], n: int, k: int) -> int:
- # 构造 graph 和 边的权重,所有都 - 1
- graph = [[] for _ in range(n)]
- weight = [[0 for _ in range(n)] for _ in range(n)]
- for source_node, target_node, value in times:
- graph[source_node - 1].append(target_node - 1)
- weight[source_node - 1][target_node - 1] = value
-
- # 一开始距离是无穷远
- distance_from_k = [math.inf] * n
-
- # 初始节点
- distance_from_k[k - 1] = 0
- queue = [[k - 1, 0]]
- while len(queue) > 0:
- from_node, from_distance = queue.pop(0)
- if from_distance > distance_from_k[from_node]:
- continue
-
- for neighbor in graph[from_node]:
- neighbor_distance = distance_from_k[from_node] + weight[from_node][neighbor]
- if neighbor_distance < distance_from_k[neighbor]:
- distance_from_k[neighbor] = neighbor_distance
- queue.append([neighbor, neighbor_distance])
-
- if math.inf in distance_from_k:
- return -1
- else:
- return max(distance_from_k)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.networkDelayTime([[2, 1, 1], [2, 3, 1], [3, 4, 1]], 4, 2), 2)
- print(solution.networkDelayTime([[1, 2, 1]], 2, 1), 1)
- print(solution.networkDelayTime([[1, 2, 1]], 2, 2), -1)
diff --git "a/leetcode/editor/cn/[752]\346\211\223\345\274\200\350\275\254\347\233\230\351\224\201.py" "b/leetcode/editor/cn/[752]\346\211\223\345\274\200\350\275\254\347\233\230\351\224\201.py"
deleted file mode 100644
index 12e73a2d..00000000
--- "a/leetcode/editor/cn/[752]\346\211\223\345\274\200\350\275\254\347\233\230\351\224\201.py"
+++ /dev/null
@@ -1,56 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def plusOne(self, target, i):
- return target[:i] + str((int(target[i]) + 1) % 10) + target[i + 1:]
-
- def minusOne(self, target, i):
- return target[:i] + str((int(target[i]) - 1) % 10) + target[i + 1:]
-
- def openLock(self, deadends: List[str], target: str) -> int:
-
- queue = ["0000"]
-
- walk = 0
- used_nums = set()
-
- while len(queue) > 0:
- queue_length = len(queue)
-
- # 所有相邻的顶点都拿出来
- for j in range(queue_length):
- cur = queue.pop(0)
- # 出口
- if cur == target:
- return walk
-
- # 避免走死路
- if cur in deadends:
- continue
-
- # 每个定点做一些手脚
- for i in range(4):
- up = self.plusOne(cur, i)
- if up not in used_nums:
- queue.append(up)
- used_nums.add(up)
-
- down = self.minusOne(cur, i)
- if down not in used_nums:
- queue.append(down)
- used_nums.add(down)
- # 计算步数
- walk += 1
-
- return -1
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- deadends = ["0201", "0101", "0102", "1212", "2002"]
- target = "0202"
- print(solution.openLock(deadends, target))
diff --git "a/leetcode/editor/cn/[75]\351\242\234\350\211\262\345\210\206\347\261\273.py" "b/leetcode/editor/cn/[75]\351\242\234\350\211\262\345\210\206\347\261\273.py"
deleted file mode 100644
index eada1006..00000000
--- "a/leetcode/editor/cn/[75]\351\242\234\350\211\262\345\210\206\347\261\273.py"
+++ /dev/null
@@ -1,42 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def sortColors(self, nums: List[int]) -> None:
- """
- Do not return anything, modify nums in-place instead.
- """
- # 这里写了个冒泡排序
- for i in range(len(nums)):
- min_j_pos = -1
- min_j_value = nums[i]
- for j in range(i + 1, len(nums)):
- if nums[j] < min_j_value:
- min_j_value = nums[j]
- min_j_pos = j
-
- if min_j_pos != -1:
- nums[i], nums[min_j_pos] = nums[min_j_pos], nums[i]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- test = [1, 2]
- solution.sortColors(test)
- print(test)
-
- test = [2, 0]
- solution.sortColors(test)
- print(test)
-
- test = [2, 0, 2, 1, 1, 0]
- solution.sortColors(test)
- print(test)
-
- test = [2, 0, 1]
- solution.sortColors(test)
- print(test)
diff --git "a/leetcode/editor/cn/[76]\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262.py" "b/leetcode/editor/cn/[76]\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262.py"
deleted file mode 100644
index 07977a7d..00000000
--- "a/leetcode/editor/cn/[76]\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262.py"
+++ /dev/null
@@ -1,60 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-import math
-
-
-class Solution:
-
- def minWindow(self, s: str, t: str) -> str:
- need_char_2_count = {}
- for char in t:
- if char not in need_char_2_count:
- need_char_2_count[char] = 1
- else:
- need_char_2_count[char] += 1
-
- left, right = 0, 0
- window_char_2_count = {}
- valid = 0
-
- window_left, window_len = 0, math.inf
- while right < len(s):
-
- # 更新窗口内的数据分布
- if s[right] in window_char_2_count:
- window_char_2_count[s[right]] += 1
- else:
- window_char_2_count[s[right]] = 1
-
- if s[right] in need_char_2_count and \
- window_char_2_count[s[right]] == need_char_2_count[s[right]]:
- valid += 1
-
- right += 1
- while valid == len(need_char_2_count):
- if right - left < window_len:
- window_len = right - left
- window_left = left
-
- # 更新窗口内的数据分布
- if s[left] in need_char_2_count and \
- window_char_2_count[s[left]] == need_char_2_count[s[left]]:
- valid -= 1
-
- window_char_2_count[s[left]] -= 1
- left += 1
-
- if window_len == math.inf:
- return ""
- else:
- return s[window_left:window_left + window_len]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.minWindow("ADOBECODEBANC", "ABC"), "BANC")
- print(solution.minWindow("aa", "aa"), "aa")
- print(solution.minWindow("a", "a"), "a")
- print(solution.minWindow("a", "aa"), "")
diff --git "a/leetcode/editor/cn/[77]\347\273\204\345\220\210.py" "b/leetcode/editor/cn/[77]\347\273\204\345\220\210.py"
deleted file mode 100644
index fc239f9a..00000000
--- "a/leetcode/editor/cn/[77]\347\273\204\345\220\210.py"
+++ /dev/null
@@ -1,29 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def __init__(self):
- self.res = []
- self.track_list = []
-
- def combine(self, n: int, k: int) -> List[List[int]]:
- self.back_track(n, 1, k)
- return self.res
-
- def back_track(self, n, start, k):
- if len(self.track_list) == k:
- self.res.append(self.track_list.copy())
- for idx in range(start, n + 1):
- # 做选择
- self.track_list.append(idx)
- self.back_track(n, idx + 1, k)
- self.track_list.pop(-1)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.combine(4, 2))
- print(solution.combine(1, 1))
diff --git "a/leetcode/editor/cn/[785]\345\210\244\346\226\255\344\272\214\345\210\206\345\233\276.py" "b/leetcode/editor/cn/[785]\345\210\244\346\226\255\344\272\214\345\210\206\345\233\276.py"
deleted file mode 100644
index 78e6383d..00000000
--- "a/leetcode/editor/cn/[785]\345\210\244\346\226\255\344\272\214\345\210\206\345\233\276.py"
+++ /dev/null
@@ -1,53 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def isBipartite(self, graph: List[List[int]]) -> bool:
- # 第一个点在 0 侧,第一个点的邻居应该在 1 侧
- self.flag = True
- # 主要是这里,需要考虑
- for idx in range(len(graph)):
- self.visited = [False] * len(graph)
- self.node_side = {idx: 0}
- self.bfs(graph, idx)
- return self.flag
-
- def traverse(self, graph, node_idx):
- self.visited[node_idx] = True
-
- for neighbor in graph[node_idx]:
- if not self.visited[neighbor]:
- # 没有访问过
- self.node_side[neighbor] = 1 - self.node_side[node_idx]
- self.traverse(graph, neighbor)
- elif self.node_side[neighbor] == self.node_side[node_idx]:
- self.flag = False
-
- def bfs(self, graph, node_idx):
- self.visited[node_idx] = True
- q = [node_idx]
- while len(q) > 0:
- cur = q.pop(0)
- for neighbor in graph[cur]:
- if not self.visited[neighbor]:
- self.node_side[neighbor] = 1 - self.node_side[cur]
- self.visited[neighbor] = True
- q.append(neighbor)
- elif self.node_side[neighbor] == self.node_side[cur]:
- self.flag = False
- return
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.isBipartite(
- [[], [2, 4, 6], [1, 4, 8, 9], [7, 8], [1, 2, 8, 9], [6, 9], [1, 5, 7, 8, 9], [3, 6, 9], [2, 3, 4, 6, 9],
- [2, 4, 5, 6, 7, 8]]), False)
- print(solution.isBipartite([[], [3], [], [1], []]), True)
- print(solution.isBipartite([[1, 2, 3], [0, 2], [0, 1, 3], [0, 2]]), False)
- print(solution.isBipartite([[1, 3], [0, 2], [1, 3], [0, 2]]), True)
- print(solution.isBipartite([[0]]), False)
diff --git "a/leetcode/editor/cn/[78]\345\255\220\351\233\206.py" "b/leetcode/editor/cn/[78]\345\255\220\351\233\206.py"
deleted file mode 100644
index 142087d9..00000000
--- "a/leetcode/editor/cn/[78]\345\255\220\351\233\206.py"
+++ /dev/null
@@ -1,41 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution2:
- def subsets(self, nums: List[int]) -> List[List[int]]:
- res_list = [[], [nums[0]]]
- for idx in range(1, len(nums)):
- temp_res_list = res_list.copy()
- for res in res_list:
- temp_res_list.append(res + [nums[idx]])
- res_list = temp_res_list.copy()
- return res_list
-
-
-class Solution:
- def __init__(self):
- self.res = []
- self.track_list = []
-
- def subsets(self, nums: List[int]) -> List[List[int]]:
- self.back_track(nums, 0)
- return self.res
-
- def back_track(self, nums, start):
- self.res.append(self.track_list.copy())
- for idx in range(start, len(nums)):
- # 做选择
- self.track_list.append(nums[idx])
- self.back_track(nums, idx + 1)
-
- # 撤销选择
- self.track_list.pop(-1)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.subsets([1, 2, 3]))
- print(solution.subsets([0]))
diff --git "a/leetcode/editor/cn/[797]\346\211\200\346\234\211\345\217\257\350\203\275\347\232\204\350\267\257\345\276\204.py" "b/leetcode/editor/cn/[797]\346\211\200\346\234\211\345\217\257\350\203\275\347\232\204\350\267\257\345\276\204.py"
deleted file mode 100644
index f065de3a..00000000
--- "a/leetcode/editor/cn/[797]\346\211\200\346\234\211\345\217\257\350\203\275\347\232\204\350\267\257\345\276\204.py"
+++ /dev/null
@@ -1,26 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def allPathsSourceTarget(self, graph: List[List[int]]) -> List[List[int]]:
- self.res = []
- self.traverse(graph, 0, len(graph) - 1, [])
- return self.res
-
- def traverse(self, graph, node_idx, target_idx, track_list):
- if node_idx == target_idx:
- self.res.append(track_list + [target_idx])
-
- track_list.append(node_idx)
- for neighbor_node in graph[node_idx]:
- self.traverse(graph, neighbor_node, target_idx, track_list)
- track_list.pop(-1)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.allPathsSourceTarget([[4, 3, 1], [3, 2, 4], [3], [4], []]))
diff --git "a/leetcode/editor/cn/[7]\346\225\264\346\225\260\345\217\215\350\275\254.py" "b/leetcode/editor/cn/[7]\346\225\264\346\225\260\345\217\215\350\275\254.py"
deleted file mode 100644
index d92fb967..00000000
--- "a/leetcode/editor/cn/[7]\346\225\264\346\225\260\345\217\215\350\275\254.py"
+++ /dev/null
@@ -1,36 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-import math
-
-
-class Solution:
- def reverse(self, x: int) -> int:
- res = 0
- flag = 1
- if x < 0:
- flag = -1
- x = -x
- num_max = int(math.pow(2, 31) / 10)
- while x:
- num = x % 10
- x = int(x / 10)
-
- res = 10 * res + num
- # 最后一位越界就不算
- if res > num_max and x != 0:
- return 0
-
- return res * flag
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.reverse(-2147483412), -2143847412)
- print(solution.reverse(1534236469), 0)
- print(solution.reverse(1), 1)
- print(solution.reverse(-123), -321)
- print(solution.reverse(123), 321)
- print(solution.reverse(120), 21)
- print(solution.reverse(0), 0)
diff --git "a/leetcode/editor/cn/[805]\346\225\260\347\273\204\347\232\204\345\235\207\345\200\274\345\210\206\345\211\262.py" "b/leetcode/editor/cn/[805]\346\225\260\347\273\204\347\232\204\345\235\207\345\200\274\345\210\206\345\211\262.py"
deleted file mode 100644
index fdd07f0f..00000000
--- "a/leetcode/editor/cn/[805]\346\225\260\347\273\204\347\232\204\345\235\207\345\200\274\345\210\206\345\211\262.py"
+++ /dev/null
@@ -1,4 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def splitArraySameAverage(self, nums: List[int]) -> bool:
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[870]\344\274\230\345\212\277\346\264\227\347\211\214.py" "b/leetcode/editor/cn/[870]\344\274\230\345\212\277\346\264\227\347\211\214.py"
deleted file mode 100644
index a301039c..00000000
--- "a/leetcode/editor/cn/[870]\344\274\230\345\212\277\346\264\227\347\211\214.py"
+++ /dev/null
@@ -1,44 +0,0 @@
-from collections import defaultdict
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def advantageCount(self, nums1: List[int], nums2: List[int]) -> List[int]:
- n = len(nums1)
- # 按降序排列
- sorted_nums1 = sorted(nums1, reverse=True)
- sorted_nums2 = sorted(nums2, reverse=True)
-
- mapping = defaultdict(list)
- for i in range(n):
- mapping[nums2[i]].append(i)
-
- # nums1 中 left 是当前区间最小值, right 是当前区间最大值
- left, right = 0, n - 1
- res = [0] * n
-
- for n2 in sorted_nums2:
- if sorted_nums1[left] > n2:
- target = sorted_nums1[left]
- left += 1
- else:
- target = sorted_nums1[right]
- right -= 1
-
- res[mapping[n2].pop()] = target
- return res
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.advantageCount([12, 24, 8, 32], [13, 25, 32, 11]), [24, 32, 8, 12])
- print(solution.advantageCount(
- [8, 2, 4, 4, 5, 6, 6, 0, 4, 7],
- [0, 8, 7, 4, 4, 2, 8, 5, 2, 0]),
- [4, 7, 8, 6, 5, 4, 0, 6, 4, 2])
-
- print(solution.advantageCount([0], [5]), [0])
- print(solution.advantageCount([2, 7, 11, 15], [1, 10, 4, 11]), [2, 11, 7, 15])
diff --git "a/leetcode/editor/cn/[886]\345\217\257\350\203\275\347\232\204\344\272\214\345\210\206\346\263\225.py" "b/leetcode/editor/cn/[886]\345\217\257\350\203\275\347\232\204\344\272\214\345\210\206\346\263\225.py"
deleted file mode 100644
index f192d320..00000000
--- "a/leetcode/editor/cn/[886]\345\217\257\350\203\275\347\232\204\344\272\214\345\210\206\346\263\225.py"
+++ /dev/null
@@ -1,44 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def possibleBipartition(self, n: int, dislikes: List[List[int]]) -> bool:
- graph = self.build_graph(dislikes)
- self.visited = [False] * n
- self.flag = True
-
- for node_idx in range(n):
- if not self.visited[node_idx]:
- self.node_side = {node_idx: 0}
- self.traverse(graph, node_idx)
-
- return self.flag
-
- def traverse(self, graph, node_idx):
- self.visited[node_idx] = True
- for neighbor in graph[node_idx]:
- if not self.visited[neighbor]:
- # 没有访问过
- self.node_side[neighbor] = 1 - self.node_side[node_idx]
- self.traverse(graph, neighbor)
- elif self.node_side[neighbor] != 1 - self.node_side[node_idx]:
- # 访问过,但是节点关系不正确
- self.flag = False
-
- def build_graph(self, dislikes):
- from collections import defaultdict
- graph = defaultdict(list)
- for pair in dislikes:
- graph[pair[0] - 1].append(pair[1] - 1)
- graph[pair[1] - 1].append(pair[0] - 1)
- return graph
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.possibleBipartition(4, [[1, 2], [1, 3], [2, 4]]), True)
- print(solution.possibleBipartition(3, [[1, 2], [1, 3], [2, 3]]), False)
- print(solution.possibleBipartition(5, [[1, 2], [2, 3], [3, 4], [4, 5], [1, 5]]), False)
diff --git "a/leetcode/editor/cn/[889]\346\240\271\346\215\256\345\211\215\345\272\217\345\222\214\345\220\216\345\272\217\351\201\215\345\216\206\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.py" "b/leetcode/editor/cn/[889]\346\240\271\346\215\256\345\211\215\345\272\217\345\222\214\345\220\216\345\272\217\351\201\215\345\216\206\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.py"
deleted file mode 100644
index 05445359..00000000
--- "a/leetcode/editor/cn/[889]\346\240\271\346\215\256\345\211\215\345\272\217\345\222\214\345\220\216\345\272\217\351\201\215\345\216\206\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.py"
+++ /dev/null
@@ -1,85 +0,0 @@
-from typing import List, Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def constructFromPrePost(self, preorder: List[int], postorder: List[int]) -> Optional[TreeNode]:
- if len(preorder) == 0:
- return None
-
- if len(preorder) == 1:
- return TreeNode(preorder[0])
-
- root_node = TreeNode(preorder[0])
-
- # 尝试找左子树
- left_node_count = 0
-
- # 最右边的位置已被占用
- for temp_left_node_count in range(1, len(preorder)):
- flag = 1
- for pre_value in preorder[1:1 + temp_left_node_count]:
- if pre_value not in postorder[:temp_left_node_count]:
- flag = 0
-
- if flag == 1:
- left_node_count = temp_left_node_count
- break
-
- root_node.left = self.constructFromPrePost(
- preorder[1:1 + left_node_count],
- postorder[:left_node_count]
- )
-
- root_node.right = self.constructFromPrePost(
- preorder[1 + left_node_count:],
- postorder[left_node_count:-1]
- )
-
- return root_node
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-def print_inorder(node: TreeNode):
- if node is None:
- return
-
- print(node.val)
- print_inorder(node.left)
- print_inorder(node.right)
-
-
-def print_postorder(node: TreeNode):
- if node is None:
- return
-
- print_postorder(node.left)
- print_postorder(node.right)
- print(node.val)
-
-
-if __name__ == "__main__":
- preorder = [1]
- postorder = [1]
-
- solution = Solution()
- res = solution.constructFromPrePost(preorder, postorder)
- print(res.val)
-
- print_inorder(res)
- print("-------")
- print_postorder(res)
diff --git "a/leetcode/editor/cn/[88]\345\220\210\345\271\266\344\270\244\344\270\252\346\234\211\345\272\217\346\225\260\347\273\204.py" "b/leetcode/editor/cn/[88]\345\220\210\345\271\266\344\270\244\344\270\252\346\234\211\345\272\217\346\225\260\347\273\204.py"
deleted file mode 100644
index 78a0e2f6..00000000
--- "a/leetcode/editor/cn/[88]\345\220\210\345\271\266\344\270\244\344\270\252\346\234\211\345\272\217\346\225\260\347\273\204.py"
+++ /dev/null
@@ -1,95 +0,0 @@
-# 给你两个按 非递减顺序 排列的整数数组 nums1 和 nums2,另有两个整数 m 和 n ,分别表示 nums1 和 nums2 中的元素数目。
-#
-# 请你 合并 nums2 到 nums1 中,使合并后的数组同样按 非递减顺序 排列。
-#
-# 注意:最终,合并后数组不应由函数返回,而是存储在数组 nums1 中。为了应对这种情况,nums1 的初始长度为 m + n,其中前 m 个元素表示应合并
-# 的元素,后 n 个元素为 0 ,应忽略。nums2 的长度为 n 。
-#
-#
-#
-# 示例 1:
-#
-#
-# 输入:nums1 = [1,2,3,0,0,0], m = 3, nums2 = [2,5,6], n = 3
-# 输出:[1,2,2,3,5,6]
-# 解释:需要合并 [1,2,3] 和 [2,5,6] 。
-# 合并结果是 [1,2,2,3,5,6] ,其中斜体加粗标注的为 nums1 中的元素。
-#
-#
-# 示例 2:
-#
-#
-# 输入:nums1 = [1], m = 1, nums2 = [], n = 0
-# 输出:[1]
-# 解释:需要合并 [1] 和 [] 。
-# 合并结果是 [1] 。
-#
-#
-# 示例 3:
-#
-#
-# 输入:nums1 = [0], m = 0, nums2 = [1], n = 1
-# 输出:[1]
-# 解释:需要合并的数组是 [] 和 [1] 。
-# 合并结果是 [1] 。
-# 注意,因为 m = 0 ,所以 nums1 中没有元素。nums1 中仅存的 0 仅仅是为了确保合并结果可以顺利存放到 nums1 中。
-#
-#
-#
-#
-# 提示:
-#
-#
-# nums1.length == m + n
-# nums2.length == n
-# 0 <= m, n <= 200
-# 1 <= m + n <= 200
-# -10⁹ <= nums1[i], nums2[j] <= 10⁹
-#
-#
-#
-#
-# 进阶:你可以设计实现一个时间复杂度为 O(m + n) 的算法解决此问题吗?
-#
-# Related Topics 数组 双指针 排序 👍 1608 👎 0
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def merge(self, nums1: List[int], m: int, nums2: List[int], n: int) -> None:
- """
- Do not return anything, modify nums1 in-place instead.
- """
- nums3 = []
- i = 0
- j = 0
-
- while i < m and j < n:
- if nums1[i] < nums2[j]:
- nums3.append(nums1[i])
- i += 1
- else:
- nums3.append(nums2[j])
- j += 1
-
- if i < m:
- nums3.extend(nums1[i:m])
-
- if j < n:
- nums3.extend(nums2[j:n])
-
- for idx, num in enumerate(nums3):
- nums1[idx] = num
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- nums1 = [1, 2, 3, 0, 0, 0]
- m = 3
- nums2 = [2,5,6]
- n = 3
- solution.merge(nums1, m, nums2, n)
- print(nums1)
diff --git "a/leetcode/editor/cn/[8]\345\255\227\347\254\246\344\270\262\350\275\254\346\215\242\346\225\264\346\225\260 (atoi).py" "b/leetcode/editor/cn/[8]\345\255\227\347\254\246\344\270\262\350\275\254\346\215\242\346\225\264\346\225\260 (atoi).py"
deleted file mode 100644
index 4de5785e..00000000
--- "a/leetcode/editor/cn/[8]\345\255\227\347\254\246\344\270\262\350\275\254\346\215\242\346\225\264\346\225\260 (atoi).py"
+++ /dev/null
@@ -1,73 +0,0 @@
-import math
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def myAtoi(self, s: str) -> int:
- num_max = int(math.pow(2, 31) / 10)
- good_char = ['+', '-'] + [str(i) for i in range(10)]
-
- s = s.strip()
-
- new_s = [] # 只包含合适的数字
- flag = 1 # 初始化为 -1
- for index, c in enumerate(s):
- if len(new_s) == 0:
- # 数字前边出现字母时,直接报错
- if c not in good_char:
- return 0
-
- # 仔细判断一下 + - 的逻辑
- if c in good_char[:2]:
- if c == '-':
- flag = -1
- if index != 0:
- return 0
-
- if c == '0':
- continue
-
- if c in good_char[2:]:
- new_s.append(c)
-
- # 数字之后的各种小符号,全部忽略
- if len(new_s) > 0 and c not in good_char[2:]:
- break
-
- if len(new_s) > len(str(num_max)) + 1:
- if flag > 0:
- return int(math.pow(2, 31) - 1)
- else:
- return int(-math.pow(2, 31))
-
- res = 0
- for idx, c in enumerate(new_s):
- res = 10 * res + int(c)
-
- # 越界,但这里需要考虑是否为最后一个字符
- if res > num_max and idx != len(new_s) - 1:
- if flag > 0:
- return int(math.pow(2, 31) - 1)
- elif flag < 0:
- return int(-math.pow(2, 31))
-
- if res == num_max:
- if flag > 0 and int(new_s[-1]) >= 7:
- return int(math.pow(2, 31) - 1)
- elif flag < 0 and int(new_s[-1]) > 7:
- return int(-math.pow(2, 31))
-
- return res * flag
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.myAtoi("2147483800"), 2147483647)
- print(solution.myAtoi("-2147483800"), -2147483648)
- print(solution.myAtoi("2147483646"), 2147483646)
- print(solution.myAtoi("2147483648"), 2147483647)
- print(solution.myAtoi("42"), 42)
- print(solution.myAtoi("-2147483412"), -2143847412)
diff --git "a/leetcode/editor/cn/[90]\345\255\220\351\233\206 II.py" "b/leetcode/editor/cn/[90]\345\255\220\351\233\206 II.py"
deleted file mode 100644
index fe9bd215..00000000
--- "a/leetcode/editor/cn/[90]\345\255\220\351\233\206 II.py"
+++ /dev/null
@@ -1,45 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution2:
- def subsetsWithDup(self, nums: List[int]) -> List[List[int]]:
- res_list = [[], [nums[0]]]
- for idx in range(1, len(nums)):
- temp_res_list = res_list.copy()
- for res in res_list:
- temp = sorted(res + [nums[idx]])
- if temp not in temp_res_list:
- temp_res_list.append(temp)
- res_list = temp_res_list.copy()
- return res_list
-
-
-class Solution:
- def __init__(self):
- self.res = []
- self.track_list = []
-
- def subsets(self, nums: List[int]) -> List[List[int]]:
- self.back_track(nums, 0)
- return self.res
-
- def back_track(self, nums, start):
- self.res.append(self.track_list.copy())
- for idx in range(start, len(nums)):
- if idx != start and nums[idx] == nums[idx - 1]:
- continue
- # 做选择
- self.track_list.append(nums[idx])
- self.back_track(nums, idx + 1)
-
- # 撤销选择
- self.track_list.pop(-1)
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.subsets([1, 2, 2]))
- print(solution.subsets([0]))
diff --git "a/leetcode/editor/cn/[912]\346\216\222\345\272\217\346\225\260\347\273\204.py" "b/leetcode/editor/cn/[912]\346\216\222\345\272\217\346\225\260\347\273\204.py"
deleted file mode 100644
index 9a6bd892..00000000
--- "a/leetcode/editor/cn/[912]\346\216\222\345\272\217\346\225\260\347\273\204.py"
+++ /dev/null
@@ -1,184 +0,0 @@
-import random
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution33:
- def partition(self, nums, left, right):
- pivot = nums[left]
- i, j = left + 1, right
- while i <= j:
- while i < right and nums[i] < pivot:
- i += 1
- while j > left and nums[j] > pivot:
- j -= 1
-
- if i >= j:
- break
-
- nums[i], nums[j] = nums[j], nums[i]
- # 最后将 pivot 放到该放的位置上
- nums[left], nums[j] = nums[j], nums[left]
- return j
-
- def sort(self, nums, left, right):
- if right <= left:
- return
- # 实现 left, right 范围内的排序
- p = self.partition(nums, left, right)
- self.sort(nums, left, p - 1)
- self.sort(nums, p + 1, right)
-
- def sortArray(self, nums: List[int]) -> List[int]:
- # 实现一个快速排序
- random.shuffle(nums)
- self.sort(nums, 0, len(nums) - 1)
- return nums
-
-
-class Solution1:
- def partition(self, nums, left, right):
- pivot = nums[right]
- i, j = left, left
- while j < right:
- if nums[j] < pivot:
- nums[i], nums[j] = nums[j], nums[i]
- i += 1
- j += 1
- nums[i], nums[right] = nums[right], nums[i]
- return i
-
- def sort(self, nums, left, right):
- if right <= left:
- return
- # 实现 left, right 范围内的排序
- p = self.partition(nums, left, right)
- self.sort(nums, left, p - 1)
- self.sort(nums, p + 1, right)
-
- def sortArray(self, nums: List[int]) -> List[int]:
-
- # 实现一个快速排序
- self.sort(nums, 0, len(nums) - 1)
- return nums
-
-
-class Solution5:
- def quick_sort(self, nums, left, right):
- flag = nums[random.randint(left, right)]
- i, j = left, right
- while i < j:
- while nums[i] < flag: i += 1
- while nums[j] > flag: j -= 1
-
- if i <= j:
- nums[i], nums[j] = nums[j], nums[i]
- i += 1
- j -= 1
- if i < right: self.quick_sort(nums, i, right)
- if j > left: self.quick_sort(nums, left, j)
-
- def sortArray(self, nums: List[int]) -> List[int]:
- # 实现一个快速排序
- self.quick_sort(nums, 0, len(nums) - 1)
- return nums
-
-
-class Solution3:
- def sortArray(self, nums: List[int]) -> List[int]:
- import random # 导入随机数函数库
- def quicksort(nums, left, right):
- flag = nums[random.randint(left, right)] # 随机初始化哨兵位置
- i, j = left, right # 设定从左到右的指针i,从右到左的指针j
- while i <= j:
- while nums[i] < flag: i += 1 # i从左往右扫,找到大于等于flag的数。
- while nums[j] > flag: j -= 1 # j从右往左扫,找到小于等于flag的数。
- if i <= j:
- nums[i], nums[j] = nums[j], nums[i] # 交换左右指针下标对应的数值
- i += 1 # 左指针继续往右走
- j -= 1 # 右指针继续往左走
- if i < right: quicksort(nums, i, right) # 递归解决flag左边的低位数组的排序
- if j > left: quicksort(nums, left, j) # 递归解决flag右边的低位数组的排序
-
- quicksort(nums, 0, len(nums) - 1) # 函数入口,将整个数组的信息传入
- return nums # 返回修改后的nums
-
-
-class Solution4:
-
- def sortArray(self, nums: List[int]) -> List[int]:
- if len(nums) == 1:
- return nums
-
- mid = len(nums) // 2
- left_list = self.sortArray(nums[:mid])
- right_list = self.sortArray(nums[mid:])
-
- res = []
- left_idx = 0
- right_idx = 0
- left_count = len(left_list)
- right_count = len(right_list)
-
- while left_idx < left_count and right_idx < right_count:
- if left_list[left_idx] < right_list[right_idx]:
- res.append(left_list[left_idx])
- left_idx += 1
- else:
- res.append(right_list[right_idx])
- right_idx += 1
-
- if left_idx < left_count:
- res.extend(left_list[left_idx:])
-
- if right_idx < right_count:
- res.extend(right_list[right_idx:])
-
- return res
-
-
-class Solution:
- def merge_sort(self, nums, l, r):
- # 两侧都是闭合的
- if l == r:
- return
- mid = (l + r) // 2
- self.merge_sort(nums, l, mid)
- self.merge_sort(nums, mid + 1, r)
-
- result = []
- left_idx, right_idx = l, mid + 1
- while left_idx <= mid or right_idx <= r:
- if l <= left_idx <= mid < right_idx <= r:
- # 正常范围内的
- if nums[left_idx] < nums[right_idx]:
- result.append(nums[left_idx])
- left_idx += 1
- else:
- result.append(nums[right_idx])
- right_idx += 1
- elif left_idx > mid:
- # 左半边全合并了,只有右半边了
- result.append(nums[right_idx])
- right_idx += 1
- elif right_idx > r:
- # 右半边全合并了,只有左半边了
- result.append(nums[left_idx])
- left_idx += 1
-
- nums[l: r + 1] = result
-
- def sortArray(self, nums: List[int]) -> List[int]:
- self.merge_sort(nums, 0, len(nums) - 1)
- return nums
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.sortArray([3, 2, 3, 1, 2, 4, 5, 5, 6]))
- print(solution.sortArray([5, 2, 3, 1]))
- print(solution.sortArray([5, 1, 1, 2, 0, 0]))
- print(solution.sortArray([-2, 3, -5]))
- print(solution.sortArray([2] * 50000))
diff --git "a/leetcode/editor/cn/[91]\350\247\243\347\240\201\346\226\271\346\263\225.py" "b/leetcode/editor/cn/[91]\350\247\243\347\240\201\346\226\271\346\263\225.py"
deleted file mode 100644
index 5729f523..00000000
--- "a/leetcode/editor/cn/[91]\350\247\243\347\240\201\346\226\271\346\263\225.py"
+++ /dev/null
@@ -1,32 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def numDecodings(self, s: str) -> int:
- # 处理边界条件
- if s[0] == '0':
- return 0
-
- # dp[i] 表示前i个字符串,最多可以有多少种解码方法
- m = len(s)
- dp = [0 for _ in range(m + 1)]
-
- # 空字符串可以有 1 种解码方法,解码出一个空字符串。
- dp[0] = 1
- dp[1] = 1
-
- for i in range(2, m + 1):
- if s[i - 1] != '0':
- dp[i] = dp[i - 1]
- if 10 <= int(s[i - 2:i]) <= 26:
- dp[i] += dp[i - 2]
-
- return dp[m]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.numDecodings("10"), 1)
- print(solution.numDecodings("12"), 2)
- print(solution.numDecodings("226"), 3)
- print(solution.numDecodings("06"), 0)
diff --git "a/leetcode/editor/cn/[92]\345\217\215\350\275\254\351\223\276\350\241\250 II.py" "b/leetcode/editor/cn/[92]\345\217\215\350\275\254\351\223\276\350\241\250 II.py"
deleted file mode 100644
index ef284793..00000000
--- "a/leetcode/editor/cn/[92]\345\217\215\350\275\254\351\223\276\350\241\250 II.py"
+++ /dev/null
@@ -1,55 +0,0 @@
-from typing import Optional
-
-
-class ListNode:
- def __init__(self, val=0, next=None):
- self.val = val
- self.next = next
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for singly-linked list.
-# class ListNode:
-# def __init__(self, val=0, next=None):
-# self.val = val
-# self.next = next
-class Solution:
- def reverseBetween(self, head: Optional[ListNode], left: int, right: int) -> Optional[ListNode]:
- res_node = ListNode(-1)
- res_node.next = head
-
- pre = res_node
- cur = head
- next = head.next
-
- for _ in range(left - 1):
- pre = pre.next
- cur = cur.next
- next = next.next
-
- for i in range(right - left):
- cur.next = next.next
- next.next = pre.next
- pre.next = next
- if cur.next:
- next = cur.next
-
- return res_node.next
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- node_list = []
- for i in range(1, 6):
- node_list.append(ListNode(i))
- for i in range(4):
- node_list[i].next = node_list[i + 1]
-
- res = solution.reverseBetween(ListNode(5), 1, 1)
-
- while res:
- print(res.val)
- res = res.next
diff --git "a/leetcode/editor/cn/[931]\344\270\213\351\231\215\350\267\257\345\276\204\346\234\200\345\260\217\345\222\214.py" "b/leetcode/editor/cn/[931]\344\270\213\351\231\215\350\267\257\345\276\204\346\234\200\345\260\217\345\222\214.py"
deleted file mode 100644
index cf07d446..00000000
--- "a/leetcode/editor/cn/[931]\344\270\213\351\231\215\350\267\257\345\276\204\346\234\200\345\260\217\345\222\214.py"
+++ /dev/null
@@ -1,29 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def minFallingPathSum(self, matrix: List[List[int]]) -> int:
- n = len(matrix)
- dp = [[0] * n for _ in range(n)]
- # 初始化第一行的值
- for j in range(n):
- dp[0][j] = matrix[0][j]
-
- for i in range(1, n):
- for j in range(n):
- last_list = [dp[i - 1][j]]
- if j > 0:
- last_list.append(dp[i - 1][j - 1])
- if j < n - 1:
- last_list.append(dp[i - 1][j + 1])
-
- dp[i][j] = min(last_list) + matrix[i][j]
- return min(dp[-1])
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.minFallingPathSum([[-19]]))
diff --git "a/leetcode/editor/cn/[96]\344\270\215\345\220\214\347\232\204\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.py" "b/leetcode/editor/cn/[96]\344\270\215\345\220\214\347\232\204\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.py"
deleted file mode 100644
index 76f73e6a..00000000
--- "a/leetcode/editor/cn/[96]\344\270\215\345\220\214\347\232\204\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.py"
+++ /dev/null
@@ -1,29 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def __init__(self):
- self.factorial = {0: 1, 1: 1, 2: 2}
-
- def numTrees(self, n: int) -> int:
- if n in self.factorial:
- return self.factorial[n]
-
- for value in range(3, n + 1):
- res = 0
- for idx in range(value):
- left_part = self.factorial[idx]
- right_part = self.factorial[value - idx - 1]
- res += (left_part * right_part)
- self.factorial[value] = res
-
- return self.factorial[n]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.numTrees(3) == 5)
- print(solution.numTrees(4) == 14)
- print(solution.numTrees(5) == 42)
- print(solution.numTrees(19))
diff --git "a/leetcode/editor/cn/[98]\351\252\214\350\257\201\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.py" "b/leetcode/editor/cn/[98]\351\252\214\350\257\201\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.py"
deleted file mode 100644
index b217461b..00000000
--- "a/leetcode/editor/cn/[98]\351\252\214\350\257\201\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.py"
+++ /dev/null
@@ -1,73 +0,0 @@
-from typing import Optional
-
-
-class TreeNode:
- def __init__(self, val=0, left=None, right=None):
- self.val = val
- self.left = left
- self.right = right
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def __init__(self):
- self.last_node_val = None
- self.is_valid_bst = True
-
- def in_order(self, root: TreeNode):
- if root is None:
- return
-
- self.in_order(root.left)
- if self.last_node_val is None:
- self.last_node_val = root.val
-
- elif self.last_node_val < root.val:
- self.last_node_val = root.val
-
- else:
- self.is_valid_bst = False
-
- self.in_order(root.right)
-
- def isValidBST(self, root: Optional[TreeNode]) -> bool:
- self.in_order(root)
- return self.is_valid_bst
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- node1 = TreeNode(1)
- node2 = TreeNode(2)
- node3 = TreeNode(3)
- node4 = TreeNode(4)
- node5 = TreeNode(5)
- node6 = TreeNode(6)
-
- node5.left = node3
- node5.right = node6
- node3.left = node2
- node3.right = node4
- node2.left = node1
-
- solution = Solution()
- print(solution.isValidBST(node5))
-
- node3 = TreeNode(3)
- node4 = TreeNode(4)
- node5 = TreeNode(5)
- node6 = TreeNode(6)
- node7 = TreeNode(7)
-
- node5.left = node4
- node5.right = node6
- node6.left = node3
- node6.right = node7
- print(solution.isValidBST(node5))
diff --git "a/leetcode/editor/cn/[990]\347\255\211\345\274\217\346\226\271\347\250\213\347\232\204\345\217\257\346\273\241\350\266\263\346\200\247.py" "b/leetcode/editor/cn/[990]\347\255\211\345\274\217\346\226\271\347\250\213\347\232\204\345\217\257\346\273\241\350\266\263\346\200\247.py"
deleted file mode 100644
index 73a2ecd8..00000000
--- "a/leetcode/editor/cn/[990]\347\255\211\345\274\217\346\226\271\347\250\213\347\232\204\345\217\257\346\273\241\350\266\263\346\200\247.py"
+++ /dev/null
@@ -1,65 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class UnionFind:
- def __init__(self, char_list):
- self.parent = {}
- for char in char_list:
- self.parent[char] = char
-
- def connect(self, char1, char2):
- char1_root = self.find_parent(char1)
- char2_root = self.find_parent(char2)
-
- self.parent[char1_root] = char2_root
-
- def find_parent(self, char):
- if self.parent[char] != char:
- self.parent[char] = self.find_parent(self.parent[char])
- return self.parent[char]
-
- def is_connect(self, char1, char2):
- char1_parent = self.find_parent(char1)
- char2_parent = self.find_parent(char2)
- return char1_parent == char2_parent
-
-
-class Solution:
- def equationsPossible(self, equations: List[str]) -> bool:
- char_set = set()
-
- for pair in equations:
- char_set.add(pair[0])
- char_set.add(pair[-1])
- uf = UnionFind(list(char_set))
-
- # 构造关系
- for pair in equations:
- if "==" in pair:
- uf.connect(pair[0], pair[-1])
-
- # 开始验证
- flag = True
- for pair in equations:
- if "!=" in pair:
- if uf.is_connect(pair[0], pair[-1]):
- flag = False
- return flag
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.equationsPossible(["a==b", "b!=c", "c==a"]), False)
- print(solution.equationsPossible(["e==e", "d!=e", "c==d", "d!=e"]), True)
- print(solution.equationsPossible(["e!=c", "b!=b", "b!=a", "e==d"]), False)
- print(solution.equationsPossible(["a!=a"]), False)
- print(solution.equationsPossible(["a==a"]), True)
- print(solution.equationsPossible(["a==b"]), True)
- print(solution.equationsPossible(["a!=b"]), True)
- print(solution.equationsPossible(["a==b", "b!=a"]), False)
- print(solution.equationsPossible(["b==a", "a==b"]), True)
- print(solution.equationsPossible(["a==b", "b==c", "a==c"]), True)
- print(solution.equationsPossible(["c==c", "b==d", "x!=z"]), True)
diff --git "a/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 22]\351\223\276\350\241\250\344\270\255\345\200\222\346\225\260\347\254\254k\344\270\252\350\212\202\347\202\271.py" "b/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 22]\351\223\276\350\241\250\344\270\255\345\200\222\346\225\260\347\254\254k\344\270\252\350\212\202\347\202\271.py"
deleted file mode 100644
index 5f05f719..00000000
--- "a/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 22]\351\223\276\350\241\250\344\270\255\345\200\222\346\225\260\347\254\254k\344\270\252\350\212\202\347\202\271.py"
+++ /dev/null
@@ -1,52 +0,0 @@
-class ListNode:
- def __init__(self, x):
- self.val = x
- self.next = None
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-# Definition for singly-linked list.
-# class ListNode:
-# def __init__(self, x):
-# self.val = x
-# self.next = None
-
-class Solution:
- def getKthFromEnd(self, head: ListNode, k: int) -> ListNode:
- # 前边指针先走 n 步
- quick, slow = head, head
- for _ in range(k):
- quick = quick.next
-
- # 考虑 len(head) == n 的情况
- if quick is None:
- return head
-
- # slow 停在了需要删除点的前边
- while quick is not None and quick.next is not None:
- slow = slow.next
- quick = quick.next
-
- return slow.next
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- node1 = ListNode(1)
- node2 = ListNode(2)
- node3 = ListNode(3)
- node4 = ListNode(4)
- node5 = ListNode(5)
-
- node1.next = node2
- node2.next = node3
- node3.next = node4
- node4.next = node5
-
- solution = Solution()
- res = solution.getKthFromEnd(node1, 2)
-
- while res is not None:
- print(res.val)
- res = res.next
diff --git "a/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 29]\351\241\272\346\227\266\351\222\210\346\211\223\345\215\260\347\237\251\351\230\265.py" "b/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 29]\351\241\272\346\227\266\351\222\210\346\211\223\345\215\260\347\237\251\351\230\265.py"
deleted file mode 100644
index 54dcbb62..00000000
--- "a/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 29]\351\241\272\346\227\266\351\222\210\346\211\223\345\215\260\347\237\251\351\230\265.py"
+++ /dev/null
@@ -1,34 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def spiralOrder(self, matrix: List[List[int]]) -> List[int]:
- res = []
- if len(matrix) == 0:
- return []
-
- m, n = len(matrix), len(matrix[0])
-
- upper_bound, lower_bound = 0, m - 1
- left_bound, right_bound = 0, n - 1
- while len(res) < m * n:
- if upper_bound <= lower_bound:
- for j in range(left_bound, right_bound + 1):
- res.append(matrix[upper_bound][j])
- upper_bound += 1
-
- if left_bound <= right_bound:
- for i in range(upper_bound, lower_bound + 1):
- res.append(matrix[i][right_bound])
- right_bound -= 1
-
- if upper_bound <= lower_bound:
- for j in range(right_bound, left_bound - 1, -1):
- res.append(matrix[lower_bound][j])
- lower_bound -= 1
-
- if left_bound <= right_bound:
- for i in range(lower_bound, upper_bound - 1, -1):
- res.append(matrix[i][left_bound])
- left_bound += 1
- return res
-
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 33]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\347\232\204\345\220\216\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227.py" "b/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 33]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\347\232\204\345\220\216\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227.py"
deleted file mode 100644
index 0807bad3..00000000
--- "a/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 33]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\347\232\204\345\220\216\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227.py"
+++ /dev/null
@@ -1,40 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def verifyPostorder(self, postorder: List[int]) -> bool:
- if len(postorder) <= 1:
- return True
-
- flag_list = [i < postorder[-1] for i in postorder[:-1]]
-
- flag = True
- change_idx = -1
- for idx, value in enumerate(flag_list):
- if value is True:
- change_idx += 1
-
- if change_idx != idx:
- # 有多余的变动
- flag = False
-
- if flag:
- return self.verifyPostorder(postorder[:change_idx]) and self.verifyPostorder(postorder[change_idx:-1])
- else:
- return False
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.verifyPostorder([1, 6, 3, 2, 5])) # false
-
- print(solution.verifyPostorder([1, 3, 2, 6, 5])) # true
-
- print(solution.verifyPostorder([1, 2, 5, 10, 6, 9, 4, 3])) # false
-
- print(solution.verifyPostorder([5, 2, -17, -11])) # false
-
- print(solution.verifyPostorder([5, 2, -17, -11, 25, 76, 62, 98, 92, 61])) # false
diff --git "a/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 48]\346\234\200\351\225\277\344\270\215\345\220\253\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\345\255\220\345\255\227\347\254\246\344\270\262.py" "b/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 48]\346\234\200\351\225\277\344\270\215\345\220\253\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\345\255\220\345\255\227\347\254\246\344\270\262.py"
deleted file mode 100644
index 2c5bbb5c..00000000
--- "a/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 48]\346\234\200\351\225\277\344\270\215\345\220\253\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\345\255\220\345\255\227\347\254\246\344\270\262.py"
+++ /dev/null
@@ -1,4 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def lengthOfLongestSubstring(self, s: str) -> int:
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 53 - I]\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\346\225\260\345\255\227 I.py" "b/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 53 - I]\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\346\225\260\345\255\227 I.py"
deleted file mode 100644
index 746df3ea..00000000
--- "a/leetcode/editor/cn/[\345\211\221\346\214\207 Offer 53 - I]\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\346\225\260\345\255\227 I.py"
+++ /dev/null
@@ -1,10 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def search(self, nums: List[int], target: int) -> int:
- res = []
- for idx, value in enumerate(nums):
- if target == value:
- res.append(idx)
- return len(res)
-
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/[\345\211\221\346\214\207 Offer II 076]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254 k \345\244\247\347\232\204\346\225\260\345\255\227.py" "b/leetcode/editor/cn/[\345\211\221\346\214\207 Offer II 076]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254 k \345\244\247\347\232\204\346\225\260\345\255\227.py"
deleted file mode 100644
index e18b222a..00000000
--- "a/leetcode/editor/cn/[\345\211\221\346\214\207 Offer II 076]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254 k \345\244\247\347\232\204\346\225\260\345\255\227.py"
+++ /dev/null
@@ -1,37 +0,0 @@
-from typing import List
-
-
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def partition(self, nums, left, right):
- pivot = nums[right]
- i = left - 1
- for j in range(left, right):
- if nums[j] > pivot:
- i += 1
- nums[i], nums[j] = nums[j], nums[i]
- nums[i + 1], nums[right] = nums[right], nums[i + 1]
- return i + 1
-
- def findKthLargest(self, nums: List[int], k: int) -> int:
- k_1 = k - 1
- left, right = 0, len(nums) - 1
-
- while left <= right:
- pos = self.partition(nums, left, right)
- if pos < k_1:
- left = pos + 1
- elif pos > k_1:
- right = pos - 1
- else:
- return nums[pos]
-
-
-# leetcode submit region end(Prohibit modification and deletion)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.findKthLargest([3, 2, 1, 5, 6, 4], 2))
- print(solution.findKthLargest([3, 2, 3, 1, 2, 4, 5, 5, 6], 4))
- print(solution.findKthLargest([1], 1))
diff --git "a/leetcode/editor/cn/[\345\211\221\346\214\207 Offer II 104]\346\216\222\345\210\227\347\232\204\346\225\260\347\233\256.py" "b/leetcode/editor/cn/[\345\211\221\346\214\207 Offer II 104]\346\216\222\345\210\227\347\232\204\346\225\260\347\233\256.py"
deleted file mode 100644
index 38bd2b93..00000000
--- "a/leetcode/editor/cn/[\345\211\221\346\214\207 Offer II 104]\346\216\222\345\210\227\347\232\204\346\225\260\347\233\256.py"
+++ /dev/null
@@ -1,4 +0,0 @@
-# leetcode submit region begin(Prohibit modification and deletion)
-class Solution:
- def combinationSum4(self, nums: List[int], target: int) -> int:
-# leetcode submit region end(Prohibit modification and deletion)
diff --git "a/leetcode/editor/cn/doc/content/[1008]\345\211\215\345\272\217\351\201\215\345\216\206\346\236\204\351\200\240\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.md" "b/leetcode/editor/cn/doc/content/[1008]\345\211\215\345\272\217\351\201\215\345\216\206\346\236\204\351\200\240\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.md"
deleted file mode 100644
index 239b0a6c..00000000
--- "a/leetcode/editor/cn/doc/content/[1008]\345\211\215\345\272\217\351\201\215\345\216\206\346\236\204\351\200\240\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.md"
+++ /dev/null
@@ -1,39 +0,0 @@
-
给定一个整数数组,它表示BST(即 二叉搜索树 )的 先序遍历 ,构造树并返回其根。
-
-保证 对于给定的测试用例,总是有可能找到具有给定需求的二叉搜索树。
-
-二叉搜索树 是一棵二叉树,其中每个节点, Node.left 的任何后代的值 严格小于 Node.val , Node.right 的任何后代的值 严格大于 Node.val。
-
-二叉树的 前序遍历 首先显示节点的值,然后遍历Node.left,最后遍历Node.right。
-
-
-
-示例 1:
-
-
-
-
-输入:preorder = [8,5,1,7,10,12]
-输出:[8,5,10,1,7,null,12]
-
-
-示例 2:
-
-
-输入: preorder = [1,3]
-输出: [1,null,3]
-
-
-
-
-提示:
-
-
- 1 <= preorder.length <= 100
- 1 <= preorder[i] <= 10^8
- preorder 中的值 互不相同
-
-
-
-
-Related Topics
栈树二叉搜索树数组二叉树单调栈
👍 238👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1020]\351\243\236\345\234\260\347\232\204\346\225\260\351\207\217.md" "b/leetcode/editor/cn/doc/content/[1020]\351\243\236\345\234\260\347\232\204\346\225\260\351\207\217.md"
deleted file mode 100644
index 1311bcd7..00000000
--- "a/leetcode/editor/cn/doc/content/[1020]\351\243\236\345\234\260\347\232\204\346\225\260\351\207\217.md"
+++ /dev/null
@@ -1,36 +0,0 @@
-给你一个大小为 m x n 的二进制矩阵 grid ,其中 0 表示一个海洋单元格、1 表示一个陆地单元格。
-
-一次 移动 是指从一个陆地单元格走到另一个相邻(上、下、左、右)的陆地单元格或跨过 grid 的边界。
-
-返回网格中 无法 在任意次数的移动中离开网格边界的陆地单元格的数量。
-
-
-
-示例 1:
-
-
-输入:grid = [[0,0,0,0],[1,0,1,0],[0,1,1,0],[0,0,0,0]]
-输出:3
-解释:有三个 1 被 0 包围。一个 1 没有被包围,因为它在边界上。
-
-
-示例 2:
-
-
-输入:grid = [[0,1,1,0],[0,0,1,0],[0,0,1,0],[0,0,0,0]]
-输出:0
-解释:所有 1 都在边界上或可以到达边界。
-
-
-
-
-提示:
-
-
- m == grid.length
- n == grid[i].length
- 1 <= m, n <= 500
- grid[i][j] 的值为 0 或 1
-
-
-Related Topics
深度优先搜索广度优先搜索并查集数组矩阵
👍 189👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1026]\350\212\202\347\202\271\344\270\216\345\205\266\347\245\226\345\205\210\344\271\213\351\227\264\347\232\204\346\234\200\345\244\247\345\267\256\345\200\274.md" "b/leetcode/editor/cn/doc/content/[1026]\350\212\202\347\202\271\344\270\216\345\205\266\347\245\226\345\205\210\344\271\213\351\227\264\347\232\204\346\234\200\345\244\247\345\267\256\345\200\274.md"
deleted file mode 100644
index 2e7bf08b..00000000
--- "a/leetcode/editor/cn/doc/content/[1026]\350\212\202\347\202\271\344\270\216\345\205\266\347\245\226\345\205\210\344\271\213\351\227\264\347\232\204\346\234\200\345\244\247\345\267\256\345\200\274.md"
+++ /dev/null
@@ -1,39 +0,0 @@
-给定二叉树的根节点 root,找出存在于 不同 节点 A 和 B 之间的最大值 V,其中 V = |A.val - B.val|,且 A 是 B 的祖先。
-
-(如果 A 的任何子节点之一为 B,或者 A 的任何子节点是 B 的祖先,那么我们认为 A 是 B 的祖先)
-
-
-
-示例 1:
-
-
-
-
-输入:root = [8,3,10,1,6,null,14,null,null,4,7,13]
-输出:7
-解释:
-我们有大量的节点与其祖先的差值,其中一些如下:
-|8 - 3| = 5
-|3 - 7| = 4
-|8 - 1| = 7
-|10 - 13| = 3
-在所有可能的差值中,最大值 7 由 |8 - 1| = 7 得出。
-
-
-示例 2:
-
-
-输入:root = [1,null,2,null,0,3]
-输出:3
-
-
-
-
-提示:
-
-
- - 树中的节点数在
2 到 5000 之间。
- 0 <= Node.val <= 105
-
-
-
👍 127👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[102]\344\272\214\345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206.md" "b/leetcode/editor/cn/doc/content/[102]\344\272\214\345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206.md"
deleted file mode 100644
index b99b2a20..00000000
--- "a/leetcode/editor/cn/doc/content/[102]\344\272\214\345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206.md"
+++ /dev/null
@@ -1,35 +0,0 @@
-给你二叉树的根节点 root ,返回其节点值的 层序遍历 。 (即逐层地,从左到右访问所有节点)。
-
-
-
-示例 1:
-
-
-输入:root = [3,9,20,null,null,15,7]
-输出:[[3],[9,20],[15,7]]
-
-
-示例 2:
-
-
-输入:root = [1]
-输出:[[1]]
-
-
-示例 3:
-
-
-输入:root = []
-输出:[]
-
-
-
-
-提示:
-
-
- - 树中节点数目在范围
[0, 2000] 内
- -1000 <= Node.val <= 1000
-
-
-
👍 1503👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1038]\344\273\216\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\345\210\260\346\233\264\345\244\247\345\222\214\346\240\221.md" "b/leetcode/editor/cn/doc/content/[1038]\344\273\216\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\345\210\260\346\233\264\345\244\247\345\222\214\346\240\221.md"
deleted file mode 100644
index 2e2374c6..00000000
--- "a/leetcode/editor/cn/doc/content/[1038]\344\273\216\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\345\210\260\346\233\264\345\244\247\345\222\214\346\240\221.md"
+++ /dev/null
@@ -1,43 +0,0 @@
-给定一个二叉搜索树 root (BST),请将它的每个节点的值替换成树中大于或者等于该节点值的所有节点值之和。
-
-提醒一下, 二叉搜索树 满足下列约束条件:
-
-
- - 节点的左子树仅包含键 小于 节点键的节点。
- - 节点的右子树仅包含键 大于 节点键的节点。
- - 左右子树也必须是二叉搜索树。
-
-
-
-
-示例 1:
-
-
-
-
-输入:[4,1,6,0,2,5,7,null,null,null,3,null,null,null,8]
-输出:[30,36,21,36,35,26,15,null,null,null,33,null,null,null,8]
-
-
-示例 2:
-
-
-输入:root = [0,null,1]
-输出:[1,null,1]
-
-
-
-
-提示:
-
-
- - 树中的节点数在
[1, 100] 范围内。
- 0 <= Node.val <= 100
- - 树中的所有值均 不重复 。
-
-
-
-
-注意:该题目与 538: https://leetcode-cn.com/problems/convert-bst-to-greater-tree/ 相同
-
-Related Topics
树深度优先搜索二叉搜索树二叉树
👍 184👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1049]\346\234\200\345\220\216\344\270\200\345\235\227\347\237\263\345\244\264\347\232\204\351\207\215\351\207\217 II.md" "b/leetcode/editor/cn/doc/content/[1049]\346\234\200\345\220\216\344\270\200\345\235\227\347\237\263\345\244\264\347\232\204\351\207\215\351\207\217 II.md"
deleted file mode 100644
index e38281b0..00000000
--- "a/leetcode/editor/cn/doc/content/[1049]\346\234\200\345\220\216\344\270\200\345\235\227\347\237\263\345\244\264\347\232\204\351\207\215\351\207\217 II.md"
+++ /dev/null
@@ -1,42 +0,0 @@
-有一堆石头,用整数数组 stones 表示。其中 stones[i] 表示第 i 块石头的重量。
-
-每一回合,从中选出任意两块石头,然后将它们一起粉碎。假设石头的重量分别为 x 和 y,且 x <= y。那么粉碎的可能结果如下:
-
-
- - 如果
x == y,那么两块石头都会被完全粉碎;
- - 如果
x != y,那么重量为 x 的石头将会完全粉碎,而重量为 y 的石头新重量为 y-x。
-
-
-最后,最多只会剩下一块 石头。返回此石头 最小的可能重量 。如果没有石头剩下,就返回 0。
-
-
-
-示例 1:
-
-
-输入:stones = [2,7,4,1,8,1]
-输出:1
-解释:
-组合 2 和 4,得到 2,所以数组转化为 [2,7,1,8,1],
-组合 7 和 8,得到 1,所以数组转化为 [2,1,1,1],
-组合 2 和 1,得到 1,所以数组转化为 [1,1,1],
-组合 1 和 1,得到 0,所以数组转化为 [1],这就是最优值。
-
-
-示例 2:
-
-
-输入:stones = [31,26,33,21,40]
-输出:5
-
-
-
-
-提示:
-
-
- 1 <= stones.length <= 30
- 1 <= stones[i] <= 100
-
-
-
👍 602👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[104]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\345\244\247\346\267\261\345\272\246.md" "b/leetcode/editor/cn/doc/content/[104]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\345\244\247\346\267\261\345\272\246.md"
deleted file mode 100644
index 8349a851..00000000
--- "a/leetcode/editor/cn/doc/content/[104]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\345\244\247\346\267\261\345\272\246.md"
+++ /dev/null
@@ -1,17 +0,0 @@
-给定一个二叉树,找出其最大深度。
-
-二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。
-
-说明: 叶子节点是指没有子节点的节点。
-
-示例:
给定二叉树 [3,9,20,null,null,15,7],
-
- 3
- / \
- 9 20
- / \
- 15 7
-
-返回它的最大深度 3 。
-
-Related Topics
树深度优先搜索广度优先搜索二叉树
👍 1417👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[105]\344\273\216\345\211\215\345\272\217\344\270\216\344\270\255\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.md" "b/leetcode/editor/cn/doc/content/[105]\344\273\216\345\211\215\345\272\217\344\270\216\344\270\255\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.md"
deleted file mode 100644
index f1c6abda..00000000
--- "a/leetcode/editor/cn/doc/content/[105]\344\273\216\345\211\215\345\272\217\344\270\216\344\270\255\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.md"
+++ /dev/null
@@ -1,33 +0,0 @@
-给定两个整数数组 preorder 和 inorder ,其中 preorder 是二叉树的先序遍历, inorder 是同一棵树的中序遍历,请构造二叉树并返回其根节点。
-
-
-
-示例 1:
-
-
-输入: preorder = [3,9,20,15,7], inorder = [9,3,15,20,7]
-输出: [3,9,20,null,null,15,7]
-
-
-示例 2:
-
-
-输入: preorder = [-1], inorder = [-1]
-输出: [-1]
-
-
-
-
-提示:
-
-
- 1 <= preorder.length <= 3000
- inorder.length == preorder.length
- -3000 <= preorder[i], inorder[i] <= 3000
- preorder 和 inorder 均 无重复 元素
- inorder 均出现在 preorder
- preorder 保证 为二叉树的前序遍历序列
- inorder 保证 为二叉树的中序遍历序列
-
-
-Related Topics
树数组哈希表分治二叉树
👍 1777👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[106]\344\273\216\344\270\255\345\272\217\344\270\216\345\220\216\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.md" "b/leetcode/editor/cn/doc/content/[106]\344\273\216\344\270\255\345\272\217\344\270\216\345\220\216\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.md"
deleted file mode 100644
index 4457d038..00000000
--- "a/leetcode/editor/cn/doc/content/[106]\344\273\216\344\270\255\345\272\217\344\270\216\345\220\216\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.md"
+++ /dev/null
@@ -1,33 +0,0 @@
-给定两个整数数组 inorder 和 postorder ,其中 inorder 是二叉树的中序遍历, postorder 是同一棵树的后序遍历,请你构造并返回这颗 二叉树 。
-
-
-
-示例 1:
-
-
-输入:inorder = [9,3,15,20,7], postorder = [9,15,7,20,3]
-输出:[3,9,20,null,null,15,7]
-
-
-示例 2:
-
-
-输入:inorder = [-1], postorder = [-1]
-输出:[-1]
-
-
-
-
-提示:
-
-
- 1 <= inorder.length <= 3000
- postorder.length == inorder.length
- -3000 <= inorder[i], postorder[i] <= 3000
- inorder 和 postorder 都由 不同 的值组成
- postorder 中每一个值都在 inorder 中
- inorder 保证是树的中序遍历
- postorder 保证是树的后序遍历
-
-
-Related Topics
树数组哈希表分治二叉树
👍 868👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1081]\344\270\215\345\220\214\345\255\227\347\254\246\347\232\204\346\234\200\345\260\217\345\255\220\345\272\217\345\210\227.md" "b/leetcode/editor/cn/doc/content/[1081]\344\270\215\345\220\214\345\255\227\347\254\246\347\232\204\346\234\200\345\260\217\345\255\220\345\272\217\345\210\227.md"
deleted file mode 100644
index 0f91e91e..00000000
--- "a/leetcode/editor/cn/doc/content/[1081]\344\270\215\345\220\214\345\255\227\347\254\246\347\232\204\346\234\200\345\260\217\345\255\220\345\272\217\345\210\227.md"
+++ /dev/null
@@ -1,29 +0,0 @@
-返回 s 字典序最小的子序列,该子序列包含 s 的所有不同字符,且只包含一次。
-
-注意:该题与 316 https://leetcode.com/problems/remove-duplicate-letters/ 相同
-
-
-
-示例 1:
-
-
-输入:s = "bcabc"
-输出:"abc"
-
-
-示例 2:
-
-
-输入:s = "cbacdcbc"
-输出:"acdb"
-
-
-
-提示:
-
-
- 1 <= s.length <= 1000
- s 由小写英文字母组成
-
-
-
👍 174👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1094]\346\213\274\350\275\246.md" "b/leetcode/editor/cn/doc/content/[1094]\346\213\274\350\275\246.md"
deleted file mode 100644
index e9d4acb7..00000000
--- "a/leetcode/editor/cn/doc/content/[1094]\346\213\274\350\275\246.md"
+++ /dev/null
@@ -1,35 +0,0 @@
-车上最初有 capacity 个空座位。车 只能 向一个方向行驶(也就是说,不允许掉头或改变方向)
-
-给定整数 capacity 和一个数组 trips , trip[i] = [numPassengersi, fromi, toi] 表示第 i 次旅行有 numPassengersi 乘客,接他们和放他们的位置分别是 fromi 和 toi 。这些位置是从汽车的初始位置向东的公里数。
-
-当且仅当你可以在所有给定的行程中接送所有乘客时,返回 true,否则请返回 false。
-
-
-
-示例 1:
-
-
-输入:trips = [[2,1,5],[3,3,7]], capacity = 4
-输出:false
-
-
-示例 2:
-
-
-输入:trips = [[2,1,5],[3,3,7]], capacity = 5
-输出:true
-
-
-
-
-提示:
-
-
- 1 <= trips.length <= 1000
- trips[i].length == 3
- 1 <= numPassengersi <= 100
- 0 <= fromi < toi <= 1000
- 1 <= capacity <= 105
-
-
-Related Topics
数组前缀和排序模拟堆(优先队列)
👍 219👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[10]\346\255\243\345\210\231\350\241\250\350\276\276\345\274\217\345\214\271\351\205\215.md" "b/leetcode/editor/cn/doc/content/[10]\346\255\243\345\210\231\350\241\250\350\276\276\345\274\217\345\214\271\351\205\215.md"
deleted file mode 100644
index 16141b82..00000000
--- "a/leetcode/editor/cn/doc/content/[10]\346\255\243\345\210\231\350\241\250\350\276\276\345\274\217\345\214\271\351\205\215.md"
+++ /dev/null
@@ -1,46 +0,0 @@
-给你一个字符串 s 和一个字符规律 p,请你来实现一个支持 '.' 和 '*' 的正则表达式匹配。
-
-
- '.' 匹配任意单个字符
- '*' 匹配零个或多个前面的那一个元素
-
-
-所谓匹配,是要涵盖 整个 字符串 s的,而不是部分字符串。
-
-示例 1:
-
-
-输入:s = "aa", p = "a"
-输出:false
-解释:"a" 无法匹配 "aa" 整个字符串。
-
-
-示例 2:
-
-
-输入:s = "aa", p = "a*"
-输出:true
-解释:因为 '*' 代表可以匹配零个或多个前面的那一个元素, 在这里前面的元素就是 'a'。因此,字符串 "aa" 可被视为 'a' 重复了一次。
-
-
-示例 3:
-
-
-输入:s = "ab", p = ".*"
-输出:true
-解释:".*" 表示可匹配零个或多个('*')任意字符('.')。
-
-
-
-
-提示:
-
-
- 1 <= s.length <= 20
- 1 <= p.length <= 30
- s 只包含从 a-z 的小写字母。
- p 只包含从 a-z 的小写字母,以及字符 . 和 *。
- - 保证每次出现字符
* 时,前面都匹配到有效的字符
-
-
-
👍 3407👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1109]\350\210\252\347\217\255\351\242\204\350\256\242\347\273\237\350\256\241.md" "b/leetcode/editor/cn/doc/content/[1109]\350\210\252\347\217\255\351\242\204\350\256\242\347\273\237\350\256\241.md"
deleted file mode 100644
index 35bc784c..00000000
--- "a/leetcode/editor/cn/doc/content/[1109]\350\210\252\347\217\255\351\242\204\350\256\242\347\273\237\350\256\241.md"
+++ /dev/null
@@ -1,48 +0,0 @@
-这里有 n 个航班,它们分别从 1 到 n 进行编号。
-
-有一份航班预订表 bookings ,表中第 i 条预订记录 bookings[i] = [firsti, lasti, seatsi] 意味着在从 firsti 到 lasti (包含 firsti 和 lasti )的 每个航班 上预订了 seatsi 个座位。
-
-请你返回一个长度为 n 的数组 answer,里面的元素是每个航班预定的座位总数。
-
-
-
-示例 1:
-
-
-输入:bookings = [[1,2,10],[2,3,20],[2,5,25]], n = 5
-输出:[10,55,45,25,25]
-解释:
-航班编号 1 2 3 4 5
-预订记录 1 : 10 10
-预订记录 2 : 20 20
-预订记录 3 : 25 25 25 25
-总座位数: 10 55 45 25 25
-因此,answer = [10,55,45,25,25]
-
-
-示例 2:
-
-
-输入:bookings = [[1,2,10],[2,2,15]], n = 2
-输出:[10,25]
-解释:
-航班编号 1 2
-预订记录 1 : 10 10
-预订记录 2 : 15
-总座位数: 10 25
-因此,answer = [10,25]
-
-
-
-
-提示:
-
-
- 1 <= n <= 2 * 104
- 1 <= bookings.length <= 2 * 104
- bookings[i].length == 3
- 1 <= firsti <= lasti <= n
- 1 <= seatsi <= 104
-
-
-
👍 427👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1110]\345\210\240\347\202\271\346\210\220\346\236\227.md" "b/leetcode/editor/cn/doc/content/[1110]\345\210\240\347\202\271\346\210\220\346\236\227.md"
deleted file mode 100644
index 639a38ed..00000000
--- "a/leetcode/editor/cn/doc/content/[1110]\345\210\240\347\202\271\346\210\220\346\236\227.md"
+++ /dev/null
@@ -1,36 +0,0 @@
-给出二叉树的根节点 root,树上每个节点都有一个不同的值。
-
-如果节点值在 to_delete 中出现,我们就把该节点从树上删去,最后得到一个森林(一些不相交的树构成的集合)。
-
-返回森林中的每棵树。你可以按任意顺序组织答案。
-
-
-
-示例 1:
-
-
-
-
-输入:root = [1,2,3,4,5,6,7], to_delete = [3,5]
-输出:[[1,2,null,4],[6],[7]]
-
-
-示例 2:
-
-
-输入:root = [1,2,4,null,3], to_delete = [3]
-输出:[[1,2,4]]
-
-
-
-
-提示:
-
-
- - 树中的节点数最大为
1000。
- - 每个节点都有一个介于
1 到 1000 之间的值,且各不相同。
- to_delete.length <= 1000
- to_delete 包含一些从 1 到 1000、各不相同的值。
-
-
-
👍 199👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[111]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\345\260\217\346\267\261\345\272\246.md" "b/leetcode/editor/cn/doc/content/[111]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\345\260\217\346\267\261\345\272\246.md"
deleted file mode 100644
index f1b08503..00000000
--- "a/leetcode/editor/cn/doc/content/[111]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\345\260\217\346\267\261\345\272\246.md"
+++ /dev/null
@@ -1,32 +0,0 @@
-给定一个二叉树,找出其最小深度。
-
-最小深度是从根节点到最近叶子节点的最短路径上的节点数量。
-
-说明:叶子节点是指没有子节点的节点。
-
-
-
-示例 1:
-
-
-输入:root = [3,9,20,null,null,15,7]
-输出:2
-
-
-示例 2:
-
-
-输入:root = [2,null,3,null,4,null,5,null,6]
-输出:5
-
-
-
-
-提示:
-
-
- - 树中节点数的范围在
[0, 105] 内
- -1000 <= Node.val <= 1000
-
-
-Related Topics
树深度优先搜索广度优先搜索二叉树
👍 866👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[113]\350\267\257\345\276\204\346\200\273\345\222\214 II.md" "b/leetcode/editor/cn/doc/content/[113]\350\267\257\345\276\204\346\200\273\345\222\214 II.md"
deleted file mode 100644
index fac7c485..00000000
--- "a/leetcode/editor/cn/doc/content/[113]\350\267\257\345\276\204\346\200\273\345\222\214 II.md"
+++ /dev/null
@@ -1,42 +0,0 @@
-给你二叉树的根节点 root 和一个整数目标和 targetSum ,找出所有 从根节点到叶子节点 路径总和等于给定目标和的路径。
-
-叶子节点 是指没有子节点的节点。
-
-
-
-示例 1:
-
-
-输入:root = [5,4,8,11,null,13,4,7,2,null,null,5,1], targetSum = 22
-输出:[[5,4,11,2],[5,8,4,5]]
-
-
-示例 2:
-
-
-输入:root = [1,2,3], targetSum = 5
-输出:[]
-
-
-示例 3:
-
-
-输入:root = [1,2], targetSum = 0
-输出:[]
-
-
-
-
-提示:
-
-
- - 树中节点总数在范围
[0, 5000] 内
- -1000 <= Node.val <= 1000
- -1000 <= targetSum <= 1000
-
-
-Related Topics
树深度优先搜索回溯二叉树
👍 867👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1143]\346\234\200\351\225\277\345\205\254\345\205\261\345\255\220\345\272\217\345\210\227.md" "b/leetcode/editor/cn/doc/content/[1143]\346\234\200\351\225\277\345\205\254\345\205\261\345\255\220\345\272\217\345\210\227.md"
deleted file mode 100644
index a59acf10..00000000
--- "a/leetcode/editor/cn/doc/content/[1143]\346\234\200\351\225\277\345\205\254\345\205\261\345\255\220\345\272\217\345\210\227.md"
+++ /dev/null
@@ -1,46 +0,0 @@
-给定两个字符串 text1 和 text2,返回这两个字符串的最长 公共子序列 的长度。如果不存在 公共子序列 ,返回 0 。
-
-一个字符串的 子序列 是指这样一个新的字符串:它是由原字符串在不改变字符的相对顺序的情况下删除某些字符(也可以不删除任何字符)后组成的新字符串。
-
-
- - 例如,
"ace" 是 "abcde" 的子序列,但 "aec" 不是 "abcde" 的子序列。
-
-
-两个字符串的 公共子序列 是这两个字符串所共同拥有的子序列。
-
-
-
-示例 1:
-
-
-输入:text1 = "abcde", text2 = "ace"
-输出:3
-解释:最长公共子序列是 "ace" ,它的长度为 3 。
-
-
-示例 2:
-
-
-输入:text1 = "abc", text2 = "abc"
-输出:3
-解释:最长公共子序列是 "abc" ,它的长度为 3 。
-
-
-示例 3:
-
-
-输入:text1 = "abc", text2 = "def"
-输出:0
-解释:两个字符串没有公共子序列,返回 0 。
-
-
-
-
-提示:
-
-
- 1 <= text1.length, text2.length <= 1000
- text1 和 text2 仅由小写英文字符组成。
-
-
-
👍 1148👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[114]\344\272\214\345\217\211\346\240\221\345\261\225\345\274\200\344\270\272\351\223\276\350\241\250.md" "b/leetcode/editor/cn/doc/content/[114]\344\272\214\345\217\211\346\240\221\345\261\225\345\274\200\344\270\272\351\223\276\350\241\250.md"
deleted file mode 100644
index d7f4ce4b..00000000
--- "a/leetcode/editor/cn/doc/content/[114]\344\272\214\345\217\211\346\240\221\345\261\225\345\274\200\344\270\272\351\223\276\350\241\250.md"
+++ /dev/null
@@ -1,44 +0,0 @@
-给你二叉树的根结点 root ,请你将它展开为一个单链表:
-
-
- - 展开后的单链表应该同样使用
TreeNode ,其中 right 子指针指向链表中下一个结点,而左子指针始终为 null 。
- - 展开后的单链表应该与二叉树 先序遍历 顺序相同。
-
-
-
-
-示例 1:
-
-
-输入:root = [1,2,5,3,4,null,6]
-输出:[1,null,2,null,3,null,4,null,5,null,6]
-
-
-示例 2:
-
-
-输入:root = []
-输出:[]
-
-
-示例 3:
-
-
-输入:root = [0]
-输出:[0]
-
-
-
-
-提示:
-
-
- - 树中结点数在范围
[0, 2000] 内
- -100 <= Node.val <= 100
-
-
-
-
-进阶:你可以使用原地算法(O(1) 额外空间)展开这棵树吗?
-
-Related Topics
栈树深度优先搜索链表二叉树
👍 1331👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[116]\345\241\253\345\205\205\346\257\217\344\270\252\350\212\202\347\202\271\347\232\204\344\270\213\344\270\200\344\270\252\345\217\263\344\276\247\350\212\202\347\202\271\346\214\207\351\222\210.md" "b/leetcode/editor/cn/doc/content/[116]\345\241\253\345\205\205\346\257\217\344\270\252\350\212\202\347\202\271\347\232\204\344\270\213\344\270\200\344\270\252\345\217\263\344\276\247\350\212\202\347\202\271\346\214\207\351\222\210.md"
deleted file mode 100644
index c59130c2..00000000
--- "a/leetcode/editor/cn/doc/content/[116]\345\241\253\345\205\205\346\257\217\344\270\252\350\212\202\347\202\271\347\232\204\344\270\213\344\270\200\344\270\252\345\217\263\344\276\247\350\212\202\347\202\271\346\214\207\351\222\210.md"
+++ /dev/null
@@ -1,56 +0,0 @@
-给定一个 完美二叉树 ,其所有叶子节点都在同一层,每个父节点都有两个子节点。二叉树定义如下:
-
-
-struct Node {
- int val;
- Node *left;
- Node *right;
- Node *next;
-}
-
-填充它的每个 next 指针,让这个指针指向其下一个右侧节点。如果找不到下一个右侧节点,则将 next 指针设置为 NULL。
-
-初始状态下,所有 next 指针都被设置为 NULL。
-
-
-
-示例 1:
-
-
-
-
-输入:root = [1,2,3,4,5,6,7]
-输出:[1,#,2,3,#,4,5,6,7,#]
-解释:给定二叉树如图 A 所示,你的函数应该填充它的每个 next 指针,以指向其下一个右侧节点,如图 B 所示。序列化的输出按层序遍历排列,同一层节点由 next 指针连接,'#' 标志着每一层的结束。
-
-
-
-
-
-示例 2:
-
-
-输入:root = []
-输出:[]
-
-
-
-
-提示:
-
-
- - 树中节点的数量在
-
[0, 212 - 1] 范围内
- -1000 <= node.val <= 1000
-
-
-
-
-进阶:
-
-
- - 你只能使用常量级额外空间。
- - 使用递归解题也符合要求,本题中递归程序占用的栈空间不算做额外的空间复杂度。
-
-
-Related Topics
树深度优先搜索广度优先搜索链表二叉树
👍 892👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[11]\347\233\233\346\234\200\345\244\232\346\260\264\347\232\204\345\256\271\345\231\250.md" "b/leetcode/editor/cn/doc/content/[11]\347\233\233\346\234\200\345\244\232\346\260\264\347\232\204\345\256\271\345\231\250.md"
deleted file mode 100644
index 692fb5e8..00000000
--- "a/leetcode/editor/cn/doc/content/[11]\347\233\233\346\234\200\345\244\232\346\260\264\347\232\204\345\256\271\345\231\250.md"
+++ /dev/null
@@ -1,37 +0,0 @@
-给定一个长度为 n 的整数数组 height 。有 n 条垂线,第 i 条线的两个端点是 (i, 0) 和 (i, height[i]) 。
-
-找出其中的两条线,使得它们与 x 轴共同构成的容器可以容纳最多的水。
-
-返回容器可以储存的最大水量。
-
-说明:你不能倾斜容器。
-
-
-
-示例 1:
-
-
-
-
-输入:[1,8,6,2,5,4,8,3,7]
-输出:49
-解释:图中垂直线代表输入数组 [1,8,6,2,5,4,8,3,7]。在此情况下,容器能够容纳水(表示为蓝色部分)的最大值为 49。
-
-示例 2:
-
-
-输入:height = [1,1]
-输出:1
-
-
-
-
-提示:
-
-
- n == height.length
- 2 <= n <= 105
- 0 <= height[i] <= 104
-
-
-
👍 3870👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[121]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272.md" "b/leetcode/editor/cn/doc/content/[121]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272.md"
deleted file mode 100644
index 2de0ff03..00000000
--- "a/leetcode/editor/cn/doc/content/[121]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272.md"
+++ /dev/null
@@ -1,35 +0,0 @@
-给定一个数组 prices ,它的第 i 个元素 prices[i] 表示一支给定股票第 i 天的价格。
-
-你只能选择 某一天 买入这只股票,并选择在 未来的某一个不同的日子 卖出该股票。设计一个算法来计算你所能获取的最大利润。
-
-返回你可以从这笔交易中获取的最大利润。如果你不能获取任何利润,返回 0 。
-
-
-
-示例 1:
-
-
-输入:[7,1,5,3,6,4]
-输出:5
-解释:在第 2 天(股票价格 = 1)的时候买入,在第 5 天(股票价格 = 6)的时候卖出,最大利润 = 6-1 = 5 。
- 注意利润不能是 7-1 = 6, 因为卖出价格需要大于买入价格;同时,你不能在买入前卖出股票。
-
-
-示例 2:
-
-
-输入:prices = [7,6,4,3,1]
-输出:0
-解释:在这种情况下, 没有交易完成, 所以最大利润为 0。
-
-
-
-
-提示:
-
-
- 1 <= prices.length <= 105
- 0 <= prices[i] <= 104
-
-
-
👍 2669👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[122]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 II.md" "b/leetcode/editor/cn/doc/content/[122]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 II.md"
deleted file mode 100644
index d12a8891..00000000
--- "a/leetcode/editor/cn/doc/content/[122]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 II.md"
+++ /dev/null
@@ -1,42 +0,0 @@
-给你一个整数数组 prices ,其中 prices[i] 表示某支股票第 i 天的价格。
-
-在每一天,你可以决定是否购买和/或出售股票。你在任何时候 最多 只能持有 一股 股票。你也可以先购买,然后在 同一天 出售。
-
-返回 你能获得的 最大 利润 。
-
-
-
-示例 1:
-
-
-输入:prices = [7,1,5,3,6,4]
-输出:7
-解释:在第 2 天(股票价格 = 1)的时候买入,在第 3 天(股票价格 = 5)的时候卖出, 这笔交易所能获得利润 = 5 - 1 = 4 。
- 随后,在第 4 天(股票价格 = 3)的时候买入,在第 5 天(股票价格 = 6)的时候卖出, 这笔交易所能获得利润 = 6 - 3 = 3 。
- 总利润为 4 + 3 = 7 。
-
-示例 2:
-
-
-输入:prices = [1,2,3,4,5]
-输出:4
-解释:在第 1 天(股票价格 = 1)的时候买入,在第 5 天 (股票价格 = 5)的时候卖出, 这笔交易所能获得利润 = 5 - 1 = 4 。
- 总利润为 4 。
-
-示例 3:
-
-
-输入:prices = [7,6,4,3,1]
-输出:0
-解释:在这种情况下, 交易无法获得正利润,所以不参与交易可以获得最大利润,最大利润为 0 。
-
-
-
-提示:
-
-
- 1 <= prices.length <= 3 * 104
- 0 <= prices[i] <= 104
-
-
-
👍 1903👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[123]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 III.md" "b/leetcode/editor/cn/doc/content/[123]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 III.md"
deleted file mode 100644
index 955c4269..00000000
--- "a/leetcode/editor/cn/doc/content/[123]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 III.md"
+++ /dev/null
@@ -1,50 +0,0 @@
-给定一个数组,它的第 i 个元素是一支给定的股票在第 i 天的价格。
-
-设计一个算法来计算你所能获取的最大利润。你最多可以完成 两笔 交易。
-
-注意:你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。
-
-
-
-示例 1:
-
-
-输入:prices = [3,3,5,0,0,3,1,4]
-输出:6
-解释:在第 4 天(股票价格 = 0)的时候买入,在第 6 天(股票价格 = 3)的时候卖出,这笔交易所能获得利润 = 3-0 = 3 。
- 随后,在第 7 天(股票价格 = 1)的时候买入,在第 8 天 (股票价格 = 4)的时候卖出,这笔交易所能获得利润 = 4-1 = 3 。
-
-示例 2:
-
-
-输入:prices = [1,2,3,4,5]
-输出:4
-解释:在第 1 天(股票价格 = 1)的时候买入,在第 5 天 (股票价格 = 5)的时候卖出, 这笔交易所能获得利润 = 5-1 = 4 。
- 注意你不能在第 1 天和第 2 天接连购买股票,之后再将它们卖出。
- 因为这样属于同时参与了多笔交易,你必须在再次购买前出售掉之前的股票。
-
-
-示例 3:
-
-
-输入:prices = [7,6,4,3,1]
-输出:0
-解释:在这个情况下, 没有交易完成, 所以最大利润为 0。
-
-示例 4:
-
-
-输入:prices = [1]
-输出:0
-
-
-
-
-提示:
-
-
- 1 <= prices.length <= 105
- 0 <= prices[i] <= 105
-
-
-
👍 1264👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1254]\347\273\237\350\256\241\345\260\201\351\227\255\345\262\233\345\261\277\347\232\204\346\225\260\347\233\256.md" "b/leetcode/editor/cn/doc/content/[1254]\347\273\237\350\256\241\345\260\201\351\227\255\345\262\233\345\261\277\347\232\204\346\225\260\347\233\256.md"
deleted file mode 100644
index c4663239..00000000
--- "a/leetcode/editor/cn/doc/content/[1254]\347\273\237\350\256\241\345\260\201\351\227\255\345\262\233\345\261\277\347\232\204\346\225\260\347\233\256.md"
+++ /dev/null
@@ -1,48 +0,0 @@
-二维矩阵 grid 由 0 (土地)和 1 (水)组成。岛是由最大的4个方向连通的 0 组成的群,封闭岛是一个 完全 由1包围(左、上、右、下)的岛。
-
-请返回 封闭岛屿 的数目。
-
-
-
-示例 1:
-
-
-
-
-输入:grid = [[1,1,1,1,1,1,1,0],[1,0,0,0,0,1,1,0],[1,0,1,0,1,1,1,0],[1,0,0,0,0,1,0,1],[1,1,1,1,1,1,1,0]]
-输出:2
-解释:
-灰色区域的岛屿是封闭岛屿,因为这座岛屿完全被水域包围(即被 1 区域包围)。
-
-示例 2:
-
-
-
-
-输入:grid = [[0,0,1,0,0],[0,1,0,1,0],[0,1,1,1,0]]
-输出:1
-
-
-示例 3:
-
-
-输入:grid = [[1,1,1,1,1,1,1],
- [1,0,0,0,0,0,1],
- [1,0,1,1,1,0,1],
- [1,0,1,0,1,0,1],
- [1,0,1,1,1,0,1],
- [1,0,0,0,0,0,1],
- [1,1,1,1,1,1,1]]
-输出:2
-
-
-
-
-提示:
-
-
- 1 <= grid.length, grid[0].length <= 100
- 0 <= grid[i][j] <=1
-
-
-Related Topics
深度优先搜索广度优先搜索并查集数组矩阵
👍 166👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[130]\350\242\253\345\233\264\347\273\225\347\232\204\345\214\272\345\237\237.md" "b/leetcode/editor/cn/doc/content/[130]\350\242\253\345\233\264\347\273\225\347\232\204\345\214\272\345\237\237.md"
deleted file mode 100644
index c8e0447c..00000000
--- "a/leetcode/editor/cn/doc/content/[130]\350\242\253\345\233\264\347\273\225\347\232\204\345\214\272\345\237\237.md"
+++ /dev/null
@@ -1,35 +0,0 @@
-给你一个 m x n 的矩阵 board ,由若干字符 'X' 和 'O' ,找到所有被 'X' 围绕的区域,并将这些区域里所有的 'O' 用 'X' 填充。
-
-
-
-示例 1:
-
-
-输入:board = [["X","X","X","X"],["X","O","O","X"],["X","X","O","X"],["X","O","X","X"]]
-输出:[["X","X","X","X"],["X","X","X","X"],["X","X","X","X"],["X","O","X","X"]]
-解释:被围绕的区间不会存在于边界上,换句话说,任何边界上的 'O' 都不会被填充为 'X'。 任何不在边界上,或不与边界上的 'O' 相连的 'O' 最终都会被填充为 'X'。如果两个元素在水平或垂直方向相邻,则称它们是“相连”的。
-
-
-示例 2:
-
-
-输入:board = [["X"]]
-输出:[["X"]]
-
-
-
-
-提示:
-
-
- m == board.length
- n == board[i].length
- 1 <= m, n <= 200
- board[i][j] 为 'X' 或 'O'
-
-
-Related Topics
深度优先搜索广度优先搜索并查集数组矩阵
👍 893👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[139]\345\215\225\350\257\215\346\213\206\345\210\206.md" "b/leetcode/editor/cn/doc/content/[139]\345\215\225\350\257\215\346\213\206\345\210\206.md"
deleted file mode 100644
index 626a75f2..00000000
--- "a/leetcode/editor/cn/doc/content/[139]\345\215\225\350\257\215\346\213\206\345\210\206.md"
+++ /dev/null
@@ -1,43 +0,0 @@
-给你一个字符串 s 和一个字符串列表 wordDict 作为字典。请你判断是否可以利用字典中出现的单词拼接出 s 。
-
-注意:不要求字典中出现的单词全部都使用,并且字典中的单词可以重复使用。
-
-
-
-示例 1:
-
-
-输入: s = "leetcode", wordDict = ["leet", "code"]
-输出: true
-解释: 返回 true 因为 "leetcode" 可以由 "leet" 和 "code" 拼接成。
-
-
-示例 2:
-
-
-输入: s = "applepenapple", wordDict = ["apple", "pen"]
-输出: true
-解释: 返回 true 因为 "applepenapple" 可以由 "apple" "pen" "apple" 拼接成。
- 注意,你可以重复使用字典中的单词。
-
-
-示例 3:
-
-
-输入: s = "catsandog", wordDict = ["cats", "dog", "sand", "and", "cat"]
-输出: false
-
-
-
-
-提示:
-
-
- 1 <= s.length <= 300
- 1 <= wordDict.length <= 1000
- 1 <= wordDict[i].length <= 20
- s 和 wordDict[i] 仅有小写英文字母组成
- wordDict 中的所有字符串 互不相同
-
-
-Related Topics
字典树记忆化搜索哈希表字符串动态规划
👍 1925👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[141]\347\216\257\345\275\242\351\223\276\350\241\250.md" "b/leetcode/editor/cn/doc/content/[141]\347\216\257\345\275\242\351\223\276\350\241\250.md"
deleted file mode 100644
index 6f9169eb..00000000
--- "a/leetcode/editor/cn/doc/content/[141]\347\216\257\345\275\242\351\223\276\350\241\250.md"
+++ /dev/null
@@ -1,53 +0,0 @@
-给你一个链表的头节点 head ,判断链表中是否有环。
-
-如果链表中有某个节点,可以通过连续跟踪 next 指针再次到达,则链表中存在环。 为了表示给定链表中的环,评测系统内部使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。注意:pos 不作为参数进行传递 。仅仅是为了标识链表的实际情况。
-
-如果链表中存在环 ,则返回 true 。 否则,返回 false 。
-
-
-
-示例 1:
-
-
-
-
-输入:head = [3,2,0,-4], pos = 1
-输出:true
-解释:链表中有一个环,其尾部连接到第二个节点。
-
-
-示例 2:
-
-
-
-
-输入:head = [1,2], pos = 0
-输出:true
-解释:链表中有一个环,其尾部连接到第一个节点。
-
-
-示例 3:
-
-
-
-
-输入:head = [1], pos = -1
-输出:false
-解释:链表中没有环。
-
-
-
-
-提示:
-
-
- - 链表中节点的数目范围是
[0, 104]
- -105 <= Node.val <= 105
- pos 为 -1 或者链表中的一个 有效索引 。
-
-
-
-
-进阶:你能用 O(1)(即,常量)内存解决此问题吗?
-
-
👍 1647👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[142]\347\216\257\345\275\242\351\223\276\350\241\250 II.md" "b/leetcode/editor/cn/doc/content/[142]\347\216\257\345\275\242\351\223\276\350\241\250 II.md"
deleted file mode 100644
index e9923762..00000000
--- "a/leetcode/editor/cn/doc/content/[142]\347\216\257\345\275\242\351\223\276\350\241\250 II.md"
+++ /dev/null
@@ -1,56 +0,0 @@
-给定一个链表的头节点 head ,返回链表开始入环的第一个节点。 如果链表无环,则返回 null。
-
-如果链表中有某个节点,可以通过连续跟踪 next 指针再次到达,则链表中存在环。 为了表示给定链表中的环,评测系统内部使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。如果 pos 是 -1,则在该链表中没有环。注意:pos 不作为参数进行传递,仅仅是为了标识链表的实际情况。
-
-不允许修改 链表。
-
-
-
-
-
-示例 1:
-
-
-
-
-输入:head = [3,2,0,-4], pos = 1
-输出:返回索引为 1 的链表节点
-解释:链表中有一个环,其尾部连接到第二个节点。
-
-
-示例 2:
-
-
-
-
-输入:head = [1,2], pos = 0
-输出:返回索引为 0 的链表节点
-解释:链表中有一个环,其尾部连接到第一个节点。
-
-
-示例 3:
-
-
-
-
-输入:head = [1], pos = -1
-输出:返回 null
-解释:链表中没有环。
-
-
-
-
-提示:
-
-
- - 链表中节点的数目范围在范围
[0, 104] 内
- -105 <= Node.val <= 105
- pos 的值为 -1 或者链表中的一个有效索引
-
-
-
-
-进阶:你是否可以使用 O(1) 空间解决此题?
-
-
👍 1817👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[146]LRU \347\274\223\345\255\230.md" "b/leetcode/editor/cn/doc/content/[146]LRU \347\274\223\345\255\230.md"
deleted file mode 100644
index e51e5693..00000000
--- "a/leetcode/editor/cn/doc/content/[146]LRU \347\274\223\345\255\230.md"
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
- 实现
- LRUCache 类:
-
-
-
-
-
- LRUCache(int capacity) 以 正整数 作为容量 capacity 初始化 LRU 缓存
- int get(int key) 如果关键字 key 存在于缓存中,则返回关键字的值,否则返回 -1 。
- void put(int key, int value) 如果关键字 key 已经存在,则变更其数据值 value ;如果不存在,则向缓存中插入该组 key-value 。如果插入操作导致关键字数量超过 capacity ,则应该 逐出 最久未使用的关键字。
-
-
-
-
-函数 get 和 put 必须以 O(1) 的平均时间复杂度运行。
-
-
-
-示例:
-
-
-输入
-["LRUCache", "put", "put", "get", "put", "get", "put", "get", "get", "get"]
-[[2], [1, 1], [2, 2], [1], [3, 3], [2], [4, 4], [1], [3], [4]]
-输出
-[null, null, null, 1, null, -1, null, -1, 3, 4]
-
-解释
-LRUCache lRUCache = new LRUCache(2);
-lRUCache.put(1, 1); // 缓存是 {1=1}
-lRUCache.put(2, 2); // 缓存是 {1=1, 2=2}
-lRUCache.get(1); // 返回 1
-lRUCache.put(3, 3); // 该操作会使得关键字 2 作废,缓存是 {1=1, 3=3}
-lRUCache.get(2); // 返回 -1 (未找到)
-lRUCache.put(4, 4); // 该操作会使得关键字 1 作废,缓存是 {4=4, 3=3}
-lRUCache.get(1); // 返回 -1 (未找到)
-lRUCache.get(3); // 返回 3
-lRUCache.get(4); // 返回 4
-
-
-
-
-提示:
-
-
- 1 <= capacity <= 3000
- 0 <= key <= 10000
- 0 <= value <= 105
- - 最多调用
2 * 105 次 get 和 put
-
-
-Related Topics
设计哈希表链表双向链表
👍 2498👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[14]\346\234\200\351\225\277\345\205\254\345\205\261\345\211\215\347\274\200.md" "b/leetcode/editor/cn/doc/content/[14]\346\234\200\351\225\277\345\205\254\345\205\261\345\211\215\347\274\200.md"
deleted file mode 100644
index 2c69f4d8..00000000
--- "a/leetcode/editor/cn/doc/content/[14]\346\234\200\351\225\277\345\205\254\345\205\261\345\211\215\347\274\200.md"
+++ /dev/null
@@ -1,31 +0,0 @@
-编写一个函数来查找字符串数组中的最长公共前缀。
-
-如果不存在公共前缀,返回空字符串 ""。
-
-
-
-示例 1:
-
-
-输入:strs = ["flower","flow","flight"]
-输出:"fl"
-
-
-示例 2:
-
-
-输入:strs = ["dog","racecar","car"]
-输出:""
-解释:输入不存在公共前缀。
-
-
-
-提示:
-
-
- 1 <= strs.length <= 200
- 0 <= strs[i].length <= 200
- strs[i] 仅由小写英文字母组成
-
-
-
👍 2555👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1514]\346\246\202\347\216\207\346\234\200\345\244\247\347\232\204\350\267\257\345\276\204.md" "b/leetcode/editor/cn/doc/content/[1514]\346\246\202\347\216\207\346\234\200\345\244\247\347\232\204\350\267\257\345\276\204.md"
deleted file mode 100644
index 79f6e0bc..00000000
--- "a/leetcode/editor/cn/doc/content/[1514]\346\246\202\347\216\207\346\234\200\345\244\247\347\232\204\350\267\257\345\276\204.md"
+++ /dev/null
@@ -1,50 +0,0 @@
-给你一个由 n 个节点(下标从 0 开始)组成的无向加权图,该图由一个描述边的列表组成,其中 edges[i] = [a, b] 表示连接节点 a 和 b 的一条无向边,且该边遍历成功的概率为 succProb[i] 。
-
-指定两个节点分别作为起点 start 和终点 end ,请你找出从起点到终点成功概率最大的路径,并返回其成功概率。
-
-如果不存在从 start 到 end 的路径,请 返回 0 。只要答案与标准答案的误差不超过 1e-5 ,就会被视作正确答案。
-
-
-
-示例 1:
-
-
-
-输入:n = 3, edges = [[0,1],[1,2],[0,2]], succProb = [0.5,0.5,0.2], start = 0, end = 2
-输出:0.25000
-解释:从起点到终点有两条路径,其中一条的成功概率为 0.2 ,而另一条为 0.5 * 0.5 = 0.25
-
-
-示例 2:
-
-
-
-输入:n = 3, edges = [[0,1],[1,2],[0,2]], succProb = [0.5,0.5,0.3], start = 0, end = 2
-输出:0.30000
-
-
-示例 3:
-
-
-
-输入:n = 3, edges = [[0,1]], succProb = [0.5], start = 0, end = 2
-输出:0.00000
-解释:节点 0 和 节点 2 之间不存在路径
-
-
-
-
-提示:
-
-
- 2 <= n <= 10^4
- 0 <= start, end < n
- start != end
- 0 <= a, b < n
- a != b
- 0 <= succProb.length == edges.length <= 2*10^4
- 0 <= succProb[i] <= 1
- - 每两个节点之间最多有一条边
-
-
-Related Topics
图数组最短路堆(优先队列)
👍 113👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[151]\345\217\215\350\275\254\345\255\227\347\254\246\344\270\262\344\270\255\347\232\204\345\215\225\350\257\215.md" "b/leetcode/editor/cn/doc/content/[151]\345\217\215\350\275\254\345\255\227\347\254\246\344\270\262\344\270\255\347\232\204\345\215\225\350\257\215.md"
deleted file mode 100644
index 3fe49a2f..00000000
--- "a/leetcode/editor/cn/doc/content/[151]\345\217\215\350\275\254\345\255\227\347\254\246\344\270\262\344\270\255\347\232\204\345\215\225\350\257\215.md"
+++ /dev/null
@@ -1,51 +0,0 @@
-给你一个字符串 s ,请你反转字符串中 单词 的顺序。
-
-单词 是由非空格字符组成的字符串。s 中使用至少一个空格将字符串中的 单词 分隔开。
-
-返回 单词 顺序颠倒且 单词 之间用单个空格连接的结果字符串。
-
-注意:输入字符串 s中可能会存在前导空格、尾随空格或者单词间的多个空格。返回的结果字符串中,单词间应当仅用单个空格分隔,且不包含任何额外的空格。
-
-
-
-示例 1:
-
-
-输入:s = "the sky is blue"
-输出:"blue is sky the"
-
-
-示例 2:
-
-
-输入:s = " hello world "
-输出:"world hello"
-解释:反转后的字符串中不能存在前导空格和尾随空格。
-
-
-示例 3:
-
-
-输入:s = "a good example"
-输出:"example good a"
-解释:如果两个单词间有多余的空格,反转后的字符串需要将单词间的空格减少到仅有一个。
-
-
-
-
-提示:
-
-
- 1 <= s.length <= 104
- s 包含英文大小写字母、数字和空格 ' '
- s 中 至少存在一个 单词
-
-
-
-
-
-
-进阶:如果字符串在你使用的编程语言中是一种可变数据类型,请尝试使用 O(1) 额外空间复杂度的 原地 解法。
-
-
👍 703👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[15]\344\270\211\346\225\260\344\271\213\345\222\214.md" "b/leetcode/editor/cn/doc/content/[15]\344\270\211\346\225\260\344\271\213\345\222\214.md"
deleted file mode 100644
index f2dcb11f..00000000
--- "a/leetcode/editor/cn/doc/content/[15]\344\270\211\346\225\260\344\271\213\345\222\214.md"
+++ /dev/null
@@ -1,49 +0,0 @@
-给你一个整数数组 nums ,判断是否存在三元组 [nums[i], nums[j], nums[k]] 满足 i != j、i != k 且 j != k ,同时还满足 nums[i] + nums[j] + nums[k] == 0 。请
-
-你返回所有和为 0 且不重复的三元组。
-
-注意:答案中不可以包含重复的三元组。
-
-
-
-
-
-示例 1:
-
-
-输入:nums = [-1,0,1,2,-1,-4]
-输出:[[-1,-1,2],[-1,0,1]]
-解释:
-nums[0] + nums[1] + nums[2] = (-1) + 0 + 1 = 0 。
-nums[1] + nums[2] + nums[4] = 0 + 1 + (-1) = 0 。
-nums[0] + nums[3] + nums[4] = (-1) + 2 + (-1) = 0 。
-不同的三元组是 [-1,0,1] 和 [-1,-1,2] 。
-注意,输出的顺序和三元组的顺序并不重要。
-
-
-示例 2:
-
-
-输入:nums = [0,1,1]
-输出:[]
-解释:唯一可能的三元组和不为 0 。
-
-
-示例 3:
-
-
-输入:nums = [0,0,0]
-输出:[[0,0,0]]
-解释:唯一可能的三元组和为 0 。
-
-
-
-
-提示:
-
-
- 3 <= nums.length <= 3000
- -105 <= nums[i] <= 105
-
-
-
👍 5318👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1631]\346\234\200\345\260\217\344\275\223\345\212\233\346\266\210\350\200\227\350\267\257\345\276\204.md" "b/leetcode/editor/cn/doc/content/[1631]\346\234\200\345\260\217\344\275\223\345\212\233\346\266\210\350\200\227\350\267\257\345\276\204.md"
deleted file mode 100644
index 0ccfcd46..00000000
--- "a/leetcode/editor/cn/doc/content/[1631]\346\234\200\345\260\217\344\275\223\345\212\233\346\266\210\350\200\227\350\267\257\345\276\204.md"
+++ /dev/null
@@ -1,49 +0,0 @@
-你准备参加一场远足活动。给你一个二维 rows x columns 的地图 heights ,其中 heights[row][col] 表示格子 (row, col) 的高度。一开始你在最左上角的格子 (0, 0) ,且你希望去最右下角的格子 (rows-1, columns-1) (注意下标从 0 开始编号)。你每次可以往 上,下,左,右 四个方向之一移动,你想要找到耗费 体力 最小的一条路径。
-
-一条路径耗费的 体力值 是路径上相邻格子之间 高度差绝对值 的 最大值 决定的。
-
-请你返回从左上角走到右下角的最小 体力消耗值 。
-
-
-
-示例 1:
-
-
-
-
-输入:heights = [[1,2,2],[3,8,2],[5,3,5]]
-输出:2
-解释:路径 [1,3,5,3,5] 连续格子的差值绝对值最大为 2 。
-这条路径比路径 [1,2,2,2,5] 更优,因为另一条路径差值最大值为 3 。
-
-
-示例 2:
-
-
-
-
-输入:heights = [[1,2,3],[3,8,4],[5,3,5]]
-输出:1
-解释:路径 [1,2,3,4,5] 的相邻格子差值绝对值最大为 1 ,比路径 [1,3,5,3,5] 更优。
-
-
-示例 3:
-
-
-输入:heights = [[1,2,1,1,1],[1,2,1,2,1],[1,2,1,2,1],[1,2,1,2,1],[1,1,1,2,1]]
-输出:0
-解释:上图所示路径不需要消耗任何体力。
-
-
-
-
-提示:
-
-
- rows == heights.length
- columns == heights[i].length
- 1 <= rows, columns <= 100
- 1 <= heights[i][j] <= 106
-
-
-Related Topics
深度优先搜索广度优先搜索并查集数组二分查找矩阵堆(优先队列)
👍 325👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1664]\347\224\237\346\210\220\345\271\263\350\241\241\346\225\260\347\273\204\347\232\204\346\226\271\346\241\210\346\225\260.md" "b/leetcode/editor/cn/doc/content/[1664]\347\224\237\346\210\220\345\271\263\350\241\241\346\225\260\347\273\204\347\232\204\346\226\271\346\241\210\346\225\260.md"
deleted file mode 100644
index 61a19a41..00000000
--- "a/leetcode/editor/cn/doc/content/[1664]\347\224\237\346\210\220\345\271\263\350\241\241\346\225\260\347\273\204\347\232\204\346\226\271\346\241\210\346\225\260.md"
+++ /dev/null
@@ -1,55 +0,0 @@
-给你一个整数数组 nums 。你需要选择 恰好 一个下标(下标从 0 开始)并删除对应的元素。请注意剩下元素的下标可能会因为删除操作而发生改变。
-
-比方说,如果 nums = [6,1,7,4,1] ,那么:
-
-
- - 选择删除下标
1 ,剩下的数组为 nums = [6,7,4,1] 。
- - 选择删除下标
2 ,剩下的数组为 nums = [6,1,4,1] 。
- - 选择删除下标
4 ,剩下的数组为 nums = [6,1,7,4] 。
-
-
-如果一个数组满足奇数下标元素的和与偶数下标元素的和相等,该数组就是一个 平衡数组 。
-
-请你返回删除操作后,剩下的数组 nums 是 平衡数组 的 方案数 。
-
-
-
-示例 1:
-
-
-输入:nums = [2,1,6,4]
-输出:1
-解释:
-删除下标 0 :[1,6,4] -> 偶数元素下标为:1 + 4 = 5 。奇数元素下标为:6 。不平衡。
-删除下标 1 :[2,6,4] -> 偶数元素下标为:2 + 4 = 6 。奇数元素下标为:6 。平衡。
-删除下标 2 :[2,1,4] -> 偶数元素下标为:2 + 4 = 6 。奇数元素下标为:1 。不平衡。
-删除下标 3 :[2,1,6] -> 偶数元素下标为:2 + 6 = 8 。奇数元素下标为:1 。不平衡。
-只有一种让剩余数组成为平衡数组的方案。
-
-
-示例 2:
-
-
-输入:nums = [1,1,1]
-输出:3
-解释:你可以删除任意元素,剩余数组都是平衡数组。
-
-
-示例 3:
-
-
-输入:nums = [1,2,3]
-输出:0
-解释:不管删除哪个元素,剩下数组都不是平衡数组。
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 105
- 1 <= nums[i] <= 104
-
-
-
👍 90👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[187]\351\207\215\345\244\215\347\232\204DNA\345\272\217\345\210\227.md" "b/leetcode/editor/cn/doc/content/[187]\351\207\215\345\244\215\347\232\204DNA\345\272\217\345\210\227.md"
deleted file mode 100644
index c27f1534..00000000
--- "a/leetcode/editor/cn/doc/content/[187]\351\207\215\345\244\215\347\232\204DNA\345\272\217\345\210\227.md"
+++ /dev/null
@@ -1,39 +0,0 @@
-DNA序列 由一系列核苷酸组成,缩写为
- 'A', 'C', 'G' 和
- 'T'.。
-
-
- - 例如,
-
"ACGAATTCCG" 是一个 DNA序列 。
-
-
-在研究 DNA 时,识别 DNA 中的重复序列非常有用。
-
-给定一个表示 DNA序列 的字符串 s ,返回所有在 DNA 分子中出现不止一次的 长度为 10 的序列(子字符串)。你可以按 任意顺序 返回答案。
-
-
-
-示例 1:
-
-
-输入:s = "AAAAACCCCCAAAAACCCCCCAAAAAGGGTTT"
-输出:["AAAAACCCCC","CCCCCAAAAA"]
-
-
-示例 2:
-
-
-输入:s = "AAAAAAAAAAAAA"
-输出:["AAAAAAAAAA"]
-
-
-
-
-提示:
-
-
- 0 <= s.length <= 105
- s[i]=='A'、'C'、'G' or 'T'
-
-
-Related Topics
位运算哈希表字符串滑动窗口哈希函数滚动哈希
👍 441👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[188]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 IV.md" "b/leetcode/editor/cn/doc/content/[188]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 IV.md"
deleted file mode 100644
index da1b221d..00000000
--- "a/leetcode/editor/cn/doc/content/[188]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272 IV.md"
+++ /dev/null
@@ -1,34 +0,0 @@
-给定一个整数数组 prices ,它的第 i 个元素 prices[i] 是一支给定的股票在第 i 天的价格。
-
-设计一个算法来计算你所能获取的最大利润。你最多可以完成 k 笔交易。
-
-注意:你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。
-
-
-
-示例 1:
-
-
-输入:k = 2, prices = [2,4,1]
-输出:2
-解释:在第 1 天 (股票价格 = 2) 的时候买入,在第 2 天 (股票价格 = 4) 的时候卖出,这笔交易所能获得利润 = 4-2 = 2 。
-
-示例 2:
-
-
-输入:k = 2, prices = [3,2,6,5,0,3]
-输出:7
-解释:在第 2 天 (股票价格 = 2) 的时候买入,在第 3 天 (股票价格 = 6) 的时候卖出, 这笔交易所能获得利润 = 6-2 = 4 。
- 随后,在第 5 天 (股票价格 = 0) 的时候买入,在第 6 天 (股票价格 = 3) 的时候卖出, 这笔交易所能获得利润 = 3-0 = 3 。
-
-
-
-提示:
-
-
- 0 <= k <= 100
- 0 <= prices.length <= 1000
- 0 <= prices[i] <= 1000
-
-
-
👍 832👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1905]\347\273\237\350\256\241\345\255\220\345\262\233\345\261\277.md" "b/leetcode/editor/cn/doc/content/[1905]\347\273\237\350\256\241\345\255\220\345\262\233\345\261\277.md"
deleted file mode 100644
index 60d7fa0f..00000000
--- "a/leetcode/editor/cn/doc/content/[1905]\347\273\237\350\256\241\345\255\220\345\262\233\345\261\277.md"
+++ /dev/null
@@ -1,34 +0,0 @@
-给你两个 m x n 的二进制矩阵 grid1 和 grid2 ,它们只包含 0 (表示水域)和 1 (表示陆地)。一个 岛屿 是由 四个方向 (水平或者竖直)上相邻的 1 组成的区域。任何矩阵以外的区域都视为水域。
-
-如果 grid2 的一个岛屿,被 grid1 的一个岛屿 完全 包含,也就是说 grid2 中该岛屿的每一个格子都被 grid1 中同一个岛屿完全包含,那么我们称 grid2 中的这个岛屿为 子岛屿 。
-
-请你返回 grid2 中 子岛屿 的 数目 。
-
-
-
-示例 1:
-
输入:grid1 = [[1,1,1,0,0],[0,1,1,1,1],[0,0,0,0,0],[1,0,0,0,0],[1,1,0,1,1]], grid2 = [[1,1,1,0,0],[0,0,1,1,1],[0,1,0,0,0],[1,0,1,1,0],[0,1,0,1,0]]
-输出:3
-解释:如上图所示,左边为 grid1 ,右边为 grid2 。
-grid2 中标红的 1 区域是子岛屿,总共有 3 个子岛屿。
-
-
-示例 2:
-
输入:grid1 = [[1,0,1,0,1],[1,1,1,1,1],[0,0,0,0,0],[1,1,1,1,1],[1,0,1,0,1]], grid2 = [[0,0,0,0,0],[1,1,1,1,1],[0,1,0,1,0],[0,1,0,1,0],[1,0,0,0,1]]
-输出:2
-解释:如上图所示,左边为 grid1 ,右边为 grid2 。
-grid2 中标红的 1 区域是子岛屿,总共有 2 个子岛屿。
-
-
-
-
-提示:
-
-
- m == grid1.length == grid2.length
- n == grid1[i].length == grid2[i].length
- 1 <= m, n <= 500
- grid1[i][j] 和 grid2[i][j] 都要么是 0 要么是 1 。
-
-
-Related Topics
深度优先搜索广度优先搜索并查集数组矩阵
👍 84👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[19]\345\210\240\351\231\244\351\223\276\350\241\250\347\232\204\345\200\222\346\225\260\347\254\254 N \344\270\252\347\273\223\347\202\271.md" "b/leetcode/editor/cn/doc/content/[19]\345\210\240\351\231\244\351\223\276\350\241\250\347\232\204\345\200\222\346\225\260\347\254\254 N \344\270\252\347\273\223\347\202\271.md"
deleted file mode 100644
index e6dbcef7..00000000
--- "a/leetcode/editor/cn/doc/content/[19]\345\210\240\351\231\244\351\223\276\350\241\250\347\232\204\345\200\222\346\225\260\347\254\254 N \344\270\252\347\273\223\347\202\271.md"
+++ /dev/null
@@ -1,41 +0,0 @@
-给你一个链表,删除链表的倒数第 n 个结点,并且返回链表的头结点。
-
-
-
-示例 1:
-
-
-输入:head = [1,2,3,4,5], n = 2
-输出:[1,2,3,5]
-
-
-示例 2:
-
-
-输入:head = [1], n = 1
-输出:[]
-
-
-示例 3:
-
-
-输入:head = [1,2], n = 1
-输出:[1]
-
-
-
-
-提示:
-
-
- - 链表中结点的数目为
sz
- 1 <= sz <= 30
- 0 <= Node.val <= 100
- 1 <= n <= sz
-
-
-
-
-进阶:你能尝试使用一趟扫描实现吗?
-
-
👍 2266👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[200]\345\262\233\345\261\277\346\225\260\351\207\217.md" "b/leetcode/editor/cn/doc/content/[200]\345\262\233\345\261\277\346\225\260\351\207\217.md"
deleted file mode 100644
index 434a00dd..00000000
--- "a/leetcode/editor/cn/doc/content/[200]\345\262\233\345\261\277\346\225\260\351\207\217.md"
+++ /dev/null
@@ -1,44 +0,0 @@
-给你一个由 '1'(陆地)和 '0'(水)组成的的二维网格,请你计算网格中岛屿的数量。
-
-岛屿总是被水包围,并且每座岛屿只能由水平方向和/或竖直方向上相邻的陆地连接形成。
-
-此外,你可以假设该网格的四条边均被水包围。
-
-
-
-示例 1:
-
-
-输入:grid = [
- ["1","1","1","1","0"],
- ["1","1","0","1","0"],
- ["1","1","0","0","0"],
- ["0","0","0","0","0"]
-]
-输出:1
-
-
-示例 2:
-
-
-输入:grid = [
- ["1","1","0","0","0"],
- ["1","1","0","0","0"],
- ["0","0","1","0","0"],
- ["0","0","0","1","1"]
-]
-输出:3
-
-
-
-
-提示:
-
-
- m == grid.length
- n == grid[i].length
- 1 <= m, n <= 300
- grid[i][j] 的值为 '0' 或 '1'
-
-
-Related Topics
深度优先搜索广度优先搜索并查集数组矩阵
👍 1979👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[206]\345\217\215\350\275\254\351\223\276\350\241\250.md" "b/leetcode/editor/cn/doc/content/[206]\345\217\215\350\275\254\351\223\276\350\241\250.md"
deleted file mode 100644
index 46d9cd10..00000000
--- "a/leetcode/editor/cn/doc/content/[206]\345\217\215\350\275\254\351\223\276\350\241\250.md"
+++ /dev/null
@@ -1,43 +0,0 @@
-给你单链表的头节点 head ,请你反转链表,并返回反转后的链表。
-
-
-
-示例 1:
-
-
-输入:head = [1,2,3,4,5]
-输出:[5,4,3,2,1]
-
-
-示例 2:
-
-
-输入:head = [1,2]
-输出:[2,1]
-
-
-示例 3:
-
-
-输入:head = []
-输出:[]
-
-
-
-
-提示:
-
-
- - 链表中节点的数目范围是
[0, 5000]
- -5000 <= Node.val <= 5000
-
-
-
-
-进阶:链表可以选用迭代或递归方式完成反转。你能否用两种方法解决这道题?
-
-
👍 2804👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[207]\350\257\276\347\250\213\350\241\250.md" "b/leetcode/editor/cn/doc/content/[207]\350\257\276\347\250\213\350\241\250.md"
deleted file mode 100644
index a9fbfddf..00000000
--- "a/leetcode/editor/cn/doc/content/[207]\350\257\276\347\250\213\350\241\250.md"
+++ /dev/null
@@ -1,39 +0,0 @@
-你这个学期必须选修 numCourses 门课程,记为 0 到 numCourses - 1 。
-
-在选修某些课程之前需要一些先修课程。 先修课程按数组 prerequisites 给出,其中 prerequisites[i] = [ai, bi] ,表示如果要学习课程 ai 则 必须 先学习课程 bi 。
-
-
- - 例如,先修课程对
[0, 1] 表示:想要学习课程 0 ,你需要先完成课程 1 。
-
-
-请你判断是否可能完成所有课程的学习?如果可以,返回 true ;否则,返回 false 。
-
-
-
-示例 1:
-
-
-输入:numCourses = 2, prerequisites = [[1,0]]
-输出:true
-解释:总共有 2 门课程。学习课程 1 之前,你需要完成课程 0 。这是可能的。
-
-示例 2:
-
-
-输入:numCourses = 2, prerequisites = [[1,0],[0,1]]
-输出:false
-解释:总共有 2 门课程。学习课程 1 之前,你需要先完成课程 0 ;并且学习课程 0 之前,你还应先完成课程 1 。这是不可能的。
-
-
-
-提示:
-
-
- 1 <= numCourses <= 105
- 0 <= prerequisites.length <= 5000
- prerequisites[i].length == 2
- 0 <= ai, bi < numCourses
- prerequisites[i] 中的所有课程对 互不相同
-
-
-Related Topics
深度优先搜索广度优先搜索图拓扑排序
👍 1460👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[209]\351\225\277\345\272\246\346\234\200\345\260\217\347\232\204\345\255\220\346\225\260\347\273\204.md" "b/leetcode/editor/cn/doc/content/[209]\351\225\277\345\272\246\346\234\200\345\260\217\347\232\204\345\255\220\346\225\260\347\273\204.md"
deleted file mode 100644
index 8b19e3ac..00000000
--- "a/leetcode/editor/cn/doc/content/[209]\351\225\277\345\272\246\346\234\200\345\260\217\347\232\204\345\255\220\346\225\260\347\273\204.md"
+++ /dev/null
@@ -1,47 +0,0 @@
-给定一个含有 n 个正整数的数组和一个正整数 target 。
-
-找出该数组中满足其和 ≥ target 的长度最小的 连续子数组 [numsl, numsl+1, ..., numsr-1, numsr] ,并返回其长度。如果不存在符合条件的子数组,返回 0 。
-
-
-
-示例 1:
-
-
-输入:target = 7, nums = [2,3,1,2,4,3]
-输出:2
-解释:子数组 [4,3] 是该条件下的长度最小的子数组。
-
-
-示例 2:
-
-
-输入:target = 4, nums = [1,4,4]
-输出:1
-
-
-示例 3:
-
-
-输入:target = 11, nums = [1,1,1,1,1,1,1,1]
-输出:0
-
-
-
-
-提示:
-
-
- 1 <= target <= 109
- 1 <= nums.length <= 105
- 1 <= nums[i] <= 105
-
-
-
-
-进阶:
-
-
- - 如果你已经实现
O(n) 时间复杂度的解法, 请尝试设计一个 O(n log(n)) 时间复杂度的解法。
-
-
-Related Topics
数组二分查找前缀和滑动窗口
👍 1430👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[210]\350\257\276\347\250\213\350\241\250 II.md" "b/leetcode/editor/cn/doc/content/[210]\350\257\276\347\250\213\350\241\250 II.md"
deleted file mode 100644
index f4a30ee6..00000000
--- "a/leetcode/editor/cn/doc/content/[210]\350\257\276\347\250\213\350\241\250 II.md"
+++ /dev/null
@@ -1,46 +0,0 @@
-现在你总共有 numCourses 门课需要选,记为 0 到 numCourses - 1。给你一个数组 prerequisites ,其中 prerequisites[i] = [ai, bi] ,表示在选修课程 ai 前 必须 先选修 bi 。
-
-
- - 例如,想要学习课程
0 ,你需要先完成课程 1 ,我们用一个匹配来表示:[0,1] 。
-
-
-返回你为了学完所有课程所安排的学习顺序。可能会有多个正确的顺序,你只要返回 任意一种 就可以了。如果不可能完成所有课程,返回 一个空数组 。
-
-
-
-示例 1:
-
-
-输入:numCourses = 2, prerequisites = [[1,0]]
-输出:[0,1]
-解释:总共有 2 门课程。要学习课程 1,你需要先完成课程 0。因此,正确的课程顺序为 [0,1] 。
-
-
-示例 2:
-
-
-输入:numCourses = 4, prerequisites = [[1,0],[2,0],[3,1],[3,2]]
-输出:[0,2,1,3]
-解释:总共有 4 门课程。要学习课程 3,你应该先完成课程 1 和课程 2。并且课程 1 和课程 2 都应该排在课程 0 之后。
-因此,一个正确的课程顺序是 [0,1,2,3] 。另一个正确的排序是 [0,2,1,3] 。
-
-示例 3:
-
-
-输入:numCourses = 1, prerequisites = []
-输出:[0]
-
-
-
-提示:
-
-
- 1 <= numCourses <= 2000
- 0 <= prerequisites.length <= numCourses * (numCourses - 1)
- prerequisites[i].length == 2
- 0 <= ai, bi < numCourses
- ai != bi
- - 所有
[ai, bi] 互不相同
-
-
-Related Topics
深度优先搜索广度优先搜索图拓扑排序
👍 726👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[215]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254K\344\270\252\346\234\200\345\244\247\345\205\203\347\264\240.md" "b/leetcode/editor/cn/doc/content/[215]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254K\344\270\252\346\234\200\345\244\247\345\205\203\347\264\240.md"
deleted file mode 100644
index aae92339..00000000
--- "a/leetcode/editor/cn/doc/content/[215]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254K\344\270\252\346\234\200\345\244\247\345\205\203\347\264\240.md"
+++ /dev/null
@@ -1,31 +0,0 @@
-给定整数数组 nums 和整数 k,请返回数组中第 k 个最大的元素。
-
-请注意,你需要找的是数组排序后的第 k 个最大的元素,而不是第 k 个不同的元素。
-
-你必须设计并实现时间复杂度为 O(n) 的算法解决此问题。
-
-
-
-示例 1:
-
-
-输入: [3,2,1,5,6,4], k = 2
-输出: 5
-
-
-示例 2:
-
-
-输入: [3,2,3,1,2,4,5,5,6], k = 4
-输出: 4
-
-
-
-提示:
-
-
- 1 <= k <= nums.length <= 105
- -104 <= nums[i] <= 104
-
-
-Related Topics
数组分治快速选择排序堆(优先队列)
👍 1942👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[216]\347\273\204\345\220\210\346\200\273\345\222\214 III.md" "b/leetcode/editor/cn/doc/content/[216]\347\273\204\345\220\210\346\200\273\345\222\214 III.md"
deleted file mode 100644
index cff233fe..00000000
--- "a/leetcode/editor/cn/doc/content/[216]\347\273\204\345\220\210\346\200\273\345\222\214 III.md"
+++ /dev/null
@@ -1,50 +0,0 @@
-找出所有相加之和为 n 的 k 个数的组合,且满足下列条件:
-
-
- - 只使用数字1到9
- - 每个数字 最多使用一次
-
-
-返回 所有可能的有效组合的列表 。该列表不能包含相同的组合两次,组合可以以任何顺序返回。
-
-
-
-示例 1:
-
-
-输入: k = 3, n = 7
-输出: [[1,2,4]]
-解释:
-1 + 2 + 4 = 7
-没有其他符合的组合了。
-
-示例 2:
-
-
-输入: k = 3, n = 9
-输出: [[1,2,6], [1,3,5], [2,3,4]]
-解释:
-1 + 2 + 6 = 9
-1 + 3 + 5 = 9
-2 + 3 + 4 = 9
-没有其他符合的组合了。
-
-示例 3:
-
-
-输入: k = 4, n = 1
-输出: []
-解释: 不存在有效的组合。
-在[1,9]范围内使用4个不同的数字,我们可以得到的最小和是1+2+3+4 = 10,因为10 > 1,没有有效的组合。
-
-
-
-
-提示:
-
-
- 2 <= k <= 9
- 1 <= n <= 60
-
-
-
👍 584👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[222]\345\256\214\345\205\250\344\272\214\345\217\211\346\240\221\347\232\204\350\212\202\347\202\271\344\270\252\346\225\260.md" "b/leetcode/editor/cn/doc/content/[222]\345\256\214\345\205\250\344\272\214\345\217\211\346\240\221\347\232\204\350\212\202\347\202\271\344\270\252\346\225\260.md"
deleted file mode 100644
index b502c38b..00000000
--- "a/leetcode/editor/cn/doc/content/[222]\345\256\214\345\205\250\344\272\214\345\217\211\346\240\221\347\232\204\350\212\202\347\202\271\344\270\252\346\225\260.md"
+++ /dev/null
@@ -1,42 +0,0 @@
-给你一棵 完全二叉树 的根节点 root ,求出该树的节点个数。
-
-完全二叉树 的定义如下:在完全二叉树中,除了最底层节点可能没填满外,其余每层节点数都达到最大值,并且最下面一层的节点都集中在该层最左边的若干位置。若最底层为第 h 层,则该层包含 1~ 2h 个节点。
-
-
-
-示例 1:
-
-
-输入:root = [1,2,3,4,5,6]
-输出:6
-
-
-示例 2:
-
-
-输入:root = []
-输出:0
-
-
-示例 3:
-
-
-输入:root = [1]
-输出:1
-
-
-
-
-提示:
-
-
- - 树中节点的数目范围是
[0, 5 * 104]
- 0 <= Node.val <= 5 * 104
- - 题目数据保证输入的树是 完全二叉树
-
-
-
-
-进阶:遍历树来统计节点是一种时间复杂度为 O(n) 的简单解决方案。你可以设计一个更快的算法吗?
-
-Related Topics
树深度优先搜索二分查找二叉树
👍 816👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[22]\346\213\254\345\217\267\347\224\237\346\210\220.md" "b/leetcode/editor/cn/doc/content/[22]\346\213\254\345\217\267\347\224\237\346\210\220.md"
deleted file mode 100644
index 31b76258..00000000
--- "a/leetcode/editor/cn/doc/content/[22]\346\213\254\345\217\267\347\224\237\346\210\220.md"
+++ /dev/null
@@ -1,27 +0,0 @@
-数字 n 代表生成括号的对数,请你设计一个函数,用于能够生成所有可能的并且 有效的 括号组合。
-
-
-
-示例 1:
-
-
-输入:n = 3
-输出:["((()))","(()())","(())()","()(())","()()()"]
-
-
-示例 2:
-
-
-输入:n = 1
-输出:["()"]
-
-
-
-
-提示:
-
-
-
-
👍 2958👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[230]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\254\254K\345\260\217\347\232\204\345\205\203\347\264\240.md" "b/leetcode/editor/cn/doc/content/[230]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\254\254K\345\260\217\347\232\204\345\205\203\347\264\240.md"
deleted file mode 100644
index e964dac4..00000000
--- "a/leetcode/editor/cn/doc/content/[230]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\254\254K\345\260\217\347\232\204\345\205\203\347\264\240.md"
+++ /dev/null
@@ -1,35 +0,0 @@
-给定一个二叉搜索树的根节点 root ,和一个整数 k ,请你设计一个算法查找其中第 k 个最小元素(从 1 开始计数)。
-
-
-
-示例 1:
-
-
-输入:root = [3,1,4,null,2], k = 1
-输出:1
-
-
-示例 2:
-
-
-输入:root = [5,3,6,2,4,null,null,1], k = 3
-输出:3
-
-
-
-
-
-
-提示:
-
-
- - 树中的节点数为
n 。
- 1 <= k <= n <= 104
- 0 <= Node.val <= 104
-
-
-
-
-进阶:如果二叉搜索树经常被修改(插入/删除操作)并且你需要频繁地查找第 k 小的值,你将如何优化算法?
-
-Related Topics
树深度优先搜索二叉搜索树二叉树
👍 683👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[2315]\347\273\237\350\256\241\346\230\237\345\217\267.md" "b/leetcode/editor/cn/doc/content/[2315]\347\273\237\350\256\241\346\230\237\345\217\267.md"
deleted file mode 100644
index 06ffbd07..00000000
--- "a/leetcode/editor/cn/doc/content/[2315]\347\273\237\350\256\241\346\230\237\345\217\267.md"
+++ /dev/null
@@ -1,41 +0,0 @@
-给你一个字符串 s ,每 两个 连续竖线 '|' 为 一对 。换言之,第一个和第二个 '|' 为一对,第三个和第四个 '|' 为一对,以此类推。
-
-请你返回 不在 竖线对之间,s 中 '*' 的数目。
-
-注意,每个竖线 '|' 都会 恰好 属于一个对。
-
-
-
-示例 1:
-
-输入:s = "l|*e*et|c**o|*de|"
-输出:2
-解释:不在竖线对之间的字符加粗加斜体后,得到字符串:"l|*e*et|c**o|*de|" 。
-第一和第二条竖线 '|' 之间的字符不计入答案。
-同时,第三条和第四条竖线 '|' 之间的字符也不计入答案。
-不在竖线对之间总共有 2 个星号,所以我们返回 2 。
-
-示例 2:
-
-输入:s = "iamprogrammer"
-输出:0
-解释:在这个例子中,s 中没有星号。所以返回 0 。
-
-
-示例 3:
-
-输入:s = "yo|uar|e**|b|e***au|tifu|l"
-输出:5
-解释:需要考虑的字符加粗加斜体后:"yo|uar|e**|b|e***au|tifu|l" 。不在竖线对之间总共有 5 个星号。所以我们返回 5 。
-
-
-
-提示:
-
-
- 1 <= s.length <= 1000
- s 只包含小写英文字母,竖线 '|' 和星号 '*' 。
- s 包含 偶数 个竖线 '|' 。
-
-
-
👍 41👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[234]\345\233\236\346\226\207\351\223\276\350\241\250.md" "b/leetcode/editor/cn/doc/content/[234]\345\233\236\346\226\207\351\223\276\350\241\250.md"
deleted file mode 100644
index 5ec19417..00000000
--- "a/leetcode/editor/cn/doc/content/[234]\345\233\236\346\226\207\351\223\276\350\241\250.md"
+++ /dev/null
@@ -1,32 +0,0 @@
-给你一个单链表的头节点 head ,请你判断该链表是否为回文链表。如果是,返回 true ;否则,返回 false 。
-
-
-
-示例 1:
-
-
-输入:head = [1,2,2,1]
-输出:true
-
-
-示例 2:
-
-
-输入:head = [1,2]
-输出:false
-
-
-
-
-提示:
-
-
- - 链表中节点数目在范围
[1, 105] 内
- 0 <= Node.val <= 9
-
-
-
-
-进阶:你能否用 O(n) 时间复杂度和 O(1) 空间复杂度解决此题?
-
-
👍 1550👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[235]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\347\232\204\346\234\200\350\277\221\345\205\254\345\205\261\347\245\226\345\205\210.md" "b/leetcode/editor/cn/doc/content/[235]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\347\232\204\346\234\200\350\277\221\345\205\254\345\205\261\347\245\226\345\205\210.md"
deleted file mode 100644
index 89e9cbd1..00000000
--- "a/leetcode/editor/cn/doc/content/[235]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\347\232\204\346\234\200\350\277\221\345\205\254\345\205\261\347\245\226\345\205\210.md"
+++ /dev/null
@@ -1,33 +0,0 @@
-给定一个二叉搜索树, 找到该树中两个指定节点的最近公共祖先。
-
-百度百科中最近公共祖先的定义为:“对于有根树 T 的两个结点 p、q,最近公共祖先表示为一个结点 x,满足 x 是 p、q 的祖先且 x 的深度尽可能大(一个节点也可以是它自己的祖先)。”
-
-例如,给定如下二叉搜索树: root = [6,2,8,0,4,7,9,null,null,3,5]
-
-
-
-
-
-示例 1:
-
-输入: root = [6,2,8,0,4,7,9,null,null,3,5], p = 2, q = 8
-输出: 6
-解释: 节点 2 和节点 8 的最近公共祖先是 6。
-
-
-示例 2:
-
-输入: root = [6,2,8,0,4,7,9,null,null,3,5], p = 2, q = 4
-输出: 2
-解释: 节点 2 和节点 4 的最近公共祖先是 2, 因为根据定义最近公共祖先节点可以为节点本身。
-
-
-
-说明:
-
-
- - 所有节点的值都是唯一的。
- - p、q 为不同节点且均存在于给定的二叉搜索树中。
-
-
-Related Topics
树深度优先搜索二叉搜索树二叉树
👍 958👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[236]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\350\277\221\345\205\254\345\205\261\347\245\226\345\205\210.md" "b/leetcode/editor/cn/doc/content/[236]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\350\277\221\345\205\254\345\205\261\347\245\226\345\205\210.md"
deleted file mode 100644
index d39825d1..00000000
--- "a/leetcode/editor/cn/doc/content/[236]\344\272\214\345\217\211\346\240\221\347\232\204\346\234\200\350\277\221\345\205\254\345\205\261\347\245\226\345\205\210.md"
+++ /dev/null
@@ -1,42 +0,0 @@
-给定一个二叉树, 找到该树中两个指定节点的最近公共祖先。
-
-百度百科中最近公共祖先的定义为:“对于有根树 T 的两个节点 p、q,最近公共祖先表示为一个节点 x,满足 x 是 p、q 的祖先且 x 的深度尽可能大(一个节点也可以是它自己的祖先)。”
-
-
-
-示例 1:
-
-
-输入:root = [3,5,1,6,2,0,8,null,null,7,4], p = 5, q = 1
-输出:3
-解释:节点 5 和节点 1 的最近公共祖先是节点 3 。
-
-
-示例 2:
-
-
-输入:root = [3,5,1,6,2,0,8,null,null,7,4], p = 5, q = 4
-输出:5
-解释:节点 5 和节点 4 的最近公共祖先是节点 5 。因为根据定义最近公共祖先节点可以为节点本身。
-
-
-示例 3:
-
-
-输入:root = [1,2], p = 1, q = 2
-输出:1
-
-
-
-
-提示:
-
-
- - 树中节点数目在范围
[2, 105] 内。
- -109 <= Node.val <= 109
- - 所有
Node.val 互不相同 。
- p != q
- p 和 q 均存在于给定的二叉树中。
-
-
-
👍 2028👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[23]\345\220\210\345\271\266K\344\270\252\345\215\207\345\272\217\351\223\276\350\241\250.md" "b/leetcode/editor/cn/doc/content/[23]\345\220\210\345\271\266K\344\270\252\345\215\207\345\272\217\351\223\276\350\241\250.md"
deleted file mode 100644
index b6820264..00000000
--- "a/leetcode/editor/cn/doc/content/[23]\345\220\210\345\271\266K\344\270\252\345\215\207\345\272\217\351\223\276\350\241\250.md"
+++ /dev/null
@@ -1,46 +0,0 @@
-给你一个链表数组,每个链表都已经按升序排列。
-
-请你将所有链表合并到一个升序链表中,返回合并后的链表。
-
-
-
-示例 1:
-
-输入:lists = [[1,4,5],[1,3,4],[2,6]]
-输出:[1,1,2,3,4,4,5,6]
-解释:链表数组如下:
-[
- 1->4->5,
- 1->3->4,
- 2->6
-]
-将它们合并到一个有序链表中得到。
-1->1->2->3->4->4->5->6
-
-
-示例 2:
-
-输入:lists = []
-输出:[]
-
-
-示例 3:
-
-输入:lists = [[]]
-输出:[]
-
-
-
-
-提示:
-
-
- k == lists.length
- 0 <= k <= 10^4
- 0 <= lists[i].length <= 500
- -10^4 <= lists[i][j] <= 10^4
- lists[i] 按 升序 排列
- lists[i].length 的总和不超过 10^4
-
-
-Related Topics
链表分治堆(优先队列)归并排序
👍 2254👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[241]\344\270\272\350\277\220\347\256\227\350\241\250\350\276\276\345\274\217\350\256\276\350\256\241\344\274\230\345\205\210\347\272\247.md" "b/leetcode/editor/cn/doc/content/[241]\344\270\272\350\277\220\347\256\227\350\241\250\350\276\276\345\274\217\350\256\276\350\256\241\344\274\230\345\205\210\347\272\247.md"
deleted file mode 100644
index ccb29eea..00000000
--- "a/leetcode/editor/cn/doc/content/[241]\344\270\272\350\277\220\347\256\227\350\241\250\350\276\276\345\274\217\350\256\276\350\256\241\344\274\230\345\205\210\347\272\247.md"
+++ /dev/null
@@ -1,40 +0,0 @@
-给你一个由数字和运算符组成的字符串 expression ,按不同优先级组合数字和运算符,计算并返回所有可能组合的结果。你可以 按任意顺序 返回答案。
-
-生成的测试用例满足其对应输出值符合 32 位整数范围,不同结果的数量不超过 104 。
-
-
-
-示例 1:
-
-
-输入:expression = "2-1-1"
-输出:[0,2]
-解释:
-((2-1)-1) = 0
-(2-(1-1)) = 2
-
-
-示例 2:
-
-
-输入:expression = "2*3-4*5"
-输出:[-34,-14,-10,-10,10]
-解释:
-(2*(3-(4*5))) = -34
-((2*3)-(4*5)) = -14
-((2*(3-4))*5) = -10
-(2*((3-4)*5)) = -10
-(((2*3)-4)*5) = 10
-
-
-
-
-提示:
-
-
- 1 <= expression.length <= 20
- expression 由数字和算符 '+'、'-' 和 '*' 组成。
- - 输入表达式中的所有整数值在范围
[0, 99]
-
-
-Related Topics
递归记忆化搜索数学字符串动态规划
👍 767👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[25]K \344\270\252\344\270\200\347\273\204\347\277\273\350\275\254\351\223\276\350\241\250.md" "b/leetcode/editor/cn/doc/content/[25]K \344\270\252\344\270\200\347\273\204\347\277\273\350\275\254\351\223\276\350\241\250.md"
deleted file mode 100644
index a87fd909..00000000
--- "a/leetcode/editor/cn/doc/content/[25]K \344\270\252\344\270\200\347\273\204\347\277\273\350\275\254\351\223\276\350\241\250.md"
+++ /dev/null
@@ -1,41 +0,0 @@
-给你链表的头节点 head ,每 k 个节点一组进行翻转,请你返回修改后的链表。
-
-k 是一个正整数,它的值小于或等于链表的长度。如果节点总数不是 k 的整数倍,那么请将最后剩余的节点保持原有顺序。
-
-你不能只是单纯的改变节点内部的值,而是需要实际进行节点交换。
-
-
-
-示例 1:
-
-
-输入:head = [1,2,3,4,5], k = 2
-输出:[2,1,4,3,5]
-
-
-示例 2:
-
-
-
-
-输入:head = [1,2,3,4,5], k = 3
-输出:[3,2,1,4,5]
-
-
-
-提示:
-
-
- - 链表中的节点数目为
n
- 1 <= k <= n <= 5000
- 0 <= Node.val <= 1000
-
-
-
-
-进阶:你可以设计一个只用 O(1) 额外内存空间的算法解决此问题吗?
-
-
-
-
👍 1857👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[279]\345\256\214\345\205\250\345\271\263\346\226\271\346\225\260.md" "b/leetcode/editor/cn/doc/content/[279]\345\256\214\345\205\250\345\271\263\346\226\271\346\225\260.md"
deleted file mode 100644
index 86610270..00000000
--- "a/leetcode/editor/cn/doc/content/[279]\345\256\214\345\205\250\345\271\263\346\226\271\346\225\260.md"
+++ /dev/null
@@ -1,29 +0,0 @@
-给你一个整数 n ,返回 和为 n 的完全平方数的最少数量 。
-
-完全平方数 是一个整数,其值等于另一个整数的平方;换句话说,其值等于一个整数自乘的积。例如,1、4、9 和 16 都是完全平方数,而 3 和 11 不是。
-
-
-
-示例 1:
-
-
-输入:n = 12
-输出:3
-解释:12 = 4 + 4 + 4
-
-示例 2:
-
-
-输入:n = 13
-输出:2
-解释:13 = 4 + 9
-
-
-
-提示:
-
-
-
-Related Topics
广度优先搜索数学动态规划
👍 1589👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[283]\347\247\273\345\212\250\351\233\266.md" "b/leetcode/editor/cn/doc/content/[283]\347\247\273\345\212\250\351\233\266.md"
deleted file mode 100644
index bd63104f..00000000
--- "a/leetcode/editor/cn/doc/content/[283]\347\247\273\345\212\250\351\233\266.md"
+++ /dev/null
@@ -1,34 +0,0 @@
-给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。
-
-请注意 ,必须在不复制数组的情况下原地对数组进行操作。
-
-
-
-示例 1:
-
-
-输入: nums = [0,1,0,3,12]
-输出: [1,3,12,0,0]
-
-
-示例 2:
-
-
-输入: nums = [0]
-输出: [0]
-
-
-
-提示:
-
-
-
- 1 <= nums.length <= 104
- -231 <= nums[i] <= 231 - 1
-
-
-
-
-进阶:你能尽量减少完成的操作次数吗?
-
-
👍 1776👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[287]\345\257\273\346\211\276\351\207\215\345\244\215\346\225\260.md" "b/leetcode/editor/cn/doc/content/[287]\345\257\273\346\211\276\351\207\215\345\244\215\346\225\260.md"
deleted file mode 100644
index b90111d1..00000000
--- "a/leetcode/editor/cn/doc/content/[287]\345\257\273\346\211\276\351\207\215\345\244\215\346\225\260.md"
+++ /dev/null
@@ -1,43 +0,0 @@
-给定一个包含 n + 1 个整数的数组 nums ,其数字都在 [1, n] 范围内(包括 1 和 n),可知至少存在一个重复的整数。
-
-假设 nums 只有 一个重复的整数 ,返回 这个重复的数 。
-
-你设计的解决方案必须 不修改 数组 nums 且只用常量级 O(1) 的额外空间。
-
-
-
-示例 1:
-
-
-输入:nums = [1,3,4,2,2]
-输出:2
-
-
-示例 2:
-
-
-输入:nums = [3,1,3,4,2]
-输出:3
-
-
-
-
-提示:
-
-
- 1 <= n <= 105
- nums.length == n + 1
- 1 <= nums[i] <= n
- nums 中 只有一个整数 出现 两次或多次 ,其余整数均只出现 一次
-
-
-
-
-进阶:
-
-
- - 如何证明
nums 中至少存在一个重复的数字?
- - 你可以设计一个线性级时间复杂度
O(n) 的解决方案吗?
-
-
-Related Topics
位运算数组双指针二分查找
👍 1945👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[28]\346\211\276\345\207\272\345\255\227\347\254\246\344\270\262\344\270\255\347\254\254\344\270\200\344\270\252\345\214\271\351\205\215\351\241\271\347\232\204\344\270\213\346\240\207.md" "b/leetcode/editor/cn/doc/content/[28]\346\211\276\345\207\272\345\255\227\347\254\246\344\270\262\344\270\255\347\254\254\344\270\200\344\270\252\345\214\271\351\205\215\351\241\271\347\232\204\344\270\213\346\240\207.md"
deleted file mode 100644
index 5e3c8eca..00000000
--- "a/leetcode/editor/cn/doc/content/[28]\346\211\276\345\207\272\345\255\227\347\254\246\344\270\262\344\270\255\347\254\254\344\270\200\344\270\252\345\214\271\351\205\215\351\241\271\347\232\204\344\270\213\346\240\207.md"
+++ /dev/null
@@ -1,31 +0,0 @@
-给你两个字符串 haystack 和 needle ,请你在 haystack 字符串中找出 needle 字符串的第一个匹配项的下标(下标从 0 开始)。如果 needle 不是 haystack 的一部分,则返回 -1 。
-
-
-
-示例 1:
-
-
-输入:haystack = "sadbutsad", needle = "sad"
-输出:0
-解释:"sad" 在下标 0 和 6 处匹配。
-第一个匹配项的下标是 0 ,所以返回 0 。
-
-
-示例 2:
-
-
-输入:haystack = "leetcode", needle = "leeto"
-输出:-1
-解释:"leeto" 没有在 "leetcode" 中出现,所以返回 -1 。
-
-
-
-
-提示:
-
-
- 1 <= haystack.length, needle.length <= 104
- haystack 和 needle 仅由小写英文字符组成
-
-
-Related Topics
双指针字符串字符串匹配
👍 1654👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[297]\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226.md" "b/leetcode/editor/cn/doc/content/[297]\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226.md"
deleted file mode 100644
index 8fbcb750..00000000
--- "a/leetcode/editor/cn/doc/content/[297]\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226.md"
+++ /dev/null
@@ -1,46 +0,0 @@
-序列化是将一个数据结构或者对象转换为连续的比特位的操作,进而可以将转换后的数据存储在一个文件或者内存中,同时也可以通过网络传输到另一个计算机环境,采取相反方式重构得到原数据。
-
-请设计一个算法来实现二叉树的序列化与反序列化。这里不限定你的序列 / 反序列化算法执行逻辑,你只需要保证一个二叉树可以被序列化为一个字符串并且将这个字符串反序列化为原始的树结构。
-
-提示: 输入输出格式与 LeetCode 目前使用的方式一致,详情请参阅 LeetCode 序列化二叉树的格式。你并非必须采取这种方式,你也可以采用其他的方法解决这个问题。
-
-
-
-示例 1:
-
-
-输入:root = [1,2,3,null,null,4,5]
-输出:[1,2,3,null,null,4,5]
-
-
-示例 2:
-
-
-输入:root = []
-输出:[]
-
-
-示例 3:
-
-
-输入:root = [1]
-输出:[1]
-
-
-示例 4:
-
-
-输入:root = [1,2]
-输出:[1,2]
-
-
-
-
-提示:
-
-
- - 树中结点数在范围
[0, 104] 内
- -1000 <= Node.val <= 1000
-
-
-Related Topics
树深度优先搜索广度优先搜索设计字符串二叉树
👍 1010👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[29]\344\270\244\346\225\260\347\233\270\351\231\244.md" "b/leetcode/editor/cn/doc/content/[29]\344\270\244\346\225\260\347\233\270\351\231\244.md"
deleted file mode 100644
index 7ec6b353..00000000
--- "a/leetcode/editor/cn/doc/content/[29]\344\270\244\346\225\260\347\233\270\351\231\244.md"
+++ /dev/null
@@ -1,34 +0,0 @@
-给你两个整数,被除数 dividend 和除数 divisor。将两数相除,要求 不使用 乘法、除法和取余运算。
-
-整数除法应该向零截断,也就是截去(truncate)其小数部分。例如,8.345 将被截断为 8 ,-2.7335 将被截断至 -2 。
-
-返回被除数 dividend 除以除数 divisor 得到的 商 。
-
-注意:假设我们的环境只能存储 32 位 有符号整数,其数值范围是 [−231, 231 − 1] 。本题中,如果商 严格大于 231 − 1 ,则返回 231 − 1 ;如果商 严格小于 -231 ,则返回 -231 。
-
-
-
-示例 1:
-
-
-输入: dividend = 10, divisor = 3
-输出: 3
-解释: 10/3 = 3.33333.. ,向零截断后得到 3 。
-
-示例 2:
-
-
-输入: dividend = 7, divisor = -3
-输出: -2
-解释: 7/-3 = -2.33333.. ,向零截断后得到 -2 。
-
-
-
-提示:
-
-
- -231 <= dividend, divisor <= 231 - 1
- divisor != 0
-
-
-
👍 1055👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[2]\344\270\244\346\225\260\347\233\270\345\212\240.md" "b/leetcode/editor/cn/doc/content/[2]\344\270\244\346\225\260\347\233\270\345\212\240.md"
deleted file mode 100644
index 89844a3b..00000000
--- "a/leetcode/editor/cn/doc/content/[2]\344\270\244\346\225\260\347\233\270\345\212\240.md"
+++ /dev/null
@@ -1,41 +0,0 @@
-给你两个 非空 的链表,表示两个非负的整数。它们每位数字都是按照 逆序 的方式存储的,并且每个节点只能存储 一位 数字。
-
-请你将两个数相加,并以相同形式返回一个表示和的链表。
-
-你可以假设除了数字 0 之外,这两个数都不会以 0 开头。
-
-
-
-示例 1:
-
-
-输入:l1 = [2,4,3], l2 = [5,6,4]
-输出:[7,0,8]
-解释:342 + 465 = 807.
-
-
-示例 2:
-
-
-输入:l1 = [0], l2 = [0]
-输出:[0]
-
-
-示例 3:
-
-
-输入:l1 = [9,9,9,9,9,9,9], l2 = [9,9,9,9]
-输出:[8,9,9,9,0,0,0,1]
-
-
-
-
-提示:
-
-
- - 每个链表中的节点数在范围
[1, 100] 内
- 0 <= Node.val <= 9
- - 题目数据保证列表表示的数字不含前导零
-
-
-
👍 8932👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[300]\346\234\200\351\225\277\351\200\222\345\242\236\345\255\220\345\272\217\345\210\227.md" "b/leetcode/editor/cn/doc/content/[300]\346\234\200\351\225\277\351\200\222\345\242\236\345\255\220\345\272\217\345\210\227.md"
deleted file mode 100644
index 0c7fd06d..00000000
--- "a/leetcode/editor/cn/doc/content/[300]\346\234\200\351\225\277\351\200\222\345\242\236\345\255\220\345\272\217\345\210\227.md"
+++ /dev/null
@@ -1,44 +0,0 @@
-给你一个整数数组 nums ,找到其中最长严格递增子序列的长度。
-
-子序列 是由数组派生而来的序列,删除(或不删除)数组中的元素而不改变其余元素的顺序。例如,[3,6,2,7] 是数组 [0,3,1,6,2,2,7] 的子序列。
-
-示例 1:
-
-
-输入:nums = [10,9,2,5,3,7,101,18]
-输出:4
-解释:最长递增子序列是 [2,3,7,101],因此长度为 4 。
-
-
-示例 2:
-
-
-输入:nums = [0,1,0,3,2,3]
-输出:4
-
-
-示例 3:
-
-
-输入:nums = [7,7,7,7,7,7,7]
-输出:1
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 2500
- -104 <= nums[i] <= 104
-
-
-
-
-进阶:
-
-
- - 你能将算法的时间复杂度降低到
O(n log(n)) 吗?
-
-
-
👍 2868👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[303]\345\214\272\345\237\237\345\222\214\346\243\200\347\264\242 - \346\225\260\347\273\204\344\270\215\345\217\257\345\217\230.md" "b/leetcode/editor/cn/doc/content/[303]\345\214\272\345\237\237\345\222\214\346\243\200\347\264\242 - \346\225\260\347\273\204\344\270\215\345\217\257\345\217\230.md"
deleted file mode 100644
index 6f7d486c..00000000
--- "a/leetcode/editor/cn/doc/content/[303]\345\214\272\345\237\237\345\222\214\346\243\200\347\264\242 - \346\225\260\347\273\204\344\270\215\345\217\257\345\217\230.md"
+++ /dev/null
@@ -1,43 +0,0 @@
-给定一个整数数组 nums,处理以下类型的多个查询:
-
-
- - 计算索引
left 和 right (包含 left 和 right)之间的 nums 元素的 和 ,其中 left <= right
-
-
-实现 NumArray 类:
-
-
- NumArray(int[] nums) 使用数组 nums 初始化对象
- int sumRange(int i, int j) 返回数组 nums 中索引 left 和 right 之间的元素的 总和 ,包含 left 和 right 两点(也就是 nums[left] + nums[left + 1] + ... + nums[right] )
-
-
-
-
-示例 1:
-
-
-输入:
-["NumArray", "sumRange", "sumRange", "sumRange"]
-[[[-2, 0, 3, -5, 2, -1]], [0, 2], [2, 5], [0, 5]]
-输出:
-[null, 1, -1, -3]
-
-解释:
-NumArray numArray = new NumArray([-2, 0, 3, -5, 2, -1]);
-numArray.sumRange(0, 2); // return 1 ((-2) + 0 + 3)
-numArray.sumRange(2, 5); // return -1 (3 + (-5) + 2 + (-1))
-numArray.sumRange(0, 5); // return -3 ((-2) + 0 + 3 + (-5) + 2 + (-1))
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 104
- -105 <= nums[i] <= 105
- 0 <= i <= j < nums.length
- - 最多调用
104 次 sumRange 方法
-
-
-
👍 517👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[304]\344\272\214\347\273\264\345\214\272\345\237\237\345\222\214\346\243\200\347\264\242 - \347\237\251\351\230\265\344\270\215\345\217\257\345\217\230.md" "b/leetcode/editor/cn/doc/content/[304]\344\272\214\347\273\264\345\214\272\345\237\237\345\222\214\346\243\200\347\264\242 - \347\237\251\351\230\265\344\270\215\345\217\257\345\217\230.md"
deleted file mode 100644
index 26e73896..00000000
--- "a/leetcode/editor/cn/doc/content/[304]\344\272\214\347\273\264\345\214\272\345\237\237\345\222\214\346\243\200\347\264\242 - \347\237\251\351\230\265\344\270\215\345\217\257\345\217\230.md"
+++ /dev/null
@@ -1,50 +0,0 @@
-给定一个二维矩阵 matrix,以下类型的多个请求:
-
-
- - 计算其子矩形范围内元素的总和,该子矩阵的 左上角 为
(row1, col1) ,右下角 为 (row2, col2) 。
-
-
-实现 NumMatrix 类:
-
-
- NumMatrix(int[][] matrix) 给定整数矩阵 matrix 进行初始化
- int sumRegion(int row1, int col1, int row2, int col2) 返回 左上角 (row1, col1) 、右下角 (row2, col2) 所描述的子矩阵的元素 总和 。
-
-
-
-
-示例 1:
-
-
-
-
-输入:
-["NumMatrix","sumRegion","sumRegion","sumRegion"]
-[[[[3,0,1,4,2],[5,6,3,2,1],[1,2,0,1,5],[4,1,0,1,7],[1,0,3,0,5]]],[2,1,4,3],[1,1,2,2],[1,2,2,4]]
-输出:
-[null, 8, 11, 12]
-
-解释:
-NumMatrix numMatrix = new NumMatrix([[3,0,1,4,2],[5,6,3,2,1],[1,2,0,1,5],[4,1,0,1,7],[1,0,3,0,5]]);
-numMatrix.sumRegion(2, 1, 4, 3); // return 8 (红色矩形框的元素总和)
-numMatrix.sumRegion(1, 1, 2, 2); // return 11 (绿色矩形框的元素总和)
-numMatrix.sumRegion(1, 2, 2, 4); // return 12 (蓝色矩形框的元素总和)
-
-
-
-
-提示:
-
-
- m == matrix.length
- n == matrix[i].length
- 1 <= m, n <= 200
-
- -105 <= matrix[i][j] <= 105
- 0 <= row1 <= row2 < m
- 0 <= col1 <= col2 < n
- -
- 最多调用
104 次 sumRegion 方法
-
-
-
👍 447👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[309]\346\234\200\344\275\263\344\271\260\345\215\226\350\202\241\347\245\250\346\227\266\346\234\272\345\220\253\345\206\267\345\206\273\346\234\237.md" "b/leetcode/editor/cn/doc/content/[309]\346\234\200\344\275\263\344\271\260\345\215\226\350\202\241\347\245\250\346\227\266\346\234\272\345\220\253\345\206\267\345\206\273\346\234\237.md"
deleted file mode 100644
index 148fcdd9..00000000
--- "a/leetcode/editor/cn/doc/content/[309]\346\234\200\344\275\263\344\271\260\345\215\226\350\202\241\347\245\250\346\227\266\346\234\272\345\220\253\345\206\267\345\206\273\346\234\237.md"
+++ /dev/null
@@ -1,37 +0,0 @@
-给定一个整数数组
- prices,其中第 prices[i] 表示第 i 天的股票价格 。
-
-设计一个算法计算出最大利润。在满足以下约束条件下,你可以尽可能地完成更多的交易(多次买卖一支股票):
-
-
- - 卖出股票后,你无法在第二天买入股票 (即冷冻期为 1 天)。
-
-
-注意:你不能同时参与多笔交易(你必须在再次购买前出售掉之前的股票)。
-
-
-
-示例 1:
-
-
-输入: prices = [1,2,3,0,2]
-输出: 3
-解释: 对应的交易状态为: [买入, 卖出, 冷冻期, 买入, 卖出]
-
-示例 2:
-
-
-输入: prices = [1]
-输出: 0
-
-
-
-
-提示:
-
-
- 1 <= prices.length <= 5000
- 0 <= prices[i] <= 1000
-
-
-
👍 1354👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[30]\344\270\262\350\201\224\346\211\200\346\234\211\345\215\225\350\257\215\347\232\204\345\255\220\344\270\262.md" "b/leetcode/editor/cn/doc/content/[30]\344\270\262\350\201\224\346\211\200\346\234\211\345\215\225\350\257\215\347\232\204\345\255\220\344\270\262.md"
deleted file mode 100644
index 03f02eb3..00000000
--- "a/leetcode/editor/cn/doc/content/[30]\344\270\262\350\201\224\346\211\200\346\234\211\345\215\225\350\257\215\347\232\204\345\255\220\344\270\262.md"
+++ /dev/null
@@ -1,55 +0,0 @@
-给定一个字符串 s 和一个字符串数组 words。 words 中所有字符串 长度相同。
-
- s 中的 串联子串 是指一个包含 words 中所有字符串以任意顺序排列连接起来的子串。
-
-
- - 例如,如果
words = ["ab","cd","ef"], 那么 "abcdef", "abefcd","cdabef", "cdefab","efabcd", 和 "efcdab" 都是串联子串。 "acdbef" 不是串联子串,因为他不是任何 words 排列的连接。
-
-
-返回所有串联字串在 s 中的开始索引。你可以以 任意顺序 返回答案。
-
-
-
-示例 1:
-
-
-输入:s = "barfoothefoobarman", words = ["foo","bar"]
-输出:[0,9]
-解释:因为 words.length == 2 同时 words[i].length == 3,连接的子字符串的长度必须为 6。
-子串 "barfoo" 开始位置是 0。它是 words 中以 ["bar","foo"] 顺序排列的连接。
-子串 "foobar" 开始位置是 9。它是 words 中以 ["foo","bar"] 顺序排列的连接。
-输出顺序无关紧要。返回 [9,0] 也是可以的。
-
-
-示例 2:
-
-
-输入:s = "wordgoodgoodgoodbestword", words = ["word","good","best","word"]
-输出:[]
-解释:因为 words.length == 4 并且 words[i].length == 4,所以串联子串的长度必须为 16。
-s 中没有子串长度为 16 并且等于 words 的任何顺序排列的连接。
-所以我们返回一个空数组。
-
-
-示例 3:
-
-
-输入:s = "barfoofoobarthefoobarman", words = ["bar","foo","the"]
-输出:[6,9,12]
-解释:因为 words.length == 3 并且 words[i].length == 3,所以串联子串的长度必须为 9。
-子串 "foobarthe" 开始位置是 6。它是 words 中以 ["foo","bar","the"] 顺序排列的连接。
-子串 "barthefoo" 开始位置是 9。它是 words 中以 ["bar","the","foo"] 顺序排列的连接。
-子串 "thefoobar" 开始位置是 12。它是 words 中以 ["the","foo","bar"] 顺序排列的连接。
-
-
-
-提示:
-
-
- 1 <= s.length <= 104
- 1 <= words.length <= 5000
- 1 <= words[i].length <= 30
- words[i] 和 s 由小写英文字母组成
-
-
-
👍 882👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[316]\345\216\273\351\231\244\351\207\215\345\244\215\345\255\227\346\257\215.md" "b/leetcode/editor/cn/doc/content/[316]\345\216\273\351\231\244\351\207\215\345\244\215\345\255\227\346\257\215.md"
deleted file mode 100644
index f051e8a6..00000000
--- "a/leetcode/editor/cn/doc/content/[316]\345\216\273\351\231\244\351\207\215\345\244\215\345\255\227\346\257\215.md"
+++ /dev/null
@@ -1,31 +0,0 @@
-给你一个字符串 s ,请你去除字符串中重复的字母,使得每个字母只出现一次。需保证 返回结果的字典序最小(要求不能打乱其他字符的相对位置)。
-
-
-
-示例 1:
-
-
-输入:s = "bcabc"
-输出:"abc"
-
-
-示例 2:
-
-
-输入:s = "cbacdcbc"
-输出:"acdb"
-
-
-
-提示:
-
-
- 1 <= s.length <= 104
- s 由小写英文字母组成
-
-
-
-
-注意:该题与 1081 https://leetcode-cn.com/problems/smallest-subsequence-of-distinct-characters 相同
-
-
👍 861👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260.md" "b/leetcode/editor/cn/doc/content/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260.md"
deleted file mode 100644
index 98cd5dcf..00000000
--- "a/leetcode/editor/cn/doc/content/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260.md"
+++ /dev/null
@@ -1,34 +0,0 @@
-给定长度分别为 m 和 n 的两个数组,其元素由 0-9 构成,表示两个自然数各位上的数字。现在从这两个数组中选出 k (k <= m + n) 个数字拼接成一个新的数,要求从同一个数组中取出的数字保持其在原数组中的相对顺序。
-
-求满足该条件的最大数。结果返回一个表示该最大数的长度为 k 的数组。
-
-说明: 请尽可能地优化你算法的时间和空间复杂度。
-
-示例 1:
-
-输入:
-nums1 = [3, 4, 6, 5]
-nums2 = [9, 1, 2, 5, 8, 3]
-k = 5
-输出:
-[9, 8, 6, 5, 3]
-
-示例 2:
-
-输入:
-nums1 = [6, 7]
-nums2 = [6, 0, 4]
-k = 5
-输出:
-[6, 7, 6, 0, 4]
-
-示例 3:
-
-输入:
-nums1 = [3, 9]
-nums2 = [8, 9]
-k = 3
-输出:
-[9, 8, 9]
-
-
👍 519👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[322]\351\233\266\351\222\261\345\205\221\346\215\242.md" "b/leetcode/editor/cn/doc/content/[322]\351\233\266\351\222\261\345\205\221\346\215\242.md"
deleted file mode 100644
index 3b661693..00000000
--- "a/leetcode/editor/cn/doc/content/[322]\351\233\266\351\222\261\345\205\221\346\215\242.md"
+++ /dev/null
@@ -1,39 +0,0 @@
-给你一个整数数组 coins ,表示不同面额的硬币;以及一个整数 amount ,表示总金额。
-
-计算并返回可以凑成总金额所需的 最少的硬币个数 。如果没有任何一种硬币组合能组成总金额,返回 -1 。
-
-你可以认为每种硬币的数量是无限的。
-
-
-
-示例 1:
-
-
-输入:coins = [1, 2, 5], amount = 11
-输出:3
-解释:11 = 5 + 5 + 1
-
-示例 2:
-
-
-输入:coins = [2], amount = 3
-输出:-1
-
-示例 3:
-
-
-输入:coins = [1], amount = 0
-输出:0
-
-
-
-
-提示:
-
-
- 1 <= coins.length <= 12
- 1 <= coins[i] <= 231 - 1
- 0 <= amount <= 104
-
-
-Related Topics
广度优先搜索数组动态规划
👍 2199👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[33]\346\220\234\347\264\242\346\227\213\350\275\254\346\216\222\345\272\217\346\225\260\347\273\204.md" "b/leetcode/editor/cn/doc/content/[33]\346\220\234\347\264\242\346\227\213\350\275\254\346\216\222\345\272\217\346\225\260\347\273\204.md"
deleted file mode 100644
index c9082464..00000000
--- "a/leetcode/editor/cn/doc/content/[33]\346\220\234\347\264\242\346\227\213\350\275\254\346\216\222\345\272\217\346\225\260\347\273\204.md"
+++ /dev/null
@@ -1,43 +0,0 @@
-整数数组 nums 按升序排列,数组中的值 互不相同 。
-
-在传递给函数之前,nums 在预先未知的某个下标 k(0 <= k < nums.length)上进行了 旋转,使数组变为 [nums[k], nums[k+1], ..., nums[n-1], nums[0], nums[1], ..., nums[k-1]](下标 从 0 开始 计数)。例如, [0,1,2,4,5,6,7] 在下标 3 处经旋转后可能变为 [4,5,6,7,0,1,2] 。
-
-给你 旋转后 的数组 nums 和一个整数 target ,如果 nums 中存在这个目标值 target ,则返回它的下标,否则返回 -1 。
-
-你必须设计一个时间复杂度为 O(log n) 的算法解决此问题。
-
-
-
-示例 1:
-
-
-输入:nums = [4,5,6,7,0,1,2], target = 0
-输出:4
-
-
-示例 2:
-
-
-输入:nums = [4,5,6,7,0,1,2], target = 3
-输出:-1
-
-示例 3:
-
-
-输入:nums = [1], target = 0
-输出:-1
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 5000
- -104 <= nums[i] <= 104
- nums 中的每个值都 独一无二
- - 题目数据保证
nums 在预先未知的某个下标上进行了旋转
- -104 <= target <= 104
-
-
-
👍 2379👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[341]\346\211\201\345\271\263\345\214\226\345\265\214\345\245\227\345\210\227\350\241\250\350\277\255\344\273\243\345\231\250.md" "b/leetcode/editor/cn/doc/content/[341]\346\211\201\345\271\263\345\214\226\345\265\214\345\245\227\345\210\227\350\241\250\350\277\255\344\273\243\345\231\250.md"
deleted file mode 100644
index 55d52e6e..00000000
--- "a/leetcode/editor/cn/doc/content/[341]\346\211\201\345\271\263\345\214\226\345\265\214\345\245\227\345\210\227\350\241\250\350\277\255\344\273\243\345\231\250.md"
+++ /dev/null
@@ -1,48 +0,0 @@
-给你一个嵌套的整数列表 nestedList 。每个元素要么是一个整数,要么是一个列表;该列表的元素也可能是整数或者是其他列表。请你实现一个迭代器将其扁平化,使之能够遍历这个列表中的所有整数。
-
-实现扁平迭代器类 NestedIterator :
-
-
- NestedIterator(List<NestedInteger> nestedList) 用嵌套列表 nestedList 初始化迭代器。
- int next() 返回嵌套列表的下一个整数。
- boolean hasNext() 如果仍然存在待迭代的整数,返回 true ;否则,返回 false 。
-
-
-你的代码将会用下述伪代码检测:
-
-
-initialize iterator with nestedList
-res = []
-while iterator.hasNext()
- append iterator.next() to the end of res
-return res
-
-如果 res 与预期的扁平化列表匹配,那么你的代码将会被判为正确。
-
-
-
-示例 1:
-
-
-输入:nestedList = [[1,1],2,[1,1]]
-输出:[1,1,2,1,1]
-解释:通过重复调用 next 直到 hasNext 返回 false,next 返回的元素的顺序应该是: [1,1,2,1,1]。
-
-示例 2:
-
-
-输入:nestedList = [1,[4,[6]]]
-输出:[1,4,6]
-解释:通过重复调用 next 直到 hasNext 返回 false,next 返回的元素的顺序应该是: [1,4,6]。
-
-
-
-
-提示:
-
-
- 1 <= nestedList.length <= 500
- - 嵌套列表中的整数值在范围
[-106, 106] 内
-
-
-Related Topics
栈树深度优先搜索设计队列迭代器
👍 473👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[34]\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\345\205\203\347\264\240\347\232\204\347\254\254\344\270\200\344\270\252\345\222\214\346\234\200\345\220\216\344\270\200\344\270\252\344\275\215\347\275\256.md" "b/leetcode/editor/cn/doc/content/[34]\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\345\205\203\347\264\240\347\232\204\347\254\254\344\270\200\344\270\252\345\222\214\346\234\200\345\220\216\344\270\200\344\270\252\344\275\215\347\275\256.md"
deleted file mode 100644
index 570d5770..00000000
--- "a/leetcode/editor/cn/doc/content/[34]\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\345\205\203\347\264\240\347\232\204\347\254\254\344\270\200\344\270\252\345\222\214\346\234\200\345\220\216\344\270\200\344\270\252\344\275\215\347\275\256.md"
+++ /dev/null
@@ -1,38 +0,0 @@
-给你一个按照非递减顺序排列的整数数组 nums,和一个目标值 target。请你找出给定目标值在数组中的开始位置和结束位置。
-
-如果数组中不存在目标值 target,返回 [-1, -1]。
-
-你必须设计并实现时间复杂度为 O(log n) 的算法解决此问题。
-
-
-
-示例 1:
-
-
-输入:nums = [5,7,7,8,8,10], target = 8
-输出:[3,4]
-
-示例 2:
-
-
-输入:nums = [5,7,7,8,8,10], target = 6
-输出:[-1,-1]
-
-示例 3:
-
-
-输入:nums = [], target = 0
-输出:[-1,-1]
-
-
-
-提示:
-
-
- 0 <= nums.length <= 105
- -109 <= nums[i] <= 109
- nums 是一个非递减数组
- -109 <= target <= 109
-
-
-
👍 2030👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[380]O(1) \346\227\266\351\227\264\346\217\222\345\205\245\343\200\201\345\210\240\351\231\244\345\222\214\350\216\267\345\217\226\351\232\217\346\234\272\345\205\203\347\264\240.md" "b/leetcode/editor/cn/doc/content/[380]O(1) \346\227\266\351\227\264\346\217\222\345\205\245\343\200\201\345\210\240\351\231\244\345\222\214\350\216\267\345\217\226\351\232\217\346\234\272\345\205\203\347\264\240.md"
deleted file mode 100644
index bbf67047..00000000
--- "a/leetcode/editor/cn/doc/content/[380]O(1) \346\227\266\351\227\264\346\217\222\345\205\245\343\200\201\345\210\240\351\231\244\345\222\214\350\216\267\345\217\226\351\232\217\346\234\272\345\205\203\347\264\240.md"
+++ /dev/null
@@ -1,48 +0,0 @@
-实现RandomizedSet 类:
-
-
-
-
- RandomizedSet() 初始化 RandomizedSet 对象
- bool insert(int val) 当元素 val 不存在时,向集合中插入该项,并返回 true ;否则,返回 false 。
- bool remove(int val) 当元素 val 存在时,从集合中移除该项,并返回 true ;否则,返回 false 。
- int getRandom() 随机返回现有集合中的一项(测试用例保证调用此方法时集合中至少存在一个元素)。每个元素应该有 相同的概率 被返回。
-
-
-
-
-你必须实现类的所有函数,并满足每个函数的 平均 时间复杂度为 O(1) 。
-
-
-
-示例:
-
-
-输入
-["RandomizedSet", "insert", "remove", "insert", "getRandom", "remove", "insert", "getRandom"]
-[[], [1], [2], [2], [], [1], [2], []]
-输出
-[null, true, false, true, 2, true, false, 2]
-
-解释
-RandomizedSet randomizedSet = new RandomizedSet();
-randomizedSet.insert(1); // 向集合中插入 1 。返回 true 表示 1 被成功地插入。
-randomizedSet.remove(2); // 返回 false ,表示集合中不存在 2 。
-randomizedSet.insert(2); // 向集合中插入 2 。返回 true 。集合现在包含 [1,2] 。
-randomizedSet.getRandom(); // getRandom 应随机返回 1 或 2 。
-randomizedSet.remove(1); // 从集合中移除 1 ,返回 true 。集合现在包含 [2] 。
-randomizedSet.insert(2); // 2 已在集合中,所以返回 false 。
-randomizedSet.getRandom(); // 由于 2 是集合中唯一的数字,getRandom 总是返回 2 。
-
-
-
-
-提示:
-
-
- -231 <= val <= 231 - 1
- - 最多调用
insert、remove 和 getRandom 函数 2 * 105 次
- - 在调用
getRandom 方法时,数据结构中 至少存在一个 元素。
-
-
-Related Topics
设计数组哈希表数学随机化
👍 625👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[39]\347\273\204\345\220\210\346\200\273\345\222\214.md" "b/leetcode/editor/cn/doc/content/[39]\347\273\204\345\220\210\346\200\273\345\222\214.md"
deleted file mode 100644
index 096bd07c..00000000
--- "a/leetcode/editor/cn/doc/content/[39]\347\273\204\345\220\210\346\200\273\345\222\214.md"
+++ /dev/null
@@ -1,43 +0,0 @@
-给你一个 无重复元素 的整数数组 candidates 和一个目标整数 target ,找出 candidates 中可以使数字和为目标数 target 的 所有 不同组合 ,并以列表形式返回。你可以按 任意顺序 返回这些组合。
-
-candidates 中的 同一个 数字可以 无限制重复被选取 。如果至少一个数字的被选数量不同,则两种组合是不同的。
-
-对于给定的输入,保证和为 target 的不同组合数少于 150 个。
-
-
-
-示例 1:
-
-
-输入:candidates = [2,3,6,7], target = 7
-输出:[[2,2,3],[7]]
-解释:
-2 和 3 可以形成一组候选,2 + 2 + 3 = 7 。注意 2 可以使用多次。
-7 也是一个候选, 7 = 7 。
-仅有这两种组合。
-
-示例 2:
-
-
-输入: candidates = [2,3,5], target = 8
-输出: [[2,2,2,2],[2,3,3],[3,5]]
-
-示例 3:
-
-
-输入: candidates = [2], target = 1
-输出: []
-
-
-
-
-提示:
-
-
- 1 <= candidates.length <= 30
- 2 <= candidates[i] <= 40
- candidates 的所有元素 互不相同
- 1 <= target <= 40
-
-
-
👍 2246👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[3]\346\227\240\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\346\234\200\351\225\277\345\255\220\344\270\262.md" "b/leetcode/editor/cn/doc/content/[3]\346\227\240\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\346\234\200\351\225\277\345\255\220\344\270\262.md"
deleted file mode 100644
index 8ed6a888..00000000
--- "a/leetcode/editor/cn/doc/content/[3]\346\227\240\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\346\234\200\351\225\277\345\255\220\344\270\262.md"
+++ /dev/null
@@ -1,39 +0,0 @@
-给定一个字符串 s ,请你找出其中不含有重复字符的 最长子串 的长度。
-
-
-
-示例 1:
-
-
-输入: s = "abcabcbb"
-输出: 3
-解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。
-
-
-示例 2:
-
-
-输入: s = "bbbbb"
-输出: 1
-解释: 因为无重复字符的最长子串是 "b",所以其长度为 1。
-
-
-示例 3:
-
-
-输入: s = "pwwkew"
-输出: 3
-解释: 因为无重复字符的最长子串是 "wke",所以其长度为 3。
- 请注意,你的答案必须是 子串 的长度,"pwke" 是一个子序列,不是子串。
-
-
-
-
-提示:
-
-
- 0 <= s.length <= 5 * 104
- s 由英文字母、数字、符号和空格组成
-
-
-
👍 8297👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[402]\347\247\273\346\216\211 K \344\275\215\346\225\260\345\255\227.md" "b/leetcode/editor/cn/doc/content/[402]\347\247\273\346\216\211 K \344\275\215\346\225\260\345\255\227.md"
deleted file mode 100644
index 185b1d98..00000000
--- "a/leetcode/editor/cn/doc/content/[402]\347\247\273\346\216\211 K \344\275\215\346\225\260\345\255\227.md"
+++ /dev/null
@@ -1,37 +0,0 @@
-给你一个以字符串表示的非负整数 num 和一个整数 k ,移除这个数中的 k 位数字,使得剩下的数字最小。请你以字符串形式返回这个最小的数字。
-
-示例 1 :
-
-
-输入:num = "1432219", k = 3
-输出:"1219"
-解释:移除掉三个数字 4, 3, 和 2 形成一个新的最小的数字 1219 。
-
-
-示例 2 :
-
-
-输入:num = "10200", k = 1
-输出:"200"
-解释:移掉首位的 1 剩下的数字为 200. 注意输出不能有任何前导零。
-
-
-示例 3 :
-
-
-输入:num = "10", k = 2
-输出:"0"
-解释:从原数字移除所有的数字,剩余为空就是 0 。
-
-
-
-
-提示:
-
-
- 1 <= k <= num.length <= 105
- num 仅由若干位数字(0 - 9)组成
- - 除了 0 本身之外,
num 不含任何前导零
-
-
-
👍 896👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[40]\347\273\204\345\220\210\346\200\273\345\222\214 II.md" "b/leetcode/editor/cn/doc/content/[40]\347\273\204\345\220\210\346\200\273\345\222\214 II.md"
deleted file mode 100644
index 9fca1798..00000000
--- "a/leetcode/editor/cn/doc/content/[40]\347\273\204\345\220\210\346\200\273\345\222\214 II.md"
+++ /dev/null
@@ -1,41 +0,0 @@
-给定一个候选人编号的集合 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合。
-
-candidates 中的每个数字在每个组合中只能使用 一次 。
-
-注意:解集不能包含重复的组合。
-
-
-
-示例 1:
-
-
-输入: candidates = [10,1,2,7,6,1,5], target = 8,
-输出:
-[
-[1,1,6],
-[1,2,5],
-[1,7],
-[2,6]
-]
-
-示例 2:
-
-
-输入: candidates = [2,5,2,1,2], target = 5,
-输出:
-[
-[1,2,2],
-[5]
-]
-
-
-
-提示:
-
-
- 1 <= candidates.length <= 100
- 1 <= candidates[i] <= 50
- 1 <= target <= 30
-
-
-
👍 1160👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[416]\345\210\206\345\211\262\347\255\211\345\222\214\345\255\220\351\233\206.md" "b/leetcode/editor/cn/doc/content/[416]\345\210\206\345\211\262\347\255\211\345\222\214\345\255\220\351\233\206.md"
deleted file mode 100644
index 223b1b00..00000000
--- "a/leetcode/editor/cn/doc/content/[416]\345\210\206\345\211\262\347\255\211\345\222\214\345\255\220\351\233\206.md"
+++ /dev/null
@@ -1,29 +0,0 @@
-给你一个 只包含正整数 的 非空 数组 nums 。请你判断是否可以将这个数组分割成两个子集,使得两个子集的元素和相等。
-
-
-
-示例 1:
-
-
-输入:nums = [1,5,11,5]
-输出:true
-解释:数组可以分割成 [1, 5, 5] 和 [11] 。
-
-示例 2:
-
-
-输入:nums = [1,2,3,5]
-输出:false
-解释:数组不能分割成两个元素和相等的子集。
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 200
- 1 <= nums[i] <= 100
-
-
-
👍 1562👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[429]N \345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206.md" "b/leetcode/editor/cn/doc/content/[429]N \345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206.md"
deleted file mode 100644
index f56e2fa4..00000000
--- "a/leetcode/editor/cn/doc/content/[429]N \345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206.md"
+++ /dev/null
@@ -1,34 +0,0 @@
-给定一个 N 叉树,返回其节点值的层序遍历。(即从左到右,逐层遍历)。
-
-树的序列化输入是用层序遍历,每组子节点都由 null 值分隔(参见示例)。
-
-
-
-示例 1:
-
-
-
-
-输入:root = [1,null,3,2,4,null,5,6]
-输出:[[1],[3,2,4],[5,6]]
-
-
-示例 2:
-
-
-
-
-输入:root = [1,null,2,3,4,5,null,null,6,7,null,8,null,9,10,null,null,11,null,12,null,13,null,null,14]
-输出:[[1],[2,3,4,5],[6,7,8,9,10],[11,12,13],[14]]
-
-
-
-
-提示:
-
-
- - 树的高度不会超过
1000
- - 树的节点总数在
[0, 10^4] 之间
-
-
-
👍 328👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[42]\346\216\245\351\233\250\346\260\264.md" "b/leetcode/editor/cn/doc/content/[42]\346\216\245\351\233\250\346\260\264.md"
deleted file mode 100644
index 04132715..00000000
--- "a/leetcode/editor/cn/doc/content/[42]\346\216\245\351\233\250\346\260\264.md"
+++ /dev/null
@@ -1,32 +0,0 @@
-给定 n 个非负整数表示每个宽度为 1 的柱子的高度图,计算按此排列的柱子,下雨之后能接多少雨水。
-
-
-
-示例 1:
-
-
-
-
-输入:height = [0,1,0,2,1,0,1,3,2,1,2,1]
-输出:6
-解释:上面是由数组 [0,1,0,2,1,0,1,3,2,1,2,1] 表示的高度图,在这种情况下,可以接 6 个单位的雨水(蓝色部分表示雨水)。
-
-
-示例 2:
-
-
-输入:height = [4,2,0,3,2,5]
-输出:9
-
-
-
-
-提示:
-
-
- n == height.length
- 1 <= n <= 2 * 104
- 0 <= height[i] <= 105
-
-
-Related Topics
栈数组双指针动态规划单调栈
👍 3889👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[435]\346\227\240\351\207\215\345\217\240\345\214\272\351\227\264.md" "b/leetcode/editor/cn/doc/content/[435]\346\227\240\351\207\215\345\217\240\345\214\272\351\227\264.md"
deleted file mode 100644
index 1a7670b8..00000000
--- "a/leetcode/editor/cn/doc/content/[435]\346\227\240\351\207\215\345\217\240\345\214\272\351\227\264.md"
+++ /dev/null
@@ -1,39 +0,0 @@
-给定一个区间的集合 intervals ,其中 intervals[i] = [starti, endi] 。返回 需要移除区间的最小数量,使剩余区间互不重叠 。
-
-
-
-示例 1:
-
-
-输入: intervals = [[1,2],[2,3],[3,4],[1,3]]
-输出: 1
-解释: 移除 [1,3] 后,剩下的区间没有重叠。
-
-
-示例 2:
-
-
-输入: intervals = [ [1,2], [1,2], [1,2] ]
-输出: 2
-解释: 你需要移除两个 [1,2] 来使剩下的区间没有重叠。
-
-
-示例 3:
-
-
-输入: intervals = [ [1,2], [2,3] ]
-输出: 0
-解释: 你不需要移除任何区间,因为它们已经是无重叠的了。
-
-
-
-
-提示:
-
-
- 1 <= intervals.length <= 105
- intervals[i].length == 2
- -5 * 104 <= starti < endi <= 5 * 104
-
-
-
👍 837👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[450]\345\210\240\351\231\244\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\350\212\202\347\202\271.md" "b/leetcode/editor/cn/doc/content/[450]\345\210\240\351\231\244\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\350\212\202\347\202\271.md"
deleted file mode 100644
index ecc5e42c..00000000
--- "a/leetcode/editor/cn/doc/content/[450]\345\210\240\351\231\244\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\350\212\202\347\202\271.md"
+++ /dev/null
@@ -1,56 +0,0 @@
-给定一个二叉搜索树的根节点 root 和一个值 key,删除二叉搜索树中的 key 对应的节点,并保证二叉搜索树的性质不变。返回二叉搜索树(有可能被更新)的根节点的引用。
-
-一般来说,删除节点可分为两个步骤:
-
-
- - 首先找到需要删除的节点;
- - 如果找到了,删除它。
-
-
-
-
-示例 1:
-
-
-
-
-输入:root = [5,3,6,2,4,null,7], key = 3
-输出:[5,4,6,2,null,null,7]
-解释:给定需要删除的节点值是 3,所以我们首先找到 3 这个节点,然后删除它。
-一个正确的答案是 [5,4,6,2,null,null,7], 如下图所示。
-另一个正确答案是 [5,2,6,null,4,null,7]。
-
-
-
-
-示例 2:
-
-
-输入: root = [5,3,6,2,4,null,7], key = 0
-输出: [5,3,6,2,4,null,7]
-解释: 二叉树不包含值为 0 的节点
-
-
-示例 3:
-
-
-输入: root = [], key = 0
-输出: []
-
-
-
-提示:
-
-
- - 节点数的范围
[0, 104].
- -105 <= Node.val <= 105
- - 节点值唯一
- root 是合法的二叉搜索树
- -105 <= key <= 105
-
-
-
-
-进阶: 要求算法时间复杂度为 O(h),h 为树的高度。
-
-
👍 992👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[452]\347\224\250\346\234\200\345\260\221\346\225\260\351\207\217\347\232\204\347\256\255\345\274\225\347\210\206\346\260\224\347\220\203.md" "b/leetcode/editor/cn/doc/content/[452]\347\224\250\346\234\200\345\260\221\346\225\260\351\207\217\347\232\204\347\256\255\345\274\225\347\210\206\346\260\224\347\220\203.md"
deleted file mode 100644
index 2974c25e..00000000
--- "a/leetcode/editor/cn/doc/content/[452]\347\224\250\346\234\200\345\260\221\346\225\260\351\207\217\347\232\204\347\256\255\345\274\225\347\210\206\346\260\224\347\220\203.md"
+++ /dev/null
@@ -1,45 +0,0 @@
-有一些球形气球贴在一堵用 XY 平面表示的墙面上。墙面上的气球记录在整数数组 points ,其中points[i] = [xstart, xend] 表示水平直径在 xstart 和 xend之间的气球。你不知道气球的确切 y 坐标。
-
-一支弓箭可以沿着 x 轴从不同点 完全垂直 地射出。在坐标 x 处射出一支箭,若有一个气球的直径的开始和结束坐标为 xstart,xend, 且满足 xstart ≤ x ≤ xend,则该气球会被 引爆 。可以射出的弓箭的数量 没有限制 。 弓箭一旦被射出之后,可以无限地前进。
-
-给你一个数组 points ,返回引爆所有气球所必须射出的 最小 弓箭数 。
-
-示例 1:
-
-
-输入:points = [[10,16],[2,8],[1,6],[7,12]]
-输出:2
-解释:气球可以用2支箭来爆破:
--在x = 6处射出箭,击破气球[2,8]和[1,6]。
--在x = 11处发射箭,击破气球[10,16]和[7,12]。
-
-示例 2:
-
-
-输入:points = [[1,2],[3,4],[5,6],[7,8]]
-输出:4
-解释:每个气球需要射出一支箭,总共需要4支箭。
-
-示例 3:
-
-
-输入:points = [[1,2],[2,3],[3,4],[4,5]]
-输出:2
-解释:气球可以用2支箭来爆破:
-- 在x = 2处发射箭,击破气球[1,2]和[2,3]。
-- 在x = 4处射出箭,击破气球[3,4]和[4,5]。
-
-
-
-
-
-
-提示:
-
-
- 1 <= points.length <= 105
- points[i].length == 2
- -231 <= xstart < xend <= 231 - 1
-
-
-
👍 689👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[46]\345\205\250\346\216\222\345\210\227.md" "b/leetcode/editor/cn/doc/content/[46]\345\205\250\346\216\222\345\210\227.md"
deleted file mode 100644
index af94569e..00000000
--- "a/leetcode/editor/cn/doc/content/[46]\345\205\250\346\216\222\345\210\227.md"
+++ /dev/null
@@ -1,36 +0,0 @@
-给定一个不含重复数字的数组 nums ,返回其 所有可能的全排列 。你可以 按任意顺序 返回答案。
-
-
-
-示例 1:
-
-
-输入:nums = [1,2,3]
-输出:[[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]
-
-
-示例 2:
-
-
-输入:nums = [0,1]
-输出:[[0,1],[1,0]]
-
-
-示例 3:
-
-
-输入:nums = [1]
-输出:[[1]]
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 6
- -10 <= nums[i] <= 10
- nums 中的所有整数 互不相同
-
-
-
👍 2290👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[474]\344\270\200\345\222\214\351\233\266.md" "b/leetcode/editor/cn/doc/content/[474]\344\270\200\345\222\214\351\233\266.md"
deleted file mode 100644
index d922df12..00000000
--- "a/leetcode/editor/cn/doc/content/[474]\344\270\200\345\222\214\351\233\266.md"
+++ /dev/null
@@ -1,39 +0,0 @@
-给你一个二进制字符串数组 strs 和两个整数 m 和 n 。
-
-
-
请你找出并返回 strs 的最大子集的长度,该子集中 最多 有 m 个 0 和 n 个 1 。
-
-
-如果 x 的所有元素也是 y 的元素,集合 x 是集合 y 的 子集 。
-
-
-
-示例 1:
-
-
-输入:strs = ["10", "0001", "111001", "1", "0"], m = 5, n = 3
-输出:4
-解释:最多有 5 个 0 和 3 个 1 的最大子集是 {"10","0001","1","0"} ,因此答案是 4 。
-其他满足题意但较小的子集包括 {"0001","1"} 和 {"10","1","0"} 。{"111001"} 不满足题意,因为它含 4 个 1 ,大于 n 的值 3 。
-
-
-示例 2:
-
-
-输入:strs = ["10", "0", "1"], m = 1, n = 1
-输出:2
-解释:最大的子集是 {"0", "1"} ,所以答案是 2 。
-
-
-
-
-提示:
-
-
- 1 <= strs.length <= 600
- 1 <= strs[i].length <= 100
- strs[i] 仅由 '0' 和 '1' 组成
- 1 <= m, n <= 100
-
-
-
👍 851👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[47]\345\205\250\346\216\222\345\210\227 II.md" "b/leetcode/editor/cn/doc/content/[47]\345\205\250\346\216\222\345\210\227 II.md"
deleted file mode 100644
index 506ad50e..00000000
--- "a/leetcode/editor/cn/doc/content/[47]\345\205\250\346\216\222\345\210\227 II.md"
+++ /dev/null
@@ -1,31 +0,0 @@
-给定一个可包含重复数字的序列 nums ,按任意顺序 返回所有不重复的全排列。
-
-
-
-示例 1:
-
-
-输入:nums = [1,1,2]
-输出:
-[[1,1,2],
- [1,2,1],
- [2,1,1]]
-
-
-示例 2:
-
-
-输入:nums = [1,2,3]
-输出:[[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 8
- -10 <= nums[i] <= 10
-
-
-
👍 1238👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[48]\346\227\213\350\275\254\345\233\276\345\203\217.md" "b/leetcode/editor/cn/doc/content/[48]\346\227\213\350\275\254\345\233\276\345\203\217.md"
deleted file mode 100644
index 59dfc943..00000000
--- "a/leetcode/editor/cn/doc/content/[48]\346\227\213\350\275\254\345\233\276\345\203\217.md"
+++ /dev/null
@@ -1,33 +0,0 @@
-给定一个 n × n 的二维矩阵 matrix 表示一个图像。请你将图像顺时针旋转 90 度。
-
-你必须在 原地 旋转图像,这意味着你需要直接修改输入的二维矩阵。请不要 使用另一个矩阵来旋转图像。
-
-
-
-示例 1:
-
-
-输入:matrix = [[1,2,3],[4,5,6],[7,8,9]]
-输出:[[7,4,1],[8,5,2],[9,6,3]]
-
-
-示例 2:
-
-
-输入:matrix = [[5,1,9,11],[2,4,8,10],[13,3,6,7],[15,14,12,16]]
-输出:[[15,13,2,5],[14,3,4,1],[12,6,8,9],[16,7,10,11]]
-
-
-
-
-提示:
-
-
- n == matrix.length == matrix[i].length
- 1 <= n <= 20
- -1000 <= matrix[i][j] <= 1000
-
-
-
-
-
👍 1493👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[494]\347\233\256\346\240\207\345\222\214.md" "b/leetcode/editor/cn/doc/content/[494]\347\233\256\346\240\207\345\222\214.md"
deleted file mode 100644
index e6c1842b..00000000
--- "a/leetcode/editor/cn/doc/content/[494]\347\233\256\346\240\207\345\222\214.md"
+++ /dev/null
@@ -1,44 +0,0 @@
-给你一个整数数组 nums 和一个整数 target 。
-
-向数组中的每个整数前添加 '+' 或 '-' ,然后串联起所有整数,可以构造一个 表达式 :
-
-
- - 例如,
nums = [2, 1] ,可以在 2 之前添加 '+' ,在 1 之前添加 '-' ,然后串联起来得到表达式 "+2-1" 。
-
-
-返回可以通过上述方法构造的、运算结果等于 target 的不同 表达式 的数目。
-
-
-
-示例 1:
-
-
-输入:nums = [1,1,1,1,1], target = 3
-输出:5
-解释:一共有 5 种方法让最终目标和为 3 。
--1 + 1 + 1 + 1 + 1 = 3
-+1 - 1 + 1 + 1 + 1 = 3
-+1 + 1 - 1 + 1 + 1 = 3
-+1 + 1 + 1 - 1 + 1 = 3
-+1 + 1 + 1 + 1 - 1 = 3
-
-
-示例 2:
-
-
-输入:nums = [1], target = 1
-输出:1
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 20
- 0 <= nums[i] <= 1000
- 0 <= sum(nums[i]) <= 1000
- -1000 <= target <= 1000
-
-
-
👍 1438👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[509]\346\226\220\346\263\242\351\202\243\345\245\221\346\225\260.md" "b/leetcode/editor/cn/doc/content/[509]\346\226\220\346\263\242\351\202\243\345\245\221\346\225\260.md"
deleted file mode 100644
index cf95566a..00000000
--- "a/leetcode/editor/cn/doc/content/[509]\346\226\220\346\263\242\351\202\243\345\245\221\346\225\260.md"
+++ /dev/null
@@ -1,44 +0,0 @@
-斐波那契数 (通常用 F(n) 表示)形成的序列称为 斐波那契数列 。该数列由 0 和 1 开始,后面的每一项数字都是前面两项数字的和。也就是:
-
-
-F(0) = 0,F(1) = 1
-F(n) = F(n - 1) + F(n - 2),其中 n > 1
-
-
-给定 n ,请计算 F(n) 。
-
-
-
-示例 1:
-
-
-输入:n = 2
-输出:1
-解释:F(2) = F(1) + F(0) = 1 + 0 = 1
-
-
-示例 2:
-
-
-输入:n = 3
-输出:2
-解释:F(3) = F(2) + F(1) = 1 + 1 = 2
-
-
-示例 3:
-
-
-输入:n = 4
-输出:3
-解释:F(4) = F(3) + F(2) = 2 + 1 = 3
-
-
-
-
-提示:
-
-
-
-Related Topics
递归记忆化搜索数学动态规划
👍 553👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[516]\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\345\272\217\345\210\227.md" "b/leetcode/editor/cn/doc/content/[516]\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\345\272\217\345\210\227.md"
deleted file mode 100644
index 157f47d6..00000000
--- "a/leetcode/editor/cn/doc/content/[516]\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\345\272\217\345\210\227.md"
+++ /dev/null
@@ -1,32 +0,0 @@
-给你一个字符串 s ,找出其中最长的回文子序列,并返回该序列的长度。
-
-子序列定义为:不改变剩余字符顺序的情况下,删除某些字符或者不删除任何字符形成的一个序列。
-
-
-
-示例 1:
-
-
-输入:s = "bbbab"
-输出:4
-解释:一个可能的最长回文子序列为 "bbbb" 。
-
-
-示例 2:
-
-
-输入:s = "cbbd"
-输出:2
-解释:一个可能的最长回文子序列为 "bb" 。
-
-
-
-
-提示:
-
-
- 1 <= s.length <= 1000
- s 仅由小写英文字母组成
-
-
-
👍 906👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[518]\351\233\266\351\222\261\345\205\221\346\215\242 II.md" "b/leetcode/editor/cn/doc/content/[518]\351\233\266\351\222\261\345\205\221\346\215\242 II.md"
deleted file mode 100644
index 43b460f1..00000000
--- "a/leetcode/editor/cn/doc/content/[518]\351\233\266\351\222\261\345\205\221\346\215\242 II.md"
+++ /dev/null
@@ -1,52 +0,0 @@
-给你一个整数数组 coins 表示不同面额的硬币,另给一个整数 amount 表示总金额。
-
-请你计算并返回可以凑成总金额的硬币组合数。如果任何硬币组合都无法凑出总金额,返回 0 。
-
-假设每一种面额的硬币有无限个。
-
-题目数据保证结果符合 32 位带符号整数。
-
-
-
-
-
-示例 1:
-
-
-输入:amount = 5, coins = [1, 2, 5]
-输出:4
-解释:有四种方式可以凑成总金额:
-5=5
-5=2+2+1
-5=2+1+1+1
-5=1+1+1+1+1
-
-
-示例 2:
-
-
-输入:amount = 3, coins = [2]
-输出:0
-解释:只用面额 2 的硬币不能凑成总金额 3 。
-
-
-示例 3:
-
-
-输入:amount = 10, coins = [10]
-输出:1
-
-
-
-
-提示:
-
-
- 1 <= coins.length <= 300
- 1 <= coins[i] <= 5000
- coins 中的所有值 互不相同
- 0 <= amount <= 5000
-
-
-
👍 955👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[528]\346\214\211\346\235\203\351\207\215\351\232\217\346\234\272\351\200\211\346\213\251.md" "b/leetcode/editor/cn/doc/content/[528]\346\214\211\346\235\203\351\207\215\351\232\217\346\234\272\351\200\211\346\213\251.md"
deleted file mode 100644
index 1e19f4a6..00000000
--- "a/leetcode/editor/cn/doc/content/[528]\346\214\211\346\235\203\351\207\215\351\232\217\346\234\272\351\200\211\346\213\251.md"
+++ /dev/null
@@ -1,62 +0,0 @@
-给你一个 下标从 0 开始 的正整数数组 w ,其中 w[i] 代表第 i 个下标的权重。
-
-请你实现一个函数 pickIndex ,它可以 随机地 从范围 [0, w.length - 1] 内(含 0 和 w.length - 1)选出并返回一个下标。选取下标 i 的 概率 为 w[i] / sum(w) 。
-
-
-
-
-
- - 例如,对于
w = [1, 3],挑选下标 0 的概率为 1 / (1 + 3) = 0.25 (即,25%),而选取下标 1 的概率为 3 / (1 + 3) = 0.75(即,75%)。
-
-
-
-
-示例 1:
-
-
-输入:
-["Solution","pickIndex"]
-[[[1]],[]]
-输出:
-[null,0]
-解释:
-Solution solution = new Solution([1]);
-solution.pickIndex(); // 返回 0,因为数组中只有一个元素,所以唯一的选择是返回下标 0。
-
-示例 2:
-
-
-输入:
-["Solution","pickIndex","pickIndex","pickIndex","pickIndex","pickIndex"]
-[[[1,3]],[],[],[],[],[]]
-输出:
-[null,1,1,1,1,0]
-解释:
-Solution solution = new Solution([1, 3]);
-solution.pickIndex(); // 返回 1,返回下标 1,返回该下标概率为 3/4 。
-solution.pickIndex(); // 返回 1
-solution.pickIndex(); // 返回 1
-solution.pickIndex(); // 返回 1
-solution.pickIndex(); // 返回 0,返回下标 0,返回该下标概率为 1/4 。
-
-由于这是一个随机问题,允许多个答案,因此下列输出都可以被认为是正确的:
-[null,1,1,1,1,0]
-[null,1,1,1,1,1]
-[null,1,1,1,0,0]
-[null,1,1,1,0,1]
-[null,1,0,1,0,0]
-......
-诸若此类。
-
-
-
-
-提示:
-
-
- 1 <= w.length <= 104
- 1 <= w[i] <= 105
- pickIndex 将被调用不超过 104 次
-
-
-Related Topics
数学二分查找前缀和随机化
👍 276👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[538]\346\212\212\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\350\275\254\346\215\242\344\270\272\347\264\257\345\212\240\346\240\221.md" "b/leetcode/editor/cn/doc/content/[538]\346\212\212\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\350\275\254\346\215\242\344\270\272\347\264\257\345\212\240\346\240\221.md"
deleted file mode 100644
index e8e2d7a0..00000000
--- "a/leetcode/editor/cn/doc/content/[538]\346\212\212\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\350\275\254\346\215\242\344\270\272\347\264\257\345\212\240\346\240\221.md"
+++ /dev/null
@@ -1,52 +0,0 @@
-给出二叉 搜索 树的根节点,该树的节点值各不相同,请你将其转换为累加树(Greater Sum Tree),使每个节点 node 的新值等于原树中大于或等于 node.val 的值之和。
-
-提醒一下,二叉搜索树满足下列约束条件:
-
-
- - 节点的左子树仅包含键 小于 节点键的节点。
- - 节点的右子树仅包含键 大于 节点键的节点。
- - 左右子树也必须是二叉搜索树。
-
-
-注意:本题和 1038: https://leetcode-cn.com/problems/binary-search-tree-to-greater-sum-tree/ 相同
-
-
-
-示例 1:
-
-
-
-输入:[4,1,6,0,2,5,7,null,null,null,3,null,null,null,8]
-输出:[30,36,21,36,35,26,15,null,null,null,33,null,null,null,8]
-
-
-示例 2:
-
-输入:root = [0,null,1]
-输出:[1,null,1]
-
-
-示例 3:
-
-输入:root = [1,0,2]
-输出:[3,3,2]
-
-
-示例 4:
-
-输入:root = [3,2,4,1]
-输出:[7,9,4,10]
-
-
-
-
-提示:
-
-
- - 树中的节点数介于
0 和 104 之间。
- - 每个节点的值介于
-104 和 104 之间。
- - 树中的所有值 互不相同 。
- - 给定的树为二叉搜索树。
-
-
-Related Topics
树深度优先搜索二叉搜索树二叉树
👍 802👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[54]\350\236\272\346\227\213\347\237\251\351\230\265.md" "b/leetcode/editor/cn/doc/content/[54]\350\236\272\346\227\213\347\237\251\351\230\265.md"
deleted file mode 100644
index 79b641ce..00000000
--- "a/leetcode/editor/cn/doc/content/[54]\350\236\272\346\227\213\347\237\251\351\230\265.md"
+++ /dev/null
@@ -1,30 +0,0 @@
-给你一个 m 行 n 列的矩阵 matrix ,请按照 顺时针螺旋顺序 ,返回矩阵中的所有元素。
-
-
-
-示例 1:
-
-
-输入:matrix = [[1,2,3],[4,5,6],[7,8,9]]
-输出:[1,2,3,6,9,8,7,4,5]
-
-
-示例 2:
-
-
-输入:matrix = [[1,2,3,4],[5,6,7,8],[9,10,11,12]]
-输出:[1,2,3,4,8,12,11,10,9,5,6,7]
-
-
-
-
-提示:
-
-
- m == matrix.length
- n == matrix[i].length
- 1 <= m, n <= 10
- -100 <= matrix[i][j] <= 100
-
-
-
👍 1273👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[583]\344\270\244\344\270\252\345\255\227\347\254\246\344\270\262\347\232\204\345\210\240\351\231\244\346\223\215\344\275\234.md" "b/leetcode/editor/cn/doc/content/[583]\344\270\244\344\270\252\345\255\227\347\254\246\344\270\262\347\232\204\345\210\240\351\231\244\346\223\215\344\275\234.md"
deleted file mode 100644
index e17d49e9..00000000
--- "a/leetcode/editor/cn/doc/content/[583]\344\270\244\344\270\252\345\255\227\347\254\246\344\270\262\347\232\204\345\210\240\351\231\244\346\223\215\344\275\234.md"
+++ /dev/null
@@ -1,35 +0,0 @@
-给定两个单词 word1 和
- word2 ,返回使得
- word1 和
- word2 相同所需的最小步数。
-
-每步 可以删除任意一个字符串中的一个字符。
-
-
-
-示例 1:
-
-
-输入: word1 = "sea", word2 = "eat"
-输出: 2
-解释: 第一步将 "sea" 变为 "ea" ,第二步将 "eat "变为 "ea"
-
-
-示例 2:
-
-
-输入:word1 = "leetcode", word2 = "etco"
-输出:4
-
-
-
-
-提示:
-
-
-
- 1 <= word1.length, word2.length <= 500
- word1 和 word2 只包含小写英文字母
-
-
-
👍 508👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[59]\350\236\272\346\227\213\347\237\251\351\230\265 II.md" "b/leetcode/editor/cn/doc/content/[59]\350\236\272\346\227\213\347\237\251\351\230\265 II.md"
deleted file mode 100644
index e75aec95..00000000
--- "a/leetcode/editor/cn/doc/content/[59]\350\236\272\346\227\213\347\237\251\351\230\265 II.md"
+++ /dev/null
@@ -1,27 +0,0 @@
-给你一个正整数 n ,生成一个包含 1 到 n2 所有元素,且元素按顺时针顺序螺旋排列的 n x n 正方形矩阵 matrix 。
-
-
-
-示例 1:
-
-
-输入:n = 3
-输出:[[1,2,3],[8,9,4],[7,6,5]]
-
-
-示例 2:
-
-
-输入:n = 1
-输出:[[1]]
-
-
-
-
-提示:
-
-
-
-
👍 878👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[5]\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\344\270\262.md" "b/leetcode/editor/cn/doc/content/[5]\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\344\270\262.md"
deleted file mode 100644
index 7b7ef685..00000000
--- "a/leetcode/editor/cn/doc/content/[5]\346\234\200\351\225\277\345\233\236\346\226\207\345\255\220\344\270\262.md"
+++ /dev/null
@@ -1,31 +0,0 @@
-给你一个字符串 s,找到 s 中最长的回文子串。
-
-如果字符串的反序与原始字符串相同,则该字符串称为回文字符串。
-
-
-
-示例 1:
-
-
-输入:s = "babad"
-输出:"bab"
-解释:"aba" 同样是符合题意的答案。
-
-
-示例 2:
-
-
-输入:s = "cbbd"
-输出:"bb"
-
-
-
-
-提示:
-
-
- 1 <= s.length <= 1000
- s 仅由数字和英文字母组成
-
-
-
👍 6036👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[61]\346\227\213\350\275\254\351\223\276\350\241\250.md" "b/leetcode/editor/cn/doc/content/[61]\346\227\213\350\275\254\351\223\276\350\241\250.md"
deleted file mode 100644
index 8a482f51..00000000
--- "a/leetcode/editor/cn/doc/content/[61]\346\227\213\350\275\254\351\223\276\350\241\250.md"
+++ /dev/null
@@ -1,29 +0,0 @@
-给你一个链表的头节点 head ,旋转链表,将链表每个节点向右移动 k 个位置。
-
-
-
-示例 1:
-
-
-输入:head = [1,2,3,4,5], k = 2
-输出:[4,5,1,2,3]
-
-
-示例 2:
-
-
-输入:head = [0,1,2], k = 4
-输出:[2,0,1]
-
-
-
-
-提示:
-
-
- - 链表中节点的数目在范围
[0, 500] 内
- -100 <= Node.val <= 100
- 0 <= k <= 2 * 109
-
-
-
👍 845👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[64]\346\234\200\345\260\217\350\267\257\345\276\204\345\222\214.md" "b/leetcode/editor/cn/doc/content/[64]\346\234\200\345\260\217\350\267\257\345\276\204\345\222\214.md"
deleted file mode 100644
index ea502805..00000000
--- "a/leetcode/editor/cn/doc/content/[64]\346\234\200\345\260\217\350\267\257\345\276\204\345\222\214.md"
+++ /dev/null
@@ -1,33 +0,0 @@
-给定一个包含非负整数的 m x n 网格 grid ,请找出一条从左上角到右下角的路径,使得路径上的数字总和为最小。
-
-说明:每次只能向下或者向右移动一步。
-
-
-
-示例 1:
-
-
-输入:grid = [[1,3,1],[1,5,1],[4,2,1]]
-输出:7
-解释:因为路径 1→3→1→1→1 的总和最小。
-
-
-示例 2:
-
-
-输入:grid = [[1,2,3],[4,5,6]]
-输出:12
-
-
-
-
-提示:
-
-
- m == grid.length
- n == grid[i].length
- 1 <= m, n <= 200
- 0 <= grid[i][j] <= 100
-
-
-
👍 1393👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[652]\345\257\273\346\211\276\351\207\215\345\244\215\347\232\204\345\255\220\346\240\221.md" "b/leetcode/editor/cn/doc/content/[652]\345\257\273\346\211\276\351\207\215\345\244\215\347\232\204\345\255\220\346\240\221.md"
deleted file mode 100644
index 49abfb83..00000000
--- "a/leetcode/editor/cn/doc/content/[652]\345\257\273\346\211\276\351\207\215\345\244\215\347\232\204\345\255\220\346\240\221.md"
+++ /dev/null
@@ -1,42 +0,0 @@
-给你一棵二叉树的根节点 root ,返回所有 重复的子树 。
-
-对于同一类的重复子树,你只需要返回其中任意 一棵 的根结点即可。
-
-如果两棵树具有 相同的结构 和 相同的结点值 ,则认为二者是 重复 的。
-
-
-
-示例 1:
-
-
-
-
-输入:root = [1,2,3,4,null,2,4,null,null,4]
-输出:[[2,4],[4]]
-
-示例 2:
-
-
-
-
-输入:root = [2,1,1]
-输出:[[1]]
-
-示例 3:
-
-
-
-
-输入:root = [2,2,2,3,null,3,null]
-输出:[[2,3],[3]]
-
-
-
-提示:
-
-
- - 树中的结点数在
[1, 5000] 范围内。
- -200 <= Node.val <= 200
-
-
-Related Topics
树深度优先搜索哈希表二叉树
👍 644👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[654]\346\234\200\345\244\247\344\272\214\345\217\211\346\240\221.md" "b/leetcode/editor/cn/doc/content/[654]\346\234\200\345\244\247\344\272\214\345\217\211\346\240\221.md"
deleted file mode 100644
index c02ede27..00000000
--- "a/leetcode/editor/cn/doc/content/[654]\346\234\200\345\244\247\344\272\214\345\217\211\346\240\221.md"
+++ /dev/null
@@ -1,47 +0,0 @@
-给定一个不重复的整数数组 nums 。 最大二叉树 可以用下面的算法从 nums 递归地构建:
-
-
- - 创建一个根节点,其值为
nums 中的最大值。
- - 递归地在最大值 左边 的 子数组前缀上 构建左子树。
- - 递归地在最大值 右边 的 子数组后缀上 构建右子树。
-
-
-返回 nums 构建的 最大二叉树 。
-
-
-
-示例 1:
-
-
-输入:nums = [3,2,1,6,0,5]
-输出:[6,3,5,null,2,0,null,null,1]
-解释:递归调用如下所示:
-- [3,2,1,6,0,5] 中的最大值是 6 ,左边部分是 [3,2,1] ,右边部分是 [0,5] 。
- - [3,2,1] 中的最大值是 3 ,左边部分是 [] ,右边部分是 [2,1] 。
- - 空数组,无子节点。
- - [2,1] 中的最大值是 2 ,左边部分是 [] ,右边部分是 [1] 。
- - 空数组,无子节点。
- - 只有一个元素,所以子节点是一个值为 1 的节点。
- - [0,5] 中的最大值是 5 ,左边部分是 [0] ,右边部分是 [] 。
- - 只有一个元素,所以子节点是一个值为 0 的节点。
- - 空数组,无子节点。
-
-
-示例 2:
-
-
-输入:nums = [3,2,1]
-输出:[3,null,2,null,1]
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 1000
- 0 <= nums[i] <= 1000
- nums 中的所有整数 互不相同
-
-
-Related Topics
栈树数组分治二叉树单调栈
👍 584👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[674]\346\234\200\351\225\277\350\277\236\347\273\255\351\200\222\345\242\236\345\272\217\345\210\227.md" "b/leetcode/editor/cn/doc/content/[674]\346\234\200\351\225\277\350\277\236\347\273\255\351\200\222\345\242\236\345\272\217\345\210\227.md"
deleted file mode 100644
index f7a972f8..00000000
--- "a/leetcode/editor/cn/doc/content/[674]\346\234\200\351\225\277\350\277\236\347\273\255\351\200\222\345\242\236\345\272\217\345\210\227.md"
+++ /dev/null
@@ -1,33 +0,0 @@
-给定一个未经排序的整数数组,找到最长且 连续递增的子序列,并返回该序列的长度。
-
-连续递增的子序列 可以由两个下标 l 和 r(l < r)确定,如果对于每个 l <= i < r,都有 nums[i] < nums[i + 1] ,那么子序列 [nums[l], nums[l + 1], ..., nums[r - 1], nums[r]] 就是连续递增子序列。
-
-
-
-示例 1:
-
-
-输入:nums = [1,3,5,4,7]
-输出:3
-解释:最长连续递增序列是 [1,3,5], 长度为3。
-尽管 [1,3,5,7] 也是升序的子序列, 但它不是连续的,因为 5 和 7 在原数组里被 4 隔开。
-
-
-示例 2:
-
-
-输入:nums = [2,2,2,2,2]
-输出:1
-解释:最长连续递增序列是 [2], 长度为1。
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 104
- -109 <= nums[i] <= 109
-
-
-
👍 356👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[695]\345\262\233\345\261\277\347\232\204\346\234\200\345\244\247\351\235\242\347\247\257.md" "b/leetcode/editor/cn/doc/content/[695]\345\262\233\345\261\277\347\232\204\346\234\200\345\244\247\351\235\242\347\247\257.md"
deleted file mode 100644
index 9908c670..00000000
--- "a/leetcode/editor/cn/doc/content/[695]\345\262\233\345\261\277\347\232\204\346\234\200\345\244\247\351\235\242\347\247\257.md"
+++ /dev/null
@@ -1,37 +0,0 @@
-给你一个大小为 m x n 的二进制矩阵 grid 。
-
-岛屿 是由一些相邻的 1 (代表土地) 构成的组合,这里的「相邻」要求两个 1 必须在 水平或者竖直的四个方向上 相邻。你可以假设 grid 的四个边缘都被 0(代表水)包围着。
-
-岛屿的面积是岛上值为 1 的单元格的数目。
-
-计算并返回 grid 中最大的岛屿面积。如果没有岛屿,则返回面积为 0 。
-
-
-
-示例 1:
-
-
-输入:grid = [[0,0,1,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,1,1,1,0,0,0],[0,1,1,0,1,0,0,0,0,0,0,0,0],[0,1,0,0,1,1,0,0,1,0,1,0,0],[0,1,0,0,1,1,0,0,1,1,1,0,0],[0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,1,1,1,0,0,0],[0,0,0,0,0,0,0,1,1,0,0,0,0]]
-输出:6
-解释:答案不应该是 11 ,因为岛屿只能包含水平或垂直这四个方向上的 1 。
-
-
-示例 2:
-
-
-输入:grid = [[0,0,0,0,0,0,0,0]]
-输出:0
-
-
-
-
-提示:
-
-
- m == grid.length
- n == grid[i].length
- 1 <= m, n <= 50
- grid[i][j] 为 0 或 1
-
-
-Related Topics
深度优先搜索广度优先搜索并查集数组矩阵
👍 877👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[698]\345\210\222\345\210\206\344\270\272k\344\270\252\347\233\270\347\255\211\347\232\204\345\255\220\351\233\206.md" "b/leetcode/editor/cn/doc/content/[698]\345\210\222\345\210\206\344\270\272k\344\270\252\347\233\270\347\255\211\347\232\204\345\255\220\351\233\206.md"
deleted file mode 100644
index 5189e185..00000000
--- "a/leetcode/editor/cn/doc/content/[698]\345\210\222\345\210\206\344\270\272k\344\270\252\347\233\270\347\255\211\347\232\204\345\255\220\351\233\206.md"
+++ /dev/null
@@ -1,28 +0,0 @@
-给定一个整数数组 nums 和一个正整数 k,找出是否有可能把这个数组分成 k 个非空子集,其总和都相等。
-
-
-
-示例 1:
-
-
-输入: nums = [4, 3, 2, 3, 5, 2, 1], k = 4
-输出: True
-说明: 有可能将其分成 4 个子集(5),(1,4),(2,3),(2,3)等于总和。
-
-示例 2:
-
-
-输入: nums = [1,2,3,4], k = 3
-输出: false
-
-
-
-提示:
-
-
- 1 <= k <= len(nums) <= 16
- 0 < nums[i] < 10000
- - 每个元素的频率在
[1,4] 范围内
-
-
-Related Topics
位运算记忆化搜索数组动态规划回溯状态压缩
👍 856👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[6]Z \345\255\227\345\275\242\345\217\230\346\215\242.md" "b/leetcode/editor/cn/doc/content/[6]Z \345\255\227\345\275\242\345\217\230\346\215\242.md"
deleted file mode 100644
index 1194e8d8..00000000
--- "a/leetcode/editor/cn/doc/content/[6]Z \345\255\227\345\275\242\345\217\230\346\215\242.md"
+++ /dev/null
@@ -1,55 +0,0 @@
-将一个给定字符串 s 根据给定的行数 numRows ,以从上往下、从左到右进行 Z 字形排列。
-
-比如输入字符串为 "PAYPALISHIRING" 行数为 3 时,排列如下:
-
-
-P A H N
-A P L S I I G
-Y I R
-
-之后,你的输出需要从左往右逐行读取,产生出一个新的字符串,比如:"PAHNAPLSIIGYIR"。
-
-请你实现这个将字符串进行指定行数变换的函数:
-
-
-string convert(string s, int numRows);
-
-
-
-示例 1:
-
-
-输入:s = "PAYPALISHIRING", numRows = 3
-输出:"PAHNAPLSIIGYIR"
-
-
-示例 2:
-
-
-输入:s = "PAYPALISHIRING", numRows = 4
-输出:"PINALSIGYAHRPI"
-解释:
-P I N
-A L S I G
-Y A H R
-P I
-
-
-示例 3:
-
-
-输入:s = "A", numRows = 1
-输出:"A"
-
-
-
-
-提示:
-
-
- 1 <= s.length <= 1000
- s 由英文字母(小写和大写)、',' 和 '.' 组成
- 1 <= numRows <= 1000
-
-
-
👍 1924👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[700]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\346\220\234\347\264\242.md" "b/leetcode/editor/cn/doc/content/[700]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\346\220\234\347\264\242.md"
deleted file mode 100644
index 476e3c10..00000000
--- "a/leetcode/editor/cn/doc/content/[700]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\346\220\234\347\264\242.md"
+++ /dev/null
@@ -1,38 +0,0 @@
-给定二叉搜索树(BST)的根节点
- root 和一个整数值
- val。
-
-你需要在 BST 中找到节点值等于 val 的节点。 返回以该节点为根的子树。 如果节点不存在,则返回
- null 。
-
-
-
-示例 1:
-
-
-
-
-
-输入:root = [4,2,7,1,3], val = 2
-输出:[2,1,3]
-
-
-示例 2:
-
-
-输入:root = [4,2,7,1,3], val = 5
-输出:[]
-
-
-
-
-提示:
-
-
- - 数中节点数在
[1, 5000] 范围内
- 1 <= Node.val <= 107
- root 是二叉搜索树
- 1 <= val <= 107
-
-
-
👍 331👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[701]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\346\217\222\345\205\245\346\223\215\344\275\234.md" "b/leetcode/editor/cn/doc/content/[701]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\346\217\222\345\205\245\346\223\215\344\275\234.md"
deleted file mode 100644
index 9e81c97e..00000000
--- "a/leetcode/editor/cn/doc/content/[701]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\344\270\255\347\232\204\346\217\222\345\205\245\346\223\215\344\275\234.md"
+++ /dev/null
@@ -1,47 +0,0 @@
-给定二叉搜索树(BST)的根节点
- root 和要插入树中的值
- value ,将值插入二叉搜索树。 返回插入后二叉搜索树的根节点。 输入数据 保证 ,新值和原始二叉搜索树中的任意节点值都不同。
-
-注意,可能存在多种有效的插入方式,只要树在插入后仍保持为二叉搜索树即可。 你可以返回 任意有效的结果 。
-
-
-
-示例 1:
-
-
-输入:root = [4,2,7,1,3], val = 5
-输出:[4,2,7,1,3,5]
-解释:另一个满足题目要求可以通过的树是:
-
-
-
-示例 2:
-
-
-输入:root = [40,20,60,10,30,50,70], val = 25
-输出:[40,20,60,10,30,50,70,null,null,25]
-
-
-示例 3:
-
-
-输入:root = [4,2,7,1,3,null,null,null,null,null,null], val = 5
-输出:[4,2,7,1,3,5]
-
-
-
-
-提示:
-
-
- - 树中的节点数将在
-
[0, 104]的范围内。
-
- -108 <= Node.val <= 108
- - 所有值
-
Node.val 是 独一无二 的。
- -108 <= val <= 108
- - 保证
val 在原始BST中不存在。
-
-
-
👍 391👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[704]\344\272\214\345\210\206\346\237\245\346\211\276.md" "b/leetcode/editor/cn/doc/content/[704]\344\272\214\345\210\206\346\237\245\346\211\276.md"
deleted file mode 100644
index 5642c7d0..00000000
--- "a/leetcode/editor/cn/doc/content/[704]\344\272\214\345\210\206\346\237\245\346\211\276.md"
+++ /dev/null
@@ -1,27 +0,0 @@
-给定一个 n 个元素有序的(升序)整型数组 nums 和一个目标值 target ,写一个函数搜索 nums 中的 target,如果目标值存在返回下标,否则返回 -1。
-
-
示例 1:
-
-输入: nums = [-1,0,3,5,9,12], target = 9
-输出: 4
-解释: 9 出现在 nums 中并且下标为 4
-
-
-示例 2:
-
-输入: nums = [-1,0,3,5,9,12], target = 2
-输出: -1
-解释: 2 不存在 nums 中因此返回 -1
-
-
-
-
-提示:
-
-
- - 你可以假设
nums 中的所有元素是不重复的。
- n 将在 [1, 10000]之间。
- nums 的每个元素都将在 [-9999, 9999]之间。
-
-
-
👍 1064👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[714]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272\345\220\253\346\211\213\347\273\255\350\264\271.md" "b/leetcode/editor/cn/doc/content/[714]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272\345\220\253\346\211\213\347\273\255\350\264\271.md"
deleted file mode 100644
index f6832d01..00000000
--- "a/leetcode/editor/cn/doc/content/[714]\344\271\260\345\215\226\350\202\241\347\245\250\347\232\204\346\234\200\344\275\263\346\227\266\346\234\272\345\220\253\346\211\213\347\273\255\350\264\271.md"
+++ /dev/null
@@ -1,40 +0,0 @@
-给定一个整数数组 prices,其中 prices[i]表示第 i 天的股票价格 ;整数 fee 代表了交易股票的手续费用。
-
-你可以无限次地完成交易,但是你每笔交易都需要付手续费。如果你已经购买了一个股票,在卖出它之前你就不能再继续购买股票了。
-
-返回获得利润的最大值。
-
-注意:这里的一笔交易指买入持有并卖出股票的整个过程,每笔交易你只需要为支付一次手续费。
-
-
-
-示例 1:
-
-
-输入:prices = [1, 3, 2, 8, 4, 9], fee = 2
-输出:8
-解释:能够达到的最大利润:
-在此处买入 prices[0] = 1
-在此处卖出 prices[3] = 8
-在此处买入 prices[4] = 4
-在此处卖出 prices[5] = 9
-总利润: ((8 - 1) - 2) + ((9 - 4) - 2) = 8
-
-示例 2:
-
-
-输入:prices = [1,3,7,5,10,3], fee = 3
-输出:6
-
-
-
-
-提示:
-
-
- 1 <= prices.length <= 5 * 104
- 1 <= prices[i] < 5 * 104
- 0 <= fee < 5 * 104
-
-
-
👍 819👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[718]\346\234\200\351\225\277\351\207\215\345\244\215\345\255\220\346\225\260\347\273\204.md" "b/leetcode/editor/cn/doc/content/[718]\346\234\200\351\225\277\351\207\215\345\244\215\345\255\220\346\225\260\347\273\204.md"
deleted file mode 100644
index 701465b4..00000000
--- "a/leetcode/editor/cn/doc/content/[718]\346\234\200\351\225\277\351\207\215\345\244\215\345\255\220\346\225\260\347\273\204.md"
+++ /dev/null
@@ -1,29 +0,0 @@
-给两个整数数组 nums1 和 nums2 ,返回 两个数组中 公共的 、长度最长的子数组的长度 。
-
-
-
-示例 1:
-
-
-输入:nums1 = [1,2,3,2,1], nums2 = [3,2,1,4,7]
-输出:3
-解释:长度最长的公共子数组是 [3,2,1] 。
-
-
-示例 2:
-
-
-输入:nums1 = [0,0,0,0,0], nums2 = [0,0,0,0,0]
-输出:5
-
-
-
-
-提示:
-
-
- 1 <= nums1.length, nums2.length <= 1000
- 0 <= nums1[i], nums2[i] <= 100
-
-
-Related Topics
数组二分查找动态规划滑动窗口哈希函数滚动哈希
👍 806👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[72]\347\274\226\350\276\221\350\267\235\347\246\273.md" "b/leetcode/editor/cn/doc/content/[72]\347\274\226\350\276\221\350\267\235\347\246\273.md"
deleted file mode 100644
index 18889dd1..00000000
--- "a/leetcode/editor/cn/doc/content/[72]\347\274\226\350\276\221\350\267\235\347\246\273.md"
+++ /dev/null
@@ -1,46 +0,0 @@
-给你两个单词 word1 和 word2, 请返回将 word1 转换成 word2 所使用的最少操作数 。
-
-你可以对一个单词进行如下三种操作:
-
-
- - 插入一个字符
- - 删除一个字符
- - 替换一个字符
-
-
-
-
-示例 1:
-
-
-输入:word1 = "horse", word2 = "ros"
-输出:3
-解释:
-horse -> rorse (将 'h' 替换为 'r')
-rorse -> rose (删除 'r')
-rose -> ros (删除 'e')
-
-
-示例 2:
-
-
-输入:word1 = "intention", word2 = "execution"
-输出:5
-解释:
-intention -> inention (删除 't')
-inention -> enention (将 'i' 替换为 'e')
-enention -> exention (将 'n' 替换为 'x')
-exention -> exection (将 'n' 替换为 'c')
-exection -> execution (插入 'u')
-
-
-
-
-提示:
-
-
- 0 <= word1.length, word2.length <= 500
- word1 和 word2 由小写英文字母组成
-
-
-
👍 2685👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[743]\347\275\221\347\273\234\345\273\266\350\277\237\346\227\266\351\227\264.md" "b/leetcode/editor/cn/doc/content/[743]\347\275\221\347\273\234\345\273\266\350\277\237\346\227\266\351\227\264.md"
deleted file mode 100644
index 1b1d6839..00000000
--- "a/leetcode/editor/cn/doc/content/[743]\347\275\221\347\273\234\345\273\266\350\277\237\346\227\266\351\227\264.md"
+++ /dev/null
@@ -1,46 +0,0 @@
-有 n 个网络节点,标记为 1 到 n。
-
-给你一个列表 times,表示信号经过 有向 边的传递时间。 times[i] = (ui, vi, wi),其中 ui 是源节点,vi 是目标节点, wi 是一个信号从源节点传递到目标节点的时间。
-
-现在,从某个节点 K 发出一个信号。需要多久才能使所有节点都收到信号?如果不能使所有节点收到信号,返回 -1 。
-
-
-
-示例 1:
-
-
-
-
-输入:times = [[2,1,1],[2,3,1],[3,4,1]], n = 4, k = 2
-输出:2
-
-
-示例 2:
-
-
-输入:times = [[1,2,1]], n = 2, k = 1
-输出:1
-
-
-示例 3:
-
-
-输入:times = [[1,2,1]], n = 2, k = 2
-输出:-1
-
-
-
-
-提示:
-
-
- 1 <= k <= n <= 100
- 1 <= times.length <= 6000
- times[i].length == 3
- 1 <= ui, vi <= n
- ui != vi
- 0 <= wi <= 100
- - 所有
(ui, vi) 对都 互不相同(即,不含重复边)
-
-
-Related Topics
深度优先搜索广度优先搜索图最短路堆(优先队列)
👍 612👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[752]\346\211\223\345\274\200\350\275\254\347\233\230\351\224\201.md" "b/leetcode/editor/cn/doc/content/[752]\346\211\223\345\274\200\350\275\254\347\233\230\351\224\201.md"
deleted file mode 100644
index bc303974..00000000
--- "a/leetcode/editor/cn/doc/content/[752]\346\211\223\345\274\200\350\275\254\347\233\230\351\224\201.md"
+++ /dev/null
@@ -1,50 +0,0 @@
-你有一个带有四个圆形拨轮的转盘锁。每个拨轮都有10个数字: '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' 。每个拨轮可以自由旋转:例如把 '9' 变为 '0','0' 变为 '9' 。每次旋转都只能旋转一个拨轮的一位数字。
-
-锁的初始数字为 '0000' ,一个代表四个拨轮的数字的字符串。
-
-列表 deadends 包含了一组死亡数字,一旦拨轮的数字和列表里的任何一个元素相同,这个锁将会被永久锁定,无法再被旋转。
-
-字符串 target 代表可以解锁的数字,你需要给出解锁需要的最小旋转次数,如果无论如何不能解锁,返回 -1 。
-
-
-
-示例 1:
-
-
-输入:deadends = ["0201","0101","0102","1212","2002"], target = "0202"
-输出:6
-解释:
-可能的移动序列为 "0000" -> "1000" -> "1100" -> "1200" -> "1201" -> "1202" -> "0202"。
-注意 "0000" -> "0001" -> "0002" -> "0102" -> "0202" 这样的序列是不能解锁的,
-因为当拨动到 "0102" 时这个锁就会被锁定。
-
-
-示例 2:
-
-
-输入: deadends = ["8888"], target = "0009"
-输出:1
-解释:把最后一位反向旋转一次即可 "0000" -> "0009"。
-
-
-示例 3:
-
-
-输入: deadends = ["8887","8889","8878","8898","8788","8988","7888","9888"], target = "8888"
-输出:-1
-解释:无法旋转到目标数字且不被锁定。
-
-
-
-
-提示:
-
-
- 1 <= deadends.length <= 500
- deadends[i].length == 4
- target.length == 4
- target 不在 deadends 之中
- target 和 deadends[i] 仅由若干位数字组成
-
-
-Related Topics
广度优先搜索数组哈希表字符串
👍 568👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[75]\351\242\234\350\211\262\345\210\206\347\261\273.md" "b/leetcode/editor/cn/doc/content/[75]\351\242\234\350\211\262\345\210\206\347\261\273.md"
deleted file mode 100644
index 2e4c37e1..00000000
--- "a/leetcode/editor/cn/doc/content/[75]\351\242\234\350\211\262\345\210\206\347\261\273.md"
+++ /dev/null
@@ -1,46 +0,0 @@
-给定一个包含红色、白色和蓝色、共 n 个元素的数组
- nums ,原地对它们进行排序,使得相同颜色的元素相邻,并按照红色、白色、蓝色顺序排列。
-
-我们使用整数 0、 1 和 2 分别表示红色、白色和蓝色。
-
-
-
-必须在不使用库的sort函数的情况下解决这个问题。
-
-
-
-示例 1:
-
-
-输入:nums = [2,0,2,1,1,0]
-输出:[0,0,1,1,2,2]
-
-
-示例 2:
-
-
-输入:nums = [2,0,1]
-输出:[0,1,2]
-
-
-
-
-提示:
-
-
- n == nums.length
- 1 <= n <= 300
- nums[i] 为 0、1 或 2
-
-
-
-
-进阶:
-
-
- - 你可以不使用代码库中的排序函数来解决这道题吗?
- - 你能想出一个仅使用常数空间的一趟扫描算法吗?
-
-
-
👍 1446👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[76]\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262.md" "b/leetcode/editor/cn/doc/content/[76]\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262.md"
deleted file mode 100644
index c8b247b5..00000000
--- "a/leetcode/editor/cn/doc/content/[76]\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262.md"
+++ /dev/null
@@ -1,49 +0,0 @@
-给你一个字符串 s 、一个字符串 t 。返回 s 中涵盖 t 所有字符的最小子串。如果 s 中不存在涵盖 t 所有字符的子串,则返回空字符串 "" 。
-
-
-
-注意:
-
-
- - 对于
t 中重复字符,我们寻找的子字符串中该字符数量必须不少于 t 中该字符数量。
- - 如果
s 中存在这样的子串,我们保证它是唯一的答案。
-
-
-
-
-示例 1:
-
-
-输入:s = "ADOBECODEBANC", t = "ABC"
-输出:"BANC"
-
-
-示例 2:
-
-
-输入:s = "a", t = "a"
-输出:"a"
-
-
-示例 3:
-
-
-输入: s = "a", t = "aa"
-输出: ""
-解释: t 中两个字符 'a' 均应包含在 s 的子串中,
-因此没有符合条件的子字符串,返回空字符串。
-
-
-
-提示:
-
-
- 1 <= s.length, t.length <= 105
- s 和 t 由英文字母组成
-
-
-
-进阶:你能设计一个在
-o(n) 时间内解决此问题的算法吗?
-
-
👍 2220👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[77]\347\273\204\345\220\210.md" "b/leetcode/editor/cn/doc/content/[77]\347\273\204\345\220\210.md"
deleted file mode 100644
index 7c7f12b3..00000000
--- "a/leetcode/editor/cn/doc/content/[77]\347\273\204\345\220\210.md"
+++ /dev/null
@@ -1,36 +0,0 @@
-给定两个整数 n 和 k,返回范围 [1, n] 中所有可能的 k 个数的组合。
-
-你可以按 任何顺序 返回答案。
-
-
-
-示例 1:
-
-
-输入:n = 4, k = 2
-输出:
-[
- [2,4],
- [3,4],
- [2,3],
- [1,2],
- [1,3],
- [1,4],
-]
-
-示例 2:
-
-
-输入:n = 1, k = 1
-输出:[[1]]
-
-
-
-提示:
-
-
- 1 <= n <= 20
- 1 <= k <= n
-
-
-
👍 1190👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[785]\345\210\244\346\226\255\344\272\214\345\210\206\345\233\276.md" "b/leetcode/editor/cn/doc/content/[785]\345\210\244\346\226\255\344\272\214\345\210\206\345\233\276.md"
deleted file mode 100644
index 5225d79d..00000000
--- "a/leetcode/editor/cn/doc/content/[785]\345\210\244\346\226\255\344\272\214\345\210\206\345\233\276.md"
+++ /dev/null
@@ -1,44 +0,0 @@
-存在一个 无向图 ,图中有 n 个节点。其中每个节点都有一个介于 0 到 n - 1 之间的唯一编号。给你一个二维数组 graph ,其中 graph[u] 是一个节点数组,由节点 u 的邻接节点组成。形式上,对于 graph[u] 中的每个 v ,都存在一条位于节点 u 和节点 v 之间的无向边。该无向图同时具有以下属性:
-
-
- - 不存在自环(
graph[u] 不包含 u)。
- - 不存在平行边(
graph[u] 不包含重复值)。
- - 如果
v 在 graph[u] 内,那么 u 也应该在 graph[v] 内(该图是无向图)
- - 这个图可能不是连通图,也就是说两个节点
u 和 v 之间可能不存在一条连通彼此的路径。
-
-
-二分图 定义:如果能将一个图的节点集合分割成两个独立的子集 A 和 B ,并使图中的每一条边的两个节点一个来自 A 集合,一个来自 B 集合,就将这个图称为 二分图 。
-
-如果图是二分图,返回 true ;否则,返回 false 。
-
-
-
-示例 1:
-
-
-输入:graph = [[1,2,3],[0,2],[0,1,3],[0,2]]
-输出:false
-解释:不能将节点分割成两个独立的子集,以使每条边都连通一个子集中的一个节点与另一个子集中的一个节点。
-
-示例 2:
-
-
-输入:graph = [[1,3],[0,2],[1,3],[0,2]]
-输出:true
-解释:可以将节点分成两组: {0, 2} 和 {1, 3} 。
-
-
-
-提示:
-
-
- graph.length == n
- 1 <= n <= 100
- 0 <= graph[u].length < n
- 0 <= graph[u][i] <= n - 1
- graph[u] 不会包含 u
- graph[u] 的所有值 互不相同
- - 如果
graph[u] 包含 v,那么 graph[v] 也会包含 u
-
-
-Related Topics
深度优先搜索广度优先搜索并查集图
👍 424👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[78]\345\255\220\351\233\206.md" "b/leetcode/editor/cn/doc/content/[78]\345\255\220\351\233\206.md"
deleted file mode 100644
index 9fe1c4e5..00000000
--- "a/leetcode/editor/cn/doc/content/[78]\345\255\220\351\233\206.md"
+++ /dev/null
@@ -1,31 +0,0 @@
-给你一个整数数组 nums ,数组中的元素 互不相同 。返回该数组所有可能的子集(幂集)。
-
-解集 不能 包含重复的子集。你可以按 任意顺序 返回解集。
-
-
-
-示例 1:
-
-
-输入:nums = [1,2,3]
-输出:[[],[1],[2],[1,2],[3],[1,3],[2,3],[1,2,3]]
-
-
-示例 2:
-
-
-输入:nums = [0]
-输出:[[],[0]]
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 10
- -10 <= nums[i] <= 10
- nums 中的所有元素 互不相同
-
-
-
👍 1855👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[797]\346\211\200\346\234\211\345\217\257\350\203\275\347\232\204\350\267\257\345\276\204.md" "b/leetcode/editor/cn/doc/content/[797]\346\211\200\346\234\211\345\217\257\350\203\275\347\232\204\350\267\257\345\276\204.md"
deleted file mode 100644
index 11c44563..00000000
--- "a/leetcode/editor/cn/doc/content/[797]\346\211\200\346\234\211\345\217\257\350\203\275\347\232\204\350\267\257\345\276\204.md"
+++ /dev/null
@@ -1,42 +0,0 @@
-给你一个有 n 个节点的 有向无环图(DAG),请你找出所有从节点 0 到节点 n-1 的路径并输出(不要求按特定顺序)
-
-
- graph[i] 是一个从节点 i 可以访问的所有节点的列表(即从节点 i 到节点 graph[i][j]存在一条有向边)。
-
-
-
-示例 1:
-
-
-
-
-输入:graph = [[1,2],[3],[3],[]]
-输出:[[0,1,3],[0,2,3]]
-解释:有两条路径 0 -> 1 -> 3 和 0 -> 2 -> 3
-
-
-示例 2:
-
-
-
-
-输入:graph = [[4,3,1],[3,2,4],[3],[4],[]]
-输出:[[0,4],[0,3,4],[0,1,3,4],[0,1,2,3,4],[0,1,4]]
-
-
-
-
-提示:
-
-
- n == graph.length
- 2 <= n <= 15
- 0 <= graph[i][j] < n
- graph[i][j] != i(即不存在自环)
- graph[i] 中的所有元素 互不相同
- - 保证输入为 有向无环图(DAG)
-
-
-
-
-Related Topics
深度优先搜索广度优先搜索图回溯
👍 352👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[7]\346\225\264\346\225\260\345\217\215\350\275\254.md" "b/leetcode/editor/cn/doc/content/[7]\346\225\264\346\225\260\345\217\215\350\275\254.md"
deleted file mode 100644
index cecf5249..00000000
--- "a/leetcode/editor/cn/doc/content/[7]\346\225\264\346\225\260\345\217\215\350\275\254.md"
+++ /dev/null
@@ -1,44 +0,0 @@
-给你一个 32 位的有符号整数 x ,返回将 x 中的数字部分反转后的结果。
-
-如果反转后整数超过 32 位的有符号整数的范围 [−231, 231 − 1] ,就返回 0。
-假设环境不允许存储 64 位整数(有符号或无符号)。
-
-
-
-示例 1:
-
-
-输入:x = 123
-输出:321
-
-
-示例 2:
-
-
-输入:x = -123
-输出:-321
-
-
-示例 3:
-
-
-输入:x = 120
-输出:21
-
-
-示例 4:
-
-
-输入:x = 0
-输出:0
-
-
-
-
-提示:
-
-
-
-
👍 3751👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[805]\346\225\260\347\273\204\347\232\204\345\235\207\345\200\274\345\210\206\345\211\262.md" "b/leetcode/editor/cn/doc/content/[805]\346\225\260\347\273\204\347\232\204\345\235\207\345\200\274\345\210\206\345\211\262.md"
deleted file mode 100644
index da51331b..00000000
--- "a/leetcode/editor/cn/doc/content/[805]\346\225\260\347\273\204\347\232\204\345\235\207\345\200\274\345\210\206\345\211\262.md"
+++ /dev/null
@@ -1,43 +0,0 @@
-给定你一个整数数组
- nums
-
-我们要将
- nums 数组中的每个元素移动到 A 数组 或者 B 数组中,使得 A 数组和
- B 数组不为空,并且
- average(A) == average(B) 。
-
-如果可以完成则返回true , 否则返回 false 。
-
-注意:对于数组
- arr ,
- average(arr) 是
- arr 的所有元素的和除以
- arr 长度。
-
-
-
-示例 1:
-
-
-输入: nums = [1,2,3,4,5,6,7,8]
-输出: true
-解释: 我们可以将数组分割为 [1,4,5,8] 和 [2,3,6,7], 他们的平均值都是4.5。
-
-
-示例 2:
-
-
-输入: nums = [3,1]
-输出: false
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 30
- 0 <= nums[i] <= 104
-
-
-Related Topics
位运算数组数学动态规划状态压缩
👍 244👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[870]\344\274\230\345\212\277\346\264\227\347\211\214.md" "b/leetcode/editor/cn/doc/content/[870]\344\274\230\345\212\277\346\264\227\347\211\214.md"
deleted file mode 100644
index 3375d632..00000000
--- "a/leetcode/editor/cn/doc/content/[870]\344\274\230\345\212\277\346\264\227\347\211\214.md"
+++ /dev/null
@@ -1,31 +0,0 @@
-给定两个大小相等的数组 nums1 和 nums2,nums1 相对于 nums2 的优势可以用满足 nums1[i] > nums2[i] 的索引 i 的数目来描述。
-
-返回 nums1 的任意排列,使其相对于 nums2 的优势最大化。
-
-
-
-示例 1:
-
-
-输入:nums1 = [2,7,11,15], nums2 = [1,10,4,11]
-输出:[2,11,7,15]
-
-
-示例 2:
-
-
-输入:nums1 = [12,24,8,32], nums2 = [13,25,32,11]
-输出:[24,32,8,12]
-
-
-
-
-提示:
-
-
- 1 <= nums1.length <= 105
- nums2.length == nums1.length
- 0 <= nums1[i], nums2[i] <= 109
-
-
-
👍 351👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[886]\345\217\257\350\203\275\347\232\204\344\272\214\345\210\206\346\263\225.md" "b/leetcode/editor/cn/doc/content/[886]\345\217\257\350\203\275\347\232\204\344\272\214\345\210\206\346\263\225.md"
deleted file mode 100644
index 112c75d6..00000000
--- "a/leetcode/editor/cn/doc/content/[886]\345\217\257\350\203\275\347\232\204\344\272\214\345\210\206\346\263\225.md"
+++ /dev/null
@@ -1,47 +0,0 @@
-给定一组 n 人(编号为 1, 2, ..., n), 我们想把每个人分进任意大小的两组。每个人都可能不喜欢其他人,那么他们不应该属于同一组。
-
-给定整数 n 和数组 dislikes ,其中 dislikes[i] = [ai, bi] ,表示不允许将编号为 ai 和 bi的人归入同一组。当可以用这种方法将所有人分进两组时,返回 true;否则返回 false。
-
-
-
-
-
-
-示例 1:
-
-
-输入:n = 4, dislikes = [[1,2],[1,3],[2,4]]
-输出:true
-解释:group1 [1,4], group2 [2,3]
-
-
-示例 2:
-
-
-输入:n = 3, dislikes = [[1,2],[1,3],[2,3]]
-输出:false
-
-
-示例 3:
-
-
-输入:n = 5, dislikes = [[1,2],[2,3],[3,4],[4,5],[1,5]]
-输出:false
-
-
-
-
-提示:
-
-
- 1 <= n <= 2000
- 0 <= dislikes.length <= 104
- dislikes[i].length == 2
- 1 <= dislikes[i][j] <= n
- ai < bi
- dislikes 中每一组都 不同
-
-
-
-
-Related Topics
深度优先搜索广度优先搜索并查集图
👍 349👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[889]\346\240\271\346\215\256\345\211\215\345\272\217\345\222\214\345\220\216\345\272\217\351\201\215\345\216\206\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.md" "b/leetcode/editor/cn/doc/content/[889]\346\240\271\346\215\256\345\211\215\345\272\217\345\222\214\345\220\216\345\272\217\351\201\215\345\216\206\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.md"
deleted file mode 100644
index 06314ea7..00000000
--- "a/leetcode/editor/cn/doc/content/[889]\346\240\271\346\215\256\345\211\215\345\272\217\345\222\214\345\220\216\345\272\217\351\201\215\345\216\206\346\236\204\351\200\240\344\272\214\345\217\211\346\240\221.md"
+++ /dev/null
@@ -1,37 +0,0 @@
-给定两个整数数组,preorder 和 postorder ,其中 preorder 是一个具有 无重复 值的二叉树的前序遍历,postorder 是同一棵树的后序遍历,重构并返回二叉树。
-
-如果存在多个答案,您可以返回其中 任何 一个。
-
-
-
-示例 1:
-
-
-
-
-输入:preorder = [1,2,4,5,3,6,7], postorder = [4,5,2,6,7,3,1]
-输出:[1,2,3,4,5,6,7]
-
-
-示例 2:
-
-
-输入: preorder = [1], postorder = [1]
-输出: [1]
-
-
-
-
-提示:
-
-
- 1 <= preorder.length <= 30
- 1 <= preorder[i] <= preorder.length
- preorder 中所有值都 不同
- postorder.length == preorder.length
- 1 <= postorder[i] <= postorder.length
- postorder 中所有值都 不同
- - 保证
preorder 和 postorder 是同一棵二叉树的前序遍历和后序遍历
-
-
-Related Topics
树数组哈希表分治二叉树
👍 282👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[88]\345\220\210\345\271\266\344\270\244\344\270\252\346\234\211\345\272\217\346\225\260\347\273\204.md" "b/leetcode/editor/cn/doc/content/[88]\345\220\210\345\271\266\344\270\244\344\270\252\346\234\211\345\272\217\346\225\260\347\273\204.md"
deleted file mode 100644
index 1b50122c..00000000
--- "a/leetcode/editor/cn/doc/content/[88]\345\220\210\345\271\266\344\270\244\344\270\252\346\234\211\345\272\217\346\225\260\347\273\204.md"
+++ /dev/null
@@ -1,53 +0,0 @@
-给你两个按 非递减顺序 排列的整数数组 nums1 和 nums2,另有两个整数 m 和 n ,分别表示 nums1 和 nums2 中的元素数目。
-
-请你 合并 nums2 到 nums1 中,使合并后的数组同样按 非递减顺序 排列。
-
-注意:最终,合并后数组不应由函数返回,而是存储在数组 nums1 中。为了应对这种情况,nums1 的初始长度为 m + n,其中前 m 个元素表示应合并的元素,后 n 个元素为 0 ,应忽略。nums2 的长度为 n 。
-
-
-
-示例 1:
-
-
-输入:nums1 = [1,2,3,0,0,0], m = 3, nums2 = [2,5,6], n = 3
-输出:[1,2,2,3,5,6]
-解释:需要合并 [1,2,3] 和 [2,5,6] 。
-合并结果是 [1,2,2,3,5,6] ,其中斜体加粗标注的为 nums1 中的元素。
-
-
-示例 2:
-
-
-输入:nums1 = [1], m = 1, nums2 = [], n = 0
-输出:[1]
-解释:需要合并 [1] 和 [] 。
-合并结果是 [1] 。
-
-
-示例 3:
-
-
-输入:nums1 = [0], m = 0, nums2 = [1], n = 1
-输出:[1]
-解释:需要合并的数组是 [] 和 [1] 。
-合并结果是 [1] 。
-注意,因为 m = 0 ,所以 nums1 中没有元素。nums1 中仅存的 0 仅仅是为了确保合并结果可以顺利存放到 nums1 中。
-
-
-
-
-提示:
-
-
- nums1.length == m + n
- nums2.length == n
- 0 <= m, n <= 200
- 1 <= m + n <= 200
- -109 <= nums1[i], nums2[j] <= 109
-
-
-
-
-进阶:你可以设计实现一个时间复杂度为 O(m + n) 的算法解决此问题吗?
-
-
👍 1608👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[8]\345\255\227\347\254\246\344\270\262\350\275\254\346\215\242\346\225\264\346\225\260 (atoi).md" "b/leetcode/editor/cn/doc/content/[8]\345\255\227\347\254\246\344\270\262\350\275\254\346\215\242\346\225\264\346\225\260 (atoi).md"
deleted file mode 100644
index 593e9470..00000000
--- "a/leetcode/editor/cn/doc/content/[8]\345\255\227\347\254\246\344\270\262\350\275\254\346\215\242\346\225\264\346\225\260 (atoi).md"
+++ /dev/null
@@ -1,79 +0,0 @@
-请你来实现一个 myAtoi(string s) 函数,使其能将字符串转换成一个 32 位有符号整数(类似 C/C++ 中的 atoi 函数)。
-
-函数 myAtoi(string s) 的算法如下:
-
-
- - 读入字符串并丢弃无用的前导空格
- - 检查下一个字符(假设还未到字符末尾)为正还是负号,读取该字符(如果有)。 确定最终结果是负数还是正数。 如果两者都不存在,则假定结果为正。
- - 读入下一个字符,直到到达下一个非数字字符或到达输入的结尾。字符串的其余部分将被忽略。
- - 将前面步骤读入的这些数字转换为整数(即,"123" -> 123, "0032" -> 32)。如果没有读入数字,则整数为
0 。必要时更改符号(从步骤 2 开始)。
- - 如果整数数超过 32 位有符号整数范围
[−231, 231 − 1] ,需要截断这个整数,使其保持在这个范围内。具体来说,小于 −231 的整数应该被固定为 −231 ,大于 231 − 1 的整数应该被固定为 231 − 1 。
- - 返回整数作为最终结果。
-
-
-注意:
-
-
- - 本题中的空白字符只包括空格字符
' ' 。
- - 除前导空格或数字后的其余字符串外,请勿忽略 任何其他字符。
-
-
-
-
-示例 1:
-
-
-输入:s = "42"
-输出:42
-解释:加粗的字符串为已经读入的字符,插入符号是当前读取的字符。
-第 1 步:"42"(当前没有读入字符,因为没有前导空格)
- ^
-第 2 步:"42"(当前没有读入字符,因为这里不存在 '-' 或者 '+')
- ^
-第 3 步:"42"(读入 "42")
- ^
-解析得到整数 42 。
-由于 "42" 在范围 [-231, 231 - 1] 内,最终结果为 42 。
-
-示例 2:
-
-
-输入:s = " -42"
-输出:-42
-解释:
-第 1 步:" -42"(读入前导空格,但忽视掉)
- ^
-第 2 步:" -42"(读入 '-' 字符,所以结果应该是负数)
- ^
-第 3 步:" -42"(读入 "42")
- ^
-解析得到整数 -42 。
-由于 "-42" 在范围 [-231, 231 - 1] 内,最终结果为 -42 。
-
-
-示例 3:
-
-
-输入:s = "4193 with words"
-输出:4193
-解释:
-第 1 步:"4193 with words"(当前没有读入字符,因为没有前导空格)
- ^
-第 2 步:"4193 with words"(当前没有读入字符,因为这里不存在 '-' 或者 '+')
- ^
-第 3 步:"4193 with words"(读入 "4193";由于下一个字符不是一个数字,所以读入停止)
- ^
-解析得到整数 4193 。
-由于 "4193" 在范围 [-231, 231 - 1] 内,最终结果为 4193 。
-
-
-
-
-提示:
-
-
- 0 <= s.length <= 200
- s 由英文字母(大写和小写)、数字(0-9)、' '、'+'、'-' 和 '.' 组成
-
-
-
👍 1602👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[90]\345\255\220\351\233\206 II.md" "b/leetcode/editor/cn/doc/content/[90]\345\255\220\351\233\206 II.md"
deleted file mode 100644
index 21d84435..00000000
--- "a/leetcode/editor/cn/doc/content/[90]\345\255\220\351\233\206 II.md"
+++ /dev/null
@@ -1,34 +0,0 @@
-给你一个整数数组 nums ,其中可能包含重复元素,请你返回该数组所有可能的子集(幂集)。
-
-解集 不能 包含重复的子集。返回的解集中,子集可以按 任意顺序 排列。
-
-
-
-示例 1:
-
-
-输入:nums = [1,2,2]
-输出:[[],[1],[1,2],[1,2,2],[2],[2,2]]
-
-
-示例 2:
-
-
-输入:nums = [0]
-输出:[[],[0]]
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 10
- -10 <= nums[i] <= 10
-
-
-
👍 961👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[912]\346\216\222\345\272\217\346\225\260\347\273\204.md" "b/leetcode/editor/cn/doc/content/[912]\346\216\222\345\272\217\346\225\260\347\273\204.md"
deleted file mode 100644
index 87ca9cff..00000000
--- "a/leetcode/editor/cn/doc/content/[912]\346\216\222\345\272\217\346\225\260\347\273\204.md"
+++ /dev/null
@@ -1,31 +0,0 @@
-给你一个整数数组 nums,请你将该数组升序排列。
-
-
-
-
-
-
-示例 1:
-
-
-输入:nums = [5,2,3,1]
-输出:[1,2,3,5]
-
-
-示例 2:
-
-
-输入:nums = [5,1,1,2,0,0]
-输出:[0,0,1,1,2,5]
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 5 * 104
- -5 * 104 <= nums[i] <= 5 * 104
-
-
-Related Topics
数组分治桶排序计数排序基数排序排序堆(优先队列)归并排序
👍 715👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[91]\350\247\243\347\240\201\346\226\271\346\263\225.md" "b/leetcode/editor/cn/doc/content/[91]\350\247\243\347\240\201\346\226\271\346\263\225.md"
deleted file mode 100644
index e38380f8..00000000
--- "a/leetcode/editor/cn/doc/content/[91]\350\247\243\347\240\201\346\226\271\346\263\225.md"
+++ /dev/null
@@ -1,57 +0,0 @@
-一条包含字母 A-Z 的消息通过以下映射进行了 编码 :
-
-
-'A' -> "1"
-'B' -> "2"
-...
-'Z' -> "26"
-
-要 解码 已编码的消息,所有数字必须基于上述映射的方法,反向映射回字母(可能有多种方法)。例如,"11106" 可以映射为:
-
-
- "AAJF" ,将消息分组为 (1 1 10 6)
- "KJF" ,将消息分组为 (11 10 6)
-
-
-注意,消息不能分组为 (1 11 06) ,因为 "06" 不能映射为 "F" ,这是由于 "6" 和 "06" 在映射中并不等价。
-
-给你一个只含数字的 非空 字符串 s ,请计算并返回 解码 方法的 总数 。
-
-题目数据保证答案肯定是一个 32 位 的整数。
-
-
-
-示例 1:
-
-
-输入:s = "12"
-输出:2
-解释:它可以解码为 "AB"(1 2)或者 "L"(12)。
-
-
-示例 2:
-
-
-输入:s = "226"
-输出:3
-解释:它可以解码为 "BZ" (2 26), "VF" (22 6), 或者 "BBF" (2 2 6) 。
-
-
-示例 3:
-
-
-输入:s = "06"
-输出:0
-解释:"06" 无法映射到 "F" ,因为存在前导零("6" 和 "06" 并不等价)。
-
-
-
-
-提示:
-
-
- 1 <= s.length <= 100
- s 只包含数字,并且可能包含前导零。
-
-
-
👍 1318👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[92]\345\217\215\350\275\254\351\223\276\350\241\250 II.md" "b/leetcode/editor/cn/doc/content/[92]\345\217\215\350\275\254\351\223\276\350\241\250 II.md"
deleted file mode 100644
index 032871a6..00000000
--- "a/leetcode/editor/cn/doc/content/[92]\345\217\215\350\275\254\351\223\276\350\241\250 II.md"
+++ /dev/null
@@ -1,34 +0,0 @@
-给你单链表的头指针 head 和两个整数 left 和 right ,其中 left <= right 。请你反转从位置 left 到位置 right 的链表节点,返回 反转后的链表 。
-
-
-
-示例 1:
-
-
-输入:head = [1,2,3,4,5], left = 2, right = 4
-输出:[1,4,3,2,5]
-
-
-示例 2:
-
-
-输入:head = [5], left = 1, right = 1
-输出:[5]
-
-
-
-
-提示:
-
-
- - 链表中节点数目为
n
- 1 <= n <= 500
- -500 <= Node.val <= 500
- 1 <= left <= right <= n
-
-
-
-
-进阶: 你可以使用一趟扫描完成反转吗?
-
-
👍 1444👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[931]\344\270\213\351\231\215\350\267\257\345\276\204\346\234\200\345\260\217\345\222\214.md" "b/leetcode/editor/cn/doc/content/[931]\344\270\213\351\231\215\350\267\257\345\276\204\346\234\200\345\260\217\345\222\214.md"
deleted file mode 100644
index ef254df2..00000000
--- "a/leetcode/editor/cn/doc/content/[931]\344\270\213\351\231\215\350\267\257\345\276\204\346\234\200\345\260\217\345\222\214.md"
+++ /dev/null
@@ -1,37 +0,0 @@
-给你一个 n x n 的 方形 整数数组 matrix ,请你找出并返回通过 matrix 的下降路径 的 最小和 。
-
-下降路径 可以从第一行中的任何元素开始,并从每一行中选择一个元素。在下一行选择的元素和当前行所选元素最多相隔一列(即位于正下方或者沿对角线向左或者向右的第一个元素)。具体来说,位置 (row, col) 的下一个元素应当是 (row + 1, col - 1)、(row + 1, col) 或者 (row + 1, col + 1) 。
-
-
-
-示例 1:
-
-
-
-
-输入:matrix = [[2,1,3],[6,5,4],[7,8,9]]
-输出:13
-解释:如图所示,为和最小的两条下降路径
-
-
-示例 2:
-
-
-
-
-输入:matrix = [[-19,57],[-40,-5]]
-输出:-59
-解释:如图所示,为和最小的下降路径
-
-
-
-
-提示:
-
-
- n == matrix.length == matrix[i].length
- 1 <= n <= 100
- -100 <= matrix[i][j] <= 100
-
-
-
👍 201👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[96]\344\270\215\345\220\214\347\232\204\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.md" "b/leetcode/editor/cn/doc/content/[96]\344\270\215\345\220\214\347\232\204\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.md"
deleted file mode 100644
index f6c6fecd..00000000
--- "a/leetcode/editor/cn/doc/content/[96]\344\270\215\345\220\214\347\232\204\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.md"
+++ /dev/null
@@ -1,27 +0,0 @@
-给你一个整数 n ,求恰由 n 个节点组成且节点值从 1 到 n 互不相同的 二叉搜索树 有多少种?返回满足题意的二叉搜索树的种数。
-
-
-
-示例 1:
-
-
-输入:n = 3
-输出:5
-
-
-示例 2:
-
-
-输入:n = 1
-输出:1
-
-
-
-
-提示:
-
-
-
-Related Topics
树二叉搜索树数学动态规划二叉树
👍 1987👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[98]\351\252\214\350\257\201\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.md" "b/leetcode/editor/cn/doc/content/[98]\351\252\214\350\257\201\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.md"
deleted file mode 100644
index bcef05fc..00000000
--- "a/leetcode/editor/cn/doc/content/[98]\351\252\214\350\257\201\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221.md"
+++ /dev/null
@@ -1,37 +0,0 @@
-给你一个二叉树的根节点 root ,判断其是否是一个有效的二叉搜索树。
-
-有效 二叉搜索树定义如下:
-
-
- - 节点的左子树只包含 小于 当前节点的数。
- - 节点的右子树只包含 大于 当前节点的数。
- - 所有左子树和右子树自身必须也是二叉搜索树。
-
-
-
-
-示例 1:
-
-
-输入:root = [2,1,3]
-输出:true
-
-
-示例 2:
-
-
-输入:root = [5,1,4,null,null,3,6]
-输出:false
-解释:根节点的值是 5 ,但是右子节点的值是 4 。
-
-
-
-
-提示:
-
-
- - 树中节点数目范围在
[1, 104] 内
- -231 <= Node.val <= 231 - 1
-
-
-Related Topics
树深度优先搜索二叉搜索树二叉树
👍 1799👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[990]\347\255\211\345\274\217\346\226\271\347\250\213\347\232\204\345\217\257\346\273\241\350\266\263\346\200\247.md" "b/leetcode/editor/cn/doc/content/[990]\347\255\211\345\274\217\346\226\271\347\250\213\347\232\204\345\217\257\346\273\241\350\266\263\346\200\247.md"
deleted file mode 100644
index 91854d7a..00000000
--- "a/leetcode/editor/cn/doc/content/[990]\347\255\211\345\274\217\346\226\271\347\250\213\347\232\204\345\217\257\346\273\241\350\266\263\346\200\247.md"
+++ /dev/null
@@ -1,54 +0,0 @@
-给定一个由表示变量之间关系的字符串方程组成的数组,每个字符串方程 equations[i] 的长度为 4,并采用两种不同的形式之一:"a==b" 或 "a!=b"。在这里,a 和 b 是小写字母(不一定不同),表示单字母变量名。
-
-只有当可以将整数分配给变量名,以便满足所有给定的方程时才返回 true,否则返回 false。
-
-
-
-
-
-
-示例 1:
-
-输入:["a==b","b!=a"]
-输出:false
-解释:如果我们指定,a = 1 且 b = 1,那么可以满足第一个方程,但无法满足第二个方程。没有办法分配变量同时满足这两个方程。
-
-
-示例 2:
-
-输入:["b==a","a==b"]
-输出:true
-解释:我们可以指定 a = 1 且 b = 1 以满足满足这两个方程。
-
-
-示例 3:
-
-输入:["a==b","b==c","a==c"]
-输出:true
-
-
-示例 4:
-
-输入:["a==b","b!=c","c==a"]
-输出:false
-
-
-示例 5:
-
-输入:["c==c","b==d","x!=z"]
-输出:true
-
-
-
-
-提示:
-
-
- 1 <= equations.length <= 500
- equations[i].length == 4
- equations[i][0] 和 equations[i][3] 是小写字母
- equations[i][1] 要么是 '=',要么是 '!'
- equations[i][2] 是 '='
-
-
-
👍 269👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 22]\351\223\276\350\241\250\344\270\255\345\200\222\346\225\260\347\254\254k\344\270\252\350\212\202\347\202\271.md" "b/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 22]\351\223\276\350\241\250\344\270\255\345\200\222\346\225\260\347\254\254k\344\270\252\350\212\202\347\202\271.md"
deleted file mode 100644
index c746258b..00000000
--- "a/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 22]\351\223\276\350\241\250\344\270\255\345\200\222\346\225\260\347\254\254k\344\270\252\350\212\202\347\202\271.md"
+++ /dev/null
@@ -1,14 +0,0 @@
-输入一个链表,输出该链表中倒数第k个节点。为了符合大多数人的习惯,本题从1开始计数,即链表的尾节点是倒数第1个节点。
-
-例如,一个链表有 6 个节点,从头节点开始,它们的值依次是 1、2、3、4、5、6。这个链表的倒数第 3 个节点是值为 4 的节点。
-
-
-
-示例:
-
-
-给定一个链表: 1->2->3->4->5, 和 k = 2.
-
-返回链表 4->5.
-
-
👍 399👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 29]\351\241\272\346\227\266\351\222\210\346\211\223\345\215\260\347\237\251\351\230\265.md" "b/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 29]\351\241\272\346\227\266\351\222\210\346\211\223\345\215\260\347\237\251\351\230\265.md"
deleted file mode 100644
index 1162795b..00000000
--- "a/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 29]\351\241\272\346\227\266\351\222\210\346\211\223\345\215\260\347\237\251\351\230\265.md"
+++ /dev/null
@@ -1,28 +0,0 @@
-输入一个矩阵,按照从外向里以顺时针的顺序依次打印出每一个数字。
-
-
-
-示例 1:
-
-输入:matrix = [[1,2,3],[4,5,6],[7,8,9]]
-输出:[1,2,3,6,9,8,7,4,5]
-
-
-示例 2:
-
-输入:matrix = [[1,2,3,4],[5,6,7,8],[9,10,11,12]]
-输出:[1,2,3,4,8,12,11,10,9,5,6,7]
-
-
-
-
-限制:
-
-
- 0 <= matrix.length <= 100
- 0 <= matrix[i].length <= 100
-
-
-注意:本题与主站 54 题相同:https://leetcode-cn.com/problems/spiral-matrix/
-
-
👍 470👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 33]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\347\232\204\345\220\216\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227.md" "b/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 33]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\347\232\204\345\220\216\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227.md"
deleted file mode 100644
index b3da5e0d..00000000
--- "a/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 33]\344\272\214\345\217\211\346\220\234\347\264\242\346\240\221\347\232\204\345\220\216\345\272\217\351\201\215\345\216\206\345\272\217\345\210\227.md"
+++ /dev/null
@@ -1,31 +0,0 @@
-输入一个整数数组,判断该数组是不是某二叉搜索树的后序遍历结果。如果是则返回 true,否则返回 false。假设输入的数组的任意两个数字都互不相同。
-
-
-
-参考以下这颗二叉搜索树:
-
- 5
- / \
- 2 6
- / \
- 1 3
-
-示例 1:
-
-输入: [1,6,3,2,5]
-输出: false
-
-示例 2:
-
-输入: [1,3,2,6,5]
-输出: true
-
-
-
-提示:
-
-
- 数组长度 <= 1000
-
-
-Related Topics
栈树二叉搜索树递归二叉树单调栈
👍 629👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 48]\346\234\200\351\225\277\344\270\215\345\220\253\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\345\255\220\345\255\227\347\254\246\344\270\262.md" "b/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 48]\346\234\200\351\225\277\344\270\215\345\220\253\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\345\255\220\345\255\227\347\254\246\344\270\262.md"
deleted file mode 100644
index ce3404f9..00000000
--- "a/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 48]\346\234\200\351\225\277\344\270\215\345\220\253\351\207\215\345\244\215\345\255\227\347\254\246\347\232\204\345\255\220\345\255\227\347\254\246\344\270\262.md"
+++ /dev/null
@@ -1,37 +0,0 @@
-请从字符串中找出一个最长的不包含重复字符的子字符串,计算该最长子字符串的长度。
-
-
-
-示例 1:
-
-输入: "abcabcbb"
-输出: 3
-解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。
-
-
-示例 2:
-
-输入: "bbbbb"
-输出: 1
-解释: 因为无重复字符的最长子串是 "b",所以其长度为 1。
-
-
-示例 3:
-
-输入: "pwwkew"
-输出: 3
-解释: 因为无重复字符的最长子串是 "wke",所以其长度为 3。
- 请注意,你的答案必须是 子串 的长度,"pwke" 是一个子序列,不是子串。
-
-
-
-
-提示:
-
-
-
-注意:本题与主站 3 题相同:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/
-
-
👍 510👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 53 - I]\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\346\225\260\345\255\227 I.md" "b/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 53 - I]\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\346\225\260\345\255\227 I.md"
deleted file mode 100644
index dca5f4a0..00000000
--- "a/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer 53 - I]\345\234\250\346\216\222\345\272\217\346\225\260\347\273\204\344\270\255\346\237\245\346\211\276\346\225\260\345\255\227 I.md"
+++ /dev/null
@@ -1,32 +0,0 @@
-统计一个数字在排序数组中出现的次数。
-
-
-
-示例 1:
-
-
-输入: nums = [5,7,7,8,8,10], target = 8
-输出: 2
-
-示例 2:
-
-
-输入: nums = [5,7,7,8,8,10], target = 6
-输出: 0
-
-
-
-提示:
-
-
- 0 <= nums.length <= 105
- -109 <= nums[i] <= 109
- nums 是一个非递减数组
- -109 <= target <= 109
-
-
-
-
-注意:本题与主站 34 题相同(仅返回值不同):https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array/
-
-
👍 379👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer II 076]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254 k \345\244\247\347\232\204\346\225\260\345\255\227.md" "b/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer II 076]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254 k \345\244\247\347\232\204\346\225\260\345\255\227.md"
deleted file mode 100644
index c2031bd3..00000000
--- "a/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer II 076]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254 k \345\244\247\347\232\204\346\225\260\345\255\227.md"
+++ /dev/null
@@ -1,34 +0,0 @@
-给定整数数组 nums 和整数 k,请返回数组中第 k 个最大的元素。
-
-请注意,你需要找的是数组排序后的第 k 个最大的元素,而不是第 k 个不同的元素。
-
-
-
-示例 1:
-
-
-输入: [3,2,1,5,6,4] 和 k = 2
-输出: 5
-
-
-示例 2:
-
-
-输入: [3,2,3,1,2,4,5,5,6] 和 k = 4
-输出: 4
-
-
-
-提示:
-
-
- 1 <= k <= nums.length <= 104
- -104 <= nums[i] <= 104
-
-
-
-
-
- 注意:本题与主站 215 题相同: https://leetcode-cn.com/problems/kth-largest-element-in-an-array/
-
-Related Topics
数组分治快速选择排序堆(优先队列)
👍 52👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer II 104]\346\216\222\345\210\227\347\232\204\346\225\260\347\233\256.md" "b/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer II 104]\346\216\222\345\210\227\347\232\204\346\225\260\347\233\256.md"
deleted file mode 100644
index 491177de..00000000
--- "a/leetcode/editor/cn/doc/content/[\345\211\221\346\214\207 Offer II 104]\346\216\222\345\210\227\347\232\204\346\225\260\347\233\256.md"
+++ /dev/null
@@ -1,51 +0,0 @@
-给定一个由 不同 正整数组成的数组 nums ,和一个目标整数 target 。请从 nums 中找出并返回总和为 target 的元素组合的个数。数组中的数字可以在一次排列中出现任意次,但是顺序不同的序列被视作不同的组合。
-
-题目数据保证答案符合 32 位整数范围。
-
-
-
-示例 1:
-
-
-输入:nums = [1,2,3], target = 4
-输出:7
-解释:
-所有可能的组合为:
-(1, 1, 1, 1)
-(1, 1, 2)
-(1, 2, 1)
-(1, 3)
-(2, 1, 1)
-(2, 2)
-(3, 1)
-请注意,顺序不同的序列被视作不同的组合。
-
-
-示例 2:
-
-
-输入:nums = [9], target = 3
-输出:0
-
-
-
-
-提示:
-
-
- 1 <= nums.length <= 200
- 1 <= nums[i] <= 1000
- nums 中的所有元素 互不相同
- 1 <= target <= 1000
-
-
-
-
-进阶:如果给定的数组中含有负数会发生什么?问题会产生何种变化?如果允许负数出现,需要向题目中添加哪些限制条件?
-
-
-
-
- 注意:本题与主站 377 题相同:https://leetcode-cn.com/problems/combination-sum-iv/
-
-
👍 43👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/note/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260.md" "b/leetcode/editor/cn/doc/note/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260.md"
deleted file mode 100644
index e69de29b..00000000
diff --git "a/leetcode/editor/cn/doc/note/[752]\346\211\223\345\274\200\350\275\254\347\233\230\351\224\201.md" "b/leetcode/editor/cn/doc/note/[752]\346\211\223\345\274\200\350\275\254\347\233\230\351\224\201.md"
deleted file mode 100644
index e69de29b..00000000
diff --git a/leetcode/editor/cn/doc/solution/by-ac_oier-i01s.lcv b/leetcode/editor/cn/doc/solution/by-ac_oier-i01s.lcv
deleted file mode 100644
index ab03bb1f..00000000
--- a/leetcode/editor/cn/doc/solution/by-ac_oier-i01s.lcv
+++ /dev/null
@@ -1,150 +0,0 @@
-## 数据结构
-
-显然,对于任意一个 $t = nums2[i]$ 而言,我们应当在候选集合中选择**比其大的最小数**,若不存在这样的数字,则选择候选集合中的**最小值**。
-
-同时,由于 $nums1$ 相同数会存在多个,我们还要对某个具体数字的可用次数进行记录。
-
-也就是我们总共涉及两类操作:
-
-1. 实时维护一个候选集合,该集合支持高效查询比某个数大的数值操作;
-2. 对候选集合中每个数值的可使用次数进行记录,当使用到了候选集合中的某个数后,要对其进行计数减一操作,若计数为 $0$,则将该数值从候选集合中移除。
-
-计数操作容易想到哈希表,而实时维护候选集合并高效查询可以使用基于红黑树的 `TreeSet` 数据结构。
-
-代码:
-
-* []
-
-```Java
-class Solution {
- public int[] advantageCount(int[] nums1, int[] nums2) {
- int n = nums1.length;
- TreeSet tset = new TreeSet<>();
- Map map = new HashMap<>();
- for (int x : nums1) {
- map.put(x, map.getOrDefault(x, 0) + 1);
- if (map.get(x) == 1) tset.add(x);
- }
- int[] ans = new int[n];
- for (int i = 0; i < n; i++) {
- Integer cur = tset.ceiling(nums2[i] + 1);
- if (cur == null) cur = tset.ceiling(-1);
- ans[i] = cur;
- map.put(cur, map.get(cur) - 1);
- if (map.get(cur) == 0) tset.remove(cur);
- }
- return ans;
- }
-}
-```
-
-* []
-
-```Python
-from sortedcontainers import SortedList
-
-class Solution:
- def advantageCount(self, nums1: List[int], nums2: List[int]) -> List[int]:
- n = len(nums1)
- cnts, tset = defaultdict(int), SortedList()
- for i in range(n):
- cnts[nums1[i]] += 1
- if cnts[nums1[i]] == 1:
- tset.add(nums1[i])
- ans = [0] * n
- for i in range(n):
- t = nums2[i]
- if (idx := tset.bisect_left(t + 1)) == len(tset):
- idx = tset.bisect_left(-1)
- ans[i] = tset[idx]
- cnts[ans[i]] -= 1
- if cnts[ans[i]] == 0:
- tset.remove(ans[i])
- return ans
-```
-
-* 时间复杂度:$O(n\log{n})$
-* 空间复杂度:$O(n)$
-
----
-
-## 排序 + 双指针
-
-在解法一中,我们是从每个 $nums2[i]$ 出发考虑,使用哪个 $nums1[i]$ 去匹配最为合适。
-
-实际上,我们也能从 $nums1[i]$ 出发,考虑将其与哪个 $nums2[i]$ 进行匹配。
-
-为了让每个决策回合具有独立性,我们需要对两数组进行排序,同时为了在构造答案时,能够对应回 `nums2` 的原下标,排序前我们需要使用「哈希表」记录每个 $nums2[i]$ 的下标为何值。
-
-使用变量 `l1` 代表当前决策将 $nums1[l1]$ 分配到哪个 `nums2` 的位置,使用 `l2` 和 `r2` 代表当前 `nums2` 中还有 $[l2, r2]$ 位置还待填充。
-
-可以证明我们在从前往后给每个 $nums1[l1]$ 分配具体位置时,分配的位置只会在 `l2` 和 `r2` 两者之间产生。
-
-代码:
-
-* []
-
-```Java
-class Solution {
- public int[] advantageCount(int[] nums1, int[] nums2) {
- int n = nums1.length;
- Map> map = new HashMap<>();
- for (int i = 0; i < n; i++) {
- List list = map.getOrDefault(nums2[i], new ArrayList<>());
- list.add(i);
- map.put(nums2[i], list);
- }
- Arrays.sort(nums1); Arrays.sort(nums2);
- int[] ans = new int[n];
- for (int l1 = 0, l2 = 0, r2 = n - 1; l1 < n; l1++) {
- int t = nums1[l1] > nums2[l2] ? l2 : r2;
- List list = map.get(nums2[t]);
- int idx = list.remove(list.size() - 1);
- ans[idx] = nums1[l1];
- if (t == l2) l2++;
- else r2--;
- }
- return ans;
- }
-}
-```
-
-* []
-
-```Python
-class Solution:
- def advantageCount(self, nums1: List[int], nums2: List[int]) -> List[int]:
- n = len(nums1)
- mapping = defaultdict(list)
- for i in range(n):
- mapping[nums2[i]].append(i)
- nums1.sort()
- nums2.sort()
- ans = [0] * n
- l2, r2 = 0, n - 1
- for l1 in range(n):
- t = l2 if nums1[l1] > nums2[l2] else r2
- ans[mapping[nums2[t]].pop()] = nums1[l1]
- if t == l2:
- l2 += 1
- else:
- r2 -= 1
- return ans
-```
-
-* 时间复杂度:$O(n\log{n})$
-* 空间复杂度:$O(n)$
-
----
-
-## 加餐
-
-**节后第一天,加餐一道同类型题目 : [难度 2.5/5,敲醒沉睡心灵的数据结构运用题](https://mp.weixin.qq.com/s?__biz=MzU4NDE3MTEyMA==&mid=2247493710&idx=1&sn=2d6d4ee9f4b1ff1ea766ddf7ea57bf55) 🎉🎉**
-
----
-
-## 最后
-
-**如果有帮助到你,请给题解点个赞和收藏,让更多的人看到 ~ ("▔□▔)/**
-
-所有题解已经加入 [刷题指南](https://github.com/SharingSource/LogicStack-LeetCode/wiki),欢迎 star 哦 ~
diff --git a/leetcode/editor/cn/doc/solution/by-focused-antonellibcp-xp10.lcv b/leetcode/editor/cn/doc/solution/by-focused-antonellibcp-xp10.lcv
deleted file mode 100644
index 783aa671..00000000
--- a/leetcode/editor/cn/doc/solution/by-focused-antonellibcp-xp10.lcv
+++ /dev/null
@@ -1,44 +0,0 @@
-### 解题思路
-
-此处撰写解题思路
-
-### 代码
-
-* python3
-
-```python
-class Solution:
- def minWindow(self, s: str, t: str) -> str:
- '''
- 解题思路:滑动窗苦即可
- 因为t中的字母可以是重复的多个,故用字典来记录处理t中出现的次数比较方便
- '''
- t_dict, window_dict = {}, {}
- for i in range(len(t)): # 将字符串t进行字典化
- if t[i] in t_dict:
- t_dict[t[i]] += 1
- else:
- t_dict[t[i]] = 1
- for key in t_dict: # 初始化滑动窗口的字典
- window_dict[key] = 0
- res, start, min_len = '', 0, float('inf')
- for end in range(len(s)):
- if s[end] in window_dict: window_dict[s[end]] += 1
- while self.valid_window(t_dict, window_dict): # 如果滑动窗口里的字符一直满足即包括t字符串,则满足;需要滑动start寻找最小的
- if min_len > end-start+1: # 记录最小的长度,跟长度最小的子串
- min_len, res = end-start+1, s[start: end+1]
- if s[start] in window_dict: # 在里面就要减一,直到不符合为止,这样才能找到最短的子串
- window_dict[s[start]] -= 1
- start += 1 # 不管在不在window_dict里,都需要将start+1,这样一直缩小范围,直到不符合
- return res
-
- def valid_window(self, t_value, win_value):
- for key in t_value:
- if win_value[key] < t_value[key]: return False
- return True
-
-
-
-
-```
-
diff --git a/leetcode/editor/cn/doc/solution/by-lllyyy-n-77t2.lcv b/leetcode/editor/cn/doc/solution/by-lllyyy-n-77t2.lcv
deleted file mode 100644
index abc9c02b..00000000
--- a/leetcode/editor/cn/doc/solution/by-lllyyy-n-77t2.lcv
+++ /dev/null
@@ -1,28 +0,0 @@
-* []
-
-```python
-"""
-# Definition for a Node.
-class Node:
- def __init__(self, val=None, children=None):
- self.val = val
- self.children = children
-"""
-# 广度优先
-class Solution:
- def levelOrder(self, root: 'Node') -> List[List[int]]:
- if not root:
- return []
- queue = collections.deque([(root, 0)])
- res = []
- while queue:
- node, deep = queue.popleft()
- if len(res) > deep:
- res[deep].append(node.val)
- else:
- res.append([node.val])
- for n in node.children:
- queue.append((n, deep+1))
- return res
-```
-
diff --git a/leetcode/editor/cn/doc/solution/by-nifty-pascale1y-idzd.lcv b/leetcode/editor/cn/doc/solution/by-nifty-pascale1y-idzd.lcv
deleted file mode 100644
index d92c8cec..00000000
--- a/leetcode/editor/cn/doc/solution/by-nifty-pascale1y-idzd.lcv
+++ /dev/null
@@ -1,59 +0,0 @@
-BFS浅浅迭代一下
-
-*
-
-```
-class Solution {
-public:
- vector> levelOrder(Node* root) {
- vector v;
- vector> vec;
- queue q;
- if(!root) return vec;
- q.push(root);
- while(!q.empty()){
- int size=q.size();//就是靠这个size来区分层的,没有进入for循环就还没有开始处理队列中的结点,也就是说此时节点中的都是“本地人”,还没有子代的结点出现
- for(int i=0;ival);
- //该节点的孩子节点非常好处理啊,存在vector中
- vector p=temp->children;
- for(int j=0;j>& result, int depth)//传的引用,只是做题的话我会选择全局变量
- {
- if (cur == nullptr) return;//出队的节点为空,直接continue,递归就是返回上一层了
- if (result.size() == depth) result.push_back(vector());//其实就是在每一层初始化一个一维向量,再存入二位答案数组中,这里简写了罢了
- result[depth].push_back(cur->val);//再depth层存入对应值
- order(cur->left, result, depth + 1);//简洁的递归(如果是N叉树换成循环就是了)
- order(cur->right, result, depth + 1);
- }//虽然进入递归就如同进入了不同的世界,本来不应该产生联系的,但通过同一个二维数组和depth坐标,美妙的将数据放入了指定的位置!
- vector> levelOrder(TreeNode* root) {
- vector> result;//注意这里的二维数组是没有初始化的
- int depth = 0;//定义深度,分层用的
- order(root, result, depth);//根节点,二维答案数组,深度
- return result;
- }
-};
-```
-
diff --git a/leetcode/editor/cn/doc/solution/by-nostalgic-bassixsw-joja.lcv b/leetcode/editor/cn/doc/solution/by-nostalgic-bassixsw-joja.lcv
deleted file mode 100644
index 66bff98a..00000000
--- a/leetcode/editor/cn/doc/solution/by-nostalgic-bassixsw-joja.lcv
+++ /dev/null
@@ -1,56 +0,0 @@
-*
-
-```
-class Solution {
- public int[] sortArray(int[] nums) {
- quickSort(nums,0,nums.length-1);
- return nums;
- }
- public static void quickSort(int[] array,int left,int right)
- {
- int l = left;
- int r = right;
- int pivot = array[(left+right)/2];
- int temp = 0;
-
- while(l < r)
- {
- while(array[l] < pivot){
- l += 1;
- }
- while(array[r] > pivot){
- r -= 1;
- }
-
- if(l >= r){
- break;
- }
-
- temp = array[l];
- array[l] = array[r];
- array[r] = temp;
-
- if(array[l] == pivot){
- r-=1;
- }
- if(array[r] == pivot){
- l+=1;
- }
- }
-
- if(l==r){
- l += 1;
- r -= 1;
- }
-
- if(left < r){
- quickSort(array,left,r);
- }
-
- if(right > l){
- quickSort(array,l,right);
- }
- }
-}
-```
-
diff --git a/leetcode/editor/cn/doc/solution/by-san-er-yi-4-0nes.lcv b/leetcode/editor/cn/doc/solution/by-san-er-yi-4-0nes.lcv
deleted file mode 100644
index e86d75ec..00000000
--- a/leetcode/editor/cn/doc/solution/by-san-er-yi-4-0nes.lcv
+++ /dev/null
@@ -1,54 +0,0 @@
-### 解题思路
-
-此处撰写解题思路
-首先序列化,递归先序遍历,注意:空结点存为null。注意将结果存为字符串,因为deserialize函数的data参数是字符串格式。
-其次,递归构建树。
-因为要用到队列,所以将字符串格式的data,转为列表。(python里列表通过pop函数可以当作队列来使用)
-因为先序遍历,先遍历根节点。
-取出队首元素(出队列),作为根节点,下一个队首为根节点的左子树结点,结点为空时返回,下一个值为当前节点右子树的根节点。......
-
-### 代码
-
-* python3
-
-```python
-# Definition for a binary tree node.
-# class TreeNode(object):
-# def __init__(self, x):
-# self.val = x
-# self.left = None
-# self.right = None
-
-class Codec:
-
- def serialize(self, root):
- if not root:
- return "null,"
- left=self.serialize(root.left)
- right=self.serialize(root.right)
- return str(root.val)+','+left+right
-
-
-
- def dfs(self,res:List)->TreeNode:
- val=res.pop(0)
- if val=='null':
- return None
- root=TreeNode(val)
- root.left=self.dfs(res)
- root.right=self.dfs(res)
- return root
-
- def deserialize(self, data):
- root=self.dfs(data.split(','))
- return root
-
-
-
-
-# Your Codec object will be instantiated and called as such:
-# ser = Codec()
-# deser = Codec()
-# ans = deser.deserialize(ser.serialize(root))
-```
-
diff --git a/leetcode/editor/cn/doc/solution/container-with-most-water-shuang-zhi-zhen-fa-yi-do.lcv b/leetcode/editor/cn/doc/solution/container-with-most-water-shuang-zhi-zhen-fa-yi-do.lcv
deleted file mode 100644
index 42aed15d..00000000
--- a/leetcode/editor/cn/doc/solution/container-with-most-water-shuang-zhi-zhen-fa-yi-do.lcv
+++ /dev/null
@@ -1,92 +0,0 @@
-设两指针 $i$ , $j$ ,指向的水槽板高度分别为 $h[i]$ , $h[j]$ ,此状态下水槽面积为 $S(i, j)$ 。由于可容纳水的高度由两板中的 **短板** 决定,因此可得如下 **面积公式** :
-
-$$
-S(i, j) = min(h[i], h[j]) × (j - i)
-$$
-
-
-
-在每个状态下,无论长板或短板向中间收窄一格,都会导致水槽 **底边宽度** $-1$ 变短:
-
-- 若向内 **移动短板** ,水槽的短板 $min(h[i], h[j])$ 可能变大,因此下个水槽的面积 **可能增大** 。
-- 若向内 **移动长板** ,水槽的短板 $min(h[i], h[j])$ 不变或变小,因此下个水槽的面积 **一定变小** 。
-
-因此,初始化双指针分列水槽左右两端,循环每轮将短板向内移动一格,并更新面积最大值,直到两指针相遇时跳出;即可获得最大面积。
-
-#### 算法流程:
-
-1. **初始化:** 双指针 $i$ , $j$ 分列水槽左右两端;
-2. **循环收窄:** 直至双指针相遇时跳出;
- 1. 更新面积最大值 $res$ ;
- 2. 选定两板高度中的短板,向中间收窄一格;
-3. **返回值:** 返回面积最大值 $res$ 即可;
-
-#### 正确性证明:
-
-若暴力枚举,水槽两板围成面积 $S(i, j)$ 的状态总数为 $C(n, 2)$ 。
-
-假设状态 $S(i, j)$ 下 $h[i] < h[j]$ ,在向内移动短板至 $S(i + 1, j)$ ,则相当于消去了 ${S(i, j - 1), S(i, j - 2), ... , S(i, i + 1)}$ 状态集合。而所有消去状态的面积一定都小于当前面积(即 $< S(i, j)$),因为这些状态:
-
-- 短板高度:相比 $S(i, j)$ 相同或更短(即 $\leq h[i]$ );
-- 底边宽度:相比 $S(i, j)$ 更短;
-
-因此,每轮向内移动短板,所有消去的状态都 **不会导致面积最大值丢失** ,证毕。
-
-
-
-#### 复杂度分析:
-
-- **时间复杂度 $O(N)$ :** 双指针遍历一次底边宽度 $N$ 。
-- **空间复杂度 $O(1)$ :** 变量 $i$ , $j$ , $res$ 使用常数额外空间。
-
-#### 代码:
-
-* []
-
-```Python
-class Solution:
- def maxArea(self, height: List[int]) -> int:
- i, j, res = 0, len(height) - 1, 0
- while i < j:
- if height[i] < height[j]:
- res = max(res, height[i] * (j - i))
- i += 1
- else:
- res = max(res, height[j] * (j - i))
- j -= 1
- return res
-```
-
-* []
-
-```Java
-class Solution {
- public int maxArea(int[] height) {
- int i = 0, j = height.length - 1, res = 0;
- while(i < j) {
- res = height[i] < height[j] ?
- Math.max(res, (j - i) * height[i++]):
- Math.max(res, (j - i) * height[j--]);
- }
- return res;
- }
-}
-```
-
-* []
-
-```C++
-class Solution {
-public:
- int maxArea(vector& height) {
- int i = 0, j = height.size() - 1, res = 0;
- while(i < j) {
- res = height[i] < height[j] ?
- max(res, (j - i) * height[i++]):
- max(res, (j - i) * height[j--]);
- }
- return res;
- }
-};
-```
-
diff --git a/leetcode/editor/cn/doc/solution/jie-ma-fang-fa-by-leetcode-solution-p8np.lcv b/leetcode/editor/cn/doc/solution/jie-ma-fang-fa-by-leetcode-solution-p8np.lcv
deleted file mode 100644
index 1f544107..00000000
--- a/leetcode/editor/cn/doc/solution/jie-ma-fang-fa-by-leetcode-solution-p8np.lcv
+++ /dev/null
@@ -1,292 +0,0 @@
-#### 方法一:动态规划
-
-**思路与算法**
-
-对于给定的字符串 $s$,设它的长度为 $n$,其中的字符从左到右依次为 $s[1], s[2], \cdots, s[n]$。我们可以使用动态规划的方法计算出字符串 $s$ 的解码方法数。
-
-具体地,设 $f_i$ 表示字符串 $s$ 的前 $i$ 个字符 $s[1..i]$ 的解码方法数。在进行状态转移时,我们可以考虑最后一次解码使用了 $s$ 中的哪些字符,那么会有下面的两种情况:
-
-- 第一种情况是我们使用了一个字符,即 $s[i]$ 进行解码,那么只要 $s[i] \neq 0$,它就可以被解码成 $\text{A} \sim \text{I}$ 中的某个字母。由于剩余的前 $i-1$ 个字符的解码方法数为 $f_{i-1}$,因此我们可以写出状态转移方程:
-
- $$
- f_i = f_{i-1}, \quad 其中 ~ s[i] \neq 0
- $$
-
-- 第二种情况是我们使用了两个字符,即 $s[i-1]$ 和 $s[i]$ 进行编码。与第一种情况类似,$s[i-1]$ 不能等于 $0$,并且 $s[i-1]$ 和 $s[i]$ 组成的整数必须小于等于 $26$,这样它们就可以被解码成 $\text{J} \sim \text{Z}$ 中的某个字母。由于剩余的前 $i-2$ 个字符的解码方法数为 $f_{i-2}$,因此我们可以写出状态转移方程:
-
- $$
- f_i = f_{i-2}, \quad 其中 ~ s[i-1] \neq 0 ~并且~ 10\cdot s[i-1]+s[i] \leq 26
- $$
-
- 需要注意的是,只有当 $i>1$ 时才能进行转移,否则 $s[i-1]$ 不存在。
-
-将上面的两种状态转移方程在对应的条件满足时进行累加,即可得到 $f_i$ 的值。在动态规划完成后,最终的答案即为 $f_n$。
-
-**细节**
-
-动态规划的边界条件为:
-
-$$
-f_0 = 1
-$$
-
-即**空字符串可以有 $1$ 种解码方法,解码出一个空字符串**。
-
-同时,由于在大部分语言中,字符串的下标是从 $0$ 而不是 $1$ 开始的,因此在代码的编写过程中,我们需要将所有字符串的下标减去 $1$,与使用的语言保持一致。
-
-**代码**
-
-* [sol11-C++]
-
-```C++
-class Solution {
-public:
- int numDecodings(string s) {
- int n = s.size();
- vector f(n + 1);
- f[0] = 1;
- for (int i = 1; i <= n; ++i) {
- if (s[i - 1] != '0') {
- f[i] += f[i - 1];
- }
- if (i > 1 && s[i - 2] != '0' && ((s[i - 2] - '0') * 10 + (s[i - 1] - '0') <= 26)) {
- f[i] += f[i - 2];
- }
- }
- return f[n];
- }
-};
-```
-
-* [sol11-Java]
-
-```Java
-class Solution {
- public int numDecodings(String s) {
- int n = s.length();
- int[] f = new int[n + 1];
- f[0] = 1;
- for (int i = 1; i <= n; ++i) {
- if (s.charAt(i - 1) != '0') {
- f[i] += f[i - 1];
- }
- if (i > 1 && s.charAt(i - 2) != '0' && ((s.charAt(i - 2) - '0') * 10 + (s.charAt(i - 1) - '0') <= 26)) {
- f[i] += f[i - 2];
- }
- }
- return f[n];
- }
-}
-```
-
-* [sol11-Python3]
-
-```Python
-class Solution:
- def numDecodings(self, s: str) -> int:
- n = len(s)
- f = [1] + [0] * n
- for i in range(1, n + 1):
- if s[i - 1] != '0':
- f[i] += f[i - 1]
- if i > 1 and s[i - 2] != '0' and int(s[i-2:i]) <= 26:
- f[i] += f[i - 2]
- return f[n]
-```
-
-* [sol11-JavaScript]
-
-```JavaScript
-var numDecodings = function(s) {
- const n = s.length;
- const f = new Array(n + 1).fill(0);
- f[0] = 1;
- for (let i = 1; i <= n; ++i) {
- if (s[i - 1] !== '0') {
- f[i] += f[i - 1];
- }
- if (i > 1 && s[i - 2] != '0' && ((s[i - 2] - '0') * 10 + (s[i - 1] - '0') <= 26)) {
- f[i] += f[i - 2];
- }
- }
- return f[n];
-};
-```
-
-* [sol11-Golang]
-
-```go
-func numDecodings(s string) int {
- n := len(s)
- f := make([]int, n+1)
- f[0] = 1
- for i := 1; i <= n; i++ {
- if s[i-1] != '0' {
- f[i] += f[i-1]
- }
- if i > 1 && s[i-2] != '0' && ((s[i-2]-'0')*10+(s[i-1]-'0') <= 26) {
- f[i] += f[i-2]
- }
- }
- return f[n]
-}
-```
-
-* [sol11-C]
-
-```C
-int numDecodings(char* s) {
- int n = strlen(s);
- int f[n + 1];
- memset(f, 0, sizeof(f));
- f[0] = 1;
- for (int i = 1; i <= n; ++i) {
- if (s[i - 1] != '0') {
- f[i] += f[i - 1];
- }
- if (i > 1 && s[i - 2] != '0' && ((s[i - 2] - '0') * 10 + (s[i - 1] - '0') <= 26)) {
- f[i] += f[i - 2];
- }
- }
- return f[n];
-}
-```
-
-注意到在状态转移方程中,$f_i$ 的值仅与 $f_{i-1}$ 和 $f_{i-2}$ 有关,因此我们可以使用三个变量进行状态转移,省去数组的空间。
-
-* [sol12-C++]
-
-```C++
-class Solution {
-public:
- int numDecodings(string s) {
- int n = s.size();
- // a = f[i-2], b = f[i-1], c = f[i]
- int a = 0, b = 1, c;
- for (int i = 1; i <= n; ++i) {
- c = 0;
- if (s[i - 1] != '0') {
- c += b;
- }
- if (i > 1 && s[i - 2] != '0' && ((s[i - 2] - '0') * 10 + (s[i - 1] - '0') <= 26)) {
- c += a;
- }
- tie(a, b) = {b, c};
- }
- return c;
- }
-};
-```
-
-* [sol12-Java]
-
-```Java
-class Solution {
- public int numDecodings(String s) {
- int n = s.length();
- // a = f[i-2], b = f[i-1], c=f[i]
- int a = 0, b = 1, c = 0;
- for (int i = 1; i <= n; ++i) {
- c = 0;
- if (s.charAt(i - 1) != '0') {
- c += b;
- }
- if (i > 1 && s.charAt(i - 2) != '0' && ((s.charAt(i - 2) - '0') * 10 + (s.charAt(i - 1) - '0') <= 26)) {
- c += a;
- }
- a = b;
- b = c;
- }
- return c;
- }
-}
-```
-
-* [sol12-Python3]
-
-```Python
-class Solution:
- def numDecodings(self, s: str) -> int:
- n = len(s)
- # a = f[i-2], b = f[i-1], c = f[i]
- a, b, c = 0, 1, 0
- for i in range(1, n + 1):
- c = 0
- if s[i - 1] != '0':
- c += b
- if i > 1 and s[i - 2] != '0' and int(s[i-2:i]) <= 26:
- c += a
- a, b = b, c
- return c
-```
-
-* [sol12-JavaScript]
-
-```JavaScript
-var numDecodings = function(s) {
- const n = s.length;
- // a = f[i-2], b = f[i-1], c = f[i]
- let a = 0, b = 1, c = 0;
- for (let i = 1; i <= n; ++i) {
- c = 0;
- if (s[i - 1] !== '0') {
- c += b;
- }
- if (i > 1 && s[i - 2] != '0' && ((s[i - 2] - '0') * 10 + (s[i - 1] - '0') <= 26)) {
- c += a;
- }
- a = b;
- b = c;
- }
- return c;
-};
-```
-
-* [sol12-Golang]
-
-```go
-func numDecodings(s string) int {
- n := len(s)
- // a = f[i-2], b = f[i-1], c = f[i]
- a, b, c := 0, 1, 0
- for i := 1; i <= n; i++ {
- c = 0
- if s[i-1] != '0' {
- c += b
- }
- if i > 1 && s[i-2] != '0' && ((s[i-2]-'0')*10+(s[i-1]-'0') <= 26) {
- c += a
- }
- a, b = b, c
- }
- return c
-}
-```
-
-* [sol12-C]
-
-```C
-int numDecodings(char* s) {
- int n = strlen(s);
- // a = f[i-2], b = f[i-1], c = f[i]
- int a = 0, b = 1, c;
- for (int i = 1; i <= n; ++i) {
- c = 0;
- if (s[i - 1] != '0') {
- c += b;
- }
- if (i > 1 && s[i - 2] != '0' && ((s[i - 2] - '0') * 10 + (s[i - 1] - '0') <= 26)) {
- c += a;
- }
- a = b, b = c;
- }
- return c;
-}
-```
-
-**复杂度分析**
-
-- 时间复杂度:$O(n)$,其中 $n$ 是字符串 $s$ 的长度。
-
-- 空间复杂度:$O(n)$ 或 $O(1)$。如果使用数组进行状态转移,空间复杂度为 $O(n)$;如果仅使用三个变量,空间复杂度为 $O(1)$。
-
diff --git a/leetcode/editor/cn/doc/solution/pai-xu-shu-zu-by-leetcode-solution.lcv b/leetcode/editor/cn/doc/solution/pai-xu-shu-zu-by-leetcode-solution.lcv
deleted file mode 100644
index 6cd5e1dd..00000000
--- a/leetcode/editor/cn/doc/solution/pai-xu-shu-zu-by-leetcode-solution.lcv
+++ /dev/null
@@ -1,445 +0,0 @@
-#### 前言
-
-本题你可以选择直接调用库函数来对序列进行排序,但意义不大。由于排序算法有很多,本文只介绍三种常见的基于比较的复杂度较低的排序。
-
-#### 方法一:快速排序
-
-**思路和算法**
-
-快速排序的主要思想是通过划分将待排序的序列分成前后两部分,其中前一部分的数据都比后一部分的数据要小,然后再递归调用函数对两部分的序列分别进行快速排序,以此使整个序列达到有序。
-
-我们定义函数 `randomized_quicksort(nums, l, r)` 为对 `nums` 数组里 $[l,r]$ 的部分进行排序,每次先调用 `randomized_partition` 函数对 `nums` 数组里 $[l,r]$ 的部分进行划分,并返回分界值的下标 `pos`,然后按上述将的递归调用 `randomized_quicksort(nums, l, pos - 1)` 和 `randomized_quicksort(nums, pos + 1, r)` 即可。
-
-那么核心就是划分函数的实现了,划分函数一开始需要确定一个分界值(我们称之为主元 `pivot`),然后再进行划分。而主元的选取有很多种方式,这里我们采用随机的方式,对当前划分区间 $[l,r]$ 里的数等概率随机一个作为我们的主元,再将主元放到区间末尾,进行划分。
-
-整个划分函数 `partition` 主要涉及两个指针 $i$ 和 $j$,一开始 `i = l - 1`,`j = l`。我们需要实时维护两个指针使得任意时候,对于任意数组下标 $k$,我们有如下条件成立:
-1. $l\leq k\leq i$ 时,$\textit{nums}[k]\leq \textit{pivot}$。
-
-2. $i+1\leq k\leq j-1$ 时,$\textit{nums}[k]> \textit{pivot}$。
-
-3. $k==r$ 时,$\textit{nums}[k]=\textit{pivot}$。
-
-我们每次移动指针 $j$ ,如果 $\textit{nums}[j]> pivot$,我们只需要继续移动指针 $j$ ,即能使上述三个条件成立,否则我们需要将指针 $i$ 加一,然后交换 $\textit{nums}[i]$ 和 $\textit{nums}[j]$,再移动指针 $j$ 才能使得三个条件成立。
-
-当 $j$ 移动到 $r-1$ 时结束循环,此时我们可以由上述三个条件知道 $[l,i]$ 的数都小于等于主元 `pivot`,$[i+1,r-1]$ 的数都大于主元 `pivot`,那么我们只要交换 $\textit{nums}[i+1]$ 和 $\textit{nums}[r]$ ,即能使得 $[l,i+1]$ 区间的数都小于 $[i+2,r]$ 区间的数,完成一次划分,且分界值下标为 $i+1$,返回即可。
-
-如下的动图展示了一次划分的过程,刚开始随机选了 $4$ 作为主元,与末尾元素交换后开始划分:
-
-
-
-* [sol1-C++]
-
-```C++
-class Solution {
- int partition(vector& nums, int l, int r) {
- int pivot = nums[r];
- int i = l - 1;
- for (int j = l; j <= r - 1; ++j) {
- if (nums[j] <= pivot) {
- i = i + 1;
- swap(nums[i], nums[j]);
- }
- }
- swap(nums[i + 1], nums[r]);
- return i + 1;
- }
- int randomized_partition(vector& nums, int l, int r) {
- int i = rand() % (r - l + 1) + l; // 随机选一个作为我们的主元
- swap(nums[r], nums[i]);
- return partition(nums, l, r);
- }
- void randomized_quicksort(vector& nums, int l, int r) {
- if (l < r) {
- int pos = randomized_partition(nums, l, r);
- randomized_quicksort(nums, l, pos - 1);
- randomized_quicksort(nums, pos + 1, r);
- }
- }
-public:
- vector sortArray(vector& nums) {
- srand((unsigned)time(NULL));
- randomized_quicksort(nums, 0, (int)nums.size() - 1);
- return nums;
- }
-};
-```
-
-* [sol1-Java]
-
-```Java
-class Solution {
- public int[] sortArray(int[] nums) {
- randomizedQuicksort(nums, 0, nums.length - 1);
- return nums;
- }
-
- public void randomizedQuicksort(int[] nums, int l, int r) {
- if (l < r) {
- int pos = randomizedPartition(nums, l, r);
- randomizedQuicksort(nums, l, pos - 1);
- randomizedQuicksort(nums, pos + 1, r);
- }
- }
-
- public int randomizedPartition(int[] nums, int l, int r) {
- int i = new Random().nextInt(r - l + 1) + l; // 随机选一个作为我们的主元
- swap(nums, r, i);
- return partition(nums, l, r);
- }
-
- public int partition(int[] nums, int l, int r) {
- int pivot = nums[r];
- int i = l - 1;
- for (int j = l; j <= r - 1; ++j) {
- if (nums[j] <= pivot) {
- i = i + 1;
- swap(nums, i, j);
- }
- }
- swap(nums, i + 1, r);
- return i + 1;
- }
-
- private void swap(int[] nums, int i, int j) {
- int temp = nums[i];
- nums[i] = nums[j];
- nums[j] = temp;
- }
-}
-```
-
-* [sol1-Python3]
-
-```Python
-class Solution:
- def randomized_partition(self, nums, l, r):
- pivot = random.randint(l, r)
- nums[pivot], nums[r] = nums[r], nums[pivot]
- i = l - 1
- for j in range(l, r):
- if nums[j] < nums[r]:
- i += 1
- nums[j], nums[i] = nums[i], nums[j]
- i += 1
- nums[i], nums[r] = nums[r], nums[i]
- return i
-
- def randomized_quicksort(self, nums, l, r):
- if r - l <= 0:
- return
- mid = self.randomized_partition(nums, l, r)
- self.randomized_quicksort(nums, l, mid - 1)
- self.randomized_quicksort(nums, mid + 1, r)
-
- def sortArray(self, nums: List[int]) -> List[int]:
- self.randomized_quicksort(nums, 0, len(nums) - 1)
- return nums
-```
-
-**复杂度分析**
-
-- 时间复杂度:基于随机选取主元的快速排序时间复杂度为期望 $O(n\log n)$,其中 $n$ 为数组的长度。详细证明过程可以见《算法导论》第七章,这里不再大篇幅赘述。
-
-- 空间复杂度:$O(h)$,其中 $h$ 为快速排序递归调用的层数。我们需要额外的 $O(h)$ 的递归调用的栈空间,由于划分的结果不同导致了快速排序递归调用的层数也会不同,最坏情况下需 $O(n)$ 的空间,最优情况下每次都平衡,此时整个递归树高度为 $\log n$,空间复杂度为 $O(\log n)$。
-
-#### 方法二:堆排序
-
-**预备知识**
-
-- 堆
-
-**思路和算法**
-
-堆排序的思想就是先将待排序的序列建成大根堆,使得每个父节点的元素大于等于它的子节点。此时整个序列最大值即为堆顶元素,我们将其与末尾元素交换,使末尾元素为最大值,然后再调整堆顶元素使得剩下的 $n-1$ 个元素仍为大根堆,再重复执行以上操作我们即能得到一个有序的序列。
-
-如下两个动图展示了对 `[4, 6, 8, 5, 9]` 这个数组堆排序的过程:
-
-
-
-
-
-* [sol2-C++]
-
-```C++
-class Solution {
- void maxHeapify(vector& nums, int i, int len) {
- for (; (i << 1) + 1 <= len;) {
- int lson = (i << 1) + 1;
- int rson = (i << 1) + 2;
- int large;
- if (lson <= len && nums[lson] > nums[i]) {
- large = lson;
- } else {
- large = i;
- }
- if (rson <= len && nums[rson] > nums[large]) {
- large = rson;
- }
- if (large != i) {
- swap(nums[i], nums[large]);
- i = large;
- } else {
- break;
- }
- }
- }
- void buildMaxHeap(vector& nums, int len) {
- for (int i = len / 2; i >= 0; --i) {
- maxHeapify(nums, i, len);
- }
- }
- void heapSort(vector& nums) {
- int len = (int)nums.size() - 1;
- buildMaxHeap(nums, len);
- for (int i = len; i >= 1; --i) {
- swap(nums[i], nums[0]);
- len -= 1;
- maxHeapify(nums, 0, len);
- }
- }
-public:
- vector sortArray(vector& nums) {
- heapSort(nums);
- return nums;
- }
-};
-```
-
-* [sol2-Java]
-
-```Java
-class Solution {
- public int[] sortArray(int[] nums) {
- heapSort(nums);
- return nums;
- }
-
- public void heapSort(int[] nums) {
- int len = nums.length - 1;
- buildMaxHeap(nums, len);
- for (int i = len; i >= 1; --i) {
- swap(nums, i, 0);
- len -= 1;
- maxHeapify(nums, 0, len);
- }
- }
-
- public void buildMaxHeap(int[] nums, int len) {
- for (int i = len / 2; i >= 0; --i) {
- maxHeapify(nums, i, len);
- }
- }
-
- public void maxHeapify(int[] nums, int i, int len) {
- for (; (i << 1) + 1 <= len;) {
- int lson = (i << 1) + 1;
- int rson = (i << 1) + 2;
- int large;
- if (lson <= len && nums[lson] > nums[i]) {
- large = lson;
- } else {
- large = i;
- }
- if (rson <= len && nums[rson] > nums[large]) {
- large = rson;
- }
- if (large != i) {
- swap(nums, i, large);
- i = large;
- } else {
- break;
- }
- }
- }
-
- private void swap(int[] nums, int i, int j) {
- int temp = nums[i];
- nums[i] = nums[j];
- nums[j] = temp;
- }
-}
-```
-
-* [sol2-Python3]
-
-```Python
-class Solution:
- def max_heapify(self, heap, root, heap_len):
- p = root
- while p * 2 + 1 < heap_len:
- l, r = p * 2 + 1, p * 2 + 2
- if heap_len <= r or heap[r] < heap[l]:
- nex = l
- else:
- nex = r
- if heap[p] < heap[nex]:
- heap[p], heap[nex] = heap[nex], heap[p]
- p = nex
- else:
- break
-
- def build_heap(self, heap):
- for i in range(len(heap) - 1, -1, -1):
- self.max_heapify(heap, i, len(heap))
-
- def heap_sort(self, nums):
- self.build_heap(nums)
- for i in range(len(nums) - 1, -1, -1):
- nums[i], nums[0] = nums[0], nums[i]
- self.max_heapify(nums, 0, i)
-
- def sortArray(self, nums: List[int]) -> List[int]:
- self.heap_sort(nums)
- return nums
-```
-
-**复杂度分析**
-
-- 时间复杂度:$O(n\log n)$。初始化建堆的时间复杂度为 $O(n)$,建完堆以后需要进行 $n-1$ 次调整,一次调整(即 `maxHeapify`) 的时间复杂度为 $O(\log n)$,那么 $n-1$ 次调整即需要 $O(n\log n)$ 的时间复杂度。因此,总时间复杂度为 $O(n+n\log n)=O(n\log n)$。
-
-- 空间复杂度:$O(1)$。只需要常数的空间存放若干变量。
-
-#### 方法三:归并排序
-
-**思路**
-
-归并排序利用了分治的思想来对序列进行排序。对一个长为 $n$ 的待排序的序列,我们将其分解成两个长度为 $\frac{n}{2}$ 的子序列。每次先递归调用函数使两个子序列有序,然后我们再线性合并两个有序的子序列使整个序列有序。
-
-**算法**
-
-定义 `mergeSort(nums, l, r)` 函数表示对 `nums` 数组里 $[l,r]$ 的部分进行排序,整个函数流程如下:
-
-1. 递归调用函数 `mergeSort(nums, l, mid)` 对 `nums` 数组里 $[l,\textit{mid}]$ 部分进行排序。
-
-2. 递归调用函数 `mergeSort(nums, mid + 1, r)` 对 `nums` 数组里 $[\textit{mid}+1,r]$ 部分进行排序。
-
-3. 此时 `nums` 数组里 $[l,\textit{mid}]$ 和 $[\textit{mid}+1,r]$ 两个区间已经有序,我们对两个有序区间线性归并即可使 `nums` 数组里 $[l,r]$ 的部分有序。
-
- 线性归并的过程并不难理解,由于两个区间均有序,所以我们维护两个指针 $i$ 和 $j$ 表示当前考虑到 $[l,\textit{mid}]$ 里的第 $i$ 个位置和 $[\textit{mid}+1,r]$ 的第 $j$ 个位置。
-
- 如果 `nums[i] <= nums[j]` ,那么我们就将 $\textit{nums}[i]$ 放入临时数组 `tmp` 中并让 `i += 1` ,即指针往后移。否则我们就将 $\textit{nums}[j]$ 放入临时数组 `tmp` 中并让 `j += 1` 。如果有一个指针已经移到了区间的末尾,那么就把另一个区间里的数按顺序加入 `tmp` 数组中即可。
-
- 这样能保证我们每次都是让两个区间中较小的数加入临时数组里,那么整个归并过程结束后 $[l,r]$ 即为有序的。
-
-如下的动图展示了两个有序数组线性归并的过程:
-
-
-
-函数递归调用的入口为 `mergeSort(nums, 0, nums.length - 1)`,递归结束当且仅当 `l >= r`。
-
-* [sol3-C++]
-
-```C++
-class Solution {
- vector tmp;
- void mergeSort(vector& nums, int l, int r) {
- if (l >= r) return;
- int mid = (l + r) >> 1;
- mergeSort(nums, l, mid);
- mergeSort(nums, mid + 1, r);
- int i = l, j = mid + 1;
- int cnt = 0;
- while (i <= mid && j <= r) {
- if (nums[i] <= nums[j]) {
- tmp[cnt++] = nums[i++];
- }
- else {
- tmp[cnt++] = nums[j++];
- }
- }
- while (i <= mid) {
- tmp[cnt++] = nums[i++];
- }
- while (j <= r) {
- tmp[cnt++] = nums[j++];
- }
- for (int i = 0; i < r - l + 1; ++i) {
- nums[i + l] = tmp[i];
- }
- }
-public:
- vector sortArray(vector& nums) {
- tmp.resize((int)nums.size(), 0);
- mergeSort(nums, 0, (int)nums.size() - 1);
- return nums;
- }
-};
-```
-
-* [sol3-Java]
-
-```Java
-class Solution {
- int[] tmp;
-
- public int[] sortArray(int[] nums) {
- tmp = new int[nums.length];
- mergeSort(nums, 0, nums.length - 1);
- return nums;
- }
-
- public void mergeSort(int[] nums, int l, int r) {
- if (l >= r) {
- return;
- }
- int mid = (l + r) >> 1;
- mergeSort(nums, l, mid);
- mergeSort(nums, mid + 1, r);
- int i = l, j = mid + 1;
- int cnt = 0;
- while (i <= mid && j <= r) {
- if (nums[i] <= nums[j]) {
- tmp[cnt++] = nums[i++];
- } else {
- tmp[cnt++] = nums[j++];
- }
- }
- while (i <= mid) {
- tmp[cnt++] = nums[i++];
- }
- while (j <= r) {
- tmp[cnt++] = nums[j++];
- }
- for (int k = 0; k < r - l + 1; ++k) {
- nums[k + l] = tmp[k];
- }
- }
-}
-```
-
-* [sol3-Python3]
-
-```Python
-class Solution:
- def merge_sort(self, nums, l, r):
- if l == r:
- return
- mid = (l + r) // 2
- self.merge_sort(nums, l, mid)
- self.merge_sort(nums, mid + 1, r)
- tmp = []
- i, j = l, mid + 1
- while i <= mid or j <= r:
- if i > mid or (j <= r and nums[j] < nums[i]):
- tmp.append(nums[j])
- j += 1
- else:
- tmp.append(nums[i])
- i += 1
- nums[l: r + 1] = tmp
-
- def sortArray(self, nums: List[int]) -> List[int]:
- self.merge_sort(nums, 0, len(nums) - 1)
- return nums
-```
-
-**复杂度分析**
-
-- 时间复杂度:$O(n\log n)$。由于归并排序每次都将当前待排序的序列折半成两个子序列递归调用,然后再合并两个有序的子序列,而每次合并两个有序的子序列需要 $O(n)$ 的时间复杂度,所以我们可以列出归并排序运行时间 $T(n)$ 的递归表达式:
- $$
- T(n)=2T(\frac{n}{2})+O(n)
- $$
- 根据主定理我们可以得出归并排序的时间复杂度为 $O(n\log n)$。
-
-- 空间复杂度:$O(n)$。我们需要额外 $O(n)$ 空间的 $\textit{tmp}$ 数组,且归并排序递归调用的层数最深为 $\log_2 n$,所以我们还需要额外的 $O(\log n )$ 的栈空间,所需的空间复杂度即为 $O(n+\log n) = O(n)$。
-
diff --git a/leetcode/editor/cn/doc/solution/python-dfs-wu-fu-zhu-han-shu-by-canon-in-y6yd.lcv b/leetcode/editor/cn/doc/solution/python-dfs-wu-fu-zhu-han-shu-by-canon-in-y6yd.lcv
deleted file mode 100644
index 3725ea47..00000000
--- a/leetcode/editor/cn/doc/solution/python-dfs-wu-fu-zhu-han-shu-by-canon-in-y6yd.lcv
+++ /dev/null
@@ -1,34 +0,0 @@
-### 解题思路
-
-节点*node*的层序遍历就是它本身加上它的子节点们的层序遍历。(需要把子节点们的层序遍历合并起来。)
-
-拿测试用例举个例子
-
-叶子结点5的层序遍历就是它本身[[5]],因为它没有子节点。
-
-节点3的子节点有5,6,它们的层序遍历分别是[[5]], [[6]]。把它们按照顺序合并起来就变成[[5,6]]了,再在头部加上节点3,就变成[[3], [5,6]]。这就是节点3的层序遍历。
-
-节点1的子节点有3,2,4,它们的层序遍历分别是[[3],[5,6]], [[2]], [[4]]。把他们按照顺序合并起来就变成[[3,2,4],[5,6]]了,再在头部加上节点1,就变成[[1],[3,2,4],[5,6]]了。这就是整棵树的层序遍历。
-
-### 代码
-
-* []
-
-```python
-class Solution:
- def levelOrder(self, root: 'Node') -> List[List[int]]:
- if not root: # 判断根节点为空
- return []
- if not root.children: # 如果是叶子节点,返回节点本身
- return [[root.val]]
- cur = []
- for child in root.children:
- nxt = self.levelOrder(child)
- idx = 0
- while idx < len(cur) and idx < len(nxt): # 合并叶子结点的层序遍历
- cur[idx] += nxt[idx]
- idx += 1
- cur += nxt[idx:]
- return [[root.val]] + cur # 再头部加上节点本身
-```
-
diff --git a/leetcode/editor/cn/doc/solution/python3-bfs-by-accsrd-iaqb.lcv b/leetcode/editor/cn/doc/solution/python3-bfs-by-accsrd-iaqb.lcv
deleted file mode 100644
index 6a190566..00000000
--- a/leetcode/editor/cn/doc/solution/python3-bfs-by-accsrd-iaqb.lcv
+++ /dev/null
@@ -1,25 +0,0 @@
-### 解题思路
-
-BFS模板题。将二叉树的左右子树改为遍历children列表即可。
-
-### 代码
-
-* python3
-
-```python
-class Solution:
- def levelOrder(self, root: 'Node') -> List[List[int]]:
- stack = deque([root]) if root else []
- ans = []
- while stack:
- len_layer, cur_layer = len(stack), []
- for _ in range(len_layer):
- cur_node = stack.popleft()
- cur_layer.append(cur_node.val)
- for node in cur_node.children:
- stack.append(node)
- ans.append(cur_layer)
- return ans
-
-```
-
diff --git a/leetcode/editor/cn/doc/solution/python3-shuang-zhi-zhen-dong-tai-bian-ch-8q15.lcv b/leetcode/editor/cn/doc/solution/python3-shuang-zhi-zhen-dong-tai-bian-ch-8q15.lcv
deleted file mode 100644
index a52bed14..00000000
--- a/leetcode/editor/cn/doc/solution/python3-shuang-zhi-zhen-dong-tai-bian-ch-8q15.lcv
+++ /dev/null
@@ -1,28 +0,0 @@
-### 解题思路
-
-此处撰写解题思路
-
-### 代码
-
-* python3
-
-```python
-class Solution:
- def trap(self, height: List[int]) -> int:
- leftIdx = 0
- rightIdx = len(height) - 1
- leftMax = 0
- rightMax = 0
- trapCnt = 0
- while leftIdx < rightIdx:
- leftMax = max(leftMax, height[leftIdx])
- rightMax = max(rightMax, height[rightIdx])
- if leftMax > rightMax:
- trapCnt += rightMax - height[rightIdx]
- rightIdx -= 1
- else:
- trapCnt += leftMax - height[leftIdx]
- leftIdx += 1
- return trapCnt
-```
-
diff --git a/leetcode/editor/cn/doc/solution/pythonmian-shi-zui-jian-ji-de-kuai-su-pa-kqg0.lcv b/leetcode/editor/cn/doc/solution/pythonmian-shi-zui-jian-ji-de-kuai-su-pa-kqg0.lcv
deleted file mode 100644
index 8ca484b8..00000000
--- a/leetcode/editor/cn/doc/solution/pythonmian-shi-zui-jian-ji-de-kuai-su-pa-kqg0.lcv
+++ /dev/null
@@ -1,90 +0,0 @@
-2022年2月20日更新:快速排序
-
-# 一、快速排序
-
-## 1、面试口头表达思路
-
-1.**随机**取数组中一个数作为**flag**。(初始化哨兵位置)
-2.**初始化**左右边界为 left, right,即设定从左到右的指针i,从右到左的指针j。
-3.将数组分为两份,比flag小的放左边,比flag大的放右边。
-当 i<=j时:
-- i从左往右扫,找到大于等于flag的数。
-- j从右往左扫,找到小于等于flag的数。
-- 左指针指向大于flag位置,右指针指向小于flag的位置,此时如果**i仍然<=j**,则交换左右指针下标对应的数值,然后 i(左指针),j(右指针)各走一步继续。
-
-4.当实现完flag的左小右大时候,
-- 如果 i List[int]:
- import random #导入随机数函数库
- def quicksort(nums,left,right):
- flag=nums[random.randint(left,right)] #随机初始化哨兵位置
- i,j=left,right #设定从左到右的指针i,从右到左的指针j
- while i<=j:
- while nums[i]flag: j-=1 #j从右往左扫,找到小于等于flag的数。
- if i<=j:
- nums[i],nums[j]=nums[j],nums[i] #交换左右指针下标对应的数值
- i+=1 #左指针继续往右走
- j-=1 #右指针继续往左走
- if ileft: quicksort(nums,left,j) #递归解决flag右边的低位数组的排序
- quicksort(nums,0,len(nums)-1) #函数入口,将整个数组的信息传入
- return nums #返回修改后的nums
-```
-
-### 4、补充
-
-如果不是随机哨兵的方法,或者没有随机函数库,则换成如下:
-
-*
-
-```
-class Solution:
- def sortArray(self, nums: List[int]) -> List[int]:
- def quicksort(nums,left,right):
- flag=nums[(left+right)//2] #每次从中间初始化哨兵位置
- i,j=left,right #设定从左到右的指针i,从右到左的指针j
- while i<=j:
- while nums[i]flag: j-=1 #j从右往左扫,找到小于等于flag的数。
- if i<=j:
- nums[i],nums[j]=nums[j],nums[i] #交换左右指针下标对应的数值
- i+=1 #左指针继续往右走
- j-=1 #右指针继续往左走
- if ileft: quicksort(nums,left,j) #递归解决flag右边的低位数组的排序
- quicksort(nums,0,len(nums)-1) #函数入口,将整个数组的信息传入
- return nums #返回修改后的nums
-```
-
-xdm,这个记忆口诀是不是很容易记!!!!!!!!!!!
diff --git a/leetcode/editor/cn/doc/solution/tong-su-qie-xiang-xi-de-miao-shu-hua-dong-chuang-k.lcv b/leetcode/editor/cn/doc/solution/tong-su-qie-xiang-xi-de-miao-shu-hua-dong-chuang-k.lcv
deleted file mode 100644
index 46af1802..00000000
--- a/leetcode/editor/cn/doc/solution/tong-su-qie-xiang-xi-de-miao-shu-hua-dong-chuang-k.lcv
+++ /dev/null
@@ -1,74 +0,0 @@
-## 题解
-
-### 滑动窗口的思想:
-
-用`i`,`j`表示滑动窗口的左边界和右边界,通过改变`i`,`j`来扩展和收缩滑动窗口,可以想象成一个窗口在字符串上游走,当这个窗口包含的元素满足条件,即包含字符串T的所有元素,记录下这个滑动窗口的长度`j-i+1`,这些长度中的最小值就是要求的结果。
-
-### 步骤一
-
-不断增加`j`使滑动窗口增大,直到窗口包含了T的所有元素
-
-### 步骤二
-
-不断增加`i`使滑动窗口缩小,因为是要求最小字串,所以将不必要的元素排除在外,使长度减小,直到碰到一个**必须包含的元素**,这个时候不能再扔了,再扔就不满足条件了,记录此时滑动窗口的长度,并保存最小值
-
-### 步骤三
-
-让`i`再增加一个位置,这个时候滑动窗口肯定不满足条件了,那么继续从**步骤一**开始执行,寻找新的满足条件的滑动窗口,如此反复,直到`j`超出了字符串S范围。
-
-### 面临的问题:
-
-**如何判断滑动窗口包含了T的所有元素?**
-我们用一个字典`need`来表示当前滑动窗口中需要的各元素的数量,一开始滑动窗口为空,用T中各元素来初始化这个`need`,当滑动窗口扩展或者收缩的时候,去维护这个`need`字典,例如当滑动窗口包含某个元素,我们就让`need`中这个元素的数量减1,代表所需元素减少了1个;当滑动窗口移除某个元素,就让`need`中这个元素的数量加1。
-记住一点:`need`始终记录着当前滑动窗口下,我们还需要的元素数量,我们在改变`i`,`j`时,需同步维护`need`。
-值得注意的是,只要某个元素包含在滑动窗口中,我们就会在`need`中存储这个元素的数量,如果某个元素存储的是负数代表这个元素是多余的。比如当`need`等于`{'A':-2,'C':1}`时,表示当前滑动窗口中,我们有2个A是多余的,同时还需要1个C。这么做的目的就是为了**步骤二**中,**排除不必要的元素**,数量为负的就是不必要的元素,而数量为0表示刚刚好。
-回到问题中来,那么如何判断滑动窗口包含了T的所有元素?结论就是当`need`中所有元素的数量都小于等于0时,表示当前滑动窗口不再需要任何元素。
-**优化**
-如果每次判断滑动窗口是否包含了T的所有元素,都去遍历`need`看是否所有元素数量都小于等于0,这个会耗费$O(k)$的时间复杂度,k代表字典长度,最坏情况下,k可能等于`len(S)`。
-其实这个是可以避免的,我们可以维护一个额外的变量`needCnt`来记录**所需元素**的总数量,当我们碰到一个**所需元素**`c`,不仅`need[c]`的数量减少1,同时`needCnt`也要减少1,这样我们通过`needCnt`就可以知道是否满足条件,而无需遍历字典了。
-前面也提到过,`need`记录了遍历到的所有元素,而只有`need[c]>0`大于0时,代表`c`就是**所需元素**
-
-### 图示
-
-以`S="DOABECODEBANC"`,`T="ABC"`为例
-初始状态:
-
-步骤一:不断增加`j`使滑动窗口增大,直到窗口包含了T的所有元素,`need`中所有元素的数量都小于等于0,同时`needCnt`也是0
-
-步骤二:不断增加`i`使滑动窗口缩小,直到碰到一个**必须包含的元素**A,此时记录长度更新结果
-
-步骤三:让`i`再增加一个位置,开始寻找下一个满足条件的滑动窗口
-
-
-## 代码
-
-* python3
-
-```python
-def minWindow(self, s: str, t: str) -> str:
- need=collections.defaultdict(int)
- for c in t:
- need[c]+=1
- needCnt=len(t)
- i=0
- res=(0,float('inf'))
- for j,c in enumerate(s):
- if need[c]>0:
- needCnt-=1
- need[c]-=1
- if needCnt==0: #步骤一:滑动窗口包含了所有T元素
- while True: #步骤二:增加i,排除多余元素
- c=s[i]
- if need[c]==0:
- break
- need[c]+=1
- i+=1
- if j-ilen(s) else s[res[0]:res[1]+1] #如果res始终没被更新过,代表无满足条件的结果
-```
-
-我们会用`j`扫描一遍S,也会用`i`扫描一遍S,最多扫描2次S,所以时间复杂度是$O(n)$,空间复杂度为$O(k)$,k为S和T中的字符集合。
diff --git a/leetcode/editor/cn/doc/solution/xiang-xi-tong-su-de-si-lu-fen-xi-duo-jie-fa-by-w-8.lcv b/leetcode/editor/cn/doc/solution/xiang-xi-tong-su-de-si-lu-fen-xi-duo-jie-fa-by-w-8.lcv
deleted file mode 100644
index 063a2383..00000000
--- a/leetcode/editor/cn/doc/solution/xiang-xi-tong-su-de-si-lu-fen-xi-duo-jie-fa-by-w-8.lcv
+++ /dev/null
@@ -1,419 +0,0 @@
-### 思路:
-
-黑色的看成墙,蓝色的看成水,宽度一样,给定一个数组,每个数代表从左到右墙的高度,求出能装多少单位的水。也就是图中蓝色正方形的个数。
-
-### 解法一:按行求
-
-这是我最开始想到的一个解法,提交后直接 `AC` 了,自己都震惊了。就是先求高度为 $1$ 的水,再求高度为 $2$ 的水,再求高度为 $3$ 的水。
-
-整个思路就是,求第 `i` 层的水,遍历每个位置,如果当前的高度小于 `i`,并且两边有高度大于等于 `i` 的,说明这个地方一定有水,水就可以加 $1$。
-
-如果求高度为 `i` 的水,首先用一个变量 `temp` 保存当前累积的水,初始化为 $0$。从左到右遍历墙的高度,遇到高度大于等于 `i` 的时候,开始更新 `temp`。更新原则是遇到高度小于 `i` 的就把 `temp` 加 $1$,遇到高度大于等于 `i` 的,就把 `temp` 加到最终的答案 `ans` 里,并且 `temp` 置零,然后继续循环。
-
-我们就以题目的例子讲一下。
-
-先求第 $1$ 行的水。
-
-
-
-也就是红色区域中的水,数组是 `height = [ 0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1 ] `。
-
-原则是高度小于 `1`,`temp ++`,高度大于等于 `1`,`ans = ans + temp,temp = 0`。
-
-`temp` 初始化为 `0`,`ans = 0`
-
-`height[0]` 等于 `0 < 1`,不更新。
-
-`height[1]` 等于 `1 >= 1`,开始更新 `temp`。
-
-`height[2]` 等于 `0 < 1`,`temp = temp + 1 = 1`。
-
-`height[3]` 等于 `2 >= 1`,`ans = ans + temp = 1`,`temp = 0`。
-
-`height[4]` 等于 `1 >= 1`,`ans = ans + temp = 1`,`temp = 0`。
-
-`height[5]` 等于 `0 < 1`,`temp = temp + 1 = 1`。
-
-`height[6]` 等于 `1 >= 1`,`ans = ans + temp = 2`,`temp = 0`。
-
-剩下的 `height[7]` 到最后,高度都大于等于 `1`,更新 `ans = ans + temp = 2`,`temp = 0`。而其实 `temp` 一直都是 `0`,所以 `ans` 没有变化。
-
-再求第 2 行的水。
-
-
-
-也就是红色区域中的水,数组是 `height = [ 0, 1, 0, 2, 1, 0, 1, 3, 2, 1, 2, 1 ]`。
-
-原则是高度小于 `2`,`temp ++`,高度大于等于 `2`,`ans = ans + temp,temp = 0`。
-
-`temp` 初始化为 `0`,`ans` 此时等于 `2`。
-
-`height[0]` 等于 `0 < 2`,不更新。
-
-`height[1]` 等于 `1 < 2`,不更新。
-
-`height[2]` 等于 `0 < 2`,不更新。
-
-`height[3]` 等于 `2 >= 2`,开始更新
-
-`height[4]` 等于 `1 < 2`,`temp = temp + 1 = 1`。
-
-`height[5]` 等于 `0 < 2`,`temp = temp + 1 = 2`。
-
-`height[6]` 等于 `1 < 2`,`temp = temp + 1 = 3`。
-
-`height[7]` 等于 `3 >= 2`,`ans = ans + temp = 5`,`temp = 0`。
-
-`height[8]` 等于 `2 >= 2`,`ans = ans + temp = 3`,`temp = 0`。
-
-`height[9]` 等于 `1 < 2`,`temp = temp + 1 = 1`。
-
-`height[10]` 等于 `2 >= 2`,`ans = ans + temp = 6`,`temp = 0`。
-
-`height[11]` 等于 `1 < 2`,`temp = temp + 1 = 1`。
-
-然后结束循环,此时的 `ans` 就是`6`。
-
-再看第 3 层。
-
-
-
-按照之前的算法,之前的都是小于 `3` 的,不更新 `temp`,然后到 `height[7]` 等于 `3`,开始更新 `temp`,但是后边没有 `height` 大于等于 `3` 了,所以 `ans` 没有更新。
-
-所以最终的 `ans` 就是 `6`。
-
-看下代码吧。
-
-* [-Java]
-
-```java
-public int trap(int[] height) {
- int sum = 0;
- int max = getMax(height);//找到最大的高度,以便遍历。
- for (int i = 1; i <= max; i++) {
- boolean isStart = false; //标记是否开始更新 temp
- int temp_sum = 0;
- for (int j = 0; j < height.length; j++) {
- if (isStart && height[j] < i) {
- temp_sum++;
- }
- if (height[j] >= i) {
- sum = sum + temp_sum;
- temp_sum = 0;
- isStart = true;
- }
- }
- }
- return sum;
-}
-private int getMax(int[] height) {
- int max = 0;
- for (int i = 0; i < height.length; i++) {
- if (height[i] > max) {
- max = height[i];
- }
- }
- return max;
-}
-```
-
-时间复杂度:如果最大的数是 $m$,个数是 $n$,那么就是 $O(m*n)$。
-
-空间复杂度:$O(1)$。
-
-评论区提示这个解法现在 AC 不了了,会报超时,但还是放在这里吧。
-下边讲一下, leetcode [solution](https://leetcode.com/problems/trapping-rain-water/solution/) 提供的 4 个算法。
-
-### 解法二:按列求
-
-求每一列的水,我们只需要关注当前列,以及左边最高的墙,右边最高的墙就够了。
-
-装水的多少,当然根据木桶效应,我们只需要看左边最高的墙和右边最高的墙中较矮的一个就够了。
-
-所以,根据较矮的那个墙和当前列的墙的高度可以分为三种情况。
-
-* 较矮的墙的高度大于当前列的墙的高度
-
-
-
-把正在求的列左边最高的墙和右边最高的墙确定后,然后为了方便理解,我们把无关的墙去掉。
-
-
-
-这样就很清楚了,现在想象一下,往两边最高的墙之间注水。正在求的列会有多少水?
-
-很明显,较矮的一边,也就是左边的墙的高度,减去当前列的高度就可以了,也就是 2 - 1 = 1,可以存一个单位的水。
-
-* 较矮的墙的高度小于当前列的墙的高度
-
-
-
-同样的,我们把其他无关的列去掉。
-
-
-
-想象下,往两边最高的墙之间注水。正在求的列会有多少水?
-
-正在求的列不会有水,因为它大于了两边较矮的墙。
-
-* 较矮的墙的高度等于当前列的墙的高度。
-
- 和上一种情况是一样的,不会有水。
-
-
-
-明白了这三种情况,程序就很好写了,遍历每一列,然后分别求出这一列两边最高的墙。找出较矮的一端,和当前列的高度比较,结果就是上边的三种情况。
-
-* [-Java]
-
-```java
-public int trap(int[] height) {
- int sum = 0;
- //最两端的列不用考虑,因为一定不会有水。所以下标从 1 到 length - 2
- for (int i = 1; i < height.length - 1; i++) {
- int max_left = 0;
- //找出左边最高
- for (int j = i - 1; j >= 0; j--) {
- if (height[j] > max_left) {
- max_left = height[j];
- }
- }
- int max_right = 0;
- //找出右边最高
- for (int j = i + 1; j < height.length; j++) {
- if (height[j] > max_right) {
- max_right = height[j];
- }
- }
- //找出两端较小的
- int min = Math.min(max_left, max_right);
- //只有较小的一段大于当前列的高度才会有水,其他情况不会有水
- if (min > height[i]) {
- sum = sum + (min - height[i]);
- }
- }
- return sum;
-}
-```
-
-时间复杂度:$O(n²)$,遍历每一列需要 $n$,找出左边最高和右边最高的墙加起来刚好又是一个 $n$,所以是 $n²$。
-
-空间复杂度:$O(1)$。
-
-### 解法三: 动态规划
-
-我们注意到,解法二中。对于每一列,我们求它左边最高的墙和右边最高的墙,都是重新遍历一遍所有高度,这里我们可以优化一下。
-
-首先用两个数组,`max_left [i] `代表第 `i` 列左边最高的墙的高度,`max_right[i]` 代表第 `i` 列右边最高的墙的高度。(一定要注意下,第 i 列左(右)边最高的墙,是不包括自身的,和 leetcode 上边的讲的有些不同)
-
-对于 `max_left`我们其实可以这样求。
-
-`max_left [i] = Max(max_left [i-1]`,`height[i-1])`。它前边的墙的左边的最高高度和它前边的墙的高度选一个较大的,就是当前列左边最高的墙了。
-
-对于 max_right我们可以这样求。
-
-`max_right[i] = Max(max_right[i+1]`,`height[i+1])` 。它后边的墙的右边的最高高度和它后边的墙的高度选一个较大的,就是当前列右边最高的墙了。
-
-这样,我们再利用解法二的算法,就不用在 `for` 循环里每次重新遍历一次求 `max_left` 和 `max_right` 了。
-
-* [-Java]
-
-```java
-public int trap(int[] height) {
- int sum = 0;
- int[] max_left = new int[height.length];
- int[] max_right = new int[height.length];
-
- for (int i = 1; i < height.length - 1; i++) {
- max_left[i] = Math.max(max_left[i - 1], height[i - 1]);
- }
- for (int i = height.length - 2; i >= 0; i--) {
- max_right[i] = Math.max(max_right[i + 1], height[i + 1]);
- }
- for (int i = 1; i < height.length - 1; i++) {
- int min = Math.min(max_left[i], max_right[i]);
- if (min > height[i]) {
- sum = sum + (min - height[i]);
- }
- }
- return sum;
-}
-```
-
-时间复杂度:$O(n)$。
-
-空间复杂度:$O(n)$,用来保存每一列左边最高的墙和右边最高的墙。
-
-### 解法四:双指针
-
-动态规划中,我们常常可以对空间复杂度进行进一步的优化。
-
-例如这道题中,可以看到,`max_left [ i ]` 和 `max_right [ i ]` 数组中的元素我们其实只用一次,然后就再也不会用到了。所以我们可以不用数组,只用一个元素就行了。我们先改造下 `max_left`。
-
-* [-Java]
-
-```java
-public int trap(int[] height) {
- int sum = 0;
- int max_left = 0;
- int[] max_right = new int[height.length];
- for (int i = height.length - 2; i >= 0; i--) {
- max_right[i] = Math.max(max_right[i + 1], height[i + 1]);
- }
- for (int i = 1; i < height.length - 1; i++) {
- max_left = Math.max(max_left, height[i - 1]);
- int min = Math.min(max_left, max_right[i]);
- if (min > height[i]) {
- sum = sum + (min - height[i]);
- }
- }
- return sum;
-}
-```
-
-我们成功将 `max_left` 数组去掉了。但是会发现我们不能同时把 `max_right` 的数组去掉,因为最后的 `for` 循环是从左到右遍历的,而 `max_right` 的更新是从右向左的。
-
-所以这里要用到两个指针,`left` 和 `right`,从两个方向去遍历。
-
-那么什么时候从左到右,什么时候从右到左呢?根据下边的代码的更新规则,我们可以知道
-
-* [-Java]
-
-```java
-max_left = Math.max(max_left, height[i - 1]);
-```
-
-`height [ left - 1]` 是可能成为 `max_left` 的变量, 同理,`height [ right + 1 ]` 是可能成为 `right_max` 的变量。
-
-只要保证 `height [ left - 1 ] < height [ right + 1 ]` ,那么 `max_left` 就一定小于 `max_right`。
-
-因为 `max_left` 是由 `height [ left - 1]` 更新过来的,而 `height [ left - 1 ]` 是小于 `height [ right + 1]` 的,而 `height [ right + 1 ]` 会更新` max_right`,所以间接的得出 `max_left` 一定小于 `max_right`。
-
-反之,我们就从右到左更。
-
-* [-Java]
-
-```java
-public int trap(int[] height) {
- int sum = 0;
- int max_left = 0;
- int max_right = 0;
- int left = 1;
- int right = height.length - 2; // 加右指针进去
- for (int i = 1; i < height.length - 1; i++) {
- //从左到右更
- if (height[left - 1] < height[right + 1]) {
- max_left = Math.max(max_left, height[left - 1]);
- int min = max_left;
- if (min > height[left]) {
- sum = sum + (min - height[left]);
- }
- left++;
- //从右到左更
- } else {
- max_right = Math.max(max_right, height[right + 1]);
- int min = max_right;
- if (min > height[right]) {
- sum = sum + (min - height[right]);
- }
- right--;
- }
- }
- return sum;
-}
-```
-
-时间复杂度: $O(n)$。
-
-空间复杂度: $O(1)$。
-
-### 解法五:栈
-
-
-
-说到栈,我们肯定会想到括号匹配了。我们仔细观察蓝色的部分,可以和括号匹配类比下。每次匹配出一对括号(找到对应的一堵墙),就计算这两堵墙中的水。
-
-我们用栈保存每堵墙。
-
-当遍历墙的高度的时候,如果当前高度小于栈顶的墙高度,说明这里会有积水,我们将墙的高度的下标入栈。
-
-如果当前高度大于栈顶的墙的高度,说明之前的积水到这里停下,我们可以计算下有多少积水了。计算完,就把当前的墙继续入栈,作为新的积水的墙。
-
-总体的原则就是,
-
-1. 当前高度小于等于栈顶高度,入栈,指针后移。
-
-2. 当前高度大于栈顶高度,出栈,计算出当前墙和栈顶的墙之间水的多少,然后计算当前的高度和新栈的高度的关系,重复第 2 步。直到当前墙的高度不大于栈顶高度或者栈空,然后把当前墙入栈,指针后移。
-
-我们看具体的例子。
-
-* 首先将 `height [ 0 ]` 入栈。然后 `current` 指向的高度大于栈顶高度,所以把栈顶 `height [ 0 ]` 出栈,然后栈空了,再把 `height [ 1 ]` 入栈。`current` 后移。
-
-
-
-* 然后 `current` 指向的高度小于栈顶高度,`height [ 2 ]` 入栈,`current` 后移。
-
-
-
-* 然后 `current` 指向的高度大于栈顶高度,栈顶 `height [ 2 ]` 出栈。计算 `height [ 3 ]` 和新的栈顶之间的水。计算完之后继续判断 `current` 和新的栈顶的关系。
-
-
-
-* `current` 指向的高度大于栈顶高度,栈顶 `height [ 1 ]` 出栈,栈空。所以把 `height [ 3 ]` 入栈。`currtent` 后移。
-
-
-
-* 然后 `current` 指向的高度小于栈顶 `height [ 3 ]` 的高度,height `[ 4 ]` 入栈。`current` 后移。
-
-
-
-* 然后 `current` 指向的高度小于栈顶 `height [ 4 ]` 的高度,`height [ 5 ]` 入栈。`current` 后移。
-
-
-
-* 然后 `current` 指向的高度大于栈顶 `height [ 5 ]` 的高度,将栈顶 `height [ 5 ]` 出栈,然后计算 `current` 指向的墙和新栈顶 `height [ 4 ]` 之间的水。计算完之后继续判断 `current` 的指向和新栈顶的关系。此时 `height [ 6 ]` 不大于栈顶` height [ 4 ]` ,所以将 `height [ 6 ]` 入栈。`current` 后移。
-
-
-
-* 然后 `current` 指向的高度大于栈顶高度,将栈顶 `height [ 6 ]` 出栈。计算和新的栈顶 `height [ 4 ]` 组成两个边界中的水。然后判断 `current` 和新的栈顶 `height [ 4 ]` 的关系,依旧是大于,所以把 `height [ 4 ]` 出栈。计算 `current` 和 新的栈顶 `height [ 3 ]` 之间的水。然后判断 `current` 和新的栈顶 `height [ 3 ]` 的关系,依旧是大于,所以把 `height [ 3 ]` 出栈,栈空。将 `current` 指向的 `height [ 7 ]` 入栈。`current` 后移。
-
- 其实不停的出栈,可以看做是在找与 7 匹配的墙,也就是 3 。
-
-
-
-而对于计算 `current` 指向墙和新的栈顶之间的水,根据图的关系,我们可以直接把这两个墙当做之前解法三的 `max_left` 和 `max_right`,然后之前弹出的栈顶当做每次遍历的 `height [ i ]`。水量就是 `Min ( max _ left ,max _ right ) - height [ i ]`,只不过这里需要乘上两个墙之间的距离。可以看下代码继续理解下。
-
-* [-Java]
-
-```java
-public int trap6(int[] height) {
- int sum = 0;
- Stack stack = new Stack<>();
- int current = 0;
- while (current < height.length) {
- //如果栈不空并且当前指向的高度大于栈顶高度就一直循环
- while (!stack.empty() && height[current] > height[stack.peek()]) {
- int h = height[stack.peek()]; //取出要出栈的元素
- stack.pop(); //出栈
- if (stack.empty()) { // 栈空就出去
- break;
- }
- int distance = current - stack.peek() - 1; //两堵墙之前的距离。
- int min = Math.min(height[stack.peek()], height[current]);
- sum = sum + distance * (min - h);
- }
- stack.push(current); //当前指向的墙入栈
- current++; //指针后移
- }
- return sum;
-}
-```
-
-时间复杂度:虽然 `while` 循环里套了一个 `while` 循环,但是考虑到每个元素最多访问两次,入栈一次和出栈一次,所以时间复杂度是 $O(n)$。
-
-空间复杂度:$O(n)$。栈的空间。
-
-### 总结:
-
-解法二到解法三,利用动态规划,空间换时间,解法三到解法四,优化动态规划的空间,这一系列下来,让人心旷神怡。
-
diff --git a/leetcode/editor/cn/doc/solution/zheng-ze-biao-da-shi-pi-pei-by-leetcode-solution.lcv b/leetcode/editor/cn/doc/solution/zheng-ze-biao-da-shi-pi-pei-by-leetcode-solution.lcv
deleted file mode 100644
index 0bbe1e00..00000000
--- a/leetcode/editor/cn/doc/solution/zheng-ze-biao-da-shi-pi-pei-by-leetcode-solution.lcv
+++ /dev/null
@@ -1,228 +0,0 @@
-#### 方法一:动态规划
-
-**思路与算法**
-
-题目中的匹配是一个「逐步匹配」的过程:我们每次从字符串 $p$ 中取出一个字符或者「字符 + 星号」的组合,并在 $s$ 中进行匹配。对于 $p$ 中一个字符而言,它只能在 $s$ 中匹配一个字符,匹配的方法具有唯一性;而对于 $p$ 中字符 + 星号的组合而言,它可以在 $s$ 中匹配任意自然数个字符,并不具有唯一性。因此我们可以考虑使用动态规划,对匹配的方案进行枚举。
-
-我们用 $f[i][j]$ 表示 $s$ 的前 $i$ 个字符与 $p$ 中的前 $j$ 个字符是否能够匹配。在进行状态转移时,我们考虑 $p$ 的第 $j$ 个字符的匹配情况:
-
-- 如果 $p$ 的第 $j$ 个字符是一个小写字母,那么我们必须在 $s$ 中匹配一个相同的小写字母,即
-
- $$
- f[i][j] = \begin{cases}
- f[i - 1][j - 1], & s[i] = p[j]\\
- \text{false}, & s[i] \neq p[j]
- \end{cases}
- $$
-
- 也就是说,如果 $s$ 的第 $i$ 个字符与 $p$ 的第 $j$ 个字符不相同,那么无法进行匹配;否则我们可以匹配两个字符串的最后一个字符,完整的匹配结果取决于两个字符串前面的部分。
-
-- 如果 $p$ 的第 $j$ 个字符是 `*`,那么就表示我们可以对 $p$ 的第 $j-1$ 个字符匹配任意自然数次。在匹配 $0$ 次的情况下,我们有
-
- $$
- f[i][j] = f[i][j - 2]
- $$
-
- 也就是我们「浪费」了一个字符 + 星号的组合,没有匹配任何 $s$ 中的字符。
-
- 在匹配 $1,2,3, \cdots$ 次的情况下,类似地我们有
-
- $$
- \begin{aligned}
- & f[i][j] = f[i - 1][j - 2], \quad && \text{if~} s[i] = p[j - 1] \\
- & f[i][j] = f[i - 2][j - 2], \quad && \text{if~} s[i - 1] = s[i] = p[j - 1] \\
- & f[i][j] = f[i - 3][j - 2], \quad && \text{if~} s[i - 2] = s[i - 1] = s[i] = p[j - 1] \\
- & \cdots\cdots &
- \end{aligned}
- $$
-
- 如果我们通过这种方法进行转移,那么我们就需要枚举这个组合到底匹配了 $s$ 中的几个字符,会增导致时间复杂度增加,并且代码编写起来十分麻烦。我们不妨换个角度考虑这个问题:字母 + 星号的组合在匹配的过程中,本质上只会有两种情况:
-
- - 匹配 $s$ 末尾的一个字符,将该字符扔掉,而该组合还可以继续进行匹配;
-
- - 不匹配字符,将该组合扔掉,不再进行匹配。
-
- 如果按照这个角度进行思考,我们可以写出很精巧的状态转移方程:
-
- $$
- f[i][j] = \begin{cases}
- f[i - 1][j] \text{~or~} f[i][j - 2], & s[i] = p[j - 1] \\
- f[i][j - 2], & s[i] \neq p[j - 1]
- \end{cases}
- $$
-
-- 在任意情况下,只要 $p[j]$ 是 `.`,那么 $p[j]$ 一定成功匹配 $s$ 中的任意一个小写字母。
-
-最终的状态转移方程如下:
-
-$$
-f[i][j] = \begin{cases}
-\text{if~} (p[j] \neq \text{~`*'}) = \begin{cases}
-f[i - 1][j - 1], & \textit{matches}(s[i], p[j])\\
-\text{false}, & \text{otherwise}
-\end{cases} \\
-\text{otherwise} = \begin{cases}
-f[i - 1][j] \text{~or~} f[i][j - 2], & \textit{matches}(s[i], p[j-1]) \\
-f[i][j - 2], & \text{otherwise}
-\end{cases}
-\end{cases}
-$$
-
-其中 $\textit{matches}(x, y)$ 判断两个字符是否匹配的辅助函数。只有当 $y$ 是 `.` 或者 $x$ 和 $y$ 本身相同时,这两个字符才会匹配。
-
-**细节**
-
-动态规划的边界条件为 $f[0][0] = \text{true}$,即两个空字符串是可以匹配的。最终的答案即为 $f[m][n]$,其中 $m$ 和 $n$ 分别是字符串 $s$ 和 $p$ 的长度。由于大部分语言中,字符串的字符下标是从 $0$ 开始的,因此在实现上面的状态转移方程时,需要注意状态中每一维下标与实际字符下标的对应关系。
-
-在上面的状态转移方程中,如果字符串 $p$ 中包含一个「字符 + 星号」的组合(例如 `a*`),那么在进行状态转移时,会先将 `a` 进行匹配(当 $p[j]$ 为 `a` 时),再将 `a*` 作为整体进行匹配(当 $p[j]$ 为 `*` 时)。然而,在题目描述中,我们**必须**将 `a*` 看成一个整体,因此将 `a` 进行匹配是不符合题目要求的。看来我们进行了额外的状态转移,这样会对最终的答案产生影响吗?这个问题留给读者进行思考。
-
-* [sol1-C++]
-
-```C++
-class Solution {
-public:
- bool isMatch(string s, string p) {
- int m = s.size();
- int n = p.size();
-
- auto matches = [&](int i, int j) {
- if (i == 0) {
- return false;
- }
- if (p[j - 1] == '.') {
- return true;
- }
- return s[i - 1] == p[j - 1];
- };
-
- vector> f(m + 1, vector(n + 1));
- f[0][0] = true;
- for (int i = 0; i <= m; ++i) {
- for (int j = 1; j <= n; ++j) {
- if (p[j - 1] == '*') {
- f[i][j] |= f[i][j - 2];
- if (matches(i, j - 1)) {
- f[i][j] |= f[i - 1][j];
- }
- }
- else {
- if (matches(i, j)) {
- f[i][j] |= f[i - 1][j - 1];
- }
- }
- }
- }
- return f[m][n];
- }
-};
-```
-
-* [sol1-Java]
-
-```Java
-class Solution {
- public boolean isMatch(String s, String p) {
- int m = s.length();
- int n = p.length();
-
- boolean[][] f = new boolean[m + 1][n + 1];
- f[0][0] = true;
- for (int i = 0; i <= m; ++i) {
- for (int j = 1; j <= n; ++j) {
- if (p.charAt(j - 1) == '*') {
- f[i][j] = f[i][j - 2];
- if (matches(s, p, i, j - 1)) {
- f[i][j] = f[i][j] || f[i - 1][j];
- }
- } else {
- if (matches(s, p, i, j)) {
- f[i][j] = f[i - 1][j - 1];
- }
- }
- }
- }
- return f[m][n];
- }
-
- public boolean matches(String s, String p, int i, int j) {
- if (i == 0) {
- return false;
- }
- if (p.charAt(j - 1) == '.') {
- return true;
- }
- return s.charAt(i - 1) == p.charAt(j - 1);
- }
-}
-```
-
-* [sol1-Python3]
-
-```Python
-class Solution:
- def isMatch(self, s: str, p: str) -> bool:
- m, n = len(s), len(p)
-
- def matches(i: int, j: int) -> bool:
- if i == 0:
- return False
- if p[j - 1] == '.':
- return True
- return s[i - 1] == p[j - 1]
-
- f = [[False] * (n + 1) for _ in range(m + 1)]
- f[0][0] = True
- for i in range(m + 1):
- for j in range(1, n + 1):
- if p[j - 1] == '*':
- f[i][j] |= f[i][j - 2]
- if matches(i, j - 1):
- f[i][j] |= f[i - 1][j]
- else:
- if matches(i, j):
- f[i][j] |= f[i - 1][j - 1]
- return f[m][n]
-```
-
-* [sol1-Golang]
-
-```golang
-func isMatch(s string, p string) bool {
- m, n := len(s), len(p)
- matches := func(i, j int) bool {
- if i == 0 {
- return false
- }
- if p[j-1] == '.' {
- return true
- }
- return s[i-1] == p[j-1]
- }
-
- f := make([][]bool, m + 1)
- for i := 0; i < len(f); i++ {
- f[i] = make([]bool, n + 1)
- }
- f[0][0] = true
- for i := 0; i <= m; i++ {
- for j := 1; j <= n; j++ {
- if p[j-1] == '*' {
- f[i][j] = f[i][j] || f[i][j-2]
- if matches(i, j - 1) {
- f[i][j] = f[i][j] || f[i-1][j]
- }
- } else if matches(i, j) {
- f[i][j] = f[i][j] || f[i-1][j-1]
- }
- }
- }
- return f[m][n]
-}
-```
-
-**复杂度分析**
-
-- 时间复杂度:$O(mn)$,其中 $m$ 和 $n$ 分别是字符串 $s$ 和 $p$ 的长度。我们需要计算出所有的状态,并且每个状态在进行转移时的时间复杂度为 $O(1)$。
-
-- 空间复杂度:$O(mn)$,即为存储所有状态使用的空间。
-
diff --git "a/leetcode/editor/cn/doc/submission/[1143]\346\234\200\351\225\277\345\205\254\345\205\261\345\255\220\345\272\217\345\210\227382653786.txt" "b/leetcode/editor/cn/doc/submission/[1143]\346\234\200\351\225\277\345\205\254\345\205\261\345\255\220\345\272\217\345\210\227382653786.txt"
deleted file mode 100644
index a018a339..00000000
--- "a/leetcode/editor/cn/doc/submission/[1143]\346\234\200\351\225\277\345\205\254\345\205\261\345\255\220\345\272\217\345\210\227382653786.txt"
+++ /dev/null
@@ -1,23 +0,0 @@
-class Solution:
- def longestCommonSubsequence(self, text1: str, text2: str) -> int:
- self.memo = {}
- return self.dp(text1, len(text1) - 1, text2, len(text2) - 1)
-
- def dp(self, text1, i, text2, j):
- if (i, j) in self.memo:
- return self.memo[(i, j)]
-
- # 定义 text1[:i] 与 text2[:j] 的最长公共子序列的长度是 dp[i][j]
- if i == -1 or j == -1:
- return 0
- if text1[i] == text2[j]:
- return self.dp(text1, i - 1, text2, j - 1) + 1
- else:
- res = max(self.dp(text1, i - 1, text2, j), self.dp(text1, i, text2, j - 1))
- self.memo[(i, j)] = res
- return self.memo[(i, j)]
-
-
-
-# runtime:1012 ms
-# memory:135.4 MB
diff --git "a/leetcode/editor/cn/doc/submission/[1143]\346\234\200\351\225\277\345\205\254\345\205\261\345\255\220\345\272\217\345\210\227382654075.txt" "b/leetcode/editor/cn/doc/submission/[1143]\346\234\200\351\225\277\345\205\254\345\205\261\345\255\220\345\272\217\345\210\227382654075.txt"
deleted file mode 100644
index 2bfb8f0c..00000000
--- "a/leetcode/editor/cn/doc/submission/[1143]\346\234\200\351\225\277\345\205\254\345\205\261\345\255\220\345\272\217\345\210\227382654075.txt"
+++ /dev/null
@@ -1,37 +0,0 @@
-class Solution:
- def __init__(self):
- self.memo = {}
-
- def longestCommonSubsequence(self, text1: str, text2: str) -> int:
- # 因为依赖于上一个位置, 所以 dp 长宽 + 1
- # 定义 text1[:i-1] 与 text2[:j-1] 的最长公共子序列的长度是 dp[i][j]
- m, n = len(text1), len(text2)
- dp = [[0 for _ in range(n + 1)] for _ in range(m + 1)]
-
- for i in range(1, m + 1):
- for j in range(1, n + 1):
- if text1[i - 1] == text2[j - 1]:
- dp[i][j] = dp[i - 1][j - 1] + 1
- else:
- dp[i][j] = max(dp[i - 1][j], dp[i][j - 1])
- return dp[m][n]
-
- def dp(self, text1, i, text2, j):
- # 使用 return self.dp(text1, len(text1) - 1, text2, len(text2) - 1) 调用
- if (i, j) in self.memo:
- return self.memo[(i, j)]
-
- # 定义 text1[:i] 与 text2[:j] 的最长公共子序列的长度是 dp[i][j]
- if i == -1 or j == -1:
- return 0
- if text1[i] == text2[j]:
- return self.dp(text1, i - 1, text2, j - 1) + 1
- else:
- res = max(self.dp(text1, i - 1, text2, j), self.dp(text1, i, text2, j - 1))
- self.memo[(i, j)] = res
- return self.memo[(i, j)]
-
-
-
-# runtime:364 ms
-# memory:23.7 MB
diff --git "a/leetcode/editor/cn/doc/submission/[141]\347\216\257\345\275\242\351\223\276\350\241\250374469818.txt" "b/leetcode/editor/cn/doc/submission/[141]\347\216\257\345\275\242\351\223\276\350\241\250374469818.txt"
deleted file mode 100644
index b558a263..00000000
--- "a/leetcode/editor/cn/doc/submission/[141]\347\216\257\345\275\242\351\223\276\350\241\250374469818.txt"
+++ /dev/null
@@ -1,33 +0,0 @@
-# Definition for singly-linked list.
-# class ListNode:
-# def __init__(self, x):
-# self.val = x
-# self.next = None
-
-class Solution:
- def hasCycle(self, head: Optional[ListNode]) -> bool:
- # 边缘条件,没有节点或者单个节点的时候
- if head is None or head.next is None:
- return False
-
- # 构造快慢指针
- quick = head
- slow = head
-
- while quick is not None:
- slow = slow.next
-
- # 走到头了,肯定不是环
- if quick.next is None:
- return False
- else:
- quick = quick.next.next
-
- # 遇到环了
- if slow == quick:
- return True
-
-
-
-# runtime:52 ms
-# memory:18.6 MB
diff --git "a/leetcode/editor/cn/doc/submission/[209]\351\225\277\345\272\246\346\234\200\345\260\217\347\232\204\345\255\220\346\225\260\347\273\204377451369.txt" "b/leetcode/editor/cn/doc/submission/[209]\351\225\277\345\272\246\346\234\200\345\260\217\347\232\204\345\255\220\346\225\260\347\273\204377451369.txt"
deleted file mode 100644
index bfa4b7a8..00000000
--- "a/leetcode/editor/cn/doc/submission/[209]\351\225\277\345\272\246\346\234\200\345\260\217\347\232\204\345\255\220\346\225\260\347\273\204377451369.txt"
+++ /dev/null
@@ -1,28 +0,0 @@
-class Solution:
- def minSubArrayLen(self, target: int, nums: List[int]) -> int:
- left, right = 0, 0
- min_length = math.inf
-
- while right <= len(nums):
- if sum(nums[left:right]) >= target:
- min_length = min(min_length, right - left)
- left += 1
- else:
- right += 1
- if min_length == math.inf:
- # 没有成功的迭代
- return 0
- return min_length
-
-
-
-# runtime:N/A
-# memory:N/A
-# total_testcases:20
-# total_correct:18
-# input_formatted:396893380
-[3571,9780,8138,1030,2959,6988,2983,9220,6800,7669,2528,3994,6090,311,5683,9232,9698,1784,6543,4018,1340,3170,5097,9876,8881,6303,7964,2469,1119,9259,9429,9355,9904,2971,6240,3973,4972,1874,7037,4631,4666,7809,6878,5656,7227,1833,4772,8200,9594,9250,1881,4811,2669,7077,7531,8497,3821,5741,7488,2521,469,6108,431,3985,1641,8732,398,9934,4785,5061,4882,4819,9986,3317,2683,7800,9887,7277,5145,9537,7089,1467,5458,1598,3083,2867,9046,6089,2657,1107,2110,9020,7771,4928,848,896,558,6416,5128,9534,5410,2349,3430,4081,5996,9447,420,3514,6814,9873,1486,4576,6161,9400,2381,969,7588,2920,513,4612,4689,2870,8775,5787,2606,9221,5002,6515,5810,8611,3326,1580,3606,9445,4729,7623,4335,395,4868,8000,4069,8557,9207,1542,7,8620,3058,6822,1606,3857,141,503,9810,2869,9464,3702,4779,5942,4678,3416,2621,4710,6116,2819,5592,9227,8783,6164,3563,4957,1465,3269,2764,3359,2829,586,4145,5330,1549,3296,7842,7311,7981,3901,8132,856,2152,7367,5174,5689,5033,1459,321,2497,5488,7991,1801,9769,6373,3969,6081,4558,8560,3760,9423,2132,9460,1811,2788,5617,3934,9564,3661,4875,558,801,4735,2660,7026,6178,479,1833,9904,3168,2350,2497,2748,9356,2025,5476,6660,9296,6743,667,626,322,1659,3481,6037,9228,7865,3483,8790,763,619,4117,6217,8178,9505,2026,2712,3551,239,7257,7496,9015,9199,6660,3322,8111,7895,3347,7881,7496,9265,1865,7057,5644,2550,7551,8687,9669,5470,8994,2770,4556,5644,5162,5788,7151,8139,9451,811,7694,973,1814,183,533,9425,756,7591,6678,6373,1774,1541,2027,7581,3312,6492,9830,7013,2563,4983,8464,3708,8193,244,194,1770,3155,3657,6384,2723,1581,4958,6507,5811,1975,2287,6764,1210,4138,3536,6646,7880,8106,1833,8035,8625,8979,213,8296,7911,9162,2632,9986,3351,2852,6485,3414,2108,702,9291,1946,7344,5971,5466,4390,9497,4790,9102,149,2458,751,9333,2938,678,2140,8179,9921,2277,9615,3335,3265,1293,8197,3108,820,8750,9473,1490,7536,1241,1478,3616,7319,2230,8591,6698,6457,2224,2649,6490,8021,9701,5423,8149,6417,709,4536,5813,65,9769,1320,977,9724,8558,6737,7087,5861,2569,9979,6583,6102,1173,9641,7428,2304,5674,4397,6569,6609,1966,3206,5471,2961,9762,7825,1416,3647,5964,1521,6746,3255,9808,3780,4822,9778,5152,533,4121,1257,13,410,6220,4646,3309,5369,5790,4758,9374,2905,4485,821,140,3278,1824,7591,9323,4921,4363,1219,6108,9454,5782,4103,2757,6351,1029,6493,3737,7214,403,9586,3106,6,1924,6254,1503,6527,2346,506,2242,2206,9378,9295,2147,2259,5520,3711,1360,5287,2446,548,863,6649,1898,5877,7114,5764,9091,3343,6698,2456,9560,853,7534,5450,2888,7835,1746,7363,932,5292,9225,6905,2650,1847,4767,595,3766,9709,5735,993,9929,6982,6186,6124,3933,2816,1361,1086,3295,328,1478,9747,4400,5852,3544,2775,1234,7571,821,1290,8210,3593,8467,4629,7532,9608,1958,8430,5426,455,7313,9802,6950,9450,1870,1940,2114,4685,823,5147,8512,8909,9100,1170,9513,5287,787,8045,7700,5900,7025,2447,2337,3523,7160,2734,2008,1657,2007,9097,2423,3434,3617,4590,9412,1733,8891,6485,6135,4116,9184,8527,6233,1597,687,9551,4479,1935,8141,2245,8045,3820,8863,8156,9551,7926,786,9523,4874,1823,2771,2863,9601,4737,1085,3153,8559,6079,5833,9487,8183,4344,8786,6321,939,3483,9447,9993,2436,3712,5364,9520,6887,1677,3009,5402,4270,141,5139,5683,6778,2522,8106,6684,76,647,9590,4186,1651,1604,9498,1164,1378,3814,30,8490,220,9638,7768,1754,1519,7520,814,5242,5641,1463,4759,6539,3316,5278,9467,5342,5033,686,6661,7507,29,2693,3730,5021,9051,572,6775,4005,6047,9089,2115,8202,184,3727,5996,4502,4552,5242,3329,4797,6834,9030,4294,7891,493,842,2101,4126,4920,4426,3768,4770,521,4253,877,6026,1510,1394,4914,5542,1696,6313,5966,7931,8574,9203,6222,8887,7304,5617,9003,7702,4371,6583,652,3068,3115,6808,4611,5385,7791,5416,8733,3785,28,2806,5731,2889,4529,7553,1265,942,5721,4521,4874,3505,8382,1879,321,4740,8582,591,1972,9896,3740,4807,256,2717,4872,4650,2537,8088,3272,858,6088,9938,8581,418,6914,4488,8417,5200,8271,8055,7715,5060,6651,1639,448,3108,6893,5616,2886,8528,3376,7654,7474,5190,4144,4787,8235,8188,2633,8004,5978,6733,6573,3752,3861,9721,4429,1652,2678,6555,6765,6653,8605,5726,218,929,4818,4411,1058,448,2679,823,5466,6709,2761,1353,292,6437,3533,3199,1156,1868,1434,7219,2733,9467,6349,4266,1410,2836,245,645,5952,5415,4992,8136,9092,2431,3985,7427,6323,7011,4858,9517,7897,3630,2441,6565,2303,2180,4654,1815,4992,8835,7647,1011,7020,585,942,8639,7955,646,4531,8248,6779,9557,3570,237,4692,2765,1660,4833,7419,2244,4522,6476,1395,7876,8532,1264,5959,5884,1601,260,5264,23,8330,6329,4526,4188,2368,566,1957,7258,9777,5099,7896,6578,4123,6456,9754,8610,8879,7975,8648,6360,7114,8542,6889,9930,3560,7809,6856,2456,5967,6189,8154,2285,5130,7299,559,2201,874,511,5185,2107,6283,1295,4747,2197,3023,8097,1448,3969,2937,3689,9846,347,5288,137,5838,5955,337,5888,2272,6465,1973,5694,4223,1174,569,9502,1431,1699,752,6167,9223,1936,3567,197,661,8464,3102,4847,6971,9945,7765,7960,1153,407,5600,7978,6821,8496,312,2798,8862,494,6748,6896,3244,5096,3158,6930,310,5550,5911,8528,5854,8477,1085,1719,8380,6299,7471,9334,6208,7741,3159,8766,8430,7009,2957,6364,5739,5484,9329,8895,6749,9302,3078,7914,7171,7576,7198,367,3752,7628,4987,3657,1647,4307,352,7772,5557,7677,9085,4985,9052,8620,9179,6087,2815,8844,5315,6284,4462,8585,1059,6202,3268,6206,5936,5392,4115,6070,1615,145,1936,8500,483,7391,5107,3669,9472,7735,6954,6483,3008,7994,5551,9808,3733,2614,7564,9578,8070,929,1320,5785,8537,6628,727,133,3131,5686,8278,6291,9485,6569,4933,6200,9691,8633,4079,2049,8000,4335,8447,9326,7279,9696,7972,4695,2641,4200,2558,1241,8882,9518,9080,3440,835,1296,6066,8526,1967,4193,477,337,5786,5406,7516,7706,3812,3824,9328,9567,4324,3597,4649,1963,3347,3730,6905,8493,4809,559,4821,4280,7938,9429,5677,2445,5394,7314,7773,7685,7661,4845,1146,1342,3567,3602,3343,1208,5856,6103,8286,7667,7679,775,2513,6214,8445,7859,8373,4835,5960,8003,4266,4570,5363,2759,4573,974,7010,530,4303,8263,6707,470,7540,8448,5957,5046,7471,691,4500,9734,9563,8778,7770,8975,3827,9452,448,5471,5437,8923,1244,4682,2405,3002,6953,8993,8325,7809,4985,1827,9955,9501,1687,4785,5790,5889,5270,7398,532,5870,6928,7213,9821,9910,9100,3937,1122,6446,2863,3579,3630,9347,3719,5205,8162,7957,5997,4771,5017,5438,7949,37,4862,7184,6705,6889,6413,9500,9332,5138,7091,8569,1260,9274,5225,8771,1207,5222,3277,1962,4656,4578,2594,1365,6974,6707,3851,3495,6408,9071,2916,4540,5854,3938,8797,2472,5479,541,4493,9995,5555,343,3332,3366,1516,8947,2809,7120,8303,3223,4295,9261,65,3527,6680,6016,2245,4197,8060,8809,3215,4831,4182,3269,9889,3137,6379,9108,1070,2718,9642,596,8352,6300,7334,2716,1141,6019,6350,5604,3090,1594,9127,534,2599,7326,8678,4159,5596,8468,8997,5733,100,9767,1913,8791,2106,8957,8057,998,3318,9702,3053,2506,9161,9775,8073,8066,7660,161,2322,2731,7916,1841,3048,9091,2347,8265,9705,7568,3488,5348,8374,7155,1394,4880,5497,9459,5086,3767,5477,9264,7344,327,848,2189,64,2632,5963,2917,7944,1651,9062,7632,9805,283,8510,4561,4624,1673,2380,4834,8443,1744,5209,1935,7383,9246,2707,2577,8287,6935,3756,3357,3522,658,665,4058,9206,6758,4955,7486,2158,6357,2929,1218,8044,2282,538,9862,5158,5710,15,5064,2844,4877,3944,9371,8127,575,225,1393,2786,2097,246,2276,2187,1627,1782,2994,358,7696,1592,4344,1120,8886,3967,3875,9481,7773,9563,6999,9711,6869,254,9549,5583,4269,4757,6514,2954,1577,9342,7684,4114,7547,2510,1715,9101,8708,8414,5434,4134,6277,9374,7551,3593,2997,3697,7891,5684,7591,1077,8952,5116,30,9733,7542,6815,8846,7078,6891,2353,5407,2150,2590,2189,1879,6564,3376,4061,1610,4174,954,492,3160,9889,3885,5462,1229,2717,9992,918,7242,655,7016,5908,4565,8606,1318,3889,7010,2549,7662,8062,1990,6757,5193,8636,268,1975,6537,6559,2595,2799,3248,1863,803,8736,703,8552,3855,6444,5006,1890,617,294,1122,5985,9488,9401,7561,2354,3059,9381,3539,1254,1174,6768,2519,1705,7593,7001,3340,850,2336,8690,5529,763,1561,8963,5603,488,3436,3019,7391,739,3444,2152,8623,1298,4985,8780,7091,1674,7153,1886,7063,9729,7571,5664,4266,8735,6567,1440,3670,444,5666,3442,7177,2960,774,1708,8757,7690,2438,9949,7381,3849,4547,1221,8528,1640,5287,1011,1449,1144,1205,336,4695,4396,2882,6612,2251,8758,8921,7620,6697,7816,8448,2567,7203,5189,6523,4957,4168,8189,9222,9868,2704,3487,1519,7614,2420,3921,1836,1268,1033,4372,7030,7932,2583,5743,5431,7956,3409,6523,1966,677,2103,4755,7058,5055,2634,2829,7328,7261,4708,7553,3662,8856,7782,5935,5124,6277,56,5612,3865,4278,4774,450,5430,1319,7149,4315,7363,7473,8639,8508,6021,4786,8336,7045,4782,9716,514,5693,9935,8238,5521,6800,7317,617,4826,7112,7449,6709,5022,7805,2672,6891,8399,1959,8764,7153,8096,4191,7732,2918,6735,5056,667,1068,5810,8222,6217,2927,4824,7221,4614,7917,1022,4065,7312,6648,9871,6577,3665,5031,5074,8234,2810,6655,1280,1979,6975,4377,8673,7742,8072,3110,2535,3081,6806,763,7251,1732,6757,4662,9159,229,491,9472,3704,5007,7990,2990,317,454,671,2863,1381,6867,5956,2637,5614,1928,7768,9780,3662,1765,6483,3181,6259,9870,3553,593,37,5258,5382,768,8502,8145,4104,4653,2846,9685,1444,8494,4048,4145,673,3476,7775,672,3546,431,1995,9983,2394,3867,9084,8494,315,7794,4439,5487,8909,1073,2123,3688,954,2221,8638,4222,9144,3228,3269,5243,5319,9977,1652,5141,3439,3914,3553,2830,8754,8737,6820,7611,5009,2734,564,8726,933,947,6576,2211,7211,8810,1339,8188,7128,3414,6298,356,2715,7135,3358,8051,7512,1010,8700,1546,2367,8570,7946,4761,8679,7008,7198,5504,7145,173,8767,7106,8067,4715,6989,2438,5593,5242,124,7962,9042,7609,6472,9398,2450,3961,9321,9628,2294,726,7179,5788,9653,5444,2663,2478,6893,1155,424,6870,8541,5921,798,6290,7951,3734,3140,5800,6774,365,8403,1642,3291,7324,6821,3702,1597,1859,4136,1822,6627,9214,7421,9734,3231,5238,1765,1716,3559,8920,3364,1779,685,3522,4046,6190,2452,2955,7998,576,9604,6275,7286,7635,5063,2199,3571,3259,5169,2404,2942,1249,6185,2480,8813,4278,628,9763,6337,7273,2691,5591,3695,5713,4407,5889,8171,509,8266,3642,7775,1843,6490,1626,8129,1500,937,1961,8924,4488,6481,2841,7178,8791,7490,4978,4029,2261,486,7982,91,6454,846,6418,7580,8988,6512,3703,4359,6863,2458,2446,9273,2370,6054,7152,8466,4039,781,4268,386,2822,9283,790,4851,728,6106,8201,8180,1770,5722,8593,955,5972,5350,6392,1636,5037,2583,933,8468,7274,2871,7746,3140,7085,1210,9237,9716,8190,7750,5991,105,3230,9777,9986,1127,1017,5362,2297,4259,4863,7629,3107,4278,1384,6451,9336,2121,1198,5678,9476,5775,3567,8335,9618,4947,2892,4116,6365,6987,9641,4310,5063,3289,2640,3691,1518,2892,974,2794,3807,8793,7518,3776,284,6985,7803,2366,2981,104,5859,562,5531,2597,1882,617,5866,5064,30,7715,7204,3630,1625,7938,8759,5022,2006,6573,5252,3957,7377,946,2236,2338,532,9601,4210,5026,2188,6028,8189,7709,7005,7832,8017,2732,3441,8437,6707,6636,9144,9694,2056,3122,8091,4779,2706,4267,7461,5010,7827,902,8488,7183,9578,6641,1457,7832,4370,7271,653,9596,8173,9689,174,7050,9312,831,9361,7665,9142,4909,8398,4001,4473,3976,8177,1032,7519,5736,9654,3932,9531,7791,9877,3580,9634,197,3913,9106,7576,9156,3890,8220,2193,2761,2310,4674,9990,1426,3187,6454,8807,2298,8483,9741,6326,3499,1241,2275,7370,5392,1053,9986,6857,2060,9359,5078,6752,8315,9494,1033,1655,2446,26,4836,8585,7995,9858,4813,5874,4985,605,3451,3449,8704,324,8317,4675,163,9217,6271,5422,8677,5175,1650,9909,9687,6075,4902,490,6218,7740,12,4527,4272,9276,6273,1365,5081,7555,5621,3669,3457,5089,2721,4157,7569,3518,3940,4060,365,8311,4205,6941,1121,7122,1561,4924,6073,9978,18,5458,6848,8609,5328,5929,5200,348,3886,4899,4726,3393,3466,1363,6247,5388,5724,741,8700,927,3460,2754,4989,9460,4989,6070,8958,155,6664,520,5378,2833,1160,5941,2073,4336,8650,2171,4510,7086,9298,1742,1256,2279,8102,8066,3986,2272,594,2836,1038,8763,708,4381,5826,801,4545,8437,4950,6846,592,4108,8496,949,638,53,7650,2336,1481,2995,4442,1419,7609,5751,3906,9238,5240,4865,822,4664,7409,3892,1648,219,5104,8872,2493,2850,7082,649,8532,9850,6209,8994,7730,1018,2136,1308,6061,1,6202,9626,6549,4111,377,3876,7356,7559,9622,6641,798,2768,3755,2652,2792,2839,6414,9181,8020,4989,4031,2211,3234,9568,2012,9613,9735,4570,2482,7746,2000,9336,2147,8133,2169,7121,5464,2121,6356,9705,2147,503,159,9062,7457,1996,949,285,8519,9963,9239,7082,6854,8503,4242,1985,35,2848,5234,1634,1828,3595,3037,447,7234,592,2841,5236,4551,7887,6207,5173,9048,324,4712,8695,3584,6266,7164,1374,1288,2361,9434,3292,4398,9637,2170,1590,3706,7173,9386,3463,7276,3933,7644,9077,6941,3932,50,9535,1670,6270,429,9825,8660,8876,7737,3982,5621,9670,7335,3789,66,5948,6307,391,6820,1358,8475,8285,9965,8100,2929,4087,3580,3116,6439,3558,6337,4827,9470,3935,458,1445,8688,6243,4576,4873,6141,8522,9095,9015,6737,8105,8094,4141,6475,3925,1329,3954,6270,3348,2613,1820,4052,6082,9192,537,3669,9874,2189,7337,4792,6387,4124,2791,6582,9017,5647,8128,8695,9867,7736,9076,7230,8145,1625,6147,4600,7063,7696,8321,5,9156,4876,1471,1790,4345,3751,6239,5780,1688,7400,4252,4899,9999,3189,6980,3667,7086,4471,2000,7583,1456,8121,9362,4036,3316,2112,1326,2431,6803,7327,4515,719,6622,124,9267,9565,7268,6973,1781,832,5949,9928,2911,3435,7535,7857,5776,2420,6913,7373,4752,9931,8669,2469,9699,7788,792,6425,4827,5795,8964,2815,2165,3787,4352,6450,9904,916,6413,3346,7798,753,4328,2978,1187,8578,2289,7404,8916,5872,4834,4859,5229,7455,7290,8607,3347,2235,868,3656,1660,5392,1377,3846,1679,7815,162,4347,3245,3411,9460,4035,6353,1199,2011,9956,4135,2525,3628,9387,8513,9613,1537,504,1500,6369,9120,3807,8761,3850,3140,2817,9836,8466,4226,6619,9848,8846,695,424,7840,3828,6615,7738,3126,7428,4047,4341,3433,43,5605,628,4440,3691,3109,701,6071,6072,2916,9420,1840,2262,8803,7905,7048,6864,8252,4697,8884,3097,2487,7577,5766,3038,8590,679,1981,5162,620,1266,6050,4712,1519,7231,4041,3986,5691,9129,1806,7842,2700,7840,5746,9052,9568,9403,6242,8272,6180,3374,2679,7687,3639,7197,6313,7174,8478,687,9289,5897,9506,8660,1292,2261,7104,8829,6450,5805,2739,5522,3013,7866,4227,2707,1749,1957,9920,4229,8507,4685,3415,3362,6824,2293,4464,6927,7948,6823,6533,6414,6774,7418,3190,5318,2672,4119,8724,9498,6736,1291,8992,5391,2565,5073,5558,1137,240,4046,5553,8549,9778,9746,5940,2088,3197,5440,2009,3611,6483,8110,4744,1177,3265,9413,2780,5446,4448,6802,8244,5394,5434,3917,3116,1193,8158,2291,8391,9841,291,4424,7248,6388,2083,3583,5039,7174,2545,5352,8880,8333,212,6805,3139,9148,1628,7683,3423,5460,2968,4810,2726,7222,3644,7841,9757,3004,3945,3269,3870,8644,6710,1727,9152,792,2912,789,7307,1824,3690,1753,4652,8817,179,5532,4230,6697,1982,9426,4403,7109,5785,2145,8041,2493,8940,2263,4013,1397,3676,9053,1096,7929,262,1450,6439,6647,5288,6566,8308,4110,5408,5862,8746,6379,2122,2214,5993,4796,2090,3586,6037,3332,5083,2810,2259,1983,2279,7187,6555,7061,9180,35,5290,1649,1721,9011,64,5961,7331,1080,3224,7416,6320,6375,7700,7531,7542,2491,1811,5972,8922,676,7039,1153,5644,7537,8948,3493,7861,1040,9879,5516,4223,4356,1134,4535,4509,6974,3283,8772,5200,4488,2970,2269,9584,8748,3417,7935,3843,1133,3286,4054,7943,3195,2581,5273,9141,7694,3636,8143,2020,2924,8119,1271,3276,1680,492,3567,8365,6929,3845,6855,223,5240,144,2061,7423,4191,5804,1437,9919,9100,8730,2324,653,8396,8541,9678,3295,5687,3384,9170,4800,2738,8886,8118,7275,1677,7794,1290,9903,1888,3282,7942,269,9522,7191,9991,5599,8644,2944,9350,7303,2717,4903,1832,4038,1077,4209,241,1299,7322,3637,3601,4535,461,257,1529,831,4230,2272,2913,9632,5649,2779,1474,8657,1423,8814,7326,6781,6027,255,9807,2220,40,8347,4247,2415,2786,7082,7371,8631,2651,7650,1000,2510,3414,540,3624,5314,7989,9141,7413,1375,9982,3460,8663,7106,6948,5423,2536,2965,9690,8895,5680,232,7629,717,899,7636,9155,290,6674,2983,8614,5849,4723,6153,3743,898,8450,189,907,419,3393,780,8800,3855,8169,5484,6616,7667,7500,3475,60,8342,3706,8595,8024,1082,1091,1260,3418,5706,54,7252,7826,2342,708,6811,9238,8188,2489,5802,2050,1331,5063,1718,2851,3065,4492,2480,62,4296,5347,2673,5327,5504,2395,1146,3642,7054,8924,1338,8071,1888,3631,3436,3516,2435,7085,5370,8303,4110,2049,7345,2118,5050,4944,4937,8058,1008,9167,7868,9763,9689,6436,3774,3863,5950,7490,5918,3622,1787,2667,1564,347,8749,9530,308,8591,4205,3724,4910,2162,352,1245,2127,4594,3877,9199,3720,2568,5653,983,6648,5805,3590,7107,5,7200,2715,1356,2993,7268,9913,5068,4185,5036,5979,91,4059,367,6906,2367,6122,6373,7304,1001,4355,9811,4580,2236,3737,5942,7011,2938,9377,1641,9849,6308,4355,1407,7135,7032,2528,9076,2784,7437,8140,7127,8844,5302,3353,9183,6910,7490,6467,4924,4170,9861,3408,7151,936,5124,9713,2770,1170,6842,1648,5699,2695,9552,2554,6303,4776,8686,4548,6636,7264,7834,6235,5049,161,3807,3112,2884,483,2559,5170,3151,6361,7584,9174,5907,5773,780,9564,4561,498,4622,9016,9205,7594,8719,5961,66,9593,5798,3571,8453,6503,8143,8987,3133,497,4715,4320,3669,1583,9320,4895,8080,4842,275,143,5662,5899,590,5387,7578,4213,917,9927,3008,5623,9108,8892,7074,5964,7285,2818,341,8632,5994,2993,9274,4147,3569,5912,3405,2708,2480,1016,2873,6194,2685,9313,6034,5660,7058,1512,7936,8023,4418,3194,5204,434,3544,6819,3912,24,2017,2390,8698,7801,41,3850,9798,9009,853,9966,787,3755,2642,7425,2960,9113,6453,6386,3270,9051,9843,4878,3264,8991,3270,5945,4186,343,189,9877,9872,968,4213,3278,7530,6966,3503,1119,3842,2149,4144,213,8733,1789,1155,1228,284,9063,3668,4806,5600,8897,849,5395,9562,3338,4266,5310,2432,8803,264,6698,7888,1248,3293,9564,7324,8744,8129,6608,6508,7717,4692,6103,4149,73,4249,5995,7021,8618,2294,1223,5852,6891,6460,1426,6049,1764,4356,7290,8066,3649,8994,2982,7089,8862,4533,1217,227,7260,6662,1282,5321,3322,4297,9333,4985,6828,6787,8077,9534,1182,2492,2318,1769,4698,2757,2605,6961,2052,3988,117,5109,7017,1221,3843,2608,7785,1161,6835,4013,3251,9341,7818,6033,8332,9809,4449,8894,8298,9698,3538,8777,4475,5378,8746,2995,4922,2423,2269,5231,6851,2520,1225,8930,5659,1509,772,6851,2249,2477,2063,3215,8313,5,3626,5574,9772,4500,9575,8915,8352,1053,1515,1491,8723,4504,6957,6443,9225,465,7500,8868,6178,7008,3723,2701,8881,2226,3615,8949,3862,6385,3864,372,3713,6636,9073,1198,8694,4209,5481,1490,1577,7906,9218,3669,618,9675,1254,1984,7360,8256,9454,9774,2454,8961,2840,2666,4368,8332,3169,8176,3373,6332,7113,5525,9824,4084,8208,6400,9446,8789,4120,3697,1399,9081,1785,2358,7707,4084,1288,1443,9724,3357,6954,7236,3756,2759,5035,7427,1377,6505,2192,7330,3706,8112,3208,8085,3171,8569,9672,5851,9340,1686,1120,6904,7111,8718,8079,9642,7771,2435,6959,6446,3025,6624,6418,2181,7467,2303,3669,3350,3386,6017,8882,1830,4101,5684,3013,65,4757,81,4980,3786,1654,7913,3671,3703,4247,2584,7894,4051,8834,775,9903,3493,4863,3897,5746,2823,381,7712,8020,4578,9418,1908,4669,8612,4067,6080,9710,3014,9020,1661,2674,4081,5735,8480,1103,1022,8941,2297,7882,6247,8169,9355,1905,495,5918,4991,9242,8408,231,9473,7453,5705,5756,2970,3833,2543,3062,5417,5251,5697,3707,9522,1760,2294,7150,4539,2007,8367,1047,6545,4410,9929,7868,3124,8217,6947,3720,2399,7738,169,4749,8918,6521,7727,9384,2279,7284,3047,4978,7822,3723,165,273,2704,5750,6165,2058,9803,4480,9057,6726,1098,6670,2742,7306,6035,4401,4080,656,9004,5297,9618,4555,9086,5788,962,8463,7588,9956,1190,1532,2199,2932,9454,2879,8063,4602,8027,7312,7203,5297,1542,2667,7791,2214,4396,182,7705,9337,2517,5949,7473,1535,9915,7871,7734,3280,9158,9596,4892,9439,8023,1289,5148,181,8763,380,3059,5248,3567,6232,7603,6153,9596,4821,8675,1319,5935,5339,6669,6448,3469,7394,2376,1163,1736,2943,9770,6159,7548,2252,3385,2741,9990,8540,9729,7637,2221,5557,6885,9306,9126,5466,5347,2661,6162,1325,399,9199,9548,7219,6051,8063,4688,9980,4841,5115,6336,9950,7281,7931,1335,6814,3132,2923,4746,4075,9557,6345,947,7403,4454,5305,9069,5988,4564,6499,5253,6831,3038,6776,3505,6527,8243,8896,6831,230,7719,2001,543,458,8101,311,7981,6101,89,306,8038,2219,2528,9552,8992,6351,3365,267,9237,7927,55,2859,1100,6950,2079,5628,8280,5712,9843,5479,1431,6321,3310,7405,6746,6017,4435,1494,5444,1688,1224,1593,6552,7751,6526,905,1950,942,2222,4469,7948,552,8076,3364,7577,514,9850,9154,2977,6183,9222,5701,4143,547,58,5058,829,7385,2774,6442,6403,9312,3528,9300,4573,6267,3743,9131,9152,3709,9250,4138,243,508,3848,7158,7304,4830,252,6752,9270,6940,5919,2561,4489,559,8176,2375,4292,220,4972,2251,8597,3952,7554,3849,5697,868,2293,783,7891,6047,1843,3557,1806,7618,7838,8025,1295,8552,2187,4803,5404,5915,3619,1348,5993,1072,189,6059,9227,23,8454,2023,3596,76,8077,2384,8387,5606,6722,1631,5746,3985,5477,1926,1982,9919,5786,6686,4011,208,6967,6332,5482,5456,7666,722,2773,5757,1761,1704,7111,4181,8975,2773,882,2172,4742,2975,2074,7914,2369,2569,1862,5097,7423,7540,9840,9476,8151,439,5292,3092,2316,291,4560,8124,3356,6465,5561,120,4866,441,9052,97,8951,4114,8691,2931,3012,4215,1610,9836,9081,1557,9424,2728,9718,5503,7236,871,6794,9572,9252,7712,7488,6340,942,8111,775,163,7401,326,8806,3921,3318,6307,2061,5404,5182,657,3684,869,8090,7353,6211,1472,6649,65,2789,7964,5447,9861,5548,1117,8000,8684,1857,2265,8556,3128,3329,1787,9640,8379,5267,9875,1246,1168,3763,3330,9332,2212,5059,558,6521,9716,9170,9450,2889,6115,9105,2271,8146,6608,976,2858,6316,1775,4799,1837,4606,2261,8727,9521,3784,5743,9144,6134,9217,5287,8040,5111,3675,3260,8371,1893,1060,2096,8849,8975,360,6887,1396,9020,1514,944,7666,960,5382,1301,2698,3612,8508,3350,7680,8090,2111,4753,4172,5971,6146,6407,8499,7412,8052,3243,9987,2333,3676,6972,2561,3910,989,4176,4046,5427,1242,433,343,7205,9984,2573,5967,9600,2350,7299,3143,2331,8199,413,7965,3415,2686,7136,4547,652,5878,7700,9067,7449,1270,9125,8840,6575,2723,4574,1401,619,4297,8612,2399,5498,6102,7164,5016,7899,1287,6773,8574,4007,5683,9705,3371,9686,2942,8671,2382,7968,8511,8316,7926,722,593,6359,6234,5296,3182,7367,2461,2725,8732,1665,5694,665,433,5714,516,4266,5015,5019,3106,6732,2486,8016,374,4418,7178,669,4974,1825,9563,9661,3092,6331,3516,2665,1809,6249,3964,1553,7849,9617,1176,893,3551,6186,1674,7192,9751,1624,9840,5477,9693,4540,8159,8915,4892,6656,348,1855,7824,1391,1015,2888,6341,4739,560,9568,4539,561,1914,4874,799,5622,3398,7174,6968,2036,178,7460,6129,8801,4641,2230,2878,7054,6442,6291,1574,1114,3576,1156,3875,2921,4601,130,8977,8597,5859,5838,5538,9278,3252,5015,4036,2908,6937,8613,3009,7662,7329,5538,6948,7876,3402,8701,6378,821,4983,9714,549,9145,6246,3459,7625,4125,1811,8442,4142,5389,8408,3276,7439,4405,7424,364,4355,3512,3926,6124,5991,2674,1404,8900,9052,5155,5198,6075,1838,7634,7737,8795,1967,364,1041,4909,4107,6038,5456,522,138,643,1366,3497,1695,9291,3866,4398,8780,5482,8388,9628,4208,7855,8031,3041,3792,6253,4820,8819,6934,9311,5618,9866,6944,4663,130,8365,312,2238,4394,4464,1566,4284,6055,3618,7990,9142,128,1452,6089,6020,5187,4423,2016,9498,4370,5474,6396,6140,3206,4726,6817,3902,8783,9322,9893,9778,617,1069,6934,2720,6898,658,5400,40,912,5629,2177,1972,8670,8816,9060,409,3198,2896,938,1393,4195,4408,7510,9049,3968,7360,105,8743,8003,2215,1479,638,5977,2156,5934,5530,5577,5920,4004,2429,3407,7628,1960,8958,1484,7344,930,8843,8146,6566,7972,3468,6070,370,2710,6218,5561,5887,7653,6415,3987,2120,2913,8916,7037,8445,6817,8707,6406,3556,4758,6804,5273,7260,647,7539,6745,9201,9502,1737,4513,6413,2644,8939,793,9616,7102,9473,1285,8874,8229,7939,5528,4512,814,5709,8778,1500,3827,3651,3994,4313,2955,7369,2058,2925,5795,1198,8141,1397,2684,7052,5627,1828,9259,5646,2720,3894,1706,9752,876,3323,5832,2299,7215,527,2592,9638,5498,292,1148,1215,4696,5097,1792,232,269,7290,3926,2733,5622,5638,2087,7406,7512,3307,5407,4160,9997,4065,2775,7418,1034,6956,7067,4921,7083,2772,967,9749,6278,2066,6824,7665,8400,9783,344,4508,1506,1388,4491,7095,5386,3460,8349,7824,8131,2765,3794,769,9288,3917,2574,3161,883,51,2313,2565,9427,9695,3811,5836,6889,97,2771,1217,1979,8109,3146,5482,8382,3076,4747,9089,9789,2216,6219,2520,5255,6767,3068,9981,2024,3262,3527,1177,3352,2742,5499,5981,4159,8478,2407,1201,9012,4035,8692,4805,3455,1354,7786,776,2297,243,3842,4786,1036,8212,7568,3804,4826,373,7655,1,3082,541,5111,6931,7910,7340,7254,7279,4202,8726,6521,305,5656,7959,5088,1242,8852,2985,6124,4838,8994,503,8036,9169,8398,8006,5268,4540,5753,9965,1071,2304,4692,3663,4339,643,2059,4708,7610,9367,9580,2800,9848,9047,5673,2579,4798,2284,9526,3874,7409,8808,7068,2335,6079,757,475,2725,9864,760,2120,8173,6241,5791,1295,2851,427,819,3598,6405,6839,3178,4007,7570,7142,4236,3610,3225,9905,9066,3094,7531,7016,2223,3340,7302,5666,2617,2370,9934,4129,4720,4071,7701,9395,1011,5821,421,4383,5161,3645,142,1465,9336,7206,1538,6705,7032,3784,5939,9556,6407,6755,738,8303,4581,1468,1625,164,8162,3115,9228,3335,8051,4949,9712,3467,9721,8410,7130,1677,7114,9803,6609,2548,8677,1236,411,9165,2469,4232,6630,3621,2912,984,7329,2685,7145,7357,5012,871,1628,7841,5546,4510,4313,723,3043,412,5570,2413,9900,354,2613,6618,2299,1503,9814,5691,1088,9213,5221,1777,889,3664,6039,4976,2526,234,5092,3631,101,4322,4684,6091,2467,4229,8422,9198,9218,8043,3274,4809,8890,826,2333,6754,6241,8291,6602,2596,3732,2653,6313,3817,2984,1437,1859,7228,5654,8795,9228,546,9824,8819,2532,1427,7246,8604,4034,3992,9209,8562,5617,4063,5696,6674,8258,2482,7053,7219,9365,5574,2327,6204,5561,8717,8977,2786,6842,4615,5723,9851,9795,9983,1524,4469,8078,1093,6338,1133,4301,9061,893,8972,6573,5968,9460,6623,2463,5521,3058,5678,3341,3493,4525,858,9487,819,8261,6275,5655,8437,7114,2958,1421,5913,5995,6704,4182,3228,8756,684,6928,7807,7197,5019,4002,1720,3463,3021,161,7786,8206,8095,7055,9187,6890,2100,5990,8261,180,1843,4266,1350,814,9878,6843,5627,1371,2750,1159,2392,6017,4216,2334,9816,7559,55,6582,7072,5889,6328,5419,975,2834,1386,9766,3612,4992,2649,6373,1972,2826,8303,303,9845,97,9170,4257,5192,2350,9265,1723,5627,5328,4728,34,5521,2236,2151,4486,7435,8434,5889,1993,6730,9515,2293,4736,5928,5790,3028,7486,3473,252,3983,7170,17,9755,4210,270,1748,8520,3426,9218,8623,8427,8898,5084,8200,588,1315,2921,2495,4273,347,3876,8320,6111,268,7918,5131,1476,1250,3340,4198,933,7049,4029,7077,4575,2581,7879,8383,731,3083,6397,8047,6477,4053,7153,6761,3307,2014,5599,963,6093,5359,2568,654,246,684,9955,6797,9079,8661,2708,5305,9255,7227,4002,5901,8621,1195,4421,4682,7529,6847,3418,720,6035,1410,517,723,1463,2545,6735,4061,82,8184,1079,7943,4910,9808,2175,9351,379,7648,8077,9157,7224,282,5511,7409,2042,7194,8108,231,7204,6041,331,1137,9711,7721,2597,5785,8219,2695,26,5087,5631,2298,6355,4048,4146,3810,2786,6394,1534,3374,953,3256,2154,3402,7981,720,972,2043,9327,1664,7469,5124,6710,7751,8013,7261,7318,2310,26,1900,4576,8654,2329,3605,5223,3150,3593,8906,7561,6940,9827,7141,7158,1652,2866,1847,8289,51,3470,5719,9390,3722,6586,2612,9507,5436,4079,2261,7168,9724,4964,8556,6661,6382,7798,6679,340,9390,7961,4691,4025,8693,4052,7510,912,2604,4618,2754,6520,147,4217,4502,7255,1826,1636,1760,8578,2636,456,8613,8178,5672,3899,3900,5854,5095,8279,3604,499,9429,6456,8375,5007,4883,3892,1005,1076,997,2870,3569,8462,3586,6624,2797,9582,2734,8661,3700,4170,1957,6197,4328,3345,5927,8842,5409,6027,5574,8764,2335,6600,9390,5051,4021,2406,5187,2288,2658,6482,1178,3774,8898,4215,2629,9914,6379,7940,6532,4103,5302,4306,6925,4313,4044,4976,8930,4007,8604,7591,9787,7415,9462,7719,7289,973,9571,3888,6014,6124,1820,8335,7665,525,6348,2205,5756,4875,4123,3048,9747,2908,382,1946,2286,2723,5142,5414,133,5008,6748,7630,1557,3801,7084,970,8917,6654,4754,5853,2655,9695,7517,5198,5653,6389,892,4575,6031,7102,6753,4831,3683,685,9477,892,1802,1437,2597,8005,4715,8910,76,724,6900,2003,6281,9091,8712,1627,1595,7,6856,9506,1905,7752,6263,1450,5402,7052,4490,2373,7088,3984,7366,9081,8800,1830,6562,2057,3597,8214,3691,7092,2655,6560,9389,6422,365,4996,9627,450,8358,268,64,5146,3757,6795,1526,7120,6941,2282,7746,5564,6986,8047,4753,6803,4342,6384,8815,2662,2448,6266,7913,961,1574,1526,5402,9801,3164,4988,5681,8029,7705,9242,5446,9549,3047,7068,5306,9944,6488,7912,7113,2173,2345,2999,6323,2806,2231,3709,8249,1042,2092,9054,8423,2348,2650,7807,750,3379,3751,7830,3309,4485,4566,5293,3496,144,7784,2124,5548,9468,2437,8752,8870,4305,8154,1997,2907,1311,2109,6061,1998,246,1422,5167,8209,8414,6441,1803,4209,2307,1899,4077,2748,8209,1779,3543,6275,8957,2774,9463,5732,3518,4213,73,3582,9359,3397,3962,9650,755,9082,610,2603,9840,9037,697,4064,8006,4877,2874,1480,7488,4458,8711,5755,9779,5870,4646,4027,7360,6562,7747,9521,2437,9388,4956,6904,4182,1579,4479,5138,6928,8124,4046,9086,1639,5078,3781,5359,6341,8956,6703,3765,3011,3372,6415,3092,9333,2514,3257,8354,2622,8270,9567,8370,6568,6222,4254,623,4531,7860,4191,7459,7538,3626,2723,5228,6485,7660,5499,9957,3569,2607,8879,6683,6763,5896,1879,1721,5254,6596,4070,8460,4144,2494,9530,3007,1904,4558,1065,1715,7849,9491,7089,9685,1103,6455,6519,7631,7718,8552,2577,5851,1345,6794,2762,9215,5756,1082,5041,2215,1894,6546,572,3237,13,5549,1324,1452,2885,1563,1579,287,3142,1792,7560,9706,513,7666,3633,1449,5754,2687,9348,7220,5128,8110,8716,4166,3964,1369,1024,2376,1752,5543,2205,990,255,7442,2096,98,3531,381,3714,9832,2743,7110,161,3430,5587,6071,3175,5677,1703,9264,8112,8080,1480,6889,7946,3827,7175,8215,3578,6151,3785,422,4401,6406,7497,9482,7592,233,9931,5938,8431,6170,8373,148,773,6708,6054,2052,3157,1314,8279,4037,187,4421,6401,7181,1727,6702,8692,3294,2322,742,3194,8516,1024,2662,9294,6676,8798,2114,9708,8147,8488,51,7223,8936,5243,8925,8721,1365,4930,997,4846,2883,9039,2001,8393,4829,7812,6505,7088,2747,2498,5563,6080,759,6305,2809,7055,9352,7979,4435,8616,7614,1728,7647,2619,9512,1795,924,507,4912,8819,9054,3287,5627,2066,6056,5423,1712,8031,3332,8617,7593,6121,2782,2173,464,316,819,5652,7909,2726,4679,4841,949,599,1379,405,1470,2790,1749,369,1974,4348,1128,754,230,5622,66,3898,408,6698,8290,5553,4101,7834,1688,3023,2830,8321,3046,7432,4953,4980,9529,3277,5163,1456,7423,3335,8813,99,8851,726,1620,2507,4029,2456,6263,7159,8266,7790,5936,2096,9714,782,4704,4221,9858,6790,2152,1564,8466,8679,9406,7152,7233,4055,7101,8271,8625,8672,5432,7256,7579,9728,7059,5281,9216,4222,8062,1747,7632,4750,9021,3042,6270,1457,7596,4967,8169,3517,2441,3418,7918,3336,8401,9715,5618,9165,9776,7918,5500,1752,3289,6205,5555,7706,7035,2852,1396,7622,931,6096,591,6588,5250,6118,6161,2321,8051,597,3466,7271,8290,3985,2600,7596,239,6533,6542,5023,7065,249,7995,313,5581,6275,2575,3862,3051,2258,5550,304,8760,3246,1473,5136,1823,859,8275,7508,8492,2139,4771,4502,8071,8409,6398,6765,6912,4551,2427,6809,4324,1873,741,9212,7014,5975,1255,3366,323,5384,3063,806,5457,9785,6663,7648,2937,8022,7145,8770,3081,5614,7415,1785,5801,8420,3897,5612,3378,232,1337,2009,1886,2678,3446,1763,5591,8382,4216,9839,5629,4504,888,1293,4359,7611,8678,6656,9285,4210,653,7888,9487,150,4846,1214,1816,4358,6340,9940,7456,8554,2894,5004,6043,8132,6806,7542,7814,7657,9713,1329,276,2542,754,347,2963,595,6480,9279,4423,2189,5418,9891,1030,3070,7642,944,3759,5000,4573,6177,1605,1998,4054,9868,564,3888,1340,3619,9729,5751,1615,3163,6484,5517,6463,2463,9790,2788,190,5858,7502,7672,4471,5307,3391,352,4973,2270,8869,1350,6277,9474,5354,4891,4301,4220,3365,6548,4213,7124,6102,4879,4360,4742,5437,5012,8351,1576,2230,8077,83,637,5731,240,6664,5708,1511,1219,2603,1450,5128,4421,5301,8629,6929,8732,3743,3587,1824,4026,4033,2854,8475,8928,1423,3848,5525,5371,2098,2520,1095,3334,4400,3609,4393,7600,59,5847,1380,7424,7269,7580,6884,8266,5702,6793,5724,7886,6752,4991,9384,7588,7942,7706,5992,2875,9720,5075,9060,2530,1438,567,2903,4448,2572,8067,7671,801,9142,4788,1617,5267,500,6026,5843,9351,1737,3771,1246,8109,706,6807,2351,9057,8452,3625,3626,4218,3751,6425,8764,7399,3438,1506,5180,3965,4568,9062,9231,4088,9289,1554,5742,8991,3406,5057,4124,1344,8174,3571,9090,4425,6838,7576,4617,8447,9199,7644,794,7304,2830,4498,7139,8993,4628,3880,8652,8172,802,907,8181,5440,2945,2986,9262,8179,8649,4121,2534,9850,7994,4006,498,9645,3188,3515,7737,6359,7153,3604,4419,4428,1218,6685,1588,1180,3753,5093,350,8813,371,8714,7923,4701,9982,2209,1944,4650,9077,9162,695,9154,739,5151,4938,5275,2850,1623,8861,2203,9911,5068,5353,2293,8993,4066,4911,7262,1001,4623,2219,5463,9651,5625,2992,5217,9303,6236,1825,4104,9360,8462,8173,1325,3241,6963,5989,9167,7708,4930,6273,627,1941,4863,6698,3085,2052,6114,1966,5451,5193,8734,568,1549,1744,5496,8590,5110,9589,6609,2728,8340,6605,2697,2175,4715,9193,1411,8145,6576,3421,9086,8807,5509,1425,3720,1240,7719,4113,6103,796,9089,9037,1144,2714,4381,5159,3294,3895,2945,4607,5285,7982,1907,7996,4302,4533,3345,4736,3390,7895,8734,3858,4813,9120,4531,7686,7318,7536,3051,4139,5930,1154,1129,5757,3969,8017,7399,3531,7759,1864,3354,3171,380,1567,994,3746,3465,8326,6883,5545,6784,6554,9818,8003,6705,8646,6171,9855,7745,5303,9972,9216,8543,268,9889,4335,165,1294,2112,4063,507,5954,6939,5562,9335,5774,6090,7416,2909,1967,7113,9167,4420,3047,3378,9920,2502,8790,8808,8347,5145,9946,8023,3137,4630,2430,5840,4601,425,7767,5113,8342,6986,2546,4426,771,6636,5308,5294,8529,5791,3591,7930,1060,8986,9695,4729,4989,4274,2269,1133,5977,3561,3489,6004,6371,2260,171,8563,3037,3293,7329,7596,9050,3706,4477,2372,7525,2453,4227,6180,1582,6817,7360,6125,6542,6496,6039,7641,6070,615,6951,8305,478,6992,1762,7715,3957,8662,3413,5735,7376,6325,7268,9624,9089,4185,814,5604,7733,5550,2387,5111,9687,547,8213,3412,4177,4274,6742,7088,3197,1160,9764,3511,7356,4236,4091,4958,4433,85,1293,4909,6249,8357,1777,6729,3086,210,1986,8037,8724,9667,7951,1858,599,7612,6851,3268,7495,9683,6815,1998,7579,109,8042,4265,3855,8222,3494,3083,5633,5437,9598,9461,2064,3969,4891,7385,5955,867,3643,6908,2534,1716,5154,481,1611,6077,8281,4409,9582,7030,9358,5305,8053,8968,8897,7303,2218,6765,5597,7393,6316,8775,9668,2701,380,528,3932,2454,7932,8755,459,7841,4271,1633,9607,7961,7762,8750,7142,4691,6787,6011,4307,623,7344,5386,305,9551,3258,9445,425,8525,1166,9943,9517,9598,4878,7255,4534,5217,4672,4057,3996,6847,3719,4778,4919,2363,7377,8853,3165,8931,3954,8029,2432,2587,1734,8349,4227,4353,1661,9985,9589,5512,2802,7194,1809,4930,5975,4791,7102,3899,3807,8005,2084,6515,4923,7946,2660,8968,3486,8276,2530,4983,7450,5363,6881,3194,6421,6252,6129,3161,7213,1557,8990,1383,4077,1653,5508,9978,7596,856,3505,2634,2686,2200,1547,7710,2248,5662,9403,193,438,5869,6805,348,7547,5411,8064,5164,8953,556,7,4847,5985,4080,1732,2775,2275,7015,1109,2921,7142,2318,1050,6320,1477,44,6455,6312,7289,7632,6023,7024,5298,5745,7079,8674,1110,1211,725,6713,8250,4253,9795,9280,4883,2318,85,4580,6307,5050,3594,211,3254,4137,2755,9754,6921,5712,1060,2079,3428,7294,4325,3813,2032,1473,2264,1537,781,9326,9744,7475,3690,7099,2796,1519,1993,8196,6252,7432,9352,669,6604,4204,9057,9100,8137,4883,1801,77,1302,7555,9993,7645,7001,1894,2327,7067,298,8721,4762,1126,2798,7207,4340,9526,8886,405,5040,1693,2662,1499,8717,7063,2424,1762,2022,9667,281,9161,7928,6044,6166,7723,5781,3985,2089,8445,7256,9952,9760,1896,8782,9475,708,6181,6475,9538,8208,3684,181,9461,7987,2651,7730,9254,1488,6038,3167,5964,3702,6973,4036,7548,8627,2552,1165,4639,6010,5365,7172,2161,9669,4030,3590,2697,7536,4054,2253,7994,2494,1952,1588,145,6182,6193,2791,4623,810,8068,6332,2198,1468,6699,1139,7342,1639,7998,9943,7940,504,225,5555,27,7490,8532,4128,1650,5534,2582,7665,2033,8286,8372,1308,7927,7363,7447,8240,5597,7807,6615,3583,3222,7160,6550,3827,6172,517,5897,8213,9452,5788,184,1402,3689,7548,4056,3604,2993,4786,5811,607,1578,6620,7259,6389,8337,2480,8606,9600,2743,7333,2958,9454,4039,2527,516,6892,8765,6714,4209,4897,3630,9348,1079,3882,7169,4369,2452,127,4103,916,5496,4558,6192,3526,3801,9303,133,8452,9316,5816,4407,2407,2420,3200,9439,8717,3973,5833,3899,9537,3752,426,4750,1370,9325,6853,1080,1751,1439,7953,340,5290,1237,7123,8429,3545,2002,2708,317,4481,7919,7088,8361,3071,3817,5284,5427,389,5371,9679,1400,3202,6183,4252,2688,9032,6882,1255,556,8167,5539,6066,8498,6144,7976,9140,6237,6025,5322,97,5117,4063,5833,8572,3276,3013,5344,2804,3185,4039,8628,8844,6314,7392,9511,8378,8717,3976,638,650,8297,1443,1649,936,2732,4146,9920,9692,3417,790,4044,5097,256,6302,9963,2417,4483,3855,8988,6109,9186,381,2704,1253,2148,5063,7517,8361,7429,4514,1724,2300,5245,1061,9368,9453,5494,1121,4413,2668,1138,2220,8377,6887,4329,7908,2461,6126,6588,3929,7414,2125,618,5892,5178,2525,4282,5160,4378,1182,7837,4621,6417,1174,638,1793,1151,6907,5410,538,5903,8576,2134,9614,5168,3470,7290,1634,7422,2977,802,6131,5377,1061,2188,887,6627,5138,3750,1722,4248,3551,7366,4903,9319,5521,7202,6226,347,8475,8533,7718,9144,3557,6035,2234,5595,1122,8418,6725,3901,91,8834,3450,2262,4296,8705,7464,7773,6902,1406,5271,7069,1043,2197,9318,6200,5186,9851,5736,9312,2781,613,6733,8968,7848,3231,2647,4964,9027,3144,9833,8457,1443,5997,1586,1264,1559,1049,3632,1379,2454,5711,5775,1727,9078,7996,6030,8581,4822,2427,6609,5056,4851,1232,7630,9116,6293,2810,3662,1227,5292,9853,534,4169,9481,6659,6774,5916,6164,6416,5968,6271,9228,8183,8369,4556,9435,2237,8746,5226,7201,4438,2588,304,284,3810,2248,9548,5094,3070,1844,4554,6190,4385,8145,6663,2495,863,8522,7984,7836,4144,153,1600,7804,3139,8949,1949,8589,9609,2389,6021,7077,498,81,7496,1514,6287,6728,4838,9863,2960,7993,4651,109,3616,7181,7050,6104,2175,1388,7734,7315,5030,5036,5549,4238,3233,2534,2196,1174,5932,1941,7349,1222,4206,9793,6885,8026,7931,8452,5391,1258,4508,8081,7441,7176,3896,430,3429,3057,8596,8818,8941,202,5951,2785,5120,8771,2766,7150,9606,1160,3265,6965,8877,469,5925,6111,7021,4050,7672,5796,7037,3501,1146,6089,9016,9897,9222,8071,5418,115,6158,9624,8977,9242,8054,9255,565,4521,5391,457,3205,8872,2323,5713,8837,8991,5055,1765,5120,9012,7925,4753,6899,7072,3629,1796,1480,8404,4739,2372,2567,3564,1552,6962,2223,424,5368,9017,2995,8637,8114,4265,3453,159,5370,2819,2900,7204,8915,9168,7484,2497,4484,4387,762,6520,6543,419,8399,7771,3806,1424,9206,8967,123,453,4128,7468,5666,8578,2188,3386,5615,4312,1014,9594,6195,3837,7894,3018,8619,5324,6233,6306,1921,2317,5,3593,7961,3635,7745,8947,3324,5533,7909,7009,7645,2023,7730,8965,6140,1352,3252,3055,2997,7225,225,1163,1034,5229,4317,9070,9403,9212,215,4489,9655,8330,5616,314,9568,8330,4836,9371,2879,8492,7745,8183,2000,7738,8057,9572,3333,3409,9748,9069,4258,425,919,9062,5554,7841,3395,8445,3184,3498,8798,2985,8832,8910,1929,2586,9378,7626,3330,8997,4083,2401,9922,9228,9724,7952,1355,6207,8664,8630,3013,8697,4038,3466,505,3045,1886,4610,2490,4037,3957,7463,6074,4198,1260,7248,3213,2928,745,5009,3380,2283,3920,9306,449,7922,1795,7576,2023,9617,3754,3130,239,5176,8532,496,8091,341,4442,3792,3355,4559,1243,5081,5187,2064,6462,4847,9744,2747,867,414,4239,6634,4264,2862,1218,5937,4320,9160,7748,105,4237,9819,6250,3047,8384,5369,8088,676,405,48,7971,388,1340,963,2409,5955,9744,6056,6709,3981,7240,1091,9323,7148,6861,4812,9210,7736,5231,496,9654,1366,8839,1400,8173,1588,3129,4662,7000,5777,5480,2819,470,8062,4597,2815,9906,1730,9041,2116,3663,6080,6947,6031,4951,8581,7863,8779,2928,7413,2015,159,8841,6207,4256,4926,3956,5327,1298,6395,8483,4889,23,7095,5093,1203,4605,3364,5546,8034,3791,3201,443,590,3707,8215,6339,2027,3752,85,4903,2069,3580,1038,8420,6595,5127,9204,7978,5236,161,4107,8772,2329,6167,5848,9930,3634,5497,4265,2317,5303,3591,1885,5193,165,7540,6772,543,4375,9102,7752,7661,3524,4001,9069,145,6261,8598,3807,5702,3854,1646,8367,5357,5906,2425,2723,6403,4960,8264,2846,9409,3579,7210,3319,1543,3231,977,390,7490,3429,9085,6428,8961,6768,3841,6346,8770,4926,4048,8272,5993,9405,9159,1686,3738,5682,8914,1899,681,8978,5580,4548,4964,9615,7789,7649,3028,9782,2067,6847,1148,6664,8581,3713,671,6116,6121,5689,4451,5609,5927,2360,3354,4085,4748,9275,9627,3994,2243,931,9692,7485,3307,8021,269,4587,6460,9187,3959,3670,1111,4159,5383,6320,6026,1061,2455,8002,8753,1248,3004,8316,6704,2550,1658,43,5607,2336,5929,4242,739,9463,7540,2921,4684,4498,1501,5253,5711,9341,6432,2189,3864,444,8691,2464,9695,6862,9844,6489,1588,7159,4242,7831,2201,6469,7717,4671,2540,9600,7129,6442,8936,7026,3962,513,6701,3773,7105,692,5962,2916,682,3740,7617,8749,5407,9096,7728,7040,8634,2561,7992,7949,3063,8315,3634,476,7693,5674,7656,9758,459,7919,1796,1804,8312,172,3666,1444,5554,4709,745,8006,4470,7056,7832,6561,3909,3447,1633,3826,881,9376,4278,2876,6741,197,193,4144,4075,1646,4207,2205,1984,2281,2990,5133,2834,8060,998,1307,2701,5946,4477,2772,8299,9126,4552,5633,9235,5181,2430,5671,7187,4938,1812,7183,8131,1432,9434,8427,7497,1314,7399,550,6812,5324,6683,5923,7516,8676,8457,6035,6574,3657,4854,510,940,2846,5458,7224,3942,5258,1281,3982,6248,7733,6100,8988,6747,2011,2953,6281,4574,1810,5235,3919,9111,6473,6316,4823,1487,9848,3979,9929,5008,3616,8098,9342,762,3541,6713,6759,1180,5488,793,9280,9893,2176,9654,5993,5097,559,7667,6598,8759,9840,8811,8550,9748,1365,6103,796,2042,4872,4989,2559,3389,3774,9685,9396,3861,3063,8541,722,1361,828,4394,4827,5651,9597,4494,1650,1776,701,6653,3052,7346,2229,180,654,8794,757,7760,6728,7903,8589,4749,4440,7591,1501,6938,6563,2631,6443,5367,6326,3913,8936,1653,6696,906,4955,7089,4777,8807,4235,762,7112,122,8733,7077,3131,3743,9080,5344,8347,5662,1024,6608,6824,7835,9730,8193,6097,2774,9314,1804,6785,7618,869,3530,4704,1707,430,2716,9041,5411,6610,805,6549,7618,6827,8653,8811,6611,1351,1838,4798,346,8294,4952,4333,4120,7643,7135,7253,2481,4761,1361,6050,4951,9782,8571,5542,5060,5045,7475,287,2693,1126,4265,8491,6026,3273,3190,4967,8734,1760,8594,9825,120,6798,5243,6065,7850,1417,5387,5133,2122,1243,9454,3833,6180,8508,2298,1848,3700,9109,1216,4194,3428,9798,8563,8815,6054,6556,949,1724,2009,6416,7688,5039,2298,3327,5284,701,6502,1253,9357,8029,7131,7609,3677,9300,189,2851,5944,5578,7042,482,1371,5218,636,511,3637,8913,20,111,6174,7338,2592,3012,4815,7266,2525,3302,9864,7364,6282,7088,9746,7360,6432,5107,7270,9785,5402,7690,1347,1311,3122,6269,516,2156,2257,5152,1704,7965,3124,5778,2853,6934,326,9380,22,2398,6293,6691,6337,8663,5008,85,4842,7709,6833,2819,6024,8469,727,286,4244,894,1133,113,3587,4252,5192,6826,2775,7978,4941,847,6277,9770,3304,2526,1873,3762,5851,1385,2300,1717,7749,9802,9437,9239,881,167,3518,5646,6601,2988,927,3190,1789,4758,873,1413,5790,9074,6297,777,2666,4044,2581,9278,2653,8957,7791,327,88,2468,627,223,2420,1921,8982,2094,7597,5114,8974,6981,2154,6702,3735,1863,6270,9493,3751,104,4266,6299,9821,1492,6243,8286,4836,1092,1502,2480,4173,8769,3498,2831,9694,2859,5937,6005,4865,4490,889,3959,2588,1417,2911,1001,1179,2611,9710,1802,9334,209,2523,4275,3381,2927,7232,6848,9363,4579,4905,4564,6356,7023,9344,8122,6310,4253,9337,9824,1455,711,9046,6395,9468,2251,9761,616,8083,9451,6595,1943,3788,7552,7582,8276,6114,2890,8424,1746,2517,7172,5618,3854,7327,8514,2038,9279,8237,6847,8248,9895,7533,8768,498,1604,8254,3291,8624,5733,3346,9701,6451,7993,3896,1195,2739,1937,1422,1168,4634,7019,4550,6436,5179,2555,6590,9128,9205,8066,286,3561,6478,1083,1332,4567,3578,1784,460,8616,7900,6518,458,20,4112,541,4132,2518,6640,8584,696,5847,7114,4737,9586,6149,9673,7222,4929,1718,4682,4827,9760,9228,4823,2608,1169,8751,1469,3630,8602,2149,6181,9130,7194,9041,5275,8693,1991,5229,2802,5594,1267,4626,8699,6261,8296,4441,4056,6787,1285,8047,2813,2240,4603,8218,9299,8646,8234,5696,2203,3373,874,7651,6644,8865,9287,3016,7169,2557,2783,9771,4216,3669,3143,5650,7454,5482,6715,9013,8164,6734,8281,1227,5630,2934,5344,7820,6674,8686,7215,7435,4385,8488,1840,3829,2850,4990,3585,9161,5825,2267,9127,4269,9493,7814,6273,2367,4143,3232,150,9042,4199,648,7756,6682,3539,8662,2439,7255,5256,5475,5160,6390,5985,1908,1567,3554,7003,5200,3451,5142,838,9846,2279,1823,7343,8875,5573,5213,9604,2199,8080,8664,6992,5370,863,732,5720,542,5009,8599,8526,9306,3869,9141,9856,8364,3764,3047,3911,7215,6648,2676,7167,5246,3940,6837,6254,16,5941,5886,1855,3606,7226,113,4602,6009,9778,148,464,8887,9589,9543,5139,6744,5777,3628,4593,1550,506,6940,2714,2919,5199,3098,4640,7579,3369,5540,4761,9575,2136,4128,7620,8198,415,9791,2280,819,7468,5097,7676,3865,7318,1911,4982,742,5119,8111,1108,7835,9058,3748,2238,5521,6213,464,5253,4830,4490,1227,4737,1541,7297,4547,9222,924,1964,1165,5837,8174,9540,1093,5083,3299,3107,4877,4954,4277,2792,726,8834,9384,6380,6460,4701,1819,4280,3301,2936,9314,2020,2747,3760,3195,6994,8364,8636,3049,1866,8691,1488,2020,5578,1290,6434,7069,7757,3659,3069,6599,8211,4889,3945,6980,3874,4782,7330,1277,8238,3495,745,9058,2974,4881,505,2449,2002,6913,3517,3079,6149,1831,9671,9064,670,4263,612,3536,2755,8452,7911,5377,2658,4622,5383,4853,9868,285,6894,2489,4145,6421,4891,6457,2287,6735,536,9437,4789,3802,4250,3480,2411,4896,7988,1469,452,5504,7397,9648,5030,8364,6536,5846,1697,8639,3816,222,2513,7872,3599,405,5940,9709,3992,8246,3813,1455,429,2320,8872,8518,1433,5283,876,9349,5135,6161,1128,3814,9121,5505,7700,6589,1780,2858,7312,1661,3204,1335,2368,5405,1865,832,7885,8854,197,4852,1499,3302,1546,1970,8454,2813,78,2096,6302,3695,5869,8808,3004,7814,1832,6834,1099,1836,6967,8378,7083,999,4523,8703,5714,3251,5575,2046,7889,1220,6138,7498,8974,1408,8061,2449,2141,3141,1385,7854,8025,4908,4963,3958,5023,6052,8380,9818,8992,2182,6283,9932,3962,2136,4772,262,2293,8150,8960,9272,5339,2156,7915,2654,8021,7390,987,7455,1488,1340,1276,1348,2683,1843,1526,9935,5341,3715,6434,6151,2353,7572,2514,5302,2031,3383,1571,2922,1940,4594,562,8435,5369,2294,6910,3660,2364,6993,3160,5281,566,7461,2091,722,9882,9770,6779,5371,3529,881,2822,9050,3287,9741,4342,2766,5225,3477,127,3495,5985,3494,1415,6747,6270,8336,2274,9324,218,7512,8366,5370,7407,9871,8770,8608,6103,8579,3558,9630,6154,2823,1480,2132,6705,3765,2348,6082,8840,1424,1754,7616,4418,1728,2823,39,7451,2713,3357,3533,2545,9758,2383,8457,4419,6432,4119,2659,8738,7535,2893,6596,74,7761,8389,5846,6844,7951,9499,3264,8109,5645,5443,6702,1323,7801,7826,7536,8816,8565,1664,1696,5332,8670,9863,4593,3471,7331,9828,2217,3842,50,2440,9450,6839,3406,8523,7597,695,3392,4148,4135,2515,560,6335,7052,142,3106,630,1543,6591,8726,5953,9393,2849,3314,6908,2724,2894,2393,4497,9557,7653,722,3032,9872,4696,5650,1120,5902,7647,8149,4007,638,4086,3578,9237,4293,3622,3812,7072,7526,3675,5316,8803,3240,964,2685,3260,804,9898,7422,1158,890,6313,1632,1112,4349,2248,6857,8593,4680,7441,5443,5544,8869,7769,5377,2314,6868,6024,5530,2313,1865,3473,4305,4912,7188,4763,1334,1041,892,7938,6200,3571,8609,2641,594,6210,885,3986,6179,4468,4075,8034,2564,6220,4654,6903,2673,117,3797,9687,9153,5542,7813,9595,9740,7852,4664,780,7279,1478,5347,8614,5223,2071,2806,7479,5971,9929,704,4056,6661,6492,7800,8637,9962,8910,3560,7812,6119,6311,1032,493,9411,852,3484,426,9087,2708,3376,3954,8121,3853,7476,6736,9857,7133,9424,7393,3321,3028,5886,2185,4894,4433,3516,6708,2836,7775,1014,7594,818,8611,4355,8700,8394,5274,8142,5521,6902,4392,5753,2143,4371,5692,1067,4095,6183,5195,1431,9790,4809,3882,4523,2606,1435,8693,3249,1352,3927,2957,5964,9305,1676,3548,2179,956,4007,1490,494,8976,7716,6331,4733,732,4154,1804,9394,4480,8902,5819,1335,3827,3494,9938,4796,6633,4809,3500,813,1246,6429,4801,1330,7693,3409,3967,1992,2884,4642,5658,3767,5080,1343,5594,824,3896,1457,6256,6238,9906,1883,1982,8738,7994,9759,3160,4969,7594,8784,1175,2884,1929,7053,7612,1041,6813,2372,9302,5697,7273,4028,7743,313,2838,6002,3122,5778,2995,5219,5327,8957,4163,1866,5702,3069,2456,4098,5215,3671,2500,946,4880,7137,1420,9861,3264,8001,9686,9920,8679,2837,1533,1423,5110,8271,2522,3690,6579,7939,2742,140,8508,4407,3763,8958,9442,4581,1937,5491,7646,1512,4102,1190,2576,6870,7867,2690,5739,6517,678,3958,1060,1659,8371,77,6248,1549,2953,2814,2860,2091,9114,5692,9064,4317,9950,6691,1696,903,6696,4461,3716,8599,2429,8416,8137,3094,3380,566,2185,9173,6185,9419,5522,9465,8084,570,8219,7855,7882,4258,6519,9719,9150,2009,5364,434,2771,2831,2978,1728,7170,1203,666,6073,3966,8249,4043,8102,4779,7155,2935,6384,4608,5219,5030,9305,7171,1325,3236,8884,747,660,6513,4491,2739,9529,8212,8165,5850,690,1489,6119,6952,1800,7738,581,5776,7163,8244,8682,3595,6202,1875,2849,5712,2613,3494,2454,4276,1461,5938,7656,1572,9019,6522,272,9615,3387,5465,7861,2137,8509,6546,5893,884,6526,7170,1304,1965,1932,9595,1177,6500,267,8244,2651,478,3439,2979,9836,9107,1457,142,7723,6101,3938,476,32,7821,2132,1972,498,1766,4738,1037,2751,9033,8070,8878,2591,8022,9972,2354,7133,3420,2257,4233,6098,9165,2603,255,5966,7796,2345,5896,3590,5102,8995,8962,8983,9307,7149,6480,6611,7190,9129,2221,8378,1671,7749,805,2749,2379,9210,2060,1985,3709,5697,3477,619,8461,8149,8873,4704,6915,1968,9179,2322,2970,6564,5527,5095,8943,1416,9853,5296,9259,812,402,4750,9869,958,1978,5902,5806,8495,8331,7150,6572,6962,7712,3324,3578,8463,5044,9537,3487,3358,1073,1890,3423,3821,9090,5741,9689,5157,5873,8667,4908,7222,5129,3681,4564,3890,8645,8166,1886,5951,4828,7368,1234,25,6005,8510,4224,6438,7857,4665,6906,7972,6841,7976,1579,7408,9179,5275,2010,634,987,2700,576,9326,7691,5954,3212,444,4750,6084,2223,7334,2164,1542,506,2434,8821,9775,8319,1474,8792,5061,101,7816,5893,2767,7204,3124,3085,5078,6641,4010,1048,6391,8614,1639,5399,2843,3778,8849,8935,4486,4524,4762,7547,7137,3729,7414,3787,429,8552,51,3418,3646,454,2232,1697,2961,3275,5336,7732,2221,6078,1978,911,8735,9833,513,4658,3013,5752,4399,5368,5538,3756,4272,2748,9838,7271,6344,8449,4747,1557,7788,4440,4470,8583,3466,6022,6716,3589,472,2286,7171,544,2625,9745,9811,7548,8759,1758,7168,5041,8303,8621,2198,1155,1820,8,6046,3413,4682,932,2643,1826,2816,9106,3940,9346,8568,5298,5104,178,3806,9604,4070,8135,1715,3116,3465,1459,6013,9748,1014,7553,7920,4228,4480,8429,6800,7694,8414,1534,6805,7968,7661,8842,9064,8173,9040,1742,4476,7599,3499,4568,3773,5906,3296,4168,8134,4715,1966,2990,8850,5122,9186,1442,7746,7017,2136,2488,3739,9491,9951,7663,2248,8295,5882,4360,463,1854,7612,6477,5781,4018,3166,3347,6540,8845,859,2179,1070,9091,2205,603,5242,5508,2320,6077,6921,7606,5632,4842,927,281,3213,2648,1344,89,4343,6986,7970,4934,6915,127,9724,9222,5114,7726,2191,9581,9764,686,4151,8114,3372,6628,3377,9132,1190,459,2115,6930,9595,6190,6313,8543,966,3523,2389,664,3339,7056,8678,5275,7538,9915,8481,3440,4410,9160,1994,5721,4411,1274,9948,7812,4956,2290,8748,5501,8136,447,488,6543,961,9033,4436,5196,5183,9581,4172,2374,8550,1479,206,6735,4840,5910,219,8836,8857,2383,4091,4836,9726,9925,8069,462,4687,7009,8555,4878,4205,5381,8980,3549,5998,5037,11,8801,3449,7108,1007,8280,9349,5430,3888,3617,5281,3985,5279,1220,6955,7032,1075,8358,1332,9252,4482,1733,1321,4555,3782,4571,1479,4090,1071,9736,8914,3044,1270,44,267,4106,1196,7113,4220,838,4582,1270,5375,2448,657,2171,6955,577,5830,9469,1613,8038,706,8678,202,218,6747,1632,3038,3288,2697,3446,4572,4460,9483,2719,6334,3954,4418,8772,2312,968,2794,8055,1324,9487,7518,6584,6403,451,94,8721,7429,3703,8998,2780,7671,585,5589,3259,6378,7950,6225,9160,6099,430,2469,9479,9954,2459,7709,2717,2809,5863,1307,5892,70,1690,1513,784,7162,8137,6125,4953,1862,6683,9954,260,9079,8808,3299,8305,1945,811,7284,4021,5133,8553,5484,408,5968,3696,5184,3121,9773,1612,5178,3198,581,4260,2340,6309,4259,648,8081,7565,9990,8671,9998,5517,6141,1213,5011,4477,2901,451,5347,5606,1190,9504,7051,2204,2037,1237,8373,3190,3407,9286,8830,8532,9700,4017,4134,4335,7422,825,8350,6233,7711,2339,5537,9426,5317,10,6125,9576,572,2242,6883,2225,5065,953,47,9551,5317,5016,9898,3200,1177,2599,7869,8255,3493,6010,997,5861,9771,9416,2446,9352,679,7083,617,5018,9591,824,3766,8743,8232,1264,3559,6244,1574,7698,6101,2044,3937,5590,6451,1740,2774,1163,8191,3500,4104,8646,1078,8493,5468,1920,4092,4970,281,7232,4985,9478,7207,2057,4333,4636,7268,2947,8722,1423,6789,1138,9863,3590,5801,509,5925,4944,2791,4456,6308,8323,5912,3158,6728,9319,7007,3283,4119,5901,2921,7805,3329,1045,2117,9856,4456,5910,9495,8788,5824,9791,9160,3468,6631,5134,6783,6171,4152,9419,4873,526,213,4766,4705,3508,8025,7988,8678,8441,8351,6086,4861,7834,9420,4490,7735,6323,4860,7174,3717,8019,6581,8998,3093,5739,1186,6787,8554,9396,3804,263,1239,1921,5213,470,2974,7523,2690,4683,4470,3316,2752,1718,8132,8568,2167,5524,7499,4219,6890,1335,2227,7578,3416,1412,5259,6342,3480,1990,9873,9540,8619,3729,8959,9654,7183,5146,4267,744,9973,9336,5887,8907,406,5567,809,5313,4658,8714,3632,9421,1347,6128,1030,7201,2422,9396,6618,8746,7530,8789,1832,5878,8049,2514,8624,311,9802,7959,2598,1654,7681,9672,7664,4120,5609,776,6575,1798,433,557,478,2706,6742,9604,760,8796,9423,8899,4744,3875,4464,196,6319,5410,6628,7652,8081,5720,2012,4847,3561,1504,3227,279,38,2545,5312,1344,951,9283,8558,5197,5116,2352,7322,9420,6501,9640,9974,577,1815,8449,3302,6146,6482,2541,5350,9215,3384,4015,6776,6959,1480,6780,545,1909,337,8645,2050,7792,2432,1768,7338,4544,9536,8801,1696,6077,4853,142,9436,6331,5509,1622,4351,6876,4511,6017,4112,4818,5788,2666,7715,3562,1654,8855,7734,6775,8499,3852,7360,1461,9964,3134,8944,9227,9497,5530,5806,4661,9744,8009,4405,2938,1932,9835,6859,6302,3840,199,2741,1382,8669,9879,9022,5767,8422,8908,4602,7266,9895,6801,1335,1180,5893,6252,9155,8388,3892,8346,5905,4668,1108,1129,8536,3589,7478,6396,320,4478,289,5101,6294,2358,8232,6447,4283,7054,5569,2931,4411,6506,7885,5799,1439,9866,931,1052,9517,6567,6338,5407,632,7972,3484,3673,3089,7472,9205,6062,3491,337,3025,7804,3129,8042,5317,1941,4147,3910,4261,4797,3493,4123,9416,5816,6926,3067,808,7176,5269,4456,9429,9347,6811,4302,7304,787,3275,3018,2351,4426,563,43,6455,9023,6429,5929,4508,9378,8219,9537,9438,5002,7669,4933,826,6507,3748,1418,2682,2486,4667,3799,2961,3667,8171,5039,5598,3286,3943,7345,3434,7763,9627,5486,816,5364,1495,9991,5244,37,6041,9370,4932,6064,6122,2790,3895,4318,8835,5428,8072,8585,6340,250,8442,1881,7379,5246,5113,9271,7600,255,9772,7779,4265,7510,5502,367,7104,1054,5723,8505,3300,9146,1073,8298,4960,1662,3984,2852,920,2456,5100,7514,555,5174,1712,2986,6668,8649,6103,1675,7100,2874,6317,6489,6941,1905,4035,7721,538,2152,4334,2948,3709,5044,5967,8413,9408,5673,4004,1050,3169,9330,2302,9957,9328,781,264,2420,4424,1799,4191,6061,7551,7951,2539,6297,6160,1669,8038,7739,4616,9773,6218,2957,1727,6016,4859,9080,699,2094,2240,8654,2920,7284,1632,7008,1605,6124,4620,6881,4344,1322,7698,2458,2547,8445,2976,5795,7089,9293,5674,5485,3467,2339,8022,665,5367,627,2925,5479,1733,2118,6568,4023,3790,5585,4134,3762,4912,5422,5946,8018,8854,5461,8189,978,1581,7559,3344,4401,6850,5575,9167,6480,920,8257,6947,4938,4193,6983,9557,7541,8840,3268,5230,3213,5757,1668,8686,1301,6274,7063,5160,2776,7097,4338,5111,1497,4122,7725,4386,5130,3100,6134,6303,7894,505,6364,8126,333,3129,2987,4473,7228,6939,3973,7394,3159,8902,3867,9513,2258,4834,1155,4876,355,9694,4580,4782,1261,6806,1285,7153,3387,3435,6489,9123,7851,3590,6922,1721,9152,2444,9877,319,9516,9153,8389,4975,3436,4774,4949,6185,6016,4228,5005,2266,3825,7771,7958,9379,30,7402,2828,4102,5466,843,8115,8707,7515,6077,9246,5601,8946,4222,7792,9085,6263,3661,1815,5185,2811,1906,6161,4502,3205,3256,2011,6499,613,3854,2466,898,7334,8448,8538,3784,5342,5402,2979,6912,3657,3502,9869,8813,5597,2366,4568,382,7309,9572,2840,5224,9283,5461,8340,8816,3378,4022,8846,5720,5858,4888,9598,6932,4344,7356,3237,5180,4060,6376,2688,9494,2088,6312,6522,2197,2079,4717,8692,8144,3845,3866,6378,8565,7782,4136,4,8284,9169,9494,6407,2755,9846,6567,7623,1492,9112,3110,5358,7599,7713,6033,8699,679,8878,6538,1587,9624,9551,1005,6765,4569,5541,6846,1573,6089,9850,3383,458,8055,8264,5344,8725,356,7617,4169,1108,8343,7238,1049,6092,2747,6191,9623,9628,6377,7135,524,7806,3139,618,968,4820,4559,8402,9201,2070,9102,9509,7932,3998,8737,2213,6500,7247,7090,6978,9203,4115,8239,2813,7463,5712,4492,4824,8478,6457,3080,2161,1787,8524,9058,7633,1095,8294,3881,7914,1872,6691,5393,1463,490,2410,900,1028,2602,4764,511,9183,2294,5817,1164,2838,3809,1317,4904,9401,2412,4672,7858,2317,5216,2941,8301,6303,1253,3763,8353,5765,1557,8739,1604,7742,5731,1664,2550,6540,1753,1267,3762,1921,4464,9260,550,2159,5390,1840,2378,7451,9410,5512,3551,9354,8136,3247,4913,1760,2968,8953,9678,9196,5345,8144,5046,3970,5969,3775,2285,7192,6208,8927,2613,3346,3347,7221,6577,7422,8761,8705,2512,9826,5397,7159,9503,4025,9720,8473,4530,7425,7534,5777,7061,16,8708,4444,8955,4261,5678,65,8262,2897,9551,2377,4413,4132,4509,9348,2392,2517,3901,9420,3970,6616,119,2107,463,1228,8277,2803,7772,1232,6920,1415,6618,4728,4255,9034,3389,2043,4067,9041,9893,2847,1485,4592,3222,5356,7358,9681,9813,8671,1031,9433,7822,5867,7663,2682,9124,9078,4515,7446,2447,1281,1429,5789,6759,9218,6333,3410,2514,2410,6423,8669,7807,7336,8610,5536,1880,9069,8272,257,8008,7863,3115,4649,8457,3937,3676,2149,6414,3828,1742,6665,4346,7896,5197,4870,9746,4346,3083,4610,1345,4057,4668,2901,239,7402,2556,2858,5817,7648,4754,7783,8401,7328,5060,5459,6167,1225,7288,1595,9411,6582,4111,4411,7496,5629,9424,758,9855,9209,573,5952,1457,4138,6535,7788,6354,5163,2352,5851,9426,5874,1623,4575,4030,1055,9863,3697,6183,9544,2099,3895,8417,4898,8723,8653,3433,3653,8814,9321,2279,9161,198,6159,4820,5299,2041,3007,6920,635,2860,2303,3304,5120,9950,5556,1217,3735,7030,6354,6844,2221,9630,9494,941,8466,6546,6686,520,788,4150,2504,3051,6989,662,2511,1660,7863,3438,8562,3181,5394,851,5455,5177,7171,1086,1050,2241,2241,8784,8103,4777,4347,2524,7811,8417,7609,8060,7028,4931,9611,9839,2939,8668,6002,4717,2260,7207,9979,8328,7741,9939,1914,5833,1284,1584,2053,4589,667,2644,3776,7383,4142,8586,1916,5783,4845,6187,4321,7919,7880,7348,5771,6845,3120,472,6450,2437,1022,6702,4756,732,5686,9580,890,4686,8671,8075,7980,6774,3601,676,739,2489,4023,7156,1284,1653,4801,8275,3190,9168,3347,2542,7794,9696,379,8268,9697,7723,4067,5896,8076,8654,9073,9758,8110,1931,5481,8987,6234,6193,9987,1701,7881,5625,5514,8859,9733,5655,7749,5100,4808,7150,9550,7363,5192,6810,9476,5145,1420,7438,724,5716,9711,5691,5399,4655,494,204,6804,8215,6492,7409,2492,8072,64,865,835,335,2203,274,950,7342,6335,7790,5766,9326,9471,7694,5468,7744,7731,4668,8282,8072,1686,6055,768,4241,6720,8480,6099,1306,1274,4493,7172,493,4471,939,7077,7439,2131,8903,663,2734,3028,1899,4427,6159,260,8910,8865,59,3782,1765,9368,7282,7472,354,1714,5765,8084,980,6277,401,1036,5030,9434,6907,9903,3171,7476,7221,2068,2636,2410,1434,3506,4899,4442,8239,3356,6944,7760,2672,2798,6345,7811,9305,6640,4549,5000,5158,1872,5580,5060,3629,2146,3421,3218,3723,7950,7157,2040,4586,507,180,1773,7499,9371,7504,9541,4,7908,2021,2597,4696,1913,9447,2174,5553,3095,3947,196,8863,9351,3870,991,7538,1821,5300,5758,5594,5791,9344,2135,7706,4114,1121,1244,9082,7971,9126,8600,2574,392,6737,9289,3458,4182,6803,1751,6781,5951,3583,337,9564,8480,7120,9478,9520,1905,9844,29,7014,753,3750,6953,600,8424,8531,6141,9048,6442,645,9944,9340,9512,3908,4428,6460,6987,2519,6822,7800,1721,7382,2286,8145,6704,6360,3450,8295,2448,9901,7293,3025,2807,9228,1115,5197,5069,3739,9388,5323,2961,9019,9887,9393,1141,7122,9060,1404,7681,6569,8292,1264,2894,9712,2137,7033,4602,9565,7220,4899,3595,2840,4914,1476,3917,9415,5741,3203,6805,7828,85,2982,4186,2919,378,3853,398,3621,6721,2531,9023,1622,5553,6381,1165,4405,8949,1802,1690,6562,1010,7808,3052,1474,8142,3304,140,4087,8814,4875,4869,9772,4850,596,1373,2376,6501,7215,7165,4701,134,1746,6419,8783,5036,4757,7712,7888,3273,9577,5419,2326,3672,8912,2459,9356,2761,5628,779,5559,1288,679,7399,8100,7940,6803,7606,8954,3333,9740,5042,6459,3949,3913,1146,6233,96,1033,5149,7622,6177,9791,8902,789,8156,3754,6851,6679,1796,5807,342,3894,7483,3693,1728,2566,6838,6737,2010,4940,2246,8362,504,2309,3809,5073,5766,7727,7313,7781,901,2270,4884,864,1217,256,7231,8311,7793,4970,5630,5679,5143,9082,3592,2137,8168,2522,736,1499,2145,8068,4022,2668,5547,967,4844,5024,6634,3712,6827,6791,5330,1068,1667,9569,2923,9027,8943,5545,1486,7199,7461,7752,9584,7101,6180,205,1541,572,9987,648,7782,9282,3104,8547,9016,5450,1500,2614,2284,2124,5360,4903,4402,9993,9194,2642,787,7682,1537,5792,8665,2890,135,3248,6944,7078,1917,6199,5982,6789,4606,4286,8220,8332,1375,5470,4797,5990,5484,5461,1621,6347,8135,70,2936,281,8983,4056,5075,2688,546,4059,6545,7861,934,1916,8203,5481,4509,4620,9109,6650,516,5855,238,4434,7313,7854,513,8812,3618,2543,6534,4589,2329,947,1874,3519,1974,8367,5560,7660,3700,172,8560,11,5861,930,3460,2960,4027,6412,2164,9815,6238,6052,9369,7175,1923,9057,3369,3656,1772,5037,7901,555,2437,3212,2435,1607,3456,7617,9990,9656,6978,3070,8117,4889,908,6702,4102,9108,6251,5477,7565,3512,3559,4549,2782,9682,8790,2350,9696,1750,2387,3201,4228,7244,2908,9340,2786,8229,233,604,5924,9687,8555,8983,3737,1482,1595,7411,1957,7484,825,2752,2908,7922,5221,3136,7805,7925,8116,9053,9831,1684,9653,6795,885,874,3998,1297,6802,5749,7473,3249,1650,9010,7345,378,6333,474,2213,8389,9766,3900,9389,6536,934,301,7858,4140,8956,7985,1000,7013,7383,3359,6005,4983,1235,2944,5504,7627,3850,6730,5115,2124,5315,5438,6219,8154,5248,5945,796,3481,7690,964,1536,2651,9713,1369,487,4947,6439,2676,7494,5879,4620,7831,9522,1540,5630,5002,3440,5298,6941,1639,6966,2256,6617,1624,9527,685,8070,765,1235,7264,3337,979,58,704,5095,4296,2758,8825,3271,6140,5401,9247,1629,2277,798,3122,6765,4592,6819,8991,6011,8638,3315,6723,6396,5836,2812,2093,4525,2596,4778,6055,3469,1130,3970,6851,2933,9661,2502,3884,8479,6321,1774,7495,845,6357,1575,4595,2438,296,1745,1651,8755,4613,5560,986,9120,9605,2095,2889,6909,3757,4447,1852,1855,1742,1134,432,2963,265,4254,6424,2476,4575,1545,9150,1162,9320,6864,9822,3555,1441,5636,1426,325,5327,5622,1385,2795,1060,882,4188,3131,4881,8175,5435,4765,5586,8606,7586,1466,7075,3965,7030,1165,5563,769,7903,5422,5709,4374,3635,3345,5792,8308,325,568,3653,4940,1020,9937,3460,8641,6372,2557,1618,1627,7561,2505,5872,1905,2233,7819,6649,6807,7164,8618,1967,2110,6726,2229,4048,5529,4174,3242,6400,2661,309,5688,6355,9084,1909,3406,9279,8746,8202,5605,5279,5180,6102,2028,8666,915,6280,501,5787,8485,2235,5597,4715,7995,6272,7791,6945,1415,7828,7957,4669,9478,7309,9990,2770,6076,2493,7724,6152,2989,2482,5500,3735,6903,3857,4621,5833,6648,850,116,4839,3308,6621,6798,5734,9416,1063,6846,2611,1909,8998,7065,3676,3071,4566,7703,9879,3443,5749,1385,5704,3539,2159,6534,6623,6705,5500,180,7159,9295,5094,8252,6447,2127,5513,445,8428,3948,3116,8668,4408,119,973,4518,8623,7148,7197,323,5296,3976,9816,2378,2586,9351,2683,1203,7772,5759,4822,2797,5487,8588,2052,3814,5710,1209,4603,9809,3246,456,2825,8892,4053,6451,4880,7739,7964,975,9447,3461,1410,6914,4183,6943,7649,3355,969,5102,8401,9941,7898,9020,7030,169,8555,7193,614,714,7336,7327,6695,9835,6449,5538,2926,2212,9358,3017,9084,3110,4937,9489,9983,2049,9052,1014,5745,2282,6174,6765,5719,9189,3899,2057,2829,6244,1720,8011,2084,790,5948,8360,1507,8706,9258,6680,7142,2260,3208,9769,6763,2442,7770,1087,7102,3450,248,4507,8988,837,1889,3097,692,3790,8855,6073,6170,4752,5713,7450,8976,3662,3933,8575,1120,6469,7643,2642,448,619,685,152,3593,8089,95,6004,1108,1145,2025,8910,9199,3659,3251,9454,8403,1995,837,839,4919,1734,1351,8452,4520,8182,3189,652,2811,1353,6516,1910,3318,7121,4429,5912,7729,7882,6696,4667,4202,7835,5070,1635,8877,8849,1448,1180,5902,7160,3234,593,7694,453,8180,2586,7684,1122,1646,7851,8851,7476,7437,6389,988,267,9723,3090,6955,2114,1062,253,4957,1743,2253,1632,6786,5444,2691,720,1491,7839,5782,2783,5716,190,3052,704,5880,7763,9673,8038,2690,3858,4732,5251,2292,9832,7428,1905,9032,3914,3121,3429,9959,3157,5772,598,4366,1621,5701,5665,7616,1125,8333,1150,4025,5293,4499,4291,8323,3354,9315,2356,5151,9365,6331,8797,3118,8666,4042,2465,7972,7256,3800,38,4533,2776,9717,5507,4361,3219,9894,8441,9233,8180,6899,5505,8636,9222,3185,8356,2296,7733,5654,8497,9425,6768,6727,5187,8099,1055,8642,8811,791,6782,2515,3914,7839,917,3083,4795,7866,4847,4701,4502,7886,5797,2166,6764,2470,1133,4566,5725,5789,3021,9756,6886,3042,5427,5565,4027,3974,6751,9947,1006,3077,3581,4742,1615,3515,9797,2474,2035,6787,2998,8969,869,9865,350,3338,8668,703,1631,1747,4,7629,9923,5302,1174,2290,6477,2135,5675,4995,2878,3611,8635,3993,5680,5122,9573,4796,3635,8052,9677,8990,2561,9717,8947,2968,8947,1785,840,607,5531,938,6456,721,4172,7629,1114,6706,923,3213,4583,1898,9637,4529,1103,4683,4558,1567,9519,2128,1384,4005,613,8822,5302,7391,8051,8510,9428,6369,42,4873,5204,8830,1524,4550,2045,9757,1931,9065,6509,1989,2525,838,9088,728,9433,5104,1823,9060,7039,9939,6708,7003,3215,2787,3494,9232,2116,5425,2034,2127,2616,9842,9163,1707,8423,1885,7449,1182,932,9898,1710,1162,8722,1949,9283,9386,8342,4675,8266,8179,5216,6319,9818,2981,82,3375,4950,3292,9806,1559,4894,2869,5441,20,3257,4782,6861,9165,5865,7657,5412,6881,3092,4115,8624,1830,7133,4657,4609,6406,5401,6170,4054,6553,7512,8465,3225,5606,9973,5865,9874,4728,7864,8533,2306,622,242,9469,6055,4785,786,6044,1462,9587,6533,8452,3059,4000,6957,2430,2160,7275,4105,5592,4303,3668,336,4026,8728,2645,8721,8016,9526,3565,2512,7834,4204,5757,7266,7128,773,509,9218,5133,8962,1000,4387,1644,6374,9368,902,1347,9983,3229,7305,2625,9292,6629,5940,593,5072,6529,649,988,4660,1627,5854,7458,5640,8370,2859,4178,1902,5708,4783,1721,1333,5918,4850,8083,9701,4807,7911,2347,5737,3876,5151,6101,7218,9165,4196,2741,2015,9030,1051,7729,812,3070,7846,8137,9681,3871,1167,8526,6514,9645,1205,4315,7851,7584,7407,2150,76,736,9960,7472,4570,3401,5704,5647,9054,6620,401,4495,5469,7974,2024,7941,7790,7778,9658,614,527,7222,2240,1033,275,4752,5022,7394,4955,8182,477,2123,745,6690,546,8974,1529,3905,7245,8129,1978,5261,2525,7238,1179,7831,3654,97,4800,9651,2735,2978,1537,1356,3217,8160,7626,5519,1436,6747,6376,6045,1514,3438,4239,5671,1163,486,3534,5652,8153,6085,9536,1119,6901,2889,3750,9775,963,9436,3733,4854,9008,8172,7654,9404,9052,1028,1296,282,7571,433,6938,6478,4997,9649,6459,2172,6686,7838,4088,6221,7998,6699,4150,1448,6490,9414,9485,2883,2979,339,4791,1513,5937,4034,1317,1661,2035,6503,5181,9573,7657,3748,4218,5224,1548,4395,2026,4891,2482,8051,545,1474,6085,3977,448,9148,7813,4841,8705,2225,2025,4403,3205,5654,4999,2073,81,5993,1490,3489,2409,7054,3514,5866,9169,5488,3423,7847,1979,646,6942,9181,4097,7585,4241,920,2691,2613,8859,2831,4952,7498,3530,254,4892,1672,8850,2329,3552,3308,3721,7274,2653,7763,7018,8242,6406,1109,1549,4577,336,6180,9080,8002,4461,5196,6047,2461,6570,9996,2889,1030,9863,5592,9193,5136,8087,663,6543,1178,6023,8631,1969,325,3998,205,7328,4065,8082,6987,6742,2381,2410,3157,5026,793,6422,748,2420,7108,8112,345,3041,9608,1009,4411,7036,395,6561,2677,5326,6397,3695,6705,7830,1940,9175,6863,8980,6718,3632,6681,9965,8078,6447,3124,8831,8641,2928,4327,972,498,4027,9188,648,3299,2560,1153,1779,5483,7482,4666,9989,3134,1038,9826,6209,2452,491,1787,8623,8218,3895,6377,9825,9986,3066,6931,3739,8989,9460,7370,3785,3419,6348,1134,2686,1415,1385,7054,5862,5695,1507,6658,9198,1522,4616,8812,5433,145,6470,7309,5540,7269,8455,2456,1719,371,971,6440,3860,10000,8946,2248,783,4508,531,2386,7529,3914,2656,835,470,6722,108,1607,171,87,5329,6316,5983,4949,5477,9351,7740,3582,2081,3955,7712,8750,6742,1271,1157,6670,5301,1288,3966,1364,1085,2270,1078,1426,3215,1748,1067,2037,5297,1149,1487,6485,2953,7354,6282,9402,6922,6237,7205,3840,3142,7059,9255,7174,254,244,7797,2929,2772,8639,7320,8008,8101,4716,7759,1241,7312,9110,1511,702,2763,8309,5502,8476,3940,6197,4840,9106,1758,5072,4954,5983,1610,663,9797,9511,3279,8044,5178,5351,2979,1668,2962,5862,3498,3599,1756,6864,9283,6772,4090,7394,8228,394,3864,6045,4988,3621,1301,3256,1540,5521,2900,7026,1719,8900,122,7561,5500,7422,6256,2719,9411,7689,8923,4514,9174,3191,4880,645,276,6929,7418,1515,9307,2168,2551,7002,7081,6722,9173,7775,6962,7184,3047,2787,6212,2159,9529,1326,6117,210,5526,6506,7600,3429,8090,5650,2253,9118,3686,9574,7155,7744,6731,6082,9624,3607,1073,7864,3932,2525,4008,9892,9489,2070,9068,993,5883,7920,3315,350,1747,8631,1116,1355,7,4356,5704,6091,7939,1665,8592,4506,7526,6928,2182,3127,5946,2674,3408,17,7732,8248,9479,6945,9183,3926,1923,1203,1667,4040,710,7399,4379,4805,4658,7121,8552,4618,912,3835,7539,3452,2958,2878,1207,6559,4676,8751,2143,8007,984,2783,6700,35,5376,6401,2149,4134,6132,177,5000,9376,6216,6139,6455,3460,9081,1095,7007,5600,9335,7694,6719,7557,3605,7077,7382,6102,6318,6326,4997,9386,1538,7292,9077,8690,7222,7732,3580,2272,9219,8667,9756,6615,5352,5530,2640,7912,3733,6630,4626,6076,3712,7876,422,6557,9269,4365,8177,5762,712,605,3764,3944,575,8799,9507,3116,2363,5256,7812,4684,3188,3264,9485,9411,3793,8861,9221,1611,4538,5537,4934,1479,7558,7097,9362,2385,2244,7006,965,9496,8230,5638,5983,9719,160,8431,5142,1282,434,2956,2957,5009,6076,1117,5354,5079,37,8346,9140,7275,2467,9215,1282,6251,7259,3472,7331,4902,8765,2640,1599,7824,3558,1152,3763,2664,4896,3618,102,7710,2995,5830,6286,1379,4807,7424,6581,995,7302,2735,3211,2425,7,3214,435,7039,4288,8194,8892,3292,629,8877,2331,9677,5544,5333,7742,3266,3795,8821,9999,4988,1913,6263,9300,5966,7657,9454,2221,2799,9267,994,8510,610,4084,5895,7040,2486,3713,3979,482,5551,2453,8868,6390,2770,9524,2487,2583,9937,9665,211,5470,9710,111,4613,3821,7037,9468,271,1501,162,7201,6586,5834,9785,3687,8682,6567,9842,2086,1041,9674,4540,1200,2733,5336,6090,2383,2091,2964,3671,6185,8342,1575,5005,3398,3198,2672,2963,4174,7606,5487,8678,1722,3291,1958,4111,682,9411,4520,9697,5931,5238,7266,9071,6344,123,5702,54,2963,7805,3195,9083,5126,299,2014,5097,6491,9945,7121,3691,1855,8496,9734,482,3333,6037,5947,3056,738,1435,4689,9505,3418,11,1334,9039,4214,2452,9676,770,592,9965,9208,7242,7837,7364,1859,4089,4962,1338,8299,7591,3914,972,1664,6395,3364,6202,3120,7986,9396,4350,1448,557,6236,3103,9436,2092,1325,6894,3465,6226,7672,1632,5285,7592,2797,1880,3982,3793,7848,8121,252,7590,3564,2590,185,7754,6003,9005,3018,1585,5996,2897,22,7024,8259,6824,8712,7344,3279,4624,8140,1561,8933,8026,6232,977,6271,1295,5216,1514,4705,5,5597,1978,6684,8551,1419,8836,9873,3503,3731,7157,2764,5264,6955,5469,9734,9685,3446,2731,1881,8567,1717,1253,895,4661,5493,518,1919,63,221,4827,3340,9961,2997,8305,6230,7770,762,439,6721,2286,3349,3230,2709,8548,9825,248,9006,6415,4586,1464,1210,3976,3100,5519,2705,6978,635,4105,2205,823,9676,4430,6363,3627,1214,4034,7766,113,9437,5054,9660,8177,3317,2032,6033,6773,849,3255,4003,4680,4718,8098,8249,1778,8378,3246,8655,9475,9627,2463,5558,5948,5384,6808,4575,4455,5780,8645,4716,6096,5631,904,2540,3343,2895,6208,3444,7345,6222,5271,8287,8158,1117,4320,970,7922,1867,4530,7204,7242,9023,5536,1065,4713,7142,1912,8222,8864,3725,9390,5254,235,7477,5851,2774,7699,2051,8668,6793,9844,839,4649,3532,9298,3387,500,90,7663,4353,1552,395,6806,1603,1726,1004,214,3974,4460,9474,5636,9687,1706,4521,7595,7481,6278,7569,6484,5669,2730,4887,9946,6315,3892,1795,5261,9895,760,6379,1670,8983,2388,1067,2126,5436,326,14,6386,297,8941,2771,8375,9357,614,6766,9068,4355,3397,3882,8704,5908,8404,6691,4523,5728,581,8862,1465,7588,9398,2476,9587,9098,6686,7854,7741,9587,9998,4438,6975,1257,6915,6195,5500,3077,4687,4600,381,5716,2333,4672,4304,4590,2197,8469,4895,3164,2938,6823,4013,7619,6175,6072,1420,6518,4535,742,4934,2613,1165,6387,4602,3894,2829,7122,5783,9507,3363,7804,4745,4234,7217,7786,265,5170,552,9726,1825,6165,1756,2737,613,5921,1147,6278,4486,3627,7454,8600,7727,1657,3696,5032,1240,6337,3951,6319,6230,1162,4535,4570,3441,8440,8410,6297,3809,8970,1580,4424,2020,4591,1854,8384,8333,4176,1581,5756,5292,4958,40,6485,8156,2182,84,5,4847,4217,8392,3216,7463,8063,5030,4072,2178,2868,866,8858,8525,8013,9240,5670,3925,6225,8189,8654,8669,8586,574,2152,2414,3245,8985,9875,4450,9634,7204,8516,2099,3098,3405,8578,7425,9596,8328,5569,137,398,5771,428,448,2408,2812,6064,4291,9150,3853,2765,5816,6388,2388,5382,9934,9367,1255,4763,3042,5489,2385,3239,3625,7555,5281,8070,9550,7824,2163,2575,6015,6002,664,2129,3774,4667,7223,7422,3449,6945,2415,4939,4951,3616,5403,3217,4446,1054,5699,8638,244,2650,2378,9738,1599,2567,1746,8409,9619,8383,6485,1605,5612,2797,1575,7024,1527,4802,5092,6035,3698,1960,208,4526,3651,9415,8934,5206,9473,5221,3333,5826,9744,8867,4358,8170,8893,8195,3907,1673,973,50,3137,1498,6038,6395,8163,9750,7288,5551,3095,3780,4538,581,1135,6341,2827,1656,209,5463,6316,4617,1238,4124,5466,2076,9611,6022,7539,4966,7754,3831,2557,8613,9151,5533,1429,9848,2870,4564,5736,8765,4968,4156,1816,4081,8613,1193,4774,340,5077,9590,158,7411,9762,9397,3861,8246,3653,1372,6622,216,289,5674,7245,5664,9774,7616,5692,3601,6953,2337,9163,1315,6849,2508,8513,2978,4615,2065,9155,1186,8918,6360,734,1674,8307,8834,4694,4911,9580,2180,6050,3304,1447,784,9060,4898,6169,3405,598,1703,4386,3720,4770,5869,4,92,1170,5683,9482,9705,7101,1084,2082,6297,1604,2664,3368,4481,7909,7921,5634,3805,3514,1582,7925,5353,306,1677,6106,4272,6965,2981,7161,1804,1766,2363,7276,9102,2694,1049,5428,2811,3094,2563,912,3479,3534,6131,7777,7290,8377,4044,9311,4726,299,9297,3273,1578,4647,2437,4931,8514,7354,4691,6806,9917,2483,2619,3578,2368,7634,1400,4727,6187,6641,6763,5979,2068,7888,226,6919,4016,7302,9991,2592,6127,7721,8763,8018,6697,2867,2836,1093,5061,5824,8591,3317,3337,6202,9598,4803,4968,822,1668,1950,5458,9139,2397,1926,2884,2475,9772,1238,2296,1813,9862,3137,6409,6214,5783,8068,5141,8295,9055,557,4384,5955,8813,1973,5588,42,5603,2851,3278,6327,618,8866,6809,5351,3066,8730,4634,9667,6007,7951,7926,6701,8893,7277,8345,7076,2091,984,3387,8401,7164,553,8157,1456,3190,2702,5988,448,3544,9246,2903,8752,717,928,7185,881,6191,8263,8386,8286,5994,7393,5861,3857,1973,6599,576,1196,8291,1793,8950,8448,8549,6623,5150,5087,4508,4770,4154,1565,5364,2854,3789,1652,4668,2741,6136,9381,1234,2568,1571,6383,9878,9834,9137,63,7540,141,258,7025,9527,2525,2293,5220,7946,9142,6513,2353,5728,7869,3284,233,4463,7918,682,6888,1673,8923,1844,5001,9472,4945,9465,4323,9385,7232,553,7950,1987,6810,5556,3121,3266,5401,8289,3350,4135,4383,6859,4992,7795,6211,2755,9089,9838,9782,1781,162,3643,1923,7735,9060,3286,7617,6182,6728,9496,1440,1648,3285,9909,3637,8708,1717,3005,6812,6300,5917,3941,9918,9759,6721,1033,7668,1784,1463,3285,6935,9023,2369,3254,1847,2902,7184,2790,8139,5580,4876,6932,8043,1330,5280,1886,1114,9140,4741,8566,8766,4436,5714,8779,2707,2980,6686,2901,4523,499,8411,9594,4423,8843,4988,1325,5078,5646,7794,6054,3062,1407,1171,788,4973,9198,6757,8620,5038,5837,4603,7085,6145,2030,3423,9025,7767,5456,7590,2877,5278,8583,7125,7258,589,8729,6277,5804,5652,9817,4229,3667,4758,584,7776,369,6060,5304,4096,4396,5277,1377,1479,3697,9876,3859,1655,7375,6102,5294,3588,2266,1267,8757,6508,8778,4769,529,81,762,9310,5417,9094,2856,4585,1276,9802,6010,7804,6899,6007,378,8117,8441,3467,2473,1053,6847,4313,9769,3399,4217,5523,9804,4164,400,3729,6227,2206,5544,2983,3513,521,527,2531,9493,2110,7740,3070,1576,2464,5177,4772,7041,9042,6789,4546,9459,2185,6282,8126,1330,5394,4672,6932,6134,6472,7742,7203,8004,8781,1400,1043,9129,8222,1680,4513,699,7463,8001,2849,276,3001,9351,8177,8312,8518,8265,8962,6078,2749,2270,4915,9458,8241,9904,82,612,3436,4769,6335,7174,5337,1493,7199,9149,9946,3995,4695,8744,2746,9982,8262,6130,801,6898,9822,8963,4044,9260,8857,829,5745,4518,4301,3510,5927,2159,6588,3205,5662,2147,3349,3193,6056,3548,1367,2040,8500,6308,1131,4829,3676,7358,9504,5971,1467,2115,9606,6481,8830,5069,19,9270,956,1326,6327,3418,499,4298,7863,854,9938,7625,7712,7806,6826,6324,2531,9585,1698,1592,9378,4064,9014,6764,1765,9330,2699,6002,9049,1313,2877,4288,6403,5151,7936,5058,7697,377,1097,3691,6766,584,2332,223,9636,8024,4901,5618,3556,9860,4972,2995,2624,624,7882,8362,9407,1047,289,5752,1900,1935,5242,6671,2730,8252,9724,2725,7028,8168,9552,7913,3638,8062,8732,4434,8009,416,5146,3990,510,6618,3668,8136,9592,1532,2978,4547,1544,2148,4260,3169,3593,8786,2480,2005,7738,6176,4218,7450,3289,8040,9787,6396,7478,1950,1974,3227,2980,2323,5740,2611,966,3267,496,5708,411,4048,9930,8875,6626,8416,9333,5177,3524,3778,6357,6563,5533,8972,5461,4644,9488,514,1645,1206,8646,6060,3560,6416,205,1281,9821,988,4718,1088,6573,4646,2215,4020,202,1610,3755,6795,3880,7707,9443,2629,6648,6409,2170,4000,3995,8628,792,8667,8683,7389,3099,7346,4576,890,8876,1568,2036,5588,6878,3225,5831,7070,9365,912,8501,8289,8634,2684,4133,6848,8972,3974,7796,9919,6136,7935,4108,1521,97,8378,9344,1467,2594,347,634,1098,4032,3718,2830,7734,2901,2822,4402,2102,8701,4761,4284,5340,1248,5072,3190,6328,1533,8498,4719,7389,479,1349,6833,4668,1699,7419,4509,9541,8515,9781,6948,8322,6177,5786,6521,8369,6546,149,4450,2693,4126,4532,4030,7678,3614,6587,5918,877,5343,4285,9319,1744,3587,3980,2792,5029,473,5884,3042,8417,27,6848,2934,2166,9452,8183,5209,7299,9911,5960,3025,1672,453,9370,2938,4459,2316,7992,2290,127,6958,6655,6426,4547,9846,2705,169,7926,1951,4868,3109,7330,2736,708,5013,5141,3723,4372,6431,2190,7703,1126,5417,7454,8136,4736,3940,759,1869,2498,9363,837,7253,1426,1620,3376,5941,7783,7722,9314,5101,9832,9517,4951,4994,5408,6215,5283,5906,484,9003,5505,4899,5786,8864,5101,2532,9755,2224,4251,1865,5599,6217,2873,9527,9833,8953,3069,387,6421,6880,9420,9346,6235,4139,9884,6176,2947,7835,4490,1202,7127,5980,9968,139,1917,5012,5919,1474,18,9468,6008,5217,7772,1296,7942,7887,9949,8322,5430,9720,1627,6751,4384,2628,8452,7444,452,8891,3877,3722,1184,6786,8622,1969,8778,9925,7822,4128,7734,1262,8294,7488,3622,8679,9313,440,9266,9271,1097,6748,9007,3455,1120,2226,5477,9643,1063,8446,9005,2282,8592,8540,396,1088,5881,3267,3810,6911,3351,9096,4862,1976,9587,5270,6,541,7478,6018,3492,1870,6166,9982,8406,776,5219,5271,7720,9732,5113,7103,9730,8143,708,2038,4526,1872,5698,4707,9397,2356,4890,1352,1812,4912,4611,6687,1860,7040,5456,3130,3789,9404,8086,6308,2661,5035,4190,8682,6261,2236,9408,3531,5023,4796,2545,6977,5078,8821,5909,8035,5267,5307,8038,8659,7654,442,7276,2653,8201,3822,523,3815,3577,1133,8685,7091,4190,7659,1397,6424,4708,5117,1404,3265,3706,3053,7531,7752,5550,7105,5214,6260,4370,613,3311,7751,9001,6039,3245,140,4564,3093,1644,3956,2262,7534,6528,3222,9757,5500,563,9729,602,1955,8126,1066,3183,6173,9626,6964,6110,7342,6725,9680,8076,7779,9645,9521,5631,7217,8220,5989,6317,4461,6438,1377,6216,8379,5226,2294,2008,5439,319,3257,2066,1109,9239,949,4578,1298,6873,9433,2678,8144,783,6270,1374,5032,4326,8376,569,6820,9389,4489,8295,3417,6213,189,7944,4102,4670,1562,4943,7934,819,799,7548,5232,9564,3764,8317,2289,6400,51,4614,8528,3049,9812,5065,1377,9294,2165,2963,2841,8009,4217,5556,2884,9093,5812,9778,8263,7320,55,5161,183,5604,7533,2828,3503,4557,5948,4809,3277,3516,559,6400,2435,733,9016,2525,8641,1952,2123,4295,5806,7215,7646,7377,9519,6782,6446,463,9427,8598,8932,6062,1570,1843,1043,9010,7414,7997,3980,3973,9532,9065,6548,9582,7760,9436,3317,2609,3779,6542,8450,4576,8506,9858,2140,1633,3833,2408,259,1573,6392,7840,5383,1061,1755,3703,9082,9552,3940,8007,1981,9148,2439,1908,5138,8857,8679,8495,5214,9349,5132,5172,5237,8115,3509,3874,2350,3201,7293,752,9569,9142,7202,9010,2660,3327,2073,30,3165,9759,1190,2906,3202,3630,2918,9753,9349,738,9966,883,7540,5729,3747,9963,6034,7428,5844,8282,2001,5883,2096,9377,7448,430,6524,8293,3405,2408,7195,5299,2093,5271,4563,8334,3552,2543,7775,1030,2437,9292,2612,5245,3640,1558,4163,6063,9610,3093,2013,5567,5678,493,5879,5787,1151,1553,3556,800,9843,3446,5471,3889,7431,1722,4373,1461,8011,5057,2255,9863,716,6302,6188,6858,1714,9202,4036,5277,9942,8333,2403,7519,4039,7224,7819,9800,8563,1937,9231,8941,2548,7819,4706,1897,5695,927,9463,7337,8547,98,1342,4868,5769,6036,3690,3927,6601,4519,9082,9972,2434,599,9451,3959,9986,3647,3486,9800,3433,13,1784,2634,6570,8887,6689,5684,4252,5663,342,7399,1523,4978,9036,294,5776,5578,5149,3160,280,8881,2825,2275,4494,3713,7581,5097,309,7295,9565,2298,1783,7562,3113,5163,1603,656,2792,7217,8083,109,7440,9939,3437,8915,1581,4696,9451,3537,8693,3482,878,8348,4734,9806,3881,8703,5234,237,4740,1008,4084,7294,9391,9314,6501,6653,3851,8781,1065,2996,5651,7559,2181,4942,3812,2071,538,2857,3301,896,3525,787,1783,1056,2535,8501,4879,4756,3440,4611,8203,6252,9500,3159,7257,6067,6992,3252,3832,3052,8632,8551,8569,3044,4593,8606,6392,5715,7648,869,2523,7446,1329,2923,8551,5109,9962,6680,2174,3383,838,2355,570,2838,5429,8672,3494,1646,7474,5175,234,9813,1257,7376,7019,7013,7281,7805,1283,3312,4547,3210,2033,1731,2758,920,5510,9417,5667,4631,5240,9901,4343,4241,5973,2925,9877,2751,9487,1196,3542,1681,3521,6200,3066,4653,3662,5213,6653,7737,1702,652,8890,2460,9760,7063,1496,2854,9302,1547,3864,2999,546,2579,2875,4073,875,6134,3362,4676,9713,1086,6358,3571,7047,7827,4744,4713,653,4316,9672,7848,704,4490,9211,8775,7561,3986,6605,3126,469,3296,6343,1626,3133,1522,2800,10000,3243,6812,4658,198,1215,7541,4469,5140,8036,3987,4091,7980,7795,7952,6545,3815,6728,8319,5452,971,319,8016,3304,7496,6725,8275,959,2680,9019,7791,9518,8333,2090,3388,1453,9644,7084,734,9299,5042,4425,4040,7590,8701,8983,9765,6055,2950,1479,6895,1597,2891,2346,3839,9635,2075,7092,3893,1831,1858,498,567,3413,8972,8592,3006,9563,1351,6515,9687,4213,4373,864,1604,2158,1580,4851,7771,9295,770,3547,9545,8146,6608,7996,798,1892,6604,3726,6953,4489,4812,5626,1106,6267,5728,9977,1539,7540,8350,9147,8639,7866,402,6547,7459,7293,3383,9648,9576,5007,8552,847,5211,379,8522,4111,3715,8108,9113,7709,4804,2114,1667,8725,7766,8766,1656,23,8520,4382,6582,2507,9008,4560,6266,1165,137,3290,339,8519,7626,4965,4155,3939,2763,1691,7746,8510,9831,2238,1790,2981,6308,4095,6749,4962,4759,6523,5535,1811,742,2625,1834,2935,5374,836,3489,146,9201,5334,7747,2039,4846,8684,7848,8031,1255,9260,2860,3284,8947,9915,45,5649,1923,1528,5334,6811,6543,8042,7125,5169,1042,154,1461,4812,2889,3766,7088,7258,7978,3601,2665,4659,9479,1577,8482,6263,8687,5222,1480,3207,5033,9547,8827,1685,601,4246,6826,1815,4662,4931,2470,6592,557,4471,6830,6016,6905,40,2581,1387,1151,3284,609,9451,6577,9657,7498,575,1041,6911,2998,8005,6115,2385,7875,9108,7581,4014,7377,8074,3072,2436,6016,7131,8703,7320,6438,7524,1265,471,9266,2407,8442,1209,7502,54,840,2735,723,8354,6007,7412,6721,429,3312,2406,5016,2232,8105,9770,1609,190,3691,6723,2308,1280,6453,4063,5014,4929,1749,4000,4079,136,2055,5313,1334,8111,1700,6129,3520,6223,5992,8062,2124,6450,8959,316,615,9371,4998,3938,6134,9763,4685,8107,6022,5804,9951,7417,5306,1815,112,58,6052,5061,8426,486,1636,2122,3963,5905,4861,7121,1196,934,7698,2854,1927,2503,753,9808,5458,9393,3972,8882,7418,5524,9375,5590,5033,8938,837,5672,2238,6355,379,9561,2440,5001,9636,9380,8184,7578,4310,2140,187,9702,2849,9156,6432,5290,6563,2500,5195,6963,2536,3858,1591,795,9291,3860,7415,6953,6101,5395,4946,2681,6662,9392,5859,4698,7009,4194,5867,6409,4062,5449,5849,1259,1459,9843,7241,2414,3655,263,630,4504,7538,3454,6988,4374,5521,4492,1087,5354,6930,8111,4043,8686,3194,7688,5961,1451,6378,7053,5160,2587,9442,7037,3328,7803,5562,8003,1872,5893,5606,249,375,4788,7416,8356,5699,2518,9779,6716,287,195,3487,7730,8486,6703,776,3625,1700,6748,9462,8682,88,6707,853,3256,4177,9748,2994,2668,6250,1256,434,6404,6798,770,9719,6782,680,8483,9051,1974,4471,8509,6009,1786,9134,6789,2705,7770,5044,5908,6690,8788,8039,4316,6074,1052,8611,9656,3841,7875,99,7164,7837,8655,6924,8982,7895,1155,1123,4239,5208,4683,2357,9513,7391,9583,4944,7593,8518,5534,3182,3035,2458,8306,6087,7259,117,403,4829,262,5899,2223,493,8152,9080,1266,293,89,1843,7486,8864,5158,6616,3268,6295,3438,819,5524,2444,2170,4419,8573,8737,3767,3483,5503,499,1440,2553,5547,6046,55,6091,6987,4922,7949,2732,9884,376,5822,2097,1475,1712,3951,3636,1969,315,4456,1331,9124,6123,723,3324,7398,6420,3796,5890,2110,5248,318,3273,7541,8123,7641,6857,8950,4939,3071,6247,6070,3653,679,4592,1708,8184,3553,1594,5776,794,635,1228,2521,5859,4652,4491,6426,3722,3411,3932,718,8895,924,3230,6804,8722,1047,705,4253,2632,6192,2019,1320,3928,6549,7217,8617,7219,5401,269,3602,1517,5651,4614,392,8583,6342,5722,1794,3222,3847,7873,9487,962,594,7349,8698,1878,5056,9786,1996,1406,8478,6338,6301,854,9996,8431,1370,3410,4406,6408,3035,7977,279,160,2819,6555,544,1763,6684,3762,6277,5349,50,9695,5861,667,4995,4852,2218,6997,1281,8819,2345,3470,9371,642,6322,7882,8503,7491,6938,4403,8691,7271,7849,1800,1567,7385,8029,5502,4227,4168,1311,9376,2192,4054,5584,4763,2093,7280,1176,7969,7146,9417,8152,3783,4834,31,9678,2601,1214,9541,8044,6454,176,6446,4455,96,872,9292,2109,8376,4696,3943,9271,736,1076,5047,2817,696,7396,1087,4574,6268,2679,2103,5947,7706,9992,1447,629,2775,5189,9595,8177,3379,967,4630,5219,7462,6316,7775,2225,4225,7706,5199,2801,3491,8571,977,4469,2406,4992,5709,2144,7581,7088,591,9712,3197,428,3025,7299,4579,2243,7112,1486,5412,4737,8552,6329,9907,9058,4350,3375,7977,6012,8225,1638,2252,9949,8967,2443,3720,9786,4689,2443,9987,4615,2040,2968,8531,7000,4944,1430,2118,9094,3785,8213,1099,915,6660,1029,6452,9337,473,4394,5782,7208,8206,3042,9990,9748,3543,3965,1493,1728,6217,1721,8920,7675,3304,4003,1579,2978,6516,2914,8792,7060,652,7123,1911,8483,6124,364,7211,6688,3528,7474,4473,3348,9459,8323,6270,2529,7057,4347,7348,7143,735,5918,772,6776,8596,5864,5056,708,5762,8493,7906,6094,6763,4183,8612,2940,3535,7498,2587,3561,1539,9355,1299,3257,851,4149,6779,4438,5817,7220,560,3392,5672,5485,9551,3919,141,461,805,6301,6577,7564,4693,3889,8143,4869,9928,7876,6836,693,184,8508,1076,390,84,4020,4291,3619,6214,2645,4777,277,3772,4411,4956,889,9331,7776,6556,584,3973,3700,299,4840,2697,6342,7619,6398,5237,9724,4727,4146,9054,2834,3727,8493,7245,4897,3825,4455,6543,6781,8363,7601,666,9866,673,4075,4193,1634,3128,44,1422,6788,1997,8545,159,6493,2391,9079,696,1940,92,4586,3308,8916,9128,5537,5621,1346,7303,2263,268,921,1819,7598,4524,3244,9829,5769,7409,709,9839,7405,175,2105,2904,2549,221,5615,1637,8673,389,9086,243,547,229,5609,495,6255,2351,946,7454,5980,7898,9487,7376,5021,6625,6497,2737,2572,4386,6794,4621,4300,4441,3803,98,3619,4624,7717,8700,4968,300,5053,751,732,7829,9050,6783,7794,5626,992,6188,8212,2223,7276,9097,5412,3576,1566,9171,9549,215,1948,1650,3239,7523,6066,9207,6395,6816,8427,790,7834,2462,3097,4954,4228,3723,6139,7405,5914,7753,7907,9339,9871,5442,6482,7102,2988,4647,371,9859,1107,3589,1081,8217,5766,5900,9849,6672,6547,3284,8041,3271,2052,5952,6139,6624,5772,4093,1869,7230,5007,3485,1762,1694,4630,6163,5052,7273,5504,1026,8030,2818,4404,2145,4814,8768,2843,8493,1527,1792,1714,5658,2502,7111,7317,5703,1048,1780,75,3868,9485,2718,4303,1518,47,914,2320,94,2333,6780,7904,2335,9574,5134,2583,9701,3029,9180,1454,8182,4659,3797,2035,8467,1378,5279,3669,8785,3478,9816,4678,6219,193,4982,9497,7877,1327,3942,715,7096,3879,5797,1459,3726,6890,9504,4706,9773,8532,3074,7506,3511,5014,6661,9830,8884,5245,1435,9339,3128,9392,8809,61,8389,3025,785,625,5585,9869,4115,8067,3076,9800,7510,9753,2907,5647,8609,4271,4984,7635,9576,8216,7606,6108,3246,7416,6618,5587,4793,7649,9347,9210,2639,5014,7116,9060,404,9562,7843,5483,9545,7838,1272,7029,8991,9459,7425,9789,1763,4359,4761,3564,6913,2643,2733,3848,9537,7830,4111,3670,5588,4912,9684,9319,9640,4260,2688,8411,1982,5145,4578,3199,1618,7179,4335,1853,7803,9958,3813,1264,1598,7039,535,6584,6356,6967,4969,6949,5302,5343,8692,3045,1676,1795,95,1249,6671,7495,3182,9076,9983,6991,9203,193,9774,5250,6833,2905,957,8767,3671,1665,7227,6114,8661,2535,3111,9156,7864,3815,6998,7529,6669,7583,3666,3075,6225,8408,4238,5898,4687,684,7847,8461,1256,7407,9165,8187,8420,4311,1488,1636,7631,8012,4127,8488,219,2514,1421,4058,4578,2792,4663,6896,4498,5379,1297,4246,6095,4500,3362,8707,8655,5781,2595,2788,9642,2004,7699,8377,1741,4115,3884,2664,6047,498,3897,2536,137,9443,3832,6616,2610,6958,2314,6533,1363,5667,2068,4248,6633,381,86,3140,7857,7336,4214,4110,3901,7609,1072,7297,4254,9929,6961,8468,5928,4252,3435,6568,9811,2718,870,693,8285,6927,2103,7641,1392,5866,8966,8541,2100,4001,5452,609,9724,5838,1282,3051,4481,620,9981,5920,2146,9654,1473,7249,6874,397,9235,2698,5556,5533,4076,9213,5750,5049,3630,7862,2119,9004,6463,6398,4901,7230,1337,8043,4657,3829,6569,6106,1933,9775,9167,4187,1622,950,7659,631,514,8022,4328,343,2278,1873,4386,4597,5245,4484,712,6277,3661,8066,4869,2442,7670,3447,9786,8847,9318,7862,2133,437,4111,3897,3395,5813,9218,800,3946,7394,9753,9960,6293,2320,3005,5239,3366,5350,6954,7631,3041,8205,8511,9281,3297,8618,7758,5485,8039,5887,9641,4664,8268,8721,8168,2550,6898,1286,8958,3411,2692,5816,340,5882,2732,1895,5549,5958,427,6017,8141,5961,6074,5875,8063,6023,7466,2631,2955,5075,4421,6976,6590,2784,6103,5335,8485,1519,7548,6178,7189,9818,756,1069,7161,4446,7917,1606,671,2985,1234,3907,6252,8649,1178,8526,1216,8031,4671,7053,5000,6552,2415,5670,696,8425,1913,790,6519,827,1645,2490,2261,9182,4336,6601,8515,8442,8900,2590,8824,4542,7590,5792,3626,8466,3762,7277,2077,2123,6000,3389,9040,3652,5090,3516,119,2480,4469,383,1341,2379,9653,5050,2965,6806,9604,1965,6845,2449,7180,3946,8099,2785,2967,3224,3724,9970,3203,9476,5032,2812,8368,4848,8212,3862,6528,2089,3574,4190,4789,2522,5380,3227,3345,9866,5414,1187,2886,1428,3876,1198,74,4552,7775,922,4706,5943,1455,2386,1199,2079,5238,5518,4848,4266,9086,3911,2249,629,8959,6512,4367,8465,1715,7205,5032,9426,3047,3034,6047,3661,1975,1493,9360,4151,9641,997,7299,3080,5267,2952,2257,1335,6186,4325,8482,4434,7821,2582,7863,5568,8807,7031,8175,8005,5943,3676,2240,1309,8295,4869,6931,9887,7036,7898,2093,8707,9202,5550,7966,3694,7543,2824,5538,5869,4115,1996,2088,8261,3770,4969,1360,9456,3812,1709,1675,7528,1797,3166,3600,1055,940,361,1965,7206,3876,4881,7410,6345,4374,2526,4805,9536,8010,9010,2307,1474,4129,4417,3175,6746,7670,250,3164,8,2390,4216,8274,7508,5507,1802,19,4997,4483,7164,5971,1424,2555,2749,3254,2068,198,4899,3179,3847,7751,2600,9505,385,9764,6607,1399,1788,9179,5791,5040,6319,6435,2404,738,8304,9409,4783,62,7544,5789,8562,6543,9210,1421,7279,4854,5973,9086,7209,5190,7334,528,393,1020,6308,6315,4024,7637,9231,7479,2933,9561,1237,8453,7225,5484,90,4129,3108,4521,686,1174,7883,8009,5032,6950,4936,5349,6233,5554,965,7003,5347,375,8281,5675,9419,4489,2777,5655,6018,6268,8989,1805,2834,3099,764,6127,964,923,522,6499,8064,1026,6416,4706,5274,4204,9976,1269,6728,8682,270,5197,7690,2933,3442,1761,5148,4312,5394,8794,9408,7971,4291,4984,8013,542,516,5816,4716,7151,8942,8248,5972,6072,2341,2837,6142,1558,4686,5426,6106,8039,8036,1695,8871,853,3194,9910,4156,3163,1155,4481,9723,1150,8015,6250,7088,5859,3027,4813,3229,3928,1763,5463,3672,8687,7462,9770,6623,3052,4557,7974,4844,5839,7113,996,5708,357,6073,6395,2357,1967,8046,1406,7930,5477,6771,5251,6863,4295,6484,212,3269,3484,1259,264,2353,5153,1455,9585,5906,586,2352,8049,8541,4136,7907,7916,8998,9765,5998,1878,7544,4114,5400,8181,4939,2920,2306,3695,6685,8882,8730,5085,5880,8736,8853,3244,2031,2235,1182,8859,2812,1352,8098,3816,4481,4478,5312,5539,3690,9877,6263,6716,78,7621,3190,399,6782,4228,1026,9486,9779,9625,9444,2852,6434,9979,6521,5219,4649,770,3763,5258,4478,4245,563,7026,8208,7383,5757,4771,4751,5852,4622,843,3630,1741,9421,3857,7919,3307,3506,4333,1687,8682,3465,6723,7210,2530,8229,5179,2323,2287,6107,6398,1602,2080,2075,4560,5799,3605,2668,7868,7892,6362,2858,3313,712,7151,6784,1747,8458,7201,6853,6770,8076,1814,6145,2321,6746,4979,1368,7433,322,1048,1700,6239,9379,5268,6199,4172,2416,6198,1183,2448,5843,7635,1953,8118,130,3415,6566,437,5477,7035,3001,403,1029,1688,1606,2614,2621,1526,830,9311,6563,4670,9221,1628,9603,8404,3430,1,9884,1683,9578,7882,539,6165,9210,1998,7881,62,6650,4264,7764,8208,530,5663,9148,2964,967,2887,4831,3201,8267,1682,5299,3253,8823,6619,2,6092,914,9344,5230,2185,3783,4752,2928,4021,9707,2918,5937,913,2725,8728,2204,4905,6,9374,3102,9886,9757,4849,3960,7808,475,5459,7589,5914,613,1141,3222,7240,5921,5776,8285,5274,1085,7869,3883,6855,7829,6742,6846,6667,4020,3648,4984,5495,9246,5180,7790,1954,4479,9098,5097,2840,3317,654,8135,807,9186,7424,2100,7827,5449,3073,1785,725,4329,8710,242,5513,5733,4138,3758,7654,8668,2830,7888,1570,2943,6347,940,301,3063,3411,6091,5920,4226,7183,5839,8682,9681,3789,5778,5011,6673,673,8117,2873,8667,1423,1548,8178,3535,9988,9368,949,8840,3536,6591,264,2898,5018,4495,6675,3741,3778,9889,6113,5476,263,8402,9327,9438,1297,1095,9759,7433,592,733,6949,9212,2676,5936,6102,3045,9566,2609,7580,9981,8381,4043,8940,4391,3951,6940,3994,1585,5191,6739,2124,6827,5820,1560,5056,3993,3778,180,9119,1809,5968,1813,2133,6943,1259,7466,8246,6659,8154,1363,9971,746,3027,5739,1630,3905,5143,640,547,11,4772,9764,5568,1030,4342,959,2912,5735,5349,5509,1526,450,7258,5273,2767,9363,7149,4287,1669,7872,9745,5591,9881,9075,6240,7241,8244,3755,3061,4508,7924,3953,6419,4590,4202,1287,6981,2019,7358,7715,3696,4748,7563,4024,8593,1477,6265,2199,2440,6363,5194,4552,2158,7868,9115,32,9054,2752,8476,6106,8000,5750,531,1650,813,4645,1549,4446,7477,6723,3732,2239,9291,1513,473,1174,994,1738,9185,715,5568,6197,1227,9413,6311,5565,7918,7994,9141,4512,5185,2534,3400,4102,933,8020,6459,6509,9923,1420,6671,3235,8769,605,5435,4555,9462,2693,1975,3257,7965,9255,2838,342,6306,6638,4901,9312,3327,575,8604,9077,253,4639,6576,6982,7733,7853,585,9298,8252,6283,6993,1341,9355,8593,1177,8145,9523,2439,6768,7635,3687,2448,8195,4284,9517,6513,8703,8896,127,6869,3189,8489,244,8872,5200,7093,6833,4755,1097,8037,3200,8645,5015,3400,5025,1357,8422,3003,9675,1623,745,3708,3241,6920,553,5360,9273,5743,2869,4608,8925,4016,3523,9234,9569,9765,3735,1088,2168,560,2140,1536,2999,8372,7551,2932,6467,9603,1998,2785,380,9880,6684,8993,361,3788,2196,1602,4217,6137,8079,6283,6142,7761,6155,3173,1423,3744,9596,5183,2040,6889,7471,4944,274,7403,8979,9275,4328,9357,7118,5971,8047,1841,2651,2914,3695,9038,6624,2674,4525,5022,1724,598,1752,6565,8677,8625,4335,7290,7008,16,2265,3223,5393,3364,4996,3774,7002,3451,9571,3279,7641,792,3034,4636,2572,7956,5794,9604,9564,9210,4363,371,5195,6136,8513,160,9915,4076,9109,6947,9289,6965,7830,1740,5533,3483,694,4741,4292,5028,3218,1497,9102,6533,921,7542,549,7186,5175,3772,483,2894,1919,1195,3469,3288,6401,3330,3704,7314,1052,3270,9382,8803,9102,7995,5155,7698,8522,422,4309,905,1493,287,8676,5541,590,3908,2644,1859,797,9199,6160,9691,9161,3656,4467,2112,272,4650,7332,632,6628,2107,8227,6735,8332,3453,7342,5197,2272,9861,3212,945,8710,4148,6745,7273,1502,4728,5150,1820,3906,1141,9756,6764,7043,9166,2730,4233,3000,5422,5140,3254,6992,3842,3821,7366,7424,8616,4784,458,7666,3107,2309,5101,9081,6892,1201,1762,3011,5805,1867,6585,8108,8122,3292,7214,5185,1966,6735,3854,3615,8783,3260,8942,5087,8120,3312,6570,8979,2109,8713,3898,9396,1474,7740,2108,4679,3077,4130,6917,6484,7499,632,9971,7248,9119,4389,8272,6626,9719,273,5330,5854,6373,596,9298,3719,3042,5398,7972,2689,1916,8951,9010,5846,1023,6127,71,9287,5654,1486,500,2011,1542,459,871,9216,8209,9576,3748,7034,4274,295,3122,4297,1126,9016,6369,1343,717,4344,962,2795,3837,6446,8725,4275,3106,5463,9514,7023,1839,5455,6521,7908,7760,5468,9248,6609,9304,4078,2178,9904,6496,3901,880,5155,6079,4749,2117,1761,2738,1923,7562,3654,4729,4497,6484,9897,6507,711,9969,8633,7907,3333,9640,9335,9140,7546,6003,8972,8907,1010,865,7134,8630,4266,4311,1437,509,8609,491,6998,456,164,7372,1269,8899,9641,3634,3824,4032,5426,4537,721,9715,7417,4160,7439,9238,9633,1369,3856,1224,6632,3734,2355,5342,5877,8854,7470,4679,3461,6294,7626,1596,8066,9553,8858,7133,8497,5745,5475,4968,8481,3265,1995,5517,57,9795,907,2581,964,4444,1009,4469,2512,8424,2289,8061,147,1605,755,1422,240,2997,358,6676,9941,1862,810,5139,9199,2521,1324,3792,492,2057,4957,2532,7237,9596,5804,8863,5954,9040,604,4585,2556,7406,48,7882,3835,7105,2940,9438,3458,9334,2556,638,7743,6947,4724,4265,2835,7410,4512,96,3236,6355,6028,4588,2875,1290,460,5783,3322,7821,9469,2375,7157,3439,7897,9234,2164,5698,4121,6527,4633,4948,8219,4167,3545,9058,6469,4179,9853,592,7995,2933,1815,3379,6119,154,7770,5089,9002,9381,3485,3339,5649,855,8597,994,2620,7594,5305,7313,2864,5010,4710,4646,7874,2712,3369,2219,5672,5814,3990,3998,2910,4114,1748,299,4263,4449,2428,8356,8885,5161,5960,4289,44,2687,1929,8920,959,3532,3200,6089,2899,588,3571,2831,792,1126,9763,944,5986,4818,3383,7326,3170,8709,3294,4056,4006,8019,4106,4366,7850,9373,3800,3035,2315,1135,7029,9755,7955,6198,677,3872,621,7870,2825,3050,7407,7927,8718,6852,8697,4643,7188,9143,8236,7038,5124,6870,8060,4489,8797,4612,6668,4692,175,8421,6925,6928,4726,2213,2533,8603,6821,4900,4187,6867,5188,7132,5623,974,6620,4380,5944,5969,4368,7181,4113,1414,3994,2771,6502,8738,5930,5948,6662,1886,6924,7099,2103,8064,837,9697,3635,2705,1296,3446,3537,7002,9292,4404,6206,8255,7900,5202,3245,2645,224,2203,5237,4922,1682,7441,8327,4099,4711,2737,3018,8821,5228,8323,403,6985,7560,8541,5493,7774,7343,203,1210,3091,1610,1487,4948,7544,6333,1734,9239,9875,4739,3362,2720,5371,4318,3110,5332,8069,4955,5769,2322,8004,2147,9473,4906,3011,8980,2849,2466,7844,2803,9374,3206,2833,232,1568,5805,8626,279,3651,6758,6039,7685,7996,675,3841,3385,8947,2554,2375,3067,766,8888,7398,9846,4099,8224,3943,2647,7015,3112,6985,5974,5369,620,7824,4220,8155,373,2186,2780,5521,3259,6999,4279,3679,139,7595,6861,2677,5709,8336,7466,1020,8644,9658,2646,4815,6192,8928,4055,5406,9470,6388,9803,2689,2449,2928,5825,3486,9310,7072,3583,3930,9070,8331,24,6322,4769,8811,2053,6895,1033,6977,2081,5756,8821,376,9358,5494,161,2474,8304,6511,3416,8671,160,6891,276,2901,8827,79,6553,5630,4894,1696,1169,8988,2283,8239,5244,9463,1981,7177,9627,5663,6743,2513,8404,4778,4089,5019,9607,316,514,2400,7264,1070,9451,4697,424,1283,4111,7313,4846,1525,7919,8589,9156,7233,9252,7085,9117,3048,728,3213,3552,9593,2968,1818,4482,9435,2138,6554,7678,821,7844,6187,6373,2763,7566,4227,7859,9812,5707,4099,9081,4487,6641,5637,1711,4738,4727,8810,6872,523,1473,8708,8073,1039,8173,9780,6245,2343,5789,9793,781,398,1588,1882,2484,3746,4747,8165,4493,809,9277,2344,8133,798,7326,8897,166,8249,3911,6847,2441,496,8733,175,1934,6352,1739,6958,990,8610,9348,5606,3235,6911,4060,3460,9720,1536,3326,6375,6712,1073,3588,7671,8076,8249,8780,7077,5906,9304,8051,268,2678,9941,6936,6828,7838,3368,475,2772,4757,7190,5212,3296,4734,1413,4239,2745,675,6237,9880,6157,4997,9640,1255,4868,1468,9463,4410,358,907,7753,5785,2769,7403,8725,8101,5184,50,8312,13,8029,3303,8243,9967,5169,4135,2345,3426,7393,7664,526,1209,8965,5578,6525,8049,6154,9732,3076,931,4715,5769,4429,735,5762,5578,6265,2914,2068,5703,7306,3204,7810,9093,4735,5158,9030,2101,9471,1375,1780,8531,6870,5535,1096,7049,289,945,302,6848,5564,5356,7997,7406,2949,5128,3889,7763,9388,5525,5529,107,3664,5765,3738,893,5311,7842,892,8695,4046,7839,6059,7041,9223,5564,3873,854,3804,15,1301,3023,9217,7933,2590,7457,820,9479,3078,7060,6315,9329,4822,7684,5194,7882,187,3046,7772,2265,3910,7613,5433,7520,9411,4403,7751,9479,4405,7756,7160,6663,8500,6039,5476,8515,5029,5127,6003,977,8256,2524,7019,1292,8693,2425,3071,8213,6992,8768,5409,3261,8116,7356,4073,540,9986,6629,633,8158,3656,8112,9960,7416,9134,8199,1125,5235,3234,9028,2591,1540,8611,381,1917,5609,5450,9941,3284,9060,215,8278,4740,6629,7406,3429,2939,8841,1840,2631,7309,1435,8109,8319,313,6059,9963,3011,3346,388,6684,4962,3719,8633,7101,7097,194,5207,3821,609,1108,4319,4464,3084,3920,9138,3170,3481,8688,3396,9846,2666,5287,8665,8052,4541,1479,945,6332,2653,1250,7327,5532,7636,7452,1529,1627,1379,1933,1772,9775,5488,5825,4466,1222,3839,9723,5494,8716,1348,8463,171,5507,3653,7301,9577,7242,7962,4448,6999,9921,1246,4677,4071,820,8138,7657,4351,1980,70,4299,1983,7054,38,9036,1080,1396,2667,694,9470,6996,7444,3572,4741,7379,4301,4299,345,3019,5417,3759,8775,8321,1399,5011,9913,7008,6827,6644,5964,1501,9093,9586,5425,1691,7998,2562,8028,3298,4636,3139,4070,8318,968,2039,8687,58,2238,1810,1620,9544,816,6237,9076,6989,235,7004,2804,8312,9142,8866,4197,6148,6713,8707,4947,4306,9864,821,2283,7309,2602,2917,612,3583,4706,9535,5314,5924,6527,6908,1956,8203,1653,3119,5850,5273,7617,9811,7723,8287,1344,5585,3609,6416,5685,959,8226,5619,4468,3871,5810,7708,4408,3681,5063,3257,5828,6647,4239,1735,9650,9069,6666,616,2980,3176,4457,7322,9460,2686,1679,5526,8727,4836,738,627,9084,4621,7125,3760,6681,9152,6166,7428,4335,5847,4117,597,9043,7141,2407,887,3799,9870,2300,4528,2065,1784,566,7485,5,193,4701,3099,8732,268,1317,7508,1292,5927,6422,8832,6974,2864,8110,9166,4295,3754,6471,7062,3545,678,1711,4440,543,955,7808,4539,635,6940,7457,9070,359,9235,3552,4032,6417,4944,1458,1302,5383,6856,227,3597,4672,4175,8642,7419,5744,8209,9738,4671,7070,6020,4615,4536,4797,9501,6837,1300,2405,9019,4833,528,1044,8174,2193,8290,5510,2665,4109,8900,6539,2387,2459,1769,6216,3350,8594,5317,6760,8326,5185,9976,1238,442,2151,8991,3633,4890,578,274,4343,6772,3614,1585,3404,1161,4918,5036,2209,3370,1913,7105,8563,5332,5967,7590,1994,2599,5502,5949,7174,1483,8117,7727,3526,5515,8745,3120,5727,1769,151,1954,2775,866,3560,7337,8005,9404,2196,8013,5079,8628,135,708,387,194,7098,7909,7730,1537,2300,9350,6673,697,4230,9418,55,6648,9210,8364,3819,6982,3327,8181,3838,9681,7636,1750,6753,8825,558,5469,3634,8094,6608,6023,8246,480,3141,7159,6450,2870,9858,4017,8574,8895,219,3742,2091,8678,8773,7110,7146,5311,2404,1032,7699,7792,3332,8804,3113,3387,5856,8575,4967,2499,551,4401,8002,9131,9894,5458,8561,9603,726,3427,5665,7626,4337,1047,7878,1992,4914,4753,4941,1525,7605,6833,5142,5947,2254,1109,2778,6180,9442,248,2670,3381,218,6451,9520,1923,5092,3097,844,9286,7801,2786,5194,4664,6327,9581,4978,7050,9421,4078,2109,220,9929,131,7898,2145,6549,8277,9071,1790,3451,1488,4423,4074,9748,8504,7663,3620,8706,2491,7433,2295,383,1094,4957,1458,8179,1578,4377,2773,7964,633,8136,5090,5154,2601,8994,6825,3297,1756,9484,9218,1556,7646,6143,4151,6704,4791,3201,3520,4614,4813,6362,6200,7860,1563,7157,4662,8647,2000,6595,949,35,2415,2385,8597,1161,7191,9319,9960,4678,8960,1277,3537,7438,4421,6266,1081,8718,8904,3205,2299,3878,2125,6412,3995,3843,3580,8065,1609,7883,5942,6642,8330,4576,9751,2413,7772,3540,7761,2170,486,5335,2541,9240,9829,4292,3431,1323,9129,9816,8636,4390,431,2934,6798,2057,4643,4957,4963,426,967,3136,5101,9479,7405,5567,4714,7677,7957,342,2194,2570,4431,7636,29,8301,9759,6832,5986,5679,7484,5484,9467,9055,7371,7071,5514,244,271,5720,5774,8542,1487,6012,8703,2819,5131,4660,9423,8296,4667,1328,2392,5816,7293,5602,7068,8490,3766,1862,3511,1028,5386,5145,5146,2737,8981,5919,825,3007,6124,5904,8944,8987,3420,8156,7157,7751,3398,5110,573,6597,6090,4808,6579,5866,8598,4692,5287,5731,5932,2830,6361,9153,797,3745,8674,4189,8240,2529,8698,4844,2163,1354,5460,9263,6576,655,4785,8048,84,7580,8371,4689,396,4817,462,7787,5390,6402,6155,8047,1540,5415,1830,255,8973,9773,4530,302,2711,896,6188,719,4382,2629,6458,9897,8649,8291,8350,1400,2559,6755,8011,9415,9022,4702,8263,6026,2422,5246,2025,6335,1603,2158,4286,4111,21,5900,8798,1312,6948,5249,572,3197,4790,4859,1970,2435,9978,2285,9880,521,7009,5870,2750,2163,735,1662,196,2188,4411,3830,617,2977,9270,450,4916,5137,7864,7380,8391,8011,458,5224,4625,792,1683,1798,7671,1021,5662,6959,7938,1899,6167,1969,1883,4513,8899,9495,1777,3736,3901,7069,7516,682,7968,5053,5435,6133,2379,3012,2639,3692,2112,9174,4166,2643,6856,6002,7898,8946,6095,3295,4562,6570,5430,5878,9649,6719,9245,4224,9352,5915,5236,4363,3133,7945,2476,401,7136,8032,2893,8561,247,3582,8651,1623,2959,3650,677,810,9767,8519,4984,8331,1942,9415,4088,8470,8205,1918,1495,331,4463,4907,8316,91,7395,9343,1636,7361,3787,1947,8281,5759,3418,2413,8601,1495,4126,2665,804,2035,692,9828,180,8670,2696,4362,2911,7404,8464,1656,8858,7338,5880,1938,4841,8937,183,4850,7753,7057,2821,9123,5044,1299,8759,4299,5689,5184,8426,899,7599,9315,6387,278,7508,3007,7715,8074,7784,3286,2435,1918,5614,899,2527,3362,5393,365,41,8465,4859,3982,7408,9247,1372,2899,5472,2491,7642,7627,5372,9876,5856,639,2541,8680,5781,7922,5196,4075,4850,539,3921,8269,874,9308,1882,6613,6559,2053,8216,8943,8269,998,174,2195,3570,1347,5415,7828,791,3379,7221,8188,2332,8735,897,5339,5373,4178,9812,610,6325,6223,1099,9006,4421,4781,2723,9185,2820,538,3472,2486,6993,719,8719,9698,7602,8574,2637,9456,261,5289,5194,4516,1332,220,6769,3771,4875,4528,4098,541,6293,4693,6784,8846,8608,7528,4468,2319,5977,3965,6759,1070,1996,4400,4514,6424,2808,6164,5495,246,5394,399,1808,496,2525,4441,4922,6792,4988,3489,927,4794,9955,8385,735,7557,4773,667,9336,7964,9020,4906,4176,8669,46,9141,4602,283,3986,3146,3748,1832,266,4292,6178,290,9676,2197,341,5206,2970,7091,635,6931,1192,2724,8328,2412,6645,2253,9260,5736,6155,8224,9594,9272,5336,4057,985,4219,3260,7073,2499,5069,4888,1910,2616,5027,2623,7207,5114,5169,3366,4647,7636,5105,7662,4894,9128,9267,2902,4637,5699,7940,3809,7207,1847,1685,8911,7852,8960,9337,3242,8607,4580,2007,8545,4733,3029,1371,6192,2832,5221,6445,1639,5278,3976,5707,4455,1733,1512,9691,7011,5332,3432,9826,7405,1168,6488,4521,4864,1982,2719,6068,2355,7644,6190,1363,1813,9706,8497,5580,5200,7640,907,9091,7512,7565,5884,281,757,8642,5519,3014,508,1979,2945,7749,1864,3944,5773,239,6371,8059,4833,6605,5967,7916,5144,7842,860,7515,5257,9878,6382,2472,8651,9599,6105,1987,8376,2041,5700,2258,6638,961,7998,6980,5558,8661,3870,1288,9862,2878,7615,488,8231,8833,9417,4706,8789,5617,3081,1779,5789,9342,527,6326,5979,3048,5947,1826,355,2893,9266,8684,928,5046,9857,8786,5537,7979,3151,889,8382,7301,9755,5436,2400,3411,8173,944,663,2030,8770,637,5935,5133,4001,4849,8558,4827,7846,1102,2476,2077,6830,4847,3493,1032,5193,3596,2908,7893,781,9651,2177,3866,3572,8700,1409,1348,2715,9898,6517,7726,6966,7656,7798,9286,1170,5010,2371,9749,8923,5563,4622,1311,437,1456,4355,1990,5781,8318,4718,4874,4559,2902,5949,2516,7238,4709,5169,1041,6409,3831,4358,5965,6996,2119,4888,9055,2441,9672,5402,6281,4939,3605,7067,6320,8675,7778,1621,9214,8956,5033,6539,8723,3219,7660,3465,890,5486,2441,5582,469,4928,248,2795,8115,7497,8035,9305,1881,9175,3605,5162,9578,1556,5554,8301,2929,3422,5380,8052,6564,5480,5445,7952,7257,730,1134,2541,38,6982,2411,7339,2310,3775,261,4801,9922,9821,5242,7393,3598,4915,7179,8127,7197,5404,6945,1918,9916,538,4766,2051,3234,8704,3679,955,2273,3884,7692,3704,5154,9315,3624,7949,649,7316,7430,6255,3124,7349,2978,3195,940,645,67,8941,7741,5696,9226,4468,3341,5910,2279,297,2007,1128,8341,8061,7282,9700,3740,4767,8447,7222,5041,545,5609,7339,6178,2862,1090,3162,1261,3349,2529,9605,8604,3099,4022,463,4720,5508,3028,2887,506,1314,2914,4352,6656,7511,876,5516,4707,6716,2919,5801,2549,2668,1823,9496,2200,6689,6163,8347,1022,9374,8315,7469,657,7530,4971,8603,5978,3887,1065,9524,1702,1938,4810,1303,2303,3664,5529,8464,9843,2882,6395,5516,3334,7880,4115,1052,2670,4154,2411,184,4184,3396,2788,8308,3045,6383,1332,3683,5313,7015,9739,7136,153,786,7797,2632,5639,6500,9709,447,6937,7243,7615,6709,9000,3954,1732,4143,2917,698,6391,5321,7028,179,8023,1955,8657,3536,7040,6687,1567,9766,6892,3178,3729,7849,3072,2906,4551,1197,907,9624,2710,5700,9286,5291,4079,3263,7681,4273,7024,4094,8720,4767,7222,1321,7307,3551,3605,5582,1085,786,7460,4460,7524,6989,2411,6161,5343,5767,8370,1604,2355,7642,6556,9755,2294,8192,8198,5170,9390,3539,7260,525,8748,5994,333,838,376,9482,2674,7013,3813,8270,9416,2854,1938,3922,1718,8318,5330,8281,8707,594,1048,2107,9061,4338,5143,4815,2908,4547,7781,5488,2826,3552,7790,547,8204,9002,959,3594,6762,2396,5789,4303,1695,1199,4336,5963,7856,9611,3245,1914,7986,5570,5676,3039,8844,6737,384,8953,9546,9987,6234,7103,7616,4968,5460,4547,998,6162,4694,4902,3977,4229,4705,4305,8741,8367,3391,7561,7875,251,2816,4720,777,7786,6263,2255,5895,5258,2377,7771,9563,2679,5848,6235,8619,8207,3891,7352,6143,2476,1986,4423,5509,5618,2122,5807,6331,1534,2821,5813,8341,2347,2231,7352,6564,4204,188,6800,399,1298,6794,4426,5311,1711,8557,9399,9437,7353,8837,8890,5357,435,8958,1018,1006,3546,172,8824,2776,1230,213,8,1825,1948,4742,7859,9227,294,5567,161,6922,9554,3920,9496,4275,3120,5934,8650,7886,6114,9262,9332,3752,3447,6892,1327,9437,8484,693,4988,9400,7604,3125,6282,3975,6201,7736,3115,9009,79,8596,7241,3448,6059,7987,7562,5057,4256,3834,2080,7365,9187,8429,5397,7602,6076,4265,4385,4778,8583,3564,1795,3258,2742,1948,1810,9810,366,4637,1684,5267,8428,4180,5860,3878,5608,5796,6279,7562,1049,7814,6832,9091,8592,3355,9143,3253,4921,6074,9039,147,2552,167,6189,7261,9780,9808,8559,255,7239,716,4634,4283,9494,34,3943,4053,2884,952,2966,360,6250,7184,6110,6514,8088,4112,6243,1928,2232,8988,9812,2324,5851,5132,6490,7150,393,2517,4506,9606,5742,1579,2078,6209,2141,2639,6822,4659,5130,8933,959,4828,5228,5053,4103,2934,4404,191,3443,8478,4019,8363,784,702,5143,9791,1301,6175,2,4972,6293,1655,4194,1495,8304,9324,1724,6402,991,441,9790,2904,641,4975,1984,9797,9113,4039,3807,5227,5263,4825,3349,4729,4748,6586,259,6135,7066,1116,8002,5843,1556,1334,4716,5,223,2664,3763,4464,886,8621,1717,5292,694,6632,6934,3398,4258,2817,4676,9940,1659,3960,417,7728,1412,7000,9081,2282,2794,7983,1893,603,5534,3188,4495,3853,8914,9679,489,7772,1906,6002,3921,599,6725,577,5094,4854,171,1251,6680,836,6945,524,770,99,3877,2937,7102,6114,1941,2972,3978,831,5232,8477,9116,6212,6862,2299,7521,7363,9747,519,3208,2723,2501,5223,4596,1773,1889,3655,1841,6364,2774,1289,2655,7613,7164,2865,8785,7487,5790,4635,2238,8575,2469,4377,5445,7005,7985,8162,7516,5061,8760,5860,5867,6940,2836,5860,9745,1183,9267,2062,512,2580,3739,3025,5427,9577,9814,2312,5121,4687,8728,7156,3288,1201,5835,5020,1370,3194,2448,3299,3206,6233,6320,6628,4914,9523,1798,7900,2673,2312,2025,3818,1914,7821,7830,9542,4635,1944,288,2449,3054,1845,5171,3914,6757,3581,9348,4173,8822,2553,1250,9823,1411,1238,2728,3108,9357,9944,3746,9960,2282,5364,7624,1697,4492,7533,4934,8920,9599,3618,5847,975,5748,3090,3968,7544,3301,1414,8851,2244,4288,5558,6641,5948,5627,4382,2134,7442,1936,3334,447,7573,1253,4508,431,5164,1141,5583,874,7554,2582,7079,1458,398,4415,973,9438,6695,6313,3597,6249,1558,4557,1676,8167,544,5458,2348,9423,5275,3076,9267,7631,1016,8629,9164,8240,6248,1052,7264,2392,7874,7688,2038,6739,8596,6860,8629,4039,6017,1146,5152,8944,6322,2468,2713,4080,4600,9776,3181,6214,2021,1414,3823,6886,2953,4275,3657,7450,6253,1031,8569,9764,2726,4285,9724,7765,6992,7795,1641,9164,2980,7652,9013,5240,1000,3387,1108,932,9831,3157,3676,3028,8646,5547,6723,5570,4853,1446,8580,743,6983,5096,6213,3551,4017,5098,3437,792,2848,7875,8617,2675,8366,70,3542,2614,1104,9431,7901,1694,7227,5829,7439,7397,1760,864,8981,3696,7757,3225,7092,2648,1259,7934,4113,3074,1132,98,611,7796,4490,2917,446,7805,6426,3821,9502,6637,690,2745,5411,1134,5885,2345,6608,2373,2254,7984,8474,6284,8372,2765,7968,4260,357,7748,9772,2210,6843,7691,5755,1840,4935,5302,4077,9676,4771,1576,8021,6753,336,8927,5798,5171,6382,3525,2128,5852,9067,4135,4326,5267,9887,3262,1567,3796,8514,4202,245,3660,5283,3197,2705,7015,2260,6883,9348,2501,7185,3319,1282,3707,9052,7083,6573,90,126,4054,5623,3016,380,4162,73,6190,8203,5685,4642,7814,6216,2208,9726,8399,2751,4119,6294,3091,6526,8992,9903,5193,5724,5944,6738,7430,6820,3820,5244,5671,5394,6895,1656,3965,8541,663,1421,2804,8775,4670,3927,5463,3777,1372,8734,7829,5817,4908,3830,4855,9841,954,6230,9164,6112,3023,7849,6800,5268,7654,6741,6337,7890,9543,3995,8204,2841,3742,6896,4837,8180,8086,7257,3969,2231,4342,4958,9284,733,1530,7625,1439,2823,7985,7434,9588,2355,6209,7384,4568,2047,9098,3819,3331,4770,7668,6695,7163,62,9387,1771,2507,76,633,9191,8654,5972,8532,8118,3465,8420,1965,1952,8649,2281,313,6422,6361,2338,2029,3296,6371,4681,5006,2922,9755,943,4593,1169,1801,5180,2208,6390,2347,1546,2602,2060,210,7487,2728,9063,325,7283,2660,1442,4326,2422,7328,4353,7401,4222,7848,2575,2390,8117,9448,6474,9926,5184,8644,2339,2034,1144,5007,7607,3911,7001,3077,3302,9520,8396,6012,5200,95,1480,9075,7081,9830,7320,9254,9584,1804,724,7887,721,1473,8685,649,7023,8033,6774,1538,4076,4844,7528,1573,6877,9201,506,7278,7520,8716,51,7240,9826,5761,3987,2913,2536,5490,4200,2313,1580,5624,5281,2833,2691,2150,9290,9381,791,1420,1555,4409,2982,8350,680,7707,1134,3061,7044,4039,7781,8245,981,5349,3837,6802,7306,9490,8329,821,2029,7453,7611,7863,8201,673,5607,3774,8110,6269,90,2346,1200,2164,7368,3287,4329,1963,3457,6765,9016,1184,8947,7384,4347,5616,5714,2230,5959,5598,1681,2122,7243,3058,544,7811,6672,8061,8142,4623,2727,1255,6544,9446,1842,333,2500,8340,2087,4334,7259,6324,7243,2729,5482,2874,4452,1794,2714,2969,1092,5201,3278,238,4205,7209,2039,3087,3199,7835,1859,6176,5185,3493,5041,5909,1115,101,1137,9146,8135,3814,82,1792,4183,2546,114,5355,3970,9974,5716,3299,8343,3340,5248,6005,900,1745,2070,5426,4781,6575,6340,8664,3015,7654,1024,248,7719,3033,1277,9624,3991,4956,1635,7710,2702,9387,2591,6772,1990,1344,8604,3026,3892,8627,8433,5506,3041,1737,9408,1034,5602,2096,9048,8725,4252,4430,4970,6892,6901,416,1187,4028,3090,1005,7573,1837,8465,877,9966,5056,3972,5741,2152,8188,5996,1293,3988,7419,4907,1672,5631,6744,3728,6880,8606,3457,9398,164,2719,6190,1274,4578,443,3032,3772,6553,9989,2930,6161,309,2832,1626,2312,560,917,2259,9586,2121,9422,240,3503,8525,8018,9664,3358,1290,8864,2723,2721,8120,6316,2057,1952,1541,9875,8973,2657,775,3156,5409,7107,4643,1056,7174,8254,7052,9906,4556,9506,9438,2738,9887,9445,8595,5895,6682,7772,7350,6282,2976,1608,934,7371,2063,5151,5351,2921,4143,8081,2102,394,7708,8825,5392,4131,7805,2363,3997,4754,305,9050,4795,6801,4884,2001,3177,9929,8743,7829,6113,8466,8045,2615,3080,6522,4347,8145,6612,1246,758,8727,1408,6081,466,7489,7029,7443,359,2754,9941,8756,4233,2915,4273,601,7715,4644,9303,5083,1374,6556,1369,9234,4369,9855,3618,2111,6856,8910,5829,5193,8219,1702,4544,8127,7929,2795,2146,8126,1947,222,215,8338,2133,3158,5449,1335,6253,6143,5350,4088,5659,4817,8772,9920,4773,2219,1433,5280,9571,9945,7274,9821,1780,7610,8030,8092,7777,9422,1109,6948,6234,4706,3010,6255,253,9842,5148,9049,5113,8943,7405,6590,2694,5510,1293,2938,6307,7723,5711,4645,9059,7368,8560,5327,7673,8998,3675,9020,9563,9014,1299,4435,602,6250,8476,5897,3402,4714,5619,2347,4901,5420,1257,2232,8955,2969,4202,2843,7304,3447,291,9992,7289,5383,6735,3494,7771,2789,1063,9598,4171,5903,5311,5505,3261,9950,7847,203,7876,4241,9572,982,6307,2198,5621,442,3300,2612,3218,6419,6557,473,3896,2105,979,7906,5188,2379,1670,9648,2928,105,7221,2325,3514,7168,1092,999,2036,8873,3464,8533,7086,1391,6584,7217,6513,2529,3344,5812,5369,6312,3290,1364,5660,4482,6846,2917,1586,6844,7886,4442,6272,3141,4524,5220,864,7152,7900,7421,399,1862,5439,2799,946,8843,2178,4265,2108,9254,5923,5568,6911,4785,299,3388,2084,5445,4318,1359,8235,13,3663,7278,7993,585,7956,3206,3042,4168,5112,5176,8529,99,176,3623,8467,3261,8402,4584,8422,5617,5286,2405,4092,6604,1279,9049,114,9000,3093,3450,590,5562,8443,1098,3546,5821,1065,7485,4179,6826,9293,8236,8076,3814,3219,7511,2645,3431,6971,5451,6145,6474,4540,9982,2604,7984,9319,9205,5357,9787,5172,2358,407,5902,8910,5587,7991,3715,2230,4513,1052,6728,9839,6001,228,6906,4319,2063,9926,2500,927,9991,8884,1711,5453,8796,6165,1247,6629,9945,6737,7393,5769,9256,8769,6135,7837,159,6295,5860,3402,9767,8021,3961,5100,8879,3674,9508,3763,1153,4018,2285,9587,8886,4233,980,3873,2068,3199,8750,5294,2650,1652,9263,5655,8904,7707,830,530,8478,2299,3386,8373,6039,6911,9288,3612,1743,2473,6832,1860,456,2615,1882,9465,2242,4803,2833,4116,7284,8862,3836,2308,8837,8347,8312,5087,8152,9234,121,7178,5233,9933,9308,1126,2225,4998,5609,4356,5266,4413,6632,3632,5411,2179,7825,2324,2251,1459,6948,4046,7867,1633,4672,3414,5782,8050,7134,9898,1940,2531,6969,6708,6166,899,1554,4723,3534,6462,9964,9335,2899,5368,9001,2765,482,3663,8690,9548,1106,8482,9713,8772,8810,3499,5152,3641,8558,9276,44,9765,9580,4790,5539,5512,2052,9450,3590,3409,4553,1009,5661,2411,3400,7546,97,8211,5696,5873,5346,6940,1472,6673,8421,1024,8539,7385,7132,2751,2470,4905,7467,552,98,406,1317,4322,5568,5204,9794,2818,1866,62,4338,9903,2383,9164,6598,103,928,9999,3639,9979,464,419,2244,3062,1957,8696,2733,7612,1172,3821,5811,1510,1772,6085,9358,8640,9988,1306,5986,9075,3856,2145,3491,7326,4152,1274,1481,7689,8436,4768,8008,4549,4984,2824,4818,847,4581,4269,938,9166,339,8419,6093,2223,213,1248,2418,1058,5594,613,431,5565,2226,9549,3493,8391,6110,7803,5239,1977,1165,2499,161,2063,1915,3259,597,4930,6246,3638,2146,6778,9882,5153,2958,6891,2423,5587,4488,8517,4628,9567,7617,1462,5758,4350,6632,334,6540,1986,6129,5638,1718,2934,1509,4233,2887,5490,7711,501,4420,1433,5321,5679,8799,2685,3145,8316,662,8402,7605,2338,3304,2498,8299,8203,4231,8538,3686,8342,7059,2851,8530,536,7790,5207,1913,4336,1546,1206,303,7609,2765,4125,8122,1837,2675,2920,7837,6824,4306,6570,9234,4685,6081,3574,9781,7207,4818,4927,2586,2413,775,5828,5911,5744,1590,2746,1927,7435,7940,8089,892,5933,3012,1309,6537,7123,9669,9078,7629,2954,3356,2637,4051,1430,1529,1856,4985,8852,3834,8063,5904,6637,7706,1954,8980,8304,3865,4784,3927,3364,8215,6865,6948,3539,3909,1597,7263,9655,7243,550,5064,5829,8580,1699,7651,7328,2272,850,7598,2232,4556,9497,2203,2880,4320,391,6606,7333,7605,8541,8374,5991,8262,8616,1695,6180,4848,5679,6478,1279,8221,9253,549,6132,1904,3258,7445,9073,5797,6760,2074,2607,276,3595,9606,6848,7597,2482,440,8997,7874,707,4497,8885,355,5489,9547,6073,1743,5280,2765,6953,7816,9158,6287,1017,8161,5747,4679,1419,334,7554,6612,6404,2597,3309,9468,4257,3357,940,2253,4453,7494,1416,4049,875,813,8211,6383,8286,6690,5125,7581,5247,5486,4571,2953,2642,909,9730,5745,9705,6623,7013,9868,8273,597,7707,4360,3586,2714,9295,4113,5345,7826,6782,3503,5587,3941,3484,84,2800,2950,6448,2959,6794,184,2267,66,3798,5064,4710,7607,9725,9572,2600,6770,6806,9232,2063,870,8844,7882,3674,5550,642,3887,7899,5420,8353,3583,1817,7527,5815,9553,3903,4113,7955,4122,6669,2206,756,2834,2342,7524,7189,2914,533,6240,4869,2356,8143,5763,4991,2363,2962,5178,5985,5989,9080,2772,9934,3282,6687,6752,289,2938,9126,5111,9501,7072,3911,9448,6455,7986,3321,2880,4408,363,7854,6610,8266,6532,4021,3617,2068,9301,4671,4297,5928,7583,7260,8769,1416,5466,799,9861,3913,2779,4504,6649,6567,6555,3063,5895,7065,9440,4904,7356,3325,6061,2076,4686,860,8998,5395,8725,7393,4763,2071,8546,5092,9778,8552,5735,7265,9280,9522,1454,9739,9705,5117,1584,7814,766,4515,2485,8092,2190,5275,7759,5239,7703,30,8296,8345,4629,5393,2136,4544,2755,9808,7578,3820,5810,3403,1413,3195,8320,9926,9755,948,6903,6236,2237,9363,1019,8636,5697,5441,7101,8660,2923,212,6690,8366,2855,118,323,6134,664,6839,8423,8654,2832,2460,1625,5959,6398,1676,1152,2419,8365,3908,859,2968,1095,3016,8958,9405,7770,3605,5648,5571,2484,5837,3548,1956,2628,2406,2949,1032,1632,9173,1053,618,2832,4565,7475,9070,4793,5381,6237,3271,5374,4973,4372,9604,1668,7392,3358,6653,1312,9739,6091,1650,3125,3135,8798,2289,9417,2402,2980,6563,5574,9623,5343,8980,7587,2555,9341,6053,2137,79,5605,937,7846,8098,7062,8803,2033,5142,992,9269,5089,5761,6000,5643,6674,5895,378,1947,4926,2955,7588,7067,2922,5634,7518,5114,865,6267,1030,2286,8023,8780,4936,7229,5906,3170,1286,4269,8101,6422,287,9689,5320,1003,3681,8967,9220,3792,3507,5154,502,8851,490,5534,6141,6487,6227,2189,2692,7866,5573,5899,4955,3192,6423,5315,1497,2187,6969,4718,8633,4672,5589,8354,7133,5104,9692,6441,6792,7825,2151,3760,4245,125,2401,2625,8215,3773,8231,1740,4186,8452,8191,1232,6290,7136,3289,263,9764,2791,5877,8064,6288,4459,5218,8048,6265,5287,5945,9812,3158,7671,4010,1093,366,6015,2889,5174,4730,3943,8772,2527,6516,6466,1327,5967,2219,7226,1348,6232,7236,7155,3543,3968,2347,3861,4424,3264,7119,7764,9901,2927,9573,8431,9978,9021,4749,4412,5358,4672,74,2680,8205,2873,4004,8734,7511,6976,6134,910,7201,3440,750,6330,3761,6537,4066,4568,6379,6913,4611,5920,2895,2516,6950,224,6878,3343,8695,9247,5913,2206,1881,4456,9556,5954,9993,9430,9800,3409,3175,3442,869,2642,9094,2653,919,4613,3487,9118,9284,2116,545,9754,9017,557,8073,8001,2523,9006,4946,967,3866,5731,218,1512,1115,9785,4179,2637,2679,6728,4981,2553,4632,6985,2036,6910,6114,8716,1625,5229,8454,3582,9801,606,404,8940,2766,6773,2756,3605,1214,7950,6981,5422,9164,7375,3438,7777,8122,3881,7524,7358,6652,4229,865,9858,2065,3841,5253,3397,4258,9955,8909,6660,1366,8198,7764,488,5278,4649,9642,6521,6624,8409,7923,9794,5220,4623,4167,1824,7169,1784,5291,3152,8418,4697,23,7340,1233,7833,1590,5086,3553,288,4472,6500,3690,3289,9050,9648,9637,3209,9706,6911,8699,6618,4887,8294,2994,9133,581,6724,2791,9526,8668,7851,701,9497,4062,8623,2659,2779,1104,2872,8973,8009,4616,4151,9675,3416,6028,3228,1811,2111,1762,7915,9042,9431,2249,5002,1479,9168,4379,6377,1724,2127,9799,7771,973,2408,5985,3465,8999,8200,9793,6357,781,9095,2942,8905,3418,1339,7942,1082,9078,2803,2620,371,4961,6696,7195,2148,7061,6469,3211,7159,4512,501,8564,3867,2474,4205,3902,120,9536,4228,89,7747,2929,1343,9735,5371,7065,766,9421,2340,4788,7494,9971,4651,9301,4085,5011,497,9335,936,1891,3693,2935,9559,8826,1674,6153,8741,4047,2836,4723,8076,7428,121,2646,3995,2015,8245,7654,4316,9535,9828,3140,7127,6013,8090,6253,6603,4714,7000,1974,1002,6388,9344,9124,3542,7478,650,300,6546,5001,1178,7683,1991,3820,6977,2565,6879,3614,7060,9850,8649,4824,3533,6933,3002,9812,731,3346,5037,8491,8286,7549,3350,9887,3120,6536,9555,5845,1647,4618,4505,6952,896,5705,7120,4316,7711,9066,5206,2671,3302,6522,7071,2176,1563,3677,6526,3572,9548,4007,2776,8559,2690,784,124,9149,6940,4856,1198,6014,9026,4862,4835,6137,2760,1560,2833,2933,8677,8645,6027,1415,1518,2568,2612,139,116,8981,8471,9582,1370,2527,3880,2620,234,3467,8412,1061,5008,2847,1696,5276,2412,9618,2725,4728,7076,3870,585,3819,1691,1169,9524,293,4096,8794,2165,1272,1788,8925,5027,6883,6878,1555,8831,7263,4324,3528,5285,7578,6568,4768,4397,5952,6413,6323,1209,9862,9392,7946,7741,3575,2632,3587,5823,2329,6230,9907,2212,7328,1971,9624,6716,2220,9527,9601,1396,4075,4640,66,8650,9848,8820,3585,415,9748,7693,9992,1482,2812,7158,9330,773,6875,3701,724,1391,9511,8327,8453,7324,1134,3117,1520,6819,4063,1131,6709,5004,7729,9375,7606,7791,4634,3109,1933,7883,7665,4218,858,1384,5945,1065,180,3535,9625,3644,2055,7377,4198,844,311,1159,1970,6616,8923,3382,7189,3671,5269,8606,2402,8081,6441,4043,9487,7277,390,5107,9002,2887,4602,2043,9914,7516,3955,8117,7184,5034,1395,5703,1077,5106,7205,569,6614,2353,9868,5940,6675,2815,7567,3260,867,8490,1707,7855,6773,7860,6452,1792,858,3101,4068,682,7720,9418,6613,5208,3656,9001,7430,5163,2647,2268,4010,9746,5599,3778,1065,1292,6783,6780,2019,4413,8211,7308,3659,8177,654,3028,6927,4592,9342,5716,9036,9828,9918,8349,237,2041,1380,7659,1993,7417,1631,1641,552,9956,2714,1293,4076,1962,8447,8667,3496,5307,7742,6227,4567,8099,5243,9328,9620,7535,8474,92,2356,1029,1163,2712,2263,2309,7515,264,8959,47,2769,1956,7287,7829,3857,4211,2804,399,3438,3157,7882,5108,7868,5870,8712,1700,8996,9275,8136,8551,5821,557,211,4602,9933,4157,1524,2211,2497,541,7904,8731,5949,8555,9450,9227,9406,3420,7710,7725,2417,2591,3994,6436,9869,6356,8287,4423,4955,8015,1480,6548,8164,4398,4906,5009,9136,1193,7754,1979,532,1752,3075,9722,1030,2482,7510,6914,4013,9894,8259,3332,5326,7732,4008,779,2286,9443,447,5476,5336,359,4843,4113,2857,8845,8778,9375,7649,8622,8104,7721,3601,4661,2576,1130,4965,5464,291,7098,2958,42,8661,8929,3325,114,1065,1664,2657,7835,1547,3594,6466,1499,5006,2385,4367,3343,7811,3777,4383,6938,3895,6203,977,13,3557,437,5146,8742,1533,3614,8600,3126,2350,2344,4708,4368,2385,7177,303,5016,3245,2797,9757,116,7931,5797,9373,2781,5715,733,2541,2387,4733,8433,2355,7729,4716,4971,1897,1586,8430,6974,279,1651,2967,3814,5715,5986,5988,7254,4568,1945,6900,6195,9318,6067,704,3390,436,2041,7253,9103,1900,2726,6507,6213,6088,1065,9661,9735,7362,8657,2443,5140,3669,9155,5532,8470,34,5700,7648,6178,2179,9586,561,9161,777,1062,447,5163,293,4474,4155,2216,2485,337,9895,5425,3295,2945,98,1634,5510,8247,5665,864,2316,339,9521,4285,5478,2112,4130,6724,2079,5275,2950,2221,8282,9846,8209,3806,3385,436,4507,8269,6720,2626,4397,313,5815,3243,8307,1128,3727,4039,310,5017,8559,649,8246,3799,1648,1986,6052,2980,3944,8404,9409,6286,774,6766,3586,7837,4310,7832,8054,9352,9404,4595,1933,2426,6330,8196,5926,7579,4532,9373,9740,687,6998,5638,3248,2532,2291,5925,7493,3172,8771,4400,8741,8206,6190,6253,7198,1478,3492,7354,889,7895,8289,3089,4938,3829,8657,2201,2387,142,8757,6413,3612,7048,8055,5971,2614,2785,438,8152,6847,109,5141,6961,530,6682,7156,4566,3918,9365,1542,1092,3426,8110,9574,3166,2294,7125,1129,702,9384,6849,9596,2580,4128,852,6585,3838,6141,4276,3142,9400,5575,5367,6755,9046,3434,5052,7465,8505,7018,4687,9696,1028,3008,8605,5389,8699,8262,7467,7563,7560,5927,6166,5160,2452,732,7745,9471,4263,9388,5928,5424,5209,9550,4917,8825,9499,8617,1990,1095,527,6390,7244,745,6378,3915,4456,8518,1179,2064,4550,2157,2778,8526,669,5912,7036,2931,1177,9045,4721,2685,7981,1740,8517,416,6373,9403,4562,1094,3967,6103,6665,9479,6002,3818,3872,6495,3749,1857,2976,1662,9781,1187,9633,4671,6159,3482,8274,5230,7249,5583,6644,1884,7363,3327,6161,5678,9374,3154,4359,7182,3075,897,349,8307,7038,439,2085,7402,635,926,4639,5239,7650,9070,2534,9408,8808,4336,5744,3844,5162,4165,9939,1395,4496,3242,7835,2833,4111,3034,8434,1742,3378,9948,5747,7479,9335,2870,8592,6514,8886,5207,4249,7168,4871,3936,4499,852,3406,9574,5562,4023,7982,5165,1427,2264,3293,2125,9729,54,7909,1310,8778,2135,3175,1596,8198,335,5221,9122,7819,5251,9607,9460,6777,6602,4057,9012,3792,4774,7853,2614,6658,7545,1702,8213,7541,4270,3098,4829,4385,4939,9854,4994,9151,1778,4011,138,182,8466,4574,9895,4593,5148,941,9012,3965,9204,6859,8391,6992,9393,3638,6908,2973,5372,7898,4262,7229,9626,1130,8364,721,7025,5180,9113,8046,1316,3496,4465,6473,9675,3180,9772,9934,723,9394,7814,795,8066,5837,4626,3912,9810,607,4923,3818,4283,242,1149,4095,2489,2939,6536,1847,6246,8882,1637,6754,5513,6324,6415,5404,6501,6347,79,9591,4445,7356,25,4805,6464,2419,3073,9066,9401,9419,7911,7099,1829,8542,6220,5190,1424,1568,1362,1967,7729,1874,8427,2063,8955,8564,880,9612,5546,1709,4396,9111,8749,9848,830,772,3984,7412,2007,3113,2774,8264,1660,7154,1378,9176,8637,4366,1886,4158,9923,4455,6864,2883,8490,7149,8733,3163,8243,4320,8482,9222,6881,661,1779,1736,3393,4839,6006,2495,2578,7621,3203,2343,5083,1453,9973,9459,2564,6368,6794,6864,3865,5326,4101,5379,1201,9321,2107,1257,6598,3725,8692,8415,9774,5009,7483,3166,8767,8239,5322,1860,8011,4866,6728,276,3268,3937,3142,6407,2899,6137,3698,4971,1217,3410,9647,316,2808,4452,6920,1838,7645,2204,247,8624,1389,3747,1954,3968,7355,3414,5631,3632,2875,6806,8885,1927,3525,769,7681,4696,1125,8417,4405,4197,4065,8640,6456,8912,6036,5334,2150,8890,7327,308,921,3196,7430,754,2799,8221,2629,4438,3162,1266,2955,5323,6230,1254,7332,6362,8881,4415,849,5620,9421,9044,7903,4876,3090,9304,1866,9391,2663,3608,1135,944,5391,8182,3959,2451,2870,8557,8990,8427,6710,4984,3483,7442,8418,574,5560,1463,9828,354,5593,9618,5268,1017,3413,1304,2999,9624,5258,5114,3726,1824,23,7416,793,5687,4192,1989,7276,4950,3935,4770,6037,1359,9805,5406,7483,1259,259,7693,2824,3006,7284,6883,7122,7452,8233,9717,7530,7196,4728,2968,473,9599,1759,8039,3288,4443,8787,7528,4877,9225,4191,1577,5570,245,2407,4302,7587,8002,341,6448,2223,2053,8421,2798,1848,1091,2088,79,7766,4722,3933,3742,7640,2612,9111,994,6874,7148,2821,9383,9411,3752,6308,2455,2531,4748,4248,9651,6981,84,3941,9288,7260,5119,3760,1978,586,6487,8329,2687,4857,2058,1124,8799,1965,5885,1423,9810,4073,2823,4321,4745,6462,8864,4498,1079,2449,851,4740,6595,9817,6897,6021,6198,8787,3659,933,1687,8092,86,7797,1292,2071,2646,3491,3512,8457,8736,3015,7616,7529,523,4210,1768,7954,8908,1041,8780,2822,82,5409,9725,3961,2372,9140,9645,1482,6667,4799,3766,2671,5059,1035,8137,1508,5896,9559,4548,9077,3878,8792,2842,7160,7524,687,7040,3699,8926,4536,8055,7870,6032,3536,8660,1344,4408,5293,350,2150,6824,9122,4098,2477,26,1287,7195,450,3917,2771,9829,9798,7532,4651,7173,8015,4181,9440,426,3719,5695,7617,8269,794,2012,8194,5806,4658,7635,9194,1365,4333,5870,2749,8297,3595,1853,5525,6528,5519,2935,5970,6001,121,1532,6895,892,209,824,9860,4015,9741,6135,6787,5703,7523,8804,6223,5162,9980,2659,9146,8292,2609,7432,4804,5207,2813,6655,9297,1407,2815,3312,6306,8923,448,1323,3381,7064,4501,5486,4834,9813,2542,7489,1645,5757,9446,9268,1240,5538,8374,2855,5939,5706,1723,7978,3226,7415,1836,6998,897,2417,6596,4252,6528,2674,7552,339,7984,3067,2791,6671,855,1981,6880,8653,2304,5023,6484,9571,2332,9837,6491,3221,4438,368,8143,2499,9956,4675,2774,3262,380,8269,9338,4810,6025,7378,342,2862,7017,8885,2302,8721,8205,5099,4096,8180,4946,6253,257,624,9414,8581,1221,2654,8456,7601,8359,4551,2337,3497,4078,7047,7830,683,2167,1542,5232,351,1226,2027,3616,5564,4165,2252,4802,8582,8707,373,5414,1845,2636,1412,145,549,6302,2710,3744,205,9939,639,4889,1038,4152,7169,3405,2315,903,7587,6020,1837,8253,7614,8913,9820,6390,6760,887,1732,317,8266,8467,9663,5098,445,3704,9868,8269,4853,8213,2387,8019,2362,9215,7107,2004,3076,256,4950,9306,7760,1256,9753,1309,8969,1530,5136,6468,1376,4319,643,2652,7834,1281,1338,6943,278,3284,8855,3428,8710,1652,7967,2371,3254,4617,8395,1216,4556,1762,4654,4613,3442,7518,880,6067,7336,1435,7099,6087,356,6010,6661,249,1989,1851,2675,8544,6955,3311,417,4014,5349,3424,4302,9739,5522,3466,2717,9404,5890,303,5159,3322,7829,9163,9174,8734,9205,7709,5951,8910,3919,9963,4484,659,7462,5833,6560,2578,502,4938,2431,8934,5308,8581,2098,1042,9427,1187,3706,1182,7462,4025,9108,2612,2497,2400,3146,5469,2226,7884,2586,2931,2358,9448,5342,936,195,2710,906,6909,4010,9965,5067,5108,8533,8517,3198,5880,9893,1083,6393,8161,4494,1568,2342,762,3703,6446,3162,1307,1126,2179,3708,2725,6304,5105,1450,1918,6529,2043,815,7220,9337,5548,5640,4599,9071,9452,6186,6194,7880,1984,8500,4701,3317,1005,8350,5761,5875,2841,7168,1267,3515,2373,553,2719,3290,7720,319,4870,9177,2291,4696,3133,3668,5152,3215,9450,5266,8066,6866,4020,8079,6488,3512,1394,2675,2337,8938,8445,8741,7155,9168,5641,1371,9331,9266,7340,7780,8954,865,7938,5519,3886,8408,4272,8519,5539,2268,550,1491,4292,3192,2581,1239,7928,6180,7412,4754,4094,5205,7954,6736,1048,7080,7463,3264,1526,3460,9539,7338,4597,3503,8309,6543,6321,1960,8768,5928,1491,4471,9699,6500,3011,8720,3313,9859,5374,3857,8440,7847,7012,8761,5138,6362,2194,3997,493,7867,2320,3215,938,6260,3415,5045,4147,5869,2522,2602,7723,2626,6448,9282,7600,1606,3444,113,4052,8601,6280,1515,8289,3551,4289,2127,603,711,8186,3350,9968,499,6465,4272,4746,6480,7538,6683,4512,4913,4328,5964,9866,6848,6985,8845,4753,2006,1209,348,3919,5989,4855,9508,9140,9584,8507,1510,8322,3308,8912,7483,7309,248,3880,685,2670,1618,3957,8478,6387,3161,2269,1973,7785,4875,219,8120,8653,5770,2238,5961,6637,6610,9436,4105,8204,3794,3944,7120,1351,3339,3161,9423,4191,8364,7131,8457,6312,813,9733,8387,6728,4597,702,5219,7571,5067,3852,2306,1157,2600,1535,8739,8287,7342,3030,5675,4653,5471,560,3902,3446,3330,9100,4974,9412,9762,6263,1150,1123,6275,8788,9679,2096,906,283,5882,8113,5418,739,8856,1140,1080,7421,6136,3888,273,7212,3003,4279,1823,9887,9129,2641,6444,5668,9037,7598,8357,722,1912,2528,3942,1976,3676,9251,5941,8593,981,2497,4191,3507,5797,7899,4724,7574,1127,8305,8801,421,2751,8558,2862,1381,1087,5417,4150,5220,4525,7363,1081,6006,6813,5912,2153,7474,4317,6157,132,4643,484,9794,328,9334,820,191,2330,749,2632,4922,785,4065,3597,3296,3826,3603,261,4069,5714,9992,5680,4643,1163,278,1110,9598,3291,4799,6641,4496,7184,3270,7902,2636,7629,1551,3079,7216,6739,2893,4082,7864,7782,4165,5503,6110,8778,9749,9832,3226,8676,4427,4193,1818,3081,4045,1250,2712,1759,1924,4549,6355,7462,7952,6466,5229,7380,4389,1389,8485,3685,8492,8765,5879,3341,9557,519,5041,61,5898,8671,4017,9343,727,3388,5229,5873,5440,9935,7123,2440,7213,9561,7976,2343,3726,7258,9920,3287,2861,4978,3817,4492,3057,5029,3898,4583,2265,7856,3013,3680,9944,5226,9548,340,4686,6265,1628,457,5851,2076,5285,4876,6754,388,7928,8386,9345,7285,8686,7261,1048,2680,3150,5618,2426,1635,4205,8911,7946,4751,6117,3524,6731,1602,7078,2504,8449,1761,8177,9070,1325,8270,8842,9187,4234,4566,4053,5821,4993,1307,9429,4224,9676,5716,749,2801,3813,9353,3064,8888,5469,6820,5368,3305,8037,6334,1849,9812,7375,7818,7944,5033,5069,6254,906,2705,4039,475,552,7711,4123,1203,4040,7607,1352,8589,2849,5740,921,7904,9483,8994,7900,6111,8756,5061,5079,6370,5963,3810,2642,8518,8022,6173,6688,563,8161,5349,3792,6643,126,7618,4696,7802,4630,8343,8254,6952,4486,5287,6091,9403,8951,4566,3767,1866,9968,4489,5828,8200,992,2590,9812,9991,5108,9269,416,2299,3744,4695,863,347,573,8773,8632,8341,5045,445,3238,3714,2892,1002,6101,2582,1932,6580,5681,3004,1740,1367,1115,1254,2943,4382,5550,5768,2582,8244,2609,7643,783,2734,8914,5803,4369,3030,6334,4185,6649,9948,5218,1672,6543,4041,4912,1813,9975,529,6756,7445,2948,4016,4416,326,9306,1675,4369,742,8183,4766,5716,5016,6077,4187,4353,7243,3892,976,2568,6856,8504,3486,809,4213,8991,8071,6760,3822,5705,7937,9552,4754,104,6436,397,4867,6153,8554,9773,2936,6338,8751,5814,4235,7406,8079,6835,5725,2845,7794,7508,7024,3521,5298,3561,4528,4541,833,4365,9414,3392,5738,8367,2467,7138,2980,276,3126,8925,3297,4873,2009,7945,1055,7895,6018,4221,4275,8479,5913,6084,1601,3139,4575,7772,8857,3693,5106,6130,795,7480,4173,473,7346,8848,8423,6132,8621,8790,1968,3567,7289,8360,840,842,2580,1692,984,5789,5219,1858,2893,5146,5234,5820,7852,7638,4400,930,2084,2143,3259,3051,1901,5149,1762,1,1224,3384,8153,9263,9363,9545,9093,9487,9470,2576,3617,5821,9320,3476,451,8024,3956,1484,2756,9366,5154,7074,6108,8601,3487,9169,9415,9967,2134,2324,2563,6594,7635,554,5551,9234,5616,2310,5568,3725,272,3419,250,2601,9568,8684,2156,2280,996,118,1164,5676,7149,663,855,9558,4326,4364,3649,5900,3443,2218,8362,3589,478,3027,4395,15,2293,2068,7693,734,5870,3167,1792,9660,1270,1157,8717,3222,6231,3729,2724,9841,6767,3,9008,9900,281,6857,9594,5517,7831,954,2759,1125,3865,4908,8973,2201,5792,7463,4757,3563,2322,3707,9337,7084,9616,8891,8544,8768,5836,6285,4917,5368,2111,8885,6651,7306,759,6699,3481,6392,5231,720,776,5158,3234,6388,6944,7700,4743,6931,385,1660,6592,9043,1924,2370,6757,1144,9007,1536,4871,8392,7766,7169,2479,3381,3073,4730,6533,2697,6905,9421,9626,9816,1170,8013,2880,1254,3862,2259,7216,3404,4761,9476,1976,7,2172,1809,5585,4125,5464,6301,3840,1805,9255,6643,5110,1247,2155,4748,5336,621,8407,7899,2278,8582,8080,9128,4887,4724,5950,4680,1146,3079,2922,3468,3840,5782,3552,9095,2285,8828,6472,9803,5315,1852,6996,6674,9153,2226,7810,7326,8441,3126,778,8513,1199,449,9675,7730,361,8238,9934,7722,1571,3354,9203,9311,3893,6001,6556,4339,7797,5717,2436,4117,8421,792,1215,2988,2789,9985,503,7417,7589,6384,1301,4316,816,3202,3318,6456,7732,7394,861,3859,6976,7423,6780,6422,1099,4809,8477,3214,2446,6894,4224,9881,5403,4851,231,6356,8913,9043,4085,7255,2401,3500,4652,3762,6553,9295,3095,7319,8670,9124,5671,9540,957,9751,9454,2033,3243,7045,7120,4288,5377,2562,8630,835,7829,7960,4976,1795,2442,771,1972,2632,5139,655,958,3299,9475,6430,7172,7424,7739,8585,836,5044,4356,2461,9806,9542,2417,6489,9128,48,9851,3253,6800,1099,1259,5806,8701,4385,7958,2945,2566,5060,2969,5312,6118,538,3850,4520,9523,4778,3352,5797,7674,7681,4239,3708,8813,2271,4400,9723,8382,3577,8353,4018,373,2786,4386,6822,2814,3150,5427,2116,28,3999,7756,6841,5683,5069,3513,6832,5940,9785,6823,1236,3458,3551,4644,8055,5824,3031,1248,9421,7389,2890,9733,8874,7331,4354,4600,184,8609,837,3974,7677,2418,7098,7799,9733,9818,4990,9590,9235,8410,2824,3250,7927,5886,5927,6052,8312,3698,1655,172,8558,2699,4477,831,6038,8360,7334,5501,4698,9191,4175,7633,6799,8948,1737,4063,3841,9644,201,3349,8333,8837,3681,3287,9185,1907,4527,241,7366,7120,9757,8346,7540,9954,7305,6143,8342,5668,6062,4864,5190,7258,1592,7814,6952,4151,388,8722,2695,4027,2505,6003,8307,9412,636,3284,855,8397,7003,3107,2389,4844,1748,3771,6313,1334,244,577,3144,7262,1882,4661,9917,948,4573,7170,278,6772,522,3950,539,4082,6985,7738,5193,2918,226,6622,9487,9346,7675,187,9486,4420,3272,608,3751,5443,9145,1942,9454,9565,7788,6142,3745,4609,3253,8578,8157,6696,8078,1824,5597,9151,245,3431,3120,1321,6695,9409,2627,3733,8477,5264,3214,7978,1935,9227,5582,9736,1890,2794,6654,4683,532,3515,7221,4920,142,1233,6583,5398,4882,3860,7053,6414,2799,5078,8241,2316,7772,1752,4100,2255,3805,5644,4374,149,9266,5546,5010,5048,2871,2992,5037,918,7399,2235,7014,5746,2791,7056,3214,8655,8722,6040,1606,4347,4815,2966,8305,6723,356,9564,7811,9811,9694,564,492,4069,3182,6615,2234,2778,1903,1048,3545,3641,9741,7086,1764,8363,6212,7908,4430,4329,7003,9730,2881,2431,9655,594,4389,102,697,2364,6948,5931,8008,2141,511,4081,2782,6040,7666,3124,8004,3764,6003,5022,4128,3187,1060,4658,2629,4102,5614,8513,4140,9856,3635,7213,786,8851,9370,1361,2718,5666,1604,1303,3683,1569,8558,6575,2187,6775,7650,5984,7782,8848,8491,5101,1629,6552,55,5754,9638,1853,4726,1209,33,9010,422,4978,7590,7839,6374,8957,4439,791,5222,103,3970,5483,3356,2554,2315,144,5442,9880,1103,2082,7812,5365,8527,3879,859,5493,3889,8336,4870,6559,401,9399,5331,1325,4144,9971,6742,8210,2446,6237,3445,64,9045,6408,7222,7333,4324,6559,9266,5514,747,2310,1863,2641,81,6449,8414,4187,6868,9357,1682,8811,3240,2029,4245,4772,7394,1281,9207,8746,1314,4908,7532,964,1487,1524,1699,2192,3247,318,8668,2533,9881,7254,8539,3920,7043,373,725,2475,3970,8943,2276,7613,2003,2029,3161,4462,5795,2095,3577,5757,1297,382,2021,4535,9826,5186,5998,8483,3314,908,7709,4180,8284,8911,8403,7161,2275,5595,5202,873,987,4567,6612,2249,3822,7712,1016,7729,6283,8717,3635,6669,1346,4374,4474,6939,6714,4452,6228,1551,8643,7262,8441,4843,1459,6470,9178,3827,8589,9407,2559,4335,4364,928,1757,6467,8346,6824,1460,3313,3686,1156,9601,4824,5315,2089,1506,5917,1072,1661,4306,3266,6843,2926,8835,2438,8917,1404,8855,4279,2158,3255,6284,1036,556,9468,6999,8485,5003,5744,5286,5732,9653,5703,5943,5489,583,9761,9261,7303,8416,3139,6094,4530,9268,7576,7119,9786,5086,3783,3654,4676,5110,7059,6305,3083,3389,2518,8196,393,3324,8833,198,6417,3376,9488,9248,8003,5409,5003,6554,8125,5812,8711,6511,201,489,5228,3343,5615,7796,946,8337,1016,3755,1786,5972,7988,5211,8477,3321,6800,2758,9308,4535,9712,845,8724,1210,602,1416,9773,2188,3549,419,9133,4780,8721,9197,9958,8328,3716,5791,4833,2125,6003,1443,8399,1852,2655,2525,5610,5672,1821,8841,751,1324,6162,4364,3123,3833,2555,7334,4893,1154,8420,7211,5800,1783,997,8647,584,2235,6975,1541,8120,7499,1006,1363,1143,1454,9989,2337,1037,3247,6048,6827,8253,2626,8052,8001,3305,4298,9350,4416,104,7230,1003,4641,1505,616,1883,2187,3990,618,3480,2619,7513,7064,2545,7411,8246,5359,7876,8478,8826,1383,2048,5024,5269,697,8732,3086,9359,1366,6671,9046,3472,4788,8308,6574,1308,3684,5607,1655,9101,9184,6930,3752,87,2341,6344,7892,6899,2012,8597,7738,2864,4402,4007,7020,7877,8727,653,4451,5154,1389,2372,7385,8700,9513,1586,1843,2930,8547,1470,8909,3054,8638,716,817,9601,7087,9165,8172,8761,1415,2496,5996,5525,8006,4910,4674,3312,1503,9671,3186,8748,5616,7303,2759,8127,3573,4970,1724,7383,598,9136,6394,2960,6806,2816,3219,9785,9224,7977,7671,3638,3656,2462,4561,2641,2894,8239,4767,6366,9404,1834,6850,1044,2902,9783,3802,2596,91,8314,2489,9751,1396,7536,4014,4809,3657,1443,5553,2430,9313,4465,2750,6107,7081,6593,1361,9188,6865,2433,834,1607,9650,4219,9494,1114,6637,711,7221,6652,8214,9968,7292,462,498,622,8604,8849,9983,6272,9670,5190,9768,6803,9439,7373,9272,1435,9868,5370,462,6603,8481,8597,408,3141,1722,7899,1616,814,3509,6603,8535,3753,3677,717,5873,9852,6031,8836,3723,8252,5835,1516,1451,3541,3939,9147,3917,2636,6012,3074,2094,2945,6125,3885,8096,9826,6805,707,648,6420,9331,2606,8784,3291,9072,797,4956,9470,7258,8460,4578,501,8253,8882,4314,7379,4573,3162,4302,1234,7010,1643,8837,4859,7848,77,4674,7270,9135,5892,9373,766,3510,233,4126,8610,7273,1742,9849,1837,7763,6356,5683,9210,7788,1483,13,6287,2387,5473,9248,9853,9633,1141,2654,9296,9077,6969,8780,8016,896,3109,3915,6772,9657,4059,7993,4261,1220,8049,7305,1894,4295,5466,6472,9734,53,6755,7077,4918,3661,7194,644,2020,4712,3935,7161,3228,7448,2807,3064,598,9694,6752,7857,6847,3240,7023,2453,8982,4956,3571,3891,2216,8912,6194,8716,8923,6781,8033,192,2303,1048,8730,9376,5246,462,499,3736,3045,178,207,7197,7843,6807,9922,426,8216,3578,6822,3899,917,9241,4391,3341,6323,3280,5868,6705,4748,6664,1756,349,5885,7862,7841,9561,7384,5083,7985,2991,5209,5629,5353,3840,2385,5811,1641,4413,8853,4310,4326,9227,892,2834,9900,1530,8985,4821,7295,2174,8054,293,3658,6545,5062,3907,6865,5174,1660,6104,738,4854,4832,724,4321,9464,7496,9872,7724,2364,9232,5625,7302,9850,4505,5449,5421,6703,5628,7028,3526,284,258,8235,6184,6985,4267,9592,4411,1036,26,8720,2213,7432,7981,4969,9278,2112,3587,5778,6429,2028,8163,6712,1556,5326,6280,8791,2430,5422,9274,2331,2152,4519,9078,7939,1404,69,9394,3992,255,8556,3504,8515,3909,5981,5404,4442,1609,5020,7824,1569,6650,5368,2999,8337,7888,8326,4244,2957,3667,1089,2710,4566,5708,646,5484,1555,1659,7248,596,1101,4726,9110,2784,3561,5049,7063,6699,2402,1118,1186,4013,3900,5375,8269,3592,3594,2837,3120,4084,2262,6109,5695,5033,6171,6220,5020,7713,5082,4287,935,5685,2597,1009,1776,8890,8834,8193,9822,4296,6224,6179,6525,7779,3796,8640,6803,6869,2696,9111,5285,5585,9198,119,2686,6448,9275,6801,393,4032,9322,216,2498,6389,2898,1278,8369,8279,2508,7392,2492,7766,1788,9904,7567,1779,5852,9912,1733,9195,3883,2864,4225,3775,7936,2759,694,2598,9074,9679,8742,2320,5361,5214,3291,7500,67,34,185,3970,9302,2959,6680,6238,3205,4940,7335,2671,7712,1663,2350,9394,4848,6336,4407,7420,7442,2703,9589,6755,278,3173,6548,9075,4035,8956,8662,7306,6018,4945,9039,1891,686,4710,29,7253,4947,8181,6548,6381,2803,5801,3505,3299,1248,412,693,4783,3981,8133,5288,4080,3837,263,6334,1613,2843,7741,1382,4538,8212,4063,4831,518,6207,6689,4859,1530,4103,9650,5843,175,5695,152,8130,4541,9912,2425,2816,4179,1651,2808,685,1581,8604,6668,7526,7887,3003,1038,1120,8093,2228,2037,3460,1717,1832,9537,2438,5015,3698,5546,4920,5362,2270,1726,3436,7888,4,197,9237,1615,6315,4702,5482,3246,723,2535,1278,5952,1493,5594,1884,6088,3419,5695,6475,798,1417,1117,6397,9435,2649,7228,402,7338,486,9462,4709,8117,245,6329,1941,6676,1318,6037,5154,2197,6373,6522,6826,3560,8845,344,2474,3492,2496,1525,125,1204,8111,8512,4362,7122,6445,3455,6311,730,2957,6399,7754,4606,4614,8011,3144,2664,3730,9031,3466,8272,2068,5991,8323,607,4540,7260,3089,6050,7721,3829,8003,6043,2232,6110,3487,250,6360,1596,2406,9205,8283,3919,8749,1881,9874,431,4067,5371,8959,7323,5004,7106,8397,2976,7951,541,8052,6631,750,3657,7841,1527,7542,6013,7467,1440,7479,1907,2071,8607,8093,4655,5565,2749,7643,6566,9976,4650,6417,7846,5343,1665,1371,3205,2951,2435,7254,9187,7252,6134,1848,2773,2424,8265,3777,1924,2486,2390,7999,2591,5355,8323,2598,2625,6341,3535,9940,4014,1061,7297,7957,8388,4411,180,5951,4393,5324,1796,141,908,9065,3663,590,3234,349,7887,8432,3113,9829,7445,813,6863,5654,7331,5812,1758,5345,8153,5085,143,4632,7313,1426,8017,2270,9808,6254,1533,1577,5825,4637,1529,4506,2091,7337,310,7726,3744,7671,1231,8683,515,294,6391,34,659,9072,3453,7179,9709,3699,9580,397,5838,913,685,2015,6508,566,6955,4935,80,1839,1287,4485,1017,3568,8432,1754,7884,6909,6128,9053,3458,3400,9966,5867,1087,2341,4179,9841,2377,6848,133,8356,2840,310,7467,5210,3938,8188,8681,3014,4215,1092,2221,5688,1565,4471,8918,7546,1305,2073,296,496,7246,3588,46,3722,1363,1519,1056,2374,5167,1390,8632,5826,1922,9316,6605,9140,2287,8007,3697,3237,9471,4161,7119,4563,3766,146,4474,8373,4251,146,2286,2397,439,6094,9397,8753,655,3925,8696,3481,7265,8844,5573,562,9515,6549,8636,6053,5,8131,9533,4376,9009,7542,293,8772,7741,9402,8079,4194,5739,3017,6042,7950,3323,3430,9952,5055,8696,3627,7998,6421,7469,5615,3361,6702,173,5637,6106,8014,9317,7535,4049,8553,9562,6478,9551,9040,4887,7471,5375,6009,439,4640,2173,717,2672,5535,5131,2161,590,6771,2858,6313,3725,4602,6592,5488,1274,3203,5018,3458,8813,9169,9658,7495,3626,9321,9980,4486,2919,3756,3509,3749,7555,4646,8987,3665,1538,8617,8906,2395,2404,5928,1158,2779,1892,2391,5389,3790,3689,1357,563,2644,967,2051,6947,7619,4910,3933,7418,3906,3211,232,5478,5918,166,1224,9390,7872,1770,1689,3386,90,9675,4032,5514,8428,2293,5509,4487,7164,3101,3550,3981,5908,6654,558,6457,9017,72,9270,1520,7144,3864,3748,586,8232,9786,848,7553,4731,7165,6125,586,2015,2802,2775,2389,5028,8903,2926,1918,7590,4957,8060,6372,3306,4726,1921,743,9313,3184,6065,795,8661,7261,8790,5586,6453,1074,7678,7180,926,3189,4993,4978,1506,3454,6103,7075,3040,9727,205,4973,9197,3343,7488,8332,8345,2219,3350,697,117,9987,7324,4036,4579,7882,90,8078,9135,7698,6085,2139,6623,8421,2213,778,5482,2212,228,2394,6838,9174,6190,3209,8107,2831,6694,1215,3279,4322,5970,1124,8401,9230,9625,3407,6773,3342,4443,1991,4154,6609,6263,5629,733,7627,2153,8839,1862,4753,5466,6156,2300,2836,6186,5258,6219,5646,9674,1802,371,1733,2077,4025,3298,8761,6091,1981,2874,7443,84,8186,9714,4838,7827,2996,167,6197,4224,9596,735,363,2446,1718,5434,862,6576,1901,1277,8444,8723,3736,3320,9613,6986,9910,3801,4982,5885,2052,6192,8981,7709,7914,1187,2124,7763,903,7538,8440,3469,1344,1522,1095,3948,8163,6545,6046,2831,1302,9398,2341,4223,3257,644,1835,8353,5313,7864,9554,8687,392,2313,1227,4480,3629,3717,704,5419,942,8429,7551,922,184,5463,1847,6858,124,9611,4824,9487,1964,7407,1607,5709,8726,344,3245,2291,7399,6373,4102,5959,4632,6443,2470,7262,2223,8049,6755,7827,1237,8354,4189,6359,920,9827,479,6340,6981,7226,765,7819,5369,2203,9628,6220,4854,8016,8699,41,8148,4674,4077,2223,7617,7884,6968,5437,7110,3249,205,7723,6397,9920,1010,9049,9608,136,6849,2601,3661,6374,5477,7559,1116,7909,3897,238,5315,8115,2674,1323,3477,3151,8056,3766,5218,1954,6117,8953,2574,8888,7815,1665,1918,1112,8961,1017,6621,4287,8078,4765,1397,7845,9647,770,8073,1884,6577,9609,8455,9731,4197,4966,2269,8722,4141,2936,7594,9426,4207,7545,5242,4968,520,342,248,6564,8201,2065,2189,5574,4796,7775,33,1753,3337,4948,6654,2634,8303,5062,2647,1969,7142,5722,7731,3898,9694,220,878,5939,630,142,8601,4797,4058,305,8027,8342,3929,3330,2593,8184,97,4458,2306,4206,2912,2360,8369,3698,8643,9954,3094,203,2213,3431,2932,6275,3533,3251,428,418,6988,9079,117,6982,1459,6882,4045,510,8568,1022,7976,3215,3766,2996,9955,2716,3973,8736,8783,1684,5830,6394,7119,1429,2141,2873,694,9799,3311,177,5728,9256,7894,6426,9196,2932,2394,6017,7693,1272,3137,6576,7604,9992,6971,5126,6071,4433,1830,5136,233,9622,4637,2735,2901,1653,8515,7569,9031,8396,1437,6708,5338,8339,5816,9439,7882,4315,1490,3956,1769,7990,7590,7318,1366,4052,6597,7307,595,732,7212,8304,9131,6985,542,7588,9349,2575,2032,2757,4319,7038,1147,4162,1882,7233,3743,6044,7746,2302,931,2044,3337,2671,4885,42,3629,4057,298,5752,1150,5511,6620,8631,5112,3215,5957,4664,9067,5701,2209,291,8882,4204,6781,8987,7239,5320,7966,1125,6777,3657,9009,3634,569,2809,9385,9396,5821,3845,1592,3531,5631,4578,8506,8832,5993,4242,1442,7846,1163,6168,2106,8876,2084,6364,866,976,7883,2207,7556,4270,3268,6134,3596,1942,5463,5524,8222,5022,1790,9218,439,1410,5159,1409,3375,5073,3423,3259,3854,3948,902,8814,7265,9817,4882,6985,9438,6427,9039,2011,4946,8853,5937,7972,174,6272,7583,9734,8941,9002,7317,723,5110,5102,2678,3884,5450,2942,2862,4617,9772,3555,6478,3544,2914,9467,7395,6790,5890,5178,1006,783,1380,8949,7590,9697,635,4675,495,7380,9627,931,9239,6305,5525,6094,5635,5610,423,2975,6352,7175,6108,943,4972,5608,751,9704,9427,1020,3094,7884,5499,8727,2363,5603,7289,434,3992,3400,2506,8360,3989,6725,6478,3228,8512,941,690,6370,4515,6420,4808,7113,9448,702,9790,1976,8027,6407,8760,2468,1105,258,7757,2131,2543,8457,9815,8997,9145,8045,4706,3421,3477,9160,6866,9655,7137,3967,4871,9766,2882,8987,3036,2338,1016,693,3209,292,4581,5986,6035,4574,1922,5270,2533,4788,4398,4795,4521,4274,5091,2820,3743,4546,2618,5915,3311,7784,6206,2826,5440,6329,7243,3996,772,1250,4474,7412,6355,1032,2579,8075,8236,5640,6989,2970,6792,2685,1673,5125,3900,7432,4197,608,7074,2449,1679,2538,5043,6815,7631,6391,4698,8866,1969,3554,894,6432,147,5658,1953,5414,5239,6950,6146,9345,2347,991,3231,7943,3983,469,2739,6626,5548,1831,1496,6070,8162,3172,847,5684,7227,4919,6389,9449,4529,9208,8501,1684,9306,783,7268,2236,9931,3923,8082,7296,1921,9196,8857,4532,5342,1009,3250,5678,4247,4499,9108,9188,777,8617,3181,5649,6457,5485,6034,3715,9126,1889,681,8043,8281,343,7155,3965,5468,3407,2049,2073,4991,3547,2955,7537,2233,9480,2638,5113,1903,723,8348,6486,4195,4868,1136,4006,5839,4847,3953,5360,7283,3006,9989,262,8930,239,1790,8125,2835,5133,6425,4993,3845,3674,6630,7724,7498,7433,8576,636,6029,3141,3235,1159,2634,1403,7532,398,2794,9681,6501,4403,8773,9356,3439,8092,1106,7531,612,2251,5749,5990,1843,4260,4358,7180,5683,1820,9919,7637,3840,8161,9406,9750,3029,3988,5638,9276,2160,1037,1406,5447,3097,8474,1530,8510,6551,3825,5933,9457,3852,2985,6629,3123,2413,9065,934,349,813,3443,8921,7762,7363,1865,3397,4668,4337,4656,9266,8399,1720,7424,9412,678,4856,5423,2210,8209,5606,4573,2854,5040,5096,2086,7244,8562,9876,7138,7608,7079,2359,9004,7711,3074,1955,7119,2784,6022,2912,5245,7571,2509,3631,7284,9823,7480,8233,7591,5390,5433,2587,2360,1024,3589,5154,9917,1808,3120,125,3242,6347,4906,8701,480,8199,6018,4440,7925,3610,9709,5887,818,498,1493,7508,682,3143,7105,6100,6118,6460,3563,870,9589,8316,7197,4254,7185,8465,8208,1779,2375,6548,3619,7121,1214,6770,8657,9035,7292,3109,5218,130,3386,57,9663,3607,2228,2500,3834,1057,1881,5752,749,9640,7001,2553,4029,1014,7924,5870,552,3706,8471,9120,3208,332,373,8494,285,138,493,2969,7676,6441,4421,9727,484,5784,2743,7143,1024,275,7480,5940,283,9908,952,9958,8626,7462,8942,7558,3762,9702,4635,9509,74,2874,5665,3935,9991,4232,7293,1849,2369,4635,5632,9170,6580,7649,1389,1632,3817,1465,7075,826,232,759,430,2354,2274,92,5940,2643,4455,2022,9604,6225,604,966,960,8835,2230,5685,8691,6171,9210,5258,2013,2042,1128,7639,7188,6391,7864,2799,1224,819,8669,2351,7243,9366,6487,2923,1864,6541,5618,6435,9340,5866,2406,2880,551,8236,9022,2145,6410,4486,7499,6511,2057,270,4512,6945,9692,5470,5745,6496,6468,7808,3966,6956,2543,9144,8088,6337,7573,1058,9596,8939,8352,6963,9265,3361,7563,4868,6816,4066,1220,9198,4978,3267,5545,8562,447,3305,4463,9408,3072,9392,9648,7760,1830,7799,1705,719,9119,7984,7855,8030,6795,7897,4044,4655,3438,1395,9330,843,8990,9055,8613,159,8806,1984,6944,1562,5848,3256,598,2247,6853,8200,6098,2768,7897,2102,8803,445,8419,8825,2719,4154,5746,3688,1725,7547,8213,6236,5273,1003,4633,516,4988,3216,5521,6534,7475,5094,5080,7496,4012,9289,9891,8178,6165,4499,2681,2626,4543,3858,4097,361,7460,1119,9637,7117,9045,7795,321,8901,9602,9266,7509,6243,3497,1948,8381,157,9678,3587,1589,5404,8463,7086,9363,2180,1056,733,5602,76,3936,9817,7064,5520,6056,4840,6308,5756,5474,4278,6148,324,9238,8168,1866,7731,9705,8156,3104,3167,6038,6926,6735,7311,7177,4904,4783,7062,6658,363,9728,6806,6804,1937,7796,3848,3683,83,3643,2804,1390,6785,999,3680,7336,1621,4625,7433,5929,5421,5109,4131,3965,3254,1732,2110,537,9096,182,147,2888,7150,2017,5914,1095,6000,1301,2339,8613,1461,3417,1158,1300,4207,3057,2647,3904,4355,2585,417,9738,5199,5406,3898,6346,2432,1103,2249,951,4418,4405,9211,4712,38,5664,4968,7840,9686,7840,1917,8440,144,6532,1315,6775,6366,423,369,8456,1902,717,8275,9696,6120,3240,8782,7697,8607,8930,5006,5407,3627,9904,378,3861,9866,1976,1809,2953,5796,2284,7068,6205,4603,109,2385,9178,6898,9451,301,6372,1156,7204,1870,8867,2137,7330,8651,8291,6546,1261,3840,4845,9228,2150,8177,336,9413,9427,4749,6192,8821,6564,420,1098,4078,6986,3526,5235,3890,2268,2603,4542,6601,9996,9379,902,945,3607,3506,1822,8452,9951,6210,5983,3828,8782,3998,9628,1418,2405,2765,404,7211,8411,6142,5899,9979,4387,8941,8869,9694,945,3702,5271,7399,436,6277,469,7355,9407,6461,4977,884,2996,6489,7373,145,4786,4203,1167,8301,9126,3537,1894,3276,6631,7376,1010,2462,4863,8947,7033,5287,3370,403,8713,7493,9041,4168,1023,7756,187,5615,4143,1171,347,6203,348,5197,7023,41,354,7352,7659,7561,9002,682,7036,9535,9164,1711,7028,6493,7113,5240,6310,8029,3465,6668,7625,2638,957,4824,3264,997,572,3327,5801,2145,1523,7720,7261,1551,1818,9003,6631,3491,4781,492,5988,1839,9291,8525,250,74,6347,3785,8002,4549,6437,6800,3299,3208,8201,2789,9816,8945,9177,3533,7521,2370,4688,7005,5119,5399,5342,9391,7282,2718,5316,7697,1182,6664,5122,4243,102,7677,7952,2772,9385,7590,2342,514,3764,565,3554,1519,7133,2594,1254,3371,6708,9000,4700,6270,2059,3725,7666,8042,9470,1587,3340,7810,9064,554,5741,9025,8528,6456,359,4219,2247,8461,5919,4281,7817,1828,8538,8786,9454,9838,9438,7451,4663,5234,9024,9748,3502,7534,3599,1112,1576,5954,3780,234,9031,1830,7754,6406,7684,8283,8929,9288,6118,948,1900,3947,8756,8369,3402,7532,7205,8452,8529,6503,8636,1114,9283,4173,5058,3876,2363,7626,9323,2062,126,585,569,1823,5744,7305,4567,7361,3319,3650,1738,5409,1761,2302,8883,3515,3715,9501,8188,7804,5215,2076,6009,3188,5289,6300,6872,8114,6996,9126,1847,390,3367,2913,9815,2587,1737,7876,7457,2128,3250,5858,1314,3726,7602,7103,2969,1941,4746,9270,491,126,6168,6092,2227,302,7559,6691,61,8154,6719,3480,5552,3158,3982,3639,2555,7513,4050,1058,3465,779,7158,1753,9345,70,5828,1187,7375,7223,1922,1139,9731,3278,942,74,2115,2339,9789,8250,3932,9052,9407,6067,8394,4999,322,1461,300,3868,3548,2973,8237,5187,7509,7463,9952,7614,3690,104,5695,3417,7448,442,5407,6107,1907,5240,2042,3571,7723,5996,2821,6706,3882,2426,6781,6921,292,3106,7709,1388,2805,3725,9137,6188,7438,6872,2286,6328,6204,5192,3832,8543,3912,9601,2405,9173,7099,5116,7355,9232,646,6533,3837,3668,4985,8824,9077,668,3590,9673,493,342,6576,2665,2832,4050,723,7755,1843,7267,9862,908,1268,2609,3675,1444,3787,1488,2999,5061,937,5207,8782,2037,4536,674,9531,2588,5029,9216,2719,7606,3975,7930,1866,6714,7519,2737,7893,7700,5448,7287,8257,8763,5520,2317,140,6518,7319,8968,7667,8999,4159,880,1570,2768,9305,495,2532,4936,2739,8287,9943,5891,5654,981,2976,7529,4163,3152,6334,6930,3812,6341,3500,1503,4814,364,4752,8448,4017,998,1553,8527,7021,1599,4931,3250,2234,6376,2432,8019,7195,4151,7218,4473,6050,7553,1769,3329,9798,2946,344,3535,3866,3230,7991,2590,9614,7758,1363,5366,2225,6157,1846,4766,3298,2418,6947,7322,8097,4102,374,2917,848,9271,1354,4592,8177,2518,4482,5402,5606,7836,1403,7111,5559,3476,6050,9339,7910,7820,33,9770,2788,2264,8087,9211,7769,6404,5616,7104,362,8196,7209,3031,9681,5121,1577,3267,5789,4936,9943,4160,4142,6570,827,9094,3327,6622,830,2936,1814,6170,3950,4110,8974,572,3268,5942,5804,1588,809,4071,6480,2884,392,7129,411,6738,4214,3804,8158,8071,4237,4523,4590,8653,8884,9271,8789,1430,7553,7708,2720,9728,8566,3066,3914,7277,923,8362,5284,8387,7602,9602,4147,6340,9911,8849,346,3910,6813,1973,1410,6120,9876,5895,4424,4623,9112,2777,3663,8594,3480,6179,2991,362,5899,9108,2366,2032,9669,3877,846,2019,3758,7957,9430,6415,9110,7695,1177,259,9107,3078,8284,1562,1425,4008,8648,5725,7173,599,6912,202,1871,4723,1367,8808,6659,6286,315,9107,5057,5281,4706,6661,1903,6399,2196,3935,4164,4539,791,9752,1300,3604,4720,6811,2308,4753,6010,6030,5903,9343,775,896,5623,1409,1106,1958,2673,2176,6908,2346,3190,8129,9462,78,6889,3426,3299,1187,3319,4114,8095,3167,2788,4134,5556,6780,4976,2099,2547,2367,5292,7494,2827,2331,7135,6105,3533,4431,830,7147,6755,7938,5439,4316,6000,4019,196,5786,5065,7017,3063,7100,9549,3793,8345,4915,3329,2367,6296,8429,4356,779,3873,2547,9966,6141,5734,5611,231,7622,2974,1524,3646,6608,2996,6080,8951,8130,5491,1901,8137,9,5100,1423,3590,7728,5365,9163,8450,1496,6971,9639,4554,1427,6555,7005,2861,4118,1070,7330,3973,3098,9756,3698,9125,515,3741,7666,6918,2320,6074,3726,4854,7601,9960,7896,317,3229,9219,2799,1797,2284,130,2646,110,3498,8410,202,2583,950,3208,8128,3422,9023,5655,2191,1631,679,8190,6067,4826,567,4538,7509,1323,4843,5985,9592,9091,3938,4283,1516,9389,8097,4796,8742,9404,4201,6961,3238,7664,3682,473,9992,7062,3128,8852,7844,334,9863,412,9572,9701,1595,8629,9465,2851,6315,2714,6664,4564,4850,6412,154,1533,5173,1991,5451,2944,7176,270,8176,5593,5184,6738,7749,6672,9030,9971,283,800,8954,6574,7309,3473,5232,807,7819,3654,7232,6309,2466,8418,9085,7220,1555,5188,5457,645,1818,4740,3264,5588,9713,1789,7558,1914,8320,6966,943,3398,1456,3164,4064,5398,7080,538,9641,6284,3190,1194,7798,1472,1362,2702,3500,3759,4946,185,3945,6165,7510,9984,6502,4853,1078,4269,2669,6633,7166,2942,5130,8773,1528,4287,2676,5615,8704,3048,9051,3638,4914,9256,9423,9245,3033,9397,3948,7320,1471,7900,6305,551,7431,530,5488,9110,8694,2031,5675,7977,1836,7637,8944,2357,6859,2367,3302,4973,2017,823,503,5160,3625,7295,9267,2308,2846,2099,8949,8366,7802,6564,4253,5860,6108,836,4199,1533,1709,7005,619,2247,5490,8528,2964,4512,7140,9639,5074,6328,5109,6024,7368,1157,1322,1276,7731,6228,4514,8862,9580,9214,4517,5272,1626,7109,6942,9466,4178,765,8928,1533,7264,1592,9889,1637,6439,3692,6604,2096,2189,5919,9483,2790,1836,9976,1003,5625,7278,6338,9485,5520,6176,1903,1546,3414,1790,887,9481,4061,3527,334,3493,5787,8242,5848,948,4597,3185,6873,1094,8937,164,2081,7650,975,5597,1252,5195,6455,6445,8230,7599,9729,3904,4064,6897,1232,4832,9109,6287,3818,3659,5011,9362,2439,7094,5128,2613,2851,9395,7580,7904,9652,7499,6583,7153,267,5647,6256,3797,6822,8564,8046,757,5275,7369,7504,9489,3145,2266,8654,9832,1011,6826,9287,2241,5162,3097,6595,7613,1150,9023,4004,4778,2614,4411,4335,8683,6426,4592,3222,8849,1985,4226,9838,2756,7885,9304,3267,8587,191,444,6397,545,8263,5266,9264,6467,3869,9342,9447,4734,9336,9273,9413,2373,2514,4725,1628,2040,9735,6480,3835,9999,9549,7429,820,4172,806,6078,4946,8115,7099,5684,9604,7829,1478,4022,4500,4197,6005,1498,2717,8590,4575,7451,9244,3201,3355,8683,6792,4797,4892,7330,8361,9078,8687,2865,7931,1032,8384,9893,9511,216,9506,1979,8249,5326,9635,2000,8529,5889,9043,1739,3081,6384,1149,7172,7360,1294,5197,1256,5729,6338,1228,590,6021,349,4943,4064,5854,2072,5588,3013,3785,6379,4742,4937,5247,4346,6777,438,8672,1428,2543,5832,4298,8304,3510,4419,6028,4078,3465,5632,394,6386,3495,7994,9534,8131,9303,7292,5732,2212,1028,4670,4700,6501,7001,7016,980,818,9499,8032,3445,5049,3996,6418,297,7506,7412,2672,3159,5037,8482,7738,7045,8067,6795,6139,4169,5207,554,9092,5872,2493,8730,9977,2865,3165,8173,7283,1164,798,9105,8239,4709,1711,3385,4014,8031,1144,8191,5593,8624,5995,5917,6850,8151,332,7448,1498,8506,3938,1546,5041,5801,4462,2921,8264,754,7081,6771,5832,8174,4415,5197,2738,517,3220,5834,2645,67,9010,6269,5913,2149,878,3592,7032,6546,2897,3455,5126,3765,8272,6646,5596,7046,7989,5359,6961,4202,5678,712,4249,8226,3819,9489,5136,288,3523,8544,448,9017,518,4137,7321,4982,5359,3332,2835,2833,8374,2256,4903,6423,7629,7550,5055,3586,8470,1486,7441,9321,9691,8748,4668,339,7725,2196,8592,7072,9249,853,3983,6050,2601,3420,605,224,9676,6411,6141,9403,1838,9035,1733,2293,1496,7782,3820,395,1718,932,981,9820,3516,2710,7586,8199,5860,4615,2281,2262,2604,2090,5850,8102,1261,6709,4134,9877,636,9195,1937,7779,9445,9865,6333,9087,1252,6706,3150,2656,1697,799,8326,3688,8307,1984,8574,3454,6572,662,8349,5188,2822,9331,4344,6715,600,6288,9044,7736,2269,9517,9677,9799,2661,9515,4728,668,7926,7527,6954,8581,7289,197,753,5338,5668,4722,1825,9104,2882,7938,3558,1235,916,4915,7548,2565,7411,3485,3805,9062,8488,5886,7568,2725,2414,1924,4098,6127,9409,5704,4208,3331,5198,4974,816,3451,8711,9883,4508,1465,5608,9260,2738,7550,474,438,4964,3787,2020,794,5233,2073,4535,9074,8851,7144,7968,965,9001,9609,8773,6477,7637,9074,3274,2122,5121,7133,1224,848,9297,4467,2268,2209,9077,2146,3657,1066,1460,2767,8336,1078,7921,913,2833,554,6018,3557,3889,2491,1251,489,166,9843,4284,7597,4770,6982,9663,2324,3524,6898,8068,663,5124,4437,2942,8892,9168,2124,4411,7769,8714,4504,4421,4845,9763,1968,7244,1514,4776,4938,1852,5294,3315,9846,4565,8002,6840,6945,4229,433,8550,9140,7450,8824,4647,7392,7187,5996,9081,4068,8334,5556,3912,9989,9121,7058,4589,4827,6215,4515,4981,7440,2132,3369,4613,8545,2869,7946,2511,6846,3998,5084,8883,4351,4815,476,9441,4391,5822,8816,2842,1431,6562,817,541,5723,4139,4083,6459,385,653,4759,3563,8766,806,6832,1117,4845,8892,6291,117,4402,4948,6249,3282,4315,6398,1509,2314,1612,9913,5511,4096,1177,6380,1908,8087,4095,7755,5886,5629,5134,9918,9789,3997,5553,9672,7885,4583,7881,2256,1438,5165,2074,2309,9645,4124,4605,8757,8846,1056,9157,362,7855,8824,5058,8446,6321,3704,756,3989,119,1188,4481,9583,3851,1896,8217,3219,4152,8882,1491,3506,8617,9598,5011,4577,3065,1016,7963,1372,1594,6866,2152,1312,3924,3614,4909,1779,2677,5345,5086,524,7399,2974,8766,5026,9823,6644,3477,5655,6546,6335,4665,1600,2439,674,5923,5490,2977,2435,2446,4528,9946,8593,1276,467,7502,6295,4134,9887,2642,7572,9649,8790,6692,9517,897,1290,3172,3940,3936,4504,308,5043,3991,4338,3852,8099,8657,1848,3549,5918,3844,5659,4897,5109,2666,5059,9544,2373,8283,830,1983,3995,958,4059,2629,8061,5526,1427,3690,7191,5445,1716,8381,244,6969,6940,1685,8155,7316,7831,456,1819,4330,3463,1191,2337,8443,8960,4799,5955,7717,7328,5647,2865,3423,5501,9773,149,4782,445,7614,201,9055,5253,920,7528,2491,6153,2500,574,5333,3255,7369,2499,6431,300,390,5088,7287,3072,4253,3231,3922,1236,5858,9648,7056,3902,483,1202,1346,3088,6156,6481,6840,9618,301,1700,4743,9745,4866,37,9939,9165,4640,1688,8307,5278,7101,6264,2226,5000,3575,3076,9965,8559,3200,6384,92,4176,5935,183,8665,8823,7303,1143,212,8917,8365,5875,2008,285,2198,8469,1333,1380,6992,4002,3942,3312,1232,950,3174,5772,6651,8875,3354,1960,8217,8197,4731,4207,1361,8410,1957,4907,4747,8297,1617,5452,6149,2767,9317,7685,8926,5138,5240,1384,9258,7453,4715,570,6576,5050,8677,5134,9779,3946,5154,1257,4398,1977,9459,9650,8046,4334,2187,2035,3690,8426,3199,5965,9304,3066,8750,5143,961,1929,3483,1003,4168,5708,1400,1904,3121,3545,6851,80,7665,2251,2855,2062,8032,3025,9160,6475,4812,7178,1007,2956,9575,6753,3761,3230,1423,6401,9026,2556,5282,3356,4401,8351,6488,760,3257,2832,1869,6781,6858,6428,3820,1040,6350,4162,3803,3949,3227,4815,5461,4013,6424,1997,3322,4454,7016,6363,2070,8465,224,1480,893,3035,482,3901,595,2335,4541,8412,9659,1327,9394,2756,5393,6086,9541,2777,1627,1134,8889,432,4839,375,9300,6800,4515,416,654,876,7711,243,3282,8381,4462,3090,7237,8378,5568,8774,9959,814,4496,9306,3792,2679,9772,1516,9837,4982,8554,8992,8902,371,4650,5642,885,2089,2600,8339,4315,4439,691,2194,3503,1959,9511,6515,189,3844,9980,6213,4743,1564,71,4436,8229,5053,5874,8628,1791,9258,4726,9003,2866,8826,6258,1129,5918,392,8460,4226,6015,9665,495,6028,3953,8105,5942,3704,6385,2111,8490,5241,4843,4892,5698,3295,8402,188,4098,8202,5746,6102,3331,3147,9673,2544,9470,8777,5748,4768,6220,8652,8818,3988,7502,4345,543,7327,8880,2573,3842,3647,9123,4468,7798,733,3321,5834,4327,8119,1129,1025,4274,2394,8802,1431,1988,6417,9273,6345,2967,2413,4009,2421,7580,1711,2224,5718,3299,2153,6986,7880,260,1364,7662,9907,4909,9571,3905,8120,5828,6956,619,9486,8640,4764,6995,4412,7446,4160,83,2895,1609,8775,10,4791,8106,7064,5240,6155,8882,1472,7252,6086,5839,2984,3492,6550,2630,6260,2545,5723,4178,3350,4541,6501,9281,9035,1616,5022,3474,9224,2994,9327,1581,2974,9466,4043,5982,7507,7971,4524,7034,3938,2732,3984,4933,5341,2277,2080,2602,3531,9550,8425,2964,8317,5401,6541,5994,2111,2388,9488,2367,4459,9297,3472,6368,2169,1288,7609,2457,3040,5662,6780,1632,8434,5473,3498,4657,3253,468,9355,7753,5026,5071,9712,1583,2455,3203,8604,6705,4519,4515,878,1110,3209,3650,4833,6452,1774,4842,8033,986,8440,9224,4765,3649,5203,536,8046,4528,1042,385,98,5403,3228,7052,8890,6312,7623,3581,2368,1462,4470,545,9762,5704,1644,2095,9016,6753,8169,6069,8940,5696,8092,9907,7420,5107,910,6219,5480,9417,4509,8920,1210,7768,566,1837,7671,1467,2785,6220,8291,8609,3843,7140,315,3224,2129,9353,9743,1725,5403,8701,9023,257,1722,2554,359,3809,5602,1598,7832,3716,8103,303,9152,8586,7576,7913,6296,7254,6589,2413,7810,1470,7626,5479,6759,1434,7065,558,5932,534,5962,9710,5741,2521,9830,6138,4847,4111,2842,4000,3825,8811,5891,1884,1926,2897,9821,803,8722,1558,9718,9835,4768,2842,8557,6236,5497,257,6590,7838,7172,8011,587,7660,7176,8593,8119,3598,2742,1401,4042,8941,9911,7493,4739,4841,1898,5151,1353,4190,8144,4422,6827,4114,7013,5114,2768,8258,5414,7953,3815,8564,3657,5071,3126,4353,1363,8814,1013,1304,5069,3386,446,9387,997,7341,8412,5671,3458,2221,4166,7370,8002,7535,2495,751,967,1385,4738,7090,2353,4,4683,7522,972,5815,6285,8273,1228,6426,9733,4460,8109,894,4282,8197,7946,9193,3549,830,8916,3732,664,2201,169,5358,5833,1532,5718,5645,3777,1351,3336,333,6257,1578,8572,6934,9975,5906,7077,5898,649,7812,9220,2302,4518,702,1903,4508,5803,8701,2814,5213,7574,7198,8786,7692,991,839,1865,4745,3433,8487,3336,9192,4266,4496,2685,9654,4068,3412,5530,5679,4280,6459,6561,5631,3152,4005,1004,8798,2599,2325,9907,2820,1212,5257,7746,5265,2156,6409,221,5397,2637,4337,6885,9913,207,4228,4818,4718,1081,8386,3994,8648,9170,9064,8995,4194,1894,6711,4724,103,3484,750,7454,9331,6829,1438,7911,382,2559,6470,8835,1391,4449,1096,5695,9116,6697,560,2370,4952,4388,8773,3983,2983,7028,6023,4992,8003,2584,6062,9711,9130,7873,3576,3229,6871,1754,7415,3034,4357,9922,4437,6910,2294,6692,6671,744,6331,9001,7169,4236,9276,384,405,3664,9718,3615,130,768,7303,6501,696,2069,7945,5934,4730,4239,3784,3979,7994,7472,5524,6613,8099,2998,7168,6715,5408,1210,1498,9950,250,9095,6239,9735,4896,2639,3311,4347,426,5984,2034,4335,9862,9250,5584,4860,1448,638,6074,6195,4841,4713,2788,8158,2602,9716,6350,4629,8952,3011,9188,3119,4879,5380,2544,2926,7150,7038,424,6365,6669,2583,8640,7545,4403,8064,8651,4140,3428,6710,8013,7966,9222,1891,9453,32,9565,5887,6740,8411,94,465,4865,2514,8661,9530,6475,9321,5556,9281,6201,586,3758,5190,3377,5458,9761,6384,1241,1726,2013,6312,5503,6034,6623,2187,3487,840,7752,9270,295,8918,8450,651,2980,2083,5953,3557,8701,5969,3041,8594,9552,5406,2176,1932,805,7167,3278,7631,5006,395,3182,9992,7916,4394,6896,5878,2237,9537,4191,8983,6302,5281,2451,746,4833,9271,7374,2710,3325,9547,8900,2915,3418,7703,7085,7524,4284,974,6348,4241,1512,910,9164,6443,6969,5640,7149,8658,5389,3001,528,4299,1865,8168,4990,7343,207,5781,5288,3284,5239,9079,231,4867,8134,263,3554,2565,392,9916,3719,7811,9462,9459,4746,5288,2259,7547,9277,3089,5204,5994,6998,3541,4496,396,8272,3506,3417,6166,6905,1033,7704,2436,7931,4119,3235,1236,9982,5979,428,9429,5943,4116,4979,5514,5410,4688,7657,5756,2550,4467,4658,1159,5263,6468,8832,8524,6362,3897,2637,6322,2429,9360,4117,6231,2517,5098,568,8202,8325,819,7066,3068,6069,6456,3004,8696,2229,9913,5766,1364,9495,7163,5669,1535,4859,8865,721,5099,8167,6322,9154,734,9540,6624,7620,5584,9475,9955,1733,3109,5985,8443,4474,8504,6397,8816,3081,1547,3144,8556,183,8873,4827,7828,5902,925,3171,5588,4705,9047,5042,7294,2427,9354,2119,6097,3919,8744,5314,5861,2031,4939,3015,4383,9067,6898,1962,4171,9538,2007,1525,3322,529,9559,4835,3863,8228,5288,3650,8467,7070,3875,4992,7775,1577,4961,2378,219,7373,1849,6618,2789,9281,7065,1769,3508,5268,8260,8847,2072,7141,8437,1647,3312,5111,2337,6247,349,8087,6462,3962,8319,5225,9949,1234,6616,7076,2822,9857,8211,9966,3435,9239,5003,3956,8974,1406,2060,8130,9014,1615,7859,6895,8128,5487,5326,8737,6272,8869,6989,9006,9590,6489,6472,8157,1718,8776,1578,470,4447,7717,2402,8214,8271,8426,948,7987,3690,4550,7815,1439,5627,3883,6957,1599,8726,761,4514,6038,5399,2467,3135,3088,388,9486,9177,4876,4615,6232,7666,9236,9620,7473,8022,9768,2897,3360,9808,6793,4833,9793,9229,5709,5067,900,5125,6237,1574,2704,9756,9033,8083,2025,3488,488,7258,3740,2478,624,8746,2735,1914,9587,3214,7321,591,7028,4868,6710,3293,146,6794,4646,3843,1473,5192,9704,9324,893,949,9595,2432,4068,1523,5012,8607,5511,8144,699,8457,7706,9042,697,5718,1377,7402,8818,5822,9333,7240,860,7340,7667,4639,5273,2268,714,2611,48,781,2267,1264,7474,9194,8535,8967,6306,5883,6162,9611,8914,9598,2957,1437,5508,8777,413,8750,4201,3254,3983,5008,5275,5417,3474,4385,9413,1517,3377,8879,2857,7210,137,1068,1328,285,7251,1334,3562,4745,4538,6649,6782,9051,3954,3413,3373,9351,5317,3370,8248,3570,1878,9545,5642,1594,2053,1286,3851,5144,7515,9165,8606,4610,3693,606,4824,8865,3742,6768,679,7670,2231,1603,177,6880,6920,6095,6168,6180,9109,673,9897,9234,6625,9173,9058,1647,4761,3152,678,3678,7153,1848,6570,1464,7037,3364,8900,836,6465,9141,4848,1086,8577,7707,2623,3489,6313,5627,8974,5076,2796,4123,1411,5581,2431,8296,5404,7966,2775,6923,5979,1758,4058,9842,9402,456,5102,2197,9921,8764,4412,1187,133,2620,6501,5835,5968,3610,327,279,8626,7615,4712,2218,4076,5497,2146,2476,4525,5611,8229,1110,7184,1861,3232,1143,264,9425,4360,6517,5005,2619,1546,3646,2145,8957,6388,4737,5466,2298,1746,5087,2013,7065,4614,6567,1158,7341,5536,8894,3883,1909,1936,8710,9244,8785,541,2779,5860,4464,7375,3479,6228,4436,1689,2775,2509,5333,6969,484,7006,1807,1506,1918,9569,243,5369,2566,2305,4164,1265,3714,3175,4246,3021,8999,9149,3724,6197,2643,5017,6344,7355,1335,3677,5653,8647,2761,9663,9239,2430,680,8050,9656,4054,399,7777,4280,1660,4553,8098,1014,3881,1699,822,1966,3485,4618,4042,627,5954,9726,9617,8377,3471,7817,7231,6940,9956,1250,714,9479,1732,9295,1105,286,2088,1488,2926,2432,9934,99,7913,5504,2409,4979,4434,2618,6815,2229,7562,1938,5829,5635,2494,3860,3142,9772,6189,9802,6711,9620,6948,6052,6204,8961,6125,9990,5036,5819,487,7089,1190,248,8536,3307,2458,4589,7468,4238,7431,7486,2103,8073,3694,111,2215,2338,8664,5387,8899,9001,5832,6133,8949,9148,1432,2617,1454,5904,1813,5952,1996,2993,1450,1136,9897,5382,9284,6806,8703,239,242,5835,4911,83,5136,1466,4569,3163,3876,8199,6690,3631,670,746,4796,3405,2721,5007,2122,2545,3460,5929,534,7780,318,6722,7829,9168,2312,1535,7723,3215,8705,7933,6048,8451,7509,1946,8132,3569,3018,7162,7028,8324,1985,2872,9687,7648,6244,2672,3718,6600,8855,414,9884,409,7183,6902,6618,3695,8985,1290,8510,8291,327,1155,9862,29,2515,6345,7740,7003,9548,3308,7020,3967,465,4786,7230,6396,9196,1451,291,8818,1130,1551,6671,8062,4602,1122,6132,3521,5641,4584,3194,4596,2943,5066,5419,4830,6804,7688,8994,3303,663,1307,1748,6301,2958,3026,4898,8132,8363,4821,1748,1565,6968,1692,8190,756,4185,3278,3580,4062,9130,4667,1042,8592,2778,1675,3927,8474,5186,6894,7485,912,2952,127,4395,6149,596,618,6047,4562,6670,3503,1366,5938,3030,3077,7678,5847,4426,420,6816,496,5061,2276,5710,1082,4954,6124,1516,1755,831,6888,5966,1543,6831,6417,9486,2961,8391,9903,4877,2247,87,9172,918,8066,5375,9666,3362,6989,3005,6311,1951,458,3682,7288,1456,440,9805,3399,8120,132,3792,228,6154,2371,9931,8684,9441,1675,9623,6575,4785,1130,368,3729,2271,4718,1064,1558,891,4141,6624,3050,3004,8967,950,3829,6145,4623,2653,3934,1652,3780,1152,5937,7800,4507,7167,7267,9699,6655,9788,2721,9148,1411,5483,6342,7417,1169,8749,4356,2791,362,466,1870,6808,9274,6484,1418,8507,5317,9391,8814,6942,6481,3581,9334,6455,8666,2076,3879,679,2813,8016,4678,5922,1833,1754,6521,421,8177,3546,4990,4981,3676,2835,4645,4144,6680,9768,524,1538,4196,6040,8292,7920,3636,176,9266,9603,289,6314,3777,8695,843,5317,8381,5853,7112,8584,1701,9069,3533,249,4102,2185,531,1009,2568,7903,5217,6227,9962,9698,1842,5236,6091,3683,3416,9490,3751,3485,283,4309,3399,2585,4305,8429,3147,4932,7357,3540,2563,6735,3079,4401,9592,7144,998,7828,9495,9940,4888,7399,5415,4486,8725,3264,9934,8634,7631,6869,342,2486,1404,7874,1722,1565,6536,2441,2503,7799,3492,6938,3568,1911,2772,4535,8150,9453,6979,7709,3564,5643,3067,5914,720,5043,1770,834,8752,3146,1820,144,4984,5603,2261,5782,7867,7553,5240,7948,9811,761,780,8955,9202,4011,9391,7234,3852,7438,6461,2617,2467,3378,7151,373,8437,2796,5885,9439,6287,3180,2111,6119,3767,6618,7056,1839,212,8536,4941,7411,628,6365,2625,1793,4360,5171,1851,5370,9907,3011,5737,4765,3176,5629,6152,2755,8221,5964,1639,4500,2700,9627,7695,4889,5376,6689,4212,9926,2794,4731,373,1825,8496,5031,7762,7943,9160,5890,5797,7754,2207,8332,5915,5351,6903,6184,119,3347,2212,4502,1015,4563,5484,5017,822,7708,6426,2713,4557,5699,3466,7554,5653,3166,1500,5554,257,7238,4744,1883,2278,6428,6699,6676,3253,8178,270,5917,345,8830,3095,4856,428,6392,7827,391,2289,7121,2860,6190,15,7210,4757,385,214,316,1821,2890,7694,7266,2092,773,117,9937,7900,3283,7767,1912,9859,16,289,7530,6442,8874,2240,3791,531,2778,6643,1928,5441,7597,5596,4425,7258,1886,3335,2313,510,7106,1800,9207,6529,103,6452,1269,7595,6390,9840,2928,1488,2333,5953,3202,2061,6824,3321,1223,1938,1171,22,1611,9593,7655,4820,2687,4368,3194,8507,1983,7585,2919,6754,7992,2098,26,6015,6899,7913,3564,5895,3238,2754,9633,5264,3009,3823,7996,9361,739,8566,8741,6457,4229,7297,4356,2180,1733,8246,5905,5143,4501,3455,6148,6740,8421,3469,9137,7455,6609,6198,7514,8423,6640,765,4963,9404,6167,7210,2520,3761,359,7291,6242,5709,7781,4745,799,4682,8012,8341,2602,6408,2705,3905,8288,7011,488,7316,2981,956,8038,9328,2633,2952,9863,377,5493,473,9581,8762,623,4434,5986,6918,8634,3249,9087,1891,8123,4611,5896,1699,1194,5165,2604,2983,4423,980,9128,294,7293,8499,6850,7756,9003,3365,3767,6155,6536,476,9149,6481,9722,7887,6977,1746,530,1299,7695,1427,7261,7033,2432,2655,6134,4541,3443,545,9713,5195,7202,3611,9531,1585,389,7708,9220,364,7883,11,2111,3816,7572,1766,9513,1530,6213,7425,5707,4494,4614,6894,2870,8029,5768,566,7187,7941,5567,7620,4096,3305,3163,908,1810,2254,5817,617,4249,2818,93,8185,932,3281,9537,477,8198,9177,2514,3499,9215,2450,5339,3129,9404,3711,3801,2403,4131,4937,6502,3384,7348,8833,9515,8068,5762,6699,1119,2463,9072,2109,8737,6857,7128,3271,9388,5599,4568,976,3687,4821,2871,4840,6794,8644,138,7510,638,8245,424,8602,1107,223,2127,3162,7788,5760,1469,1207,5352,2263,9442,4822,4360,5634,4507,9865,4995,9357,2571,2133,2052,1829,8788,6227,5867,461,8453,5879,1699,4062,3395,280,889,6581,4962,500,3354,5985,7063,2701,8025,3794,500,8185,5386,7310,721,1089,7516,127,286,9904,2188,6326,8508,626,7871,5607,5242,929,7623,911,3944,2626,8889,4799,4333,4562,384,9948,6674,1735,5196,8719,3948,3518,8165,7396,5021,3457,6083,2360,9635,5074,453,6833,5310,5502,4067,5082,8871,2267,9252,2881,5788,2188,6054,9212,1281,4043,4152,8809,2842,6799,3102,2536,8764,9936,2137,5024,6518,5577,6867,7566,5699,9411,4027,9114,5976,1667,2237,8411,6331,2733,9651,5439,1326,4900,6157,2272,4802,7776,5311,8741,3358,4860,9133,8414,5837,147,9279,502,5132,7827,3381,5009,5101,7872,7483,2552,4367,398,4933,9830,2991,3217,1949,5078,1850,1459,6363,6659,9310,1462,1262,6889,2540,6048,2871,6601,6414,5507,4318,4192,7189,1678,9052,7419,531,1765,893,7438,8989,2249,3261,5894,4009,8910,9441,5390,201,7000,6560,3612,135,187,8283,2580,7321,9346,4796,6865,4390,1811,8734,6416,6681,4830,9276,7591,8158,8793,9583,9324,920,7813,3099,2559,1793,2802,8706,602,68,8677,7599,1801,8001,4335,1917,7618,1213,3779,8645,6697,7585,655,1957,4435,2956,5521,5602,8769,2344,4353,6344,7924,907,6847,2953,7072,9017,4555,6425,2510,4147,5288,437,2437,7385,8377,1597,3096,3457,9281,7235,3081,9216,2497,9568,2102,2488,6453,6054,203,1484,8407,1805,9842,9103,6259,3192,7977,790,5137,7846,1214,9830,1809,8780,4801,8959,5694,7902,5228,4614,7572,2783,4096,2312,9931,8770,994,6188,5750,1092,5400,9831,8665,5500,1814,3469,9336,3281,3554,4202,4699,7182,8307,5291,1738,2641,9340,972,240,5346,2469,2986,887,2819,2844,1616,5468,8344,8218,2934,9989,9220,4197,1758,1485,9567,6255,7377,659,663,4359,2770,692,7770,5066,963,249,6616,3797,4640,7387,3485,3414,564,7858,2015,6166,5506,2868,9848,2372,6054,5352,3443,3290,2445,4864,7846,2802,7473,7256,6883,6807,5156,5604,8695,1635,6515,5469,1376,1910,9755,2070,1888,4335,7243,6008,3895,974,2957,8401,5328,4982,195,7291,5408,9556,3710,1654,127,2801,4469,326,7551,8545,1443,7878,7593,8996,5192,7127,2927,2196,6719,3869,9433,1164,6297,9867,6532,7210,7160,5873,3484,8557,5246,4227,3647,2663,5217,3121,4563,4901,8421,3284,5115,7329,5562,82,5684,7245,8353,391,157,7256,6872,9075,2040,509,7309,2690,9844,4646,3744,575,795,3472,989,8207,3280,8282,7698,9596,5975,6702,7919,9447,1692,1464,1379,3829,8650,5685,2575,3922,6844,9408,3618,3738,9746,2479,8788,6720,8849,3887,2628,2923,8302,1375,9507,5660,4807,2440,7761,1820,2796,2548,1561,8679,2085,504,2604,1639,7750,8455,1047,2885,8251,7164,3402,7042,9642,8820,937,7058,5504,1021,8169,6455,2326,6875,5166,5758,1057,5893,5066,4064,3355,5872,8488,7887,5167,6353,5345,6870,4745,4081,1746,408,6770,9715,9109,3722,3135,3864,2579,3791,1147,5009,5616,3683,9924,913,6671,2347,5218,94,9375,2513,811,9963,6820,3994,2549,7407,9021,4768,5310,1711,480,3491,4860,9339,8284,8023,3918,3431,5420,7463,2246,1993,4406,7018,1678,5574,9092,370,3430,6728,4095,2766,3170,5880,5708,9352,5914,1332,365,3008,8574,2682,6473,3155,7699,5180,6383,6685,3068,3643,2280,5129,2379,4965,7359,5007,2748,2128,2381,5028,1361,5818,7595,2888,6572,2515,1769,1913,4169,1024,2338,7549,2959,8631,9172,7418,45,3380,5910,5683,5173,6651,2544,2953,2119,9824,3001,591,2386,7149,9737,9482,1981,2521,2762,6412,7498,5459,8514,6876,2446,9123,2307,7551,9375,5324,9439,3920,1547,1174,8232,8356,9847,9442,8952,5322,7499,9673,234,9267,681,8412,2482,9769,9814,6384,5608,2704,9289,4616,1065,3384,3952,5125,209,1156,2038,4923,7849,5797,7253,1399,2346,1504,7554,6276,9709,7616,4734,1017,6429,5967,3950,4077,2373,5100,3534,2827,5019,9267,7375,3617,4010,6790,9467,204,2022,7844,2474,8395,613,1814,9087,3540,4720,1797,655,7709,7558,1368,5876,8237,6188,1869,2958,7014,8898,5558,6443,3466,9681,5394,5676,4580,9850,4093,9238,8122,8400,7317,430,4045,6279,4384,9431,8338,2956,3535,3737,7188,752,2139,2236,6216,793,133,7686,5013,5969,8060,2218,1540,1731,1228,9869,5804,6911,1496,3129,8953,8456,2038,6019,2526,5147,2099,2460,796,1354,6292,7046,7946,2782,4981,7122,8989,6281,8380,5362,8239,3325,1922,7988,5166,956,597,6622,4705,4752,1547,5695,6457,9335,7049,8336,6827,1435,3448,7646,784,8671,4228,8735,3499,7676,4778,6332,9808,8067,7414,3721,4379,1345,2512,6197,3575,6252,1959,5375,2048,413,3326,2354,7758,1543,1098,9416,4601,7654,9541,2157,7112,1070,8491,4794,9703,9109,5419,4934,1115,5317,6237,9117,9835,6368,2125,210,5697,7897,4989,3907,5022,2742,2889,8618,972,9726,5782,1823,8442,1637,1467,853,6281,6647,6288,8246,5159,750,169,7308,4869,9170,6482,4330,4199,3540,3130,1929,9865,172,360,4703,2723,9059,3189,9732,3808,945,7642,3090,4856,8211,8231,9455,8064,100,4796,2340,6346,7875,585,1642,4105,785,2515,7639,6411,5134,6835,160,5326,5473,7757,9221,1766,7415,1338,9925,8956,4576,1633,8731,8373,3112,853,1538,9285,7576,7824,9432,6809,3917,857,6161,4264,1166,999,1602,6515,9548,2143,1870,4479,6509,4910,8841,1132,6220,1496,1361,4182,9656,9976,6310,1405,3940,6588,3395,6624,6008,6098,5159,3450,694,3817,7928,4607,849,6762,502,6056,2569,1160,381,8523,8092,4963,5136,8688,931,3566,9387,1511,8651,8205,4740,4378,7607,2170,191,9441,6931,3957,8183,6448,5444,6031,4749,3519,6930,677,4700,9805,6896,920,4669,4683,1622,5704,5849,4715,46,1723,1626,9281,9789,4731,7870,7676,9963,285,9677,7720,7264,7653,3912,1255,2325,6665,9783,4182,7102,4505,1703,5221,6050,9702,9861,8030,9275,9941,9049,4226,3340,1138,7313,9465,1886,9993,2154,8876,9238,2530,2249,488,7391,1922,3095,2901,1217,2349,4767,4793,9656,4250,8094,7240,2528,771,5320,822,8452,1286,5241,1180,5939,1396,7589,6942,9459,2279,6854,5718,1124,2459,9527,3105,258,7226,3240,3598,2062,4318,9868,1684,919,6893,2362,2293,50,3663,8851,6830,2820,9372,8967,5296,4077,5813,946,6386,3057,7452,4829,9019,7471,1172,4842,2581,3302,1132,9555,6188,8555,5832,9796,6223,7403,9205,4904,728,9130,1044,3254,1107,3283,3440,5129,8375,5569,7281,3214,8489,7547,4640,9315,8762,2895,2149,8078,7162,4949,5713,2707,9652,3331,2469,9625,9035,9464,5551,6042,4966,3388,1352,2684,3885,8190,8388,6410,4968,8517,4450,3462,9892,427,4511,3031,9165,7340,6730,8277,4163,2620,4275,6546,5911,7439,9768,4959,5362,3906,7241,7679,7842,320,9161,6430,488,39,398,1649,1656,8706,9223,776,5353,14,7202,297,2256,4772,6889,6346,9743,3211,5874,3435,7889,7322,2330,3879,2691,4186,925,1107,2925,3570,9450,3241,3336,6801,7498,7233,246,2686,2887,3773,9580,5978,1306,7274,8714,2207,4874,6699,1655,71,3038,7958,5510,4635,779,5661,3414,2778,2931,6618,6013,5846,6712,6551,3616,9607,1084,353,4411,1269,3012,5310,1551,3674,6938,2311,383,3799,5785,2490,7496,4284,1516,5983,9314,4461,3956,3887,1629,1592,5283,872,1224,5915,1774,3766,9513,106,7804,9573,3148,9771,5001,6654,2966,6263,1043,2169,9413,3886,3422,4439,8590,9770,2008,5369,9842,261,6978,3748,6412,6680,9316,4823,8173,5408,391,1351,6301,1705,6519,1906,5573,3313,5489,6308,3230,8727,6092,1582,9249,6230,487,9024,6183,3162,7744,6334,3323,9995,9822,5363,6397,4964,3828,7833,1964,1866,2385,9496,553,9082,2255,8780,764,3783,5,980,7659,8027,7348,5703,1176,2420,7390,8341,9257,1053,4973,396,1293,8495,8279,3965,9015,2171,8763,6612,8544,1795,4470,6120,2281,6542,5389,7482,5979,2785,6301,6346,6486,6914,3259,9697,4416,5287,9640,4795,3510,1484,9938,4955,2653,1437,8575,1477,5060,6672,6221,2819,7739,6226,9611,1416,4100,3255,2736,6375,3902,343,5138,2001,5570,3046,8494,7165,4368,8225,4099,4808,4858,7180,321,2118,5505,2777,3676,8279,3940,787,8720,870,3125,2951,885,8656,3533,3794,7967,6034,8926,4958,5620,7466,5725,954,1175,5978,4092,2348,1804,155,5014,8123,496,9482,1316,8462,7135,7345,9634,247,5826,6549,7012,7584,8077,7606,4207,3967,9190,5147,5922,5293,5535,6206,2943,3763,4127,3226,5533,4567,9613,9205,7025,7368,1104,3836,3451,7971,6038,4422,8531,4139,7528,736,1936,1318,4076,5782,9907,7455,6398,3921,1152,8548,9011,9967,7810,5627,4331,3025,9362,9099,2380,458,2417,6193,5412,2749,2809,500,4596,3458,8206,885,6453,2784,4498,9485,3389,8905,683,6018,8688,2720,5428,3931,5576,1007,7941,7066,4554,8192,9468,1858,8420,932,2397,7311,4391,4007,6783,5924,581,6079,5111,3282,4093,4425,8559,4516,2848,875,5988,3604,990,3507,4954,3851,1154,1293,9619,1307,1191,705,8150,892,8309,9460,6974,5827,6398,5145,7690,1905,2957,1555,3469,5358,8200,6294,5407,3066,4124,2987,4526,2645,3576,3013,4761,7993,194,8241,7170,773,5434,68,5982,3305,1863,5483,3897,5845,7204,9493,3589,2472,8617,2052,8847,9880,3414,4118,6948,6365,2084,6669,4173,8793,6260,4588,2679,5887,6168,8751,3049,173,8856,2299,3011,5104,2305,5239,2416,3334,2949,994,4427,9091,1877,1951,6695,9430,1756,6025,2693,1021,5916,1677,2577,1095,5087,1508,5125,8445,1471,6943,1654,2681,9414,1889,8692,7197,901,8445,6732,8571,3094,5626,8289,5077,4845,8218,9714,7419,4349,376,6635,4495,6811,9427,2963,1368,6883,577,7251,6612,1537,1655,7579,5434,808,4415,9413,5397,4557,1939,7451,4428,7483,2456,1339,8203,6132,9398,7659,2905,5753,3004,8833,8152,1670,5958,713,7986,3396,2075,5989,6640,8211,736,7125,7329,2686,1332,2980,267,2000,9236,159,1422,9870,5336,5549,9696,8773,4436,1933,6053,4013,2663,9273,6026,2371,5593,7345,9797,1583,7401,603,1244,7185,6795,8067,1532,3312,6888,4686,9676,2009,661,1292,1750,8209,2137,2449,121,8758,2725,5967,5086,5528,9271,8548,651,9697,9903,2000,5258,554,4857,4946,375,8990,4166,1055,2834,9213,6957,7806,5031,6507,3270,7372,7222,5797,2347,4313,8386,1462,6320,4507,5439,5828,4305,3916,7046,1878,8747,1675,5817,4663,1509,2953,5232,3337,3692,9181,2073,4168,4474,8608,1290,6647,1971,8853,2919,8497,2134,5074,1263,7847,7850,1731,284,6818,687,7183,6837,8211,8477,813,6811,8899,5782,2515,220,565,264,8673,6603,6958,4611,313,7994,8445,1905,5383,895,3998,5900,9978,8097,2533,7232,2808,6858,6750,2604,5550,5666,7249,6585,1325,846,8617,9000,2569,6855,8327,9313,8783,3363,8501,9106,8353,9913,4987,6646,3166,4188,7600,3052,1267,7407,9905,6115,4758,3861,8057,2138,7451,4440,8011,4138,3617,8340,2531,8920,4804,3322,9862,4060,1464,2874,2490,9974,7801,9729,4328,1386,8889,4593,9772,9534,9220,8234,4652,8118,6797,6752,1630,3999,3321,9023,5251,5970,3971,5228,3252,7505,7600,35,9433,3519,5950,5301,6955,7555,3255,3568,7214,836,4339,5376,5564,7057,2098,2749,9109,1006,2429,4396,1675,699,8391,4588,5617,6293,7191,9436,6493,2400,2374,82,8434,2236,563,4830,1181,2510,8935,4530,2592,2401,5870,6159,7676,2034,930,583,4177,5791,5535,8550,589,4029,9308,3645,5001,8370,4083,7414,9815,1579,9951,7198,2257,3487,3624,8597,1848,2844,9308,9834,3435,8756,1141,7217,7363,9285,2237,2005,2358,6358,7830,1913,2393,749,524,1551,2297,3650,4683,1896,3400,842,5284,8724,1288,2573,7056,8858,888,9646,3266,1305,5519,3230,1740,3582,2417,7888,6860,8380,4569,4904,3589,6960,4812,4250,2427,4477,8961,7099,6898,4546,5806,4769,615,6829,798,9297,3531,5268,118,8103,3203,154,8558,9370,5542,8394,4260,4146,9218,1183,5962,206,8160,8379,3291,675,8085,7093,6818,3617,6868,2456,8477,9585,3010,8479,5114,9908,1430,2279,5326,7452,4504,3923,1537,4280,5380,5155,4012,9441,6004,4176,1452,4513,8536,3860,1366,2006,7287,4801,5006,8973,7600,6622,1739,256,425,4992,4689,3309,1159,5413,4822,7684,946,3910,9621,5255,9102,1138,9477,1532,5129,2884,478,3581,1866,6284,5353,980,6374,621,1487,6293,3092,4388,5107,91,3789,6127,6030,8807,6604,2202,1686,9900,4202,4268,7963,8579,8663,8763,1827,1699,5442,1319,981,7237,5393,1048,8773,274,499,1211,5237,408,9340,3875,9725,4605,7862,375,8703,5062,4408,5490,3969,7562,3263,1225,5666,1693,106,4601,2652,8863,9033,4105,6629,3809,4325,1731,9601,8864,2381,4116,4749,3855,5092,1923,6223,8445,9826,2792,2753,3211,6551,6936,9603,4791,3550,8650,5908,3100,6343,1601,5218,4836,1848,3586,1067,9134,9591,1027,1503,3047,4002,8241,1530,2327,4841,4388,8789,7129,6490,9937,4742,291,7772,7314,9344,755,9006,6415,5802,6458,3281,7238,4140,7306,4863,6296,2881,588,188,9557,9682,9213,9839,6981,2875,5865,2274,493,4811,6805,1117,1453,5856,3167,9594,9236,1630,6639,7698,5544,6878,8571,493,8901,9941,2160,41,8606,3658,4534,3666,4919,2744,9400,2637,7033,464,1506,7753,555,4795,9753,3618,1636,9709,9465,5489,2621,6567,872,9880,5329,9327,2802,4752,8500,4564,6479,5748,3110,585,2639,7592,7294,2689,7835,1477,836,1957,3645,1132,4737,5865,4936,6872,1199,7764,6617,2264,8056,8322,4808,3933,1940,465,6234,4509,1053,7439,7366,6979,4940,9967,9170,8784,5465,1323,3431,7880,9208,5318,1361,9192,4897,9240,7356,1102,2512,5284,1537,5037,9242,3760,4090,6768,3917,2291,3517,6659,9508,498,1240,8722,8866,6223,6155,8368,9809,3265,17,9626,1809,4454,9407,9723,4616,6778,9612,7076,3192,9560,544,137,1819,5465,9984,8480,4740,8087,1526,6853,9049,7021,8222,6792,6474,8225,9842,143,1481,7714,5146,5930,8555,5955,4237,9573,7287,1530,6421,3695,2229,5127,1486,664,9478,5429,2098,2435,7073,3506,3310,1246,9724,6258,4688,2660,2248,4814,9378,9537,7647,239,1180,8715,5070,5289,4635,9351,4335,464,2115,8992,7400,9626,2478,5829,2803,1510,849,7953,7876,5466,8717,1390,1897,1525,5311,1811,1586,4452,9639,2098,1742,9287,4473,203,1596,348,8014,910,2277,4346,8074,7805,148,5793,1711,4234,3083,4021,1184,2144,4735,4664,2809,4349,5417,8038,4793,3402,5390,6409,9887,8430,7433,4411,7155,5129,4735,9002,1097,8623,1515,5527,8115,2082,4212,5706,4521,7898,2534,7679,523,6292,6166,9983,1968,1989,6498,9236,4671,181,1008,2154,5761,96,4288,277,3689,7547,1736,4317,8856,7392,9549,6603,390,817,5227,3022,1372,5388,5679,1909,7069,9314,7903,9874,6279,852,8887,459,7188,7398,3079,1714,8932,7725,4768,3134,1905,3466,962,5553,1362,1258,1198,6561,8416,1079,1613,3526,7445,3094,8810,5860,4305,1002,9996,1396,2306,9060,3826,4598,2642,5319,1429,6943,7360,3107,4358,7565,447,2306,9083,3161,9738,3923,678,8285,5963,3355,3386,2714,6592,9020,2441,7646,9975,3275,8563,7251,6240,4156,3589,1696,9293,1852,7561,9093,4197,7808,7891,3795,7885,8486,8051,642,6913,6887,4176,7985,6700,2014,4610,9057,4721,8280,7744,1444,1409,643,3542,4207,5704,416,6753,7765,401,4605,9491,4232,5716,7532,2265,3607,9324,6141,8990,1730,2115,5899,709,6671,1406,2037,9178,2674,7907,6531,3957,4048,2565,7497,9956,5071,6593,9609,1196,1105,9361,324,8914,1481,17,2208,2243,6148,1619,1292,9764,5092,7554,4667,1218,7817,566,9830,2384,5125,137,1052,4571,4342,9394,6644,1761,9883,1754,945,4405,160,1309,9167,5487,8949,5529,7871,8790,305,9558,6302,5869,8879,6112,1844,7626,9962,3412,6557,6405,6948,7618,9430,2568,5849,6136,8876,1070,5447,6933,1920,9828,4442,4105,5274,9509,4434,8568,9892,5167,7225,7693,5242,2150,5402,1773,4495,8272,6451,2644,4016,955,4800,5117,7244,3948,3833,9975,264,4997,2189,8133,3021,8875,1102,682,921,7251,7964,9053,750,3060,7657,5341,412,1775,5578,1938,2502,8789,4143,466,3998,3612,7347,7559,3446,1690,7554,9193,5716,5143,5705,5168,3627,5139,6487,6640,3169,716,6885,4812,8993,9878,5392,5109,7521,5400,2524,9229,6379,3311,6114,8141,4727,8039,6293,7044,1566,8031,8015,4302,3263,9293,8930,2728,4685,4758,8320,1144,1588,3428,6032,3980,9237,9422,4019,4780,9191,7113,4332,3385,9989,3345,5641,6733,1267,6229,594,4715,6546,5285,6548,7156,6907,455,114,6073,9441,6499,748,6596,1217,2086,4666,5977,5848,215,4600,2282,8955,1742,966,669,236,2286,2549,9558,9216,990,8406,3412,8828,168,3323,5154,1077,6849,8073,7194,1438,287,2021,7425,1991,7452,9160,905,9563,3331,8079,4379,8233,8061,4411,5351,9215,9102,4138,3886,4652,6698,798,5963,8093,468,2411,2315,5695,2449,5384,4732,5231,5239,6054,1581,2801,6868,1201,1272,9471,398,4104,1557,5037,590,7449,3777,2320,2151,5465,1434,3110,8374,833,3586,6033,230,814,1279,8358,369,6749,9534,738,6713,3994,3640,3226,3701,3407,8521,3166,6324,5761,4842,9108,3450,3994,6801,5782,1160,832,9987,5001,4888,2378,9119,6783,9212,7357,963,6024,6587,3112,9101,2758,4790,7637,593,4558,2097,7845,4375,8573,8545,974,6439,8699,6680,9381,3284,3377,6423,4925,3232,1852,6442,8144,4262,3430,2481,6352,8062,2453,8582,7094,9838,9803,5515,9807,278,1543,6788,6185,9749,6365,8660,2249,8783,2531,8092,2108,9213,9302,9384,8008,4091,5448,6436,6035,5349,4058,6581,6784,170,7733,9148,429,4842,4732,3539,7719,2766,7176,2203,2353,6221,9910,923,8628,8455,2904,8878,98,4585,5509,223,839,4764,685,8508,1909,4638,7633,6833,7318,3703,9116,5934,4856,7806,6966,3558,1370,8883,709,8447,149,9721,7713,2851,6432,2081,4573,1081,7207,2939,5404,951,8813,4984,1892,1664,3765,1488,1946,8614,8529,4961,7768,9127,9260,3634,6985,1477,8112,2750,5413,1506,2824,5000,8224,9417,5738,7666,9442,5699,8396,6934,2524,1961,400,369,7822,512,6659,5547,9554,6938,9594,3573,86,4172,4827,8110,145,400,6500,5,8991,2583,5819,1749,1441,3889,4787,5563,9573,5614,8017,1698,7645,2583,6341,931,4711,3622,7393,9997,6794,9935,100,6080,8916,1867,5242,1380,8374,1289,8613,7064,2010,905,991,4259,3721,3704,7142,6958,9323,2268,7551,5022,8411,9505,5001,9826,6906,1182,2885,5464,6243,2498,927,1483,8767,1128,8648,7427,281,9704,639,2491,2316,8361,5286,5234,4017,135,8116,8693,9891,1816,114,7066,9020,2709,3048,82,4890,2351,9979,3703,374,1583,5517,9573,6146,7160,4045,2153,6627,1021,7334,1620,5682,2460,7682,2733,1265,9931,143,1158,7923,9469,5767,7213,6482,9439,2637,2615,2340,637,1221,2381,4331,3814,9136,4997,3878,6690,6127,7222,5740,9199,7763,2356,2919,6415,6938,2592,9312,9982,3376,3133,4499,9312,7840,8171,5447,5807,2419,6821,5599,8177,9198,1070,6626,2993,3796,6899,1792,1869,4352,7191,3848,417,3283,6615,561,9005,2345,329,4808,3279,4939,1963,6048,8262,4008,2224,232,5561,4893,9321,2051,125,9186,5314,8297,2918,2422,5918,8,1314,5857,3001,9074,5885,6540,3593,3328,7046,6462,9073,5408,3725,3433,624,1026,3273,7519,2481,5776,3313,1928,49,4110,7545,9977,396,2729,5398,8584,4201,2886,3335,584,8239,7054,1558,9462,6669,6412,4859,2298,6136,6987,8170,3612,298,7420,2377,9156,3712,2493,9754,5843,6206,7051,9403,8778,4666,3977,7800,5951,6751,8577,1147,3266,4279,3293,7807,8085,1669,4194,106,73,5427,2883,2356,6655,1328,3153,3291,2284,8938,1203,3650,8026,6743,8961,7667,3003,2021,162,1131,17,7741,6935,5771,1632,6150,6983,2265,7580,6772,7122,5913,9227,7791,2590,7084,843,2299,6602,8776,6088,9574,7219,4498,2308,427,7072,7714,3560,124,187,527,242,8743,8005,1599,848,5046,9304,1362,1896,3381,360,7397,4551,848,4703,406,2601,198,4299,4149,4899,3070,599,149,9639,9172,5020,7347,9060,8879,4369,496,5053,9321,9071,516,3769,8993,4972,801,4725,5855,2197,959,2520,8917,8064,9506,9137,3934,5352,5659,2150,889,8787,5216,1434,4013,5817,9805,7841,7844,8519,5115,7492,3516,3984,2671,6954,9478,7287,4013,6741,1683,8270,9321,8834,703,4118,8113,5101,5415,242,1696,2225,5944,1245,6187,7800,1032,1304,4740,1096,399,7844,2971,4058,5408,6543,2396,9654,5835,8655,3058,6838,8474,3553,4849,497,3048,7821,6432,2264,9126,8313,7112,1976,192,7596,8523,1355,6248,3288,4725,7229,8189,8736,3483,7947,3261,6573,3122,5980,523,6936,9920,6018,2028,7615,6364,6200,3627,3011,763,2772,2435,8482,5838,6711,1509,8400,9239,9346,3456,6116,5967,6945,9481,5630,6263,9872,6315,5601,3500,8454,1503,6,8965,1990,4337,5904,1055,7448,4858,6154,7815,8666,7528,9091,6759,4996,4266,373,2069,9127,1578,278,2795,2026,6732,6758,5759,5812,4127,5880,5860,7489,9734,7358,5975,1882,9994,4349,4740,4529,9453,9369,2572,9890,5494,9161,6324,5780,6135,5246,7940,63,3013,8943,5919,2447,1021,9157,871,4345,1782,7870,2183,6078,8448,6560,164,9396,5382,4125,7228,9594,9075,5964,7863,2621,8964,350,2701,5768,4325,4222,1605,3870,4913,4953,2328,4155,2564,4071,9026,1230,2703,841,8384,5129,5053,9481,8071,7083,3145,5398,4669,5229,2964,7891,4325,4572,457,341,2318,1313,1829,2424,688,5493,2542,8766,4688,2787,1954,6083,5819,8173,9400,9089,3387,2116,7164,2646,2375,5813,447,9611,1048,3731,8343,8870,7841,2296,3802,7490,4829,7544,9028,1829,9724,6571,6365,5215,2085,5872,2468,3619,9621,2069,8564,6980,5556,8463,1895,6530,9544,5076,6960,8344,2644,1756,6449,8363,2311,6767,6237,4066,9991,1906,9404,551,116,9558,4175,8817,9789,7721,5929,2100,3903,7621,375,1850,4008,2177,1177,8975,6280,7159,8873,6088,1003,2170,6980,1824,6122,1615,6463,7637,3649,5632,9247,5528,1005,7390,3737,9883,6328,94,6070,210,2011,4520,4039,3634,916,9368,5433,42,9627,4069,1233,8813,5964,4430,6947,9979,6897,868,4271,3096,3745,4170,9789,8082,7377,5099,9186,8644,8439,5735,5134,1778,2701,4666,5782,804,2734,5374,6007,4174,1094,6816,1153,512,9117,7480,4925,2323,9301,4992,8484,5546,3832,2770,2909,2921,853,4062,6709,9262,2831,5721,4329,8334,8460,8125,4149,6625,3620,4980,9988,8132,2271,1282,5945,7969,598,319,2805,3283,8103,7540,2138,6704,6689,6054,3713,7465,120,3063,2988,6416,7518,2284,9957,5080,1089,8637,7938,7096,8654,4833,3354,7881,9940,6289,5444,104,2924,6760,2439,4689,22,4410,136,4227,9917,9615,9436,1404,5261,1212,7144,970,9696,3413,2144,6098,3758,7958,8016,3543,4060,2730,1058,4797,5943,8115,9954,3806,3108,9034,4550,4444,1530,5395,9063,1366,764,2023,2496,4514,395,2014,3422,2390,2358,8716,4261,588,8809,510,7256,4268,1402,1398,1079,4062,4528,6851,9109,6689,5734,620,8135,7199,9629,4837,4543,2473,1170,9005,4347,3204,9785,135,8514,6109,9036,2033,9865,9032,796,5941,7838,4552,7132,6518,1621,6253,8151,8007,436,3233,804,6192,6144,6615,7383,59,1983,486,1658,6571,4180,5219,4793,1411,9356,8188,2271,2836,7248,7079,7876,8585,5242,7143,6431,1666,592,3351,1434,4074,4523,9123,173,72,1465,8347,3873,2295,6196,1060,2949,8544,1984,8784,2274,1947,7324,3359,479,2823,4513,8996,9584,9085,3514,6873,5096,8361,2691,2501,8793,3353,3576,3080,593,8304,1437,6263,8147,9196,6573,8287,4195,6005,5695,9465,4284,4671,8825,539,7142,115,6713,7196,4396,7073,708,7796,1146,9916,4248,6179,1255,9428,2202,7117,90,8709,8394,5362,9306,940,2906,9634,8577,8642,9751,1299,5127,3421,926,6261,9725,1317,4528,6237,2400,143,2241,4861,7308,4975,5779,6418,7346,3766,2333,6682,6950,3137,8755,7674,6296,3260,7244,3710,3379,8980,2760,4649,5654,7301,4348,3893,8788,6320,9691,4385,5925,3747,7988,5703,1871,2507,8538,3479,1194,1712,284,407,1661,9250,1661,1858,9616,3068,1926,5487,1455,8871,676,6310,7025,7456,8757,2546,3185,1505,9539,8789,1101,1229,3631,8097,4513,170,5900,5324,6480,5336,1230,5078,6081,4815,2110,6449,5409,4833,3322,5734,7980,5684,9791,6528,1396,2091,2985,7741,1344,8398,9287,2112,3679,2998,1539,8682,3547,2724,452,9736,1145,8505,7946,1395,5349,5890,7409,624,3163,1106,8267,1718,5697,8937,5346,2603,4345,5825,7637,1619,9761,4157,2700,6688,5579,2574,5976,5523,3473,6444,3016,627,3831,801,874,7524,2518,5947,2221,5551,8447,5224,933,4884,8425,8522,5718,5761,975,5756,9086,2225,2101,2938,5438,3239,4422,8217,5704,1633,6637,6047,589,2836,7150,9208,8666,7661,687,8296,778,6032,796,5856,2086,8096,4405,7072,1330,5959,2265,6140,1664,7969,4129,7848,9854,5814,2914,3085,8158,8017,2354,1943,4427,8193,8768,7167,2203,6038,7102,5980,399,6491,2086,6461,2889,8131,353,6382,8425,9994,9745,3155,6400,7100,2058,1476,3104,2420,5903,9273,8019,7858,1637,1293,1758,2974,3443,3718,6067,5103,6006,6356,3753,4019,5482,5900,1075,5977,5221,4871,2683,1177,1532,3348,8929,5068,6301,1595,1563,4325,5293,6253,3429,5741,5169,3573,9024,1283,557,1815,7240,2688,3815,6983,8992,4308,833,4626,5472,2507,4605,1766,2779,3697,3084,91,5893,6511,3056,7351,9224,7266,2943,1517,6142,541,1179,6946,171,5953,7137,2114,6700,4814,8001,3794,4098,5715,9233,201,9764,862,5040,1026,6665,1246,7478,2216,2369,5174,4298,2106,1565,7005,3509,5241,4333,64,8274,6450,3181,6056,939,527,7168,4340,914,5835,9231,9866,949,8241,153,7192,3725,7982,7456,1760,2313,4881,4242,8678,5584,3990,1627,2544,9467,9553,8964,3911,3945,5868,6914,983,8540,3047,2923,4348,8710,168,8657,3696,4542,7853,9949,5695,289,6135,4137,5470,9901,8977,3156,5516,1877,9693,5350,1324,1631,9804,2155,9852,5786,2781,4094,8653,7810,5159,5440,6524,655,6879,3874,5424,4684,4568,7677,7786,2417,4638,5611,641,288,4569,9526,9681,9433,5693,3857,2049,9470,4886,6960,4599,2384,5918,5408,2349,6373,9843,5807,7849,2656,3361,6002,8398,9331,2858,5102,5090,7878,5768,4625,9443,4329,342,635,4431,9740,2099,5517,2665,7960,3715,8170,8449,3713,3110,296,5106,3847,9574,3038,9076,1864,9095,8111,3039,5388,2605,7733,3238,3813,7178,5517,7960,9099,2263,1197,3703,8141,5513,2457,7223,1328,2930,6376,543,1568,5994,6245,4268,6119,8835,999,9141,4166,3368,4739,5470,6265,8069,3964,3220,699,4706,7198,1306,500,437,64,5499,5568,8222,7028,7826,7995,5851,9641,8130,7855,7915,7832,8980,5534,4972,4658,4130,5319,3584,2538,7384,2116,977,2760,4132,4950,4691,1121,8295,8729,6965,1407,4837,2768,5680,7941,8864,9623,4047,8733,9340,6609,8241,788,1566,293,2638,6762,2764,5108,9368,2126,6382,4467,5570,9148,878,5486,3779,7913,9993,4905,3312,4305,1670,6117,8758,7438,9548,4286,2314,9340,8874,8816,4765,4864,2887,5690,7543,5790,2191,3369,7788,9112,7104,5615,7684,5617,7549,3089,9285,1289,3474,6012,5067,8207,3603,7090,2311,585,9007,6615,8595,1624,1892,1766,3420,5880,9582,1607,1885,7395,5626,5223,5054,9134,8851,7034,8922,1585,698,3638,8187,9569,4227,5941,5265,8222,1248,5429,8424,7464,2855,2128,5251,7327,2645,2269,9246,6088,1537,1131,384,1744,7247,4933,2211,7075,3671,3929,8920,152,3640,400,9991,6991,3600,3189,5083,7518,4087,9043,4756,5882,4215,8861,686,9878,7169,8755,3099,444,6857,4891,6698,3536,3616,9566,7110,2666,7648,3398,6043,3616,6690,5250,7714,3538,6674,9478,2731,7303,1985,5301,4579,5038,7092,9774,2772,872,2275,3936,6597,1007,3963,2377,6843,9531,6164,7816,641,7420,6664,4474,7021,9152,8502,5770,6379,7331,4014,8693,8977,2966,2407,7627,3445,2209,1922,1246,4431,5191,4822,6779,5246,8860,5010,2982,3236,9605,1458,7315,7532,4998,7110,1353,3439,1908,914,4896,1988,4602,9275,2757,2173,4145,622,8970,3398,9193,4249,1206,9534,8811,8598,8659,7447,7092,2957,7944,2370,5755,4538,4159,6447,560,6088,99,8061,7937,8640,5468,9421,7272,263,4330,1108,7659,8796,4938,7536,8576,7210,9948,2529,5335,8449,5752,9229,8144,1538,2529,9048,970,3351,2111,6264,4297,5831,9844,6000,2734,2827,8527,7572,1360,879,3352,6369,3648,9503,6362,9779,3233,2136,3455,4180,5098,6675,9044,6038,6776,678,5688,6808,2457,3374,9000,42,2857,1720,7001,9827,327,9384,1326,85,1569,9072,6413,4978,149,9429,126,4339,5954,5935,7203,8164,2257,5574,1437,2788,4902,805,9173,4621,6927,9895,4944,9447,8397,7037,73,8701,4704,5045,3573,2506,2002,7923,1502,1066,897,4966,8571,6903,1673,1617,8302,7506,902,7779,2086,8395,4081,4996,4877,7078,8141,9327,5877,8358,2302,9443,7024,5140,6256,2240,6142,6966,193,2062,6946,3904,9261,7380,4507,3902,1500,7335,8089,3167,4780,3871,2317,703,1970,4251,5898,4881,793,1563,5475,1161,3012,9720,2885,1902,1025,6029,8438,1373,3096,9024,4486,5384,6517,5529,6871,8950,5568,1743,8241,2213,6061,9246,3532,3210,3427,5229,604,1913,6232,1807,7680,1580,2424,9966,8765,6879,5900,1880,7887,8537,3768,862,2355,404,3984,1413,8001,4314,891,1022,7958,6590,8901,1227,452,7808,479,5354,3520,9498,3707,4959,9912,5630,4460,7903,6191,7882,4618,470,5505,8700,6913,7306,9025,3316,1599,4140,9790,8011,4118,6465,8309,3310,2926,6163,1895,5195,1111,4702,3986,7999,8118,2457,2183,5715,9684,1350,2745,8214,5045,1542,8643,5408,7658,1933,9437,6967,4682,984,9152,7975,9903,612,3841,9762,5666,5914,3310,7468,7866,5847,5324,3059,3335,5850,4624,9281,8576,9565,1272,4907,6715,9195,2651,5738,5044,1165,4437,7493,5905,544,3318,5197,7005,5191,8717,5572,9595,5851,9692,9649,6320,971,3745,722,6815,6176,775,4473,3843,6580,1934,6617,7480,1220,6591,1912,2527,9315,7979,560,2540,5153,9287,942,9110,8248,5916,6516,6980,8696,9391,5080,369,81,9774,1495,8029,6576,6531,762,9929,5867,2208,888,3428,4656,849,2581,6658,3615,2177,4204,2530,308,7505,6313,2120,2950,630,1271,1159,5882,8939,9110,868,7698,660,151,7625,1536,3845,1973,6919,9427,164,5855,7443,5046,77,8302,4092,9146,190,3207,3902,4207,4204,2698,8389,4090,4044,6732,687,9236,102,5366,234,2499,1180,1797,4911,7095,5644,6459,53,1825,3574,3162,227,8836,8062,9605,1085,4244,5097,6197,7301,4129,8728,7387,1549,7209,2595,2108,3172,1862,84,362,4626,3025,6577,9226,7719,1215,1336,1472,2910,1395,6547,6996,322,3194,9139,6588,2976,346,834,5869,1678,627,6595,456,8123,5323,8718,2393,4383,3336,7563,1672,9944,322,8109,9627,3423,3356,4507,5619,4574,2854,8607,4117,5294,4551,7940,8510,4267,4054,269,2617,7051,2810,7147,9733,5703,3037,5082,6691,3357,3644,7959,2198,1312,8583,8475,3817,6523,723,7786,6994,6522,3171,2466,7716,2851,5475,6490,656,676,413,6529,2233,1630,9342,8376,2939,155,4985,2577,158,9322,1197,21,3629,9456,8387,336,362,4256,6914,1669,9089,12,209,3359,8703,2427,5773,7055,1859,3178,4075,4772,8736,3484,6444,2339,9791,1428,1885,6814,257,3393,8426,9795,9457,4986,1452,2496,8357,8780,7875,9663,5230,9150,9489,2527,3327,8380,4010,2905,4362,3257,2183,5513,770,4393,7981,8536,1382,9104,4662,2585,7259,5728,3131,4854,3564,5470,695,638,5275,1436,2999,2804,8970,2978,3962,3244,604,374,4064,6835,5435,9200,5714,6230,7959,9284,9513,5312,7249,9243,8318,7289,223,1477,4466,4935,6977,9852,5702,8622,9574,8887,6803,8938,5823,3252,5175,2369,9798,1836,3794,5045,4003,3068,8663,3266,5355,8173,493,5222,1281,132,2249,5002,575,1338,4680,2981,1176,2208,2368,9974,8348,1432,3813,9363,1589,8994,7007,3436,1207,5792,9816,1983,2425,8403,7184,5837,1205,3935,5305,5675,9328,2296,9543,7037,2649,368,7374,7674,7557,2039,5503,5383,8702,3818,1436,977,5670,885,7625,5545,4255,7262,8099,2436,7349,1362,334,3709,7832,8793,9299,2251,9520,322,8472,1026,8619,9279,6009,6407,3786,7431,565,2911,3888,4379,192,4929,8768,6358,5168,9768,3987,7902,1107,2668,6330,1064,6497,4065,7059,8935,2295,8919,4802,7345,4051,404,8870,3225,4134,6692,8948,8252,5875,5364,4714,8014,9534,2022,6888,3852,8965,825,5271,7641,3718,8962,8418,9651,5111,7748,8123,5365,5122,8327,9429,8588,9231,9946,581,3893,3198,1940,9569,6194,5693,3604,2087,3251,747,1096,1771,1112,5554,8639,6262,7737,2952,18,6653,9714,6367,4319,5293,739,7665,1952,4116,6786,5626,7036,77,6685,9754,6021,9112,7619,3345,7055,5169,4671,5705,71,4528,3675,4854,7373,4118,6085,9912,1187,6968,827,7427,1275,2334,3048,1781,2748,2953,119,7873,1444,459,6614,2097,2849,4034,2912,5711,9396,3870,6935,8990,9696,4142,4,8165,1341,8568,3270,5096,7051,931,5066,4934,9075,8958,4850,2887,7837,9735,1624,8588,4087,4936,1162,5308,8581,7870,5039,1949,2934,8231,7396,7455,775,1700,6546,7003,7648,2300,1761,3660,8772,1433,2828,7010,6089,8435,3542,1683,1756,3439,1244,9197,9817,6659,647,4432,9157,536,9332,6537,3267,7772,8511,4420,5227,6445,8441,4947,6978,2608,7205,2904,9032,7312,881,5484,3150,1364,9229,1322,7658,3192,74,1503,3547,6664,47,6432,1975,3422,1770,3472,6934,2876,785,8138,839,4374,1011,854,4457,8534,6567,9571,7471,9524,2803,4646,982,343,687,2070,789,5578,9713,3831,4340,6744,9601,5628,6089,1721,4621,5437,6662,1577,3803,4271,5908,1377,1833,1009,6687,5847,6715,4066,1074,3226,7198,9755,7832,7991,1886,7075,3750,214,1299,3604,6644,8980,1513,8196,460,2304,9753,8107,3406,2714,5074,9742,6898,1385,8474,3590,2503,6838,3669,2691,2468,7380,7535,1475,2489,2313,2080,39,3440,4501,7542,5917,2763,8550,9849,56,8034,9756,9146,6784,7463,2116,7805,7396,3655,9073,7796,2559,8793,8429,7246,7052,5978,7267,865,4839,2313,6586,4487,560,8718,9726,7239,7759,8628,3317,410,6724,3954,8229,6415,3572,5837,9820,9114,7183,261,7024,2280,45,6236,4017,6348,7396,9418,3016,4688,952,2246,825,9451,5315,5408,8844,9850,2925,7544,321,5236,9683,1755,3820,190,6834,8325,6477,4563,8105,5852,226,2882,4162,1462,6819,1047,1209,5992,2140,8711,8770,2155,797,1130,5201,7810,6982,9814,5421,6285,9037,1762,2878,376,7956,5248,9988,1140,2766,3601,2796,5992,9905,5428,394,6437,9467,663,6524,4321,1446,1535,4612,4371,9784,4674,2517,9906,6430,4608,7115,36,9465,9339,2290,2499,4301,3171,4138,6426,9385,3756,1590,2724,6325,9701,330,8793,4064,1510,103,4433,1357,6198,2989,3264,810,5290,3075,7641,5459,9504,5108,7890,2594,3735,2160,8889,5347,5258,1808,7031,9822,1659,3635,1170,6161,8588,6012,6650,5912,7318,842,830,2816,3612,6792,9892,1054,9272,7922,9682,5139,1443,9112,425,2418,335,4492,3992,59,9419,2613,8290,1731,5831,4209,3559,649,4479,4432,4437,4744,6006,885,4748,5235,8386,3529,5071,9675,4275,7456,5628,775,9720,3254,800,915,8794,6744,2368,6659,2144,8922,6457,6142,446,5253,2404,5171,8092,823,3721,2585,8690,8230,6267,24,4670,4376,9471,5535,8696,1406,7285,6054,6657,6253,5183,7059,4578,2895,4927,5708,7135,7828,2637,2599,5389,834,4897,409,6057,3120,8117,2759,165,252,2563,284,7507,3298,2836,3309,6671,1662,46,8955,7871,2861,9650,3035,6157,8737,1167,9807,4603,1435,9720,2142,8972,5574,2161,7467,8961,3013,4114,5832,7941,8000,6333,9907,6618,2085,7217,3527,7179,8760,3924,4328,5959,4525,6046,7522,8946,8627,9245,8854,9247,8641,5437,9651,2283,1813,9419,159,6971,146,7020,857,4494,9762,3386,1547,6728,412,8889,9183,5408,1058,3389,2097,4264,7130,7177,9177,9855,9641,9012,1555,5868,2863,9407,158,2766,8936,8006,607,1143,5491,3072,5839,3287,3366,1139,6234,8121,8172,1536,3265,4127,6833,5526,1420,4973,4035,5345,3042,2985,8762,2598,8796,5109,5955,4285,3535,7110,9657,5947,9087,6892,4911,2029,8762,7326,1206,7,4229,9942,4809,9749,1138,3679,4277,4597,2677,6904,672,9416,6539,6,1720,6034,1128,398,7359,3936,3514,7888,4547,4697,438,318,5512,9275,2779,9035,9897,3432,7514,2533,3116,5702,1442,7867,1851,1071,3603,7919,5244,3944,3847,7508,8366,1994,1024,927,4113,7460,8104,4446,5516,7664,3179,753,5623,3762,1727,9332,7668,2295,4048,4479,6706,5181,3371,4621,7487,8103,8677,9833,1883,2298,4847,1305,7465,7414,8768,2988,3558,3062,5223,1370,4120,9395,3335,3314,2621,1468,2400,3072,6635,8291,8043,7125,2755,6177,1592,3662,2170,5771,2970,7900,8796,2493,9037,4204,4659,3076,3941,489,6793,1160,3998,7030,1390,5212,2080,6108,1995,9843,2246,7312,1,6883,1246,2438,5250,5030,655,2303,1688,5746,8521,8713,9394,5391,7460,1629,6035,8596,708,9688,7104,2847,3844,4083,5810,3805,2168,2856,7312,5426,5846,7809,1790,4916,7211,2175,5225,3476,2317,4179,2722,4588,7493,2070,2258,2209,9849,2250,3791,9935,8400,5845,7968,5984,1495,2547,4419,3591,3761,1969,3687,7779,8453,4129,6243,2795,9142,1905,4797,607,7528,869,9641,932,6949,4160,9681,1495,1730,4906,9810,631,8020,4103,9783,5439,3456,8629,8633,6379,6399,5252,6332,37,3466,2798,4398,9052,6269,3275,2697,7374,8967,8526,9646,3904,8851,5855,1128,373,7416,2748,9960,5500,1043,7266,940,1607,3286,847,9054,3806,8815,7881,345,5979,9830,4544,9126,6550,1215,8151,7907,6505,3808,9330,3786,8632,8055,4077,9040,3702,1213,61,6712,3274,5663,8691,6859,7829,5281,8136,1660,567,3534,5578,4949,500,1615,3732,6693,2603,6068,8919,1848,1315,7864,7695,2575,5199,6120,5686,9240,9210,2085,6062,3024,7402,3942,7590,987,8070,7506,398,7650,7446,1817,7128,7933,2254,347,5042,770,9840,3932,3591,680,6145,9998,9428,4553,6583,6964,3670,2353,3312,2826,3689,4930,5111,5130,714,2784,6571,9414,373,7095,9401,2951,4901,8207,4629,2256,2636,1193,451,1883,5023,4962,6767,2295,2913,6455,1768,4038,5491,6725,209,618,4529,1713,2851,7242,8884,9329,3344,2626,845,1528,1344,6704,9197,9518,7227,1782,1589,8638,5875,4160,3083,888,7361,8747,4550,3585,7491,3916,572,2937,1589,1919,8352,738,7578,2248,9875,1173,6838,4507,3315,3055,8761,3311,1877,6642,6985,7752,3173,502,2659,781,174,3889,391,3632,8595,6909,5952,5023,7681,8489,6664,9563,5737,7068,794,3626,6274,2784,6268,6255,648,2456,6493,3097,1966,1715,771,3539,6293,8679,4075,7417,4216,9430,1047,6743,6691,6962,6099,46,6674,7517,9314,5560,2737,817,5083,8932,8026,5440,6317,3393,2638,7196,5394,9164,3573,177,8715,5319,7812,3935,7045,5469,8111,1408,2109,2399,4602,5753,2995,528,6471,1128,8076,182,3311,1276,5339,5218,7435,5938,8511,9381,9765,5900,9639,4128,1108,4179,6037,8235,1133,4834,2911,4227,3554,2970,7979,2042,1058,5876,2872,7768,9008,7849,8699,304,4003,2936,2856,253,6768,8481,5246,9844,3226,1153,1624,5172,6536,7919,7190,7916,3849,4530,993,7727,4393,9667,624,9334,9242,1454,4442,2099,2139,2860,2426,4442,6515,4999,2191,5866,4249,8248,1806,905,5548,3525,3417,5958,7089,916,6890,1260,1307,432,268,5646,4090,5498,1614,1572,8228,357,4889,9922,5953,4829,6289,8786,9438,3844,4121,3113,2348,434,982,6912,8556,1197,1917,7137,5738,2560,6357,2094,5989,9338,3714,1187,6135,1305,7814,7445,8462,3522,2652,6522,3900,7224,2114,122,6423,3738,8302,1132,748,3706,2613,1519,7948,1141,1826,1553,9205,9849,9927,714,5783,7242,3127,1907,6878,664,9198,4094,3384,7443,2017,2401,9832,45,3239,9950,539,1579,7654,6764,4813,3422,8593,9391,2230,5743,1127,4522,314,3408,907,5348,7676,1934,9300,9783,5438,5830,2171,9243,4775,6074,2381,7289,8185,1082,7094,8512,3913,136,5784,7565,4911,14,3487,4399,6569,9395,6385,9395,2209,1664,5917,8114,579,9259,2020,6079,6530,2893,57,9487,6616,9472,6706,234,7593,7213,5006,7938,7217,4331,7490,291,7310,8321,4116,8939,6850,4534,2765,5408,1146,4765,396,1052,2096,1515,9829,6001,4805,2254,6827,9953,6619,4086,946,4374,4112,2617,6569,481,1157,4860,2468,3462,5521,1641,8998,4450,764,6242,2092,8722,5102,1212,9744,393,2153,1193,1858,4027,9758,5859,2562,8124,2703,6937,5062,7980,247,5930,5776,4114,838,5281,7413,3779,7678,8820,1079,4078,6691,3838,2359,6285,3566,5402,2353,725,4669,5945,3414,1969,1859,9650,4992,5725,7563,285,4350,3032,8478,8234,5617,8722,2964,7732,1682,1663,3327,5433,4209,2730,9110,8694,1526,3677,2647,9083,1620,6609,908,8771,1500,5828,8009,3007,723,611,7966,7766,572,4748,5527,4035,1474,6416,4515,6777,5921,3487,9351,2001,8360,6006,2813,1237,7974,9270,976,575,1612,36,2323,7142,7450,4448,8677,7059,8114,7181,9444,4367,3777,9730,2568,6507,5025,9152,9826,299,2360,6103,9620,6084,4292,1427,4843,9994,17,1828,8962,8952,87,7459,8316,779,4917,1487,9851,9457,1427,8182,3387,2085,1428,2729,6206,9238,8351,4281,9709,5071,8143,9251,702,2830,180,5421,155,3515,1256,1586,6080,261,7283,6872,9937,9521,6968,2110,7302,998,6373,5494,2306,9136,1008,8899,6680,78,9463,9863,6886,893,8385,7763,7198,5430,8893,4623,281,2402,1507,5529,3716,786,2830,2906,9388,7885,586,1752,6360,4995,1764,7997,9889,5418,7195,1872,5543,8648,9592,5635,1788,4356,788,4774,9116,4301,872,8437,7949,259,6044,7814,1200,2481,5917,1100,3807,4174,2489,507,852,4442,8026,7154,1980,3639,6646,8437,3522,4666,9771,2432,686,5491,4359,1588,6716,183,7516,352,7242,1611,3394,5022,8757,6108,3900,6715,3539,3787,331,4653,8757,1082,8347,2138,1580,8757,3870,9569,1129,8142,9775,9424,6263,7213,8219,9829,9208,5258,9787,8873,9883,9157,6106,8874,4064,9859,289,5968,8953,2596,6957,9916,9806,2479,400,7360,8194,8210,518,3036,7163,8633,4052,8131,6799,6768,6476,390,1172,3328,3463,3297,8992,3753,8451,8217,8118,8285,2775,1970,7289,4321,8168,7349,6325,8146,6813,5500,2142,7498,3714,7970,9343,2279,5462,9960,234,1762,5326,7827,5957,7999,6119,9949,4064,7841,1667,8323,5808,547,2965,5140,1109,1637,8975,8892,3895,2977,6576,8169,4815,5291,1413,4945,8170,371,9839,8262,7805,9340,8839,3015,3943,7596,402,8641,5026,1248,3515,6192,7226,9663,3168,1520,1679,9632,5935,6025,2008,3701,2617,7838,6980,9503,6674,1124,8005,8052,827,3027,1251,5540,4204,3398,9069,4017,2548,296,5076,1059,5573,9281,555,7553,4124,1609,7559,6233,5004,7762,7484,8966,6077,2998,5343,9729,8555,5967,6728,1054,2189,1267,8961,6909,3843,3626,8500,616,9899,7574,1903,5488,7728,9821,157,6714,1752,6483,2750,902,5399,540,5110,8447,9368,8243,3428,8027,3891,177,909,299,298,6564,6107,3812,6939,4656,6040,4953,9720,4870,1380,8716,892,6045,1526,1261,6280,6718,7506,1417,3355,2807,6550,2409,5410,8941,563,9902,3737,7732,8111,8316,5681,8503,8386,2739,288,4032,8251,4428,2312,1615,928,4231,2644,2509,8681,8454,2143,7471,329,5765,8234,4599,153,9051,5652,7325,2060,9035,1404,5177,506,7008,2802,565,6114,110,6870,6221,7476,3060,1357,1685,6278,9176,3983,8021,7397,1837,3781,785,3689,6888,1718,4132,2243,3871,4718,5502,1034,2341,2429,8402,3810,7351,9919,4976,6533,2071,5363,9003,2518,1668,2074,8130,3064,304,9856,5165,7047,2376,2949,1004,9512,7498,8605,8598,3081,8063,3118,6832,8129,8208,8993,1094,3192,8235,5212,1385,8275,6368,3422,6379,2770,6532,9629,8237,5579,449,1973,4147,7008,2338,9489,9460,9603,9491,4267,7201,8851,5325,2076,9189,3134,5657,6950,8702,8458,5453,3524,2134,8789,2317,7111,4905,9722,3668,6966,5584,4971,8534,335,7815,8684,6177,5644,6765,9519,6782,3741,2533,9870,1925,3044,9925,8262,3340,3679,5207,5856,8219,4028,8050,5588,3764,8881,2449,6024,8466,590,5368,6344,7834,1483,6801,4920,1290,2099,3468,2476,4638,1404,6494,7140,4966,7964,1168,7927,9678,3627,7321,536,4172,1467,51,2006,1384,4765,9981,4122,5839,2525,7152,8949,6635,1616,5508,1678,8596,9741,9533,2928,6721,5035,5692,9403,2527,2919,9004,1089,5999,3927,6472,3281,6129,566,3743,1470,9096,3005,753,7436,2555,548,5659,6153,2927,3864,2189,8091,9274,8102,7043,3937,7764,8794,5326,2806,4989,4915,8685,6256,1169,8629,4735,3879,351,2623,76,2880,3725,5132,8309,858,3433,2171,6056,8320,2261,4962,8430,6642,1628,6127,9240,7833,8650,9853,5819,9188,6678,3539,6720,861,7658,6369,1267,2342,7224,9907,6860,8186,20,265,5261,3560,2113,422,8075,2896,9443,6725,2831,3667,5639,5611,2399,4890,7407,5136,907,6284,7235,1478,809,6861,5967,6955,7780,6069,6984,6481,1953,6254,7822,9791,6819,8657,4898,2361,7811,328,7667,3870,6804,371,9546,8686,2547,3034,6243,4657,4601,2365,405,7757,8183,1084,6307,7934,6121,6042,9287,5058,3966,7111,5048,1457,1770,7399,3048,5757,2128,3396,5215,1748,3261,6989,9562,4035,1548,6402,164,74,1369,60,3199,986,7378,9916,8101,1896,6835,1783,3654,8815,9002,9850,3057,2863,4707,5351,4106,7620,9772,3284,2572,4007,2295,1780,2304,2432,4324,3581,6031,9530,5579,7266,689,5860,6127,8887,6056,4301,3502,8192,465,6314,5233,6761,8629,4519,8719,1866,1851,7430,8957,6884,2353,4081,9947,4776,4105,1900,4649,4097,2850,6172,2774,5490,6754,7881,5843,5598,9906,9072,3398,3731,1013,7323,7538,6135,8862,8473,9861,7990,9046,4914,4263,8845,3288,9641,4658,1994,9758,6588,4187,2091,4503,65,2241,8164,8048,1964,3065,5031,758,3474,7176,8023,7897,3225,3528,5731,8273,7991,3502,4438,1687,6512,891,3374,7468,5410,3509,6282,669,7407,1521,6836,7974,7617,3478,6954,2689,3456,7205,8437,8771,8294,1075,7685,1904,5101,4870,1320,8235,7496,8205,4275,1856,6938,7276,4079,8833,2562,1961,5094,2281,8499,4412,912,9666,8042,8162,2786,7481,3397,1317,5720,8198,385,5166,8918,2989,4156,3634,3123,6340,2826,6311,9674,6451,4165,116,3441,8168,4226,2459,9651,3108,6763,5233,9150,5725,755,7920,1270,2505,3718,7469,7397,4688,6229,6524,8185,4678,2822,6040,9955,2361,4472,2162,7274,771,8704,5553,348,3597,974,641,4333,4051,9198,4244,4869,9483,5348,8529,5376,5089,5617,4003,5052,597,4041,6933,1271,1962,4360,5876,222,4055,2609,7923,8832,9836,2634,651,3363,2405,5649,5631,3159,2812,9462,5650,8793,6405,8686,3735,9965,4921,943,4819,9285,360,16,5645,4925,1085,3422,4141,7581,6489,2858,2932,1035,3018,8281,2459,1478,1149,7988,4076,5665,7865,2046,4664,4080,5984,535,9866,923,4513,4796,7494,8909,2949,8020,2217,4534,5105,270,4343,9621,9079,4769,683,6987,5218,554,4023,5869,5934,7077,5907,8064,4957,2695,4281,7557,2813,6867,8769,1750,6924,7419,7797,8949,4575,4897,4629,1964,7708,3784,8932,8142,5773,3078,4546,9934,1630,4597,8781,570,5216,3488,9088,6432,3866,6251,1012,5040,1265,2219,4826,6605,2137,7323,7160,7911,2509,5214,2803,7677,3460,2298,85,8641,775,5682,3724,8026,1565,8866,2448,3788,5939,5251,6505,7192,5245,1835,3970,6976,2520,8677,826,9069,4145,8563,348,7609,6768,2511,2662,4610,2803,4383,4888,9022,88,4776,4096,5929,5794,8891,5633,106,335,295,9965,8948,3378,6631,3177,3256,4665,8613,2774,1643,7751,3415,5655,5672,9216,8117,2881,4367,3167,4091,8976,3860,7219,4764,3542,4820,2266,7718,1718,5999,888,5174,1798,8273,4482,7598,509,9290,2265,5037,7698,2807,354,3633,3588,3731,1751,6034,6389,8898,122,5777,5414,8731,917,8309,229,4683,5013,7454,9414,2392,3082,3854,2361,8346,5475,8827,4976,8720,526,3702,419,361,2012,7367,3633,4927,2967,7378,4254,9108,1887,1679,3164,4010,152,9218,6592,9987,8073,3138,1976,4798,5990,7245,2169,4762,526,6737,4853,4186,180,9096,3192,5242,253,4590,948,3414,8028,7243,5460,647,335,9717,3330,1889,1544,7824,7056,9095,6370,6762,2932,4171,8756,2400,461,379,8522,1889,680,1596,2549,5429,1496,3114,4460,1993,288,1494,9171,3237,7874,7199,4881,3508,3006,1270,7814,2985,2374,9177,3416,6108,5865,6544,3118,9979,4874,8178,5952,8344,3589,7240,4046,9963,7026,1842,4948,9738,6842,1037,743,4485,4085,6450,5047,5130,9111,6697,5099,7246,9472,8407,715,7720,8855,1115,7063,4653,5596,6212,1774,6077,9871,3266,9425,1360,8672,9671,831,2211,8910,9735,4514,772,4449,8894,5865,6410,7085,924,529,4821,2860,6544,2210,2183,5235,2365,6703,8889,4991,2726,5279,9737,5949,1711,4929,299,2494,6975,2351,2082,4347,5503,6308,5214,2206,8134,8650,6365,2193,8253,903,7058,2857,7862,5101,8855,7059,3684,942,1047,1400,1437,5343,1509,5099,6035,9367,3560,309,5683,9817,3948,9216,9416,4903,2068,6469,5530,4402,7148,5175,2431,444,6657,3387,1653,9764,5965,547,4777,4860,8708,7557,4054,7096,525,7101,4949,2548,5583,6063,7708,6793,3316,1126,1356,2693,6250,3133,8391,5101,2152,4406,3464,2779,9159,7986,3293,330,3492,6447,2463,9730,746,1604,5045,8997,3377,2939,2248,5549,8471,507,5685,4403,9788,4615,2719,3462,7198,8433,3040,3752,3411,6978,7302,7834,8205,8095,7450,2272,8901,2837,2109,5426,2238,931,4465,4517,9163,6157,5292,7975,8809,4686,9630,521,281,1232,6383,7112,1079,2401,697,7788,8185,6582,6632,6012,5685,2604,7674,7516,434,8161,7703,6486,5495,4333,7534,4800,672,2505,3287,1452,4537,4997,9701,9678,6284,6874,2666,8938,6858,5435,9058,5753,7252,1932,8370,8724,1749,7658,4455,699,5700,2608,514,3703,5705,5259,2138,2790,4710,9572,3211,75,1485,3992,8992,6001,7210,9821,3641,5587,7761,8500,9728,5487,4270,8559,5201,8481,7283,2379,8448,5539,366,3037,8272,715,3382,5267,4753,5417,4227,6361,8605,3057,5179,4918,6249,8374,8517,5780,6457,4384,6141,1609,755,7943,172,9395,9083,1666,1193,1172,1866,9455,2210,8279,6674,140,4678,6148,2007,7233,3516,9632,3305,2570,6755,1507,8524,9734,5106,433,5043,9292,6664,587,5745,561,897,99,6722,9556,6280,4155,2614,2203,2683,928,1993,5712,6040,7694,5385,3031,6301,5455,6961,8639,3275,7602,7133,1139,1973,9564,858,3854,4167,6779,9974,1657,1298,7768,2332,8683,4696,8520,4412,5014,9138,6115,138,1801,4566,8674,4926,3208,6126,4350,946,3169,5823,5392,6813,4038,3404,5207,7269,5649,7753,2745,5706,9224,1126,6952,2696,540,9503,469,704,5225,8872,5467,7593,857,6600,2320,4354,704,1213,8591,1899,1203,2835,5078,8899,2680,5209,3203,9304,2708,3007,2816,6657,3634,8663,4878,5267,3440,4418,2493,3527,1122,5302,6022,4892,2905,2411,527,8283,8420,9491,8847,1160,5675,8202,1561,3731,7021,9782,3780,2039,2101,9133,8231,4134,362,3550,1606,3468,694,1253,3200,9839,3661,9836,1393,787,6490,9276,7572,2662,3845,2851,3181,2243,1157,8697,1250,167,3949,9794,4274,8835,7437,6079,9297,9419,6431,6972,5677,9977,6279,7973,4659,6416,3235,8694,3990,6804,5211,9742,5445,3993,1005,1632,6081,9262,9798,5479,8744,5913,254,4389,5584,7984,3072,2282,5643,6718,1086,415,2304,3800,4473,6713,2219,5153,4400,7718,1427,1973,3588,8040,5103,5669,2539,5615,7816,6297,9651,4359,903,5914,6237,9929,1473,1330,9876,3581,6499,3685,5994,483,2019,1102,950,7950,4942,5656,565,5844,8617,8858,2983,4072,7958,4574,6965,5059,1553,8925,6851,351,1805,6750,1689,543,5139,4024,1461,495,6415,4980,2623,3164,206,6903,779,5579,8234,5663,1923,5512,8424,5919,4684,1345,703,1449,7748,9372,9053,8150,7869,9066,8193,5193,4137,2227,2360,989,4860,2531,9044,9408,8499,712,3799,9107,9069,6165,4453,9549,63,1191,6717,3635,8874,9759,264,5473,6517,4123,8804,7645,1952,5455,6773,9388,1288,9793,786,2830,2516,2545,4410,2575,8158,4269,1600,4170,3199,539,2621,9097,2736,1365,2231,2815,3815,1277,5303,3899,2986,6327,8423,3828,3261,1580,8353,8442,9851,7139,8951,219,3899,2793,7456,7265,6275,2071,2951,4372,228,6690,4717,4481,3216,6911,9424,7467,4772,9368,8459,2135,1384,233,5365,2313,2033,9981,8298,1350,8271,8927,8128,6697,6309,5373,6040,7349,3830,8113,1859,5500,8060,6063,7471,2889,3942,5368,2395,5881,8572,9156,4047,606,6207,7104,6453,5610,57,5202,6390,7030,4399,8636,3747,6467,8619,478,5715,4499,2115,7915,3633,3146,9495,3273,2996,1330,7606,6472,1120,4568,5847,9220,8993,2704,4478,2326,9927,2778,5593,2083,2300,2170,4099,7535,674,9865,9132,166,1895,6648,308,243,8659,3834,7845,5181,9925,4685,9116,2294,5629,1215,3495,1814,9670,8372,9479,7811,5083,3112,4721,5924,8427,1574,6372,421,7903,4352,4992,3237,4484,5318,5703,4806,7622,6081,2683,7372,3596,5800,6426,3327,2327,8311,3609,8896,5554,7995,7369,8472,9592,2965,2097,423,4570,8130,568,683,5687,6619,8641,1201,2653,8486,3956,6136,7982,8261,5991,9819,3045,4711,5371,9322,6464,6515,2487,1413,6663,7278,8649,7106,3185,5677,4470,1937,5001,7464,3712,4213,5308,9385,2081,8453,3238,4754,237,5066,6706,779,5301,1,4267,522,7705,1091,7483,6125,3838,5905,7021,4582,8840,1438,5190,4036,8071,3680,6679,8088,5624,1019,477,2973,3871,1122,438,8941,3296,1004,6829,2491,2669,9079,1486,3090,1990,7735,4500,1763,3443,5599,5236,8229,9512,6860,3034,580,8120,236,7764,2244,5914,7206,9053,8536,1839,8720,912,4520,8456,7837,9816,683,9081,1065,1564,1540,4037,2334,5501,1763,7204,8173,4006,8573,3321,3921,9562,7193,424,1980,8767,8763,7116,531,3007,324,8752,8151,1547,9261,5908,1573,7642,5081,5486,3179,697,8457,2952,3908,9269,5993,6466,7422,721,5557,4328,5834,7688,9857,9708,999,5068,9917,8824,6194,661,9301,1470,7493,9293,2976,6452,116,9448,2086,4999,6609,2216,4081,5244,5741,1088,4318,5269,5999,1874,1657,325,3847,4848,2811,4201,4867,279,2276,4861,8616,2729,9175,9628,889,3603,8548,189,8903,5286,8138,2058,6452,3057,6750,7222,4516,1056,9409,5323,6986,3311,5511,9937,3475,1381,5374,5347,4639,5481,4753,7487,6594,7908,5510,1991,6293,1524,8382,6455,5287,3341,5109,8126,767,9488,6038,8741,9159,1032,4157,4641,9168,5701,9533,4786,1746,9939,2753,3381,4893,3779,1318,5502,1200,8188,5089,2270,2785,7065,6621,4086,5683,5717,4820,5566,3988,3771,4645,7427,9218,7707,3186,9483,7030,7566,8233,4343,2875,7065,5218,5617,9960,8994,8398,2475,4580,9120,1919,2210,9533,6479,3681,7110,2402,8189,7862,4141,3092,4292,4737,7001,9919,6567,6364,2872,8907,3481,4944,4060,5361,6339,2856,5430,6822,5398,6868,6930,6506,7544,9250,2215,6406,9868,9620,289,1187,3170,3161,8682,5096,1120,4418,2694,9932,2526,399,8267,2226,1128,6903,9921,45,1022,7615,8567,6973,3713,2803,3139,5670,4411,3882,3924,5859,4001,2154,9420,4205,9456,2246,7143,1633,9979,9313,8712,7923,4942,475,7671,88,3343,9648,3854,490,6510,1259,5821,8550,6824,8546,5218,3508,1629,2762,2666,3892,1671,9555,3623,756,4955,8618,6035,2050,6608,4328,8423,796,7957,5675,3292,4173,5950,2990,4981,2977,5483,2579,3044,2559,558,6911,9535,6865,2415,8599,8126,8544,1488,6669,6171,5793,9249,4348,2807,2002,4205,1435,4112,2161,9805,5355,20,433,6206,334,6763,9544,2714,291,3012,8071,3685,3399,383,2214,562,7915,5970,8500,726,4111,6067,9835,2541,4152,1406,5055,3824,7986,7677,9222,3960,5145,6794,8384,7006,6833,614,9046,3150,8063,8619,1303,9884,5748,9306,5284,8933,844,5583,7003,4195,7962,177,5465,5944,3881,9319,5820,113,8887,5313,3523,8621,1811,5714,8336,5739,1491,3887,8916,2179,824,9993,1506,9989,959,1800,9834,5215,9702,4223,2713,7691,4237,9104,3088,1919,14,9900,5201,7118,8960,3285,9720,7855,6188,8043,9809,7100,2619,4950,435,2968,8720,3388,1,3731,899,7854,3501,1479,5511,4833,4502,7599,1478,3432,4763,452,4569,3502,3902,1460,3552,9072,5391,74,6630,1972,2494,9552,4094,5014,9131,5600,6925,9578,4964,4717,3705,8565,4753,9832,8660,9405,701,8798,9442,9379,8186,3958,73,1251,5305,7350,973,506,290,3946,6053,6743,1010,3353,2120,8414,2303,8247,2124,8003,1207,1072,5519,2701,5174,7259,9203,3972,1875,2588,4051,8605,1788,4896,4241,2168,6135,8474,4226,938,5018,9867,1129,699,5036,3318,2876,1430,2805,5118,710,1468,7807,7674,1338,4348,6969,5904,1689,9759,7561,4483,1704,2807,5663,7743,4568,3457,3191,1651,3330,5492,341,2031,910,2511,1697,792,2785,9401,1464,5743,601,3226,3312,386,430,7861,6496,2110,6752,8420,2015,9359,4438,5825,8978,4905,3912,3687,4881,9361,810,3482,4552,7188,8289,2193,1554,1001,8546,1984,8024,6072,3644,5603,907,9439,7752,1388,1167,3447,5363,617,2188,3475,6473,7212,2004,6264,3078,838,1093,6252,4060,9523,9734,5202,4441,9842,1761,1788,3119,3088,9734,8459,9293,6675,3998,636,2726,9699,8244,6945,6508,6968,3368,8525,2510,5618,5933,968,1137,813,5117,1007,9003,6908,425,9426,1893,5103,3238,7771,794,2336,572,7947,4340,4768,482,3752,2719,3154,2412,9811,4005,2127,5413,1362,8796,4644,7852,8072,3814,4641,2725,3566,9126,2204,2382,2608,9241,1735,7639,5500,5162,4754,6172,1608,1897,7363,9730,3847,2449,8284,6923,8393,7538,1337,1220,1589,57,814,5726,3054,1979,1256,2754,7815,8798,3260,8398,5956,311,8944,9739,7949,6092,4962,7752,6858,1333,8385,6288,2120,4021,6995,6757,1211,4228,8599,8972,119,252,5393,7072,6123,7304,552,7744,8529,5491,6789,9563,3764,1211,4085,3679,1635,4150,3253,9676,5357,6459,9699,9208,6629,7128,6206,7103,1993,6166,1100,8792,2577,3938,711,9544,8207,7851,8669,4386,9875,9877,4534,3761,8932,2672,3554,8463,7540,40,9431,3767,5402,1060,4522,3875,2318,8076,1707,5912,4030,7543,1736,3203,6825,569,2333,7319,7905,6452,9200,2926,1839,3906,5090,367,2950,9054,5384,6621,1842,6392,6761,6424,2299,4236,6701,2032,653,4989,1893,5706,9826,1256,642,3596,5118,7889,999,432,5019,5457,7053,5852,4724,2416,9956,9602,7722,152,3569,1014,8206,6082,2705,8091,5745,5278,5724,5804,2004,5240,5559,9263,7201,9511,1922,1238,7609,7037,5647,9147,1629,7898,5255,5140,6408,4472,4286,965,9541,2064,6101,6793,9027,4892,2634,3856,4764,7212,7970,7294,1662,4908,2436,6615,6313,2271,8186,3090,5991,6398,9808,3935,5266,7443,963,4360,5425,5411,4458,8070,4126,7313,5227,7422,4796,8292,3740,4291,3352,2650,3034,4138,1711,8425,5033,7325,6803,4699,6301,91,8726,8885,3445,4625,1602,3937,7483,1510,7730,4345,6390,6624,7256,7751,7683,1889,1752,433,5334,7667,3065,2053,4128,4291,5506,2273,6773,589,4796,1756,667,7254,9213,9080,439,3954,3387,2679,1306,4843,5706,9881,3553,896,8911,3364,4854,1045,2836,7977,7277,6290,1671,8399,2422,8575,2353,6645,9846,3205,7315,3131,5814,9876,8906,7987,5692,5779,939,2934,7495,395,6586,9616,779,496,8102,5080,272,1870,9622,230,5632,6626,1698,463,6793,2483,5691,3132,4988,2807,8975,4774,2224,39,1608,3925,3374,5342,2065,2888,2241,8236,5487,8575,4126,1482,6488,3554,4708,6135,2364,9789,4148,864,5080,807,3256,9018,9092,69,4732,1536,2947,1318,8231,6913,2391,2475,5718,3154,7168,5167,5688,4059,543,6724,5968,4731,545,9776,2782,1968,2882,5347,1871,1345,3822,1294,5893,5861,946,3123,2935,5512,8433,5040,7213,4323,8560,8,6834,8485,9997,745,1299,1650,3187,8070,7106,8660,2685,1942,2435,2295,1230,8711,6773,4443,8005,7490,541,7589,336,5582,7370,2489,2022,4577,3341,5422,656,9342,517,7054,2840,1910,6892,521,4381,3757,1817,7057,8903,9760,3933,7014,8573,2308,5726,2198,5108,2528,8803,7428,6294,7709,9518,8636,5055,259,9747,4227,8014,7560,608,9014,4193,9322,5808,851,6917,111,1558,320,5112,9978,4387,1408,1165,118,2328,9374,1760,1039,7442,6586,4506,1247,463,9082,7195,7478,2626,5323,4926,6730,5176,2398,3350,581,9390,131,8882,345,3840,1984,3029,1799,5588,2572,2933,6000,4010,1699,5966,5757,4489,9862,2726,4258,1592,401,5771,4938,6397,1683,510,8214,4613,5455,1038,7030,9049,6419,8672,1995,228,1420,5695,7217,7921,9194,9978,4950,4029,2872,1701,4146,5528,3898,9472,4522,6864,9046,6239,6303,3443,2245,6460,8686,6485,4405,7994,9506,3126,5885,2829,2602,1196,6204,7848,9307,9620,4485,7819,4818,8517,262,9758,1354,8315,7692,7051,5548,8429,674,1826,7497,7399,4571,4518,3962,731,5104,9895,3166,6096,63,8428,8950,5352,1133,8969,8566,1317,1328,2638,5165,8230,1469,6516,1869,572,9607,3814,8172,3049,2284,6480,143,906,3750,5845,1833,6817,4432,4057,2322,9830,9993,71,3407,4753,5663,8238,3216,4870,4379,6334,7120,3111,1696,9444,7854,2202,4356,6240,4050,3863,5897,3284,6143,8077,3281,8178,646,4640,7998,2145,64,6170,1529,5715,3603,5358,2193,6525,8904,9502,3784,6510,2688,5958,6805,1939,544,9897,5968,5198,243,3162,3789,6242,554,3442,6441,8767,6550,5025,6463,2200,615,9205,4721,1979,2955,2022,8848,1424,5089,6896,3957,6071,6991,7048,459,481,8551,4624,9968,4357,9666,9074,1350,6008,6725,1566,9130,7734,8072,6018,9932,6044,8025,6398,4751,2368,5062,2387,7448,7508,4201,8895,1886,440,4950,861,8167,4631,8006,213,6386,3288,9332,1365,570,8867,3457,1553,1072,2309,7560,3572,8334,3762,4034,4964,3815,797,396,8487,7880,9068,3077,3640,8254,257,7955,3945,7696,1370,1496,9198,900,6181,6024,8325,1192,7363,5237,2962,3359,5813,1208,7031,3260,2542,1925,7502,2845,3953,7028,8541,1021,577,9307,1671,2796,7949,1456,1060,9909,9160,5859,8919,1205,8820,5650,9163,5817,5961,570,5697,4584,6270,8669,6900,1056,8373,8319,1364,642,9657,365,6470,490,3086,8449,2948,6247,3307,2016,3182,3741,9226,5648,7317,2433,1284,908,1091,7868,2728,4783,9945,9146,1608,3417,2230,1305,7932,3159,812,7329,2984,7120,8242,5890,672,1489,8693,75,6086,6881,1990,6967,26,1605,1524,9332,788,7169,6238,8252,4275,3166,4181,7679,2065,6620,9565,5710,4568,4171,8127,2197,1656,2721,9153,360,7572,8366,1549,457,5679,3876,7347,5132,8733,9848,8281,5715,3442,567,6114,5550,5758,381,2528,7017,5249,9232,9627,3151,4570,4366,7474,3101,1188,2194,7162,7847,4838,876,4886,6738,1472,1560,223,1283,6140,9882,1343,864,7720,5363,308,6492,1677,870,8292,6969,2185,4457,2171,5493,1862,8162,1499,7378,5763,8898,7080,7560,6361,9539,4440,2306,9965,4610,207,5022,9416,3586,834,2815,6687,5003,7194,5240,4196,6814,1338,3812,7568,8136,1987,8391,4334,1425,8422,8708,5492,2901,3995,9053,1899,727,1127,1284,8591,172,7835,4235,5464,5117,6494,264,9300,1781,5202,7059,5336,7248,1819,5861,8139,1769,6962,1983,2451,6753,3331,2651,4969,1289,5150,9792,8731,4999,2474,3453,7683,462,7249,9816,7881,8973,674,6486,9368,1489,6697,3318,8250,141,5248,509,1768,9210,104,154,3249,7648,6473,9024,3371,7761,7641,4193,8205,6615,9082,5129,1204,7642,3816,7356,1642,7527,2296,6815,6203,390,5132,1494,4349,9983,356,1969,123,8016,1101,4513,124,5877,9541,9933,1122,2207,8755,8889,6833,3713,1370,5511,1002,5843,8257,5508,8532,2509,1277,2679,8133,6792,1014,97,6516,7498,263,3196,6365,8924,3322,9208,5270,5539,3058,9844,5240,6642,101,6300,4137,177,5578,9909,2632,3284,8187,4823,522,357,5289,5926,6317,6421,6439,8543,5965,9442,3452,418,1244,987,1049,9483,1817,5259,4532,5500,5997,9720,4042,6376,6907,5423,6895,2217,7416,9975,8735,9816,6381,2347,348,2794,2425,2004,712,4933,2407,8425,796,6670,5911,2771,1269,6006,7895,9110,5443,3846,4698,5905,8577,9312,307,5042,1606,437,1999,3814,8393,4399,2358,7442,7665,8255,6786,2240,1878,702,8843,4044,8201,1913,4649,4011,249,2582,3308,9335,8130,4156,2367,9867,920,5270,6408,1688,218,6477,8339,9862,7823,4854,795,2432,8800,4006,5616,8785,6537,5820,3243,2050,1517,6155,6767,2802,8624,525,7891,3409,934,1416,5867,1535,2603,8876,3058,5177,7679,6454,8994,8987,4799,1324,2121,1794,601,7294,5871,8182,9058,1047,5306,3998,5207,7846,3077,723,9205,3576,2900,6188,4048,4086,27,6123,1044,6236,1890,5158,5860,1147,6133,1844,2273,9482,6679,6409,6528,6747,7715,4737,4181,3958,8348,2639,2313,1603,6756,5612,5244,9897,7298,4838,3681,9307,5253,5304,6231,5088,8329,2026,5553,8892,2374,5990,8270,106,2538,4838,9877,3468,967,6803,2281,2504,3611,4094,6758,8585,7369,2603,3551,6037,9892,683,6371,7381,4122,1203,955,2933,5086,3227,5611,29,4715,1979,8426,8665,4775,2485,4625,61,4269,5349,5632,5101,7510,5880,781,2517,6599,3295,6176,8202,5242,734,9281,8505,6933,8969,4973,3343,367,9052,4418,2175,1330,8900,2262,9569,6755,2597,540,2321,4407,9201,88,826,6471,8381,7737,2264,8799,9516,4306,680,581,9877,9416,4754,7492,2459,3833,5582,1114,7894,2323,4779,6653,7857,3470,7236,4394,6431,5515,7848,5767,6731,3506,19,2123,4702,4364,2541,5623,9530,6001,8596,1995,6401,4916,4320,3152,1919,1001,6300,211,6817,9670,7733,6136,5455,5911,6074,6803,58,4951,2415,6852,9138,8214,3391,2611,7372,9055,1116,7322,1974,8174,228,3148,5036,2107,8026,4370,2580,9774,7934,9449,4884,5730,968,4857,5882,2532,7133,3471,8927,1657,6575,8443,8499,2874,745,5611,5556,1092,270,9133,8311,4432,2886,1396,7059,7624,2635,2768,3830,3901,4368,8362,9002,2677,4675,6699,3319,1515,6837,5735,3428,9814,1791,6195,6065,8765,8417,9668,9017,1616,5340,1159,2127,513,371,1831,8380,2975,2800,3585,5496,1712,988,5899,9751,9574,3150,6184,788,5618,5997,4151,7944,6552,8888,3486,7515,4189,4414,7818,3094,11,2865,839,3746,1366,1314,2872,4329,7560,5314,3835,9773,3103,6790,6458,1750,5491,2151,1980,4680,7687,7852,6589,5629,7158,8782,5010,1203,3482,2935,2330,4948,4277,8495,8968,1572,7596,9709,7469,3265,3856,4704,7012,8995,1760,1822,9572,9779,5973,4830,7699,6694,2492,7063,9151,8344,2384,5828,518,2524,2296,8531,9876,5869,1877,6928,6928,6245,2871,6365,8338,3792,6604,3385,6348,1049,8828,2577,1155,1869,4462,1738,3715,544,9215,1390,8921,3317,9195,9002,9513,7120,5557,3049,6837,4385,929,5789,6521,329,866,8846,3262,4569,8937,48,480,2436,6858,2348,745,1381,2956,6975,4627,9333,81,3241,6856,2377,8741,7767,6055,3875,3824,4607,3360,7727,7050,1980,1311,1593,4043,2938,6093,2663,7794,3171,3664,5638,8714,8829,8493,6385,1925,926,2491,3329,3655,2311,1709,1652,9962,3806,4538,5191,1797,5266,7135,3899,1961,2383,9753,2984,5068,393,4865,6157,2574,7081,1420,9090,3825,6077,7557,5763,3148,9086,7016,3149,2350,7215,4595,6873,8317,5462,6165,9416,3161,8662,575,8747,6375,2201,7840,6435,7281,8183,5882,6556,8100,3786,3524,7219,3157,1302,7421,2410,2617,753,630,2974,90,943,4270,3587,5194,6637,5969,7587,2334,8986,513,3054,528,6397,1021,5758,9761,2,1583,6855,1476,9167,8129,8751,6424,9984,56,5424,4170,3397,3625,5900,463,6080,7024,5762,8123,1532,9034,6824,2859,811,543,4054,1185,2321,6008,8424,8775,8024,1126,6490,4416,5501,948,9953,555,8422,2458,8529,4865,9500,2886,3825,4992,9708,2987,6508,9932,1222,6662,3893,7288,8117,8446,3870,7184,8609,4934,2718,5281,2470,8524,2495,2654,3348,2192,3784,6253,5523,6022,3075,4069,3919,8854,8244,8044,9980,884,5866,5773,7720,6437,5401,4855,1651,2655,832,6233,9553,562,4063,6201,6026,5479,1545,4034,912,6583,617,326,8558,9848,9027,2088,4517,7453,7249,7517,4223,738,7790,5709,6515,3270,3218,5764,3522,9746,6762,8976,5726,9329,726,6764,6126,1967,5413,9774,8848,8676,4879,7436,7974,813,9894,7795,4233,6000,2385,670,520,5203,4014,3345,5165,3016,8360,2696,6537,2447,5973,999,6229,4954,5476,4458,1049,1864,7158,8142,3282,3180,7945,4573,3931,2834,4208,1663,2474,1901,4401,2052,4135,1487,4015,3389,9309,3005,8654,3427,7658,2379,3124,7435,7943,6277,7253,2374,8087,9846,3859,3706,6723,7138,7885,2522,3325,9669,2334,4548,7247,9800,2126,1767,6597,6315,5325,3008,9501,1469,6827,7004,1719,1278,9264,8987,3187,68,7400,949,3593,8300,8017,9915,6031,6669,8512,1870,2292,9624,6531,2882,7962,7018,271,6093,6226,2248,4875,6695,9131,57,5853,7212,381,7784,3502,6565,1212,7643,8052,5982,2633,1431,3784,1281,8600,506,6768,2575,725,3475,1727,7560,1764,3739,4380,5527,1954,7567,3391,3364,8467,8639,5638,2993,9228,9177,4056,3197,6586,2568,312,1935,9294,6787,7572,1504,1346,1381,4148,3731,7021,7191,5249,7250,2992,9683,6432,551,5970,9927,6871,8231,602,462,8505,5625,2944,6733,2000,8805,2499,4670,2511,6076,9552,7544,5317,273,7702,6927,7200,2227,9741,729,5213,6588,5229,2864,7046,4440,2253,4097,4256,7656,5687,5941,8157,2018,6222,858,7442,8090,2688,1895,4913,2280,4670,4928,6084,7863,1002,4758,1704,1749,6658,2215,6170,7456,9133,9479,973,6680,1342,852,4202,9311,9744,5828,8948,3959,564,9757,5393,439,4431,708,340,9291,3544,2362,4417,4201,9769,4994,4491,8431,3645,5378,520,4058,1310,5500,5486,8891,5016,5003,1115,2761,3202,8658,6279,691,9224,9322,2755,3177,8041,2682,6623,1167,1398,2759,8820,1795,1989,6066,2792,9963,8532,4556,4389,4194,7863,5729,5468,7666,1289,5409,4805,6526,5052,1398,6530,1919,4223,190,4498,5508,1984,7746,6972,5094,4286,5425,1002,3822,3151,3260,4789,7322,3508,1530,6021,4468,9764,1629,3005,6898,4836,9812,5916,3489,2039,3948,1032,4434,4876,6819,7302,6163,4152,8583,5934,5359,8702,4652,4130,8635,1913,6879,1791,4199,2297,7516,9568,7057,5212,9644,7850,8043,4393,8574,3776,2166,8008,7168,2574,462,8761,4507,7489,1384,1810,61,1414,5261,8988,1573,8624,9272,9210,6948,3595,8253,3288,9777,8023,3182,1142,8386,4135,1495,4197,6393,7084,9080,6783,58,5534,8592,2169,9442,8044,6298,8071,4434,559,5624,6799,4368,3930,6062,7968,7936,9271,8878,5753,7431,8632,5476,5119,5824,8998,222,3072,6533,3014,4112,3143,8154,1248,8885,8971,2545,9081,7198,8222,2980,5386,5972,8679,6733,7178,9290,9977,8172,2359,4173,5488,4893,2375,9835,1998,6104,4499,8755,8973,7817,7889,1372,2926,2021,8356,8971,5160,7113,3187,5064,8480,3984,6156,7518,6460,2802,844,2737,6311,7168,9967,199,2553,406,5653,3781,7300,7368,5455,8453,2993,2329,7002,3466,2615,5903,3594,3050,210,2638,4781,8880,2277,316,3340,3703,8406,3331,9316,1992,4322,4647,951,1904,2028,3439,9355,6613,5554,8501,5367,1000,7531,9718,9261,1158,4570,7090,5087,6523,4960,3844,7488,6342,6956,7753,6251,997,5045,31,8909,385,2491,9226,890,7998,8830,7660,7285,4815,6680,5750,3977,2437,7434,199,527,1959,6156,2835,6863,8301,5101,9035,9819,7410,5735,2515,8141,5410,7900,550,3121,5971,5112,7100,6087,6380,7616,7961,8023,1938,7034,3587,8351,6243,7590,6904,2568,4367,9658,6749,9438,5030,4971,1134,2624,4035,6976,1204,7326,6737,5437,6939,3260,5459,8219,8057,6924,6796,8015,3012,7385,6799,1460,3091,7923,797,2972,536,5417,9203,5634,9670,8042,3383,5962,2961,3256,8354,2561,6667,9344,3879,6374,6414,2528,6423,6553,3426,9678,2322,2393,2513,4640,8701,8792,7670,4802,6730,7131,3834,6412,662,1411,1386,6664,8030,1572,6903,9251,5849,4696,2191,7294,8848,5953,1055,4167,7534,5320,2455,8020,7116,8007,5820,8169,3724,7221,6980,2720,7028,3089,9267,4026,1946,484,8731,3345,2421,5156,4641,6975,9432,3445,7751,699,8378,750,607,4393,8927,9016,1680,6979,8007,2223,1881,1177,8798,7926,5051,911,6271,6870,1605,1661,4601,8950,6848,6183,9747,7387,1654,7541,7034,6950,5242,4637,2737,5870,6419,9792,2024,1874,4078,8007,3661,2337,9586,34,3492,9544,2591,5664,7356,1271,1896,7103,2915,9171,9622,9561,9141,2559,5606,7921,7718,346,8000,9753,703,7519,2314,9084,5873,9220,1617,3142,6148,3868,4898,3850,1327,8585,2870,8661,5688,947,5376,48,7105,4802,6140,2606,7299,3294,1396,390,4884,7242,5604,1293,8716,7422,9254,9507,9772,9825,7516,3890,3212,6541,1990,4850,2046,8990,7770,6547,9553,7605,859,5986,6526,7869,3654,1272,5623,2004,4279,2258,3242,3682,3244,9705,2703,3655,7076,3263,438,7516,3238,1646,2510,1017,3436,4607,1421,8567,672,566,9744,5910,2706,5796,4487,2966,7679,1402,6327,2759,3540,8007,3489,6225,6697,5727,9606,5438,2688,2982,9485,4858,6027,37,9002,2884,6114,7255,3230,9348,9651,2227,1255,7397,3817,3643,5375,5621,4344,288,4208,8010,7518,2308,4728,1136,607,4085,1933,3244,7406,917,4754,4566,3944,6512,9888,3742,9668,3521,6016,3314,2435,3365,7022,581,761,912,234,7728,4059,8663,1694,2184,8981,1440,555,8269,5207,3618,2249,6088,2638,2059,6655,451,5022,291,1010,919,1994,965,7212,8043,907,5432,573,1957,7685,7571,3429,1622,5524,8137,1907,933,9767,3641,1006,198,9281,5708,2646,2010,6183,4625,423,2011,776,7016,2858,6872,6715,1644,4729,43,6168,9147,7607,8072,6575,6896,1515,7745,3353,1164,5830,7595,6412,7864,5286,7021,4967,9394,4468,1515,2989,5846,1680,4184,4636,5855,610,2564,4974,2282,7778,8005,9159,236,1612,742,2195,1178,7731,5782,7284,4187,9324,5284,505,8425,1605,939,2888,238,5183,6791,1908,1492,5683,97,7215,3755,5148,946,8414,4920,2887,5343,8273,2350,4251,3100,5379,4316,2133,546,9939,8605,8618,7162,3730,5469,5751,6857,3994,4867,7786,872,6978,7945,9419,7986,4602,2179,7057,3462,798,1265,8842,653,2067,986,7669,3329,9512,4601,3645,9014,7125,2853,5630,8087,9228,1955,9855,8728,7860,8037,8017,7633,2705,2832,3305,8489,8470,3475,2260,2291,2895,1941,4751,3601,2377,4680,5081,2272,3315,107,5805,1784,1843,7042,9887,836,7260,4557,1010,2978,9228,8858,6266,1903,4484,9867,8171,6232,7392,1310,5945,9733,2831,6486,6613,3914,6217,526,3920,225,9631,2408,3540,4366,1584,1297,3974,9220,9527,2660,177,6193,3405,7382,7722,1187,7058,449,9147,8239,2566,5512,5137,9983,4122,8916,6304,478,1073,8972,6426,713,3537,9746,3034,9345,4411,7382,3113,9862,4142,5679,7648,3440,3271,6507,8264,5870,1607,4303,8837,2992,9547,7738,6643,359,7852,2709,9852,5234,5299,9993,5639,1236,5638,5731,2538,7740,3070,5275,2176,7133,2,3413,970,937,8038,2950,8901,4449,635,8540,5432,123,5405,7704,5695,1429,4981,4937,775,2521,6658,5638,9852,4686,5780,319,9808,8706,5114,1152,8051,3072,18,5271,8204,997,9241,758,2755,7067,1768,1778,3027,7234,8108,5856,6162,8438,9361,2823,8906,5700,2010,1030,3850,4016,3962,7949,765,3308,9877,9502,7819,5147,2368,3142,6664,8562,8296,9809,2587,7533,3254,3745,8736,3734,7359,4490,5287,2387,8711,1524,5962,6248,4893,4023,437,8799,1975,3565,8892,9668,2818,4320,4275,2791,7058,7415,720,9063,31,2688,4469,1613,7954,5280,4093,8953,6101,3238,7512,8404,6202,8668,1978,5501,4026,7346,8921,655,7645,7848,4652,613,1206,5671,7737,6677,6495,585,4623,5046,9317,8148,4676,7119,6398,5625,6516,8959,7774,1175,8567,6236,9123,632,9571,4731,1267,5043,5928,5575,9302,7405,4479,3206,9184,4623,5466,4691,7232,2602,9192,7494,9479,14,6584,516,1990,9153,8594,9091,330,3386,991,8353,952,8672,1972,2861,3270,8617,9794,9120,758,4634,7574,5317,7031,4110,3324,2745,7566,8389,4630,9168,6730,1996,6227,6522,1606,6567,7312,5373,452,1003,6363,6654,7021,5129,6576,5309,6750,7751,4795,2973,6516,984,9455,4383,6518,3259,8134,7782,4685,834,7526,2170,1811,6389,912,8874,2397,1213,2330,8829,4718,3948,5282,3977,6509,9179,2449,9107,531,2551,7917,5452,5534,2846,257,3444,62,253,4379,8529,2058,9180,9058,7667,7215,1522,9693,1841,3428,7834,9109,980,3700,6929,6749,1167,8813,8676,9058,4248,1192,8599,3263,6822,4981,6061,2122,430,1967,8708,8801,6953,4364,5643,7921,9481,135,9650,1976,8190,1839,9197,6710,338,6246,3500,6760,4564,6072,6399,2198,9022,7144,9627,5286,6178,6848,1147,87,1287,8790,5430,1957,9096,4811,4545,2327,4065,9459,48,7684,1214,740,8013,9359,351,6860,8378,5490,3128,6446,1381,5737,7456,4647,2902,1465,5971,1626,8790,4803,6055,1962,1795,4735,3796,8391,5197,3514,6596,6556,4400,6953,971,3302,8667,2559,7901,65,755,6898,3940,5794,1182,7328,6400,6504,6761,8392,4794,5616,5120,7967,1121,2898,4455,647,9081,9718,4826,9881,2631,3416,9476,9019,8200,4804,2395,887,4886,7846,8846,6819,7716,8416,9059,7728,6242,2981,243,9546,3709,8830,1991,1070,9931,1689,7059,5109,6047,9400,4610,3524,1166,7063,645,862,8719,1202,6098,1071,7707,6264,9903,5308,1256,4015,6000,8190,5633,9967,2828,3262,2383,3538,666,1538,6237,4718,6671,2464,9419,5655,5471,2447,283,1660,2693,5682,9002,6511,7431,747,8500,8039,3340,4646,6469,6464,5146,6062,3398,8105,9631,9944,80,8062,8748,8386,1836,3681,4102,3553,4193,7060,599,5647,3516,4260,4527,36,6104,8917,2458,5151,4529,8451,3449,9347,2553,9794,8479,9104,1151,7675,2038,2317,3494,6278,1908,5357,2953,411,6636,2028,9927,8793,7416,9340,4967,9346,8038,2979,4458,735,4784,6550,8164,2111,6667,4365,7248,312,1115,1938,3165,8625,1292,3135,5269,2513,6921,6998,385,6501,1315,9359,3070,3945,1211,473,3255,4848,18,5002,5390,8418,9657,6290,5648,3426,2277,9785,4416,8162,6147,5100,9201,4480,1170,7534,1981,7281,4881,3616,9843,59,3612,6833,8824,7560,1924,9574,5868,6952,9125,5045,259,9078,7182,4083,8634,809,8821,1095,3396,4886,295,8252,1314,3987,9961,1861,9418,8319,1522,4897,6310,1285,6031,8003,1559,3082,8638,2032,7832,8350,9211,5936,211,8448,6897,1218,47,9349,1795,8010,1417,9922,494,1433,7116,9531,2644,608,4603,2248,8942,6452,1521,9877,7766,9338,1153,2938,9334,6167,5463,5633,4750,9149,8709,5149,3087,8314,9980,4052,5091,8154,5611,19,4439,6491,2319,2323,6584,4141,6961,4365,7555,5940,3584,9831,7516,8860,610,9802,6065,5535,4376,2623,4051,4629,1758,898,9050,3029,3435,8976,7568,2689,4724,609,6163,6322,1609,6385,3630,7564,3610,2098,991,3688,4515,8463,723,484,2104,9177,1349,2981,9213,8588,1869,2507,2889,4565,516,1488,6556,4984,7905,1732,9978,5487,5537,8375,6578,2965,9397,8009,4697,1884,1798,431,9431,1433,513,4195,2464,1483,4764,2849,2703,8020,3375,4602,9531,7426,347,8507,4044,8225,3155,4369,1755,8154,5839,5923,6987,6114,7971,9660,5098,2716,2612,9192,6070,609,5154,8015,2349,8280,2089,7244,7280,7286,1753,8834,8093,3834,8337,7149,4213,62,1233,7417,2739,1322,7391,8206,3514,7047,4272,9609,1924,5593,4160,7978,8922,7400,2934,2390,3365,7793,7175,6175,1006,6297,659,4658,199,6178,262,5657,320,6789,6330,8509,1347,8116,4709,415,9498,5943,4532,4010,3490,4141,7880,280,6209,6151,7701,2261,4870,3621,3993,4059,7674,6644,4650,9118,9837,949,105,28,7860,7721,214,8031,9730,5187,6752,5332,2144,4232,2555,6143,2280,9222,9098,8756,9675,4656,6727,9360,6567,8348,3890,3382,9967,4140,368,4128,6940,2911,7903,8853,4607,6311,333,3116,6507,3614,7931,400,6062,1666,7255,8250,8929,8204,6366,1493,939,4435,4816,4743,1093,9461,9390,7203,6640,3530,6223,1552,3908,8055,5804,1289,9425,9629,5085,815,7573,3829,8146,8451,5899,1821,6662,8928,5308,5790,1536,5955,7008,1084,1103,2970,3664,3613,2364,6390,6311,3367,9067,9272,348,3119,8455,4142,4996,8677,3037,1376,9585,8057,9554,9932,9001,9942,4963,8883,6516,9621,6655,8519,3175,7558,1227,4116,8108,1336,2166,2420,4160,2884,927,9114,4021,4819,254,4351,8385,7022,5704,5827,3890,4059,4123,8213,3325,626,9345,1520,9978,102,2868,1235,8720,957,3722,8200,7495,5073,414,7359,3712,4478,2279,5042,3964,5588,6062,1199,6390,3925,8995,217,8489,6758,1798,9764,2115,7334,109,4815,8633,2804,2262,8118,217,2030,5540,583,7065,8005,384,2909,718,7093,6046,6756,2661,5610,2673,3729,4637,6883,7205,2087,5440,5850,211,9811,1667,6440,9573,7181,8376,7120,3233,8127,8160,2916,7235,4003,1531,6151,8973,8216,9648,5909,5534,4652,2751,8676,4340,4790,8304,4784,4490,2449,1020,5602,2863,8302,3925,863,9133,3021,9435,7585,1348,1653,7517,8537,6746,2784,816,3881,7474,738,8500,1972,5339,3720,7775,7718,1063,4051,157,8584,2704,3481,1645,8241,5677,8605,3852,353,782,9926,4178,3509,7803,3829,8913,6877,7314,3133,7528,4402,8332,2327,8454,1358,8418,1600,4707,951,4337,6770,5204,5376,971,7526,5668,5859,5163,7505,1304,3836,9988,1454,4341,3659,3114,3670,5340,9542,1944,8284,2507,7783,1313,5585,6597,4333,5092,8795,8733,1641,65,9128,2217,4121,1148,6857,6844,6524,5390,6726,5044,8382,6868,9984,4355,7398,7516,6150,4190,1646,5021,6259,6812,5350,5105,3451,7937,7616,730,3997,5433,3339,6480,3209,6740,229,2145,2323,4735,300,5527,9315,5769,399,7453,9693,817,8040,5612,6873,3236,4441,3233,1854,6616,8699,3976,8136,9897,1720,8568,2711,4499,4103,325,1555,7368,1903,1910,704,4142,6854,7473,8401,7014,8154,3625,7900,2981,533,8441,7572,9965,9281,5044,4156,9806,3188,7744,6662,1031,5390,3611,6372,2536,86,4143,2458,722,9228,631,5882,5641,6681,3983,6400,7399,778,3905,9014,9544,6669,6046,7722,578,6158,6638,8586,7242,995,7752,1141,5865,2751,6327,2468,4577,2421,6419,8770,3119,2235,2597,9877,4577,9768,4780,1428,684,6751,5622,143,9202,4354,4093,6136,5452,4581,9762,4444,1644,7154,1004,4883,2131,5113,6913,1695,1117,7367,7204,7276,9944,120,4839,177,8721,2107,651,4554,9636,331,290,3219,5180,461,7009,4758,2376,9145,7695,8099,3909,8637,7061,7553,1855,4288,4641,1953,178,2975,9515,1941,9931,1760,2208,5718,4949,9634,7603,8347,3496,4947,1389,7128,1401,1294,646,76,6673,3183,5762,7529,4829,5761,7492,3878,7702,3651,2051,7002,1579,6380,6681,9762,9727,1603,9335,6716,3241,842,2828,6865,7690,9570,7128,8635,6968,4388,5759,4863,3932,1775,2696,7871,187,1308,8633,861,8628,6837,740,240,6120,3662,4717,1930,3272,4460,2328,3376,8402,1257,6901,6525,5644,8073,374,7994,3168,5184,744,3303,7507,9931,889,6655,5423,86,7304,4249,2559,2975,7804,8981,6577,6648,2833,2594,9321,6001,2737,4394,9208,6204,6200,9028,5851,3192,4806,9761,2715,9301,5096,5944,5314,6768,6569,6638,1983,4984,1306,4729,9039,7175,5573,9311,9426,8022,8498,712,4039,4788,1608,9672,3284,6814,3280,4716,6942,6181,7944,4284,2867,9440,3664,2447,1546,4989,5751,9426,2204,7482,4239,5502,3663,3072,5093,8248,3540,4174,4866,2592,7062,1976,2091,7146,3708,8938,7961,6096,3552,733,6261,3758,8467,8801,4622,7820,6326,8272,4717,2580,1239,8476,3997,8408,876,8392,941,582,4935,3729,4454,427,2365,2038,76,4668,3307,8012,9488,9728,1045,1220,9674,1154,1764,9037,843,8190,2128,9118,9674,6007,4453,5954,497,5928,8771,9273,3074,7947,7008,9539,4363,8541,3290,2484,4884,4135,9515,4469,4582,5961,4674,9838,9347,8287,2632,1652,8369,3275,4389,8916,3895,5532,2450,3734,6975,8895,4440,3230,8441,3680,7773,7522,946,8993,3334,4587,7800,9567,5934,438,5982,4639,1050,8505,1239,4647,6583,4781,2297,4698,7375,6025,2360,2850,8586,8908,9621,8523,4837,4085,2891,3568,7781,7249,7655,5441,6754,5538,7673,1962,596,9361,1376,1207,6859,1394,3740,4363,3423,1330,9267,1332,8356,8387,1415,1797,6846,8265,7876,7501,8743,5681,238,7930,6043,3128,6353,8326,5680,2107,9049,3550,3083,6866,8702,6817,7682,1560,5741,1433,2714,73,1993,6172,6277,4890,3991,282,9891,2639,9342,8684,9480,2598,7981,2503,7292,470,8341,5036,120,5855,1134,9368,4406,3251,6519,4305,4590,5191,1348,9433,3494,4557,2256,7006,1777,6097,232,8453,2414,958,7533,1204,8974,4642,8623,4865,5906,5160,1456,1696,7268,9710,2562,6927,985,6064,957,4703,6858,7771,9516,2480,8870,4238,9011,1814,4197,2468,7017,3122,3489,7040,2111,5643,3447,170,2219,2093,4657,8872,3582,3071,5301,5582,1279,9247,2319,9513,7550,887,3047,9497,9060,3224,6334,7801,218,8520,1488,31,2390,6815,1393,9130,2022,7214,7732,5090,6306,7880,9210,8121,3227,3701,7702,3255,8927,3418,3584,365,9250,9681,5763,7053,4873,6093,5431,3033,3722,3242,7212,3469,4252,742,689,943,954,1325,5510,6872,2594,5366,3900,8905,278,7022,1546,94,5484,9472,6362,7357,2752,9821,1814,9534,6769,624,9682,4818,3731,4868,2288,8441,4132,3224,1495,7385,7660,6095,9748,729,1454,3007,9396,9930,7962,5599,7670,9016,2762,8268,8337,4679,8673,45,2936,6894,2032,2442,2393,2658,931,1955,6353,2794,5257,9993,5753,6118,9342,9751,9279,2077,2151,7307,9853,3639,3529,498,335,181,7177,5721,7782,7392,2817,3531,2115,2462,1534,7168,8897,8254,465,5596,8623,5253,674,4395,3149,4407,3142,9759,8302,1531,69,1451,552,2931,769,5825,5717,1182,9040,2151,2909,2556,2533,6840,2313,338,5868,7096,2679,2175,6758,981,8545,7829,426,7150,405,9374,6449,9879,3936,9642,78,8771,8473,1704,2996,7441,1687,8706,1402,8644,7653,6315,5398,7561,1230,7010,9072,3470,2290,550,478,9247,8342,5124,4730,7103,4986,5764,8988,6875,5942,9907,3708,9369,6465,1304,1779,8177,5629,3354,7862,4328,5794,1715,4432,3370,7241,3227,8771,9919,2960,2901,540,9657,8201,7022,4344,5077,1874,4431,2698,4770,9123,534,5307,2253,9343,9775,559,226,3663,2638,7184,2937,3142,1948,9252,4088,356,1727,7760,780,3124,6425,7468,9108,9768,7306,4781,7502,9911,9677,5192,876,4186,5483,969,3416,6229,9423,7793,9381,8480,4098,2979,4742,1562,7556,5771,4419,5643,8395,3266,5384,7020,6492,8001,9162,176,4954,2834,9974,9393,3854,7571,86,7348,9373,4075,6658,9379,8624,4063,4168,6783,8936,8585,9981,7633,627,5615,9637,136,2678,2611,2048,1665,6521,6105,6140,2865,4267,4749,2875,9027,2729,6239,5474,8423,5934,2526,55,5949,1613,3489,5918,8614,4353,6244,6110,3071,9971,9545,3876,2241,5265,5602,3937,3285,4514,5346,7867,7417,405,4319,1285,4636,4952,5556,8580,3926,2509,2361,4151,8795,1615,3295,5766,9825,1091,7198,9673,3055,2300,8428,5993,865,308,6577,1894,6453,9760,9799,5903,776,5014,4334,5407,9092,4510,4389,8482,7973,9196,3736,339,2300,5490,5258,1360,847,3690,2652,1723,2017,2640,2794,7625,8292,9704,6325,971,8202,7784,6872,7212,1940,7336,7089,2621,1633,2769,1286,2251,7197,3122,1919,7450,2332,9794,5080,7376,2102,4880,8787,9760,3760,88,5253,2547,3520,795,7855,4571,1963,2051,9791,2604,4689,4174,2142,7385,8349,7578,3431,5997,1436,8034,7925,5481,7729,586,5358,1832,9861,2594,4668,2590,8329,5698,1621,9471,6319,604,9204,9053,2986,5406,8250,4462,8893,3039,3424,723,5289,2453,4261,465,8197,4924,6681,1795,448,9350,1937,9198,9718,9292,9443,2198,4349,8331,3126,9352,7206,5070,9486,8459,8608,8230,2338,1672,7565,8373,5418,827,9864,5028,437,6443,2055,3149,7750,985,2589,9310,447,3439,6555,3523,5439,6609,7171,6936,4610,9308,9873,6933,4551,3614,6906,5820,8925,8548,2666,3823,8532,9035,7561,7491,1212,8527,2152,6727,1488,1387,4276,4065,9232,4478,6274,5663,484,3509,6603,4647,3782,2118,8861,7463,5159,2812,7885,4059,1272,2624,9474,7867,4029,1685,6480,4219,5364,3744,2347,5407,1895,3307,4838,162,1917,262,4089,3539,63,2976,1028,7605,8698,1627,4323,6191,676,4343,178,9626,532,7217,106,3789,4603,1682,7258,4348,5566,9033,3929,6562,2081,1121,5638,2148,7197,7197,899,7193,9845,9659,5525,1086,74,6619,6743,3699,513,2109,7329,6445,9091,1082,8879,5747,9814,2509,7410,3656,5758,7697,8758,1058,9105,3919,9878,1035,7525,9124,1882,791,3710,5971,6041,8437,8493,8441,2904,4070,3183,1074,4973,7270,6236,4681,6459,7086,1989,9184,452,7592,4987,6646,4080,407,483,5602,989,9392,7650,7134,3059,8720,5814,2865,748,1308,7623,6166,6203,5958,6005,8315,4731,833,742,7060,4180,1868,8803,6352,653,1654,1470,8150,2732,8015,9647,8448,6098,5777,7195,553,1066,8786,9608,6511,7111,5253,3307,4309,8777,7953,9997,939,7174,3058,6528,5148,698,4185,2065,796,4023,7367,5254,8935,7273,2199,7143,1882,7093,7993,5289,8877,2877,353,6529,7038,5579,3093,4070,5288,9827,9523,24,9838,8083,7761,6037,7976,2224,2075,7854,8240,9139,5657,7346,3544,3849,8323,686,6046,1373,8915,7746,2830,2676,8162,153,1238,2026,4294,3045,3945,2128,1887,1677,8727,4801,145,8826,7877,8456,9640,5487,3273,7478,2358,502,1574,3518,8029,736,5124,1614,1508,8867,307,4658,6378,5929,8230,5152,4853,7256,263,5558,7311,6537,2721,785,6203,3685,460,3035,3630,6788,3227,4494,7121,4783,3268,7174,8320,512,4618,2953,15,3762,3041,3717,3615,909,1666,3942,6562,4902,6217,9859,2318,8134,8872,2095,7817,9032,5152,5105,8795,7578,9907,5971,7950,7022,488,7433,2137,135,7896,53,8782,2418,2552,1346,4145,5516,113,3855,4245,752,3541,4527,9192,1479,8507,1145,8044,6153,4675,9565,1836,8052,4511,7232,3628,7359,2407,2704,3328,7182,9743,6940,1410,9068,8567,6622,6216,2603,8190,3724,6301,531,9146,984,4343,1644,6259,3166,869,3856,338,6327,5034,1230,4326,9938,555,7908,4791,3832,877,1564,2545,7221,4860,178,9317,8423,1266,9803,5326,7979,9641,2802,8000,6857,7861,2343,3987,6775,9378,7308,1364,9197,2765,1877,8785,9591,1397,743,2079,9883,6401,9359,3768,8015,4532,6822,5622,8999,1454,1324,871,2771,6611,2548,2413,8633,1819,8752,6373,4432,9476,6399,915,941,3299,3177,2976,5105,9107,2634,3773,1514,5875,5473,5675,9446,1098,5317,494,3078,2694,1533,4493,4605,6648,9713,3581,2115,2681,5608,2231,401,5173,601,5378,9284,3494,8601,6943,2339,4053,8602,1441,7218,8994,2120,167,3563,7168,3631,3382,2862,1229,4814,9119,8060,7125,2003,5924,9615,3838,2032,7371,4259,4826,1243,4177,7922,7897,7877,1595,55,550,9901,670,2069,9157,9048,8381,2065,8774,3712,876,6755,6221,8177,4842,6847,419,4815,7595,9512,9064,1560,885,7598,4451,1424,7651,8736,8140,8224,507,9231,3472,7641,2647,4272,214,7757,6619,1088,258,6803,24,1924,8045,5849,6067,4353,8667,6997,2424,8,828,1912,3339,8513,3537,8380,3577,3420,6114,4156,6915,6712,5629,4417,3450,2634,2667,2238,8157,9385,4779,5190,6056,6791,5487,8015,4223,3522,8605,140,1895,6373,2742,2588,1017,4867,4974,9278,4228,6715,1238,5905,9674,289,4685,3033,4409,1236,2236,3387,9359,8249,1577,582,2447,1864,4898,3698,573,6378,7712,3640,314,3180,6921,3560,3785,1641,7480,6317,1632,5285,8076,2141,104,3899,3969,8843,6995,8211,8520,7322,9165,2588,5195,6994,3026,6534,9893,2621,9381,3514,4812,4489,3923,5455,996,3916,3275,8479,263,4404,1960,3456,4143,7082,6088,937,9760,3829,906,7092,4563,1065,3291,8620,9451,7475,3947,7846,3690,8532,3846,2654,13,5951,3897,8814,5169,2299,2361,2933,6223,5298,8270,6267,7538,2546,5626,2105,7863,8156,8360,745,4918,650,9389,7280,2060,8980,991,7498,7301,6389,576,2769,109,1278,9754,9422,5738,1313,1288,7965,8022,3268,3173,6360,1738,9734,5091,104,3311,7140,8995,4707,4162,2657,6344,8712,4358,5340,9717,9682,1090,686,1966,7928,5325,410,2527,7091,4716,4758,413,40,5121,692,8239,3866,9972,700,8170,5665,9147,8957,243,2642,2558,6940,5698,8542,3114,8581,8844,1136,462,8295,8125,5750,5933,8396,7106,2087,7320,7578,9302,1751,2311,1291,4266,5358,4721,3097,5115,9460,8766,9986,5951,4450,2861,756,3431,2884,676,9099,6341,4795,8086,1683,4702,8992,5512,9708,3821,435,2314,5094,3734,3407,3162,1201,2942,3579,1266,123,8719,5059,2020,5232,4414,6596,643,4052,4387,7179,1861,2279,5488,7152,5544,3797,6592,6779,722,5306,7042,931,1647,217,7556,9095,7104,5398,3823,4071,4463,5437,1679,162,4877,2660,8681,3269,5137,9103,9001,4044,5842,5410,7078,9993,675,8351,2332,1852,9025,8424,4025,3957,7785,275,123,1448,4347,3078,9418,7549,933,5070,5746,6717,4265,8861,2539,5159,1448,3438,2353,366,1024,8065,2370,7169,5732,6065,3566,3621,1971,4204,2030,7104,7686,4972,8676,5842,7977,4677,5565,5683,9729,5544,1436,1248,3876,3877,194,5524,4356,1388,1913,8,2092,3030,7793,8866,6889,8499,4225,4508,8833,4625,3642,9077,2814,3517,1559,5561,2606,774,238,6397,272,4904,2400,4610,8469,6123,8845,1023,895,1292,9240,6546,6187,5418,3850,7841,8993,8148,123,5942,8161,3491,5643,2718,329,1672,7108,5717,3810,5708,77,5469,6022,9477,2388,8528,568,6668,6048,7306,7263,2912,9188,6942,7904,859,5669,4781,6684,9270,7594,65,5595,9819,2761,1746,7092,2898,7622,4113,1147,2020,7626,3025,628,9080,4217,3102,6639,919,7904,6232,5719,4772,6380,5329,9452,5921,2010,5073,3489,3550,6339,4675,8014,3113,4984,1641,9106,5468,4947,724,8105,4835,222,4977,5505,261,3464,3390,7639,405,7975,2585,6245,8736,8258,1644,6699,8195,4087,3145,6423,67,7261,3538,3456,9133,5089,7732,2315,3529,5372,6979,9236,7016,136,2070,4227,8774,9200,5035,4283,6385,9526,255,3395,1628,3674,4377,3908,8159,9172,6839,6993,5656,6637,7822,4311,4301,1230,5824,1455,4311,6831,8168,2409,937,2956,1061,3774,5890,5615,2144,7357,2389,7427,6845,7200,4507,5331,5828,628,8413,88,8232,3545,3776,1088,2184,3352,3346,5356,9376,784,9306,3253,8380,2710,2399,3576,4807,7669,3742,2040,7562,2634,8685,8563,1556,3663,1378,6006,743,722,3913,3408,2317,7847,9599,5079,8709,5283,6063,5837,5971,595,3070,3929,977,8116,7458,5679,9932,9323,8699,4452,7465,2288,5484,6651,2444,8140,2124,8423,9401,4249,5714,4752,5931,5389,8512,9471,3701,502,16,9498,6064,4481,4657,5356,7134,8193,1834,9766,3727,160,6273,3535,5077,2798,6581,3461,7052,395,4739,1545,7897,5668,8486,3448,1190,9346,5747,384,4659,6027,2543,7122,9950,2767,1769,2226,4571,8529,1283,1550,2706,244,3036,3884,6827,4035,5245,7259,6840,916,8762,2836,7345,6428,3340,4548,520,8730,2098,6114,5000,9698,9089,8359,8082,1127,2266,8171,5519,1728,8123,6547,2241,7143,9968,9738,6142,4025,8769,7865,9698,5458,1596,4531,7007,3380,5341,7688,2721,3241,8053,6491,4864,7721,7631,7494,1229,2066,9619,1611,1807,4207,9648,8143,55,2325,4170,6211,4958,6118,7835,6589,6062,6421,7485,8274,43,1535,7813,9452,7834,7738,6150,582,138,1070,6046,4757,3828,8414,2001,4613,3578,2613,5869,4611,9768,1455,7066,7600,5943,2381,3761,8023,8467,8234,1325,3036,9860,3768,3404,8051,8109,620,7462,1192,9993,8655,4175,2864,5872,4106,3409,371,6904,2343,4228,2446,9250,6397,7810,5614,8228,5703,581,1615,8750,5993,1275,4865,3787,1054,9102,2614,586,6770,6896,7073,2521,1311,883,363,1432,2784,5666,6767,6656,3758,9260,3482,5666,6370,3733,1009,5377,572,2204,2870,8591,5535,447,1833,5419,831,5081,8805,4123,6273,6679,8458,4305,5349,2984,9366,5368,4263,4530,3819,6336,9286,891,966,662,4774,5266,2039,6510,3451,2273,2794,1409,7999,1102,8193,1612,3420,4778,857,3343,3190,5561,7668,4551,3801,6865,8711,850,6521,269,2051,6946,426,6972,4013,8594,9955,7172,6651,4837,2340,366,6902,6931,6487,6627,5983,8076,6875,2199,8175,3514,4601,7854,7978,5797,7627,6535,2522,4434,842,1521,8523,8459,3152,9538,5543,6839,2766,3210,7254,4964,8000,6657,7252,1014,3899,9334,8504,8428,820,7926,7474,930,4548,6965,6381,283,2742,1856,4440,9098,8826,2272,1321,3233,2314,5629,2195,1316,4513,6590,2304,2450,3529,5893,4987,7015,7793,3466,6208,6174,498,8604,389,9005,6193,2533,7864,5414,468,9695,5026,6772,1491,2941,444,9611,5363,1553,427,5949,1304,8062,5086,481,8913,9566,9203,2982,7598,7670,4848,8216,6854,8568,8891,3816,15,5470,7839,1544,9318,1624,4106,3327,5771,3643,9302,4606,9150,1814,3876,2453,7006,5725,6116,2797,8638,8844,3798,2909,7818,2805,3667,4756,4115,2858,7365,6780,1562,488,9861,5420,1213,5093,3989,9163,5464,5062,2036,6153,9725,7997,9107,4914,3091,1668,969,406,4438,4198,8391,9327,1998,1734,5062,2570,9351,6570,2855,1145,2792,4515,8461,1218,3268,3007,6695,4989,7970,2764,3440,6590,3278,932,97,8351,5563,2147,8229,5449,1260,3909,5022,1992,7567,7290,4568,2813,7232,9535,4048,3473,8425,7095,8135,1542,9115,2726,8552,5077,6043,9779,4954,5702,5084,6023,7184,843,9847,3715,2310,2334,5717,1479,5362,1191,5190,407,2173,4472,2763,351,1806,9792,5574,2560,731,1431,4281,1280,2880,6885,1456,3774,8767,3561,2815,743,7671,1709,2998,4672,3635,1546,2548,4971,884,8318,5827,6057,9021,9833,7945,5896,3612,8321,6893,86,7036,2564,635,5798,5903,5869,9845,9281,4570,3488,9878,9133,7571,1830,7158,2901,4830,3904,9245,6757,4991,8221,2257,1382,9667,7769,7894,9689,1526,3321,2653,9426,627,3808,4790,9393,8395,2058,9002,6154,3886,9204,2147,5810,5734,7085,6874,4603,4581,2644,5732,6574,8433,6773,4027,1129,8865,2851,590,2120,4717,839,4090,7860,2044,7299,4117,9201,3063,4219,3451,1166,1329,7821,3720,4716,3331,2085,143,2732,848,1894,7856,8505,8335,587,7879,8041,216,9281,5345,7267,2912,3993,4758,3091,8495,9615,899,8804,8306,184,5611,3094,5975,7798,5615,4284,7369,3831,4614,3585,2683,4348,3525,5224,2372,224,291,6565,6492,1087,6421,6805,3093,6130,5057,2803,9224,352,3472,6638,5532,1138,9900,7402,6799,1474,3881,1378,3288,7432,8965,983,8980,5692,5796,7980,4208,2702,6506,4393,3012,2616,6586,9995,9794,6209,4484,1982,1344,1224,9802,5555,6599,3716,1097,2446,173,8335,5052,5263,4899,9281,8709,1235,655,9453,7454,3237,9611,4059,6413,4260,1916,4609,4728,8528,2767,2876,1658,843,6275,1046,9110,8147,8667,9254,4624,5301,942,1933,760,9540,9152,7829,5041,8504,6439,2933,775,7888,5224,4054,7266,9398,929,4154,2360,8666,2536,4393,2826,1790,4821,5701,5792,1270,6068,3020,7857,7949,7942,1270,9083,9131,8858,9735,1821,8748,8111,792,3816,638,6217,4561,6636,1283,4932,6079,259,6233,4295,4333,9516,9829,6159,7041,8086,2569,9542,4796,1022,7702,2236,6804,6791,6116,4184,4180,7671,3723,2959,1618,6349,7518,8737,2400,665,8356,9721,3068,600,4937,5357,4187,4233,7831,3718,2491,6148,4997,7134,1945,9812,5507,9876,4249,7568,6990,3914,4223,713,4489,75,815,336,7265,6320,2797,6061,7595,52,8377,8521,5537,7731,5281,8982,5137,664,2531,6250,3467,8451,8101,40,5052,3535,4160,5435,1122,5120,2075,8184,9796,5929,6451,1949,8902,9356,2534,883,3882,6650,1359,1525,6689,126,885,3118,6285,256,2422,4378,9968,7974,693,3949,4696,1052,387,712,4752,475,9082,9457,6094,7564,5621,133,9410,1767,9622,8901,9182,2006,4609,4947,2765,3912,3190,3454,3263,6111,3039,1717,3476,589,5048,8856,916,3417,4076,7430,2816,3547,4498,4847,1356,5238,224,938,6512,6600,1579,3459,669,4184,1453,6849,1570,7523,3560,121,2275,7899,1853,926,2369,3592,758,556,1069,4785,2293,6754,1735,1557,3849,5117,7228,1612,9410,601,9476,9123,5485,3341,6632,9785,1258,4819,2221,67,6276,701,7884,8031,5426,995,1256,7026,3364,972,8224,6409,5253,1384,9458,3629,2057,7233,9276,6507,461,925,7286,1437,5381,9498,4230,9710,7308,3192,3057,3760,5361,8412,6949,4927,6545,2308,5326,694,2465,977,6530,2536,5120,8016,9971,3730,280,7692,4440,9677,9518,329,192,5193,9705,6255,9952,770,1328,306,320,6092,757,2254,5966,147,1471,6202,9681,6609,4140,4892,5941,9533,6047,8591,3120,1771,861,1571,2034,2907,9363,3690,3433,2221,454,2905,3207,1559,1575,9682,7128,8942,5537,9796,1073,9264,8650,4226,6083,7661,7971,7646,9487,9557,2413,6845,1133,8062,8258,8961,7554,7067,7906,2068,7495,9430,2201,4282,8164,7755,1857,5771,6876,3077,8022,2697,9736,4691,2632,601,6174,9977,8470,1815,5180,415,7826,7066,2261,3851,8876,387,3324,1442,1457,1519,5298,5843,8128,8601,6861,663,5218,3458,8639,6438,8034,3698,1672,2129,73,3675,8508,9201,1060,5463,2689,9785,6493,4325,8108,6415,2320,5692,4448,8585,435,4162,5130,653,6476,2251,9814,661,7195,5480,3027,2748,4986,3702,9507,1812,6571,5558,3393,6019,8106,5946,4785,6325,6956,4619,8478,2019,1354,7101,9172,8879,1330,9015,642,4144,89,1470,8503,4077,7741,7434,4984,6080,6532,5953,3595,592,1867,3607,2144,9372,7868,527,7529,1605,9775,6433,5508,200,8068,9659,8316,2199,3939,2104,2924,4681,5666,3557,1306,5691,2855,6393,5207,7489,6121,493,4215,2149,2063,4361,3803,1247,2904,3348,8340,1672,5749,9444,7701,4517,8671,4617,2979,8224,7180,1586,6623,5345,4413,4201,2829,2917,9088,1400,3631,1787,2524,8130,5396,8088,912,636,5603,9935,847,6948,2618,9088,9409,4562,4990,8140,3241,4613,7834,6563,5582,5762,3744,7199,6484,1353,4989,4711,2756,5211,7399,6003,66,2372,1728,5831,7564,4040,8242,4872,9478,6144,5881,3151,9781,5103,1378,4340,9263,3655,3470,7252,1537,9987,8870,8671,2841,8494,1924,6065,5995,4782,4478,1976,7392,5555,9426,5566,3122,6717,5892,4361,7773,9706,7896,5262,9224,7462,1047,8422,2378,4266,1159,6408,1659,6637,2937,170,5433,2241,16,9063,2141,9341,5991,8933,7054,6056,6777,5924,80,8611,5581,4145,4071,7873,5938,8783,4050,8013,9893,2998,5212,449,4375,7231,6345,3507,20,1554,8149,1982,7990,3697,5746,6943,7035,975,2249,1309,9254,636,8748,7436,8811,3321,7473,1882,8032,6603,7007,2717,9851,7626,4621,1906,6602,3595,8284,9994,3566,6435,2990,3830,9888,3863,9216,4998,8501,9582,7690,7498,8602,4530,1339,6593,6628,1997,9525,1377,6860,9796,572,189,8831,920,4580,6191,9989,7599,2403,8029,6755,6956,3990,4244,5661,1418,8955,3289,1814,7740,9945,5221,1990,7613,7990,9564,1172,6729,9131,6194,2556,4381,1104,9125,3423,5470,8389,1140,3001,5334,9019,9507,970,5257,1990,2690,8769,8034,1308,9609,3960,4877,5451,4255,7018,1392,951,9080,2072,4073,6576,3389,9451,5620,2138,4433,6446,2356,6583,6178,6988,5165,4046,7801,3053,400,4898,5819,7366,82,5499,2381,4452,8299,5553,2233,8520,2650,8883,8300,8811,9549,9172,8861,8878,7145,9,5448,5171,4785,7620,8983,3504,9866,2598,8226,4198,422,5494,306,5004,8564,39,9422,8372,88,7666,842,3619,6560,7685,9492,4073,5184,6321,1103,3651,7796,2148,9855,8074,9268,7191,3959,2141,3589,3703,6032,3820,9663,5051,1537,5395,4437,1974,2781,5897,6610,8755,9371,480,5702,6459,2365,2760,860,2179,9219,9927,9252,6507,702,7504,6276,2340,7594,9793,4999,9988,2081,4925,72,4180,286,6361,2831,8878,105,5492,8768,6312,1120,8956,8581,8417,7960,1070,4733,5310,6567,8718,9820,7172,9601,3724,8647,4771,8612,2645,8042,6926,7865,6561,2033,7126,7335,2560,4486,7393,1424,4491,7777,1047,6988,2703,7828,6672,1662,7430,9014,9767,8733,8009,3130,9765,851,8233,4923,9738,7804,4983,9391,7270,8038,8428,8427,5490,3313,2138,183,9189,7666,1375,1874,1973,3103,7307,420,3549,9147,2170,4839,1541,1020,9836,148,5346,9092,2549,249,54,462,9974,7718,2436,9959,5552,3330,647,9985,231,7017,4767,731,9104,481,9560,4969,4873,3183,613,3165,6228,1613,8458,9487,6110,1090,5339,1220,4438,6650,5749,5428,4995,7260,590,1456,1841,7633,9265,6118,2387,8783,8432,1628,5507,737,569,3695,3252,2282,3167,1093,5635,3582,9830,7798,9591,7547,1292,2972,3550,4291,1605,6448,1727,7892,8823,118,8972,7840,9622,6647,224,8244,2141,983,4277,7663,9155,8688,943,2070,1973,8473,1721,8322,7639,1560,9180,6543,2373,100,1801,4239,4935,5678,1817,4498,7228,4044,9726,2378,9198,6444,7301,7954,5284,4114,1787,1616,3939,7643,2696,9573,1358,7034,4079,4508,8828,914,4985,6505,346,7572,3097,9966,7962,3247,463,9069,7431,1278,9268,4516,4150,3552,863,3578,5505,3823,8134,3655,6308,9442,4644,9749,2552,2625,6476,2468,5967,393,3132,2285,1138,9074,4169,2408,3212,5518,4732,1310,2563,9196,6668,6320,4555,6480,6415,8599,3329,2230,4842,9883,3753,6980,9623,772,7426,3180,9813,3182,4228,356,5434,9778,7374,9596,671,3097,4305,4877,5147,8814,3054,5603,771,8436,661,6450,8103,6586,4101,2235,4001,7774,2461,9537,6746,3011,7881,4015,1178,2534,1515,348,1628,1330,9747,8209,6574,6888,6162,4492,20,9937,131,3412,265,4687,3021,7759,6256,3488,7210,3471,210,1509,331,2522,1006,8376,1063,1436,801,8106,2396,1974,6947,9637,2922,1094,7758,5532,8399,3321,3705,2576,4272,3618,2846,8158,3342,904,1795,5981,9088,7243,6380,8115,3752,202,5770,687,208,6084,6840,9843,2777,5303,7613,1275,6693,8863,8663,2913,825,7833,5331,7490,5471,8071,8626,5018,2832,7578,4273,721,7419,338,6668,4395,4455,5564,3332,2869,7324,9582,9083,3567,9989,6471,4176,4132,6467,9442,4794,6116,1752,5278,5049,9315,2133,7337,9836,8825,9303,5849,6980,5577,7676,1427,7269,3593,6945,673,9804,3125,3562,181,1850,1375,531,4662,221,2688,9290,6416,3299,9975,4202,8720,3365,4308,4645,3087,9659,1702,9659,341,4361,3564,6505,9639,1142,3161,5473,4742,2351,1042,9227,512,4182,7958,2631,5596,7268,7286,3685,1316,7492,4437,3275,9902,1895,9207,7034,8048,6070,7273,1543,8938,5827,7908,5145,7810,3217,4764,944,3402,634,1310,6086,7391,9904,9272,245,7179,3786,5688,7970,3521,8770,2188,2285,7667,6453,4653,6953,5829,21,7839,6054,3599,5435,7411,6263,4068,1802,2054,2009,9009,8112,4496,4688,3643,7627,2291,5169,185,6807,8580,2195,4628,2668,2041,5326,3057,8327,7056,9751,4081,6420,9814,4291,2569,7406,8576,733,6339,5177,3479,3005,3385,8365,873,8781,618,1277,9300,7665,5760,2376,1182,1692,4533,545,1887,9551,3116,7755,335,8668,7029,9787,3227,2918,5973,5237,1378,9477,7193,2599,5431,8461,7420,2088,1070,7722,847,182,7917,9120,1682,3215,4262,8704,8139,7927,467,3147,5875,4002,9836,4386,2269,2943,9191,8004,5561,9817,4045,9547,2825,5375,2979,3014,5900,2903,4863,8287,2004,254,488,7243,2384,1760,1175,5796,4499,9180,6218,7030,5851,327,9924,7054,4141,9112,7239,3198,9812,2553,1745,6316,4956,9186,4776,8625,1624,571,9558,319,5061,3797,2542,8390,1986,4595,8956,236,9627,3997,2241,6911,6690,7503,4350,5338,123,5329,9828,7355,6155,8274,2407,5387,1976,7793,5170,9,3526,6981,8762,164,9518,4464,843,4421,2218,6233,1178,4036,7908,3979,7539,394,6470,4270,992,1322,8280,717,5163,1180,7089,7214,2662,860,1636,6442,8423,3242,5581,5487,4216,3228,1818,171,3667,5852,6887,5339,1074,4254,9512,4295,2675,9610,9082,7822,8184,3520,1378,577,4895,5381,3853,5350,6643,3287,7876,1315,4168,4686,3001,4193,1894,4977,2495,1179,8145,3085,1834,1963,2300,290,3978,6082,4688,4793,5601,2469,9319,6280,9084,7116,5378,470,4540,4000,2713,3001,4969,1288,4175,5706,7468,9808,2052,1595,3334,37,5597,6996,4798,5068,4492,776,51,2285,876,8219,5621,7509,8741,6537,4689,3876,9770,743,9317,6145,9088,442,4452,3196,2750,1581,4690,521,6856,8469,1238,2645,1734,5405,5440,2782,9614,6573,6203,6824,4472,2728,5709,9422,5508,4994,5398,4789,9467,7241,5865,9512,7449,4533,7002,9406,8915,124,3546,6485,1804,6634,5258,5106,6055,4234,4921,8890,5288,5251,8630,3747,5704,6023,4604,2654,1815,5649,5028,9259,9516,6495,7190,8014,3546,3500,7726,1337,3834,1566,453,553,92,6525,5397,3272,9597,8741,398,6146,7137,7061,7026,1202,2570,3564,8311,749,2708,8514,2863,2924,1798,5846,8634,1057,4952,1619,8894,500,8303,6380,9545,54,9510,807,5021,7766,9118,4656,9050,8837,2637,9104,8027,6456,9365,246,9919,459,2214,3442,1264,3447,5386,2301,7756,9600,6927,3620,504,5372,1220,8111,6821,2312,1506,8088,1549,5632,5828,9669,9320,443,2129,3746,3929,2547,5707,95,1515,8863,1291,9518,84,1631,7730,3773,5262,4383,9179,85,4095,514,6728,5136,5536,6993,695,213,914,2506,2512,2492,4539,7361,2946,3964,6841,5198,3842,5206,9734,8908,4628,723,4116,1258,5567,7542,7834,2565,870,5392,5073,4402,2885,3405,2791,6861,4876,4191,1352,2757,950,3656,9936,8925,9986,4606,2358,5079,3430,7974,2273,4641,4043,6791,2068,3477,3283,8018,2027,9813,5026,1800,3544,9902,8484,3612,7940,4562,9638,4030,7429,6646,6976,7297,7451,7099,7412,6339,8514,1023,6038,732,5015,8168,4726,6480,2400,2601,2078,7344,3675,8312,952,9391,6370,9021,5208,8285,3622,1477,2203,2511,8164,2329,3160,847,4680,8115,2819,7458,623,2054,1256,175,2696,5552,2821,8105,4285,1460,2578,4867,6912,1281,4468,9707,4929,8095,4415,4298,3934,8763,2534,2846,3510,2807,6551,1141,470,68,8409,1226,816,9094,2097,4973,394,9281,8805,5978,8487,1639,8507,8960,6641,2263,4259,4920,6323,5992,6892,4292,7580,7826,12,6823,9232,7108,4371,6853,2209,9499,8129,6184,1173,8388,1069,3859,2277,3951,4798,1138,9018,7055,7546,8252,9800,5785,4527,9505,285,7724,6102,4264,7028,8019,4738,3858,1233,1171,4188,4062,6687,8984,5217,4559,8663,6952,3915,8425,9878,9933,6312,6705,5271,2194,4032,293,8229,2904,2928,8817,41,1396,6002,5641,9255,3086,5963,180,3608,8371,3696,4646,5520,4484,2820,3665,7770,2968,9019,7531,7808,2391,9641,9884,3034,3174,1605,3841,6877,5148,707,6073,7906,1288,1774,789,3207,1974,9646,13,1307,8388,7755,431,4797,1478,3124,7831,8588,5100,6733,4553,4709,2017,9539,8495,5910,2779,7502,5962,7625,859,6305,8749,5314,733,7626,6197,6065,4097,7314,3001,8533,1363,6216,5799,9387,9043,8397,9781,5121,9164,3429,3904,9480,6079,6482,3964,3870,8957,2738,4649,9015,2538,2211,6738,4434,649,3433,5184,6545,6037,1695,8936,952,3291,581,1809,5868,2196,1962,6589,1814,6835,1469,35,5866,2301,6287,1571,9618,950,9466,3864,2155,137,6503,6904,7886,3216,1435,9420,9722,3609,3185,5592,6283,6975,5020,1019,7193,9742,4345,8072,7045,4682,6691,8977,5252,2882,9155,4923,7273,2353,3919,389,5415,7609,1755,9213,5555,3602,193,7308,7903,9572,9530,5537,6121,1107,9771,1756,9551,6819,1323,4348,3493,8,858,8992,8660,6856,2607,6165,8798,2427,3207,7813,6489,4647,574,5470,8774,6011,7421,5225,8986,3015,6780,6466,7558,1906,2940,6629,762,7864,5865,2730,263,8351,7761,7498,3190,6531,4781,9171,5837,3944,5628,2776,2495,3503,1542,4510,5243,8529,4344,7292,6793,7691,4087,860,9922,449,4731,7090,1430,4448,9039,6666,3671,2320,9835,6399,9351,4679,6590,1924,5369,8254,9977,1224,4055,5638,694,7562,5335,9438,7212,1788,4379,6928,343,1515,6905,3474,4461,9193,8699,8382,1687,6633,421,4863,1537,2348,4150,1004,7019,8328,6349,1258,5861,5814,1940,7776,3611,1314,4458,532,9499,6500,4718,712,3238,8739,5246,8251,2194,3195,1370,7262,3015,4707,5571,1463,835,1380,8886,7291,4829,106,924,2762,6575,441,985,8281,3127,7023,1332,7297,8371,8281,5287,8475,1060,7660,1537,3432,7316,8294,5776,8456,4616,5164,5149,7442,9687,1247,9223,5004,1023,4717,7054,4182,6879,197,3299,4711,25,1482,8034,256,4004,652,2876,493,7206,2875,5024,7198,4025,1352,9238,5701,5244,6170,1145,7951,7113,6582,7978,1520,6464,4292,2215,4772,4641,7707,3817,1738,8438,2404,5055,3043,4666,5900,617,5073,3316,8948,7255,4356,6407,3415,8753,9549,1939,1282,1437,9171,7832,8746,3588,9284,6775,9259,4890,6393,3120,933,1967,9194,8612,3719,6038,5854,9412,8963,5710,3377,599,3226,2260,5612,1636,6673,5235,8195,4983,1332,7566,9855,2074,6114,6025,2590,3638,340,9378,7609,4051,7447,9023,619,9274,7193,1242,8340,9461,6915,2217,6908,7709,2006,1560,2096,7893,9842,7718,7375,5207,4798,168,4380,5251,3983,2430,6700,1507,4993,7396,8240,920,4922,8038,8747,1762,7375,2464,3385,692,4753,7731,3079,2140,9099,8572,1952,636,6326,6484,1104,7315,7034,5167,2796,2058,3319,5776,8555,2537,4888,8270,8776,1737,3684,2800,6928,1038,4488,7664,559,382,5373,6679,7170,7057,3021,7453,2461,9250,7879,6302,4641,5445,7539,7046,6400,523,4139,5732,2635,3315,8977,3705,5948,9089,4099,5762,8602,7723,8393,5190,3350,6362,7612,9153,458,112,3330,8436,7779,6325,1794,4081,4563,9730,3623,9914,44,6840,4500,2980,8277,3084,7300,357,3409,3001,5551,6764,1575,5304,80,8936,5201,8343,2162,4440,5837,2795,5963,7410,7077,3509,5149,3511,2855,5772,8220,710,8725,9000,6918,8308,6665,6901,6489,7512,3990,1458,525,7780,7260,5545,7573,8395,8118,7430,2852,2430,4342,8818,1484,6108,5781,9513,5580,1146,5437,9153,6906,5455,7529,8331,9264,9506,6321,1019,2829,1182,2377,1788,5450,5348,941,7930,1126,4436,3722,9316,4096,4286,5226,5911,4574,4964,1660,9207,1085,3719,1998,9592,4000,3948,2162,3131,4185,5840,7883,185,8579,2992,4729,7011,5450,5906,1808,3686,4894,4897,5295,9814,3928,8739,9465,4190,1002,7309,1484,1995,640,6211,4041,3068,7084,8034,9294,1482,6999,2226,3229,3995,8759,1368,2352,500,1348,3584,5692,8986,1101,8701,9057,4354,1820,6458,8831,999,3205,1525,3183,2489,345,2855,8910,6331,9876,8932,6050,7547,1209,9837,7777,580,5137,4295,997,7396,2208,9768,5362,7552,316,2617,3814,9394,8140,7535,2717,1298,4501,4469,1674,6347,335,2411,5558,9968,3125,4704,2048,5216,2217,5164,2721,3879,2255,4371,6986,6368,8410,3023,6605,6387,9576,8981,9721,7492,7669,7348,857,3081,4333,9197,8447,5764,6267,2097,9998,8103,2180,5259,982,5639,4636,9801,3079,6364,9384,2239,3081,2833,8274,4020,7930,595,7912,2983,2372,8449,6025,9327,5932,8702,7850,7645,2515,5183,1325,3027,9490,712,3712,2259,9557,5580,5875,4917,3893,1044,6873,7019,9778,1028,264,613,3297,5156,7754,1610,429,3379,9389,221,2593,4952,3783,5953,2571,491,5490,3620,2201,5397,6970,5784,7199,6176,2416,9340,1430,9546,9735,2329,404,4037,7503,7266,2799,1689,7043,4685,6144,9139,1362,6662,1933,4572,5551,5803,9752,6364,1930,5236,6662,4398,7046,4461,7122,1425,562,4223,4370,3010,9750,7112,3536,1599,8133,5902,9996,2053,465,6492,1243,6557,8448,8504,8826,1810,9165,4870,8879,5604,457,4586,7342,9851,5293,9868,5974,621,619,7078,6737,7734,527,1893,7421,4227,7037,6292,9477,3964,1397,4278,3274,9872,1429,1461,954,9422,6972,2486,4115,6728,1071,9373,3228,9988,1265,814,6426,9900,8853,2290,7755,7201,4462,8266,9273,2051,8187,7800,9315,64,9208,9090,1274,9956,6682,9592,1166,8823,4437,3228,1321,2134,5485,8133,4464,9490,5566,8926,6642,2465,4800,4903,4633,7487,8787,2189,7218,67,1380,4357,6601,1141,9155,4653,919,4795,5548,7018,3308,78,4908,441,2782,7208,5577,3998,6162,1829,914,3054,1817,1736,2456,9430,6413,2738,3035,5118,4801,4403,613,8926,6085,880,1350,1996,2888,6070,2055,3082,7096,1682,3993,7919,9016,4637,5236,6611,9742,5473,5766,3385,4047,2047,6090,2711,602,5589,1060,3872,9387,9975,7053,5046,7037,4374,7525,666,5116,3600,8944,4740,4928,5793,5434,5563,275,8015,7458,6142,1001,3630,7936,1865,1837,5352,1978,5332,4955,66,7264,5989,9355,5284,7580,1129,6624,892,4751,7588,3832,2197,738,4108,3485,7943,4998,6125,5368,5196,5638,9526,5591,5253,5769,6968,6721,4446,4704,7366,2887,2777,4050,961,4329,3116,1021,1526,1904,3350,3179,8001,8296,7423,6898,4212,4480,5017,4452,2505,2211,7200,7891,6267,8797,8052,8996,8573,2443,1913,9669,3683,237,2461,7815,6792,9988,2706,9131,3177,6292,6630,4774,9844,2150,4490,4176,6122,4429,5482,3487,9578,3818,4180,1570,3725,4937,9638,772,897,5891,3718,166,9928,3713,2647,4419,3065,6332,2895,8503,4660,8538,2186,1477,3592,9452,6907,5212,6587,1831,3937,1213,4212,3237,8532,1435,1534,2409,9387,591,5019,1518,4538,4076,2733,9460,439,9728,4838,6870,6080,4167,4167,4896,2870,8300,6728,6467,8632,1995,3539,7739,1969,3078,9540,2976,4023,262,5277,6595,1550,3269,6583,3291,9654,8458,6459,8139,5811,5613,9873,7905,783,3080,9664,2633,2198,9754,421,7976,8964,2841,8089,808,9681,8226,1936,4958,596,7460,4412,2046,1089,885,1488,6448,6524,7121,4822,4571,4543,4632,6786,6738,7695,2486,4126,7005,2395,5341,6234,1902,6832,6873,9086,7182,5052,2483,8524,4514,3588,6538,182,9716,3372,1480,4184,9996,4800,4718,478,3838,2299,8178,835,1347,2258,1741,9178,1117,7827,682,7117,3902,6864,2375,7534,2877,1077,4348,3560,339,3414,2868,7882,6100,4199,6030,5846,5889,1670,51,4171,5548,995,6060,2656,735,402,9515,9380,6763,6849,5974,9811,6977,8841,6225,7798,3133,6858,6296,6986,8983,7193,919,5815,9133,7955,1121,6591,626,1553,4787,7668,4906,4619,550,8074,9725,6297,4142,7443,7838,2836,4483,378,6432,6283,6868,4580,6452,4071,2884,2116,8066,1048,5777,7427,8976,4772,3492,3728,1668,9193,1426,2197,3639,2684,4698,6791,7444,6268,5302,7881,2974,8587,7863,299,1717,8305,1712,1935,3387,1119,4353,5075,7171,2695,6325,1603,4455,8998,1020,668,7949,3064,5551,5708,6600,8160,7132,2208,4977,9615,9809,6503,552,5100,3118,8833,5365,9364,5809,5071,7354,9437,2973,9094,8359,7319,5556,1676,6250,8053,543,4910,7099,4158,4048,5726,1671,6181,4815,6271,5692,1629,3111,909,1688,4064,239,3956,4456,116,2237,2038,2665,5702,9935,3357,795,3867,2741,9879,1406,943,6150,9688,7887,5284,212,9440,2981,9653,6384,7061,2045,6049,3286,9744,8618,2476,1578,5930,1509,9909,6367,5261,8250,7875,5918,7254,2020,8547,4926,8086,2859,238,2153,9890,7492,6587,8439,5520,1616,5818,4507,7061,5129,6067,879,4793,6560,3659,2666,7272,1792,2938,6669,6775,1239,2253,8889,9063,9392,1448,1852,7288,3170,4151,9556,7795,3257,606,3722,1791,6155,9140,6177,2265,7450,1788,5046,7014,2868,964,4072,4635,9189,9620,7199,4933,8848,2680,5160,4096,3422,6826,2581,853,1845,3640,1584,3929,3828,5664,8345,3368,1003,716,9745,5285,8347,7135,6320,4733,5184,5356,7096,1407,7906,5147,9764,1663,8259,1434,2174,3072,8402,1994,3452,3907,6806,4932,2327,8469,4820,8969,404,7253,4495,8665,8637,6710,2655,8902,2351,1117,2908,8630,3700,3611,7104,3132,4010,1476,6767,4980,7580,7585,9768,5915,4040,1526,7612,8679,6496,802,1477,6730,9463,4885,6644,6096,3070,2675,3487,7740,7241,4835,3565,4281,1924,4700,2124,9201,2805,7668,5024,9024,3271,6883,863,6425,7719,7253,1496,5201,2228,9456,3569,5005,6818,5054,2946,6530,8860,2709,3504,9222,6768,5472,3023,8109,3802,6718,4175,5252,6214,8004,3632,4343,425,6965,299,6409,5922,7133,5810,2879,5643,2408,6464,9555,2168,8965,9017,6038,6556,7018,4030,3813,9490,3097,2536,8527,4623,790,9945,9649,9748,2128,7439,6523,7274,6945,9121,848,2289,9396,958,1341,5489,2970,4463,5070,7113,5223,3450,5774,4996,9438,4566,5703,387,6360,9969,2683,7694,8377,4344,161,8254,2273,629,4155,9863,3320,8437,4696,165,6368,4052,4160,157,1740,722,193,7046,1589,7791,8208,5684,5312,6543,5205,1658,2513,2652,7748,8760,4826,7593,2178,8316,6632,5578,2835,8302,9556,8222,1109,3275,8176,3470,1738,3436,5962,5962,2365,9225,5307,8880,1809,3721,3392,4662,329,3436,624,6803,3127,5899,5966,9766,7280,6508,3813,1557,237,6987,2515,6651,4951,8815,8081,6105,7465,4138,6855,8102,3548,3461,54,7452,1023,4746,3975,7350,933,1228,2036,9804,3945,2518,971,5546,8177,7281,6412,6558,4072,6315,7560,8063,5744,7237,3927,1692,3877,7394,4871,7797,1531,7283,6478,1383,3653,4926,7707,1947,5080,1724,9334,9404,4788,6181,8758,8353,2535,1396,8657,7476,4803,7657,9973,8590,9367,9492,1691,134,4766,4349,4591,1197,4517,3069,329,7388,8554,3675,8536,211,6893,9900,7152,6653,3934,1027,7300,6573,6952,934,7293,474,52,6850,4135,8648,3972,5839,463,6885,9801,1709,6297,9417,4512,4997,3105,5527,2176,335,4074,1913,7206,5064,8059,2586,1820,5652,8077,5428,7122,1194,490,701,9215,4639,8329,9902,5325,8193,6382,5335,6434,8563,1048,6737,7677,1101,5824,8804,7421,8012,8314,1088,3092,6905,1481,8677,9556,4460,3083,5418,9354,779,7468,6776,995,4068,4274,938,9562,1015,7245,5221,4602,2,2303,904,1559,9281,5716,5714,5984,5195,2773,7674,2077,9779,7786,8430,8617,3753,431,748,3377,8564,704,4034,1425,6128,6490,8195,7268,6169,6816,5958,2438,9984,8923,9010,7846,9168,9140,5245,584,5860,5171,3499,2518,8322,6475,709,9579,9184,1832,5038,5268,4609,6255,3139,3408,3374,9879,3447,2107,2460,1660,1167,184,8804,2923,2265,7828,7428,1669,2764,2153,8929,8093,663,2346,7122,1712,173,4858,6878,3163,5787,2453,4584,2771,1698,4739,547,2660,3061,5635,4418,9186,1002,3973,3626,7554,6988,6810,243,9836,587,5500,3265,3146,6019,8196,7257,9457,4446,1078,2342,4009,711,4121,2562,6896,13,2105,2870,991,3671,8326,4497,7700,8910,6147,9991,4609,5316,2917,8246,5849,416,9283,9990,6581,5959,8512,2093,3690,9457,5593,5657,7566,9881,1953,8829,6458,378,4045,6669,9179,4726,9523,5604,8247,6774,8559,5046,3670,1697,2816,7226,7362,6107,5865,9071,6745,9266,9883,8466,7408,4300,4787,1602,9405,3960,7751,5642,6838,218,1707,545,1977,3746,3931,4992,250,1847,9268,9,1423,6054,1107,5800,9401,6355,5337,2971,5479,1435,727,7867,9126,8668,1176,4494,9142,8335,1582,3269,9523,3264,5838,5058,5624,8891,7031,2072,9126,6300,6138,3005,2320,791,3809,4647,7129,7358,5914,5787,1339,9752,5902,1141,190,5107,1968,6035,8384,580,3119,5421,5050,3625,8582,5388,611,6925,5811,2136,4928,7535,8613,1288,6893,1693,7808,2190,2070,6649,6728,2551,2683,7281,226,8944,3754,7961,8946,3534,6654,4915,2292,8122,7303,170,4068,1817,1702,565,7613,9055,916,3369,1746,8442,7163,8136,3249,1367,6101,792,6542,1316,5013,7242,3558,4873,2073,9372,2116,2657,1714,3098,4755,1192,1785,3884,5070,5845,8883,5888,7785,9929,3333,5447,9586,8543,6560,4513,6242,9698,9377,8253,2539,5711,8375,4866,6923,3416,9128,248,6541,3602,2000,8096,1711,3353,7064,9555,2211,6511,7110,4288,4443,3315,581,5983,3697,9911,7169,1007,7214,7443,5264,483,5792,5015,2796,1549,825,2781,6573,4486,9205,8026,477,8286,137,3459,7050,7504,2428,5031,9110,6818,9557,4572,5595,168,1923,6416,9172,4724,189,6272,4450,2454,1469,4523,4193,8699,8684,8946,4131,5173,9380,2660,3741,7795,6506,1458,8580,5120,2585,3938,1689,3088,3891,3505,687,9462,2177,8434,7935,2616,3133,3843,9059,1097,2797,59,4182,6800,269,224,1037,7537,6803,5568,2802,6385,180,6205,4559,6102,7360,5532,285,3460,4265,4217,9792,294,2017,4472,7488,6444,2319,9465,3261,4739,5271,2275,1457,5973,9358,7009,5542,2943,4264,9151,6467,7916,1074,1340,3084,7154,6760,9536,1381,7096,2634,8028,8805,9151,6562,3342,8560,8170,2136,2646,8603,8212,7468,8667,7776,4945,2753,4094,6021,9249,3360,3962,1692,859,3020,6170,5329,102,3554,610,7062,9103,503,4945,4543,7294,1982,5206,7619,5403,5501,8901,2874,3980,1432,6073,5923,9346,4907,4455,8044,1112,9786,412,596,457,5870,5981,5702,6709,5256,6285,4851,5772,7616,7745,991,2474,5244,708,2695,7696,4231,389,5528,1690,7310,804,8818,1619,9544,6811,6768,158,2955,467,4538,7794,1060,5358,1629,5200,3044,7069,7277,797,6774,9007,8509,749,815,2666,4736,1664,2858,3128,9550,2266,3869,8380,4072,2895,6254,3630,2911,8477,5746,5764,4824,7339,2511,6713,8258,2817,6795,9365,5582,7274,2830,5782,8240,8212,6674,2744,6197,4139,8539,883,3661,8920,7471,3467,7091,2678,700,5924,1103,3640,8517,3037,5135,6287,1090,3164,7821,8939,8368,4836,3967,7345,3084,7148,1135,2709,9762,2879,7892,2731,4192,2874,9006,2901,391,4804,7332,4197,3609,2495,9496,4925,5972,993,9937,1575,3350,6184,7418,3925,6067,8954,7211,6999,3786,8722,7837,6333,2257,2344,9783,6726,1733,1267,2089,7502,263,5104,3356,492,5254,7057,6300,3136,1160,2961,9304,1995,1064,1387,202,6803,3836,3284,9761,1807,3438,9207,6875,696,6261,6478,2991,7756,199,6542,3500,9754,6012,324,5018,8283,8649,5767,3763,2313,7954,908,6248,1885,6857,1951,1662,5404,8261,6051,3863,1246,4494,8987,44,9623,3394,6816,8562,2389,4614,7909,3907,5055,8316,8609,2684,9803,8080,7767,3945,704,5371,9759,9924,7057,885,7837,7310,7366,3440,7,5414,7592,8554,3411,3184,5436,4769,4410,1378,5275,7565,2662,9181,8952,2667,3139,3788,5466,6800,3485,5676,3794,9781,2017,9113,7754,104,4267,7187,3843,8305,1774,7710,148,7022,103,4189,9413,1638,6951,6859,660,9632,5716,312,5516,786,9711,6871,4371,1894,618,7358,8524,8619,4462,1816,7529,2658,7317,3154,1967,71,213,5556,4187,3363,5600,6763,6920,8642,6524,1035,9908,9688,1492,9746,438,1503,279,9091,9205,8997,4965,4290,9116,2027,7899,6057,4471,6191,1339,853,7490,43,735,9578,1415,2466,4003,5148,8670,692,3887,6798,4839,10,1026,9953,3806,9694,7609,8758,7140,3173,3189,3313,666,7460,819,4967,3242,611,6264,3646,3841,6937,984,6437,242,8493,7104,7667,6997,842,6435,3154,6499,3049,3744,8257,3190,5949,9875,3469,4617,8796,4227,7195,8163,401,6784,1912,4567,9516,9517,9641,9846,8670,3472,7738,249,4956,4987,6050,8624,3625,6619,3705,8739,5330,126,1692,4657,3431,6409,6385,8000,7053,6183,9366,789,6819,9651,458,4597,8871,1090,3564,5327,5116,2804,5591,6312,6816,5987,5656,9736,7464,5962,2728,1976,8834,4312,8833,794,662,7590,4719,7413,6759,4761,4782,4646,2884,1577,4054,9826,5844,2348,3787,3254,9577,8971,6452,2730,597,8958,2709,308,7231,3924,8314,9255,3860,4441,5912,1809,8259,502,820,5701,6737,2447,9948,702,5704,49,3361,8040,6635,1897,5837,9793,2458,426,6867,2387,5076,92,1573,1312,2590,2591,6699,718,9346,6478,8870,2093,5643,495,2753,4884,5237,44,5781,5133,4130,4825,7672,3834,1382,3963,3869,2688,3659,3373,4936,5423,7636,8646,677,6257,7463,3449,3891,6779,199,5135,3769,819,4333,9088,8079,1550,5844,9692,3659,3557,1099,2257,1495,287,401,6275,9050,6819,3479,4698,5906,8671,6878,4086,2909,2054,3258,3448,6799,8303,4543,7939,8594,2256,9100,6887,7251,6165,8521,4619,5169,3590,6329,1170,3427,7886,6027,9527,5644,288,1075,8444,1875,1941,318,5080,2928,8458,1795,6674,2755,2610,6390,6634,8899,597,8508,9573,5356,1570,6233,7615,2643,4550,5602,7344,3633,3565,5786,9075,3362,6441,8847,1613,7718,1688,416,7969,7366,1920,984,8966,9370,1101,1711,9066,9111,7443,9885,3392,1529,8434,1714,1770,4226,6577,1355,8042,7050,4116,9431,5345,1808,5417,685,6359,2135,9145,8466,3721,5461,8795,4504,8163,7729,4503,2976,5253,9099,4570,4239,2252,7353,44,3773,7533,7734,7088,3130,4720,2777,2220,1317,5999,6707,5350,2949,363,8286,5190,5267,6028,8287,8194,774,5746,8539,1632,9481,4858,1730,6958,3591,9365,7709,7135,5582,2548,5385,661,7871,807,381,9896,65,3518,4971,6136,8069,5435,6379,8146,229,2317,28,1497,2634,9916,850,4108,1446,5111,6827,4067,7699,2555,9895,2247,2815,3024,8860,7713,6876,8528,8236,9737,9534,9511,9412,2342,4137,7179,5312,5502,936,7276,8074,3220,6453,62,5285,9960,8910,9246,2826,2373,8095,9368,3754,6248,5261,3169,7324,7366,2891,3338,8992,7389,2237,2951,8101,1473,1366,163,9299,6759,9268,3676,2999,1907,1351,8218,20,4927,969,2413,2555,7314,7336,7986,3269,7725,3989,4512,853,4904,9172,5697,8242,9998,1774,3467,473,9245,2635,36,2577,5618,9697,1911,8513,3599,2298,7922,6323,9206,523,7487,9609,2550,2691,2567,4766,5056,265,4571,2301,9197,462,6577,3622,3154,4071,2840,7364,38,885,5696,729,6635,5518,2569,7461,2569,4023,1292,5001,7754,1621,3627,6484,3973,1260,5177,4712,664,3495,8579,2583,6543,837,930,1880,4602,940,1893,2920,8889,7102,2414,5836,9136,7516,9482,5252,4193,8737,9568,6485,5511,8983,105,8065,6640,98,3516,7363,4313,4715,8763,3427,2630,9317,2189,4083,4303,9253,9527,2062,6242,1353,7876,687,3473,1496,3949,4467,7238,7310,6787,9003,2246,959,8241,4675,840,8904,474,3814,645,5054,2986,2473,3900,7371,2143,2864,7432,7840,4249,8046,7757,2267,9088,5782,5495,6453,9542,8662,2325,5503,351,5476,883,7035,3456,1558,270,1186,7195,2622,8472,6347,5326,3845,3430,1832,6468,4376,2484,395,9741,9895,1831,3696,1248,7301,5785,1163,94,5333,5867,2044,7799,3633,3369,7211,7505,247,4229,7526,4834,251,3522,3513,2961,5505,4112,6374,8931,476,9621,941,9027,860,5517,3734,9687,443,286,2916,4519,7671,6351,5232,2559,8030,9542,3357,6886,8651,4494,7366,6057,3680,8625,2425,9065,9629,2451,3083,4984,7098,6204,244,4465,7664,5774,760,7123,8682,1982,5386,9245,7783,9748,3220,9695,4995,1591,6152,1213,8117,7136,1671,8296,2867,7736,5613,7750,8256,191,3777,4024,6826,7470,4410,8469,2220,2864,1923,3471,4882,2638,2271,3974,1150,6100,6271,4994,599,5051,2990,1691,6517,5990,9601,7499,3906,6404,556,7064,2281,5804,1414,6456,2382,9889,5679,19,4047,7660,505,9207,4969,2817,4220,1864,4501,3570,4879,3626,1218,5589,6499,347,852,1127,791,3438,9352,3238,5041,6909,5790,1040,895,5526,7392,2218,3668,4257,4922,5571,2946,9619,5362,6443,1325,2568,5247,4045,7352,8846,3965,146,1674,2516,6357,2724,8871,5839,4656,2329,1197,3226,4337,4272,1629,754,594,5147,6162,6181,9644,8766,9096,4782,848,3375,4033,8113,7563,4945,1663,6411,9144,7503,1116,4183,8374,6812,4648,6108,7880,3473,8513,1547,5653,7869,6720,5069,3286,5039,2339,4447,3242,2502,202,9139,7825,7277,7803,7531,2255,5099,930,4343,6410,4245,5262,2100,7231,1424,4150,7916,6071,7924,9514,9077,6341,1570,9645,3318,5749,8065,6077,7629,4851,3570,7360,1985,2487,134,3273,3795,7406,4824,2014,7156,1383,4454,7942,8171,7260,2310,8075,2682,6684,494,9255,6053,9131,7837,3407,6401,1805,8231,5915,3625,1959,3136,2562,8571,147,2489,861,247,695,8124,7119,1246,3827,2189,9504,2939,1193,6214,4413,84,917,5850,6479,5415,2528,4566,5115,3870,181,899,416,5405,9899,83,45,970,9610,181,732,8303,7018,9859,5504,5691,6222,544,392,5435,1444,8951,146,8307,3166,1027,4239,9436,7839,1758,9386,5300,486,8233,7233,4458,1815,461,3949,3609,3708,621,8143,7964,1205,7858,2388,9160,2013,2771,4807,1892,9086,9132,5247,2752,996,8371,9700,1092,9972,3121,5424,757,640,1639,8059,708,8818,8224,3234,5643,4040,6975,7526,1097,5702,4800,2912,136,2351,1963,7712,2605,5738,1531,1952,6056,838,841,1824,542,5818,4320,3366,9183,7538,6832,4200,1980,6036,8196,3084,4885,8309,1984,7720,9495,4631,1002,8133,1273,6351,8298,9305,251,2059,9132,4752,7379,4462,8111,1364,1869,837,5017,9286,7738,2958,4966,4309,7218,5231,4187,4934,7858,634,4963,5488,2954,4502,565,6934,8247,7148,5738,1384,6058,3460,6974,1301,4903,7662,4559,984,8223,4822,4244,8341,139,7757,626,2962,5194,9243,3424,9371,4775,3621,8417,1824,8000,3741,9143,4779,4419,7922,393,7836,5548,9916,5928,1691,7770,7859,2056,4307,6369,6332,3404,4353,2520,1682,1702,6294,5666,8294,965,8198,7663,937,1498,3805,8023,778,3775,6107,7100,9438,1992,3004,6228,7809,552,9470,4774,8239,9907,7016,6407,2998,1923,2057,5221,8956,326,4261,7463,5469,9598,4850,5334,6161,1261,718,2584,2404,7251,8906,4372,6427,6809,6498,8748,2176,3014,3975,4516,605,248,9964,9396,5874,3429,1959,7439,202,1013,1880,8405,4855,1682,7038,6617,5382,2534,1693,5943,3998,5726,2258,2127,2312,4041,5713,729,2991,7859,1071,8757,8093,5706,3076,2917,3471,9169,4858,6912,8060,1707,953,6748,4793,2190,3695,2022,3790,5462,3830,7288,8771,7423,10000,7169,5315,6901,191,9603,42,9783,8161,5734,5233,6417,8177,3919,2160,9128,5608,2000,5124,127,6068,3894,57,9062,4770,9127,2844,4865,5175,8721,5002,8934,4422,3530,8035,9229,2659,2910,4338,2221,348,821,2339,1407,7762,2790,429,5087,2617,1824,9044,4438,3526,1392,8510,718,9491,3197,3378,2474,2396,4612,5146,1060,8774,783,6694,499,261,7282,8286,8614,8396,8028,2453,1122,2039,2914,3264,9428,8313,8340,1362,2958,2415,5761,8315,3924,5036,9995,4780,6308,1619,2878,4342,374,1729,8998,8651,3761,230,879,8698,349,6533,6888,2100,115,1267,8186,1777,1879,5913,3926,5929,8399,7432,7868,1052,713,1870,5307,1477,2073,4129,6617,1531,6309,1836,5095,9544,1902,6492,9746,9588,3305,267,4186,3770,2621,9351,4159,3534,9538,5978,8082,1729,2360,3596,7706,8518,845,7038,6949,7640,9669,4213,7953,2419,1568,8268,6818,9950,973,4640,3396,4064,793,304,6873,9256,9398,1450,7970,410,8140,5158,4829,4521,5712,6778,1645,6684,356,4514,6103,1576,1771,8110,8262,7611,8244,280,3743,748,533,9397,7357,8600,8737,4036,1809,3237,8335,7089,2851,5016,1997,682,9614,9843,4063,2751,4248,302,9093,6712,3063,9048,6247,5821,986,8346,1545,5074,4037,6276,5733,7847,71,820,591,4265,577,6534,2004,5344,1794,3159,1510,7998,6833,3980,5024,7159,5856,2768,3874,3408,1694,8720,7219,7093,2669,8591,5915,9163,3055,6759,9749,4451,1799,8594,7566,8025,5548,2136,4267,1605,869,1228,3274,2295,9271,4077,2467,7904,9491,5495,7699,557,5637,1215,9525,2843,3084,2519,1824,2640,551,9723,8295,1219,3136,1058,2510,8019,2996,3951,6684,8822,8437,4534,4908,8243,7822,6895,2292,6629,542,2581,5757,8133,1076,2647,5287,1555,2952,9142,5783,6308,3410,856,57,5576,3283,6560,2830,4501,2667,6260,9216,8855,8684,5409,958,8257,8352,5756,4960,456,7416,5769,7337,249,1920,3307,1658,3317,4715,4964,5438,2171,4093,1841,4760,9787,1397,8801,9234,6294,5677,8193,4035,7715,439,9473,3555,2575,4873,6048,5540,512,8217,8549,2945,153,9255,8560,3168,9823,6299,551,6752,5015,906,4499,5688,2611,4759,4772,1331,2944,9170,1991,5493,8550,7160,2405,4217,7949,9394,5854,745,7427,8066,7798,9569,870,7037,365,5408,2532,4008,7062,7420,9808,2377,5092,5881,4845,5682,1215,6072,9335,4595,1758,3788,9652,6531,6516,8317,1498,7677,7652,9928,618,5897,4262,8047,2331,8652,6695,5615,9179,6531,6158,65,7068,8674,2052,5163,508,8027,3644,3817,7281,9475,2396,1072,9278,8607,4972,729,2040,1208,7845,4355,4271,3062,4295,7863,6004,4136,9315,3745,6071,6755,8796,376,4833,1503,4588,9833,32,9830,7476,625,3925,6845,4329,1058,4591,3470,2049,2417,6836,7844,6708,3352,2485,6046,3187,2936,635,5599,6262,9587,8627,7659,5349,4715,1300,6333,368,3330,2714,3058,7900,467,9570,5302,1443,6247,3694,2380,4653,4702,3051,9410,5880,4480,5541,8922,1326,2121,5071,5700,4319,9758,9163,6110,7903,6431,39,1147,4978,7199,3796,8868,561,5364,6484,5456,9837,3779,436,3460,5887,7094,5037,9178,5358,4280,2476,5421,9180,7488,8077,662,7505,5103,6713,6116,5666,8278,5129,8537,2779,1056,793,5522,8165,4919,6753,8625,2511,9323,8319,9471,5650,6963,5318,6773,6354,6678,2981,6201,9533,6289,5864,9048,1862,6857,7881,1723,5421,1684,555,7493,3702,2254,1803,1500,7258,2535,8604,9395,4570,5766,1309,3807,5876,1742,7932,4938,5810,5833,610,4707,8836,4522,5022,8013,7669,3064,2495,8238,4430,2234,2063,3710,2905,3454,5813,5554,2653,5047,9073,6052,6735,3196,7680,6186,6033,2778,2037,7490,3996,1438,1747,3703,9869,6044,4905,3009,4275,6101,7196,3179,9608,6937,9957,7057,2656,6621,8535,3405,5264,4382,4984,1304,5863,5348,7780,754,8910,6568,2245,9710,7105,6247,1679,2272,5470,3977,6241,411,9013,4684,3072,7306,2353,6629,475,7486,9933,932,534,9738,1372,5971,720,6171,9593,8420,1148,6579,1916,3393,2352,4306,5469,3325,9604,7102,8363,4463,8302,763,2974,4645,1783,8697,6689,6719,8710,7166,6017,8210,4808,8553,8708,4516,3798,283,157,1491,1932,7038,8072,6070,4559,7872,6139,7871,1852,3139,5102,4272,1993,8392,1171,4941,5072,746,8951,6900,834,3628,9778,1140,4215,3824,8765,3131,7840,1932,1671,3302,1916,7138,8976,3426,9475,7716,5344,1161,8218,8665,9860,6390,4371,1782,8429,2477,156,1727,3157,3409,2193,4894,776,7670,6040,2949,3958,5144,1623,1707,1361,4269,6968,241,5884,2740,6838,433,8975,5081,8887,6235,1068,9210,5571,1339,3672,8452,387,929,3512,9956,9555,5510,8462,8893,2887,7309,5762,1858,1164,5328,9253,3082,991,5561,2845,116,9353,6392,1467,9198,1352,1754,6586,2819,7483,5665,3472,8477,4013,5421,8841,6583,5955,665,9715,5239,1197,7540,8254,5255,942,922,3410,5470,4862,8819,2677,5499,776,4797,9557,7270,1752,5863,2263,6086,3945,7388,9849,1398,8537,3547,6481,6246,8725,2540,5606,5945,4450,1071,5920,7256,5302,7426,9125,5710,8572,6110,2385,2099,2822,6108,3529,370,3180,6108,6279,4268,5985,8876,3682,6394,1803,6210,9450,2993,2865,5799,6410,1339,8145,1764,4197,6022,3377,3104,7031,3287,7060,6132,511,6382,7216,3516,2252,7109,580,5950,7055,197,9939,4995,9365,99,5017,9811,1132,6904,2053,6153,1286,5231,2935,4745,1277,7476,808,2674,2112,5547,1225,4666,6997,1568,5692,6366,256,6461,4749,5734,8191,213,2203,4135,5977,2051,3406,615,7756,3350,5553,8538,8996,5604,7205,8318,3624,7093,9004,2796,5719,593,4292,9352,2403,1291,3796,8059,8495,8370,5891,5943,2315,7169,9589,4303,2971,7488,9320,3376,3143,3870,1271,2741,6083,4435,514,4487,6981,3413,5036,1125,5427,7949,9849,1667,9999,9328,5734,1608,3719,6222,1270,9966,8683,6793,5526,6407,1727,444,6898,968,1296,3419,9615,5099,260,2664,6368,4804,9414,7771,5776,8945,6964,4035,471,4848,6115,3019,568,1637,6856,6312,6882,224,6736,7632,1623,4437,724,437,4638,5641,6671,7775,2672,8288,4374,8415,1041,7283,9286,3352,4995,9050,1034,4693,1774,1513,8857,9341,8123,5125,4963,7527,7605,3407,5911,4885,1930,3306,2736,673,5748,411,5835,6326,9818,3877,8579,1707,8005,6434,8072,8464,8942,28,2448,9911,8762,371,5781,855,5630,4710,5434,6414,835,4281,5060,2898,9058,97,6400,9872,4270,6391,5833,67,2090,9634,2446,332,8429,2531,6690,4175,7310,4885,2987,2831,9754,2468,8015,9065,3693,6714,6100,3673,6159,6132,607,896,4636,671,4856,6428,644,6827,9681,2433,7412,9749,2059,7898,409,2719,3371,6821,5119,9709,971,7073,3963,2845,7779,5347,9586,675,5862,338,2468,394,5134,3347,6368,7238,6615,8208,8458,7330,8768,999,4395,3111,2876,3079,4650,7338,3164,5723,9261,9450,9581,2817,8862,200,6911,3897,1569,1035,6069,2011,3502,8638,233,5857,5416,5476,2933,6947,2682,1678,3310,3469,3038,4645,7938,206,5046,6847,6137,4065,2994,8080,8907,4818,9602,3787,8437,3813,5814,334,921,266,120,3468,7352,6959,4309,4542,3107,4691,4610,9649,6749,8898,1499,2927,5607,2447,832,3244,4373,5924,4725,3642,9512,5354,8200,1035,3190,6857,5029,8953,927,4472,8787,7277,5045,8855,3468,1281,7062,5057,3807,4029,4150,4417,808,6751,3374,6838,2237,7303,7506,4117,6342,6734,6499,804,5608,3042,4577,9891,9648,6609,7409,3598,3079,4132,4437,7257,9346,146,3236,7365,8444,3125,8530,1759,5523,7803,5134,6913,1120,3664,5275,5389,9856,7117,284,515,2562,5488,2582,3541,6542,594,194,8339,8523,8426,4043,4959,8354,1051,5533,1745,3625,2966,7839,6530,5344,9750,3928,3475,1879,5153,5945,6073,347,240,6966,4215,932,3457,2143,1765,1206,2655,9427,6841,8453,2815,866,6398,8000,5459,2281,7512,4868,3199,8615,5980,3405,1222,4090,3244,3962,8587,3716,3042,7989,9531,4255,9350,754,9010,4207,7297,7227,1204,6960,8953,8423,7813,3148,7849,1933,9919,9740,6903,1874,5223,8749,8443,219,7088,3144,6475,3677,2171,4032,663,6745,8303,4269,3545,1124,416,2700,1726,8300,5704,5445,847,3794,7295,5753,78,7260,961,8243,3552,296,4374,5667,2891,8380,4333,1646,1333,2882,4218,187,3711,7898,3445,6389,6560,9038,9212,253,6815,9055,2869,3496,2449,3205,5450,305,1873,3115,868,4767,411,8611,6321,9351,1256,7746,1519,4514,4708,1582,6249,9618,7140,8024,344,3249,5804,5305,3807,5260,5156,9072,6388,472,6913,9469,6007,9918,9392,4896,6667,803,5861,2301,8943,315,4834,2630,9495,750,4146,2273,4137,3598,6589,4746,1747,6246,3180,6410,5136,5961,7742,6819,9824,8114,2426,4489,2781,4991,8092,4545,355,7593,8999,7982,3562,9405,3683,2230,4905,8950,4199,1505,9381,8480,1824,1456,2801,9532,7401,5311,4394,4735,4810,4888,7960,4957,8280,2933,6859,6876,5676,6051,2508,366,5090,2603,2639,7826,9632,2087,2153,9885,4397,7612,1433,4045,2200,4892,587,7967,6465,8728,2360,4477,9175,9225,7755,516,5047,3259,1415,2769,729,8853,3728,9574,9119,4138,2300,1770,7356,1722,635,4826,7463,6572,7928,8046,8082,3520,9273,1057,5275,9244,5031,4196,1116,9357,9359,8404,218,6411,1007,4748,6813,7913,1923,6270,2172,1494,3931,6666,4652,7083,5896,9157,4329,8134,9557,8401,4672,4526,9317,7489,2041,6184,8689,4542,3584,6874,1362,9525,9574,4713,6240,5692,8583,4295,1646,5843,9574,3951,9253,9570,745,1691,7457,9255,9649,334,8773,9460,5265,8740,7293,5529,6400,8723,1851,3648,8964,346,510,8775,2027,3161,5210,9133,808,5941,1174,3083,1306,785,3552,6435,4567,1725,7753,5843,7570,4489,4483,3938,3991,6838,3526,9969,3900,1691,832,9318,6615,3380,9036,8737,2382,5134,8554,2419,6656,611,787,9198,2208,2779,2971,5507,9884,2857,5802,1951,9125,5020,6227,5327,6124,5037,2752,7075,3032,295,4720,8722,1552,9671,2458,5688,4618,7082,9433,3501,9709,8783,8908,5643,7784,8169,1578,9229,9895,9932,5481,2441,1270,164,3435,1453,1977,8569,5597,2019,8198,1501,5439,4923,5214,3366,6278,2117,2211,8962,6967,2075,5680,2377,2744,4840,8845,4622,4894,5124,2699,1943,9227,3637,6262,6733,2020,7869,7492,4049,6187,565,6765,9137,5115,9591,1281,6482,7968,1030,7936,1894,4567,9929,2682,2826,1275,6660,5052,5871,8777,1746,3235,7049,8056,3840,2108,244,3217,5529,1978,7660,5381,3895,1139,9376,6573,9194,7894,7300,1099,4615,6739,7451,1854,8748,9408,7592,5661,4037,444,489,5566,1612,3933,9444,2775,4661,407,8474,4861,1990,4155,1493,5582,1694,4965,4272,4001,5681,9163,7401,7439,7727,1336,2642,8400,1615,2049,3609,5195,6439,4136,6019,587,9336,198,7828,340,9983,4677,6449,8114,2573,9838,2403,8127,2689,3867,3219,3977,4893,5772,1046,9251,2094,6044,3366,4418,8105,8895,6033,3191,7319,4010,4090,7943,9023,6744,935,3719,828,9138,2836,6492,5180,6368,1196,4534,9392,7361,6402,8902,873,1217,5367,795,3556,3087,3460,373,4820,5405,6739,3019,3964,5193,7100,1375,2409,9642,6533,1329,3916,5777,275,8506,8834,4021,9149,1605,9530,1433,6956,882,4014,4748,1917,2100,6301,6517,82,700,6853,963,5339,3648,3376,717,1642,7243,8014,5383,7461,6497,7609,1298,9353,7340,9613,7763,7224,1789,3635,949,1566,9758,9922,5478,6496,4157,4028,5753,8185,7897,2443,3429,9676,8239,4600,6579,929,6733,7825,7276,6725,718,7054,1185,9756,7038,3127,3452,7426,3831,8373,7537,2803,6060,1837,3031,7873,2759,4895,4814,9062,7871,263,5628,2961,7156,9218,6938,3619,325,5049,6716,4526,2849,2499,9651,6885,325,8562,7980,47,7478,1175,3920,7928,9239,7519,9404,403,1130,2455,3220,2087,7598,7537,7760,682,1707,3795,6639,9714,6322,8899,6057,122,4192,7415,3295,8647,2675,703,9383,6827,6215,8796,9563,2283,6642,3890,6268,1737,2156,9165,3220,4807,7360,6052,8136,9553,9287,942,3457,3991,3744,9833,2565,5433,3494,9884,9712,4042,7365,446,6189,1167,7657,8539,2355,8092,4546,3457,2880,9381,7034,577,5656,3295,9213,1147,9273,1540,2512,9093,8814,9715,7697,5284,2496,4061,5758,8821,8030,6099,3515,8462,8376,1333,1632,5073,3297,3430,6985,106,1018,6046,8617,856,3976,5297,3437,9839,6334,7264,8193,907,7762,3946,4420,7438,5060,2355,2972,3125,2124,8748,582,5979,2324,3916,9537,4312,8414,3336,6763,7849,1512,9048,4918,5252,1893,1088,7608,7849,4103,9242,2025,4871,5632,8608,7466,3217,1377,704,1894,9767,1618,5468,3717,3995,4174,2087,3996,8887,6986,9574,172,8531,6122,9799,6876,3795,9176,5819,9284,6849,1088,6581,3697,3082,8071,8696,5427,3125,8455,4448,7218,6719,1810,905,3626,7957,2519,9755,9267,5362,2843,5448,3677,5864,3011,524,3017,2877,2335,2354,8740,8781,1592,8524,9017,9032,1826,1681,7242,7192,8266,6898,6833,3723,6204,5320,9971,3143,4121,7704,1485,2818,7400,540,8008,588,2848,7226,9750,1099,2346,9964,4424,7004,8879,9475,1524,3842,1026,8817,7147,7783,2520,5417,7056,1162,2531,3044,2737,6106,4622,7033,8519,7464,5960,7088,979,1914,2429,3456,6313,1199,5637,9981,7136,2670,9010,9263,4409,3432,4542,5563,8097,2979,3013,7148,7758,5318,3085,2125,249,2408,1946,430,730,2715,6889,3349,6923,7631,9854,6910,9248,8028,6779,4707,7544,1729,4277,8568,6030,1522,7048,4276,9618,4648,4808,7578,9278,8537,1102,9355,1262,9007,920,9015,8503,8205,7480,9854,9776,4509,327,9063,7747,362,6998,2389,9385,4770,2314,2712,4438,5382,8497,5103,4634,8822,5123,2675,8835,7998,6990,3549,886,6519,3536,4402,4982,8649,4084,3124,3260,3289,3314,3922,4615,4521,152,3305,468,123,987,125,2679,1047,387,5010,801,3988,5138,9620,3792,5947,4001,3982,6690,389,9310,5390,8194,4225,480,9851,462,9816,2650,6647,377,728,5999,676,9319,5462,8006,6002,901,1250,7915,3870,9404,2953,3373,5174,2744,3797,7604,4074,5373,346,3674,540,1826,4108,6279,2237,5239,7584,8874,3742,4717,5794,2174,9976,9786,7869,9574,2660,9911,19,1677,2712,3604,3996,9282,8102,9551,9102,9250,9155,5508,1565,5014,8359,6453,4206,5681,3013,2081,2659,362,6987,3135,2622,1079,7688,2663,8028,1652,1098,41,1218,1789,1417,6472,2886,6443,6409,3492,4484,1275,2458,3978,518,3941,6983,8485,3363,4526,2929,368,3408,3300,4654,3091,690,9422,5124,1519,8173,4799,8289,7558,2215,8607,7175,9863,9572,2822,4344,6649,342,4350,8449,4523,575,8399,2254,2590,704,3705,7485,549,2780,5558,2165,1683,9090,3604,8282,6565,355,3525,8312,3403,6988,716,1678,159,4864,2142,7174,7585,1161,4353,8620,8560,6883,6862,560,6969,8136,531,8673,4788,3785,4296,299,4809,4642,1058,8281,9844,4834,2980,6370,6496,2714,1053,2381,9694,9045,98,2086,2154,1146,6007,7252,5983,3758,5796,5330,1175,1673,347,2380,8191,3249,8552,5138,4431,9827,5564,5503,4199,7294,7905,4468,7439,8591,9994,432,9609,253,5365,2426,7735,5461,1629,5307,4140,7701,69,9901,2797,7612,3928,3246,4902,3800,5999,9599,7320,5923,8142,88,8699,7440,6560,2152,2563,3625,2350,2293,6462,3197,904,9172,5763,7295,9519,6182,4131,8548,7931,2809,1124,1739,7129,5478,2103,8214,1106,4155,4728,1533,346,1203,4193,6334,1937,5244,2941,3976,3956,3769,6226,1139,8671,5316,1128,2139,7084,6183,1627,3848,5462,8821,2548,6673,7821,519,8804,7497,6285,2528,9110,9937,3986,227,126,6360,6105,9875,4903,2229,435,1595,4610,8337,5438,8720,6128,9970,8501,5922,8018,5745,6622,9132,3229,5215,1026,9211,2402,3150,8529,7908,4255,3615,2309,2654,5812,9533,7826,7691,5398,9951,5633,3009,3959,151,9444,8832,6870,1035,7577,4577,8705,616,5446,6816,1368,5939,9113,993,5491,964,6718,6673,4714,192,5401,2041,1582,9824,6210,7267,8179,6300,4380,2399,9212,2862,9201,6922,9102,9623,147,4630,8272,1116,411,8272,2382,96,7854,146,2702,4135,5731,3827,3827,8920,518,73,5282,1598,3440,3990,3215,6112,1230,9130,4897,3388,4208,5680,1959,5905,9840,2117,8163,5452,6694,214,8236,1009,6535,4770,9516,9787,9567,9463,4992,9595,1653,1717,8933,9469,6273,9669,1578,4531,653,6105,8672,9896,2659,2444,2683,5512,2688,6451,8794,891,6463,37,1480,2839,7744,6697,8663,6638,5808,5439,7937,6099,9317,1210,1055,4711,8686,2336,9727,1384,1307,1244,895,4556,9496,7844,3920,9146,841,3984,7557,5018,7109,5563,4565,9097,9537,734,7610,6193,5758,1137,8593,582,4229,8000,6150,7830,2484,6325,9138,1234,7307,6696,6974,1067,3440,8908,3512,9072,6243,4687,42,1826,1341,7062,9645,9830,983,6360,3263,7259,156,2981,7096,4661,3888,8266,7951,8912,3280,1750,5432,9738,3586,305,7040,612,5563,9347,6645,1923,24,8637,3802,5312,2421,6966,1972,2259,6270,7625,7259,6669,8918,474,6604,5993,2048,2661,5543,4538,3029,5040,7248,7350,2610,8615,9410,3660,1061,1705,3120,5642,1053,2882,7806,555,6822,7006,5025,9306,3516,5917,7223,5245,5877,2867,4983,9759,2961,644,6670,136,490,9258,9660,22,2594,5630,4938,8795,1483,158,63,4608,384,1308,1509,9249,9192,7925,1164,1247,428,8111,931,819,870,9044,3400,5612,4750,7107,6392,294,8703,708,464,1816,6408,731,6710,920,9633,9635,7773,3809,3790,2151,2722,8832,9932,5308,536,7842,372,482,6882,6834,1362,5047,9355,828,8839,1098,1771,7753,6053,6041,7166,9677,8674,9312,1629,3003,8999,3003,9134,2257,3431,3795,1788,8829,7238,8857,8063,3044,1094,237,3930,9051,4606,1667,1017,1839,282,5165,752,6600,5416,1043,6590,5730,7311,9252,8385,2892,3526,7716,7762,6087,8556,70,3228,5034,5520,898,3408,1001,8704,4851,4247,1610,1248,9579,5868,8143,2905,9,6975,6994,2147,9639,9456,3362,1618,9154,8519,1241,6773,7679,8838,9004,2485,9211,1459,5901,2215,5748,8735,2153,5408,8559,8545,7949,1096,3608,1796,3869,4950,2892,3701,8701,9403,5834,3163,9525,8595,3512,1219,3181,3921,6597,2061,2929,7872,8293,5770,5222,8507,3618,9196,7727,6296,7339,525,5441,2996,1316,7893,6827,7381,3122,490,3236,8438,1579,5754,95,3041,6065,7821,6907,6319,305,1014,6832,6617,5530,6921,5644,2776,1887,259,9196,5123,2667,9573,2910,4502,4813,3435,7926,2963,8150,2212,3510,4731,7722,8262,1955,133,4465,811,7084,4557,341,2250,3504,4120,9465,2675,7152,4590,6078,9671,1667,6808,563,3050,6055,3438,9971,7579,4347,950,4232,9594,936,5136,9727,4424,7140,6589,8582,985,8618,2125,1585,6292,8992,8654,1985,4735,5907,6831,149,1653,8449,985,8286,4656,7095,4889,3082,6325,2500,2042,2495,2392,2589,8772,7469,9434,4047,472,6988,7889,6070,5481,9065,1874,8824,1417,7635,4567,1037,8839,7580,396,4169,1577,3472,8038,8226,7991,6368,878,6398,8842,2836,7262,9483,8880,7757,5822,7398,9173,9518,2063,2173,4039,6463,5130,1059,1928,4999,7384,5943,7202,8201,3804,3838,3795,1788,5755,1955,4041,6625,5581,3368,5614,8416,5296,6677,100,532,9254,2971,2621,2480,9984,7431,7884,9676,2633,7487,7726,6656,9169,9390,4992,2215,3519,3333,1179,1373,7892,5173,8015,8303,5338,6265,6955,3039,6218,3767,745,3442,9536,8879,6309,7723,7843,272,4357,9658,9474,3163,4349,2446,9525,9981,148,11,9044,9270,5970,1327,225,5258,7484,3070,3643,8260,3519,1453,6996,7623,6665,7450,98,3181,4064,8432,9825,2304,7508,5732,8802,3805,3812,6340,8389,3268,1258,6976,5382,6527,451,7495,2453,7752,5446,8733,608,9388,9589,6265,5715,5024,972,6213,2766,2002,8365,4408,6955,4679,4821,4821,8461,818,3674,2333,6226,1645,4604,7488,1722,5672,8374,9308,3561,3125,6692,8384,5061,8287,823,1880,2102,8660,2509,9887,8174,9186,5878,1092,2805,2491,3399,4003,5840,4107,1512,6267,3674,9084,1918,9058,5864,8912,8313,4887,409,9158,5630,2140,2108,1325,7136,4354,8495,5147,5517,4090,6681,8532,3344,2343,819,9231,2380,6620,4866,2280,8058,725,7438,791,135,6706,4771,6485,3339,6753,4939,3114,6204,5133,3786,8574,3676,9634,4096,5312,477,453,1221,9724,1485,7173,2020,999,4474,6608,7619,9139,9544,4730,1010,1480,4142,3627,5859,9208,5850,329,6251,8584,4967,2213,6535,3106,746,2946,4828,9498,7465,5349,1109,1507,1396,1533,8326,9158,7230,1726,1236,5581,9820,534,6063,7194,7872,8770,1513,2889,2597,3850,6482,257,8851,3932,7736,1663,2112,6125,5713,2803,8647,2261,2264,9537,1178,6158,1507,4659,8994,5685,7504,130,9927,5263,4409,2992,8669,5184,2109,7905,1445,4994,1698,2165,6716,3066,5291,7484,8404,342,9848,2041,9517,5492,6292,5698,478,2963,2002,6639,7388,7731,5754,4155,3725,2064,6875,880,512,7801,8394,9822,4903,7932,9956,967,7793,1835,5075,7027,7676,8251,3426,2522,600,230,4303,6066,9163,7397,8546,4064,8567,4601,4827,7900,2975,1863,4905,6624,15,4578,7896,1279,6109,51,2148,5695,8555,4769,5586,1739,2423,1060,2112,411,1502,4624,7262,6496,2464,7037,857,7251,9573,6934,2414,5195,7824,5681,376,1347,2988,7337,5593,3684,7156,3172,7312,2173,7331,5562,2489,5093,5464,4006,7057,2522,9719,3941,8454,9344,6571,2872,9482,6922,3357,3902,7201,6530,1179,378,6919,88,6889,8431,7261,9554,6204,685,128,922,5846,1458,1300,3355,1713,1942,8808,4500,2023,9921,2656,212,7850,9242,7294,4077,4376,4789,1265,3343,1164,4172,3765,3234,3197,1265,5645,3013,7274,349,4062,6051,4355,5278,3452,2532,2988,3046,9911,1657,477,1000,6814,7747,7672,1594,93,5257,217,2634,8427,1084,7754,6416,4834,4034,3447,4308,1486,837,9370,2627,8269,2310,5841,9763,4069,5384,1547,3703,1794,6832,9077,989,4554,7831,3067,5802,5296,9488,7985,8780,1334,7982,7293,8794,1176,4389,3542,2626,2839,3278,2898,2614,3092,333,6432,3060,5529,8338,1248,707,9581,8423,4661,7365,6337,5163,6613,3941,9166,5133,8836,852,7926,3341,3273,339,6093,2703,633,7343,3150,3716,5275,6177,7586,4135,1343,8201,2177,7915,1741,3195,5710,9659,1404,3758,320,8169,9393,6435,2387,3485,9027,848,3277,4624,3417,8365,2913,8774,2039,3076,8325,2438,4790,3156,4131,9739,2315,9868,8598,2840,2929,8320,4448,2578,4994,9670,4149,767,4483,7392,4600,2420,5106,7760,4948,1471,529,9299,4395,2438,3966,9303,5102,3500,8355,8673,8619,3255,881,6119,9936,165,7817,4680,7370,6668,9690,8906,7218,2966,4102,3032,1259,4825,8761,2789,7443,5712,6655,4924,9116,834,479,6518,1933,8588,4516,1821,3747,4098,4202,448,6545,8439,2821,8453,5802,985,2121,8131,5315,1324,6483,8711,452,1031,1128,2226,963,7660,8683,9521,2662,1935,4161,7066,5124,5426,9166,3609,5588,8305,9981,2000,1699,291,9091,7212,8573,8609,1443,6297,1907,4189,6488,9871,8918,7444,4175,2274,5345,890,2987,2246,1475,7446,5629,5958,6488,7632,9187,646,7400,5815,1323,421,6092,5959,20,3836,2747,6717,2709,6648,8745,9150,336,118,5418,2765,3885,7690,582,3513,5261,2692,9268,7096,5917,9559,1484,565,625,1907,5449,3596,9775,3871,1603,8365,7057,8150,6531,8315,2340,4363,6665,7899,1890,3261,8371,2790,9664,9354,5193,4570,5576,4417,2199,232,6922,9246,3232,2020,4779,7562,9464,165,3868,8388,4028,6685,6961,1417,2847,3148,9173,7577,5369,8733,44,123,581,7928,4162,1646,6963,9190,2445,1304,5779,894,3123,4968,2207,6613,8881,3448,8857,538,2210,570,8435,8961,6768,3930,7992,7928,6690,7717,3451,9625,6127,8157,2162,1634,341,6535,9366,4288,7723,8540,4390,5501,89,4925,6719,302,8659,4397,7114,8443,6913,5263,1581,3067,2977,8760,9765,3964,2398,7298,5162,5004,496,5008,3669,6757,4159,7510,6075,393,1928,9754,9388,1787,8063,1786,6270,801,7821,7425,272,4023,3429,1492,6148,2024,4418,8424,7018,5478,2338,9681,7583,1025,3699,4940,7590,3887,1655,5168,7355,2282,7231,6783,8375,4562,8492,5835,9117,2859,5726,1252,1042,6457,5798,5999,801,1755,2000,8647,3210,6927,3203,5512,3199,1577,8685,4542,2405,7560,2074,4487,4109,2428,3067,5304,7316,6296,846,1373,3348,6646,7217,2500,3251,5617,8788,857,319,7428,6383,4345,6711,1414,5666,9256,1922,1607,180,5665,4730,1812,4363,7692,7014,1221,1374,3243,2639,1309,9668,8597,9801,6072,7032,7546,3391,7060,2510,9392,838,4955,2439,7034,8523,5086,6322,2847,7456,6488,8355,8530,1377,7078,5045,738,8682,4118,172,755,6125,5505,2382,907,8648,6799,3127,905,2686,5013,7312,95,6559,6553,9608,7864,8875,1928,7711,2078,9546,1385,149,6358,5160,5230,8489,9632,4624,4681,6448,4949,2127,4298,5589,2611,2162,3359,4655,2649,2973,3153,2529,791,5489,1272,960,9238,1810,8934,9387,811,437,5031,9333,1945,8514,4151,2361,816,9987,3106,2788,8119,7070,3580,2488,7147,1700,2584,5636,4560,2003,4304,2257,4017,1245,5704,8249,2166,3060,1524,3507,1580,4048,316,733,5775,8037,9772,8719,8977,2871,4444,5947,506,7153,522,3026,4703,6996,6267,7629,2673,236,2866,637,601,6562,8454,7198,2781,9158,4086,1842,2043,6128,3080,542,5483,1304,4124,9438,9023,1569,6083,8027,1391,8893,4064,5121,5462,5376,862,6091,3325,7938,5234,3581,6657,559,4787,1193,725,364,7765,6316,5081,1119,6717,27,5565,1586,6529,4133,5310,4165,4779,7538,6420,9602,1881,1670,6369,6292,8904,7711,6571,2173,2284,2888,2880,6407,5630,2796,606,2081,3194,5394,808,7104,2533,3259,2958,6250,1356,6271,2802,1184,3534,4975,1321,8854,6886,3931,9158,1382,2555,6654,692,7137,4984,4347,4025,7660,3781,6552,542,5004,5627,4123,8425,1964,7416,5774,2412,8424,904,7886,2481,3711,9191,1710,8127,2441,1081,2195,8021,5840,5107,1230,53,9513,5091,8939,1090,3489,8499,3798,4235,1721,2374,8166,9651,6568,260,642,4135,5647,8405,4225,168,4355,9224,3849,3525,5482,8123,1449,9191,1462,9813,9756,8296,3879,9551,7264,7440,7191,8284,7330,9777,2323,379,6403,3518,3555,6117,9142,4030,2321,5352,443,6114,6172,7890,8109,6678,2231,7525,4797,1929,6364,1277,4610,5076,10,5579,464,3010,132,5016,1846,8549,1583,9341,1078,4540,3582,9102,6068,4862,4490,4405,7283,631,4954,6358,9256,5455,4654,8292,7597,9871,7326,6245,5037,8533,957,5430,7112,5872,4212,7417,4055,5315,6877,3110,2334,663,8045,1599,4028,4872,4112,8920,6104,2025,5893,4669,7733,175,6598,6721,4488,7315,4652,6909,4172,9465,8998,8483,5790,9384,96,6029,6998,6909,5559,7341,1074,1331,6116,2126,4316,639,1557,9338,7614,4878,7652,4043,6166,7036,8710,6230,7032,759,3042,551,6161,5931,881,6658,284,3233,3797,6764,7100,8448,3664,9131,5200,4269,466,3634,8206,5296,5834,5976,421,7394,8013,6726,1657,4991,7677,328,8402,2157,389,1350,6186,4934,6579,8378,7846,6736,1383,1511,5457,1206,750,8892,3160,5681,4213,3574,1508,7403,2658,8095,6317,4424,3415,5088,1986,8384,9743,5970,8859,582,3598,5138,7751,1164,1011,6329,7124,1814,6251,8286,4143,8433,7339,4504,9907,399,6544,7795,3339,120,6656,3730,7671,7311,105,4325,4837,8526,7689,1703,4724,3416,9672,597,5395,3773,5722,7966,8945,7007,4325,8513,6771,4378,5610,1808,9850,483,4025,8573,1290,2165,1914,1193,7825,4693,8302,9377,5793,7614,5996,7117,3914,471,2266,5433,6951,6469,3132,5590,4332,2701,4675,5872,4052,4546,2623,2619,5061,1589,8736,1642,911,9134,7957,9917,471,560,8312,6428,7019,2373,3605,8548,2552,9922,6983,6591,2789,2262,1658,5859,53,9592,5284,1212,8888,8554,3289,3831,7191,2857,7911,5108,950,745,7367,599,5266,2152,7571,8908,6708,7504,975,590,5564,8062,5717,5894,9419,2932,1295,4402,4123,584,175,1987,3640,6025,64,3360,5025,454,5651,4452,5614,4401,5991,2515,8580,2930,7371,4214,6075,6897,6780,2528,7179,9451,5931,4765,584,2586,9672,9086,9905,8430,9794,6644,955,8649,9612,2501,7224,1250,5276,3031,5933,3949,579,9048,1370,9335,7737,8530,2884,3687,7116,2094,5498,2359,5566,3076,1359,8523,3592,6637,7958,7412,5268,1586,6018,1237,1544,6999,8479,6183,4977,9321,7133,7704,8670,1940,1092,1696,6619,3594,6242,7899,7024,6028,7627,5517,5021,3326,379,8773,3729,7029,5429,324,1790,8309,9750,6084,7561,6650,5906,5230,3953,3807,6034,8627,5121,8440,9264,5406,5416,3031,5240,4428,2794,9524,6916,8390,5026,4231,8977,9598,8927,8443,7107,9454,2438,726,5006,6882,7974,3904,6650,1547,4935,9843,7102,3133,5670,1335,962,6223,8059,8332,9021,1004,279,1141,8870,1995,3733,4178,1523,1187,7160,8415,7800,3709,1096,1148,2105,8883,6725,3622,7945,2410,4036,4170,7467,3341,891,5407,1718,5495,4454,3849,1544,7805,2070,9056,4451,4240,5612,2561,7467,2725,5378,1051,2670,5030,2831,4134,1196,2541,3658,2454,2086,1698,2934,9192,4807,2308,1821,7968,7619,6789,4340,3746,1461,7938,2777,7121,5900,6589,700,5407,1848,3386,2789,3974,3645,1014,768,9736,6427,9392,1539,1538,45,9294,7143,5384,840,5875,6600,1157,5381,5620,1299,3298,1977,3939,9469,4356,763,4491,7324,1309,312,5374,6283,4,1662,6180,9360,5024,8739,6917,2086,7077,7574,6901,4595,1928,5774,2374,2733,9544,7821,2104,8003,8054,3247,6312,9478,1428,1562,525,2238,4637,7486,417,9566,5474,830,4053,3561,5472,4826,3168,9615,7306,6999,3762,9975,5415,7634,3979,9907,538,4666,6767,2482,7807,1630,2441,4462,967,8828,9516,2673,1428,2577,8881,7534,9303,1339,2318,7931,6392,9810,9372,457,9589,5704,7605,6482,7624,3709,8047,6155,6449,7996,4874,114,4953,1223,8788,3612,1247,9074,9564,1294,7864,8510,3226,6704,8273,8208,1563,5745,5668,5995,535,6819,1892,8195,947,8085,3558,2334,3599,4399,5064,8820,1580,7577,1955,3659,8381,7382,8329,8287,2198,6099,730,7864,8371,6253,6016,9352,1174,3153,5867,8567,3278,2660,6576,4999,5724,5989,2280,8232,1232,7887,1986,1809,2153,9463,5509,1361,5193,9887,2251,8204,6198,9342,2751,1249,6978,6391,1765,8512,1895,9611,4827,7016,6425,5625,7504,4479,1885,5372,4019,995,6969,9409,5059,2487,8288,3216,1935,7550,7999,6078,7187,3423,5628,1115,7084,6029,417,9318,1111,5506,6324,2902,5168,7238,8479,9936,8888,448,3640,2980,9294,7487,6837,4861,7626,5484,5790,5465,4869,2735,7547,932,8429,6549,1887,6181,4969,2171,5853,3538,3513,7736,8864,1310,9914,5390,4157,2814,938,2096,7119,854,5791,823,9842,9895,5819,1738,2266,5180,3141,9195,9979,404,1969,5416,3546,7068,8159,1043,7016,4538,9369,8509,7337,1520,2923,3489,5331,9846,6594,9480,2645,1923,6677,3969,8873,8422,3629,5896,4781,7577,9840,5711,8407,4535,5158,650,6138,5343,5187,3708,7404,8235,3340,454,2811,5913,8901,4265,4020,4479,8747,3102,6115,6450,940,5781,8668,8006,2490,7869,9077,1891,8818,5844,4292,2381,9597,41,3419,3430,2886,9385,7586,1877,2018,6541,4898,9430,6972,9954,3402,6610,2906,9965,3421,9147,6768,1704,8028,4023,3292,3780,3196,6508,5583,1618,5699,3313,3976,9319,7211,5131,8610,8642,7515,2618,4898,7431,5275,1233,717,3742,5961,3891,1328,1189,4433,6356,4417,7004,8965,4713,4763,4085,2046,3532,6515,2518,4248,197,2407,5324,2888,2596,25,8980,1680,7193,4679,2771,9127,2415,1709,1526,8035,7786,1380,2459,9239,9960,6006,5054,738,7586,5618,7616,6682,1246,8762,3648,1483,7999,3931,8110,9080,1188,3719,4915,8319,2736,1418,9358,2764,5740,7341,2637,9237,3819,8405,7715,9713,2302,3896,8770,9740,4031,6109,7567,1199,6370,2413,8066,6570,1103,5334,1722,2031,8098,9651,1172,5319,6921,9741,6062,2918,1760,8725,9107,2070,8021,1492,5047,6653,8102,1199,5427,8316,2023,6245,5195,8077,3206,9867,1200,3099,4141,570,6161,9764,6830,2164,9141,869,5714,8802,4225,9695,7263,4051,8983,2504,5566,7785,9285,2062,1757,9232,4558,3497,3814,2232,5037,4588,3572,4361,4842,9172,5188,4945,7925,8391,308,3717,2951,8489,8440,1084,2925,2348,1161,8442,4135,5972,1026,4074,6770,4583,696,727,5603,4330,9233,7797,2118,1137,1660,8868,1639,8944,4683,5774,8667,3772,696,59,7020,859,4498,9779,9106,7899,6007,7534,8598,6846,8439,5697,7509,9068,5275,6595,8332,6543,4474,7049,2962,6712,2533,3288,8812,568,8775,9236,480,9797,3122,8377,2281,5196,2873,1677,1499,1591,7402,2737,2214,6052,6991,8715,330,1130,9759,3815,3415,488,2571,3668,9611,1349,7171,8504,7693,1035,7408,8074,8622,1815,7373,6982,9621,4096,8342,8775,787,2054,4114,2007,1533,9511,9498,5939,8468,8925,4320,9819,5997,5649,2775,6482,22,3305,4594,8718,6766,3575,9209,6165,3172,9429,448,6662,8242,2955,2854,4466,5720,6726,1186,628,8408,8135,3104,5071,1813,4251,1679,4969,4955,3999,6498,5409,3374,5853,5217,1769,2586,1675,3235,8734,7006,5363,9932,3114,1308,6498,7732,4730,5034,7179,7659,6371,6333,7406,9537,1576,7214,4177,7673,4912,7424,1506,5047,2205,5021,3509,3900,8705,3705,5509,7467,9360,1308,2446,2278,6372,2178,5258,269,5441,1179,4471,2264,794,1265,2649,7311,90,1780,2964,6376,8816,8535,8933,5600,8611,446,5505,1026,4875,1250,4315,4781,6354,951,2272,561,8663,7187,3403,8068,3844,1008,6204,3294,6151,9027,4027,3114,9448,8238,6299,2152,9540,1207,1831,4601,4187,6553,8262,6361,3533,9000,4838,8001,224,7895,312,5297,7729,5095,4529,7700,1326,7297,3660,876,9559,5728,2612,5805,9499,2146,11,5882,7738,9478,878,1173,7408,2836,1837,5316,333,6569,2573,7203,2670,436,250,4678,3443,6413,7995,8641,9042,5709,9048,9268,1074,2721,7460,629,3447,7852,4345,6150,7988,3351,70,1102,6371,1119,8565,2420,3266,4428,7174,8281,9006,797,8643,830,4619,4999,4155,8459,6369,8469,8024,2567,4432,4273,6404,9548,9209,3414,4164,858,4622,4547,2073,2644,5681,7315,6894,2292,2095,9432,5420,3758,7968,2556,8685,5755,9152,9878,2962,1075,4738,7075,4493,3635,730,8716,1343,4344,865,7572,3016,907,8744,4864,7770,9494,880,6440,7437,518,4795,9213,3754,2060,4334,3753,3393,8952,8948,6863,5580,3756,183,3173,9326,323,9401,5064,3675,8771,2538,820,5208,2691,1052,7427,7013,5359,16,7040,8142,1040,6629,690,2626,405,6993,5953,7994,4994,7183,9764,4386,3688,3153,4195,1060,5910,3013,2777,2027,6393,4587,9890,4743,6639,2300,182,9508,9506,720,7042,2860,5367,3661,817,1879,2442,2500,4578,3150,6721,6535,2227,6515,2201,7806,8744,1514,3234,7522,6256,7943,792,1557,4282,1504,3949,1092,5940,1340,7037,2535,49,4778,6752,5357,7076,9624,8519,6619,6169,5980,9166,2517,8803,4786,6162,4499,98,1509,6708,5466,9867,6504,1748,1717,2987,305,2588,2608,9904,8266,6403,9925,8135,1198,7544,9847,3232,1101,5698,5399,976,7307,9624,6421,9551,9649,6406,4828,7930,8221,2242,9001,7298,825,9937,9267,9329,7315,9492,216,9118,5438,5990,8906,9906,8089,3766,613,3318,9516,2407,556,5574,7186,585,7033,1010,3812,9153,6146,6777,4051,3608,8180,82,2640,3122,9315,866,1291,7480,8899,2437,8440,4964,7613,7945,3966,8393,1620,9953,675,1093,5314,8566,3730,35,9047,2932,655,5998,4814,4137,322,9893,1007,3831,7978,4476,163,5542,9231,9600,956,340,1183,3704,8184,4637,7088,7345,3115,5103,8098,2818,1065,1927,5190,2431,1145,3363,125,1143,6534,8140,5458,5568,9403,4846,8021,854,4271,3922,9159,6942,2824,5555,4304,3941,4531,2675,898,9749,4086,8736,3385,5725,8430,9668,9637,3418,6913,4154,3706,241,4538,6920,4828,1958,5425,9292,5806,1078,316,6835,894,8446,6759,142,8357,3106,9141,8024,7268,951,2855,8958,5940,910,7538,6374,1317,7305,526,8932,7411,1774,4716,5414,4005,1380,6259,6166,1940,2334,8151,6570,6928,6835,8862,6323,9508,4875,1209,5969,9677,8049,1082,742,2354,1392,3243,1813,4082,1140,4877,1680,1720,7919,6826,4679,1452,2904,4471,1032,4807,9233,1010,73,7410,4706,3037,9513,7364,1057,802,2935,9467,5145,8814,9691,4516,377,9875,6321,5337,4993,6283,6072,4628,4956,325,3942,3765,87,7106,7650,1393,2456,3683,8896,3310,5373,2104,4624,5154,5271,159,5619,7983,7159,3602,5953,8898,7668,1404,1616,2976,3666,8683,1071,4288,1745,6215,6771,9619,5465,7755,3953,4819,2707,4230,8590,143,2120,558,210,9802,3532,9899,655,7044,2801,2462,5566,2767,4804,1264,9935,3340,1243,267,4120,3129,8881,8240,4129,8118,6763,3216,1464,1682,7237,7278,8778,9382,5623,8625,407,6301,5644,9344,3042,9651,97,3630,3965,3017,2972,368,6843,8048,2286,4386,4331,7112,5565,9137,7597,175,2114,6479,9383,133,818,7339,3418,3703,8993,7619,2968,1661,3998,2711,5683,335,75,4929,1282,1736,1247,2786,7930,2136,2606,2777,3571,7705,2203,7827,3968,1911,4607,4391,536,3220,5629,6378,2338,146,1476,9989,4167,9270,1613,4590,2333,1454,3894,2649,1493,6922,8200,2533,4642,737,7170,8434,204,7621,2892,4102,6580,3469,6586,6277,288,3909,3616,3449,6086,5132,8902,4009,354,1698,3886,3022,9426,4230,1004,3928,5661,7607,2092,3471,4569,3809,3516,5514,1890,9473,156,8843,7600,2869,7155,8754,27,4631,5844,5888,5650,8410,752,5624,1999,448,9798,3858,7947,254,1115,2568,7001,3030,1117,7244,4175,6983,3156,4603,8861,8095,1245,5472,5326,3275,9783,8792,8199,4012,6066,6072,1898,9230,5566,6308,8980,7845,7748,9083,5467,2784,9469,3012,7916,9340,3455,8759,202,7352,7259,2172,7142,995,897,1726,7280,2487,7989,7347,9432,7965,7256,8460,3266,9511,7461,2312,2345,751,9544,1158,8582,395,3586,8801,9123,4856,4045,1997,6172,68,9315,8847,6147,726,8383,1666,5268,5454,2989,7520,379,3724,6132,9820,188,6484,9296,5335,7719,3961,7638,153,8717,9719,4095,3432,1020,9710,5527,2318,1463,9452,8463,5547,6068,633,7917,1444,9109,4173,3837,2541,5222,7055,5024,4139,3406,9001,5220,3862,6769,867,9360,9430,7142,2152,4324,7587,9751,7697,4909,3980,7102,1158,7012,5063,124,9748,7926,4402,1321,4145,3472,4852,9928,3101,1535,5105,138,3918,8063,4140,483,1857,7800,1141,8190,1296,5231,6651,3050,679,6931,6044,7412,5638,477,9879,4970,1130,5437,9414,141,5806,2875,8720,9064,1897,5312,4534,5640,5758,6689,4189,808,3073,5929,1270,289,2440,5108,8663,828,1961,3084,3884,1758,5542,6555,6119,6403,5345,1782,6075,2152,2631,7663,23,6949,6108,4157,7177,2017,3893,2228,7335,348,3720,3571,2187,7487,8402,3870,5901,8701,7423,5173,5587,859,8162,9268,5906,2900,493,2556,9227,7841,463,4241,2388,3895,9697,9592,1769,1964,9161,9514,2084,805,6277,1489,6878,8928,8025,4131,980,5403,3141,8190,4251,1486,2279,4769,2312,9345,1245,3560,667,7361,1627,9941,659,4167,1764,1265,9097,3629,992,6389,1904,8871,3237,4593,2729,9338,637,2651,7876,9568,2712,9100,6640,1107,146,5953,6381,6593,590,1198,7558,3677,1298,1769,5669,5057,2866,649,19,4789,5452,1918,2397,6464,4009,8718,1449,9213,8548,2967,626,4097,2877,2358,6882,8438,4153,9905,9230,6327,9399,5454,4364,8111,5067,7715,853,2405,2143,1914,1690,8449,4681,7586,6890,8975,3276,419,9336,7064,901,2889,8205,881,2451,7856,3390,3149,4819,968,1438,3441,4398,224,9357,224,7849,6865,8387,4533,4412,4494,201,5295,5753,3623,7769,9898,72,7034,5055,3365,6135,1141,5015,3996,7237,7155,3669,1142,2542,1407,3258,1188,8936,9156,6163,3393,6551,4529,5927,8260,8251,9765,8780,8278,496,6040,6483,63,2664,4571,5729,1563,7021,9022,1198,4428,5156,6717,5372,9879,4072,5563,7704,6857,3398,2481,8727,8654,7175,6735,5839,7886,9391,1610,1693,1789,6770,416,661,2033,678,4496,6504,5870,8916,2366,119,2445,5750,1831,7844,5553,9191,7397,9056,5376,8237,8028,2978,4722,5696,6883,7850,7417,3638,6121,9409,7439,5805,3112,1179,9415,5890,1742,4208,7534,85,614,5114,2156,5573,5304,2920,6359,3713,3477,936,1508,6542,5462,4540,5662,9589,885,2954,9613,1490,2659,7724,354,4325,7515,3251,8498,5615,7590,5931,9147,4785,7647,7738,7561,5068,1929,6046,9781,4880,1186,6789,7203,3402,7571,5406,1432,3221,4410,880,2894,622,8569,2312,7039,5508,8806,5300,2521,3301,5238,5801,7625,9877,4510,3840,3878,6560,7581,5128,9019,6447,5566,8463,1351,829,9778,5955,304,4232,4306,1277,9005,4726,2715,9701,887,9348,8680,4886,3458,6270,5534,3081,6783,1782,1606,8123,2398,1629,8894,4583,6593,6664,372,2050,7155,2601,9971,654,839,9660,5978,2177,2007,1708,564,5738,9098,8333,8892,2150,8698,1416,201,8303,199,7632,9552,3073,3385,2749,9513,5043,1221,7381,4854,1410,1088,6176,5957,123,481,3661,9788,5866,2082,501,8956,5845,4775,5651,829,4253,3050,9303,2938,5587,9148,4545,9319,1838,1357,3917,3256,4340,2105,9987,4892,645,6851,9098,5126,9516,4516,246,4799,1977,2225,7591,2255,2520,5844,5673,2810,1416,2172,6661,219,1720,8620,5414,1524,5123,9425,8267,8842,5475,2306,6569,2886,3606,3358,2377,304,4290,3598,2632,2114,4355,2545,1875,1461,8716,1502,1432,5469,6158,7692,6452,9790,9300,6616,6698,3522,1534,3175,3168,5907,2430,4070,794,508,2481,9184,1236,8313,5192,3715,8771,5741,6734,2293,5280,2197,1460,3130,6337,8160,6194,3880,4355,3965,9695,3933,2147,9493,3788,1175,6038,9876,5816,7988,9359,7924,9006,5424,9342,3605,5045,6969,2484,8810,6073,9701,9545,9955,9838,9099,7498,902,9875,2656,255,83,7577,5317,9702,9375,9458,8318,3038,8251,5147,8011,312,4316,7754,9873,4950,6436,4714,4370,3849,146,7550,7703,4467,1573,6371,6121,2788,2553,7917,100,8411,2761,4224,8883,4492,7860,9157,3980,1473,9882,9122,4221,3276,3697,3503,2849,9137,5411,9674,2291,875,9064,6006,4758,9503,758,649,3414,2853,4903,3883,5510,6258,9975,553,3726,1746,7822,1136,9713,4040,9322,3651,5425,1126,1265,4426,6588,2780,352,7900,1140,9097,6295,9647,7797,4986,8882,6810,1896,4212,2970,4088,8744,1130,3232,6158,7708,6098,6251,5684,5400,9414,6549,1983,503,1601,9530,4262,8443,7395,1633,2227,7982,865,5311,5100,1024,8099,5093,2335,2473,562,4017,4398,4771,2932,5906,2181,231,1605,5767,5823,7084,110,2458,7227,6572,5061,4219,7873,6291,3009,1363,2123,4343,5151,9816,6091,3349,8284,2781,1626,9265,3011,6015,5387,9718,3324,822,9819,649,5180,5220,23,3446,20,9714,9546,9292,3798,2893,4578,4859,2058,5410,4140,554,230,9679,4396,3953,1924,9552,1603,1022,8807,3220,5962,1788,7890,9293,2935,964,4803,401,8094,5066,3460,2855,1136,3287,6461,5178,6089,5317,9380,7251,952,5386,5933,7931,8834,2454,7210,1758,1562,3281,1976,2556,3372,6935,6474,2998,2450,9961,1671,2858,2211,7316,7098,927,5264,2401,9574,1431,1989,6937,63,21,8075,2692,4238,9999,4343,7664,8740,1484,8302,307,4266,8059,3987,9792,4625,229,4082,5610,2296,9129,8984,854,6792,873,8199,9669,7829,1607,2719,6111,794,6046,7515,6820,263,3641,4506,6457,1409,5766,9486,5124,9010,8589,3951,2258,8492,8471,6948,3231,5802,3326,9976,8259,2439,7855,9645,8133,9719,3968,7859,5902,3619,468,9176,9530,9667,2371,9988,8298,8445,7369,9226,5512,7101,1071,2601,5867,1484,5681,2248,3554,5952,8657,2694,6113,4753,8126,8975,1528,6434,9191,7882,8085,8784,7373,8451,5210,6537,6149,4449,5035,8425,9263,9263,9045,7605,3514,3302,8413,3947,774,8066,5216,9532,1509,6965,7313,2300,8386,5442,3655,2823,3300,8438,4843,3238,1613,382,6410,783,535,3804,5405,3324,7961,2486,2231,9335,2154,2517,7118,6810,8159,7906,8372,3504,9034,4772,386,2742,6096,7478,6741,9642,2549,7623,3109,7163,746,1942,526,6416,844,9992,9293,9983,8078,1406,1537,2904,2242,3510,990,1821,8960,7964,6992,4390,2605,9616,2409,5119,3407,9839,6124,6449,8713,4193,9332,2951,7995,7070,8384,2255,4173,1172,7497,7520,5951,8511,1447,1092,9419,7728,1117,6866,5791,9760,9072,4157,8888,9715,6231,4069,4968,5507,9401,9088,8855,1943,9437,2075,5699,9486,3280,9820,2558,1964,6152,5754,159,4710,7564,1519,3392,6355,8934,4411,6900,7916,1199,2531,690,7999,2966,3996,953,530,5965,3655,2747,2828,9472,880,8375,5304,5289,3854,8322,9699,3194,5878,4284,3070,8015,2973,6414,586,7785,7841,5576,275,2978,3393,8398,9934,8333,1307,382,4502,7576,922,2452,4630,7775,9041,2222,3192,3542,9341,6238,8169,7479,8792,2457,9671,2093,3675,8300,2358,9081,3430,5390,5612,476,5344,2763,6218,3419,3380,8906,3121,186,6215,7191,4002,4789,5701,87,818,235,6395,7984,3484,9621,6938,2841,5822,9334,9037,7273,859,3920,7070,9163,4543,6749,9966,4261,1152,3289,6545,8693,6660,6938,4710,8880,876,9047,2870,860,1303,3226,2506,7909,8208,827,8378,3335,1737,986,6697,4568,3431,953,5320,8356,151,8180,6137,6366,5143,5563,2024,4899,5605,3615,2642,9412,6517,2105,9464,308,5240,4582,9571,370,4292,3048,3950,1652,7974,2970,7199,267,4917,5021,2986,2812,8149,4417,8433,3797,511,2261,2664,15,469,8616,5372,4352,8486,2205,1046,8111,5055,9988,3154,3719,3614,2294,2808,523,9398,5085,3418,6621,5143,7384,6728,1614,8049,9827,6809,2591,7487,3929,7748,7490,6297,1969,5556,8586,7191,9187,1409,4132,5497,3634,4172,3546,7205,1825,363,1437,5278,3498,4920,9086,2226,6464,6793,6843,1305,8268,7126,4295,9711,2424,3202,9235,4714,1323,8630,5435,3486,878,8297,8347,1451,9267,3088,6560,2243,7773,7697,9454,4976,2432,3548,95,6803,6005,9765,9221,1999,9971,8928,3639,7345,7785,5212,3,4953,4565,232,306,9581,4526,2370,394,5010,1744,9896,6427,8754,9843,8468,4722,9392,3783,3768,9772,8916,8331,9748,9611,1058,2360,6123,2395,9748,2546,7406,7280,4249,4938,9187,4331,974,254,6226,4374,6847,1219,3031,1342,3238,2092,7439,2033,5758,1199,7743,8312,1276,5219,1875,9395,2783,8610,2591,9427,9462,9799,762,5929,4585,7174,491,5690,3373,5818,5754,648,7622,1162,2949,2889,2302,8891,1654,3926,3459,8859,379,3302,2863,8426,3392,7636,3135,183,2401,3849,6417,7769,5111,9225,5553,5901,2658,488,3935,9362,9610,5642,5496,5424,2008,5676,3121,4802,1501,3618,3433,5045,4720,4203,1630,3429,789,5006,9292,9268,8475,4901,3495,9129,6173,4308,9344,1414,3662,9973,4837,444,7348,6881,1034,3985,3637,6203,5943,7484,522,3239,6593,9265,968,9068,6755,7704,6268,2580,2565,8573,5657,361,1634,7573,6285,7793,8281,3521,843,8412,220,9847,114,1667,6558,7644,5978,5449,8431,9283,2696,1948,9646,6965,6914,46,2055,4003,835,9274,23,5710,6012,1274,4635,4273,7286,3784,943,4064,9128,9812,967,3493,5049,2377,7394,1964,6016,3570,5528,8044,7943,8959,8139,550,4205,2782,699,2561,1475,2263,4480,4652,3269,340,7030,1627,8861,2113,9470,6689,4671,9076,1186,1250,6796,2400,4444,9211,9269,7033,3035,5003,9306,5248,3700,9774,6507,3933,8516,3301,4814,2103,8637,6045,9381,6540,9119,2915,466,5578,8105,2509,6034,6426,2037,3044,5615,7188,6332,1950,2373,6816,9695,2766,2255,1511,6292,306,3167,9347,6951,5454,4299,8224,8339,1970,2034,4998,8194,9654,1647,4247,4342,9809,2970,9538,861,9658,3287,5323,9437,4792,5081,5880,2804,8493,5429,7916,7675,2309,1637,3284,5025,7254,7236,1505,6041,6602,3760,6842,7,7049,1179,8485,3199,2337,9546,159,4281,5918,8686,4261,4063,6104,9330,6236,2586,7278,2215,1426,4390,7902,745,3495,5679,1171,2640,7632,3458,9852,8719,7773,7430,4437,2564,3001,7016,9138,5792,4801,5971,1152,3936,8807,2639,795,888,379,5189,9890,6796,3633,4483,204,640,1441,5937,751,3486,6053,5857,9325,5746,6119,441,5806,7407,146,5026,3660,8418,7316,3686,811,7427,3961,3712,6817,9028,3921,6161,9417,5677,117,1809,5716,6025,5427,8940,3953,8092,986,6235,6565,9534,9014,281,9600,562,532,5190,1239,1768,8735,5592,8850,2553,2726,7002,2762,2481,6962,1535,2246,5312,2056,2889,3276,6364,8211,5966,7803,4515,6401,8797,8134,8772,203,5860,3556,1080,2385,520,9099,6954,7115,2270,5738,2294,2307,7405,3111,5587,3592,9239,4621,1104,4707,1323,5641,3686,641,3764,2462,5054,9375,5019,4098,9514,6128,7621,3652,7485,1859,7140,4682,9595,2731,6569,7539,8374,1548,7369,4817,2479,2635,283,6550,6482,5968,871,4399,3392,3321,655,4756,7617,6040,6589,5656,4104,2172,6990,6153,6957,8378,481,2787,9184,6755,3553,259,7733,1250,7347,7448,3352,7878,3025,822,1988,7936,6122,7107,9564,8134,6584,9886,3800,2855,6637,4494,4542,6825,6459,1794,4791,12,3483,399,2197,8399,602,8,9689,5486,7527,1243,118,5443,6412,8339,6089,3120,5838,2327,8319,7239,6742,6088,7573,9053,7233,9979,3099,1713,7780,2387,1407,2188,6182,479,392,5883,929,9992,5271,848,5538,2241,1368,4995,8147,4747,7211,8380,5229,2147,8654,1161,3392,3218,7377,9510,3322,537,6349,8259,7750,3711,4149,9138,3732,3718,2775,7800,4167,5709,8029,3535,3981,2013,5734,8031,2162,2798,1662,8491,5492,8467,1538,6341,9467,7327,4677,3060,6410,1132,1994,2269,9991,3838,7105,8703,7876,5750,1403,5707,8034,9038,4556,752,6918,7194,7356,483,8085,5084,3955,5001,4168,8171,9214,7478,5123,7926,1111,3726,7850,1266,9408,9207,6351,7785,3299,7850,7882,3916,3534,519,9598,9910,7422,4512,2582,5824,1440,3210,9347,8797,2018,8268,2821,9033,8628,7515,8475,3398,8235,7675,1736,6074,9421,2348,6100,1214,6164,485,8447,699,4055,5041,3162,2639,1194,3879,8897,5652,6913,7873,6898,9664,9097,8221,3936,548,8186,276,9828,5637,3402,3238,3694,382,5412,2436,6539,1528,9026,4670,4473,7331,2937,4123,9843,3439,8759,5965,303,7852,3199,9918,2794,7885,3383,228,4504,1285,9667,5564,7739,1619,4429,2269,5207,335,455,7725,1933,4698,5823,4715,6096,9686,4173,3916,6697,4867,78,1662,9920,709,8803,2407,3412,113,9671,7172,1860,3733,8140,2790,1291,8381,2166,5255,2256,8829,6896,9043,7255,7496,4716,3111,5777,6048,1204,7263,9733,6005,4343,8068,8260,3765,4283,3378,3297,9343,5037,7863,5664,7172,1078,9401,5987,1762,8509,6873,7485,7565,9262,6125,3859,6293,2001,1901,6307,852,9302,1799,1111,1281,5701,1343,4617,5321,8499,9933,8426,5178,5447,6522,9568,1773,8714,1645,9535,8066,3159,27,4507,5698,7064,2373,5439,4074,2196,3407,9642,9287,2332,9837,5727,2358,9809,3248,4598,5204,3620,7553,1213,4992,6662,4091,6172,224,27,6760,3085,3255,245,7054,7228,7060,2105,1256,4590,6542,2271,5425,9170,3174,8580,8156,6420,5465,3169,7221,1410,6715,9699,8832,1234,4061,3221,749,2394,3978,8859,4871,1561,3677,3875,5858,6710,9962,6467,5301,460,2864,2186,2447,9951,8026,5684,8694,5139,1031,4001,2432,3087,9936,1378,592,5635,4952,2781,5387,393,5046,526,7236,6443,9117,8331,3467,6418,3961,6029,7297,7798,4747,1481,6814,6182,9033,1669,5851,9715,3394,6520,7085,7098,7714,5862,2769,2862,8230,3543,7032,6662,9427,9764,1688,1791,8136,2251,5641,7311,3139,275,9084,7373,1099,7001,7123,8092,4282,7525,7339,8377,3656,2918,9565,2485,3470,4518,8124,249,479,8247,4019,7927,498,8886,8927,7625,7886,8990,5390,969,8504,7658,6596,4694,7937,5598,4757,2503,5704,8825,1629,8588,8309,1846,7308,1736,5213,1670,2040,1967,8708,7795,3622,3669,4551,4979,7106,3529,3505,1001,8024,8633,6388,2247,6723,6698,9640,3647,3211,269,3827,9478,1367,5495,973,4566,392,3462,1084,6517,669,441,9888,4548,4153,6803,2194,7529,3776,1889,7043,6549,3262,4791,4720,5507,5049,1053,2150,9286,2680,5677,6232,9120,589,463,6619,5817,7482,9988,7395,3303,7194,7695,4236,1101,4059,3812,2116,4077,5447,7879,8402,9892,4315,9604,1546,8573,9484,2775,1586,1621,1182,8591,5142,6588,6368,4129,7741,2792,4547,2244,2837,2355,9824,9069,6244,9728,5708,8613,8053,1559,4291,6452,8489,442,9830,5591,9564,6192,4584,528,743,5468,4215,712,4192,6487,1024,7159,8999,3651,7644,497,2010,4200,3277,1120,4499,7408,8758,9115,3734,2942,2797,8145,3600,8057,5187,6600,6118,1462,906,3731,3494,4999,7771,5401,5420,6143,2240,6615,5541,4385,4576,6666,7920,4366,7024,8459,7453,8481,8775,9051,503,3838,3779,65,5059,3757,1036,9206,9052,845,6742,9501,5578,6506,2348,266,4118,7039,1431,649,367,9772,6994,9118,4706,1327,5937,1068,5364,8875,421,2718,9730,8090,1627,8429,5174,6732,242,5298,3469,566,5656,8547,6170,1463,8858,1433,6164,5543,9830,9335,8802,5095,3665,1051,1759,8558,4972,4507,4887,5831,4868,3233,2035,5312,6053,3695,4452,375,7298,9407,3019,5934,4013,4926,9985,5276,6657,6891,3365,1958,5838,1524,4781,5634,2234,4208,5831,9200,4091,4676,7126,438,8012,7573,3684,9439,9299,9003,9250,6396,5834,5183,4372,1650,8472,4832,9497,9763,3105,9954,5725,7006,3360,1404,493,3814,1947,6148,6331,1173,6274,2740,5355,6106,7848,6688,9208,4856,9326,3904,8160,370,4385,2935,7179,1307,7353,2535,7027,8705,2504,9222,569,4936,7835,9710,2789,1378,3506,4721,1419,8618,119,7990,7217,7015,4729,8234,8591,2324,796,8416,1247,953,620,5186,3298,2610,1358,2944,1661,9965,2693,1401,2744,5177,7244,7434,6583,7230,5370,8990,4352,3357,9254,6197,5647,797,2691,3204,8300,8997,4612,5617,4445,9807,689,4275,2781,850,2845,3845,491,808,1714,2094,138,8277,1384,4459,3331,8875,6973,410,6381,6374,7679,4287,1324,3462,5242,1257,726,9576,3656,2376,6999,2165,116,9800,242,2386,2211,9673,4146,8561,9519,8961,7181,9431,603,7092,9341,4392,5770,1935,120,7164,1285,9296,6418,6848,4097,3894,2539,554,8295,4580,3680,4767,9345,5410,1276,7112,7461,3425,5033,7800,2104,9069,8927,3288,9999,5118,5983,1812,3034,5536,7985,303,9794,4207,8086,3653,2463,1936,6586,1129,5038,689,9546,8178,1546,991,9756,5807,6260,5932,6692,9716,6855,57,1869,3827,9093,3031,5003,7307,4380,7974,191,9490,2798,8981,1944,6175,7613,4844,2041,1837,1118,5984,3267,3452,5270,2988,8468,3264,3037,9147,6290,9504,5651,9613,4797,3128,8036,2279,1168,1764,7536,2562,4486,1607,5194,7142,5472,3146,2833,1988,9448,7059,6315,7192,1934,6195,3345,3985,6182,1695,6552,4323,7684,1239,898,3862,8733,8873,7480,7289,8015,8355,1922,7649,501,6306,9302,6374,366,5502,1834,6415,412,5824,7359,4844,3220,1214,7866,7443,6306,1396,9215,1922,3311,9032,5838,3632,6375,9428,2758,1115,1159,6423,1260,3963,5198,6353,9955,1019,9041,7779,3525,1244,2016,1855,4621,6028,6666,7899,7553,318,1134,1812,1263,8836,1568,3483,8829,7234,1919,4975,3654,1667,5959,2094,8564,1394,9175,6880,2,4389,7517,5389,8026,979,7250,6868,5318,4067,2612,9272,287,8171,1280,5266,8575,8264,5557,8637,663,6561,5139,1519,4816,1714,6109,1014,8905,2048,2470,1685,1992,17,4258,207,7311,57,1034,7074,9341,2903,181,2175,8138,9801,4949,1138,849,5605,7143,8951,1402,5173,7380,7194,6475,629,8768,1754,2024,993,295,7228,3623,5781,716,20,9080,5864,5827,9854,8844,9156,3651,7830,6851,2432,8273,574,2946,2414,5545,1038,3714,4549,9467,7206,7292,4344,2314,7968,7386,2286,1704,5659,7209,9624,3389,9006,5631,33,7660,3045,7414,5091,9274,5607,2268,3262,521,1556,8523,3253,7338,92,9776,2591,2375,6202,287,9035,6378,4591,48,8824,9298,4231,7311,5016,2044,8600,1746,3525,4121,765,8766,5635,9059,919,7759,3619,80,7259,7875,9602,8806,6010,2160,8885,6173,9228,8967,6062,3856,8447,1672,6980,5668,6323,2207,6467,3395,8944,7595,4601,3917,5763,4336,6119,89,513,5317,4365,5227,297,1479,6731,1208,3797,450,3424,8672,8216,3279,4920,6103,2566,6971,604,8111,2228,726,6468,3897,8810,2931,632,6861,8110,6455,6670,7675,6252,1312,8749,458,9973,3001,4011,2768,901,595,3700,3837,7255,7734,2823,7363,288,5923,9649,7634,8768,7258,9825,9188,4913,2115,7070,9287,3594,2768,6103,5358,2257,9383,7873,789,1802,4644,7609,6940,2182,5054,4957,7551,355,6317,4111,564,4390,141,6031,5334,8275,9985,9701,355,8329,9778,5620,7433,8747,8232,443,3375,1085,2774,371,8791,5818,4101,8076,661,66,865,5108,2599,8271,4804,336,2723,2326,8054,1233,7147,489,2688,8025,1849,6040,9164,5720,1691,606,809,4503,3706,2253,1419,5323,937,1263,592,5229,1076,4817,4280,6808,5533,9005,5023,378,1531,501,1102,538,8926,6470,7594,3526,8253,8660,5625,2711,6879,1980,7948,8732,9692,2711,2120,1347,2064,5746,1212,826,5879,1754,3924,6848,5124,8273,8221,1386,8611,407,4089,9321,4689,5380,5393,7289,5104,7459,4895,8830,200,8100,7098,3653,146,4536,3996,7321,3775,2753,7345,1036,6602,9298,2500,4767,8786,7684,3038,4756,138,1047,981,3481,1108,5733,5769,2873,4129,9680,7186,7786,6009,2398,272,2622,6418,9316,9428,4498,7418,5319,8164,6840,3352,764,9255,5079,4066,2349,598,9076,5071,9492,4526,9980,4946,2354,4389,4206,1882,9038,3201,9205,9132,5451,4574,4742,7190,6030,6851,6061,6906,3471,694,5044,1928,3340,4341,3747,6186,3092,5957,3672,3201,2803,2071,562,9905,8830,3225,8276,8797,4360,716,2354,6420,7434,587,8845,7248,3786,7517,3663,3489,458,4179,1538,5105,1751,2339,3035,8111,6334,3487,527,4222,4842,9042,3692,8462,553,4376,4809,7028,8934,6072,359,5331,7587,887,199,4431,5168,2259,1265,2758,5739,9402,3413,6284,7551,606,3227,1274,976,9262,1662,9887,2001,2821,5873,4704,5174,1862,4212,2062,2202,4661,7699,1452,8406,4801,4284,6244,2703,5533,2026,6321,6235,7135,5564,1179,7725,3543,8175,884,6096,4740,5876,8299,5957,1656,4336,8649,6679,865,1938,1329,1578,4352,3396,1584,8790,4187,4054,9199,3124,4802,3152,2250,1573,3342,6202,5527,3836,6768,5355,6691,6037,4722,7863,458,7340,7021,5055,3977,4199,254,3759,8598,5464,155,8124,5226,4868,6889,5083,4404,8590,3320,6982,7186,4233,4945,6408,9545,7868,5479,5265,7012,8183,6512,8489,8355,7439,9936,2667,3176,6677,8821,890,2870,3856,485,6525,7534,1406,1145,2554,7677,3453,3969,9017,2371,9799,7085,8139,4185,3401,5768,3752,1707,9248,6836,5776,7581,382,3152,2895,3148,719,6570,293,6085,5588,6468,60,8287,9172,8143,1488,3555,8729,6553,6493,3178,4452,3912,8269,7890,775,7793,206,4468,8408,4460,1565,7863,5524,9821,5219,7126,4360,4052,3299,7023,8324,6291,3277,3652,3550,5626,2233,3651,2449,1598,228,1178,8964,6685,1715,268,6102,5987,7076,5466,7596,1801,3201,4912,3632,7111,3795,555,840,4777,35,4995,1684,8960,3871,3051,7783,6411,8030,5743,1412,3126,6730,468,4390,7579,9988,3668,4138,5805,467,7277,990,5525,7473,1524,995,7442,1043,8306,6749,1969,3796,1145,4541,3377,3957,5133,7837,5701,9327,6199,132,4505,1641,9324,3608,7696,806,159,6631,7526,7665,8121,764,7728,1011,4224,6184,8576,9322,2316,4838,7930,2836,1776,5418,2639,6104,6564,5210,7728,3204,4995,9916,2270,9132,9685,6123,7816,1170,1227,6566,9726,2146,8687,7380,9026,1937,6699,6503,4901,293,2485,9449,1238,3718,8765,6412,3334,6477,2753,7784,921,4230,7350,9942,6548,4387,9933,5602,7408,4524,9343,3715,2289,9552,7748,6749,682,1527,3703,5804,6278,4229,4928,4921,354,7911,7795,1930,6177,3097,4590,1238,269,1579,8185,8276,2952,3889,4229,5845,7106,3350,3294,1208,4547,5658,1738,4518,9306,5632,5616,2484,7596,4188,1227,7883,4639,9530,1425,3820,9473,3940,2278,9082,948,439,3053,9615,157,9239,616,5442,2265,5905,3440,6669,2193,9412,3231,9635,4144,6820,7404,2083,8429,2981,1569,6998,1913,2256,4170,699,3572,4146,4612,1538,8065,9671,9465,8427,3141,2170,3000,684,6562,3158,3796,5673,1454,7101,1865,6805,335,4331,6055,3059,2405,8014,4904,1618,3911,6190,1327,2804,1887,1752,6482,5437,722,6490,9475,1097,4395,3248,5943,4547,2328,5350,5326,8035,6221,3547,1139,6488,2065,8309,3456,2341,9313,9656,6849,1150,2484,7886,8956,6883,6556,6337,8188,2091,6208,4551,9325,5158,7191,2308,5275,4672,79,3895,1092,7827,1220,3763,1964,8839,6932,1735,6161,3047,9268,6030,1599,7957,4348,1467,3616,325,3613,5588,6085,6884,3235,2920,3516,4736,1372,851,3451,3838,9494,2906,2066,3344,3267,7023,6457,4235,9554,3550,1600,6507,8243,1078,7471,7842,269,4409,4345,8764,1711,9424,1883,6239,9023,1058,2910,7370,4773,4025,9559,2290,2161,9838,9964,5466,6369,4814,8951,3673,8088,1460,7870,5972,4258,4778,3039,9228,9611,3558,5456,9726,6669,5060,6501,20,1758,6046,829,5644,7656,4709,8371,4548,4319,1594,4352,5222,6583,1092,6539,9266,4948,1426,1050,5422,7256,4392,6103,4887,7873,7550,1437,3866,486,9414,1289,5079,2715,9873,7326,1120,3421,4634,300,2865,2681,1178,829,500,8860,9070,9804,9309,4392,7582,9023,5704,7468,1653,4019,5279,5752,3609,111,3475,6686,7983,2780,9746,935,7175,7399,2031,9644,3399,2028,1710,5279,1643,8277,7957,9555,5579,1491,6197,2004,3209,3357,9200,1577,1919,9246,8468,7575,7074,1920,2415,1672,476,4598,3185,3804,6452,6586,5324,5058,2673,3464,9808,4417,2287,4591,3982,8080,5857,5894,8489,8263,132,7280,699,2061,4355,1359,5974,5274,682,5531,6818,2901,7593,2091,33,6080,7325,4839,4780,3577,2387,9178,6483,9607,1036,5847,9149,934,2232,376,9787,386,7436,2521,6078,4824,7123,6161,5995,6312,8606,7305,2883,446,9418,2885,4514,1791,7944,9297,1294,7914,286,724,8205,9608,2178,2064,9145,7056,9258,5781,9686,8157,5434,6681,9743,6705,7068,9174,871,2503,4432,1259,4996,3813,9488,701,9196,6099,2357,4177,1754,9968,5078,3712,1395,1348,9645,5455,2357,1611,4474,558,132,4781,6651,1886,8301,8095,5829,1955,4168,103,4435,2509,8753,825,3532,3046,1790,5898,1867,2474,5404,9137,9734,9845,390,6930,3644,6555,7964,7215,61,9190,4661,1555,9118,3340,8242,541,3067,1784,7543,3888,6748,488,7524,816,3198,7881,9127,3016,9042,7318,1883,9179,2468,596,8157,1422,6035,8616,8799,6350,2724,567,756,5821,559,3942,2805,9877,7413,5149,1731,2650,7415,1500,315,3,5520,8548,6680,1982,3800,9018,4463,3510,9016,6706,1917,9823,395,8387,1068,9572,2166,2205,6393,9574,1951,254,2170,404,3697,307,7120,5439,6349,5311,6769,878,6970,5813,6433,3409,7971,6505,9569,8296,4635,8749,4699,8161,2775,4246,9825,7842,3015,4188,5290,8453,9323,2128,1068,9918,216,3404,8773,7165,9899,1299,6429,182,8730,2816,3673,9245,8493,8365,3421,3440,2906,3138,3899,3591,109,5382,7712,3826,1557,3519,6078,5309,1494,6203,6505,3607,7712,6074,6292,2253,957,1579,8973,8235,6295,2223,4925,4761,8517,116,2131,1725,521,7609,9253,8401,7092,3458,3102,4358,3508,2788,8680,2959,1076,4721,1722,3618,258,5168,1064,1702,9454,6292,7676,5302,3776,182,6047,1178,7848,5268,5734,3627,8751,296,4916,8328,275,7148,2540,5612,197,34,3618,7910,2393,9023,7744,4549,3057,754,6586,5690,2637,7472,4646,6505,1431,9593,7691,8820,7280,7425,3363,4684,5877,2958,9922,443,7960,4705,1576,6626,4802,1452,8061,4022,232,2503,1717,944,4233,6429,7647,7426,6220,4406,1817,1734,1536,6025,76,8269,8924,3229,2241,5229,7906,6709,6092,708,3119,7526,2262,5824,1104,994,2228,1127,3518,2774,7194,8581,553,5979,6819,1480,2557,871,9126,9597,2452,6851,7689,397,4690,9235,8721,7984,1752,910,7237,4957,9856,5514,9426,977,1882,8153,1939,674,4541,983,1359,9559,6478,2003,5755,3804,1714,4695,9485,6858,6293,5437,2603,3888,1296,4429,8377,414,1941,9585,8579,140,1719,3593,2121,5433,6484,6326,3113,2155,5191,4955,4075,3502,906,1367,2854,3514,3066,8596,4430,6843,4140,4441,5781,9602,6236,3113,7045,4243,2100,3899,5143,4182,2655,461,6941,2729,272,8537,2499,5431,9117,8815,3160,414,4508,1504,561,9216,1213,4973,3870,2659,8657,6394,8355,4092,5609,3415,8157,4635,3293,3312,9587,1366,7021,2284,8278,2700,8275,2731,6370,1223,251,8361,4201,3217,8453,7754,6397,9037,4270,1802,7129,3074,1244,9791,1588,3040,1624,32,2855,3120,7017,524,4030,6199,9042,5870,5177,6086,2330,1294,4517,7773,5451,9383,8796,5264,1249,3245,9041,3446,4143,9186,450,2289,3676,1754,3431,1485,9981,639,245,118,3901,6550,1449,4732,348,6623,285,1286,1072,6826,2752,5259,2808,77,1521,4669,8953,863,7491,5118,9398,1095,47,8919,3926,3616,6126,249,9753,7659,4310,7778,7960,6599,5445,9466,4604,6500,5867,3178,3004,4828,5846,5664,4793,9128,530,9222,6792,9116,4616,7724,201,3741,4372,7583,7149,517,874,1413,8967,4244,9136,4302,1395,2893,7206,7662,4196,3721,1735,9817,3043,5300,8477,9700,1353,8815,8365,6641,2784,9531,5183,507,9377,7338,8304,6901,8491,6447,3449,3097,8984,8581,4709,1422,8092,689,4028,810,1689,2836,4700,5541,4810,5285,8148,4495,9711,5669,5270,9847,6928,2131,9496,9260,1966,3143,4862,7955,77,9338,7431,5361,1325,8953,4632,2781,8616,612,3839,4650,7325,7837,7237,6910,3057,1217,8969,5050,6198,2355,7691,6516,8261,47,3810,4097,3910,2049,4302,2037,8955,9552,7556,2044,9148,6157,1419,2583,6097,938,8231,92,661,6174,9928,5460,8354,812,1526,2312,2147,6680,9234,3849,111,8369,2631,3533,5873,1262,9764,8309,6998,3510,6528,7803,8494,5764,433,3558,3212,4607,8564,7360,1387,854,6418,942,8920,1811,1788,5872,4910,9078,3242,3352,6309,923,4811,2933,9883,3644,3320,4566,7081,6606,7787,8974,2236,3802,3539,6998,8793,3775,9047,6114,8058,5220,5779,7213,3677,9512,8712,2007,3691,6640,6274,8193,4185,776,2248,678,2813,9475,1275,6912,9264,7183,5674,9043,2068,8458,5182,4390,3522,3312,8759,6764,871,561,2267,1491,6179,1691,371,4738,7696,7893,9241,6303,3973,7902,4948,2122,9806,9950,2279,3669,3385,7903,1224,7822,7992,9994,5750,6763,5214,2734,5311,7149,9624,8825,3859,2672,8352,8241,3650,8046,509,9865,8045,8701,558,1262,4249,1275,4536,818,1161,6463,4393,5282,5841,6601,5163,321,8805,7673,1376,1724,6328,4920,7605,8370,5492,7127,2331,9751,9303,6608,3013,9419,5605,7451,16,5576,9040,6101,4521,1497,9745,3203,2529,2290,2922,4307,3545,7736,55,5456,168,5019,6548,3967,692,9812,5750,839,8402,9763,8594,6941,2300,2584,1045,2475,5780,6444,640,5182,1703,9921,309,7920,6733,2907,1272,4532,6692,1969,6721,8140,1331,7193,5018,7677,2590,7245,9425,9650,8089,9911,3845,2666,6516,5396,5839,9937,8104,6998,55,8367,213,9960,2273,9336,8157,8542,9825,3863,1936,4369,4391,7284,6017,9438,6080,5829,6622,3221,3367,2417,1293,1029,7441,9973,3760,6170,2867,9536,5723,7377,1644,8493,6739,8748,8447,8819,7633,6247,9678,4472,7262,1038,9887,5568,9258,5832,5109,7260,9140,168,3052,4324,1371,3300,3681,4679,4668,7473,9121,6084,9524,538,9184,1365,8556,1265,4250,9017,2069,4896,7372,8764,7729,6983,2718,7021,8317,2150,9376,87,5070,69,2772,8046,7361,5821,5740,6223,3579,6821,2853,8794,803,422,8764,4927,6140,3716,3368,5267,1378,8590,4200,6796,9237,1793,5731,8622,8677,8814,2393,9337,6422,9359,5768,3359,343,9786,2368,8612,1785,7663,2262,9267,5922,2101,4633,275,1975,8264,832,4593,3297,3346,7156,9116,5510,4901,934,1597,3270,9770,3781,2887,6596,472,4971,4883,1066,8681,9125,7193,2221,2202,2871,9809,1724,1307,1196,712,2801,6499,4934,8130,1371,1134,6711,2494,619,3885,2470,4019,2551,5146,245,3592,5163,4276,9131,2360,7394,9651,8590,5805,9176,679,6386,1026,64,8647,9113,8096,1446,8001,9734,1514,9500,6840,6758,3912,8552,6874,3080,2952,3041,6737,9880,8080,2620,8580,277,1141,8126,6829,2683,6526,2746,2320,1556,7873,2103,2252,2172,7766,7383,9699,6655,9929,5440,3085,7052,4334,3428,9583,1474,8626,1091,6470,4044,310,7872,5761,3072,2814,6579,6643,6730,832,7136,695,7463,5535,8206,8130,4400,1524,7165,4054,8893,6986,1349,5203,1218,6368,4175,4268,9387,6726,5530,6028,6236,6979,5678,3301,3969,6400,3516,8512,1468,8413,920,3084,6162,8707,5518,3754,3033,364,9081,1545,1910,1841,4982,8607,2136,1058,4699,1338,2388,5995,8430,6894,3712,7559,3281,7797,6377,2985,5866,465,325,117,3413,9448,914,2741,6570,8294,2353,3193,4144,1974,3874,3190,1918,1911,8977,8883,2302,6062,7608,9887,5731,9060,963,5604,1206,4073,5977,5959,9174,5762,2348,7464,6383,6678,5361,9008,6020,1538,748,1704,8523,8413,9362,5253,472,8140,3062,7811,8330,6740,7745,2077,4012,9755,4834,6251,5857,6439,3962,2206,3744,5807,6363,2496,5702,7967,1797,1336,3104,1113,5019,9001,3423,8289,4020,4500,5613,9817,9301,1148,8139,9245,7445,2376,2296,341,4883,1061,6554,7393,9590,8774,169,943,297,4487,4682,1377,6944,7762,4656,9725,875,3693,2729,2809,6445,9973,3671,1119,5544,8372,2807,1053,9556,1118,4265,111,5607,7213,1315,6243,2366,9243,3267,7481,4596,1594,8215,4595,5289,719,2024,5559,6763,7391,8047,1318,4725,3155,8825,6646,2247,8546,2013,2908,1627,2356,3050,1945,4276,9038,8311,8984,9104,5314,5458,9132,2239,3749,2336,8247,2519,4744,5052,5654,1107,1975,6840,9416,7557,1385,4036,3990,3128,2919,3326,4492,8164,4239,4936,146,8884,2411,814,7589,1159,9961,490,8921,9977,4219,4323,2423,3273,5084,5609,5637,5722,6871,950,1150,7979,9887,5278,2874,9358,5181,7987,1676,2785,9319,5578,6418,3195,9349,9403,3603,8694,9136,8985,1741,2075,5317,3197,3682,5501,8030,5488,3231,6056,8611,9978,2118,9136,9324,3226,8523,7426,6235,7051,627,2010,4036,9039,6213,9276,5207,9037,9717,7229,4053,5093,2273,90,5715,6237,5979,3516,9131,6426,819,2860,700,4683,2717,1244,9045,7859,2136,3264,5109,857,6650,5023,5333,3141,9980,3363,2593,2017,7820,3471,8755,1912,5503,282,4990,8000,8221,1648,2468,1293,3650,1809,6800,7478,9961,8875,8498,4777,2206,2383,1343,3317,3900,6972,3784,8452,5785,2903,6239,1167,9680,5953,8492,6650,7966,4622,9543,3636,3024,7070,1620,4027,8256,6388,3492,1144,9076,6845,4378,6475,5435,3823,8532,9747,130,1622,7100,8329,1882,6116,5846,9711,3713,9150,5476,592,3501,4327,191,5657,2039,7877,1073,1290,2322,563,3571,7354,7058,3020,7978,1927,9483,7383,8811,215,9749,9228,1338,8753,2017,658,7359,3691,6841,6901,5251,8720,3186,3570,196,9716,5188,5011,7777,2754,3602,1557,8771,2880,1856,6442,5781,258,4889,8482,9613,1860,979,5566,8664,6395,8976,8244,6553,8127,8709,8979,1044,7994,6683,2259,4476,9941,5693,3149,1954,4994,8122,9783,6409,6589,2477,7274,3702,2284,6907,2628,3754,8885,2691,5968,3020,9419,9304,3342,6120,2364,1597,3855,6643,5177,4424,5057,8056,280,5897,8537,9947,6850,9713,4317,8544,5860,8935,8775,3822,3030,8558,2081,4174,488,4233,2740,2444,5865,9743,9078,8902,3788,480,5625,8940,8726,9647,5677,6333,905,5230,1492,7140,4316,8954,1529,4569,8040,3580,63,2252,8252,5793,4016,7833,6058,3745,247,5711,602,6658,1623,8531,1191,3663,4897,7376,186,2285,1877,3359,8168,9642,762,4566,1486,8912,4231,9667,2074,8745,1818,2861,5570,9016,2772,3218,6333,1356,4597,3144,8441,9131,4077,475,1835,2981,2064,305,2906,6369,2708,1528,4077,5121,4585,8301,9282,2697,636,3480,5270,3706,2963,7371,4502,6900,2704,5668,5408,5447,2211,2795,3249,136,3535,4584,4898,2945,5040,6974,6506,8321,2314,6059,8366,6584,7166,4297,594,9469,5354,5818,8500,1384,4042,5268,1977,5074,3507,9111,4253,1590,9816,4073,130,8864,6834,9776,9175,9024,4417,1933,8875,6716,6645,9400,5686,414,7186,3601,8144,6318,2926,1291,6529,4374,2048,6801,659,393,2826,7782,6597,9540,6247,1785,824,1492,2933,2934,7936,4705,6475,997,8272,3445,5809,2234,2886,8409,7411,991,5057,2125,3740,1332,2474,8384,6825,1515,6138,202,7169,8311,1261,4222,8809,5573,4649,7399,7222,9319,9204,7678,8958,1130,3130,4679,9697,6079,3436,8577,1294,8952,1564,4725,2603,8009,3406,4307,6619,2473,6834,9049,8846,1467,3318,6735,7005,4707,3097,2922,3094,8300,2495,7747,6658,7198,6072,2564,9754,517,5960,6246,298,6053,5169,2069,9330,1114,952,7942,776,6120,3000,2789,3261,8096,6829,3301,8125,1104,4963,1879,6738,5025,6037,1499,422,4190,8254,8190,2829,1277,6821,8439,5524,7120,119,1914,691,4336,5792,8883,3937,6776,5241,6154,668,6932,5128,8233,7573,1828,4621,3095,7871,7601,9632,53,5799,9316,2456,9081,5274,6149,6431,6779,1416,5265,3607,8605,8917,8567,8129,416,3529,5715,8226,4808,1043,8243,8865,4314,403,3926,957,2570,4123,3174,1898,9763,5422,2933,8069,7153,3459,7974,9864,8236,2128,3361,4770,8227,3680,8662,1114,4320,3839,1505,6463,5521,3584,2079,1972,1292,129,4450,890,166,3508,3883,5540,7642,6557,5975,994,338,2791,9049,3738,3928,1384,143,9250,6129,1166,320,6031,7163,1495,4996,2730,3343,2232,5087,5781,7965,9100,2907,9459,8534,5045,3896,2359,1413,3781,9550,2096,4118,7544,3595,4864,9298,9877,8732,2589,9846,6280,5086,2255,5811,4584,6683,2817,3368,329,6242,9405,5548,3170,4907,5931,9712,9135,9105,449,251,5221,2530,2836,8915,8839,1248,4401,9642,3381,6315,5760,3514,117,1803,4440,8086,6754,8487,8371,8266,7806,8977,4822,7074,6061,5475,4135,6935,6752,7154,123,1298,1454,5921,7567,9595,2732,1057,5401,8325,2128,3708,802,8650,1996,3961,4053,8148,4050,8371,6288,732,2729,9540,6521,9888,4958,332,371,3364,3207,5076,2994,7896,7266,3969,4565,5088,819,1852,4200,7279,8125,107,8566,1915,46,5214,49,4026,5324,6578,2072,8044,8659,8314,7844,4313,1700,6410,4721,4074,4565,4173,8450,8414,9205,8702,9682,1440,5914,3214,8481,6944,3456,1903,6717,6665,4083,1104,1455,3900,4439,5426,9603,2679,6747,2344,4965,6782,9684,2779,6786,3747,3980,1635,2656,3986,6351,2983,7341,4500,1363,8414,8276,9001,991,6011,2758,8945,9707,2971,5178,9521,2458,732,7014,3707,5102,7600,9857,6795,8132,4346,4643,9786,5197,8895,3224,5816,7447,1353,8039,3290,9842,3822,7687,926,674,8198,4205,7935,3739,2529,2607,4274,1828,1555,4185,1949,9911,920,6311,7623,5627,6751,772,1932,3996,7950,2140,8593,9751,1110,9319,147,1802,4480,7920,4010,5470,7909,667,9878,1732,588,6958,4092,5272,4572,106,1562,8916,1722,9842,7327,2731,5469,351,2789,7624,575,3556,983,2027,3701,5933,2127,9235,3085,5908,7724,8299,7207,175,8482,3487,2635,5015,5792,3764,4324,8694,3028,65,6995,2121,1387,4902,2488,5579,7711,5187,3149,4122,2325,4365,6664,1214,2216,1433,5655,7860,6356,487,9036,9027,3659,700,6105,7664,4219,8353,3852,5481,292,7498,9982,2080,2990,7076,2861,8844,7502,2575,2511,6496,7118,7185,4286,7039,6397,7949,1709,7305,7587,2178,5278,7574,8095,96,7037,7339,2708,5814,6825,4792,1017,7497,6676,5947,6614,6206,6670,1962,3910,3513,4708,811,4575,4735,7454,4978,9091,2656,5703,4002,805,374,7723,5293,6158,5963,9543,2218,53,388,7218,6494,7175,3309,3427,6746,5150,9298,3729,7984,2531,6265,245,3457,9390,4897,7627,765,6449,9109,8959,2450,2957,9904,6912,255,2114,4384,4218,9780,2781,6033,8082,7498,642,7090,3043,2464,9806,139,6799,9655,5706,6048,7023,4522,7977,1719,933,8999,18,7348,9980,6800,2356,9480,3109,3187,6220,1848,1692,2683,6452,1689,3622,3238,6149,4275,9442,383,143,9637,6073,6323,7385,4394,7830,7669,7226,6672,9534,8533,7093,3462,2652,4698,6992,9243,855,3220,1889,2949,2623,2840,5928,5497,5400,5300,5571,3829,1472,7494,1713,2093,2602,2078,4847,7613,4818,1360,2483,1076,9355,1086,5793,9528,9362,6250,4058,9266,7007,9647,6253,5795,2518,2922,3161,1059,4894,3906,7808,1705,9848,9925,1956,6833,2158,4746,1011,5415,1682,2080,9689,5028,1931,4742,2139,5009,8782,3721,6240,3553,3513,8776,8797,8539,4277,9748,3916,474,5032,1388,8284,1506,6166,1539,1648,1885,603,877,9619,5621,2071,6489,5102,3770,9707,7080,1001,6333,6150,1455,3482,1084,4554,7177,6695,3775,77,2699,1679,4577,6796,8331,1906,6129,7765,636,1689,4016,6826,7534,9014,1927,6114,6533,4069,7106,6729,1221,1692,895,8929,1910,2353,3391,8026,9750,4429,5503,2334,6639,8004,2034,2040,3373,8828,5511,9200,7276,5941,9929,977,7336,1103,2439,4809,6808,2047,5350,2841,3829,8070,1721,6511,4676,1029,9137,5347,2204,1160,7660,6459,2611,1184,4641,1643,5721,4074,5697,752,7896,956,9259,5185,1983,4780,5226,3106,813,382,2243,7311,4154,9754,3434,3962,4265,7748,3082,5001,8015,8471,3269,8251,2256,9432,8028,2601,7964,5133,4744,5853,8646,7081,1,4387,2577,8554,2401,1549,314,1340,4532,3456,7857,4536,3919,9317,7622,4902,9004,1929,3744,7008,5241,2929,3256,7953,2163,4927,2958,3407,6484,6794,6768,6653,1373,2014,1329,6685,6821,5658,7484,7195,468,5346,6423,8125,5605,2318,5609,2108,751,2532,4491,5762,8589,8599,1200,6402,8068,9548,4504,4141,493,702,6799,2893,3444,3756,4952,9218,3,9103,2100,3536,1138,3462,1341,2553,6641,8683,8581,6997,2523,1539,7244,2974,2856,1475,7323,4529,4709,5102,2899,1655,840,2674,3889,8439,1251,7406,6798,136,4687,1522,5301,596,2767,3379,2887,8127,9824,9231,3030,5088,2515,342,282,9599,7675,883,63,8998,1596,918,9916,5017,5210,2729,8569,6180,1929,6633,4751,4477,5907,7056,7896,9321,4033,1738,6326,367,347,5172,120,3046,2276,8619,1736,679,7191,7015,2666,7296,2787,9692,9950,4580,4279,449,6203,6370,104,7417,3911,2483,7876,149,5149,5961,5628,6537,285,6860,5789,7261,5523,5488,1002,3811,6128,2090,2738,4673,2869,2912,2775,4983,7975,8145,8006,4431,38,4630,6555,3028,6775,7930,2299,7510,2326,9511,1639,1726,4651,6303,8296,1713,1153,2537,650,4455,2210,9766,295,8754,8501,9395,123,5901,5242,8792,6689,9601,3337,9262,7098,3088,5610,5030,1417,2865,9212,4003,4120,1698,1890,132,6552,615,259,5820,1141,990,4221,5648,5018,3639,1342,5708,3417,3300,3321,2999,2855,1643,9630,8102,6130,3884,2604,3768,4587,3164,4582,3395,5843,8641,2977,2160,290,7172,8590,2510,3045,3341,865,6045,8151,665,8482,1187,3435,5619,1335,8271,6015,9917,9000,9658,9544,668,3261,507,478,7464,7297,2547,535,5886,8029,6454,654,6804,9370,9438,6124,5632,4767,7027,1360,689,1782,6819,9088,8174,4588,3716,4295,5271,5615,9773,5499,2667,5936,111,4141,5731,6290,7655,6248,8705,8817,9495,8711,9236,6727,3069,2215,1921,8768,9207,6310,490,4285,4265,305,1368,2950,5901,7703,3649,1631,6752,8888,2853,4471,2162,5255,2638,6235,291,5780,1356,9466,5124,2409,9355,4267,6191,3538,2425,1568,4058,9168,4370,4725,1413,6269,5482,3155,8751,5295,1123,1459,8067,2545,188,868,7466,4665,656,2457,2752,9255,1367,7645,8039,3180,3565,4489,7854,994,6390,7421,7776,7728,4407,8433,1669,999,6472,7081,3065,2313,482,7485,5477,5915,2704,4600,1318,4810,2832,3428,6100,5754,17,6965,6141,2753,8590,5409,9458,1182,5080,9387,5725,659,390,4901,8755,1092,8662,3698,3949,5702,6944,1815,3612,208,9658,2417,9985,2967,2458,8458,4257,4212,3932,2694,3396,9668,41,4872,4211,2044,1925,4410,8568,8612,7590,383,4429,5560,8459,8388,5055,8914,7947,8985,3762,8583,8789,2719,1100,4359,7914,7992,9654,1241,9297,419,1038,70,9567,2602,1990,7910,1345,9786,710,1819,2854,8608,2382,126,2425,8551,671,3111,5199,1079,6756,352,6293,7521,4817,6773,9962,1232,8092,8988,2060,296,5113,7753,5132,5179,4554,9733,6052,8540,4303,7619,5525,3952,3194,7502,5224,5239,6108,8857,5990,3981,4030,3688,6968,2067,5383,6133,9085,456,3624,36,2304,6238,1709,6726,3263,892,462,257,4929,7316,2200,2723,9594,8980,5834,3983,8657,8437,9391,1582,9244,9449,8766,7529,870,5695,7835,3328,964,9478,6680,2731,2201,9066,7705,5192,569,7123,7863,717,7057,590,1748,3520,5215,3582,914,3009,5899,4587,6672,3811,8382,2305,2190,2064,9726,6290,9713,4496,4573,9055,3801,2569,4842,3353,9744,154,3234,1145,5722,3952,1970,9480,7716,7624,9803,4566,1943,3568,4001,2791,5990,9673,9890,2379,1466,6779,2204,2976,1250,1363,5139,6959,6901,8579,9200,6944,219,8257,4439,2445,452,9205,2017,265,5247,713,2270,325,2799,47,8501,517,8147,1833,4923,4895,6139,5919,8828,6454,8987,3284,3072,5724,2046,1401,5195,8222,9436,7296,2035,9421,4412,2567,6607,6988,3366,9227,2647,2159,322,7811,5618,1043,472,5830,9675,8297,1761,2028,7848,7084,7299,1198,607,7533,7337,5092,1344,9728,5132,1069,2322,9711,6797,9918,9098,1001,8011,9551,8904,538,8225,2152,4719,3266,806,8439,6439,5779,3832,3761,5050,2663,2245,1891,5100,4404,5195,60,2852,6898,4997,202,2245,5567,8321,2780,1642,3779,2211,5752,438,2094,1312,1268,628,2172,8012,1587,7028,3880,5203,6536,7870,1678,9805,8892,9272,7092,8789,8007,4328,1285,2516,8690,4442,8767,4026,9570,7423,8032,1583,1164,1248,3152,5537,2918,5886,5331,8190,3180,7949,3807,1133,3847,415,286,4277,2034,6015,1810,2393,5340,2939,5725,3232,372,6441,6692,2209,7839,8219,4334,349,6699,7787,5863,6984,617,8009,3681,8574,3270,9807,4635,3854,4196,498,2409,3453,6403,227,935,5932,4776,4978,8799,5472,2453,2824,9192,250,4776,2769,9601,4617,2283,7071,3200,7922,6753,1196,2208,5044,7083,2791,7483,183,5990,5814,1723,1913,474,2106,5631,8891,6924,9813,3033,4074,7965,2289,4020,1586,6001,5537,2182,412,6128,5957,737,1353,2634,6770,6714,2114,5383,2052,8880,115,6237,9172,5114,576,5840,4841,5053,4811,1715,7749,3402,2916,2277,5798,9170,1354,8550,394,2627,2542,2593,3215,592,3484,1614,9316,4489,1277,9919,1598,5346,3443,7623,7705,7817,6119,7347,6281,9387,8029,7871,9153,114,5525,829,7957,1499,8041,8501,9359,6780,6634,4430,9688,7580,3874,4365,6506,4107,4461,4382,7062,6520,9686,2928,1291,8733,5735,7466,4482,300,2133,5461,1166,5750,8368,9984,2209,9439,4855,5000,7232,4781,1566,9693,9577,5609,177,4068,3001,1096,2896,6627,5771,3916,897,1765,3136,7352,7435,6743,4147,7951,5425,4931,7566,7689,337,5261,1866,8566,5994,6425,9452,6117,6232,4962,3786,5265,1322,7115,8362,7115,8142,9502,2887,3587,5467,7360,5239,9278,5922,5720,9550,466,3356,1726,6588,3356,9569,9329,7818,2645,8417,4517,3337,1456,1092,9057,3839,828,7858,4239,2483,2483,5282,6424,9147,5519,8527,7016,7802,1573,2266,706,7372,2927,4039,943,5977,4716,4485,7085,1342,9911,4340,7778,1404,4927,6124,1936,8591,1036,3784,6393,2450,8417,6354,823,5107,3178,1722,961,8981,1217,1528,4947,1040,4437,3403,3341,2888,5113,8907,8665,7230,514,7813,522,484,2850,5733,8103,2725,774,1761,6169,5384,2025,8564,4683,2261,9066,1878,1142,387,8446,5955,765,483,9539,7372,5175,3351,6634,3937,2854,7162,7720,6700,2225,3927,3935,5339,9753,1326,1468,2925,5296,4070,2381,5607,9279,2441,800,4451,9939,4904,7376,7019,5729,3529,8454,9912,3673,7143,7126,7609,9700,567,8986,5820,5041,7575,5000,5118,4374,4618,5657,368,8070,5743,6739,9274,4013,3677,1321,1335,4125,6213,7466,4063,5040,6823,653,478,3210,5479,5781,3244,5215,9784,7142,3299,936,7300,2258,1148,2502,8645,4149,1816,877,3445,5729,2865,3822,8722,4491,7457,5411,1154,1134,1194,5776,410,688,524,589,3813,4138,1605,3588,6418,8734,5638,6793,3050,7793,5648,4129,913,3642,3454,156,9298,2570,8595,9328,5966,6443,8123,3718,6196,6381,574,783,7584,759,625,8370,3422,2883,6583,6094,7703,7833,8744,4106,8392,3621,7757,7545,3663,751,8301,8767,3137,7366,7605,2998,5197,1071,1682,5929,5767,2745,6048,8086,5563,5639,9887,9982,8846,2211,35,1164,7797,9773,3463,413,4644,9082,5532,5931,3886,2062,4336,225,4077,3611,8196,6685,4237,5366,7060,8918,5451,8844,5382,4108,6905,9436,1251,2870,6908,5245,6129,1623,2672,4730,3421,3700,7467,1831,3441,7990,7480,259,6242,1125,8851,3191,533,1475,9105,7415,2136,2962,3965,5852,8765,9813,4277,8404,6224,9702,7163,2632,8796,3880,5989,1545,8348,4965,9399,8757,617,7211,3237,1228,5827,7252,1556,9042,7048,9604,9413,4650,4970,1257,66,7265,1229,9117,5932,3203,9191,3128,6696,1797,4914,4943,8962,8728,1179,9862,3654,9766,9348,9807,6197,5562,1218,7899,6278,7628,7748,1246,4735,9968,4961,4114,8561,9912,6112,6883,6586,9597,9784,2147,906,3703,7686,4348,7328,2057,3182,7812,2255,1679,9591,2485,6926,3612,4704,2820,5430,3260,2498,8282,1164,351,8719,3942,6488,5358,9685,8965,624,1444,7181,9960,1933,7612,2905,4318,4161,774,8946,3444,5411,703,606,4110,9729,3371,100,1590,2702,7911,8445,5704,1901,9149,3019,5702,713,3381,4907,4799,165,580,6310,3167,500,5116,3237,7304,8985,316,7039,658,9669,2046,4967,8810,7590,7216,6896,5954,437,1677,6251,9322,9301,4935,4249,2772,9245,2252,5414,6309,66,3018,2262,2773,1420,8855,4915,1949,6708,3254,4387,2176,4822,8619,4888,1978,4757,4273,1901,9996,9459,7696,2237,2926,5839,8601,5052,6071,9514,2216,10000,4006,2982,177,3145,6379,7033,8207,7262,3769,3527,1993,2833,4142,871,4651,6268,7689,9564,7654,3743,8399,4538,9939,8079,8740,9210,9711,8086,1596,3003,2151,4715,9944,7955,2081,2966,9924,4542,69,3753,9068,1963,1622,1453,1427,6293,4601,1843,1361,2360,9544,6188,6348,9754,1766,3586,5980,1177,9999,3998,3767,191,155,5124,2759,3109,4055,5928,1915,4753,3540,7312,1805,2619,1313,3096,5622,839,7436,8589,547,226,4961,1136,3285,4446,2115,4805,4234,8344,7428,4002,7563,7906,2955,7730,4096,38,9958,14,977,8060,5483,9309,1711,7786,4903,5702,7631,7690,5545,3886,4736,9374,625,349,121,1078,4460,6038,8962,2872,3704,7479,3725,3649,6379,1990,4552,5388,6565,2130,52,8558,3208,817,2011,8673,2811,7080,8543,7033,8175,1730,9496,1926,7812,2467,302,4663,4137,4972,6814,601,7981,3560,9927,3346,4747,9799,2659,2326,6051,3234,2010,3856,1210,9552,6056,7855,7520,8445,9826,5064,3182,479,8013,6528,876,3290,186,5337,8701,2185,8084,5491,5774,8291,3859,4081,4722,7883,9140,9460,8334,3961,5159,7796,1167,1340,8263,5576,8803,6220,9986,8627,6520,7862,3819,5664,3362,3450,2031,1053,6417,6255,2233,7714,4636,7119,9002,6041,8241,8995,7595,8394,2382,7796,1299,7481,4547,3683,345,1920,5382,8509,7791,7394,5949,194,3228,1238,6960,811,355,4967,7684,2159,9693,6120,5821,5889,4421,1413,1369,8218,4214,4973,7465,1142,3384,8381,8241,4450,4952,8444,1977,939,7634,3618,3226,3675,6449,1952,1551,4627,1461,6454,3591,4044,9170,6290,5420,9110,9819,9544,5842,1488,5279,913,9591,2062,7076,4785,2025,6758,4824,4724,6738,9317,2095,3919,513,9263,6071,8665,8051,9332,6230,1200,5823,6531,3831,1702,9179,913,5231,8619,4143,7492,7523,4574,5408,4762,832,8245,4844,6329,8633,8975,3393,7227,7960,56,1860,9740,4095,15,7795,852,9247,6615,937,664,3278,1775,4438,1503,7078,7174,8342,8070,9503,3397,6841,3188,8587,7266,6745,634,5811,3467,4650,2958,3263,2060,4840,7804,1585,2293,12,2628,5626,8568,8378,9970,6439,9121,2281,6170,3436,9586,6983,2487,9947,5519,1816,7705,5869,466,7887,6260,1174,116,8903,1963,2697,824,6167,7356,8759,8027,3790,7154,1194,1811,7950,256,6789,9109,1060,2602,9051,7375,883,3136,6931,7542,279,5484,6792,3126,3233,3941,9945,4902,7584,6722,6227,721,1302,9840,9845,1748,4959,9199,5531,4047,9161,4485,9351,4669,1477,6751,1380,9347,6678,8661,838,2747,9510,6749,157,7288,5657,3821,649,3555,4356,5785,8609,9147,8765,9275,2386,2460,6875,689,3320,8010,2066,7260,1291,3061,6766,8810,1024,1274,4119,9720,5002,3676,7421,5235,4568,7841,1426,7011,7009,8964,2681,2325,7444,3098,3658,3374,2689,206,6249,7266,5776,6353,9567,760,5543,2599,6069,2866,196,2557,5156,5164,279,2863,591,3804,5891,1217,7792,987,1709,904,7215,592,8576,6761,5742,9865,8210,8281,2182,4514,3829,2380,2709,6153,8919,6216,9208,1173,3535,1775,9676,1559,3045,7399,1277,2201,7991,6219,8168,5210,9661,6212,4304,3499,9043,6311,4011,624,5663,2637,6305,7022,6682,2747,1706,4408,17,6442,8286,9008,3493,6313,1232,5284,8732,5064,3556,2463,1557,5730,3692,5709,5685,8489,4758,1124,157,7533,6257,3623,8048,2211,3707,9385,7610,7346,5587,671,9051,7118,8308,3304,5590,3153,6729,9252,644,6196,2018,8693,2773,5976,4030,9009,7162,1721,6409,4681,3048,7405,3663,2404,14,3589,1131,278,3914,7074,2137,2502,2788,3966,8582,5823,3828,4421,6128,961,7542,3845,1608,9217,6013,7188,9277,2380,2518,4512,5463,7908,9097,7435,4925,687,4036,1423,7498,4111,2459,420,5540,6504,3534,8902,4192,125,5903,314,2857,3904,4101,2429,2947,3772,9599,389,2379,882,1980,3729,2141,655,4786,3557,928,5407,5153,2634,3818,7076,8257,5785,1323,7355,2889,6268,7249,3445,7237,2474,2035,1547,8582,3995,6199,7074,4669,4892,7355,1016,6601,4546,1039,3386,2856,3498,546,1906,5155,3174,5095,5634,8421,1581,2896,1471,8159,3769,7961,6927,8402,5219,3082,4347,2584,7174,7405,556,977,2548,1572,6226,3139,737,1953,2235,9824,3106,4161,9330,4836,6097,8575,4352,4675,4401,2599,1332,2208,2218,5917,8928,8440,63,6706,998,1592,5931,7522,8132,828,5566,3840,537,6040,4515,1144,7764,1797,8499,6614,1066,3215,4923,2202,4089,5498,1269,4936,7858,4381,3345,6279,4795,1248,7439,9005,1146,4919,6120,3645,4395,1546,5102,4698,3473,3115,9055,5043,1906,6655,5773,1919,5373,6806,8598,9031,3897,3708,9979,9256,4570,3952,7039,7643,4291,226,3049,9247,5133,3324,1867,3950,7081,3271,3563,2843,3586,6155,1808,5554,958,7758,2033,1866,2158,1535,2627,200,4699,2636,6630,6702,609,7948,8034,6906,2313,1499,2938,6449,957,9077,657,2790,7358,4749,5877,4697,98,2386,7748,6919,7784,8876,6517,1282,5130,5199,1772,2505,2956,997,6397,9579,3602,1512,4950,4794,9,8734,5191,1556,2319,1384,1918,5089,2781,6349,7179,4722,8580,6436,3584,1902,5815,4901,3047,4082,6619,3713,1400,8477,6039,8046,8835,3829,2720,2485,6039,8732,2443,6061,6962,2980,3800,1,5846,4679,4276,5797,374,8941,4765,2743,6662,7107,1129,9912,4898,7409,2117,580,2901,5366,9359,3971,3277,6531,1112,8129,4427,8759,7816,1334,3238,587,2674,4619,357,2689,8529,2302,1074,2194,8773,5641,7387,2075,9816,1065,546,8326,1459,2414,7016,631,2228,6296,7838,8117,9774,3752,5095,6623,4704,9194,5657,205,3623,3951,4201,7340,7,4428,3524,4323,2441,1274,8873,5290,7235,9282,1788,3680,3964,8922,6366,5201,8192,4272,1510,5739,3196,7883,8026,5498,5448,2370,7103,102,5229,5677,6394,1588,2932,1396,9177,1134,7745,9254,9186,373,9696,8850,3099,7354,8649,7911,1834,368,9507,6104,672,1754,7517,3193,5111,1263,1539,5036,3690,546,8427,5107,5521,1575,8230,594,4166,5650,1624,9814,9194,8114,6821,9262,1828,7852,2542,6047,1774,1631,5025,3402,3764,7479,1982,1875,1473,6076,1310,4576,4657,3919,8926,6217,1672,7700,7285,2406,612,2045,1293,1307,3271,3866,2372,6290,37,3719,4914,8638,7632,6771,3133,3072,7572,5535,2318,2236,1147,8469,3859,1055,6163,2020,6862,2161,3435,8850,4769,8335,8268,3061,7336,7654,609,1565,2272,4704,6535,8059,7776,1943,7694,6583,9838,6567,5120,5323,3543,3718,8002,6769,4020,2940,4391,1482,5929,2133,4867,15,7858,5155,4877,8603,4771,8946,7753,5094,2979,9970,1159,6174,803,6968,7186,9568,1049,9625,8705,1088,3127,564,87,4595,4860,9895,2704,8953,6384,2166,6985,3324,2652,9768,2595,7225,1458,7700,9616,2118,2072,9206,2745,6564,1142,389,1910,816,5631,5057,7295,4954,926,2904,757,9784,9288,3232,3224,9344,8014,4906,8080,1839,8254,2679,2938,4060,8832,1803,8658,4459,6443,417,776,3800,1110,2188,4400,9129,5832,5572,5838,3963,6613,6001,5856,332,543,1062,6876,6356,8985,2519,9568,6006,9463,9700,4567,591,6186,5683,9727,913,1158,3698,1392,2678,2357,3126,5338,1862,2020,5709,869,9590,7122,788,2689,9687,797,9303,2727,4416,1825,4036,6517,7324,8452,4956,8992,9385,5238,827,7133,2669,4923,3109,5058,8166,6965,853,2413,4911,3187,7470,4246,1678,1668,7295,5519,76,8415,7102,587,8299,1261,551,5182,9301,9345,3678,9695,2701,2857,8971,6013,8380,4282,8189,8589,96,6151,6333,6762,5859,5017,8086,3258,3413,3385,5803,6213,7554,7850,8298,7447,5523,880,5658,7298,4274,1579,4332,5550,6332,7399,543,9356,4813,4984,6184,6460,4753,2837,299,5329,7225,8272,5698,3893,8982,4429,6094,8300,433,4097,4644,4716,2663,4349,7133,6002,5440,5054,2613,2115,9705,4341,3546,5772,6323,2189,6216,7392,9040,8779,4552,700,8124,6338,1014,8199,2175,1184,5929,8896,1234,3788,2391,7593,6179,2092,1431,6102,8418,7281,968,4537,3492,4327,7418,8042,7952,3307,9440,1567,4775,8716,5834,7576,1698,1237,1365,4328,119,5149,8524,6252,9817,4271,4848,2687,7080,568,4971,4770,7861,6490,9561,5628,7716,1408,7083,9269,4103,4388,1541,5816,3274,2453,2195,2841,4701,321,8638,2227,2682,4614,9365,5095,146,949,529,5536,1017,9254,2559,8773,3090,9488,7324,6030,9580,773,7601,7039,2644,9709,9872,2229,1891,2720,8914,8985,3899,743,3322,1279,172,8934,9569,1380,9505,3220,1058,9802,9219,2092,6413,1160,7809,2324,8466,9687,5749,6426,4674,7590,3506,273,1238,7528,4006,619,4185,2529,9974,9918,7604,1743,4449,6408,5753,3601,980,8916,8107,4738,6053,7059,2719,7947,3522,1205,7427,1284,5979,9191,6670,7368,1900,9358,3605,9138,2353,8843,3375,8924,2085,3576,1850,896,4267,7338,5292,4950,7517,7796,5274,4732,4882,3609,1926,5836,5826,2949,3089,9454,9254,9685,3744,5068,7575,5650,9066,5040,8742,1996,4102,1536,3814,4867,7903,1418,6396,4366,3809,1652,5759,3622,1812,3573,561,4913,771,8406,9433,9452,2359,6800,4888,5215,8380,9596,1146,1171,3379,7188,4768,9967,7123,3116,973,4014,2903,1082,7477,4406,8125,3274,1277,2769,413,3642,9253,8209,9336,3339,8788,6144,3377,7925,596,5691,2031,2348,1669,7394,6600,6623,1809,7074,8896,721,4852,831,9533,8066,4771,8837,4847,9463,3715,8793,6373,5974,6043,4479,5664,4550,5026,990,9044,8816,5988,2777,9971,8439,7544,643,3621,5833,1019,3527,4800,7713,8278,3279,1385,7698,4913,8988,6431,9199,9467,8146,3606,4099,4635,725,1644,8354,3208,1619,9180,5379,6375,9662,6886,3652,2734,2134,4675,6634,4030,5313,597,9400,8145,6557,9884,168,9122,8193,5993,4327,9751,2932,2074,4669,2140,8205,9012,9123,8905,7190,759,881,7343,3896,6418,4209,7012,1431,4344,7415,9789,1132,4746,8819,3463,3418,2053,1996,5035,1477,1089,1236,8505,9922,1203,2866,764,5918,4331,382,8731,2574,2654,3035,8823,2719,2438,576,2779,7214,5710,9295,6360,2435,215,3323,7609,4922,6954,2051,7949,9653,4502,2546,368,8520,8133,9047,6604,1713,4031,9887,5004,5556,5148,8958,8067,1530,3234,6474,2987,909,3007,8007,1950,7788,1114,699,8619,7343,2834,1098,811,1221,470,3997,9367,1035,3851,1484,3724,2082,5650,9089,8736,5195,7410,3919,7412,8277,9357,4010,4033,3796,335,2781,7544,6503,2421,57,1041,4227,6154,6348,2256,4309,2140,288,7353,1678,1815,7556,7323,198,3071,4604,4476,589,8816,9733,6173,2998,3275,6509,5844,4491,2648,1662,8444,1971,1355,3011,7139,1257,2117,7292,1559,3738,8810,2373,7608,5358,4846,7184,748,7609,7821,4684,3287,1331,1343,5754,5997,1954,6246,6513,1522,1119,4104,3160,8685,3960,4214,535,4630,6164,6691,6422,7237,4094,3440,9876,705,8871,1211,3919,2205,3762,1665,4579,1496,7624,8925,1864,3723,1109,9087,7193,2710,8400,8194,3605,2252,3198,9888,2011,3137,2616,8661,6541,8556,4775,9888,2864,301,3250,6212,1050,5445,5925,4006,7814,7090,7597,6828,800,2732,9246,2630,5341,6067,6280,4889,7875,2457,7287,9530,8881,3248,3858,8996,6639,3766,4813,9117,4883,7962,1746,8674,318,6652,6030,4249,4583,1888,6702,9853,4263,7059,6709,916,3103,2716,5530,2556,1819,2848,7847,5670,5040,7102,6049,6939,1391,1795,6633,8363,8184,9437,7154,1836,3399,5163,5032,6531,5439,6535,5418,8456,46,456,1516,6594,9757,8790,5740,889,3146,4206,4694,1628,9112,7657,2550,7312,8771,2977,8244,2536,2546,5964,6505,8948,110,4300,2924,6838,2089,3663,4157,1079,8893,6977,3396,2177,8700,3392,5901,6568,4776,1687,2738,2922,1948,237,9912,16,6279,8880,6422,7923,8505,9812,4976,6354,7774,3306,129,8100,4370,6793,9074,7669,4610,5812,7005,7901,7685,1994,371,2434,8106,8317,2559,5478,8958,676,6652,2603,5545,9706,8824,3606,3694,8143,5566,8714,1519,9856,7817,8558,6454,9329,4214,7386,3021,3233,6854,2611,3462,890,4662,593,7706,5898,7286,4815,1662,4318,7824,2554,6001,5079,5468,9257,9011,7406,5029,2868,7459,2993,3956,4907,2681,2457,6581,7207,9840,7,7583,3107,2048,2395,5690,1254,2657,782,5109,9395,9973,1714,9893,8642,6492,5308,4626,5099,9921,6150,6793,2006,9943,6110,8563,3030,6465,477,7504,2415,3230,1814,8343,6689,9451,4690,8716,6602,7288,797,7718,78,2611,4946,3765,1660,8598,3301,3554,8489,8078,323,3534,1843,2236,2282,4980,3435,6155,2218,6745,5258,6530,8732,5749,9707,4840,6831,2823,2036,2453,4414,7923,2509,8288,844,9799,1382,3477,6019,6729,7963,4037,2112,9669,3370,9657,7956,9195,882,7488,372,233,3272,2899,2153,3571,9973,9256,2441,6750,6752,3198,7025,3666,501,4005,8735,9072,4216,7214,443,4732,9700,2981,6882,66,1691,6119,3344,2979,2457,5658,1591,7710,88,4082,138,9903,3538,4336,6443,3058,4071,9465,6410,4175,3184,7693,6466,1806,3847,5013,77,6824,8519,1007,5786,6684,6595,8963,977,1481,8773,2879,608,8414,7787,945,5151,7469,2793,9643,1102,7248,3210,448,226,7526,369,31,915,7361,9882,8697,3032,1832,4285,1311,2562,5573,7113,9773,6139,7500,4229,9746,4819,306,5244,2162,6640,1421,5843,4530,5322,6359,2603,4117,5809,1024,8623,1215,856,8009,9630,8364,9039,3427,521,3076,4554,5125,4660,570,7452,548,1341,6893,7426,665,1330,6201,459,9934,5088,531,5115,6559,9169,9274,4961,9633,998,3386,2661,9790,7773,6575,3554,7292,9286,5503,2487,9834,3178,9223,6823,9645,1016,1578,8345,7201,1685,3087,3332,9503,5515,4020,4987,8263,2605,6112,1400,2785,9643,2023,6200,3955,3398,5409,8110,7280,6374,569,6568,8263,7670,973,2763,2697,8261,9229,8190,6533,5897,3507,7735,8987,4954,6034,5936,7424,6960,4522,4878,8675,5688,1224,9987,1135,7137,6463,9161,5172,9700,7756,2716,6950,8651,2086,4949,3545,6789,4389,2560,7025,3454,8183,9819,4078,667,8928,3589,6327,5006,9125,3913,4325,2314,8615,4004,803,7699,9266,4600,3417,4000,3631,4121,5529,1894,1035,2205,1440,7542,7846,8811,6243,9152,646,3134,8306,1776,4050,5218,8358,7501,5100,4775,6439,9321,1402,8314,8361,4851,1461,4461,7341,7862,8870,8622,5969,3671,9357,2113,5215,8362,9109,1324,25,7682,2688,2139,4765,9197,1061,5737,9321,3841,7664,4037,3183,388,5708,8592,5039,4242,9675,4572,8187,1837,9154,5064,894,4826,5062,6498,2164,129,9655,7411,7495,9820,5411,6405,8220,5737,1785,2317,7436,4193,5502,1266,2925,9838,8510,4069,8930,6289,4540,6858,6105,6196,9561,7948,2476,6200,2239,6441,7277,6972,5287,1731,7369,7261,302,3040,6219,9535,7240,2935,5909,6806,5582,2599,3563,358,538,7650,9321,3375,249,8525,8889,2262,7688,5438,3175,9326,8212,9391,4921,1581,8048,5139,6645,6081,9288,6504,6382,6847,4614,3798,2890,9124,5313,7893,2374,5195,7711,4296,9605,8640,8175,8133,3566,373,3966,4354,829,263,7355,1709,4435,1197,8017,5823,2003,7989,4273,3068,940,2913,8300,8713,4964,992,9536,1083,3401,7614,3265,6540,6939,1628,2394,4439,4741,5484,1852,6193,9744,726,7738,8710,6695,194,51,283,274,2880,9901,1277,7808,9589,6674,5611,1133,6787,4121,7260,5776,1321,6659,6897,9296,5840,7164,3173,2041,3668,9503,3992,4463,8335,9199,4719,7823,1471,8231,3840,8294,8410,2789,7356,4491,6474,6993,1751,3381,6622,8625,7974,936,4613,9827,8062,3940,7114,2477,11,8606,6089,9190,5263,1531,7641,8553,689,1385,517,4803,1175,6936,3018,4936,1625,2359,3071,9206,2157,1777,7326,2743,8261,6111,6745,6523,468,9654,9451,8783,1599,9748,3117,8786,2421,8951,7985,5887,1097,2666,4768,4633,2398,9124,6343,3375,2396,3454,8278,381,1842,8031,2065,7655,6271,8697,6374,4227,6306,3001,1345,8409,4850,8081,6779,3659,6946,8468,4893,82,1683,3731,2259,6124,4227,8756,4762,9823,755,650,4294,4633,1229,4405,4176,9408,9741,6175,6808,3871,1761,1426,1882,408,26,433,243,3220,3796,4257,2124,6918,2386,2621,7515,1241,1080,4877,5413,1820,7773,7110,4592,9148,8199,2306,4649,2545,7390,4188,6942,3872,24,5253,5388,2134,7609,1335,2069,3084,3214,5500,3114,4959,7507,3740,1441,7246,1940,8678,4225,9302,9708,2799,2552,9318,6115,9807,371,9261,8293,2283,7192,5408,6551,6634,1363,9097,4263,8042,6511,7693,3406,7189,7730,9317,49,9256,5678,7232,6732,8585,6498,5028,4935,8261,6371,5753,2233,5841,7425,140,2419,9537,3993,9567,6303,6381,2974,5026,5274,1367,3349,2618,9790,6994,7421,5693,385,5105,1753,9969,204,6174,6179,3652,2025,2007,332,5521,1306,2184,4755,38,326,4157,5819,4607,4494,222,5563,4699,1472,7214,8699,2641,5511,4746,4790,4268,1414,2205,3614,2803,3153,2878,5314,6662,6856,1260,7528,2932,4241,8553,1386,8908,7455,486,955,6083,6412,392,2555,8277,609,5289,3262,5727,6458,6535,7736,6073,8511,1189,9352,4084,7255,6895,4174,7925,3992,5259,3712,8286,6314,3821,6284,53,8346,2880,3747,8453,1518,5630,2025,5838,5773,9386,6995,8447,6215,7018,8832,8648,2200,8343,1715,584,4319,895,9001,1942,7356,9681,2949,9511,3310,5983,6469,6971,12,3741,2844,991,3749,4521,2071,424,598,2216,2494,8127,9134,2382,2899,9487,8469,8999,6172,6505,4383,8932,1117,3963,5020,3914,8844,5566,6414,7627,5319,5894,9635,646,7890,1351,6658,4657,8917,4196,2268,4309,9864,1737,423,6429,3972,6555,4621,4541,6555,3867,4494,2635,5246,1261,8250,3536,2502,1805,7952,6123,7330,94,3959,9180,7310,422,6676,3726,4652,1616,5601,2953,1757,599,5072,2733,2622,4234,4919,7945,3861,6585,8557,6902,4087,3784,3741,742,2067,5088,9841,6789,3918,4584,7648,5984,5576,8991,911,2593,4110,5665,1243,4042,6154,7486,4412,6049,9399,3392,5166,955,1146,3683,1600,7231,7307,5441,9431,4909,8807,9515,5927,897,7437,5708,1939,8150,348,8124,8967,643,6704,7325,966,4279,8924,1772,8901,9493,5501,8896,4550,1716,2781,3841,8426,5431,2090,2620,847,1529,7920,3373,9682,4154,7070,1708,4096,4899,9752,1938,4463,3693,571,3308,9973,6344,8458,3609,6102,7212,9774,6075,1476,3508,3048,9487,2368,1797,5217,677,5237,7300,5736,3792,7775,4861,6649,6679,7739,930,3883,548,7104,6521,6660,354,8895,7438,8145,9408,5563,5947,2224,3553,4472,4343,7279,9625,8634,1268,9877,3028,9202,3759,1466,5566,7618,658,4014,3585,1400,7409,951,3153,4597,1666,7004,4900,4248,9928,1290,1993,9309,2921,4137,2028,5216,9764,5874,9533,6644,407,5237,603,7138,7973,2991,699,3521,9350,7746,4372,1737,2615,238,8220,8858,257,592,2542,1138,6229,931,8180,2835,9534,3099,2617,4776,1952,3340,7049,99,5645,3920,9338,5760,2576,8232,2713,321,2041,6832,4855,1474,3485,3505,7248,7627,7630,7055,56,5948,4570,3171,7040,8636,1068,1359,6785,7159,4517,6317,4963,6443,7352,4964,7617,9011,1593,8932,6367,3321,3209,4012,6911,5476,5806,7328,1019,930,7073,1928,2407,730,3169,2306,8177,6787,8050,1457,3914,4426,5633,1062,2293,4740,591,4629,7820,4388,8415,2943,6823,2334,6851,4220,9089,8984,72,15,428,4442,8497,7561,7319,247,7915,9473,1768,635,5804,3510,5638,747,3699,2826,8250,3046,4092,3216,579,4076,6359,9976,1773,9876,3861,5827,1267,5411,6658,136,9672,563,4313,7274,8110,2187,8352,3386,3399,6645,1559,8686,5047,1651,1201,480,3897,1357,5447,3556,6366,8068,9551,8402,5028,7346,2017,2897,5383,5494,3276,9769,2073,6228,305,5289,4829,9330,4067,463,5816,4102,9413,4684,807,8051,2648,2518,759,4235,9079,598,4423,3454,5140,596,9054,6717,5700,8089,2050,6499,386,5256,5462,1758,8834,1187,8652,160,1001,3418,1793,2412,77,4128,5098,3529,2863,8042,6090,6046,7696,3558,3833,9564,8362,6193,4050,5216,1449,3351,4685,3157,6320,4865,4600,2244,5904,6444,2396,288,452,4523,9080,8583,7292,8354,6742,1442,5889,468,4770,9819,9511,945,3398,8063,4230,9890,2379,1417,8972,9247,5338,2482,1811,3645,6258,6178,3409,8462,7945,5249,2366,5782,346,3625,3107,2988,6711,6191,6793,5665,494,8426,9287,7965,4527,191,705,7603,6688,4472,6173,7522,1006,5021,7060,8637,9308,9401,8065,2272,6615,1832,9982,3539,7008,6376,1673,6512,6478,3424,883,1853,85,3796,8907,9544,2505,8898,3528,5539,2952,7113,63,9528,5675,7399,3194,7306,2179,1555,262,311,3900,9721,4297,9382,3244,2268,7756,6800,8275,3207,7187,3583,6547,8616,2272,6858,1697,8625,6292,6112,3532,2637,8740,3834,4584,5266,5315,7569,4298,3743,4783,4378,1029,2937,2547,5232,9407,9087,5097,2445,4997,9801,4283,3074,575,5282,4807,6012,2066,9409,4553,4080,7016,3398,6600,7295,2586,7730,4846,3782,7119,7231,3882,4167,8049,5173,8744,8618,7199,2613,379,7222,4909,7479,1291,8598,9950,7716,5389,3436,43,1814,174,3739,4544,4001,7345,6474,1899,376,1920,7433,9682,8123,35,3903,7021,5523,9857,8082,1511,5138,4250,3511,8300,2817,1164,6926,9761,8238,4752,8296,6880,4340,9487,1833,7865,2627,4674,30,1439,3230,8929,6772,284,1440,3409,7069,6803,9573,1465,8572,6403,1247,6219,5317,4081,4895,6294,7958,3322,6113,8461,9318,885,1248,7071,2763,4414,4454,3776,8136,9039,6825,3472,5505,1443,5345,613,9529,8116,2137,9912,5794,7280,1731,6767,5959,7316,2541,7486,1855,3602,1599,6383,8135,2205,7310,231,8060,9282,5243,3035,9302,722,6196,8893,2850,141,2828,5252,3567,6553,4750,2377,8729,7707,4416,6152,4923,6989,2052,528,988,2788,104,587,7821,3241,9023,2887,1196,8456,7026,8532,255,9261,4297,8033,5664,8014,2525,7901,9113,1277,5005,5595,4510,9070,776,2351,9858,4505,9900,9586,7917,5371,689,8864,9159,7198,7775,597,1874,4206,7681,4932,5733,3466,9123,9695,177,8368,8234,2302,61,4041,579,8389,3583,8353,7940,6718,411,669,7420,1586,9886,6515,5874,8670,582,1683,9778,1217,9919,9626,6767,2668,5187,4054,2967,8852,4145,7304,6245,2256,2326,1360,270,4081,5296,3293,2858,1187,1162,2836,2930,7399,6380,2840,2725,3186,6687,1233,2694,4450,9040,7645,1117,7552,4909,7967,9198,8595,9385,293,8045,7887,1752,3807,9969,1129,9324,7295,4775,9004,3124,1916,646,1034,1563,1908,60,56,3184,4119,6291,5894,458,3709,4236,3792,9065,8057,8020,8100,5721,7245,9475,2847,8347,8606,6466,8465,3712,48,3071,8412,1942,6506,596,6698,1638,5524,9182,1324,2385,81,1086,2427,8659,8639,598,9306,8999,3637,9880,1150,8020,979,1675,4497,7474,6871,5439,4337,6371,1377,7498,5562,2564,3268,8127,8139,1935,7500,4983,7118,2185,9268,4579,2802,7217,5721,3379,3452,6090,3051,3067,4277,633,8795,7247,9443,1648,2307,8790,5643,7256,5457,9947,2886,7850,7816,1291,9999,9587,8459,2636,9838,7550,3950,2209,9729,3345,3892,2508,7059,9110,9886,4720,7977,8956,3132,2696,9030,6653,2267,8245,9738,7985,1689,3856,5096,4142,5599,5357,1403,8455,2834,2520,3840,8709,117,3489,6438,8656,5602,7917,4199,7377,9641,1354,4710,7085,989,2652,5629,2893,3711,750,438,1620,9984,7153,7369,2626,4743,2806,4916,7818,1179,2111,4503,8641,4847,7070,1559,876,2034,4952,987,2400,3250,661,8342,6454,5777,5015,7558,6637,5760,4179,1320,563,6189,2544,3752,5112,6093,4765,1321,3023,7496,5249,7931,3772,8716,9709,2592,8063,8346,2631,6002,1770,8665,5550,3777,8126,8989,6624,809,7507,2425,5196,7278,7360,5974,7176,9228,7769,2798,8770,9993,5485,8661,3026,2443,636,5229,5613,4196,7437,3085,7645,3808,7291,8293,5984,4917,5733,683,9440,1913,9043,7952,4738,681,9204,5899,1048,5237,9065,7455,8959,624,5036,3753,8908,5588,6945,8973,837,3626,9431,3729,7303,1712,8770,3281,4942,5480,9005,954,4242,7484,3880,6157,26,2414,2606,1353,868,2559,7140,6591,9425,4273,8633,7317,8706,3818,1396,119,7274,7417,3438,9895,9309,2732,794,5603,8937,7741,6990,9732,5006,7620,3757,9912,7379,2242,1097,3066,2586,4884,325,8879,4034,3887,7792,5786,3510,8017,6228,5825,2371,2488,6984,7692,6287,3246,3459,1562,9613,3162,1459,548,2614,8401,1412,9551,1278,1033,1089,3856,864,9342,1786,2128,3148,7946,1226,8903,9478,6096,54,2043,9213,6366,840,7228,7907,8272,638,4520,3183,6910,6732,4102,2821,6362,7570,7463,4786,7970,4536,6854,6955,9081,2512,7793,6751,5866,3311,1153,4753,2076,7230,5455,1448,7221,2604,1103,6337,4455,990,8212,311,5445,339,9231,5143,6527,4146,736,2257,9064,2150,6427,7318,9525,6050,7376,9639,1014,8776,6107,9288,7225,1711,2528,2149,4893,9016,6538,7948,6552,4424,1796,3765,2163,2765,1701,9424,3359,9833,7301,4432,1543,9654,4913,4426,5366,5892,4109,6788,6829,4486,2820,8566,9776,6897,736,3199,1588,4313,6403,9357,5649,6598,5485,9474,5731,96,1236,5489,6677,9044,9671,6484,1007,8645,1130,9770,4031,6673,5828,1376,886,7445,8602,9262,4451,7470,8208,7321,3060,1778,3438,9051,323,8663,7934,2507,9522,1847,9385,2116,8856,1589,2853,2324,6353,8416,4549,4380,3256,3577,3458,5888,3990,5743,234,794,5857,7631,7157,7583,2990,6361,8506,9549,6975,6822,5997,6136,8085,6425,1113,2054,8945,5132,829,4024,9905,6961,8957,6228,7365,1726,1493,6571,1686,6358,2525,2123,9487,8174,3549,2408,4073,5933,5971,8982,7507,4389,6821,7426,7343,2366,7034,2704,6735,2655,8548,4023,2778,9461,6777,4479,1426,6326,6415,4371,5432,1186,9307,2641,9859,3188,1455,1964,8616,5814,7386,1036,4546,9217,5982,8787,8484,7148,2363,3303,1741,1841,5344,2960,1778,6437,6138,9812,5715,8981,157,405,1684,5464,6007,7150,9717,6269,6971,7580,2620,9365,2252,7803,6880,6038,2413,5109,6189,5862,2505,8416,6345,5976,6701,1536,2406,6655,5389,2271,539,3983,1476,9000,6500,8694,3199,3382,7814,6027,4122,9342,2666,8963,9325,8704,4997,8121,9411,131,9484,5849,4198,8360,2632,338,9513,685,4729,4770,3927,8073,2032,4888,260,3646,6231,3890,7275,7135,8886,5635,8293,80,8770,7120,185,3771,3347,8477,714,7553,4068,5590,433,9358,2532,3602,3481,3531,3011,4712,1230,411,1348,1758,1560,2169,1517,90,4168,8354,2013,5373,4614,8103,979,5071,9954,183,9640,3082,9695,118,1514,8409,1669,3682,5142,9861,1089,2868,8643,4817,1281,7188,6501,2787,144,4470,3919,8553,6596,2265,9123,1601,3669,1608,7839,2944,5243,4368,2948,1215,9707,9685,1046,9972,6127,2039,5768,441,848,3893,5860,7793,493,5366,8471,4001,7925,4661,2139,2051,6194,8865,6633,9285,4668,7368,7212,5853,8923,2892,3740,4326,6040,7555,586,712,4640,9282,2422,3419,546,6585,1938,6086,4911,7586,2575,787,1967,2730,9373,1778,7032,7230,406,5011,4144,735,4871,3720,9773,405,3800,3015,3979,4645,2718,7188,5476,9698,9152,1497,361,996,6827,2335,3928,5834,7882,3141,8163,4821,8940,6539,7544,8560,6249,3522,1643,8796,9366,5780,1162,9128,1088,8463,5981,6559,4224,3043,7681,2887,2270,92,7623,5652,2030,6742,4501,5081,593,2051,7400,4570,752,6016,3989,4526,731,8808,6201,780,5695,1213,7392,7319,8695,7862,1817,1435,1668,7346,568,8134,9448,8792,9632,6062,6531,8730,1099,9711,2231,3133,4823,4662,5431,5929,8454,3004,6069,5104,905,132,6071,9481,3183,2927,2537,4084,5380,8670,7851,9954,5675,4155,9983,6764,1020,6643,33,6729,5227,1446,1928,3395,4477,203,3321,9046,4590,945,6278,3522,3870,6421,4700,7656,2653,1047,1252,1906,3235,7498,8226,9956,6610,4498,4236,3175,1992,5697,4953,7303,4639,162,7962,3142,4590,3662,2946,1532,9350,3934,9553,7039,4360,3367,177,9057,4716,857,4578,445,7866,6789,9172,4366,9532,1874,2817,6178,8809,9400,8443,8607,9324,5201,8862,3061,9289,688,7315,454,8160,7415,5813,9982,1336,310,4341,614,2554,6079,6136,3438,2539,1588,414,2261,8507,925,602,3505,5853,5958,6027,9893,6781,4446,874,4884,8617,9091,3572,3009,5200,8116,2702,2782,1909,1150,4528,500,6156,4225,9794,371,5803,3909,6880,6533,9519,3497,9221,7837,1995,7478,8053,2597,908,5825,2564,3906,9773,717,8484,9479,702,4776,5660,2400,8304,9328,3770,4160,1527,667,12,2841,9560,2031,6055,449,6241,21,7825,7534,9678,3837,5070,9654,2331,3924,1679,5796,6974,963,7911,7083,9663,1485,6326,5839,4690,5420,6093,332,4363,1305,6675,9299,9473,7718,4600,3448,6428,3956,366,3414,7287,8096,1404,9954,7109,9108,114,6355,9175,3104,2893,6285,9665,3124,2217,2229,9078,788,3115,5813,4911,2249,6656,6374,9141,450,8931,1752,3083,3542,8517,1104,5822,392,448,3400,1867,9948,8038,8528,73,6349,7708,8790,1910,2992,3722,9434,2508,6680,559,8509,4889,2807,7457,958,5904,9104,2908,8026,6520,4866,3252,2992,5495,657,7037,6801,7696,5440,7550,1457,2472,8687,4632,2050,4856,2979,6437,4843,6621,8964,5903,3173,5781,5666,3671,4321,6725,6709,6117,6407,5187,7422,3341,3149,7406,8453,9178,8472,44,4126,460,9628,7776,3912,1725,7226,696,3919,7953,3885,6027,3527,4232,3064,3999,2306,9130,3470,6908,2817,8801,7680,2202,1779,2349,9655,4288,1113,3585,1321,2472,4960,223,5903,7591,6203,8048,9391,4061,3163,9428,7536,749,5866,4797,8332,1339,5952,665,3042,8786,9518,2749,9155,6157,9814,2514,3658,5769,8189,1706,4626,5810,1372,500,2923,5641,5669,4321,3115,865,6762,2673,4872,9716,5008,2148,1467,1161,8677,850,5791,8085,508,4567,5114,658,7209,9568,5110,738,8785,5736,9174,6399,5993,3561,647,8204,2110,8421,4650,4660,2237,5160,8964,8079,4318,5888,2481,1645,3284,4716,3649,8724,6421,4571,8451,1466,2315,7461,1814,4713,533,9820,518,2309,9760,9398,6262,9850,407,2363,2121,6464,7197,2777,984,2993,5410,3373,1656,6821,6011,8694,9184,1667,4229,9179,9918,3887,608,8718,3904,2343,3287,5906,7658,3240,578,1610,5736,3459,1010,1997,6785,9142,6208,127,9476,2875,6235,1726,7561,6392,2766,3762,42,9022,5453,3172,8491,2332,1959,1114,224,5213,3578,990,760,762,8792,6231,4019,8206,6584,659,4285,8360,1411,5157,4230,494,4363,3167,8497,9471,7961,2871,8217,3641,5930,6744,2992,1046,4056,7175,6438,235,6964,8306,7898,7172,6890,8169,1819,1902,5935,5342,8843,3227,9698,547,182,7794,9575,8617,9637,9500,9528,3344,1641,3395,3420,7260,589,9539,7534,5082,569,2695,6774,357,7747,7519,9371,934,2894,9184,8680,984,9310,6846,7429,4401,1494,7287,7357,4090,9909,3013,4655,5979,2756,4501,7080,1546,9582,597,8767,9101,5901,1609,1378,2200,6274,6722,695,4275,2194,3448,2864,8961,7478,1406,1519,7131,9904,472,8842,4464,8489,3721,5405,7557,3806,2438,4134,7461,3859,6048,3273,7030,3498,4240,6207,7372,5062,3008,1604,9578,6639,8886,1952,1622,5929,6752,6931,6863,9122,4492,2785,5288,3068,6156,7678,102,5272,2199,9860,3106,6174,780,7812,8212,1885,2128,3007,4349,7160,4276,933,5307,7287,9492,3446,6496,2575,9387,4148,8516,2367,2341,7328,2938,891,9132,1681,780,4385,8820,3608,4036,6515,8037,6516,2049,4077,564,2191,2426,1337,3359,1874,3063,7133,5450,9143,5946,8681,7364,6080,3499,7560,7057,4270,9392,5731,7087,7348,7181,7134,4463,8941,3922,1565,4896,9858,8459,581,3525,1876,1125,3983,3188,82,7602,7903,3119,7653,5308,9187,433,9244,5580,2134,4515,3280,4477,6680,4276,7151,3507,1373,8227,2005,7171,7771,3371,8830,3156,7980,9107,710,7910,6041,4801,9861,9536,9862,6049,879,582,7161,7730,5849,7034,6627,6012,157,5651,8828,8989,5484,1026,1417,2141,4105,5106,2612,3359,4341,7331,6342,4473,7462,1836,2943,3940,3536,5588,5857,2942,4153,9213,8179,3654,5471,2310,5196,4417,2452,4517,4109,5700,1284,8935,4539,1613,1435,8491,40,7798,3305,8199,4992,5511,5505,251,5076,4977,5223,8633,8806,5792,9743,2358,807,6910,2735,4227,4662,9199,4559,9811,9719,2201,14,1143,1941,813,8883,5842,6750,7513,5562,2838,6886,1447,3859,2484,2113,6686,6302,7826,447,3182,5892,8427,1513,7896,8498,1318,4741,2565,5897,6324,8875,3760,1328,8187,1103,5158,6523,687,1521,4898,294,263,1692,6879,3749,6128,2693,9836,7385,7380,1068,8427,9177,7776,3082,2634,2696,9342,7210,4952,5765,254,4787,2351,3533,8011,4862,7000,129,5779,7109,4107,5524,4885,2158,9331,9412,5901,1598,6325,9729,3778,7368,7159,5836,1678,1826,7352,10,4048,5059,2229,7550,2840,3638,1961,3765,545,3057,112,7799,9820,3299,7423,5450,1888,6144,4862,2257,3072,1359,7259,8629,6108,5963,8807,1582,3853,8206,2186,2680,3024,7702,8615,5980,5636,2182,5179,2699,359,6743,5952,8895,976,4821,2852,6827,5003,1012,7845,3636,8426,3851,7172,9248,4134,9024,7053,1014,2136,8000,6737,3867,3767,4803,4200,4030,1456,4305,4067,7801,6688,4299,7018,4589,6130,1660,7619,2347,1487,708,8583,7106,929,2639,1969,1787,2346,6908,8035,363,2622,4294,8441,9799,2099,1715,4660,7153,3194,1616,4680,9221,4132,8146,7619,5377,6545,9650,2013,1988,3411,8449,661,5552,213,5986,6244,9111,1027,2502,2993,7363,870,1855,6845,6126,9544,1785,1784,4911,6097,154,3241,1574,7285,4600,1382,4513,4214,3122,2216,9652,4713,5406,2891,3873,8817,8322,3450,1018,828,3430,9279,8438,4901,9644,7251,3292,6142,1298,4396,7416,261,5943,4044,9885,3527,690,7736,3320,8224,996,928,97,3385,8687,10000,392,668,5033,4636,8121,6204,2492,552,7267,3853,5606,9035,8886,2003,1348,575,5671,9887,9879,1231,1341,6469,4634,2041,7491,3729,9791,6008,6127,1665,4359,6902,700,5904,2744,5056,4532,101,8368,1942,8772,8149,5484,6307,8789,5528,9456,6494,2883,6679,2087,7015,4539,3854,4565,4958,3122,5226,560,7806,4993,1060,4713,2309,5803,5262,3243,211,6071,6623,2991,1232,6003,5318,9573,4724,2107,6234,2500,2841,8585,4232,7189,1033,1549,774,89,397,9374,9197,8521,2439,4892,6750,6187,3504,4007,3454,8537,5505,2920,81,5222,2862,8437,218,7355,5208,7458,5851,6007,2018,6135,2989,8719,2915,5290,8876,3197,9739,8948,4849,4722,159,3855,8635,5118,1405,4349,5301,7586,3359,7865,5933,4691,6320,8721,1829,5400,5734,1248,8275,3382,4070,9426,176,8770,7661,9625,4432,2177,1256,5084,5671,418,4593,2958,1050,1959,8864,5885,5464,8627,6382,4993,4459,7818,1037,8076,3718,36,2741,348,7736,2895,6177,7742,78,8574,4815,7848,8565,437,5202,1023,8660,5697,4369,256,5776,9476,5974,5779,7125,4297,1792,625,613,3362,1103,3696,3223,4797,4997,9074,2047,8494,3077,8770,7333,6807,3994,704,7608,2154,1216,4169,3396,6380,7797,5808,6272,3720,6585,8660,6487,7278,1580,8247,2117,9860,8528,5244,9481,750,5020,9829,7444,7894,7243,3247,4661,8153,1879,1408,2584,3563,1587,7945,5478,3063,6846,6165,9922,9714,3174,4165,995,4555,6597,2161,893,2222,157,5699,18,7758,8622,2525,1074,6826,5892,6255,6127,9410,6750,2471,1271,685,3265,5416,1628,4193,5757,9624,2807,4787,6816,4752,3035,1125,6607,6901,9757,8916,3687,2818,973,9343,9893,7585,2416,3433,7542,4757,1773,8786,9393,9889,5355,9925,1477,1723,4780,7876,3430,3410,5286,927,8150,6685,7923,9906,3979,1713,1424,4870,1560,1958,6948,1431,236,7170,8001,7346,1751,4086,8645,7730,4181,3973,5558,2162,3271,7547,2428,6096,9129,4560,4910,4137,9282,9502,5111,905,4691,424,3546,5525,7732,4782,7900,9906,3564,5281,9264,1328,7046,462,7634,6176,6892,8920,8692,6495,6944,9187,8386,3139,4382,5058,7096,2525,5280,7303,9758,2651,1597,677,2916,4144,9900,2048,9725,4978,1579,9034,9441,9203,1551,5792,7557,7389,548,7016,7696,8586,6534,3119,1696,6049,269,2750,1093,4532,3182,8976,4217,4065,4325,2352,5566,8516,6697,9287,3698,4251,1941,6923,5406,8410,3432,2271,8135,2943,2091,2573,7277,1953,1767,9236,9142,8699,6010,5717,1461,6070,2186,5846,2113,193,8153,5152,701,5870,9123,6956,4473,3532,7562,4512,6641,5145,9598,9366,9372,670,4247,6156,2280,3255,7118,8945,852,5659,7648,1800,11,6503,1668,8650,222,9266,1120,2665,7582,9618,657,6831,3644,5090,6808,7098,9955,9162,3909,2220,3500,5931,7717,5558,9830,8857,3198,4381,9887,4442,696,7183,5370,8660,3985,2988,2481,155,8085,9719,3573,7455,6824,2785,3526,6096,2967,5079,8806,8591,5843,4107,5033,8086,9886,2667,6942,9904,245,5658,7284,9916,1495,2689,1175,860,4932,8091,7441,8332,1464,9770,5896,4196,1806,4431,4804,7550,3134,3799,2196,6566,6604,5988,8074,803,3209,150,8187,274,3051,1261,1294,3729,4320,7162,1454,9248,259,302,3319,1069,2932,1688,4736,1809,1382,1398,219,5569,6966,6779,2253,6878,6892,8380,3315,985,7137,8540,5412,7670,4949,3630,3145,3358,1785,2026,1267,2301,6498,3541,8551,1292,8564,8588,1000,5786,2304,8136,3585,7576,5560,3376,5211,4893,2383,9395,5776,3874,9269,3729,8734,2131,9296,9000,3493,5315,4115,3128,5622,9128,3190,4191,5285,5122,8702,8926,7152,5159,3307,8786,9436,9986,7401,991,163,9081,433,4607,3123,9574,8637,2423,6084,2037,2428,9369,8837,6743,5046,1871,5720,4303,3108,6462,9732,9332,5702,7404,7228,8714,8277,6188,1488,9868,380,5264,9964,4322,9002,4166,5710,8651,660,5000,4149,5298,2039,8982,6092,2810,1521,2220,5874,205,9470,3554,8766,2322,3591,2028,8272,3204,4473,1396,8955,7130,4979,2796,7868,6418,8697,791,7793,7917,7579,7775,3500,7145,7702,6533,8962,1329,3424,3464,6806,646,4473,8401,2490,7826,9402,9142,2387,4227,6888,7521,7623,1000,3362,4655,6932,6885,4956,2371,7605,4501,5587,6038,24,9452,3812,2462,3718,4651,6419,5770,9174,1377,3106,2473,2255,6494,7553,7466,289,6423,8778,8873,2688,5992,402,5504,9313,8964,5289,7138,4777,4041,4360,3921,6545,1314,7417,5911,159,8720,9173,2626,2818,9970,3854,9679,1461,5857,6582,4149,7303,5587,7009,9719,7260,9200,1580,4906,4561,9866,2239,4342,7461,1763,1266,7728,4044,7843,7318,9203,7645,4585,9270,1183,2559,951,764,8159,7745,5689,5825,4010,4067,3082,179,5172,9391,6475,800,1176,5602,2677,8682,1398,8019,6088,5434,8187,6721,7982,1606,2248,4621,7867,6692,4595,3084,1301,7907,5297,6021,671,2623,3335,1824,7655,9828,5019,2627,9550,1030,3076,4306,6347,9390,7225,5114,5946,7277,1640,2883,5008,9587,9736,9492,3003,3460,1409,9744,9314,2767,4091,5168,4196,9337,3091,7522,2006,6662,5180,5089,300,2422,6890,9654,5949,1651,7348,8685,7542,398,326,3122,3421,9777,3357,593,7382,5567,8990,2103,6675,5872,3643,2109,8785,2009,2974,8513,2086,4815,8551,9659,5544,8125,2308,8776,7509,9243,8095,5719,1629,8650,9284,2055,7625,5008,4386,1219,6207,4749,2063,6313,7045,7678,2429,561,8914,3398,315,4635,344,2376,8120,3316,2220,3101,6140,6195,6939,7887,7066,3399,2916,1334,1646,1375,7604,30,9523,3437,689,5552,1041,2915,5537,8661,5179,2978,7879,1775,259,3906,6946,9201,4112,3817,9547,8437,7947,1641,6877,9317,1416,6643,4085,2172,407,4821,2371,6480,4068,9195,3907,3156,992,1619,8075,5646,7145,6461,1036,3473,9997,3730,9797,7700,9531,8529,5726,9355,6743,2961,2334,1878,2535,8714,7210,6260,5415,9481,1455,1515,7211,7469,8489,6722,8671,4528,9473,9409,764,5077,1981,2354,91,5613,7334,2208,8571,9301,1198,4387,3194,9744,9726,3258,5466,1998,2249,2248,1214,1445,6834,5235,5485,9030,2655,7289,5750,7825,2930,9299,5228,2212,4277,1076,7661,1054,6947,9,4688,5064,5672,1107,3171,5760,5607,4230,4206,7709,2312,1903,1682,271,9076,6608,5540,5745,4078,1517,6468,9988,8504,3649,8576,149,6440,422,905,7671,8655,341,5529,2517,7342,9428,243,5518,5512,3497,3704,8184,8871,3693,9604,8154,5930,4654,934,6486,5331,5001,5214,2303,7059,806,472,9224,978,5369,1882,1501,4792,4166,7733,9148,2842,5007,3093,6753,2956,6189,1763,3679,5646,7701,9533,4689,598,3898,602,2817,7657,656,6287,1727,2627,7204,8104,6231,2689,5425,5877,4777,9661,8961,1412,6801,8003,674,2284,2444,7398,2620,6717,8541,2199,8819,2505,6138,8791,5580,163,8885,441,6856,1641,4997,6921,7869,2554,979,2285,8030,2699,9314,7858,987,9984,1063,1153,4219,4551,2024,1476,9669,8865,2578,6626,5610,696,2380,8677,9461,7134,7527,2993,8118,3820,4728,2907,3294,6204,6634,1115,34,3880,8112,5940,6933,56,503,2638,7957,7085,224,4128,9896,2471,5770,1918,725,9269,5229,3124,2893,3759,2998,2476,8947,8483,3780,3602,6965,1660,5686,6020,7770,4399,2737,106,502,6431,8069,7873,7489,5005,1286,201,6426,1580,1309,1282,6869,2853,8517,2819,4239,1052,5853,5100,5398,3483,6774,8952,8183,2207,7879,2381,938,1419,9711,2954,2072,2297,6787,1569,2516,9754,3511,2673,5465,1160,5535,8354,3301,8015,6295,1474,9729,2519,4155,4032,7129,5837,9491,1814,8628,921,3488,2303,8671,8233,6643,5473,1100,687,9472,4219,6696,6363,2566,3568,4579,5062,728,5126,1167,4989,6874,681,5478,6877,1151,4784,5471,7237,6075,5135,3495,4630,9261,7311,7317,5034,740,2816,4254,3874,8523,149,1309,4165,6515,8610,5275,3004,7504,840,2677,1323,5394,2719,9283,8214,4511,1029,8355,8240,1758,1823,8707,4637,9792,942,4945,774,672,1280,9361,2379,8804,4949,991,6452,1786,9870,3045,4220,461,7250,3379,4372,9373,1938,7375,2009,528,6153,3238,2644,554,8195,3098,9778,3473,5062,7995,5350,8448,9806,2320,7706,7195,707,4818,4415,2715,9396,6915,3030,9973,3394,3550,4047,9465,9250,6934,8020,284,906,4746,4542,9855,9465,1039,8681,2836,6215,9596,268,2647,187,3785,3213,6461,8581,4234,3360,7914,5385,6162,6819,2148,3160,4842,4002,5976,5194,3232,2628,7430,8379,390,4808,2707,4251,9573,4707,1323,4511,4626,5161,1609,8997,8676,5809,1583,6008,3381,101,4653,7914,8315,5436,6406,9729,2913,7507,7971,4167,6896,379,9274,5535,3212,1654,4953,6059,6443,6253,971,5447,9484,4242,6516,1757,4392,2929,1149,2496,6950,5052,1923,2563,9003,1882,9698,4576,4208,6619,8936,6070,5113,9738,1507,4680,4548,8916,5900,4033,9218,7041,9325,2357,6441,5839,6234,4280,8713,5707,8274,9564,9499,8656,7844,5707,2840,649,518,1229,9563,3839,1248,4742,3881,8252,1259,2576,74,9584,7718,9004,8706,3404,305,1184,9740,7539,1677,1581,9887,4030,5642,7639,5577,6417,9602,603,8780,609,9314,3825,3376,6267,4707,6051,4950,9295,8213,7003,2105,594,9986,2980,7385,4508,7988,210,5666,6864,5018,8451,3373,9223,7197,9904,1238,5406,6215,5397,8078,1746,6455,8395,2188,2998,9725,5256,7890,4812,9856,659,1064,1625,6095,8473,8503,9309,7175,5161,1998,9032,8993,379,6869,5720,5981,6791,1218,5625,9078,9059,3686,2884,4670,4042,6404,8836,355,4846,4096,3849,7146,719,7722,1356,4425,6768,6285,1246,5121,5321,5696,739,7024,5314,3649,8350,4726,7227,9245,9200,538,8071,7407,8547,633,777,5652,3036,3403,7287,1753,3552,8276,354,3619,8429,6831,3236,4843,8517,7150,940,8845,5128,3013,7621,4610,9764,3380,216,515,1468,6582,3956,2238,9606,2860,2710,3724,9941,9731,4063,6941,4356,2874,9665,5691,2587,1811,8575,9322,8397,1784,2589,8282,3496,8674,4311,6281,6471,5471,7459,5660,1770,9447,4332,5855,2954,544,6192,9655,9737,5051,5345,1464,2195,8129,6355,5854,7361,178,8437,5187,1784,5781,4500,4631,9435,6747,9367,1337,4465,6827,1717,8622,1110,2205,6406,5828,53,7112,7246,2768,1815,5588,2043,3821,1663,9377,3033,5770,1269,8243,9559,2563,4002,1656,4158,3084,3533,6257,3348,4551,9229,3869,5810,9121,4774,2064,3901,5924,6865,2384,5994,1247,8518,8755,9781,1540,3606,5516,4123,1611,8155,2161,8196,8501,5180,9085,2179,34,6556,2858,5978,628,1394,4138,6658,1885,9106,1622,8979,254,3801,4412,4751,5630,5292,8333,6099,8188,4068,9615,7012,5036,1079,3326,9484,1082,6526,6555,9275,8457,1271,4563,865,105,8970,4171,7387,6247,9249,7396,5113,924,2911,6684,8956,4827,5935,9164,1593,3866,7494,8161,4206,6543,1889,5413,5095,2963,7720,4086,8426,4459,6307,7629,1549,3010,5609,4182,3211,6571,1728,2241,3294,949,4939,135,5527,5558,2451,9048,296,4226,435,5769,9674,3880,5674,2995,5069,5405,4505,2499,8872,1557,1807,3762,8491,5715,4586,5030,7588,6738,1306,7377,4726,1402,6764,2979,5834,6368,7057,2168,4596,4137,9583,6369,9623,4209,8581,5482,931,3524,1088,3115,9378,6375,2613,9139,8353,7149,2275,7791,7964,9009,1542,8234,3222,5197,5329,2673,6261,7937,6490,1418,7657,3209,9076,3155,4475,5445,3090,8704,654,1360,3789,9415,1105,2742,1608,8875,7119,8767,7532,881,9832,1263,2379,4169,8250,1387,1488,795,500,9507,4000,8733,3250,6757,7240,9898,375,5556,2972,1198,8270,5965,708,6735,6112,8955,3539,3698,6147,3705,6541,6041,5479,3909,4675,8362,3370,3507,576,9199,5763,9266,3027,6335,5951,5677,9617,7396,8237,1449,249,6444,6881,1374,8158,7783,5090,2380,5027,5330,395,8342,8273,1706,2911,5165,3605,784,3875,1255,9023,8223,9765,3361,4994,2765,5439,4286,5839,9785,6599,2341,1088,3093,3042,7849,6169,4011,1122,5993,4035,6497,8167,8183,2818,8835,2401,7179,6321,7617,2467,6373,8900,5864,9049,139,1507,723,5799,585,8197,4751,168,1109,8560,1492,2418,8359,78,5604,7489,8139,892,8563,6342,3408,9233,5580,4002,5966,8485,5316,6269,9439,1005,8536,1029,3174,9977,2070,9519,474,6501,9965,7661,1220,3867,9180,8704,5488,8658,8083,6411,4982,4701,8153,1054,5079,9851,2567,9460,3203,6106,9677,9562,2457,3396,7282,6308,389,313,9385,6341,2814,6271,3219,5961,7401,6473,1501,1244,6591,6894,5913,8320,6009,5071,9389,7682,9972,6573,8480,3022,1766,3281,3113,9303,803,1738,6452,9278,3219,5432,3022,2812,1491,8201,85,1876,3911,4881,7779,6424,2328,894,5534,6800,4090,6181,1472,991,5768,1877,714,9059,373,3477,4954,2574,6761,246,7379,238,8342,8937,1295,988,8710,550,9177,4820,2261,9273,4251,2115,4157,612,2682,7837,3993,9641,3498,2083,7187,5575,1995,3075,2257,498,4437,9591,8616,4682,6395,2913,4607,6564,4021,1584,716,5823,1884,39,8343,9762,9273,7813,2632,847,7326,7826,8934,4784,8324,8773,6816,7571,8229,294,7862,7460,9401,886,3632,2666,6916,8040,6378,165,9745,6960,143,1353,9390,9006,1287,2972,4990,2149,8866,8372,1391,4095,3793,2445,1315,1345,4131,9548,7296,676,157,8488,4572,681,4608,7706,445,7068,6346,5791,1750,9399,3175,361,4436,432,8235,8763,2652,3670,240,167,7229,1782,623,7919,5034,3058,5887,5367,7762,51,3553,1367,3232,5138,2541,7966,5496,6822,8215,6615,9866,4208,2508,8500,9458,9401,8817,406,7916,2040,7314,7625,8407,8003,811,2159,121,3382,2337,8909,2111,2164,8565,9871,5079,9013,4242,2066,1412,1840,9987,4153,9364,1724,6514,4865,7380,7937,688,1927,562,2403,3140,5661,5107,3417,8574,8059,5142,2573,1621,9092,3052,4703,6305,8848,8708,8135,9825,1244,3484,1254,1117,5589,9634,3062,4518,1294,7891,4849,3304,7506,8829,4137,560,5104,6111,77,4112,5250,4252,8289,57,7685,2949,4530,8463,9869,6355,5737,7913,4097,1888,597,1719,7972,7980,1517,4452,7994,4457,7518,2918,7302,9170,1593,4239,4304,6851,5725,8382,9931,9435,3722,3211,674,1465,2960,7801,504,3327,9961,4625,6303,4751,7525,3968,30,1820,9369,8748,3816,2574,7819,5586,3307,7933,8597,4703,8779,6448,4475,3649,7489,638,4292,8763,2276,1017,4696,478,577,3331,4347,1025,8849,2513,5668,6114,2111,8382,2762,5477,2405,4085,5312,6605,2606,4461,2102,5644,8200,5081,4010,9190,5551,243,438,3269,9230,5069,2548,6500,1084,1414,1283,9134,5253,9179,1361,9057,1823,864,294,1436,4714,8411,7019,6579,2658,1381,1075,9015,9055,6184,338,490,3512,6701,3536,4915,5433,6002,655,6066,5031,6893,5909,218,1808,6240,4624,9895,9721,3958,4138,2523,9650,8253,1077,4380,3464,7248,7397,3778,8926,2432,8174,3656,3815,9054,9880,6867,9482,186,1875,8607,7434,4555,6586,9212,310,9235,4135,8469,5128,8090,329,5740,813,4775,1894,7981,3426,3408,9148,6085,2184,6895,368,1137,7198,595,1232,3781,8094,3058,2217,367,4949,6586,5183,8794,6482,4243,7207,1108,4762,4830,6883,1218,9945,7018,1113,5966,1193,1575,8466,359,9830,585,6819,9519,734,3751,8481,9143,4620,9422,2868,6312,6208,6938,6458,540,135,6684,7695,461,5844,4790,5905,2972,7361,4711,9284,1126,3373,8415,2911,7806,2311,9464,7512,4974,1539,1086,8208,6558,3728,1708,3676,7459,5523,6146,6372,7486,675,8996,2750,2320,5261,967,8274,634,9647,3539,8662,7602,4902,6364,8968,4528,753,1721,177,680,557,7702,6246,7458,3857,7714,67,6726,3019,8474,3361,7906,1266,2179,808,2324,423,5026,6555,602,8677,9304,1472,6914,9438,3467,5854,6197,3032,4152,8852,7626,7405,3236,2949,3070,9021,1442,9204,3780,3613,3605,2613,681,153,6297,752,974,6141,5468,5581,9452,9054,9035,1395,918,4028,5003,4808,1912,3072,3290,6987,3559,2091,5972,6080,9251,7208,2805,911,5270,1741,1855,1778,4344,4443,9192,5839,7932,4379,8350,2647,629,6030,7465,7551,3683,6160,7949,8118,3605,6352,1119,4783,4802,6728,3478,6698,1633,4418,4394,3941,1495,7683,444,3039,8884,1780,5517,1934,1510,5617,3510,3338,584,3159,7154,4282,4144,9652,3105,1662,3038,5632,5883,7638,7291,1478,6858,7658,2413,9017,6614,1856,5509,8118,2128,5216,6624,9063,5076,3795,279,2218,2877,960,318,9046,4608,933,7989,3351,642,9762,9528,6710,6924,9603,3985,9778,4480,9566,297,1839,8268,162,1205,7783,1261,2311,4966,3465,5436,8841,215,2903,1800,7716,1874,4719,6139,5422,6665,8266,2362,8886,4844,9753,979,7454,3942,5604,8666,371,4093,287,6409,3770,370,7384,1635,2180,5519,5580,2037,4460,6383,9978,9987,1414,3743,501,8975,2129,3791,7735,7018,5006,7649,3289,1134,8864,6401,7672,120,4345,4083,2295,4013,4842,2960,9239,4365,1639,2399,4024,1159,6189,1464,906,7902,7353,6192,5397,9764,1261,6484,8399,1242,9112,5123,3129,7864,8744,9235,7917,4366,9033,7397,1516,5699,734,8201,9574,7808,6784,2548,4715,3162,5857,1253,8074,3960,361,1278,5609,9246,7150,3672,7881,346,6765,6940,5378,7357,3312,5419,3841,7611,7156,4106,2443,1151,6635,3914,4309,4322,3373,2583,8804,4055,6321,9198,5139,8484,3014,6928,4349,1258,1759,6678,929,6681,336,2291,5564,2825,4519,3216,1538,8711,2683,9765,5475,8821,8911,2003,7879,4198,2511,5136,2974,5605,5137,3767,5481,8942,7900,3620,2317,7141,8324,4647,2341,5410,1345,2698,4417,9503,976,374,8040,9365,6166,4682,8547,2136,1143,1001,6637,9048,5421,5521,825,415,1870,8752,6529,4865,2213,3531,3026,4400,9903,5626,5067,5173,2417,6067,358,9624,2587,5406,2607,6320,7032,6575,1970,8349,159,4320,4951,9780,9937,624,570,6302,916,6023,5803,9116,5420,5712,1059,7598,3990,6118,186,2035,1016,8561,8945,5534,9910,1426,4659,4042,1868,7718,1642,9659,360,2241,9815,1260,3811,8477,5840,2857,385,5679,1605,1054,6881,5949,5885,4173,8878,7629,5619,2968,7252,231,2325,4912,3170,396,1473,6847,4778,8959,9449,6690,5267,5500,6344,1307,5396,3392,6017,1220,427,7674,3040,2691,3905,9493,2028,7524,3787,7285,7788,2534,8457,8284,5419,1180,5480,8483,8713,8819,8349,3849,7128,1382,878,8368,1209,1409,1251,9052,8199,4988,4733,624,4562,4195,8529,5987,2164,3716,809,4427,8322,2066,5915,3301,8061,213,4752,5625,620,7369,4468,9549,3022,8913,2818,1362,832,7493,4610,1061,4667,2716,1034,9522,5725,8866,3951,7882,3581,4194,1864,6668,6229,5721,6968,2268,3002,1286,442,111,827,2269,5972,6425,1458,9537,1811,5082,4435,3229,6300,8355,4949,1190,8272,2893,9162,685,3181,4819,8799,116,4390,366,1838,8786,5328,7902,8960,663,2069,5219,519,5720,8659,2288,116,8354,2217,3687,6401,9580,3812,1606,2245,1826,9967,3262,9932,4661,4926,3577,2956,1091,7771,2471,4563,3311,5848,1396,339,2243,5794,5333,9295,2696,8620,1577,6113,681,2968,801,2391,7940,2265,344,8305,3265,8919,4949,2577,3142,9429,8503,9163,7784,6566,5193,3174,9181,21,5639,2303,6373,5138,4885,2385,931,2646,2460,2773,3066,828,960,7713,3167,3172,7235,925,4752,461,4334,7350,6255,321,6431,819,3566,3037,6449,8191,7866,7372,5078,6363,7024,8927,6711,1733,4644,6939,3996,9444,5246,9446,6722,4742,1367,2718,2278,8792,4264,4684,1668,6379,3540,7782,6220,5178,9543,356,8110,6668,1679,4257,6237,6412,2205,6914,7970,9118,5940,67,1713,1963,7790,4699,7693,4725,2794,5948,339,3621,4346,5394,2767,6575,231,1509,7259,7346,3879,1056,9977,5719,6039,6094,3593,8301,7530,1183,8662,8630,1590,8523,2788,7244,1371,9363,9920,5242,4188,5849,8112,5074,6107,7933,6318,5782,5738,2515,9858,4047,4806,1688,2570,4191,226,429,5986,8787,5129,8307,2650,3796,2713,5184,243,2098,1527,9726,1496,2534,673,3158,9719,5498,6194,7809,6556,3528,7153,2872,3646,6662,1051,8593,1453,827,8324,819,6562,2136,850,7781,1637,174,6223,3015,582,3843,6423,8922,8309,1597,2933,28,3013,8302,5989,5877,9204,6620,3490,9162,844,740,7903,293,318,6387,3230,6314,6766,2473,9495,6277,8366,4283,4572,5041,8445,9401,8987,2662,4446,3655,2455,6597,1322,1224,2653,1340,66,8468,4639,1451,222,645,7215,3897,5871,8766,4457,8850,2299,2954,2792,5634,5264,4117,5545,3972,7985,8417,4636,3050,392,6693,7248,4934,6573,4218,9133,6920,834,3690,2475,6002,4479,1583,3691,7721,65,118,6087,3221,4798,576,8253,1987,5035,2711,1825,7788,3839,756,5527,4127,8801,2975,4704,5107,7451,3151,2611,6737,6242,15,2783,6712,1992,2801,851,7692,4104,6326,8542,9114,3329,8503,2628,36,7243,5138,8983,122,1017,192,6591,9374,9007,8581,6782,5230,6625,6414,4398,1019,658,9840,8214,1733,9831,743,4413,3733,3353,8832,7256,5460,7767,3392,2707,7461,912,6416,4024,1661,1297,3062,2323,8178,305,8679,2332,4597,979,9987,1851,8295,282,4457,2673,7793,4303,3060,1363,2032,7156,1567,5082,3316,7803,7596,2725,8243,2899,7356,9798,1284,916,9641,9660,7109,3026,2885,9838,7999,1592,5695,2772,4974,2878,4760,9917,1125,8061,3870,9340,3775,4730,3734,8894,2563,5228,7849,2872,6604,4464,290,998,827,6693,7705,2206,5258,6770,7181,31,455,1508,9361,1703,7059,4991,320,4683,378,2205,9134,2715,8213,3023,3535,1146,9796,8837,2101,1143,5022,330,9734,8830,7202,9498,9672,8124,8954,4093,7604,638,8453,5852,8500,501,3834,6838,3548,1208,1452,6657,4992,2274,3016,9101,9451,4183,9179,2349,745,9618,807,3029,2336,6415,5554,1915,2348,9932,6330,3524,7965,3095,7293,5624,2163,1595,8771,6793,1078,4183,4333,5796,2689,2375,6002,1759,8185,6378,7960,5742,2803,1595,7252,3282,7504,5320,4619,3646,9282,5482,1487,4628,7394,4501,3949,8228,2172,1646,743,1013,5444,8762,1349,7138,9294,3928,6233,5018,4003,9240,5881,7547,974,6620,3603,1540,1859,3236,1802,2896,9198,3796,9598,3831,4985,3941,8591,6482,537,120,3590,1807,3392,5318,7248,4317,123,745,3765,6308,3358,8832,4952,4900,3263,3963,7312,6888,4026,6786,5624,4769,5813,1583,6062,9140,2765,6603,9775,2456,8702,1334,8163,896,3069,6168,860,4317,9537,6238,7696,9040,7687,3883,8375,6736,6107,6009,4297,7229,4449,7369,1942,6698,1223,6871,6160,1807,4300,9087,9775,3928,5227,1259,2151,8969,5395,6441,331,3886,1544,4129,3133,5704,1509,232,9352,4411,12,1444,5935,1869,8648,3974,7352,7118,2486,2518,3176,2009,4528,3371,119,2562,2641,6856,2648,9485,3934,7543,3693,4777,7848,7264,282,2632,9523,1050,1784,7740,5651,3114,177,5787,7704,739,9538,457,9250,1722,2283,9832,1695,427,168,9915,1470,8094,6818,2821,6747,18,1395,4001,7271,8957,4920,1872,1091,5505,4736,6759,6087,3105,2295,7412,963,6787,8502,4895,8096,5807,2226,4998,1569,9383,8355,6424,9751,4080,6778,7180,4336,7974,2381,1516,8938,5168,9391,3899,5543,6285,2283,5806,9610,8785,833,4679,6687,7127,7946,8260,681,8171,2222,3380,169,2456,2441,5447,8702,8033,6190,9775,2046,7465,3478,6391,2532,5918,5634,9634,9156,3126,284,1182,6684,4515,9351,2252,4155,3485,1026,4920,5236,7032,2673,6852,4979,1478,1705,2896,5765,4437,9206,9050,6083,4645,7018,6842,5734,2765,8618,6309,8457,2253,7568,9643,8134,3103,5600,5917,9750,4428,5596,238,852,9921,3006,9970,7583,676,9360,2138,8910,5894,9160,7425,9302,1005,7880,7994,7058,2397,5266,1802,9624,2635,6614,8606,5715,6609,5749,2373,2050,180,1002,6756,5275,9796,477,4296,3758,87,7734,3063,5932,3235,5990,2068,9563,8298,7944,832,9326,9246,101,3488,7705,8033,9423,8396,6438,1903,8791,9682,7570,4211,239,43,7495,9370,8355,968,7257,3870,3781,1093,2916,5351,2596,7936,5031,7407,385,6594,2232,6974,5359,5583,6988,5490,4570,5973,6866,6289,4344,2067,2058,5654,9920,141,87,9726,446,5541,8834,2128,2148,3482,7027,4559,2015,2516,2557,5695,670,3007,5130,3882,9458,7909,283,8332,2986,385,8241,9062,7738,2647,9448,593,8999,7637,9267,4334,2406,2666,4245,4293,7338,4880,4718,7990,4812,6358,3130,6538,5584,1269,7223,9782,1678,5436,4176,6740,6614,2681,225,2721,4571,5691,1578,4135,2002,8472,1055,8188,2435,8975,9957,2989,509,5434,7834,7797,9899,7950,7980,9466,2783,6366,7124,8577,2179,2469,732,6008,5214,8834,5306,8772,7379,4434,6837,7111,8486,6642,899,2743,4197,2294,9256,4059,4595,7268,3161,1477,8046,2299,382,9750,8034,3248,8679,4775,1644,6606,4268,2541,3067,3413,9421,9087,5656,9098,5558,9291,2211,4580,5834,6703,3695,7666,7043,3092,5860,6462,1285,5978,2897,1859,8575,9031,4832,8927,2296,7175,1411,2805,7207,8269,6791,9653,6763,8832,3921,8443,6269,6081,122,5281,7447,2716,9841,9701,4318,1166,3441,3186,9162,6029,1980,3814,9577,4410,2572,7941,4905,766,6834,694,6970,8425,162,718,5639,9496,6221,6179,3466,7996,7348,6459,6379,5757,4722,2688,7961,5457,4943,8213,1392,9300,388,1103,6390,76,1299,4351,3532,2278,897,3552,6283,593,2050,7085,280,9881,2568,3630,5892,3765,4075,4297,9088,3651,4098,3157,3788,9439,865,4376,3861,1218,5697,8912,3915,3368,7181,35,7024,4389,7633,4971,1185,29,9487,3710,7942,8888,6112,3194,3034,9980,5518,5951,4762,2859,9154,5342,9292,1120,1110,8307,3260,9439,598,1784,4284,3785,4088,3767,577,1812,5897,6950,2582,4412,5134,2873,7095,2780,3255,4705,5411,3977,1027,8503,1762,5012,6201,2438,4562,2131,982,8253,4068,8298,2350,8651,392,290,7730,4026,1937,3230,4939,2638,4040,3599,4375,8961,9615,670,7953,5932,2742,5497,8448,2580,6588,4177,8291,8955,1433,3391,901,9355,2573,8967,4741,8414,5612,1994,4345,5585,7791,5730,4213,9202,3919,2742,3563,1994,152,693,5323,4008,256,2365,923,688,8020,6772,2978,6767,5519,5834,126,1630,7486,6547,4938,7589,3998,8031,333,9552,9394,4557,563,1764,6681,1700,9739,1552,8909,3385,236,3063,4788,6774,5145,6574,5533,1089,7179,143,2240,9485,2944,8593,298,6846,486,7695,4318,9427,6791,1651,9424,8644,1014,3607,6239,8017,9211,412,1800,5142,1764,3916,78,4471,1144,2985,7440,7026,8944,6242,8293,3735,2191,9839,1965,5687,9724,3335,8046,5348,8197,3453,5280,1777,9440,1590,5406,1308,8147,708,2913,9281,3210,2530,910,3118,3957,8615,6985,1035,1135,2428,8089,8093,3652,1433,1665,6648,6946,8403,483,3241,4870,6162,3233,6455,3759,8597,6049,4862,8953,3411,338,8042,2942,5834,4980,6440,9340,2234,2854,6939,4519,1685,7665,464,6985,4490,7830,8272,293,925,2544,7443,3294,6837,7129,391,9659,661,6671,3048,8879,9389,2048,7078,82,72,141,3507,4632,6270,4953,3423,1743,8301,9496,7742,9770,7521,3868,4587,3929,6447,2589,13,1642,9772,2005,7457,6693,8746,6884,8541,3655,6335,7289,2805,2616,7011,9970,2738,8197,3177,638,9920,4938,4971,4903,1360,4738,6124,9084,4771,1608,2410,7986,6684,214,9189,7627,3566,276,2372,5279,3718,7561,4639,3061,9155,3726,4751,5458,5354,7076,3671,4897,7338,8302,3861,1279,8000,7875,4757,8843,3454,419,7786,6928,5743,2876,8690,4752,8841,9583,6112,5011,4684,2084,8370,884,712,9497,6479,1488,1042,8129,7827,456,2906,1389,9523,2762,3022,1701,1925,1174,5545,2098,1802,6093,3984,2826,2133,2691,4511,3114,8856,3796,126,7936,9958,8870,9740,3584,4782,587,568,6890,4515,3979,2188,1049,6211,5734,2770,128,3851,7707,113,4652,2689,4643,2068,7599,3523,2148,9921,7753,911,1831,4309,5559,4739,3545,9343,3493,953,3713,7179,774,4993,546,7859,512,3435,4844,8104,3327,6372,9242,7063,1339,572,1215,1548,6568,6392,1473,6686,4701,5669,6837,5058,7732,6735,7302,8831,1905,2739,1334,7257,3120,4767,3024,4552,7840,8010,7211,7360,2180,9740,4650,4077,5881,4489,5429,2972,8215,1311,5988,3365,2104,2650,8458,3973,4818,4399,3064,1196,2672,7830,838,9059,6841,75,8995,6855,8316,3382,189,6087,793,2002,7644,5882,8572,5263,3226,2927,18,1393,6559,6819,9043,5210,4687,9870,471,1806,4425,6263,4097,149,8118,4051,9140,6748,5123,8041,7466,9673,9227,7060,6934,4066,4842,8179,9327,7602,2666,8214,3081,4782,7410,318,8846,5399,7450,1118,3167,2067,6860,1674,8243,9498,919,7340,3655,5252,4048,6295,7334,3770,5823,4137,7967,1311,5967,6032,1260,1253,4142,6124,1002,8530,3604,3014,8802,1390,605,8207,5866,3111,5381,6217,664,4448,3480,5812,2048,9072,43,5942,3655,5086,1067,9829,3358,4123,2762,6785,9321,4034,4570,9588,2985,8828,7895,4687,2777,8943,4992,8377,6662,4439,7401,3119,7066,9831,8061,8874,6799,1474,9395,1008,7341,4471,7772,2627,4236,1531,9664,6075,6414,8467,8900,1595,9556,6284,5731,4177,2063,8868,300,7809,6397,250,9059,1098,5026,357,2543,7730,5100,3632,5554,7699,2903,4411,314,6901,9454,2998,8053,4509,7379,4953,4355,5971,4152,1533,621,8659,2684,3129,283,8472,3396,3602,4483,1054,5561,2740,8512,7445,9908,5598,810,783,2949,831,9694,2689,2293,8606,7874,9302,5456,5459,7155,9337,4913,198,3244,5535,5943,6734,9389,5783,4118,7759,6130,3674,877,2182,5669,7282,4965,512,9449,732,7607,5434,3821,1499,4911,3687,3550,8135,5720,2361,1647,19,3720,1655,1960,6013,9239,7342,6881,1722,8359,3378,2164,1575,5957,6113,3397,9125,5527,2956,869,1849,6397,3105,2975,1173,4214,8957,5887,343,6234,2056,4834,6523,6947,3967,2775,88,4744,3171,3036,6268,2121,7537,3670,302,1087,5611,9524,4062,9090,6008,8693,211,726,1661,814,577,4307,4212,5234,615,2757,1968,3236,1762,7512,1397,5979,2639,908,4269,6825,3405,636,6535,2635,3819,3864,5740,7395,6553,143,7947,9005,7818,767,1296,2525,9435,8288,7871,4290,9222,4293,2300,9844,8019,6536,4722,6836,4156,7680,6356,8545,8879,7103,2648,6278,8528,668,295,67,8668,6121,1669,432,5739,8219,4385,1106,5405,9517,3017,8224,1882,3761,2415,5137,4029,4598,3852,3991,7543,1779,4893,4012,8101,5220,3784,4489,6895,7765,1026,892,2728,9964,7248,3991,446,6206,9620,7771,6745,4753,1211,7553,5381,5409,3773,3239,2710,7074,1772,5924,7028,4463,6332,5813,6920,9656,8653,6244,9945,4730,8354,3443,9964,6849,9188,5191,8511,3814,2483,5544,5668,8997,2302,6845,7046,3648,6754,2897,8813,1913,4397,1787,1579,8194,397,3576,6116,2889,2193,210,1194,5319,7071,1639,4095,6456,8104,8566,7811,9266,5199,3693,164,882,8305,1462,4922,2620,3839,2599,7002,9859,1630,2094,4730,7813,1629,4445,6210,815,6480,4909,674,3716,7536,175,5210,9481,3090,8401,1879,8316,8402,5832,8267,6207,6872,5286,9506,2058,8877,7598,223,7595,9777,8252,4886,7068,2485,8323,740,2388,6477,2381,187,7413,2410,6887,5059,6608,2113,4130,3574,9741,4826,5857,8556,8729,9326,5248,8372,714,3954,2851,9190,3180,9508,2636,3025,6561,9406,8687,8853,7476,7835,7675,1275,2542,8120,9655,7430,3173,9696,4235,5314,1398,7606,4351,3172,908,1805,7496,5252,689,4719,9189,9690,3654,7383,8736,5371,5338,976,2412,5715,1647,711,300,8516,1647,3904,2315,1214,7603,6808,4705,2470,2139,7371,34,2607,5435,1354,7510,1258,3522,7295,9390,6233,4718,2900,1049,2060,3229,253,8128,8008,1347,2938,9544,5445,3727,840,2048,9931,2328,5680,463,4329,8463,9987,5892,2998,3998,7926,1838,503,8175,3423,5178,45,5678,8374,8247,7996,9613,2769,6835,3363,268,7325,5138,8523,1711,2037,9727,2624,6145,6360,4596,5783,1528,9962,3181,3334,8691,6098,994,5668,5810,776,1481,4815,7650,2695,9610,3997,5626,9432,5004,8661,3449,1913,1571,3444,1361,3628,1458,5020,3252,9760,8553,5635,1594,1622,658,7979,8450,1809,5321,9249,2692,6212,2331,6076,7668,2495,9353,1117,3627,661,9915,4543,4500,6609,8015,667,650,4215,1488,9683,7516,3721,6995,900,5890,2792,3676,7933,3265,379,491,9026,1257,3767,8389,902,5116,56,2834,4704,5510,9396,7364,1983,87,2329,4961,8082,7321,4274,8178,6905,2592,5105,7897,8832,7992,1074,9761,2246,5126,7053,8085,6305,8303,3959,9560,171,6350,4693,3410,787,3934,86,8059,8041,7255,3569,1632,7070,6030,3288,3497,1376,1749,3789,3169,5846,9721,5783,4279,3330,4603,6212,4321,2525,9374,7563,1218,9582,2470,9954,3846,7595,9989,7172,2862,319,6350,7353,8896,9073,9197,7724,4902,6721,3491,2787,7880,8648,1879,2605,7130,975,8090,9250,7228,5796,7561,2038,1948,7454,1413,5451,7813,7682,8575,3045,3984,6069,7018,3052,8484,6409,8283,8151,6360,5423,5696,7902,4538,3263,2000,5135,8750,9771,7403,9817,1017,799,9776,4085,5804,7642,8941,1863,7055,3320,5350,6178,9809,7692,2346,4011,2833,8129,136,2956,233,7146,121,4581,2750,8867,4574,3466,8739,585,994,2972,6662,1451,4510,1314,7498,1993,6841,1891,8099,4251,3668,3415,1937,9540,3825,9286,9160,4176,3542,2814,5639,9953,336,6912,5260,8198,7813,6853,8954,873,1857,9574,957,2152,9517,1048,1305,3574,5544,6047,3549,3112,8960,13,4948,5828,9320,4803,8327,1852,5060,5219,8808,7321,6450,9228,4806,9782,6111,8687,2787,4251,9981,2790,7857,4743,4508,4224,9261,8580,4893,1233,8927,6207,7984,1877,716,6427,3981,3364,6054,4197,5121,7928,4675,5300,8033,3658,2628,7889,8049,5502,287,3852,9706,720,8886,7225,1973,3075,3196,2619,3923,8249,845,7802,700,6678,3780,6929,4656,6594,3476,4353,1253,5219,6082,5484,9465,4063,9415,9474,7407,9034,9215,9507,194,1906,1248,9938,4976,7563,2501,5550,4502,5149,4889,191,2569,4895,3567,6062,5953,8389,2758,8748,7704,7164,702,8568,1140,2339,8286,1957,7250,1367,5687,4104,9404,3691,6202,6862,4455,5715,2171,9490,1548,208,6174,8768,4414,2566,4576,8361,8954,2982,4406,8505,7528,1943,3956,550,7781,8115,7045,1684,1709,4546,5344,9799,7379,5482,6397,2640,7047,1391,1183,4655,9548,9517,5675,6473,8597,5472,2376,3212,828,9814,9467,7136,6002,8592,9125,8743,7910,4579,254,4608,5763,3050,904,6200,2851,3423,4922,2314,9971,1601,5073,4123,8260,1693,4260,7591,1728,6134,2869,5001,6098,758,3217,7734,3070,9476,110,8042,7271,7683,2683,6784,3009,5680,5423,5111,9010,7204,9080,1905,1037,3353,9492,2080,9323,1843,2084,8934,1522,2612,2555,104,5330,2440,8637,78,3596,556,235,2928,7632,5803,8404,4700,8692,8832,2215,54,9216,9132,7964,6004,4347,9555,2634,6341,2375,7064,6103,8893,9328,1723,1161,9316,6794,3798,7728,4512,6651,6081,7536,4716,7509,3860,4535,1566,7733,697,4627,4975,8173,638,161,9321,4785,8739,9952,6769,2733,3628,4640,3962,7445,2286,4595,930,6026,8107,7569,5149,5627,3489,7225,5833,577,9857,6643,5057,3358,5496,6150,7036,6557,2663,4732,33,7489,7934,4195,7675,3606,1376,2997,7710,9806,3426,8001,5288,1655,259,4706,4600,994,7902,5820,5460,4598,6161,2940,8272,6589,1791,8177,4973,6864,4915,9005,8174,2788,5207,5658,9561,2333,9850,6856,5704,8812,3885,5886,8203,7260,8519,1781,6270,6028,3057,5848,2227,6317,1807,7102,9629,8510,7099,7412,5458,9133,3412,715,9168,1919,4299,747,2864,2548,8917,6540,5863,6531,1503,2428,555,1093,1132,8078,8352,3810,6930,9108,555,6279,5476,5028,6213,1782,4535,609,732,1799,2679,1708,8928,4381,9609,9100,6009,8341,1816,4158,3389,7320,5619,8653,5755,1517,1791,7704,3968,81,5727,2423,1190,947,7009,6588,7272,6144,2046,5405,584,9298,732,6102,7401,9582,7926,4226,445,5723,5113,9370,5504,8219,323,7527,3850,5070,4116,3174,1587,2580,1443,2538,2738,338,3030,1164,5159,8243,1818,6521,105,1783,3855,5231,2259,870,2472,3011,3763,1065,65,6645,5421,4724,8152,375,5984,2236,7869,9249,7520,5439,9544,9870,1216,5515,8191,1386,6652,7423,8833,9821,1429,3601,3448,685,3341,4321,7021,7196,611,1784,9281,4202,5100,6979,2903,1300,4417,18,3186,2794,8468,6481,2687,272,2862,4454,21,1240,5919,1367,9649,4779,4985,363,5185,2970,6482,2033,9707,2116,1433,766,4301,4139,6169,9067,9049,9848,2348,8010,3785,6893,8089,1191,1582,5011,7571,2833,6630,9241,3733,4367,4293,4571,6959,4528,6890,6161,6212,5143,233,154,7432,681,4170,8431,6210,9438,6789,8367,8304,1641,7145,875,6935,306,65,7066,5944,7055,1550,9569,4195,3937,8130,8604,5881,4232,7219,359,8252,4857,6316,5263,8171,2770,4903,5923,691,9914,1920,1686,4690,7552,3083,4574,3937,8509,693,9580,8660,992,1387,4668,9195,8726,9673,8509,5807,515,9765,5685,69,9806,3222,4959,929,4194,964,7828,4993,2700,5532,952,9047,2278,9044,2701,1050,3456,6082,7454,3345,2712,3782,8032,8937,6105,3644,476,1365,5193,1260,6,3502,4175,8437,3447,6590,8527,9592,3665,4820,5966,5538,4058,6402,6632,4535,8134,5792,6042,5549,6858,8719,7070,6000,1501,5064,6544,6966,6022,3442,9,5146,380,6780,9106,6791,4675,5968,394,3868,6685,6151,5214,8054,7723,9087,6423,2938,1197,1430,3794,1043,6058,6667,228,1050,7821,8494,1816,4437,7213,3261,1696,2649,8283,8404,6688,3451,2806,6589,8972,2077,1655,5402,2509,5669,7709,169,3486,2433,8168,9562,7329,1832,4163,5832,1727,2232,1065,5144,2176,5441,9310,6776,3760,6663,6767,7849,9929,8320,6597,7770,3192,8429,4736,5832,180,4397,907,5514,8371,842,6003,4167,9291,6372,6238,3699,3998,9103,8220,7338,8047,186,6274,1129,7869,7534,2137,4062,3078,6918,105,9704,1660,5368,1080,323,3598,4773,8873,5238,8353,4910,1755,5761,6239,189,7104,6913,2248,1922,2468,4461,1359,3451,3243,3134,5269,7065,1622,1034,6448,7614,5304,2527,1324,6328,4015,6633,3840,3953,5637,6687,6296,476,9417,5231,1945,3549,7941,5593,6267,1347,900,1507,7562,6304,4095,6227,8652,9824,2573,1750,2350,7101,3034,9203,8450,1130,2208,1432,6609,6206,8064,9144,1151,3526,8582,4916,7483,1182,5839,2691,9877,6401,6148,7243,8299,813,9755,3038,414,808,9578,3968,6416,2611,9763,2247,1201,3723,1962,4839,4386,1901,6157,2744,102,7032,7271,7648,9157,2780,8888,6559,6980,2225,6191,80,2221,4165,8019,8331,6395,4496,2955,4146,2462,4275,8892,237,8492,2562,5749,168,2551,9474,186,2022,5588,1022,1925,7295,3105,3989,3854,8231,9138,559,1394,1318,6295,7491,8705,2407,8916,6875,5465,435,8917,231,160,1140,8884,5230,1391,1631,8076,2997,5306,7359,2981,148,1488,9838,7963,6330,525,7789,2920,2000,7242,699,1406,1377,5866,153,5584,1454,1468,7068,6016,9766,5135,8334,2648,9711,3930,109,9704,615,7464,3759,520,7310,4316,8730,9147,6522,8115,6406,7593,5280,4120,2623,5668,7325,9521,7720,7568,7311,3922,9608,658,7582,2309,9028,7,1238,5673,6611,4008,3545,9328,5332,4091,9259,3328,157,8255,3516,4707,7259,6943,7848,985,6927,662,789,4254,8927,1351,9856,6540,9272,7870,5890,7636,8666,5291,940,771,768,6735,7685,3320,6915,8794,488,9379,1752,9910,9107,8501,5418,7825,1669,8847,2738,9622,675,2079,423,8208,8205,3172,3171,2102,6190,9384,8851,3814,8996,2503,2208,3480,1561,2744,4743,4706,4317,1329,3559,6939,5227,5392,1275,5539,7821,2930,2272,752,6373,7552,9238,6465,3745,9554,5300,3327,6962,3552,5780,2793,8943,1557,5044,7787,2382,9523,8035,5423,7601,6667,8524,7225,2917,838,8367,3280,4671,5223,8755,344,4306,6597,7328,105,1744,4854,9139,7478,3158,4657,4623,8289,7242,343,3238,5524,580,4169,404,9518,8873,9836,4909,5437,9914,3411,1957,5352,6804,142,4453,3982,8916,3202,1547,7498,2098,9608,9190,9275,1808,5773,6915,3504,2517,2692,7581,4757,1931,6256,4623,1116,3345,6291,1291,9421,2183,2951,812,4556,9838,2900,2520,6787,7005,3682,4798,8704,1620,9241,3031,7684,6205,9802,61,3113,2814,8678,2912,229,7705,7918,7248,1889,5053,5822,9150,9215,3884,7812,2995,9499,5630,1127,3297,7196,3108,8816,9661,954,5468,2530,426,1199,4819,6009,2728,8810,8013,6252,9586,1363,7757,5224,7537,1843,1399,2792,7732,2376,1803,9175,162,7135,9360,9097,8890,1977,2363,3443,5764,1074,4231,9558,8361,1706,5618,5993,7840,9021,3504,9562,6222,745,6710,8055,3883,3865,4439,3290,5270,7200,2386,1532,1752,4057,7405,9851,5277,4639,2250,3902,4775,5452,7473,8575,5279,5577,896,5451,2117,2100,6803,3022,4008,8509,4739,8850,4680,4147,2635,6049,8041,5777,8891,4088,383,5649,5164,6907,2951,2748,7121,9185,5669,5405,5909,8303,678,800,9699,2003,7279,1070,9160,6735,8802,4112,1857,4112,4489,5165,5650,1197,3872,3772,5996,4421,9460,4267,524,6842,9745,7815,5640,9260,6521,8735,8598,9785,3571,2888,8574,8742,3507,8494,791,9333,6020,4826,4775,4768,5411,4981,7576,161,886,7261,6460,6207,337,2830,2732,1783,3953,9389,7552,4166,8595,4705,497,3692,7632,2547,9865,6707,2373,8510,8896,4717,8500,5112,5459,6639,2608,6791,2004,6174,4611,20,1232,5175,8689,7063,9475,3571,9532,6967,957,1055,1453,3635,4314,3754,9239,1608,1738,3414,379,9079,7733,5098,6051,4164,4301,5269,5787,2630,9669,2107,7146,7526,2076,6707,8622,6994,8164,579,2525,945,967,2439,4597,81,3307,5914,4509,4849,7811,8739,3763,4083,3853,8694,2337,5862,7793,4736,3524,5704,2170,9352,7836,7199,9605,1616,4846,930,9373,7971,6175,8067,9067,692,5937,8314,4811,7104,8457,3706,4879,988,2367,1990,9444,6633,5223,2170,4241,5332,1670,7993,6796,671,8207,9784,8141,292,4679,4570,6121,6264,6268,1721,4398,9806,5678,9274,6971,655,4229,8690,8962,365,4106,4497,9434,5030,3120,5204,662,76,796,9164,9711,5180,3519,5133,870,3204,3377,7108,5206,5462,7618,3095,3487,3671,8060,7264,1761,8681,907,4619,1440,3416,622,5391,7450,9818,9340,5916,6534,7419,6213,9440,4205,1799,9723,2804,3365,3606,5463,5027,8807,6538,1687,5216,6252,4437,6990,4927,4929,4677,4075,7797,7580,1173,5154,6946,3088,7716,2420,4234,6615,838,2449,5203,6927,7890,7186,7179,8514,4377,4957,3144,6290,8753,887,7724,8697,511,9144,4953,7779,6735,5095,8063,4142,5719,660,4283,9734,24,7483,1841,3668,617,4200,9993,6027,9911,1866,8313,2243,5610,5621,6927,4778,9014,801,4670,3381,3906,7319,2999,7512,6338,545,1425,2025,8054,6342,658,5121,9496,231,6347,3495,7013,6551,3588,8460,9794,6420,5592,8142,5212,1649,7821,4349,2640,3883,2513,137,8142,355,2025,2777,1629,9704,9077,8769,5560,8328,4532,9200,8171,7188,8638,4320,3796,961,3777,4396,3692,3808,9106,8356,326,1955,7749,598,6699,6374,7973,959,711,941,924,360,4994,1219,9641,8320,7539,5294,6447,5616,7860,9141,1836,2129,7986,3494,1852,1814,5163,4822,5954,9664,2187,4222,9157,6105,2848,4158,5160,2258,2405,4508,8686,468,3772,2881,3450,6110,9450,5094,1223,7672,3299,9946,8106,2047,5386,4432,3435,97,8228,3124,257,2853,1876,2227,1130,7939,1244,1318,2496,5590,3874,7412,2431,9574,8733,7450,8437,4198,8897,8133,1107,3040,2155,5491,1168,3486,5279,4317,8903,4006,3483,5686,8338,94,4082,2352,3995,6180,5419,2021,6140,7289,9244,2472,7171,7235,9715,3811,2969,3435,8431,3637,3515,8401,1556,323,3116,5873,5847,7583,5124,4723,6844,7260,2426,146,4445,7272,6600,4503,9161,8233,5191,9561,9602,5767,3358,4069,6915,3288,7054,3578,8702,213,1902,5736,8071,9580,6372,6321,7276,913,5378,2089,8521,432,2543,1894,900,7819,1096,5543,9494,9608,2230,8967,8303,6818,5936,6670,9916,5810,8202,3009,375,4776,9211,722,6166,4252,9843,8290,6975,2308,9823,3425,9331,4749,686,6452,8821,2737,3648,7891,9541,8166,4252,6717,835,4488,5507,4084,5232,2066,4441,1010,828,8060,5667,441,1749,9935,6248,2229,1103,5435,5007,3952,4050,6804,9227,3760,7359,3715,1707,540,7475,5141,3247,3991,8882,6722,682,612,6339,5116,1195,5483,609,9559,9386,1937,2518,9196,7760,8811,526,9849,496,6157,4248,9697,7017,4582,9320,5475,7411,7202,2297,6518,2623,752,4197,8669,4915,7383,6697,7461,3142,5610,519,5731,3254,721,5259,7810,9603,3529,8465,3992,272,9276,8342,5363,6074,3945,724,2247,9447,5613,8147,5342,5298,4459,2922,33,9453,9397,5654,3000,2525,2487,882,4103,1095,7724,6684,5968,588,6562,4395,7825,6528,8367,710,7024,6693,758,2637,7166,9147,7874,8728,1812,8122,3060,8019,4299,7383,7729,9514,7919,5381,2988,1774,3008,3856,7477,3495,6116,6735,5964,9054,4921,7782,5053,4157,7861,2907,3755,3354,811,9282,2163,5185,943,731,9126,2392,6079,2896,2150,5690,476,5723,1539,580,6457,3168,5483,1916,5814,4646,1272,9293,9507,3459,7846,9357,5024,8634,8268,7338,7716,6015,5861,7169,1080,6000,3602,8011,8299,8608,1857,4898,6576,6627,8476,3855,6000,1412,1090,5282,1460,3345,4700,8847,8793,5198,8822,9096,8897,2141,2236,4436,8332,1322,5356,399,3213,3169,3457,2777,2226,878,7141,1923,4615,4894,1348,6155,6319,7568,1625,6170,9784,3317,2425,5487,401,7725,8242,2228,5089,8059,1473,6400,2212,4001,5921,6798,4672,6421,4899,9694,5293,1799,5698,6496,3697,5414,9692,8226,3458,801,7498,3892,7531,4621,6845,2385,7673,8974,7844,1759,4820,1496,8810,6958,1826,7050,2918,2349,7552,8301,4578,5132,6046,862,7204,666,8842,1998,7817,4700,8893,3624,7746,320,2406,5537,3365,1719,3789,5835,644,5900,8451,3370,6677,5822,5880,8910,5269,6999,6657,9442,4551,9799,8696,3701,7362,9814,8811,9967,1406,4882,282,3662,7226,7603,5940,4989,1285,7457,7772,7417,1270,5717,240,8637,7875,2298,4523,4521,9303,9864,8729,6266,6265,9246,6467,2648,1269,9016,3782,5539,8106,7637,4347,3780,13,5004,8038,7775,717,2085,7360,4530,854,2019,2430,6769,9656,752,5056,5104,3736,275,6138,3906,8886,7304,2368,9617,5322,2379,4229,5491,2943,6025,5178,8067,4064,711,1799,814,7540,5138,3809,306,9164,1367,2388,2203,5918,5783,8281,2618,4852,2698,7100,6637,1629,7163,9621,6838,396,3980,4996,1291,7372,3623,5736,2211,9062,6020,256,979,2659,149,1140,7003,3837,9098,1852,9773,2639,170,1678,7279,4352,9424,6921,2047,3608,3695,7854,2258,2629,6049,7997,3222,1029,1643,9032,1090,6638,5825,2492,7283,787,1163,7077,3357,9785,2829,5568,3739,5305,5099,8002,3490,120,4301,8448,4937,1109,7022,336,5952,3832,5732,8024,7279,5869,3213,2773,8811,9123,6054,3744,6572,8057,7015,7540,3695,5056,8584,904,461,9296,8579,9671,2098,6346,4657,7329,9366,3333,1686,2154,5900,7346,4043,3125,4664,7193,7288,6303,4776,7887,5204,448,7823,5245,590,8384,6332,833,2846,4417,3707,3661,4533,6553,1933,1746,5669,731,9280,9171,7239,4419,154,6610,1657,3639,2261,8744,6662,1299,7891,7853,8755,65,9482,1073,2681,4194,636,746,2429,5600,1260,1531,8097,6825,6542,8593,6707,9571,4391,957,4059,450,6509,9252,9464,8737,4998,6915,3342,7446,4158,5497,9768,3372,97,9197,1925,2309,1954,5327,4215,8693,4137,7164,2980,2946,4820,9085,6457,143,2860,7876,5577,3598,3642,22,625,5170,4331,3878,5089,8705,5770,9385,8558,1237,8895,2876,5830,3716,6427,4478,8909,9819,5182,7163,6227,1059,9425,6629,6782,3813,3281,6191,4963,7636,7504,3955,3053,3869,6262,1392,5487,2064,5736,1045,3029,436,1376,1358,3276,7531,8353,9400,6149,5903,6447,1659,3358,6833,8050,8101,3574,46,2563,3794,2115,5159,4785,3756,5884,4178,8780,3684,6410,6814,6004,2468,2684,6591,7789,5693,4225,698,8046,1055,4482,292,407,9843,9938,703,8289,7311,8902,9387,905,8294,8100,157,499,4188,5738,6448,7689,2212,9939,4770,2155,6995,6523,4762,5206,1665,4339,9646,7546,7252,5145,7930,6370,8433,4393,3324,8837,1322,7425,4500,7528,8328,3816,21,4776,3726,2653,8164,3438,8724,2100,1296,9370,5705,3927,998,6503,8180,7584,4253,5325,3718,58,7212,4799,8945,6556,4051,2673,4782,1744,8459,3558,4599,192,806,2099,9820,26,2417,4393,3507,5903,6609,3198,5303,4142,4316,6188,6665,253,3196,7956,8660,9314,7079,881,7993,3490,385,4780,293,1912,5175,3597,1024,8212,4063,3652,9544,8471,785,7881,3343,6161,6070,4220,8101,5431,6310,2836,3271,9158,7991,4830,3172,3078,6647,8972,5143,2260,6962,9803,3795,4823,354,2563,120,9643,9730,8478,1274,7881,8627,5486,1806,2231,18,3709,7992,1296,7097,3260,8861,2485,9928,1348,5988,4233,2635,5572,9019,1499,4324,6813,8918,9664,6799,4661,1332,9223,1818,8068,4000,2847,9099,1307,6137,4670,3112,4950,5160,7116,8081,2579,3939,8688,3298,7854,9194,3138,6076,2712,2930,8681,9673,3311,9997,370,7492,3630,4030,8853,8682,5752,3928,6353,9614,9314,7846,7957,3810,249,2508,5397,9960,5061,8496,2557,5766,9285,3207,7881,7744,3767,7983,4493,1299,5948,5601,4738,399,2575,2845,909,7044,2798,2167,2811,1715,4129,609,1366,7955,3910,3835,5985,5719,4368,459,1434,9261,5454,8002,3588,1706,2216,4700,1326,236,3967,4332,4913,4042,3050,3228,8992,3585,5540,8378,3315,1444,8676,78,9528,966,3165,7194,9271,3479,9538,5935,9206,3802,7745,2340,9914,5476,5260,9145,5324,7171,2034,9315,1950,9311,8939,4415,2279,5530,4830,4846,4384,9370,9026,7822,2946,5048,875,5827,242,6401,1099,7405,7839,3231,3326,4927,801,3310,7990,4531,8910,7684,6560,3786,9922,7158,8642,7868,8264,1663,105,8591,6182,6884,4538,3785,3881,5723,5883,2794,3269,3941,6440,2640,5998,664,1697,9494,4855,3204,8607,3511,7799,968,6020,4706,9680,3584,484,1653,2425,9632,4998,5810,9935,4786,2887,9216,4776,6192,3220,6811,3050,6384,6493,5428,9866,8508,2936,351,147,8891,3366,7977,1146,759,4743,7441,4546,848,1975,3236,8600,289,7318,366,94,5393,3863,5844,5058,9293,1229,2933,766,2944,723,7336,8928,3926,3641,1892,8579,7094,3294,7163,5508,495,6728,8990,311,7504,8410,1016,6167,240,9903,7317,9214,3807,128,9512,2864,8155,4436,7769,2372,4004,8182,3831,3676,3039,5118,7804,3968,8436,7564,8888,1288,7992,3858,8780,7028,3499,115,8541,8310,9578,8331,3196,928,160,7126,6628,4982,3843,6266,7661,91,5577,2347,4706,582,4446,7682,6714,6094,7764,7737,5541,2452,6762,6929,8343,3277,7975,6169,1352,9719,6797,9811,8816,6094,1437,2795,8929,8549,9587,6254,4423,3162,2635,6575,8755,4774,6038,5397,1335,8538,3931,6953,5628,2517,254,9745,9083,7102,69,1320,5093,5983,5932,3329,1497,1260,358,6323,5145,3333,7156,6303,4303,2443,2520,3613,7060,7700,8656,506,7303,4443,4495,2286,623,5209,7752,5892,9092,9666,6717,6406,9897,7299,4975,412,6514,418,5288,3120,8811,6301,1053,6826,6978,3479,7743,5201,1139,6277,28,375,3354,2441,1779,5545,8343,11,7764,2723,5314,8121,54,5435,1568,3289,9293,8794,6601,5741,2308,8559,7234,6242,7745,868,6706,4217,2529,232,7581,472,362,3650,6524,5432,1035,8029,7352,6744,9117,7573,3129,5935,2416,959,8593,1233,8254,1330,455,3867,7673,6516,6147,686,8307,483,8477,5234,4077,191,6597,7227,7955,2568,2,6383,7484,4016,7332,9465,3253,534,1628,5877,4349,8468,7595,6451,3000,6360,4144,3995,4033,7300,9518,836,9147,962,8403,6742,8352,1257,9458,82,3788,6742,8512,45,8078,9106,8199,8615,3064,7387,9490,4938,7734,9632,4502,1170,6140,2357,8207,4639,8523,3548,5374,8589,681,468,8357,9811,4856,3626,4199,3499,7177,8114,2697,9534,1374,97,762,5262,5737,5098,3601,3571,5240,1825,7404,852,6749,3704,5816,9438,9350,572,66,2054,3138,526,8404,4595,3976,1031,8241,3098,3279,7214,9340,1206,3357,2987,5204,2401,9493,6293,7296,3240,3844,4114,716,8845,6572,9291,4001,5215,909,1780,8428,8431,2963,7218,4624,8454,906,5077,1177,7896,8308,8659,4705,5678,5597,3881,1139,6060,4073,509,4847,8032,8854,1132,63,6695,1567,3556,6219,8467,5494,1433,9050,5375,2267,1643,7572,8925,2093,9528,7391,4978,299,7479,1921,2414,4013,5436,5586,6385,5304,1349,7315,8114,7373,9868,5622,1446,8043,579,3077,1939,2086,1468,1109,8802,7145,7573,913,9651,1179,6916,7616,8152,566,7822,5197,7525,3633,5277,6570,5634,7033,2867,3023,1993,5018,1135,1338,296,9495,7061,4821,8223,2096,8759,6236,7129,1516,1229,2485,7400,7187,724,1322,714,9435,3329,685,9138,6886,6100,9925,6351,5330,3006,6478,2211,324,160,3333,9605,2583,8675,7413,9787,5701,9386,3534,2564,5653,6711,4478,4466,6418,3352,6926,439,5031,9439,5314,8421,5736,9963,9424,8088,7962,777,3445,1023,1634,153,3741,7554,4781,966,7458,1796,8277,4567,3264,3246,509,5217,4749,5350,5958,2111,2324,8036,8460,1596,4417,4794,814,1126,4777,2847,5483,652,9456,1383,2361,1688,4114,5963,999,9784,9357,911,965,1986,1155,523,5711,4598,5838,5042,245,7002,4292,2451,5426,2465,5150,5616,448,7618,9189,7044,915,9629,352,8365,8067,7216,6404,4813,6632,3550,5153,6183,3871,3258,9773,2643,9543,8958,2679,8202,3751,330,57,7827,7947,891,1410,3794,5234,8797,6754,1441,5732,6936,2788,4582,9637,3342,9622,4967,4426,7688,3740,8876,4292,4113,8997,8981,5143,1450,3823,5840,4605,4454,6293,1989,3028,8813,8181,827,3319,1888,6925,380,6162,9420,8671,7222,9895,2963,413,7935,5684,1979,3044,9307,7789,2197,2924,7511,179,4232,5559,1746,6424,3398,7075,1619,8630,2508,6261,8003,2539,7097,7738,7391,2716,5553,9316,9490,919,1475,6388,3110,4445,5285,6870,982,6832,2210,3108,6901,611,1460,4086,2876,1532,43,1607,7903,1700,682,2272,4613,2357,6900,9383,73,2402,7777,1438,9421,5576,2933,3216,8316,3647,6225,8972,5088,1525,3270,5735,1604,2600,8979,6192,6555,8020,8222,1254,3313,3149,3515,2506,1352,5210,6256,6170,8346,6168,640,9842,1141,3177,1279,9924,3563,7650,8115,7667,9523,4268,1379,6150,2694,2911,1737,4391,928,6526,1628,9334,5045,2042,7945,3416,4507,3056,3714,1856,8626,338,1598,8788,6355,3625,9816,8709,3899,4538,1913,9550,5095,6627,200,7567,9855,8276,5472,2690,8976,3484,8749,5204,5327,20,9645,2907,9373,249,7071,1,2926,2183,9522,2159,9187,5772,7797,8177,2505,8342,8614,2158,9142,4831,9575,4455,8592,3835,6606,5898,6077,7484,8477,4244,7578,4571,8632,4150,6141,994,6228,4951,713,1388,581,1628,134,7426,9000,3216,9630,4217,9081,5228,5193,775,1389,7625,6394,5748,8713,8541,3946,5386,5773,7633,1528,4804,595,3425,8928,2303,1065,1787,1239,876,5285,268,2737,2788,799,9131,5132,1609,3532,4650,2347,4845,6607,6153,6565,8884,2508,9169,6933,4134,3490,86,1414,4553,6316,3130,4764,4845,2438,780,6728,9304,5126,7788,8107,3642,9161,6107,8016,8143,2858,9685,1178,6963,5062,2313,2087,8782,9779,7654,2587,3758,9359,1975,2787,5152,4921,2018,3205,3452,8091,3488,2313,2231,4518,9675,3299,3293,7811,3448,5620,4841,9802,5600,3510,4327,8135,4500,6032,2132,9098,9175,840,350,5442,3404,7813,9252,1481,4026,4273,3731,5637,3404,2285,4767,6446,5006,6373,8291,3175,1757,1459,6268,2982,4206,9442,3049,9614,9121,6097,3845,3367,3080,4277,7168,5513,6248,4967,2012,9313,5944,5265,9829,9069,3513,3290,6066,8878,5951,7913,8991,5307,384,2395,451,9611,3954,9766,2689,3697,9478,6917,1113,2569,3740,4571,3751,575,1206,5312,5617,7595,7732,6300,4982,3354,5059,9064,7566,6936,5994,9973,4255,7636,5059,2593,2904,2020,2278,9927,7759,2154,6668,7864,6249,4171,4756,3051,5551,5723,4881,1455,5119,1959,2384,8954,6801,2807,2918,5213,6634,9303,4932,5337,3054,2235,3491,1979,1370,4368,2277,2622,1007,1776,1591,3751,6818,218,4537,1395,8464,1945,4717,6959,3529,2664,4404,1456,240,3893,2175,8619,9086,6669,4912,1402,3012,543,3044,1481,1517,7300,5960,2984,9347,5557,3504,8035,3624,9876,6326,312,1895,6720,7650,3244,239,7479,3579,1758,9262,6400,9670,180,2926,514,7502,3638,2530,5402,5252,7565,890,8667,917,3500,299,8181,3313,2635,4749,4712,5924,7249,1003,5196,5033,6059,9982,7886,9664,5289,2226,7796,2555,1482,806,9660,6140,2329,208,8502,6890,2385,8937,8349,9488,9003,9779,9887,8792,7951,5910,5628,9227,1948,7839,5409,2649,3300,1836,8910,556,6507,6063,7666,6467,1508,961,5151,5918,1929,7478,9003,890,8803,3038,577,5320,3395,2755,2298,8232,5556,6074,6138,6309,7531,9815,4756,3803,4200,2698,5955,5736,3415,1019,3260,1284,6044,6486,5192,7534,1441,4829,8885,5672,4494,6787,2929,3337,9443,1583,7763,1618,4869,8041,5947,841,7920,9644,1219,4361,6421,6626,9891,9900,1138,1657,4513,821,8739,9900,5944,6449,3,3646,8845,8899,7744,5999,4265,3636,2258,8942,88,2467,9278,4822,5386,5026,821,1419,19,1992,2667,386,8745,981,6820,3971,1638,3378,1247,9663,2008,3727,9019,6457,3598,3237,7305,4274,8995,2548,1877,1974,5516,1845,538,8918,3243,7972,9639,9544,1769,9092,1574,9214,6482,3658,7821,8874,6767,6590,3215,8877,1233,2337,1522,5612,6933,7022,3763,8593,8784,7969,8091,132,2690,7963,626,3593,2952,7023,9801,154,574,7532,1741,2219,1448,7558,1391,2788,193,5266,5087,3940,6229,7880,5254,3437,529,4894,9094,5416,6314,1602,8831,2566,8132,7828,4419,3927,6942,5260,5781,5985,1340,5897,2782,24,9672,3428,2980,5263,9905,9166,6187,9073,8486,6306,3741,9689,1829,5763,7312,7457,1376,4040,8893,4216,4740,8927,8692,2132,6191,5669,6734,9542,8072,7048,2108,6750,7742,2751,4323,27,7781,5631,4165,1982,9730,1082,8938,679,1055,7726,3593,8531,8976,2709,782,3284,3893,4280,2986,9130,1795,1459,5807,1275,7163,6166,6166,8288,9393,5115,6740,7336,3130,2837,3672,1167,7760,6986,6366,5752,209,3810,3867,1587,4810,5325,1213,7203,7773,1799,5469,9265,6964,9132,6452,4822,1953,4278,5626,6465,2387,9686,3017,7303,4949,5813,6442,8237,549,5191,7325,7090,6889,7465,2989,2192,1785,7623,4626,8367,6070,777,3609,1915,5799,490,4716,6098,8390,7099,4853,1514,8013,4743,6610,1786,4209,4614,224,8985,5653,6872,6530,4470,7872,7761,50,9530,8823,4819,1706,6404,9067,2368,1140,5665,5732,7124,8794,1731,4920,1496,6497,8114,3370,5650,6076,472,340,1953,6180,8423,9998,3077,8814,8111,5292,9433,2970,501,8356,5153,1763,9676,1921,1034,1755,6566,4570,3951,1705,7312,1987,4162,4554,3764,8579,9379,4103,5291,3856,9781,5459,2619,5558,2767,8549,6263,4364,2752,5329,7713,4673,1214,9939,8251,5635,8380,6711,210,469,1259,6306,9003,2308,9073,8199,7285,1860,887,4155,6410,2227,2499,5564,8524,4772,6346,3617,6763,1416,8639,4042,1588,403,7328,2133,5598,1637,6117,7931,6316,8032,5963,5528,7408,2291,417,7645,1925,8599,4049,6080,8811,2593,3313,3018,6022,5179,3493,301,5908,9520,5533,3891,2932,635,6883,339,2769,9211,3651,3815,6619,3204,7439,2306,4807,8324,249,5636,432,9088,7098,6374,5638,7714,7330,2058,9162,6255,9072,2009,4386,1353,5148,2428,3266,9776,5833,3226,4304,9797,7943,6597,8001,8999,1197,801,6512,8432,3688,6407,3354,369,4619,6547,2298,7101,3507,5058,6438,7155,3588,4931,2361,2744,4163,7595,5046,6738,7818,7552,8613,7456,4280,2341,8137,6332,1822,2143,6419,8327,4763,8232,3334,8122,5480,352,1961,8861,9236,2397,7680,9274,2356,1182,2070,202,7580,7942,7677,588,3816,2392,4476,6402,9357,9100,252,348,9764,2827,2043,7028,3730,9447,9911,4234,4513,512,7743,2285,6925,8324,7851,1843,4533,9567,2966,729,1954,5219,7236,1297,590,8825,7785,616,1079,8730,8295,3593,3216,1997,740,1237,1072,8146,2590,8705,5417,317,3293,4010,5528,8784,6796,7664,7930,9271,5696,1118,7581,846,2604,3165,3213,2159,4105,824,2406,341,8250,9350,9226,6250,7079,4077,9613,5648,565,6703,4111,6108,320,6161,8991,8775,4698,8816,1705,3514,3507,8909,4847,7921,2917,1926,1791,8618,7562,2178,8710,1625,4189,2949,7113,1907,5920,8965,4458,5859,59,123,2166,206,6239,6186,6685,2903,2041,5378,746,3257,5815,2579,6016,1434,9615,5813,6655,9654,1377,1199,8792,8912,2737,8047,4986,6023,3592,1190,8277,1526,5968,2121,874,1875,8594,2017,1564,5134,5279,1346,7174,6457,5039,3845,2342,9360,7732,7843,1349,3594,7542,3327,2560,8146,3997,9060,6660,238,6240,4379,3624,803,4981,5028,9211,5739,7170,9554,3059,7539,3869,7604,4341,3004,4471,7000,5324,2030,4940,5871,9876,8596,9907,5771,4083,3057,1575,7269,8736,5596,5446,4148,6898,1106,9842,6052,5196,9751,5322,1565,1945,25,5448,6754,7927,318,68,5799,3905,7629,1690,1878,8141,8046,931,9239,1454,7190,9705,7866,2593,544,9382,2265,9321,6502,96,1185,6618,1473,2603,9872,8483,4490,5540,3201,4091,6969,1106,7726,9970,7666,2921,3373,3998,1365,1326,7985,150,9581,8403,9173,10,3842,8397,2373,4980,9338,8096,2726,8220,2168,8871,1735,2414,6213,2019,6645,7335,605,2660,3700,448,4416,7721,2658,8813,2956,6242,1221,3542,1170,4019,578,4412,9873,7622,2916,5406,9653,9298,8599,7043,7165,8122,3795,2925,2347,4575,2269,9208,1872,9351,9276,877,8743,2398,3779,2087,7331,8096,4843,4065,5216,3624,3345,6634,6353,1590,9415,4093,1431,9074,8391,5025,1177,1585,2643,1983,4223,8433,4745,1777,2627,415,6282,7856,2920,7400,8283,3012,1277,3486,494,4152,7040,6147,3353,348,3586,1821,8391,7575,6537,5782,6395,7643,8030,362,584,8479,8655,1752,4672,8758,6953,6904,5584,8175,5912,685,3983,1003,1901,58,3894,9152,1545,4373,1907,3393,5732,5591,1152,4520,7384,6841,7729,7098,4773,7261,670,8060,3514,7525,673,5499,3510,2392,8923,4658,6105,3431,5095,3423,8107,9865,4390,5822,1368,3502,7329,8892,1008,2132,8147,2771,1270,8988,2744,8542,2432,5694,2860,4834,8401,9756,6395,3734,4675,7101,3882,8188,4901,169,3395,6525,7672,6226,3443,1173,381,4739,4894,9830,8356,2968,8476,3427,4187,9555,9990,6936,6224,7296,5309,8221,1603,5816,5651,1234,3947,237,7955,4735,4451,9195,2328,7221,9065,7394,967,4224,4140,8920,5784,824,2844,7731,7760,9505,1104,5992,6582,2826,6410,975,4873,2827,9968,8841,8460,1113,8370,6294,4191,7250,7211,6234,966,1603,636,5715,8486,3601,4753,4445,278,2964,4391,3959,9511,8966,7915,2078,7848,1374,7199,4837,4994,6880,2996,1506,5863,683,479,2233,3133,8435,1478,6471,4887,6109,7759,9848,1969,9108,5406,9968,764,1048,4050,4655,8352,6192,3511,8544,5849,1125,4471,6214,7547,1674,7983,9693,7381,9210,4924,8305,5521,8132,4600,1158,9840,174,3291,9237,5706,8267,5627,5417,1291,9252,1005,8879,1029,9157,8604,4428,1114,1423,635,2527,1009,6447,5999,7885,2177,7078,1289,2417,1900,8208,183,4155,2208,9057,3359,1230,965,4990,1623,5291,6584,1380,1682,9610,695,9937,1291,6064,4070,7695,8512,4377,8838,5600,8750,3803,1552,736,8641,699,377,6422,1310,1470,1450,3982,9942,1494,7864,5698,1623,1822,7555,9933,56,9455,1677,6853,5555,6032,8297,5365,8317,3831,8803,3542,6568,1672,9092,1840,8411,190,6504,2227,1145,9244,6859,8314,4389,802,7628,6185,1406,3213,5124,7750,2744,3574,4882,7480,983,5248,6909,3876,4268,7660,3766,8197,3299,7073,2701,7285,9445,228,1755,6071,70,8750,1928,8204,1318,939,7178,9951,6981,9472,5729,6797,7200,9914,3134,3579,6073,983,6940,5412,6827,1866,451,8934,8435,6347,3117,3613,1732,108,1854,5192,7063,5413,8085,9502,5011,4935,2661,3407,8753,7517,1172,8911,8683,6999,4158,4296,4945,4996,994,6995,6316,5394,3886,7761,2325,7907,9327,9198,7313,9224,6286,445,15,703,3288,3931,2307,1114,2947,3159,9066,4240,751,9206,5077,8400,4218,8523,2353,3824,7130,5248,9275,9642,6943,9943,3481,2734,7760,3198,1029,7108,253,9353,9307,7745,1838,4772,7679,5321,6450,9583,8572,730,4430,6495,3284,7865,1089,5222,3666,8076,9337,6504,6468,5374,7921,5786,4184,2468,6872,6055,4233,5789,4780,5557,9731,9458,3209,4481,7725,4968,6997,1714,6862,4971,632,3668,9479,6520,6724,5196,5067,5621,9894,6840,9731,5396,486,1499,5465,3207,5371,723,2638,9553,6867,963,6525,870,5644,1338,8148,5803,516,8594,4536,5003,7329,1498,3305,5740,1353,9674,1077,3050,8040,3605,1998,5672,1882,2130,3655,6671,6323,1265,9072,9603,4519,8605,7857,1510,2266,187,7022,5250,3987,2974,2310,5813,4905,4285,5532,1397,8534,2056,2032,2202,7248,7744,2780,2955,1766,858,3369,1909,1930,8597,5616,1268,7453,2905,5119,5903,5537,5441,1790,337,4254,7193,6930,5401,8128,4367,9890,6623,6512,5922,8966,4931,7439,4531,7522,3858,5081,5507,9571,2166,1402,9219,588,8125,7972,782,6077,9797,1724,1374,2608,1589,9468,8761,3895,2432,5885,7684,3236,5332,6120,6157,8334,5740,2774,5353,4692,8256,9800,9677,5987,9220,2360,8999,1491,9267,1397,1635,4916,5659,3117,6094,8032,1683,9258,2533,9528,6465,6510,4672,5314,8386,763,5377,7310,9652,9317,6225,5307,5167,9425,8906,5333,8229,8313,2,380,1629,1493,6829,3161,7193,7883,5817,513,2742,7476,7392,9964,8366,7659,9795,4273,6530,4304,8414,4569,5362,1506,2695,4803,4551,7898,5965,6778,9125,5253,8388,5544,1959,6109,1061,5622,6618,5785,7672,2203,6709,2567,3270,5579,6585,7127,6239,9758,8971,7876,3930,6597,293,687,1222,5461,8060,486,6196,6304,559,9615,2121,8577,9115,6827,5026,1455,9838,4572,6167,9804,8376,9995,8309,9943,9690,5396,9876,3535,8849,529,9443,9754,5355,9992,3209,6854,8800,9767,1847,820,1562,9646,9520,6071,9616,8948,6864,8803,6272,7466,7479,5993,8978,9479,2995,7388,2794,6561,3288,9201,4042,308,6797,1133,645,5996,1449,9100,1136,9869,3787,5475,8436,9334,5005,8353,9177,2032,8963,8726,4335,8824,2374,4865,4367,7416,5931,4207,4127,4445,9456,2431,286,4358,2991,2847,4484,6175,5194,7203,2794,5836,8750,8098,1098,3632,2342,9651,4370,7716,5944,4271,774,5671,7532,6353,8908,5295,3096,5615,6585,2613,916,7030,1314,3132,7679,4213,6981,5263,5577,9860,1913,8373,9453,1055,5249,3286,5471,2555,1856,9470,5876,4558,4749,7325,7320,2233,1029,5129,2255,2227,4724,3468,496,1781,6224,9050,3310,5957,8773,7754,9222,283,9534,4581,608,609,8530,1126,5867,807,1671,6992,1900,5506,2403,6902,1282,506,615,5117,190,2873,7342,4183,8407,2972,7618,4234,4863,3659,9554,8523,9311,3007,8062,9750,3846,4424,6111,1911,4290,2413,836,8081,735,4916,274,394,8338,3151,604,6231,4577,3395,1324,8447,5470,6779,6379,7017,3594,1974,7427,5838,1508,3982,9955,7436,3367,2985,3790,2075,6347,4789,8795,3818,9800,5663,1785,2106,3611,9624,3742,2158,7878,4112,6596,5797,7827,2536,6561,8459,296,9796,5948,7602,479,1425,4324,4934,9307,2165,2565,7078,4085,7266,9177,5348,3371,4107,8312,3940,8679,3746,2040,6697,9200,2369,3401,4474,724,7616,1669,7934,4118,6616,5008,2697,1109,9439,5462,6666,7623,6857,9310,9675,1025,3731,990,473,4779,9843,101,4480,1863,783,715,5570,315,3522,2538,2350,1316,1636,9054,1511,1069,9018,8715,4584,6235,7783,2669,2930,3356,5703,8637,8372,2050,4757,940,7136,6725,1232,8952,1459,3229,4725,2058,4897,6471,2755,8915,4208,3933,2888,7156,7151,22,4913,8819,6978,5304,9747,4091,7297,5648,308,5934,5264,9068,1146,1384,1498,820,7269,6048,1221,205,9902,942,4193,8819,5552,702,2544,8803,9723,218,7886,5046,228,737,1,4050,4041,562,8564,6802,8251,9228,9906,8257,8050,5243,4,4098,5948,603,7125,4359,2044,5280,2834,2992,3428,2823,330,5391,4534,3417,6071,9912,4161,1212,1113,5388,2898,1651,3682,1875,3377,766,1746,1958,9899,8161,7464,4021,2143,5268,976,4603,6078,7084,9166,9001,1297,9785,3879,9790,4975,2431,1620,3929,3822,5659,8449,8853,9935,6807,6754,8938,382,6760,1128,971,3465,4433,5631,3001,2114,7527,2801,4192,2797,6466,7416,1713,4467,2154,2954,3790,3809,436,6061,1738,3214,7690,2186,1345,6353,3183,3242,696,1174,7696,5249,5351,7302,5474,2909,5591,5153,422,2710,2897,6660,4556,2186,5808,4792,8257,123,483,902,8972,214,9370,6798,4127,8268,783,7121,3490,2553,5962,6844,1823,7881,2818,5048,5704,1133,9652,9959,9512,9687,3395,2959,8211,996,1508,7669,7974,4064,5312,6766,5475,8317,8425,5906,3124,1074,4648,8046,8434,1231,449,9658,9265,7655,6547,1417,660,1501,818,2863,766,1379,2729,8402,9972,2517,7525,9629,9554,8783,3405,4672,1922,1041,1102,3324,1817,4189,4468,2880,2294,1003,2668,6436,2119,2242,7687,8847,247,6289,644,1202,937,2798,2,7806,4766,7152,3752,4493,5561,1409,6735,7951,6322,9875,1519,4514,913,8098,3461,9992,5658,8562,2917,7196,4388,1519,4017,141,2519,7857,4290,3123,9022,7687,4898,3635,1066,4231,3468,3984,2614,1008,8297,19,7872,6341,1313,7743,5346,736,3729,4093,7487,8269,9740,5004,5179,8044,3862,8414,9163,263,8121,4120,6848,5472,402,9387,8577,7481,6766,1206,2911,138,7651,1065,6143,8750,7383,4260,5194,1702,8266,6842,6487,6108,6533,2868,8325,9388,846,8343,5920,744,4539,9981,2117,5776,2335,3477,5554,9208,7555,3380,6150,4496,523,3712,2258,2481,5295,7221,6,5631,1160,7418,8577,4261,709,9849,1805,4041,6606,9809,1074,589,5727,357,2328,2743,4662,7941,4740,4578,8248,6875,7988,570,1569,7482,7939,401,6386,9059,3373,8622,4079,3470,7423,9541,3670,5047,3495,8244,4240,51,3236,9489,6156,3590,9248,790,7241,9023,2485,9108,6150,42,4949,4526,2085,7321,5345,5080,1334,1285,7568,2692,3087,2818,5091,5964,1872,7811,6093,3089,9971,9348,8633,4733,1225,4681,4736,6846,1938,7226,6140,6467,543,3203,3237,9876,1698,7026,3113,4077,8927,304,4074,8954,4750,27,9087,5176,1762,128,3973,2222,1456,3203,6884,3276,3016,2352,8554,454,8102,718,4741,5604,2341,3859,2846,4902,7990,539,751,182,7932,175,1167,334,5049,9545,4746,8138,3153,219,2721,4036,3459,7428,1270,7843,634,7841,4677,4181,5592,2821,4652,8111,2459,78,7351,231,1193,5827,6240,8286,9841,8734,632,9866,2073,1078,519,7156,6035,5576,9305,2715,6594,2223,3490,7989,9563,6089,3993,9422,3956,2926,4753,6658,7593,6933,6633,9959,8275,5666,2967,4931,3532,1801,6192,606,831,4237,6095,7132,6935,6279,7749,7374,4629,2848,3636,8875,5920,2050,1242,7358,3097,468,9023,8272,3956,1602,5949,9080,1788,4470,7846,6847,7663,2684,8564,6938,7285,2169,3370,4192,9485,802,1237,7837,6787,8487,1755,1863,8708,3997,8927,8000,5443,579,333,5718,6,7713,6307,6521,6924,8946,8646,4995,2811,4979,695,1342,4393,7283,8410,5233,8484,839,7954,6535,4513,3681,9336,5592,4063,8154,139,8837,5394,2472,5529,2329,7431,9846,1716,8152,8475,1524,7379,7810,6892,2653,9074,9489,2799,7815,1896,6884,860,3769,9763,877,6630,9281,3932,8586,1693,8379,7816,137,6179,483,4019,482,4772,8338,9288,5210,6352,6416,5691,5132,4219,1953,3265,3143,8587,1029,2880,7437,7972,4454,2037,2198,1344,8239,9482,5230,8343,2201,9522,8421,1720,133,9007,4899,3404,3582,90,5989,5233,1736,3274,2924,6463,1181,1655,6246,6808,2682,2736,1546,9595,9852,4784,1845,9190,6727,3654,6608,1555,9076,2537,9299,6449,1566,1529,9879,6341,1013,1662,1204,4275,6251,3983,2314,5874,1082,4634,9586,5796,3391,3363,3357,2617,9809,1472,4174,1828,9082,9259,4602,8245,2328,982,2510,7422,3872,1601,9357,2265,7377,6257,7168,1021,988,4054,2024,5819,8378,7221,5466,94,5857,254,5354,7787,4576,9413,7909,698,3398,3174,7633,7897,6583,5071,3485,6393,7390,8344,9105,5502,6257,6019,3621,7885,9447,8552,7818,3059,7103,1591,5202,8535,3578,7431,2432,5163,3492,93,9176,2028,9937,7530,8999,3256,8631,235,5546,9530,5335,8795,4126,2326,3930,5486,7331,7688,6130,1637,2233,8556,8350,689,2538,1908,9336,1211,7764,333,9679,6617,9763,264,7370,1171,5985,63,8799,9597,1096,1179,3509,7540,7258,9008,1543,5557,5615,8411,739,3544,7764,6446,8632,1818,6078,9794,2717,4938,1428,941,3056,7872,4566,9313,1109,4046,2515,3796,8629,3999,1200,5516,3334,5244,4850,3733,3009,1561,8745,9101,1269,1507,6845,9225,4955,908,34,7803,4899,5762,5447,5639,1195,7984,8798,5919,2764,6278,4060,3161,6500,2718,6194,7527,3278,8768,1334,4366,1144,7537,7028,9245,8794,2907,5416,6631,7203,3553,8242,1566,958,232,7730,9476,4155,8039,2601,4895,173,2072,8961,7926,7863,8933,6574,3113,3391,2958,3108,9729,682,5210,6810,6116,4285,6658,4685,2635,2701,7454,9569,1592,5445,3064,4409,3938,9408,7503,8012,9555,9757,5969,8028,7726,3113,8554,4606,6195,615,5245,6866,9013,8150,7145,6009,4554,8306,9310,8291,5715,2122,6250,477,6886,1271,493,731,1675,3462,3814,8213,160,4262,2346,4639,2087,6731,4223,7479,256,2139,134,8139,4669,3206,3331,1902,3742,797,8151,1650,3452,7676,2416,6540,6566,6802,6476,7981,223,8624,4949,6355,4688,5908,4962,9457,2402,8760,319,9033,7400,3777,4611,8976,2959,568,9332,9213,8661,6075,6498,6865,3082,1818,2502,3584,1443,4022,205,5185,4691,6642,9478,5133,1182,1838,5879,6420,8587,1360,3201,1991,3776,5699,3912,1800,6418,2645,8893,9905,4049,2882,7677,7502,8353,29,2222,4496,8562,7802,5279,80,8466,817,9577,6574,4946,3550,7772,4246,2449,4951,7065,6773,9719,8583,9431,4823,7404,1866,4971,354,2675,6273,6702,3187,3,8590,8183,4491,2856,418,6669,3203,1161,8786,6380,8502,8033,3033,1029,3647,8627,5267,6226,8737,2601,9343,4991,956,7859,8547,5199,4664,1083,5725,1213,5375,7077,5822,7601,200,5235,3784,5161,2431,1990,9982,7688,7569,6905,7389,8534,2169,8394,6586,1272,2047,9581,8460,8716,2928,1720,1285,1725,5763,3957,7122,255,4477,1615,7923,8891,915,9772,3007,7686,4543,1217,5974,9702,4257,3174,2316,4199,9907,1423,7499,9202,6416,195,1873,4638,7996,1017,3563,7200,6196,8889,8860,9110,106,4580,8864,2315,6753,2144,3746,290,2593,4992,3476,8327,8217,1682,8874,5586,3951,156,6456,4146,1996,7036,2590,62,9645,4355,8631,1094,1276,2827,8046,588,1042,8546,7935,322,2172,845,4275,7418,8155,939,1459,7765,3697,1373,8584,6862,2876,364,2904,5751,8576,4387,4404,4916,2569,9823,2480,6887,4019,1993,3711,7706,4972,9619,8488,5144,3447,2307,5991,703,4253,4105,70,2180,3986,9234,6469,2331,3948,9364,3023,7816,7371,7983,4557,4022,9304,8357,1488,4561,6618,432,3312,6395,9290,7917,6631,2598,5658,5898,2884,5380,9087,2251,1631,7032,8381,389,5688,9938,4058,9157,4426,2240,9067,4766,6664,609,1087,5213,1695,3217,3202,419,4569,4563,9765,8573,5941,7197,3020,1576,9124,6524,9144,3700,9550,5586,3177,8604,3984,4727,1032,5431,5263,581,8589,2249,8036,6081,2185,3989,1832,4552,852,5382,1055,9815,807,2935,1569,6840,4567,9360,3493,9764,5960,4518,7979,9387,5506,8649,3845,988,1044,7245,8576,520,7611,5018,6940,6343,5623,7817,5631,5094,5383,7810,3699,2629,6567,6665,7758,5175,3430,8316,9813,4677,1808,6689,612,7254,771,9472,8063,8944,8255,5931,3836,5779,6809,9630,5641,395,5727,3152,9982,1287,6756,9988,1296,6696,1677,6193,3596,6526,4799,80,9656,8744,2505,7774,5604,6976,252,5991,784,3523,6099,4471,3010,7410,2385,9773,9634,2167,9238,5524,8255,3721,1026,4410,9644,7913,7331,2869,8760,1603,9853,3469,2131,9999,6600,4810,3311,1688,4519,6709,6118,4622,7611,9599,647,9549,4529,3548,9588,6896,7572,9248,6957,9757,2831,6659,2329,9096,7154,9519,1003,9537,5867,254,160,1535,2680,7123,104,4425,4880,7401,5352,5520,522,470,7881,6985,9772,2790,622,1545,2084,4102,8137,8436,5770,473,8571,1117,3298,701,9192,1223,5765,8180,3506,7963,8022,9691,6333,6416,2600,9851,8762,229,5074,485,3909,6430,7038,3616,2498,3530,7388,2354,2516,4940,2909,3319,579,7488,4512,4582,3896,2727,2125,4747,6817,478,6934,3662,9779,5443,5815,8881,2368,574,9399,7300,2652,3094,7492,1107,9531,1651,2277,3969,8426,53,6679,9860,8442,187,3041,2420,8282,9643,6775,2632,3135,4486,4466,1615,492,3695,2442,1739,8102,8446,1011,1377,4017,2934,207,2806,3716,1929,3472,3857,4443,8364,1152,9908,9266,2571,6604,8173,1097,287,706,2363,6144,8812,6988,1710,807,4359,8830,7328,8026,620,8513,5768,5098,4360,8370,586,3360,7437,9836,9738,3547,4214,6478,7216,2917,4768,2167,4594,4364,9292,2316,9986,5961,5043,3198,279,1612,1367,9028,4384,497,3777,9254,3475,4229,8412,543,4073,5947,9503,9890,1921,683,6976,1384,8632,2732,1355,1077,2454,3379,5160,6202,6776,4331,755,7880,8746,2250,7773,8051,4207,4638,4345,5820,501,9049,1363,1442,9441,9899,7787,7119,9365,309,3466,4493,342,4734,4440,928,4913,8703,3381,4795,6354,3738,3477,311,9688,1427,9009,3599,5457,1005,7181,8069,5195,3811,5978,8079,8849,6121,7044,2530,8589,724,2456,2971,3281,4707,2595,2035,1379,2580,8544,8749,9750,8221,2583,1158,1473,301,860,2737,3092,1020,2080,6931,9716,1720,9700,758,2475,359,999,5127,2853,1215,594,5195,2714,9863,2946,1303,7474,914,4404,9167,1415,8978,6225,3819,1092,6364,1739,5137,1174,5101,9933,436,4426,7019,7774,1349,6536,4723,3724,5774,6902,4711,8035,5154,5199,8843,3225,5164,7031,7984,8297,680,3490,7767,8494,9558,696,7329,6587,5877,2092,6295,6409,8853,8633,7937,5086,4031,2293,2669,3918,8045,4192,1135,7520,6557,8593,3369,9471,7984,777,4317,1820,2086,5813,3331,4702,9387,1394,3958,6266,3280,6550,2455,6828,373,7701,8328,487,8132,8643,3891,1860,7490,4999,9123,656,376,2408,6541,9477,7719,9204,9347,5863,5025,9007,4881,8811,7387,626,5494,4629,4448,7836,3044,1106,317,5777,1162,5566,8079,6420,7174,27,6717,3570,3414,7285,1898,7509,9919,9925,9158,7498,2917,5883,141,146,7444,9869,986,5713,9767,5893,7589,641,3730,793,8121,4745,4428,4780,1208,6816,4938,731,3818,2304,168,853,8584,5791,4582,4867,9325,2728,3372,4027,1784,6432,1960,8374,9396,3437,4720,8597,960,1134,1689,421,8206,7486,3149,19,3575,3953,2063,295,8743,9058,4685,8800,5044,3466,7203,2790,5052,4780,1439,2113,1600,7720,6675,8389,5194,5418,2414,3347,4999,9295,973,643,9368,703,6571,1811,9525,77,6772,2661,1664,2401,2056,6385,7695,4966,7913,7261,9700,6069,7954,4831,9225,3278,2371,7732,5763,7710,9616,6625,128,6157,626,802,9616,3518,5788,9107,9061,5685,4289,42,9144,6739,3722,9109,7663,3772,7773,4660,9768,7242,1617,114,2864,1820,8536,1465,8580,9636,9218,9358,1507,8805,8270,4426,3728,2128,7203,6995,1133,9286,679,6977,323,3898,9185,4270,4003,632,6172,1652,6978,2775,5891,5042,2359,1870,7650,7002,2497,5078,9669,3149,6167,2725,9130,1130,180,9537,7844,9192,579,6216,1856,3588,7070,9981,421,3949,6914,396,1345,290,7378,4944,6151,2852,4329,265,9324,2084,4861,5466,5998,5648,8254,9185,8857,725,8011,9448,1798,1401,2380,7582,303,2872,5193,2690,8152,3146,147,8939,1778,8110,8192,2548,7061,7198,92,6758,2212,6169,9591,2787,5139,5393,5482,9795,2653,1646,7681,1495,3662,8360,6448,662,6523,128,2183,7566,2842,2838,4548,9555,7753,7023,2201,2281,2027,211,3082,7268,6467,3720,4187,2582,1790,6626,1338,8868,3096,5711,6717,6707,3494,7939,206,608,7827,5030,1311,5487,7913,1392,9470,9295,8499,3053,5514,1873,8496,7064,2215,3653,5365,519,7001,5688,1281,6749,2047,1793,3472,2634,6207,1005,6071,219,4123,4137,4032,4035,5265,2974,4918,5104,7032,4597,2430,5864,8255,7580,6392,503,672,342,4957,4802,387,388,8468,8073,1784,2477,9346,5770,9426,4104,5069,4251,5580,2698,4143,9250,4979,1764,9389,5840,2950,535,898,8577,9307,2086,612,8278,5369,7160,9608,512,3035,3691,7194,7027,4931,1168,6387,1317,8821,8441,8132,158,7843,7821,2204,919,7294,599,5407,1861,7550,8355,773,1808,5246,2348,2530,3350,2330,1712,3625,9873,6618,3388,5719,9157,6352,6351,1358,1106,5052,2682,3199,2037,2664,1237,8737,8597,9581,6773,4839,8216,1037,5962,6633,2736,3404,5627,9639,1649,5954,9125,5342,2202,5231,2507,7004,3561,4191,7901,2269,4548,4548,4056,9659,4129,2306,7994,2832,2241,3980,2699,253,6276,5794,1742,564,5738,7256,6779,3043,7817,6603,1683,4086,3108,1235,6803,4293,8586,9635,1734,5383,722,1528,9005,1753,4093,7551,9695,2360,7496,4928,9835,9870,497,920,2363,1390,9799,8010,4834,5929,338,4646,4481,8978,2846,2674,7994,5598,1135,1795,2190,1578,1089,1598,4726,6854,1437,7696,6556,5527,9188,2196,241,1001,6350,9767,6151,4100,9611,3788,3362,6847,1671,3335,2567,8840,2600,5516,520,7038,7766,2070,6341,726,1333,764,6781,6505,5908,8145,9793,7903,2824,9868,4542,9749,88,9467,8040,2379,8443,2924,9927,5361,7924,9453,4377,4261,1930,6920,4214,5997,6585,6150,2508,4084,8878,80,8454,9106,2143,1611,6895,7579,8362,3203,9208,1197,7783,1137,4237,8101,6525,4631,1447,2623,5987,5886,6321,1506,1699,3220,3230,5348,2600,8815,7590,4496,2690,3429,70,4522,4081,7568,9220,7611,3694,885,1579,8065,5400,7571,961,9285,5485,2879,2613,4383,1265,4748,2279,5175,3092,9683,6534,5938,6155,2976,7524,3985,712,4361,4838,5926,2665,4121,2784,7472,3529,5286,4859,5372,4703,6077,3147,9879,7820,5854,386,7180,3273,5264,1466,4973,1446,318,7643,1580,8769,6269,2482,6335,8087,680,5886,5119,5280,3436,2515,1248,6333,3840,9993,6988,7627,2315,7271,5065,5318,2308,8937,8587,4113,9930,3195,1238,2,3524,5311,1624,8901,9555,1617,7104,6946,2124,9294,5899,7590,3466,5555,1698,714,9872,1889,5197,9919,7596,3421,1760,5788,3570,8358,5380,4252,3849,1422,3017,5562,3955,5135,8570,5491,6026,7650,2084,9738,2712,3379,532,7133,8177,5268,1566,6082,9113,6522,7034,5395,6749,2429,1520,2871,6215,5433,7566,8879,6793,8363,1226,7495,2361,5909,2815,4682,8139,3830,8201,2749,9363,2857,5547,2334,2619,4068,7352,4438,4755,898,1900,9160,2610,1908,7705,4150,1357,1356,6176,5888,8543,8221,2234,4212,8006,9808,6386,4114,1426,8177,8337,1767,2430,6538,6857,1148,4025,3335,442,9047,3024,4205,2353,7930,432,9089,6553,3726,4933,8870,6831,1972,9621,2935,3920,9296,7861,7670,318,6371,1506,2010,3137,3898,39,5458,9609,6496,7211,9675,3969,4029,9066,2184,9963,1631,2550,6699,9781,5106,7805,7572,8379,1460,4431,6289,6554,4787,9095,5560,8074,4588,3829,2216,1971,9533,1256,166,903,7056,5854,9096,4948,2811,756,1473,5058,9633,9916,8460,730,9593,271,4791,1916,4862,3161,5581,5061,7691,4,4125,8340,5873,8639,9293,7592,8775,3745,7922,1572,3501,3657,7862,625,1600,3025,2923,4427,1875,10000,4177,2262,5023,3228,9371,1413,3709,9121,2134,4406,5775,5956,8940,6970,7262,9146,5415,2203,3747,7849,3768,4580,8289,6938,2272,8540,7384,8866,5247,2127,3287,3849,9878,3778,5042,7525,6495,6595,3331,6136,9564,9409,62,5959,9552,2028,990,4569,1538,8826,4648,8289,946,4736,6635,8613,3189,5852,6991,1358,453,8508,5614,721,9784,7659,1448,6209,6627,3633,4275,7320,5554,3127,7806,3851,4488,9347,7385,3618,3135,902,1011,8218,6048,5730,9705,4094,5446,2717,389,7615,693,1112,1918,737,5623,5994,4630,9521,5637,1968,4159,9946,6852,3414,7753,9856,8564,586,3049,4556,58,6016,8634,9605,5959,9741,5689,1931,2169,7701,7847,6076,5211,7436,4235,6905,4558,9535,4237,1958,8843,4198,3935,9742,8375,1920,4622,7689,959,6118,6904,787,2000,6232,4191,7592,4657,5789,1543,8203,4393,9187,4886,5055,6807,7976,5403,1177,1915,4742,8346,1972,8624,4140,4763,1850,6828,3045,2859,5753,2294,2274,6059,9140,9490,4904,1168,4920,3385,2003,1367,2477,2573,9277,2565,6531,6979,850,3353,7228,6315,7825,8127,5314,3863,1638,608,7706,8303,6048,5910,4629,877,3168,682,5865,2176,3392,6367,7785,4914,1761,168,9846,6399,441,3966,9276,3817,2455,3967,3128,5010,1302,5335,76,911,4482,8504,7537,9665,9104,8132,9605,374,5954,2278,9995,9639,5687,8835,8215,8292,6340,6190,192,4577,6101,1689,4929,9789,4806,9630,2215,7765,2297,7810,6482,2028,4816,2653,6107,3003,142,7079,600,2796,8659,3933,6782,270,8087,8942,3473,4815,4138,7674,4250,9582,1827,3151,1280,3015,9789,7289,3620,975,7991,6467,6642,8170,4705,4560,9300,8051,4150,4707,8918,120,9653,4476,9427,9103,5375,5248,8373,1511,2726,4089,8771,889,2328,920,3991,6415,3175,7318,742,1262,3327,9654,2247,8954,7840,113,5819,6370,6199,2747,3825,9031,7561,6660,248,692,3585,9413,9020,1463,2878,8324,4949,6069,4535,9562,4494,6190,2834,1558,1407,3493,2158,2396,800,7436,4596,3819,8468,1604,6209,1731,7029,6416,6433,8006,5627,5005,5789,5496,5519,1576,6311,3440,9913,2389,2945,9185,8770,1055,2094,8722,7070,1344,3775,5008,1174,3573,279,875,5157,1676,1243,5336,3875,5707,828,3519,7650,3940,3443,2053,6298,848,8667,8237,3954,8505,800,5885,3552,995,8609,443,5236,9091,159,6046,8689,3527,1991,3437,1388,5022,8288,9920,8928,2254,5562,7206,16,2210,8305,5784,9058,2303,9152,4287,3762,6912,6731,4971,4746,8417,3191,9267,1074,9436,1292,2943,5897,1778,5952,7866,1378,5524,3307,5647,9444,5566,518,1364,3448,8281,9345,2204,8805,5907,1390,9833,6905,437,4027,8396,863,69,7997,6467,380,4453,7861,1104,7898,7351,7914,8444,2160,9453,6575,8932,6021,5418,957,3118,9674,169,8171,505,9019,6340,2824,10000,8635,7493,2293,1852,4222,2519,4072,5741,5838,6043,3344,7073,7658,4785,3771,9108,5856,1913,2775,6983,5111,942,5685,5688,6630,7555,4908,4371,552,4955,5175,7055,4393,4646,3334,1319,9515,2705,5520,9394,8628,6938,6242,3806,9022,4337,2510,4157,717,8885,3099,9162,7329,6693,1383,4623,1548,7521,8713,6218,4477,7865,7018,4211,869,2152,6368,9713,1184,9394,9774,290,1442,9140,66,6989,7033,4462,8756,7210,765,6374,6017,9133,6803,918,8259,1226,5371,2130,3410,2875,822,4112,7327,4925,7120,5307,467,10000,9106,6996,3727,4240,3011,1535,3102,3549,7275,947,9558,3616,2284,4247,5792,2212,4104,5556,9082,3633,367,2250,1482,9320,3564,6591,1425,9777,4810,3279,732,2840,2120,6548,2529,8208,3616,3901,2599,6499,5848,2889,6116,1346,4817,9044,6999,7986,2633,9748,75,4233,369,6158,4257,1204,7901,9113,7506,4559,6792,7323,9308,551,1106,2712,3371,1030,9822,4264,9210,5040,8701,7397,5043,5196,5466,4461,9611,9801,7474,5019,8449,7504,2587,992,1435,1804,2200,7666,8859,2076,8274,6895,6029,2269,634,3083,2910,6920,7710,9481,4793,7423,664,327,814,1648,8624,3999,8889,9066,5455,2908,3666,1046,8598,2672,965,3805,4381,2468,5879,9409,403,2983,8208,4548,5878,2965,1407,1505,8183,8028,5617,9713,7931,1138,6335,539,5975,9393,6693,4766,4099,4517,5374,9700,3440,9377,6253,2359,197,1999,6933,9807,1719,9807,456,8814,251,9620,2052,701,7978,451,7680,463,6875,8961,6742,5222,1527,3588,5902,2984,6738,6050,4395,8009,6436,6040,4274,1222,2209,394,8538,9548,6752,7357,5846,9835,9296,4669,6247,8304,5240,365,9464,4780,3503,7549,3209,1046,9362,5127,3845,8842,7621,6140,7147,4948,7294,8599,7269,4558,4667,4143,547,6478,867,4986,2916,576,6409,2533,4003,2334,2336,9379,4271,9530,2697,322,1623,5074,5076,2192,7155,4543,4416,9605,2083,3174,5313,6382,1481,6520,3908,6549,6419,3918,4412,3603,2666,6430,8033,8481,9969,5169,4101,1497,4513,7558,7738,4005,9821,9908,8639,4386,8608,8709,1116,4353,7219,738,3834,5990,34,1381,8812,1205,1494,21,8730,8963,1340,8872,5062,8602,1142,9490,184,5296,8871,8379,7031,9268,5051,5876,1298,2513,7663,7248,7099,946,3506,6311,6374,8056,7618,9494,5564,2068,3604,9353,1986,3352,3366,7845,7095,6090,9864,9487,3414,4618,8870,1354,3724,7250,6472,9636,622,9915,7246,58,6859,8603,1861,6860,4243,982,7837,2198,8616,5423,2037,5301,3605,6241,5310,6766,3826,5609,6112,413,2835,2843,8619,4494,7910,5107,7946,9774,155,6752,9216,1390,7132,3464,8730,2147,3533,3010,3081,928,813,1754,5155,7451,4770,3054,1542,9068,1934,5599,2665,5557,9304,9655,982,2031,7802,9419,7541,7173,9699,10000,3481,8030,4782,6818,8323,3938,8116,5586,8199,4739,9823,2700,2883,9338,1937,2215,3428,8627,397,9341,1494,8648,6334,2154,4103,245,5940,9029,2270,3169,1341,3896,9324,1949,6612,5456,1371,1656,7834,5975,7755,7298,7673,8690,675,8988,8704,4436,9542,4109,7442,8475,9445,4295,1904,3010,6811,8338,3061,9275,5470,3339,2703,7704,644,1715,879,3638,1888,1280,9612,8153,3684,6976,3042,2441,8514,4009,7189,6020,224,5081,2915,1196,3756,3323,4215,8419,404,9161,6812,690,8187,168,8099,8685,9959,6430,490,7000,3360,3006,5217,2480,2274,8593,5040,4102,354,4359,2389,2404,9459,5435,2402,7867,1774,4701,6438,5733,8980,9034,9998,4268,5110,9924,4172,6672,3436,105,8106,7861,9278,4122,4083,6144,745,9883,9378,8568,7579,7797,5163,7970,4715,194,32,7934,8907,4695,4367,3080,9401,2059,1709,1945,4548,5116,869,9427,2606,2998,2988,6757,8318,6875,4803,6729,611,9713,9907,6509,240,9868,2962,5232,2910,9154,6544,5482,8905,5900,1728,4642,385,345,6475,2838,8623,1293,3310,1399,8648,406,9860,9234,5635,1008,7166,2201,2652,1059,3211,5021,3666,6959,8265,3464,4355,7361,143,8382,4262,6330,1092,3863,4823,3189,6483,2824,234,6176,5976,555,4217,6018,6363,9413,3713,6031,8648,234,1414,1673,6269,5601,3368,1756,1428,7270,5681,5234,1467,7864,1337,6000,7462,755,332,4565,5129,2929,3985,4606,9069,8992,2057,5222,8784,930,612,3949,6462,3649,3899,2897,2123,2664,107,8418,941,9884,5516,3156,7692,2662,2767,2134,9067,2662,6412,6589,9070,6830,8166,9499,3736,9703,3604,9185,4977,3319,3686,1590,4737,669,9588,364,2977,7078,5511,3721,1372,3080,6759,196,1269,5696,2458,7335,4610,2344,4124,7155,2078,9693,3436,9300,8633,7469,1789,161,2889,600,991,4715,4282,3122,2217,9911,3649,3196,2152,3618,8790,5138,9780,577,1981,5370,1295,9332,6570,1351,9955,2899,1908,5499,7100,3535,2248,4858,4364,233,1163,7092,3912,1745,322,8456,4033,4311,4404,8164,8561,4056,694,6691,7856,3793,550,8582,4414,8111,4917,7826,8846,1336,7200,8443,6229,8488,9569,4648,591,4229,1096,753,2850,7122,7901,628,2973,9589,1793,1032,6658,1644,1231,3334,4576,4207,9476,1596,7354,2163,7936,1499,1099,6493,8588,9718,4522,5310,8870,7905,265,5906,4381,7547,3396,5998,8764,7115,6927,1645,3472,7903,5282,2590,7914,4854,3704,8706,7225,3955,2640,865,3106,7828,9536,9566,8488,1488,8575,2979,6050,4751,1177,7832,8435,6879,5129,8826,8370,9831,1913,4019,1738,5487,2477,4140,1643,9145,1502,7604,4559,3191,7109,9468,9767,601,8461,4857,8380,7142,6458,4606,2282,9552,5951,5540,2440,6374,5440,1074,1543,6823,8139,408,9047,9971,8854,6096,2294,8763,3327,1065,7389,5224,9793,8264,4733,8571,6158,1983,1261,454,6187,8127,1096,7663,9537,484,1053,9205,2335,3212,4551,6039,8737,8275,7544,8364,6315,4571,6291,9032,8624,8671,1732,5157,7867,8133,4831,323,9610,4526,4660,72,7936,8277,260,2677,1990,396,238,1037,3594,7199,2330,2680,8385,2474,1627,2193,2635,9360,9691,9408,2698,922,9170,862,7716,4885,4992,2978,480,1824,1563,6651,1702,4305,4887,7454,136,1689,1457,8166,2578,1206,8511,1801,322,6724,6986,1441,1233,6715,8826,191,9700,7660,7925,7399,5393,8607,1167,4332,5034,808,539,9906,7399,7616,4972,3411,1985,2018,1992,4376,4273,1697,2901,4723,1648,8243,1445,808,6797,4790,7623,6601,3253,7590,5534,6300,1412,4049,1042,3172,4268,6487,6637,1616,5607,4400,8601,7234,9857,3693,6876,6814,2834,7332,1933,4226,9151,4154,7851,6085,2424,5784,1268,4308,6340,4125,2445,4386,390,7741,8097,7915,881,5164,6822,6999,4249,5778,9163,547,7216,906,6314,6286,4646,1641,7381,6926,2650,4266,8335,9362,3114,8980,8819,211,9179,2139,2322,3278,5595,7491,9548,330,4485,6876,374,4436,780,8365,6932,8607,361,5881,3055,726,7868,3094,7967,7053,8069,5734,8834,880,2068,2465,5770,4305,8086,2698,6905,5482,1512,5000,1537,248,462,4327,2407,3571,275,1791,6308,1427,2070,1231,8145,8994,8007,728,5778,2581,9726,945,5754,9102,5987,8620,3248,9992,4582,2871,5623,9993,140,5424,1191,4701,9268,4131,7781,3136,9787,1010,3312,5410,6330,3387,6951,9645,4192,3703,4918,1327,2082,2104,8865,4043,4450,3631,2211,4720,7475,8829,7211,3875,9437,497,4340,88,817,8807,3059,6249,2756,629,5748,2949,9783,9602,4243,4201,2484,3045,3945,1661,2171,9214,2882,4986,2091,1130,3635,7749,9259,2379,5484,3638,5932,2806,2706,3948,4403,8320,9953,4169,1271,19,2078,646,1085,1404,9101,4199,3453,786,4101,6820,6157,7368,8836,2170,6341,575,349,7094,744,2342,5120,3113,6402,6003,2006,8010,8706,4844,2204,4219,8980,5561,748,3561,3450,4509,3906,9857,3159,9156,8490,7134,3504,6905,222,7451,2549,8677,2453,3342,796,407,1497,9966,9844,6727,8946,4770,9656,7176,9139,9743,8830,7696,1820,5251,2153,3497,7203,3484,8362,9635,7158,633,2833,2233,4332,7337,4359,7942,3628,7010,2036,5687,8467,7908,9051,7991,8788,9359,4938,7210,9902,3100,9579,5420,3281,7791,7139,3612,4710,2560,1557,7798,4185,6606,2160,4306,2770,4953,4335,6886,4306,2970,7256,5836,2451,9876,2541,9273,2103,7147,7046,4272,5969,1205,4974,8110,8118,4691,1669,2553,9763,7184,2554,2523,9480,4699,5867,3846,7590,8602,7500,3231,7228,2096,8184,4955,6297,1627,423,1359,8952,2220,9314,2624,3077,9850,728,3017,6425,584,6391,1377,5284,3928,8989,5034,8767,6665,4615,5898,3900,2806,7691,278,5414,3639,601,7316,9730,1433,9158,9993,1537,8971,6476,6447,2160,6481,9169,2189,262,916,6359,6309,4185,5427,5207,658,2244,6192,8396,3604,3656,6375,1001,4226,7240,3196,5750,8235,8147,1112,3142,1805,3663,6424,3133,3376,223,1898,530,5916,9101,1595,8364,1845,4314,6132,8870,8147,1212,5127,9353,2279,5263,6111,2336,8367,230,4203,6800,6943,1263,2007,304,3871,2000,4778,7671,2353,3661,2951,3958,6239,3007,4166,828,1715,8546,6744,4482,4515,7274,714,6741,6892,2011,3686,5361,7586,1570,8703,8362,8391,6642,5367,3860,736,8016,9694,5325,4591,3048,7511,2760,7776,7869,4225,2631,1629,7832,3322,145,9546,969,855,4871,4240,2501,3553,1547,3719,3364,4908,2343,3351,8988,9019,2572,2155,9917,7896,5259,2921,3594,4774,8122,2903,371,1716,6978,7027,9635,6120,7645,8794,9859,1743,4478,4365,8506,6971,1611,2537,6072,7160,8332,3887,9742,9589,9986,5799,5214,808,5810,2720,2979,1174,858,6841,7327,3324,2926,3734,6516,2356,7098,3565,5442,3250,1041,9346,6219,793,1061,1353,9324,9695,1646,523,8683,3319,8343,3248,9998,2297,4280,187,1354,6132,7882,3675,9670,8087,8504,7387,5154,7718,4819,2087,2419,7988,4647,8353,7392,7438,8557,9218,7761,7186,4463,3649,4516,2735,6250,1076,3808,1183,2675,6067,9328,7615,2657,5176,4592,2952,6460,821,8029,5712,1301,2725,4655,99,1571,7815,6015,8949,3767,5471,4339,8972,2909,7060,7486,411,6696,9856,9533,9431,9809,1597,7839,3203,7100,5227,9632,984,93,2478,3260,6026,9818,4975,3676,4890,3057,2640,7627,7132,3592,6168,362,2510,8577,1741,7937,8130,5746,9360,1648,2215,4610,1408,7408,6385,2044,1643,4180,2714,5314,2707,6336,7062,8849,1279,4999,3206,6872,8595,6196,7272,8386,9099,9693,966,6738,4522,8437,3434,5806,7591,4411,8148,1511,9905,705,9665,6988,2644,6227,3588,3495,7161,6896,302,7399,3846,6122,1967,4076,9574,7442,4343,2880,3630,1169,1920,2206,9897,2415,2339,6617,3777,1500,6963,8639,9079,2675,7151,3519,5881,4798,1177,9154,3493,5216,1798,558,9055,9047,2299,1426,6743,7226,7898,4309,8259,6357,3421,126,9592,2637,8185,1958,8352,3944,1788,789,4875,8587,3699,5445,5662,9552,8961,5947,6867,1926,2782,1706,6757,6745,1812,4431,907,4745,6852,4496,17,9793,3555,8690,872,2366,6781,6725,268,791,6534,129,3699,8490,6594,181,4145,3791,1235,5740,2899,6534,5539,2781,6581,954,4035,261,3952,5696,8130,4082,1035,9938,4025,2834,5296,3011,6190,9779,2031,5247,6297,6005,4607,7214,1034,2282,9245,7598,5402,9128,9891,9875,9588,1339,3879,9925,9628,9218,9250,1110,8015,6415,2745,1348,5211,1704,7155,3934,7319,5415,7569,6544,7746,4021,6340,3382,1208,7087,8869,5790,9274,6945,4283,290,5712,7844,2508,41,1473,5825,3168,8176,9282,5234,5875,2803,2222,1123,5250,3519,5313,2211,1501,4934,509,5959,3602,8200,6034,2884,984,494,1067,8648,4011,1249,3905,521,1935,1110,1859,4251,8296,3168,6737,2862,2432,6023,8845,8590,7118,9435,7491,4521,4813,6356,8720,9927,3382,7795,6075,4341,9544,8329,4058,9103,3501,5785,5627,4434,8664,1119,7823,1491,685,4058,2406,1006,7427,4358,474,3354,4764,2523,7707,3470,1470,2348,4894,6361,3589,1996,5070,7164,9641,2305,2699,6471,4751,4230,6624,2814,2968,8770,8,2881,6051,4969,7994,5797,6265,7738,2365,2337,896,3293,7400,3027,6384,4685,8680,9686,9289,5726,9737,7658,4698,5441,7380,6297,7768,5551,1443,2090,3043,9700,269,7160,3853,5939,9071,4161,6947,1116,9750,2104,7851,3875,3018,2925,117,6239,3244,97,5169,5592,4513,9051,3172,4929,9449,8088,108,5721,1893,7915,990,2188,2730,800,302,3782,2370,8791,3866,1966,5656,6356,721,7590,6855,9572,1083,2384,5918,6337,5810,4268,1601,6861,2092,3431,6699,6810,1678,8466,7598,1645,6183,5562,1766,2211,2035,5324,2725,8624,4364,5267,2582,2568,5233,8910,4843,4199,5273,4498,5632,2696,4721,9411,777,687,6066,7719,1304,5277,1195,7286,6891,529,8353,6869,1696,244,308,4391,9598,2442,3999,9911,2579,2292,4579,7323,40,3166,9403,4696,1789,8000,5146,9242,2301,4742,1380,1808,1908,6101,9942,7229,5227,2916,7664,5834,8275,9327,756,4700,4740,2390,8714,1586,2007,8620,8265,1747,1446,7057,4180,9334,290,6375,7850,5725,2852,4359,7908,9414,8978,5277,7265,1881,3501,986,9265,5966,9624,2866,406,5605,581,1220,6654,826,6743,7522,4549,1029,3834,6268,2556,6156,8015,7903,7874,4392,3417,154,5628,8269,7195,9345,5363,275,4169,7966,5703,7736,2451,7619,2324,5808,3522,204,2954,8269,3324,8839,7241,746,4548,7415,488,7690,6127,3858,693,6697,6612,9107,1274,2686,1571,8717,7854,5251,4911,4083,345,5000,1502,7154,9566,1666,8167,7739,1992,6611,1908,7276,9115,4299,5294,7463,5583,4958,601,5545,5984,234,3281,776,7099,8467,736,5712,1941,2241,453,772,4349,2347,4094,9325,1256,4597,7210,2405,8711,8177,9507,9311,5067,5547,3627,5211,1295,7261,2107,2664,3200,7164,6732,9986,1192,7295,3169,8559,7879,1286,4213,6232,1862,7416,8544,1023,3278,7299,330,6801,9235,4707,5368,6026,2961,4279,1227,2366,5235,2810,8878,8711,7188,884,1553,4432,7816,1544,3319,7683,9502,9589,1502,2037,3021,142,7050,8575,5647,2079,3189,4016,1145,9380,9893,9530,4573,4558,9297,6630,2430,1075,2278,8255,4766,9446,2427,333,9023,1325,8679,4480,4230,76,3742,242,4015,4621,3665,9944,5206,7449,4988,9745,2255,2314,202,7699,7056,1937,7630,7851,9470,2845,8895,1258,2679,3885,4242,223,7655,3764,2715,7046,8325,8617,4702,1846,5126,961,8876,3067,3046,1370,7426,7717,1084,6966,9642,9160,6111,6051,3269,5734,477,4928,9803,5218,6083,4928,2747,5730,7226,310,7842,4196,7973,7076,1912,9316,5036,2245,5688,7662,847,6515,2797,3110,3523,3593,3677,2489,8105,3248,8266,9776,2515,1738,1897,9675,6126,4017,9906,9491,8834,5143,3027,835,4354,2000,8790,3895,3559,7824,8281,3809,2169,9952,8135,5029,3473,7830,1378,4524,6994,8987,6689,8421,6175,3962,9652,6086,5862,1491,8419,657,2157,6204,1202,7103,1841,4895,8200,3728,7391,4577,705,8346,4367,1349,2004,8699,2336,4779,8414,2723,9468,9512,2095,7714,1049,6433,8592,9886,3079,5715,8661,8772,7792,2560,665,8542,9528,8475,1629,6645,6832,3199,581,4852,1637,6358,2527,5075,2402,2911,3339,1744,8799,8741,2410,6981,1923,2347,7878,4355,2237,6673,1348,7525,8308,613,4659,8509,6890,4538,1132,666,9606,6552,9306,5620,8070,9766,8336,7802,4678,3890,5106,3010,9153,1334,8905,932,1414,1392,5053,9571,7667,4517,7172,4922,8794,2220,3244,2888,8748,9810,3420,2148,8624,7412,8238,224,9374,1317,9936,8475,4416,1056,3985,3851,2968,998,999,2166,7475,9892,505,9931,1346,3152,1328,2142,6938,6819,1142,2363,2193,7783,3057,1291,3457,2239,7138,5684,482,918,3120,38,9972,7796,5102,5499,5145,6011,4955,6256,6781,3260,6827,9262,7930,3836,5074,6355,5860,4971,2621,3162,3508,769,4484,1365,1165,3138,7415,541,7554,5946,8650,2673,9976,2429,803,7653,5325,7014,7558,7896,3051,582,7296,260,2019,2193,531,4987,6402,5942,1693,4002,5764,491,6617,499,3590,118,1112,1726,9215,4617,7312,4579,7964,8881,4790,9148,5189,3821,7378,9063,2472,5762,9333,1317,2387,1950,4586,3649,303,4071,3746,2257,2976,550,3382,3086,531,5198,4130,1965,9326,3238,2279,5137,3871,3526,3384,5592,2884,6197,1785,3242,7383,4339,9676,9652,8785,3605,1372,1424,7304,6867,2737,542,1785,5974,2008,3257,6725,8396,9632,1447,8783,7478,7852,8822,9835,7029,2696,7605,6313,3756,3170,7336,3303,1782,1586,4453,9135,8610,8339,9974,4694,1227,233,2266,5672,9385,1965,850,2730,2468,168,4453,713,3147,6796,418,2,6986,3748,9991,6399,7727,283,8077,1042,741,6088,6748,104,9418,520,9034,6842,6950,7134,3097,1257,1398,5683,7569,4649,4105,2208,3573,8316,8472,6070,6698,6515,7977,1394,1386,967,4785,1509,1329,9210,1690,1289,4641,7178,2754,7703,1054,4389,8096,9407,827,9421,9279,3055,6106,9251,9254,3294,6602,4084,511,4223,8458,6244,5205,4742,599,9167,8010,5385,298,5121,2526,418,7944,3029,3074,9539,8571,5501,8991,2737,5677,9170,1416,1803,3978,8864,3365,8034,5975,8807,4192,1098,3355,6153,4841,4092,2213,7872,7841,9105,9205,7511,7614,2064,438,416,9208,8801,712,8215,7290,7030,2265,4284,5608,4852,4878,145,7373,1621,5734,7703,5098,4462,269,7519,7041,9650,4435,5599,4896,4513,3386,6182,9078,3843,7129,456,5865,7661,239,6759,4950,2553,7866,2292,6273,9611,4687,7083,6772,4260,6933,4325,828,9516,2313,15,8330,6305,2069,4947,9105,7544,163,8635,8642,2362,4695,4910,2441,4452,7940,987,1633,835,4372,7135,6186,4842,4580,8672,310,9818,2051,5198,309,6036,8749,3313,5296,5350,5624,3614,5267,8004,4578,4036,2407,5936,8866,1442,189,3627,2884,7752,8808,1,5517,3700,8936,1320,9719,8713,2880,4524,2808,1085,5216,8654,6400,2041,6865,8787,7069,3076,4884,1215,4493,4551,6699,6804,192,2488,9523,4825,7826,5024,3506,3060,3869,5341,4578,3357,893,3767,8939,7925,5153,9220,8968,439,1291,7800,9175,3666,6119,7161,4564,4393,25,8748,334,7611,6934,1138,340,8596,586,6232,5096,7699,8257,8925,8957,5998,2718,1332,9735,484,8690,5248,5224,8715,4172,5658,5243,4786,1281,1035,8158,5528,799,6080,8207,3309,312,4449,4633,8322,7991,2803,6828,5368,2625,5800,5328,3784,345,9413,653,4827,8994,6777,181,8243,970,7738,2082,5599,1532,3141,2110,2925,471,6753,5528,5846,3814,4606,1706,4188,1139,3756,2510,1540,5773,6371,314,1855,1118,9761,9453,9164,8572,1940,2515,1766,118,4755,6926,5907,4661,8582,2663,2557,9623,5650,6399,9886,1680,9992,9807,6375,7060,9745,4717,9138,2695,6958,8806,3341,6364,3959,1858,3075,8008,8730,4864,8253,953,7074,2657,9446,8964,6537,2420,9276,455,4397,9212,6612,3889,7311,8182,4134,7241,3767,3945,7319,6087,1442,1466,5572,9075,866,5096,2390,8134,7653,6873,8042,3877,7900,9968,2028,845,1419,1717,4075,3580,7731,7312,4293,2703,8752,9027,8413,8258,4475,3013,7666,4155,3180,506,8953,6054,4642,3694,567,6696,9128,9118,5958,733,914,4528,2804,4386,3715,3624,6659,6198,8568,3307,8463,1740,2052,7279,7678,1713,8297,2609,402,3471,8348,7429,7628,2544,6760,3460,4588,2672,4112,4865,9313,5919,2396,6004,2379,8152,2051,912,2966,277,4388,5581,7519,5445,9590,6640,6254,2035,8555,3233,6700,1479,7516,142,6797,5256,6435,433,1887,2452,6358,586,2248,1511,1707,3259,5922,8303,4156,1734,9896,7021,2452,3142,3816,3286,4255,8973,6155,9889,9163,3305,404,7909,9238,8572,3573,9114,9629,7157,1297,6619,330,6469,3878,5681,2769,9547,8384,8573,3979,5587,5161,4422,880,9954,8717,8686,295,1708,5648,9039,5880,2512,8865,4136,1452,5448,7906,5543,2108,2111,4020,5190,2881,1448,7792,6196,5114,6430,361,4297,1398,6636,3626,3890,6284,6626,805,9289,3874,7384,3816,377,1752,3394,9901,4745,8620,715,8777,558,8776,5798,8535,542,3459,2342,768,518,7015,2119,1297,2490,5607,9758,8495,5604,9862,8932,7470,5413,2891,8876,959,2844,1341,3443,1648,1668,3728,76,2218,2510,379,9726,8301,1461,1945,8661,8506,6442,4349,1889,610,500,7552,3143,6816,2128,8252,679,3158,1620,397,9052,9422,5821,4596,2611,8501,3396,6690,4456,5205,8611,6525,1709,5621,4351,1655,3720,3137,2863,2626,2310,896,3727,8225,5799,5162,7368,3158,3656,5975,8106,1364,7706,7782,4105,9538,7770,7567,8710,272,9685,2156,6965,4147,5107,2466,4065,9963,2194,272,4793,6233,9340,4394,8174,3758,6394,8363,4913,6109,7523,2678,404,2772,2750,5505,3769,9537,1371,5313,4153,7468,2936,501,8362,832,596,2675,5436,2379,717,4348,5314,9085,6414,9762,5133,713,3537,9233,5766,3258,7369,4399,3820,1992,7935,9468,4690,6494,1611,6791,4581,8483,3266,8530,1619,3907,5668,3047,2830,6091,196,2435,6646,3391,827,2284,185,5160,6536,8409,9456,896,4447,355,5718,2545,504,887,9399,6221,1060,9279,8986,2886,7197,4195,8404,4299,6688,365,5212,9542,7241,8724,1608,9668,5319,5585,2056,577,6492,7652,6083,3903,9527,1656,1555,4124,2499,3063,8733,2972,2366,5378,5845,1822,3188,1577,8042,2733,1438,394,664,3390,6855,9132,5919,6089,193,9883,4727,7190,8619,302,1983,3118,6203,6174,7565,4415,8259,8523,2997,5398,2029,3618,7319,5398,5121,8774,7595,2738,6619,3579,5142,5525,1292,6403,4331,3267,8720,4149,83,6032,1810,1204,7674,1890,7041,3666,2447,2611,598,705,351,5855,2393,7987,8594,5250,1332,2677,1659,4992,6663,2320,5667,8554,8814,3650,8840,6019,4264,8493,3617,3829,1578,1736,8207,7785,9448,9541,7482,7629,547,4352,3875,5302,528,7069,1960,9610,5438,5818,3256,7392,7905,8027,1021,9076,8608,3866,1564,9909,8689,5931,9141,5058,2306,9750,9121,8561,2889,2570,9813,4924,2022,4079,7366,544,4267,9059,7263,1049,7164,3802,1129,34,7647,1435,7444,3604,2169,4356,9967,4073,1356,9898,1635,2329,7792,303,2405,862,4882,6043,2662,8510,1880,1179,9372,8114,4296,3816,3232,390,6821,7817,3203,6202,4933,9003,8001,33,5954,6479,7685,3045,8025,2337,3553,6775,7595,9618,1748,6247,4615,1973,9392,9229,6120,4539,3664,6408,9739,2862,5691,755,4800,4625,652,1270,957,9832,9856,3788,5936,4747,3718,3482,7344,5720,5421,4391,6572,7972,462,8060,9900,8996,4403,3419,7708,5570,7636,2496,7448,9017,9759,1470,5552,4120,7754,1947,4173,7069,3210,9229,6810,2640,1661,2325,2937,8016,6152,4658,1407,1939,6771,9802,6135,981,6587,2292,3889,2697,7980,8023,5168,7736,5172,551,6777,9590,6169,9137,9627,9138,2552,314,2700,5058,5715,4703,9453,306,1585,4374,9948,5604,3956,5185,9524,5115,4452,1618,8648,9946,1000,7348,8247,1976,2055,5906,2301,9162,3023,4998,1003,2219,7708,3570,5722,6027,2761,3741,1931,165,2332,4131,2386,6759,2102,4158,656,8414,587,9045,9325,249,4980,8627,2481,9385,9546,374,6445,4661,2916,5205,8358,608,3655,3905,3190,4436,5455,5554,8682,6277,611,7422,4454,3516,5748,279,6414,8539,9906,3859,2551,8467,7140,9468,7918,2896,5335,1877,4726,6508,4279,1106,5606,5806,3323,2438,1167,8579,9326,6924,9854,7257,1214,2115,4390,819,1455,5235,8651,7926,3598,1214,2,2617,7260,5268,4372,6206,5296,7066,4011,334,5197,8442,1261,9755,9388,1092,5201,5710,7614,423,1961,8128,3942,9609,4846,8570,9395,2130,8668,5215,9293,316,4762,4943,666,5181,3017,753,8512,7189,1598,9343,7303,5505,852,1268,3102,5605,8611,2517,2081,2599,9319,4426,1900,5674,1253,6963,2488,5087,5626,1329,9008,3788,7485,5518,5659,9058,6558,4119,3234,9525,5551,4183,8878,4191,492,530,7951,7937,7667,4377,3267,4535,1273,7854,88,7781,5395,6712,9055,9554,1726,3812,681,3809,5975,9555,2328,2319,4582,7893,4048,123,1320,5619,8814,9784,596,6889,4813,5812,4843,405,1711,8266,6541,1090,6298,9630,2985,9001,6381,4755,285,2271,575,2039,6078,2367,1902,4748,1972,5975,5966,3592,3471,9956,3153,859,9316,563,6555,1043,4378,8096,3501,4030,3590,5980,3269,4950,8820,8017,5095,793,5246,4874,3921,2368,380,6432,2714,5077,6825,9826,2160,125,1760,6975,1139,6535,4492,4107,3390,1374,2801,2366,8310,5645,867,8109,3885,6869,5126,2215,9489,3829,663,9593,9979,9631,5391,3294,2739,235,6361,8683,8769,718,3660,5578,2499,904,858,4747,632,3149,2608,9679,9138,8276,8882,3617,4270,3324,3273,1017,629,5510,7093,1626,5582,8099,6601,8887,3492,7235,6679,5145,5193,8430,9863,1211,1360,8878,4220,5359,3378,6643,7524,5700,8145,8915,7599,1208,1552,9686,2508,6838,7557,6292,5964,4695,2685,3970,4277,5163,6776,544,4742,4169,9974,5330,3519,7115,497,5455,3663,1089,3679,9543,4219,9279,6574,245,6223,4191,6566,2321,8647,990,2142,1712,2984,1527,154,8115,2371,7942,6311,3938,6983,7590,5555,2859,8927,3939,7326,8788,6930,6133,4222,1656,9634,1091,625,9186,6903,9859,6023,5244,8008,2420,3004,9959,1080,3382,4234,1253,707,9710,600,9467,3810,1307,5229,6629,7498,740,4580,3514,6422,876,7188,8388,6595,9909,1628,768,9858,6840,5191,499,6887,1072,3264,1707,4509,412,1438,7930,2931,5171,7121,425,116,882,4861,5067,5748,7133,8758,9048,6993,1412,6512,2687,4438,4231,8108,9210,858,9341,2302,4205,6668,9219,7332,5828,157,6726,256,6627,6560,2193,3735,1877,3851,6595,1859,8674,4166,8758,7875,9231,2232,1333,2065,2801,7352,9708,3853,138,1084,8705,8306,2234,6276,3224,946,426,7486,8876,2285,2011,9238,5281,7271,8473,2223,3632,9609,5259,9204,3765,8960,7266,2403,2469,707,1196,7058,5401,5478,5819,8312,6877,480,2500,7686,9150,5997,4442,7673,5400,7794,1522,119,9558,4680,7018,6222,6957,5065,4787,6163,2890,9833,5813,5974,2431,4470,5870,3320,9316,7050,2575,2308,3098,1359,8171,6599,4900,2775,9251,6185,777,3166,1465,9289,8739,2951,49,2542,5349,4280,6082,2125,2562,3935,8683,6759,3936,1998,9991,7012,2605,3802,7767,4430]
-# expected_output:79517
-# code_output:
-# runtime_error:
-# last_testcase:396893380 [3571,9780,8138,1030,2959,6988,2983,9220,6800,7669,2528,3994,6090,311,5683,9232,9698,1784,6543,4018,1340,3170,5097,9876,8881,6303,7964,2469,1119,9259,9429,9355,9904,2971,6240,3973,4972,1874,7037,4631,4666,7809,6878,5656,7227,1833,4772,8200,9594,9250,1881,4811,2669,7077,7531,8497,3821,5741,7488,2521,469,6108,431,3985,1641,8732,398,9934,4785,5061,4882,4819,9986,3317,2683,7800,9887,7277,5145,9537,7089,1467,5458,1598,3083,2867,9046,6089,2657,1107,2110,9020,7771,4928,848,896,558,6416,5128,9534,5410,2349,3430,4081,5996,9447,420,3514,6814,9873,1486,4576,6161,9400,2381,969,7588,2920,513,4612,4689,2870,8775,5787,2606,9221,5002,6515,5810,8611,3326,1580,3606,9445,4729,7623,4335,395,4868,8000,4069,8557,9207,1542,7,8620,3058,6822,1606,3857,141,503,9810,2869,9464,3702,4779,5942,4678,3416,2621,4710,6116,2819,5592,9227,8783,6164,3563,4957,1465,3269,2764,3359,2829,586,4145,5330,1549,3296,7842,7311,7981,3901,8132,856,2152,7367,5174,5689,5033,1459,321,2497,5488,7991,1801,9769,6373,3969,6081,4558,8560,3760,9423,2132,9460,1811,2788,5617,3934,9564,3661,4875,558,801,4735,2660,7026,6178,479,1833,9904,3168,2350,2497,2748,9356,2025,5476,6660,9296,6743,667,626,322,1659,3481,6037,9228,7865,3483,8790,763,619,4117,6217,8178,9505,2026,2712,3551,239,7257,7496,9015,9199,6660,3322,8111,7895,3347,7881,7496,9265,1865,7057,5644,2550,7551,8687,9669,5470,8994,2770,4556,5644,5162,5788,7151,8139,9451,811,7694,973,1814,183,533,9425,756,7591,6678,6373,1774,1541,2027,7581,3312,6492,9830,7013,2563,4983,8464,3708,8193,244,194,1770,3155,3657,6384,2723,1581,4958,6507,5811,1975,2287,6764,1210,4138,3536,6646,7880,8106,1833,8035,8625,8979,213,8296,7911,9162,2632,9986,3351,2852,6485,3414,2108,702,9291,1946,7344,5971,5466,4390,9497,4790,9102,149,2458,751,9333,2938,678,2140,8179,9921,2277,9615,3335,3265,1293,8197,3108,820,8750,9473,1490,7536,1241,1478,3616,7319,2230,8591,6698,6457,2224,2649,6490,8021,9701,5423,8149,6417,709,4536,5813,65,9769,1320,977,9724,8558,6737,7087,5861,2569,9979,6583,6102,1173,9641,7428,2304,5674,4397,6569,6609,1966,3206,5471,2961,9762,7825,1416,3647,5964,1521,6746,3255,9808,3780,4822,9778,5152,533,4121,1257,13,410,6220,4646,3309,5369,5790,4758,9374,2905,4485,821,140,3278,1824,7591,9323,4921,4363,1219,6108,9454,5782,4103,2757,6351,1029,6493,3737,7214,403,9586,3106,6,1924,6254,1503,6527,2346,506,2242,2206,9378,9295,2147,2259,5520,3711,1360,5287,2446,548,863,6649,1898,5877,7114,5764,9091,3343,6698,2456,9560,853,7534,5450,2888,7835,1746,7363,932,5292,9225,6905,2650,1847,4767,595,3766,9709,5735,993,9929,6982,6186,6124,3933,2816,1361,1086,3295,328,1478,9747,4400,5852,3544,2775,1234,7571,821,1290,8210,3593,8467,4629,7532,9608,1958,8430,5426,455,7313,9802,6950,9450,1870,1940,2114,4685,823,5147,8512,8909,9100,1170,9513,5287,787,8045,7700,5900,7025,2447,2337,3523,7160,2734,2008,1657,2007,9097,2423,3434,3617,4590,9412,1733,8891,6485,6135,4116,9184,8527,6233,1597,687,9551,4479,1935,8141,2245,8045,3820,8863,8156,9551,7926,786,9523,4874,1823,2771,2863,9601,4737,1085,3153,8559,6079,5833,9487,8183,4344,8786,6321,939,3483,9447,9993,2436,3712,5364,9520,6887,1677,3009,5402,4270,141,5139,5683,6778,2522,8106,6684,76,647,9590,4186,1651,1604,9498,1164,1378,3814,30,8490,220,9638,7768,1754,1519,7520,814,5242,5641,1463,4759,6539,3316,5278,9467,5342,5033,686,6661,7507,29,2693,3730,5021,9051,572,6775,4005,6047,9089,2115,8202,184,3727,5996,4502,4552,5242,3329,4797,6834,9030,4294,7891,493,842,2101,4126,4920,4426,3768,4770,521,4253,877,6026,1510,1394,4914,5542,1696,6313,5966,7931,8574,9203,6222,8887,7304,5617,9003,7702,4371,6583,652,3068,3115,6808,4611,5385,7791,5416,8733,3785,28,2806,5731,2889,4529,7553,1265,942,5721,4521,4874,3505,8382,1879,321,4740,8582,591,1972,9896,3740,4807,256,2717,4872,4650,2537,8088,3272,858,6088,9938,8581,418,6914,4488,8417,5200,8271,8055,7715,5060,6651,1639,448,3108,6893,5616,2886,8528,3376,7654,7474,5190,4144,4787,8235,8188,2633,8004,5978,6733,6573,3752,3861,9721,4429,1652,2678,6555,6765,6653,8605,5726,218,929,4818,4411,1058,448,2679,823,5466,6709,2761,1353,292,6437,3533,3199,1156,1868,1434,7219,2733,9467,6349,4266,1410,2836,245,645,5952,5415,4992,8136,9092,2431,3985,7427,6323,7011,4858,9517,7897,3630,2441,6565,2303,2180,4654,1815,4992,8835,7647,1011,7020,585,942,8639,7955,646,4531,8248,6779,9557,3570,237,4692,2765,1660,4833,7419,2244,4522,6476,1395,7876,8532,1264,5959,5884,1601,260,5264,23,8330,6329,4526,4188,2368,566,1957,7258,9777,5099,7896,6578,4123,6456,9754,8610,8879,7975,8648,6360,7114,8542,6889,9930,3560,7809,6856,2456,5967,6189,8154,2285,5130,7299,559,2201,874,511,5185,2107,6283,1295,4747,2197,3023,8097,1448,3969,2937,3689,9846,347,5288,137,5838,5955,337,5888,2272,6465,1973,5694,4223,1174,569,9502,1431,1699,752,6167,9223,1936,3567,197,661,8464,3102,4847,6971,9945,7765,7960,1153,407,5600,7978,6821,8496,312,2798,8862,494,6748,6896,3244,5096,3158,6930,310,5550,5911,8528,5854,8477,1085,1719,8380,6299,7471,9334,6208,7741,3159,8766,8430,7009,2957,6364,5739,5484,9329,8895,6749,9302,3078,7914,7171,7576,7198,367,3752,7628,4987,3657,1647,4307,352,7772,5557,7677,9085,4985,9052,8620,9179,6087,2815,8844,5315,6284,4462,8585,1059,6202,3268,6206,5936,5392,4115,6070,1615,145,1936,8500,483,7391,5107,3669,9472,7735,6954,6483,3008,7994,5551,9808,3733,2614,7564,9578,8070,929,1320,5785,8537,6628,727,133,3131,5686,8278,6291,9485,6569,4933,6200,9691,8633,4079,2049,8000,4335,8447,9326,7279,9696,7972,4695,2641,4200,2558,1241,8882,9518,9080,3440,835,1296,6066,8526,1967,4193,477,337,5786,5406,7516,7706,3812,3824,9328,9567,4324,3597,4649,1963,3347,3730,6905,8493,4809,559,4821,4280,7938,9429,5677,2445,5394,7314,7773,7685,7661,4845,1146,1342,3567,3602,3343,1208,5856,6103,8286,7667,7679,775,2513,6214,8445,7859,8373,4835,5960,8003,4266,4570,5363,2759,4573,974,7010,530,4303,8263,6707,470,7540,8448,5957,5046,7471,691,4500,9734,9563,8778,7770,8975,3827,9452,448,5471,5437,8923,1244,4682,2405,3002,6953,8993,8325,7809,4985,1827,9955,9501,1687,4785,5790,5889,5270,7398,532,5870,6928,7213,9821,9910,9100,3937,1122,6446,2863,3579,3630,9347,3719,5205,8162,7957,5997,4771,5017,5438,7949,37,4862,7184,6705,6889,6413,9500,9332,5138,7091,8569,1260,9274,5225,8771,1207,5222,3277,1962,4656,4578,2594,1365,6974,6707,3851,3495,6408,9071,2916,4540,5854,3938,8797,2472,5479,541,4493,9995,5555,343,3332,3366,1516,8947,2809,7120,8303,3223,4295,9261,65,3527,6680,6016,2245,4197,8060,8809,3215,4831,4182,3269,9889,3137,6379,9108,1070,2718,9642,596,8352,6300,7334,2716,1141,6019,6350,5604,3090,1594,9127,534,2599,7326,8678,4159,5596,8468,8997,5733,100,9767,1913,8791,2106,8957,8057,998,3318,9702,3053,2506,9161,9775,8073,8066,7660,161,2322,2731,7916,1841,3048,9091,2347,8265,9705,7568,3488,5348,8374,7155,1394,4880,5497,9459,5086,3767,5477,9264,7344,327,848,2189,64,2632,5963,2917,7944,1651,9062,7632,9805,283,8510,4561,4624,1673,2380,4834,8443,1744,5209,1935,7383,9246,2707,2577,8287,6935,3756,3357,3522,658,665,4058,9206,6758,4955,7486,2158,6357,2929,1218,8044,2282,538,9862,5158,5710,15,5064,2844,4877,3944,9371,8127,575,225,1393,2786,2097,246,2276,2187,1627,1782,2994,358,7696,1592,4344,1120,8886,3967,3875,9481,7773,9563,6999,9711,6869,254,9549,5583,4269,4757,6514,2954,1577,9342,7684,4114,7547,2510,1715,9101,8708,8414,5434,4134,6277,9374,7551,3593,2997,3697,7891,5684,7591,1077,8952,5116,30,9733,7542,6815,8846,7078,6891,2353,5407,2150,2590,2189,1879,6564,3376,4061,1610,4174,954,492,3160,9889,3885,5462,1229,2717,9992,918,7242,655,7016,5908,4565,8606,1318,3889,7010,2549,7662,8062,1990,6757,5193,8636,268,1975,6537,6559,2595,2799,3248,1863,803,8736,703,8552,3855,6444,5006,1890,617,294,1122,5985,9488,9401,7561,2354,3059,9381,3539,1254,1174,6768,2519,1705,7593,7001,3340,850,2336,8690,5529,763,1561,8963,5603,488,3436,3019,7391,739,3444,2152,8623,1298,4985,8780,7091,1674,7153,1886,7063,9729,7571,5664,4266,8735,6567,1440,3670,444,5666,3442,7177,2960,774,1708,8757,7690,2438,9949,7381,3849,4547,1221,8528,1640,5287,1011,1449,1144,1205,336,4695,4396,2882,6612,2251,8758,8921,7620,6697,7816,8448,2567,7203,5189,6523,4957,4168,8189,9222,9868,2704,3487,1519,7614,2420,3921,1836,1268,1033,4372,7030,7932,2583,5743,5431,7956,3409,6523,1966,677,2103,4755,7058,5055,2634,2829,7328,7261,4708,7553,3662,8856,7782,5935,5124,6277,56,5612,3865,4278,4774,450,5430,1319,7149,4315,7363,7473,8639,8508,6021,4786,8336,7045,4782,9716,514,5693,9935,8238,5521,6800,7317,617,4826,7112,7449,6709,5022,7805,2672,6891,8399,1959,8764,7153,8096,4191,7732,2918,6735,5056,667,1068,5810,8222,6217,2927,4824,7221,4614,7917,1022,4065,7312,6648,9871,6577,3665,5031,5074,8234,2810,6655,1280,1979,6975,4377,8673,7742,8072,3110,2535,3081,6806,763,7251,1732,6757,4662,9159,229,491,9472,3704,5007,7990,2990,317,454,671,2863,1381,6867,5956,2637,5614,1928,7768,9780,3662,1765,6483,3181,6259,9870,3553,593,37,5258,5382,768,8502,8145,4104,4653,2846,9685,1444,8494,4048,4145,673,3476,7775,672,3546,431,1995,9983,2394,3867,9084,8494,315,7794,4439,5487,8909,1073,2123,3688,954,2221,8638,4222,9144,3228,3269,5243,5319,9977,1652,5141,3439,3914,3553,2830,8754,8737,6820,7611,5009,2734,564,8726,933,947,6576,2211,7211,8810,1339,8188,7128,3414,6298,356,2715,7135,3358,8051,7512,1010,8700,1546,2367,8570,7946,4761,8679,7008,7198,5504,7145,173,8767,7106,8067,4715,6989,2438,5593,5242,124,7962,9042,7609,6472,9398,2450,3961,9321,9628,2294,726,7179,5788,9653,5444,2663,2478,6893,1155,424,6870,8541,5921,798,6290,7951,3734,3140,5800,6774,365,8403,1642,3291,7324,6821,3702,1597,1859,4136,1822,6627,9214,7421,9734,3231,5238,1765,1716,3559,8920,3364,1779,685,3522,4046,6190,2452,2955,7998,576,9604,6275,7286,7635,5063,2199,3571,3259,5169,2404,2942,1249,6185,2480,8813,4278,628,9763,6337,7273,2691,5591,3695,5713,4407,5889,8171,509,8266,3642,7775,1843,6490,1626,8129,1500,937,1961,8924,4488,6481,2841,7178,8791,7490,4978,4029,2261,486,7982,91,6454,846,6418,7580,8988,6512,3703,4359,6863,2458,2446,9273,2370,6054,7152,8466,4039,781,4268,386,2822,9283,790,4851,728,6106,8201,8180,1770,5722,8593,955,5972,5350,6392,1636,5037,2583,933,8468,7274,2871,7746,3140,7085,1210,9237,9716,8190,7750,5991,105,3230,9777,9986,1127,1017,5362,2297,4259,4863,7629,3107,4278,1384,6451,9336,2121,1198,5678,9476,5775,3567,8335,9618,4947,2892,4116,6365,6987,9641,4310,5063,3289,2640,3691,1518,2892,974,2794,3807,8793,7518,3776,284,6985,7803,2366,2981,104,5859,562,5531,2597,1882,617,5866,5064,30,7715,7204,3630,1625,7938,8759,5022,2006,6573,5252,3957,7377,946,2236,2338,532,9601,4210,5026,2188,6028,8189,7709,7005,7832,8017,2732,3441,8437,6707,6636,9144,9694,2056,3122,8091,4779,2706,4267,7461,5010,7827,902,8488,7183,9578,6641,1457,7832,4370,7271,653,9596,8173,9689,174,7050,9312,831,9361,7665,9142,4909,8398,4001,4473,3976,8177,1032,7519,5736,9654,3932,9531,7791,9877,3580,9634,197,3913,9106,7576,9156,3890,8220,2193,2761,2310,4674,9990,1426,3187,6454,8807,2298,8483,9741,6326,3499,1241,2275,7370,5392,1053,9986,6857,2060,9359,5078,6752,8315,9494,1033,1655,2446,26,4836,8585,7995,9858,4813,5874,4985,605,3451,3449,8704,324,8317,4675,163,9217,6271,5422,8677,5175,1650,9909,9687,6075,4902,490,6218,7740,12,4527,4272,9276,6273,1365,5081,7555,5621,3669,3457,5089,2721,4157,7569,3518,3940,4060,365,8311,4205,6941,1121,7122,1561,4924,6073,9978,18,5458,6848,8609,5328,5929,5200,348,3886,4899,4726,3393,3466,1363,6247,5388,5724,741,8700,927,3460,2754,4989,9460,4989,6070,8958,155,6664,520,5378,2833,1160,5941,2073,4336,8650,2171,4510,7086,9298,1742,1256,2279,8102,8066,3986,2272,594,2836,1038,8763,708,4381,5826,801,4545,8437,4950,6846,592,4108,8496,949,638,53,7650,2336,1481,2995,4442,1419,7609,5751,3906,9238,5240,4865,822,4664,7409,3892,1648,219,5104,8872,2493,2850,7082,649,8532,9850,6209,8994,7730,1018,2136,1308,6061,1,6202,9626,6549,4111,377,3876,7356,7559,9622,6641,798,2768,3755,2652,2792,2839,6414,9181,8020,4989,4031,2211,3234,9568,2012,9613,9735,4570,2482,7746,2000,9336,2147,8133,2169,7121,5464,2121,6356,9705,2147,503,159,9062,7457,1996,949,285,8519,9963,9239,7082,6854,8503,4242,1985,35,2848,5234,1634,1828,3595,3037,447,7234,592,2841,5236,4551,7887,6207,5173,9048,324,4712,8695,3584,6266,7164,1374,1288,2361,9434,3292,4398,9637,2170,1590,3706,7173,9386,3463,7276,3933,7644,9077,6941,3932,50,9535,1670,6270,429,9825,8660,8876,7737,3982,5621,9670,7335,3789,66,5948,6307,391,6820,1358,8475,8285,9965,8100,2929,4087,3580,3116,6439,3558,6337,4827,9470,3935,458,1445,8688,6243,4576,4873,6141,8522,9095,9015,6737,8105,8094,4141,6475,3925,1329,3954,6270,3348,2613,1820,4052,6082,9192,537,3669,9874,2189,7337,4792,6387,4124,2791,6582,9017,5647,8128,8695,9867,7736,9076,7230,8145,1625,6147,4600,7063,7696,8321,5,9156,4876,1471,1790,4345,3751,6239,5780,1688,7400,4252,4899,9999,3189,6980,3667,7086,4471,2000,7583,1456,8121,9362,4036,3316,2112,1326,2431,6803,7327,4515,719,6622,124,9267,9565,7268,6973,1781,832,5949,9928,2911,3435,7535,7857,5776,2420,6913,7373,4752,9931,8669,2469,9699,7788,792,6425,4827,5795,8964,2815,2165,3787,4352,6450,9904,916,6413,3346,7798,753,4328,2978,1187,8578,2289,7404,8916,5872,4834,4859,5229,7455,7290,8607,3347,2235,868,3656,1660,5392,1377,3846,1679,7815,162,4347,3245,3411,9460,4035,6353,1199,2011,9956,4135,2525,3628,9387,8513,9613,1537,504,1500,6369,9120,3807,8761,3850,3140,2817,9836,8466,4226,6619,9848,8846,695,424,7840,3828,6615,7738,3126,7428,4047,4341,3433,43,5605,628,4440,3691,3109,701,6071,6072,2916,9420,1840,2262,8803,7905,7048,6864,8252,4697,8884,3097,2487,7577,5766,3038,8590,679,1981,5162,620,1266,6050,4712,1519,7231,4041,3986,5691,9129,1806,7842,2700,7840,5746,9052,9568,9403,6242,8272,6180,3374,2679,7687,3639,7197,6313,7174,8478,687,9289,5897,9506,8660,1292,2261,7104,8829,6450,5805,2739,5522,3013,7866,4227,2707,1749,1957,9920,4229,8507,4685,3415,3362,6824,2293,4464,6927,7948,6823,6533,6414,6774,7418,3190,5318,2672,4119,8724,9498,6736,1291,8992,5391,2565,5073,5558,1137,240,4046,5553,8549,9778,9746,5940,2088,3197,5440,2009,3611,6483,8110,4744,1177,3265,9413,2780,5446,4448,6802,8244,5394,5434,3917,3116,1193,8158,2291,8391,9841,291,4424,7248,6388,2083,3583,5039,7174,2545,5352,8880,8333,212,6805,3139,9148,1628,7683,3423,5460,2968,4810,2726,7222,3644,7841,9757,3004,3945,3269,3870,8644,6710,1727,9152,792,2912,789,7307,1824,3690,1753,4652,8817,179,5532,4230,6697,1982,9426,4403,7109,5785,2145,8041,2493,8940,2263,4013,1397,3676,9053,1096,7929,262,1450,6439,6647,5288,6566,8308,4110,5408,5862,8746,6379,2122,2214,5993,4796,2090,3586,6037,3332,5083,2810,2259,1983,2279,7187,6555,7061,9180,35,5290,1649,1721,9011,64,5961,7331,1080,3224,7416,6320,6375,7700,7531,7542,2491,1811,5972,8922,676,7039,1153,5644,7537,8948,3493,7861,1040,9879,5516,4223,4356,1134,4535,4509,6974,3283,8772,5200,4488,2970,2269,9584,8748,3417,7935,3843,1133,3286,4054,7943,3195,2581,5273,9141,7694,3636,8143,2020,2924,8119,1271,3276,1680,492,3567,8365,6929,3845,6855,223,5240,144,2061,7423,4191,5804,1437,9919,9100,8730,2324,653,8396,8541,9678,3295,5687,3384,9170,4800,2738,8886,8118,7275,1677,7794,1290,9903,1888,3282,7942,269,9522,7191,9991,5599,8644,2944,9350,7303,2717,4903,1832,4038,1077,4209,241,1299,7322,3637,3601,4535,461,257,1529,831,4230,2272,2913,9632,5649,2779,1474,8657,1423,8814,7326,6781,6027,255,9807,2220,40,8347,4247,2415,2786,7082,7371,8631,2651,7650,1000,2510,3414,540,3624,5314,7989,9141,7413,1375,9982,3460,8663,7106,6948,5423,2536,2965,9690,8895,5680,232,7629,717,899,7636,9155,290,6674,2983,8614,5849,4723,6153,3743,898,8450,189,907,419,3393,780,8800,3855,8169,5484,6616,7667,7500,3475,60,8342,3706,8595,8024,1082,1091,1260,3418,5706,54,7252,7826,2342,708,6811,9238,8188,2489,5802,2050,1331,5063,1718,2851,3065,4492,2480,62,4296,5347,2673,5327,5504,2395,1146,3642,7054,8924,1338,8071,1888,3631,3436,3516,2435,7085,5370,8303,4110,2049,7345,2118,5050,4944,4937,8058,1008,9167,7868,9763,9689,6436,3774,3863,5950,7490,5918,3622,1787,2667,1564,347,8749,9530,308,8591,4205,3724,4910,2162,352,1245,2127,4594,3877,9199,3720,2568,5653,983,6648,5805,3590,7107,5,7200,2715,1356,2993,7268,9913,5068,4185,5036,5979,91,4059,367,6906,2367,6122,6373,7304,1001,4355,9811,4580,2236,3737,5942,7011,2938,9377,1641,9849,6308,4355,1407,7135,7032,2528,9076,2784,7437,8140,7127,8844,5302,3353,9183,6910,7490,6467,4924,4170,9861,3408,7151,936,5124,9713,2770,1170,6842,1648,5699,2695,9552,2554,6303,4776,8686,4548,6636,7264,7834,6235,5049,161,3807,3112,2884,483,2559,5170,3151,6361,7584,9174,5907,5773,780,9564,4561,498,4622,9016,9205,7594,8719,5961,66,9593,5798,3571,8453,6503,8143,8987,3133,497,4715,4320,3669,1583,9320,4895,8080,4842,275,143,5662,5899,590,5387,7578,4213,917,9927,3008,5623,9108,8892,7074,5964,7285,2818,341,8632,5994,2993,9274,4147,3569,5912,3405,2708,2480,1016,2873,6194,2685,9313,6034,5660,7058,1512,7936,8023,4418,3194,5204,434,3544,6819,3912,24,2017,2390,8698,7801,41,3850,9798,9009,853,9966,787,3755,2642,7425,2960,9113,6453,6386,3270,9051,9843,4878,3264,8991,3270,5945,4186,343,189,9877,9872,968,4213,3278,7530,6966,3503,1119,3842,2149,4144,213,8733,1789,1155,1228,284,9063,3668,4806,5600,8897,849,5395,9562,3338,4266,5310,2432,8803,264,6698,7888,1248,3293,9564,7324,8744,8129,6608,6508,7717,4692,6103,4149,73,4249,5995,7021,8618,2294,1223,5852,6891,6460,1426,6049,1764,4356,7290,8066,3649,8994,2982,7089,8862,4533,1217,227,7260,6662,1282,5321,3322,4297,9333,4985,6828,6787,8077,9534,1182,2492,2318,1769,4698,2757,2605,6961,2052,3988,117,5109,7017,1221,3843,2608,7785,1161,6835,4013,3251,9341,7818,6033,8332,9809,4449,8894,8298,9698,3538,8777,4475,5378,8746,2995,4922,2423,2269,5231,6851,2520,1225,8930,5659,1509,772,6851,2249,2477,2063,3215,8313,5,3626,5574,9772,4500,9575,8915,8352,1053,1515,1491,8723,4504,6957,6443,9225,465,7500,8868,6178,7008,3723,2701,8881,2226,3615,8949,3862,6385,3864,372,3713,6636,9073,1198,8694,4209,5481,1490,1577,7906,9218,3669,618,9675,1254,1984,7360,8256,9454,9774,2454,8961,2840,2666,4368,8332,3169,8176,3373,6332,7113,5525,9824,4084,8208,6400,9446,8789,4120,3697,1399,9081,1785,2358,7707,4084,1288,1443,9724,3357,6954,7236,3756,2759,5035,7427,1377,6505,2192,7330,3706,8112,3208,8085,3171,8569,9672,5851,9340,1686,1120,6904,7111,8718,8079,9642,7771,2435,6959,6446,3025,6624,6418,2181,7467,2303,3669,3350,3386,6017,8882,1830,4101,5684,3013,65,4757,81,4980,3786,1654,7913,3671,3703,4247,2584,7894,4051,8834,775,9903,3493,4863,3897,5746,2823,381,7712,8020,4578,9418,1908,4669,8612,4067,6080,9710,3014,9020,1661,2674,4081,5735,8480,1103,1022,8941,2297,7882,6247,8169,9355,1905,495,5918,4991,9242,8408,231,9473,7453,5705,5756,2970,3833,2543,3062,5417,5251,5697,3707,9522,1760,2294,7150,4539,2007,8367,1047,6545,4410,9929,7868,3124,8217,6947,3720,2399,7738,169,4749,8918,6521,7727,9384,2279,7284,3047,4978,7822,3723,165,273,2704,5750,6165,2058,9803,4480,9057,6726,1098,6670,2742,7306,6035,4401,4080,656,9004,5297,9618,4555,9086,5788,962,8463,7588,9956,1190,1532,2199,2932,9454,2879,8063,4602,8027,7312,7203,5297,1542,2667,7791,2214,4396,182,7705,9337,2517,5949,7473,1535,9915,7871,7734,3280,9158,9596,4892,9439,8023,1289,5148,181,8763,380,3059,5248,3567,6232,7603,6153,9596,4821,8675,1319,5935,5339,6669,6448,3469,7394,2376,1163,1736,2943,9770,6159,7548,2252,3385,2741,9990,8540,9729,7637,2221,5557,6885,9306,9126,5466,5347,2661,6162,1325,399,9199,9548,7219,6051,8063,4688,9980,4841,5115,6336,9950,7281,7931,1335,6814,3132,2923,4746,4075,9557,6345,947,7403,4454,5305,9069,5988,4564,6499,5253,6831,3038,6776,3505,6527,8243,8896,6831,230,7719,2001,543,458,8101,311,7981,6101,89,306,8038,2219,2528,9552,8992,6351,3365,267,9237,7927,55,2859,1100,6950,2079,5628,8280,5712,9843,5479,1431,6321,3310,7405,6746,6017,4435,1494,5444,1688,1224,1593,6552,7751,6526,905,1950,942,2222,4469,7948,552,8076,3364,7577,514,9850,9154,2977,6183,9222,5701,4143,547,58,5058,829,7385,2774,6442,6403,9312,3528,9300,4573,6267,3743,9131,9152,3709,9250,4138,243,508,3848,7158,7304,4830,252,6752,9270,6940,5919,2561,4489,559,8176,2375,4292,220,4972,2251,8597,3952,7554,3849,5697,868,2293,783,7891,6047,1843,3557,1806,7618,7838,8025,1295,8552,2187,4803,5404,5915,3619,1348,5993,1072,189,6059,9227,23,8454,2023,3596,76,8077,2384,8387,5606,6722,1631,5746,3985,5477,1926,1982,9919,5786,6686,4011,208,6967,6332,5482,5456,7666,722,2773,5757,1761,1704,7111,4181,8975,2773,882,2172,4742,2975,2074,7914,2369,2569,1862,5097,7423,7540,9840,9476,8151,439,5292,3092,2316,291,4560,8124,3356,6465,5561,120,4866,441,9052,97,8951,4114,8691,2931,3012,4215,1610,9836,9081,1557,9424,2728,9718,5503,7236,871,6794,9572,9252,7712,7488,6340,942,8111,775,163,7401,326,8806,3921,3318,6307,2061,5404,5182,657,3684,869,8090,7353,6211,1472,6649,65,2789,7964,5447,9861,5548,1117,8000,8684,1857,2265,8556,3128,3329,1787,9640,8379,5267,9875,1246,1168,3763,3330,9332,2212,5059,558,6521,9716,9170,9450,2889,6115,9105,2271,8146,6608,976,2858,6316,1775,4799,1837,4606,2261,8727,9521,3784,5743,9144,6134,9217,5287,8040,5111,3675,3260,8371,1893,1060,2096,8849,8975,360,6887,1396,9020,1514,944,7666,960,5382,1301,2698,3612,8508,3350,7680,8090,2111,4753,4172,5971,6146,6407,8499,7412,8052,3243,9987,2333,3676,6972,2561,3910,989,4176,4046,5427,1242,433,343,7205,9984,2573,5967,9600,2350,7299,3143,2331,8199,413,7965,3415,2686,7136,4547,652,5878,7700,9067,7449,1270,9125,8840,6575,2723,4574,1401,619,4297,8612,2399,5498,6102,7164,5016,7899,1287,6773,8574,4007,5683,9705,3371,9686,2942,8671,2382,7968,8511,8316,7926,722,593,6359,6234,5296,3182,7367,2461,2725,8732,1665,5694,665,433,5714,516,4266,5015,5019,3106,6732,2486,8016,374,4418,7178,669,4974,1825,9563,9661,3092,6331,3516,2665,1809,6249,3964,1553,7849,9617,1176,893,3551,6186,1674,7192,9751,1624,9840,5477,9693,4540,8159,8915,4892,6656,348,1855,7824,1391,1015,2888,6341,4739,560,9568,4539,561,1914,4874,799,5622,3398,7174,6968,2036,178,7460,6129,8801,4641,2230,2878,7054,6442,6291,1574,1114,3576,1156,3875,2921,4601,130,8977,8597,5859,5838,5538,9278,3252,5015,4036,2908,6937,8613,3009,7662,7329,5538,6948,7876,3402,8701,6378,821,4983,9714,549,9145,6246,3459,7625,4125,1811,8442,4142,5389,8408,3276,7439,4405,7424,364,4355,3512,3926,6124,5991,2674,1404,8900,9052,5155,5198,6075,1838,7634,7737,8795,1967,364,1041,4909,4107,6038,5456,522,138,643,1366,3497,1695,9291,3866,4398,8780,5482,8388,9628,4208,7855,8031,3041,3792,6253,4820,8819,6934,9311,5618,9866,6944,4663,130,8365,312,2238,4394,4464,1566,4284,6055,3618,7990,9142,128,1452,6089,6020,5187,4423,2016,9498,4370,5474,6396,6140,3206,4726,6817,3902,8783,9322,9893,9778,617,1069,6934,2720,6898,658,5400,40,912,5629,2177,1972,8670,8816,9060,409,3198,2896,938,1393,4195,4408,7510,9049,3968,7360,105,8743,8003,2215,1479,638,5977,2156,5934,5530,5577,5920,4004,2429,3407,7628,1960,8958,1484,7344,930,8843,8146,6566,7972,3468,6070,370,2710,6218,5561,5887,7653,6415,3987,2120,2913,8916,7037,8445,6817,8707,6406,3556,4758,6804,5273,7260,647,7539,6745,9201,9502,1737,4513,6413,2644,8939,793,9616,7102,9473,1285,8874,8229,7939,5528,4512,814,5709,8778,1500,3827,3651,3994,4313,2955,7369,2058,2925,5795,1198,8141,1397,2684,7052,5627,1828,9259,5646,2720,3894,1706,9752,876,3323,5832,2299,7215,527,2592,9638,5498,292,1148,1215,4696,5097,1792,232,269,7290,3926,2733,5622,5638,2087,7406,7512,3307,5407,4160,9997,4065,2775,7418,1034,6956,7067,4921,7083,2772,967,9749,6278,2066,6824,7665,8400,9783,344,4508,1506,1388,4491,7095,5386,3460,8349,7824,8131,2765,3794,769,9288,3917,2574,3161,883,51,2313,2565,9427,9695,3811,5836,6889,97,2771,1217,1979,8109,3146,5482,8382,3076,4747,9089,9789,2216,6219,2520,5255,6767,3068,9981,2024,3262,3527,1177,3352,2742,5499,5981,4159,8478,2407,1201,9012,4035,8692,4805,3455,1354,7786,776,2297,243,3842,4786,1036,8212,7568,3804,4826,373,7655,1,3082,541,5111,6931,7910,7340,7254,7279,4202,8726,6521,305,5656,7959,5088,1242,8852,2985,6124,4838,8994,503,8036,9169,8398,8006,5268,4540,5753,9965,1071,2304,4692,3663,4339,643,2059,4708,7610,9367,9580,2800,9848,9047,5673,2579,4798,2284,9526,3874,7409,8808,7068,2335,6079,757,475,2725,9864,760,2120,8173,6241,5791,1295,2851,427,819,3598,6405,6839,3178,4007,7570,7142,4236,3610,3225,9905,9066,3094,7531,7016,2223,3340,7302,5666,2617,2370,9934,4129,4720,4071,7701,9395,1011,5821,421,4383,5161,3645,142,1465,9336,7206,1538,6705,7032,3784,5939,9556,6407,6755,738,8303,4581,1468,1625,164,8162,3115,9228,3335,8051,4949,9712,3467,9721,8410,7130,1677,7114,9803,6609,2548,8677,1236,411,9165,2469,4232,6630,3621,2912,984,7329,2685,7145,7357,5012,871,1628,7841,5546,4510,4313,723,3043,412,5570,2413,9900,354,2613,6618,2299,1503,9814,5691,1088,9213,5221,1777,889,3664,6039,4976,2526,234,5092,3631,101,4322,4684,6091,2467,4229,8422,9198,9218,8043,3274,4809,8890,826,2333,6754,6241,8291,6602,2596,3732,2653,6313,3817,2984,1437,1859,7228,5654,8795,9228,546,9824,8819,2532,1427,7246,8604,4034,3992,9209,8562,5617,4063,5696,6674,8258,2482,7053,7219,9365,5574,2327,6204,5561,8717,8977,2786,6842,4615,5723,9851,9795,9983,1524,4469,8078,1093,6338,1133,4301,9061,893,8972,6573,5968,9460,6623,2463,5521,3058,5678,3341,3493,4525,858,9487,819,8261,6275,5655,8437,7114,2958,1421,5913,5995,6704,4182,3228,8756,684,6928,7807,7197,5019,4002,1720,3463,3021,161,7786,8206,8095,7055,9187,6890,2100,5990,8261,180,1843,4266,1350,814,9878,6843,5627,1371,2750,1159,2392,6017,4216,2334,9816,7559,55,6582,7072,5889,6328,5419,975,2834,1386,9766,3612,4992,2649,6373,1972,2826,8303,303,9845,97,9170,4257,5192,2350,9265,1723,5627,5328,4728,34,5521,2236,2151,4486,7435,8434,5889,1993,6730,9515,2293,4736,5928,5790,3028,7486,3473,252,3983,7170,17,9755,4210,270,1748,8520,3426,9218,8623,8427,8898,5084,8200,588,1315,2921,2495,4273,347,3876,8320,6111,268,7918,5131,1476,1250,3340,4198,933,7049,4029,7077,4575,2581,7879,8383,731,3083,6397,8047,6477,4053,7153,6761,3307,2014,5599,963,6093,5359,2568,654,246,684,9955,6797,9079,8661,2708,5305,9255,7227,4002,5901,8621,1195,4421,4682,7529,6847,3418,720,6035,1410,517,723,1463,2545,6735,4061,82,8184,1079,7943,4910,9808,2175,9351,379,7648,8077,9157,7224,282,5511,7409,2042,7194,8108,231,7204,6041,331,1137,9711,7721,2597,5785,8219,2695,26,5087,5631,2298,6355,4048,4146,3810,2786,6394,1534,3374,953,3256,2154,3402,7981,720,972,2043,9327,1664,7469,5124,6710,7751,8013,7261,7318,2310,26,1900,4576,8654,2329,3605,5223,3150,3593,8906,7561,6940,9827,7141,7158,1652,2866,1847,8289,51,3470,5719,9390,3722,6586,2612,9507,5436,4079,2261,7168,9724,4964,8556,6661,6382,7798,6679,340,9390,7961,4691,4025,8693,4052,7510,912,2604,4618,2754,6520,147,4217,4502,7255,1826,1636,1760,8578,2636,456,8613,8178,5672,3899,3900,5854,5095,8279,3604,499,9429,6456,8375,5007,4883,3892,1005,1076,997,2870,3569,8462,3586,6624,2797,9582,2734,8661,3700,4170,1957,6197,4328,3345,5927,8842,5409,6027,5574,8764,2335,6600,9390,5051,4021,2406,5187,2288,2658,6482,1178,3774,8898,4215,2629,9914,6379,7940,6532,4103,5302,4306,6925,4313,4044,4976,8930,4007,8604,7591,9787,7415,9462,7719,7289,973,9571,3888,6014,6124,1820,8335,7665,525,6348,2205,5756,4875,4123,3048,9747,2908,382,1946,2286,2723,5142,5414,133,5008,6748,7630,1557,3801,7084,970,8917,6654,4754,5853,2655,9695,7517,5198,5653,6389,892,4575,6031,7102,6753,4831,3683,685,9477,892,1802,1437,2597,8005,4715,8910,76,724,6900,2003,6281,9091,8712,1627,1595,7,6856,9506,1905,7752,6263,1450,5402,7052,4490,2373,7088,3984,7366,9081,8800,1830,6562,2057,3597,8214,3691,7092,2655,6560,9389,6422,365,4996,9627,450,8358,268,64,5146,3757,6795,1526,7120,6941,2282,7746,5564,6986,8047,4753,6803,4342,6384,8815,2662,2448,6266,7913,961,1574,1526,5402,9801,3164,4988,5681,8029,7705,9242,5446,9549,3047,7068,5306,9944,6488,7912,7113,2173,2345,2999,6323,2806,2231,3709,8249,1042,2092,9054,8423,2348,2650,7807,750,3379,3751,7830,3309,4485,4566,5293,3496,144,7784,2124,5548,9468,2437,8752,8870,4305,8154,1997,2907,1311,2109,6061,1998,246,1422,5167,8209,8414,6441,1803,4209,2307,1899,4077,2748,8209,1779,3543,6275,8957,2774,9463,5732,3518,4213,73,3582,9359,3397,3962,9650,755,9082,610,2603,9840,9037,697,4064,8006,4877,2874,1480,7488,4458,8711,5755,9779,5870,4646,4027,7360,6562,7747,9521,2437,9388,4956,6904,4182,1579,4479,5138,6928,8124,4046,9086,1639,5078,3781,5359,6341,8956,6703,3765,3011,3372,6415,3092,9333,2514,3257,8354,2622,8270,9567,8370,6568,6222,4254,623,4531,7860,4191,7459,7538,3626,2723,5228,6485,7660,5499,9957,3569,2607,8879,6683,6763,5896,1879,1721,5254,6596,4070,8460,4144,2494,9530,3007,1904,4558,1065,1715,7849,9491,7089,9685,1103,6455,6519,7631,7718,8552,2577,5851,1345,6794,2762,9215,5756,1082,5041,2215,1894,6546,572,3237,13,5549,1324,1452,2885,1563,1579,287,3142,1792,7560,9706,513,7666,3633,1449,5754,2687,9348,7220,5128,8110,8716,4166,3964,1369,1024,2376,1752,5543,2205,990,255,7442,2096,98,3531,381,3714,9832,2743,7110,161,3430,5587,6071,3175,5677,1703,9264,8112,8080,1480,6889,7946,3827,7175,8215,3578,6151,3785,422,4401,6406,7497,9482,7592,233,9931,5938,8431,6170,8373,148,773,6708,6054,2052,3157,1314,8279,4037,187,4421,6401,7181,1727,6702,8692,3294,2322,742,3194,8516,1024,2662,9294,6676,8798,2114,9708,8147,8488,51,7223,8936,5243,8925,8721,1365,4930,997,4846,2883,9039,2001,8393,4829,7812,6505,7088,2747,2498,5563,6080,759,6305,2809,7055,9352,7979,4435,8616,7614,1728,7647,2619,9512,1795,924,507,4912,8819,9054,3287,5627,2066,6056,5423,1712,8031,3332,8617,7593,6121,2782,2173,464,316,819,5652,7909,2726,4679,4841,949,599,1379,405,1470,2790,1749,369,1974,4348,1128,754,230,5622,66,3898,408,6698,8290,5553,4101,7834,1688,3023,2830,8321,3046,7432,4953,4980,9529,3277,5163,1456,7423,3335,8813,99,8851,726,1620,2507,4029,2456,6263,7159,8266,7790,5936,2096,9714,782,4704,4221,9858,6790,2152,1564,8466,8679,9406,7152,7233,4055,7101,8271,8625,8672,5432,7256,7579,9728,7059,5281,9216,4222,8062,1747,7632,4750,9021,3042,6270,1457,7596,4967,8169,3517,2441,3418,7918,3336,8401,9715,5618,9165,9776,7918,5500,1752,3289,6205,5555,7706,7035,2852,1396,7622,931,6096,591,6588,5250,6118,6161,2321,8051,597,3466,7271,8290,3985,2600,7596,239,6533,6542,5023,7065,249,7995,313,5581,6275,2575,3862,3051,2258,5550,304,8760,3246,1473,5136,1823,859,8275,7508,8492,2139,4771,4502,8071,8409,6398,6765,6912,4551,2427,6809,4324,1873,741,9212,7014,5975,1255,3366,323,5384,3063,806,5457,9785,6663,7648,2937,8022,7145,8770,3081,5614,7415,1785,5801,8420,3897,5612,3378,232,1337,2009,1886,2678,3446,1763,5591,8382,4216,9839,5629,4504,888,1293,4359,7611,8678,6656,9285,4210,653,7888,9487,150,4846,1214,1816,4358,6340,9940,7456,8554,2894,5004,6043,8132,6806,7542,7814,7657,9713,1329,276,2542,754,347,2963,595,6480,9279,4423,2189,5418,9891,1030,3070,7642,944,3759,5000,4573,6177,1605,1998,4054,9868,564,3888,1340,3619,9729,5751,1615,3163,6484,5517,6463,2463,9790,2788,190,5858,7502,7672,4471,5307,3391,352,4973,2270,8869,1350,6277,9474,5354,4891,4301,4220,3365,6548,4213,7124,6102,4879,4360,4742,5437,5012,8351,1576,2230,8077,83,637,5731,240,6664,5708,1511,1219,2603,1450,5128,4421,5301,8629,6929,8732,3743,3587,1824,4026,4033,2854,8475,8928,1423,3848,5525,5371,2098,2520,1095,3334,4400,3609,4393,7600,59,5847,1380,7424,7269,7580,6884,8266,5702,6793,5724,7886,6752,4991,9384,7588,7942,7706,5992,2875,9720,5075,9060,2530,1438,567,2903,4448,2572,8067,7671,801,9142,4788,1617,5267,500,6026,5843,9351,1737,3771,1246,8109,706,6807,2351,9057,8452,3625,3626,4218,3751,6425,8764,7399,3438,1506,5180,3965,4568,9062,9231,4088,9289,1554,5742,8991,3406,5057,4124,1344,8174,3571,9090,4425,6838,7576,4617,8447,9199,7644,794,7304,2830,4498,7139,8993,4628,3880,8652,8172,802,907,8181,5440,2945,2986,9262,8179,8649,4121,2534,9850,7994,4006,498,9645,3188,3515,7737,6359,7153,3604,4419,4428,1218,6685,1588,1180,3753,5093,350,8813,371,8714,7923,4701,9982,2209,1944,4650,9077,9162,695,9154,739,5151,4938,5275,2850,1623,8861,2203,9911,5068,5353,2293,8993,4066,4911,7262,1001,4623,2219,5463,9651,5625,2992,5217,9303,6236,1825,4104,9360,8462,8173,1325,3241,6963,5989,9167,7708,4930,6273,627,1941,4863,6698,3085,2052,6114,1966,5451,5193,8734,568,1549,1744,5496,8590,5110,9589,6609,2728,8340,6605,2697,2175,4715,9193,1411,8145,6576,3421,9086,8807,5509,1425,3720,1240,7719,4113,6103,796,9089,9037,1144,2714,4381,5159,3294,3895,2945,4607,5285,7982,1907,7996,4302,4533,3345,4736,3390,7895,8734,3858,4813,9120,4531,7686,7318,7536,3051,4139,5930,1154,1129,5757,3969,8017,7399,3531,7759,1864,3354,3171,380,1567,994,3746,3465,8326,6883,5545,6784,6554,9818,8003,6705,8646,6171,9855,7745,5303,9972,9216,8543,268,9889,4335,165,1294,2112,4063,507,5954,6939,5562,9335,5774,6090,7416,2909,1967,7113,9167,4420,3047,3378,9920,2502,8790,8808,8347,5145,9946,8023,3137,4630,2430,5840,4601,425,7767,5113,8342,6986,2546,4426,771,6636,5308,5294,8529,5791,3591,7930,1060,8986,9695,4729,4989,4274,2269,1133,5977,3561,3489,6004,6371,2260,171,8563,3037,3293,7329,7596,9050,3706,4477,2372,7525,2453,4227,6180,1582,6817,7360,6125,6542,6496,6039,7641,6070,615,6951,8305,478,6992,1762,7715,3957,8662,3413,5735,7376,6325,7268,9624,9089,4185,814,5604,7733,5550,2387,5111,9687,547,8213,3412,4177,4274,6742,7088,3197,1160,9764,3511,7356,4236,4091,4958,4433,85,1293,4909,6249,8357,1777,6729,3086,210,1986,8037,8724,9667,7951,1858,599,7612,6851,3268,7495,9683,6815,1998,7579,109,8042,4265,3855,8222,3494,3083,5633,5437,9598,9461,2064,3969,4891,7385,5955,867,3643,6908,2534,1716,5154,481,1611,6077,8281,4409,9582,7030,9358,5305,8053,8968,8897,7303,2218,6765,5597,7393,6316,8775,9668,2701,380,528,3932,2454,7932,8755,459,7841,4271,1633,9607,7961,7762,8750,7142,4691,6787,6011,4307,623,7344,5386,305,9551,3258,9445,425,8525,1166,9943,9517,9598,4878,7255,4534,5217,4672,4057,3996,6847,3719,4778,4919,2363,7377,8853,3165,8931,3954,8029,2432,2587,1734,8349,4227,4353,1661,9985,9589,5512,2802,7194,1809,4930,5975,4791,7102,3899,3807,8005,2084,6515,4923,7946,2660,8968,3486,8276,2530,4983,7450,5363,6881,3194,6421,6252,6129,3161,7213,1557,8990,1383,4077,1653,5508,9978,7596,856,3505,2634,2686,2200,1547,7710,2248,5662,9403,193,438,5869,6805,348,7547,5411,8064,5164,8953,556,7,4847,5985,4080,1732,2775,2275,7015,1109,2921,7142,2318,1050,6320,1477,44,6455,6312,7289,7632,6023,7024,5298,5745,7079,8674,1110,1211,725,6713,8250,4253,9795,9280,4883,2318,85,4580,6307,5050,3594,211,3254,4137,2755,9754,6921,5712,1060,2079,3428,7294,4325,3813,2032,1473,2264,1537,781,9326,9744,7475,3690,7099,2796,1519,1993,8196,6252,7432,9352,669,6604,4204,9057,9100,8137,4883,1801,77,1302,7555,9993,7645,7001,1894,2327,7067,298,8721,4762,1126,2798,7207,4340,9526,8886,405,5040,1693,2662,1499,8717,7063,2424,1762,2022,9667,281,9161,7928,6044,6166,7723,5781,3985,2089,8445,7256,9952,9760,1896,8782,9475,708,6181,6475,9538,8208,3684,181,9461,7987,2651,7730,9254,1488,6038,3167,5964,3702,6973,4036,7548,8627,2552,1165,4639,6010,5365,7172,2161,9669,4030,3590,2697,7536,4054,2253,7994,2494,1952,1588,145,6182,6193,2791,4623,810,8068,6332,2198,1468,6699,1139,7342,1639,7998,9943,7940,504,225,5555,27,7490,8532,4128,1650,5534,2582,7665,2033,8286,8372,1308,7927,7363,7447,8240,5597,7807,6615,3583,3222,7160,6550,3827,6172,517,5897,8213,9452,5788,184,1402,3689,7548,4056,3604,2993,4786,5811,607,1578,6620,7259,6389,8337,2480,8606,9600,2743,7333,2958,9454,4039,2527,516,6892,8765,6714,4209,4897,3630,9348,1079,3882,7169,4369,2452,127,4103,916,5496,4558,6192,3526,3801,9303,133,8452,9316,5816,4407,2407,2420,3200,9439,8717,3973,5833,3899,9537,3752,426,4750,1370,9325,6853,1080,1751,1439,7953,340,5290,1237,7123,8429,3545,2002,2708,317,4481,7919,7088,8361,3071,3817,5284,5427,389,5371,9679,1400,3202,6183,4252,2688,9032,6882,1255,556,8167,5539,6066,8498,6144,7976,9140,6237,6025,5322,97,5117,4063,5833,8572,3276,3013,5344,2804,3185,4039,8628,8844,6314,7392,9511,8378,8717,3976,638,650,8297,1443,1649,936,2732,4146,9920,9692,3417,790,4044,5097,256,6302,9963,2417,4483,3855,8988,6109,9186,381,2704,1253,2148,5063,7517,8361,7429,4514,1724,2300,5245,1061,9368,9453,5494,1121,4413,2668,1138,2220,8377,6887,4329,7908,2461,6126,6588,3929,7414,2125,618,5892,5178,2525,4282,5160,4378,1182,7837,4621,6417,1174,638,1793,1151,6907,5410,538,5903,8576,2134,9614,5168,3470,7290,1634,7422,2977,802,6131,5377,1061,2188,887,6627,5138,3750,1722,4248,3551,7366,4903,9319,5521,7202,6226,347,8475,8533,7718,9144,3557,6035,2234,5595,1122,8418,6725,3901,91,8834,3450,2262,4296,8705,7464,7773,6902,1406,5271,7069,1043,2197,9318,6200,5186,9851,5736,9312,2781,613,6733,8968,7848,3231,2647,4964,9027,3144,9833,8457,1443,5997,1586,1264,1559,1049,3632,1379,2454,5711,5775,1727,9078,7996,6030,8581,4822,2427,6609,5056,4851,1232,7630,9116,6293,2810,3662,1227,5292,9853,534,4169,9481,6659,6774,5916,6164,6416,5968,6271,9228,8183,8369,4556,9435,2237,8746,5226,7201,4438,2588,304,284,3810,2248,9548,5094,3070,1844,4554,6190,4385,8145,6663,2495,863,8522,7984,7836,4144,153,1600,7804,3139,8949,1949,8589,9609,2389,6021,7077,498,81,7496,1514,6287,6728,4838,9863,2960,7993,4651,109,3616,7181,7050,6104,2175,1388,7734,7315,5030,5036,5549,4238,3233,2534,2196,1174,5932,1941,7349,1222,4206,9793,6885,8026,7931,8452,5391,1258,4508,8081,7441,7176,3896,430,3429,3057,8596,8818,8941,202,5951,2785,5120,8771,2766,7150,9606,1160,3265,6965,8877,469,5925,6111,7021,4050,7672,5796,7037,3501,1146,6089,9016,9897,9222,8071,5418,115,6158,9624,8977,9242,8054,9255,565,4521,5391,457,3205,8872,2323,5713,8837,8991,5055,1765,5120,9012,7925,4753,6899,7072,3629,1796,1480,8404,4739,2372,2567,3564,1552,6962,2223,424,5368,9017,2995,8637,8114,4265,3453,159,5370,2819,2900,7204,8915,9168,7484,2497,4484,4387,762,6520,6543,419,8399,7771,3806,1424,9206,8967,123,453,4128,7468,5666,8578,2188,3386,5615,4312,1014,9594,6195,3837,7894,3018,8619,5324,6233,6306,1921,2317,5,3593,7961,3635,7745,8947,3324,5533,7909,7009,7645,2023,7730,8965,6140,1352,3252,3055,2997,7225,225,1163,1034,5229,4317,9070,9403,9212,215,4489,9655,8330,5616,314,9568,8330,4836,9371,2879,8492,7745,8183,2000,7738,8057,9572,3333,3409,9748,9069,4258,425,919,9062,5554,7841,3395,8445,3184,3498,8798,2985,8832,8910,1929,2586,9378,7626,3330,8997,4083,2401,9922,9228,9724,7952,1355,6207,8664,8630,3013,8697,4038,3466,505,3045,1886,4610,2490,4037,3957,7463,6074,4198,1260,7248,3213,2928,745,5009,3380,2283,3920,9306,449,7922,1795,7576,2023,9617,3754,3130,239,5176,8532,496,8091,341,4442,3792,3355,4559,1243,5081,5187,2064,6462,4847,9744,2747,867,414,4239,6634,4264,2862,1218,5937,4320,9160,7748,105,4237,9819,6250,3047,8384,5369,8088,676,405,48,7971,388,1340,963,2409,5955,9744,6056,6709,3981,7240,1091,9323,7148,6861,4812,9210,7736,5231,496,9654,1366,8839,1400,8173,1588,3129,4662,7000,5777,5480,2819,470,8062,4597,2815,9906,1730,9041,2116,3663,6080,6947,6031,4951,8581,7863,8779,2928,7413,2015,159,8841,6207,4256,4926,3956,5327,1298,6395,8483,4889,23,7095,5093,1203,4605,3364,5546,8034,3791,3201,443,590,3707,8215,6339,2027,3752,85,4903,2069,3580,1038,8420,6595,5127,9204,7978,5236,161,4107,8772,2329,6167,5848,9930,3634,5497,4265,2317,5303,3591,1885,5193,165,7540,6772,543,4375,9102,7752,7661,3524,4001,9069,145,6261,8598,3807,5702,3854,1646,8367,5357,5906,2425,2723,6403,4960,8264,2846,9409,3579,7210,3319,1543,3231,977,390,7490,3429,9085,6428,8961,6768,3841,6346,8770,4926,4048,8272,5993,9405,9159,1686,3738,5682,8914,1899,681,8978,5580,4548,4964,9615,7789,7649,3028,9782,2067,6847,1148,6664,8581,3713,671,6116,6121,5689,4451,5609,5927,2360,3354,4085,4748,9275,9627,3994,2243,931,9692,7485,3307,8021,269,4587,6460,9187,3959,3670,1111,4159,5383,6320,6026,1061,2455,8002,8753,1248,3004,8316,6704,2550,1658,43,5607,2336,5929,4242,739,9463,7540,2921,4684,4498,1501,5253,5711,9341,6432,2189,3864,444,8691,2464,9695,6862,9844,6489,1588,7159,4242,7831,2201,6469,7717,4671,2540,9600,7129,6442,8936,7026,3962,513,6701,3773,7105,692,5962,2916,682,3740,7617,8749,5407,9096,7728,7040,8634,2561,7992,7949,3063,8315,3634,476,7693,5674,7656,9758,459,7919,1796,1804,8312,172,3666,1444,5554,4709,745,8006,4470,7056,7832,6561,3909,3447,1633,3826,881,9376,4278,2876,6741,197,193,4144,4075,1646,4207,2205,1984,2281,2990,5133,2834,8060,998,1307,2701,5946,4477,2772,8299,9126,4552,5633,9235,5181,2430,5671,7187,4938,1812,7183,8131,1432,9434,8427,7497,1314,7399,550,6812,5324,6683,5923,7516,8676,8457,6035,6574,3657,4854,510,940,2846,5458,7224,3942,5258,1281,3982,6248,7733,6100,8988,6747,2011,2953,6281,4574,1810,5235,3919,9111,6473,6316,4823,1487,9848,3979,9929,5008,3616,8098,9342,762,3541,6713,6759,1180,5488,793,9280,9893,2176,9654,5993,5097,559,7667,6598,8759,9840,8811,8550,9748,1365,6103,796,2042,4872,4989,2559,3389,3774,9685,9396,3861,3063,8541,722,1361,828,4394,4827,5651,9597,4494,1650,1776,701,6653,3052,7346,2229,180,654,8794,757,7760,6728,7903,8589,4749,4440,7591,1501,6938,6563,2631,6443,5367,6326,3913,8936,1653,6696,906,4955,7089,4777,8807,4235,762,7112,122,8733,7077,3131,3743,9080,5344,8347,5662,1024,6608,6824,7835,9730,8193,6097,2774,9314,1804,6785,7618,869,3530,4704,1707,430,2716,9041,5411,6610,805,6549,7618,6827,8653,8811,6611,1351,1838,4798,346,8294,4952,4333,4120,7643,7135,7253,2481,4761,1361,6050,4951,9782,8571,5542,5060,5045,7475,287,2693,1126,4265,8491,6026,3273,3190,4967,8734,1760,8594,9825,120,6798,5243,6065,7850,1417,5387,5133,2122,1243,9454,3833,6180,8508,2298,1848,3700,9109,1216,4194,3428,9798,8563,8815,6054,6556,949,1724,2009,6416,7688,5039,2298,3327,5284,701,6502,1253,9357,8029,7131,7609,3677,9300,189,2851,5944,5578,7042,482,1371,5218,636,511,3637,8913,20,111,6174,7338,2592,3012,4815,7266,2525,3302,9864,7364,6282,7088,9746,7360,6432,5107,7270,9785,5402,7690,1347,1311,3122,6269,516,2156,2257,5152,1704,7965,3124,5778,2853,6934,326,9380,22,2398,6293,6691,6337,8663,5008,85,4842,7709,6833,2819,6024,8469,727,286,4244,894,1133,113,3587,4252,5192,6826,2775,7978,4941,847,6277,9770,3304,2526,1873,3762,5851,1385,2300,1717,7749,9802,9437,9239,881,167,3518,5646,6601,2988,927,3190,1789,4758,873,1413,5790,9074,6297,777,2666,4044,2581,9278,2653,8957,7791,327,88,2468,627,223,2420,1921,8982,2094,7597,5114,8974,6981,2154,6702,3735,1863,6270,9493,3751,104,4266,6299,9821,1492,6243,8286,4836,1092,1502,2480,4173,8769,3498,2831,9694,2859,5937,6005,4865,4490,889,3959,2588,1417,2911,1001,1179,2611,9710,1802,9334,209,2523,4275,3381,2927,7232,6848,9363,4579,4905,4564,6356,7023,9344,8122,6310,4253,9337,9824,1455,711,9046,6395,9468,2251,9761,616,8083,9451,6595,1943,3788,7552,7582,8276,6114,2890,8424,1746,2517,7172,5618,3854,7327,8514,2038,9279,8237,6847,8248,9895,7533,8768,498,1604,8254,3291,8624,5733,3346,9701,6451,7993,3896,1195,2739,1937,1422,1168,4634,7019,4550,6436,5179,2555,6590,9128,9205,8066,286,3561,6478,1083,1332,4567,3578,1784,460,8616,7900,6518,458,20,4112,541,4132,2518,6640,8584,696,5847,7114,4737,9586,6149,9673,7222,4929,1718,4682,4827,9760,9228,4823,2608,1169,8751,1469,3630,8602,2149,6181,9130,7194,9041,5275,8693,1991,5229,2802,5594,1267,4626,8699,6261,8296,4441,4056,6787,1285,8047,2813,2240,4603,8218,9299,8646,8234,5696,2203,3373,874,7651,6644,8865,9287,3016,7169,2557,2783,9771,4216,3669,3143,5650,7454,5482,6715,9013,8164,6734,8281,1227,5630,2934,5344,7820,6674,8686,7215,7435,4385,8488,1840,3829,2850,4990,3585,9161,5825,2267,9127,4269,9493,7814,6273,2367,4143,3232,150,9042,4199,648,7756,6682,3539,8662,2439,7255,5256,5475,5160,6390,5985,1908,1567,3554,7003,5200,3451,5142,838,9846,2279,1823,7343,8875,5573,5213,9604,2199,8080,8664,6992,5370,863,732,5720,542,5009,8599,8526,9306,3869,9141,9856,8364,3764,3047,3911,7215,6648,2676,7167,5246,3940,6837,6254,16,5941,5886,1855,3606,7226,113,4602,6009,9778,148,464,8887,9589,9543,5139,6744,5777,3628,4593,1550,506,6940,2714,2919,5199,3098,4640,7579,3369,5540,4761,9575,2136,4128,7620,8198,415,9791,2280,819,7468,5097,7676,3865,7318,1911,4982,742,5119,8111,1108,7835,9058,3748,2238,5521,6213,464,5253,4830,4490,1227,4737,1541,7297,4547,9222,924,1964,1165,5837,8174,9540,1093,5083,3299,3107,4877,4954,4277,2792,726,8834,9384,6380,6460,4701,1819,4280,3301,2936,9314,2020,2747,3760,3195,6994,8364,8636,3049,1866,8691,1488,2020,5578,1290,6434,7069,7757,3659,3069,6599,8211,4889,3945,6980,3874,4782,7330,1277,8238,3495,745,9058,2974,4881,505,2449,2002,6913,3517,3079,6149,1831,9671,9064,670,4263,612,3536,2755,8452,7911,5377,2658,4622,5383,4853,9868,285,6894,2489,4145,6421,4891,6457,2287,6735,536,9437,4789,3802,4250,3480,2411,4896,7988,1469,452,5504,7397,9648,5030,8364,6536,5846,1697,8639,3816,222,2513,7872,3599,405,5940,9709,3992,8246,3813,1455,429,2320,8872,8518,1433,5283,876,9349,5135,6161,1128,3814,9121,5505,7700,6589,1780,2858,7312,1661,3204,1335,2368,5405,1865,832,7885,8854,197,4852,1499,3302,1546,1970,8454,2813,78,2096,6302,3695,5869,8808,3004,7814,1832,6834,1099,1836,6967,8378,7083,999,4523,8703,5714,3251,5575,2046,7889,1220,6138,7498,8974,1408,8061,2449,2141,3141,1385,7854,8025,4908,4963,3958,5023,6052,8380,9818,8992,2182,6283,9932,3962,2136,4772,262,2293,8150,8960,9272,5339,2156,7915,2654,8021,7390,987,7455,1488,1340,1276,1348,2683,1843,1526,9935,5341,3715,6434,6151,2353,7572,2514,5302,2031,3383,1571,2922,1940,4594,562,8435,5369,2294,6910,3660,2364,6993,3160,5281,566,7461,2091,722,9882,9770,6779,5371,3529,881,2822,9050,3287,9741,4342,2766,5225,3477,127,3495,5985,3494,1415,6747,6270,8336,2274,9324,218,7512,8366,5370,7407,9871,8770,8608,6103,8579,3558,9630,6154,2823,1480,2132,6705,3765,2348,6082,8840,1424,1754,7616,4418,1728,2823,39,7451,2713,3357,3533,2545,9758,2383,8457,4419,6432,4119,2659,8738,7535,2893,6596,74,7761,8389,5846,6844,7951,9499,3264,8109,5645,5443,6702,1323,7801,7826,7536,8816,8565,1664,1696,5332,8670,9863,4593,3471,7331,9828,2217,3842,50,2440,9450,6839,3406,8523,7597,695,3392,4148,4135,2515,560,6335,7052,142,3106,630,1543,6591,8726,5953,9393,2849,3314,6908,2724,2894,2393,4497,9557,7653,722,3032,9872,4696,5650,1120,5902,7647,8149,4007,638,4086,3578,9237,4293,3622,3812,7072,7526,3675,5316,8803,3240,964,2685,3260,804,9898,7422,1158,890,6313,1632,1112,4349,2248,6857,8593,4680,7441,5443,5544,8869,7769,5377,2314,6868,6024,5530,2313,1865,3473,4305,4912,7188,4763,1334,1041,892,7938,6200,3571,8609,2641,594,6210,885,3986,6179,4468,4075,8034,2564,6220,4654,6903,2673,117,3797,9687,9153,5542,7813,9595,9740,7852,4664,780,7279,1478,5347,8614,5223,2071,2806,7479,5971,9929,704,4056,6661,6492,7800,8637,9962,8910,3560,7812,6119,6311,1032,493,9411,852,3484,426,9087,2708,3376,3954,8121,3853,7476,6736,9857,7133,9424,7393,3321,3028,5886,2185,4894,4433,3516,6708,2836,7775,1014,7594,818,8611,4355,8700,8394,5274,8142,5521,6902,4392,5753,2143,4371,5692,1067,4095,6183,5195,1431,9790,4809,3882,4523,2606,1435,8693,3249,1352,3927,2957,5964,9305,1676,3548,2179,956,4007,1490,494,8976,7716,6331,4733,732,4154,1804,9394,4480,8902,5819,1335,3827,3494,9938,4796,6633,4809,3500,813,1246,6429,4801,1330,7693,3409,3967,1992,2884,4642,5658,3767,5080,1343,5594,824,3896,1457,6256,6238,9906,1883,1982,8738,7994,9759,3160,4969,7594,8784,1175,2884,1929,7053,7612,1041,6813,2372,9302,5697,7273,4028,7743,313,2838,6002,3122,5778,2995,5219,5327,8957,4163,1866,5702,3069,2456,4098,5215,3671,2500,946,4880,7137,1420,9861,3264,8001,9686,9920,8679,2837,1533,1423,5110,8271,2522,3690,6579,7939,2742,140,8508,4407,3763,8958,9442,4581,1937,5491,7646,1512,4102,1190,2576,6870,7867,2690,5739,6517,678,3958,1060,1659,8371,77,6248,1549,2953,2814,2860,2091,9114,5692,9064,4317,9950,6691,1696,903,6696,4461,3716,8599,2429,8416,8137,3094,3380,566,2185,9173,6185,9419,5522,9465,8084,570,8219,7855,7882,4258,6519,9719,9150,2009,5364,434,2771,2831,2978,1728,7170,1203,666,6073,3966,8249,4043,8102,4779,7155,2935,6384,4608,5219,5030,9305,7171,1325,3236,8884,747,660,6513,4491,2739,9529,8212,8165,5850,690,1489,6119,6952,1800,7738,581,5776,7163,8244,8682,3595,6202,1875,2849,5712,2613,3494,2454,4276,1461,5938,7656,1572,9019,6522,272,9615,3387,5465,7861,2137,8509,6546,5893,884,6526,7170,1304,1965,1932,9595,1177,6500,267,8244,2651,478,3439,2979,9836,9107,1457,142,7723,6101,3938,476,32,7821,2132,1972,498,1766,4738,1037,2751,9033,8070,8878,2591,8022,9972,2354,7133,3420,2257,4233,6098,9165,2603,255,5966,7796,2345,5896,3590,5102,8995,8962,8983,9307,7149,6480,6611,7190,9129,2221,8378,1671,7749,805,2749,2379,9210,2060,1985,3709,5697,3477,619,8461,8149,8873,4704,6915,1968,9179,2322,2970,6564,5527,5095,8943,1416,9853,5296,9259,812,402,4750,9869,958,1978,5902,5806,8495,8331,7150,6572,6962,7712,3324,3578,8463,5044,9537,3487,3358,1073,1890,3423,3821,9090,5741,9689,5157,5873,8667,4908,7222,5129,3681,4564,3890,8645,8166,1886,5951,4828,7368,1234,25,6005,8510,4224,6438,7857,4665,6906,7972,6841,7976,1579,7408,9179,5275,2010,634,987,2700,576,9326,7691,5954,3212,444,4750,6084,2223,7334,2164,1542,506,2434,8821,9775,8319,1474,8792,5061,101,7816,5893,2767,7204,3124,3085,5078,6641,4010,1048,6391,8614,1639,5399,2843,3778,8849,8935,4486,4524,4762,7547,7137,3729,7414,3787,429,8552,51,3418,3646,454,2232,1697,2961,3275,5336,7732,2221,6078,1978,911,8735,9833,513,4658,3013,5752,4399,5368,5538,3756,4272,2748,9838,7271,6344,8449,4747,1557,7788,4440,4470,8583,3466,6022,6716,3589,472,2286,7171,544,2625,9745,9811,7548,8759,1758,7168,5041,8303,8621,2198,1155,1820,8,6046,3413,4682,932,2643,1826,2816,9106,3940,9346,8568,5298,5104,178,3806,9604,4070,8135,1715,3116,3465,1459,6013,9748,1014,7553,7920,4228,4480,8429,6800,7694,8414,1534,6805,7968,7661,8842,9064,8173,9040,1742,4476,7599,3499,4568,3773,5906,3296,4168,8134,4715,1966,2990,8850,5122,9186,1442,7746,7017,2136,2488,3739,9491,9951,7663,2248,8295,5882,4360,463,1854,7612,6477,5781,4018,3166,3347,6540,8845,859,2179,1070,9091,2205,603,5242,5508,2320,6077,6921,7606,5632,4842,927,281,3213,2648,1344,89,4343,6986,7970,4934,6915,127,9724,9222,5114,7726,2191,9581,9764,686,4151,8114,3372,6628,3377,9132,1190,459,2115,6930,9595,6190,6313,8543,966,3523,2389,664,3339,7056,8678,5275,7538,9915,8481,3440,4410,9160,1994,5721,4411,1274,9948,7812,4956,2290,8748,5501,8136,447,488,6543,961,9033,4436,5196,5183,9581,4172,2374,8550,1479,206,6735,4840,5910,219,8836,8857,2383,4091,4836,9726,9925,8069,462,4687,7009,8555,4878,4205,5381,8980,3549,5998,5037,11,8801,3449,7108,1007,8280,9349,5430,3888,3617,5281,3985,5279,1220,6955,7032,1075,8358,1332,9252,4482,1733,1321,4555,3782,4571,1479,4090,1071,9736,8914,3044,1270,44,267,4106,1196,7113,4220,838,4582,1270,5375,2448,657,2171,6955,577,5830,9469,1613,8038,706,8678,202,218,6747,1632,3038,3288,2697,3446,4572,4460,9483,2719,6334,3954,4418,8772,2312,968,2794,8055,1324,9487,7518,6584,6403,451,94,8721,7429,3703,8998,2780,7671,585,5589,3259,6378,7950,6225,9160,6099,430,2469,9479,9954,2459,7709,2717,2809,5863,1307,5892,70,1690,1513,784,7162,8137,6125,4953,1862,6683,9954,260,9079,8808,3299,8305,1945,811,7284,4021,5133,8553,5484,408,5968,3696,5184,3121,9773,1612,5178,3198,581,4260,2340,6309,4259,648,8081,7565,9990,8671,9998,5517,6141,1213,5011,4477,2901,451,5347,5606,1190,9504,7051,2204,2037,1237,8373,3190,3407,9286,8830,8532,9700,4017,4134,4335,7422,825,8350,6233,7711,2339,5537,9426,5317,10,6125,9576,572,2242,6883,2225,5065,953,47,9551,5317,5016,9898,3200,1177,2599,7869,8255,3493,6010,997,5861,9771,9416,2446,9352,679,7083,617,5018,9591,824,3766,8743,8232,1264,3559,6244,1574,7698,6101,2044,3937,5590,6451,1740,2774,1163,8191,3500,4104,8646,1078,8493,5468,1920,4092,4970,281,7232,4985,9478,7207,2057,4333,4636,7268,2947,8722,1423,6789,1138,9863,3590,5801,509,5925,4944,2791,4456,6308,8323,5912,3158,6728,9319,7007,3283,4119,5901,2921,7805,3329,1045,2117,9856,4456,5910,9495,8788,5824,9791,9160,3468,6631,5134,6783,6171,4152,9419,4873,526,213,4766,4705,3508,8025,7988,8678,8441,8351,6086,4861,7834,9420,4490,7735,6323,4860,7174,3717,8019,6581,8998,3093,5739,1186,6787,8554,9396,3804,263,1239,1921,5213,470,2974,7523,2690,4683,4470,3316,2752,1718,8132,8568,2167,5524,7499,4219,6890,1335,2227,7578,3416,1412,5259,6342,3480,1990,9873,9540,8619,3729,8959,9654,7183,5146,4267,744,9973,9336,5887,8907,406,5567,809,5313,4658,8714,3632,9421,1347,6128,1030,7201,2422,9396,6618,8746,7530,8789,1832,5878,8049,2514,8624,311,9802,7959,2598,1654,7681,9672,7664,4120,5609,776,6575,1798,433,557,478,2706,6742,9604,760,8796,9423,8899,4744,3875,4464,196,6319,5410,6628,7652,8081,5720,2012,4847,3561,1504,3227,279,38,2545,5312,1344,951,9283,8558,5197,5116,2352,7322,9420,6501,9640,9974,577,1815,8449,3302,6146,6482,2541,5350,9215,3384,4015,6776,6959,1480,6780,545,1909,337,8645,2050,7792,2432,1768,7338,4544,9536,8801,1696,6077,4853,142,9436,6331,5509,1622,4351,6876,4511,6017,4112,4818,5788,2666,7715,3562,1654,8855,7734,6775,8499,3852,7360,1461,9964,3134,8944,9227,9497,5530,5806,4661,9744,8009,4405,2938,1932,9835,6859,6302,3840,199,2741,1382,8669,9879,9022,5767,8422,8908,4602,7266,9895,6801,1335,1180,5893,6252,9155,8388,3892,8346,5905,4668,1108,1129,8536,3589,7478,6396,320,4478,289,5101,6294,2358,8232,6447,4283,7054,5569,2931,4411,6506,7885,5799,1439,9866,931,1052,9517,6567,6338,5407,632,7972,3484,3673,3089,7472,9205,6062,3491,337,3025,7804,3129,8042,5317,1941,4147,3910,4261,4797,3493,4123,9416,5816,6926,3067,808,7176,5269,4456,9429,9347,6811,4302,7304,787,3275,3018,2351,4426,563,43,6455,9023,6429,5929,4508,9378,8219,9537,9438,5002,7669,4933,826,6507,3748,1418,2682,2486,4667,3799,2961,3667,8171,5039,5598,3286,3943,7345,3434,7763,9627,5486,816,5364,1495,9991,5244,37,6041,9370,4932,6064,6122,2790,3895,4318,8835,5428,8072,8585,6340,250,8442,1881,7379,5246,5113,9271,7600,255,9772,7779,4265,7510,5502,367,7104,1054,5723,8505,3300,9146,1073,8298,4960,1662,3984,2852,920,2456,5100,7514,555,5174,1712,2986,6668,8649,6103,1675,7100,2874,6317,6489,6941,1905,4035,7721,538,2152,4334,2948,3709,5044,5967,8413,9408,5673,4004,1050,3169,9330,2302,9957,9328,781,264,2420,4424,1799,4191,6061,7551,7951,2539,6297,6160,1669,8038,7739,4616,9773,6218,2957,1727,6016,4859,9080,699,2094,2240,8654,2920,7284,1632,7008,1605,6124,4620,6881,4344,1322,7698,2458,2547,8445,2976,5795,7089,9293,5674,5485,3467,2339,8022,665,5367,627,2925,5479,1733,2118,6568,4023,3790,5585,4134,3762,4912,5422,5946,8018,8854,5461,8189,978,1581,7559,3344,4401,6850,5575,9167,6480,920,8257,6947,4938,4193,6983,9557,7541,8840,3268,5230,3213,5757,1668,8686,1301,6274,7063,5160,2776,7097,4338,5111,1497,4122,7725,4386,5130,3100,6134,6303,7894,505,6364,8126,333,3129,2987,4473,7228,6939,3973,7394,3159,8902,3867,9513,2258,4834,1155,4876,355,9694,4580,4782,1261,6806,1285,7153,3387,3435,6489,9123,7851,3590,6922,1721,9152,2444,9877,319,9516,9153,8389,4975,3436,4774,4949,6185,6016,4228,5005,2266,3825,7771,7958,9379,30,7402,2828,4102,5466,843,8115,8707,7515,6077,9246,5601,8946,4222,7792,9085,6263,3661,1815,5185,2811,1906,6161,4502,3205,3256,2011,6499,613,3854,2466,898,7334,8448,8538,3784,5342,5402,2979,6912,3657,3502,9869,8813,5597,2366,4568,382,7309,9572,2840,5224,9283,5461,8340,8816,3378,4022,8846,5720,5858,4888,9598,6932,4344,7356,3237,5180,4060,6376,2688,9494,2088,6312,6522,2197,2079,4717,8692,8144,3845,3866,6378,8565,7782,4136,4,8284,9169,9494,6407,2755,9846,6567,7623,1492,9112,3110,5358,7599,7713,6033,8699,679,8878,6538,1587,9624,9551,1005,6765,4569,5541,6846,1573,6089,9850,3383,458,8055,8264,5344,8725,356,7617,4169,1108,8343,7238,1049,6092,2747,6191,9623,9628,6377,7135,524,7806,3139,618,968,4820,4559,8402,9201,2070,9102,9509,7932,3998,8737,2213,6500,7247,7090,6978,9203,4115,8239,2813,7463,5712,4492,4824,8478,6457,3080,2161,1787,8524,9058,7633,1095,8294,3881,7914,1872,6691,5393,1463,490,2410,900,1028,2602,4764,511,9183,2294,5817,1164,2838,3809,1317,4904,9401,2412,4672,7858,2317,5216,2941,8301,6303,1253,3763,8353,5765,1557,8739,1604,7742,5731,1664,2550,6540,1753,1267,3762,1921,4464,9260,550,2159,5390,1840,2378,7451,9410,5512,3551,9354,8136,3247,4913,1760,2968,8953,9678,9196,5345,8144,5046,3970,5969,3775,2285,7192,6208,8927,2613,3346,3347,7221,6577,7422,8761,8705,2512,9826,5397,7159,9503,4025,9720,8473,4530,7425,7534,5777,7061,16,8708,4444,8955,4261,5678,65,8262,2897,9551,2377,4413,4132,4509,9348,2392,2517,3901,9420,3970,6616,119,2107,463,1228,8277,2803,7772,1232,6920,1415,6618,4728,4255,9034,3389,2043,4067,9041,9893,2847,1485,4592,3222,5356,7358,9681,9813,8671,1031,9433,7822,5867,7663,2682,9124,9078,4515,7446,2447,1281,1429,5789,6759,9218,6333,3410,2514,2410,6423,8669,7807,7336,8610,5536,1880,9069,8272,257,8008,7863,3115,4649,8457,3937,3676,2149,6414,3828,1742,6665,4346,7896,5197,4870,9746,4346,3083,4610,1345,4057,4668,2901,239,7402,2556,2858,5817,7648,4754,7783,8401,7328,5060,5459,6167,1225,7288,1595,9411,6582,4111,4411,7496,5629,9424,758,9855,9209,573,5952,1457,4138,6535,7788,6354,5163,2352,5851,9426,5874,1623,4575,4030,1055,9863,3697,6183,9544,2099,3895,8417,4898,8723,8653,3433,3653,8814,9321,2279,9161,198,6159,4820,5299,2041,3007,6920,635,2860,2303,3304,5120,9950,5556,1217,3735,7030,6354,6844,2221,9630,9494,941,8466,6546,6686,520,788,4150,2504,3051,6989,662,2511,1660,7863,3438,8562,3181,5394,851,5455,5177,7171,1086,1050,2241,2241,8784,8103,4777,4347,2524,7811,8417,7609,8060,7028,4931,9611,9839,2939,8668,6002,4717,2260,7207,9979,8328,7741,9939,1914,5833,1284,1584,2053,4589,667,2644,3776,7383,4142,8586,1916,5783,4845,6187,4321,7919,7880,7348,5771,6845,3120,472,6450,2437,1022,6702,4756,732,5686,9580,890,4686,8671,8075,7980,6774,3601,676,739,2489,4023,7156,1284,1653,4801,8275,3190,9168,3347,2542,7794,9696,379,8268,9697,7723,4067,5896,8076,8654,9073,9758,8110,1931,5481,8987,6234,6193,9987,1701,7881,5625,5514,8859,9733,5655,7749,5100,4808,7150,9550,7363,5192,6810,9476,5145,1420,7438,724,5716,9711,5691,5399,4655,494,204,6804,8215,6492,7409,2492,8072,64,865,835,335,2203,274,950,7342,6335,7790,5766,9326,9471,7694,5468,7744,7731,4668,8282,8072,1686,6055,768,4241,6720,8480,6099,1306,1274,4493,7172,493,4471,939,7077,7439,2131,8903,663,2734,3028,1899,4427,6159,260,8910,8865,59,3782,1765,9368,7282,7472,354,1714,5765,8084,980,6277,401,1036,5030,9434,6907,9903,3171,7476,7221,2068,2636,2410,1434,3506,4899,4442,8239,3356,6944,7760,2672,2798,6345,7811,9305,6640,4549,5000,5158,1872,5580,5060,3629,2146,3421,3218,3723,7950,7157,2040,4586,507,180,1773,7499,9371,7504,9541,4,7908,2021,2597,4696,1913,9447,2174,5553,3095,3947,196,8863,9351,3870,991,7538,1821,5300,5758,5594,5791,9344,2135,7706,4114,1121,1244,9082,7971,9126,8600,2574,392,6737,9289,3458,4182,6803,1751,6781,5951,3583,337,9564,8480,7120,9478,9520,1905,9844,29,7014,753,3750,6953,600,8424,8531,6141,9048,6442,645,9944,9340,9512,3908,4428,6460,6987,2519,6822,7800,1721,7382,2286,8145,6704,6360,3450,8295,2448,9901,7293,3025,2807,9228,1115,5197,5069,3739,9388,5323,2961,9019,9887,9393,1141,7122,9060,1404,7681,6569,8292,1264,2894,9712,2137,7033,4602,9565,7220,4899,3595,2840,4914,1476,3917,9415,5741,3203,6805,7828,85,2982,4186,2919,378,3853,398,3621,6721,2531,9023,1622,5553,6381,1165,4405,8949,1802,1690,6562,1010,7808,3052,1474,8142,3304,140,4087,8814,4875,4869,9772,4850,596,1373,2376,6501,7215,7165,4701,134,1746,6419,8783,5036,4757,7712,7888,3273,9577,5419,2326,3672,8912,2459,9356,2761,5628,779,5559,1288,679,7399,8100,7940,6803,7606,8954,3333,9740,5042,6459,3949,3913,1146,6233,96,1033,5149,7622,6177,9791,8902,789,8156,3754,6851,6679,1796,5807,342,3894,7483,3693,1728,2566,6838,6737,2010,4940,2246,8362,504,2309,3809,5073,5766,7727,7313,7781,901,2270,4884,864,1217,256,7231,8311,7793,4970,5630,5679,5143,9082,3592,2137,8168,2522,736,1499,2145,8068,4022,2668,5547,967,4844,5024,6634,3712,6827,6791,5330,1068,1667,9569,2923,9027,8943,5545,1486,7199,7461,7752,9584,7101,6180,205,1541,572,9987,648,7782,9282,3104,8547,9016,5450,1500,2614,2284,2124,5360,4903,4402,9993,9194,2642,787,7682,1537,5792,8665,2890,135,3248,6944,7078,1917,6199,5982,6789,4606,4286,8220,8332,1375,5470,4797,5990,5484,5461,1621,6347,8135,70,2936,281,8983,4056,5075,2688,546,4059,6545,7861,934,1916,8203,5481,4509,4620,9109,6650,516,5855,238,4434,7313,7854,513,8812,3618,2543,6534,4589,2329,947,1874,3519,1974,8367,5560,7660,3700,172,8560,11,5861,930,3460,2960,4027,6412,2164,9815,6238,6052,9369,7175,1923,9057,3369,3656,1772,5037,7901,555,2437,3212,2435,1607,3456,7617,9990,9656,6978,3070,8117,4889,908,6702,4102,9108,6251,5477,7565,3512,3559,4549,2782,9682,8790,2350,9696,1750,2387,3201,4228,7244,2908,9340,2786,8229,233,604,5924,9687,8555,8983,3737,1482,1595,7411,1957,7484,825,2752,2908,7922,5221,3136,7805,7925,8116,9053,9831,1684,9653,6795,885,874,3998,1297,6802,5749,7473,3249,1650,9010,7345,378,6333,474,2213,8389,9766,3900,9389,6536,934,301,7858,4140,8956,7985,1000,7013,7383,3359,6005,4983,1235,2944,5504,7627,3850,6730,5115,2124,5315,5438,6219,8154,5248,5945,796,3481,7690,964,1536,2651,9713,1369,487,4947,6439,2676,7494,5879,4620,7831,9522,1540,5630,5002,3440,5298,6941,1639,6966,2256,6617,1624,9527,685,8070,765,1235,7264,3337,979,58,704,5095,4296,2758,8825,3271,6140,5401,9247,1629,2277,798,3122,6765,4592,6819,8991,6011,8638,3315,6723,6396,5836,2812,2093,4525,2596,4778,6055,3469,1130,3970,6851,2933,9661,2502,3884,8479,6321,1774,7495,845,6357,1575,4595,2438,296,1745,1651,8755,4613,5560,986,9120,9605,2095,2889,6909,3757,4447,1852,1855,1742,1134,432,2963,265,4254,6424,2476,4575,1545,9150,1162,9320,6864,9822,3555,1441,5636,1426,325,5327,5622,1385,2795,1060,882,4188,3131,4881,8175,5435,4765,5586,8606,7586,1466,7075,3965,7030,1165,5563,769,7903,5422,5709,4374,3635,3345,5792,8308,325,568,3653,4940,1020,9937,3460,8641,6372,2557,1618,1627,7561,2505,5872,1905,2233,7819,6649,6807,7164,8618,1967,2110,6726,2229,4048,5529,4174,3242,6400,2661,309,5688,6355,9084,1909,3406,9279,8746,8202,5605,5279,5180,6102,2028,8666,915,6280,501,5787,8485,2235,5597,4715,7995,6272,7791,6945,1415,7828,7957,4669,9478,7309,9990,2770,6076,2493,7724,6152,2989,2482,5500,3735,6903,3857,4621,5833,6648,850,116,4839,3308,6621,6798,5734,9416,1063,6846,2611,1909,8998,7065,3676,3071,4566,7703,9879,3443,5749,1385,5704,3539,2159,6534,6623,6705,5500,180,7159,9295,5094,8252,6447,2127,5513,445,8428,3948,3116,8668,4408,119,973,4518,8623,7148,7197,323,5296,3976,9816,2378,2586,9351,2683,1203,7772,5759,4822,2797,5487,8588,2052,3814,5710,1209,4603,9809,3246,456,2825,8892,4053,6451,4880,7739,7964,975,9447,3461,1410,6914,4183,6943,7649,3355,969,5102,8401,9941,7898,9020,7030,169,8555,7193,614,714,7336,7327,6695,9835,6449,5538,2926,2212,9358,3017,9084,3110,4937,9489,9983,2049,9052,1014,5745,2282,6174,6765,5719,9189,3899,2057,2829,6244,1720,8011,2084,790,5948,8360,1507,8706,9258,6680,7142,2260,3208,9769,6763,2442,7770,1087,7102,3450,248,4507,8988,837,1889,3097,692,3790,8855,6073,6170,4752,5713,7450,8976,3662,3933,8575,1120,6469,7643,2642,448,619,685,152,3593,8089,95,6004,1108,1145,2025,8910,9199,3659,3251,9454,8403,1995,837,839,4919,1734,1351,8452,4520,8182,3189,652,2811,1353,6516,1910,3318,7121,4429,5912,7729,7882,6696,4667,4202,7835,5070,1635,8877,8849,1448,1180,5902,7160,3234,593,7694,453,8180,2586,7684,1122,1646,7851,8851,7476,7437,6389,988,267,9723,3090,6955,2114,1062,253,4957,1743,2253,1632,6786,5444,2691,720,1491,7839,5782,2783,5716,190,3052,704,5880,7763,9673,8038,2690,3858,4732,5251,2292,9832,7428,1905,9032,3914,3121,3429,9959,3157,5772,598,4366,1621,5701,5665,7616,1125,8333,1150,4025,5293,4499,4291,8323,3354,9315,2356,5151,9365,6331,8797,3118,8666,4042,2465,7972,7256,3800,38,4533,2776,9717,5507,4361,3219,9894,8441,9233,8180,6899,5505,8636,9222,3185,8356,2296,7733,5654,8497,9425,6768,6727,5187,8099,1055,8642,8811,791,6782,2515,3914,7839,917,3083,4795,7866,4847,4701,4502,7886,5797,2166,6764,2470,1133,4566,5725,5789,3021,9756,6886,3042,5427,5565,4027,3974,6751,9947,1006,3077,3581,4742,1615,3515,9797,2474,2035,6787,2998,8969,869,9865,350,3338,8668,703,1631,1747,4,7629,9923,5302,1174,2290,6477,2135,5675,4995,2878,3611,8635,3993,5680,5122,9573,4796,3635,8052,9677,8990,2561,9717,8947,2968,8947,1785,840,607,5531,938,6456,721,4172,7629,1114,6706,923,3213,4583,1898,9637,4529,1103,4683,4558,1567,9519,2128,1384,4005,613,8822,5302,7391,8051,8510,9428,6369,42,4873,5204,8830,1524,4550,2045,9757,1931,9065,6509,1989,2525,838,9088,728,9433,5104,1823,9060,7039,9939,6708,7003,3215,2787,3494,9232,2116,5425,2034,2127,2616,9842,9163,1707,8423,1885,7449,1182,932,9898,1710,1162,8722,1949,9283,9386,8342,4675,8266,8179,5216,6319,9818,2981,82,3375,4950,3292,9806,1559,4894,2869,5441,20,3257,4782,6861,9165,5865,7657,5412,6881,3092,4115,8624,1830,7133,4657,4609,6406,5401,6170,4054,6553,7512,8465,3225,5606,9973,5865,9874,4728,7864,8533,2306,622,242,9469,6055,4785,786,6044,1462,9587,6533,8452,3059,4000,6957,2430,2160,7275,4105,5592,4303,3668,336,4026,8728,2645,8721,8016,9526,3565,2512,7834,4204,5757,7266,7128,773,509,9218,5133,8962,1000,4387,1644,6374,9368,902,1347,9983,3229,7305,2625,9292,6629,5940,593,5072,6529,649,988,4660,1627,5854,7458,5640,8370,2859,4178,1902,5708,4783,1721,1333,5918,4850,8083,9701,4807,7911,2347,5737,3876,5151,6101,7218,9165,4196,2741,2015,9030,1051,7729,812,3070,7846,8137,9681,3871,1167,8526,6514,9645,1205,4315,7851,7584,7407,2150,76,736,9960,7472,4570,3401,5704,5647,9054,6620,401,4495,5469,7974,2024,7941,7790,7778,9658,614,527,7222,2240,1033,275,4752,5022,7394,4955,8182,477,2123,745,6690,546,8974,1529,3905,7245,8129,1978,5261,2525,7238,1179,7831,3654,97,4800,9651,2735,2978,1537,1356,3217,8160,7626,5519,1436,6747,6376,6045,1514,3438,4239,5671,1163,486,3534,5652,8153,6085,9536,1119,6901,2889,3750,9775,963,9436,3733,4854,9008,8172,7654,9404,9052,1028,1296,282,7571,433,6938,6478,4997,9649,6459,2172,6686,7838,4088,6221,7998,6699,4150,1448,6490,9414,9485,2883,2979,339,4791,1513,5937,4034,1317,1661,2035,6503,5181,9573,7657,3748,4218,5224,1548,4395,2026,4891,2482,8051,545,1474,6085,3977,448,9148,7813,4841,8705,2225,2025,4403,3205,5654,4999,2073,81,5993,1490,3489,2409,7054,3514,5866,9169,5488,3423,7847,1979,646,6942,9181,4097,7585,4241,920,2691,2613,8859,2831,4952,7498,3530,254,4892,1672,8850,2329,3552,3308,3721,7274,2653,7763,7018,8242,6406,1109,1549,4577,336,6180,9080,8002,4461,5196,6047,2461,6570,9996,2889,1030,9863,5592,9193,5136,8087,663,6543,1178,6023,8631,1969,325,3998,205,7328,4065,8082,6987,6742,2381,2410,3157,5026,793,6422,748,2420,7108,8112,345,3041,9608,1009,4411,7036,395,6561,2677,5326,6397,3695,6705,7830,1940,9175,6863,8980,6718,3632,6681,9965,8078,6447,3124,8831,8641,2928,4327,972,498,4027,9188,648,3299,2560,1153,1779,5483,7482,4666,9989,3134,1038,9826,6209,2452,491,1787,8623,8218,3895,6377,9825,9986,3066,6931,3739,8989,9460,7370,3785,3419,6348,1134,2686,1415,1385,7054,5862,5695,1507,6658,9198,1522,4616,8812,5433,145,6470,7309,5540,7269,8455,2456,1719,371,971,6440,3860,10000,8946,2248,783,4508,531,2386,7529,3914,2656,835,470,6722,108,1607,171,87,5329,6316,5983,4949,5477,9351,7740,3582,2081,3955,7712,8750,6742,1271,1157,6670,5301,1288,3966,1364,1085,2270,1078,1426,3215,1748,1067,2037,5297,1149,1487,6485,2953,7354,6282,9402,6922,6237,7205,3840,3142,7059,9255,7174,254,244,7797,2929,2772,8639,7320,8008,8101,4716,7759,1241,7312,9110,1511,702,2763,8309,5502,8476,3940,6197,4840,9106,1758,5072,4954,5983,1610,663,9797,9511,3279,8044,5178,5351,2979,1668,2962,5862,3498,3599,1756,6864,9283,6772,4090,7394,8228,394,3864,6045,4988,3621,1301,3256,1540,5521,2900,7026,1719,8900,122,7561,5500,7422,6256,2719,9411,7689,8923,4514,9174,3191,4880,645,276,6929,7418,1515,9307,2168,2551,7002,7081,6722,9173,7775,6962,7184,3047,2787,6212,2159,9529,1326,6117,210,5526,6506,7600,3429,8090,5650,2253,9118,3686,9574,7155,7744,6731,6082,9624,3607,1073,7864,3932,2525,4008,9892,9489,2070,9068,993,5883,7920,3315,350,1747,8631,1116,1355,7,4356,5704,6091,7939,1665,8592,4506,7526,6928,2182,3127,5946,2674,3408,17,7732,8248,9479,6945,9183,3926,1923,1203,1667,4040,710,7399,4379,4805,4658,7121,8552,4618,912,3835,7539,3452,2958,2878,1207,6559,4676,8751,2143,8007,984,2783,6700,35,5376,6401,2149,4134,6132,177,5000,9376,6216,6139,6455,3460,9081,1095,7007,5600,9335,7694,6719,7557,3605,7077,7382,6102,6318,6326,4997,9386,1538,7292,9077,8690,7222,7732,3580,2272,9219,8667,9756,6615,5352,5530,2640,7912,3733,6630,4626,6076,3712,7876,422,6557,9269,4365,8177,5762,712,605,3764,3944,575,8799,9507,3116,2363,5256,7812,4684,3188,3264,9485,9411,3793,8861,9221,1611,4538,5537,4934,1479,7558,7097,9362,2385,2244,7006,965,9496,8230,5638,5983,9719,160,8431,5142,1282,434,2956,2957,5009,6076,1117,5354,5079,37,8346,9140,7275,2467,9215,1282,6251,7259,3472,7331,4902,8765,2640,1599,7824,3558,1152,3763,2664,4896,3618,102,7710,2995,5830,6286,1379,4807,7424,6581,995,7302,2735,3211,2425,7,3214,435,7039,4288,8194,8892,3292,629,8877,2331,9677,5544,5333,7742,3266,3795,8821,9999,4988,1913,6263,9300,5966,7657,9454,2221,2799,9267,994,8510,610,4084,5895,7040,2486,3713,3979,482,5551,2453,8868,6390,2770,9524,2487,2583,9937,9665,211,5470,9710,111,4613,3821,7037,9468,271,1501,162,7201,6586,5834,9785,3687,8682,6567,9842,2086,1041,9674,4540,1200,2733,5336,6090,2383,2091,2964,3671,6185,8342,1575,5005,3398,3198,2672,2963,4174,7606,5487,8678,1722,3291,1958,4111,682,9411,4520,9697,5931,5238,7266,9071,6344,123,5702,54,2963,7805,3195,9083,5126,299,2014,5097,6491,9945,7121,3691,1855,8496,9734,482,3333,6037,5947,3056,738,1435,4689,9505,3418,11,1334,9039,4214,2452,9676,770,592,9965,9208,7242,7837,7364,1859,4089,4962,1338,8299,7591,3914,972,1664,6395,3364,6202,3120,7986,9396,4350,1448,557,6236,3103,9436,2092,1325,6894,3465,6226,7672,1632,5285,7592,2797,1880,3982,3793,7848,8121,252,7590,3564,2590,185,7754,6003,9005,3018,1585,5996,2897,22,7024,8259,6824,8712,7344,3279,4624,8140,1561,8933,8026,6232,977,6271,1295,5216,1514,4705,5,5597,1978,6684,8551,1419,8836,9873,3503,3731,7157,2764,5264,6955,5469,9734,9685,3446,2731,1881,8567,1717,1253,895,4661,5493,518,1919,63,221,4827,3340,9961,2997,8305,6230,7770,762,439,6721,2286,3349,3230,2709,8548,9825,248,9006,6415,4586,1464,1210,3976,3100,5519,2705,6978,635,4105,2205,823,9676,4430,6363,3627,1214,4034,7766,113,9437,5054,9660,8177,3317,2032,6033,6773,849,3255,4003,4680,4718,8098,8249,1778,8378,3246,8655,9475,9627,2463,5558,5948,5384,6808,4575,4455,5780,8645,4716,6096,5631,904,2540,3343,2895,6208,3444,7345,6222,5271,8287,8158,1117,4320,970,7922,1867,4530,7204,7242,9023,5536,1065,4713,7142,1912,8222,8864,3725,9390,5254,235,7477,5851,2774,7699,2051,8668,6793,9844,839,4649,3532,9298,3387,500,90,7663,4353,1552,395,6806,1603,1726,1004,214,3974,4460,9474,5636,9687,1706,4521,7595,7481,6278,7569,6484,5669,2730,4887,9946,6315,3892,1795,5261,9895,760,6379,1670,8983,2388,1067,2126,5436,326,14,6386,297,8941,2771,8375,9357,614,6766,9068,4355,3397,3882,8704,5908,8404,6691,4523,5728,581,8862,1465,7588,9398,2476,9587,9098,6686,7854,7741,9587,9998,4438,6975,1257,6915,6195,5500,3077,4687,4600,381,5716,2333,4672,4304,4590,2197,8469,4895,3164,2938,6823,4013,7619,6175,6072,1420,6518,4535,742,4934,2613,1165,6387,4602,3894,2829,7122,5783,9507,3363,7804,4745,4234,7217,7786,265,5170,552,9726,1825,6165,1756,2737,613,5921,1147,6278,4486,3627,7454,8600,7727,1657,3696,5032,1240,6337,3951,6319,6230,1162,4535,4570,3441,8440,8410,6297,3809,8970,1580,4424,2020,4591,1854,8384,8333,4176,1581,5756,5292,4958,40,6485,8156,2182,84,5,4847,4217,8392,3216,7463,8063,5030,4072,2178,2868,866,8858,8525,8013,9240,5670,3925,6225,8189,8654,8669,8586,574,2152,2414,3245,8985,9875,4450,9634,7204,8516,2099,3098,3405,8578,7425,9596,8328,5569,137,398,5771,428,448,2408,2812,6064,4291,9150,3853,2765,5816,6388,2388,5382,9934,9367,1255,4763,3042,5489,2385,3239,3625,7555,5281,8070,9550,7824,2163,2575,6015,6002,664,2129,3774,4667,7223,7422,3449,6945,2415,4939,4951,3616,5403,3217,4446,1054,5699,8638,244,2650,2378,9738,1599,2567,1746,8409,9619,8383,6485,1605,5612,2797,1575,7024,1527,4802,5092,6035,3698,1960,208,4526,3651,9415,8934,5206,9473,5221,3333,5826,9744,8867,4358,8170,8893,8195,3907,1673,973,50,3137,1498,6038,6395,8163,9750,7288,5551,3095,3780,4538,581,1135,6341,2827,1656,209,5463,6316,4617,1238,4124,5466,2076,9611,6022,7539,4966,7754,3831,2557,8613,9151,5533,1429,9848,2870,4564,5736,8765,4968,4156,1816,4081,8613,1193,4774,340,5077,9590,158,7411,9762,9397,3861,8246,3653,1372,6622,216,289,5674,7245,5664,9774,7616,5692,3601,6953,2337,9163,1315,6849,2508,8513,2978,4615,2065,9155,1186,8918,6360,734,1674,8307,8834,4694,4911,9580,2180,6050,3304,1447,784,9060,4898,6169,3405,598,1703,4386,3720,4770,5869,4,92,1170,5683,9482,9705,7101,1084,2082,6297,1604,2664,3368,4481,7909,7921,5634,3805,3514,1582,7925,5353,306,1677,6106,4272,6965,2981,7161,1804,1766,2363,7276,9102,2694,1049,5428,2811,3094,2563,912,3479,3534,6131,7777,7290,8377,4044,9311,4726,299,9297,3273,1578,4647,2437,4931,8514,7354,4691,6806,9917,2483,2619,3578,2368,7634,1400,4727,6187,6641,6763,5979,2068,7888,226,6919,4016,7302,9991,2592,6127,7721,8763,8018,6697,2867,2836,1093,5061,5824,8591,3317,3337,6202,9598,4803,4968,822,1668,1950,5458,9139,2397,1926,2884,2475,9772,1238,2296,1813,9862,3137,6409,6214,5783,8068,5141,8295,9055,557,4384,5955,8813,1973,5588,42,5603,2851,3278,6327,618,8866,6809,5351,3066,8730,4634,9667,6007,7951,7926,6701,8893,7277,8345,7076,2091,984,3387,8401,7164,553,8157,1456,3190,2702,5988,448,3544,9246,2903,8752,717,928,7185,881,6191,8263,8386,8286,5994,7393,5861,3857,1973,6599,576,1196,8291,1793,8950,8448,8549,6623,5150,5087,4508,4770,4154,1565,5364,2854,3789,1652,4668,2741,6136,9381,1234,2568,1571,6383,9878,9834,9137,63,7540,141,258,7025,9527,2525,2293,5220,7946,9142,6513,2353,5728,7869,3284,233,4463,7918,682,6888,1673,8923,1844,5001,9472,4945,9465,4323,9385,7232,553,7950,1987,6810,5556,3121,3266,5401,8289,3350,4135,4383,6859,4992,7795,6211,2755,9089,9838,9782,1781,162,3643,1923,7735,9060,3286,7617,6182,6728,9496,1440,1648,3285,9909,3637,8708,1717,3005,6812,6300,5917,3941,9918,9759,6721,1033,7668,1784,1463,3285,6935,9023,2369,3254,1847,2902,7184,2790,8139,5580,4876,6932,8043,1330,5280,1886,1114,9140,4741,8566,8766,4436,5714,8779,2707,2980,6686,2901,4523,499,8411,9594,4423,8843,4988,1325,5078,5646,7794,6054,3062,1407,1171,788,4973,9198,6757,8620,5038,5837,4603,7085,6145,2030,3423,9025,7767,5456,7590,2877,5278,8583,7125,7258,589,8729,6277,5804,5652,9817,4229,3667,4758,584,7776,369,6060,5304,4096,4396,5277,1377,1479,3697,9876,3859,1655,7375,6102,5294,3588,2266,1267,8757,6508,8778,4769,529,81,762,9310,5417,9094,2856,4585,1276,9802,6010,7804,6899,6007,378,8117,8441,3467,2473,1053,6847,4313,9769,3399,4217,5523,9804,4164,400,3729,6227,2206,5544,2983,3513,521,527,2531,9493,2110,7740,3070,1576,2464,5177,4772,7041,9042,6789,4546,9459,2185,6282,8126,1330,5394,4672,6932,6134,6472,7742,7203,8004,8781,1400,1043,9129,8222,1680,4513,699,7463,8001,2849,276,3001,9351,8177,8312,8518,8265,8962,6078,2749,2270,4915,9458,8241,9904,82,612,3436,4769,6335,7174,5337,1493,7199,9149,9946,3995,4695,8744,2746,9982,8262,6130,801,6898,9822,8963,4044,9260,8857,829,5745,4518,4301,3510,5927,2159,6588,3205,5662,2147,3349,3193,6056,3548,1367,2040,8500,6308,1131,4829,3676,7358,9504,5971,1467,2115,9606,6481,8830,5069,19,9270,956,1326,6327,3418,499,4298,7863,854,9938,7625,7712,7806,6826,6324,2531,9585,1698,1592,9378,4064,9014,6764,1765,9330,2699,6002,9049,1313,2877,4288,6403,5151,7936,5058,7697,377,1097,3691,6766,584,2332,223,9636,8024,4901,5618,3556,9860,4972,2995,2624,624,7882,8362,9407,1047,289,5752,1900,1935,5242,6671,2730,8252,9724,2725,7028,8168,9552,7913,3638,8062,8732,4434,8009,416,5146,3990,510,6618,3668,8136,9592,1532,2978,4547,1544,2148,4260,3169,3593,8786,2480,2005,7738,6176,4218,7450,3289,8040,9787,6396,7478,1950,1974,3227,2980,2323,5740,2611,966,3267,496,5708,411,4048,9930,8875,6626,8416,9333,5177,3524,3778,6357,6563,5533,8972,5461,4644,9488,514,1645,1206,8646,6060,3560,6416,205,1281,9821,988,4718,1088,6573,4646,2215,4020,202,1610,3755,6795,3880,7707,9443,2629,6648,6409,2170,4000,3995,8628,792,8667,8683,7389,3099,7346,4576,890,8876,1568,2036,5588,6878,3225,5831,7070,9365,912,8501,8289,8634,2684,4133,6848,8972,3974,7796,9919,6136,7935,4108,1521,97,8378,9344,1467,2594,347,634,1098,4032,3718,2830,7734,2901,2822,4402,2102,8701,4761,4284,5340,1248,5072,3190,6328,1533,8498,4719,7389,479,1349,6833,4668,1699,7419,4509,9541,8515,9781,6948,8322,6177,5786,6521,8369,6546,149,4450,2693,4126,4532,4030,7678,3614,6587,5918,877,5343,4285,9319,1744,3587,3980,2792,5029,473,5884,3042,8417,27,6848,2934,2166,9452,8183,5209,7299,9911,5960,3025,1672,453,9370,2938,4459,2316,7992,2290,127,6958,6655,6426,4547,9846,2705,169,7926,1951,4868,3109,7330,2736,708,5013,5141,3723,4372,6431,2190,7703,1126,5417,7454,8136,4736,3940,759,1869,2498,9363,837,7253,1426,1620,3376,5941,7783,7722,9314,5101,9832,9517,4951,4994,5408,6215,5283,5906,484,9003,5505,4899,5786,8864,5101,2532,9755,2224,4251,1865,5599,6217,2873,9527,9833,8953,3069,387,6421,6880,9420,9346,6235,4139,9884,6176,2947,7835,4490,1202,7127,5980,9968,139,1917,5012,5919,1474,18,9468,6008,5217,7772,1296,7942,7887,9949,8322,5430,9720,1627,6751,4384,2628,8452,7444,452,8891,3877,3722,1184,6786,8622,1969,8778,9925,7822,4128,7734,1262,8294,7488,3622,8679,9313,440,9266,9271,1097,6748,9007,3455,1120,2226,5477,9643,1063,8446,9005,2282,8592,8540,396,1088,5881,3267,3810,6911,3351,9096,4862,1976,9587,5270,6,541,7478,6018,3492,1870,6166,9982,8406,776,5219,5271,7720,9732,5113,7103,9730,8143,708,2038,4526,1872,5698,4707,9397,2356,4890,1352,1812,4912,4611,6687,1860,7040,5456,3130,3789,9404,8086,6308,2661,5035,4190,8682,6261,2236,9408,3531,5023,4796,2545,6977,5078,8821,5909,8035,5267,5307,8038,8659,7654,442,7276,2653,8201,3822,523,3815,3577,1133,8685,7091,4190,7659,1397,6424,4708,5117,1404,3265,3706,3053,7531,7752,5550,7105,5214,6260,4370,613,3311,7751,9001,6039,3245,140,4564,3093,1644,3956,2262,7534,6528,3222,9757,5500,563,9729,602,1955,8126,1066,3183,6173,9626,6964,6110,7342,6725,9680,8076,7779,9645,9521,5631,7217,8220,5989,6317,4461,6438,1377,6216,8379,5226,2294,2008,5439,319,3257,2066,1109,9239,949,4578,1298,6873,9433,2678,8144,783,6270,1374,5032,4326,8376,569,6820,9389,4489,8295,3417,6213,189,7944,4102,4670,1562,4943,7934,819,799,7548,5232,9564,3764,8317,2289,6400,51,4614,8528,3049,9812,5065,1377,9294,2165,2963,2841,8009,4217,5556,2884,9093,5812,9778,8263,7320,55,5161,183,5604,7533,2828,3503,4557,5948,4809,3277,3516,559,6400,2435,733,9016,2525,8641,1952,2123,4295,5806,7215,7646,7377,9519,6782,6446,463,9427,8598,8932,6062,1570,1843,1043,9010,7414,7997,3980,3973,9532,9065,6548,9582,7760,9436,3317,2609,3779,6542,8450,4576,8506,9858,2140,1633,3833,2408,259,1573,6392,7840,5383,1061,1755,3703,9082,9552,3940,8007,1981,9148,2439,1908,5138,8857,8679,8495,5214,9349,5132,5172,5237,8115,3509,3874,2350,3201,7293,752,9569,9142,7202,9010,2660,3327,2073,30,3165,9759,1190,2906,3202,3630,2918,9753,9349,738,9966,883,7540,5729,3747,9963,6034,7428,5844,8282,2001,5883,2096,9377,7448,430,6524,8293,3405,2408,7195,5299,2093,5271,4563,8334,3552,2543,7775,1030,2437,9292,2612,5245,3640,1558,4163,6063,9610,3093,2013,5567,5678,493,5879,5787,1151,1553,3556,800,9843,3446,5471,3889,7431,1722,4373,1461,8011,5057,2255,9863,716,6302,6188,6858,1714,9202,4036,5277,9942,8333,2403,7519,4039,7224,7819,9800,8563,1937,9231,8941,2548,7819,4706,1897,5695,927,9463,7337,8547,98,1342,4868,5769,6036,3690,3927,6601,4519,9082,9972,2434,599,9451,3959,9986,3647,3486,9800,3433,13,1784,2634,6570,8887,6689,5684,4252,5663,342,7399,1523,4978,9036,294,5776,5578,5149,3160,280,8881,2825,2275,4494,3713,7581,5097,309,7295,9565,2298,1783,7562,3113,5163,1603,656,2792,7217,8083,109,7440,9939,3437,8915,1581,4696,9451,3537,8693,3482,878,8348,4734,9806,3881,8703,5234,237,4740,1008,4084,7294,9391,9314,6501,6653,3851,8781,1065,2996,5651,7559,2181,4942,3812,2071,538,2857,3301,896,3525,787,1783,1056,2535,8501,4879,4756,3440,4611,8203,6252,9500,3159,7257,6067,6992,3252,3832,3052,8632,8551,8569,3044,4593,8606,6392,5715,7648,869,2523,7446,1329,2923,8551,5109,9962,6680,2174,3383,838,2355,570,2838,5429,8672,3494,1646,7474,5175,234,9813,1257,7376,7019,7013,7281,7805,1283,3312,4547,3210,2033,1731,2758,920,5510,9417,5667,4631,5240,9901,4343,4241,5973,2925,9877,2751,9487,1196,3542,1681,3521,6200,3066,4653,3662,5213,6653,7737,1702,652,8890,2460,9760,7063,1496,2854,9302,1547,3864,2999,546,2579,2875,4073,875,6134,3362,4676,9713,1086,6358,3571,7047,7827,4744,4713,653,4316,9672,7848,704,4490,9211,8775,7561,3986,6605,3126,469,3296,6343,1626,3133,1522,2800,10000,3243,6812,4658,198,1215,7541,4469,5140,8036,3987,4091,7980,7795,7952,6545,3815,6728,8319,5452,971,319,8016,3304,7496,6725,8275,959,2680,9019,7791,9518,8333,2090,3388,1453,9644,7084,734,9299,5042,4425,4040,7590,8701,8983,9765,6055,2950,1479,6895,1597,2891,2346,3839,9635,2075,7092,3893,1831,1858,498,567,3413,8972,8592,3006,9563,1351,6515,9687,4213,4373,864,1604,2158,1580,4851,7771,9295,770,3547,9545,8146,6608,7996,798,1892,6604,3726,6953,4489,4812,5626,1106,6267,5728,9977,1539,7540,8350,9147,8639,7866,402,6547,7459,7293,3383,9648,9576,5007,8552,847,5211,379,8522,4111,3715,8108,9113,7709,4804,2114,1667,8725,7766,8766,1656,23,8520,4382,6582,2507,9008,4560,6266,1165,137,3290,339,8519,7626,4965,4155,3939,2763,1691,7746,8510,9831,2238,1790,2981,6308,4095,6749,4962,4759,6523,5535,1811,742,2625,1834,2935,5374,836,3489,146,9201,5334,7747,2039,4846,8684,7848,8031,1255,9260,2860,3284,8947,9915,45,5649,1923,1528,5334,6811,6543,8042,7125,5169,1042,154,1461,4812,2889,3766,7088,7258,7978,3601,2665,4659,9479,1577,8482,6263,8687,5222,1480,3207,5033,9547,8827,1685,601,4246,6826,1815,4662,4931,2470,6592,557,4471,6830,6016,6905,40,2581,1387,1151,3284,609,9451,6577,9657,7498,575,1041,6911,2998,8005,6115,2385,7875,9108,7581,4014,7377,8074,3072,2436,6016,7131,8703,7320,6438,7524,1265,471,9266,2407,8442,1209,7502,54,840,2735,723,8354,6007,7412,6721,429,3312,2406,5016,2232,8105,9770,1609,190,3691,6723,2308,1280,6453,4063,5014,4929,1749,4000,4079,136,2055,5313,1334,8111,1700,6129,3520,6223,5992,8062,2124,6450,8959,316,615,9371,4998,3938,6134,9763,4685,8107,6022,5804,9951,7417,5306,1815,112,58,6052,5061,8426,486,1636,2122,3963,5905,4861,7121,1196,934,7698,2854,1927,2503,753,9808,5458,9393,3972,8882,7418,5524,9375,5590,5033,8938,837,5672,2238,6355,379,9561,2440,5001,9636,9380,8184,7578,4310,2140,187,9702,2849,9156,6432,5290,6563,2500,5195,6963,2536,3858,1591,795,9291,3860,7415,6953,6101,5395,4946,2681,6662,9392,5859,4698,7009,4194,5867,6409,4062,5449,5849,1259,1459,9843,7241,2414,3655,263,630,4504,7538,3454,6988,4374,5521,4492,1087,5354,6930,8111,4043,8686,3194,7688,5961,1451,6378,7053,5160,2587,9442,7037,3328,7803,5562,8003,1872,5893,5606,249,375,4788,7416,8356,5699,2518,9779,6716,287,195,3487,7730,8486,6703,776,3625,1700,6748,9462,8682,88,6707,853,3256,4177,9748,2994,2668,6250,1256,434,6404,6798,770,9719,6782,680,8483,9051,1974,4471,8509,6009,1786,9134,6789,2705,7770,5044,5908,6690,8788,8039,4316,6074,1052,8611,9656,3841,7875,99,7164,7837,8655,6924,8982,7895,1155,1123,4239,5208,4683,2357,9513,7391,9583,4944,7593,8518,5534,3182,3035,2458,8306,6087,7259,117,403,4829,262,5899,2223,493,8152,9080,1266,293,89,1843,7486,8864,5158,6616,3268,6295,3438,819,5524,2444,2170,4419,8573,8737,3767,3483,5503,499,1440,2553,5547,6046,55,6091,6987,4922,7949,2732,9884,376,5822,2097,1475,1712,3951,3636,1969,315,4456,1331,9124,6123,723,3324,7398,6420,3796,5890,2110,5248,318,3273,7541,8123,7641,6857,8950,4939,3071,6247,6070,3653,679,4592,1708,8184,3553,1594,5776,794,635,1228,2521,5859,4652,4491,6426,3722,3411,3932,718,8895,924,3230,6804,8722,1047,705,4253,2632,6192,2019,1320,3928,6549,7217,8617,7219,5401,269,3602,1517,5651,4614,392,8583,6342,5722,1794,3222,3847,7873,9487,962,594,7349,8698,1878,5056,9786,1996,1406,8478,6338,6301,854,9996,8431,1370,3410,4406,6408,3035,7977,279,160,2819,6555,544,1763,6684,3762,6277,5349,50,9695,5861,667,4995,4852,2218,6997,1281,8819,2345,3470,9371,642,6322,7882,8503,7491,6938,4403,8691,7271,7849,1800,1567,7385,8029,5502,4227,4168,1311,9376,2192,4054,5584,4763,2093,7280,1176,7969,7146,9417,8152,3783,4834,31,9678,2601,1214,9541,8044,6454,176,6446,4455,96,872,9292,2109,8376,4696,3943,9271,736,1076,5047,2817,696,7396,1087,4574,6268,2679,2103,5947,7706,9992,1447,629,2775,5189,9595,8177,3379,967,4630,5219,7462,6316,7775,2225,4225,7706,5199,2801,3491,8571,977,4469,2406,4992,5709,2144,7581,7088,591,9712,3197,428,3025,7299,4579,2243,7112,1486,5412,4737,8552,6329,9907,9058,4350,3375,7977,6012,8225,1638,2252,9949,8967,2443,3720,9786,4689,2443,9987,4615,2040,2968,8531,7000,4944,1430,2118,9094,3785,8213,1099,915,6660,1029,6452,9337,473,4394,5782,7208,8206,3042,9990,9748,3543,3965,1493,1728,6217,1721,8920,7675,3304,4003,1579,2978,6516,2914,8792,7060,652,7123,1911,8483,6124,364,7211,6688,3528,7474,4473,3348,9459,8323,6270,2529,7057,4347,7348,7143,735,5918,772,6776,8596,5864,5056,708,5762,8493,7906,6094,6763,4183,8612,2940,3535,7498,2587,3561,1539,9355,1299,3257,851,4149,6779,4438,5817,7220,560,3392,5672,5485,9551,3919,141,461,805,6301,6577,7564,4693,3889,8143,4869,9928,7876,6836,693,184,8508,1076,390,84,4020,4291,3619,6214,2645,4777,277,3772,4411,4956,889,9331,7776,6556,584,3973,3700,299,4840,2697,6342,7619,6398,5237,9724,4727,4146,9054,2834,3727,8493,7245,4897,3825,4455,6543,6781,8363,7601,666,9866,673,4075,4193,1634,3128,44,1422,6788,1997,8545,159,6493,2391,9079,696,1940,92,4586,3308,8916,9128,5537,5621,1346,7303,2263,268,921,1819,7598,4524,3244,9829,5769,7409,709,9839,7405,175,2105,2904,2549,221,5615,1637,8673,389,9086,243,547,229,5609,495,6255,2351,946,7454,5980,7898,9487,7376,5021,6625,6497,2737,2572,4386,6794,4621,4300,4441,3803,98,3619,4624,7717,8700,4968,300,5053,751,732,7829,9050,6783,7794,5626,992,6188,8212,2223,7276,9097,5412,3576,1566,9171,9549,215,1948,1650,3239,7523,6066,9207,6395,6816,8427,790,7834,2462,3097,4954,4228,3723,6139,7405,5914,7753,7907,9339,9871,5442,6482,7102,2988,4647,371,9859,1107,3589,1081,8217,5766,5900,9849,6672,6547,3284,8041,3271,2052,5952,6139,6624,5772,4093,1869,7230,5007,3485,1762,1694,4630,6163,5052,7273,5504,1026,8030,2818,4404,2145,4814,8768,2843,8493,1527,1792,1714,5658,2502,7111,7317,5703,1048,1780,75,3868,9485,2718,4303,1518,47,914,2320,94,2333,6780,7904,2335,9574,5134,2583,9701,3029,9180,1454,8182,4659,3797,2035,8467,1378,5279,3669,8785,3478,9816,4678,6219,193,4982,9497,7877,1327,3942,715,7096,3879,5797,1459,3726,6890,9504,4706,9773,8532,3074,7506,3511,5014,6661,9830,8884,5245,1435,9339,3128,9392,8809,61,8389,3025,785,625,5585,9869,4115,8067,3076,9800,7510,9753,2907,5647,8609,4271,4984,7635,9576,8216,7606,6108,3246,7416,6618,5587,4793,7649,9347,9210,2639,5014,7116,9060,404,9562,7843,5483,9545,7838,1272,7029,8991,9459,7425,9789,1763,4359,4761,3564,6913,2643,2733,3848,9537,7830,4111,3670,5588,4912,9684,9319,9640,4260,2688,8411,1982,5145,4578,3199,1618,7179,4335,1853,7803,9958,3813,1264,1598,7039,535,6584,6356,6967,4969,6949,5302,5343,8692,3045,1676,1795,95,1249,6671,7495,3182,9076,9983,6991,9203,193,9774,5250,6833,2905,957,8767,3671,1665,7227,6114,8661,2535,3111,9156,7864,3815,6998,7529,6669,7583,3666,3075,6225,8408,4238,5898,4687,684,7847,8461,1256,7407,9165,8187,8420,4311,1488,1636,7631,8012,4127,8488,219,2514,1421,4058,4578,2792,4663,6896,4498,5379,1297,4246,6095,4500,3362,8707,8655,5781,2595,2788,9642,2004,7699,8377,1741,4115,3884,2664,6047,498,3897,2536,137,9443,3832,6616,2610,6958,2314,6533,1363,5667,2068,4248,6633,381,86,3140,7857,7336,4214,4110,3901,7609,1072,7297,4254,9929,6961,8468,5928,4252,3435,6568,9811,2718,870,693,8285,6927,2103,7641,1392,5866,8966,8541,2100,4001,5452,609,9724,5838,1282,3051,4481,620,9981,5920,2146,9654,1473,7249,6874,397,9235,2698,5556,5533,4076,9213,5750,5049,3630,7862,2119,9004,6463,6398,4901,7230,1337,8043,4657,3829,6569,6106,1933,9775,9167,4187,1622,950,7659,631,514,8022,4328,343,2278,1873,4386,4597,5245,4484,712,6277,3661,8066,4869,2442,7670,3447,9786,8847,9318,7862,2133,437,4111,3897,3395,5813,9218,800,3946,7394,9753,9960,6293,2320,3005,5239,3366,5350,6954,7631,3041,8205,8511,9281,3297,8618,7758,5485,8039,5887,9641,4664,8268,8721,8168,2550,6898,1286,8958,3411,2692,5816,340,5882,2732,1895,5549,5958,427,6017,8141,5961,6074,5875,8063,6023,7466,2631,2955,5075,4421,6976,6590,2784,6103,5335,8485,1519,7548,6178,7189,9818,756,1069,7161,4446,7917,1606,671,2985,1234,3907,6252,8649,1178,8526,1216,8031,4671,7053,5000,6552,2415,5670,696,8425,1913,790,6519,827,1645,2490,2261,9182,4336,6601,8515,8442,8900,2590,8824,4542,7590,5792,3626,8466,3762,7277,2077,2123,6000,3389,9040,3652,5090,3516,119,2480,4469,383,1341,2379,9653,5050,2965,6806,9604,1965,6845,2449,7180,3946,8099,2785,2967,3224,3724,9970,3203,9476,5032,2812,8368,4848,8212,3862,6528,2089,3574,4190,4789,2522,5380,3227,3345,9866,5414,1187,2886,1428,3876,1198,74,4552,7775,922,4706,5943,1455,2386,1199,2079,5238,5518,4848,4266,9086,3911,2249,629,8959,6512,4367,8465,1715,7205,5032,9426,3047,3034,6047,3661,1975,1493,9360,4151,9641,997,7299,3080,5267,2952,2257,1335,6186,4325,8482,4434,7821,2582,7863,5568,8807,7031,8175,8005,5943,3676,2240,1309,8295,4869,6931,9887,7036,7898,2093,8707,9202,5550,7966,3694,7543,2824,5538,5869,4115,1996,2088,8261,3770,4969,1360,9456,3812,1709,1675,7528,1797,3166,3600,1055,940,361,1965,7206,3876,4881,7410,6345,4374,2526,4805,9536,8010,9010,2307,1474,4129,4417,3175,6746,7670,250,3164,8,2390,4216,8274,7508,5507,1802,19,4997,4483,7164,5971,1424,2555,2749,3254,2068,198,4899,3179,3847,7751,2600,9505,385,9764,6607,1399,1788,9179,5791,5040,6319,6435,2404,738,8304,9409,4783,62,7544,5789,8562,6543,9210,1421,7279,4854,5973,9086,7209,5190,7334,528,393,1020,6308,6315,4024,7637,9231,7479,2933,9561,1237,8453,7225,5484,90,4129,3108,4521,686,1174,7883,8009,5032,6950,4936,5349,6233,5554,965,7003,5347,375,8281,5675,9419,4489,2777,5655,6018,6268,8989,1805,2834,3099,764,6127,964,923,522,6499,8064,1026,6416,4706,5274,4204,9976,1269,6728,8682,270,5197,7690,2933,3442,1761,5148,4312,5394,8794,9408,7971,4291,4984,8013,542,516,5816,4716,7151,8942,8248,5972,6072,2341,2837,6142,1558,4686,5426,6106,8039,8036,1695,8871,853,3194,9910,4156,3163,1155,4481,9723,1150,8015,6250,7088,5859,3027,4813,3229,3928,1763,5463,3672,8687,7462,9770,6623,3052,4557,7974,4844,5839,7113,996,5708,357,6073,6395,2357,1967,8046,1406,7930,5477,6771,5251,6863,4295,6484,212,3269,3484,1259,264,2353,5153,1455,9585,5906,586,2352,8049,8541,4136,7907,7916,8998,9765,5998,1878,7544,4114,5400,8181,4939,2920,2306,3695,6685,8882,8730,5085,5880,8736,8853,3244,2031,2235,1182,8859,2812,1352,8098,3816,4481,4478,5312,5539,3690,9877,6263,6716,78,7621,3190,399,6782,4228,1026,9486,9779,9625,9444,2852,6434,9979,6521,5219,4649,770,3763,5258,4478,4245,563,7026,8208,7383,5757,4771,4751,5852,4622,843,3630,1741,9421,3857,7919,3307,3506,4333,1687,8682,3465,6723,7210,2530,8229,5179,2323,2287,6107,6398,1602,2080,2075,4560,5799,3605,2668,7868,7892,6362,2858,3313,712,7151,6784,1747,8458,7201,6853,6770,8076,1814,6145,2321,6746,4979,1368,7433,322,1048,1700,6239,9379,5268,6199,4172,2416,6198,1183,2448,5843,7635,1953,8118,130,3415,6566,437,5477,7035,3001,403,1029,1688,1606,2614,2621,1526,830,9311,6563,4670,9221,1628,9603,8404,3430,1,9884,1683,9578,7882,539,6165,9210,1998,7881,62,6650,4264,7764,8208,530,5663,9148,2964,967,2887,4831,3201,8267,1682,5299,3253,8823,6619,2,6092,914,9344,5230,2185,3783,4752,2928,4021,9707,2918,5937,913,2725,8728,2204,4905,6,9374,3102,9886,9757,4849,3960,7808,475,5459,7589,5914,613,1141,3222,7240,5921,5776,8285,5274,1085,7869,3883,6855,7829,6742,6846,6667,4020,3648,4984,5495,9246,5180,7790,1954,4479,9098,5097,2840,3317,654,8135,807,9186,7424,2100,7827,5449,3073,1785,725,4329,8710,242,5513,5733,4138,3758,7654,8668,2830,7888,1570,2943,6347,940,301,3063,3411,6091,5920,4226,7183,5839,8682,9681,3789,5778,5011,6673,673,8117,2873,8667,1423,1548,8178,3535,9988,9368,949,8840,3536,6591,264,2898,5018,4495,6675,3741,3778,9889,6113,5476,263,8402,9327,9438,1297,1095,9759,7433,592,733,6949,9212,2676,5936,6102,3045,9566,2609,7580,9981,8381,4043,8940,4391,3951,6940,3994,1585,5191,6739,2124,6827,5820,1560,5056,3993,3778,180,9119,1809,5968,1813,2133,6943,1259,7466,8246,6659,8154,1363,9971,746,3027,5739,1630,3905,5143,640,547,11,4772,9764,5568,1030,4342,959,2912,5735,5349,5509,1526,450,7258,5273,2767,9363,7149,4287,1669,7872,9745,5591,9881,9075,6240,7241,8244,3755,3061,4508,7924,3953,6419,4590,4202,1287,6981,2019,7358,7715,3696,4748,7563,4024,8593,1477,6265,2199,2440,6363,5194,4552,2158,7868,9115,32,9054,2752,8476,6106,8000,5750,531,1650,813,4645,1549,4446,7477,6723,3732,2239,9291,1513,473,1174,994,1738,9185,715,5568,6197,1227,9413,6311,5565,7918,7994,9141,4512,5185,2534,3400,4102,933,8020,6459,6509,9923,1420,6671,3235,8769,605,5435,4555,9462,2693,1975,3257,7965,9255,2838,342,6306,6638,4901,9312,3327,575,8604,9077,253,4639,6576,6982,7733,7853,585,9298,8252,6283,6993,1341,9355,8593,1177,8145,9523,2439,6768,7635,3687,2448,8195,4284,9517,6513,8703,8896,127,6869,3189,8489,244,8872,5200,7093,6833,4755,1097,8037,3200,8645,5015,3400,5025,1357,8422,3003,9675,1623,745,3708,3241,6920,553,5360,9273,5743,2869,4608,8925,4016,3523,9234,9569,9765,3735,1088,2168,560,2140,1536,2999,8372,7551,2932,6467,9603,1998,2785,380,9880,6684,8993,361,3788,2196,1602,4217,6137,8079,6283,6142,7761,6155,3173,1423,3744,9596,5183,2040,6889,7471,4944,274,7403,8979,9275,4328,9357,7118,5971,8047,1841,2651,2914,3695,9038,6624,2674,4525,5022,1724,598,1752,6565,8677,8625,4335,7290,7008,16,2265,3223,5393,3364,4996,3774,7002,3451,9571,3279,7641,792,3034,4636,2572,7956,5794,9604,9564,9210,4363,371,5195,6136,8513,160,9915,4076,9109,6947,9289,6965,7830,1740,5533,3483,694,4741,4292,5028,3218,1497,9102,6533,921,7542,549,7186,5175,3772,483,2894,1919,1195,3469,3288,6401,3330,3704,7314,1052,3270,9382,8803,9102,7995,5155,7698,8522,422,4309,905,1493,287,8676,5541,590,3908,2644,1859,797,9199,6160,9691,9161,3656,4467,2112,272,4650,7332,632,6628,2107,8227,6735,8332,3453,7342,5197,2272,9861,3212,945,8710,4148,6745,7273,1502,4728,5150,1820,3906,1141,9756,6764,7043,9166,2730,4233,3000,5422,5140,3254,6992,3842,3821,7366,7424,8616,4784,458,7666,3107,2309,5101,9081,6892,1201,1762,3011,5805,1867,6585,8108,8122,3292,7214,5185,1966,6735,3854,3615,8783,3260,8942,5087,8120,3312,6570,8979,2109,8713,3898,9396,1474,7740,2108,4679,3077,4130,6917,6484,7499,632,9971,7248,9119,4389,8272,6626,9719,273,5330,5854,6373,596,9298,3719,3042,5398,7972,2689,1916,8951,9010,5846,1023,6127,71,9287,5654,1486,500,2011,1542,459,871,9216,8209,9576,3748,7034,4274,295,3122,4297,1126,9016,6369,1343,717,4344,962,2795,3837,6446,8725,4275,3106,5463,9514,7023,1839,5455,6521,7908,7760,5468,9248,6609,9304,4078,2178,9904,6496,3901,880,5155,6079,4749,2117,1761,2738,1923,7562,3654,4729,4497,6484,9897,6507,711,9969,8633,7907,3333,9640,9335,9140,7546,6003,8972,8907,1010,865,7134,8630,4266,4311,1437,509,8609,491,6998,456,164,7372,1269,8899,9641,3634,3824,4032,5426,4537,721,9715,7417,4160,7439,9238,9633,1369,3856,1224,6632,3734,2355,5342,5877,8854,7470,4679,3461,6294,7626,1596,8066,9553,8858,7133,8497,5745,5475,4968,8481,3265,1995,5517,57,9795,907,2581,964,4444,1009,4469,2512,8424,2289,8061,147,1605,755,1422,240,2997,358,6676,9941,1862,810,5139,9199,2521,1324,3792,492,2057,4957,2532,7237,9596,5804,8863,5954,9040,604,4585,2556,7406,48,7882,3835,7105,2940,9438,3458,9334,2556,638,7743,6947,4724,4265,2835,7410,4512,96,3236,6355,6028,4588,2875,1290,460,5783,3322,7821,9469,2375,7157,3439,7897,9234,2164,5698,4121,6527,4633,4948,8219,4167,3545,9058,6469,4179,9853,592,7995,2933,1815,3379,6119,154,7770,5089,9002,9381,3485,3339,5649,855,8597,994,2620,7594,5305,7313,2864,5010,4710,4646,7874,2712,3369,2219,5672,5814,3990,3998,2910,4114,1748,299,4263,4449,2428,8356,8885,5161,5960,4289,44,2687,1929,8920,959,3532,3200,6089,2899,588,3571,2831,792,1126,9763,944,5986,4818,3383,7326,3170,8709,3294,4056,4006,8019,4106,4366,7850,9373,3800,3035,2315,1135,7029,9755,7955,6198,677,3872,621,7870,2825,3050,7407,7927,8718,6852,8697,4643,7188,9143,8236,7038,5124,6870,8060,4489,8797,4612,6668,4692,175,8421,6925,6928,4726,2213,2533,8603,6821,4900,4187,6867,5188,7132,5623,974,6620,4380,5944,5969,4368,7181,4113,1414,3994,2771,6502,8738,5930,5948,6662,1886,6924,7099,2103,8064,837,9697,3635,2705,1296,3446,3537,7002,9292,4404,6206,8255,7900,5202,3245,2645,224,2203,5237,4922,1682,7441,8327,4099,4711,2737,3018,8821,5228,8323,403,6985,7560,8541,5493,7774,7343,203,1210,3091,1610,1487,4948,7544,6333,1734,9239,9875,4739,3362,2720,5371,4318,3110,5332,8069,4955,5769,2322,8004,2147,9473,4906,3011,8980,2849,2466,7844,2803,9374,3206,2833,232,1568,5805,8626,279,3651,6758,6039,7685,7996,675,3841,3385,8947,2554,2375,3067,766,8888,7398,9846,4099,8224,3943,2647,7015,3112,6985,5974,5369,620,7824,4220,8155,373,2186,2780,5521,3259,6999,4279,3679,139,7595,6861,2677,5709,8336,7466,1020,8644,9658,2646,4815,6192,8928,4055,5406,9470,6388,9803,2689,2449,2928,5825,3486,9310,7072,3583,3930,9070,8331,24,6322,4769,8811,2053,6895,1033,6977,2081,5756,8821,376,9358,5494,161,2474,8304,6511,3416,8671,160,6891,276,2901,8827,79,6553,5630,4894,1696,1169,8988,2283,8239,5244,9463,1981,7177,9627,5663,6743,2513,8404,4778,4089,5019,9607,316,514,2400,7264,1070,9451,4697,424,1283,4111,7313,4846,1525,7919,8589,9156,7233,9252,7085,9117,3048,728,3213,3552,9593,2968,1818,4482,9435,2138,6554,7678,821,7844,6187,6373,2763,7566,4227,7859,9812,5707,4099,9081,4487,6641,5637,1711,4738,4727,8810,6872,523,1473,8708,8073,1039,8173,9780,6245,2343,5789,9793,781,398,1588,1882,2484,3746,4747,8165,4493,809,9277,2344,8133,798,7326,8897,166,8249,3911,6847,2441,496,8733,175,1934,6352,1739,6958,990,8610,9348,5606,3235,6911,4060,3460,9720,1536,3326,6375,6712,1073,3588,7671,8076,8249,8780,7077,5906,9304,8051,268,2678,9941,6936,6828,7838,3368,475,2772,4757,7190,5212,3296,4734,1413,4239,2745,675,6237,9880,6157,4997,9640,1255,4868,1468,9463,4410,358,907,7753,5785,2769,7403,8725,8101,5184,50,8312,13,8029,3303,8243,9967,5169,4135,2345,3426,7393,7664,526,1209,8965,5578,6525,8049,6154,9732,3076,931,4715,5769,4429,735,5762,5578,6265,2914,2068,5703,7306,3204,7810,9093,4735,5158,9030,2101,9471,1375,1780,8531,6870,5535,1096,7049,289,945,302,6848,5564,5356,7997,7406,2949,5128,3889,7763,9388,5525,5529,107,3664,5765,3738,893,5311,7842,892,8695,4046,7839,6059,7041,9223,5564,3873,854,3804,15,1301,3023,9217,7933,2590,7457,820,9479,3078,7060,6315,9329,4822,7684,5194,7882,187,3046,7772,2265,3910,7613,5433,7520,9411,4403,7751,9479,4405,7756,7160,6663,8500,6039,5476,8515,5029,5127,6003,977,8256,2524,7019,1292,8693,2425,3071,8213,6992,8768,5409,3261,8116,7356,4073,540,9986,6629,633,8158,3656,8112,9960,7416,9134,8199,1125,5235,3234,9028,2591,1540,8611,381,1917,5609,5450,9941,3284,9060,215,8278,4740,6629,7406,3429,2939,8841,1840,2631,7309,1435,8109,8319,313,6059,9963,3011,3346,388,6684,4962,3719,8633,7101,7097,194,5207,3821,609,1108,4319,4464,3084,3920,9138,3170,3481,8688,3396,9846,2666,5287,8665,8052,4541,1479,945,6332,2653,1250,7327,5532,7636,7452,1529,1627,1379,1933,1772,9775,5488,5825,4466,1222,3839,9723,5494,8716,1348,8463,171,5507,3653,7301,9577,7242,7962,4448,6999,9921,1246,4677,4071,820,8138,7657,4351,1980,70,4299,1983,7054,38,9036,1080,1396,2667,694,9470,6996,7444,3572,4741,7379,4301,4299,345,3019,5417,3759,8775,8321,1399,5011,9913,7008,6827,6644,5964,1501,9093,9586,5425,1691,7998,2562,8028,3298,4636,3139,4070,8318,968,2039,8687,58,2238,1810,1620,9544,816,6237,9076,6989,235,7004,2804,8312,9142,8866,4197,6148,6713,8707,4947,4306,9864,821,2283,7309,2602,2917,612,3583,4706,9535,5314,5924,6527,6908,1956,8203,1653,3119,5850,5273,7617,9811,7723,8287,1344,5585,3609,6416,5685,959,8226,5619,4468,3871,5810,7708,4408,3681,5063,3257,5828,6647,4239,1735,9650,9069,6666,616,2980,3176,4457,7322,9460,2686,1679,5526,8727,4836,738,627,9084,4621,7125,3760,6681,9152,6166,7428,4335,5847,4117,597,9043,7141,2407,887,3799,9870,2300,4528,2065,1784,566,7485,5,193,4701,3099,8732,268,1317,7508,1292,5927,6422,8832,6974,2864,8110,9166,4295,3754,6471,7062,3545,678,1711,4440,543,955,7808,4539,635,6940,7457,9070,359,9235,3552,4032,6417,4944,1458,1302,5383,6856,227,3597,4672,4175,8642,7419,5744,8209,9738,4671,7070,6020,4615,4536,4797,9501,6837,1300,2405,9019,4833,528,1044,8174,2193,8290,5510,2665,4109,8900,6539,2387,2459,1769,6216,3350,8594,5317,6760,8326,5185,9976,1238,442,2151,8991,3633,4890,578,274,4343,6772,3614,1585,3404,1161,4918,5036,2209,3370,1913,7105,8563,5332,5967,7590,1994,2599,5502,5949,7174,1483,8117,7727,3526,5515,8745,3120,5727,1769,151,1954,2775,866,3560,7337,8005,9404,2196,8013,5079,8628,135,708,387,194,7098,7909,7730,1537,2300,9350,6673,697,4230,9418,55,6648,9210,8364,3819,6982,3327,8181,3838,9681,7636,1750,6753,8825,558,5469,3634,8094,6608,6023,8246,480,3141,7159,6450,2870,9858,4017,8574,8895,219,3742,2091,8678,8773,7110,7146,5311,2404,1032,7699,7792,3332,8804,3113,3387,5856,8575,4967,2499,551,4401,8002,9131,9894,5458,8561,9603,726,3427,5665,7626,4337,1047,7878,1992,4914,4753,4941,1525,7605,6833,5142,5947,2254,1109,2778,6180,9442,248,2670,3381,218,6451,9520,1923,5092,3097,844,9286,7801,2786,5194,4664,6327,9581,4978,7050,9421,4078,2109,220,9929,131,7898,2145,6549,8277,9071,1790,3451,1488,4423,4074,9748,8504,7663,3620,8706,2491,7433,2295,383,1094,4957,1458,8179,1578,4377,2773,7964,633,8136,5090,5154,2601,8994,6825,3297,1756,9484,9218,1556,7646,6143,4151,6704,4791,3201,3520,4614,4813,6362,6200,7860,1563,7157,4662,8647,2000,6595,949,35,2415,2385,8597,1161,7191,9319,9960,4678,8960,1277,3537,7438,4421,6266,1081,8718,8904,3205,2299,3878,2125,6412,3995,3843,3580,8065,1609,7883,5942,6642,8330,4576,9751,2413,7772,3540,7761,2170,486,5335,2541,9240,9829,4292,3431,1323,9129,9816,8636,4390,431,2934,6798,2057,4643,4957,4963,426,967,3136,5101,9479,7405,5567,4714,7677,7957,342,2194,2570,4431,7636,29,8301,9759,6832,5986,5679,7484,5484,9467,9055,7371,7071,5514,244,271,5720,5774,8542,1487,6012,8703,2819,5131,4660,9423,8296,4667,1328,2392,5816,7293,5602,7068,8490,3766,1862,3511,1028,5386,5145,5146,2737,8981,5919,825,3007,6124,5904,8944,8987,3420,8156,7157,7751,3398,5110,573,6597,6090,4808,6579,5866,8598,4692,5287,5731,5932,2830,6361,9153,797,3745,8674,4189,8240,2529,8698,4844,2163,1354,5460,9263,6576,655,4785,8048,84,7580,8371,4689,396,4817,462,7787,5390,6402,6155,8047,1540,5415,1830,255,8973,9773,4530,302,2711,896,6188,719,4382,2629,6458,9897,8649,8291,8350,1400,2559,6755,8011,9415,9022,4702,8263,6026,2422,5246,2025,6335,1603,2158,4286,4111,21,5900,8798,1312,6948,5249,572,3197,4790,4859,1970,2435,9978,2285,9880,521,7009,5870,2750,2163,735,1662,196,2188,4411,3830,617,2977,9270,450,4916,5137,7864,7380,8391,8011,458,5224,4625,792,1683,1798,7671,1021,5662,6959,7938,1899,6167,1969,1883,4513,8899,9495,1777,3736,3901,7069,7516,682,7968,5053,5435,6133,2379,3012,2639,3692,2112,9174,4166,2643,6856,6002,7898,8946,6095,3295,4562,6570,5430,5878,9649,6719,9245,4224,9352,5915,5236,4363,3133,7945,2476,401,7136,8032,2893,8561,247,3582,8651,1623,2959,3650,677,810,9767,8519,4984,8331,1942,9415,4088,8470,8205,1918,1495,331,4463,4907,8316,91,7395,9343,1636,7361,3787,1947,8281,5759,3418,2413,8601,1495,4126,2665,804,2035,692,9828,180,8670,2696,4362,2911,7404,8464,1656,8858,7338,5880,1938,4841,8937,183,4850,7753,7057,2821,9123,5044,1299,8759,4299,5689,5184,8426,899,7599,9315,6387,278,7508,3007,7715,8074,7784,3286,2435,1918,5614,899,2527,3362,5393,365,41,8465,4859,3982,7408,9247,1372,2899,5472,2491,7642,7627,5372,9876,5856,639,2541,8680,5781,7922,5196,4075,4850,539,3921,8269,874,9308,1882,6613,6559,2053,8216,8943,8269,998,174,2195,3570,1347,5415,7828,791,3379,7221,8188,2332,8735,897,5339,5373,4178,9812,610,6325,6223,1099,9006,4421,4781,2723,9185,2820,538,3472,2486,6993,719,8719,9698,7602,8574,2637,9456,261,5289,5194,4516,1332,220,6769,3771,4875,4528,4098,541,6293,4693,6784,8846,8608,7528,4468,2319,5977,3965,6759,1070,1996,4400,4514,6424,2808,6164,5495,246,5394,399,1808,496,2525,4441,4922,6792,4988,3489,927,4794,9955,8385,735,7557,4773,667,9336,7964,9020,4906,4176,8669,46,9141,4602,283,3986,3146,3748,1832,266,4292,6178,290,9676,2197,341,5206,2970,7091,635,6931,1192,2724,8328,2412,6645,2253,9260,5736,6155,8224,9594,9272,5336,4057,985,4219,3260,7073,2499,5069,4888,1910,2616,5027,2623,7207,5114,5169,3366,4647,7636,5105,7662,4894,9128,9267,2902,4637,5699,7940,3809,7207,1847,1685,8911,7852,8960,9337,3242,8607,4580,2007,8545,4733,3029,1371,6192,2832,5221,6445,1639,5278,3976,5707,4455,1733,1512,9691,7011,5332,3432,9826,7405,1168,6488,4521,4864,1982,2719,6068,2355,7644,6190,1363,1813,9706,8497,5580,5200,7640,907,9091,7512,7565,5884,281,757,8642,5519,3014,508,1979,2945,7749,1864,3944,5773,239,6371,8059,4833,6605,5967,7916,5144,7842,860,7515,5257,9878,6382,2472,8651,9599,6105,1987,8376,2041,5700,2258,6638,961,7998,6980,5558,8661,3870,1288,9862,2878,7615,488,8231,8833,9417,4706,8789,5617,3081,1779,5789,9342,527,6326,5979,3048,5947,1826,355,2893,9266,8684,928,5046,9857,8786,5537,7979,3151,889,8382,7301,9755,5436,2400,3411,8173,944,663,2030,8770,637,5935,5133,4001,4849,8558,4827,7846,1102,2476,2077,6830,4847,3493,1032,5193,3596,2908,7893,781,9651,2177,3866,3572,8700,1409,1348,2715,9898,6517,7726,6966,7656,7798,9286,1170,5010,2371,9749,8923,5563,4622,1311,437,1456,4355,1990,5781,8318,4718,4874,4559,2902,5949,2516,7238,4709,5169,1041,6409,3831,4358,5965,6996,2119,4888,9055,2441,9672,5402,6281,4939,3605,7067,6320,8675,7778,1621,9214,8956,5033,6539,8723,3219,7660,3465,890,5486,2441,5582,469,4928,248,2795,8115,7497,8035,9305,1881,9175,3605,5162,9578,1556,5554,8301,2929,3422,5380,8052,6564,5480,5445,7952,7257,730,1134,2541,38,6982,2411,7339,2310,3775,261,4801,9922,9821,5242,7393,3598,4915,7179,8127,7197,5404,6945,1918,9916,538,4766,2051,3234,8704,3679,955,2273,3884,7692,3704,5154,9315,3624,7949,649,7316,7430,6255,3124,7349,2978,3195,940,645,67,8941,7741,5696,9226,4468,3341,5910,2279,297,2007,1128,8341,8061,7282,9700,3740,4767,8447,7222,5041,545,5609,7339,6178,2862,1090,3162,1261,3349,2529,9605,8604,3099,4022,463,4720,5508,3028,2887,506,1314,2914,4352,6656,7511,876,5516,4707,6716,2919,5801,2549,2668,1823,9496,2200,6689,6163,8347,1022,9374,8315,7469,657,7530,4971,8603,5978,3887,1065,9524,1702,1938,4810,1303,2303,3664,5529,8464,9843,2882,6395,5516,3334,7880,4115,1052,2670,4154,2411,184,4184,3396,2788,8308,3045,6383,1332,3683,5313,7015,9739,7136,153,786,7797,2632,5639,6500,9709,447,6937,7243,7615,6709,9000,3954,1732,4143,2917,698,6391,5321,7028,179,8023,1955,8657,3536,7040,6687,1567,9766,6892,3178,3729,7849,3072,2906,4551,1197,907,9624,2710,5700,9286,5291,4079,3263,7681,4273,7024,4094,8720,4767,7222,1321,7307,3551,3605,5582,1085,786,7460,4460,7524,6989,2411,6161,5343,5767,8370,1604,2355,7642,6556,9755,2294,8192,8198,5170,9390,3539,7260,525,8748,5994,333,838,376,9482,2674,7013,3813,8270,9416,2854,1938,3922,1718,8318,5330,8281,8707,594,1048,2107,9061,4338,5143,4815,2908,4547,7781,5488,2826,3552,7790,547,8204,9002,959,3594,6762,2396,5789,4303,1695,1199,4336,5963,7856,9611,3245,1914,7986,5570,5676,3039,8844,6737,384,8953,9546,9987,6234,7103,7616,4968,5460,4547,998,6162,4694,4902,3977,4229,4705,4305,8741,8367,3391,7561,7875,251,2816,4720,777,7786,6263,2255,5895,5258,2377,7771,9563,2679,5848,6235,8619,8207,3891,7352,6143,2476,1986,4423,5509,5618,2122,5807,6331,1534,2821,5813,8341,2347,2231,7352,6564,4204,188,6800,399,1298,6794,4426,5311,1711,8557,9399,9437,7353,8837,8890,5357,435,8958,1018,1006,3546,172,8824,2776,1230,213,8,1825,1948,4742,7859,9227,294,5567,161,6922,9554,3920,9496,4275,3120,5934,8650,7886,6114,9262,9332,3752,3447,6892,1327,9437,8484,693,4988,9400,7604,3125,6282,3975,6201,7736,3115,9009,79,8596,7241,3448,6059,7987,7562,5057,4256,3834,2080,7365,9187,8429,5397,7602,6076,4265,4385,4778,8583,3564,1795,3258,2742,1948,1810,9810,366,4637,1684,5267,8428,4180,5860,3878,5608,5796,6279,7562,1049,7814,6832,9091,8592,3355,9143,3253,4921,6074,9039,147,2552,167,6189,7261,9780,9808,8559,255,7239,716,4634,4283,9494,34,3943,4053,2884,952,2966,360,6250,7184,6110,6514,8088,4112,6243,1928,2232,8988,9812,2324,5851,5132,6490,7150,393,2517,4506,9606,5742,1579,2078,6209,2141,2639,6822,4659,5130,8933,959,4828,5228,5053,4103,2934,4404,191,3443,8478,4019,8363,784,702,5143,9791,1301,6175,2,4972,6293,1655,4194,1495,8304,9324,1724,6402,991,441,9790,2904,641,4975,1984,9797,9113,4039,3807,5227,5263,4825,3349,4729,4748,6586,259,6135,7066,1116,8002,5843,1556,1334,4716,5,223,2664,3763,4464,886,8621,1717,5292,694,6632,6934,3398,4258,2817,4676,9940,1659,3960,417,7728,1412,7000,9081,2282,2794,7983,1893,603,5534,3188,4495,3853,8914,9679,489,7772,1906,6002,3921,599,6725,577,5094,4854,171,1251,6680,836,6945,524,770,99,3877,2937,7102,6114,1941,2972,3978,831,5232,8477,9116,6212,6862,2299,7521,7363,9747,519,3208,2723,2501,5223,4596,1773,1889,3655,1841,6364,2774,1289,2655,7613,7164,2865,8785,7487,5790,4635,2238,8575,2469,4377,5445,7005,7985,8162,7516,5061,8760,5860,5867,6940,2836,5860,9745,1183,9267,2062,512,2580,3739,3025,5427,9577,9814,2312,5121,4687,8728,7156,3288,1201,5835,5020,1370,3194,2448,3299,3206,6233,6320,6628,4914,9523,1798,7900,2673,2312,2025,3818,1914,7821,7830,9542,4635,1944,288,2449,3054,1845,5171,3914,6757,3581,9348,4173,8822,2553,1250,9823,1411,1238,2728,3108,9357,9944,3746,9960,2282,5364,7624,1697,4492,7533,4934,8920,9599,3618,5847,975,5748,3090,3968,7544,3301,1414,8851,2244,4288,5558,6641,5948,5627,4382,2134,7442,1936,3334,447,7573,1253,4508,431,5164,1141,5583,874,7554,2582,7079,1458,398,4415,973,9438,6695,6313,3597,6249,1558,4557,1676,8167,544,5458,2348,9423,5275,3076,9267,7631,1016,8629,9164,8240,6248,1052,7264,2392,7874,7688,2038,6739,8596,6860,8629,4039,6017,1146,5152,8944,6322,2468,2713,4080,4600,9776,3181,6214,2021,1414,3823,6886,2953,4275,3657,7450,6253,1031,8569,9764,2726,4285,9724,7765,6992,7795,1641,9164,2980,7652,9013,5240,1000,3387,1108,932,9831,3157,3676,3028,8646,5547,6723,5570,4853,1446,8580,743,6983,5096,6213,3551,4017,5098,3437,792,2848,7875,8617,2675,8366,70,3542,2614,1104,9431,7901,1694,7227,5829,7439,7397,1760,864,8981,3696,7757,3225,7092,2648,1259,7934,4113,3074,1132,98,611,7796,4490,2917,446,7805,6426,3821,9502,6637,690,2745,5411,1134,5885,2345,6608,2373,2254,7984,8474,6284,8372,2765,7968,4260,357,7748,9772,2210,6843,7691,5755,1840,4935,5302,4077,9676,4771,1576,8021,6753,336,8927,5798,5171,6382,3525,2128,5852,9067,4135,4326,5267,9887,3262,1567,3796,8514,4202,245,3660,5283,3197,2705,7015,2260,6883,9348,2501,7185,3319,1282,3707,9052,7083,6573,90,126,4054,5623,3016,380,4162,73,6190,8203,5685,4642,7814,6216,2208,9726,8399,2751,4119,6294,3091,6526,8992,9903,5193,5724,5944,6738,7430,6820,3820,5244,5671,5394,6895,1656,3965,8541,663,1421,2804,8775,4670,3927,5463,3777,1372,8734,7829,5817,4908,3830,4855,9841,954,6230,9164,6112,3023,7849,6800,5268,7654,6741,6337,7890,9543,3995,8204,2841,3742,6896,4837,8180,8086,7257,3969,2231,4342,4958,9284,733,1530,7625,1439,2823,7985,7434,9588,2355,6209,7384,4568,2047,9098,3819,3331,4770,7668,6695,7163,62,9387,1771,2507,76,633,9191,8654,5972,8532,8118,3465,8420,1965,1952,8649,2281,313,6422,6361,2338,2029,3296,6371,4681,5006,2922,9755,943,4593,1169,1801,5180,2208,6390,2347,1546,2602,2060,210,7487,2728,9063,325,7283,2660,1442,4326,2422,7328,4353,7401,4222,7848,2575,2390,8117,9448,6474,9926,5184,8644,2339,2034,1144,5007,7607,3911,7001,3077,3302,9520,8396,6012,5200,95,1480,9075,7081,9830,7320,9254,9584,1804,724,7887,721,1473,8685,649,7023,8033,6774,1538,4076,4844,7528,1573,6877,9201,506,7278,7520,8716,51,7240,9826,5761,3987,2913,2536,5490,4200,2313,1580,5624,5281,2833,2691,2150,9290,9381,791,1420,1555,4409,2982,8350,680,7707,1134,3061,7044,4039,7781,8245,981,5349,3837,6802,7306,9490,8329,821,2029,7453,7611,7863,8201,673,5607,3774,8110,6269,90,2346,1200,2164,7368,3287,4329,1963,3457,6765,9016,1184,8947,7384,4347,5616,5714,2230,5959,5598,1681,2122,7243,3058,544,7811,6672,8061,8142,4623,2727,1255,6544,9446,1842,333,2500,8340,2087,4334,7259,6324,7243,2729,5482,2874,4452,1794,2714,2969,1092,5201,3278,238,4205,7209,2039,3087,3199,7835,1859,6176,5185,3493,5041,5909,1115,101,1137,9146,8135,3814,82,1792,4183,2546,114,5355,3970,9974,5716,3299,8343,3340,5248,6005,900,1745,2070,5426,4781,6575,6340,8664,3015,7654,1024,248,7719,3033,1277,9624,3991,4956,1635,7710,2702,9387,2591,6772,1990,1344,8604,3026,3892,8627,8433,5506,3041,1737,9408,1034,5602,2096,9048,8725,4252,4430,4970,6892,6901,416,1187,4028,3090,1005,7573,1837,8465,877,9966,5056,3972,5741,2152,8188,5996,1293,3988,7419,4907,1672,5631,6744,3728,6880,8606,3457,9398,164,2719,6190,1274,4578,443,3032,3772,6553,9989,2930,6161,309,2832,1626,2312,560,917,2259,9586,2121,9422,240,3503,8525,8018,9664,3358,1290,8864,2723,2721,8120,6316,2057,1952,1541,9875,8973,2657,775,3156,5409,7107,4643,1056,7174,8254,7052,9906,4556,9506,9438,2738,9887,9445,8595,5895,6682,7772,7350,6282,2976,1608,934,7371,2063,5151,5351,2921,4143,8081,2102,394,7708,8825,5392,4131,7805,2363,3997,4754,305,9050,4795,6801,4884,2001,3177,9929,8743,7829,6113,8466,8045,2615,3080,6522,4347,8145,6612,1246,758,8727,1408,6081,466,7489,7029,7443,359,2754,9941,8756,4233,2915,4273,601,7715,4644,9303,5083,1374,6556,1369,9234,4369,9855,3618,2111,6856,8910,5829,5193,8219,1702,4544,8127,7929,2795,2146,8126,1947,222,215,8338,2133,3158,5449,1335,6253,6143,5350,4088,5659,4817,8772,9920,4773,2219,1433,5280,9571,9945,7274,9821,1780,7610,8030,8092,7777,9422,1109,6948,6234,4706,3010,6255,253,9842,5148,9049,5113,8943,7405,6590,2694,5510,1293,2938,6307,7723,5711,4645,9059,7368,8560,5327,7673,8998,3675,9020,9563,9014,1299,4435,602,6250,8476,5897,3402,4714,5619,2347,4901,5420,1257,2232,8955,2969,4202,2843,7304,3447,291,9992,7289,5383,6735,3494,7771,2789,1063,9598,4171,5903,5311,5505,3261,9950,7847,203,7876,4241,9572,982,6307,2198,5621,442,3300,2612,3218,6419,6557,473,3896,2105,979,7906,5188,2379,1670,9648,2928,105,7221,2325,3514,7168,1092,999,2036,8873,3464,8533,7086,1391,6584,7217,6513,2529,3344,5812,5369,6312,3290,1364,5660,4482,6846,2917,1586,6844,7886,4442,6272,3141,4524,5220,864,7152,7900,7421,399,1862,5439,2799,946,8843,2178,4265,2108,9254,5923,5568,6911,4785,299,3388,2084,5445,4318,1359,8235,13,3663,7278,7993,585,7956,3206,3042,4168,5112,5176,8529,99,176,3623,8467,3261,8402,4584,8422,5617,5286,2405,4092,6604,1279,9049,114,9000,3093,3450,590,5562,8443,1098,3546,5821,1065,7485,4179,6826,9293,8236,8076,3814,3219,7511,2645,3431,6971,5451,6145,6474,4540,9982,2604,7984,9319,9205,5357,9787,5172,2358,407,5902,8910,5587,7991,3715,2230,4513,1052,6728,9839,6001,228,6906,4319,2063,9926,2500,927,9991,8884,1711,5453,8796,6165,1247,6629,9945,6737,7393,5769,9256,8769,6135,7837,159,6295,5860,3402,9767,8021,3961,5100,8879,3674,9508,3763,1153,4018,2285,9587,8886,4233,980,3873,2068,3199,8750,5294,2650,1652,9263,5655,8904,7707,830,530,8478,2299,3386,8373,6039,6911,9288,3612,1743,2473,6832,1860,456,2615,1882,9465,2242,4803,2833,4116,7284,8862,3836,2308,8837,8347,8312,5087,8152,9234,121,7178,5233,9933,9308,1126,2225,4998,5609,4356,5266,4413,6632,3632,5411,2179,7825,2324,2251,1459,6948,4046,7867,1633,4672,3414,5782,8050,7134,9898,1940,2531,6969,6708,6166,899,1554,4723,3534,6462,9964,9335,2899,5368,9001,2765,482,3663,8690,9548,1106,8482,9713,8772,8810,3499,5152,3641,8558,9276,44,9765,9580,4790,5539,5512,2052,9450,3590,3409,4553,1009,5661,2411,3400,7546,97,8211,5696,5873,5346,6940,1472,6673,8421,1024,8539,7385,7132,2751,2470,4905,7467,552,98,406,1317,4322,5568,5204,9794,2818,1866,62,4338,9903,2383,9164,6598,103,928,9999,3639,9979,464,419,2244,3062,1957,8696,2733,7612,1172,3821,5811,1510,1772,6085,9358,8640,9988,1306,5986,9075,3856,2145,3491,7326,4152,1274,1481,7689,8436,4768,8008,4549,4984,2824,4818,847,4581,4269,938,9166,339,8419,6093,2223,213,1248,2418,1058,5594,613,431,5565,2226,9549,3493,8391,6110,7803,5239,1977,1165,2499,161,2063,1915,3259,597,4930,6246,3638,2146,6778,9882,5153,2958,6891,2423,5587,4488,8517,4628,9567,7617,1462,5758,4350,6632,334,6540,1986,6129,5638,1718,2934,1509,4233,2887,5490,7711,501,4420,1433,5321,5679,8799,2685,3145,8316,662,8402,7605,2338,3304,2498,8299,8203,4231,8538,3686,8342,7059,2851,8530,536,7790,5207,1913,4336,1546,1206,303,7609,2765,4125,8122,1837,2675,2920,7837,6824,4306,6570,9234,4685,6081,3574,9781,7207,4818,4927,2586,2413,775,5828,5911,5744,1590,2746,1927,7435,7940,8089,892,5933,3012,1309,6537,7123,9669,9078,7629,2954,3356,2637,4051,1430,1529,1856,4985,8852,3834,8063,5904,6637,7706,1954,8980,8304,3865,4784,3927,3364,8215,6865,6948,3539,3909,1597,7263,9655,7243,550,5064,5829,8580,1699,7651,7328,2272,850,7598,2232,4556,9497,2203,2880,4320,391,6606,7333,7605,8541,8374,5991,8262,8616,1695,6180,4848,5679,6478,1279,8221,9253,549,6132,1904,3258,7445,9073,5797,6760,2074,2607,276,3595,9606,6848,7597,2482,440,8997,7874,707,4497,8885,355,5489,9547,6073,1743,5280,2765,6953,7816,9158,6287,1017,8161,5747,4679,1419,334,7554,6612,6404,2597,3309,9468,4257,3357,940,2253,4453,7494,1416,4049,875,813,8211,6383,8286,6690,5125,7581,5247,5486,4571,2953,2642,909,9730,5745,9705,6623,7013,9868,8273,597,7707,4360,3586,2714,9295,4113,5345,7826,6782,3503,5587,3941,3484,84,2800,2950,6448,2959,6794,184,2267,66,3798,5064,4710,7607,9725,9572,2600,6770,6806,9232,2063,870,8844,7882,3674,5550,642,3887,7899,5420,8353,3583,1817,7527,5815,9553,3903,4113,7955,4122,6669,2206,756,2834,2342,7524,7189,2914,533,6240,4869,2356,8143,5763,4991,2363,2962,5178,5985,5989,9080,2772,9934,3282,6687,6752,289,2938,9126,5111,9501,7072,3911,9448,6455,7986,3321,2880,4408,363,7854,6610,8266,6532,4021,3617,2068,9301,4671,4297,5928,7583,7260,8769,1416,5466,799,9861,3913,2779,4504,6649,6567,6555,3063,5895,7065,9440,4904,7356,3325,6061,2076,4686,860,8998,5395,8725,7393,4763,2071,8546,5092,9778,8552,5735,7265,9280,9522,1454,9739,9705,5117,1584,7814,766,4515,2485,8092,2190,5275,7759,5239,7703,30,8296,8345,4629,5393,2136,4544,2755,9808,7578,3820,5810,3403,1413,3195,8320,9926,9755,948,6903,6236,2237,9363,1019,8636,5697,5441,7101,8660,2923,212,6690,8366,2855,118,323,6134,664,6839,8423,8654,2832,2460,1625,5959,6398,1676,1152,2419,8365,3908,859,2968,1095,3016,8958,9405,7770,3605,5648,5571,2484,5837,3548,1956,2628,2406,2949,1032,1632,9173,1053,618,2832,4565,7475,9070,4793,5381,6237,3271,5374,4973,4372,9604,1668,7392,3358,6653,1312,9739,6091,1650,3125,3135,8798,2289,9417,2402,2980,6563,5574,9623,5343,8980,7587,2555,9341,6053,2137,79,5605,937,7846,8098,7062,8803,2033,5142,992,9269,5089,5761,6000,5643,6674,5895,378,1947,4926,2955,7588,7067,2922,5634,7518,5114,865,6267,1030,2286,8023,8780,4936,7229,5906,3170,1286,4269,8101,6422,287,9689,5320,1003,3681,8967,9220,3792,3507,5154,502,8851,490,5534,6141,6487,6227,2189,2692,7866,5573,5899,4955,3192,6423,5315,1497,2187,6969,4718,8633,4672,5589,8354,7133,5104,9692,6441,6792,7825,2151,3760,4245,125,2401,2625,8215,3773,8231,1740,4186,8452,8191,1232,6290,7136,3289,263,9764,2791,5877,8064,6288,4459,5218,8048,6265,5287,5945,9812,3158,7671,4010,1093,366,6015,2889,5174,4730,3943,8772,2527,6516,6466,1327,5967,2219,7226,1348,6232,7236,7155,3543,3968,2347,3861,4424,3264,7119,7764,9901,2927,9573,8431,9978,9021,4749,4412,5358,4672,74,2680,8205,2873,4004,8734,7511,6976,6134,910,7201,3440,750,6330,3761,6537,4066,4568,6379,6913,4611,5920,2895,2516,6950,224,6878,3343,8695,9247,5913,2206,1881,4456,9556,5954,9993,9430,9800,3409,3175,3442,869,2642,9094,2653,919,4613,3487,9118,9284,2116,545,9754,9017,557,8073,8001,2523,9006,4946,967,3866,5731,218,1512,1115,9785,4179,2637,2679,6728,4981,2553,4632,6985,2036,6910,6114,8716,1625,5229,8454,3582,9801,606,404,8940,2766,6773,2756,3605,1214,7950,6981,5422,9164,7375,3438,7777,8122,3881,7524,7358,6652,4229,865,9858,2065,3841,5253,3397,4258,9955,8909,6660,1366,8198,7764,488,5278,4649,9642,6521,6624,8409,7923,9794,5220,4623,4167,1824,7169,1784,5291,3152,8418,4697,23,7340,1233,7833,1590,5086,3553,288,4472,6500,3690,3289,9050,9648,9637,3209,9706,6911,8699,6618,4887,8294,2994,9133,581,6724,2791,9526,8668,7851,701,9497,4062,8623,2659,2779,1104,2872,8973,8009,4616,4151,9675,3416,6028,3228,1811,2111,1762,7915,9042,9431,2249,5002,1479,9168,4379,6377,1724,2127,9799,7771,973,2408,5985,3465,8999,8200,9793,6357,781,9095,2942,8905,3418,1339,7942,1082,9078,2803,2620,371,4961,6696,7195,2148,7061,6469,3211,7159,4512,501,8564,3867,2474,4205,3902,120,9536,4228,89,7747,2929,1343,9735,5371,7065,766,9421,2340,4788,7494,9971,4651,9301,4085,5011,497,9335,936,1891,3693,2935,9559,8826,1674,6153,8741,4047,2836,4723,8076,7428,121,2646,3995,2015,8245,7654,4316,9535,9828,3140,7127,6013,8090,6253,6603,4714,7000,1974,1002,6388,9344,9124,3542,7478,650,300,6546,5001,1178,7683,1991,3820,6977,2565,6879,3614,7060,9850,8649,4824,3533,6933,3002,9812,731,3346,5037,8491,8286,7549,3350,9887,3120,6536,9555,5845,1647,4618,4505,6952,896,5705,7120,4316,7711,9066,5206,2671,3302,6522,7071,2176,1563,3677,6526,3572,9548,4007,2776,8559,2690,784,124,9149,6940,4856,1198,6014,9026,4862,4835,6137,2760,1560,2833,2933,8677,8645,6027,1415,1518,2568,2612,139,116,8981,8471,9582,1370,2527,3880,2620,234,3467,8412,1061,5008,2847,1696,5276,2412,9618,2725,4728,7076,3870,585,3819,1691,1169,9524,293,4096,8794,2165,1272,1788,8925,5027,6883,6878,1555,8831,7263,4324,3528,5285,7578,6568,4768,4397,5952,6413,6323,1209,9862,9392,7946,7741,3575,2632,3587,5823,2329,6230,9907,2212,7328,1971,9624,6716,2220,9527,9601,1396,4075,4640,66,8650,9848,8820,3585,415,9748,7693,9992,1482,2812,7158,9330,773,6875,3701,724,1391,9511,8327,8453,7324,1134,3117,1520,6819,4063,1131,6709,5004,7729,9375,7606,7791,4634,3109,1933,7883,7665,4218,858,1384,5945,1065,180,3535,9625,3644,2055,7377,4198,844,311,1159,1970,6616,8923,3382,7189,3671,5269,8606,2402,8081,6441,4043,9487,7277,390,5107,9002,2887,4602,2043,9914,7516,3955,8117,7184,5034,1395,5703,1077,5106,7205,569,6614,2353,9868,5940,6675,2815,7567,3260,867,8490,1707,7855,6773,7860,6452,1792,858,3101,4068,682,7720,9418,6613,5208,3656,9001,7430,5163,2647,2268,4010,9746,5599,3778,1065,1292,6783,6780,2019,4413,8211,7308,3659,8177,654,3028,6927,4592,9342,5716,9036,9828,9918,8349,237,2041,1380,7659,1993,7417,1631,1641,552,9956,2714,1293,4076,1962,8447,8667,3496,5307,7742,6227,4567,8099,5243,9328,9620,7535,8474,92,2356,1029,1163,2712,2263,2309,7515,264,8959,47,2769,1956,7287,7829,3857,4211,2804,399,3438,3157,7882,5108,7868,5870,8712,1700,8996,9275,8136,8551,5821,557,211,4602,9933,4157,1524,2211,2497,541,7904,8731,5949,8555,9450,9227,9406,3420,7710,7725,2417,2591,3994,6436,9869,6356,8287,4423,4955,8015,1480,6548,8164,4398,4906,5009,9136,1193,7754,1979,532,1752,3075,9722,1030,2482,7510,6914,4013,9894,8259,3332,5326,7732,4008,779,2286,9443,447,5476,5336,359,4843,4113,2857,8845,8778,9375,7649,8622,8104,7721,3601,4661,2576,1130,4965,5464,291,7098,2958,42,8661,8929,3325,114,1065,1664,2657,7835,1547,3594,6466,1499,5006,2385,4367,3343,7811,3777,4383,6938,3895,6203,977,13,3557,437,5146,8742,1533,3614,8600,3126,2350,2344,4708,4368,2385,7177,303,5016,3245,2797,9757,116,7931,5797,9373,2781,5715,733,2541,2387,4733,8433,2355,7729,4716,4971,1897,1586,8430,6974,279,1651,2967,3814,5715,5986,5988,7254,4568,1945,6900,6195,9318,6067,704,3390,436,2041,7253,9103,1900,2726,6507,6213,6088,1065,9661,9735,7362,8657,2443,5140,3669,9155,5532,8470,34,5700,7648,6178,2179,9586,561,9161,777,1062,447,5163,293,4474,4155,2216,2485,337,9895,5425,3295,2945,98,1634,5510,8247,5665,864,2316,339,9521,4285,5478,2112,4130,6724,2079,5275,2950,2221,8282,9846,8209,3806,3385,436,4507,8269,6720,2626,4397,313,5815,3243,8307,1128,3727,4039,310,5017,8559,649,8246,3799,1648,1986,6052,2980,3944,8404,9409,6286,774,6766,3586,7837,4310,7832,8054,9352,9404,4595,1933,2426,6330,8196,5926,7579,4532,9373,9740,687,6998,5638,3248,2532,2291,5925,7493,3172,8771,4400,8741,8206,6190,6253,7198,1478,3492,7354,889,7895,8289,3089,4938,3829,8657,2201,2387,142,8757,6413,3612,7048,8055,5971,2614,2785,438,8152,6847,109,5141,6961,530,6682,7156,4566,3918,9365,1542,1092,3426,8110,9574,3166,2294,7125,1129,702,9384,6849,9596,2580,4128,852,6585,3838,6141,4276,3142,9400,5575,5367,6755,9046,3434,5052,7465,8505,7018,4687,9696,1028,3008,8605,5389,8699,8262,7467,7563,7560,5927,6166,5160,2452,732,7745,9471,4263,9388,5928,5424,5209,9550,4917,8825,9499,8617,1990,1095,527,6390,7244,745,6378,3915,4456,8518,1179,2064,4550,2157,2778,8526,669,5912,7036,2931,1177,9045,4721,2685,7981,1740,8517,416,6373,9403,4562,1094,3967,6103,6665,9479,6002,3818,3872,6495,3749,1857,2976,1662,9781,1187,9633,4671,6159,3482,8274,5230,7249,5583,6644,1884,7363,3327,6161,5678,9374,3154,4359,7182,3075,897,349,8307,7038,439,2085,7402,635,926,4639,5239,7650,9070,2534,9408,8808,4336,5744,3844,5162,4165,9939,1395,4496,3242,7835,2833,4111,3034,8434,1742,3378,9948,5747,7479,9335,2870,8592,6514,8886,5207,4249,7168,4871,3936,4499,852,3406,9574,5562,4023,7982,5165,1427,2264,3293,2125,9729,54,7909,1310,8778,2135,3175,1596,8198,335,5221,9122,7819,5251,9607,9460,6777,6602,4057,9012,3792,4774,7853,2614,6658,7545,1702,8213,7541,4270,3098,4829,4385,4939,9854,4994,9151,1778,4011,138,182,8466,4574,9895,4593,5148,941,9012,3965,9204,6859,8391,6992,9393,3638,6908,2973,5372,7898,4262,7229,9626,1130,8364,721,7025,5180,9113,8046,1316,3496,4465,6473,9675,3180,9772,9934,723,9394,7814,795,8066,5837,4626,3912,9810,607,4923,3818,4283,242,1149,4095,2489,2939,6536,1847,6246,8882,1637,6754,5513,6324,6415,5404,6501,6347,79,9591,4445,7356,25,4805,6464,2419,3073,9066,9401,9419,7911,7099,1829,8542,6220,5190,1424,1568,1362,1967,7729,1874,8427,2063,8955,8564,880,9612,5546,1709,4396,9111,8749,9848,830,772,3984,7412,2007,3113,2774,8264,1660,7154,1378,9176,8637,4366,1886,4158,9923,4455,6864,2883,8490,7149,8733,3163,8243,4320,8482,9222,6881,661,1779,1736,3393,4839,6006,2495,2578,7621,3203,2343,5083,1453,9973,9459,2564,6368,6794,6864,3865,5326,4101,5379,1201,9321,2107,1257,6598,3725,8692,8415,9774,5009,7483,3166,8767,8239,5322,1860,8011,4866,6728,276,3268,3937,3142,6407,2899,6137,3698,4971,1217,3410,9647,316,2808,4452,6920,1838,7645,2204,247,8624,1389,3747,1954,3968,7355,3414,5631,3632,2875,6806,8885,1927,3525,769,7681,4696,1125,8417,4405,4197,4065,8640,6456,8912,6036,5334,2150,8890,7327,308,921,3196,7430,754,2799,8221,2629,4438,3162,1266,2955,5323,6230,1254,7332,6362,8881,4415,849,5620,9421,9044,7903,4876,3090,9304,1866,9391,2663,3608,1135,944,5391,8182,3959,2451,2870,8557,8990,8427,6710,4984,3483,7442,8418,574,5560,1463,9828,354,5593,9618,5268,1017,3413,1304,2999,9624,5258,5114,3726,1824,23,7416,793,5687,4192,1989,7276,4950,3935,4770,6037,1359,9805,5406,7483,1259,259,7693,2824,3006,7284,6883,7122,7452,8233,9717,7530,7196,4728,2968,473,9599,1759,8039,3288,4443,8787,7528,4877,9225,4191,1577,5570,245,2407,4302,7587,8002,341,6448,2223,2053,8421,2798,1848,1091,2088,79,7766,4722,3933,3742,7640,2612,9111,994,6874,7148,2821,9383,9411,3752,6308,2455,2531,4748,4248,9651,6981,84,3941,9288,7260,5119,3760,1978,586,6487,8329,2687,4857,2058,1124,8799,1965,5885,1423,9810,4073,2823,4321,4745,6462,8864,4498,1079,2449,851,4740,6595,9817,6897,6021,6198,8787,3659,933,1687,8092,86,7797,1292,2071,2646,3491,3512,8457,8736,3015,7616,7529,523,4210,1768,7954,8908,1041,8780,2822,82,5409,9725,3961,2372,9140,9645,1482,6667,4799,3766,2671,5059,1035,8137,1508,5896,9559,4548,9077,3878,8792,2842,7160,7524,687,7040,3699,8926,4536,8055,7870,6032,3536,8660,1344,4408,5293,350,2150,6824,9122,4098,2477,26,1287,7195,450,3917,2771,9829,9798,7532,4651,7173,8015,4181,9440,426,3719,5695,7617,8269,794,2012,8194,5806,4658,7635,9194,1365,4333,5870,2749,8297,3595,1853,5525,6528,5519,2935,5970,6001,121,1532,6895,892,209,824,9860,4015,9741,6135,6787,5703,7523,8804,6223,5162,9980,2659,9146,8292,2609,7432,4804,5207,2813,6655,9297,1407,2815,3312,6306,8923,448,1323,3381,7064,4501,5486,4834,9813,2542,7489,1645,5757,9446,9268,1240,5538,8374,2855,5939,5706,1723,7978,3226,7415,1836,6998,897,2417,6596,4252,6528,2674,7552,339,7984,3067,2791,6671,855,1981,6880,8653,2304,5023,6484,9571,2332,9837,6491,3221,4438,368,8143,2499,9956,4675,2774,3262,380,8269,9338,4810,6025,7378,342,2862,7017,8885,2302,8721,8205,5099,4096,8180,4946,6253,257,624,9414,8581,1221,2654,8456,7601,8359,4551,2337,3497,4078,7047,7830,683,2167,1542,5232,351,1226,2027,3616,5564,4165,2252,4802,8582,8707,373,5414,1845,2636,1412,145,549,6302,2710,3744,205,9939,639,4889,1038,4152,7169,3405,2315,903,7587,6020,1837,8253,7614,8913,9820,6390,6760,887,1732,317,8266,8467,9663,5098,445,3704,9868,8269,4853,8213,2387,8019,2362,9215,7107,2004,3076,256,4950,9306,7760,1256,9753,1309,8969,1530,5136,6468,1376,4319,643,2652,7834,1281,1338,6943,278,3284,8855,3428,8710,1652,7967,2371,3254,4617,8395,1216,4556,1762,4654,4613,3442,7518,880,6067,7336,1435,7099,6087,356,6010,6661,249,1989,1851,2675,8544,6955,3311,417,4014,5349,3424,4302,9739,5522,3466,2717,9404,5890,303,5159,3322,7829,9163,9174,8734,9205,7709,5951,8910,3919,9963,4484,659,7462,5833,6560,2578,502,4938,2431,8934,5308,8581,2098,1042,9427,1187,3706,1182,7462,4025,9108,2612,2497,2400,3146,5469,2226,7884,2586,2931,2358,9448,5342,936,195,2710,906,6909,4010,9965,5067,5108,8533,8517,3198,5880,9893,1083,6393,8161,4494,1568,2342,762,3703,6446,3162,1307,1126,2179,3708,2725,6304,5105,1450,1918,6529,2043,815,7220,9337,5548,5640,4599,9071,9452,6186,6194,7880,1984,8500,4701,3317,1005,8350,5761,5875,2841,7168,1267,3515,2373,553,2719,3290,7720,319,4870,9177,2291,4696,3133,3668,5152,3215,9450,5266,8066,6866,4020,8079,6488,3512,1394,2675,2337,8938,8445,8741,7155,9168,5641,1371,9331,9266,7340,7780,8954,865,7938,5519,3886,8408,4272,8519,5539,2268,550,1491,4292,3192,2581,1239,7928,6180,7412,4754,4094,5205,7954,6736,1048,7080,7463,3264,1526,3460,9539,7338,4597,3503,8309,6543,6321,1960,8768,5928,1491,4471,9699,6500,3011,8720,3313,9859,5374,3857,8440,7847,7012,8761,5138,6362,2194,3997,493,7867,2320,3215,938,6260,3415,5045,4147,5869,2522,2602,7723,2626,6448,9282,7600,1606,3444,113,4052,8601,6280,1515,8289,3551,4289,2127,603,711,8186,3350,9968,499,6465,4272,4746,6480,7538,6683,4512,4913,4328,5964,9866,6848,6985,8845,4753,2006,1209,348,3919,5989,4855,9508,9140,9584,8507,1510,8322,3308,8912,7483,7309,248,3880,685,2670,1618,3957,8478,6387,3161,2269,1973,7785,4875,219,8120,8653,5770,2238,5961,6637,6610,9436,4105,8204,3794,3944,7120,1351,3339,3161,9423,4191,8364,7131,8457,6312,813,9733,8387,6728,4597,702,5219,7571,5067,3852,2306,1157,2600,1535,8739,8287,7342,3030,5675,4653,5471,560,3902,3446,3330,9100,4974,9412,9762,6263,1150,1123,6275,8788,9679,2096,906,283,5882,8113,5418,739,8856,1140,1080,7421,6136,3888,273,7212,3003,4279,1823,9887,9129,2641,6444,5668,9037,7598,8357,722,1912,2528,3942,1976,3676,9251,5941,8593,981,2497,4191,3507,5797,7899,4724,7574,1127,8305,8801,421,2751,8558,2862,1381,1087,5417,4150,5220,4525,7363,1081,6006,6813,5912,2153,7474,4317,6157,132,4643,484,9794,328,9334,820,191,2330,749,2632,4922,785,4065,3597,3296,3826,3603,261,4069,5714,9992,5680,4643,1163,278,1110,9598,3291,4799,6641,4496,7184,3270,7902,2636,7629,1551,3079,7216,6739,2893,4082,7864,7782,4165,5503,6110,8778,9749,9832,3226,8676,4427,4193,1818,3081,4045,1250,2712,1759,1924,4549,6355,7462,7952,6466,5229,7380,4389,1389,8485,3685,8492,8765,5879,3341,9557,519,5041,61,5898,8671,4017,9343,727,3388,5229,5873,5440,9935,7123,2440,7213,9561,7976,2343,3726,7258,9920,3287,2861,4978,3817,4492,3057,5029,3898,4583,2265,7856,3013,3680,9944,5226,9548,340,4686,6265,1628,457,5851,2076,5285,4876,6754,388,7928,8386,9345,7285,8686,7261,1048,2680,3150,5618,2426,1635,4205,8911,7946,4751,6117,3524,6731,1602,7078,2504,8449,1761,8177,9070,1325,8270,8842,9187,4234,4566,4053,5821,4993,1307,9429,4224,9676,5716,749,2801,3813,9353,3064,8888,5469,6820,5368,3305,8037,6334,1849,9812,7375,7818,7944,5033,5069,6254,906,2705,4039,475,552,7711,4123,1203,4040,7607,1352,8589,2849,5740,921,7904,9483,8994,7900,6111,8756,5061,5079,6370,5963,3810,2642,8518,8022,6173,6688,563,8161,5349,3792,6643,126,7618,4696,7802,4630,8343,8254,6952,4486,5287,6091,9403,8951,4566,3767,1866,9968,4489,5828,8200,992,2590,9812,9991,5108,9269,416,2299,3744,4695,863,347,573,8773,8632,8341,5045,445,3238,3714,2892,1002,6101,2582,1932,6580,5681,3004,1740,1367,1115,1254,2943,4382,5550,5768,2582,8244,2609,7643,783,2734,8914,5803,4369,3030,6334,4185,6649,9948,5218,1672,6543,4041,4912,1813,9975,529,6756,7445,2948,4016,4416,326,9306,1675,4369,742,8183,4766,5716,5016,6077,4187,4353,7243,3892,976,2568,6856,8504,3486,809,4213,8991,8071,6760,3822,5705,7937,9552,4754,104,6436,397,4867,6153,8554,9773,2936,6338,8751,5814,4235,7406,8079,6835,5725,2845,7794,7508,7024,3521,5298,3561,4528,4541,833,4365,9414,3392,5738,8367,2467,7138,2980,276,3126,8925,3297,4873,2009,7945,1055,7895,6018,4221,4275,8479,5913,6084,1601,3139,4575,7772,8857,3693,5106,6130,795,7480,4173,473,7346,8848,8423,6132,8621,8790,1968,3567,7289,8360,840,842,2580,1692,984,5789,5219,1858,2893,5146,5234,5820,7852,7638,4400,930,2084,2143,3259,3051,1901,5149,1762,1,1224,3384,8153,9263,9363,9545,9093,9487,9470,2576,3617,5821,9320,3476,451,8024,3956,1484,2756,9366,5154,7074,6108,8601,3487,9169,9415,9967,2134,2324,2563,6594,7635,554,5551,9234,5616,2310,5568,3725,272,3419,250,2601,9568,8684,2156,2280,996,118,1164,5676,7149,663,855,9558,4326,4364,3649,5900,3443,2218,8362,3589,478,3027,4395,15,2293,2068,7693,734,5870,3167,1792,9660,1270,1157,8717,3222,6231,3729,2724,9841,6767,3,9008,9900,281,6857,9594,5517,7831,954,2759,1125,3865,4908,8973,2201,5792,7463,4757,3563,2322,3707,9337,7084,9616,8891,8544,8768,5836,6285,4917,5368,2111,8885,6651,7306,759,6699,3481,6392,5231,720,776,5158,3234,6388,6944,7700,4743,6931,385,1660,6592,9043,1924,2370,6757,1144,9007,1536,4871,8392,7766,7169,2479,3381,3073,4730,6533,2697,6905,9421,9626,9816,1170,8013,2880,1254,3862,2259,7216,3404,4761,9476,1976,7,2172,1809,5585,4125,5464,6301,3840,1805,9255,6643,5110,1247,2155,4748,5336,621,8407,7899,2278,8582,8080,9128,4887,4724,5950,4680,1146,3079,2922,3468,3840,5782,3552,9095,2285,8828,6472,9803,5315,1852,6996,6674,9153,2226,7810,7326,8441,3126,778,8513,1199,449,9675,7730,361,8238,9934,7722,1571,3354,9203,9311,3893,6001,6556,4339,7797,5717,2436,4117,8421,792,1215,2988,2789,9985,503,7417,7589,6384,1301,4316,816,3202,3318,6456,7732,7394,861,3859,6976,7423,6780,6422,1099,4809,8477,3214,2446,6894,4224,9881,5403,4851,231,6356,8913,9043,4085,7255,2401,3500,4652,3762,6553,9295,3095,7319,8670,9124,5671,9540,957,9751,9454,2033,3243,7045,7120,4288,5377,2562,8630,835,7829,7960,4976,1795,2442,771,1972,2632,5139,655,958,3299,9475,6430,7172,7424,7739,8585,836,5044,4356,2461,9806,9542,2417,6489,9128,48,9851,3253,6800,1099,1259,5806,8701,4385,7958,2945,2566,5060,2969,5312,6118,538,3850,4520,9523,4778,3352,5797,7674,7681,4239,3708,8813,2271,4400,9723,8382,3577,8353,4018,373,2786,4386,6822,2814,3150,5427,2116,28,3999,7756,6841,5683,5069,3513,6832,5940,9785,6823,1236,3458,3551,4644,8055,5824,3031,1248,9421,7389,2890,9733,8874,7331,4354,4600,184,8609,837,3974,7677,2418,7098,7799,9733,9818,4990,9590,9235,8410,2824,3250,7927,5886,5927,6052,8312,3698,1655,172,8558,2699,4477,831,6038,8360,7334,5501,4698,9191,4175,7633,6799,8948,1737,4063,3841,9644,201,3349,8333,8837,3681,3287,9185,1907,4527,241,7366,7120,9757,8346,7540,9954,7305,6143,8342,5668,6062,4864,5190,7258,1592,7814,6952,4151,388,8722,2695,4027,2505,6003,8307,9412,636,3284,855,8397,7003,3107,2389,4844,1748,3771,6313,1334,244,577,3144,7262,1882,4661,9917,948,4573,7170,278,6772,522,3950,539,4082,6985,7738,5193,2918,226,6622,9487,9346,7675,187,9486,4420,3272,608,3751,5443,9145,1942,9454,9565,7788,6142,3745,4609,3253,8578,8157,6696,8078,1824,5597,9151,245,3431,3120,1321,6695,9409,2627,3733,8477,5264,3214,7978,1935,9227,5582,9736,1890,2794,6654,4683,532,3515,7221,4920,142,1233,6583,5398,4882,3860,7053,6414,2799,5078,8241,2316,7772,1752,4100,2255,3805,5644,4374,149,9266,5546,5010,5048,2871,2992,5037,918,7399,2235,7014,5746,2791,7056,3214,8655,8722,6040,1606,4347,4815,2966,8305,6723,356,9564,7811,9811,9694,564,492,4069,3182,6615,2234,2778,1903,1048,3545,3641,9741,7086,1764,8363,6212,7908,4430,4329,7003,9730,2881,2431,9655,594,4389,102,697,2364,6948,5931,8008,2141,511,4081,2782,6040,7666,3124,8004,3764,6003,5022,4128,3187,1060,4658,2629,4102,5614,8513,4140,9856,3635,7213,786,8851,9370,1361,2718,5666,1604,1303,3683,1569,8558,6575,2187,6775,7650,5984,7782,8848,8491,5101,1629,6552,55,5754,9638,1853,4726,1209,33,9010,422,4978,7590,7839,6374,8957,4439,791,5222,103,3970,5483,3356,2554,2315,144,5442,9880,1103,2082,7812,5365,8527,3879,859,5493,3889,8336,4870,6559,401,9399,5331,1325,4144,9971,6742,8210,2446,6237,3445,64,9045,6408,7222,7333,4324,6559,9266,5514,747,2310,1863,2641,81,6449,8414,4187,6868,9357,1682,8811,3240,2029,4245,4772,7394,1281,9207,8746,1314,4908,7532,964,1487,1524,1699,2192,3247,318,8668,2533,9881,7254,8539,3920,7043,373,725,2475,3970,8943,2276,7613,2003,2029,3161,4462,5795,2095,3577,5757,1297,382,2021,4535,9826,5186,5998,8483,3314,908,7709,4180,8284,8911,8403,7161,2275,5595,5202,873,987,4567,6612,2249,3822,7712,1016,7729,6283,8717,3635,6669,1346,4374,4474,6939,6714,4452,6228,1551,8643,7262,8441,4843,1459,6470,9178,3827,8589,9407,2559,4335,4364,928,1757,6467,8346,6824,1460,3313,3686,1156,9601,4824,5315,2089,1506,5917,1072,1661,4306,3266,6843,2926,8835,2438,8917,1404,8855,4279,2158,3255,6284,1036,556,9468,6999,8485,5003,5744,5286,5732,9653,5703,5943,5489,583,9761,9261,7303,8416,3139,6094,4530,9268,7576,7119,9786,5086,3783,3654,4676,5110,7059,6305,3083,3389,2518,8196,393,3324,8833,198,6417,3376,9488,9248,8003,5409,5003,6554,8125,5812,8711,6511,201,489,5228,3343,5615,7796,946,8337,1016,3755,1786,5972,7988,5211,8477,3321,6800,2758,9308,4535,9712,845,8724,1210,602,1416,9773,2188,3549,419,9133,4780,8721,9197,9958,8328,3716,5791,4833,2125,6003,1443,8399,1852,2655,2525,5610,5672,1821,8841,751,1324,6162,4364,3123,3833,2555,7334,4893,1154,8420,7211,5800,1783,997,8647,584,2235,6975,1541,8120,7499,1006,1363,1143,1454,9989,2337,1037,3247,6048,6827,8253,2626,8052,8001,3305,4298,9350,4416,104,7230,1003,4641,1505,616,1883,2187,3990,618,3480,2619,7513,7064,2545,7411,8246,5359,7876,8478,8826,1383,2048,5024,5269,697,8732,3086,9359,1366,6671,9046,3472,4788,8308,6574,1308,3684,5607,1655,9101,9184,6930,3752,87,2341,6344,7892,6899,2012,8597,7738,2864,4402,4007,7020,7877,8727,653,4451,5154,1389,2372,7385,8700,9513,1586,1843,2930,8547,1470,8909,3054,8638,716,817,9601,7087,9165,8172,8761,1415,2496,5996,5525,8006,4910,4674,3312,1503,9671,3186,8748,5616,7303,2759,8127,3573,4970,1724,7383,598,9136,6394,2960,6806,2816,3219,9785,9224,7977,7671,3638,3656,2462,4561,2641,2894,8239,4767,6366,9404,1834,6850,1044,2902,9783,3802,2596,91,8314,2489,9751,1396,7536,4014,4809,3657,1443,5553,2430,9313,4465,2750,6107,7081,6593,1361,9188,6865,2433,834,1607,9650,4219,9494,1114,6637,711,7221,6652,8214,9968,7292,462,498,622,8604,8849,9983,6272,9670,5190,9768,6803,9439,7373,9272,1435,9868,5370,462,6603,8481,8597,408,3141,1722,7899,1616,814,3509,6603,8535,3753,3677,717,5873,9852,6031,8836,3723,8252,5835,1516,1451,3541,3939,9147,3917,2636,6012,3074,2094,2945,6125,3885,8096,9826,6805,707,648,6420,9331,2606,8784,3291,9072,797,4956,9470,7258,8460,4578,501,8253,8882,4314,7379,4573,3162,4302,1234,7010,1643,8837,4859,7848,77,4674,7270,9135,5892,9373,766,3510,233,4126,8610,7273,1742,9849,1837,7763,6356,5683,9210,7788,1483,13,6287,2387,5473,9248,9853,9633,1141,2654,9296,9077,6969,8780,8016,896,3109,3915,6772,9657,4059,7993,4261,1220,8049,7305,1894,4295,5466,6472,9734,53,6755,7077,4918,3661,7194,644,2020,4712,3935,7161,3228,7448,2807,3064,598,9694,6752,7857,6847,3240,7023,2453,8982,4956,3571,3891,2216,8912,6194,8716,8923,6781,8033,192,2303,1048,8730,9376,5246,462,499,3736,3045,178,207,7197,7843,6807,9922,426,8216,3578,6822,3899,917,9241,4391,3341,6323,3280,5868,6705,4748,6664,1756,349,5885,7862,7841,9561,7384,5083,7985,2991,5209,5629,5353,3840,2385,5811,1641,4413,8853,4310,4326,9227,892,2834,9900,1530,8985,4821,7295,2174,8054,293,3658,6545,5062,3907,6865,5174,1660,6104,738,4854,4832,724,4321,9464,7496,9872,7724,2364,9232,5625,7302,9850,4505,5449,5421,6703,5628,7028,3526,284,258,8235,6184,6985,4267,9592,4411,1036,26,8720,2213,7432,7981,4969,9278,2112,3587,5778,6429,2028,8163,6712,1556,5326,6280,8791,2430,5422,9274,2331,2152,4519,9078,7939,1404,69,9394,3992,255,8556,3504,8515,3909,5981,5404,4442,1609,5020,7824,1569,6650,5368,2999,8337,7888,8326,4244,2957,3667,1089,2710,4566,5708,646,5484,1555,1659,7248,596,1101,4726,9110,2784,3561,5049,7063,6699,2402,1118,1186,4013,3900,5375,8269,3592,3594,2837,3120,4084,2262,6109,5695,5033,6171,6220,5020,7713,5082,4287,935,5685,2597,1009,1776,8890,8834,8193,9822,4296,6224,6179,6525,7779,3796,8640,6803,6869,2696,9111,5285,5585,9198,119,2686,6448,9275,6801,393,4032,9322,216,2498,6389,2898,1278,8369,8279,2508,7392,2492,7766,1788,9904,7567,1779,5852,9912,1733,9195,3883,2864,4225,3775,7936,2759,694,2598,9074,9679,8742,2320,5361,5214,3291,7500,67,34,185,3970,9302,2959,6680,6238,3205,4940,7335,2671,7712,1663,2350,9394,4848,6336,4407,7420,7442,2703,9589,6755,278,3173,6548,9075,4035,8956,8662,7306,6018,4945,9039,1891,686,4710,29,7253,4947,8181,6548,6381,2803,5801,3505,3299,1248,412,693,4783,3981,8133,5288,4080,3837,263,6334,1613,2843,7741,1382,4538,8212,4063,4831,518,6207,6689,4859,1530,4103,9650,5843,175,5695,152,8130,4541,9912,2425,2816,4179,1651,2808,685,1581,8604,6668,7526,7887,3003,1038,1120,8093,2228,2037,3460,1717,1832,9537,2438,5015,3698,5546,4920,5362,2270,1726,3436,7888,4,197,9237,1615,6315,4702,5482,3246,723,2535,1278,5952,1493,5594,1884,6088,3419,5695,6475,798,1417,1117,6397,9435,2649,7228,402,7338,486,9462,4709,8117,245,6329,1941,6676,1318,6037,5154,2197,6373,6522,6826,3560,8845,344,2474,3492,2496,1525,125,1204,8111,8512,4362,7122,6445,3455,6311,730,2957,6399,7754,4606,4614,8011,3144,2664,3730,9031,3466,8272,2068,5991,8323,607,4540,7260,3089,6050,7721,3829,8003,6043,2232,6110,3487,250,6360,1596,2406,9205,8283,3919,8749,1881,9874,431,4067,5371,8959,7323,5004,7106,8397,2976,7951,541,8052,6631,750,3657,7841,1527,7542,6013,7467,1440,7479,1907,2071,8607,8093,4655,5565,2749,7643,6566,9976,4650,6417,7846,5343,1665,1371,3205,2951,2435,7254,9187,7252,6134,1848,2773,2424,8265,3777,1924,2486,2390,7999,2591,5355,8323,2598,2625,6341,3535,9940,4014,1061,7297,7957,8388,4411,180,5951,4393,5324,1796,141,908,9065,3663,590,3234,349,7887,8432,3113,9829,7445,813,6863,5654,7331,5812,1758,5345,8153,5085,143,4632,7313,1426,8017,2270,9808,6254,1533,1577,5825,4637,1529,4506,2091,7337,310,7726,3744,7671,1231,8683,515,294,6391,34,659,9072,3453,7179,9709,3699,9580,397,5838,913,685,2015,6508,566,6955,4935,80,1839,1287,4485,1017,3568,8432,1754,7884,6909,6128,9053,3458,3400,9966,5867,1087,2341,4179,9841,2377,6848,133,8356,2840,310,7467,5210,3938,8188,8681,3014,4215,1092,2221,5688,1565,4471,8918,7546,1305,2073,296,496,7246,3588,46,3722,1363,1519,1056,2374,5167,1390,8632,5826,1922,9316,6605,9140,2287,8007,3697,3237,9471,4161,7119,4563,3766,146,4474,8373,4251,146,2286,2397,439,6094,9397,8753,655,3925,8696,3481,7265,8844,5573,562,9515,6549,8636,6053,5,8131,9533,4376,9009,7542,293,8772,7741,9402,8079,4194,5739,3017,6042,7950,3323,3430,9952,5055,8696,3627,7998,6421,7469,5615,3361,6702,173,5637,6106,8014,9317,7535,4049,8553,9562,6478,9551,9040,4887,7471,5375,6009,439,4640,2173,717,2672,5535,5131,2161,590,6771,2858,6313,3725,4602,6592,5488,1274,3203,5018,3458,8813,9169,9658,7495,3626,9321,9980,4486,2919,3756,3509,3749,7555,4646,8987,3665,1538,8617,8906,2395,2404,5928,1158,2779,1892,2391,5389,3790,3689,1357,563,2644,967,2051,6947,7619,4910,3933,7418,3906,3211,232,5478,5918,166,1224,9390,7872,1770,1689,3386,90,9675,4032,5514,8428,2293,5509,4487,7164,3101,3550,3981,5908,6654,558,6457,9017,72,9270,1520,7144,3864,3748,586,8232,9786,848,7553,4731,7165,6125,586,2015,2802,2775,2389,5028,8903,2926,1918,7590,4957,8060,6372,3306,4726,1921,743,9313,3184,6065,795,8661,7261,8790,5586,6453,1074,7678,7180,926,3189,4993,4978,1506,3454,6103,7075,3040,9727,205,4973,9197,3343,7488,8332,8345,2219,3350,697,117,9987,7324,4036,4579,7882,90,8078,9135,7698,6085,2139,6623,8421,2213,778,5482,2212,228,2394,6838,9174,6190,3209,8107,2831,6694,1215,3279,4322,5970,1124,8401,9230,9625,3407,6773,3342,4443,1991,4154,6609,6263,5629,733,7627,2153,8839,1862,4753,5466,6156,2300,2836,6186,5258,6219,5646,9674,1802,371,1733,2077,4025,3298,8761,6091,1981,2874,7443,84,8186,9714,4838,7827,2996,167,6197,4224,9596,735,363,2446,1718,5434,862,6576,1901,1277,8444,8723,3736,3320,9613,6986,9910,3801,4982,5885,2052,6192,8981,7709,7914,1187,2124,7763,903,7538,8440,3469,1344,1522,1095,3948,8163,6545,6046,2831,1302,9398,2341,4223,3257,644,1835,8353,5313,7864,9554,8687,392,2313,1227,4480,3629,3717,704,5419,942,8429,7551,922,184,5463,1847,6858,124,9611,4824,9487,1964,7407,1607,5709,8726,344,3245,2291,7399,6373,4102,5959,4632,6443,2470,7262,2223,8049,6755,7827,1237,8354,4189,6359,920,9827,479,6340,6981,7226,765,7819,5369,2203,9628,6220,4854,8016,8699,41,8148,4674,4077,2223,7617,7884,6968,5437,7110,3249,205,7723,6397,9920,1010,9049,9608,136,6849,2601,3661,6374,5477,7559,1116,7909,3897,238,5315,8115,2674,1323,3477,3151,8056,3766,5218,1954,6117,8953,2574,8888,7815,1665,1918,1112,8961,1017,6621,4287,8078,4765,1397,7845,9647,770,8073,1884,6577,9609,8455,9731,4197,4966,2269,8722,4141,2936,7594,9426,4207,7545,5242,4968,520,342,248,6564,8201,2065,2189,5574,4796,7775,33,1753,3337,4948,6654,2634,8303,5062,2647,1969,7142,5722,7731,3898,9694,220,878,5939,630,142,8601,4797,4058,305,8027,8342,3929,3330,2593,8184,97,4458,2306,4206,2912,2360,8369,3698,8643,9954,3094,203,2213,3431,2932,6275,3533,3251,428,418,6988,9079,117,6982,1459,6882,4045,510,8568,1022,7976,3215,3766,2996,9955,2716,3973,8736,8783,1684,5830,6394,7119,1429,2141,2873,694,9799,3311,177,5728,9256,7894,6426,9196,2932,2394,6017,7693,1272,3137,6576,7604,9992,6971,5126,6071,4433,1830,5136,233,9622,4637,2735,2901,1653,8515,7569,9031,8396,1437,6708,5338,8339,5816,9439,7882,4315,1490,3956,1769,7990,7590,7318,1366,4052,6597,7307,595,732,7212,8304,9131,6985,542,7588,9349,2575,2032,2757,4319,7038,1147,4162,1882,7233,3743,6044,7746,2302,931,2044,3337,2671,4885,42,3629,4057,298,5752,1150,5511,6620,8631,5112,3215,5957,4664,9067,5701,2209,291,8882,4204,6781,8987,7239,5320,7966,1125,6777,3657,9009,3634,569,2809,9385,9396,5821,3845,1592,3531,5631,4578,8506,8832,5993,4242,1442,7846,1163,6168,2106,8876,2084,6364,866,976,7883,2207,7556,4270,3268,6134,3596,1942,5463,5524,8222,5022,1790,9218,439,1410,5159,1409,3375,5073,3423,3259,3854,3948,902,8814,7265,9817,4882,6985,9438,6427,9039,2011,4946,8853,5937,7972,174,6272,7583,9734,8941,9002,7317,723,5110,5102,2678,3884,5450,2942,2862,4617,9772,3555,6478,3544,2914,9467,7395,6790,5890,5178,1006,783,1380,8949,7590,9697,635,4675,495,7380,9627,931,9239,6305,5525,6094,5635,5610,423,2975,6352,7175,6108,943,4972,5608,751,9704,9427,1020,3094,7884,5499,8727,2363,5603,7289,434,3992,3400,2506,8360,3989,6725,6478,3228,8512,941,690,6370,4515,6420,4808,7113,9448,702,9790,1976,8027,6407,8760,2468,1105,258,7757,2131,2543,8457,9815,8997,9145,8045,4706,3421,3477,9160,6866,9655,7137,3967,4871,9766,2882,8987,3036,2338,1016,693,3209,292,4581,5986,6035,4574,1922,5270,2533,4788,4398,4795,4521,4274,5091,2820,3743,4546,2618,5915,3311,7784,6206,2826,5440,6329,7243,3996,772,1250,4474,7412,6355,1032,2579,8075,8236,5640,6989,2970,6792,2685,1673,5125,3900,7432,4197,608,7074,2449,1679,2538,5043,6815,7631,6391,4698,8866,1969,3554,894,6432,147,5658,1953,5414,5239,6950,6146,9345,2347,991,3231,7943,3983,469,2739,6626,5548,1831,1496,6070,8162,3172,847,5684,7227,4919,6389,9449,4529,9208,8501,1684,9306,783,7268,2236,9931,3923,8082,7296,1921,9196,8857,4532,5342,1009,3250,5678,4247,4499,9108,9188,777,8617,3181,5649,6457,5485,6034,3715,9126,1889,681,8043,8281,343,7155,3965,5468,3407,2049,2073,4991,3547,2955,7537,2233,9480,2638,5113,1903,723,8348,6486,4195,4868,1136,4006,5839,4847,3953,5360,7283,3006,9989,262,8930,239,1790,8125,2835,5133,6425,4993,3845,3674,6630,7724,7498,7433,8576,636,6029,3141,3235,1159,2634,1403,7532,398,2794,9681,6501,4403,8773,9356,3439,8092,1106,7531,612,2251,5749,5990,1843,4260,4358,7180,5683,1820,9919,7637,3840,8161,9406,9750,3029,3988,5638,9276,2160,1037,1406,5447,3097,8474,1530,8510,6551,3825,5933,9457,3852,2985,6629,3123,2413,9065,934,349,813,3443,8921,7762,7363,1865,3397,4668,4337,4656,9266,8399,1720,7424,9412,678,4856,5423,2210,8209,5606,4573,2854,5040,5096,2086,7244,8562,9876,7138,7608,7079,2359,9004,7711,3074,1955,7119,2784,6022,2912,5245,7571,2509,3631,7284,9823,7480,8233,7591,5390,5433,2587,2360,1024,3589,5154,9917,1808,3120,125,3242,6347,4906,8701,480,8199,6018,4440,7925,3610,9709,5887,818,498,1493,7508,682,3143,7105,6100,6118,6460,3563,870,9589,8316,7197,4254,7185,8465,8208,1779,2375,6548,3619,7121,1214,6770,8657,9035,7292,3109,5218,130,3386,57,9663,3607,2228,2500,3834,1057,1881,5752,749,9640,7001,2553,4029,1014,7924,5870,552,3706,8471,9120,3208,332,373,8494,285,138,493,2969,7676,6441,4421,9727,484,5784,2743,7143,1024,275,7480,5940,283,9908,952,9958,8626,7462,8942,7558,3762,9702,4635,9509,74,2874,5665,3935,9991,4232,7293,1849,2369,4635,5632,9170,6580,7649,1389,1632,3817,1465,7075,826,232,759,430,2354,2274,92,5940,2643,4455,2022,9604,6225,604,966,960,8835,2230,5685,8691,6171,9210,5258,2013,2042,1128,7639,7188,6391,7864,2799,1224,819,8669,2351,7243,9366,6487,2923,1864,6541,5618,6435,9340,5866,2406,2880,551,8236,9022,2145,6410,4486,7499,6511,2057,270,4512,6945,9692,5470,5745,6496,6468,7808,3966,6956,2543,9144,8088,6337,7573,1058,9596,8939,8352,6963,9265,3361,7563,4868,6816,4066,1220,9198,4978,3267,5545,8562,447,3305,4463,9408,3072,9392,9648,7760,1830,7799,1705,719,9119,7984,7855,8030,6795,7897,4044,4655,3438,1395,9330,843,8990,9055,8613,159,8806,1984,6944,1562,5848,3256,598,2247,6853,8200,6098,2768,7897,2102,8803,445,8419,8825,2719,4154,5746,3688,1725,7547,8213,6236,5273,1003,4633,516,4988,3216,5521,6534,7475,5094,5080,7496,4012,9289,9891,8178,6165,4499,2681,2626,4543,3858,4097,361,7460,1119,9637,7117,9045,7795,321,8901,9602,9266,7509,6243,3497,1948,8381,157,9678,3587,1589,5404,8463,7086,9363,2180,1056,733,5602,76,3936,9817,7064,5520,6056,4840,6308,5756,5474,4278,6148,324,9238,8168,1866,7731,9705,8156,3104,3167,6038,6926,6735,7311,7177,4904,4783,7062,6658,363,9728,6806,6804,1937,7796,3848,3683,83,3643,2804,1390,6785,999,3680,7336,1621,4625,7433,5929,5421,5109,4131,3965,3254,1732,2110,537,9096,182,147,2888,7150,2017,5914,1095,6000,1301,2339,8613,1461,3417,1158,1300,4207,3057,2647,3904,4355,2585,417,9738,5199,5406,3898,6346,2432,1103,2249,951,4418,4405,9211,4712,38,5664,4968,7840,9686,7840,1917,8440,144,6532,1315,6775,6366,423,369,8456,1902,717,8275,9696,6120,3240,8782,7697,8607,8930,5006,5407,3627,9904,378,3861,9866,1976,1809,2953,5796,2284,7068,6205,4603,109,2385,9178,6898,9451,301,6372,1156,7204,1870,8867,2137,7330,8651,8291,6546,1261,3840,4845,9228,2150,8177,336,9413,9427,4749,6192,8821,6564,420,1098,4078,6986,3526,5235,3890,2268,2603,4542,6601,9996,9379,902,945,3607,3506,1822,8452,9951,6210,5983,3828,8782,3998,9628,1418,2405,2765,404,7211,8411,6142,5899,9979,4387,8941,8869,9694,945,3702,5271,7399,436,6277,469,7355,9407,6461,4977,884,2996,6489,7373,145,4786,4203,1167,8301,9126,3537,1894,3276,6631,7376,1010,2462,4863,8947,7033,5287,3370,403,8713,7493,9041,4168,1023,7756,187,5615,4143,1171,347,6203,348,5197,7023,41,354,7352,7659,7561,9002,682,7036,9535,9164,1711,7028,6493,7113,5240,6310,8029,3465,6668,7625,2638,957,4824,3264,997,572,3327,5801,2145,1523,7720,7261,1551,1818,9003,6631,3491,4781,492,5988,1839,9291,8525,250,74,6347,3785,8002,4549,6437,6800,3299,3208,8201,2789,9816,8945,9177,3533,7521,2370,4688,7005,5119,5399,5342,9391,7282,2718,5316,7697,1182,6664,5122,4243,102,7677,7952,2772,9385,7590,2342,514,3764,565,3554,1519,7133,2594,1254,3371,6708,9000,4700,6270,2059,3725,7666,8042,9470,1587,3340,7810,9064,554,5741,9025,8528,6456,359,4219,2247,8461,5919,4281,7817,1828,8538,8786,9454,9838,9438,7451,4663,5234,9024,9748,3502,7534,3599,1112,1576,5954,3780,234,9031,1830,7754,6406,7684,8283,8929,9288,6118,948,1900,3947,8756,8369,3402,7532,7205,8452,8529,6503,8636,1114,9283,4173,5058,3876,2363,7626,9323,2062,126,585,569,1823,5744,7305,4567,7361,3319,3650,1738,5409,1761,2302,8883,3515,3715,9501,8188,7804,5215,2076,6009,3188,5289,6300,6872,8114,6996,9126,1847,390,3367,2913,9815,2587,1737,7876,7457,2128,3250,5858,1314,3726,7602,7103,2969,1941,4746,9270,491,126,6168,6092,2227,302,7559,6691,61,8154,6719,3480,5552,3158,3982,3639,2555,7513,4050,1058,3465,779,7158,1753,9345,70,5828,1187,7375,7223,1922,1139,9731,3278,942,74,2115,2339,9789,8250,3932,9052,9407,6067,8394,4999,322,1461,300,3868,3548,2973,8237,5187,7509,7463,9952,7614,3690,104,5695,3417,7448,442,5407,6107,1907,5240,2042,3571,7723,5996,2821,6706,3882,2426,6781,6921,292,3106,7709,1388,2805,3725,9137,6188,7438,6872,2286,6328,6204,5192,3832,8543,3912,9601,2405,9173,7099,5116,7355,9232,646,6533,3837,3668,4985,8824,9077,668,3590,9673,493,342,6576,2665,2832,4050,723,7755,1843,7267,9862,908,1268,2609,3675,1444,3787,1488,2999,5061,937,5207,8782,2037,4536,674,9531,2588,5029,9216,2719,7606,3975,7930,1866,6714,7519,2737,7893,7700,5448,7287,8257,8763,5520,2317,140,6518,7319,8968,7667,8999,4159,880,1570,2768,9305,495,2532,4936,2739,8287,9943,5891,5654,981,2976,7529,4163,3152,6334,6930,3812,6341,3500,1503,4814,364,4752,8448,4017,998,1553,8527,7021,1599,4931,3250,2234,6376,2432,8019,7195,4151,7218,4473,6050,7553,1769,3329,9798,2946,344,3535,3866,3230,7991,2590,9614,7758,1363,5366,2225,6157,1846,4766,3298,2418,6947,7322,8097,4102,374,2917,848,9271,1354,4592,8177,2518,4482,5402,5606,7836,1403,7111,5559,3476,6050,9339,7910,7820,33,9770,2788,2264,8087,9211,7769,6404,5616,7104,362,8196,7209,3031,9681,5121,1577,3267,5789,4936,9943,4160,4142,6570,827,9094,3327,6622,830,2936,1814,6170,3950,4110,8974,572,3268,5942,5804,1588,809,4071,6480,2884,392,7129,411,6738,4214,3804,8158,8071,4237,4523,4590,8653,8884,9271,8789,1430,7553,7708,2720,9728,8566,3066,3914,7277,923,8362,5284,8387,7602,9602,4147,6340,9911,8849,346,3910,6813,1973,1410,6120,9876,5895,4424,4623,9112,2777,3663,8594,3480,6179,2991,362,5899,9108,2366,2032,9669,3877,846,2019,3758,7957,9430,6415,9110,7695,1177,259,9107,3078,8284,1562,1425,4008,8648,5725,7173,599,6912,202,1871,4723,1367,8808,6659,6286,315,9107,5057,5281,4706,6661,1903,6399,2196,3935,4164,4539,791,9752,1300,3604,4720,6811,2308,4753,6010,6030,5903,9343,775,896,5623,1409,1106,1958,2673,2176,6908,2346,3190,8129,9462,78,6889,3426,3299,1187,3319,4114,8095,3167,2788,4134,5556,6780,4976,2099,2547,2367,5292,7494,2827,2331,7135,6105,3533,4431,830,7147,6755,7938,5439,4316,6000,4019,196,5786,5065,7017,3063,7100,9549,3793,8345,4915,3329,2367,6296,8429,4356,779,3873,2547,9966,6141,5734,5611,231,7622,2974,1524,3646,6608,2996,6080,8951,8130,5491,1901,8137,9,5100,1423,3590,7728,5365,9163,8450,1496,6971,9639,4554,1427,6555,7005,2861,4118,1070,7330,3973,3098,9756,3698,9125,515,3741,7666,6918,2320,6074,3726,4854,7601,9960,7896,317,3229,9219,2799,1797,2284,130,2646,110,3498,8410,202,2583,950,3208,8128,3422,9023,5655,2191,1631,679,8190,6067,4826,567,4538,7509,1323,4843,5985,9592,9091,3938,4283,1516,9389,8097,4796,8742,9404,4201,6961,3238,7664,3682,473,9992,7062,3128,8852,7844,334,9863,412,9572,9701,1595,8629,9465,2851,6315,2714,6664,4564,4850,6412,154,1533,5173,1991,5451,2944,7176,270,8176,5593,5184,6738,7749,6672,9030,9971,283,800,8954,6574,7309,3473,5232,807,7819,3654,7232,6309,2466,8418,9085,7220,1555,5188,5457,645,1818,4740,3264,5588,9713,1789,7558,1914,8320,6966,943,3398,1456,3164,4064,5398,7080,538,9641,6284,3190,1194,7798,1472,1362,2702,3500,3759,4946,185,3945,6165,7510,9984,6502,4853,1078,4269,2669,6633,7166,2942,5130,8773,1528,4287,2676,5615,8704,3048,9051,3638,4914,9256,9423,9245,3033,9397,3948,7320,1471,7900,6305,551,7431,530,5488,9110,8694,2031,5675,7977,1836,7637,8944,2357,6859,2367,3302,4973,2017,823,503,5160,3625,7295,9267,2308,2846,2099,8949,8366,7802,6564,4253,5860,6108,836,4199,1533,1709,7005,619,2247,5490,8528,2964,4512,7140,9639,5074,6328,5109,6024,7368,1157,1322,1276,7731,6228,4514,8862,9580,9214,4517,5272,1626,7109,6942,9466,4178,765,8928,1533,7264,1592,9889,1637,6439,3692,6604,2096,2189,5919,9483,2790,1836,9976,1003,5625,7278,6338,9485,5520,6176,1903,1546,3414,1790,887,9481,4061,3527,334,3493,5787,8242,5848,948,4597,3185,6873,1094,8937,164,2081,7650,975,5597,1252,5195,6455,6445,8230,7599,9729,3904,4064,6897,1232,4832,9109,6287,3818,3659,5011,9362,2439,7094,5128,2613,2851,9395,7580,7904,9652,7499,6583,7153,267,5647,6256,3797,6822,8564,8046,757,5275,7369,7504,9489,3145,2266,8654,9832,1011,6826,9287,2241,5162,3097,6595,7613,1150,9023,4004,4778,2614,4411,4335,8683,6426,4592,3222,8849,1985,4226,9838,2756,7885,9304,3267,8587,191,444,6397,545,8263,5266,9264,6467,3869,9342,9447,4734,9336,9273,9413,2373,2514,4725,1628,2040,9735,6480,3835,9999,9549,7429,820,4172,806,6078,4946,8115,7099,5684,9604,7829,1478,4022,4500,4197,6005,1498,2717,8590,4575,7451,9244,3201,3355,8683,6792,4797,4892,7330,8361,9078,8687,2865,7931,1032,8384,9893,9511,216,9506,1979,8249,5326,9635,2000,8529,5889,9043,1739,3081,6384,1149,7172,7360,1294,5197,1256,5729,6338,1228,590,6021,349,4943,4064,5854,2072,5588,3013,3785,6379,4742,4937,5247,4346,6777,438,8672,1428,2543,5832,4298,8304,3510,4419,6028,4078,3465,5632,394,6386,3495,7994,9534,8131,9303,7292,5732,2212,1028,4670,4700,6501,7001,7016,980,818,9499,8032,3445,5049,3996,6418,297,7506,7412,2672,3159,5037,8482,7738,7045,8067,6795,6139,4169,5207,554,9092,5872,2493,8730,9977,2865,3165,8173,7283,1164,798,9105,8239,4709,1711,3385,4014,8031,1144,8191,5593,8624,5995,5917,6850,8151,332,7448,1498,8506,3938,1546,5041,5801,4462,2921,8264,754,7081,6771,5832,8174,4415,5197,2738,517,3220,5834,2645,67,9010,6269,5913,2149,878,3592,7032,6546,2897,3455,5126,3765,8272,6646,5596,7046,7989,5359,6961,4202,5678,712,4249,8226,3819,9489,5136,288,3523,8544,448,9017,518,4137,7321,4982,5359,3332,2835,2833,8374,2256,4903,6423,7629,7550,5055,3586,8470,1486,7441,9321,9691,8748,4668,339,7725,2196,8592,7072,9249,853,3983,6050,2601,3420,605,224,9676,6411,6141,9403,1838,9035,1733,2293,1496,7782,3820,395,1718,932,981,9820,3516,2710,7586,8199,5860,4615,2281,2262,2604,2090,5850,8102,1261,6709,4134,9877,636,9195,1937,7779,9445,9865,6333,9087,1252,6706,3150,2656,1697,799,8326,3688,8307,1984,8574,3454,6572,662,8349,5188,2822,9331,4344,6715,600,6288,9044,7736,2269,9517,9677,9799,2661,9515,4728,668,7926,7527,6954,8581,7289,197,753,5338,5668,4722,1825,9104,2882,7938,3558,1235,916,4915,7548,2565,7411,3485,3805,9062,8488,5886,7568,2725,2414,1924,4098,6127,9409,5704,4208,3331,5198,4974,816,3451,8711,9883,4508,1465,5608,9260,2738,7550,474,438,4964,3787,2020,794,5233,2073,4535,9074,8851,7144,7968,965,9001,9609,8773,6477,7637,9074,3274,2122,5121,7133,1224,848,9297,4467,2268,2209,9077,2146,3657,1066,1460,2767,8336,1078,7921,913,2833,554,6018,3557,3889,2491,1251,489,166,9843,4284,7597,4770,6982,9663,2324,3524,6898,8068,663,5124,4437,2942,8892,9168,2124,4411,7769,8714,4504,4421,4845,9763,1968,7244,1514,4776,4938,1852,5294,3315,9846,4565,8002,6840,6945,4229,433,8550,9140,7450,8824,4647,7392,7187,5996,9081,4068,8334,5556,3912,9989,9121,7058,4589,4827,6215,4515,4981,7440,2132,3369,4613,8545,2869,7946,2511,6846,3998,5084,8883,4351,4815,476,9441,4391,5822,8816,2842,1431,6562,817,541,5723,4139,4083,6459,385,653,4759,3563,8766,806,6832,1117,4845,8892,6291,117,4402,4948,6249,3282,4315,6398,1509,2314,1612,9913,5511,4096,1177,6380,1908,8087,4095,7755,5886,5629,5134,9918,9789,3997,5553,9672,7885,4583,7881,2256,1438,5165,2074,2309,9645,4124,4605,8757,8846,1056,9157,362,7855,8824,5058,8446,6321,3704,756,3989,119,1188,4481,9583,3851,1896,8217,3219,4152,8882,1491,3506,8617,9598,5011,4577,3065,1016,7963,1372,1594,6866,2152,1312,3924,3614,4909,1779,2677,5345,5086,524,7399,2974,8766,5026,9823,6644,3477,5655,6546,6335,4665,1600,2439,674,5923,5490,2977,2435,2446,4528,9946,8593,1276,467,7502,6295,4134,9887,2642,7572,9649,8790,6692,9517,897,1290,3172,3940,3936,4504,308,5043,3991,4338,3852,8099,8657,1848,3549,5918,3844,5659,4897,5109,2666,5059,9544,2373,8283,830,1983,3995,958,4059,2629,8061,5526,1427,3690,7191,5445,1716,8381,244,6969,6940,1685,8155,7316,7831,456,1819,4330,3463,1191,2337,8443,8960,4799,5955,7717,7328,5647,2865,3423,5501,9773,149,4782,445,7614,201,9055,5253,920,7528,2491,6153,2500,574,5333,3255,7369,2499,6431,300,390,5088,7287,3072,4253,3231,3922,1236,5858,9648,7056,3902,483,1202,1346,3088,6156,6481,6840,9618,301,1700,4743,9745,4866,37,9939,9165,4640,1688,8307,5278,7101,6264,2226,5000,3575,3076,9965,8559,3200,6384,92,4176,5935,183,8665,8823,7303,1143,212,8917,8365,5875,2008,285,2198,8469,1333,1380,6992,4002,3942,3312,1232,950,3174,5772,6651,8875,3354,1960,8217,8197,4731,4207,1361,8410,1957,4907,4747,8297,1617,5452,6149,2767,9317,7685,8926,5138,5240,1384,9258,7453,4715,570,6576,5050,8677,5134,9779,3946,5154,1257,4398,1977,9459,9650,8046,4334,2187,2035,3690,8426,3199,5965,9304,3066,8750,5143,961,1929,3483,1003,4168,5708,1400,1904,3121,3545,6851,80,7665,2251,2855,2062,8032,3025,9160,6475,4812,7178,1007,2956,9575,6753,3761,3230,1423,6401,9026,2556,5282,3356,4401,8351,6488,760,3257,2832,1869,6781,6858,6428,3820,1040,6350,4162,3803,3949,3227,4815,5461,4013,6424,1997,3322,4454,7016,6363,2070,8465,224,1480,893,3035,482,3901,595,2335,4541,8412,9659,1327,9394,2756,5393,6086,9541,2777,1627,1134,8889,432,4839,375,9300,6800,4515,416,654,876,7711,243,3282,8381,4462,3090,7237,8378,5568,8774,9959,814,4496,9306,3792,2679,9772,1516,9837,4982,8554,8992,8902,371,4650,5642,885,2089,2600,8339,4315,4439,691,2194,3503,1959,9511,6515,189,3844,9980,6213,4743,1564,71,4436,8229,5053,5874,8628,1791,9258,4726,9003,2866,8826,6258,1129,5918,392,8460,4226,6015,9665,495,6028,3953,8105,5942,3704,6385,2111,8490,5241,4843,4892,5698,3295,8402,188,4098,8202,5746,6102,3331,3147,9673,2544,9470,8777,5748,4768,6220,8652,8818,3988,7502,4345,543,7327,8880,2573,3842,3647,9123,4468,7798,733,3321,5834,4327,8119,1129,1025,4274,2394,8802,1431,1988,6417,9273,6345,2967,2413,4009,2421,7580,1711,2224,5718,3299,2153,6986,7880,260,1364,7662,9907,4909,9571,3905,8120,5828,6956,619,9486,8640,4764,6995,4412,7446,4160,83,2895,1609,8775,10,4791,8106,7064,5240,6155,8882,1472,7252,6086,5839,2984,3492,6550,2630,6260,2545,5723,4178,3350,4541,6501,9281,9035,1616,5022,3474,9224,2994,9327,1581,2974,9466,4043,5982,7507,7971,4524,7034,3938,2732,3984,4933,5341,2277,2080,2602,3531,9550,8425,2964,8317,5401,6541,5994,2111,2388,9488,2367,4459,9297,3472,6368,2169,1288,7609,2457,3040,5662,6780,1632,8434,5473,3498,4657,3253,468,9355,7753,5026,5071,9712,1583,2455,3203,8604,6705,4519,4515,878,1110,3209,3650,4833,6452,1774,4842,8033,986,8440,9224,4765,3649,5203,536,8046,4528,1042,385,98,5403,3228,7052,8890,6312,7623,3581,2368,1462,4470,545,9762,5704,1644,2095,9016,6753,8169,6069,8940,5696,8092,9907,7420,5107,910,6219,5480,9417,4509,8920,1210,7768,566,1837,7671,1467,2785,6220,8291,8609,3843,7140,315,3224,2129,9353,9743,1725,5403,8701,9023,257,1722,2554,359,3809,5602,1598,7832,3716,8103,303,9152,8586,7576,7913,6296,7254,6589,2413,7810,1470,7626,5479,6759,1434,7065,558,5932,534,5962,9710,5741,2521,9830,6138,4847,4111,2842,4000,3825,8811,5891,1884,1926,2897,9821,803,8722,1558,9718,9835,4768,2842,8557,6236,5497,257,6590,7838,7172,8011,587,7660,7176,8593,8119,3598,2742,1401,4042,8941,9911,7493,4739,4841,1898,5151,1353,4190,8144,4422,6827,4114,7013,5114,2768,8258,5414,7953,3815,8564,3657,5071,3126,4353,1363,8814,1013,1304,5069,3386,446,9387,997,7341,8412,5671,3458,2221,4166,7370,8002,7535,2495,751,967,1385,4738,7090,2353,4,4683,7522,972,5815,6285,8273,1228,6426,9733,4460,8109,894,4282,8197,7946,9193,3549,830,8916,3732,664,2201,169,5358,5833,1532,5718,5645,3777,1351,3336,333,6257,1578,8572,6934,9975,5906,7077,5898,649,7812,9220,2302,4518,702,1903,4508,5803,8701,2814,5213,7574,7198,8786,7692,991,839,1865,4745,3433,8487,3336,9192,4266,4496,2685,9654,4068,3412,5530,5679,4280,6459,6561,5631,3152,4005,1004,8798,2599,2325,9907,2820,1212,5257,7746,5265,2156,6409,221,5397,2637,4337,6885,9913,207,4228,4818,4718,1081,8386,3994,8648,9170,9064,8995,4194,1894,6711,4724,103,3484,750,7454,9331,6829,1438,7911,382,2559,6470,8835,1391,4449,1096,5695,9116,6697,560,2370,4952,4388,8773,3983,2983,7028,6023,4992,8003,2584,6062,9711,9130,7873,3576,3229,6871,1754,7415,3034,4357,9922,4437,6910,2294,6692,6671,744,6331,9001,7169,4236,9276,384,405,3664,9718,3615,130,768,7303,6501,696,2069,7945,5934,4730,4239,3784,3979,7994,7472,5524,6613,8099,2998,7168,6715,5408,1210,1498,9950,250,9095,6239,9735,4896,2639,3311,4347,426,5984,2034,4335,9862,9250,5584,4860,1448,638,6074,6195,4841,4713,2788,8158,2602,9716,6350,4629,8952,3011,9188,3119,4879,5380,2544,2926,7150,7038,424,6365,6669,2583,8640,7545,4403,8064,8651,4140,3428,6710,8013,7966,9222,1891,9453,32,9565,5887,6740,8411,94,465,4865,2514,8661,9530,6475,9321,5556,9281,6201,586,3758,5190,3377,5458,9761,6384,1241,1726,2013,6312,5503,6034,6623,2187,3487,840,7752,9270,295,8918,8450,651,2980,2083,5953,3557,8701,5969,3041,8594,9552,5406,2176,1932,805,7167,3278,7631,5006,395,3182,9992,7916,4394,6896,5878,2237,9537,4191,8983,6302,5281,2451,746,4833,9271,7374,2710,3325,9547,8900,2915,3418,7703,7085,7524,4284,974,6348,4241,1512,910,9164,6443,6969,5640,7149,8658,5389,3001,528,4299,1865,8168,4990,7343,207,5781,5288,3284,5239,9079,231,4867,8134,263,3554,2565,392,9916,3719,7811,9462,9459,4746,5288,2259,7547,9277,3089,5204,5994,6998,3541,4496,396,8272,3506,3417,6166,6905,1033,7704,2436,7931,4119,3235,1236,9982,5979,428,9429,5943,4116,4979,5514,5410,4688,7657,5756,2550,4467,4658,1159,5263,6468,8832,8524,6362,3897,2637,6322,2429,9360,4117,6231,2517,5098,568,8202,8325,819,7066,3068,6069,6456,3004,8696,2229,9913,5766,1364,9495,7163,5669,1535,4859,8865,721,5099,8167,6322,9154,734,9540,6624,7620,5584,9475,9955,1733,3109,5985,8443,4474,8504,6397,8816,3081,1547,3144,8556,183,8873,4827,7828,5902,925,3171,5588,4705,9047,5042,7294,2427,9354,2119,6097,3919,8744,5314,5861,2031,4939,3015,4383,9067,6898,1962,4171,9538,2007,1525,3322,529,9559,4835,3863,8228,5288,3650,8467,7070,3875,4992,7775,1577,4961,2378,219,7373,1849,6618,2789,9281,7065,1769,3508,5268,8260,8847,2072,7141,8437,1647,3312,5111,2337,6247,349,8087,6462,3962,8319,5225,9949,1234,6616,7076,2822,9857,8211,9966,3435,9239,5003,3956,8974,1406,2060,8130,9014,1615,7859,6895,8128,5487,5326,8737,6272,8869,6989,9006,9590,6489,6472,8157,1718,8776,1578,470,4447,7717,2402,8214,8271,8426,948,7987,3690,4550,7815,1439,5627,3883,6957,1599,8726,761,4514,6038,5399,2467,3135,3088,388,9486,9177,4876,4615,6232,7666,9236,9620,7473,8022,9768,2897,3360,9808,6793,4833,9793,9229,5709,5067,900,5125,6237,1574,2704,9756,9033,8083,2025,3488,488,7258,3740,2478,624,8746,2735,1914,9587,3214,7321,591,7028,4868,6710,3293,146,6794,4646,3843,1473,5192,9704,9324,893,949,9595,2432,4068,1523,5012,8607,5511,8144,699,8457,7706,9042,697,5718,1377,7402,8818,5822,9333,7240,860,7340,7667,4639,5273,2268,714,2611,48,781,2267,1264,7474,9194,8535,8967,6306,5883,6162,9611,8914,9598,2957,1437,5508,8777,413,8750,4201,3254,3983,5008,5275,5417,3474,4385,9413,1517,3377,8879,2857,7210,137,1068,1328,285,7251,1334,3562,4745,4538,6649,6782,9051,3954,3413,3373,9351,5317,3370,8248,3570,1878,9545,5642,1594,2053,1286,3851,5144,7515,9165,8606,4610,3693,606,4824,8865,3742,6768,679,7670,2231,1603,177,6880,6920,6095,6168,6180,9109,673,9897,9234,6625,9173,9058,1647,4761,3152,678,3678,7153,1848,6570,1464,7037,3364,8900,836,6465,9141,4848,1086,8577,7707,2623,3489,6313,5627,8974,5076,2796,4123,1411,5581,2431,8296,5404,7966,2775,6923,5979,1758,4058,9842,9402,456,5102,2197,9921,8764,4412,1187,133,2620,6501,5835,5968,3610,327,279,8626,7615,4712,2218,4076,5497,2146,2476,4525,5611,8229,1110,7184,1861,3232,1143,264,9425,4360,6517,5005,2619,1546,3646,2145,8957,6388,4737,5466,2298,1746,5087,2013,7065,4614,6567,1158,7341,5536,8894,3883,1909,1936,8710,9244,8785,541,2779,5860,4464,7375,3479,6228,4436,1689,2775,2509,5333,6969,484,7006,1807,1506,1918,9569,243,5369,2566,2305,4164,1265,3714,3175,4246,3021,8999,9149,3724,6197,2643,5017,6344,7355,1335,3677,5653,8647,2761,9663,9239,2430,680,8050,9656,4054,399,7777,4280,1660,4553,8098,1014,3881,1699,822,1966,3485,4618,4042,627,5954,9726,9617,8377,3471,7817,7231,6940,9956,1250,714,9479,1732,9295,1105,286,2088,1488,2926,2432,9934,99,7913,5504,2409,4979,4434,2618,6815,2229,7562,1938,5829,5635,2494,3860,3142,9772,6189,9802,6711,9620,6948,6052,6204,8961,6125,9990,5036,5819,487,7089,1190,248,8536,3307,2458,4589,7468,4238,7431,7486,2103,8073,3694,111,2215,2338,8664,5387,8899,9001,5832,6133,8949,9148,1432,2617,1454,5904,1813,5952,1996,2993,1450,1136,9897,5382,9284,6806,8703,239,242,5835,4911,83,5136,1466,4569,3163,3876,8199,6690,3631,670,746,4796,3405,2721,5007,2122,2545,3460,5929,534,7780,318,6722,7829,9168,2312,1535,7723,3215,8705,7933,6048,8451,7509,1946,8132,3569,3018,7162,7028,8324,1985,2872,9687,7648,6244,2672,3718,6600,8855,414,9884,409,7183,6902,6618,3695,8985,1290,8510,8291,327,1155,9862,29,2515,6345,7740,7003,9548,3308,7020,3967,465,4786,7230,6396,9196,1451,291,8818,1130,1551,6671,8062,4602,1122,6132,3521,5641,4584,3194,4596,2943,5066,5419,4830,6804,7688,8994,3303,663,1307,1748,6301,2958,3026,4898,8132,8363,4821,1748,1565,6968,1692,8190,756,4185,3278,3580,4062,9130,4667,1042,8592,2778,1675,3927,8474,5186,6894,7485,912,2952,127,4395,6149,596,618,6047,4562,6670,3503,1366,5938,3030,3077,7678,5847,4426,420,6816,496,5061,2276,5710,1082,4954,6124,1516,1755,831,6888,5966,1543,6831,6417,9486,2961,8391,9903,4877,2247,87,9172,918,8066,5375,9666,3362,6989,3005,6311,1951,458,3682,7288,1456,440,9805,3399,8120,132,3792,228,6154,2371,9931,8684,9441,1675,9623,6575,4785,1130,368,3729,2271,4718,1064,1558,891,4141,6624,3050,3004,8967,950,3829,6145,4623,2653,3934,1652,3780,1152,5937,7800,4507,7167,7267,9699,6655,9788,2721,9148,1411,5483,6342,7417,1169,8749,4356,2791,362,466,1870,6808,9274,6484,1418,8507,5317,9391,8814,6942,6481,3581,9334,6455,8666,2076,3879,679,2813,8016,4678,5922,1833,1754,6521,421,8177,3546,4990,4981,3676,2835,4645,4144,6680,9768,524,1538,4196,6040,8292,7920,3636,176,9266,9603,289,6314,3777,8695,843,5317,8381,5853,7112,8584,1701,9069,3533,249,4102,2185,531,1009,2568,7903,5217,6227,9962,9698,1842,5236,6091,3683,3416,9490,3751,3485,283,4309,3399,2585,4305,8429,3147,4932,7357,3540,2563,6735,3079,4401,9592,7144,998,7828,9495,9940,4888,7399,5415,4486,8725,3264,9934,8634,7631,6869,342,2486,1404,7874,1722,1565,6536,2441,2503,7799,3492,6938,3568,1911,2772,4535,8150,9453,6979,7709,3564,5643,3067,5914,720,5043,1770,834,8752,3146,1820,144,4984,5603,2261,5782,7867,7553,5240,7948,9811,761,780,8955,9202,4011,9391,7234,3852,7438,6461,2617,2467,3378,7151,373,8437,2796,5885,9439,6287,3180,2111,6119,3767,6618,7056,1839,212,8536,4941,7411,628,6365,2625,1793,4360,5171,1851,5370,9907,3011,5737,4765,3176,5629,6152,2755,8221,5964,1639,4500,2700,9627,7695,4889,5376,6689,4212,9926,2794,4731,373,1825,8496,5031,7762,7943,9160,5890,5797,7754,2207,8332,5915,5351,6903,6184,119,3347,2212,4502,1015,4563,5484,5017,822,7708,6426,2713,4557,5699,3466,7554,5653,3166,1500,5554,257,7238,4744,1883,2278,6428,6699,6676,3253,8178,270,5917,345,8830,3095,4856,428,6392,7827,391,2289,7121,2860,6190,15,7210,4757,385,214,316,1821,2890,7694,7266,2092,773,117,9937,7900,3283,7767,1912,9859,16,289,7530,6442,8874,2240,3791,531,2778,6643,1928,5441,7597,5596,4425,7258,1886,3335,2313,510,7106,1800,9207,6529,103,6452,1269,7595,6390,9840,2928,1488,2333,5953,3202,2061,6824,3321,1223,1938,1171,22,1611,9593,7655,4820,2687,4368,3194,8507,1983,7585,2919,6754,7992,2098,26,6015,6899,7913,3564,5895,3238,2754,9633,5264,3009,3823,7996,9361,739,8566,8741,6457,4229,7297,4356,2180,1733,8246,5905,5143,4501,3455,6148,6740,8421,3469,9137,7455,6609,6198,7514,8423,6640,765,4963,9404,6167,7210,2520,3761,359,7291,6242,5709,7781,4745,799,4682,8012,8341,2602,6408,2705,3905,8288,7011,488,7316,2981,956,8038,9328,2633,2952,9863,377,5493,473,9581,8762,623,4434,5986,6918,8634,3249,9087,1891,8123,4611,5896,1699,1194,5165,2604,2983,4423,980,9128,294,7293,8499,6850,7756,9003,3365,3767,6155,6536,476,9149,6481,9722,7887,6977,1746,530,1299,7695,1427,7261,7033,2432,2655,6134,4541,3443,545,9713,5195,7202,3611,9531,1585,389,7708,9220,364,7883,11,2111,3816,7572,1766,9513,1530,6213,7425,5707,4494,4614,6894,2870,8029,5768,566,7187,7941,5567,7620,4096,3305,3163,908,1810,2254,5817,617,4249,2818,93,8185,932,3281,9537,477,8198,9177,2514,3499,9215,2450,5339,3129,9404,3711,3801,2403,4131,4937,6502,3384,7348,8833,9515,8068,5762,6699,1119,2463,9072,2109,8737,6857,7128,3271,9388,5599,4568,976,3687,4821,2871,4840,6794,8644,138,7510,638,8245,424,8602,1107,223,2127,3162,7788,5760,1469,1207,5352,2263,9442,4822,4360,5634,4507,9865,4995,9357,2571,2133,2052,1829,8788,6227,5867,461,8453,5879,1699,4062,3395,280,889,6581,4962,500,3354,5985,7063,2701,8025,3794,500,8185,5386,7310,721,1089,7516,127,286,9904,2188,6326,8508,626,7871,5607,5242,929,7623,911,3944,2626,8889,4799,4333,4562,384,9948,6674,1735,5196,8719,3948,3518,8165,7396,5021,3457,6083,2360,9635,5074,453,6833,5310,5502,4067,5082,8871,2267,9252,2881,5788,2188,6054,9212,1281,4043,4152,8809,2842,6799,3102,2536,8764,9936,2137,5024,6518,5577,6867,7566,5699,9411,4027,9114,5976,1667,2237,8411,6331,2733,9651,5439,1326,4900,6157,2272,4802,7776,5311,8741,3358,4860,9133,8414,5837,147,9279,502,5132,7827,3381,5009,5101,7872,7483,2552,4367,398,4933,9830,2991,3217,1949,5078,1850,1459,6363,6659,9310,1462,1262,6889,2540,6048,2871,6601,6414,5507,4318,4192,7189,1678,9052,7419,531,1765,893,7438,8989,2249,3261,5894,4009,8910,9441,5390,201,7000,6560,3612,135,187,8283,2580,7321,9346,4796,6865,4390,1811,8734,6416,6681,4830,9276,7591,8158,8793,9583,9324,920,7813,3099,2559,1793,2802,8706,602,68,8677,7599,1801,8001,4335,1917,7618,1213,3779,8645,6697,7585,655,1957,4435,2956,5521,5602,8769,2344,4353,6344,7924,907,6847,2953,7072,9017,4555,6425,2510,4147,5288,437,2437,7385,8377,1597,3096,3457,9281,7235,3081,9216,2497,9568,2102,2488,6453,6054,203,1484,8407,1805,9842,9103,6259,3192,7977,790,5137,7846,1214,9830,1809,8780,4801,8959,5694,7902,5228,4614,7572,2783,4096,2312,9931,8770,994,6188,5750,1092,5400,9831,8665,5500,1814,3469,9336,3281,3554,4202,4699,7182,8307,5291,1738,2641,9340,972,240,5346,2469,2986,887,2819,2844,1616,5468,8344,8218,2934,9989,9220,4197,1758,1485,9567,6255,7377,659,663,4359,2770,692,7770,5066,963,249,6616,3797,4640,7387,3485,3414,564,7858,2015,6166,5506,2868,9848,2372,6054,5352,3443,3290,2445,4864,7846,2802,7473,7256,6883,6807,5156,5604,8695,1635,6515,5469,1376,1910,9755,2070,1888,4335,7243,6008,3895,974,2957,8401,5328,4982,195,7291,5408,9556,3710,1654,127,2801,4469,326,7551,8545,1443,7878,7593,8996,5192,7127,2927,2196,6719,3869,9433,1164,6297,9867,6532,7210,7160,5873,3484,8557,5246,4227,3647,2663,5217,3121,4563,4901,8421,3284,5115,7329,5562,82,5684,7245,8353,391,157,7256,6872,9075,2040,509,7309,2690,9844,4646,3744,575,795,3472,989,8207,3280,8282,7698,9596,5975,6702,7919,9447,1692,1464,1379,3829,8650,5685,2575,3922,6844,9408,3618,3738,9746,2479,8788,6720,8849,3887,2628,2923,8302,1375,9507,5660,4807,2440,7761,1820,2796,2548,1561,8679,2085,504,2604,1639,7750,8455,1047,2885,8251,7164,3402,7042,9642,8820,937,7058,5504,1021,8169,6455,2326,6875,5166,5758,1057,5893,5066,4064,3355,5872,8488,7887,5167,6353,5345,6870,4745,4081,1746,408,6770,9715,9109,3722,3135,3864,2579,3791,1147,5009,5616,3683,9924,913,6671,2347,5218,94,9375,2513,811,9963,6820,3994,2549,7407,9021,4768,5310,1711,480,3491,4860,9339,8284,8023,3918,3431,5420,7463,2246,1993,4406,7018,1678,5574,9092,370,3430,6728,4095,2766,3170,5880,5708,9352,5914,1332,365,3008,8574,2682,6473,3155,7699,5180,6383,6685,3068,3643,2280,5129,2379,4965,7359,5007,2748,2128,2381,5028,1361,5818,7595,2888,6572,2515,1769,1913,4169,1024,2338,7549,2959,8631,9172,7418,45,3380,5910,5683,5173,6651,2544,2953,2119,9824,3001,591,2386,7149,9737,9482,1981,2521,2762,6412,7498,5459,8514,6876,2446,9123,2307,7551,9375,5324,9439,3920,1547,1174,8232,8356,9847,9442,8952,5322,7499,9673,234,9267,681,8412,2482,9769,9814,6384,5608,2704,9289,4616,1065,3384,3952,5125,209,1156,2038,4923,7849,5797,7253,1399,2346,1504,7554,6276,9709,7616,4734,1017,6429,5967,3950,4077,2373,5100,3534,2827,5019,9267,7375,3617,4010,6790,9467,204,2022,7844,2474,8395,613,1814,9087,3540,4720,1797,655,7709,7558,1368,5876,8237,6188,1869,2958,7014,8898,5558,6443,3466,9681,5394,5676,4580,9850,4093,9238,8122,8400,7317,430,4045,6279,4384,9431,8338,2956,3535,3737,7188,752,2139,2236,6216,793,133,7686,5013,5969,8060,2218,1540,1731,1228,9869,5804,6911,1496,3129,8953,8456,2038,6019,2526,5147,2099,2460,796,1354,6292,7046,7946,2782,4981,7122,8989,6281,8380,5362,8239,3325,1922,7988,5166,956,597,6622,4705,4752,1547,5695,6457,9335,7049,8336,6827,1435,3448,7646,784,8671,4228,8735,3499,7676,4778,6332,9808,8067,7414,3721,4379,1345,2512,6197,3575,6252,1959,5375,2048,413,3326,2354,7758,1543,1098,9416,4601,7654,9541,2157,7112,1070,8491,4794,9703,9109,5419,4934,1115,5317,6237,9117,9835,6368,2125,210,5697,7897,4989,3907,5022,2742,2889,8618,972,9726,5782,1823,8442,1637,1467,853,6281,6647,6288,8246,5159,750,169,7308,4869,9170,6482,4330,4199,3540,3130,1929,9865,172,360,4703,2723,9059,3189,9732,3808,945,7642,3090,4856,8211,8231,9455,8064,100,4796,2340,6346,7875,585,1642,4105,785,2515,7639,6411,5134,6835,160,5326,5473,7757,9221,1766,7415,1338,9925,8956,4576,1633,8731,8373,3112,853,1538,9285,7576,7824,9432,6809,3917,857,6161,4264,1166,999,1602,6515,9548,2143,1870,4479,6509,4910,8841,1132,6220,1496,1361,4182,9656,9976,6310,1405,3940,6588,3395,6624,6008,6098,5159,3450,694,3817,7928,4607,849,6762,502,6056,2569,1160,381,8523,8092,4963,5136,8688,931,3566,9387,1511,8651,8205,4740,4378,7607,2170,191,9441,6931,3957,8183,6448,5444,6031,4749,3519,6930,677,4700,9805,6896,920,4669,4683,1622,5704,5849,4715,46,1723,1626,9281,9789,4731,7870,7676,9963,285,9677,7720,7264,7653,3912,1255,2325,6665,9783,4182,7102,4505,1703,5221,6050,9702,9861,8030,9275,9941,9049,4226,3340,1138,7313,9465,1886,9993,2154,8876,9238,2530,2249,488,7391,1922,3095,2901,1217,2349,4767,4793,9656,4250,8094,7240,2528,771,5320,822,8452,1286,5241,1180,5939,1396,7589,6942,9459,2279,6854,5718,1124,2459,9527,3105,258,7226,3240,3598,2062,4318,9868,1684,919,6893,2362,2293,50,3663,8851,6830,2820,9372,8967,5296,4077,5813,946,6386,3057,7452,4829,9019,7471,1172,4842,2581,3302,1132,9555,6188,8555,5832,9796,6223,7403,9205,4904,728,9130,1044,3254,1107,3283,3440,5129,8375,5569,7281,3214,8489,7547,4640,9315,8762,2895,2149,8078,7162,4949,5713,2707,9652,3331,2469,9625,9035,9464,5551,6042,4966,3388,1352,2684,3885,8190,8388,6410,4968,8517,4450,3462,9892,427,4511,3031,9165,7340,6730,8277,4163,2620,4275,6546,5911,7439,9768,4959,5362,3906,7241,7679,7842,320,9161,6430,488,39,398,1649,1656,8706,9223,776,5353,14,7202,297,2256,4772,6889,6346,9743,3211,5874,3435,7889,7322,2330,3879,2691,4186,925,1107,2925,3570,9450,3241,3336,6801,7498,7233,246,2686,2887,3773,9580,5978,1306,7274,8714,2207,4874,6699,1655,71,3038,7958,5510,4635,779,5661,3414,2778,2931,6618,6013,5846,6712,6551,3616,9607,1084,353,4411,1269,3012,5310,1551,3674,6938,2311,383,3799,5785,2490,7496,4284,1516,5983,9314,4461,3956,3887,1629,1592,5283,872,1224,5915,1774,3766,9513,106,7804,9573,3148,9771,5001,6654,2966,6263,1043,2169,9413,3886,3422,4439,8590,9770,2008,5369,9842,261,6978,3748,6412,6680,9316,4823,8173,5408,391,1351,6301,1705,6519,1906,5573,3313,5489,6308,3230,8727,6092,1582,9249,6230,487,9024,6183,3162,7744,6334,3323,9995,9822,5363,6397,4964,3828,7833,1964,1866,2385,9496,553,9082,2255,8780,764,3783,5,980,7659,8027,7348,5703,1176,2420,7390,8341,9257,1053,4973,396,1293,8495,8279,3965,9015,2171,8763,6612,8544,1795,4470,6120,2281,6542,5389,7482,5979,2785,6301,6346,6486,6914,3259,9697,4416,5287,9640,4795,3510,1484,9938,4955,2653,1437,8575,1477,5060,6672,6221,2819,7739,6226,9611,1416,4100,3255,2736,6375,3902,343,5138,2001,5570,3046,8494,7165,4368,8225,4099,4808,4858,7180,321,2118,5505,2777,3676,8279,3940,787,8720,870,3125,2951,885,8656,3533,3794,7967,6034,8926,4958,5620,7466,5725,954,1175,5978,4092,2348,1804,155,5014,8123,496,9482,1316,8462,7135,7345,9634,247,5826,6549,7012,7584,8077,7606,4207,3967,9190,5147,5922,5293,5535,6206,2943,3763,4127,3226,5533,4567,9613,9205,7025,7368,1104,3836,3451,7971,6038,4422,8531,4139,7528,736,1936,1318,4076,5782,9907,7455,6398,3921,1152,8548,9011,9967,7810,5627,4331,3025,9362,9099,2380,458,2417,6193,5412,2749,2809,500,4596,3458,8206,885,6453,2784,4498,9485,3389,8905,683,6018,8688,2720,5428,3931,5576,1007,7941,7066,4554,8192,9468,1858,8420,932,2397,7311,4391,4007,6783,5924,581,6079,5111,3282,4093,4425,8559,4516,2848,875,5988,3604,990,3507,4954,3851,1154,1293,9619,1307,1191,705,8150,892,8309,9460,6974,5827,6398,5145,7690,1905,2957,1555,3469,5358,8200,6294,5407,3066,4124,2987,4526,2645,3576,3013,4761,7993,194,8241,7170,773,5434,68,5982,3305,1863,5483,3897,5845,7204,9493,3589,2472,8617,2052,8847,9880,3414,4118,6948,6365,2084,6669,4173,8793,6260,4588,2679,5887,6168,8751,3049,173,8856,2299,3011,5104,2305,5239,2416,3334,2949,994,4427,9091,1877,1951,6695,9430,1756,6025,2693,1021,5916,1677,2577,1095,5087,1508,5125,8445,1471,6943,1654,2681,9414,1889,8692,7197,901,8445,6732,8571,3094,5626,8289,5077,4845,8218,9714,7419,4349,376,6635,4495,6811,9427,2963,1368,6883,577,7251,6612,1537,1655,7579,5434,808,4415,9413,5397,4557,1939,7451,4428,7483,2456,1339,8203,6132,9398,7659,2905,5753,3004,8833,8152,1670,5958,713,7986,3396,2075,5989,6640,8211,736,7125,7329,2686,1332,2980,267,2000,9236,159,1422,9870,5336,5549,9696,8773,4436,1933,6053,4013,2663,9273,6026,2371,5593,7345,9797,1583,7401,603,1244,7185,6795,8067,1532,3312,6888,4686,9676,2009,661,1292,1750,8209,2137,2449,121,8758,2725,5967,5086,5528,9271,8548,651,9697,9903,2000,5258,554,4857,4946,375,8990,4166,1055,2834,9213,6957,7806,5031,6507,3270,7372,7222,5797,2347,4313,8386,1462,6320,4507,5439,5828,4305,3916,7046,1878,8747,1675,5817,4663,1509,2953,5232,3337,3692,9181,2073,4168,4474,8608,1290,6647,1971,8853,2919,8497,2134,5074,1263,7847,7850,1731,284,6818,687,7183,6837,8211,8477,813,6811,8899,5782,2515,220,565,264,8673,6603,6958,4611,313,7994,8445,1905,5383,895,3998,5900,9978,8097,2533,7232,2808,6858,6750,2604,5550,5666,7249,6585,1325,846,8617,9000,2569,6855,8327,9313,8783,3363,8501,9106,8353,9913,4987,6646,3166,4188,7600,3052,1267,7407,9905,6115,4758,3861,8057,2138,7451,4440,8011,4138,3617,8340,2531,8920,4804,3322,9862,4060,1464,2874,2490,9974,7801,9729,4328,1386,8889,4593,9772,9534,9220,8234,4652,8118,6797,6752,1630,3999,3321,9023,5251,5970,3971,5228,3252,7505,7600,35,9433,3519,5950,5301,6955,7555,3255,3568,7214,836,4339,5376,5564,7057,2098,2749,9109,1006,2429,4396,1675,699,8391,4588,5617,6293,7191,9436,6493,2400,2374,82,8434,2236,563,4830,1181,2510,8935,4530,2592,2401,5870,6159,7676,2034,930,583,4177,5791,5535,8550,589,4029,9308,3645,5001,8370,4083,7414,9815,1579,9951,7198,2257,3487,3624,8597,1848,2844,9308,9834,3435,8756,1141,7217,7363,9285,2237,2005,2358,6358,7830,1913,2393,749,524,1551,2297,3650,4683,1896,3400,842,5284,8724,1288,2573,7056,8858,888,9646,3266,1305,5519,3230,1740,3582,2417,7888,6860,8380,4569,4904,3589,6960,4812,4250,2427,4477,8961,7099,6898,4546,5806,4769,615,6829,798,9297,3531,5268,118,8103,3203,154,8558,9370,5542,8394,4260,4146,9218,1183,5962,206,8160,8379,3291,675,8085,7093,6818,3617,6868,2456,8477,9585,3010,8479,5114,9908,1430,2279,5326,7452,4504,3923,1537,4280,5380,5155,4012,9441,6004,4176,1452,4513,8536,3860,1366,2006,7287,4801,5006,8973,7600,6622,1739,256,425,4992,4689,3309,1159,5413,4822,7684,946,3910,9621,5255,9102,1138,9477,1532,5129,2884,478,3581,1866,6284,5353,980,6374,621,1487,6293,3092,4388,5107,91,3789,6127,6030,8807,6604,2202,1686,9900,4202,4268,7963,8579,8663,8763,1827,1699,5442,1319,981,7237,5393,1048,8773,274,499,1211,5237,408,9340,3875,9725,4605,7862,375,8703,5062,4408,5490,3969,7562,3263,1225,5666,1693,106,4601,2652,8863,9033,4105,6629,3809,4325,1731,9601,8864,2381,4116,4749,3855,5092,1923,6223,8445,9826,2792,2753,3211,6551,6936,9603,4791,3550,8650,5908,3100,6343,1601,5218,4836,1848,3586,1067,9134,9591,1027,1503,3047,4002,8241,1530,2327,4841,4388,8789,7129,6490,9937,4742,291,7772,7314,9344,755,9006,6415,5802,6458,3281,7238,4140,7306,4863,6296,2881,588,188,9557,9682,9213,9839,6981,2875,5865,2274,493,4811,6805,1117,1453,5856,3167,9594,9236,1630,6639,7698,5544,6878,8571,493,8901,9941,2160,41,8606,3658,4534,3666,4919,2744,9400,2637,7033,464,1506,7753,555,4795,9753,3618,1636,9709,9465,5489,2621,6567,872,9880,5329,9327,2802,4752,8500,4564,6479,5748,3110,585,2639,7592,7294,2689,7835,1477,836,1957,3645,1132,4737,5865,4936,6872,1199,7764,6617,2264,8056,8322,4808,3933,1940,465,6234,4509,1053,7439,7366,6979,4940,9967,9170,8784,5465,1323,3431,7880,9208,5318,1361,9192,4897,9240,7356,1102,2512,5284,1537,5037,9242,3760,4090,6768,3917,2291,3517,6659,9508,498,1240,8722,8866,6223,6155,8368,9809,3265,17,9626,1809,4454,9407,9723,4616,6778,9612,7076,3192,9560,544,137,1819,5465,9984,8480,4740,8087,1526,6853,9049,7021,8222,6792,6474,8225,9842,143,1481,7714,5146,5930,8555,5955,4237,9573,7287,1530,6421,3695,2229,5127,1486,664,9478,5429,2098,2435,7073,3506,3310,1246,9724,6258,4688,2660,2248,4814,9378,9537,7647,239,1180,8715,5070,5289,4635,9351,4335,464,2115,8992,7400,9626,2478,5829,2803,1510,849,7953,7876,5466,8717,1390,1897,1525,5311,1811,1586,4452,9639,2098,1742,9287,4473,203,1596,348,8014,910,2277,4346,8074,7805,148,5793,1711,4234,3083,4021,1184,2144,4735,4664,2809,4349,5417,8038,4793,3402,5390,6409,9887,8430,7433,4411,7155,5129,4735,9002,1097,8623,1515,5527,8115,2082,4212,5706,4521,7898,2534,7679,523,6292,6166,9983,1968,1989,6498,9236,4671,181,1008,2154,5761,96,4288,277,3689,7547,1736,4317,8856,7392,9549,6603,390,817,5227,3022,1372,5388,5679,1909,7069,9314,7903,9874,6279,852,8887,459,7188,7398,3079,1714,8932,7725,4768,3134,1905,3466,962,5553,1362,1258,1198,6561,8416,1079,1613,3526,7445,3094,8810,5860,4305,1002,9996,1396,2306,9060,3826,4598,2642,5319,1429,6943,7360,3107,4358,7565,447,2306,9083,3161,9738,3923,678,8285,5963,3355,3386,2714,6592,9020,2441,7646,9975,3275,8563,7251,6240,4156,3589,1696,9293,1852,7561,9093,4197,7808,7891,3795,7885,8486,8051,642,6913,6887,4176,7985,6700,2014,4610,9057,4721,8280,7744,1444,1409,643,3542,4207,5704,416,6753,7765,401,4605,9491,4232,5716,7532,2265,3607,9324,6141,8990,1730,2115,5899,709,6671,1406,2037,9178,2674,7907,6531,3957,4048,2565,7497,9956,5071,6593,9609,1196,1105,9361,324,8914,1481,17,2208,2243,6148,1619,1292,9764,5092,7554,4667,1218,7817,566,9830,2384,5125,137,1052,4571,4342,9394,6644,1761,9883,1754,945,4405,160,1309,9167,5487,8949,5529,7871,8790,305,9558,6302,5869,8879,6112,1844,7626,9962,3412,6557,6405,6948,7618,9430,2568,5849,6136,8876,1070,5447,6933,1920,9828,4442,4105,5274,9509,4434,8568,9892,5167,7225,7693,5242,2150,5402,1773,4495,8272,6451,2644,4016,955,4800,5117,7244,3948,3833,9975,264,4997,2189,8133,3021,8875,1102,682,921,7251,7964,9053,750,3060,7657,5341,412,1775,5578,1938,2502,8789,4143,466,3998,3612,7347,7559,3446,1690,7554,9193,5716,5143,5705,5168,3627,5139,6487,6640,3169,716,6885,4812,8993,9878,5392,5109,7521,5400,2524,9229,6379,3311,6114,8141,4727,8039,6293,7044,1566,8031,8015,4302,3263,9293,8930,2728,4685,4758,8320,1144,1588,3428,6032,3980,9237,9422,4019,4780,9191,7113,4332,3385,9989,3345,5641,6733,1267,6229,594,4715,6546,5285,6548,7156,6907,455,114,6073,9441,6499,748,6596,1217,2086,4666,5977,5848,215,4600,2282,8955,1742,966,669,236,2286,2549,9558,9216,990,8406,3412,8828,168,3323,5154,1077,6849,8073,7194,1438,287,2021,7425,1991,7452,9160,905,9563,3331,8079,4379,8233,8061,4411,5351,9215,9102,4138,3886,4652,6698,798,5963,8093,468,2411,2315,5695,2449,5384,4732,5231,5239,6054,1581,2801,6868,1201,1272,9471,398,4104,1557,5037,590,7449,3777,2320,2151,5465,1434,3110,8374,833,3586,6033,230,814,1279,8358,369,6749,9534,738,6713,3994,3640,3226,3701,3407,8521,3166,6324,5761,4842,9108,3450,3994,6801,5782,1160,832,9987,5001,4888,2378,9119,6783,9212,7357,963,6024,6587,3112,9101,2758,4790,7637,593,4558,2097,7845,4375,8573,8545,974,6439,8699,6680,9381,3284,3377,6423,4925,3232,1852,6442,8144,4262,3430,2481,6352,8062,2453,8582,7094,9838,9803,5515,9807,278,1543,6788,6185,9749,6365,8660,2249,8783,2531,8092,2108,9213,9302,9384,8008,4091,5448,6436,6035,5349,4058,6581,6784,170,7733,9148,429,4842,4732,3539,7719,2766,7176,2203,2353,6221,9910,923,8628,8455,2904,8878,98,4585,5509,223,839,4764,685,8508,1909,4638,7633,6833,7318,3703,9116,5934,4856,7806,6966,3558,1370,8883,709,8447,149,9721,7713,2851,6432,2081,4573,1081,7207,2939,5404,951,8813,4984,1892,1664,3765,1488,1946,8614,8529,4961,7768,9127,9260,3634,6985,1477,8112,2750,5413,1506,2824,5000,8224,9417,5738,7666,9442,5699,8396,6934,2524,1961,400,369,7822,512,6659,5547,9554,6938,9594,3573,86,4172,4827,8110,145,400,6500,5,8991,2583,5819,1749,1441,3889,4787,5563,9573,5614,8017,1698,7645,2583,6341,931,4711,3622,7393,9997,6794,9935,100,6080,8916,1867,5242,1380,8374,1289,8613,7064,2010,905,991,4259,3721,3704,7142,6958,9323,2268,7551,5022,8411,9505,5001,9826,6906,1182,2885,5464,6243,2498,927,1483,8767,1128,8648,7427,281,9704,639,2491,2316,8361,5286,5234,4017,135,8116,8693,9891,1816,114,7066,9020,2709,3048,82,4890,2351,9979,3703,374,1583,5517,9573,6146,7160,4045,2153,6627,1021,7334,1620,5682,2460,7682,2733,1265,9931,143,1158,7923,9469,5767,7213,6482,9439,2637,2615,2340,637,1221,2381,4331,3814,9136,4997,3878,6690,6127,7222,5740,9199,7763,2356,2919,6415,6938,2592,9312,9982,3376,3133,4499,9312,7840,8171,5447,5807,2419,6821,5599,8177,9198,1070,6626,2993,3796,6899,1792,1869,4352,7191,3848,417,3283,6615,561,9005,2345,329,4808,3279,4939,1963,6048,8262,4008,2224,232,5561,4893,9321,2051,125,9186,5314,8297,2918,2422,5918,8,1314,5857,3001,9074,5885,6540,3593,3328,7046,6462,9073,5408,3725,3433,624,1026,3273,7519,2481,5776,3313,1928,49,4110,7545,9977,396,2729,5398,8584,4201,2886,3335,584,8239,7054,1558,9462,6669,6412,4859,2298,6136,6987,8170,3612,298,7420,2377,9156,3712,2493,9754,5843,6206,7051,9403,8778,4666,3977,7800,5951,6751,8577,1147,3266,4279,3293,7807,8085,1669,4194,106,73,5427,2883,2356,6655,1328,3153,3291,2284,8938,1203,3650,8026,6743,8961,7667,3003,2021,162,1131,17,7741,6935,5771,1632,6150,6983,2265,7580,6772,7122,5913,9227,7791,2590,7084,843,2299,6602,8776,6088,9574,7219,4498,2308,427,7072,7714,3560,124,187,527,242,8743,8005,1599,848,5046,9304,1362,1896,3381,360,7397,4551,848,4703,406,2601,198,4299,4149,4899,3070,599,149,9639,9172,5020,7347,9060,8879,4369,496,5053,9321,9071,516,3769,8993,4972,801,4725,5855,2197,959,2520,8917,8064,9506,9137,3934,5352,5659,2150,889,8787,5216,1434,4013,5817,9805,7841,7844,8519,5115,7492,3516,3984,2671,6954,9478,7287,4013,6741,1683,8270,9321,8834,703,4118,8113,5101,5415,242,1696,2225,5944,1245,6187,7800,1032,1304,4740,1096,399,7844,2971,4058,5408,6543,2396,9654,5835,8655,3058,6838,8474,3553,4849,497,3048,7821,6432,2264,9126,8313,7112,1976,192,7596,8523,1355,6248,3288,4725,7229,8189,8736,3483,7947,3261,6573,3122,5980,523,6936,9920,6018,2028,7615,6364,6200,3627,3011,763,2772,2435,8482,5838,6711,1509,8400,9239,9346,3456,6116,5967,6945,9481,5630,6263,9872,6315,5601,3500,8454,1503,6,8965,1990,4337,5904,1055,7448,4858,6154,7815,8666,7528,9091,6759,4996,4266,373,2069,9127,1578,278,2795,2026,6732,6758,5759,5812,4127,5880,5860,7489,9734,7358,5975,1882,9994,4349,4740,4529,9453,9369,2572,9890,5494,9161,6324,5780,6135,5246,7940,63,3013,8943,5919,2447,1021,9157,871,4345,1782,7870,2183,6078,8448,6560,164,9396,5382,4125,7228,9594,9075,5964,7863,2621,8964,350,2701,5768,4325,4222,1605,3870,4913,4953,2328,4155,2564,4071,9026,1230,2703,841,8384,5129,5053,9481,8071,7083,3145,5398,4669,5229,2964,7891,4325,4572,457,341,2318,1313,1829,2424,688,5493,2542,8766,4688,2787,1954,6083,5819,8173,9400,9089,3387,2116,7164,2646,2375,5813,447,9611,1048,3731,8343,8870,7841,2296,3802,7490,4829,7544,9028,1829,9724,6571,6365,5215,2085,5872,2468,3619,9621,2069,8564,6980,5556,8463,1895,6530,9544,5076,6960,8344,2644,1756,6449,8363,2311,6767,6237,4066,9991,1906,9404,551,116,9558,4175,8817,9789,7721,5929,2100,3903,7621,375,1850,4008,2177,1177,8975,6280,7159,8873,6088,1003,2170,6980,1824,6122,1615,6463,7637,3649,5632,9247,5528,1005,7390,3737,9883,6328,94,6070,210,2011,4520,4039,3634,916,9368,5433,42,9627,4069,1233,8813,5964,4430,6947,9979,6897,868,4271,3096,3745,4170,9789,8082,7377,5099,9186,8644,8439,5735,5134,1778,2701,4666,5782,804,2734,5374,6007,4174,1094,6816,1153,512,9117,7480,4925,2323,9301,4992,8484,5546,3832,2770,2909,2921,853,4062,6709,9262,2831,5721,4329,8334,8460,8125,4149,6625,3620,4980,9988,8132,2271,1282,5945,7969,598,319,2805,3283,8103,7540,2138,6704,6689,6054,3713,7465,120,3063,2988,6416,7518,2284,9957,5080,1089,8637,7938,7096,8654,4833,3354,7881,9940,6289,5444,104,2924,6760,2439,4689,22,4410,136,4227,9917,9615,9436,1404,5261,1212,7144,970,9696,3413,2144,6098,3758,7958,8016,3543,4060,2730,1058,4797,5943,8115,9954,3806,3108,9034,4550,4444,1530,5395,9063,1366,764,2023,2496,4514,395,2014,3422,2390,2358,8716,4261,588,8809,510,7256,4268,1402,1398,1079,4062,4528,6851,9109,6689,5734,620,8135,7199,9629,4837,4543,2473,1170,9005,4347,3204,9785,135,8514,6109,9036,2033,9865,9032,796,5941,7838,4552,7132,6518,1621,6253,8151,8007,436,3233,804,6192,6144,6615,7383,59,1983,486,1658,6571,4180,5219,4793,1411,9356,8188,2271,2836,7248,7079,7876,8585,5242,7143,6431,1666,592,3351,1434,4074,4523,9123,173,72,1465,8347,3873,2295,6196,1060,2949,8544,1984,8784,2274,1947,7324,3359,479,2823,4513,8996,9584,9085,3514,6873,5096,8361,2691,2501,8793,3353,3576,3080,593,8304,1437,6263,8147,9196,6573,8287,4195,6005,5695,9465,4284,4671,8825,539,7142,115,6713,7196,4396,7073,708,7796,1146,9916,4248,6179,1255,9428,2202,7117,90,8709,8394,5362,9306,940,2906,9634,8577,8642,9751,1299,5127,3421,926,6261,9725,1317,4528,6237,2400,143,2241,4861,7308,4975,5779,6418,7346,3766,2333,6682,6950,3137,8755,7674,6296,3260,7244,3710,3379,8980,2760,4649,5654,7301,4348,3893,8788,6320,9691,4385,5925,3747,7988,5703,1871,2507,8538,3479,1194,1712,284,407,1661,9250,1661,1858,9616,3068,1926,5487,1455,8871,676,6310,7025,7456,8757,2546,3185,1505,9539,8789,1101,1229,3631,8097,4513,170,5900,5324,6480,5336,1230,5078,6081,4815,2110,6449,5409,4833,3322,5734,7980,5684,9791,6528,1396,2091,2985,7741,1344,8398,9287,2112,3679,2998,1539,8682,3547,2724,452,9736,1145,8505,7946,1395,5349,5890,7409,624,3163,1106,8267,1718,5697,8937,5346,2603,4345,5825,7637,1619,9761,4157,2700,6688,5579,2574,5976,5523,3473,6444,3016,627,3831,801,874,7524,2518,5947,2221,5551,8447,5224,933,4884,8425,8522,5718,5761,975,5756,9086,2225,2101,2938,5438,3239,4422,8217,5704,1633,6637,6047,589,2836,7150,9208,8666,7661,687,8296,778,6032,796,5856,2086,8096,4405,7072,1330,5959,2265,6140,1664,7969,4129,7848,9854,5814,2914,3085,8158,8017,2354,1943,4427,8193,8768,7167,2203,6038,7102,5980,399,6491,2086,6461,2889,8131,353,6382,8425,9994,9745,3155,6400,7100,2058,1476,3104,2420,5903,9273,8019,7858,1637,1293,1758,2974,3443,3718,6067,5103,6006,6356,3753,4019,5482,5900,1075,5977,5221,4871,2683,1177,1532,3348,8929,5068,6301,1595,1563,4325,5293,6253,3429,5741,5169,3573,9024,1283,557,1815,7240,2688,3815,6983,8992,4308,833,4626,5472,2507,4605,1766,2779,3697,3084,91,5893,6511,3056,7351,9224,7266,2943,1517,6142,541,1179,6946,171,5953,7137,2114,6700,4814,8001,3794,4098,5715,9233,201,9764,862,5040,1026,6665,1246,7478,2216,2369,5174,4298,2106,1565,7005,3509,5241,4333,64,8274,6450,3181,6056,939,527,7168,4340,914,5835,9231,9866,949,8241,153,7192,3725,7982,7456,1760,2313,4881,4242,8678,5584,3990,1627,2544,9467,9553,8964,3911,3945,5868,6914,983,8540,3047,2923,4348,8710,168,8657,3696,4542,7853,9949,5695,289,6135,4137,5470,9901,8977,3156,5516,1877,9693,5350,1324,1631,9804,2155,9852,5786,2781,4094,8653,7810,5159,5440,6524,655,6879,3874,5424,4684,4568,7677,7786,2417,4638,5611,641,288,4569,9526,9681,9433,5693,3857,2049,9470,4886,6960,4599,2384,5918,5408,2349,6373,9843,5807,7849,2656,3361,6002,8398,9331,2858,5102,5090,7878,5768,4625,9443,4329,342,635,4431,9740,2099,5517,2665,7960,3715,8170,8449,3713,3110,296,5106,3847,9574,3038,9076,1864,9095,8111,3039,5388,2605,7733,3238,3813,7178,5517,7960,9099,2263,1197,3703,8141,5513,2457,7223,1328,2930,6376,543,1568,5994,6245,4268,6119,8835,999,9141,4166,3368,4739,5470,6265,8069,3964,3220,699,4706,7198,1306,500,437,64,5499,5568,8222,7028,7826,7995,5851,9641,8130,7855,7915,7832,8980,5534,4972,4658,4130,5319,3584,2538,7384,2116,977,2760,4132,4950,4691,1121,8295,8729,6965,1407,4837,2768,5680,7941,8864,9623,4047,8733,9340,6609,8241,788,1566,293,2638,6762,2764,5108,9368,2126,6382,4467,5570,9148,878,5486,3779,7913,9993,4905,3312,4305,1670,6117,8758,7438,9548,4286,2314,9340,8874,8816,4765,4864,2887,5690,7543,5790,2191,3369,7788,9112,7104,5615,7684,5617,7549,3089,9285,1289,3474,6012,5067,8207,3603,7090,2311,585,9007,6615,8595,1624,1892,1766,3420,5880,9582,1607,1885,7395,5626,5223,5054,9134,8851,7034,8922,1585,698,3638,8187,9569,4227,5941,5265,8222,1248,5429,8424,7464,2855,2128,5251,7327,2645,2269,9246,6088,1537,1131,384,1744,7247,4933,2211,7075,3671,3929,8920,152,3640,400,9991,6991,3600,3189,5083,7518,4087,9043,4756,5882,4215,8861,686,9878,7169,8755,3099,444,6857,4891,6698,3536,3616,9566,7110,2666,7648,3398,6043,3616,6690,5250,7714,3538,6674,9478,2731,7303,1985,5301,4579,5038,7092,9774,2772,872,2275,3936,6597,1007,3963,2377,6843,9531,6164,7816,641,7420,6664,4474,7021,9152,8502,5770,6379,7331,4014,8693,8977,2966,2407,7627,3445,2209,1922,1246,4431,5191,4822,6779,5246,8860,5010,2982,3236,9605,1458,7315,7532,4998,7110,1353,3439,1908,914,4896,1988,4602,9275,2757,2173,4145,622,8970,3398,9193,4249,1206,9534,8811,8598,8659,7447,7092,2957,7944,2370,5755,4538,4159,6447,560,6088,99,8061,7937,8640,5468,9421,7272,263,4330,1108,7659,8796,4938,7536,8576,7210,9948,2529,5335,8449,5752,9229,8144,1538,2529,9048,970,3351,2111,6264,4297,5831,9844,6000,2734,2827,8527,7572,1360,879,3352,6369,3648,9503,6362,9779,3233,2136,3455,4180,5098,6675,9044,6038,6776,678,5688,6808,2457,3374,9000,42,2857,1720,7001,9827,327,9384,1326,85,1569,9072,6413,4978,149,9429,126,4339,5954,5935,7203,8164,2257,5574,1437,2788,4902,805,9173,4621,6927,9895,4944,9447,8397,7037,73,8701,4704,5045,3573,2506,2002,7923,1502,1066,897,4966,8571,6903,1673,1617,8302,7506,902,7779,2086,8395,4081,4996,4877,7078,8141,9327,5877,8358,2302,9443,7024,5140,6256,2240,6142,6966,193,2062,6946,3904,9261,7380,4507,3902,1500,7335,8089,3167,4780,3871,2317,703,1970,4251,5898,4881,793,1563,5475,1161,3012,9720,2885,1902,1025,6029,8438,1373,3096,9024,4486,5384,6517,5529,6871,8950,5568,1743,8241,2213,6061,9246,3532,3210,3427,5229,604,1913,6232,1807,7680,1580,2424,9966,8765,6879,5900,1880,7887,8537,3768,862,2355,404,3984,1413,8001,4314,891,1022,7958,6590,8901,1227,452,7808,479,5354,3520,9498,3707,4959,9912,5630,4460,7903,6191,7882,4618,470,5505,8700,6913,7306,9025,3316,1599,4140,9790,8011,4118,6465,8309,3310,2926,6163,1895,5195,1111,4702,3986,7999,8118,2457,2183,5715,9684,1350,2745,8214,5045,1542,8643,5408,7658,1933,9437,6967,4682,984,9152,7975,9903,612,3841,9762,5666,5914,3310,7468,7866,5847,5324,3059,3335,5850,4624,9281,8576,9565,1272,4907,6715,9195,2651,5738,5044,1165,4437,7493,5905,544,3318,5197,7005,5191,8717,5572,9595,5851,9692,9649,6320,971,3745,722,6815,6176,775,4473,3843,6580,1934,6617,7480,1220,6591,1912,2527,9315,7979,560,2540,5153,9287,942,9110,8248,5916,6516,6980,8696,9391,5080,369,81,9774,1495,8029,6576,6531,762,9929,5867,2208,888,3428,4656,849,2581,6658,3615,2177,4204,2530,308,7505,6313,2120,2950,630,1271,1159,5882,8939,9110,868,7698,660,151,7625,1536,3845,1973,6919,9427,164,5855,7443,5046,77,8302,4092,9146,190,3207,3902,4207,4204,2698,8389,4090,4044,6732,687,9236,102,5366,234,2499,1180,1797,4911,7095,5644,6459,53,1825,3574,3162,227,8836,8062,9605,1085,4244,5097,6197,7301,4129,8728,7387,1549,7209,2595,2108,3172,1862,84,362,4626,3025,6577,9226,7719,1215,1336,1472,2910,1395,6547,6996,322,3194,9139,6588,2976,346,834,5869,1678,627,6595,456,8123,5323,8718,2393,4383,3336,7563,1672,9944,322,8109,9627,3423,3356,4507,5619,4574,2854,8607,4117,5294,4551,7940,8510,4267,4054,269,2617,7051,2810,7147,9733,5703,3037,5082,6691,3357,3644,7959,2198,1312,8583,8475,3817,6523,723,7786,6994,6522,3171,2466,7716,2851,5475,6490,656,676,413,6529,2233,1630,9342,8376,2939,155,4985,2577,158,9322,1197,21,3629,9456,8387,336,362,4256,6914,1669,9089,12,209,3359,8703,2427,5773,7055,1859,3178,4075,4772,8736,3484,6444,2339,9791,1428,1885,6814,257,3393,8426,9795,9457,4986,1452,2496,8357,8780,7875,9663,5230,9150,9489,2527,3327,8380,4010,2905,4362,3257,2183,5513,770,4393,7981,8536,1382,9104,4662,2585,7259,5728,3131,4854,3564,5470,695,638,5275,1436,2999,2804,8970,2978,3962,3244,604,374,4064,6835,5435,9200,5714,6230,7959,9284,9513,5312,7249,9243,8318,7289,223,1477,4466,4935,6977,9852,5702,8622,9574,8887,6803,8938,5823,3252,5175,2369,9798,1836,3794,5045,4003,3068,8663,3266,5355,8173,493,5222,1281,132,2249,5002,575,1338,4680,2981,1176,2208,2368,9974,8348,1432,3813,9363,1589,8994,7007,3436,1207,5792,9816,1983,2425,8403,7184,5837,1205,3935,5305,5675,9328,2296,9543,7037,2649,368,7374,7674,7557,2039,5503,5383,8702,3818,1436,977,5670,885,7625,5545,4255,7262,8099,2436,7349,1362,334,3709,7832,8793,9299,2251,9520,322,8472,1026,8619,9279,6009,6407,3786,7431,565,2911,3888,4379,192,4929,8768,6358,5168,9768,3987,7902,1107,2668,6330,1064,6497,4065,7059,8935,2295,8919,4802,7345,4051,404,8870,3225,4134,6692,8948,8252,5875,5364,4714,8014,9534,2022,6888,3852,8965,825,5271,7641,3718,8962,8418,9651,5111,7748,8123,5365,5122,8327,9429,8588,9231,9946,581,3893,3198,1940,9569,6194,5693,3604,2087,3251,747,1096,1771,1112,5554,8639,6262,7737,2952,18,6653,9714,6367,4319,5293,739,7665,1952,4116,6786,5626,7036,77,6685,9754,6021,9112,7619,3345,7055,5169,4671,5705,71,4528,3675,4854,7373,4118,6085,9912,1187,6968,827,7427,1275,2334,3048,1781,2748,2953,119,7873,1444,459,6614,2097,2849,4034,2912,5711,9396,3870,6935,8990,9696,4142,4,8165,1341,8568,3270,5096,7051,931,5066,4934,9075,8958,4850,2887,7837,9735,1624,8588,4087,4936,1162,5308,8581,7870,5039,1949,2934,8231,7396,7455,775,1700,6546,7003,7648,2300,1761,3660,8772,1433,2828,7010,6089,8435,3542,1683,1756,3439,1244,9197,9817,6659,647,4432,9157,536,9332,6537,3267,7772,8511,4420,5227,6445,8441,4947,6978,2608,7205,2904,9032,7312,881,5484,3150,1364,9229,1322,7658,3192,74,1503,3547,6664,47,6432,1975,3422,1770,3472,6934,2876,785,8138,839,4374,1011,854,4457,8534,6567,9571,7471,9524,2803,4646,982,343,687,2070,789,5578,9713,3831,4340,6744,9601,5628,6089,1721,4621,5437,6662,1577,3803,4271,5908,1377,1833,1009,6687,5847,6715,4066,1074,3226,7198,9755,7832,7991,1886,7075,3750,214,1299,3604,6644,8980,1513,8196,460,2304,9753,8107,3406,2714,5074,9742,6898,1385,8474,3590,2503,6838,3669,2691,2468,7380,7535,1475,2489,2313,2080,39,3440,4501,7542,5917,2763,8550,9849,56,8034,9756,9146,6784,7463,2116,7805,7396,3655,9073,7796,2559,8793,8429,7246,7052,5978,7267,865,4839,2313,6586,4487,560,8718,9726,7239,7759,8628,3317,410,6724,3954,8229,6415,3572,5837,9820,9114,7183,261,7024,2280,45,6236,4017,6348,7396,9418,3016,4688,952,2246,825,9451,5315,5408,8844,9850,2925,7544,321,5236,9683,1755,3820,190,6834,8325,6477,4563,8105,5852,226,2882,4162,1462,6819,1047,1209,5992,2140,8711,8770,2155,797,1130,5201,7810,6982,9814,5421,6285,9037,1762,2878,376,7956,5248,9988,1140,2766,3601,2796,5992,9905,5428,394,6437,9467,663,6524,4321,1446,1535,4612,4371,9784,4674,2517,9906,6430,4608,7115,36,9465,9339,2290,2499,4301,3171,4138,6426,9385,3756,1590,2724,6325,9701,330,8793,4064,1510,103,4433,1357,6198,2989,3264,810,5290,3075,7641,5459,9504,5108,7890,2594,3735,2160,8889,5347,5258,1808,7031,9822,1659,3635,1170,6161,8588,6012,6650,5912,7318,842,830,2816,3612,6792,9892,1054,9272,7922,9682,5139,1443,9112,425,2418,335,4492,3992,59,9419,2613,8290,1731,5831,4209,3559,649,4479,4432,4437,4744,6006,885,4748,5235,8386,3529,5071,9675,4275,7456,5628,775,9720,3254,800,915,8794,6744,2368,6659,2144,8922,6457,6142,446,5253,2404,5171,8092,823,3721,2585,8690,8230,6267,24,4670,4376,9471,5535,8696,1406,7285,6054,6657,6253,5183,7059,4578,2895,4927,5708,7135,7828,2637,2599,5389,834,4897,409,6057,3120,8117,2759,165,252,2563,284,7507,3298,2836,3309,6671,1662,46,8955,7871,2861,9650,3035,6157,8737,1167,9807,4603,1435,9720,2142,8972,5574,2161,7467,8961,3013,4114,5832,7941,8000,6333,9907,6618,2085,7217,3527,7179,8760,3924,4328,5959,4525,6046,7522,8946,8627,9245,8854,9247,8641,5437,9651,2283,1813,9419,159,6971,146,7020,857,4494,9762,3386,1547,6728,412,8889,9183,5408,1058,3389,2097,4264,7130,7177,9177,9855,9641,9012,1555,5868,2863,9407,158,2766,8936,8006,607,1143,5491,3072,5839,3287,3366,1139,6234,8121,8172,1536,3265,4127,6833,5526,1420,4973,4035,5345,3042,2985,8762,2598,8796,5109,5955,4285,3535,7110,9657,5947,9087,6892,4911,2029,8762,7326,1206,7,4229,9942,4809,9749,1138,3679,4277,4597,2677,6904,672,9416,6539,6,1720,6034,1128,398,7359,3936,3514,7888,4547,4697,438,318,5512,9275,2779,9035,9897,3432,7514,2533,3116,5702,1442,7867,1851,1071,3603,7919,5244,3944,3847,7508,8366,1994,1024,927,4113,7460,8104,4446,5516,7664,3179,753,5623,3762,1727,9332,7668,2295,4048,4479,6706,5181,3371,4621,7487,8103,8677,9833,1883,2298,4847,1305,7465,7414,8768,2988,3558,3062,5223,1370,4120,9395,3335,3314,2621,1468,2400,3072,6635,8291,8043,7125,2755,6177,1592,3662,2170,5771,2970,7900,8796,2493,9037,4204,4659,3076,3941,489,6793,1160,3998,7030,1390,5212,2080,6108,1995,9843,2246,7312,1,6883,1246,2438,5250,5030,655,2303,1688,5746,8521,8713,9394,5391,7460,1629,6035,8596,708,9688,7104,2847,3844,4083,5810,3805,2168,2856,7312,5426,5846,7809,1790,4916,7211,2175,5225,3476,2317,4179,2722,4588,7493,2070,2258,2209,9849,2250,3791,9935,8400,5845,7968,5984,1495,2547,4419,3591,3761,1969,3687,7779,8453,4129,6243,2795,9142,1905,4797,607,7528,869,9641,932,6949,4160,9681,1495,1730,4906,9810,631,8020,4103,9783,5439,3456,8629,8633,6379,6399,5252,6332,37,3466,2798,4398,9052,6269,3275,2697,7374,8967,8526,9646,3904,8851,5855,1128,373,7416,2748,9960,5500,1043,7266,940,1607,3286,847,9054,3806,8815,7881,345,5979,9830,4544,9126,6550,1215,8151,7907,6505,3808,9330,3786,8632,8055,4077,9040,3702,1213,61,6712,3274,5663,8691,6859,7829,5281,8136,1660,567,3534,5578,4949,500,1615,3732,6693,2603,6068,8919,1848,1315,7864,7695,2575,5199,6120,5686,9240,9210,2085,6062,3024,7402,3942,7590,987,8070,7506,398,7650,7446,1817,7128,7933,2254,347,5042,770,9840,3932,3591,680,6145,9998,9428,4553,6583,6964,3670,2353,3312,2826,3689,4930,5111,5130,714,2784,6571,9414,373,7095,9401,2951,4901,8207,4629,2256,2636,1193,451,1883,5023,4962,6767,2295,2913,6455,1768,4038,5491,6725,209,618,4529,1713,2851,7242,8884,9329,3344,2626,845,1528,1344,6704,9197,9518,7227,1782,1589,8638,5875,4160,3083,888,7361,8747,4550,3585,7491,3916,572,2937,1589,1919,8352,738,7578,2248,9875,1173,6838,4507,3315,3055,8761,3311,1877,6642,6985,7752,3173,502,2659,781,174,3889,391,3632,8595,6909,5952,5023,7681,8489,6664,9563,5737,7068,794,3626,6274,2784,6268,6255,648,2456,6493,3097,1966,1715,771,3539,6293,8679,4075,7417,4216,9430,1047,6743,6691,6962,6099,46,6674,7517,9314,5560,2737,817,5083,8932,8026,5440,6317,3393,2638,7196,5394,9164,3573,177,8715,5319,7812,3935,7045,5469,8111,1408,2109,2399,4602,5753,2995,528,6471,1128,8076,182,3311,1276,5339,5218,7435,5938,8511,9381,9765,5900,9639,4128,1108,4179,6037,8235,1133,4834,2911,4227,3554,2970,7979,2042,1058,5876,2872,7768,9008,7849,8699,304,4003,2936,2856,253,6768,8481,5246,9844,3226,1153,1624,5172,6536,7919,7190,7916,3849,4530,993,7727,4393,9667,624,9334,9242,1454,4442,2099,2139,2860,2426,4442,6515,4999,2191,5866,4249,8248,1806,905,5548,3525,3417,5958,7089,916,6890,1260,1307,432,268,5646,4090,5498,1614,1572,8228,357,4889,9922,5953,4829,6289,8786,9438,3844,4121,3113,2348,434,982,6912,8556,1197,1917,7137,5738,2560,6357,2094,5989,9338,3714,1187,6135,1305,7814,7445,8462,3522,2652,6522,3900,7224,2114,122,6423,3738,8302,1132,748,3706,2613,1519,7948,1141,1826,1553,9205,9849,9927,714,5783,7242,3127,1907,6878,664,9198,4094,3384,7443,2017,2401,9832,45,3239,9950,539,1579,7654,6764,4813,3422,8593,9391,2230,5743,1127,4522,314,3408,907,5348,7676,1934,9300,9783,5438,5830,2171,9243,4775,6074,2381,7289,8185,1082,7094,8512,3913,136,5784,7565,4911,14,3487,4399,6569,9395,6385,9395,2209,1664,5917,8114,579,9259,2020,6079,6530,2893,57,9487,6616,9472,6706,234,7593,7213,5006,7938,7217,4331,7490,291,7310,8321,4116,8939,6850,4534,2765,5408,1146,4765,396,1052,2096,1515,9829,6001,4805,2254,6827,9953,6619,4086,946,4374,4112,2617,6569,481,1157,4860,2468,3462,5521,1641,8998,4450,764,6242,2092,8722,5102,1212,9744,393,2153,1193,1858,4027,9758,5859,2562,8124,2703,6937,5062,7980,247,5930,5776,4114,838,5281,7413,3779,7678,8820,1079,4078,6691,3838,2359,6285,3566,5402,2353,725,4669,5945,3414,1969,1859,9650,4992,5725,7563,285,4350,3032,8478,8234,5617,8722,2964,7732,1682,1663,3327,5433,4209,2730,9110,8694,1526,3677,2647,9083,1620,6609,908,8771,1500,5828,8009,3007,723,611,7966,7766,572,4748,5527,4035,1474,6416,4515,6777,5921,3487,9351,2001,8360,6006,2813,1237,7974,9270,976,575,1612,36,2323,7142,7450,4448,8677,7059,8114,7181,9444,4367,3777,9730,2568,6507,5025,9152,9826,299,2360,6103,9620,6084,4292,1427,4843,9994,17,1828,8962,8952,87,7459,8316,779,4917,1487,9851,9457,1427,8182,3387,2085,1428,2729,6206,9238,8351,4281,9709,5071,8143,9251,702,2830,180,5421,155,3515,1256,1586,6080,261,7283,6872,9937,9521,6968,2110,7302,998,6373,5494,2306,9136,1008,8899,6680,78,9463,9863,6886,893,8385,7763,7198,5430,8893,4623,281,2402,1507,5529,3716,786,2830,2906,9388,7885,586,1752,6360,4995,1764,7997,9889,5418,7195,1872,5543,8648,9592,5635,1788,4356,788,4774,9116,4301,872,8437,7949,259,6044,7814,1200,2481,5917,1100,3807,4174,2489,507,852,4442,8026,7154,1980,3639,6646,8437,3522,4666,9771,2432,686,5491,4359,1588,6716,183,7516,352,7242,1611,3394,5022,8757,6108,3900,6715,3539,3787,331,4653,8757,1082,8347,2138,1580,8757,3870,9569,1129,8142,9775,9424,6263,7213,8219,9829,9208,5258,9787,8873,9883,9157,6106,8874,4064,9859,289,5968,8953,2596,6957,9916,9806,2479,400,7360,8194,8210,518,3036,7163,8633,4052,8131,6799,6768,6476,390,1172,3328,3463,3297,8992,3753,8451,8217,8118,8285,2775,1970,7289,4321,8168,7349,6325,8146,6813,5500,2142,7498,3714,7970,9343,2279,5462,9960,234,1762,5326,7827,5957,7999,6119,9949,4064,7841,1667,8323,5808,547,2965,5140,1109,1637,8975,8892,3895,2977,6576,8169,4815,5291,1413,4945,8170,371,9839,8262,7805,9340,8839,3015,3943,7596,402,8641,5026,1248,3515,6192,7226,9663,3168,1520,1679,9632,5935,6025,2008,3701,2617,7838,6980,9503,6674,1124,8005,8052,827,3027,1251,5540,4204,3398,9069,4017,2548,296,5076,1059,5573,9281,555,7553,4124,1609,7559,6233,5004,7762,7484,8966,6077,2998,5343,9729,8555,5967,6728,1054,2189,1267,8961,6909,3843,3626,8500,616,9899,7574,1903,5488,7728,9821,157,6714,1752,6483,2750,902,5399,540,5110,8447,9368,8243,3428,8027,3891,177,909,299,298,6564,6107,3812,6939,4656,6040,4953,9720,4870,1380,8716,892,6045,1526,1261,6280,6718,7506,1417,3355,2807,6550,2409,5410,8941,563,9902,3737,7732,8111,8316,5681,8503,8386,2739,288,4032,8251,4428,2312,1615,928,4231,2644,2509,8681,8454,2143,7471,329,5765,8234,4599,153,9051,5652,7325,2060,9035,1404,5177,506,7008,2802,565,6114,110,6870,6221,7476,3060,1357,1685,6278,9176,3983,8021,7397,1837,3781,785,3689,6888,1718,4132,2243,3871,4718,5502,1034,2341,2429,8402,3810,7351,9919,4976,6533,2071,5363,9003,2518,1668,2074,8130,3064,304,9856,5165,7047,2376,2949,1004,9512,7498,8605,8598,3081,8063,3118,6832,8129,8208,8993,1094,3192,8235,5212,1385,8275,6368,3422,6379,2770,6532,9629,8237,5579,449,1973,4147,7008,2338,9489,9460,9603,9491,4267,7201,8851,5325,2076,9189,3134,5657,6950,8702,8458,5453,3524,2134,8789,2317,7111,4905,9722,3668,6966,5584,4971,8534,335,7815,8684,6177,5644,6765,9519,6782,3741,2533,9870,1925,3044,9925,8262,3340,3679,5207,5856,8219,4028,8050,5588,3764,8881,2449,6024,8466,590,5368,6344,7834,1483,6801,4920,1290,2099,3468,2476,4638,1404,6494,7140,4966,7964,1168,7927,9678,3627,7321,536,4172,1467,51,2006,1384,4765,9981,4122,5839,2525,7152,8949,6635,1616,5508,1678,8596,9741,9533,2928,6721,5035,5692,9403,2527,2919,9004,1089,5999,3927,6472,3281,6129,566,3743,1470,9096,3005,753,7436,2555,548,5659,6153,2927,3864,2189,8091,9274,8102,7043,3937,7764,8794,5326,2806,4989,4915,8685,6256,1169,8629,4735,3879,351,2623,76,2880,3725,5132,8309,858,3433,2171,6056,8320,2261,4962,8430,6642,1628,6127,9240,7833,8650,9853,5819,9188,6678,3539,6720,861,7658,6369,1267,2342,7224,9907,6860,8186,20,265,5261,3560,2113,422,8075,2896,9443,6725,2831,3667,5639,5611,2399,4890,7407,5136,907,6284,7235,1478,809,6861,5967,6955,7780,6069,6984,6481,1953,6254,7822,9791,6819,8657,4898,2361,7811,328,7667,3870,6804,371,9546,8686,2547,3034,6243,4657,4601,2365,405,7757,8183,1084,6307,7934,6121,6042,9287,5058,3966,7111,5048,1457,1770,7399,3048,5757,2128,3396,5215,1748,3261,6989,9562,4035,1548,6402,164,74,1369,60,3199,986,7378,9916,8101,1896,6835,1783,3654,8815,9002,9850,3057,2863,4707,5351,4106,7620,9772,3284,2572,4007,2295,1780,2304,2432,4324,3581,6031,9530,5579,7266,689,5860,6127,8887,6056,4301,3502,8192,465,6314,5233,6761,8629,4519,8719,1866,1851,7430,8957,6884,2353,4081,9947,4776,4105,1900,4649,4097,2850,6172,2774,5490,6754,7881,5843,5598,9906,9072,3398,3731,1013,7323,7538,6135,8862,8473,9861,7990,9046,4914,4263,8845,3288,9641,4658,1994,9758,6588,4187,2091,4503,65,2241,8164,8048,1964,3065,5031,758,3474,7176,8023,7897,3225,3528,5731,8273,7991,3502,4438,1687,6512,891,3374,7468,5410,3509,6282,669,7407,1521,6836,7974,7617,3478,6954,2689,3456,7205,8437,8771,8294,1075,7685,1904,5101,4870,1320,8235,7496,8205,4275,1856,6938,7276,4079,8833,2562,1961,5094,2281,8499,4412,912,9666,8042,8162,2786,7481,3397,1317,5720,8198,385,5166,8918,2989,4156,3634,3123,6340,2826,6311,9674,6451,4165,116,3441,8168,4226,2459,9651,3108,6763,5233,9150,5725,755,7920,1270,2505,3718,7469,7397,4688,6229,6524,8185,4678,2822,6040,9955,2361,4472,2162,7274,771,8704,5553,348,3597,974,641,4333,4051,9198,4244,4869,9483,5348,8529,5376,5089,5617,4003,5052,597,4041,6933,1271,1962,4360,5876,222,4055,2609,7923,8832,9836,2634,651,3363,2405,5649,5631,3159,2812,9462,5650,8793,6405,8686,3735,9965,4921,943,4819,9285,360,16,5645,4925,1085,3422,4141,7581,6489,2858,2932,1035,3018,8281,2459,1478,1149,7988,4076,5665,7865,2046,4664,4080,5984,535,9866,923,4513,4796,7494,8909,2949,8020,2217,4534,5105,270,4343,9621,9079,4769,683,6987,5218,554,4023,5869,5934,7077,5907,8064,4957,2695,4281,7557,2813,6867,8769,1750,6924,7419,7797,8949,4575,4897,4629,1964,7708,3784,8932,8142,5773,3078,4546,9934,1630,4597,8781,570,5216,3488,9088,6432,3866,6251,1012,5040,1265,2219,4826,6605,2137,7323,7160,7911,2509,5214,2803,7677,3460,2298,85,8641,775,5682,3724,8026,1565,8866,2448,3788,5939,5251,6505,7192,5245,1835,3970,6976,2520,8677,826,9069,4145,8563,348,7609,6768,2511,2662,4610,2803,4383,4888,9022,88,4776,4096,5929,5794,8891,5633,106,335,295,9965,8948,3378,6631,3177,3256,4665,8613,2774,1643,7751,3415,5655,5672,9216,8117,2881,4367,3167,4091,8976,3860,7219,4764,3542,4820,2266,7718,1718,5999,888,5174,1798,8273,4482,7598,509,9290,2265,5037,7698,2807,354,3633,3588,3731,1751,6034,6389,8898,122,5777,5414,8731,917,8309,229,4683,5013,7454,9414,2392,3082,3854,2361,8346,5475,8827,4976,8720,526,3702,419,361,2012,7367,3633,4927,2967,7378,4254,9108,1887,1679,3164,4010,152,9218,6592,9987,8073,3138,1976,4798,5990,7245,2169,4762,526,6737,4853,4186,180,9096,3192,5242,253,4590,948,3414,8028,7243,5460,647,335,9717,3330,1889,1544,7824,7056,9095,6370,6762,2932,4171,8756,2400,461,379,8522,1889,680,1596,2549,5429,1496,3114,4460,1993,288,1494,9171,3237,7874,7199,4881,3508,3006,1270,7814,2985,2374,9177,3416,6108,5865,6544,3118,9979,4874,8178,5952,8344,3589,7240,4046,9963,7026,1842,4948,9738,6842,1037,743,4485,4085,6450,5047,5130,9111,6697,5099,7246,9472,8407,715,7720,8855,1115,7063,4653,5596,6212,1774,6077,9871,3266,9425,1360,8672,9671,831,2211,8910,9735,4514,772,4449,8894,5865,6410,7085,924,529,4821,2860,6544,2210,2183,5235,2365,6703,8889,4991,2726,5279,9737,5949,1711,4929,299,2494,6975,2351,2082,4347,5503,6308,5214,2206,8134,8650,6365,2193,8253,903,7058,2857,7862,5101,8855,7059,3684,942,1047,1400,1437,5343,1509,5099,6035,9367,3560,309,5683,9817,3948,9216,9416,4903,2068,6469,5530,4402,7148,5175,2431,444,6657,3387,1653,9764,5965,547,4777,4860,8708,7557,4054,7096,525,7101,4949,2548,5583,6063,7708,6793,3316,1126,1356,2693,6250,3133,8391,5101,2152,4406,3464,2779,9159,7986,3293,330,3492,6447,2463,9730,746,1604,5045,8997,3377,2939,2248,5549,8471,507,5685,4403,9788,4615,2719,3462,7198,8433,3040,3752,3411,6978,7302,7834,8205,8095,7450,2272,8901,2837,2109,5426,2238,931,4465,4517,9163,6157,5292,7975,8809,4686,9630,521,281,1232,6383,7112,1079,2401,697,7788,8185,6582,6632,6012,5685,2604,7674,7516,434,8161,7703,6486,5495,4333,7534,4800,672,2505,3287,1452,4537,4997,9701,9678,6284,6874,2666,8938,6858,5435,9058,5753,7252,1932,8370,8724,1749,7658,4455,699,5700,2608,514,3703,5705,5259,2138,2790,4710,9572,3211,75,1485,3992,8992,6001,7210,9821,3641,5587,7761,8500,9728,5487,4270,8559,5201,8481,7283,2379,8448,5539,366,3037,8272,715,3382,5267,4753,5417,4227,6361,8605,3057,5179,4918,6249,8374,8517,5780,6457,4384,6141,1609,755,7943,172,9395,9083,1666,1193,1172,1866,9455,2210,8279,6674,140,4678,6148,2007,7233,3516,9632,3305,2570,6755,1507,8524,9734,5106,433,5043,9292,6664,587,5745,561,897,99,6722,9556,6280,4155,2614,2203,2683,928,1993,5712,6040,7694,5385,3031,6301,5455,6961,8639,3275,7602,7133,1139,1973,9564,858,3854,4167,6779,9974,1657,1298,7768,2332,8683,4696,8520,4412,5014,9138,6115,138,1801,4566,8674,4926,3208,6126,4350,946,3169,5823,5392,6813,4038,3404,5207,7269,5649,7753,2745,5706,9224,1126,6952,2696,540,9503,469,704,5225,8872,5467,7593,857,6600,2320,4354,704,1213,8591,1899,1203,2835,5078,8899,2680,5209,3203,9304,2708,3007,2816,6657,3634,8663,4878,5267,3440,4418,2493,3527,1122,5302,6022,4892,2905,2411,527,8283,8420,9491,8847,1160,5675,8202,1561,3731,7021,9782,3780,2039,2101,9133,8231,4134,362,3550,1606,3468,694,1253,3200,9839,3661,9836,1393,787,6490,9276,7572,2662,3845,2851,3181,2243,1157,8697,1250,167,3949,9794,4274,8835,7437,6079,9297,9419,6431,6972,5677,9977,6279,7973,4659,6416,3235,8694,3990,6804,5211,9742,5445,3993,1005,1632,6081,9262,9798,5479,8744,5913,254,4389,5584,7984,3072,2282,5643,6718,1086,415,2304,3800,4473,6713,2219,5153,4400,7718,1427,1973,3588,8040,5103,5669,2539,5615,7816,6297,9651,4359,903,5914,6237,9929,1473,1330,9876,3581,6499,3685,5994,483,2019,1102,950,7950,4942,5656,565,5844,8617,8858,2983,4072,7958,4574,6965,5059,1553,8925,6851,351,1805,6750,1689,543,5139,4024,1461,495,6415,4980,2623,3164,206,6903,779,5579,8234,5663,1923,5512,8424,5919,4684,1345,703,1449,7748,9372,9053,8150,7869,9066,8193,5193,4137,2227,2360,989,4860,2531,9044,9408,8499,712,3799,9107,9069,6165,4453,9549,63,1191,6717,3635,8874,9759,264,5473,6517,4123,8804,7645,1952,5455,6773,9388,1288,9793,786,2830,2516,2545,4410,2575,8158,4269,1600,4170,3199,539,2621,9097,2736,1365,2231,2815,3815,1277,5303,3899,2986,6327,8423,3828,3261,1580,8353,8442,9851,7139,8951,219,3899,2793,7456,7265,6275,2071,2951,4372,228,6690,4717,4481,3216,6911,9424,7467,4772,9368,8459,2135,1384,233,5365,2313,2033,9981,8298,1350,8271,8927,8128,6697,6309,5373,6040,7349,3830,8113,1859,5500,8060,6063,7471,2889,3942,5368,2395,5881,8572,9156,4047,606,6207,7104,6453,5610,57,5202,6390,7030,4399,8636,3747,6467,8619,478,5715,4499,2115,7915,3633,3146,9495,3273,2996,1330,7606,6472,1120,4568,5847,9220,8993,2704,4478,2326,9927,2778,5593,2083,2300,2170,4099,7535,674,9865,9132,166,1895,6648,308,243,8659,3834,7845,5181,9925,4685,9116,2294,5629,1215,3495,1814,9670,8372,9479,7811,5083,3112,4721,5924,8427,1574,6372,421,7903,4352,4992,3237,4484,5318,5703,4806,7622,6081,2683,7372,3596,5800,6426,3327,2327,8311,3609,8896,5554,7995,7369,8472,9592,2965,2097,423,4570,8130,568,683,5687,6619,8641,1201,2653,8486,3956,6136,7982,8261,5991,9819,3045,4711,5371,9322,6464,6515,2487,1413,6663,7278,8649,7106,3185,5677,4470,1937,5001,7464,3712,4213,5308,9385,2081,8453,3238,4754,237,5066,6706,779,5301,1,4267,522,7705,1091,7483,6125,3838,5905,7021,4582,8840,1438,5190,4036,8071,3680,6679,8088,5624,1019,477,2973,3871,1122,438,8941,3296,1004,6829,2491,2669,9079,1486,3090,1990,7735,4500,1763,3443,5599,5236,8229,9512,6860,3034,580,8120,236,7764,2244,5914,7206,9053,8536,1839,8720,912,4520,8456,7837,9816,683,9081,1065,1564,1540,4037,2334,5501,1763,7204,8173,4006,8573,3321,3921,9562,7193,424,1980,8767,8763,7116,531,3007,324,8752,8151,1547,9261,5908,1573,7642,5081,5486,3179,697,8457,2952,3908,9269,5993,6466,7422,721,5557,4328,5834,7688,9857,9708,999,5068,9917,8824,6194,661,9301,1470,7493,9293,2976,6452,116,9448,2086,4999,6609,2216,4081,5244,5741,1088,4318,5269,5999,1874,1657,325,3847,4848,2811,4201,4867,279,2276,4861,8616,2729,9175,9628,889,3603,8548,189,8903,5286,8138,2058,6452,3057,6750,7222,4516,1056,9409,5323,6986,3311,5511,9937,3475,1381,5374,5347,4639,5481,4753,7487,6594,7908,5510,1991,6293,1524,8382,6455,5287,3341,5109,8126,767,9488,6038,8741,9159,1032,4157,4641,9168,5701,9533,4786,1746,9939,2753,3381,4893,3779,1318,5502,1200,8188,5089,2270,2785,7065,6621,4086,5683,5717,4820,5566,3988,3771,4645,7427,9218,7707,3186,9483,7030,7566,8233,4343,2875,7065,5218,5617,9960,8994,8398,2475,4580,9120,1919,2210,9533,6479,3681,7110,2402,8189,7862,4141,3092,4292,4737,7001,9919,6567,6364,2872,8907,3481,4944,4060,5361,6339,2856,5430,6822,5398,6868,6930,6506,7544,9250,2215,6406,9868,9620,289,1187,3170,3161,8682,5096,1120,4418,2694,9932,2526,399,8267,2226,1128,6903,9921,45,1022,7615,8567,6973,3713,2803,3139,5670,4411,3882,3924,5859,4001,2154,9420,4205,9456,2246,7143,1633,9979,9313,8712,7923,4942,475,7671,88,3343,9648,3854,490,6510,1259,5821,8550,6824,8546,5218,3508,1629,2762,2666,3892,1671,9555,3623,756,4955,8618,6035,2050,6608,4328,8423,796,7957,5675,3292,4173,5950,2990,4981,2977,5483,2579,3044,2559,558,6911,9535,6865,2415,8599,8126,8544,1488,6669,6171,5793,9249,4348,2807,2002,4205,1435,4112,2161,9805,5355,20,433,6206,334,6763,9544,2714,291,3012,8071,3685,3399,383,2214,562,7915,5970,8500,726,4111,6067,9835,2541,4152,1406,5055,3824,7986,7677,9222,3960,5145,6794,8384,7006,6833,614,9046,3150,8063,8619,1303,9884,5748,9306,5284,8933,844,5583,7003,4195,7962,177,5465,5944,3881,9319,5820,113,8887,5313,3523,8621,1811,5714,8336,5739,1491,3887,8916,2179,824,9993,1506,9989,959,1800,9834,5215,9702,4223,2713,7691,4237,9104,3088,1919,14,9900,5201,7118,8960,3285,9720,7855,6188,8043,9809,7100,2619,4950,435,2968,8720,3388,1,3731,899,7854,3501,1479,5511,4833,4502,7599,1478,3432,4763,452,4569,3502,3902,1460,3552,9072,5391,74,6630,1972,2494,9552,4094,5014,9131,5600,6925,9578,4964,4717,3705,8565,4753,9832,8660,9405,701,8798,9442,9379,8186,3958,73,1251,5305,7350,973,506,290,3946,6053,6743,1010,3353,2120,8414,2303,8247,2124,8003,1207,1072,5519,2701,5174,7259,9203,3972,1875,2588,4051,8605,1788,4896,4241,2168,6135,8474,4226,938,5018,9867,1129,699,5036,3318,2876,1430,2805,5118,710,1468,7807,7674,1338,4348,6969,5904,1689,9759,7561,4483,1704,2807,5663,7743,4568,3457,3191,1651,3330,5492,341,2031,910,2511,1697,792,2785,9401,1464,5743,601,3226,3312,386,430,7861,6496,2110,6752,8420,2015,9359,4438,5825,8978,4905,3912,3687,4881,9361,810,3482,4552,7188,8289,2193,1554,1001,8546,1984,8024,6072,3644,5603,907,9439,7752,1388,1167,3447,5363,617,2188,3475,6473,7212,2004,6264,3078,838,1093,6252,4060,9523,9734,5202,4441,9842,1761,1788,3119,3088,9734,8459,9293,6675,3998,636,2726,9699,8244,6945,6508,6968,3368,8525,2510,5618,5933,968,1137,813,5117,1007,9003,6908,425,9426,1893,5103,3238,7771,794,2336,572,7947,4340,4768,482,3752,2719,3154,2412,9811,4005,2127,5413,1362,8796,4644,7852,8072,3814,4641,2725,3566,9126,2204,2382,2608,9241,1735,7639,5500,5162,4754,6172,1608,1897,7363,9730,3847,2449,8284,6923,8393,7538,1337,1220,1589,57,814,5726,3054,1979,1256,2754,7815,8798,3260,8398,5956,311,8944,9739,7949,6092,4962,7752,6858,1333,8385,6288,2120,4021,6995,6757,1211,4228,8599,8972,119,252,5393,7072,6123,7304,552,7744,8529,5491,6789,9563,3764,1211,4085,3679,1635,4150,3253,9676,5357,6459,9699,9208,6629,7128,6206,7103,1993,6166,1100,8792,2577,3938,711,9544,8207,7851,8669,4386,9875,9877,4534,3761,8932,2672,3554,8463,7540,40,9431,3767,5402,1060,4522,3875,2318,8076,1707,5912,4030,7543,1736,3203,6825,569,2333,7319,7905,6452,9200,2926,1839,3906,5090,367,2950,9054,5384,6621,1842,6392,6761,6424,2299,4236,6701,2032,653,4989,1893,5706,9826,1256,642,3596,5118,7889,999,432,5019,5457,7053,5852,4724,2416,9956,9602,7722,152,3569,1014,8206,6082,2705,8091,5745,5278,5724,5804,2004,5240,5559,9263,7201,9511,1922,1238,7609,7037,5647,9147,1629,7898,5255,5140,6408,4472,4286,965,9541,2064,6101,6793,9027,4892,2634,3856,4764,7212,7970,7294,1662,4908,2436,6615,6313,2271,8186,3090,5991,6398,9808,3935,5266,7443,963,4360,5425,5411,4458,8070,4126,7313,5227,7422,4796,8292,3740,4291,3352,2650,3034,4138,1711,8425,5033,7325,6803,4699,6301,91,8726,8885,3445,4625,1602,3937,7483,1510,7730,4345,6390,6624,7256,7751,7683,1889,1752,433,5334,7667,3065,2053,4128,4291,5506,2273,6773,589,4796,1756,667,7254,9213,9080,439,3954,3387,2679,1306,4843,5706,9881,3553,896,8911,3364,4854,1045,2836,7977,7277,6290,1671,8399,2422,8575,2353,6645,9846,3205,7315,3131,5814,9876,8906,7987,5692,5779,939,2934,7495,395,6586,9616,779,496,8102,5080,272,1870,9622,230,5632,6626,1698,463,6793,2483,5691,3132,4988,2807,8975,4774,2224,39,1608,3925,3374,5342,2065,2888,2241,8236,5487,8575,4126,1482,6488,3554,4708,6135,2364,9789,4148,864,5080,807,3256,9018,9092,69,4732,1536,2947,1318,8231,6913,2391,2475,5718,3154,7168,5167,5688,4059,543,6724,5968,4731,545,9776,2782,1968,2882,5347,1871,1345,3822,1294,5893,5861,946,3123,2935,5512,8433,5040,7213,4323,8560,8,6834,8485,9997,745,1299,1650,3187,8070,7106,8660,2685,1942,2435,2295,1230,8711,6773,4443,8005,7490,541,7589,336,5582,7370,2489,2022,4577,3341,5422,656,9342,517,7054,2840,1910,6892,521,4381,3757,1817,7057,8903,9760,3933,7014,8573,2308,5726,2198,5108,2528,8803,7428,6294,7709,9518,8636,5055,259,9747,4227,8014,7560,608,9014,4193,9322,5808,851,6917,111,1558,320,5112,9978,4387,1408,1165,118,2328,9374,1760,1039,7442,6586,4506,1247,463,9082,7195,7478,2626,5323,4926,6730,5176,2398,3350,581,9390,131,8882,345,3840,1984,3029,1799,5588,2572,2933,6000,4010,1699,5966,5757,4489,9862,2726,4258,1592,401,5771,4938,6397,1683,510,8214,4613,5455,1038,7030,9049,6419,8672,1995,228,1420,5695,7217,7921,9194,9978,4950,4029,2872,1701,4146,5528,3898,9472,4522,6864,9046,6239,6303,3443,2245,6460,8686,6485,4405,7994,9506,3126,5885,2829,2602,1196,6204,7848,9307,9620,4485,7819,4818,8517,262,9758,1354,8315,7692,7051,5548,8429,674,1826,7497,7399,4571,4518,3962,731,5104,9895,3166,6096,63,8428,8950,5352,1133,8969,8566,1317,1328,2638,5165,8230,1469,6516,1869,572,9607,3814,8172,3049,2284,6480,143,906,3750,5845,1833,6817,4432,4057,2322,9830,9993,71,3407,4753,5663,8238,3216,4870,4379,6334,7120,3111,1696,9444,7854,2202,4356,6240,4050,3863,5897,3284,6143,8077,3281,8178,646,4640,7998,2145,64,6170,1529,5715,3603,5358,2193,6525,8904,9502,3784,6510,2688,5958,6805,1939,544,9897,5968,5198,243,3162,3789,6242,554,3442,6441,8767,6550,5025,6463,2200,615,9205,4721,1979,2955,2022,8848,1424,5089,6896,3957,6071,6991,7048,459,481,8551,4624,9968,4357,9666,9074,1350,6008,6725,1566,9130,7734,8072,6018,9932,6044,8025,6398,4751,2368,5062,2387,7448,7508,4201,8895,1886,440,4950,861,8167,4631,8006,213,6386,3288,9332,1365,570,8867,3457,1553,1072,2309,7560,3572,8334,3762,4034,4964,3815,797,396,8487,7880,9068,3077,3640,8254,257,7955,3945,7696,1370,1496,9198,900,6181,6024,8325,1192,7363,5237,2962,3359,5813,1208,7031,3260,2542,1925,7502,2845,3953,7028,8541,1021,577,9307,1671,2796,7949,1456,1060,9909,9160,5859,8919,1205,8820,5650,9163,5817,5961,570,5697,4584,6270,8669,6900,1056,8373,8319,1364,642,9657,365,6470,490,3086,8449,2948,6247,3307,2016,3182,3741,9226,5648,7317,2433,1284,908,1091,7868,2728,4783,9945,9146,1608,3417,2230,1305,7932,3159,812,7329,2984,7120,8242,5890,672,1489,8693,75,6086,6881,1990,6967,26,1605,1524,9332,788,7169,6238,8252,4275,3166,4181,7679,2065,6620,9565,5710,4568,4171,8127,2197,1656,2721,9153,360,7572,8366,1549,457,5679,3876,7347,5132,8733,9848,8281,5715,3442,567,6114,5550,5758,381,2528,7017,5249,9232,9627,3151,4570,4366,7474,3101,1188,2194,7162,7847,4838,876,4886,6738,1472,1560,223,1283,6140,9882,1343,864,7720,5363,308,6492,1677,870,8292,6969,2185,4457,2171,5493,1862,8162,1499,7378,5763,8898,7080,7560,6361,9539,4440,2306,9965,4610,207,5022,9416,3586,834,2815,6687,5003,7194,5240,4196,6814,1338,3812,7568,8136,1987,8391,4334,1425,8422,8708,5492,2901,3995,9053,1899,727,1127,1284,8591,172,7835,4235,5464,5117,6494,264,9300,1781,5202,7059,5336,7248,1819,5861,8139,1769,6962,1983,2451,6753,3331,2651,4969,1289,5150,9792,8731,4999,2474,3453,7683,462,7249,9816,7881,8973,674,6486,9368,1489,6697,3318,8250,141,5248,509,1768,9210,104,154,3249,7648,6473,9024,3371,7761,7641,4193,8205,6615,9082,5129,1204,7642,3816,7356,1642,7527,2296,6815,6203,390,5132,1494,4349,9983,356,1969,123,8016,1101,4513,124,5877,9541,9933,1122,2207,8755,8889,6833,3713,1370,5511,1002,5843,8257,5508,8532,2509,1277,2679,8133,6792,1014,97,6516,7498,263,3196,6365,8924,3322,9208,5270,5539,3058,9844,5240,6642,101,6300,4137,177,5578,9909,2632,3284,8187,4823,522,357,5289,5926,6317,6421,6439,8543,5965,9442,3452,418,1244,987,1049,9483,1817,5259,4532,5500,5997,9720,4042,6376,6907,5423,6895,2217,7416,9975,8735,9816,6381,2347,348,2794,2425,2004,712,4933,2407,8425,796,6670,5911,2771,1269,6006,7895,9110,5443,3846,4698,5905,8577,9312,307,5042,1606,437,1999,3814,8393,4399,2358,7442,7665,8255,6786,2240,1878,702,8843,4044,8201,1913,4649,4011,249,2582,3308,9335,8130,4156,2367,9867,920,5270,6408,1688,218,6477,8339,9862,7823,4854,795,2432,8800,4006,5616,8785,6537,5820,3243,2050,1517,6155,6767,2802,8624,525,7891,3409,934,1416,5867,1535,2603,8876,3058,5177,7679,6454,8994,8987,4799,1324,2121,1794,601,7294,5871,8182,9058,1047,5306,3998,5207,7846,3077,723,9205,3576,2900,6188,4048,4086,27,6123,1044,6236,1890,5158,5860,1147,6133,1844,2273,9482,6679,6409,6528,6747,7715,4737,4181,3958,8348,2639,2313,1603,6756,5612,5244,9897,7298,4838,3681,9307,5253,5304,6231,5088,8329,2026,5553,8892,2374,5990,8270,106,2538,4838,9877,3468,967,6803,2281,2504,3611,4094,6758,8585,7369,2603,3551,6037,9892,683,6371,7381,4122,1203,955,2933,5086,3227,5611,29,4715,1979,8426,8665,4775,2485,4625,61,4269,5349,5632,5101,7510,5880,781,2517,6599,3295,6176,8202,5242,734,9281,8505,6933,8969,4973,3343,367,9052,4418,2175,1330,8900,2262,9569,6755,2597,540,2321,4407,9201,88,826,6471,8381,7737,2264,8799,9516,4306,680,581,9877,9416,4754,7492,2459,3833,5582,1114,7894,2323,4779,6653,7857,3470,7236,4394,6431,5515,7848,5767,6731,3506,19,2123,4702,4364,2541,5623,9530,6001,8596,1995,6401,4916,4320,3152,1919,1001,6300,211,6817,9670,7733,6136,5455,5911,6074,6803,58,4951,2415,6852,9138,8214,3391,2611,7372,9055,1116,7322,1974,8174,228,3148,5036,2107,8026,4370,2580,9774,7934,9449,4884,5730,968,4857,5882,2532,7133,3471,8927,1657,6575,8443,8499,2874,745,5611,5556,1092,270,9133,8311,4432,2886,1396,7059,7624,2635,2768,3830,3901,4368,8362,9002,2677,4675,6699,3319,1515,6837,5735,3428,9814,1791,6195,6065,8765,8417,9668,9017,1616,5340,1159,2127,513,371,1831,8380,2975,2800,3585,5496,1712,988,5899,9751,9574,3150,6184,788,5618,5997,4151,7944,6552,8888,3486,7515,4189,4414,7818,3094,11,2865,839,3746,1366,1314,2872,4329,7560,5314,3835,9773,3103,6790,6458,1750,5491,2151,1980,4680,7687,7852,6589,5629,7158,8782,5010,1203,3482,2935,2330,4948,4277,8495,8968,1572,7596,9709,7469,3265,3856,4704,7012,8995,1760,1822,9572,9779,5973,4830,7699,6694,2492,7063,9151,8344,2384,5828,518,2524,2296,8531,9876,5869,1877,6928,6928,6245,2871,6365,8338,3792,6604,3385,6348,1049,8828,2577,1155,1869,4462,1738,3715,544,9215,1390,8921,3317,9195,9002,9513,7120,5557,3049,6837,4385,929,5789,6521,329,866,8846,3262,4569,8937,48,480,2436,6858,2348,745,1381,2956,6975,4627,9333,81,3241,6856,2377,8741,7767,6055,3875,3824,4607,3360,7727,7050,1980,1311,1593,4043,2938,6093,2663,7794,3171,3664,5638,8714,8829,8493,6385,1925,926,2491,3329,3655,2311,1709,1652,9962,3806,4538,5191,1797,5266,7135,3899,1961,2383,9753,2984,5068,393,4865,6157,2574,7081,1420,9090,3825,6077,7557,5763,3148,9086,7016,3149,2350,7215,4595,6873,8317,5462,6165,9416,3161,8662,575,8747,6375,2201,7840,6435,7281,8183,5882,6556,8100,3786,3524,7219,3157,1302,7421,2410,2617,753,630,2974,90,943,4270,3587,5194,6637,5969,7587,2334,8986,513,3054,528,6397,1021,5758,9761,2,1583,6855,1476,9167,8129,8751,6424,9984,56,5424,4170,3397,3625,5900,463,6080,7024,5762,8123,1532,9034,6824,2859,811,543,4054,1185,2321,6008,8424,8775,8024,1126,6490,4416,5501,948,9953,555,8422,2458,8529,4865,9500,2886,3825,4992,9708,2987,6508,9932,1222,6662,3893,7288,8117,8446,3870,7184,8609,4934,2718,5281,2470,8524,2495,2654,3348,2192,3784,6253,5523,6022,3075,4069,3919,8854,8244,8044,9980,884,5866,5773,7720,6437,5401,4855,1651,2655,832,6233,9553,562,4063,6201,6026,5479,1545,4034,912,6583,617,326,8558,9848,9027,2088,4517,7453,7249,7517,4223,738,7790,5709,6515,3270,3218,5764,3522,9746,6762,8976,5726,9329,726,6764,6126,1967,5413,9774,8848,8676,4879,7436,7974,813,9894,7795,4233,6000,2385,670,520,5203,4014,3345,5165,3016,8360,2696,6537,2447,5973,999,6229,4954,5476,4458,1049,1864,7158,8142,3282,3180,7945,4573,3931,2834,4208,1663,2474,1901,4401,2052,4135,1487,4015,3389,9309,3005,8654,3427,7658,2379,3124,7435,7943,6277,7253,2374,8087,9846,3859,3706,6723,7138,7885,2522,3325,9669,2334,4548,7247,9800,2126,1767,6597,6315,5325,3008,9501,1469,6827,7004,1719,1278,9264,8987,3187,68,7400,949,3593,8300,8017,9915,6031,6669,8512,1870,2292,9624,6531,2882,7962,7018,271,6093,6226,2248,4875,6695,9131,57,5853,7212,381,7784,3502,6565,1212,7643,8052,5982,2633,1431,3784,1281,8600,506,6768,2575,725,3475,1727,7560,1764,3739,4380,5527,1954,7567,3391,3364,8467,8639,5638,2993,9228,9177,4056,3197,6586,2568,312,1935,9294,6787,7572,1504,1346,1381,4148,3731,7021,7191,5249,7250,2992,9683,6432,551,5970,9927,6871,8231,602,462,8505,5625,2944,6733,2000,8805,2499,4670,2511,6076,9552,7544,5317,273,7702,6927,7200,2227,9741,729,5213,6588,5229,2864,7046,4440,2253,4097,4256,7656,5687,5941,8157,2018,6222,858,7442,8090,2688,1895,4913,2280,4670,4928,6084,7863,1002,4758,1704,1749,6658,2215,6170,7456,9133,9479,973,6680,1342,852,4202,9311,9744,5828,8948,3959,564,9757,5393,439,4431,708,340,9291,3544,2362,4417,4201,9769,4994,4491,8431,3645,5378,520,4058,1310,5500,5486,8891,5016,5003,1115,2761,3202,8658,6279,691,9224,9322,2755,3177,8041,2682,6623,1167,1398,2759,8820,1795,1989,6066,2792,9963,8532,4556,4389,4194,7863,5729,5468,7666,1289,5409,4805,6526,5052,1398,6530,1919,4223,190,4498,5508,1984,7746,6972,5094,4286,5425,1002,3822,3151,3260,4789,7322,3508,1530,6021,4468,9764,1629,3005,6898,4836,9812,5916,3489,2039,3948,1032,4434,4876,6819,7302,6163,4152,8583,5934,5359,8702,4652,4130,8635,1913,6879,1791,4199,2297,7516,9568,7057,5212,9644,7850,8043,4393,8574,3776,2166,8008,7168,2574,462,8761,4507,7489,1384,1810,61,1414,5261,8988,1573,8624,9272,9210,6948,3595,8253,3288,9777,8023,3182,1142,8386,4135,1495,4197,6393,7084,9080,6783,58,5534,8592,2169,9442,8044,6298,8071,4434,559,5624,6799,4368,3930,6062,7968,7936,9271,8878,5753,7431,8632,5476,5119,5824,8998,222,3072,6533,3014,4112,3143,8154,1248,8885,8971,2545,9081,7198,8222,2980,5386,5972,8679,6733,7178,9290,9977,8172,2359,4173,5488,4893,2375,9835,1998,6104,4499,8755,8973,7817,7889,1372,2926,2021,8356,8971,5160,7113,3187,5064,8480,3984,6156,7518,6460,2802,844,2737,6311,7168,9967,199,2553,406,5653,3781,7300,7368,5455,8453,2993,2329,7002,3466,2615,5903,3594,3050,210,2638,4781,8880,2277,316,3340,3703,8406,3331,9316,1992,4322,4647,951,1904,2028,3439,9355,6613,5554,8501,5367,1000,7531,9718,9261,1158,4570,7090,5087,6523,4960,3844,7488,6342,6956,7753,6251,997,5045,31,8909,385,2491,9226,890,7998,8830,7660,7285,4815,6680,5750,3977,2437,7434,199,527,1959,6156,2835,6863,8301,5101,9035,9819,7410,5735,2515,8141,5410,7900,550,3121,5971,5112,7100,6087,6380,7616,7961,8023,1938,7034,3587,8351,6243,7590,6904,2568,4367,9658,6749,9438,5030,4971,1134,2624,4035,6976,1204,7326,6737,5437,6939,3260,5459,8219,8057,6924,6796,8015,3012,7385,6799,1460,3091,7923,797,2972,536,5417,9203,5634,9670,8042,3383,5962,2961,3256,8354,2561,6667,9344,3879,6374,6414,2528,6423,6553,3426,9678,2322,2393,2513,4640,8701,8792,7670,4802,6730,7131,3834,6412,662,1411,1386,6664,8030,1572,6903,9251,5849,4696,2191,7294,8848,5953,1055,4167,7534,5320,2455,8020,7116,8007,5820,8169,3724,7221,6980,2720,7028,3089,9267,4026,1946,484,8731,3345,2421,5156,4641,6975,9432,3445,7751,699,8378,750,607,4393,8927,9016,1680,6979,8007,2223,1881,1177,8798,7926,5051,911,6271,6870,1605,1661,4601,8950,6848,6183,9747,7387,1654,7541,7034,6950,5242,4637,2737,5870,6419,9792,2024,1874,4078,8007,3661,2337,9586,34,3492,9544,2591,5664,7356,1271,1896,7103,2915,9171,9622,9561,9141,2559,5606,7921,7718,346,8000,9753,703,7519,2314,9084,5873,9220,1617,3142,6148,3868,4898,3850,1327,8585,2870,8661,5688,947,5376,48,7105,4802,6140,2606,7299,3294,1396,390,4884,7242,5604,1293,8716,7422,9254,9507,9772,9825,7516,3890,3212,6541,1990,4850,2046,8990,7770,6547,9553,7605,859,5986,6526,7869,3654,1272,5623,2004,4279,2258,3242,3682,3244,9705,2703,3655,7076,3263,438,7516,3238,1646,2510,1017,3436,4607,1421,8567,672,566,9744,5910,2706,5796,4487,2966,7679,1402,6327,2759,3540,8007,3489,6225,6697,5727,9606,5438,2688,2982,9485,4858,6027,37,9002,2884,6114,7255,3230,9348,9651,2227,1255,7397,3817,3643,5375,5621,4344,288,4208,8010,7518,2308,4728,1136,607,4085,1933,3244,7406,917,4754,4566,3944,6512,9888,3742,9668,3521,6016,3314,2435,3365,7022,581,761,912,234,7728,4059,8663,1694,2184,8981,1440,555,8269,5207,3618,2249,6088,2638,2059,6655,451,5022,291,1010,919,1994,965,7212,8043,907,5432,573,1957,7685,7571,3429,1622,5524,8137,1907,933,9767,3641,1006,198,9281,5708,2646,2010,6183,4625,423,2011,776,7016,2858,6872,6715,1644,4729,43,6168,9147,7607,8072,6575,6896,1515,7745,3353,1164,5830,7595,6412,7864,5286,7021,4967,9394,4468,1515,2989,5846,1680,4184,4636,5855,610,2564,4974,2282,7778,8005,9159,236,1612,742,2195,1178,7731,5782,7284,4187,9324,5284,505,8425,1605,939,2888,238,5183,6791,1908,1492,5683,97,7215,3755,5148,946,8414,4920,2887,5343,8273,2350,4251,3100,5379,4316,2133,546,9939,8605,8618,7162,3730,5469,5751,6857,3994,4867,7786,872,6978,7945,9419,7986,4602,2179,7057,3462,798,1265,8842,653,2067,986,7669,3329,9512,4601,3645,9014,7125,2853,5630,8087,9228,1955,9855,8728,7860,8037,8017,7633,2705,2832,3305,8489,8470,3475,2260,2291,2895,1941,4751,3601,2377,4680,5081,2272,3315,107,5805,1784,1843,7042,9887,836,7260,4557,1010,2978,9228,8858,6266,1903,4484,9867,8171,6232,7392,1310,5945,9733,2831,6486,6613,3914,6217,526,3920,225,9631,2408,3540,4366,1584,1297,3974,9220,9527,2660,177,6193,3405,7382,7722,1187,7058,449,9147,8239,2566,5512,5137,9983,4122,8916,6304,478,1073,8972,6426,713,3537,9746,3034,9345,4411,7382,3113,9862,4142,5679,7648,3440,3271,6507,8264,5870,1607,4303,8837,2992,9547,7738,6643,359,7852,2709,9852,5234,5299,9993,5639,1236,5638,5731,2538,7740,3070,5275,2176,7133,2,3413,970,937,8038,2950,8901,4449,635,8540,5432,123,5405,7704,5695,1429,4981,4937,775,2521,6658,5638,9852,4686,5780,319,9808,8706,5114,1152,8051,3072,18,5271,8204,997,9241,758,2755,7067,1768,1778,3027,7234,8108,5856,6162,8438,9361,2823,8906,5700,2010,1030,3850,4016,3962,7949,765,3308,9877,9502,7819,5147,2368,3142,6664,8562,8296,9809,2587,7533,3254,3745,8736,3734,7359,4490,5287,2387,8711,1524,5962,6248,4893,4023,437,8799,1975,3565,8892,9668,2818,4320,4275,2791,7058,7415,720,9063,31,2688,4469,1613,7954,5280,4093,8953,6101,3238,7512,8404,6202,8668,1978,5501,4026,7346,8921,655,7645,7848,4652,613,1206,5671,7737,6677,6495,585,4623,5046,9317,8148,4676,7119,6398,5625,6516,8959,7774,1175,8567,6236,9123,632,9571,4731,1267,5043,5928,5575,9302,7405,4479,3206,9184,4623,5466,4691,7232,2602,9192,7494,9479,14,6584,516,1990,9153,8594,9091,330,3386,991,8353,952,8672,1972,2861,3270,8617,9794,9120,758,4634,7574,5317,7031,4110,3324,2745,7566,8389,4630,9168,6730,1996,6227,6522,1606,6567,7312,5373,452,1003,6363,6654,7021,5129,6576,5309,6750,7751,4795,2973,6516,984,9455,4383,6518,3259,8134,7782,4685,834,7526,2170,1811,6389,912,8874,2397,1213,2330,8829,4718,3948,5282,3977,6509,9179,2449,9107,531,2551,7917,5452,5534,2846,257,3444,62,253,4379,8529,2058,9180,9058,7667,7215,1522,9693,1841,3428,7834,9109,980,3700,6929,6749,1167,8813,8676,9058,4248,1192,8599,3263,6822,4981,6061,2122,430,1967,8708,8801,6953,4364,5643,7921,9481,135,9650,1976,8190,1839,9197,6710,338,6246,3500,6760,4564,6072,6399,2198,9022,7144,9627,5286,6178,6848,1147,87,1287,8790,5430,1957,9096,4811,4545,2327,4065,9459,48,7684,1214,740,8013,9359,351,6860,8378,5490,3128,6446,1381,5737,7456,4647,2902,1465,5971,1626,8790,4803,6055,1962,1795,4735,3796,8391,5197,3514,6596,6556,4400,6953,971,3302,8667,2559,7901,65,755,6898,3940,5794,1182,7328,6400,6504,6761,8392,4794,5616,5120,7967,1121,2898,4455,647,9081,9718,4826,9881,2631,3416,9476,9019,8200,4804,2395,887,4886,7846,8846,6819,7716,8416,9059,7728,6242,2981,243,9546,3709,8830,1991,1070,9931,1689,7059,5109,6047,9400,4610,3524,1166,7063,645,862,8719,1202,6098,1071,7707,6264,9903,5308,1256,4015,6000,8190,5633,9967,2828,3262,2383,3538,666,1538,6237,4718,6671,2464,9419,5655,5471,2447,283,1660,2693,5682,9002,6511,7431,747,8500,8039,3340,4646,6469,6464,5146,6062,3398,8105,9631,9944,80,8062,8748,8386,1836,3681,4102,3553,4193,7060,599,5647,3516,4260,4527,36,6104,8917,2458,5151,4529,8451,3449,9347,2553,9794,8479,9104,1151,7675,2038,2317,3494,6278,1908,5357,2953,411,6636,2028,9927,8793,7416,9340,4967,9346,8038,2979,4458,735,4784,6550,8164,2111,6667,4365,7248,312,1115,1938,3165,8625,1292,3135,5269,2513,6921,6998,385,6501,1315,9359,3070,3945,1211,473,3255,4848,18,5002,5390,8418,9657,6290,5648,3426,2277,9785,4416,8162,6147,5100,9201,4480,1170,7534,1981,7281,4881,3616,9843,59,3612,6833,8824,7560,1924,9574,5868,6952,9125,5045,259,9078,7182,4083,8634,809,8821,1095,3396,4886,295,8252,1314,3987,9961,1861,9418,8319,1522,4897,6310,1285,6031,8003,1559,3082,8638,2032,7832,8350,9211,5936,211,8448,6897,1218,47,9349,1795,8010,1417,9922,494,1433,7116,9531,2644,608,4603,2248,8942,6452,1521,9877,7766,9338,1153,2938,9334,6167,5463,5633,4750,9149,8709,5149,3087,8314,9980,4052,5091,8154,5611,19,4439,6491,2319,2323,6584,4141,6961,4365,7555,5940,3584,9831,7516,8860,610,9802,6065,5535,4376,2623,4051,4629,1758,898,9050,3029,3435,8976,7568,2689,4724,609,6163,6322,1609,6385,3630,7564,3610,2098,991,3688,4515,8463,723,484,2104,9177,1349,2981,9213,8588,1869,2507,2889,4565,516,1488,6556,4984,7905,1732,9978,5487,5537,8375,6578,2965,9397,8009,4697,1884,1798,431,9431,1433,513,4195,2464,1483,4764,2849,2703,8020,3375,4602,9531,7426,347,8507,4044,8225,3155,4369,1755,8154,5839,5923,6987,6114,7971,9660,5098,2716,2612,9192,6070,609,5154,8015,2349,8280,2089,7244,7280,7286,1753,8834,8093,3834,8337,7149,4213,62,1233,7417,2739,1322,7391,8206,3514,7047,4272,9609,1924,5593,4160,7978,8922,7400,2934,2390,3365,7793,7175,6175,1006,6297,659,4658,199,6178,262,5657,320,6789,6330,8509,1347,8116,4709,415,9498,5943,4532,4010,3490,4141,7880,280,6209,6151,7701,2261,4870,3621,3993,4059,7674,6644,4650,9118,9837,949,105,28,7860,7721,214,8031,9730,5187,6752,5332,2144,4232,2555,6143,2280,9222,9098,8756,9675,4656,6727,9360,6567,8348,3890,3382,9967,4140,368,4128,6940,2911,7903,8853,4607,6311,333,3116,6507,3614,7931,400,6062,1666,7255,8250,8929,8204,6366,1493,939,4435,4816,4743,1093,9461,9390,7203,6640,3530,6223,1552,3908,8055,5804,1289,9425,9629,5085,815,7573,3829,8146,8451,5899,1821,6662,8928,5308,5790,1536,5955,7008,1084,1103,2970,3664,3613,2364,6390,6311,3367,9067,9272,348,3119,8455,4142,4996,8677,3037,1376,9585,8057,9554,9932,9001,9942,4963,8883,6516,9621,6655,8519,3175,7558,1227,4116,8108,1336,2166,2420,4160,2884,927,9114,4021,4819,254,4351,8385,7022,5704,5827,3890,4059,4123,8213,3325,626,9345,1520,9978,102,2868,1235,8720,957,3722,8200,7495,5073,414,7359,3712,4478,2279,5042,3964,5588,6062,1199,6390,3925,8995,217,8489,6758,1798,9764,2115,7334,109,4815,8633,2804,2262,8118,217,2030,5540,583,7065,8005,384,2909,718,7093,6046,6756,2661,5610,2673,3729,4637,6883,7205,2087,5440,5850,211,9811,1667,6440,9573,7181,8376,7120,3233,8127,8160,2916,7235,4003,1531,6151,8973,8216,9648,5909,5534,4652,2751,8676,4340,4790,8304,4784,4490,2449,1020,5602,2863,8302,3925,863,9133,3021,9435,7585,1348,1653,7517,8537,6746,2784,816,3881,7474,738,8500,1972,5339,3720,7775,7718,1063,4051,157,8584,2704,3481,1645,8241,5677,8605,3852,353,782,9926,4178,3509,7803,3829,8913,6877,7314,3133,7528,4402,8332,2327,8454,1358,8418,1600,4707,951,4337,6770,5204,5376,971,7526,5668,5859,5163,7505,1304,3836,9988,1454,4341,3659,3114,3670,5340,9542,1944,8284,2507,7783,1313,5585,6597,4333,5092,8795,8733,1641,65,9128,2217,4121,1148,6857,6844,6524,5390,6726,5044,8382,6868,9984,4355,7398,7516,6150,4190,1646,5021,6259,6812,5350,5105,3451,7937,7616,730,3997,5433,3339,6480,3209,6740,229,2145,2323,4735,300,5527,9315,5769,399,7453,9693,817,8040,5612,6873,3236,4441,3233,1854,6616,8699,3976,8136,9897,1720,8568,2711,4499,4103,325,1555,7368,1903,1910,704,4142,6854,7473,8401,7014,8154,3625,7900,2981,533,8441,7572,9965,9281,5044,4156,9806,3188,7744,6662,1031,5390,3611,6372,2536,86,4143,2458,722,9228,631,5882,5641,6681,3983,6400,7399,778,3905,9014,9544,6669,6046,7722,578,6158,6638,8586,7242,995,7752,1141,5865,2751,6327,2468,4577,2421,6419,8770,3119,2235,2597,9877,4577,9768,4780,1428,684,6751,5622,143,9202,4354,4093,6136,5452,4581,9762,4444,1644,7154,1004,4883,2131,5113,6913,1695,1117,7367,7204,7276,9944,120,4839,177,8721,2107,651,4554,9636,331,290,3219,5180,461,7009,4758,2376,9145,7695,8099,3909,8637,7061,7553,1855,4288,4641,1953,178,2975,9515,1941,9931,1760,2208,5718,4949,9634,7603,8347,3496,4947,1389,7128,1401,1294,646,76,6673,3183,5762,7529,4829,5761,7492,3878,7702,3651,2051,7002,1579,6380,6681,9762,9727,1603,9335,6716,3241,842,2828,6865,7690,9570,7128,8635,6968,4388,5759,4863,3932,1775,2696,7871,187,1308,8633,861,8628,6837,740,240,6120,3662,4717,1930,3272,4460,2328,3376,8402,1257,6901,6525,5644,8073,374,7994,3168,5184,744,3303,7507,9931,889,6655,5423,86,7304,4249,2559,2975,7804,8981,6577,6648,2833,2594,9321,6001,2737,4394,9208,6204,6200,9028,5851,3192,4806,9761,2715,9301,5096,5944,5314,6768,6569,6638,1983,4984,1306,4729,9039,7175,5573,9311,9426,8022,8498,712,4039,4788,1608,9672,3284,6814,3280,4716,6942,6181,7944,4284,2867,9440,3664,2447,1546,4989,5751,9426,2204,7482,4239,5502,3663,3072,5093,8248,3540,4174,4866,2592,7062,1976,2091,7146,3708,8938,7961,6096,3552,733,6261,3758,8467,8801,4622,7820,6326,8272,4717,2580,1239,8476,3997,8408,876,8392,941,582,4935,3729,4454,427,2365,2038,76,4668,3307,8012,9488,9728,1045,1220,9674,1154,1764,9037,843,8190,2128,9118,9674,6007,4453,5954,497,5928,8771,9273,3074,7947,7008,9539,4363,8541,3290,2484,4884,4135,9515,4469,4582,5961,4674,9838,9347,8287,2632,1652,8369,3275,4389,8916,3895,5532,2450,3734,6975,8895,4440,3230,8441,3680,7773,7522,946,8993,3334,4587,7800,9567,5934,438,5982,4639,1050,8505,1239,4647,6583,4781,2297,4698,7375,6025,2360,2850,8586,8908,9621,8523,4837,4085,2891,3568,7781,7249,7655,5441,6754,5538,7673,1962,596,9361,1376,1207,6859,1394,3740,4363,3423,1330,9267,1332,8356,8387,1415,1797,6846,8265,7876,7501,8743,5681,238,7930,6043,3128,6353,8326,5680,2107,9049,3550,3083,6866,8702,6817,7682,1560,5741,1433,2714,73,1993,6172,6277,4890,3991,282,9891,2639,9342,8684,9480,2598,7981,2503,7292,470,8341,5036,120,5855,1134,9368,4406,3251,6519,4305,4590,5191,1348,9433,3494,4557,2256,7006,1777,6097,232,8453,2414,958,7533,1204,8974,4642,8623,4865,5906,5160,1456,1696,7268,9710,2562,6927,985,6064,957,4703,6858,7771,9516,2480,8870,4238,9011,1814,4197,2468,7017,3122,3489,7040,2111,5643,3447,170,2219,2093,4657,8872,3582,3071,5301,5582,1279,9247,2319,9513,7550,887,3047,9497,9060,3224,6334,7801,218,8520,1488,31,2390,6815,1393,9130,2022,7214,7732,5090,6306,7880,9210,8121,3227,3701,7702,3255,8927,3418,3584,365,9250,9681,5763,7053,4873,6093,5431,3033,3722,3242,7212,3469,4252,742,689,943,954,1325,5510,6872,2594,5366,3900,8905,278,7022,1546,94,5484,9472,6362,7357,2752,9821,1814,9534,6769,624,9682,4818,3731,4868,2288,8441,4132,3224,1495,7385,7660,6095,9748,729,1454,3007,9396,9930,7962,5599,7670,9016,2762,8268,8337,4679,8673,45,2936,6894,2032,2442,2393,2658,931,1955,6353,2794,5257,9993,5753,6118,9342,9751,9279,2077,2151,7307,9853,3639,3529,498,335,181,7177,5721,7782,7392,2817,3531,2115,2462,1534,7168,8897,8254,465,5596,8623,5253,674,4395,3149,4407,3142,9759,8302,1531,69,1451,552,2931,769,5825,5717,1182,9040,2151,2909,2556,2533,6840,2313,338,5868,7096,2679,2175,6758,981,8545,7829,426,7150,405,9374,6449,9879,3936,9642,78,8771,8473,1704,2996,7441,1687,8706,1402,8644,7653,6315,5398,7561,1230,7010,9072,3470,2290,550,478,9247,8342,5124,4730,7103,4986,5764,8988,6875,5942,9907,3708,9369,6465,1304,1779,8177,5629,3354,7862,4328,5794,1715,4432,3370,7241,3227,8771,9919,2960,2901,540,9657,8201,7022,4344,5077,1874,4431,2698,4770,9123,534,5307,2253,9343,9775,559,226,3663,2638,7184,2937,3142,1948,9252,4088,356,1727,7760,780,3124,6425,7468,9108,9768,7306,4781,7502,9911,9677,5192,876,4186,5483,969,3416,6229,9423,7793,9381,8480,4098,2979,4742,1562,7556,5771,4419,5643,8395,3266,5384,7020,6492,8001,9162,176,4954,2834,9974,9393,3854,7571,86,7348,9373,4075,6658,9379,8624,4063,4168,6783,8936,8585,9981,7633,627,5615,9637,136,2678,2611,2048,1665,6521,6105,6140,2865,4267,4749,2875,9027,2729,6239,5474,8423,5934,2526,55,5949,1613,3489,5918,8614,4353,6244,6110,3071,9971,9545,3876,2241,5265,5602,3937,3285,4514,5346,7867,7417,405,4319,1285,4636,4952,5556,8580,3926,2509,2361,4151,8795,1615,3295,5766,9825,1091,7198,9673,3055,2300,8428,5993,865,308,6577,1894,6453,9760,9799,5903,776,5014,4334,5407,9092,4510,4389,8482,7973,9196,3736,339,2300,5490,5258,1360,847,3690,2652,1723,2017,2640,2794,7625,8292,9704,6325,971,8202,7784,6872,7212,1940,7336,7089,2621,1633,2769,1286,2251,7197,3122,1919,7450,2332,9794,5080,7376,2102,4880,8787,9760,3760,88,5253,2547,3520,795,7855,4571,1963,2051,9791,2604,4689,4174,2142,7385,8349,7578,3431,5997,1436,8034,7925,5481,7729,586,5358,1832,9861,2594,4668,2590,8329,5698,1621,9471,6319,604,9204,9053,2986,5406,8250,4462,8893,3039,3424,723,5289,2453,4261,465,8197,4924,6681,1795,448,9350,1937,9198,9718,9292,9443,2198,4349,8331,3126,9352,7206,5070,9486,8459,8608,8230,2338,1672,7565,8373,5418,827,9864,5028,437,6443,2055,3149,7750,985,2589,9310,447,3439,6555,3523,5439,6609,7171,6936,4610,9308,9873,6933,4551,3614,6906,5820,8925,8548,2666,3823,8532,9035,7561,7491,1212,8527,2152,6727,1488,1387,4276,4065,9232,4478,6274,5663,484,3509,6603,4647,3782,2118,8861,7463,5159,2812,7885,4059,1272,2624,9474,7867,4029,1685,6480,4219,5364,3744,2347,5407,1895,3307,4838,162,1917,262,4089,3539,63,2976,1028,7605,8698,1627,4323,6191,676,4343,178,9626,532,7217,106,3789,4603,1682,7258,4348,5566,9033,3929,6562,2081,1121,5638,2148,7197,7197,899,7193,9845,9659,5525,1086,74,6619,6743,3699,513,2109,7329,6445,9091,1082,8879,5747,9814,2509,7410,3656,5758,7697,8758,1058,9105,3919,9878,1035,7525,9124,1882,791,3710,5971,6041,8437,8493,8441,2904,4070,3183,1074,4973,7270,6236,4681,6459,7086,1989,9184,452,7592,4987,6646,4080,407,483,5602,989,9392,7650,7134,3059,8720,5814,2865,748,1308,7623,6166,6203,5958,6005,8315,4731,833,742,7060,4180,1868,8803,6352,653,1654,1470,8150,2732,8015,9647,8448,6098,5777,7195,553,1066,8786,9608,6511,7111,5253,3307,4309,8777,7953,9997,939,7174,3058,6528,5148,698,4185,2065,796,4023,7367,5254,8935,7273,2199,7143,1882,7093,7993,5289,8877,2877,353,6529,7038,5579,3093,4070,5288,9827,9523,24,9838,8083,7761,6037,7976,2224,2075,7854,8240,9139,5657,7346,3544,3849,8323,686,6046,1373,8915,7746,2830,2676,8162,153,1238,2026,4294,3045,3945,2128,1887,1677,8727,4801,145,8826,7877,8456,9640,5487,3273,7478,2358,502,1574,3518,8029,736,5124,1614,1508,8867,307,4658,6378,5929,8230,5152,4853,7256,263,5558,7311,6537,2721,785,6203,3685,460,3035,3630,6788,3227,4494,7121,4783,3268,7174,8320,512,4618,2953,15,3762,3041,3717,3615,909,1666,3942,6562,4902,6217,9859,2318,8134,8872,2095,7817,9032,5152,5105,8795,7578,9907,5971,7950,7022,488,7433,2137,135,7896,53,8782,2418,2552,1346,4145,5516,113,3855,4245,752,3541,4527,9192,1479,8507,1145,8044,6153,4675,9565,1836,8052,4511,7232,3628,7359,2407,2704,3328,7182,9743,6940,1410,9068,8567,6622,6216,2603,8190,3724,6301,531,9146,984,4343,1644,6259,3166,869,3856,338,6327,5034,1230,4326,9938,555,7908,4791,3832,877,1564,2545,7221,4860,178,9317,8423,1266,9803,5326,7979,9641,2802,8000,6857,7861,2343,3987,6775,9378,7308,1364,9197,2765,1877,8785,9591,1397,743,2079,9883,6401,9359,3768,8015,4532,6822,5622,8999,1454,1324,871,2771,6611,2548,2413,8633,1819,8752,6373,4432,9476,6399,915,941,3299,3177,2976,5105,9107,2634,3773,1514,5875,5473,5675,9446,1098,5317,494,3078,2694,1533,4493,4605,6648,9713,3581,2115,2681,5608,2231,401,5173,601,5378,9284,3494,8601,6943,2339,4053,8602,1441,7218,8994,2120,167,3563,7168,3631,3382,2862,1229,4814,9119,8060,7125,2003,5924,9615,3838,2032,7371,4259,4826,1243,4177,7922,7897,7877,1595,55,550,9901,670,2069,9157,9048,8381,2065,8774,3712,876,6755,6221,8177,4842,6847,419,4815,7595,9512,9064,1560,885,7598,4451,1424,7651,8736,8140,8224,507,9231,3472,7641,2647,4272,214,7757,6619,1088,258,6803,24,1924,8045,5849,6067,4353,8667,6997,2424,8,828,1912,3339,8513,3537,8380,3577,3420,6114,4156,6915,6712,5629,4417,3450,2634,2667,2238,8157,9385,4779,5190,6056,6791,5487,8015,4223,3522,8605,140,1895,6373,2742,2588,1017,4867,4974,9278,4228,6715,1238,5905,9674,289,4685,3033,4409,1236,2236,3387,9359,8249,1577,582,2447,1864,4898,3698,573,6378,7712,3640,314,3180,6921,3560,3785,1641,7480,6317,1632,5285,8076,2141,104,3899,3969,8843,6995,8211,8520,7322,9165,2588,5195,6994,3026,6534,9893,2621,9381,3514,4812,4489,3923,5455,996,3916,3275,8479,263,4404,1960,3456,4143,7082,6088,937,9760,3829,906,7092,4563,1065,3291,8620,9451,7475,3947,7846,3690,8532,3846,2654,13,5951,3897,8814,5169,2299,2361,2933,6223,5298,8270,6267,7538,2546,5626,2105,7863,8156,8360,745,4918,650,9389,7280,2060,8980,991,7498,7301,6389,576,2769,109,1278,9754,9422,5738,1313,1288,7965,8022,3268,3173,6360,1738,9734,5091,104,3311,7140,8995,4707,4162,2657,6344,8712,4358,5340,9717,9682,1090,686,1966,7928,5325,410,2527,7091,4716,4758,413,40,5121,692,8239,3866,9972,700,8170,5665,9147,8957,243,2642,2558,6940,5698,8542,3114,8581,8844,1136,462,8295,8125,5750,5933,8396,7106,2087,7320,7578,9302,1751,2311,1291,4266,5358,4721,3097,5115,9460,8766,9986,5951,4450,2861,756,3431,2884,676,9099,6341,4795,8086,1683,4702,8992,5512,9708,3821,435,2314,5094,3734,3407,3162,1201,2942,3579,1266,123,8719,5059,2020,5232,4414,6596,643,4052,4387,7179,1861,2279,5488,7152,5544,3797,6592,6779,722,5306,7042,931,1647,217,7556,9095,7104,5398,3823,4071,4463,5437,1679,162,4877,2660,8681,3269,5137,9103,9001,4044,5842,5410,7078,9993,675,8351,2332,1852,9025,8424,4025,3957,7785,275,123,1448,4347,3078,9418,7549,933,5070,5746,6717,4265,8861,2539,5159,1448,3438,2353,366,1024,8065,2370,7169,5732,6065,3566,3621,1971,4204,2030,7104,7686,4972,8676,5842,7977,4677,5565,5683,9729,5544,1436,1248,3876,3877,194,5524,4356,1388,1913,8,2092,3030,7793,8866,6889,8499,4225,4508,8833,4625,3642,9077,2814,3517,1559,5561,2606,774,238,6397,272,4904,2400,4610,8469,6123,8845,1023,895,1292,9240,6546,6187,5418,3850,7841,8993,8148,123,5942,8161,3491,5643,2718,329,1672,7108,5717,3810,5708,77,5469,6022,9477,2388,8528,568,6668,6048,7306,7263,2912,9188,6942,7904,859,5669,4781,6684,9270,7594,65,5595,9819,2761,1746,7092,2898,7622,4113,1147,2020,7626,3025,628,9080,4217,3102,6639,919,7904,6232,5719,4772,6380,5329,9452,5921,2010,5073,3489,3550,6339,4675,8014,3113,4984,1641,9106,5468,4947,724,8105,4835,222,4977,5505,261,3464,3390,7639,405,7975,2585,6245,8736,8258,1644,6699,8195,4087,3145,6423,67,7261,3538,3456,9133,5089,7732,2315,3529,5372,6979,9236,7016,136,2070,4227,8774,9200,5035,4283,6385,9526,255,3395,1628,3674,4377,3908,8159,9172,6839,6993,5656,6637,7822,4311,4301,1230,5824,1455,4311,6831,8168,2409,937,2956,1061,3774,5890,5615,2144,7357,2389,7427,6845,7200,4507,5331,5828,628,8413,88,8232,3545,3776,1088,2184,3352,3346,5356,9376,784,9306,3253,8380,2710,2399,3576,4807,7669,3742,2040,7562,2634,8685,8563,1556,3663,1378,6006,743,722,3913,3408,2317,7847,9599,5079,8709,5283,6063,5837,5971,595,3070,3929,977,8116,7458,5679,9932,9323,8699,4452,7465,2288,5484,6651,2444,8140,2124,8423,9401,4249,5714,4752,5931,5389,8512,9471,3701,502,16,9498,6064,4481,4657,5356,7134,8193,1834,9766,3727,160,6273,3535,5077,2798,6581,3461,7052,395,4739,1545,7897,5668,8486,3448,1190,9346,5747,384,4659,6027,2543,7122,9950,2767,1769,2226,4571,8529,1283,1550,2706,244,3036,3884,6827,4035,5245,7259,6840,916,8762,2836,7345,6428,3340,4548,520,8730,2098,6114,5000,9698,9089,8359,8082,1127,2266,8171,5519,1728,8123,6547,2241,7143,9968,9738,6142,4025,8769,7865,9698,5458,1596,4531,7007,3380,5341,7688,2721,3241,8053,6491,4864,7721,7631,7494,1229,2066,9619,1611,1807,4207,9648,8143,55,2325,4170,6211,4958,6118,7835,6589,6062,6421,7485,8274,43,1535,7813,9452,7834,7738,6150,582,138,1070,6046,4757,3828,8414,2001,4613,3578,2613,5869,4611,9768,1455,7066,7600,5943,2381,3761,8023,8467,8234,1325,3036,9860,3768,3404,8051,8109,620,7462,1192,9993,8655,4175,2864,5872,4106,3409,371,6904,2343,4228,2446,9250,6397,7810,5614,8228,5703,581,1615,8750,5993,1275,4865,3787,1054,9102,2614,586,6770,6896,7073,2521,1311,883,363,1432,2784,5666,6767,6656,3758,9260,3482,5666,6370,3733,1009,5377,572,2204,2870,8591,5535,447,1833,5419,831,5081,8805,4123,6273,6679,8458,4305,5349,2984,9366,5368,4263,4530,3819,6336,9286,891,966,662,4774,5266,2039,6510,3451,2273,2794,1409,7999,1102,8193,1612,3420,4778,857,3343,3190,5561,7668,4551,3801,6865,8711,850,6521,269,2051,6946,426,6972,4013,8594,9955,7172,6651,4837,2340,366,6902,6931,6487,6627,5983,8076,6875,2199,8175,3514,4601,7854,7978,5797,7627,6535,2522,4434,842,1521,8523,8459,3152,9538,5543,6839,2766,3210,7254,4964,8000,6657,7252,1014,3899,9334,8504,8428,820,7926,7474,930,4548,6965,6381,283,2742,1856,4440,9098,8826,2272,1321,3233,2314,5629,2195,1316,4513,6590,2304,2450,3529,5893,4987,7015,7793,3466,6208,6174,498,8604,389,9005,6193,2533,7864,5414,468,9695,5026,6772,1491,2941,444,9611,5363,1553,427,5949,1304,8062,5086,481,8913,9566,9203,2982,7598,7670,4848,8216,6854,8568,8891,3816,15,5470,7839,1544,9318,1624,4106,3327,5771,3643,9302,4606,9150,1814,3876,2453,7006,5725,6116,2797,8638,8844,3798,2909,7818,2805,3667,4756,4115,2858,7365,6780,1562,488,9861,5420,1213,5093,3989,9163,5464,5062,2036,6153,9725,7997,9107,4914,3091,1668,969,406,4438,4198,8391,9327,1998,1734,5062,2570,9351,6570,2855,1145,2792,4515,8461,1218,3268,3007,6695,4989,7970,2764,3440,6590,3278,932,97,8351,5563,2147,8229,5449,1260,3909,5022,1992,7567,7290,4568,2813,7232,9535,4048,3473,8425,7095,8135,1542,9115,2726,8552,5077,6043,9779,4954,5702,5084,6023,7184,843,9847,3715,2310,2334,5717,1479,5362,1191,5190,407,2173,4472,2763,351,1806,9792,5574,2560,731,1431,4281,1280,2880,6885,1456,3774,8767,3561,2815,743,7671,1709,2998,4672,3635,1546,2548,4971,884,8318,5827,6057,9021,9833,7945,5896,3612,8321,6893,86,7036,2564,635,5798,5903,5869,9845,9281,4570,3488,9878,9133,7571,1830,7158,2901,4830,3904,9245,6757,4991,8221,2257,1382,9667,7769,7894,9689,1526,3321,2653,9426,627,3808,4790,9393,8395,2058,9002,6154,3886,9204,2147,5810,5734,7085,6874,4603,4581,2644,5732,6574,8433,6773,4027,1129,8865,2851,590,2120,4717,839,4090,7860,2044,7299,4117,9201,3063,4219,3451,1166,1329,7821,3720,4716,3331,2085,143,2732,848,1894,7856,8505,8335,587,7879,8041,216,9281,5345,7267,2912,3993,4758,3091,8495,9615,899,8804,8306,184,5611,3094,5975,7798,5615,4284,7369,3831,4614,3585,2683,4348,3525,5224,2372,224,291,6565,6492,1087,6421,6805,3093,6130,5057,2803,9224,352,3472,6638,5532,1138,9900,7402,6799,1474,3881,1378,3288,7432,8965,983,8980,5692,5796,7980,4208,2702,6506,4393,3012,2616,6586,9995,9794,6209,4484,1982,1344,1224,9802,5555,6599,3716,1097,2446,173,8335,5052,5263,4899,9281,8709,1235,655,9453,7454,3237,9611,4059,6413,4260,1916,4609,4728,8528,2767,2876,1658,843,6275,1046,9110,8147,8667,9254,4624,5301,942,1933,760,9540,9152,7829,5041,8504,6439,2933,775,7888,5224,4054,7266,9398,929,4154,2360,8666,2536,4393,2826,1790,4821,5701,5792,1270,6068,3020,7857,7949,7942,1270,9083,9131,8858,9735,1821,8748,8111,792,3816,638,6217,4561,6636,1283,4932,6079,259,6233,4295,4333,9516,9829,6159,7041,8086,2569,9542,4796,1022,7702,2236,6804,6791,6116,4184,4180,7671,3723,2959,1618,6349,7518,8737,2400,665,8356,9721,3068,600,4937,5357,4187,4233,7831,3718,2491,6148,4997,7134,1945,9812,5507,9876,4249,7568,6990,3914,4223,713,4489,75,815,336,7265,6320,2797,6061,7595,52,8377,8521,5537,7731,5281,8982,5137,664,2531,6250,3467,8451,8101,40,5052,3535,4160,5435,1122,5120,2075,8184,9796,5929,6451,1949,8902,9356,2534,883,3882,6650,1359,1525,6689,126,885,3118,6285,256,2422,4378,9968,7974,693,3949,4696,1052,387,712,4752,475,9082,9457,6094,7564,5621,133,9410,1767,9622,8901,9182,2006,4609,4947,2765,3912,3190,3454,3263,6111,3039,1717,3476,589,5048,8856,916,3417,4076,7430,2816,3547,4498,4847,1356,5238,224,938,6512,6600,1579,3459,669,4184,1453,6849,1570,7523,3560,121,2275,7899,1853,926,2369,3592,758,556,1069,4785,2293,6754,1735,1557,3849,5117,7228,1612,9410,601,9476,9123,5485,3341,6632,9785,1258,4819,2221,67,6276,701,7884,8031,5426,995,1256,7026,3364,972,8224,6409,5253,1384,9458,3629,2057,7233,9276,6507,461,925,7286,1437,5381,9498,4230,9710,7308,3192,3057,3760,5361,8412,6949,4927,6545,2308,5326,694,2465,977,6530,2536,5120,8016,9971,3730,280,7692,4440,9677,9518,329,192,5193,9705,6255,9952,770,1328,306,320,6092,757,2254,5966,147,1471,6202,9681,6609,4140,4892,5941,9533,6047,8591,3120,1771,861,1571,2034,2907,9363,3690,3433,2221,454,2905,3207,1559,1575,9682,7128,8942,5537,9796,1073,9264,8650,4226,6083,7661,7971,7646,9487,9557,2413,6845,1133,8062,8258,8961,7554,7067,7906,2068,7495,9430,2201,4282,8164,7755,1857,5771,6876,3077,8022,2697,9736,4691,2632,601,6174,9977,8470,1815,5180,415,7826,7066,2261,3851,8876,387,3324,1442,1457,1519,5298,5843,8128,8601,6861,663,5218,3458,8639,6438,8034,3698,1672,2129,73,3675,8508,9201,1060,5463,2689,9785,6493,4325,8108,6415,2320,5692,4448,8585,435,4162,5130,653,6476,2251,9814,661,7195,5480,3027,2748,4986,3702,9507,1812,6571,5558,3393,6019,8106,5946,4785,6325,6956,4619,8478,2019,1354,7101,9172,8879,1330,9015,642,4144,89,1470,8503,4077,7741,7434,4984,6080,6532,5953,3595,592,1867,3607,2144,9372,7868,527,7529,1605,9775,6433,5508,200,8068,9659,8316,2199,3939,2104,2924,4681,5666,3557,1306,5691,2855,6393,5207,7489,6121,493,4215,2149,2063,4361,3803,1247,2904,3348,8340,1672,5749,9444,7701,4517,8671,4617,2979,8224,7180,1586,6623,5345,4413,4201,2829,2917,9088,1400,3631,1787,2524,8130,5396,8088,912,636,5603,9935,847,6948,2618,9088,9409,4562,4990,8140,3241,4613,7834,6563,5582,5762,3744,7199,6484,1353,4989,4711,2756,5211,7399,6003,66,2372,1728,5831,7564,4040,8242,4872,9478,6144,5881,3151,9781,5103,1378,4340,9263,3655,3470,7252,1537,9987,8870,8671,2841,8494,1924,6065,5995,4782,4478,1976,7392,5555,9426,5566,3122,6717,5892,4361,7773,9706,7896,5262,9224,7462,1047,8422,2378,4266,1159,6408,1659,6637,2937,170,5433,2241,16,9063,2141,9341,5991,8933,7054,6056,6777,5924,80,8611,5581,4145,4071,7873,5938,8783,4050,8013,9893,2998,5212,449,4375,7231,6345,3507,20,1554,8149,1982,7990,3697,5746,6943,7035,975,2249,1309,9254,636,8748,7436,8811,3321,7473,1882,8032,6603,7007,2717,9851,7626,4621,1906,6602,3595,8284,9994,3566,6435,2990,3830,9888,3863,9216,4998,8501,9582,7690,7498,8602,4530,1339,6593,6628,1997,9525,1377,6860,9796,572,189,8831,920,4580,6191,9989,7599,2403,8029,6755,6956,3990,4244,5661,1418,8955,3289,1814,7740,9945,5221,1990,7613,7990,9564,1172,6729,9131,6194,2556,4381,1104,9125,3423,5470,8389,1140,3001,5334,9019,9507,970,5257,1990,2690,8769,8034,1308,9609,3960,4877,5451,4255,7018,1392,951,9080,2072,4073,6576,3389,9451,5620,2138,4433,6446,2356,6583,6178,6988,5165,4046,7801,3053,400,4898,5819,7366,82,5499,2381,4452,8299,5553,2233,8520,2650,8883,8300,8811,9549,9172,8861,8878,7145,9,5448,5171,4785,7620,8983,3504,9866,2598,8226,4198,422,5494,306,5004,8564,39,9422,8372,88,7666,842,3619,6560,7685,9492,4073,5184,6321,1103,3651,7796,2148,9855,8074,9268,7191,3959,2141,3589,3703,6032,3820,9663,5051,1537,5395,4437,1974,2781,5897,6610,8755,9371,480,5702,6459,2365,2760,860,2179,9219,9927,9252,6507,702,7504,6276,2340,7594,9793,4999,9988,2081,4925,72,4180,286,6361,2831,8878,105,5492,8768,6312,1120,8956,8581,8417,7960,1070,4733,5310,6567,8718,9820,7172,9601,3724,8647,4771,8612,2645,8042,6926,7865,6561,2033,7126,7335,2560,4486,7393,1424,4491,7777,1047,6988,2703,7828,6672,1662,7430,9014,9767,8733,8009,3130,9765,851,8233,4923,9738,7804,4983,9391,7270,8038,8428,8427,5490,3313,2138,183,9189,7666,1375,1874,1973,3103,7307,420,3549,9147,2170,4839,1541,1020,9836,148,5346,9092,2549,249,54,462,9974,7718,2436,9959,5552,3330,647,9985,231,7017,4767,731,9104,481,9560,4969,4873,3183,613,3165,6228,1613,8458,9487,6110,1090,5339,1220,4438,6650,5749,5428,4995,7260,590,1456,1841,7633,9265,6118,2387,8783,8432,1628,5507,737,569,3695,3252,2282,3167,1093,5635,3582,9830,7798,9591,7547,1292,2972,3550,4291,1605,6448,1727,7892,8823,118,8972,7840,9622,6647,224,8244,2141,983,4277,7663,9155,8688,943,2070,1973,8473,1721,8322,7639,1560,9180,6543,2373,100,1801,4239,4935,5678,1817,4498,7228,4044,9726,2378,9198,6444,7301,7954,5284,4114,1787,1616,3939,7643,2696,9573,1358,7034,4079,4508,8828,914,4985,6505,346,7572,3097,9966,7962,3247,463,9069,7431,1278,9268,4516,4150,3552,863,3578,5505,3823,8134,3655,6308,9442,4644,9749,2552,2625,6476,2468,5967,393,3132,2285,1138,9074,4169,2408,3212,5518,4732,1310,2563,9196,6668,6320,4555,6480,6415,8599,3329,2230,4842,9883,3753,6980,9623,772,7426,3180,9813,3182,4228,356,5434,9778,7374,9596,671,3097,4305,4877,5147,8814,3054,5603,771,8436,661,6450,8103,6586,4101,2235,4001,7774,2461,9537,6746,3011,7881,4015,1178,2534,1515,348,1628,1330,9747,8209,6574,6888,6162,4492,20,9937,131,3412,265,4687,3021,7759,6256,3488,7210,3471,210,1509,331,2522,1006,8376,1063,1436,801,8106,2396,1974,6947,9637,2922,1094,7758,5532,8399,3321,3705,2576,4272,3618,2846,8158,3342,904,1795,5981,9088,7243,6380,8115,3752,202,5770,687,208,6084,6840,9843,2777,5303,7613,1275,6693,8863,8663,2913,825,7833,5331,7490,5471,8071,8626,5018,2832,7578,4273,721,7419,338,6668,4395,4455,5564,3332,2869,7324,9582,9083,3567,9989,6471,4176,4132,6467,9442,4794,6116,1752,5278,5049,9315,2133,7337,9836,8825,9303,5849,6980,5577,7676,1427,7269,3593,6945,673,9804,3125,3562,181,1850,1375,531,4662,221,2688,9290,6416,3299,9975,4202,8720,3365,4308,4645,3087,9659,1702,9659,341,4361,3564,6505,9639,1142,3161,5473,4742,2351,1042,9227,512,4182,7958,2631,5596,7268,7286,3685,1316,7492,4437,3275,9902,1895,9207,7034,8048,6070,7273,1543,8938,5827,7908,5145,7810,3217,4764,944,3402,634,1310,6086,7391,9904,9272,245,7179,3786,5688,7970,3521,8770,2188,2285,7667,6453,4653,6953,5829,21,7839,6054,3599,5435,7411,6263,4068,1802,2054,2009,9009,8112,4496,4688,3643,7627,2291,5169,185,6807,8580,2195,4628,2668,2041,5326,3057,8327,7056,9751,4081,6420,9814,4291,2569,7406,8576,733,6339,5177,3479,3005,3385,8365,873,8781,618,1277,9300,7665,5760,2376,1182,1692,4533,545,1887,9551,3116,7755,335,8668,7029,9787,3227,2918,5973,5237,1378,9477,7193,2599,5431,8461,7420,2088,1070,7722,847,182,7917,9120,1682,3215,4262,8704,8139,7927,467,3147,5875,4002,9836,4386,2269,2943,9191,8004,5561,9817,4045,9547,2825,5375,2979,3014,5900,2903,4863,8287,2004,254,488,7243,2384,1760,1175,5796,4499,9180,6218,7030,5851,327,9924,7054,4141,9112,7239,3198,9812,2553,1745,6316,4956,9186,4776,8625,1624,571,9558,319,5061,3797,2542,8390,1986,4595,8956,236,9627,3997,2241,6911,6690,7503,4350,5338,123,5329,9828,7355,6155,8274,2407,5387,1976,7793,5170,9,3526,6981,8762,164,9518,4464,843,4421,2218,6233,1178,4036,7908,3979,7539,394,6470,4270,992,1322,8280,717,5163,1180,7089,7214,2662,860,1636,6442,8423,3242,5581,5487,4216,3228,1818,171,3667,5852,6887,5339,1074,4254,9512,4295,2675,9610,9082,7822,8184,3520,1378,577,4895,5381,3853,5350,6643,3287,7876,1315,4168,4686,3001,4193,1894,4977,2495,1179,8145,3085,1834,1963,2300,290,3978,6082,4688,4793,5601,2469,9319,6280,9084,7116,5378,470,4540,4000,2713,3001,4969,1288,4175,5706,7468,9808,2052,1595,3334,37,5597,6996,4798,5068,4492,776,51,2285,876,8219,5621,7509,8741,6537,4689,3876,9770,743,9317,6145,9088,442,4452,3196,2750,1581,4690,521,6856,8469,1238,2645,1734,5405,5440,2782,9614,6573,6203,6824,4472,2728,5709,9422,5508,4994,5398,4789,9467,7241,5865,9512,7449,4533,7002,9406,8915,124,3546,6485,1804,6634,5258,5106,6055,4234,4921,8890,5288,5251,8630,3747,5704,6023,4604,2654,1815,5649,5028,9259,9516,6495,7190,8014,3546,3500,7726,1337,3834,1566,453,553,92,6525,5397,3272,9597,8741,398,6146,7137,7061,7026,1202,2570,3564,8311,749,2708,8514,2863,2924,1798,5846,8634,1057,4952,1619,8894,500,8303,6380,9545,54,9510,807,5021,7766,9118,4656,9050,8837,2637,9104,8027,6456,9365,246,9919,459,2214,3442,1264,3447,5386,2301,7756,9600,6927,3620,504,5372,1220,8111,6821,2312,1506,8088,1549,5632,5828,9669,9320,443,2129,3746,3929,2547,5707,95,1515,8863,1291,9518,84,1631,7730,3773,5262,4383,9179,85,4095,514,6728,5136,5536,6993,695,213,914,2506,2512,2492,4539,7361,2946,3964,6841,5198,3842,5206,9734,8908,4628,723,4116,1258,5567,7542,7834,2565,870,5392,5073,4402,2885,3405,2791,6861,4876,4191,1352,2757,950,3656,9936,8925,9986,4606,2358,5079,3430,7974,2273,4641,4043,6791,2068,3477,3283,8018,2027,9813,5026,1800,3544,9902,8484,3612,7940,4562,9638,4030,7429,6646,6976,7297,7451,7099,7412,6339,8514,1023,6038,732,5015,8168,4726,6480,2400,2601,2078,7344,3675,8312,952,9391,6370,9021,5208,8285,3622,1477,2203,2511,8164,2329,3160,847,4680,8115,2819,7458,623,2054,1256,175,2696,5552,2821,8105,4285,1460,2578,4867,6912,1281,4468,9707,4929,8095,4415,4298,3934,8763,2534,2846,3510,2807,6551,1141,470,68,8409,1226,816,9094,2097,4973,394,9281,8805,5978,8487,1639,8507,8960,6641,2263,4259,4920,6323,5992,6892,4292,7580,7826,12,6823,9232,7108,4371,6853,2209,9499,8129,6184,1173,8388,1069,3859,2277,3951,4798,1138,9018,7055,7546,8252,9800,5785,4527,9505,285,7724,6102,4264,7028,8019,4738,3858,1233,1171,4188,4062,6687,8984,5217,4559,8663,6952,3915,8425,9878,9933,6312,6705,5271,2194,4032,293,8229,2904,2928,8817,41,1396,6002,5641,9255,3086,5963,180,3608,8371,3696,4646,5520,4484,2820,3665,7770,2968,9019,7531,7808,2391,9641,9884,3034,3174,1605,3841,6877,5148,707,6073,7906,1288,1774,789,3207,1974,9646,13,1307,8388,7755,431,4797,1478,3124,7831,8588,5100,6733,4553,4709,2017,9539,8495,5910,2779,7502,5962,7625,859,6305,8749,5314,733,7626,6197,6065,4097,7314,3001,8533,1363,6216,5799,9387,9043,8397,9781,5121,9164,3429,3904,9480,6079,6482,3964,3870,8957,2738,4649,9015,2538,2211,6738,4434,649,3433,5184,6545,6037,1695,8936,952,3291,581,1809,5868,2196,1962,6589,1814,6835,1469,35,5866,2301,6287,1571,9618,950,9466,3864,2155,137,6503,6904,7886,3216,1435,9420,9722,3609,3185,5592,6283,6975,5020,1019,7193,9742,4345,8072,7045,4682,6691,8977,5252,2882,9155,4923,7273,2353,3919,389,5415,7609,1755,9213,5555,3602,193,7308,7903,9572,9530,5537,6121,1107,9771,1756,9551,6819,1323,4348,3493,8,858,8992,8660,6856,2607,6165,8798,2427,3207,7813,6489,4647,574,5470,8774,6011,7421,5225,8986,3015,6780,6466,7558,1906,2940,6629,762,7864,5865,2730,263,8351,7761,7498,3190,6531,4781,9171,5837,3944,5628,2776,2495,3503,1542,4510,5243,8529,4344,7292,6793,7691,4087,860,9922,449,4731,7090,1430,4448,9039,6666,3671,2320,9835,6399,9351,4679,6590,1924,5369,8254,9977,1224,4055,5638,694,7562,5335,9438,7212,1788,4379,6928,343,1515,6905,3474,4461,9193,8699,8382,1687,6633,421,4863,1537,2348,4150,1004,7019,8328,6349,1258,5861,5814,1940,7776,3611,1314,4458,532,9499,6500,4718,712,3238,8739,5246,8251,2194,3195,1370,7262,3015,4707,5571,1463,835,1380,8886,7291,4829,106,924,2762,6575,441,985,8281,3127,7023,1332,7297,8371,8281,5287,8475,1060,7660,1537,3432,7316,8294,5776,8456,4616,5164,5149,7442,9687,1247,9223,5004,1023,4717,7054,4182,6879,197,3299,4711,25,1482,8034,256,4004,652,2876,493,7206,2875,5024,7198,4025,1352,9238,5701,5244,6170,1145,7951,7113,6582,7978,1520,6464,4292,2215,4772,4641,7707,3817,1738,8438,2404,5055,3043,4666,5900,617,5073,3316,8948,7255,4356,6407,3415,8753,9549,1939,1282,1437,9171,7832,8746,3588,9284,6775,9259,4890,6393,3120,933,1967,9194,8612,3719,6038,5854,9412,8963,5710,3377,599,3226,2260,5612,1636,6673,5235,8195,4983,1332,7566,9855,2074,6114,6025,2590,3638,340,9378,7609,4051,7447,9023,619,9274,7193,1242,8340,9461,6915,2217,6908,7709,2006,1560,2096,7893,9842,7718,7375,5207,4798,168,4380,5251,3983,2430,6700,1507,4993,7396,8240,920,4922,8038,8747,1762,7375,2464,3385,692,4753,7731,3079,2140,9099,8572,1952,636,6326,6484,1104,7315,7034,5167,2796,2058,3319,5776,8555,2537,4888,8270,8776,1737,3684,2800,6928,1038,4488,7664,559,382,5373,6679,7170,7057,3021,7453,2461,9250,7879,6302,4641,5445,7539,7046,6400,523,4139,5732,2635,3315,8977,3705,5948,9089,4099,5762,8602,7723,8393,5190,3350,6362,7612,9153,458,112,3330,8436,7779,6325,1794,4081,4563,9730,3623,9914,44,6840,4500,2980,8277,3084,7300,357,3409,3001,5551,6764,1575,5304,80,8936,5201,8343,2162,4440,5837,2795,5963,7410,7077,3509,5149,3511,2855,5772,8220,710,8725,9000,6918,8308,6665,6901,6489,7512,3990,1458,525,7780,7260,5545,7573,8395,8118,7430,2852,2430,4342,8818,1484,6108,5781,9513,5580,1146,5437,9153,6906,5455,7529,8331,9264,9506,6321,1019,2829,1182,2377,1788,5450,5348,941,7930,1126,4436,3722,9316,4096,4286,5226,5911,4574,4964,1660,9207,1085,3719,1998,9592,4000,3948,2162,3131,4185,5840,7883,185,8579,2992,4729,7011,5450,5906,1808,3686,4894,4897,5295,9814,3928,8739,9465,4190,1002,7309,1484,1995,640,6211,4041,3068,7084,8034,9294,1482,6999,2226,3229,3995,8759,1368,2352,500,1348,3584,5692,8986,1101,8701,9057,4354,1820,6458,8831,999,3205,1525,3183,2489,345,2855,8910,6331,9876,8932,6050,7547,1209,9837,7777,580,5137,4295,997,7396,2208,9768,5362,7552,316,2617,3814,9394,8140,7535,2717,1298,4501,4469,1674,6347,335,2411,5558,9968,3125,4704,2048,5216,2217,5164,2721,3879,2255,4371,6986,6368,8410,3023,6605,6387,9576,8981,9721,7492,7669,7348,857,3081,4333,9197,8447,5764,6267,2097,9998,8103,2180,5259,982,5639,4636,9801,3079,6364,9384,2239,3081,2833,8274,4020,7930,595,7912,2983,2372,8449,6025,9327,5932,8702,7850,7645,2515,5183,1325,3027,9490,712,3712,2259,9557,5580,5875,4917,3893,1044,6873,7019,9778,1028,264,613,3297,5156,7754,1610,429,3379,9389,221,2593,4952,3783,5953,2571,491,5490,3620,2201,5397,6970,5784,7199,6176,2416,9340,1430,9546,9735,2329,404,4037,7503,7266,2799,1689,7043,4685,6144,9139,1362,6662,1933,4572,5551,5803,9752,6364,1930,5236,6662,4398,7046,4461,7122,1425,562,4223,4370,3010,9750,7112,3536,1599,8133,5902,9996,2053,465,6492,1243,6557,8448,8504,8826,1810,9165,4870,8879,5604,457,4586,7342,9851,5293,9868,5974,621,619,7078,6737,7734,527,1893,7421,4227,7037,6292,9477,3964,1397,4278,3274,9872,1429,1461,954,9422,6972,2486,4115,6728,1071,9373,3228,9988,1265,814,6426,9900,8853,2290,7755,7201,4462,8266,9273,2051,8187,7800,9315,64,9208,9090,1274,9956,6682,9592,1166,8823,4437,3228,1321,2134,5485,8133,4464,9490,5566,8926,6642,2465,4800,4903,4633,7487,8787,2189,7218,67,1380,4357,6601,1141,9155,4653,919,4795,5548,7018,3308,78,4908,441,2782,7208,5577,3998,6162,1829,914,3054,1817,1736,2456,9430,6413,2738,3035,5118,4801,4403,613,8926,6085,880,1350,1996,2888,6070,2055,3082,7096,1682,3993,7919,9016,4637,5236,6611,9742,5473,5766,3385,4047,2047,6090,2711,602,5589,1060,3872,9387,9975,7053,5046,7037,4374,7525,666,5116,3600,8944,4740,4928,5793,5434,5563,275,8015,7458,6142,1001,3630,7936,1865,1837,5352,1978,5332,4955,66,7264,5989,9355,5284,7580,1129,6624,892,4751,7588,3832,2197,738,4108,3485,7943,4998,6125,5368,5196,5638,9526,5591,5253,5769,6968,6721,4446,4704,7366,2887,2777,4050,961,4329,3116,1021,1526,1904,3350,3179,8001,8296,7423,6898,4212,4480,5017,4452,2505,2211,7200,7891,6267,8797,8052,8996,8573,2443,1913,9669,3683,237,2461,7815,6792,9988,2706,9131,3177,6292,6630,4774,9844,2150,4490,4176,6122,4429,5482,3487,9578,3818,4180,1570,3725,4937,9638,772,897,5891,3718,166,9928,3713,2647,4419,3065,6332,2895,8503,4660,8538,2186,1477,3592,9452,6907,5212,6587,1831,3937,1213,4212,3237,8532,1435,1534,2409,9387,591,5019,1518,4538,4076,2733,9460,439,9728,4838,6870,6080,4167,4167,4896,2870,8300,6728,6467,8632,1995,3539,7739,1969,3078,9540,2976,4023,262,5277,6595,1550,3269,6583,3291,9654,8458,6459,8139,5811,5613,9873,7905,783,3080,9664,2633,2198,9754,421,7976,8964,2841,8089,808,9681,8226,1936,4958,596,7460,4412,2046,1089,885,1488,6448,6524,7121,4822,4571,4543,4632,6786,6738,7695,2486,4126,7005,2395,5341,6234,1902,6832,6873,9086,7182,5052,2483,8524,4514,3588,6538,182,9716,3372,1480,4184,9996,4800,4718,478,3838,2299,8178,835,1347,2258,1741,9178,1117,7827,682,7117,3902,6864,2375,7534,2877,1077,4348,3560,339,3414,2868,7882,6100,4199,6030,5846,5889,1670,51,4171,5548,995,6060,2656,735,402,9515,9380,6763,6849,5974,9811,6977,8841,6225,7798,3133,6858,6296,6986,8983,7193,919,5815,9133,7955,1121,6591,626,1553,4787,7668,4906,4619,550,8074,9725,6297,4142,7443,7838,2836,4483,378,6432,6283,6868,4580,6452,4071,2884,2116,8066,1048,5777,7427,8976,4772,3492,3728,1668,9193,1426,2197,3639,2684,4698,6791,7444,6268,5302,7881,2974,8587,7863,299,1717,8305,1712,1935,3387,1119,4353,5075,7171,2695,6325,1603,4455,8998,1020,668,7949,3064,5551,5708,6600,8160,7132,2208,4977,9615,9809,6503,552,5100,3118,8833,5365,9364,5809,5071,7354,9437,2973,9094,8359,7319,5556,1676,6250,8053,543,4910,7099,4158,4048,5726,1671,6181,4815,6271,5692,1629,3111,909,1688,4064,239,3956,4456,116,2237,2038,2665,5702,9935,3357,795,3867,2741,9879,1406,943,6150,9688,7887,5284,212,9440,2981,9653,6384,7061,2045,6049,3286,9744,8618,2476,1578,5930,1509,9909,6367,5261,8250,7875,5918,7254,2020,8547,4926,8086,2859,238,2153,9890,7492,6587,8439,5520,1616,5818,4507,7061,5129,6067,879,4793,6560,3659,2666,7272,1792,2938,6669,6775,1239,2253,8889,9063,9392,1448,1852,7288,3170,4151,9556,7795,3257,606,3722,1791,6155,9140,6177,2265,7450,1788,5046,7014,2868,964,4072,4635,9189,9620,7199,4933,8848,2680,5160,4096,3422,6826,2581,853,1845,3640,1584,3929,3828,5664,8345,3368,1003,716,9745,5285,8347,7135,6320,4733,5184,5356,7096,1407,7906,5147,9764,1663,8259,1434,2174,3072,8402,1994,3452,3907,6806,4932,2327,8469,4820,8969,404,7253,4495,8665,8637,6710,2655,8902,2351,1117,2908,8630,3700,3611,7104,3132,4010,1476,6767,4980,7580,7585,9768,5915,4040,1526,7612,8679,6496,802,1477,6730,9463,4885,6644,6096,3070,2675,3487,7740,7241,4835,3565,4281,1924,4700,2124,9201,2805,7668,5024,9024,3271,6883,863,6425,7719,7253,1496,5201,2228,9456,3569,5005,6818,5054,2946,6530,8860,2709,3504,9222,6768,5472,3023,8109,3802,6718,4175,5252,6214,8004,3632,4343,425,6965,299,6409,5922,7133,5810,2879,5643,2408,6464,9555,2168,8965,9017,6038,6556,7018,4030,3813,9490,3097,2536,8527,4623,790,9945,9649,9748,2128,7439,6523,7274,6945,9121,848,2289,9396,958,1341,5489,2970,4463,5070,7113,5223,3450,5774,4996,9438,4566,5703,387,6360,9969,2683,7694,8377,4344,161,8254,2273,629,4155,9863,3320,8437,4696,165,6368,4052,4160,157,1740,722,193,7046,1589,7791,8208,5684,5312,6543,5205,1658,2513,2652,7748,8760,4826,7593,2178,8316,6632,5578,2835,8302,9556,8222,1109,3275,8176,3470,1738,3436,5962,5962,2365,9225,5307,8880,1809,3721,3392,4662,329,3436,624,6803,3127,5899,5966,9766,7280,6508,3813,1557,237,6987,2515,6651,4951,8815,8081,6105,7465,4138,6855,8102,3548,3461,54,7452,1023,4746,3975,7350,933,1228,2036,9804,3945,2518,971,5546,8177,7281,6412,6558,4072,6315,7560,8063,5744,7237,3927,1692,3877,7394,4871,7797,1531,7283,6478,1383,3653,4926,7707,1947,5080,1724,9334,9404,4788,6181,8758,8353,2535,1396,8657,7476,4803,7657,9973,8590,9367,9492,1691,134,4766,4349,4591,1197,4517,3069,329,7388,8554,3675,8536,211,6893,9900,7152,6653,3934,1027,7300,6573,6952,934,7293,474,52,6850,4135,8648,3972,5839,463,6885,9801,1709,6297,9417,4512,4997,3105,5527,2176,335,4074,1913,7206,5064,8059,2586,1820,5652,8077,5428,7122,1194,490,701,9215,4639,8329,9902,5325,8193,6382,5335,6434,8563,1048,6737,7677,1101,5824,8804,7421,8012,8314,1088,3092,6905,1481,8677,9556,4460,3083,5418,9354,779,7468,6776,995,4068,4274,938,9562,1015,7245,5221,4602,2,2303,904,1559,9281,5716,5714,5984,5195,2773,7674,2077,9779,7786,8430,8617,3753,431,748,3377,8564,704,4034,1425,6128,6490,8195,7268,6169,6816,5958,2438,9984,8923,9010,7846,9168,9140,5245,584,5860,5171,3499,2518,8322,6475,709,9579,9184,1832,5038,5268,4609,6255,3139,3408,3374,9879,3447,2107,2460,1660,1167,184,8804,2923,2265,7828,7428,1669,2764,2153,8929,8093,663,2346,7122,1712,173,4858,6878,3163,5787,2453,4584,2771,1698,4739,547,2660,3061,5635,4418,9186,1002,3973,3626,7554,6988,6810,243,9836,587,5500,3265,3146,6019,8196,7257,9457,4446,1078,2342,4009,711,4121,2562,6896,13,2105,2870,991,3671,8326,4497,7700,8910,6147,9991,4609,5316,2917,8246,5849,416,9283,9990,6581,5959,8512,2093,3690,9457,5593,5657,7566,9881,1953,8829,6458,378,4045,6669,9179,4726,9523,5604,8247,6774,8559,5046,3670,1697,2816,7226,7362,6107,5865,9071,6745,9266,9883,8466,7408,4300,4787,1602,9405,3960,7751,5642,6838,218,1707,545,1977,3746,3931,4992,250,1847,9268,9,1423,6054,1107,5800,9401,6355,5337,2971,5479,1435,727,7867,9126,8668,1176,4494,9142,8335,1582,3269,9523,3264,5838,5058,5624,8891,7031,2072,9126,6300,6138,3005,2320,791,3809,4647,7129,7358,5914,5787,1339,9752,5902,1141,190,5107,1968,6035,8384,580,3119,5421,5050,3625,8582,5388,611,6925,5811,2136,4928,7535,8613,1288,6893,1693,7808,2190,2070,6649,6728,2551,2683,7281,226,8944,3754,7961,8946,3534,6654,4915,2292,8122,7303,170,4068,1817,1702,565,7613,9055,916,3369,1746,8442,7163,8136,3249,1367,6101,792,6542,1316,5013,7242,3558,4873,2073,9372,2116,2657,1714,3098,4755,1192,1785,3884,5070,5845,8883,5888,7785,9929,3333,5447,9586,8543,6560,4513,6242,9698,9377,8253,2539,5711,8375,4866,6923,3416,9128,248,6541,3602,2000,8096,1711,3353,7064,9555,2211,6511,7110,4288,4443,3315,581,5983,3697,9911,7169,1007,7214,7443,5264,483,5792,5015,2796,1549,825,2781,6573,4486,9205,8026,477,8286,137,3459,7050,7504,2428,5031,9110,6818,9557,4572,5595,168,1923,6416,9172,4724,189,6272,4450,2454,1469,4523,4193,8699,8684,8946,4131,5173,9380,2660,3741,7795,6506,1458,8580,5120,2585,3938,1689,3088,3891,3505,687,9462,2177,8434,7935,2616,3133,3843,9059,1097,2797,59,4182,6800,269,224,1037,7537,6803,5568,2802,6385,180,6205,4559,6102,7360,5532,285,3460,4265,4217,9792,294,2017,4472,7488,6444,2319,9465,3261,4739,5271,2275,1457,5973,9358,7009,5542,2943,4264,9151,6467,7916,1074,1340,3084,7154,6760,9536,1381,7096,2634,8028,8805,9151,6562,3342,8560,8170,2136,2646,8603,8212,7468,8667,7776,4945,2753,4094,6021,9249,3360,3962,1692,859,3020,6170,5329,102,3554,610,7062,9103,503,4945,4543,7294,1982,5206,7619,5403,5501,8901,2874,3980,1432,6073,5923,9346,4907,4455,8044,1112,9786,412,596,457,5870,5981,5702,6709,5256,6285,4851,5772,7616,7745,991,2474,5244,708,2695,7696,4231,389,5528,1690,7310,804,8818,1619,9544,6811,6768,158,2955,467,4538,7794,1060,5358,1629,5200,3044,7069,7277,797,6774,9007,8509,749,815,2666,4736,1664,2858,3128,9550,2266,3869,8380,4072,2895,6254,3630,2911,8477,5746,5764,4824,7339,2511,6713,8258,2817,6795,9365,5582,7274,2830,5782,8240,8212,6674,2744,6197,4139,8539,883,3661,8920,7471,3467,7091,2678,700,5924,1103,3640,8517,3037,5135,6287,1090,3164,7821,8939,8368,4836,3967,7345,3084,7148,1135,2709,9762,2879,7892,2731,4192,2874,9006,2901,391,4804,7332,4197,3609,2495,9496,4925,5972,993,9937,1575,3350,6184,7418,3925,6067,8954,7211,6999,3786,8722,7837,6333,2257,2344,9783,6726,1733,1267,2089,7502,263,5104,3356,492,5254,7057,6300,3136,1160,2961,9304,1995,1064,1387,202,6803,3836,3284,9761,1807,3438,9207,6875,696,6261,6478,2991,7756,199,6542,3500,9754,6012,324,5018,8283,8649,5767,3763,2313,7954,908,6248,1885,6857,1951,1662,5404,8261,6051,3863,1246,4494,8987,44,9623,3394,6816,8562,2389,4614,7909,3907,5055,8316,8609,2684,9803,8080,7767,3945,704,5371,9759,9924,7057,885,7837,7310,7366,3440,7,5414,7592,8554,3411,3184,5436,4769,4410,1378,5275,7565,2662,9181,8952,2667,3139,3788,5466,6800,3485,5676,3794,9781,2017,9113,7754,104,4267,7187,3843,8305,1774,7710,148,7022,103,4189,9413,1638,6951,6859,660,9632,5716,312,5516,786,9711,6871,4371,1894,618,7358,8524,8619,4462,1816,7529,2658,7317,3154,1967,71,213,5556,4187,3363,5600,6763,6920,8642,6524,1035,9908,9688,1492,9746,438,1503,279,9091,9205,8997,4965,4290,9116,2027,7899,6057,4471,6191,1339,853,7490,43,735,9578,1415,2466,4003,5148,8670,692,3887,6798,4839,10,1026,9953,3806,9694,7609,8758,7140,3173,3189,3313,666,7460,819,4967,3242,611,6264,3646,3841,6937,984,6437,242,8493,7104,7667,6997,842,6435,3154,6499,3049,3744,8257,3190,5949,9875,3469,4617,8796,4227,7195,8163,401,6784,1912,4567,9516,9517,9641,9846,8670,3472,7738,249,4956,4987,6050,8624,3625,6619,3705,8739,5330,126,1692,4657,3431,6409,6385,8000,7053,6183,9366,789,6819,9651,458,4597,8871,1090,3564,5327,5116,2804,5591,6312,6816,5987,5656,9736,7464,5962,2728,1976,8834,4312,8833,794,662,7590,4719,7413,6759,4761,4782,4646,2884,1577,4054,9826,5844,2348,3787,3254,9577,8971,6452,2730,597,8958,2709,308,7231,3924,8314,9255,3860,4441,5912,1809,8259,502,820,5701,6737,2447,9948,702,5704,49,3361,8040,6635,1897,5837,9793,2458,426,6867,2387,5076,92,1573,1312,2590,2591,6699,718,9346,6478,8870,2093,5643,495,2753,4884,5237,44,5781,5133,4130,4825,7672,3834,1382,3963,3869,2688,3659,3373,4936,5423,7636,8646,677,6257,7463,3449,3891,6779,199,5135,3769,819,4333,9088,8079,1550,5844,9692,3659,3557,1099,2257,1495,287,401,6275,9050,6819,3479,4698,5906,8671,6878,4086,2909,2054,3258,3448,6799,8303,4543,7939,8594,2256,9100,6887,7251,6165,8521,4619,5169,3590,6329,1170,3427,7886,6027,9527,5644,288,1075,8444,1875,1941,318,5080,2928,8458,1795,6674,2755,2610,6390,6634,8899,597,8508,9573,5356,1570,6233,7615,2643,4550,5602,7344,3633,3565,5786,9075,3362,6441,8847,1613,7718,1688,416,7969,7366,1920,984,8966,9370,1101,1711,9066,9111,7443,9885,3392,1529,8434,1714,1770,4226,6577,1355,8042,7050,4116,9431,5345,1808,5417,685,6359,2135,9145,8466,3721,5461,8795,4504,8163,7729,4503,2976,5253,9099,4570,4239,2252,7353,44,3773,7533,7734,7088,3130,4720,2777,2220,1317,5999,6707,5350,2949,363,8286,5190,5267,6028,8287,8194,774,5746,8539,1632,9481,4858,1730,6958,3591,9365,7709,7135,5582,2548,5385,661,7871,807,381,9896,65,3518,4971,6136,8069,5435,6379,8146,229,2317,28,1497,2634,9916,850,4108,1446,5111,6827,4067,7699,2555,9895,2247,2815,3024,8860,7713,6876,8528,8236,9737,9534,9511,9412,2342,4137,7179,5312,5502,936,7276,8074,3220,6453,62,5285,9960,8910,9246,2826,2373,8095,9368,3754,6248,5261,3169,7324,7366,2891,3338,8992,7389,2237,2951,8101,1473,1366,163,9299,6759,9268,3676,2999,1907,1351,8218,20,4927,969,2413,2555,7314,7336,7986,3269,7725,3989,4512,853,4904,9172,5697,8242,9998,1774,3467,473,9245,2635,36,2577,5618,9697,1911,8513,3599,2298,7922,6323,9206,523,7487,9609,2550,2691,2567,4766,5056,265,4571,2301,9197,462,6577,3622,3154,4071,2840,7364,38,885,5696,729,6635,5518,2569,7461,2569,4023,1292,5001,7754,1621,3627,6484,3973,1260,5177,4712,664,3495,8579,2583,6543,837,930,1880,4602,940,1893,2920,8889,7102,2414,5836,9136,7516,9482,5252,4193,8737,9568,6485,5511,8983,105,8065,6640,98,3516,7363,4313,4715,8763,3427,2630,9317,2189,4083,4303,9253,9527,2062,6242,1353,7876,687,3473,1496,3949,4467,7238,7310,6787,9003,2246,959,8241,4675,840,8904,474,3814,645,5054,2986,2473,3900,7371,2143,2864,7432,7840,4249,8046,7757,2267,9088,5782,5495,6453,9542,8662,2325,5503,351,5476,883,7035,3456,1558,270,1186,7195,2622,8472,6347,5326,3845,3430,1832,6468,4376,2484,395,9741,9895,1831,3696,1248,7301,5785,1163,94,5333,5867,2044,7799,3633,3369,7211,7505,247,4229,7526,4834,251,3522,3513,2961,5505,4112,6374,8931,476,9621,941,9027,860,5517,3734,9687,443,286,2916,4519,7671,6351,5232,2559,8030,9542,3357,6886,8651,4494,7366,6057,3680,8625,2425,9065,9629,2451,3083,4984,7098,6204,244,4465,7664,5774,760,7123,8682,1982,5386,9245,7783,9748,3220,9695,4995,1591,6152,1213,8117,7136,1671,8296,2867,7736,5613,7750,8256,191,3777,4024,6826,7470,4410,8469,2220,2864,1923,3471,4882,2638,2271,3974,1150,6100,6271,4994,599,5051,2990,1691,6517,5990,9601,7499,3906,6404,556,7064,2281,5804,1414,6456,2382,9889,5679,19,4047,7660,505,9207,4969,2817,4220,1864,4501,3570,4879,3626,1218,5589,6499,347,852,1127,791,3438,9352,3238,5041,6909,5790,1040,895,5526,7392,2218,3668,4257,4922,5571,2946,9619,5362,6443,1325,2568,5247,4045,7352,8846,3965,146,1674,2516,6357,2724,8871,5839,4656,2329,1197,3226,4337,4272,1629,754,594,5147,6162,6181,9644,8766,9096,4782,848,3375,4033,8113,7563,4945,1663,6411,9144,7503,1116,4183,8374,6812,4648,6108,7880,3473,8513,1547,5653,7869,6720,5069,3286,5039,2339,4447,3242,2502,202,9139,7825,7277,7803,7531,2255,5099,930,4343,6410,4245,5262,2100,7231,1424,4150,7916,6071,7924,9514,9077,6341,1570,9645,3318,5749,8065,6077,7629,4851,3570,7360,1985,2487,134,3273,3795,7406,4824,2014,7156,1383,4454,7942,8171,7260,2310,8075,2682,6684,494,9255,6053,9131,7837,3407,6401,1805,8231,5915,3625,1959,3136,2562,8571,147,2489,861,247,695,8124,7119,1246,3827,2189,9504,2939,1193,6214,4413,84,917,5850,6479,5415,2528,4566,5115,3870,181,899,416,5405,9899,83,45,970,9610,181,732,8303,7018,9859,5504,5691,6222,544,392,5435,1444,8951,146,8307,3166,1027,4239,9436,7839,1758,9386,5300,486,8233,7233,4458,1815,461,3949,3609,3708,621,8143,7964,1205,7858,2388,9160,2013,2771,4807,1892,9086,9132,5247,2752,996,8371,9700,1092,9972,3121,5424,757,640,1639,8059,708,8818,8224,3234,5643,4040,6975,7526,1097,5702,4800,2912,136,2351,1963,7712,2605,5738,1531,1952,6056,838,841,1824,542,5818,4320,3366,9183,7538,6832,4200,1980,6036,8196,3084,4885,8309,1984,7720,9495,4631,1002,8133,1273,6351,8298,9305,251,2059,9132,4752,7379,4462,8111,1364,1869,837,5017,9286,7738,2958,4966,4309,7218,5231,4187,4934,7858,634,4963,5488,2954,4502,565,6934,8247,7148,5738,1384,6058,3460,6974,1301,4903,7662,4559,984,8223,4822,4244,8341,139,7757,626,2962,5194,9243,3424,9371,4775,3621,8417,1824,8000,3741,9143,4779,4419,7922,393,7836,5548,9916,5928,1691,7770,7859,2056,4307,6369,6332,3404,4353,2520,1682,1702,6294,5666,8294,965,8198,7663,937,1498,3805,8023,778,3775,6107,7100,9438,1992,3004,6228,7809,552,9470,4774,8239,9907,7016,6407,2998,1923,2057,5221,8956,326,4261,7463,5469,9598,4850,5334,6161,1261,718,2584,2404,7251,8906,4372,6427,6809,6498,8748,2176,3014,3975,4516,605,248,9964,9396,5874,3429,1959,7439,202,1013,1880,8405,4855,1682,7038,6617,5382,2534,1693,5943,3998,5726,2258,2127,2312,4041,5713,729,2991,7859,1071,8757,8093,5706,3076,2917,3471,9169,4858,6912,8060,1707,953,6748,4793,2190,3695,2022,3790,5462,3830,7288,8771,7423,10000,7169,5315,6901,191,9603,42,9783,8161,5734,5233,6417,8177,3919,2160,9128,5608,2000,5124,127,6068,3894,57,9062,4770,9127,2844,4865,5175,8721,5002,8934,4422,3530,8035,9229,2659,2910,4338,2221,348,821,2339,1407,7762,2790,429,5087,2617,1824,9044,4438,3526,1392,8510,718,9491,3197,3378,2474,2396,4612,5146,1060,8774,783,6694,499,261,7282,8286,8614,8396,8028,2453,1122,2039,2914,3264,9428,8313,8340,1362,2958,2415,5761,8315,3924,5036,9995,4780,6308,1619,2878,4342,374,1729,8998,8651,3761,230,879,8698,349,6533,6888,2100,115,1267,8186,1777,1879,5913,3926,5929,8399,7432,7868,1052,713,1870,5307,1477,2073,4129,6617,1531,6309,1836,5095,9544,1902,6492,9746,9588,3305,267,4186,3770,2621,9351,4159,3534,9538,5978,8082,1729,2360,3596,7706,8518,845,7038,6949,7640,9669,4213,7953,2419,1568,8268,6818,9950,973,4640,3396,4064,793,304,6873,9256,9398,1450,7970,410,8140,5158,4829,4521,5712,6778,1645,6684,356,4514,6103,1576,1771,8110,8262,7611,8244,280,3743,748,533,9397,7357,8600,8737,4036,1809,3237,8335,7089,2851,5016,1997,682,9614,9843,4063,2751,4248,302,9093,6712,3063,9048,6247,5821,986,8346,1545,5074,4037,6276,5733,7847,71,820,591,4265,577,6534,2004,5344,1794,3159,1510,7998,6833,3980,5024,7159,5856,2768,3874,3408,1694,8720,7219,7093,2669,8591,5915,9163,3055,6759,9749,4451,1799,8594,7566,8025,5548,2136,4267,1605,869,1228,3274,2295,9271,4077,2467,7904,9491,5495,7699,557,5637,1215,9525,2843,3084,2519,1824,2640,551,9723,8295,1219,3136,1058,2510,8019,2996,3951,6684,8822,8437,4534,4908,8243,7822,6895,2292,6629,542,2581,5757,8133,1076,2647,5287,1555,2952,9142,5783,6308,3410,856,57,5576,3283,6560,2830,4501,2667,6260,9216,8855,8684,5409,958,8257,8352,5756,4960,456,7416,5769,7337,249,1920,3307,1658,3317,4715,4964,5438,2171,4093,1841,4760,9787,1397,8801,9234,6294,5677,8193,4035,7715,439,9473,3555,2575,4873,6048,5540,512,8217,8549,2945,153,9255,8560,3168,9823,6299,551,6752,5015,906,4499,5688,2611,4759,4772,1331,2944,9170,1991,5493,8550,7160,2405,4217,7949,9394,5854,745,7427,8066,7798,9569,870,7037,365,5408,2532,4008,7062,7420,9808,2377,5092,5881,4845,5682,1215,6072,9335,4595,1758,3788,9652,6531,6516,8317,1498,7677,7652,9928,618,5897,4262,8047,2331,8652,6695,5615,9179,6531,6158,65,7068,8674,2052,5163,508,8027,3644,3817,7281,9475,2396,1072,9278,8607,4972,729,2040,1208,7845,4355,4271,3062,4295,7863,6004,4136,9315,3745,6071,6755,8796,376,4833,1503,4588,9833,32,9830,7476,625,3925,6845,4329,1058,4591,3470,2049,2417,6836,7844,6708,3352,2485,6046,3187,2936,635,5599,6262,9587,8627,7659,5349,4715,1300,6333,368,3330,2714,3058,7900,467,9570,5302,1443,6247,3694,2380,4653,4702,3051,9410,5880,4480,5541,8922,1326,2121,5071,5700,4319,9758,9163,6110,7903,6431,39,1147,4978,7199,3796,8868,561,5364,6484,5456,9837,3779,436,3460,5887,7094,5037,9178,5358,4280,2476,5421,9180,7488,8077,662,7505,5103,6713,6116,5666,8278,5129,8537,2779,1056,793,5522,8165,4919,6753,8625,2511,9323,8319,9471,5650,6963,5318,6773,6354,6678,2981,6201,9533,6289,5864,9048,1862,6857,7881,1723,5421,1684,555,7493,3702,2254,1803,1500,7258,2535,8604,9395,4570,5766,1309,3807,5876,1742,7932,4938,5810,5833,610,4707,8836,4522,5022,8013,7669,3064,2495,8238,4430,2234,2063,3710,2905,3454,5813,5554,2653,5047,9073,6052,6735,3196,7680,6186,6033,2778,2037,7490,3996,1438,1747,3703,9869,6044,4905,3009,4275,6101,7196,3179,9608,6937,9957,7057,2656,6621,8535,3405,5264,4382,4984,1304,5863,5348,7780,754,8910,6568,2245,9710,7105,6247,1679,2272,5470,3977,6241,411,9013,4684,3072,7306,2353,6629,475,7486,9933,932,534,9738,1372,5971,720,6171,9593,8420,1148,6579,1916,3393,2352,4306,5469,3325,9604,7102,8363,4463,8302,763,2974,4645,1783,8697,6689,6719,8710,7166,6017,8210,4808,8553,8708,4516,3798,283,157,1491,1932,7038,8072,6070,4559,7872,6139,7871,1852,3139,5102,4272,1993,8392,1171,4941,5072,746,8951,6900,834,3628,9778,1140,4215,3824,8765,3131,7840,1932,1671,3302,1916,7138,8976,3426,9475,7716,5344,1161,8218,8665,9860,6390,4371,1782,8429,2477,156,1727,3157,3409,2193,4894,776,7670,6040,2949,3958,5144,1623,1707,1361,4269,6968,241,5884,2740,6838,433,8975,5081,8887,6235,1068,9210,5571,1339,3672,8452,387,929,3512,9956,9555,5510,8462,8893,2887,7309,5762,1858,1164,5328,9253,3082,991,5561,2845,116,9353,6392,1467,9198,1352,1754,6586,2819,7483,5665,3472,8477,4013,5421,8841,6583,5955,665,9715,5239,1197,7540,8254,5255,942,922,3410,5470,4862,8819,2677,5499,776,4797,9557,7270,1752,5863,2263,6086,3945,7388,9849,1398,8537,3547,6481,6246,8725,2540,5606,5945,4450,1071,5920,7256,5302,7426,9125,5710,8572,6110,2385,2099,2822,6108,3529,370,3180,6108,6279,4268,5985,8876,3682,6394,1803,6210,9450,2993,2865,5799,6410,1339,8145,1764,4197,6022,3377,3104,7031,3287,7060,6132,511,6382,7216,3516,2252,7109,580,5950,7055,197,9939,4995,9365,99,5017,9811,1132,6904,2053,6153,1286,5231,2935,4745,1277,7476,808,2674,2112,5547,1225,4666,6997,1568,5692,6366,256,6461,4749,5734,8191,213,2203,4135,5977,2051,3406,615,7756,3350,5553,8538,8996,5604,7205,8318,3624,7093,9004,2796,5719,593,4292,9352,2403,1291,3796,8059,8495,8370,5891,5943,2315,7169,9589,4303,2971,7488,9320,3376,3143,3870,1271,2741,6083,4435,514,4487,6981,3413,5036,1125,5427,7949,9849,1667,9999,9328,5734,1608,3719,6222,1270,9966,8683,6793,5526,6407,1727,444,6898,968,1296,3419,9615,5099,260,2664,6368,4804,9414,7771,5776,8945,6964,4035,471,4848,6115,3019,568,1637,6856,6312,6882,224,6736,7632,1623,4437,724,437,4638,5641,6671,7775,2672,8288,4374,8415,1041,7283,9286,3352,4995,9050,1034,4693,1774,1513,8857,9341,8123,5125,4963,7527,7605,3407,5911,4885,1930,3306,2736,673,5748,411,5835,6326,9818,3877,8579,1707,8005,6434,8072,8464,8942,28,2448,9911,8762,371,5781,855,5630,4710,5434,6414,835,4281,5060,2898,9058,97,6400,9872,4270,6391,5833,67,2090,9634,2446,332,8429,2531,6690,4175,7310,4885,2987,2831,9754,2468,8015,9065,3693,6714,6100,3673,6159,6132,607,896,4636,671,4856,6428,644,6827,9681,2433,7412,9749,2059,7898,409,2719,3371,6821,5119,9709,971,7073,3963,2845,7779,5347,9586,675,5862,338,2468,394,5134,3347,6368,7238,6615,8208,8458,7330,8768,999,4395,3111,2876,3079,4650,7338,3164,5723,9261,9450,9581,2817,8862,200,6911,3897,1569,1035,6069,2011,3502,8638,233,5857,5416,5476,2933,6947,2682,1678,3310,3469,3038,4645,7938,206,5046,6847,6137,4065,2994,8080,8907,4818,9602,3787,8437,3813,5814,334,921,266,120,3468,7352,6959,4309,4542,3107,4691,4610,9649,6749,8898,1499,2927,5607,2447,832,3244,4373,5924,4725,3642,9512,5354,8200,1035,3190,6857,5029,8953,927,4472,8787,7277,5045,8855,3468,1281,7062,5057,3807,4029,4150,4417,808,6751,3374,6838,2237,7303,7506,4117,6342,6734,6499,804,5608,3042,4577,9891,9648,6609,7409,3598,3079,4132,4437,7257,9346,146,3236,7365,8444,3125,8530,1759,5523,7803,5134,6913,1120,3664,5275,5389,9856,7117,284,515,2562,5488,2582,3541,6542,594,194,8339,8523,8426,4043,4959,8354,1051,5533,1745,3625,2966,7839,6530,5344,9750,3928,3475,1879,5153,5945,6073,347,240,6966,4215,932,3457,2143,1765,1206,2655,9427,6841,8453,2815,866,6398,8000,5459,2281,7512,4868,3199,8615,5980,3405,1222,4090,3244,3962,8587,3716,3042,7989,9531,4255,9350,754,9010,4207,7297,7227,1204,6960,8953,8423,7813,3148,7849,1933,9919,9740,6903,1874,5223,8749,8443,219,7088,3144,6475,3677,2171,4032,663,6745,8303,4269,3545,1124,416,2700,1726,8300,5704,5445,847,3794,7295,5753,78,7260,961,8243,3552,296,4374,5667,2891,8380,4333,1646,1333,2882,4218,187,3711,7898,3445,6389,6560,9038,9212,253,6815,9055,2869,3496,2449,3205,5450,305,1873,3115,868,4767,411,8611,6321,9351,1256,7746,1519,4514,4708,1582,6249,9618,7140,8024,344,3249,5804,5305,3807,5260,5156,9072,6388,472,6913,9469,6007,9918,9392,4896,6667,803,5861,2301,8943,315,4834,2630,9495,750,4146,2273,4137,3598,6589,4746,1747,6246,3180,6410,5136,5961,7742,6819,9824,8114,2426,4489,2781,4991,8092,4545,355,7593,8999,7982,3562,9405,3683,2230,4905,8950,4199,1505,9381,8480,1824,1456,2801,9532,7401,5311,4394,4735,4810,4888,7960,4957,8280,2933,6859,6876,5676,6051,2508,366,5090,2603,2639,7826,9632,2087,2153,9885,4397,7612,1433,4045,2200,4892,587,7967,6465,8728,2360,4477,9175,9225,7755,516,5047,3259,1415,2769,729,8853,3728,9574,9119,4138,2300,1770,7356,1722,635,4826,7463,6572,7928,8046,8082,3520,9273,1057,5275,9244,5031,4196,1116,9357,9359,8404,218,6411,1007,4748,6813,7913,1923,6270,2172,1494,3931,6666,4652,7083,5896,9157,4329,8134,9557,8401,4672,4526,9317,7489,2041,6184,8689,4542,3584,6874,1362,9525,9574,4713,6240,5692,8583,4295,1646,5843,9574,3951,9253,9570,745,1691,7457,9255,9649,334,8773,9460,5265,8740,7293,5529,6400,8723,1851,3648,8964,346,510,8775,2027,3161,5210,9133,808,5941,1174,3083,1306,785,3552,6435,4567,1725,7753,5843,7570,4489,4483,3938,3991,6838,3526,9969,3900,1691,832,9318,6615,3380,9036,8737,2382,5134,8554,2419,6656,611,787,9198,2208,2779,2971,5507,9884,2857,5802,1951,9125,5020,6227,5327,6124,5037,2752,7075,3032,295,4720,8722,1552,9671,2458,5688,4618,7082,9433,3501,9709,8783,8908,5643,7784,8169,1578,9229,9895,9932,5481,2441,1270,164,3435,1453,1977,8569,5597,2019,8198,1501,5439,4923,5214,3366,6278,2117,2211,8962,6967,2075,5680,2377,2744,4840,8845,4622,4894,5124,2699,1943,9227,3637,6262,6733,2020,7869,7492,4049,6187,565,6765,9137,5115,9591,1281,6482,7968,1030,7936,1894,4567,9929,2682,2826,1275,6660,5052,5871,8777,1746,3235,7049,8056,3840,2108,244,3217,5529,1978,7660,5381,3895,1139,9376,6573,9194,7894,7300,1099,4615,6739,7451,1854,8748,9408,7592,5661,4037,444,489,5566,1612,3933,9444,2775,4661,407,8474,4861,1990,4155,1493,5582,1694,4965,4272,4001,5681,9163,7401,7439,7727,1336,2642,8400,1615,2049,3609,5195,6439,4136,6019,587,9336,198,7828,340,9983,4677,6449,8114,2573,9838,2403,8127,2689,3867,3219,3977,4893,5772,1046,9251,2094,6044,3366,4418,8105,8895,6033,3191,7319,4010,4090,7943,9023,6744,935,3719,828,9138,2836,6492,5180,6368,1196,4534,9392,7361,6402,8902,873,1217,5367,795,3556,3087,3460,373,4820,5405,6739,3019,3964,5193,7100,1375,2409,9642,6533,1329,3916,5777,275,8506,8834,4021,9149,1605,9530,1433,6956,882,4014,4748,1917,2100,6301,6517,82,700,6853,963,5339,3648,3376,717,1642,7243,8014,5383,7461,6497,7609,1298,9353,7340,9613,7763,7224,1789,3635,949,1566,9758,9922,5478,6496,4157,4028,5753,8185,7897,2443,3429,9676,8239,4600,6579,929,6733,7825,7276,6725,718,7054,1185,9756,7038,3127,3452,7426,3831,8373,7537,2803,6060,1837,3031,7873,2759,4895,4814,9062,7871,263,5628,2961,7156,9218,6938,3619,325,5049,6716,4526,2849,2499,9651,6885,325,8562,7980,47,7478,1175,3920,7928,9239,7519,9404,403,1130,2455,3220,2087,7598,7537,7760,682,1707,3795,6639,9714,6322,8899,6057,122,4192,7415,3295,8647,2675,703,9383,6827,6215,8796,9563,2283,6642,3890,6268,1737,2156,9165,3220,4807,7360,6052,8136,9553,9287,942,3457,3991,3744,9833,2565,5433,3494,9884,9712,4042,7365,446,6189,1167,7657,8539,2355,8092,4546,3457,2880,9381,7034,577,5656,3295,9213,1147,9273,1540,2512,9093,8814,9715,7697,5284,2496,4061,5758,8821,8030,6099,3515,8462,8376,1333,1632,5073,3297,3430,6985,106,1018,6046,8617,856,3976,5297,3437,9839,6334,7264,8193,907,7762,3946,4420,7438,5060,2355,2972,3125,2124,8748,582,5979,2324,3916,9537,4312,8414,3336,6763,7849,1512,9048,4918,5252,1893,1088,7608,7849,4103,9242,2025,4871,5632,8608,7466,3217,1377,704,1894,9767,1618,5468,3717,3995,4174,2087,3996,8887,6986,9574,172,8531,6122,9799,6876,3795,9176,5819,9284,6849,1088,6581,3697,3082,8071,8696,5427,3125,8455,4448,7218,6719,1810,905,3626,7957,2519,9755,9267,5362,2843,5448,3677,5864,3011,524,3017,2877,2335,2354,8740,8781,1592,8524,9017,9032,1826,1681,7242,7192,8266,6898,6833,3723,6204,5320,9971,3143,4121,7704,1485,2818,7400,540,8008,588,2848,7226,9750,1099,2346,9964,4424,7004,8879,9475,1524,3842,1026,8817,7147,7783,2520,5417,7056,1162,2531,3044,2737,6106,4622,7033,8519,7464,5960,7088,979,1914,2429,3456,6313,1199,5637,9981,7136,2670,9010,9263,4409,3432,4542,5563,8097,2979,3013,7148,7758,5318,3085,2125,249,2408,1946,430,730,2715,6889,3349,6923,7631,9854,6910,9248,8028,6779,4707,7544,1729,4277,8568,6030,1522,7048,4276,9618,4648,4808,7578,9278,8537,1102,9355,1262,9007,920,9015,8503,8205,7480,9854,9776,4509,327,9063,7747,362,6998,2389,9385,4770,2314,2712,4438,5382,8497,5103,4634,8822,5123,2675,8835,7998,6990,3549,886,6519,3536,4402,4982,8649,4084,3124,3260,3289,3314,3922,4615,4521,152,3305,468,123,987,125,2679,1047,387,5010,801,3988,5138,9620,3792,5947,4001,3982,6690,389,9310,5390,8194,4225,480,9851,462,9816,2650,6647,377,728,5999,676,9319,5462,8006,6002,901,1250,7915,3870,9404,2953,3373,5174,2744,3797,7604,4074,5373,346,3674,540,1826,4108,6279,2237,5239,7584,8874,3742,4717,5794,2174,9976,9786,7869,9574,2660,9911,19,1677,2712,3604,3996,9282,8102,9551,9102,9250,9155,5508,1565,5014,8359,6453,4206,5681,3013,2081,2659,362,6987,3135,2622,1079,7688,2663,8028,1652,1098,41,1218,1789,1417,6472,2886,6443,6409,3492,4484,1275,2458,3978,518,3941,6983,8485,3363,4526,2929,368,3408,3300,4654,3091,690,9422,5124,1519,8173,4799,8289,7558,2215,8607,7175,9863,9572,2822,4344,6649,342,4350,8449,4523,575,8399,2254,2590,704,3705,7485,549,2780,5558,2165,1683,9090,3604,8282,6565,355,3525,8312,3403,6988,716,1678,159,4864,2142,7174,7585,1161,4353,8620,8560,6883,6862,560,6969,8136,531,8673,4788,3785,4296,299,4809,4642,1058,8281,9844,4834,2980,6370,6496,2714,1053,2381,9694,9045,98,2086,2154,1146,6007,7252,5983,3758,5796,5330,1175,1673,347,2380,8191,3249,8552,5138,4431,9827,5564,5503,4199,7294,7905,4468,7439,8591,9994,432,9609,253,5365,2426,7735,5461,1629,5307,4140,7701,69,9901,2797,7612,3928,3246,4902,3800,5999,9599,7320,5923,8142,88,8699,7440,6560,2152,2563,3625,2350,2293,6462,3197,904,9172,5763,7295,9519,6182,4131,8548,7931,2809,1124,1739,7129,5478,2103,8214,1106,4155,4728,1533,346,1203,4193,6334,1937,5244,2941,3976,3956,3769,6226,1139,8671,5316,1128,2139,7084,6183,1627,3848,5462,8821,2548,6673,7821,519,8804,7497,6285,2528,9110,9937,3986,227,126,6360,6105,9875,4903,2229,435,1595,4610,8337,5438,8720,6128,9970,8501,5922,8018,5745,6622,9132,3229,5215,1026,9211,2402,3150,8529,7908,4255,3615,2309,2654,5812,9533,7826,7691,5398,9951,5633,3009,3959,151,9444,8832,6870,1035,7577,4577,8705,616,5446,6816,1368,5939,9113,993,5491,964,6718,6673,4714,192,5401,2041,1582,9824,6210,7267,8179,6300,4380,2399,9212,2862,9201,6922,9102,9623,147,4630,8272,1116,411,8272,2382,96,7854,146,2702,4135,5731,3827,3827,8920,518,73,5282,1598,3440,3990,3215,6112,1230,9130,4897,3388,4208,5680,1959,5905,9840,2117,8163,5452,6694,214,8236,1009,6535,4770,9516,9787,9567,9463,4992,9595,1653,1717,8933,9469,6273,9669,1578,4531,653,6105,8672,9896,2659,2444,2683,5512,2688,6451,8794,891,6463,37,1480,2839,7744,6697,8663,6638,5808,5439,7937,6099,9317,1210,1055,4711,8686,2336,9727,1384,1307,1244,895,4556,9496,7844,3920,9146,841,3984,7557,5018,7109,5563,4565,9097,9537,734,7610,6193,5758,1137,8593,582,4229,8000,6150,7830,2484,6325,9138,1234,7307,6696,6974,1067,3440,8908,3512,9072,6243,4687,42,1826,1341,7062,9645,9830,983,6360,3263,7259,156,2981,7096,4661,3888,8266,7951,8912,3280,1750,5432,9738,3586,305,7040,612,5563,9347,6645,1923,24,8637,3802,5312,2421,6966,1972,2259,6270,7625,7259,6669,8918,474,6604,5993,2048,2661,5543,4538,3029,5040,7248,7350,2610,8615,9410,3660,1061,1705,3120,5642,1053,2882,7806,555,6822,7006,5025,9306,3516,5917,7223,5245,5877,2867,4983,9759,2961,644,6670,136,490,9258,9660,22,2594,5630,4938,8795,1483,158,63,4608,384,1308,1509,9249,9192,7925,1164,1247,428,8111,931,819,870,9044,3400,5612,4750,7107,6392,294,8703,708,464,1816,6408,731,6710,920,9633,9635,7773,3809,3790,2151,2722,8832,9932,5308,536,7842,372,482,6882,6834,1362,5047,9355,828,8839,1098,1771,7753,6053,6041,7166,9677,8674,9312,1629,3003,8999,3003,9134,2257,3431,3795,1788,8829,7238,8857,8063,3044,1094,237,3930,9051,4606,1667,1017,1839,282,5165,752,6600,5416,1043,6590,5730,7311,9252,8385,2892,3526,7716,7762,6087,8556,70,3228,5034,5520,898,3408,1001,8704,4851,4247,1610,1248,9579,5868,8143,2905,9,6975,6994,2147,9639,9456,3362,1618,9154,8519,1241,6773,7679,8838,9004,2485,9211,1459,5901,2215,5748,8735,2153,5408,8559,8545,7949,1096,3608,1796,3869,4950,2892,3701,8701,9403,5834,3163,9525,8595,3512,1219,3181,3921,6597,2061,2929,7872,8293,5770,5222,8507,3618,9196,7727,6296,7339,525,5441,2996,1316,7893,6827,7381,3122,490,3236,8438,1579,5754,95,3041,6065,7821,6907,6319,305,1014,6832,6617,5530,6921,5644,2776,1887,259,9196,5123,2667,9573,2910,4502,4813,3435,7926,2963,8150,2212,3510,4731,7722,8262,1955,133,4465,811,7084,4557,341,2250,3504,4120,9465,2675,7152,4590,6078,9671,1667,6808,563,3050,6055,3438,9971,7579,4347,950,4232,9594,936,5136,9727,4424,7140,6589,8582,985,8618,2125,1585,6292,8992,8654,1985,4735,5907,6831,149,1653,8449,985,8286,4656,7095,4889,3082,6325,2500,2042,2495,2392,2589,8772,7469,9434,4047,472,6988,7889,6070,5481,9065,1874,8824,1417,7635,4567,1037,8839,7580,396,4169,1577,3472,8038,8226,7991,6368,878,6398,8842,2836,7262,9483,8880,7757,5822,7398,9173,9518,2063,2173,4039,6463,5130,1059,1928,4999,7384,5943,7202,8201,3804,3838,3795,1788,5755,1955,4041,6625,5581,3368,5614,8416,5296,6677,100,532,9254,2971,2621,2480,9984,7431,7884,9676,2633,7487,7726,6656,9169,9390,4992,2215,3519,3333,1179,1373,7892,5173,8015,8303,5338,6265,6955,3039,6218,3767,745,3442,9536,8879,6309,7723,7843,272,4357,9658,9474,3163,4349,2446,9525,9981,148,11,9044,9270,5970,1327,225,5258,7484,3070,3643,8260,3519,1453,6996,7623,6665,7450,98,3181,4064,8432,9825,2304,7508,5732,8802,3805,3812,6340,8389,3268,1258,6976,5382,6527,451,7495,2453,7752,5446,8733,608,9388,9589,6265,5715,5024,972,6213,2766,2002,8365,4408,6955,4679,4821,4821,8461,818,3674,2333,6226,1645,4604,7488,1722,5672,8374,9308,3561,3125,6692,8384,5061,8287,823,1880,2102,8660,2509,9887,8174,9186,5878,1092,2805,2491,3399,4003,5840,4107,1512,6267,3674,9084,1918,9058,5864,8912,8313,4887,409,9158,5630,2140,2108,1325,7136,4354,8495,5147,5517,4090,6681,8532,3344,2343,819,9231,2380,6620,4866,2280,8058,725,7438,791,135,6706,4771,6485,3339,6753,4939,3114,6204,5133,3786,8574,3676,9634,4096,5312,477,453,1221,9724,1485,7173,2020,999,4474,6608,7619,9139,9544,4730,1010,1480,4142,3627,5859,9208,5850,329,6251,8584,4967,2213,6535,3106,746,2946,4828,9498,7465,5349,1109,1507,1396,1533,8326,9158,7230,1726,1236,5581,9820,534,6063,7194,7872,8770,1513,2889,2597,3850,6482,257,8851,3932,7736,1663,2112,6125,5713,2803,8647,2261,2264,9537,1178,6158,1507,4659,8994,5685,7504,130,9927,5263,4409,2992,8669,5184,2109,7905,1445,4994,1698,2165,6716,3066,5291,7484,8404,342,9848,2041,9517,5492,6292,5698,478,2963,2002,6639,7388,7731,5754,4155,3725,2064,6875,880,512,7801,8394,9822,4903,7932,9956,967,7793,1835,5075,7027,7676,8251,3426,2522,600,230,4303,6066,9163,7397,8546,4064,8567,4601,4827,7900,2975,1863,4905,6624,15,4578,7896,1279,6109,51,2148,5695,8555,4769,5586,1739,2423,1060,2112,411,1502,4624,7262,6496,2464,7037,857,7251,9573,6934,2414,5195,7824,5681,376,1347,2988,7337,5593,3684,7156,3172,7312,2173,7331,5562,2489,5093,5464,4006,7057,2522,9719,3941,8454,9344,6571,2872,9482,6922,3357,3902,7201,6530,1179,378,6919,88,6889,8431,7261,9554,6204,685,128,922,5846,1458,1300,3355,1713,1942,8808,4500,2023,9921,2656,212,7850,9242,7294,4077,4376,4789,1265,3343,1164,4172,3765,3234,3197,1265,5645,3013,7274,349,4062,6051,4355,5278,3452,2532,2988,3046,9911,1657,477,1000,6814,7747,7672,1594,93,5257,217,2634,8427,1084,7754,6416,4834,4034,3447,4308,1486,837,9370,2627,8269,2310,5841,9763,4069,5384,1547,3703,1794,6832,9077,989,4554,7831,3067,5802,5296,9488,7985,8780,1334,7982,7293,8794,1176,4389,3542,2626,2839,3278,2898,2614,3092,333,6432,3060,5529,8338,1248,707,9581,8423,4661,7365,6337,5163,6613,3941,9166,5133,8836,852,7926,3341,3273,339,6093,2703,633,7343,3150,3716,5275,6177,7586,4135,1343,8201,2177,7915,1741,3195,5710,9659,1404,3758,320,8169,9393,6435,2387,3485,9027,848,3277,4624,3417,8365,2913,8774,2039,3076,8325,2438,4790,3156,4131,9739,2315,9868,8598,2840,2929,8320,4448,2578,4994,9670,4149,767,4483,7392,4600,2420,5106,7760,4948,1471,529,9299,4395,2438,3966,9303,5102,3500,8355,8673,8619,3255,881,6119,9936,165,7817,4680,7370,6668,9690,8906,7218,2966,4102,3032,1259,4825,8761,2789,7443,5712,6655,4924,9116,834,479,6518,1933,8588,4516,1821,3747,4098,4202,448,6545,8439,2821,8453,5802,985,2121,8131,5315,1324,6483,8711,452,1031,1128,2226,963,7660,8683,9521,2662,1935,4161,7066,5124,5426,9166,3609,5588,8305,9981,2000,1699,291,9091,7212,8573,8609,1443,6297,1907,4189,6488,9871,8918,7444,4175,2274,5345,890,2987,2246,1475,7446,5629,5958,6488,7632,9187,646,7400,5815,1323,421,6092,5959,20,3836,2747,6717,2709,6648,8745,9150,336,118,5418,2765,3885,7690,582,3513,5261,2692,9268,7096,5917,9559,1484,565,625,1907,5449,3596,9775,3871,1603,8365,7057,8150,6531,8315,2340,4363,6665,7899,1890,3261,8371,2790,9664,9354,5193,4570,5576,4417,2199,232,6922,9246,3232,2020,4779,7562,9464,165,3868,8388,4028,6685,6961,1417,2847,3148,9173,7577,5369,8733,44,123,581,7928,4162,1646,6963,9190,2445,1304,5779,894,3123,4968,2207,6613,8881,3448,8857,538,2210,570,8435,8961,6768,3930,7992,7928,6690,7717,3451,9625,6127,8157,2162,1634,341,6535,9366,4288,7723,8540,4390,5501,89,4925,6719,302,8659,4397,7114,8443,6913,5263,1581,3067,2977,8760,9765,3964,2398,7298,5162,5004,496,5008,3669,6757,4159,7510,6075,393,1928,9754,9388,1787,8063,1786,6270,801,7821,7425,272,4023,3429,1492,6148,2024,4418,8424,7018,5478,2338,9681,7583,1025,3699,4940,7590,3887,1655,5168,7355,2282,7231,6783,8375,4562,8492,5835,9117,2859,5726,1252,1042,6457,5798,5999,801,1755,2000,8647,3210,6927,3203,5512,3199,1577,8685,4542,2405,7560,2074,4487,4109,2428,3067,5304,7316,6296,846,1373,3348,6646,7217,2500,3251,5617,8788,857,319,7428,6383,4345,6711,1414,5666,9256,1922,1607,180,5665,4730,1812,4363,7692,7014,1221,1374,3243,2639,1309,9668,8597,9801,6072,7032,7546,3391,7060,2510,9392,838,4955,2439,7034,8523,5086,6322,2847,7456,6488,8355,8530,1377,7078,5045,738,8682,4118,172,755,6125,5505,2382,907,8648,6799,3127,905,2686,5013,7312,95,6559,6553,9608,7864,8875,1928,7711,2078,9546,1385,149,6358,5160,5230,8489,9632,4624,4681,6448,4949,2127,4298,5589,2611,2162,3359,4655,2649,2973,3153,2529,791,5489,1272,960,9238,1810,8934,9387,811,437,5031,9333,1945,8514,4151,2361,816,9987,3106,2788,8119,7070,3580,2488,7147,1700,2584,5636,4560,2003,4304,2257,4017,1245,5704,8249,2166,3060,1524,3507,1580,4048,316,733,5775,8037,9772,8719,8977,2871,4444,5947,506,7153,522,3026,4703,6996,6267,7629,2673,236,2866,637,601,6562,8454,7198,2781,9158,4086,1842,2043,6128,3080,542,5483,1304,4124,9438,9023,1569,6083,8027,1391,8893,4064,5121,5462,5376,862,6091,3325,7938,5234,3581,6657,559,4787,1193,725,364,7765,6316,5081,1119,6717,27,5565,1586,6529,4133,5310,4165,4779,7538,6420,9602,1881,1670,6369,6292,8904,7711,6571,2173,2284,2888,2880,6407,5630,2796,606,2081,3194,5394,808,7104,2533,3259,2958,6250,1356,6271,2802,1184,3534,4975,1321,8854,6886,3931,9158,1382,2555,6654,692,7137,4984,4347,4025,7660,3781,6552,542,5004,5627,4123,8425,1964,7416,5774,2412,8424,904,7886,2481,3711,9191,1710,8127,2441,1081,2195,8021,5840,5107,1230,53,9513,5091,8939,1090,3489,8499,3798,4235,1721,2374,8166,9651,6568,260,642,4135,5647,8405,4225,168,4355,9224,3849,3525,5482,8123,1449,9191,1462,9813,9756,8296,3879,9551,7264,7440,7191,8284,7330,9777,2323,379,6403,3518,3555,6117,9142,4030,2321,5352,443,6114,6172,7890,8109,6678,2231,7525,4797,1929,6364,1277,4610,5076,10,5579,464,3010,132,5016,1846,8549,1583,9341,1078,4540,3582,9102,6068,4862,4490,4405,7283,631,4954,6358,9256,5455,4654,8292,7597,9871,7326,6245,5037,8533,957,5430,7112,5872,4212,7417,4055,5315,6877,3110,2334,663,8045,1599,4028,4872,4112,8920,6104,2025,5893,4669,7733,175,6598,6721,4488,7315,4652,6909,4172,9465,8998,8483,5790,9384,96,6029,6998,6909,5559,7341,1074,1331,6116,2126,4316,639,1557,9338,7614,4878,7652,4043,6166,7036,8710,6230,7032,759,3042,551,6161,5931,881,6658,284,3233,3797,6764,7100,8448,3664,9131,5200,4269,466,3634,8206,5296,5834,5976,421,7394,8013,6726,1657,4991,7677,328,8402,2157,389,1350,6186,4934,6579,8378,7846,6736,1383,1511,5457,1206,750,8892,3160,5681,4213,3574,1508,7403,2658,8095,6317,4424,3415,5088,1986,8384,9743,5970,8859,582,3598,5138,7751,1164,1011,6329,7124,1814,6251,8286,4143,8433,7339,4504,9907,399,6544,7795,3339,120,6656,3730,7671,7311,105,4325,4837,8526,7689,1703,4724,3416,9672,597,5395,3773,5722,7966,8945,7007,4325,8513,6771,4378,5610,1808,9850,483,4025,8573,1290,2165,1914,1193,7825,4693,8302,9377,5793,7614,5996,7117,3914,471,2266,5433,6951,6469,3132,5590,4332,2701,4675,5872,4052,4546,2623,2619,5061,1589,8736,1642,911,9134,7957,9917,471,560,8312,6428,7019,2373,3605,8548,2552,9922,6983,6591,2789,2262,1658,5859,53,9592,5284,1212,8888,8554,3289,3831,7191,2857,7911,5108,950,745,7367,599,5266,2152,7571,8908,6708,7504,975,590,5564,8062,5717,5894,9419,2932,1295,4402,4123,584,175,1987,3640,6025,64,3360,5025,454,5651,4452,5614,4401,5991,2515,8580,2930,7371,4214,6075,6897,6780,2528,7179,9451,5931,4765,584,2586,9672,9086,9905,8430,9794,6644,955,8649,9612,2501,7224,1250,5276,3031,5933,3949,579,9048,1370,9335,7737,8530,2884,3687,7116,2094,5498,2359,5566,3076,1359,8523,3592,6637,7958,7412,5268,1586,6018,1237,1544,6999,8479,6183,4977,9321,7133,7704,8670,1940,1092,1696,6619,3594,6242,7899,7024,6028,7627,5517,5021,3326,379,8773,3729,7029,5429,324,1790,8309,9750,6084,7561,6650,5906,5230,3953,3807,6034,8627,5121,8440,9264,5406,5416,3031,5240,4428,2794,9524,6916,8390,5026,4231,8977,9598,8927,8443,7107,9454,2438,726,5006,6882,7974,3904,6650,1547,4935,9843,7102,3133,5670,1335,962,6223,8059,8332,9021,1004,279,1141,8870,1995,3733,4178,1523,1187,7160,8415,7800,3709,1096,1148,2105,8883,6725,3622,7945,2410,4036,4170,7467,3341,891,5407,1718,5495,4454,3849,1544,7805,2070,9056,4451,4240,5612,2561,7467,2725,5378,1051,2670,5030,2831,4134,1196,2541,3658,2454,2086,1698,2934,9192,4807,2308,1821,7968,7619,6789,4340,3746,1461,7938,2777,7121,5900,6589,700,5407,1848,3386,2789,3974,3645,1014,768,9736,6427,9392,1539,1538,45,9294,7143,5384,840,5875,6600,1157,5381,5620,1299,3298,1977,3939,9469,4356,763,4491,7324,1309,312,5374,6283,4,1662,6180,9360,5024,8739,6917,2086,7077,7574,6901,4595,1928,5774,2374,2733,9544,7821,2104,8003,8054,3247,6312,9478,1428,1562,525,2238,4637,7486,417,9566,5474,830,4053,3561,5472,4826,3168,9615,7306,6999,3762,9975,5415,7634,3979,9907,538,4666,6767,2482,7807,1630,2441,4462,967,8828,9516,2673,1428,2577,8881,7534,9303,1339,2318,7931,6392,9810,9372,457,9589,5704,7605,6482,7624,3709,8047,6155,6449,7996,4874,114,4953,1223,8788,3612,1247,9074,9564,1294,7864,8510,3226,6704,8273,8208,1563,5745,5668,5995,535,6819,1892,8195,947,8085,3558,2334,3599,4399,5064,8820,1580,7577,1955,3659,8381,7382,8329,8287,2198,6099,730,7864,8371,6253,6016,9352,1174,3153,5867,8567,3278,2660,6576,4999,5724,5989,2280,8232,1232,7887,1986,1809,2153,9463,5509,1361,5193,9887,2251,8204,6198,9342,2751,1249,6978,6391,1765,8512,1895,9611,4827,7016,6425,5625,7504,4479,1885,5372,4019,995,6969,9409,5059,2487,8288,3216,1935,7550,7999,6078,7187,3423,5628,1115,7084,6029,417,9318,1111,5506,6324,2902,5168,7238,8479,9936,8888,448,3640,2980,9294,7487,6837,4861,7626,5484,5790,5465,4869,2735,7547,932,8429,6549,1887,6181,4969,2171,5853,3538,3513,7736,8864,1310,9914,5390,4157,2814,938,2096,7119,854,5791,823,9842,9895,5819,1738,2266,5180,3141,9195,9979,404,1969,5416,3546,7068,8159,1043,7016,4538,9369,8509,7337,1520,2923,3489,5331,9846,6594,9480,2645,1923,6677,3969,8873,8422,3629,5896,4781,7577,9840,5711,8407,4535,5158,650,6138,5343,5187,3708,7404,8235,3340,454,2811,5913,8901,4265,4020,4479,8747,3102,6115,6450,940,5781,8668,8006,2490,7869,9077,1891,8818,5844,4292,2381,9597,41,3419,3430,2886,9385,7586,1877,2018,6541,4898,9430,6972,9954,3402,6610,2906,9965,3421,9147,6768,1704,8028,4023,3292,3780,3196,6508,5583,1618,5699,3313,3976,9319,7211,5131,8610,8642,7515,2618,4898,7431,5275,1233,717,3742,5961,3891,1328,1189,4433,6356,4417,7004,8965,4713,4763,4085,2046,3532,6515,2518,4248,197,2407,5324,2888,2596,25,8980,1680,7193,4679,2771,9127,2415,1709,1526,8035,7786,1380,2459,9239,9960,6006,5054,738,7586,5618,7616,6682,1246,8762,3648,1483,7999,3931,8110,9080,1188,3719,4915,8319,2736,1418,9358,2764,5740,7341,2637,9237,3819,8405,7715,9713,2302,3896,8770,9740,4031,6109,7567,1199,6370,2413,8066,6570,1103,5334,1722,2031,8098,9651,1172,5319,6921,9741,6062,2918,1760,8725,9107,2070,8021,1492,5047,6653,8102,1199,5427,8316,2023,6245,5195,8077,3206,9867,1200,3099,4141,570,6161,9764,6830,2164,9141,869,5714,8802,4225,9695,7263,4051,8983,2504,5566,7785,9285,2062,1757,9232,4558,3497,3814,2232,5037,4588,3572,4361,4842,9172,5188,4945,7925,8391,308,3717,2951,8489,8440,1084,2925,2348,1161,8442,4135,5972,1026,4074,6770,4583,696,727,5603,4330,9233,7797,2118,1137,1660,8868,1639,8944,4683,5774,8667,3772,696,59,7020,859,4498,9779,9106,7899,6007,7534,8598,6846,8439,5697,7509,9068,5275,6595,8332,6543,4474,7049,2962,6712,2533,3288,8812,568,8775,9236,480,9797,3122,8377,2281,5196,2873,1677,1499,1591,7402,2737,2214,6052,6991,8715,330,1130,9759,3815,3415,488,2571,3668,9611,1349,7171,8504,7693,1035,7408,8074,8622,1815,7373,6982,9621,4096,8342,8775,787,2054,4114,2007,1533,9511,9498,5939,8468,8925,4320,9819,5997,5649,2775,6482,22,3305,4594,8718,6766,3575,9209,6165,3172,9429,448,6662,8242,2955,2854,4466,5720,6726,1186,628,8408,8135,3104,5071,1813,4251,1679,4969,4955,3999,6498,5409,3374,5853,5217,1769,2586,1675,3235,8734,7006,5363,9932,3114,1308,6498,7732,4730,5034,7179,7659,6371,6333,7406,9537,1576,7214,4177,7673,4912,7424,1506,5047,2205,5021,3509,3900,8705,3705,5509,7467,9360,1308,2446,2278,6372,2178,5258,269,5441,1179,4471,2264,794,1265,2649,7311,90,1780,2964,6376,8816,8535,8933,5600,8611,446,5505,1026,4875,1250,4315,4781,6354,951,2272,561,8663,7187,3403,8068,3844,1008,6204,3294,6151,9027,4027,3114,9448,8238,6299,2152,9540,1207,1831,4601,4187,6553,8262,6361,3533,9000,4838,8001,224,7895,312,5297,7729,5095,4529,7700,1326,7297,3660,876,9559,5728,2612,5805,9499,2146,11,5882,7738,9478,878,1173,7408,2836,1837,5316,333,6569,2573,7203,2670,436,250,4678,3443,6413,7995,8641,9042,5709,9048,9268,1074,2721,7460,629,3447,7852,4345,6150,7988,3351,70,1102,6371,1119,8565,2420,3266,4428,7174,8281,9006,797,8643,830,4619,4999,4155,8459,6369,8469,8024,2567,4432,4273,6404,9548,9209,3414,4164,858,4622,4547,2073,2644,5681,7315,6894,2292,2095,9432,5420,3758,7968,2556,8685,5755,9152,9878,2962,1075,4738,7075,4493,3635,730,8716,1343,4344,865,7572,3016,907,8744,4864,7770,9494,880,6440,7437,518,4795,9213,3754,2060,4334,3753,3393,8952,8948,6863,5580,3756,183,3173,9326,323,9401,5064,3675,8771,2538,820,5208,2691,1052,7427,7013,5359,16,7040,8142,1040,6629,690,2626,405,6993,5953,7994,4994,7183,9764,4386,3688,3153,4195,1060,5910,3013,2777,2027,6393,4587,9890,4743,6639,2300,182,9508,9506,720,7042,2860,5367,3661,817,1879,2442,2500,4578,3150,6721,6535,2227,6515,2201,7806,8744,1514,3234,7522,6256,7943,792,1557,4282,1504,3949,1092,5940,1340,7037,2535,49,4778,6752,5357,7076,9624,8519,6619,6169,5980,9166,2517,8803,4786,6162,4499,98,1509,6708,5466,9867,6504,1748,1717,2987,305,2588,2608,9904,8266,6403,9925,8135,1198,7544,9847,3232,1101,5698,5399,976,7307,9624,6421,9551,9649,6406,4828,7930,8221,2242,9001,7298,825,9937,9267,9329,7315,9492,216,9118,5438,5990,8906,9906,8089,3766,613,3318,9516,2407,556,5574,7186,585,7033,1010,3812,9153,6146,6777,4051,3608,8180,82,2640,3122,9315,866,1291,7480,8899,2437,8440,4964,7613,7945,3966,8393,1620,9953,675,1093,5314,8566,3730,35,9047,2932,655,5998,4814,4137,322,9893,1007,3831,7978,4476,163,5542,9231,9600,956,340,1183,3704,8184,4637,7088,7345,3115,5103,8098,2818,1065,1927,5190,2431,1145,3363,125,1143,6534,8140,5458,5568,9403,4846,8021,854,4271,3922,9159,6942,2824,5555,4304,3941,4531,2675,898,9749,4086,8736,3385,5725,8430,9668,9637,3418,6913,4154,3706,241,4538,6920,4828,1958,5425,9292,5806,1078,316,6835,894,8446,6759,142,8357,3106,9141,8024,7268,951,2855,8958,5940,910,7538,6374,1317,7305,526,8932,7411,1774,4716,5414,4005,1380,6259,6166,1940,2334,8151,6570,6928,6835,8862,6323,9508,4875,1209,5969,9677,8049,1082,742,2354,1392,3243,1813,4082,1140,4877,1680,1720,7919,6826,4679,1452,2904,4471,1032,4807,9233,1010,73,7410,4706,3037,9513,7364,1057,802,2935,9467,5145,8814,9691,4516,377,9875,6321,5337,4993,6283,6072,4628,4956,325,3942,3765,87,7106,7650,1393,2456,3683,8896,3310,5373,2104,4624,5154,5271,159,5619,7983,7159,3602,5953,8898,7668,1404,1616,2976,3666,8683,1071,4288,1745,6215,6771,9619,5465,7755,3953,4819,2707,4230,8590,143,2120,558,210,9802,3532,9899,655,7044,2801,2462,5566,2767,4804,1264,9935,3340,1243,267,4120,3129,8881,8240,4129,8118,6763,3216,1464,1682,7237,7278,8778,9382,5623,8625,407,6301,5644,9344,3042,9651,97,3630,3965,3017,2972,368,6843,8048,2286,4386,4331,7112,5565,9137,7597,175,2114,6479,9383,133,818,7339,3418,3703,8993,7619,2968,1661,3998,2711,5683,335,75,4929,1282,1736,1247,2786,7930,2136,2606,2777,3571,7705,2203,7827,3968,1911,4607,4391,536,3220,5629,6378,2338,146,1476,9989,4167,9270,1613,4590,2333,1454,3894,2649,1493,6922,8200,2533,4642,737,7170,8434,204,7621,2892,4102,6580,3469,6586,6277,288,3909,3616,3449,6086,5132,8902,4009,354,1698,3886,3022,9426,4230,1004,3928,5661,7607,2092,3471,4569,3809,3516,5514,1890,9473,156,8843,7600,2869,7155,8754,27,4631,5844,5888,5650,8410,752,5624,1999,448,9798,3858,7947,254,1115,2568,7001,3030,1117,7244,4175,6983,3156,4603,8861,8095,1245,5472,5326,3275,9783,8792,8199,4012,6066,6072,1898,9230,5566,6308,8980,7845,7748,9083,5467,2784,9469,3012,7916,9340,3455,8759,202,7352,7259,2172,7142,995,897,1726,7280,2487,7989,7347,9432,7965,7256,8460,3266,9511,7461,2312,2345,751,9544,1158,8582,395,3586,8801,9123,4856,4045,1997,6172,68,9315,8847,6147,726,8383,1666,5268,5454,2989,7520,379,3724,6132,9820,188,6484,9296,5335,7719,3961,7638,153,8717,9719,4095,3432,1020,9710,5527,2318,1463,9452,8463,5547,6068,633,7917,1444,9109,4173,3837,2541,5222,7055,5024,4139,3406,9001,5220,3862,6769,867,9360,9430,7142,2152,4324,7587,9751,7697,4909,3980,7102,1158,7012,5063,124,9748,7926,4402,1321,4145,3472,4852,9928,3101,1535,5105,138,3918,8063,4140,483,1857,7800,1141,8190,1296,5231,6651,3050,679,6931,6044,7412,5638,477,9879,4970,1130,5437,9414,141,5806,2875,8720,9064,1897,5312,4534,5640,5758,6689,4189,808,3073,5929,1270,289,2440,5108,8663,828,1961,3084,3884,1758,5542,6555,6119,6403,5345,1782,6075,2152,2631,7663,23,6949,6108,4157,7177,2017,3893,2228,7335,348,3720,3571,2187,7487,8402,3870,5901,8701,7423,5173,5587,859,8162,9268,5906,2900,493,2556,9227,7841,463,4241,2388,3895,9697,9592,1769,1964,9161,9514,2084,805,6277,1489,6878,8928,8025,4131,980,5403,3141,8190,4251,1486,2279,4769,2312,9345,1245,3560,667,7361,1627,9941,659,4167,1764,1265,9097,3629,992,6389,1904,8871,3237,4593,2729,9338,637,2651,7876,9568,2712,9100,6640,1107,146,5953,6381,6593,590,1198,7558,3677,1298,1769,5669,5057,2866,649,19,4789,5452,1918,2397,6464,4009,8718,1449,9213,8548,2967,626,4097,2877,2358,6882,8438,4153,9905,9230,6327,9399,5454,4364,8111,5067,7715,853,2405,2143,1914,1690,8449,4681,7586,6890,8975,3276,419,9336,7064,901,2889,8205,881,2451,7856,3390,3149,4819,968,1438,3441,4398,224,9357,224,7849,6865,8387,4533,4412,4494,201,5295,5753,3623,7769,9898,72,7034,5055,3365,6135,1141,5015,3996,7237,7155,3669,1142,2542,1407,3258,1188,8936,9156,6163,3393,6551,4529,5927,8260,8251,9765,8780,8278,496,6040,6483,63,2664,4571,5729,1563,7021,9022,1198,4428,5156,6717,5372,9879,4072,5563,7704,6857,3398,2481,8727,8654,7175,6735,5839,7886,9391,1610,1693,1789,6770,416,661,2033,678,4496,6504,5870,8916,2366,119,2445,5750,1831,7844,5553,9191,7397,9056,5376,8237,8028,2978,4722,5696,6883,7850,7417,3638,6121,9409,7439,5805,3112,1179,9415,5890,1742,4208,7534,85,614,5114,2156,5573,5304,2920,6359,3713,3477,936,1508,6542,5462,4540,5662,9589,885,2954,9613,1490,2659,7724,354,4325,7515,3251,8498,5615,7590,5931,9147,4785,7647,7738,7561,5068,1929,6046,9781,4880,1186,6789,7203,3402,7571,5406,1432,3221,4410,880,2894,622,8569,2312,7039,5508,8806,5300,2521,3301,5238,5801,7625,9877,4510,3840,3878,6560,7581,5128,9019,6447,5566,8463,1351,829,9778,5955,304,4232,4306,1277,9005,4726,2715,9701,887,9348,8680,4886,3458,6270,5534,3081,6783,1782,1606,8123,2398,1629,8894,4583,6593,6664,372,2050,7155,2601,9971,654,839,9660,5978,2177,2007,1708,564,5738,9098,8333,8892,2150,8698,1416,201,8303,199,7632,9552,3073,3385,2749,9513,5043,1221,7381,4854,1410,1088,6176,5957,123,481,3661,9788,5866,2082,501,8956,5845,4775,5651,829,4253,3050,9303,2938,5587,9148,4545,9319,1838,1357,3917,3256,4340,2105,9987,4892,645,6851,9098,5126,9516,4516,246,4799,1977,2225,7591,2255,2520,5844,5673,2810,1416,2172,6661,219,1720,8620,5414,1524,5123,9425,8267,8842,5475,2306,6569,2886,3606,3358,2377,304,4290,3598,2632,2114,4355,2545,1875,1461,8716,1502,1432,5469,6158,7692,6452,9790,9300,6616,6698,3522,1534,3175,3168,5907,2430,4070,794,508,2481,9184,1236,8313,5192,3715,8771,5741,6734,2293,5280,2197,1460,3130,6337,8160,6194,3880,4355,3965,9695,3933,2147,9493,3788,1175,6038,9876,5816,7988,9359,7924,9006,5424,9342,3605,5045,6969,2484,8810,6073,9701,9545,9955,9838,9099,7498,902,9875,2656,255,83,7577,5317,9702,9375,9458,8318,3038,8251,5147,8011,312,4316,7754,9873,4950,6436,4714,4370,3849,146,7550,7703,4467,1573,6371,6121,2788,2553,7917,100,8411,2761,4224,8883,4492,7860,9157,3980,1473,9882,9122,4221,3276,3697,3503,2849,9137,5411,9674,2291,875,9064,6006,4758,9503,758,649,3414,2853,4903,3883,5510,6258,9975,553,3726,1746,7822,1136,9713,4040,9322,3651,5425,1126,1265,4426,6588,2780,352,7900,1140,9097,6295,9647,7797,4986,8882,6810,1896,4212,2970,4088,8744,1130,3232,6158,7708,6098,6251,5684,5400,9414,6549,1983,503,1601,9530,4262,8443,7395,1633,2227,7982,865,5311,5100,1024,8099,5093,2335,2473,562,4017,4398,4771,2932,5906,2181,231,1605,5767,5823,7084,110,2458,7227,6572,5061,4219,7873,6291,3009,1363,2123,4343,5151,9816,6091,3349,8284,2781,1626,9265,3011,6015,5387,9718,3324,822,9819,649,5180,5220,23,3446,20,9714,9546,9292,3798,2893,4578,4859,2058,5410,4140,554,230,9679,4396,3953,1924,9552,1603,1022,8807,3220,5962,1788,7890,9293,2935,964,4803,401,8094,5066,3460,2855,1136,3287,6461,5178,6089,5317,9380,7251,952,5386,5933,7931,8834,2454,7210,1758,1562,3281,1976,2556,3372,6935,6474,2998,2450,9961,1671,2858,2211,7316,7098,927,5264,2401,9574,1431,1989,6937,63,21,8075,2692,4238,9999,4343,7664,8740,1484,8302,307,4266,8059,3987,9792,4625,229,4082,5610,2296,9129,8984,854,6792,873,8199,9669,7829,1607,2719,6111,794,6046,7515,6820,263,3641,4506,6457,1409,5766,9486,5124,9010,8589,3951,2258,8492,8471,6948,3231,5802,3326,9976,8259,2439,7855,9645,8133,9719,3968,7859,5902,3619,468,9176,9530,9667,2371,9988,8298,8445,7369,9226,5512,7101,1071,2601,5867,1484,5681,2248,3554,5952,8657,2694,6113,4753,8126,8975,1528,6434,9191,7882,8085,8784,7373,8451,5210,6537,6149,4449,5035,8425,9263,9263,9045,7605,3514,3302,8413,3947,774,8066,5216,9532,1509,6965,7313,2300,8386,5442,3655,2823,3300,8438,4843,3238,1613,382,6410,783,535,3804,5405,3324,7961,2486,2231,9335,2154,2517,7118,6810,8159,7906,8372,3504,9034,4772,386,2742,6096,7478,6741,9642,2549,7623,3109,7163,746,1942,526,6416,844,9992,9293,9983,8078,1406,1537,2904,2242,3510,990,1821,8960,7964,6992,4390,2605,9616,2409,5119,3407,9839,6124,6449,8713,4193,9332,2951,7995,7070,8384,2255,4173,1172,7497,7520,5951,8511,1447,1092,9419,7728,1117,6866,5791,9760,9072,4157,8888,9715,6231,4069,4968,5507,9401,9088,8855,1943,9437,2075,5699,9486,3280,9820,2558,1964,6152,5754,159,4710,7564,1519,3392,6355,8934,4411,6900,7916,1199,2531,690,7999,2966,3996,953,530,5965,3655,2747,2828,9472,880,8375,5304,5289,3854,8322,9699,3194,5878,4284,3070,8015,2973,6414,586,7785,7841,5576,275,2978,3393,8398,9934,8333,1307,382,4502,7576,922,2452,4630,7775,9041,2222,3192,3542,9341,6238,8169,7479,8792,2457,9671,2093,3675,8300,2358,9081,3430,5390,5612,476,5344,2763,6218,3419,3380,8906,3121,186,6215,7191,4002,4789,5701,87,818,235,6395,7984,3484,9621,6938,2841,5822,9334,9037,7273,859,3920,7070,9163,4543,6749,9966,4261,1152,3289,6545,8693,6660,6938,4710,8880,876,9047,2870,860,1303,3226,2506,7909,8208,827,8378,3335,1737,986,6697,4568,3431,953,5320,8356,151,8180,6137,6366,5143,5563,2024,4899,5605,3615,2642,9412,6517,2105,9464,308,5240,4582,9571,370,4292,3048,3950,1652,7974,2970,7199,267,4917,5021,2986,2812,8149,4417,8433,3797,511,2261,2664,15,469,8616,5372,4352,8486,2205,1046,8111,5055,9988,3154,3719,3614,2294,2808,523,9398,5085,3418,6621,5143,7384,6728,1614,8049,9827,6809,2591,7487,3929,7748,7490,6297,1969,5556,8586,7191,9187,1409,4132,5497,3634,4172,3546,7205,1825,363,1437,5278,3498,4920,9086,2226,6464,6793,6843,1305,8268,7126,4295,9711,2424,3202,9235,4714,1323,8630,5435,3486,878,8297,8347,1451,9267,3088,6560,2243,7773,7697,9454,4976,2432,3548,95,6803,6005,9765,9221,1999,9971,8928,3639,7345,7785,5212,3,4953,4565,232,306,9581,4526,2370,394,5010,1744,9896,6427,8754,9843,8468,4722,9392,3783,3768,9772,8916,8331,9748,9611,1058,2360,6123,2395,9748,2546,7406,7280,4249,4938,9187,4331,974,254,6226,4374,6847,1219,3031,1342,3238,2092,7439,2033,5758,1199,7743,8312,1276,5219,1875,9395,2783,8610,2591,9427,9462,9799,762,5929,4585,7174,491,5690,3373,5818,5754,648,7622,1162,2949,2889,2302,8891,1654,3926,3459,8859,379,3302,2863,8426,3392,7636,3135,183,2401,3849,6417,7769,5111,9225,5553,5901,2658,488,3935,9362,9610,5642,5496,5424,2008,5676,3121,4802,1501,3618,3433,5045,4720,4203,1630,3429,789,5006,9292,9268,8475,4901,3495,9129,6173,4308,9344,1414,3662,9973,4837,444,7348,6881,1034,3985,3637,6203,5943,7484,522,3239,6593,9265,968,9068,6755,7704,6268,2580,2565,8573,5657,361,1634,7573,6285,7793,8281,3521,843,8412,220,9847,114,1667,6558,7644,5978,5449,8431,9283,2696,1948,9646,6965,6914,46,2055,4003,835,9274,23,5710,6012,1274,4635,4273,7286,3784,943,4064,9128,9812,967,3493,5049,2377,7394,1964,6016,3570,5528,8044,7943,8959,8139,550,4205,2782,699,2561,1475,2263,4480,4652,3269,340,7030,1627,8861,2113,9470,6689,4671,9076,1186,1250,6796,2400,4444,9211,9269,7033,3035,5003,9306,5248,3700,9774,6507,3933,8516,3301,4814,2103,8637,6045,9381,6540,9119,2915,466,5578,8105,2509,6034,6426,2037,3044,5615,7188,6332,1950,2373,6816,9695,2766,2255,1511,6292,306,3167,9347,6951,5454,4299,8224,8339,1970,2034,4998,8194,9654,1647,4247,4342,9809,2970,9538,861,9658,3287,5323,9437,4792,5081,5880,2804,8493,5429,7916,7675,2309,1637,3284,5025,7254,7236,1505,6041,6602,3760,6842,7,7049,1179,8485,3199,2337,9546,159,4281,5918,8686,4261,4063,6104,9330,6236,2586,7278,2215,1426,4390,7902,745,3495,5679,1171,2640,7632,3458,9852,8719,7773,7430,4437,2564,3001,7016,9138,5792,4801,5971,1152,3936,8807,2639,795,888,379,5189,9890,6796,3633,4483,204,640,1441,5937,751,3486,6053,5857,9325,5746,6119,441,5806,7407,146,5026,3660,8418,7316,3686,811,7427,3961,3712,6817,9028,3921,6161,9417,5677,117,1809,5716,6025,5427,8940,3953,8092,986,6235,6565,9534,9014,281,9600,562,532,5190,1239,1768,8735,5592,8850,2553,2726,7002,2762,2481,6962,1535,2246,5312,2056,2889,3276,6364,8211,5966,7803,4515,6401,8797,8134,8772,203,5860,3556,1080,2385,520,9099,6954,7115,2270,5738,2294,2307,7405,3111,5587,3592,9239,4621,1104,4707,1323,5641,3686,641,3764,2462,5054,9375,5019,4098,9514,6128,7621,3652,7485,1859,7140,4682,9595,2731,6569,7539,8374,1548,7369,4817,2479,2635,283,6550,6482,5968,871,4399,3392,3321,655,4756,7617,6040,6589,5656,4104,2172,6990,6153,6957,8378,481,2787,9184,6755,3553,259,7733,1250,7347,7448,3352,7878,3025,822,1988,7936,6122,7107,9564,8134,6584,9886,3800,2855,6637,4494,4542,6825,6459,1794,4791,12,3483,399,2197,8399,602,8,9689,5486,7527,1243,118,5443,6412,8339,6089,3120,5838,2327,8319,7239,6742,6088,7573,9053,7233,9979,3099,1713,7780,2387,1407,2188,6182,479,392,5883,929,9992,5271,848,5538,2241,1368,4995,8147,4747,7211,8380,5229,2147,8654,1161,3392,3218,7377,9510,3322,537,6349,8259,7750,3711,4149,9138,3732,3718,2775,7800,4167,5709,8029,3535,3981,2013,5734,8031,2162,2798,1662,8491,5492,8467,1538,6341,9467,7327,4677,3060,6410,1132,1994,2269,9991,3838,7105,8703,7876,5750,1403,5707,8034,9038,4556,752,6918,7194,7356,483,8085,5084,3955,5001,4168,8171,9214,7478,5123,7926,1111,3726,7850,1266,9408,9207,6351,7785,3299,7850,7882,3916,3534,519,9598,9910,7422,4512,2582,5824,1440,3210,9347,8797,2018,8268,2821,9033,8628,7515,8475,3398,8235,7675,1736,6074,9421,2348,6100,1214,6164,485,8447,699,4055,5041,3162,2639,1194,3879,8897,5652,6913,7873,6898,9664,9097,8221,3936,548,8186,276,9828,5637,3402,3238,3694,382,5412,2436,6539,1528,9026,4670,4473,7331,2937,4123,9843,3439,8759,5965,303,7852,3199,9918,2794,7885,3383,228,4504,1285,9667,5564,7739,1619,4429,2269,5207,335,455,7725,1933,4698,5823,4715,6096,9686,4173,3916,6697,4867,78,1662,9920,709,8803,2407,3412,113,9671,7172,1860,3733,8140,2790,1291,8381,2166,5255,2256,8829,6896,9043,7255,7496,4716,3111,5777,6048,1204,7263,9733,6005,4343,8068,8260,3765,4283,3378,3297,9343,5037,7863,5664,7172,1078,9401,5987,1762,8509,6873,7485,7565,9262,6125,3859,6293,2001,1901,6307,852,9302,1799,1111,1281,5701,1343,4617,5321,8499,9933,8426,5178,5447,6522,9568,1773,8714,1645,9535,8066,3159,27,4507,5698,7064,2373,5439,4074,2196,3407,9642,9287,2332,9837,5727,2358,9809,3248,4598,5204,3620,7553,1213,4992,6662,4091,6172,224,27,6760,3085,3255,245,7054,7228,7060,2105,1256,4590,6542,2271,5425,9170,3174,8580,8156,6420,5465,3169,7221,1410,6715,9699,8832,1234,4061,3221,749,2394,3978,8859,4871,1561,3677,3875,5858,6710,9962,6467,5301,460,2864,2186,2447,9951,8026,5684,8694,5139,1031,4001,2432,3087,9936,1378,592,5635,4952,2781,5387,393,5046,526,7236,6443,9117,8331,3467,6418,3961,6029,7297,7798,4747,1481,6814,6182,9033,1669,5851,9715,3394,6520,7085,7098,7714,5862,2769,2862,8230,3543,7032,6662,9427,9764,1688,1791,8136,2251,5641,7311,3139,275,9084,7373,1099,7001,7123,8092,4282,7525,7339,8377,3656,2918,9565,2485,3470,4518,8124,249,479,8247,4019,7927,498,8886,8927,7625,7886,8990,5390,969,8504,7658,6596,4694,7937,5598,4757,2503,5704,8825,1629,8588,8309,1846,7308,1736,5213,1670,2040,1967,8708,7795,3622,3669,4551,4979,7106,3529,3505,1001,8024,8633,6388,2247,6723,6698,9640,3647,3211,269,3827,9478,1367,5495,973,4566,392,3462,1084,6517,669,441,9888,4548,4153,6803,2194,7529,3776,1889,7043,6549,3262,4791,4720,5507,5049,1053,2150,9286,2680,5677,6232,9120,589,463,6619,5817,7482,9988,7395,3303,7194,7695,4236,1101,4059,3812,2116,4077,5447,7879,8402,9892,4315,9604,1546,8573,9484,2775,1586,1621,1182,8591,5142,6588,6368,4129,7741,2792,4547,2244,2837,2355,9824,9069,6244,9728,5708,8613,8053,1559,4291,6452,8489,442,9830,5591,9564,6192,4584,528,743,5468,4215,712,4192,6487,1024,7159,8999,3651,7644,497,2010,4200,3277,1120,4499,7408,8758,9115,3734,2942,2797,8145,3600,8057,5187,6600,6118,1462,906,3731,3494,4999,7771,5401,5420,6143,2240,6615,5541,4385,4576,6666,7920,4366,7024,8459,7453,8481,8775,9051,503,3838,3779,65,5059,3757,1036,9206,9052,845,6742,9501,5578,6506,2348,266,4118,7039,1431,649,367,9772,6994,9118,4706,1327,5937,1068,5364,8875,421,2718,9730,8090,1627,8429,5174,6732,242,5298,3469,566,5656,8547,6170,1463,8858,1433,6164,5543,9830,9335,8802,5095,3665,1051,1759,8558,4972,4507,4887,5831,4868,3233,2035,5312,6053,3695,4452,375,7298,9407,3019,5934,4013,4926,9985,5276,6657,6891,3365,1958,5838,1524,4781,5634,2234,4208,5831,9200,4091,4676,7126,438,8012,7573,3684,9439,9299,9003,9250,6396,5834,5183,4372,1650,8472,4832,9497,9763,3105,9954,5725,7006,3360,1404,493,3814,1947,6148,6331,1173,6274,2740,5355,6106,7848,6688,9208,4856,9326,3904,8160,370,4385,2935,7179,1307,7353,2535,7027,8705,2504,9222,569,4936,7835,9710,2789,1378,3506,4721,1419,8618,119,7990,7217,7015,4729,8234,8591,2324,796,8416,1247,953,620,5186,3298,2610,1358,2944,1661,9965,2693,1401,2744,5177,7244,7434,6583,7230,5370,8990,4352,3357,9254,6197,5647,797,2691,3204,8300,8997,4612,5617,4445,9807,689,4275,2781,850,2845,3845,491,808,1714,2094,138,8277,1384,4459,3331,8875,6973,410,6381,6374,7679,4287,1324,3462,5242,1257,726,9576,3656,2376,6999,2165,116,9800,242,2386,2211,9673,4146,8561,9519,8961,7181,9431,603,7092,9341,4392,5770,1935,120,7164,1285,9296,6418,6848,4097,3894,2539,554,8295,4580,3680,4767,9345,5410,1276,7112,7461,3425,5033,7800,2104,9069,8927,3288,9999,5118,5983,1812,3034,5536,7985,303,9794,4207,8086,3653,2463,1936,6586,1129,5038,689,9546,8178,1546,991,9756,5807,6260,5932,6692,9716,6855,57,1869,3827,9093,3031,5003,7307,4380,7974,191,9490,2798,8981,1944,6175,7613,4844,2041,1837,1118,5984,3267,3452,5270,2988,8468,3264,3037,9147,6290,9504,5651,9613,4797,3128,8036,2279,1168,1764,7536,2562,4486,1607,5194,7142,5472,3146,2833,1988,9448,7059,6315,7192,1934,6195,3345,3985,6182,1695,6552,4323,7684,1239,898,3862,8733,8873,7480,7289,8015,8355,1922,7649,501,6306,9302,6374,366,5502,1834,6415,412,5824,7359,4844,3220,1214,7866,7443,6306,1396,9215,1922,3311,9032,5838,3632,6375,9428,2758,1115,1159,6423,1260,3963,5198,6353,9955,1019,9041,7779,3525,1244,2016,1855,4621,6028,6666,7899,7553,318,1134,1812,1263,8836,1568,3483,8829,7234,1919,4975,3654,1667,5959,2094,8564,1394,9175,6880,2,4389,7517,5389,8026,979,7250,6868,5318,4067,2612,9272,287,8171,1280,5266,8575,8264,5557,8637,663,6561,5139,1519,4816,1714,6109,1014,8905,2048,2470,1685,1992,17,4258,207,7311,57,1034,7074,9341,2903,181,2175,8138,9801,4949,1138,849,5605,7143,8951,1402,5173,7380,7194,6475,629,8768,1754,2024,993,295,7228,3623,5781,716,20,9080,5864,5827,9854,8844,9156,3651,7830,6851,2432,8273,574,2946,2414,5545,1038,3714,4549,9467,7206,7292,4344,2314,7968,7386,2286,1704,5659,7209,9624,3389,9006,5631,33,7660,3045,7414,5091,9274,5607,2268,3262,521,1556,8523,3253,7338,92,9776,2591,2375,6202,287,9035,6378,4591,48,8824,9298,4231,7311,5016,2044,8600,1746,3525,4121,765,8766,5635,9059,919,7759,3619,80,7259,7875,9602,8806,6010,2160,8885,6173,9228,8967,6062,3856,8447,1672,6980,5668,6323,2207,6467,3395,8944,7595,4601,3917,5763,4336,6119,89,513,5317,4365,5227,297,1479,6731,1208,3797,450,3424,8672,8216,3279,4920,6103,2566,6971,604,8111,2228,726,6468,3897,8810,2931,632,6861,8110,6455,6670,7675,6252,1312,8749,458,9973,3001,4011,2768,901,595,3700,3837,7255,7734,2823,7363,288,5923,9649,7634,8768,7258,9825,9188,4913,2115,7070,9287,3594,2768,6103,5358,2257,9383,7873,789,1802,4644,7609,6940,2182,5054,4957,7551,355,6317,4111,564,4390,141,6031,5334,8275,9985,9701,355,8329,9778,5620,7433,8747,8232,443,3375,1085,2774,371,8791,5818,4101,8076,661,66,865,5108,2599,8271,4804,336,2723,2326,8054,1233,7147,489,2688,8025,1849,6040,9164,5720,1691,606,809,4503,3706,2253,1419,5323,937,1263,592,5229,1076,4817,4280,6808,5533,9005,5023,378,1531,501,1102,538,8926,6470,7594,3526,8253,8660,5625,2711,6879,1980,7948,8732,9692,2711,2120,1347,2064,5746,1212,826,5879,1754,3924,6848,5124,8273,8221,1386,8611,407,4089,9321,4689,5380,5393,7289,5104,7459,4895,8830,200,8100,7098,3653,146,4536,3996,7321,3775,2753,7345,1036,6602,9298,2500,4767,8786,7684,3038,4756,138,1047,981,3481,1108,5733,5769,2873,4129,9680,7186,7786,6009,2398,272,2622,6418,9316,9428,4498,7418,5319,8164,6840,3352,764,9255,5079,4066,2349,598,9076,5071,9492,4526,9980,4946,2354,4389,4206,1882,9038,3201,9205,9132,5451,4574,4742,7190,6030,6851,6061,6906,3471,694,5044,1928,3340,4341,3747,6186,3092,5957,3672,3201,2803,2071,562,9905,8830,3225,8276,8797,4360,716,2354,6420,7434,587,8845,7248,3786,7517,3663,3489,458,4179,1538,5105,1751,2339,3035,8111,6334,3487,527,4222,4842,9042,3692,8462,553,4376,4809,7028,8934,6072,359,5331,7587,887,199,4431,5168,2259,1265,2758,5739,9402,3413,6284,7551,606,3227,1274,976,9262,1662,9887,2001,2821,5873,4704,5174,1862,4212,2062,2202,4661,7699,1452,8406,4801,4284,6244,2703,5533,2026,6321,6235,7135,5564,1179,7725,3543,8175,884,6096,4740,5876,8299,5957,1656,4336,8649,6679,865,1938,1329,1578,4352,3396,1584,8790,4187,4054,9199,3124,4802,3152,2250,1573,3342,6202,5527,3836,6768,5355,6691,6037,4722,7863,458,7340,7021,5055,3977,4199,254,3759,8598,5464,155,8124,5226,4868,6889,5083,4404,8590,3320,6982,7186,4233,4945,6408,9545,7868,5479,5265,7012,8183,6512,8489,8355,7439,9936,2667,3176,6677,8821,890,2870,3856,485,6525,7534,1406,1145,2554,7677,3453,3969,9017,2371,9799,7085,8139,4185,3401,5768,3752,1707,9248,6836,5776,7581,382,3152,2895,3148,719,6570,293,6085,5588,6468,60,8287,9172,8143,1488,3555,8729,6553,6493,3178,4452,3912,8269,7890,775,7793,206,4468,8408,4460,1565,7863,5524,9821,5219,7126,4360,4052,3299,7023,8324,6291,3277,3652,3550,5626,2233,3651,2449,1598,228,1178,8964,6685,1715,268,6102,5987,7076,5466,7596,1801,3201,4912,3632,7111,3795,555,840,4777,35,4995,1684,8960,3871,3051,7783,6411,8030,5743,1412,3126,6730,468,4390,7579,9988,3668,4138,5805,467,7277,990,5525,7473,1524,995,7442,1043,8306,6749,1969,3796,1145,4541,3377,3957,5133,7837,5701,9327,6199,132,4505,1641,9324,3608,7696,806,159,6631,7526,7665,8121,764,7728,1011,4224,6184,8576,9322,2316,4838,7930,2836,1776,5418,2639,6104,6564,5210,7728,3204,4995,9916,2270,9132,9685,6123,7816,1170,1227,6566,9726,2146,8687,7380,9026,1937,6699,6503,4901,293,2485,9449,1238,3718,8765,6412,3334,6477,2753,7784,921,4230,7350,9942,6548,4387,9933,5602,7408,4524,9343,3715,2289,9552,7748,6749,682,1527,3703,5804,6278,4229,4928,4921,354,7911,7795,1930,6177,3097,4590,1238,269,1579,8185,8276,2952,3889,4229,5845,7106,3350,3294,1208,4547,5658,1738,4518,9306,5632,5616,2484,7596,4188,1227,7883,4639,9530,1425,3820,9473,3940,2278,9082,948,439,3053,9615,157,9239,616,5442,2265,5905,3440,6669,2193,9412,3231,9635,4144,6820,7404,2083,8429,2981,1569,6998,1913,2256,4170,699,3572,4146,4612,1538,8065,9671,9465,8427,3141,2170,3000,684,6562,3158,3796,5673,1454,7101,1865,6805,335,4331,6055,3059,2405,8014,4904,1618,3911,6190,1327,2804,1887,1752,6482,5437,722,6490,9475,1097,4395,3248,5943,4547,2328,5350,5326,8035,6221,3547,1139,6488,2065,8309,3456,2341,9313,9656,6849,1150,2484,7886,8956,6883,6556,6337,8188,2091,6208,4551,9325,5158,7191,2308,5275,4672,79,3895,1092,7827,1220,3763,1964,8839,6932,1735,6161,3047,9268,6030,1599,7957,4348,1467,3616,325,3613,5588,6085,6884,3235,2920,3516,4736,1372,851,3451,3838,9494,2906,2066,3344,3267,7023,6457,4235,9554,3550,1600,6507,8243,1078,7471,7842,269,4409,4345,8764,1711,9424,1883,6239,9023,1058,2910,7370,4773,4025,9559,2290,2161,9838,9964,5466,6369,4814,8951,3673,8088,1460,7870,5972,4258,4778,3039,9228,9611,3558,5456,9726,6669,5060,6501,20,1758,6046,829,5644,7656,4709,8371,4548,4319,1594,4352,5222,6583,1092,6539,9266,4948,1426,1050,5422,7256,4392,6103,4887,7873,7550,1437,3866,486,9414,1289,5079,2715,9873,7326,1120,3421,4634,300,2865,2681,1178,829,500,8860,9070,9804,9309,4392,7582,9023,5704,7468,1653,4019,5279,5752,3609,111,3475,6686,7983,2780,9746,935,7175,7399,2031,9644,3399,2028,1710,5279,1643,8277,7957,9555,5579,1491,6197,2004,3209,3357,9200,1577,1919,9246,8468,7575,7074,1920,2415,1672,476,4598,3185,3804,6452,6586,5324,5058,2673,3464,9808,4417,2287,4591,3982,8080,5857,5894,8489,8263,132,7280,699,2061,4355,1359,5974,5274,682,5531,6818,2901,7593,2091,33,6080,7325,4839,4780,3577,2387,9178,6483,9607,1036,5847,9149,934,2232,376,9787,386,7436,2521,6078,4824,7123,6161,5995,6312,8606,7305,2883,446,9418,2885,4514,1791,7944,9297,1294,7914,286,724,8205,9608,2178,2064,9145,7056,9258,5781,9686,8157,5434,6681,9743,6705,7068,9174,871,2503,4432,1259,4996,3813,9488,701,9196,6099,2357,4177,1754,9968,5078,3712,1395,1348,9645,5455,2357,1611,4474,558,132,4781,6651,1886,8301,8095,5829,1955,4168,103,4435,2509,8753,825,3532,3046,1790,5898,1867,2474,5404,9137,9734,9845,390,6930,3644,6555,7964,7215,61,9190,4661,1555,9118,3340,8242,541,3067,1784,7543,3888,6748,488,7524,816,3198,7881,9127,3016,9042,7318,1883,9179,2468,596,8157,1422,6035,8616,8799,6350,2724,567,756,5821,559,3942,2805,9877,7413,5149,1731,2650,7415,1500,315,3,5520,8548,6680,1982,3800,9018,4463,3510,9016,6706,1917,9823,395,8387,1068,9572,2166,2205,6393,9574,1951,254,2170,404,3697,307,7120,5439,6349,5311,6769,878,6970,5813,6433,3409,7971,6505,9569,8296,4635,8749,4699,8161,2775,4246,9825,7842,3015,4188,5290,8453,9323,2128,1068,9918,216,3404,8773,7165,9899,1299,6429,182,8730,2816,3673,9245,8493,8365,3421,3440,2906,3138,3899,3591,109,5382,7712,3826,1557,3519,6078,5309,1494,6203,6505,3607,7712,6074,6292,2253,957,1579,8973,8235,6295,2223,4925,4761,8517,116,2131,1725,521,7609,9253,8401,7092,3458,3102,4358,3508,2788,8680,2959,1076,4721,1722,3618,258,5168,1064,1702,9454,6292,7676,5302,3776,182,6047,1178,7848,5268,5734,3627,8751,296,4916,8328,275,7148,2540,5612,197,34,3618,7910,2393,9023,7744,4549,3057,754,6586,5690,2637,7472,4646,6505,1431,9593,7691,8820,7280,7425,3363,4684,5877,2958,9922,443,7960,4705,1576,6626,4802,1452,8061,4022,232,2503,1717,944,4233,6429,7647,7426,6220,4406,1817,1734,1536,6025,76,8269,8924,3229,2241,5229,7906,6709,6092,708,3119,7526,2262,5824,1104,994,2228,1127,3518,2774,7194,8581,553,5979,6819,1480,2557,871,9126,9597,2452,6851,7689,397,4690,9235,8721,7984,1752,910,7237,4957,9856,5514,9426,977,1882,8153,1939,674,4541,983,1359,9559,6478,2003,5755,3804,1714,4695,9485,6858,6293,5437,2603,3888,1296,4429,8377,414,1941,9585,8579,140,1719,3593,2121,5433,6484,6326,3113,2155,5191,4955,4075,3502,906,1367,2854,3514,3066,8596,4430,6843,4140,4441,5781,9602,6236,3113,7045,4243,2100,3899,5143,4182,2655,461,6941,2729,272,8537,2499,5431,9117,8815,3160,414,4508,1504,561,9216,1213,4973,3870,2659,8657,6394,8355,4092,5609,3415,8157,4635,3293,3312,9587,1366,7021,2284,8278,2700,8275,2731,6370,1223,251,8361,4201,3217,8453,7754,6397,9037,4270,1802,7129,3074,1244,9791,1588,3040,1624,32,2855,3120,7017,524,4030,6199,9042,5870,5177,6086,2330,1294,4517,7773,5451,9383,8796,5264,1249,3245,9041,3446,4143,9186,450,2289,3676,1754,3431,1485,9981,639,245,118,3901,6550,1449,4732,348,6623,285,1286,1072,6826,2752,5259,2808,77,1521,4669,8953,863,7491,5118,9398,1095,47,8919,3926,3616,6126,249,9753,7659,4310,7778,7960,6599,5445,9466,4604,6500,5867,3178,3004,4828,5846,5664,4793,9128,530,9222,6792,9116,4616,7724,201,3741,4372,7583,7149,517,874,1413,8967,4244,9136,4302,1395,2893,7206,7662,4196,3721,1735,9817,3043,5300,8477,9700,1353,8815,8365,6641,2784,9531,5183,507,9377,7338,8304,6901,8491,6447,3449,3097,8984,8581,4709,1422,8092,689,4028,810,1689,2836,4700,5541,4810,5285,8148,4495,9711,5669,5270,9847,6928,2131,9496,9260,1966,3143,4862,7955,77,9338,7431,5361,1325,8953,4632,2781,8616,612,3839,4650,7325,7837,7237,6910,3057,1217,8969,5050,6198,2355,7691,6516,8261,47,3810,4097,3910,2049,4302,2037,8955,9552,7556,2044,9148,6157,1419,2583,6097,938,8231,92,661,6174,9928,5460,8354,812,1526,2312,2147,6680,9234,3849,111,8369,2631,3533,5873,1262,9764,8309,6998,3510,6528,7803,8494,5764,433,3558,3212,4607,8564,7360,1387,854,6418,942,8920,1811,1788,5872,4910,9078,3242,3352,6309,923,4811,2933,9883,3644,3320,4566,7081,6606,7787,8974,2236,3802,3539,6998,8793,3775,9047,6114,8058,5220,5779,7213,3677,9512,8712,2007,3691,6640,6274,8193,4185,776,2248,678,2813,9475,1275,6912,9264,7183,5674,9043,2068,8458,5182,4390,3522,3312,8759,6764,871,561,2267,1491,6179,1691,371,4738,7696,7893,9241,6303,3973,7902,4948,2122,9806,9950,2279,3669,3385,7903,1224,7822,7992,9994,5750,6763,5214,2734,5311,7149,9624,8825,3859,2672,8352,8241,3650,8046,509,9865,8045,8701,558,1262,4249,1275,4536,818,1161,6463,4393,5282,5841,6601,5163,321,8805,7673,1376,1724,6328,4920,7605,8370,5492,7127,2331,9751,9303,6608,3013,9419,5605,7451,16,5576,9040,6101,4521,1497,9745,3203,2529,2290,2922,4307,3545,7736,55,5456,168,5019,6548,3967,692,9812,5750,839,8402,9763,8594,6941,2300,2584,1045,2475,5780,6444,640,5182,1703,9921,309,7920,6733,2907,1272,4532,6692,1969,6721,8140,1331,7193,5018,7677,2590,7245,9425,9650,8089,9911,3845,2666,6516,5396,5839,9937,8104,6998,55,8367,213,9960,2273,9336,8157,8542,9825,3863,1936,4369,4391,7284,6017,9438,6080,5829,6622,3221,3367,2417,1293,1029,7441,9973,3760,6170,2867,9536,5723,7377,1644,8493,6739,8748,8447,8819,7633,6247,9678,4472,7262,1038,9887,5568,9258,5832,5109,7260,9140,168,3052,4324,1371,3300,3681,4679,4668,7473,9121,6084,9524,538,9184,1365,8556,1265,4250,9017,2069,4896,7372,8764,7729,6983,2718,7021,8317,2150,9376,87,5070,69,2772,8046,7361,5821,5740,6223,3579,6821,2853,8794,803,422,8764,4927,6140,3716,3368,5267,1378,8590,4200,6796,9237,1793,5731,8622,8677,8814,2393,9337,6422,9359,5768,3359,343,9786,2368,8612,1785,7663,2262,9267,5922,2101,4633,275,1975,8264,832,4593,3297,3346,7156,9116,5510,4901,934,1597,3270,9770,3781,2887,6596,472,4971,4883,1066,8681,9125,7193,2221,2202,2871,9809,1724,1307,1196,712,2801,6499,4934,8130,1371,1134,6711,2494,619,3885,2470,4019,2551,5146,245,3592,5163,4276,9131,2360,7394,9651,8590,5805,9176,679,6386,1026,64,8647,9113,8096,1446,8001,9734,1514,9500,6840,6758,3912,8552,6874,3080,2952,3041,6737,9880,8080,2620,8580,277,1141,8126,6829,2683,6526,2746,2320,1556,7873,2103,2252,2172,7766,7383,9699,6655,9929,5440,3085,7052,4334,3428,9583,1474,8626,1091,6470,4044,310,7872,5761,3072,2814,6579,6643,6730,832,7136,695,7463,5535,8206,8130,4400,1524,7165,4054,8893,6986,1349,5203,1218,6368,4175,4268,9387,6726,5530,6028,6236,6979,5678,3301,3969,6400,3516,8512,1468,8413,920,3084,6162,8707,5518,3754,3033,364,9081,1545,1910,1841,4982,8607,2136,1058,4699,1338,2388,5995,8430,6894,3712,7559,3281,7797,6377,2985,5866,465,325,117,3413,9448,914,2741,6570,8294,2353,3193,4144,1974,3874,3190,1918,1911,8977,8883,2302,6062,7608,9887,5731,9060,963,5604,1206,4073,5977,5959,9174,5762,2348,7464,6383,6678,5361,9008,6020,1538,748,1704,8523,8413,9362,5253,472,8140,3062,7811,8330,6740,7745,2077,4012,9755,4834,6251,5857,6439,3962,2206,3744,5807,6363,2496,5702,7967,1797,1336,3104,1113,5019,9001,3423,8289,4020,4500,5613,9817,9301,1148,8139,9245,7445,2376,2296,341,4883,1061,6554,7393,9590,8774,169,943,297,4487,4682,1377,6944,7762,4656,9725,875,3693,2729,2809,6445,9973,3671,1119,5544,8372,2807,1053,9556,1118,4265,111,5607,7213,1315,6243,2366,9243,3267,7481,4596,1594,8215,4595,5289,719,2024,5559,6763,7391,8047,1318,4725,3155,8825,6646,2247,8546,2013,2908,1627,2356,3050,1945,4276,9038,8311,8984,9104,5314,5458,9132,2239,3749,2336,8247,2519,4744,5052,5654,1107,1975,6840,9416,7557,1385,4036,3990,3128,2919,3326,4492,8164,4239,4936,146,8884,2411,814,7589,1159,9961,490,8921,9977,4219,4323,2423,3273,5084,5609,5637,5722,6871,950,1150,7979,9887,5278,2874,9358,5181,7987,1676,2785,9319,5578,6418,3195,9349,9403,3603,8694,9136,8985,1741,2075,5317,3197,3682,5501,8030,5488,3231,6056,8611,9978,2118,9136,9324,3226,8523,7426,6235,7051,627,2010,4036,9039,6213,9276,5207,9037,9717,7229,4053,5093,2273,90,5715,6237,5979,3516,9131,6426,819,2860,700,4683,2717,1244,9045,7859,2136,3264,5109,857,6650,5023,5333,3141,9980,3363,2593,2017,7820,3471,8755,1912,5503,282,4990,8000,8221,1648,2468,1293,3650,1809,6800,7478,9961,8875,8498,4777,2206,2383,1343,3317,3900,6972,3784,8452,5785,2903,6239,1167,9680,5953,8492,6650,7966,4622,9543,3636,3024,7070,1620,4027,8256,6388,3492,1144,9076,6845,4378,6475,5435,3823,8532,9747,130,1622,7100,8329,1882,6116,5846,9711,3713,9150,5476,592,3501,4327,191,5657,2039,7877,1073,1290,2322,563,3571,7354,7058,3020,7978,1927,9483,7383,8811,215,9749,9228,1338,8753,2017,658,7359,3691,6841,6901,5251,8720,3186,3570,196,9716,5188,5011,7777,2754,3602,1557,8771,2880,1856,6442,5781,258,4889,8482,9613,1860,979,5566,8664,6395,8976,8244,6553,8127,8709,8979,1044,7994,6683,2259,4476,9941,5693,3149,1954,4994,8122,9783,6409,6589,2477,7274,3702,2284,6907,2628,3754,8885,2691,5968,3020,9419,9304,3342,6120,2364,1597,3855,6643,5177,4424,5057,8056,280,5897,8537,9947,6850,9713,4317,8544,5860,8935,8775,3822,3030,8558,2081,4174,488,4233,2740,2444,5865,9743,9078,8902,3788,480,5625,8940,8726,9647,5677,6333,905,5230,1492,7140,4316,8954,1529,4569,8040,3580,63,2252,8252,5793,4016,7833,6058,3745,247,5711,602,6658,1623,8531,1191,3663,4897,7376,186,2285,1877,3359,8168,9642,762,4566,1486,8912,4231,9667,2074,8745,1818,2861,5570,9016,2772,3218,6333,1356,4597,3144,8441,9131,4077,475,1835,2981,2064,305,2906,6369,2708,1528,4077,5121,4585,8301,9282,2697,636,3480,5270,3706,2963,7371,4502,6900,2704,5668,5408,5447,2211,2795,3249,136,3535,4584,4898,2945,5040,6974,6506,8321,2314,6059,8366,6584,7166,4297,594,9469,5354,5818,8500,1384,4042,5268,1977,5074,3507,9111,4253,1590,9816,4073,130,8864,6834,9776,9175,9024,4417,1933,8875,6716,6645,9400,5686,414,7186,3601,8144,6318,2926,1291,6529,4374,2048,6801,659,393,2826,7782,6597,9540,6247,1785,824,1492,2933,2934,7936,4705,6475,997,8272,3445,5809,2234,2886,8409,7411,991,5057,2125,3740,1332,2474,8384,6825,1515,6138,202,7169,8311,1261,4222,8809,5573,4649,7399,7222,9319,9204,7678,8958,1130,3130,4679,9697,6079,3436,8577,1294,8952,1564,4725,2603,8009,3406,4307,6619,2473,6834,9049,8846,1467,3318,6735,7005,4707,3097,2922,3094,8300,2495,7747,6658,7198,6072,2564,9754,517,5960,6246,298,6053,5169,2069,9330,1114,952,7942,776,6120,3000,2789,3261,8096,6829,3301,8125,1104,4963,1879,6738,5025,6037,1499,422,4190,8254,8190,2829,1277,6821,8439,5524,7120,119,1914,691,4336,5792,8883,3937,6776,5241,6154,668,6932,5128,8233,7573,1828,4621,3095,7871,7601,9632,53,5799,9316,2456,9081,5274,6149,6431,6779,1416,5265,3607,8605,8917,8567,8129,416,3529,5715,8226,4808,1043,8243,8865,4314,403,3926,957,2570,4123,3174,1898,9763,5422,2933,8069,7153,3459,7974,9864,8236,2128,3361,4770,8227,3680,8662,1114,4320,3839,1505,6463,5521,3584,2079,1972,1292,129,4450,890,166,3508,3883,5540,7642,6557,5975,994,338,2791,9049,3738,3928,1384,143,9250,6129,1166,320,6031,7163,1495,4996,2730,3343,2232,5087,5781,7965,9100,2907,9459,8534,5045,3896,2359,1413,3781,9550,2096,4118,7544,3595,4864,9298,9877,8732,2589,9846,6280,5086,2255,5811,4584,6683,2817,3368,329,6242,9405,5548,3170,4907,5931,9712,9135,9105,449,251,5221,2530,2836,8915,8839,1248,4401,9642,3381,6315,5760,3514,117,1803,4440,8086,6754,8487,8371,8266,7806,8977,4822,7074,6061,5475,4135,6935,6752,7154,123,1298,1454,5921,7567,9595,2732,1057,5401,8325,2128,3708,802,8650,1996,3961,4053,8148,4050,8371,6288,732,2729,9540,6521,9888,4958,332,371,3364,3207,5076,2994,7896,7266,3969,4565,5088,819,1852,4200,7279,8125,107,8566,1915,46,5214,49,4026,5324,6578,2072,8044,8659,8314,7844,4313,1700,6410,4721,4074,4565,4173,8450,8414,9205,8702,9682,1440,5914,3214,8481,6944,3456,1903,6717,6665,4083,1104,1455,3900,4439,5426,9603,2679,6747,2344,4965,6782,9684,2779,6786,3747,3980,1635,2656,3986,6351,2983,7341,4500,1363,8414,8276,9001,991,6011,2758,8945,9707,2971,5178,9521,2458,732,7014,3707,5102,7600,9857,6795,8132,4346,4643,9786,5197,8895,3224,5816,7447,1353,8039,3290,9842,3822,7687,926,674,8198,4205,7935,3739,2529,2607,4274,1828,1555,4185,1949,9911,920,6311,7623,5627,6751,772,1932,3996,7950,2140,8593,9751,1110,9319,147,1802,4480,7920,4010,5470,7909,667,9878,1732,588,6958,4092,5272,4572,106,1562,8916,1722,9842,7327,2731,5469,351,2789,7624,575,3556,983,2027,3701,5933,2127,9235,3085,5908,7724,8299,7207,175,8482,3487,2635,5015,5792,3764,4324,8694,3028,65,6995,2121,1387,4902,2488,5579,7711,5187,3149,4122,2325,4365,6664,1214,2216,1433,5655,7860,6356,487,9036,9027,3659,700,6105,7664,4219,8353,3852,5481,292,7498,9982,2080,2990,7076,2861,8844,7502,2575,2511,6496,7118,7185,4286,7039,6397,7949,1709,7305,7587,2178,5278,7574,8095,96,7037,7339,2708,5814,6825,4792,1017,7497,6676,5947,6614,6206,6670,1962,3910,3513,4708,811,4575,4735,7454,4978,9091,2656,5703,4002,805,374,7723,5293,6158,5963,9543,2218,53,388,7218,6494,7175,3309,3427,6746,5150,9298,3729,7984,2531,6265,245,3457,9390,4897,7627,765,6449,9109,8959,2450,2957,9904,6912,255,2114,4384,4218,9780,2781,6033,8082,7498,642,7090,3043,2464,9806,139,6799,9655,5706,6048,7023,4522,7977,1719,933,8999,18,7348,9980,6800,2356,9480,3109,3187,6220,1848,1692,2683,6452,1689,3622,3238,6149,4275,9442,383,143,9637,6073,6323,7385,4394,7830,7669,7226,6672,9534,8533,7093,3462,2652,4698,6992,9243,855,3220,1889,2949,2623,2840,5928,5497,5400,5300,5571,3829,1472,7494,1713,2093,2602,2078,4847,7613,4818,1360,2483,1076,9355,1086,5793,9528,9362,6250,4058,9266,7007,9647,6253,5795,2518,2922,3161,1059,4894,3906,7808,1705,9848,9925,1956,6833,2158,4746,1011,5415,1682,2080,9689,5028,1931,4742,2139,5009,8782,3721,6240,3553,3513,8776,8797,8539,4277,9748,3916,474,5032,1388,8284,1506,6166,1539,1648,1885,603,877,9619,5621,2071,6489,5102,3770,9707,7080,1001,6333,6150,1455,3482,1084,4554,7177,6695,3775,77,2699,1679,4577,6796,8331,1906,6129,7765,636,1689,4016,6826,7534,9014,1927,6114,6533,4069,7106,6729,1221,1692,895,8929,1910,2353,3391,8026,9750,4429,5503,2334,6639,8004,2034,2040,3373,8828,5511,9200,7276,5941,9929,977,7336,1103,2439,4809,6808,2047,5350,2841,3829,8070,1721,6511,4676,1029,9137,5347,2204,1160,7660,6459,2611,1184,4641,1643,5721,4074,5697,752,7896,956,9259,5185,1983,4780,5226,3106,813,382,2243,7311,4154,9754,3434,3962,4265,7748,3082,5001,8015,8471,3269,8251,2256,9432,8028,2601,7964,5133,4744,5853,8646,7081,1,4387,2577,8554,2401,1549,314,1340,4532,3456,7857,4536,3919,9317,7622,4902,9004,1929,3744,7008,5241,2929,3256,7953,2163,4927,2958,3407,6484,6794,6768,6653,1373,2014,1329,6685,6821,5658,7484,7195,468,5346,6423,8125,5605,2318,5609,2108,751,2532,4491,5762,8589,8599,1200,6402,8068,9548,4504,4141,493,702,6799,2893,3444,3756,4952,9218,3,9103,2100,3536,1138,3462,1341,2553,6641,8683,8581,6997,2523,1539,7244,2974,2856,1475,7323,4529,4709,5102,2899,1655,840,2674,3889,8439,1251,7406,6798,136,4687,1522,5301,596,2767,3379,2887,8127,9824,9231,3030,5088,2515,342,282,9599,7675,883,63,8998,1596,918,9916,5017,5210,2729,8569,6180,1929,6633,4751,4477,5907,7056,7896,9321,4033,1738,6326,367,347,5172,120,3046,2276,8619,1736,679,7191,7015,2666,7296,2787,9692,9950,4580,4279,449,6203,6370,104,7417,3911,2483,7876,149,5149,5961,5628,6537,285,6860,5789,7261,5523,5488,1002,3811,6128,2090,2738,4673,2869,2912,2775,4983,7975,8145,8006,4431,38,4630,6555,3028,6775,7930,2299,7510,2326,9511,1639,1726,4651,6303,8296,1713,1153,2537,650,4455,2210,9766,295,8754,8501,9395,123,5901,5242,8792,6689,9601,3337,9262,7098,3088,5610,5030,1417,2865,9212,4003,4120,1698,1890,132,6552,615,259,5820,1141,990,4221,5648,5018,3639,1342,5708,3417,3300,3321,2999,2855,1643,9630,8102,6130,3884,2604,3768,4587,3164,4582,3395,5843,8641,2977,2160,290,7172,8590,2510,3045,3341,865,6045,8151,665,8482,1187,3435,5619,1335,8271,6015,9917,9000,9658,9544,668,3261,507,478,7464,7297,2547,535,5886,8029,6454,654,6804,9370,9438,6124,5632,4767,7027,1360,689,1782,6819,9088,8174,4588,3716,4295,5271,5615,9773,5499,2667,5936,111,4141,5731,6290,7655,6248,8705,8817,9495,8711,9236,6727,3069,2215,1921,8768,9207,6310,490,4285,4265,305,1368,2950,5901,7703,3649,1631,6752,8888,2853,4471,2162,5255,2638,6235,291,5780,1356,9466,5124,2409,9355,4267,6191,3538,2425,1568,4058,9168,4370,4725,1413,6269,5482,3155,8751,5295,1123,1459,8067,2545,188,868,7466,4665,656,2457,2752,9255,1367,7645,8039,3180,3565,4489,7854,994,6390,7421,7776,7728,4407,8433,1669,999,6472,7081,3065,2313,482,7485,5477,5915,2704,4600,1318,4810,2832,3428,6100,5754,17,6965,6141,2753,8590,5409,9458,1182,5080,9387,5725,659,390,4901,8755,1092,8662,3698,3949,5702,6944,1815,3612,208,9658,2417,9985,2967,2458,8458,4257,4212,3932,2694,3396,9668,41,4872,4211,2044,1925,4410,8568,8612,7590,383,4429,5560,8459,8388,5055,8914,7947,8985,3762,8583,8789,2719,1100,4359,7914,7992,9654,1241,9297,419,1038,70,9567,2602,1990,7910,1345,9786,710,1819,2854,8608,2382,126,2425,8551,671,3111,5199,1079,6756,352,6293,7521,4817,6773,9962,1232,8092,8988,2060,296,5113,7753,5132,5179,4554,9733,6052,8540,4303,7619,5525,3952,3194,7502,5224,5239,6108,8857,5990,3981,4030,3688,6968,2067,5383,6133,9085,456,3624,36,2304,6238,1709,6726,3263,892,462,257,4929,7316,2200,2723,9594,8980,5834,3983,8657,8437,9391,1582,9244,9449,8766,7529,870,5695,7835,3328,964,9478,6680,2731,2201,9066,7705,5192,569,7123,7863,717,7057,590,1748,3520,5215,3582,914,3009,5899,4587,6672,3811,8382,2305,2190,2064,9726,6290,9713,4496,4573,9055,3801,2569,4842,3353,9744,154,3234,1145,5722,3952,1970,9480,7716,7624,9803,4566,1943,3568,4001,2791,5990,9673,9890,2379,1466,6779,2204,2976,1250,1363,5139,6959,6901,8579,9200,6944,219,8257,4439,2445,452,9205,2017,265,5247,713,2270,325,2799,47,8501,517,8147,1833,4923,4895,6139,5919,8828,6454,8987,3284,3072,5724,2046,1401,5195,8222,9436,7296,2035,9421,4412,2567,6607,6988,3366,9227,2647,2159,322,7811,5618,1043,472,5830,9675,8297,1761,2028,7848,7084,7299,1198,607,7533,7337,5092,1344,9728,5132,1069,2322,9711,6797,9918,9098,1001,8011,9551,8904,538,8225,2152,4719,3266,806,8439,6439,5779,3832,3761,5050,2663,2245,1891,5100,4404,5195,60,2852,6898,4997,202,2245,5567,8321,2780,1642,3779,2211,5752,438,2094,1312,1268,628,2172,8012,1587,7028,3880,5203,6536,7870,1678,9805,8892,9272,7092,8789,8007,4328,1285,2516,8690,4442,8767,4026,9570,7423,8032,1583,1164,1248,3152,5537,2918,5886,5331,8190,3180,7949,3807,1133,3847,415,286,4277,2034,6015,1810,2393,5340,2939,5725,3232,372,6441,6692,2209,7839,8219,4334,349,6699,7787,5863,6984,617,8009,3681,8574,3270,9807,4635,3854,4196,498,2409,3453,6403,227,935,5932,4776,4978,8799,5472,2453,2824,9192,250,4776,2769,9601,4617,2283,7071,3200,7922,6753,1196,2208,5044,7083,2791,7483,183,5990,5814,1723,1913,474,2106,5631,8891,6924,9813,3033,4074,7965,2289,4020,1586,6001,5537,2182,412,6128,5957,737,1353,2634,6770,6714,2114,5383,2052,8880,115,6237,9172,5114,576,5840,4841,5053,4811,1715,7749,3402,2916,2277,5798,9170,1354,8550,394,2627,2542,2593,3215,592,3484,1614,9316,4489,1277,9919,1598,5346,3443,7623,7705,7817,6119,7347,6281,9387,8029,7871,9153,114,5525,829,7957,1499,8041,8501,9359,6780,6634,4430,9688,7580,3874,4365,6506,4107,4461,4382,7062,6520,9686,2928,1291,8733,5735,7466,4482,300,2133,5461,1166,5750,8368,9984,2209,9439,4855,5000,7232,4781,1566,9693,9577,5609,177,4068,3001,1096,2896,6627,5771,3916,897,1765,3136,7352,7435,6743,4147,7951,5425,4931,7566,7689,337,5261,1866,8566,5994,6425,9452,6117,6232,4962,3786,5265,1322,7115,8362,7115,8142,9502,2887,3587,5467,7360,5239,9278,5922,5720,9550,466,3356,1726,6588,3356,9569,9329,7818,2645,8417,4517,3337,1456,1092,9057,3839,828,7858,4239,2483,2483,5282,6424,9147,5519,8527,7016,7802,1573,2266,706,7372,2927,4039,943,5977,4716,4485,7085,1342,9911,4340,7778,1404,4927,6124,1936,8591,1036,3784,6393,2450,8417,6354,823,5107,3178,1722,961,8981,1217,1528,4947,1040,4437,3403,3341,2888,5113,8907,8665,7230,514,7813,522,484,2850,5733,8103,2725,774,1761,6169,5384,2025,8564,4683,2261,9066,1878,1142,387,8446,5955,765,483,9539,7372,5175,3351,6634,3937,2854,7162,7720,6700,2225,3927,3935,5339,9753,1326,1468,2925,5296,4070,2381,5607,9279,2441,800,4451,9939,4904,7376,7019,5729,3529,8454,9912,3673,7143,7126,7609,9700,567,8986,5820,5041,7575,5000,5118,4374,4618,5657,368,8070,5743,6739,9274,4013,3677,1321,1335,4125,6213,7466,4063,5040,6823,653,478,3210,5479,5781,3244,5215,9784,7142,3299,936,7300,2258,1148,2502,8645,4149,1816,877,3445,5729,2865,3822,8722,4491,7457,5411,1154,1134,1194,5776,410,688,524,589,3813,4138,1605,3588,6418,8734,5638,6793,3050,7793,5648,4129,913,3642,3454,156,9298,2570,8595,9328,5966,6443,8123,3718,6196,6381,574,783,7584,759,625,8370,3422,2883,6583,6094,7703,7833,8744,4106,8392,3621,7757,7545,3663,751,8301,8767,3137,7366,7605,2998,5197,1071,1682,5929,5767,2745,6048,8086,5563,5639,9887,9982,8846,2211,35,1164,7797,9773,3463,413,4644,9082,5532,5931,3886,2062,4336,225,4077,3611,8196,6685,4237,5366,7060,8918,5451,8844,5382,4108,6905,9436,1251,2870,6908,5245,6129,1623,2672,4730,3421,3700,7467,1831,3441,7990,7480,259,6242,1125,8851,3191,533,1475,9105,7415,2136,2962,3965,5852,8765,9813,4277,8404,6224,9702,7163,2632,8796,3880,5989,1545,8348,4965,9399,8757,617,7211,3237,1228,5827,7252,1556,9042,7048,9604,9413,4650,4970,1257,66,7265,1229,9117,5932,3203,9191,3128,6696,1797,4914,4943,8962,8728,1179,9862,3654,9766,9348,9807,6197,5562,1218,7899,6278,7628,7748,1246,4735,9968,4961,4114,8561,9912,6112,6883,6586,9597,9784,2147,906,3703,7686,4348,7328,2057,3182,7812,2255,1679,9591,2485,6926,3612,4704,2820,5430,3260,2498,8282,1164,351,8719,3942,6488,5358,9685,8965,624,1444,7181,9960,1933,7612,2905,4318,4161,774,8946,3444,5411,703,606,4110,9729,3371,100,1590,2702,7911,8445,5704,1901,9149,3019,5702,713,3381,4907,4799,165,580,6310,3167,500,5116,3237,7304,8985,316,7039,658,9669,2046,4967,8810,7590,7216,6896,5954,437,1677,6251,9322,9301,4935,4249,2772,9245,2252,5414,6309,66,3018,2262,2773,1420,8855,4915,1949,6708,3254,4387,2176,4822,8619,4888,1978,4757,4273,1901,9996,9459,7696,2237,2926,5839,8601,5052,6071,9514,2216,10000,4006,2982,177,3145,6379,7033,8207,7262,3769,3527,1993,2833,4142,871,4651,6268,7689,9564,7654,3743,8399,4538,9939,8079,8740,9210,9711,8086,1596,3003,2151,4715,9944,7955,2081,2966,9924,4542,69,3753,9068,1963,1622,1453,1427,6293,4601,1843,1361,2360,9544,6188,6348,9754,1766,3586,5980,1177,9999,3998,3767,191,155,5124,2759,3109,4055,5928,1915,4753,3540,7312,1805,2619,1313,3096,5622,839,7436,8589,547,226,4961,1136,3285,4446,2115,4805,4234,8344,7428,4002,7563,7906,2955,7730,4096,38,9958,14,977,8060,5483,9309,1711,7786,4903,5702,7631,7690,5545,3886,4736,9374,625,349,121,1078,4460,6038,8962,2872,3704,7479,3725,3649,6379,1990,4552,5388,6565,2130,52,8558,3208,817,2011,8673,2811,7080,8543,7033,8175,1730,9496,1926,7812,2467,302,4663,4137,4972,6814,601,7981,3560,9927,3346,4747,9799,2659,2326,6051,3234,2010,3856,1210,9552,6056,7855,7520,8445,9826,5064,3182,479,8013,6528,876,3290,186,5337,8701,2185,8084,5491,5774,8291,3859,4081,4722,7883,9140,9460,8334,3961,5159,7796,1167,1340,8263,5576,8803,6220,9986,8627,6520,7862,3819,5664,3362,3450,2031,1053,6417,6255,2233,7714,4636,7119,9002,6041,8241,8995,7595,8394,2382,7796,1299,7481,4547,3683,345,1920,5382,8509,7791,7394,5949,194,3228,1238,6960,811,355,4967,7684,2159,9693,6120,5821,5889,4421,1413,1369,8218,4214,4973,7465,1142,3384,8381,8241,4450,4952,8444,1977,939,7634,3618,3226,3675,6449,1952,1551,4627,1461,6454,3591,4044,9170,6290,5420,9110,9819,9544,5842,1488,5279,913,9591,2062,7076,4785,2025,6758,4824,4724,6738,9317,2095,3919,513,9263,6071,8665,8051,9332,6230,1200,5823,6531,3831,1702,9179,913,5231,8619,4143,7492,7523,4574,5408,4762,832,8245,4844,6329,8633,8975,3393,7227,7960,56,1860,9740,4095,15,7795,852,9247,6615,937,664,3278,1775,4438,1503,7078,7174,8342,8070,9503,3397,6841,3188,8587,7266,6745,634,5811,3467,4650,2958,3263,2060,4840,7804,1585,2293,12,2628,5626,8568,8378,9970,6439,9121,2281,6170,3436,9586,6983,2487,9947,5519,1816,7705,5869,466,7887,6260,1174,116,8903,1963,2697,824,6167,7356,8759,8027,3790,7154,1194,1811,7950,256,6789,9109,1060,2602,9051,7375,883,3136,6931,7542,279,5484,6792,3126,3233,3941,9945,4902,7584,6722,6227,721,1302,9840,9845,1748,4959,9199,5531,4047,9161,4485,9351,4669,1477,6751,1380,9347,6678,8661,838,2747,9510,6749,157,7288,5657,3821,649,3555,4356,5785,8609,9147,8765,9275,2386,2460,6875,689,3320,8010,2066,7260,1291,3061,6766,8810,1024,1274,4119,9720,5002,3676,7421,5235,4568,7841,1426,7011,7009,8964,2681,2325,7444,3098,3658,3374,2689,206,6249,7266,5776,6353,9567,760,5543,2599,6069,2866,196,2557,5156,5164,279,2863,591,3804,5891,1217,7792,987,1709,904,7215,592,8576,6761,5742,9865,8210,8281,2182,4514,3829,2380,2709,6153,8919,6216,9208,1173,3535,1775,9676,1559,3045,7399,1277,2201,7991,6219,8168,5210,9661,6212,4304,3499,9043,6311,4011,624,5663,2637,6305,7022,6682,2747,1706,4408,17,6442,8286,9008,3493,6313,1232,5284,8732,5064,3556,2463,1557,5730,3692,5709,5685,8489,4758,1124,157,7533,6257,3623,8048,2211,3707,9385,7610,7346,5587,671,9051,7118,8308,3304,5590,3153,6729,9252,644,6196,2018,8693,2773,5976,4030,9009,7162,1721,6409,4681,3048,7405,3663,2404,14,3589,1131,278,3914,7074,2137,2502,2788,3966,8582,5823,3828,4421,6128,961,7542,3845,1608,9217,6013,7188,9277,2380,2518,4512,5463,7908,9097,7435,4925,687,4036,1423,7498,4111,2459,420,5540,6504,3534,8902,4192,125,5903,314,2857,3904,4101,2429,2947,3772,9599,389,2379,882,1980,3729,2141,655,4786,3557,928,5407,5153,2634,3818,7076,8257,5785,1323,7355,2889,6268,7249,3445,7237,2474,2035,1547,8582,3995,6199,7074,4669,4892,7355,1016,6601,4546,1039,3386,2856,3498,546,1906,5155,3174,5095,5634,8421,1581,2896,1471,8159,3769,7961,6927,8402,5219,3082,4347,2584,7174,7405,556,977,2548,1572,6226,3139,737,1953,2235,9824,3106,4161,9330,4836,6097,8575,4352,4675,4401,2599,1332,2208,2218,5917,8928,8440,63,6706,998,1592,5931,7522,8132,828,5566,3840,537,6040,4515,1144,7764,1797,8499,6614,1066,3215,4923,2202,4089,5498,1269,4936,7858,4381,3345,6279,4795,1248,7439,9005,1146,4919,6120,3645,4395,1546,5102,4698,3473,3115,9055,5043,1906,6655,5773,1919,5373,6806,8598,9031,3897,3708,9979,9256,4570,3952,7039,7643,4291,226,3049,9247,5133,3324,1867,3950,7081,3271,3563,2843,3586,6155,1808,5554,958,7758,2033,1866,2158,1535,2627,200,4699,2636,6630,6702,609,7948,8034,6906,2313,1499,2938,6449,957,9077,657,2790,7358,4749,5877,4697,98,2386,7748,6919,7784,8876,6517,1282,5130,5199,1772,2505,2956,997,6397,9579,3602,1512,4950,4794,9,8734,5191,1556,2319,1384,1918,5089,2781,6349,7179,4722,8580,6436,3584,1902,5815,4901,3047,4082,6619,3713,1400,8477,6039,8046,8835,3829,2720,2485,6039,8732,2443,6061,6962,2980,3800,1,5846,4679,4276,5797,374,8941,4765,2743,6662,7107,1129,9912,4898,7409,2117,580,2901,5366,9359,3971,3277,6531,1112,8129,4427,8759,7816,1334,3238,587,2674,4619,357,2689,8529,2302,1074,2194,8773,5641,7387,2075,9816,1065,546,8326,1459,2414,7016,631,2228,6296,7838,8117,9774,3752,5095,6623,4704,9194,5657,205,3623,3951,4201,7340,7,4428,3524,4323,2441,1274,8873,5290,7235,9282,1788,3680,3964,8922,6366,5201,8192,4272,1510,5739,3196,7883,8026,5498,5448,2370,7103,102,5229,5677,6394,1588,2932,1396,9177,1134,7745,9254,9186,373,9696,8850,3099,7354,8649,7911,1834,368,9507,6104,672,1754,7517,3193,5111,1263,1539,5036,3690,546,8427,5107,5521,1575,8230,594,4166,5650,1624,9814,9194,8114,6821,9262,1828,7852,2542,6047,1774,1631,5025,3402,3764,7479,1982,1875,1473,6076,1310,4576,4657,3919,8926,6217,1672,7700,7285,2406,612,2045,1293,1307,3271,3866,2372,6290,37,3719,4914,8638,7632,6771,3133,3072,7572,5535,2318,2236,1147,8469,3859,1055,6163,2020,6862,2161,3435,8850,4769,8335,8268,3061,7336,7654,609,1565,2272,4704,6535,8059,7776,1943,7694,6583,9838,6567,5120,5323,3543,3718,8002,6769,4020,2940,4391,1482,5929,2133,4867,15,7858,5155,4877,8603,4771,8946,7753,5094,2979,9970,1159,6174,803,6968,7186,9568,1049,9625,8705,1088,3127,564,87,4595,4860,9895,2704,8953,6384,2166,6985,3324,2652,9768,2595,7225,1458,7700,9616,2118,2072,9206,2745,6564,1142,389,1910,816,5631,5057,7295,4954,926,2904,757,9784,9288,3232,3224,9344,8014,4906,8080,1839,8254,2679,2938,4060,8832,1803,8658,4459,6443,417,776,3800,1110,2188,4400,9129,5832,5572,5838,3963,6613,6001,5856,332,543,1062,6876,6356,8985,2519,9568,6006,9463,9700,4567,591,6186,5683,9727,913,1158,3698,1392,2678,2357,3126,5338,1862,2020,5709,869,9590,7122,788,2689,9687,797,9303,2727,4416,1825,4036,6517,7324,8452,4956,8992,9385,5238,827,7133,2669,4923,3109,5058,8166,6965,853,2413,4911,3187,7470,4246,1678,1668,7295,5519,76,8415,7102,587,8299,1261,551,5182,9301,9345,3678,9695,2701,2857,8971,6013,8380,4282,8189,8589,96,6151,6333,6762,5859,5017,8086,3258,3413,3385,5803,6213,7554,7850,8298,7447,5523,880,5658,7298,4274,1579,4332,5550,6332,7399,543,9356,4813,4984,6184,6460,4753,2837,299,5329,7225,8272,5698,3893,8982,4429,6094,8300,433,4097,4644,4716,2663,4349,7133,6002,5440,5054,2613,2115,9705,4341,3546,5772,6323,2189,6216,7392,9040,8779,4552,700,8124,6338,1014,8199,2175,1184,5929,8896,1234,3788,2391,7593,6179,2092,1431,6102,8418,7281,968,4537,3492,4327,7418,8042,7952,3307,9440,1567,4775,8716,5834,7576,1698,1237,1365,4328,119,5149,8524,6252,9817,4271,4848,2687,7080,568,4971,4770,7861,6490,9561,5628,7716,1408,7083,9269,4103,4388,1541,5816,3274,2453,2195,2841,4701,321,8638,2227,2682,4614,9365,5095,146,949,529,5536,1017,9254,2559,8773,3090,9488,7324,6030,9580,773,7601,7039,2644,9709,9872,2229,1891,2720,8914,8985,3899,743,3322,1279,172,8934,9569,1380,9505,3220,1058,9802,9219,2092,6413,1160,7809,2324,8466,9687,5749,6426,4674,7590,3506,273,1238,7528,4006,619,4185,2529,9974,9918,7604,1743,4449,6408,5753,3601,980,8916,8107,4738,6053,7059,2719,7947,3522,1205,7427,1284,5979,9191,6670,7368,1900,9358,3605,9138,2353,8843,3375,8924,2085,3576,1850,896,4267,7338,5292,4950,7517,7796,5274,4732,4882,3609,1926,5836,5826,2949,3089,9454,9254,9685,3744,5068,7575,5650,9066,5040,8742,1996,4102,1536,3814,4867,7903,1418,6396,4366,3809,1652,5759,3622,1812,3573,561,4913,771,8406,9433,9452,2359,6800,4888,5215,8380,9596,1146,1171,3379,7188,4768,9967,7123,3116,973,4014,2903,1082,7477,4406,8125,3274,1277,2769,413,3642,9253,8209,9336,3339,8788,6144,3377,7925,596,5691,2031,2348,1669,7394,6600,6623,1809,7074,8896,721,4852,831,9533,8066,4771,8837,4847,9463,3715,8793,6373,5974,6043,4479,5664,4550,5026,990,9044,8816,5988,2777,9971,8439,7544,643,3621,5833,1019,3527,4800,7713,8278,3279,1385,7698,4913,8988,6431,9199,9467,8146,3606,4099,4635,725,1644,8354,3208,1619,9180,5379,6375,9662,6886,3652,2734,2134,4675,6634,4030,5313,597,9400,8145,6557,9884,168,9122,8193,5993,4327,9751,2932,2074,4669,2140,8205,9012,9123,8905,7190,759,881,7343,3896,6418,4209,7012,1431,4344,7415,9789,1132,4746,8819,3463,3418,2053,1996,5035,1477,1089,1236,8505,9922,1203,2866,764,5918,4331,382,8731,2574,2654,3035,8823,2719,2438,576,2779,7214,5710,9295,6360,2435,215,3323,7609,4922,6954,2051,7949,9653,4502,2546,368,8520,8133,9047,6604,1713,4031,9887,5004,5556,5148,8958,8067,1530,3234,6474,2987,909,3007,8007,1950,7788,1114,699,8619,7343,2834,1098,811,1221,470,3997,9367,1035,3851,1484,3724,2082,5650,9089,8736,5195,7410,3919,7412,8277,9357,4010,4033,3796,335,2781,7544,6503,2421,57,1041,4227,6154,6348,2256,4309,2140,288,7353,1678,1815,7556,7323,198,3071,4604,4476,589,8816,9733,6173,2998,3275,6509,5844,4491,2648,1662,8444,1971,1355,3011,7139,1257,2117,7292,1559,3738,8810,2373,7608,5358,4846,7184,748,7609,7821,4684,3287,1331,1343,5754,5997,1954,6246,6513,1522,1119,4104,3160,8685,3960,4214,535,4630,6164,6691,6422,7237,4094,3440,9876,705,8871,1211,3919,2205,3762,1665,4579,1496,7624,8925,1864,3723,1109,9087,7193,2710,8400,8194,3605,2252,3198,9888,2011,3137,2616,8661,6541,8556,4775,9888,2864,301,3250,6212,1050,5445,5925,4006,7814,7090,7597,6828,800,2732,9246,2630,5341,6067,6280,4889,7875,2457,7287,9530,8881,3248,3858,8996,6639,3766,4813,9117,4883,7962,1746,8674,318,6652,6030,4249,4583,1888,6702,9853,4263,7059,6709,916,3103,2716,5530,2556,1819,2848,7847,5670,5040,7102,6049,6939,1391,1795,6633,8363,8184,9437,7154,1836,3399,5163,5032,6531,5439,6535,5418,8456,46,456,1516,6594,9757,8790,5740,889,3146,4206,4694,1628,9112,7657,2550,7312,8771,2977,8244,2536,2546,5964,6505,8948,110,4300,2924,6838,2089,3663,4157,1079,8893,6977,3396,2177,8700,3392,5901,6568,4776,1687,2738,2922,1948,237,9912,16,6279,8880,6422,7923,8505,9812,4976,6354,7774,3306,129,8100,4370,6793,9074,7669,4610,5812,7005,7901,7685,1994,371,2434,8106,8317,2559,5478,8958,676,6652,2603,5545,9706,8824,3606,3694,8143,5566,8714,1519,9856,7817,8558,6454,9329,4214,7386,3021,3233,6854,2611,3462,890,4662,593,7706,5898,7286,4815,1662,4318,7824,2554,6001,5079,5468,9257,9011,7406,5029,2868,7459,2993,3956,4907,2681,2457,6581,7207,9840,7,7583,3107,2048,2395,5690,1254,2657,782,5109,9395,9973,1714,9893,8642,6492,5308,4626,5099,9921,6150,6793,2006,9943,6110,8563,3030,6465,477,7504,2415,3230,1814,8343,6689,9451,4690,8716,6602,7288,797,7718,78,2611,4946,3765,1660,8598,3301,3554,8489,8078,323,3534,1843,2236,2282,4980,3435,6155,2218,6745,5258,6530,8732,5749,9707,4840,6831,2823,2036,2453,4414,7923,2509,8288,844,9799,1382,3477,6019,6729,7963,4037,2112,9669,3370,9657,7956,9195,882,7488,372,233,3272,2899,2153,3571,9973,9256,2441,6750,6752,3198,7025,3666,501,4005,8735,9072,4216,7214,443,4732,9700,2981,6882,66,1691,6119,3344,2979,2457,5658,1591,7710,88,4082,138,9903,3538,4336,6443,3058,4071,9465,6410,4175,3184,7693,6466,1806,3847,5013,77,6824,8519,1007,5786,6684,6595,8963,977,1481,8773,2879,608,8414,7787,945,5151,7469,2793,9643,1102,7248,3210,448,226,7526,369,31,915,7361,9882,8697,3032,1832,4285,1311,2562,5573,7113,9773,6139,7500,4229,9746,4819,306,5244,2162,6640,1421,5843,4530,5322,6359,2603,4117,5809,1024,8623,1215,856,8009,9630,8364,9039,3427,521,3076,4554,5125,4660,570,7452,548,1341,6893,7426,665,1330,6201,459,9934,5088,531,5115,6559,9169,9274,4961,9633,998,3386,2661,9790,7773,6575,3554,7292,9286,5503,2487,9834,3178,9223,6823,9645,1016,1578,8345,7201,1685,3087,3332,9503,5515,4020,4987,8263,2605,6112,1400,2785,9643,2023,6200,3955,3398,5409,8110,7280,6374,569,6568,8263,7670,973,2763,2697,8261,9229,8190,6533,5897,3507,7735,8987,4954,6034,5936,7424,6960,4522,4878,8675,5688,1224,9987,1135,7137,6463,9161,5172,9700,7756,2716,6950,8651,2086,4949,3545,6789,4389,2560,7025,3454,8183,9819,4078,667,8928,3589,6327,5006,9125,3913,4325,2314,8615,4004,803,7699,9266,4600,3417,4000,3631,4121,5529,1894,1035,2205,1440,7542,7846,8811,6243,9152,646,3134,8306,1776,4050,5218,8358,7501,5100,4775,6439,9321,1402,8314,8361,4851,1461,4461,7341,7862,8870,8622,5969,3671,9357,2113,5215,8362,9109,1324,25,7682,2688,2139,4765,9197,1061,5737,9321,3841,7664,4037,3183,388,5708,8592,5039,4242,9675,4572,8187,1837,9154,5064,894,4826,5062,6498,2164,129,9655,7411,7495,9820,5411,6405,8220,5737,1785,2317,7436,4193,5502,1266,2925,9838,8510,4069,8930,6289,4540,6858,6105,6196,9561,7948,2476,6200,2239,6441,7277,6972,5287,1731,7369,7261,302,3040,6219,9535,7240,2935,5909,6806,5582,2599,3563,358,538,7650,9321,3375,249,8525,8889,2262,7688,5438,3175,9326,8212,9391,4921,1581,8048,5139,6645,6081,9288,6504,6382,6847,4614,3798,2890,9124,5313,7893,2374,5195,7711,4296,9605,8640,8175,8133,3566,373,3966,4354,829,263,7355,1709,4435,1197,8017,5823,2003,7989,4273,3068,940,2913,8300,8713,4964,992,9536,1083,3401,7614,3265,6540,6939,1628,2394,4439,4741,5484,1852,6193,9744,726,7738,8710,6695,194,51,283,274,2880,9901,1277,7808,9589,6674,5611,1133,6787,4121,7260,5776,1321,6659,6897,9296,5840,7164,3173,2041,3668,9503,3992,4463,8335,9199,4719,7823,1471,8231,3840,8294,8410,2789,7356,4491,6474,6993,1751,3381,6622,8625,7974,936,4613,9827,8062,3940,7114,2477,11,8606,6089,9190,5263,1531,7641,8553,689,1385,517,4803,1175,6936,3018,4936,1625,2359,3071,9206,2157,1777,7326,2743,8261,6111,6745,6523,468,9654,9451,8783,1599,9748,3117,8786,2421,8951,7985,5887,1097,2666,4768,4633,2398,9124,6343,3375,2396,3454,8278,381,1842,8031,2065,7655,6271,8697,6374,4227,6306,3001,1345,8409,4850,8081,6779,3659,6946,8468,4893,82,1683,3731,2259,6124,4227,8756,4762,9823,755,650,4294,4633,1229,4405,4176,9408,9741,6175,6808,3871,1761,1426,1882,408,26,433,243,3220,3796,4257,2124,6918,2386,2621,7515,1241,1080,4877,5413,1820,7773,7110,4592,9148,8199,2306,4649,2545,7390,4188,6942,3872,24,5253,5388,2134,7609,1335,2069,3084,3214,5500,3114,4959,7507,3740,1441,7246,1940,8678,4225,9302,9708,2799,2552,9318,6115,9807,371,9261,8293,2283,7192,5408,6551,6634,1363,9097,4263,8042,6511,7693,3406,7189,7730,9317,49,9256,5678,7232,6732,8585,6498,5028,4935,8261,6371,5753,2233,5841,7425,140,2419,9537,3993,9567,6303,6381,2974,5026,5274,1367,3349,2618,9790,6994,7421,5693,385,5105,1753,9969,204,6174,6179,3652,2025,2007,332,5521,1306,2184,4755,38,326,4157,5819,4607,4494,222,5563,4699,1472,7214,8699,2641,5511,4746,4790,4268,1414,2205,3614,2803,3153,2878,5314,6662,6856,1260,7528,2932,4241,8553,1386,8908,7455,486,955,6083,6412,392,2555,8277,609,5289,3262,5727,6458,6535,7736,6073,8511,1189,9352,4084,7255,6895,4174,7925,3992,5259,3712,8286,6314,3821,6284,53,8346,2880,3747,8453,1518,5630,2025,5838,5773,9386,6995,8447,6215,7018,8832,8648,2200,8343,1715,584,4319,895,9001,1942,7356,9681,2949,9511,3310,5983,6469,6971,12,3741,2844,991,3749,4521,2071,424,598,2216,2494,8127,9134,2382,2899,9487,8469,8999,6172,6505,4383,8932,1117,3963,5020,3914,8844,5566,6414,7627,5319,5894,9635,646,7890,1351,6658,4657,8917,4196,2268,4309,9864,1737,423,6429,3972,6555,4621,4541,6555,3867,4494,2635,5246,1261,8250,3536,2502,1805,7952,6123,7330,94,3959,9180,7310,422,6676,3726,4652,1616,5601,2953,1757,599,5072,2733,2622,4234,4919,7945,3861,6585,8557,6902,4087,3784,3741,742,2067,5088,9841,6789,3918,4584,7648,5984,5576,8991,911,2593,4110,5665,1243,4042,6154,7486,4412,6049,9399,3392,5166,955,1146,3683,1600,7231,7307,5441,9431,4909,8807,9515,5927,897,7437,5708,1939,8150,348,8124,8967,643,6704,7325,966,4279,8924,1772,8901,9493,5501,8896,4550,1716,2781,3841,8426,5431,2090,2620,847,1529,7920,3373,9682,4154,7070,1708,4096,4899,9752,1938,4463,3693,571,3308,9973,6344,8458,3609,6102,7212,9774,6075,1476,3508,3048,9487,2368,1797,5217,677,5237,7300,5736,3792,7775,4861,6649,6679,7739,930,3883,548,7104,6521,6660,354,8895,7438,8145,9408,5563,5947,2224,3553,4472,4343,7279,9625,8634,1268,9877,3028,9202,3759,1466,5566,7618,658,4014,3585,1400,7409,951,3153,4597,1666,7004,4900,4248,9928,1290,1993,9309,2921,4137,2028,5216,9764,5874,9533,6644,407,5237,603,7138,7973,2991,699,3521,9350,7746,4372,1737,2615,238,8220,8858,257,592,2542,1138,6229,931,8180,2835,9534,3099,2617,4776,1952,3340,7049,99,5645,3920,9338,5760,2576,8232,2713,321,2041,6832,4855,1474,3485,3505,7248,7627,7630,7055,56,5948,4570,3171,7040,8636,1068,1359,6785,7159,4517,6317,4963,6443,7352,4964,7617,9011,1593,8932,6367,3321,3209,4012,6911,5476,5806,7328,1019,930,7073,1928,2407,730,3169,2306,8177,6787,8050,1457,3914,4426,5633,1062,2293,4740,591,4629,7820,4388,8415,2943,6823,2334,6851,4220,9089,8984,72,15,428,4442,8497,7561,7319,247,7915,9473,1768,635,5804,3510,5638,747,3699,2826,8250,3046,4092,3216,579,4076,6359,9976,1773,9876,3861,5827,1267,5411,6658,136,9672,563,4313,7274,8110,2187,8352,3386,3399,6645,1559,8686,5047,1651,1201,480,3897,1357,5447,3556,6366,8068,9551,8402,5028,7346,2017,2897,5383,5494,3276,9769,2073,6228,305,5289,4829,9330,4067,463,5816,4102,9413,4684,807,8051,2648,2518,759,4235,9079,598,4423,3454,5140,596,9054,6717,5700,8089,2050,6499,386,5256,5462,1758,8834,1187,8652,160,1001,3418,1793,2412,77,4128,5098,3529,2863,8042,6090,6046,7696,3558,3833,9564,8362,6193,4050,5216,1449,3351,4685,3157,6320,4865,4600,2244,5904,6444,2396,288,452,4523,9080,8583,7292,8354,6742,1442,5889,468,4770,9819,9511,945,3398,8063,4230,9890,2379,1417,8972,9247,5338,2482,1811,3645,6258,6178,3409,8462,7945,5249,2366,5782,346,3625,3107,2988,6711,6191,6793,5665,494,8426,9287,7965,4527,191,705,7603,6688,4472,6173,7522,1006,5021,7060,8637,9308,9401,8065,2272,6615,1832,9982,3539,7008,6376,1673,6512,6478,3424,883,1853,85,3796,8907,9544,2505,8898,3528,5539,2952,7113,63,9528,5675,7399,3194,7306,2179,1555,262,311,3900,9721,4297,9382,3244,2268,7756,6800,8275,3207,7187,3583,6547,8616,2272,6858,1697,8625,6292,6112,3532,2637,8740,3834,4584,5266,5315,7569,4298,3743,4783,4378,1029,2937,2547,5232,9407,9087,5097,2445,4997,9801,4283,3074,575,5282,4807,6012,2066,9409,4553,4080,7016,3398,6600,7295,2586,7730,4846,3782,7119,7231,3882,4167,8049,5173,8744,8618,7199,2613,379,7222,4909,7479,1291,8598,9950,7716,5389,3436,43,1814,174,3739,4544,4001,7345,6474,1899,376,1920,7433,9682,8123,35,3903,7021,5523,9857,8082,1511,5138,4250,3511,8300,2817,1164,6926,9761,8238,4752,8296,6880,4340,9487,1833,7865,2627,4674,30,1439,3230,8929,6772,284,1440,3409,7069,6803,9573,1465,8572,6403,1247,6219,5317,4081,4895,6294,7958,3322,6113,8461,9318,885,1248,7071,2763,4414,4454,3776,8136,9039,6825,3472,5505,1443,5345,613,9529,8116,2137,9912,5794,7280,1731,6767,5959,7316,2541,7486,1855,3602,1599,6383,8135,2205,7310,231,8060,9282,5243,3035,9302,722,6196,8893,2850,141,2828,5252,3567,6553,4750,2377,8729,7707,4416,6152,4923,6989,2052,528,988,2788,104,587,7821,3241,9023,2887,1196,8456,7026,8532,255,9261,4297,8033,5664,8014,2525,7901,9113,1277,5005,5595,4510,9070,776,2351,9858,4505,9900,9586,7917,5371,689,8864,9159,7198,7775,597,1874,4206,7681,4932,5733,3466,9123,9695,177,8368,8234,2302,61,4041,579,8389,3583,8353,7940,6718,411,669,7420,1586,9886,6515,5874,8670,582,1683,9778,1217,9919,9626,6767,2668,5187,4054,2967,8852,4145,7304,6245,2256,2326,1360,270,4081,5296,3293,2858,1187,1162,2836,2930,7399,6380,2840,2725,3186,6687,1233,2694,4450,9040,7645,1117,7552,4909,7967,9198,8595,9385,293,8045,7887,1752,3807,9969,1129,9324,7295,4775,9004,3124,1916,646,1034,1563,1908,60,56,3184,4119,6291,5894,458,3709,4236,3792,9065,8057,8020,8100,5721,7245,9475,2847,8347,8606,6466,8465,3712,48,3071,8412,1942,6506,596,6698,1638,5524,9182,1324,2385,81,1086,2427,8659,8639,598,9306,8999,3637,9880,1150,8020,979,1675,4497,7474,6871,5439,4337,6371,1377,7498,5562,2564,3268,8127,8139,1935,7500,4983,7118,2185,9268,4579,2802,7217,5721,3379,3452,6090,3051,3067,4277,633,8795,7247,9443,1648,2307,8790,5643,7256,5457,9947,2886,7850,7816,1291,9999,9587,8459,2636,9838,7550,3950,2209,9729,3345,3892,2508,7059,9110,9886,4720,7977,8956,3132,2696,9030,6653,2267,8245,9738,7985,1689,3856,5096,4142,5599,5357,1403,8455,2834,2520,3840,8709,117,3489,6438,8656,5602,7917,4199,7377,9641,1354,4710,7085,989,2652,5629,2893,3711,750,438,1620,9984,7153,7369,2626,4743,2806,4916,7818,1179,2111,4503,8641,4847,7070,1559,876,2034,4952,987,2400,3250,661,8342,6454,5777,5015,7558,6637,5760,4179,1320,563,6189,2544,3752,5112,6093,4765,1321,3023,7496,5249,7931,3772,8716,9709,2592,8063,8346,2631,6002,1770,8665,5550,3777,8126,8989,6624,809,7507,2425,5196,7278,7360,5974,7176,9228,7769,2798,8770,9993,5485,8661,3026,2443,636,5229,5613,4196,7437,3085,7645,3808,7291,8293,5984,4917,5733,683,9440,1913,9043,7952,4738,681,9204,5899,1048,5237,9065,7455,8959,624,5036,3753,8908,5588,6945,8973,837,3626,9431,3729,7303,1712,8770,3281,4942,5480,9005,954,4242,7484,3880,6157,26,2414,2606,1353,868,2559,7140,6591,9425,4273,8633,7317,8706,3818,1396,119,7274,7417,3438,9895,9309,2732,794,5603,8937,7741,6990,9732,5006,7620,3757,9912,7379,2242,1097,3066,2586,4884,325,8879,4034,3887,7792,5786,3510,8017,6228,5825,2371,2488,6984,7692,6287,3246,3459,1562,9613,3162,1459,548,2614,8401,1412,9551,1278,1033,1089,3856,864,9342,1786,2128,3148,7946,1226,8903,9478,6096,54,2043,9213,6366,840,7228,7907,8272,638,4520,3183,6910,6732,4102,2821,6362,7570,7463,4786,7970,4536,6854,6955,9081,2512,7793,6751,5866,3311,1153,4753,2076,7230,5455,1448,7221,2604,1103,6337,4455,990,8212,311,5445,339,9231,5143,6527,4146,736,2257,9064,2150,6427,7318,9525,6050,7376,9639,1014,8776,6107,9288,7225,1711,2528,2149,4893,9016,6538,7948,6552,4424,1796,3765,2163,2765,1701,9424,3359,9833,7301,4432,1543,9654,4913,4426,5366,5892,4109,6788,6829,4486,2820,8566,9776,6897,736,3199,1588,4313,6403,9357,5649,6598,5485,9474,5731,96,1236,5489,6677,9044,9671,6484,1007,8645,1130,9770,4031,6673,5828,1376,886,7445,8602,9262,4451,7470,8208,7321,3060,1778,3438,9051,323,8663,7934,2507,9522,1847,9385,2116,8856,1589,2853,2324,6353,8416,4549,4380,3256,3577,3458,5888,3990,5743,234,794,5857,7631,7157,7583,2990,6361,8506,9549,6975,6822,5997,6136,8085,6425,1113,2054,8945,5132,829,4024,9905,6961,8957,6228,7365,1726,1493,6571,1686,6358,2525,2123,9487,8174,3549,2408,4073,5933,5971,8982,7507,4389,6821,7426,7343,2366,7034,2704,6735,2655,8548,4023,2778,9461,6777,4479,1426,6326,6415,4371,5432,1186,9307,2641,9859,3188,1455,1964,8616,5814,7386,1036,4546,9217,5982,8787,8484,7148,2363,3303,1741,1841,5344,2960,1778,6437,6138,9812,5715,8981,157,405,1684,5464,6007,7150,9717,6269,6971,7580,2620,9365,2252,7803,6880,6038,2413,5109,6189,5862,2505,8416,6345,5976,6701,1536,2406,6655,5389,2271,539,3983,1476,9000,6500,8694,3199,3382,7814,6027,4122,9342,2666,8963,9325,8704,4997,8121,9411,131,9484,5849,4198,8360,2632,338,9513,685,4729,4770,3927,8073,2032,4888,260,3646,6231,3890,7275,7135,8886,5635,8293,80,8770,7120,185,3771,3347,8477,714,7553,4068,5590,433,9358,2532,3602,3481,3531,3011,4712,1230,411,1348,1758,1560,2169,1517,90,4168,8354,2013,5373,4614,8103,979,5071,9954,183,9640,3082,9695,118,1514,8409,1669,3682,5142,9861,1089,2868,8643,4817,1281,7188,6501,2787,144,4470,3919,8553,6596,2265,9123,1601,3669,1608,7839,2944,5243,4368,2948,1215,9707,9685,1046,9972,6127,2039,5768,441,848,3893,5860,7793,493,5366,8471,4001,7925,4661,2139,2051,6194,8865,6633,9285,4668,7368,7212,5853,8923,2892,3740,4326,6040,7555,586,712,4640,9282,2422,3419,546,6585,1938,6086,4911,7586,2575,787,1967,2730,9373,1778,7032,7230,406,5011,4144,735,4871,3720,9773,405,3800,3015,3979,4645,2718,7188,5476,9698,9152,1497,361,996,6827,2335,3928,5834,7882,3141,8163,4821,8940,6539,7544,8560,6249,3522,1643,8796,9366,5780,1162,9128,1088,8463,5981,6559,4224,3043,7681,2887,2270,92,7623,5652,2030,6742,4501,5081,593,2051,7400,4570,752,6016,3989,4526,731,8808,6201,780,5695,1213,7392,7319,8695,7862,1817,1435,1668,7346,568,8134,9448,8792,9632,6062,6531,8730,1099,9711,2231,3133,4823,4662,5431,5929,8454,3004,6069,5104,905,132,6071,9481,3183,2927,2537,4084,5380,8670,7851,9954,5675,4155,9983,6764,1020,6643,33,6729,5227,1446,1928,3395,4477,203,3321,9046,4590,945,6278,3522,3870,6421,4700,7656,2653,1047,1252,1906,3235,7498,8226,9956,6610,4498,4236,3175,1992,5697,4953,7303,4639,162,7962,3142,4590,3662,2946,1532,9350,3934,9553,7039,4360,3367,177,9057,4716,857,4578,445,7866,6789,9172,4366,9532,1874,2817,6178,8809,9400,8443,8607,9324,5201,8862,3061,9289,688,7315,454,8160,7415,5813,9982,1336,310,4341,614,2554,6079,6136,3438,2539,1588,414,2261,8507,925,602,3505,5853,5958,6027,9893,6781,4446,874,4884,8617,9091,3572,3009,5200,8116,2702,2782,1909,1150,4528,500,6156,4225,9794,371,5803,3909,6880,6533,9519,3497,9221,7837,1995,7478,8053,2597,908,5825,2564,3906,9773,717,8484,9479,702,4776,5660,2400,8304,9328,3770,4160,1527,667,12,2841,9560,2031,6055,449,6241,21,7825,7534,9678,3837,5070,9654,2331,3924,1679,5796,6974,963,7911,7083,9663,1485,6326,5839,4690,5420,6093,332,4363,1305,6675,9299,9473,7718,4600,3448,6428,3956,366,3414,7287,8096,1404,9954,7109,9108,114,6355,9175,3104,2893,6285,9665,3124,2217,2229,9078,788,3115,5813,4911,2249,6656,6374,9141,450,8931,1752,3083,3542,8517,1104,5822,392,448,3400,1867,9948,8038,8528,73,6349,7708,8790,1910,2992,3722,9434,2508,6680,559,8509,4889,2807,7457,958,5904,9104,2908,8026,6520,4866,3252,2992,5495,657,7037,6801,7696,5440,7550,1457,2472,8687,4632,2050,4856,2979,6437,4843,6621,8964,5903,3173,5781,5666,3671,4321,6725,6709,6117,6407,5187,7422,3341,3149,7406,8453,9178,8472,44,4126,460,9628,7776,3912,1725,7226,696,3919,7953,3885,6027,3527,4232,3064,3999,2306,9130,3470,6908,2817,8801,7680,2202,1779,2349,9655,4288,1113,3585,1321,2472,4960,223,5903,7591,6203,8048,9391,4061,3163,9428,7536,749,5866,4797,8332,1339,5952,665,3042,8786,9518,2749,9155,6157,9814,2514,3658,5769,8189,1706,4626,5810,1372,500,2923,5641,5669,4321,3115,865,6762,2673,4872,9716,5008,2148,1467,1161,8677,850,5791,8085,508,4567,5114,658,7209,9568,5110,738,8785,5736,9174,6399,5993,3561,647,8204,2110,8421,4650,4660,2237,5160,8964,8079,4318,5888,2481,1645,3284,4716,3649,8724,6421,4571,8451,1466,2315,7461,1814,4713,533,9820,518,2309,9760,9398,6262,9850,407,2363,2121,6464,7197,2777,984,2993,5410,3373,1656,6821,6011,8694,9184,1667,4229,9179,9918,3887,608,8718,3904,2343,3287,5906,7658,3240,578,1610,5736,3459,1010,1997,6785,9142,6208,127,9476,2875,6235,1726,7561,6392,2766,3762,42,9022,5453,3172,8491,2332,1959,1114,224,5213,3578,990,760,762,8792,6231,4019,8206,6584,659,4285,8360,1411,5157,4230,494,4363,3167,8497,9471,7961,2871,8217,3641,5930,6744,2992,1046,4056,7175,6438,235,6964,8306,7898,7172,6890,8169,1819,1902,5935,5342,8843,3227,9698,547,182,7794,9575,8617,9637,9500,9528,3344,1641,3395,3420,7260,589,9539,7534,5082,569,2695,6774,357,7747,7519,9371,934,2894,9184,8680,984,9310,6846,7429,4401,1494,7287,7357,4090,9909,3013,4655,5979,2756,4501,7080,1546,9582,597,8767,9101,5901,1609,1378,2200,6274,6722,695,4275,2194,3448,2864,8961,7478,1406,1519,7131,9904,472,8842,4464,8489,3721,5405,7557,3806,2438,4134,7461,3859,6048,3273,7030,3498,4240,6207,7372,5062,3008,1604,9578,6639,8886,1952,1622,5929,6752,6931,6863,9122,4492,2785,5288,3068,6156,7678,102,5272,2199,9860,3106,6174,780,7812,8212,1885,2128,3007,4349,7160,4276,933,5307,7287,9492,3446,6496,2575,9387,4148,8516,2367,2341,7328,2938,891,9132,1681,780,4385,8820,3608,4036,6515,8037,6516,2049,4077,564,2191,2426,1337,3359,1874,3063,7133,5450,9143,5946,8681,7364,6080,3499,7560,7057,4270,9392,5731,7087,7348,7181,7134,4463,8941,3922,1565,4896,9858,8459,581,3525,1876,1125,3983,3188,82,7602,7903,3119,7653,5308,9187,433,9244,5580,2134,4515,3280,4477,6680,4276,7151,3507,1373,8227,2005,7171,7771,3371,8830,3156,7980,9107,710,7910,6041,4801,9861,9536,9862,6049,879,582,7161,7730,5849,7034,6627,6012,157,5651,8828,8989,5484,1026,1417,2141,4105,5106,2612,3359,4341,7331,6342,4473,7462,1836,2943,3940,3536,5588,5857,2942,4153,9213,8179,3654,5471,2310,5196,4417,2452,4517,4109,5700,1284,8935,4539,1613,1435,8491,40,7798,3305,8199,4992,5511,5505,251,5076,4977,5223,8633,8806,5792,9743,2358,807,6910,2735,4227,4662,9199,4559,9811,9719,2201,14,1143,1941,813,8883,5842,6750,7513,5562,2838,6886,1447,3859,2484,2113,6686,6302,7826,447,3182,5892,8427,1513,7896,8498,1318,4741,2565,5897,6324,8875,3760,1328,8187,1103,5158,6523,687,1521,4898,294,263,1692,6879,3749,6128,2693,9836,7385,7380,1068,8427,9177,7776,3082,2634,2696,9342,7210,4952,5765,254,4787,2351,3533,8011,4862,7000,129,5779,7109,4107,5524,4885,2158,9331,9412,5901,1598,6325,9729,3778,7368,7159,5836,1678,1826,7352,10,4048,5059,2229,7550,2840,3638,1961,3765,545,3057,112,7799,9820,3299,7423,5450,1888,6144,4862,2257,3072,1359,7259,8629,6108,5963,8807,1582,3853,8206,2186,2680,3024,7702,8615,5980,5636,2182,5179,2699,359,6743,5952,8895,976,4821,2852,6827,5003,1012,7845,3636,8426,3851,7172,9248,4134,9024,7053,1014,2136,8000,6737,3867,3767,4803,4200,4030,1456,4305,4067,7801,6688,4299,7018,4589,6130,1660,7619,2347,1487,708,8583,7106,929,2639,1969,1787,2346,6908,8035,363,2622,4294,8441,9799,2099,1715,4660,7153,3194,1616,4680,9221,4132,8146,7619,5377,6545,9650,2013,1988,3411,8449,661,5552,213,5986,6244,9111,1027,2502,2993,7363,870,1855,6845,6126,9544,1785,1784,4911,6097,154,3241,1574,7285,4600,1382,4513,4214,3122,2216,9652,4713,5406,2891,3873,8817,8322,3450,1018,828,3430,9279,8438,4901,9644,7251,3292,6142,1298,4396,7416,261,5943,4044,9885,3527,690,7736,3320,8224,996,928,97,3385,8687,10000,392,668,5033,4636,8121,6204,2492,552,7267,3853,5606,9035,8886,2003,1348,575,5671,9887,9879,1231,1341,6469,4634,2041,7491,3729,9791,6008,6127,1665,4359,6902,700,5904,2744,5056,4532,101,8368,1942,8772,8149,5484,6307,8789,5528,9456,6494,2883,6679,2087,7015,4539,3854,4565,4958,3122,5226,560,7806,4993,1060,4713,2309,5803,5262,3243,211,6071,6623,2991,1232,6003,5318,9573,4724,2107,6234,2500,2841,8585,4232,7189,1033,1549,774,89,397,9374,9197,8521,2439,4892,6750,6187,3504,4007,3454,8537,5505,2920,81,5222,2862,8437,218,7355,5208,7458,5851,6007,2018,6135,2989,8719,2915,5290,8876,3197,9739,8948,4849,4722,159,3855,8635,5118,1405,4349,5301,7586,3359,7865,5933,4691,6320,8721,1829,5400,5734,1248,8275,3382,4070,9426,176,8770,7661,9625,4432,2177,1256,5084,5671,418,4593,2958,1050,1959,8864,5885,5464,8627,6382,4993,4459,7818,1037,8076,3718,36,2741,348,7736,2895,6177,7742,78,8574,4815,7848,8565,437,5202,1023,8660,5697,4369,256,5776,9476,5974,5779,7125,4297,1792,625,613,3362,1103,3696,3223,4797,4997,9074,2047,8494,3077,8770,7333,6807,3994,704,7608,2154,1216,4169,3396,6380,7797,5808,6272,3720,6585,8660,6487,7278,1580,8247,2117,9860,8528,5244,9481,750,5020,9829,7444,7894,7243,3247,4661,8153,1879,1408,2584,3563,1587,7945,5478,3063,6846,6165,9922,9714,3174,4165,995,4555,6597,2161,893,2222,157,5699,18,7758,8622,2525,1074,6826,5892,6255,6127,9410,6750,2471,1271,685,3265,5416,1628,4193,5757,9624,2807,4787,6816,4752,3035,1125,6607,6901,9757,8916,3687,2818,973,9343,9893,7585,2416,3433,7542,4757,1773,8786,9393,9889,5355,9925,1477,1723,4780,7876,3430,3410,5286,927,8150,6685,7923,9906,3979,1713,1424,4870,1560,1958,6948,1431,236,7170,8001,7346,1751,4086,8645,7730,4181,3973,5558,2162,3271,7547,2428,6096,9129,4560,4910,4137,9282,9502,5111,905,4691,424,3546,5525,7732,4782,7900,9906,3564,5281,9264,1328,7046,462,7634,6176,6892,8920,8692,6495,6944,9187,8386,3139,4382,5058,7096,2525,5280,7303,9758,2651,1597,677,2916,4144,9900,2048,9725,4978,1579,9034,9441,9203,1551,5792,7557,7389,548,7016,7696,8586,6534,3119,1696,6049,269,2750,1093,4532,3182,8976,4217,4065,4325,2352,5566,8516,6697,9287,3698,4251,1941,6923,5406,8410,3432,2271,8135,2943,2091,2573,7277,1953,1767,9236,9142,8699,6010,5717,1461,6070,2186,5846,2113,193,8153,5152,701,5870,9123,6956,4473,3532,7562,4512,6641,5145,9598,9366,9372,670,4247,6156,2280,3255,7118,8945,852,5659,7648,1800,11,6503,1668,8650,222,9266,1120,2665,7582,9618,657,6831,3644,5090,6808,7098,9955,9162,3909,2220,3500,5931,7717,5558,9830,8857,3198,4381,9887,4442,696,7183,5370,8660,3985,2988,2481,155,8085,9719,3573,7455,6824,2785,3526,6096,2967,5079,8806,8591,5843,4107,5033,8086,9886,2667,6942,9904,245,5658,7284,9916,1495,2689,1175,860,4932,8091,7441,8332,1464,9770,5896,4196,1806,4431,4804,7550,3134,3799,2196,6566,6604,5988,8074,803,3209,150,8187,274,3051,1261,1294,3729,4320,7162,1454,9248,259,302,3319,1069,2932,1688,4736,1809,1382,1398,219,5569,6966,6779,2253,6878,6892,8380,3315,985,7137,8540,5412,7670,4949,3630,3145,3358,1785,2026,1267,2301,6498,3541,8551,1292,8564,8588,1000,5786,2304,8136,3585,7576,5560,3376,5211,4893,2383,9395,5776,3874,9269,3729,8734,2131,9296,9000,3493,5315,4115,3128,5622,9128,3190,4191,5285,5122,8702,8926,7152,5159,3307,8786,9436,9986,7401,991,163,9081,433,4607,3123,9574,8637,2423,6084,2037,2428,9369,8837,6743,5046,1871,5720,4303,3108,6462,9732,9332,5702,7404,7228,8714,8277,6188,1488,9868,380,5264,9964,4322,9002,4166,5710,8651,660,5000,4149,5298,2039,8982,6092,2810,1521,2220,5874,205,9470,3554,8766,2322,3591,2028,8272,3204,4473,1396,8955,7130,4979,2796,7868,6418,8697,791,7793,7917,7579,7775,3500,7145,7702,6533,8962,1329,3424,3464,6806,646,4473,8401,2490,7826,9402,9142,2387,4227,6888,7521,7623,1000,3362,4655,6932,6885,4956,2371,7605,4501,5587,6038,24,9452,3812,2462,3718,4651,6419,5770,9174,1377,3106,2473,2255,6494,7553,7466,289,6423,8778,8873,2688,5992,402,5504,9313,8964,5289,7138,4777,4041,4360,3921,6545,1314,7417,5911,159,8720,9173,2626,2818,9970,3854,9679,1461,5857,6582,4149,7303,5587,7009,9719,7260,9200,1580,4906,4561,9866,2239,4342,7461,1763,1266,7728,4044,7843,7318,9203,7645,4585,9270,1183,2559,951,764,8159,7745,5689,5825,4010,4067,3082,179,5172,9391,6475,800,1176,5602,2677,8682,1398,8019,6088,5434,8187,6721,7982,1606,2248,4621,7867,6692,4595,3084,1301,7907,5297,6021,671,2623,3335,1824,7655,9828,5019,2627,9550,1030,3076,4306,6347,9390,7225,5114,5946,7277,1640,2883,5008,9587,9736,9492,3003,3460,1409,9744,9314,2767,4091,5168,4196,9337,3091,7522,2006,6662,5180,5089,300,2422,6890,9654,5949,1651,7348,8685,7542,398,326,3122,3421,9777,3357,593,7382,5567,8990,2103,6675,5872,3643,2109,8785,2009,2974,8513,2086,4815,8551,9659,5544,8125,2308,8776,7509,9243,8095,5719,1629,8650,9284,2055,7625,5008,4386,1219,6207,4749,2063,6313,7045,7678,2429,561,8914,3398,315,4635,344,2376,8120,3316,2220,3101,6140,6195,6939,7887,7066,3399,2916,1334,1646,1375,7604,30,9523,3437,689,5552,1041,2915,5537,8661,5179,2978,7879,1775,259,3906,6946,9201,4112,3817,9547,8437,7947,1641,6877,9317,1416,6643,4085,2172,407,4821,2371,6480,4068,9195,3907,3156,992,1619,8075,5646,7145,6461,1036,3473,9997,3730,9797,7700,9531,8529,5726,9355,6743,2961,2334,1878,2535,8714,7210,6260,5415,9481,1455,1515,7211,7469,8489,6722,8671,4528,9473,9409,764,5077,1981,2354,91,5613,7334,2208,8571,9301,1198,4387,3194,9744,9726,3258,5466,1998,2249,2248,1214,1445,6834,5235,5485,9030,2655,7289,5750,7825,2930,9299,5228,2212,4277,1076,7661,1054,6947,9,4688,5064,5672,1107,3171,5760,5607,4230,4206,7709,2312,1903,1682,271,9076,6608,5540,5745,4078,1517,6468,9988,8504,3649,8576,149,6440,422,905,7671,8655,341,5529,2517,7342,9428,243,5518,5512,3497,3704,8184,8871,3693,9604,8154,5930,4654,934,6486,5331,5001,5214,2303,7059,806,472,9224,978,5369,1882,1501,4792,4166,7733,9148,2842,5007,3093,6753,2956,6189,1763,3679,5646,7701,9533,4689,598,3898,602,2817,7657,656,6287,1727,2627,7204,8104,6231,2689,5425,5877,4777,9661,8961,1412,6801,8003,674,2284,2444,7398,2620,6717,8541,2199,8819,2505,6138,8791,5580,163,8885,441,6856,1641,4997,6921,7869,2554,979,2285,8030,2699,9314,7858,987,9984,1063,1153,4219,4551,2024,1476,9669,8865,2578,6626,5610,696,2380,8677,9461,7134,7527,2993,8118,3820,4728,2907,3294,6204,6634,1115,34,3880,8112,5940,6933,56,503,2638,7957,7085,224,4128,9896,2471,5770,1918,725,9269,5229,3124,2893,3759,2998,2476,8947,8483,3780,3602,6965,1660,5686,6020,7770,4399,2737,106,502,6431,8069,7873,7489,5005,1286,201,6426,1580,1309,1282,6869,2853,8517,2819,4239,1052,5853,5100,5398,3483,6774,8952,8183,2207,7879,2381,938,1419,9711,2954,2072,2297,6787,1569,2516,9754,3511,2673,5465,1160,5535,8354,3301,8015,6295,1474,9729,2519,4155,4032,7129,5837,9491,1814,8628,921,3488,2303,8671,8233,6643,5473,1100,687,9472,4219,6696,6363,2566,3568,4579,5062,728,5126,1167,4989,6874,681,5478,6877,1151,4784,5471,7237,6075,5135,3495,4630,9261,7311,7317,5034,740,2816,4254,3874,8523,149,1309,4165,6515,8610,5275,3004,7504,840,2677,1323,5394,2719,9283,8214,4511,1029,8355,8240,1758,1823,8707,4637,9792,942,4945,774,672,1280,9361,2379,8804,4949,991,6452,1786,9870,3045,4220,461,7250,3379,4372,9373,1938,7375,2009,528,6153,3238,2644,554,8195,3098,9778,3473,5062,7995,5350,8448,9806,2320,7706,7195,707,4818,4415,2715,9396,6915,3030,9973,3394,3550,4047,9465,9250,6934,8020,284,906,4746,4542,9855,9465,1039,8681,2836,6215,9596,268,2647,187,3785,3213,6461,8581,4234,3360,7914,5385,6162,6819,2148,3160,4842,4002,5976,5194,3232,2628,7430,8379,390,4808,2707,4251,9573,4707,1323,4511,4626,5161,1609,8997,8676,5809,1583,6008,3381,101,4653,7914,8315,5436,6406,9729,2913,7507,7971,4167,6896,379,9274,5535,3212,1654,4953,6059,6443,6253,971,5447,9484,4242,6516,1757,4392,2929,1149,2496,6950,5052,1923,2563,9003,1882,9698,4576,4208,6619,8936,6070,5113,9738,1507,4680,4548,8916,5900,4033,9218,7041,9325,2357,6441,5839,6234,4280,8713,5707,8274,9564,9499,8656,7844,5707,2840,649,518,1229,9563,3839,1248,4742,3881,8252,1259,2576,74,9584,7718,9004,8706,3404,305,1184,9740,7539,1677,1581,9887,4030,5642,7639,5577,6417,9602,603,8780,609,9314,3825,3376,6267,4707,6051,4950,9295,8213,7003,2105,594,9986,2980,7385,4508,7988,210,5666,6864,5018,8451,3373,9223,7197,9904,1238,5406,6215,5397,8078,1746,6455,8395,2188,2998,9725,5256,7890,4812,9856,659,1064,1625,6095,8473,8503,9309,7175,5161,1998,9032,8993,379,6869,5720,5981,6791,1218,5625,9078,9059,3686,2884,4670,4042,6404,8836,355,4846,4096,3849,7146,719,7722,1356,4425,6768,6285,1246,5121,5321,5696,739,7024,5314,3649,8350,4726,7227,9245,9200,538,8071,7407,8547,633,777,5652,3036,3403,7287,1753,3552,8276,354,3619,8429,6831,3236,4843,8517,7150,940,8845,5128,3013,7621,4610,9764,3380,216,515,1468,6582,3956,2238,9606,2860,2710,3724,9941,9731,4063,6941,4356,2874,9665,5691,2587,1811,8575,9322,8397,1784,2589,8282,3496,8674,4311,6281,6471,5471,7459,5660,1770,9447,4332,5855,2954,544,6192,9655,9737,5051,5345,1464,2195,8129,6355,5854,7361,178,8437,5187,1784,5781,4500,4631,9435,6747,9367,1337,4465,6827,1717,8622,1110,2205,6406,5828,53,7112,7246,2768,1815,5588,2043,3821,1663,9377,3033,5770,1269,8243,9559,2563,4002,1656,4158,3084,3533,6257,3348,4551,9229,3869,5810,9121,4774,2064,3901,5924,6865,2384,5994,1247,8518,8755,9781,1540,3606,5516,4123,1611,8155,2161,8196,8501,5180,9085,2179,34,6556,2858,5978,628,1394,4138,6658,1885,9106,1622,8979,254,3801,4412,4751,5630,5292,8333,6099,8188,4068,9615,7012,5036,1079,3326,9484,1082,6526,6555,9275,8457,1271,4563,865,105,8970,4171,7387,6247,9249,7396,5113,924,2911,6684,8956,4827,5935,9164,1593,3866,7494,8161,4206,6543,1889,5413,5095,2963,7720,4086,8426,4459,6307,7629,1549,3010,5609,4182,3211,6571,1728,2241,3294,949,4939,135,5527,5558,2451,9048,296,4226,435,5769,9674,3880,5674,2995,5069,5405,4505,2499,8872,1557,1807,3762,8491,5715,4586,5030,7588,6738,1306,7377,4726,1402,6764,2979,5834,6368,7057,2168,4596,4137,9583,6369,9623,4209,8581,5482,931,3524,1088,3115,9378,6375,2613,9139,8353,7149,2275,7791,7964,9009,1542,8234,3222,5197,5329,2673,6261,7937,6490,1418,7657,3209,9076,3155,4475,5445,3090,8704,654,1360,3789,9415,1105,2742,1608,8875,7119,8767,7532,881,9832,1263,2379,4169,8250,1387,1488,795,500,9507,4000,8733,3250,6757,7240,9898,375,5556,2972,1198,8270,5965,708,6735,6112,8955,3539,3698,6147,3705,6541,6041,5479,3909,4675,8362,3370,3507,576,9199,5763,9266,3027,6335,5951,5677,9617,7396,8237,1449,249,6444,6881,1374,8158,7783,5090,2380,5027,5330,395,8342,8273,1706,2911,5165,3605,784,3875,1255,9023,8223,9765,3361,4994,2765,5439,4286,5839,9785,6599,2341,1088,3093,3042,7849,6169,4011,1122,5993,4035,6497,8167,8183,2818,8835,2401,7179,6321,7617,2467,6373,8900,5864,9049,139,1507,723,5799,585,8197,4751,168,1109,8560,1492,2418,8359,78,5604,7489,8139,892,8563,6342,3408,9233,5580,4002,5966,8485,5316,6269,9439,1005,8536,1029,3174,9977,2070,9519,474,6501,9965,7661,1220,3867,9180,8704,5488,8658,8083,6411,4982,4701,8153,1054,5079,9851,2567,9460,3203,6106,9677,9562,2457,3396,7282,6308,389,313,9385,6341,2814,6271,3219,5961,7401,6473,1501,1244,6591,6894,5913,8320,6009,5071,9389,7682,9972,6573,8480,3022,1766,3281,3113,9303,803,1738,6452,9278,3219,5432,3022,2812,1491,8201,85,1876,3911,4881,7779,6424,2328,894,5534,6800,4090,6181,1472,991,5768,1877,714,9059,373,3477,4954,2574,6761,246,7379,238,8342,8937,1295,988,8710,550,9177,4820,2261,9273,4251,2115,4157,612,2682,7837,3993,9641,3498,2083,7187,5575,1995,3075,2257,498,4437,9591,8616,4682,6395,2913,4607,6564,4021,1584,716,5823,1884,39,8343,9762,9273,7813,2632,847,7326,7826,8934,4784,8324,8773,6816,7571,8229,294,7862,7460,9401,886,3632,2666,6916,8040,6378,165,9745,6960,143,1353,9390,9006,1287,2972,4990,2149,8866,8372,1391,4095,3793,2445,1315,1345,4131,9548,7296,676,157,8488,4572,681,4608,7706,445,7068,6346,5791,1750,9399,3175,361,4436,432,8235,8763,2652,3670,240,167,7229,1782,623,7919,5034,3058,5887,5367,7762,51,3553,1367,3232,5138,2541,7966,5496,6822,8215,6615,9866,4208,2508,8500,9458,9401,8817,406,7916,2040,7314,7625,8407,8003,811,2159,121,3382,2337,8909,2111,2164,8565,9871,5079,9013,4242,2066,1412,1840,9987,4153,9364,1724,6514,4865,7380,7937,688,1927,562,2403,3140,5661,5107,3417,8574,8059,5142,2573,1621,9092,3052,4703,6305,8848,8708,8135,9825,1244,3484,1254,1117,5589,9634,3062,4518,1294,7891,4849,3304,7506,8829,4137,560,5104,6111,77,4112,5250,4252,8289,57,7685,2949,4530,8463,9869,6355,5737,7913,4097,1888,597,1719,7972,7980,1517,4452,7994,4457,7518,2918,7302,9170,1593,4239,4304,6851,5725,8382,9931,9435,3722,3211,674,1465,2960,7801,504,3327,9961,4625,6303,4751,7525,3968,30,1820,9369,8748,3816,2574,7819,5586,3307,7933,8597,4703,8779,6448,4475,3649,7489,638,4292,8763,2276,1017,4696,478,577,3331,4347,1025,8849,2513,5668,6114,2111,8382,2762,5477,2405,4085,5312,6605,2606,4461,2102,5644,8200,5081,4010,9190,5551,243,438,3269,9230,5069,2548,6500,1084,1414,1283,9134,5253,9179,1361,9057,1823,864,294,1436,4714,8411,7019,6579,2658,1381,1075,9015,9055,6184,338,490,3512,6701,3536,4915,5433,6002,655,6066,5031,6893,5909,218,1808,6240,4624,9895,9721,3958,4138,2523,9650,8253,1077,4380,3464,7248,7397,3778,8926,2432,8174,3656,3815,9054,9880,6867,9482,186,1875,8607,7434,4555,6586,9212,310,9235,4135,8469,5128,8090,329,5740,813,4775,1894,7981,3426,3408,9148,6085,2184,6895,368,1137,7198,595,1232,3781,8094,3058,2217,367,4949,6586,5183,8794,6482,4243,7207,1108,4762,4830,6883,1218,9945,7018,1113,5966,1193,1575,8466,359,9830,585,6819,9519,734,3751,8481,9143,4620,9422,2868,6312,6208,6938,6458,540,135,6684,7695,461,5844,4790,5905,2972,7361,4711,9284,1126,3373,8415,2911,7806,2311,9464,7512,4974,1539,1086,8208,6558,3728,1708,3676,7459,5523,6146,6372,7486,675,8996,2750,2320,5261,967,8274,634,9647,3539,8662,7602,4902,6364,8968,4528,753,1721,177,680,557,7702,6246,7458,3857,7714,67,6726,3019,8474,3361,7906,1266,2179,808,2324,423,5026,6555,602,8677,9304,1472,6914,9438,3467,5854,6197,3032,4152,8852,7626,7405,3236,2949,3070,9021,1442,9204,3780,3613,3605,2613,681,153,6297,752,974,6141,5468,5581,9452,9054,9035,1395,918,4028,5003,4808,1912,3072,3290,6987,3559,2091,5972,6080,9251,7208,2805,911,5270,1741,1855,1778,4344,4443,9192,5839,7932,4379,8350,2647,629,6030,7465,7551,3683,6160,7949,8118,3605,6352,1119,4783,4802,6728,3478,6698,1633,4418,4394,3941,1495,7683,444,3039,8884,1780,5517,1934,1510,5617,3510,3338,584,3159,7154,4282,4144,9652,3105,1662,3038,5632,5883,7638,7291,1478,6858,7658,2413,9017,6614,1856,5509,8118,2128,5216,6624,9063,5076,3795,279,2218,2877,960,318,9046,4608,933,7989,3351,642,9762,9528,6710,6924,9603,3985,9778,4480,9566,297,1839,8268,162,1205,7783,1261,2311,4966,3465,5436,8841,215,2903,1800,7716,1874,4719,6139,5422,6665,8266,2362,8886,4844,9753,979,7454,3942,5604,8666,371,4093,287,6409,3770,370,7384,1635,2180,5519,5580,2037,4460,6383,9978,9987,1414,3743,501,8975,2129,3791,7735,7018,5006,7649,3289,1134,8864,6401,7672,120,4345,4083,2295,4013,4842,2960,9239,4365,1639,2399,4024,1159,6189,1464,906,7902,7353,6192,5397,9764,1261,6484,8399,1242,9112,5123,3129,7864,8744,9235,7917,4366,9033,7397,1516,5699,734,8201,9574,7808,6784,2548,4715,3162,5857,1253,8074,3960,361,1278,5609,9246,7150,3672,7881,346,6765,6940,5378,7357,3312,5419,3841,7611,7156,4106,2443,1151,6635,3914,4309,4322,3373,2583,8804,4055,6321,9198,5139,8484,3014,6928,4349,1258,1759,6678,929,6681,336,2291,5564,2825,4519,3216,1538,8711,2683,9765,5475,8821,8911,2003,7879,4198,2511,5136,2974,5605,5137,3767,5481,8942,7900,3620,2317,7141,8324,4647,2341,5410,1345,2698,4417,9503,976,374,8040,9365,6166,4682,8547,2136,1143,1001,6637,9048,5421,5521,825,415,1870,8752,6529,4865,2213,3531,3026,4400,9903,5626,5067,5173,2417,6067,358,9624,2587,5406,2607,6320,7032,6575,1970,8349,159,4320,4951,9780,9937,624,570,6302,916,6023,5803,9116,5420,5712,1059,7598,3990,6118,186,2035,1016,8561,8945,5534,9910,1426,4659,4042,1868,7718,1642,9659,360,2241,9815,1260,3811,8477,5840,2857,385,5679,1605,1054,6881,5949,5885,4173,8878,7629,5619,2968,7252,231,2325,4912,3170,396,1473,6847,4778,8959,9449,6690,5267,5500,6344,1307,5396,3392,6017,1220,427,7674,3040,2691,3905,9493,2028,7524,3787,7285,7788,2534,8457,8284,5419,1180,5480,8483,8713,8819,8349,3849,7128,1382,878,8368,1209,1409,1251,9052,8199,4988,4733,624,4562,4195,8529,5987,2164,3716,809,4427,8322,2066,5915,3301,8061,213,4752,5625,620,7369,4468,9549,3022,8913,2818,1362,832,7493,4610,1061,4667,2716,1034,9522,5725,8866,3951,7882,3581,4194,1864,6668,6229,5721,6968,2268,3002,1286,442,111,827,2269,5972,6425,1458,9537,1811,5082,4435,3229,6300,8355,4949,1190,8272,2893,9162,685,3181,4819,8799,116,4390,366,1838,8786,5328,7902,8960,663,2069,5219,519,5720,8659,2288,116,8354,2217,3687,6401,9580,3812,1606,2245,1826,9967,3262,9932,4661,4926,3577,2956,1091,7771,2471,4563,3311,5848,1396,339,2243,5794,5333,9295,2696,8620,1577,6113,681,2968,801,2391,7940,2265,344,8305,3265,8919,4949,2577,3142,9429,8503,9163,7784,6566,5193,3174,9181,21,5639,2303,6373,5138,4885,2385,931,2646,2460,2773,3066,828,960,7713,3167,3172,7235,925,4752,461,4334,7350,6255,321,6431,819,3566,3037,6449,8191,7866,7372,5078,6363,7024,8927,6711,1733,4644,6939,3996,9444,5246,9446,6722,4742,1367,2718,2278,8792,4264,4684,1668,6379,3540,7782,6220,5178,9543,356,8110,6668,1679,4257,6237,6412,2205,6914,7970,9118,5940,67,1713,1963,7790,4699,7693,4725,2794,5948,339,3621,4346,5394,2767,6575,231,1509,7259,7346,3879,1056,9977,5719,6039,6094,3593,8301,7530,1183,8662,8630,1590,8523,2788,7244,1371,9363,9920,5242,4188,5849,8112,5074,6107,7933,6318,5782,5738,2515,9858,4047,4806,1688,2570,4191,226,429,5986,8787,5129,8307,2650,3796,2713,5184,243,2098,1527,9726,1496,2534,673,3158,9719,5498,6194,7809,6556,3528,7153,2872,3646,6662,1051,8593,1453,827,8324,819,6562,2136,850,7781,1637,174,6223,3015,582,3843,6423,8922,8309,1597,2933,28,3013,8302,5989,5877,9204,6620,3490,9162,844,740,7903,293,318,6387,3230,6314,6766,2473,9495,6277,8366,4283,4572,5041,8445,9401,8987,2662,4446,3655,2455,6597,1322,1224,2653,1340,66,8468,4639,1451,222,645,7215,3897,5871,8766,4457,8850,2299,2954,2792,5634,5264,4117,5545,3972,7985,8417,4636,3050,392,6693,7248,4934,6573,4218,9133,6920,834,3690,2475,6002,4479,1583,3691,7721,65,118,6087,3221,4798,576,8253,1987,5035,2711,1825,7788,3839,756,5527,4127,8801,2975,4704,5107,7451,3151,2611,6737,6242,15,2783,6712,1992,2801,851,7692,4104,6326,8542,9114,3329,8503,2628,36,7243,5138,8983,122,1017,192,6591,9374,9007,8581,6782,5230,6625,6414,4398,1019,658,9840,8214,1733,9831,743,4413,3733,3353,8832,7256,5460,7767,3392,2707,7461,912,6416,4024,1661,1297,3062,2323,8178,305,8679,2332,4597,979,9987,1851,8295,282,4457,2673,7793,4303,3060,1363,2032,7156,1567,5082,3316,7803,7596,2725,8243,2899,7356,9798,1284,916,9641,9660,7109,3026,2885,9838,7999,1592,5695,2772,4974,2878,4760,9917,1125,8061,3870,9340,3775,4730,3734,8894,2563,5228,7849,2872,6604,4464,290,998,827,6693,7705,2206,5258,6770,7181,31,455,1508,9361,1703,7059,4991,320,4683,378,2205,9134,2715,8213,3023,3535,1146,9796,8837,2101,1143,5022,330,9734,8830,7202,9498,9672,8124,8954,4093,7604,638,8453,5852,8500,501,3834,6838,3548,1208,1452,6657,4992,2274,3016,9101,9451,4183,9179,2349,745,9618,807,3029,2336,6415,5554,1915,2348,9932,6330,3524,7965,3095,7293,5624,2163,1595,8771,6793,1078,4183,4333,5796,2689,2375,6002,1759,8185,6378,7960,5742,2803,1595,7252,3282,7504,5320,4619,3646,9282,5482,1487,4628,7394,4501,3949,8228,2172,1646,743,1013,5444,8762,1349,7138,9294,3928,6233,5018,4003,9240,5881,7547,974,6620,3603,1540,1859,3236,1802,2896,9198,3796,9598,3831,4985,3941,8591,6482,537,120,3590,1807,3392,5318,7248,4317,123,745,3765,6308,3358,8832,4952,4900,3263,3963,7312,6888,4026,6786,5624,4769,5813,1583,6062,9140,2765,6603,9775,2456,8702,1334,8163,896,3069,6168,860,4317,9537,6238,7696,9040,7687,3883,8375,6736,6107,6009,4297,7229,4449,7369,1942,6698,1223,6871,6160,1807,4300,9087,9775,3928,5227,1259,2151,8969,5395,6441,331,3886,1544,4129,3133,5704,1509,232,9352,4411,12,1444,5935,1869,8648,3974,7352,7118,2486,2518,3176,2009,4528,3371,119,2562,2641,6856,2648,9485,3934,7543,3693,4777,7848,7264,282,2632,9523,1050,1784,7740,5651,3114,177,5787,7704,739,9538,457,9250,1722,2283,9832,1695,427,168,9915,1470,8094,6818,2821,6747,18,1395,4001,7271,8957,4920,1872,1091,5505,4736,6759,6087,3105,2295,7412,963,6787,8502,4895,8096,5807,2226,4998,1569,9383,8355,6424,9751,4080,6778,7180,4336,7974,2381,1516,8938,5168,9391,3899,5543,6285,2283,5806,9610,8785,833,4679,6687,7127,7946,8260,681,8171,2222,3380,169,2456,2441,5447,8702,8033,6190,9775,2046,7465,3478,6391,2532,5918,5634,9634,9156,3126,284,1182,6684,4515,9351,2252,4155,3485,1026,4920,5236,7032,2673,6852,4979,1478,1705,2896,5765,4437,9206,9050,6083,4645,7018,6842,5734,2765,8618,6309,8457,2253,7568,9643,8134,3103,5600,5917,9750,4428,5596,238,852,9921,3006,9970,7583,676,9360,2138,8910,5894,9160,7425,9302,1005,7880,7994,7058,2397,5266,1802,9624,2635,6614,8606,5715,6609,5749,2373,2050,180,1002,6756,5275,9796,477,4296,3758,87,7734,3063,5932,3235,5990,2068,9563,8298,7944,832,9326,9246,101,3488,7705,8033,9423,8396,6438,1903,8791,9682,7570,4211,239,43,7495,9370,8355,968,7257,3870,3781,1093,2916,5351,2596,7936,5031,7407,385,6594,2232,6974,5359,5583,6988,5490,4570,5973,6866,6289,4344,2067,2058,5654,9920,141,87,9726,446,5541,8834,2128,2148,3482,7027,4559,2015,2516,2557,5695,670,3007,5130,3882,9458,7909,283,8332,2986,385,8241,9062,7738,2647,9448,593,8999,7637,9267,4334,2406,2666,4245,4293,7338,4880,4718,7990,4812,6358,3130,6538,5584,1269,7223,9782,1678,5436,4176,6740,6614,2681,225,2721,4571,5691,1578,4135,2002,8472,1055,8188,2435,8975,9957,2989,509,5434,7834,7797,9899,7950,7980,9466,2783,6366,7124,8577,2179,2469,732,6008,5214,8834,5306,8772,7379,4434,6837,7111,8486,6642,899,2743,4197,2294,9256,4059,4595,7268,3161,1477,8046,2299,382,9750,8034,3248,8679,4775,1644,6606,4268,2541,3067,3413,9421,9087,5656,9098,5558,9291,2211,4580,5834,6703,3695,7666,7043,3092,5860,6462,1285,5978,2897,1859,8575,9031,4832,8927,2296,7175,1411,2805,7207,8269,6791,9653,6763,8832,3921,8443,6269,6081,122,5281,7447,2716,9841,9701,4318,1166,3441,3186,9162,6029,1980,3814,9577,4410,2572,7941,4905,766,6834,694,6970,8425,162,718,5639,9496,6221,6179,3466,7996,7348,6459,6379,5757,4722,2688,7961,5457,4943,8213,1392,9300,388,1103,6390,76,1299,4351,3532,2278,897,3552,6283,593,2050,7085,280,9881,2568,3630,5892,3765,4075,4297,9088,3651,4098,3157,3788,9439,865,4376,3861,1218,5697,8912,3915,3368,7181,35,7024,4389,7633,4971,1185,29,9487,3710,7942,8888,6112,3194,3034,9980,5518,5951,4762,2859,9154,5342,9292,1120,1110,8307,3260,9439,598,1784,4284,3785,4088,3767,577,1812,5897,6950,2582,4412,5134,2873,7095,2780,3255,4705,5411,3977,1027,8503,1762,5012,6201,2438,4562,2131,982,8253,4068,8298,2350,8651,392,290,7730,4026,1937,3230,4939,2638,4040,3599,4375,8961,9615,670,7953,5932,2742,5497,8448,2580,6588,4177,8291,8955,1433,3391,901,9355,2573,8967,4741,8414,5612,1994,4345,5585,7791,5730,4213,9202,3919,2742,3563,1994,152,693,5323,4008,256,2365,923,688,8020,6772,2978,6767,5519,5834,126,1630,7486,6547,4938,7589,3998,8031,333,9552,9394,4557,563,1764,6681,1700,9739,1552,8909,3385,236,3063,4788,6774,5145,6574,5533,1089,7179,143,2240,9485,2944,8593,298,6846,486,7695,4318,9427,6791,1651,9424,8644,1014,3607,6239,8017,9211,412,1800,5142,1764,3916,78,4471,1144,2985,7440,7026,8944,6242,8293,3735,2191,9839,1965,5687,9724,3335,8046,5348,8197,3453,5280,1777,9440,1590,5406,1308,8147,708,2913,9281,3210,2530,910,3118,3957,8615,6985,1035,1135,2428,8089,8093,3652,1433,1665,6648,6946,8403,483,3241,4870,6162,3233,6455,3759,8597,6049,4862,8953,3411,338,8042,2942,5834,4980,6440,9340,2234,2854,6939,4519,1685,7665,464,6985,4490,7830,8272,293,925,2544,7443,3294,6837,7129,391,9659,661,6671,3048,8879,9389,2048,7078,82,72,141,3507,4632,6270,4953,3423,1743,8301,9496,7742,9770,7521,3868,4587,3929,6447,2589,13,1642,9772,2005,7457,6693,8746,6884,8541,3655,6335,7289,2805,2616,7011,9970,2738,8197,3177,638,9920,4938,4971,4903,1360,4738,6124,9084,4771,1608,2410,7986,6684,214,9189,7627,3566,276,2372,5279,3718,7561,4639,3061,9155,3726,4751,5458,5354,7076,3671,4897,7338,8302,3861,1279,8000,7875,4757,8843,3454,419,7786,6928,5743,2876,8690,4752,8841,9583,6112,5011,4684,2084,8370,884,712,9497,6479,1488,1042,8129,7827,456,2906,1389,9523,2762,3022,1701,1925,1174,5545,2098,1802,6093,3984,2826,2133,2691,4511,3114,8856,3796,126,7936,9958,8870,9740,3584,4782,587,568,6890,4515,3979,2188,1049,6211,5734,2770,128,3851,7707,113,4652,2689,4643,2068,7599,3523,2148,9921,7753,911,1831,4309,5559,4739,3545,9343,3493,953,3713,7179,774,4993,546,7859,512,3435,4844,8104,3327,6372,9242,7063,1339,572,1215,1548,6568,6392,1473,6686,4701,5669,6837,5058,7732,6735,7302,8831,1905,2739,1334,7257,3120,4767,3024,4552,7840,8010,7211,7360,2180,9740,4650,4077,5881,4489,5429,2972,8215,1311,5988,3365,2104,2650,8458,3973,4818,4399,3064,1196,2672,7830,838,9059,6841,75,8995,6855,8316,3382,189,6087,793,2002,7644,5882,8572,5263,3226,2927,18,1393,6559,6819,9043,5210,4687,9870,471,1806,4425,6263,4097,149,8118,4051,9140,6748,5123,8041,7466,9673,9227,7060,6934,4066,4842,8179,9327,7602,2666,8214,3081,4782,7410,318,8846,5399,7450,1118,3167,2067,6860,1674,8243,9498,919,7340,3655,5252,4048,6295,7334,3770,5823,4137,7967,1311,5967,6032,1260,1253,4142,6124,1002,8530,3604,3014,8802,1390,605,8207,5866,3111,5381,6217,664,4448,3480,5812,2048,9072,43,5942,3655,5086,1067,9829,3358,4123,2762,6785,9321,4034,4570,9588,2985,8828,7895,4687,2777,8943,4992,8377,6662,4439,7401,3119,7066,9831,8061,8874,6799,1474,9395,1008,7341,4471,7772,2627,4236,1531,9664,6075,6414,8467,8900,1595,9556,6284,5731,4177,2063,8868,300,7809,6397,250,9059,1098,5026,357,2543,7730,5100,3632,5554,7699,2903,4411,314,6901,9454,2998,8053,4509,7379,4953,4355,5971,4152,1533,621,8659,2684,3129,283,8472,3396,3602,4483,1054,5561,2740,8512,7445,9908,5598,810,783,2949,831,9694,2689,2293,8606,7874,9302,5456,5459,7155,9337,4913,198,3244,5535,5943,6734,9389,5783,4118,7759,6130,3674,877,2182,5669,7282,4965,512,9449,732,7607,5434,3821,1499,4911,3687,3550,8135,5720,2361,1647,19,3720,1655,1960,6013,9239,7342,6881,1722,8359,3378,2164,1575,5957,6113,3397,9125,5527,2956,869,1849,6397,3105,2975,1173,4214,8957,5887,343,6234,2056,4834,6523,6947,3967,2775,88,4744,3171,3036,6268,2121,7537,3670,302,1087,5611,9524,4062,9090,6008,8693,211,726,1661,814,577,4307,4212,5234,615,2757,1968,3236,1762,7512,1397,5979,2639,908,4269,6825,3405,636,6535,2635,3819,3864,5740,7395,6553,143,7947,9005,7818,767,1296,2525,9435,8288,7871,4290,9222,4293,2300,9844,8019,6536,4722,6836,4156,7680,6356,8545,8879,7103,2648,6278,8528,668,295,67,8668,6121,1669,432,5739,8219,4385,1106,5405,9517,3017,8224,1882,3761,2415,5137,4029,4598,3852,3991,7543,1779,4893,4012,8101,5220,3784,4489,6895,7765,1026,892,2728,9964,7248,3991,446,6206,9620,7771,6745,4753,1211,7553,5381,5409,3773,3239,2710,7074,1772,5924,7028,4463,6332,5813,6920,9656,8653,6244,9945,4730,8354,3443,9964,6849,9188,5191,8511,3814,2483,5544,5668,8997,2302,6845,7046,3648,6754,2897,8813,1913,4397,1787,1579,8194,397,3576,6116,2889,2193,210,1194,5319,7071,1639,4095,6456,8104,8566,7811,9266,5199,3693,164,882,8305,1462,4922,2620,3839,2599,7002,9859,1630,2094,4730,7813,1629,4445,6210,815,6480,4909,674,3716,7536,175,5210,9481,3090,8401,1879,8316,8402,5832,8267,6207,6872,5286,9506,2058,8877,7598,223,7595,9777,8252,4886,7068,2485,8323,740,2388,6477,2381,187,7413,2410,6887,5059,6608,2113,4130,3574,9741,4826,5857,8556,8729,9326,5248,8372,714,3954,2851,9190,3180,9508,2636,3025,6561,9406,8687,8853,7476,7835,7675,1275,2542,8120,9655,7430,3173,9696,4235,5314,1398,7606,4351,3172,908,1805,7496,5252,689,4719,9189,9690,3654,7383,8736,5371,5338,976,2412,5715,1647,711,300,8516,1647,3904,2315,1214,7603,6808,4705,2470,2139,7371,34,2607,5435,1354,7510,1258,3522,7295,9390,6233,4718,2900,1049,2060,3229,253,8128,8008,1347,2938,9544,5445,3727,840,2048,9931,2328,5680,463,4329,8463,9987,5892,2998,3998,7926,1838,503,8175,3423,5178,45,5678,8374,8247,7996,9613,2769,6835,3363,268,7325,5138,8523,1711,2037,9727,2624,6145,6360,4596,5783,1528,9962,3181,3334,8691,6098,994,5668,5810,776,1481,4815,7650,2695,9610,3997,5626,9432,5004,8661,3449,1913,1571,3444,1361,3628,1458,5020,3252,9760,8553,5635,1594,1622,658,7979,8450,1809,5321,9249,2692,6212,2331,6076,7668,2495,9353,1117,3627,661,9915,4543,4500,6609,8015,667,650,4215,1488,9683,7516,3721,6995,900,5890,2792,3676,7933,3265,379,491,9026,1257,3767,8389,902,5116,56,2834,4704,5510,9396,7364,1983,87,2329,4961,8082,7321,4274,8178,6905,2592,5105,7897,8832,7992,1074,9761,2246,5126,7053,8085,6305,8303,3959,9560,171,6350,4693,3410,787,3934,86,8059,8041,7255,3569,1632,7070,6030,3288,3497,1376,1749,3789,3169,5846,9721,5783,4279,3330,4603,6212,4321,2525,9374,7563,1218,9582,2470,9954,3846,7595,9989,7172,2862,319,6350,7353,8896,9073,9197,7724,4902,6721,3491,2787,7880,8648,1879,2605,7130,975,8090,9250,7228,5796,7561,2038,1948,7454,1413,5451,7813,7682,8575,3045,3984,6069,7018,3052,8484,6409,8283,8151,6360,5423,5696,7902,4538,3263,2000,5135,8750,9771,7403,9817,1017,799,9776,4085,5804,7642,8941,1863,7055,3320,5350,6178,9809,7692,2346,4011,2833,8129,136,2956,233,7146,121,4581,2750,8867,4574,3466,8739,585,994,2972,6662,1451,4510,1314,7498,1993,6841,1891,8099,4251,3668,3415,1937,9540,3825,9286,9160,4176,3542,2814,5639,9953,336,6912,5260,8198,7813,6853,8954,873,1857,9574,957,2152,9517,1048,1305,3574,5544,6047,3549,3112,8960,13,4948,5828,9320,4803,8327,1852,5060,5219,8808,7321,6450,9228,4806,9782,6111,8687,2787,4251,9981,2790,7857,4743,4508,4224,9261,8580,4893,1233,8927,6207,7984,1877,716,6427,3981,3364,6054,4197,5121,7928,4675,5300,8033,3658,2628,7889,8049,5502,287,3852,9706,720,8886,7225,1973,3075,3196,2619,3923,8249,845,7802,700,6678,3780,6929,4656,6594,3476,4353,1253,5219,6082,5484,9465,4063,9415,9474,7407,9034,9215,9507,194,1906,1248,9938,4976,7563,2501,5550,4502,5149,4889,191,2569,4895,3567,6062,5953,8389,2758,8748,7704,7164,702,8568,1140,2339,8286,1957,7250,1367,5687,4104,9404,3691,6202,6862,4455,5715,2171,9490,1548,208,6174,8768,4414,2566,4576,8361,8954,2982,4406,8505,7528,1943,3956,550,7781,8115,7045,1684,1709,4546,5344,9799,7379,5482,6397,2640,7047,1391,1183,4655,9548,9517,5675,6473,8597,5472,2376,3212,828,9814,9467,7136,6002,8592,9125,8743,7910,4579,254,4608,5763,3050,904,6200,2851,3423,4922,2314,9971,1601,5073,4123,8260,1693,4260,7591,1728,6134,2869,5001,6098,758,3217,7734,3070,9476,110,8042,7271,7683,2683,6784,3009,5680,5423,5111,9010,7204,9080,1905,1037,3353,9492,2080,9323,1843,2084,8934,1522,2612,2555,104,5330,2440,8637,78,3596,556,235,2928,7632,5803,8404,4700,8692,8832,2215,54,9216,9132,7964,6004,4347,9555,2634,6341,2375,7064,6103,8893,9328,1723,1161,9316,6794,3798,7728,4512,6651,6081,7536,4716,7509,3860,4535,1566,7733,697,4627,4975,8173,638,161,9321,4785,8739,9952,6769,2733,3628,4640,3962,7445,2286,4595,930,6026,8107,7569,5149,5627,3489,7225,5833,577,9857,6643,5057,3358,5496,6150,7036,6557,2663,4732,33,7489,7934,4195,7675,3606,1376,2997,7710,9806,3426,8001,5288,1655,259,4706,4600,994,7902,5820,5460,4598,6161,2940,8272,6589,1791,8177,4973,6864,4915,9005,8174,2788,5207,5658,9561,2333,9850,6856,5704,8812,3885,5886,8203,7260,8519,1781,6270,6028,3057,5848,2227,6317,1807,7102,9629,8510,7099,7412,5458,9133,3412,715,9168,1919,4299,747,2864,2548,8917,6540,5863,6531,1503,2428,555,1093,1132,8078,8352,3810,6930,9108,555,6279,5476,5028,6213,1782,4535,609,732,1799,2679,1708,8928,4381,9609,9100,6009,8341,1816,4158,3389,7320,5619,8653,5755,1517,1791,7704,3968,81,5727,2423,1190,947,7009,6588,7272,6144,2046,5405,584,9298,732,6102,7401,9582,7926,4226,445,5723,5113,9370,5504,8219,323,7527,3850,5070,4116,3174,1587,2580,1443,2538,2738,338,3030,1164,5159,8243,1818,6521,105,1783,3855,5231,2259,870,2472,3011,3763,1065,65,6645,5421,4724,8152,375,5984,2236,7869,9249,7520,5439,9544,9870,1216,5515,8191,1386,6652,7423,8833,9821,1429,3601,3448,685,3341,4321,7021,7196,611,1784,9281,4202,5100,6979,2903,1300,4417,18,3186,2794,8468,6481,2687,272,2862,4454,21,1240,5919,1367,9649,4779,4985,363,5185,2970,6482,2033,9707,2116,1433,766,4301,4139,6169,9067,9049,9848,2348,8010,3785,6893,8089,1191,1582,5011,7571,2833,6630,9241,3733,4367,4293,4571,6959,4528,6890,6161,6212,5143,233,154,7432,681,4170,8431,6210,9438,6789,8367,8304,1641,7145,875,6935,306,65,7066,5944,7055,1550,9569,4195,3937,8130,8604,5881,4232,7219,359,8252,4857,6316,5263,8171,2770,4903,5923,691,9914,1920,1686,4690,7552,3083,4574,3937,8509,693,9580,8660,992,1387,4668,9195,8726,9673,8509,5807,515,9765,5685,69,9806,3222,4959,929,4194,964,7828,4993,2700,5532,952,9047,2278,9044,2701,1050,3456,6082,7454,3345,2712,3782,8032,8937,6105,3644,476,1365,5193,1260,6,3502,4175,8437,3447,6590,8527,9592,3665,4820,5966,5538,4058,6402,6632,4535,8134,5792,6042,5549,6858,8719,7070,6000,1501,5064,6544,6966,6022,3442,9,5146,380,6780,9106,6791,4675,5968,394,3868,6685,6151,5214,8054,7723,9087,6423,2938,1197,1430,3794,1043,6058,6667,228,1050,7821,8494,1816,4437,7213,3261,1696,2649,8283,8404,6688,3451,2806,6589,8972,2077,1655,5402,2509,5669,7709,169,3486,2433,8168,9562,7329,1832,4163,5832,1727,2232,1065,5144,2176,5441,9310,6776,3760,6663,6767,7849,9929,8320,6597,7770,3192,8429,4736,5832,180,4397,907,5514,8371,842,6003,4167,9291,6372,6238,3699,3998,9103,8220,7338,8047,186,6274,1129,7869,7534,2137,4062,3078,6918,105,9704,1660,5368,1080,323,3598,4773,8873,5238,8353,4910,1755,5761,6239,189,7104,6913,2248,1922,2468,4461,1359,3451,3243,3134,5269,7065,1622,1034,6448,7614,5304,2527,1324,6328,4015,6633,3840,3953,5637,6687,6296,476,9417,5231,1945,3549,7941,5593,6267,1347,900,1507,7562,6304,4095,6227,8652,9824,2573,1750,2350,7101,3034,9203,8450,1130,2208,1432,6609,6206,8064,9144,1151,3526,8582,4916,7483,1182,5839,2691,9877,6401,6148,7243,8299,813,9755,3038,414,808,9578,3968,6416,2611,9763,2247,1201,3723,1962,4839,4386,1901,6157,2744,102,7032,7271,7648,9157,2780,8888,6559,6980,2225,6191,80,2221,4165,8019,8331,6395,4496,2955,4146,2462,4275,8892,237,8492,2562,5749,168,2551,9474,186,2022,5588,1022,1925,7295,3105,3989,3854,8231,9138,559,1394,1318,6295,7491,8705,2407,8916,6875,5465,435,8917,231,160,1140,8884,5230,1391,1631,8076,2997,5306,7359,2981,148,1488,9838,7963,6330,525,7789,2920,2000,7242,699,1406,1377,5866,153,5584,1454,1468,7068,6016,9766,5135,8334,2648,9711,3930,109,9704,615,7464,3759,520,7310,4316,8730,9147,6522,8115,6406,7593,5280,4120,2623,5668,7325,9521,7720,7568,7311,3922,9608,658,7582,2309,9028,7,1238,5673,6611,4008,3545,9328,5332,4091,9259,3328,157,8255,3516,4707,7259,6943,7848,985,6927,662,789,4254,8927,1351,9856,6540,9272,7870,5890,7636,8666,5291,940,771,768,6735,7685,3320,6915,8794,488,9379,1752,9910,9107,8501,5418,7825,1669,8847,2738,9622,675,2079,423,8208,8205,3172,3171,2102,6190,9384,8851,3814,8996,2503,2208,3480,1561,2744,4743,4706,4317,1329,3559,6939,5227,5392,1275,5539,7821,2930,2272,752,6373,7552,9238,6465,3745,9554,5300,3327,6962,3552,5780,2793,8943,1557,5044,7787,2382,9523,8035,5423,7601,6667,8524,7225,2917,838,8367,3280,4671,5223,8755,344,4306,6597,7328,105,1744,4854,9139,7478,3158,4657,4623,8289,7242,343,3238,5524,580,4169,404,9518,8873,9836,4909,5437,9914,3411,1957,5352,6804,142,4453,3982,8916,3202,1547,7498,2098,9608,9190,9275,1808,5773,6915,3504,2517,2692,7581,4757,1931,6256,4623,1116,3345,6291,1291,9421,2183,2951,812,4556,9838,2900,2520,6787,7005,3682,4798,8704,1620,9241,3031,7684,6205,9802,61,3113,2814,8678,2912,229,7705,7918,7248,1889,5053,5822,9150,9215,3884,7812,2995,9499,5630,1127,3297,7196,3108,8816,9661,954,5468,2530,426,1199,4819,6009,2728,8810,8013,6252,9586,1363,7757,5224,7537,1843,1399,2792,7732,2376,1803,9175,162,7135,9360,9097,8890,1977,2363,3443,5764,1074,4231,9558,8361,1706,5618,5993,7840,9021,3504,9562,6222,745,6710,8055,3883,3865,4439,3290,5270,7200,2386,1532,1752,4057,7405,9851,5277,4639,2250,3902,4775,5452,7473,8575,5279,5577,896,5451,2117,2100,6803,3022,4008,8509,4739,8850,4680,4147,2635,6049,8041,5777,8891,4088,383,5649,5164,6907,2951,2748,7121,9185,5669,5405,5909,8303,678,800,9699,2003,7279,1070,9160,6735,8802,4112,1857,4112,4489,5165,5650,1197,3872,3772,5996,4421,9460,4267,524,6842,9745,7815,5640,9260,6521,8735,8598,9785,3571,2888,8574,8742,3507,8494,791,9333,6020,4826,4775,4768,5411,4981,7576,161,886,7261,6460,6207,337,2830,2732,1783,3953,9389,7552,4166,8595,4705,497,3692,7632,2547,9865,6707,2373,8510,8896,4717,8500,5112,5459,6639,2608,6791,2004,6174,4611,20,1232,5175,8689,7063,9475,3571,9532,6967,957,1055,1453,3635,4314,3754,9239,1608,1738,3414,379,9079,7733,5098,6051,4164,4301,5269,5787,2630,9669,2107,7146,7526,2076,6707,8622,6994,8164,579,2525,945,967,2439,4597,81,3307,5914,4509,4849,7811,8739,3763,4083,3853,8694,2337,5862,7793,4736,3524,5704,2170,9352,7836,7199,9605,1616,4846,930,9373,7971,6175,8067,9067,692,5937,8314,4811,7104,8457,3706,4879,988,2367,1990,9444,6633,5223,2170,4241,5332,1670,7993,6796,671,8207,9784,8141,292,4679,4570,6121,6264,6268,1721,4398,9806,5678,9274,6971,655,4229,8690,8962,365,4106,4497,9434,5030,3120,5204,662,76,796,9164,9711,5180,3519,5133,870,3204,3377,7108,5206,5462,7618,3095,3487,3671,8060,7264,1761,8681,907,4619,1440,3416,622,5391,7450,9818,9340,5916,6534,7419,6213,9440,4205,1799,9723,2804,3365,3606,5463,5027,8807,6538,1687,5216,6252,4437,6990,4927,4929,4677,4075,7797,7580,1173,5154,6946,3088,7716,2420,4234,6615,838,2449,5203,6927,7890,7186,7179,8514,4377,4957,3144,6290,8753,887,7724,8697,511,9144,4953,7779,6735,5095,8063,4142,5719,660,4283,9734,24,7483,1841,3668,617,4200,9993,6027,9911,1866,8313,2243,5610,5621,6927,4778,9014,801,4670,3381,3906,7319,2999,7512,6338,545,1425,2025,8054,6342,658,5121,9496,231,6347,3495,7013,6551,3588,8460,9794,6420,5592,8142,5212,1649,7821,4349,2640,3883,2513,137,8142,355,2025,2777,1629,9704,9077,8769,5560,8328,4532,9200,8171,7188,8638,4320,3796,961,3777,4396,3692,3808,9106,8356,326,1955,7749,598,6699,6374,7973,959,711,941,924,360,4994,1219,9641,8320,7539,5294,6447,5616,7860,9141,1836,2129,7986,3494,1852,1814,5163,4822,5954,9664,2187,4222,9157,6105,2848,4158,5160,2258,2405,4508,8686,468,3772,2881,3450,6110,9450,5094,1223,7672,3299,9946,8106,2047,5386,4432,3435,97,8228,3124,257,2853,1876,2227,1130,7939,1244,1318,2496,5590,3874,7412,2431,9574,8733,7450,8437,4198,8897,8133,1107,3040,2155,5491,1168,3486,5279,4317,8903,4006,3483,5686,8338,94,4082,2352,3995,6180,5419,2021,6140,7289,9244,2472,7171,7235,9715,3811,2969,3435,8431,3637,3515,8401,1556,323,3116,5873,5847,7583,5124,4723,6844,7260,2426,146,4445,7272,6600,4503,9161,8233,5191,9561,9602,5767,3358,4069,6915,3288,7054,3578,8702,213,1902,5736,8071,9580,6372,6321,7276,913,5378,2089,8521,432,2543,1894,900,7819,1096,5543,9494,9608,2230,8967,8303,6818,5936,6670,9916,5810,8202,3009,375,4776,9211,722,6166,4252,9843,8290,6975,2308,9823,3425,9331,4749,686,6452,8821,2737,3648,7891,9541,8166,4252,6717,835,4488,5507,4084,5232,2066,4441,1010,828,8060,5667,441,1749,9935,6248,2229,1103,5435,5007,3952,4050,6804,9227,3760,7359,3715,1707,540,7475,5141,3247,3991,8882,6722,682,612,6339,5116,1195,5483,609,9559,9386,1937,2518,9196,7760,8811,526,9849,496,6157,4248,9697,7017,4582,9320,5475,7411,7202,2297,6518,2623,752,4197,8669,4915,7383,6697,7461,3142,5610,519,5731,3254,721,5259,7810,9603,3529,8465,3992,272,9276,8342,5363,6074,3945,724,2247,9447,5613,8147,5342,5298,4459,2922,33,9453,9397,5654,3000,2525,2487,882,4103,1095,7724,6684,5968,588,6562,4395,7825,6528,8367,710,7024,6693,758,2637,7166,9147,7874,8728,1812,8122,3060,8019,4299,7383,7729,9514,7919,5381,2988,1774,3008,3856,7477,3495,6116,6735,5964,9054,4921,7782,5053,4157,7861,2907,3755,3354,811,9282,2163,5185,943,731,9126,2392,6079,2896,2150,5690,476,5723,1539,580,6457,3168,5483,1916,5814,4646,1272,9293,9507,3459,7846,9357,5024,8634,8268,7338,7716,6015,5861,7169,1080,6000,3602,8011,8299,8608,1857,4898,6576,6627,8476,3855,6000,1412,1090,5282,1460,3345,4700,8847,8793,5198,8822,9096,8897,2141,2236,4436,8332,1322,5356,399,3213,3169,3457,2777,2226,878,7141,1923,4615,4894,1348,6155,6319,7568,1625,6170,9784,3317,2425,5487,401,7725,8242,2228,5089,8059,1473,6400,2212,4001,5921,6798,4672,6421,4899,9694,5293,1799,5698,6496,3697,5414,9692,8226,3458,801,7498,3892,7531,4621,6845,2385,7673,8974,7844,1759,4820,1496,8810,6958,1826,7050,2918,2349,7552,8301,4578,5132,6046,862,7204,666,8842,1998,7817,4700,8893,3624,7746,320,2406,5537,3365,1719,3789,5835,644,5900,8451,3370,6677,5822,5880,8910,5269,6999,6657,9442,4551,9799,8696,3701,7362,9814,8811,9967,1406,4882,282,3662,7226,7603,5940,4989,1285,7457,7772,7417,1270,5717,240,8637,7875,2298,4523,4521,9303,9864,8729,6266,6265,9246,6467,2648,1269,9016,3782,5539,8106,7637,4347,3780,13,5004,8038,7775,717,2085,7360,4530,854,2019,2430,6769,9656,752,5056,5104,3736,275,6138,3906,8886,7304,2368,9617,5322,2379,4229,5491,2943,6025,5178,8067,4064,711,1799,814,7540,5138,3809,306,9164,1367,2388,2203,5918,5783,8281,2618,4852,2698,7100,6637,1629,7163,9621,6838,396,3980,4996,1291,7372,3623,5736,2211,9062,6020,256,979,2659,149,1140,7003,3837,9098,1852,9773,2639,170,1678,7279,4352,9424,6921,2047,3608,3695,7854,2258,2629,6049,7997,3222,1029,1643,9032,1090,6638,5825,2492,7283,787,1163,7077,3357,9785,2829,5568,3739,5305,5099,8002,3490,120,4301,8448,4937,1109,7022,336,5952,3832,5732,8024,7279,5869,3213,2773,8811,9123,6054,3744,6572,8057,7015,7540,3695,5056,8584,904,461,9296,8579,9671,2098,6346,4657,7329,9366,3333,1686,2154,5900,7346,4043,3125,4664,7193,7288,6303,4776,7887,5204,448,7823,5245,590,8384,6332,833,2846,4417,3707,3661,4533,6553,1933,1746,5669,731,9280,9171,7239,4419,154,6610,1657,3639,2261,8744,6662,1299,7891,7853,8755,65,9482,1073,2681,4194,636,746,2429,5600,1260,1531,8097,6825,6542,8593,6707,9571,4391,957,4059,450,6509,9252,9464,8737,4998,6915,3342,7446,4158,5497,9768,3372,97,9197,1925,2309,1954,5327,4215,8693,4137,7164,2980,2946,4820,9085,6457,143,2860,7876,5577,3598,3642,22,625,5170,4331,3878,5089,8705,5770,9385,8558,1237,8895,2876,5830,3716,6427,4478,8909,9819,5182,7163,6227,1059,9425,6629,6782,3813,3281,6191,4963,7636,7504,3955,3053,3869,6262,1392,5487,2064,5736,1045,3029,436,1376,1358,3276,7531,8353,9400,6149,5903,6447,1659,3358,6833,8050,8101,3574,46,2563,3794,2115,5159,4785,3756,5884,4178,8780,3684,6410,6814,6004,2468,2684,6591,7789,5693,4225,698,8046,1055,4482,292,407,9843,9938,703,8289,7311,8902,9387,905,8294,8100,157,499,4188,5738,6448,7689,2212,9939,4770,2155,6995,6523,4762,5206,1665,4339,9646,7546,7252,5145,7930,6370,8433,4393,3324,8837,1322,7425,4500,7528,8328,3816,21,4776,3726,2653,8164,3438,8724,2100,1296,9370,5705,3927,998,6503,8180,7584,4253,5325,3718,58,7212,4799,8945,6556,4051,2673,4782,1744,8459,3558,4599,192,806,2099,9820,26,2417,4393,3507,5903,6609,3198,5303,4142,4316,6188,6665,253,3196,7956,8660,9314,7079,881,7993,3490,385,4780,293,1912,5175,3597,1024,8212,4063,3652,9544,8471,785,7881,3343,6161,6070,4220,8101,5431,6310,2836,3271,9158,7991,4830,3172,3078,6647,8972,5143,2260,6962,9803,3795,4823,354,2563,120,9643,9730,8478,1274,7881,8627,5486,1806,2231,18,3709,7992,1296,7097,3260,8861,2485,9928,1348,5988,4233,2635,5572,9019,1499,4324,6813,8918,9664,6799,4661,1332,9223,1818,8068,4000,2847,9099,1307,6137,4670,3112,4950,5160,7116,8081,2579,3939,8688,3298,7854,9194,3138,6076,2712,2930,8681,9673,3311,9997,370,7492,3630,4030,8853,8682,5752,3928,6353,9614,9314,7846,7957,3810,249,2508,5397,9960,5061,8496,2557,5766,9285,3207,7881,7744,3767,7983,4493,1299,5948,5601,4738,399,2575,2845,909,7044,2798,2167,2811,1715,4129,609,1366,7955,3910,3835,5985,5719,4368,459,1434,9261,5454,8002,3588,1706,2216,4700,1326,236,3967,4332,4913,4042,3050,3228,8992,3585,5540,8378,3315,1444,8676,78,9528,966,3165,7194,9271,3479,9538,5935,9206,3802,7745,2340,9914,5476,5260,9145,5324,7171,2034,9315,1950,9311,8939,4415,2279,5530,4830,4846,4384,9370,9026,7822,2946,5048,875,5827,242,6401,1099,7405,7839,3231,3326,4927,801,3310,7990,4531,8910,7684,6560,3786,9922,7158,8642,7868,8264,1663,105,8591,6182,6884,4538,3785,3881,5723,5883,2794,3269,3941,6440,2640,5998,664,1697,9494,4855,3204,8607,3511,7799,968,6020,4706,9680,3584,484,1653,2425,9632,4998,5810,9935,4786,2887,9216,4776,6192,3220,6811,3050,6384,6493,5428,9866,8508,2936,351,147,8891,3366,7977,1146,759,4743,7441,4546,848,1975,3236,8600,289,7318,366,94,5393,3863,5844,5058,9293,1229,2933,766,2944,723,7336,8928,3926,3641,1892,8579,7094,3294,7163,5508,495,6728,8990,311,7504,8410,1016,6167,240,9903,7317,9214,3807,128,9512,2864,8155,4436,7769,2372,4004,8182,3831,3676,3039,5118,7804,3968,8436,7564,8888,1288,7992,3858,8780,7028,3499,115,8541,8310,9578,8331,3196,928,160,7126,6628,4982,3843,6266,7661,91,5577,2347,4706,582,4446,7682,6714,6094,7764,7737,5541,2452,6762,6929,8343,3277,7975,6169,1352,9719,6797,9811,8816,6094,1437,2795,8929,8549,9587,6254,4423,3162,2635,6575,8755,4774,6038,5397,1335,8538,3931,6953,5628,2517,254,9745,9083,7102,69,1320,5093,5983,5932,3329,1497,1260,358,6323,5145,3333,7156,6303,4303,2443,2520,3613,7060,7700,8656,506,7303,4443,4495,2286,623,5209,7752,5892,9092,9666,6717,6406,9897,7299,4975,412,6514,418,5288,3120,8811,6301,1053,6826,6978,3479,7743,5201,1139,6277,28,375,3354,2441,1779,5545,8343,11,7764,2723,5314,8121,54,5435,1568,3289,9293,8794,6601,5741,2308,8559,7234,6242,7745,868,6706,4217,2529,232,7581,472,362,3650,6524,5432,1035,8029,7352,6744,9117,7573,3129,5935,2416,959,8593,1233,8254,1330,455,3867,7673,6516,6147,686,8307,483,8477,5234,4077,191,6597,7227,7955,2568,2,6383,7484,4016,7332,9465,3253,534,1628,5877,4349,8468,7595,6451,3000,6360,4144,3995,4033,7300,9518,836,9147,962,8403,6742,8352,1257,9458,82,3788,6742,8512,45,8078,9106,8199,8615,3064,7387,9490,4938,7734,9632,4502,1170,6140,2357,8207,4639,8523,3548,5374,8589,681,468,8357,9811,4856,3626,4199,3499,7177,8114,2697,9534,1374,97,762,5262,5737,5098,3601,3571,5240,1825,7404,852,6749,3704,5816,9438,9350,572,66,2054,3138,526,8404,4595,3976,1031,8241,3098,3279,7214,9340,1206,3357,2987,5204,2401,9493,6293,7296,3240,3844,4114,716,8845,6572,9291,4001,5215,909,1780,8428,8431,2963,7218,4624,8454,906,5077,1177,7896,8308,8659,4705,5678,5597,3881,1139,6060,4073,509,4847,8032,8854,1132,63,6695,1567,3556,6219,8467,5494,1433,9050,5375,2267,1643,7572,8925,2093,9528,7391,4978,299,7479,1921,2414,4013,5436,5586,6385,5304,1349,7315,8114,7373,9868,5622,1446,8043,579,3077,1939,2086,1468,1109,8802,7145,7573,913,9651,1179,6916,7616,8152,566,7822,5197,7525,3633,5277,6570,5634,7033,2867,3023,1993,5018,1135,1338,296,9495,7061,4821,8223,2096,8759,6236,7129,1516,1229,2485,7400,7187,724,1322,714,9435,3329,685,9138,6886,6100,9925,6351,5330,3006,6478,2211,324,160,3333,9605,2583,8675,7413,9787,5701,9386,3534,2564,5653,6711,4478,4466,6418,3352,6926,439,5031,9439,5314,8421,5736,9963,9424,8088,7962,777,3445,1023,1634,153,3741,7554,4781,966,7458,1796,8277,4567,3264,3246,509,5217,4749,5350,5958,2111,2324,8036,8460,1596,4417,4794,814,1126,4777,2847,5483,652,9456,1383,2361,1688,4114,5963,999,9784,9357,911,965,1986,1155,523,5711,4598,5838,5042,245,7002,4292,2451,5426,2465,5150,5616,448,7618,9189,7044,915,9629,352,8365,8067,7216,6404,4813,6632,3550,5153,6183,3871,3258,9773,2643,9543,8958,2679,8202,3751,330,57,7827,7947,891,1410,3794,5234,8797,6754,1441,5732,6936,2788,4582,9637,3342,9622,4967,4426,7688,3740,8876,4292,4113,8997,8981,5143,1450,3823,5840,4605,4454,6293,1989,3028,8813,8181,827,3319,1888,6925,380,6162,9420,8671,7222,9895,2963,413,7935,5684,1979,3044,9307,7789,2197,2924,7511,179,4232,5559,1746,6424,3398,7075,1619,8630,2508,6261,8003,2539,7097,7738,7391,2716,5553,9316,9490,919,1475,6388,3110,4445,5285,6870,982,6832,2210,3108,6901,611,1460,4086,2876,1532,43,1607,7903,1700,682,2272,4613,2357,6900,9383,73,2402,7777,1438,9421,5576,2933,3216,8316,3647,6225,8972,5088,1525,3270,5735,1604,2600,8979,6192,6555,8020,8222,1254,3313,3149,3515,2506,1352,5210,6256,6170,8346,6168,640,9842,1141,3177,1279,9924,3563,7650,8115,7667,9523,4268,1379,6150,2694,2911,1737,4391,928,6526,1628,9334,5045,2042,7945,3416,4507,3056,3714,1856,8626,338,1598,8788,6355,3625,9816,8709,3899,4538,1913,9550,5095,6627,200,7567,9855,8276,5472,2690,8976,3484,8749,5204,5327,20,9645,2907,9373,249,7071,1,2926,2183,9522,2159,9187,5772,7797,8177,2505,8342,8614,2158,9142,4831,9575,4455,8592,3835,6606,5898,6077,7484,8477,4244,7578,4571,8632,4150,6141,994,6228,4951,713,1388,581,1628,134,7426,9000,3216,9630,4217,9081,5228,5193,775,1389,7625,6394,5748,8713,8541,3946,5386,5773,7633,1528,4804,595,3425,8928,2303,1065,1787,1239,876,5285,268,2737,2788,799,9131,5132,1609,3532,4650,2347,4845,6607,6153,6565,8884,2508,9169,6933,4134,3490,86,1414,4553,6316,3130,4764,4845,2438,780,6728,9304,5126,7788,8107,3642,9161,6107,8016,8143,2858,9685,1178,6963,5062,2313,2087,8782,9779,7654,2587,3758,9359,1975,2787,5152,4921,2018,3205,3452,8091,3488,2313,2231,4518,9675,3299,3293,7811,3448,5620,4841,9802,5600,3510,4327,8135,4500,6032,2132,9098,9175,840,350,5442,3404,7813,9252,1481,4026,4273,3731,5637,3404,2285,4767,6446,5006,6373,8291,3175,1757,1459,6268,2982,4206,9442,3049,9614,9121,6097,3845,3367,3080,4277,7168,5513,6248,4967,2012,9313,5944,5265,9829,9069,3513,3290,6066,8878,5951,7913,8991,5307,384,2395,451,9611,3954,9766,2689,3697,9478,6917,1113,2569,3740,4571,3751,575,1206,5312,5617,7595,7732,6300,4982,3354,5059,9064,7566,6936,5994,9973,4255,7636,5059,2593,2904,2020,2278,9927,7759,2154,6668,7864,6249,4171,4756,3051,5551,5723,4881,1455,5119,1959,2384,8954,6801,2807,2918,5213,6634,9303,4932,5337,3054,2235,3491,1979,1370,4368,2277,2622,1007,1776,1591,3751,6818,218,4537,1395,8464,1945,4717,6959,3529,2664,4404,1456,240,3893,2175,8619,9086,6669,4912,1402,3012,543,3044,1481,1517,7300,5960,2984,9347,5557,3504,8035,3624,9876,6326,312,1895,6720,7650,3244,239,7479,3579,1758,9262,6400,9670,180,2926,514,7502,3638,2530,5402,5252,7565,890,8667,917,3500,299,8181,3313,2635,4749,4712,5924,7249,1003,5196,5033,6059,9982,7886,9664,5289,2226,7796,2555,1482,806,9660,6140,2329,208,8502,6890,2385,8937,8349,9488,9003,9779,9887,8792,7951,5910,5628,9227,1948,7839,5409,2649,3300,1836,8910,556,6507,6063,7666,6467,1508,961,5151,5918,1929,7478,9003,890,8803,3038,577,5320,3395,2755,2298,8232,5556,6074,6138,6309,7531,9815,4756,3803,4200,2698,5955,5736,3415,1019,3260,1284,6044,6486,5192,7534,1441,4829,8885,5672,4494,6787,2929,3337,9443,1583,7763,1618,4869,8041,5947,841,7920,9644,1219,4361,6421,6626,9891,9900,1138,1657,4513,821,8739,9900,5944,6449,3,3646,8845,8899,7744,5999,4265,3636,2258,8942,88,2467,9278,4822,5386,5026,821,1419,19,1992,2667,386,8745,981,6820,3971,1638,3378,1247,9663,2008,3727,9019,6457,3598,3237,7305,4274,8995,2548,1877,1974,5516,1845,538,8918,3243,7972,9639,9544,1769,9092,1574,9214,6482,3658,7821,8874,6767,6590,3215,8877,1233,2337,1522,5612,6933,7022,3763,8593,8784,7969,8091,132,2690,7963,626,3593,2952,7023,9801,154,574,7532,1741,2219,1448,7558,1391,2788,193,5266,5087,3940,6229,7880,5254,3437,529,4894,9094,5416,6314,1602,8831,2566,8132,7828,4419,3927,6942,5260,5781,5985,1340,5897,2782,24,9672,3428,2980,5263,9905,9166,6187,9073,8486,6306,3741,9689,1829,5763,7312,7457,1376,4040,8893,4216,4740,8927,8692,2132,6191,5669,6734,9542,8072,7048,2108,6750,7742,2751,4323,27,7781,5631,4165,1982,9730,1082,8938,679,1055,7726,3593,8531,8976,2709,782,3284,3893,4280,2986,9130,1795,1459,5807,1275,7163,6166,6166,8288,9393,5115,6740,7336,3130,2837,3672,1167,7760,6986,6366,5752,209,3810,3867,1587,4810,5325,1213,7203,7773,1799,5469,9265,6964,9132,6452,4822,1953,4278,5626,6465,2387,9686,3017,7303,4949,5813,6442,8237,549,5191,7325,7090,6889,7465,2989,2192,1785,7623,4626,8367,6070,777,3609,1915,5799,490,4716,6098,8390,7099,4853,1514,8013,4743,6610,1786,4209,4614,224,8985,5653,6872,6530,4470,7872,7761,50,9530,8823,4819,1706,6404,9067,2368,1140,5665,5732,7124,8794,1731,4920,1496,6497,8114,3370,5650,6076,472,340,1953,6180,8423,9998,3077,8814,8111,5292,9433,2970,501,8356,5153,1763,9676,1921,1034,1755,6566,4570,3951,1705,7312,1987,4162,4554,3764,8579,9379,4103,5291,3856,9781,5459,2619,5558,2767,8549,6263,4364,2752,5329,7713,4673,1214,9939,8251,5635,8380,6711,210,469,1259,6306,9003,2308,9073,8199,7285,1860,887,4155,6410,2227,2499,5564,8524,4772,6346,3617,6763,1416,8639,4042,1588,403,7328,2133,5598,1637,6117,7931,6316,8032,5963,5528,7408,2291,417,7645,1925,8599,4049,6080,8811,2593,3313,3018,6022,5179,3493,301,5908,9520,5533,3891,2932,635,6883,339,2769,9211,3651,3815,6619,3204,7439,2306,4807,8324,249,5636,432,9088,7098,6374,5638,7714,7330,2058,9162,6255,9072,2009,4386,1353,5148,2428,3266,9776,5833,3226,4304,9797,7943,6597,8001,8999,1197,801,6512,8432,3688,6407,3354,369,4619,6547,2298,7101,3507,5058,6438,7155,3588,4931,2361,2744,4163,7595,5046,6738,7818,7552,8613,7456,4280,2341,8137,6332,1822,2143,6419,8327,4763,8232,3334,8122,5480,352,1961,8861,9236,2397,7680,9274,2356,1182,2070,202,7580,7942,7677,588,3816,2392,4476,6402,9357,9100,252,348,9764,2827,2043,7028,3730,9447,9911,4234,4513,512,7743,2285,6925,8324,7851,1843,4533,9567,2966,729,1954,5219,7236,1297,590,8825,7785,616,1079,8730,8295,3593,3216,1997,740,1237,1072,8146,2590,8705,5417,317,3293,4010,5528,8784,6796,7664,7930,9271,5696,1118,7581,846,2604,3165,3213,2159,4105,824,2406,341,8250,9350,9226,6250,7079,4077,9613,5648,565,6703,4111,6108,320,6161,8991,8775,4698,8816,1705,3514,3507,8909,4847,7921,2917,1926,1791,8618,7562,2178,8710,1625,4189,2949,7113,1907,5920,8965,4458,5859,59,123,2166,206,6239,6186,6685,2903,2041,5378,746,3257,5815,2579,6016,1434,9615,5813,6655,9654,1377,1199,8792,8912,2737,8047,4986,6023,3592,1190,8277,1526,5968,2121,874,1875,8594,2017,1564,5134,5279,1346,7174,6457,5039,3845,2342,9360,7732,7843,1349,3594,7542,3327,2560,8146,3997,9060,6660,238,6240,4379,3624,803,4981,5028,9211,5739,7170,9554,3059,7539,3869,7604,4341,3004,4471,7000,5324,2030,4940,5871,9876,8596,9907,5771,4083,3057,1575,7269,8736,5596,5446,4148,6898,1106,9842,6052,5196,9751,5322,1565,1945,25,5448,6754,7927,318,68,5799,3905,7629,1690,1878,8141,8046,931,9239,1454,7190,9705,7866,2593,544,9382,2265,9321,6502,96,1185,6618,1473,2603,9872,8483,4490,5540,3201,4091,6969,1106,7726,9970,7666,2921,3373,3998,1365,1326,7985,150,9581,8403,9173,10,3842,8397,2373,4980,9338,8096,2726,8220,2168,8871,1735,2414,6213,2019,6645,7335,605,2660,3700,448,4416,7721,2658,8813,2956,6242,1221,3542,1170,4019,578,4412,9873,7622,2916,5406,9653,9298,8599,7043,7165,8122,3795,2925,2347,4575,2269,9208,1872,9351,9276,877,8743,2398,3779,2087,7331,8096,4843,4065,5216,3624,3345,6634,6353,1590,9415,4093,1431,9074,8391,5025,1177,1585,2643,1983,4223,8433,4745,1777,2627,415,6282,7856,2920,7400,8283,3012,1277,3486,494,4152,7040,6147,3353,348,3586,1821,8391,7575,6537,5782,6395,7643,8030,362,584,8479,8655,1752,4672,8758,6953,6904,5584,8175,5912,685,3983,1003,1901,58,3894,9152,1545,4373,1907,3393,5732,5591,1152,4520,7384,6841,7729,7098,4773,7261,670,8060,3514,7525,673,5499,3510,2392,8923,4658,6105,3431,5095,3423,8107,9865,4390,5822,1368,3502,7329,8892,1008,2132,8147,2771,1270,8988,2744,8542,2432,5694,2860,4834,8401,9756,6395,3734,4675,7101,3882,8188,4901,169,3395,6525,7672,6226,3443,1173,381,4739,4894,9830,8356,2968,8476,3427,4187,9555,9990,6936,6224,7296,5309,8221,1603,5816,5651,1234,3947,237,7955,4735,4451,9195,2328,7221,9065,7394,967,4224,4140,8920,5784,824,2844,7731,7760,9505,1104,5992,6582,2826,6410,975,4873,2827,9968,8841,8460,1113,8370,6294,4191,7250,7211,6234,966,1603,636,5715,8486,3601,4753,4445,278,2964,4391,3959,9511,8966,7915,2078,7848,1374,7199,4837,4994,6880,2996,1506,5863,683,479,2233,3133,8435,1478,6471,4887,6109,7759,9848,1969,9108,5406,9968,764,1048,4050,4655,8352,6192,3511,8544,5849,1125,4471,6214,7547,1674,7983,9693,7381,9210,4924,8305,5521,8132,4600,1158,9840,174,3291,9237,5706,8267,5627,5417,1291,9252,1005,8879,1029,9157,8604,4428,1114,1423,635,2527,1009,6447,5999,7885,2177,7078,1289,2417,1900,8208,183,4155,2208,9057,3359,1230,965,4990,1623,5291,6584,1380,1682,9610,695,9937,1291,6064,4070,7695,8512,4377,8838,5600,8750,3803,1552,736,8641,699,377,6422,1310,1470,1450,3982,9942,1494,7864,5698,1623,1822,7555,9933,56,9455,1677,6853,5555,6032,8297,5365,8317,3831,8803,3542,6568,1672,9092,1840,8411,190,6504,2227,1145,9244,6859,8314,4389,802,7628,6185,1406,3213,5124,7750,2744,3574,4882,7480,983,5248,6909,3876,4268,7660,3766,8197,3299,7073,2701,7285,9445,228,1755,6071,70,8750,1928,8204,1318,939,7178,9951,6981,9472,5729,6797,7200,9914,3134,3579,6073,983,6940,5412,6827,1866,451,8934,8435,6347,3117,3613,1732,108,1854,5192,7063,5413,8085,9502,5011,4935,2661,3407,8753,7517,1172,8911,8683,6999,4158,4296,4945,4996,994,6995,6316,5394,3886,7761,2325,7907,9327,9198,7313,9224,6286,445,15,703,3288,3931,2307,1114,2947,3159,9066,4240,751,9206,5077,8400,4218,8523,2353,3824,7130,5248,9275,9642,6943,9943,3481,2734,7760,3198,1029,7108,253,9353,9307,7745,1838,4772,7679,5321,6450,9583,8572,730,4430,6495,3284,7865,1089,5222,3666,8076,9337,6504,6468,5374,7921,5786,4184,2468,6872,6055,4233,5789,4780,5557,9731,9458,3209,4481,7725,4968,6997,1714,6862,4971,632,3668,9479,6520,6724,5196,5067,5621,9894,6840,9731,5396,486,1499,5465,3207,5371,723,2638,9553,6867,963,6525,870,5644,1338,8148,5803,516,8594,4536,5003,7329,1498,3305,5740,1353,9674,1077,3050,8040,3605,1998,5672,1882,2130,3655,6671,6323,1265,9072,9603,4519,8605,7857,1510,2266,187,7022,5250,3987,2974,2310,5813,4905,4285,5532,1397,8534,2056,2032,2202,7248,7744,2780,2955,1766,858,3369,1909,1930,8597,5616,1268,7453,2905,5119,5903,5537,5441,1790,337,4254,7193,6930,5401,8128,4367,9890,6623,6512,5922,8966,4931,7439,4531,7522,3858,5081,5507,9571,2166,1402,9219,588,8125,7972,782,6077,9797,1724,1374,2608,1589,9468,8761,3895,2432,5885,7684,3236,5332,6120,6157,8334,5740,2774,5353,4692,8256,9800,9677,5987,9220,2360,8999,1491,9267,1397,1635,4916,5659,3117,6094,8032,1683,9258,2533,9528,6465,6510,4672,5314,8386,763,5377,7310,9652,9317,6225,5307,5167,9425,8906,5333,8229,8313,2,380,1629,1493,6829,3161,7193,7883,5817,513,2742,7476,7392,9964,8366,7659,9795,4273,6530,4304,8414,4569,5362,1506,2695,4803,4551,7898,5965,6778,9125,5253,8388,5544,1959,6109,1061,5622,6618,5785,7672,2203,6709,2567,3270,5579,6585,7127,6239,9758,8971,7876,3930,6597,293,687,1222,5461,8060,486,6196,6304,559,9615,2121,8577,9115,6827,5026,1455,9838,4572,6167,9804,8376,9995,8309,9943,9690,5396,9876,3535,8849,529,9443,9754,5355,9992,3209,6854,8800,9767,1847,820,1562,9646,9520,6071,9616,8948,6864,8803,6272,7466,7479,5993,8978,9479,2995,7388,2794,6561,3288,9201,4042,308,6797,1133,645,5996,1449,9100,1136,9869,3787,5475,8436,9334,5005,8353,9177,2032,8963,8726,4335,8824,2374,4865,4367,7416,5931,4207,4127,4445,9456,2431,286,4358,2991,2847,4484,6175,5194,7203,2794,5836,8750,8098,1098,3632,2342,9651,4370,7716,5944,4271,774,5671,7532,6353,8908,5295,3096,5615,6585,2613,916,7030,1314,3132,7679,4213,6981,5263,5577,9860,1913,8373,9453,1055,5249,3286,5471,2555,1856,9470,5876,4558,4749,7325,7320,2233,1029,5129,2255,2227,4724,3468,496,1781,6224,9050,3310,5957,8773,7754,9222,283,9534,4581,608,609,8530,1126,5867,807,1671,6992,1900,5506,2403,6902,1282,506,615,5117,190,2873,7342,4183,8407,2972,7618,4234,4863,3659,9554,8523,9311,3007,8062,9750,3846,4424,6111,1911,4290,2413,836,8081,735,4916,274,394,8338,3151,604,6231,4577,3395,1324,8447,5470,6779,6379,7017,3594,1974,7427,5838,1508,3982,9955,7436,3367,2985,3790,2075,6347,4789,8795,3818,9800,5663,1785,2106,3611,9624,3742,2158,7878,4112,6596,5797,7827,2536,6561,8459,296,9796,5948,7602,479,1425,4324,4934,9307,2165,2565,7078,4085,7266,9177,5348,3371,4107,8312,3940,8679,3746,2040,6697,9200,2369,3401,4474,724,7616,1669,7934,4118,6616,5008,2697,1109,9439,5462,6666,7623,6857,9310,9675,1025,3731,990,473,4779,9843,101,4480,1863,783,715,5570,315,3522,2538,2350,1316,1636,9054,1511,1069,9018,8715,4584,6235,7783,2669,2930,3356,5703,8637,8372,2050,4757,940,7136,6725,1232,8952,1459,3229,4725,2058,4897,6471,2755,8915,4208,3933,2888,7156,7151,22,4913,8819,6978,5304,9747,4091,7297,5648,308,5934,5264,9068,1146,1384,1498,820,7269,6048,1221,205,9902,942,4193,8819,5552,702,2544,8803,9723,218,7886,5046,228,737,1,4050,4041,562,8564,6802,8251,9228,9906,8257,8050,5243,4,4098,5948,603,7125,4359,2044,5280,2834,2992,3428,2823,330,5391,4534,3417,6071,9912,4161,1212,1113,5388,2898,1651,3682,1875,3377,766,1746,1958,9899,8161,7464,4021,2143,5268,976,4603,6078,7084,9166,9001,1297,9785,3879,9790,4975,2431,1620,3929,3822,5659,8449,8853,9935,6807,6754,8938,382,6760,1128,971,3465,4433,5631,3001,2114,7527,2801,4192,2797,6466,7416,1713,4467,2154,2954,3790,3809,436,6061,1738,3214,7690,2186,1345,6353,3183,3242,696,1174,7696,5249,5351,7302,5474,2909,5591,5153,422,2710,2897,6660,4556,2186,5808,4792,8257,123,483,902,8972,214,9370,6798,4127,8268,783,7121,3490,2553,5962,6844,1823,7881,2818,5048,5704,1133,9652,9959,9512,9687,3395,2959,8211,996,1508,7669,7974,4064,5312,6766,5475,8317,8425,5906,3124,1074,4648,8046,8434,1231,449,9658,9265,7655,6547,1417,660,1501,818,2863,766,1379,2729,8402,9972,2517,7525,9629,9554,8783,3405,4672,1922,1041,1102,3324,1817,4189,4468,2880,2294,1003,2668,6436,2119,2242,7687,8847,247,6289,644,1202,937,2798,2,7806,4766,7152,3752,4493,5561,1409,6735,7951,6322,9875,1519,4514,913,8098,3461,9992,5658,8562,2917,7196,4388,1519,4017,141,2519,7857,4290,3123,9022,7687,4898,3635,1066,4231,3468,3984,2614,1008,8297,19,7872,6341,1313,7743,5346,736,3729,4093,7487,8269,9740,5004,5179,8044,3862,8414,9163,263,8121,4120,6848,5472,402,9387,8577,7481,6766,1206,2911,138,7651,1065,6143,8750,7383,4260,5194,1702,8266,6842,6487,6108,6533,2868,8325,9388,846,8343,5920,744,4539,9981,2117,5776,2335,3477,5554,9208,7555,3380,6150,4496,523,3712,2258,2481,5295,7221,6,5631,1160,7418,8577,4261,709,9849,1805,4041,6606,9809,1074,589,5727,357,2328,2743,4662,7941,4740,4578,8248,6875,7988,570,1569,7482,7939,401,6386,9059,3373,8622,4079,3470,7423,9541,3670,5047,3495,8244,4240,51,3236,9489,6156,3590,9248,790,7241,9023,2485,9108,6150,42,4949,4526,2085,7321,5345,5080,1334,1285,7568,2692,3087,2818,5091,5964,1872,7811,6093,3089,9971,9348,8633,4733,1225,4681,4736,6846,1938,7226,6140,6467,543,3203,3237,9876,1698,7026,3113,4077,8927,304,4074,8954,4750,27,9087,5176,1762,128,3973,2222,1456,3203,6884,3276,3016,2352,8554,454,8102,718,4741,5604,2341,3859,2846,4902,7990,539,751,182,7932,175,1167,334,5049,9545,4746,8138,3153,219,2721,4036,3459,7428,1270,7843,634,7841,4677,4181,5592,2821,4652,8111,2459,78,7351,231,1193,5827,6240,8286,9841,8734,632,9866,2073,1078,519,7156,6035,5576,9305,2715,6594,2223,3490,7989,9563,6089,3993,9422,3956,2926,4753,6658,7593,6933,6633,9959,8275,5666,2967,4931,3532,1801,6192,606,831,4237,6095,7132,6935,6279,7749,7374,4629,2848,3636,8875,5920,2050,1242,7358,3097,468,9023,8272,3956,1602,5949,9080,1788,4470,7846,6847,7663,2684,8564,6938,7285,2169,3370,4192,9485,802,1237,7837,6787,8487,1755,1863,8708,3997,8927,8000,5443,579,333,5718,6,7713,6307,6521,6924,8946,8646,4995,2811,4979,695,1342,4393,7283,8410,5233,8484,839,7954,6535,4513,3681,9336,5592,4063,8154,139,8837,5394,2472,5529,2329,7431,9846,1716,8152,8475,1524,7379,7810,6892,2653,9074,9489,2799,7815,1896,6884,860,3769,9763,877,6630,9281,3932,8586,1693,8379,7816,137,6179,483,4019,482,4772,8338,9288,5210,6352,6416,5691,5132,4219,1953,3265,3143,8587,1029,2880,7437,7972,4454,2037,2198,1344,8239,9482,5230,8343,2201,9522,8421,1720,133,9007,4899,3404,3582,90,5989,5233,1736,3274,2924,6463,1181,1655,6246,6808,2682,2736,1546,9595,9852,4784,1845,9190,6727,3654,6608,1555,9076,2537,9299,6449,1566,1529,9879,6341,1013,1662,1204,4275,6251,3983,2314,5874,1082,4634,9586,5796,3391,3363,3357,2617,9809,1472,4174,1828,9082,9259,4602,8245,2328,982,2510,7422,3872,1601,9357,2265,7377,6257,7168,1021,988,4054,2024,5819,8378,7221,5466,94,5857,254,5354,7787,4576,9413,7909,698,3398,3174,7633,7897,6583,5071,3485,6393,7390,8344,9105,5502,6257,6019,3621,7885,9447,8552,7818,3059,7103,1591,5202,8535,3578,7431,2432,5163,3492,93,9176,2028,9937,7530,8999,3256,8631,235,5546,9530,5335,8795,4126,2326,3930,5486,7331,7688,6130,1637,2233,8556,8350,689,2538,1908,9336,1211,7764,333,9679,6617,9763,264,7370,1171,5985,63,8799,9597,1096,1179,3509,7540,7258,9008,1543,5557,5615,8411,739,3544,7764,6446,8632,1818,6078,9794,2717,4938,1428,941,3056,7872,4566,9313,1109,4046,2515,3796,8629,3999,1200,5516,3334,5244,4850,3733,3009,1561,8745,9101,1269,1507,6845,9225,4955,908,34,7803,4899,5762,5447,5639,1195,7984,8798,5919,2764,6278,4060,3161,6500,2718,6194,7527,3278,8768,1334,4366,1144,7537,7028,9245,8794,2907,5416,6631,7203,3553,8242,1566,958,232,7730,9476,4155,8039,2601,4895,173,2072,8961,7926,7863,8933,6574,3113,3391,2958,3108,9729,682,5210,6810,6116,4285,6658,4685,2635,2701,7454,9569,1592,5445,3064,4409,3938,9408,7503,8012,9555,9757,5969,8028,7726,3113,8554,4606,6195,615,5245,6866,9013,8150,7145,6009,4554,8306,9310,8291,5715,2122,6250,477,6886,1271,493,731,1675,3462,3814,8213,160,4262,2346,4639,2087,6731,4223,7479,256,2139,134,8139,4669,3206,3331,1902,3742,797,8151,1650,3452,7676,2416,6540,6566,6802,6476,7981,223,8624,4949,6355,4688,5908,4962,9457,2402,8760,319,9033,7400,3777,4611,8976,2959,568,9332,9213,8661,6075,6498,6865,3082,1818,2502,3584,1443,4022,205,5185,4691,6642,9478,5133,1182,1838,5879,6420,8587,1360,3201,1991,3776,5699,3912,1800,6418,2645,8893,9905,4049,2882,7677,7502,8353,29,2222,4496,8562,7802,5279,80,8466,817,9577,6574,4946,3550,7772,4246,2449,4951,7065,6773,9719,8583,9431,4823,7404,1866,4971,354,2675,6273,6702,3187,3,8590,8183,4491,2856,418,6669,3203,1161,8786,6380,8502,8033,3033,1029,3647,8627,5267,6226,8737,2601,9343,4991,956,7859,8547,5199,4664,1083,5725,1213,5375,7077,5822,7601,200,5235,3784,5161,2431,1990,9982,7688,7569,6905,7389,8534,2169,8394,6586,1272,2047,9581,8460,8716,2928,1720,1285,1725,5763,3957,7122,255,4477,1615,7923,8891,915,9772,3007,7686,4543,1217,5974,9702,4257,3174,2316,4199,9907,1423,7499,9202,6416,195,1873,4638,7996,1017,3563,7200,6196,8889,8860,9110,106,4580,8864,2315,6753,2144,3746,290,2593,4992,3476,8327,8217,1682,8874,5586,3951,156,6456,4146,1996,7036,2590,62,9645,4355,8631,1094,1276,2827,8046,588,1042,8546,7935,322,2172,845,4275,7418,8155,939,1459,7765,3697,1373,8584,6862,2876,364,2904,5751,8576,4387,4404,4916,2569,9823,2480,6887,4019,1993,3711,7706,4972,9619,8488,5144,3447,2307,5991,703,4253,4105,70,2180,3986,9234,6469,2331,3948,9364,3023,7816,7371,7983,4557,4022,9304,8357,1488,4561,6618,432,3312,6395,9290,7917,6631,2598,5658,5898,2884,5380,9087,2251,1631,7032,8381,389,5688,9938,4058,9157,4426,2240,9067,4766,6664,609,1087,5213,1695,3217,3202,419,4569,4563,9765,8573,5941,7197,3020,1576,9124,6524,9144,3700,9550,5586,3177,8604,3984,4727,1032,5431,5263,581,8589,2249,8036,6081,2185,3989,1832,4552,852,5382,1055,9815,807,2935,1569,6840,4567,9360,3493,9764,5960,4518,7979,9387,5506,8649,3845,988,1044,7245,8576,520,7611,5018,6940,6343,5623,7817,5631,5094,5383,7810,3699,2629,6567,6665,7758,5175,3430,8316,9813,4677,1808,6689,612,7254,771,9472,8063,8944,8255,5931,3836,5779,6809,9630,5641,395,5727,3152,9982,1287,6756,9988,1296,6696,1677,6193,3596,6526,4799,80,9656,8744,2505,7774,5604,6976,252,5991,784,3523,6099,4471,3010,7410,2385,9773,9634,2167,9238,5524,8255,3721,1026,4410,9644,7913,7331,2869,8760,1603,9853,3469,2131,9999,6600,4810,3311,1688,4519,6709,6118,4622,7611,9599,647,9549,4529,3548,9588,6896,7572,9248,6957,9757,2831,6659,2329,9096,7154,9519,1003,9537,5867,254,160,1535,2680,7123,104,4425,4880,7401,5352,5520,522,470,7881,6985,9772,2790,622,1545,2084,4102,8137,8436,5770,473,8571,1117,3298,701,9192,1223,5765,8180,3506,7963,8022,9691,6333,6416,2600,9851,8762,229,5074,485,3909,6430,7038,3616,2498,3530,7388,2354,2516,4940,2909,3319,579,7488,4512,4582,3896,2727,2125,4747,6817,478,6934,3662,9779,5443,5815,8881,2368,574,9399,7300,2652,3094,7492,1107,9531,1651,2277,3969,8426,53,6679,9860,8442,187,3041,2420,8282,9643,6775,2632,3135,4486,4466,1615,492,3695,2442,1739,8102,8446,1011,1377,4017,2934,207,2806,3716,1929,3472,3857,4443,8364,1152,9908,9266,2571,6604,8173,1097,287,706,2363,6144,8812,6988,1710,807,4359,8830,7328,8026,620,8513,5768,5098,4360,8370,586,3360,7437,9836,9738,3547,4214,6478,7216,2917,4768,2167,4594,4364,9292,2316,9986,5961,5043,3198,279,1612,1367,9028,4384,497,3777,9254,3475,4229,8412,543,4073,5947,9503,9890,1921,683,6976,1384,8632,2732,1355,1077,2454,3379,5160,6202,6776,4331,755,7880,8746,2250,7773,8051,4207,4638,4345,5820,501,9049,1363,1442,9441,9899,7787,7119,9365,309,3466,4493,342,4734,4440,928,4913,8703,3381,4795,6354,3738,3477,311,9688,1427,9009,3599,5457,1005,7181,8069,5195,3811,5978,8079,8849,6121,7044,2530,8589,724,2456,2971,3281,4707,2595,2035,1379,2580,8544,8749,9750,8221,2583,1158,1473,301,860,2737,3092,1020,2080,6931,9716,1720,9700,758,2475,359,999,5127,2853,1215,594,5195,2714,9863,2946,1303,7474,914,4404,9167,1415,8978,6225,3819,1092,6364,1739,5137,1174,5101,9933,436,4426,7019,7774,1349,6536,4723,3724,5774,6902,4711,8035,5154,5199,8843,3225,5164,7031,7984,8297,680,3490,7767,8494,9558,696,7329,6587,5877,2092,6295,6409,8853,8633,7937,5086,4031,2293,2669,3918,8045,4192,1135,7520,6557,8593,3369,9471,7984,777,4317,1820,2086,5813,3331,4702,9387,1394,3958,6266,3280,6550,2455,6828,373,7701,8328,487,8132,8643,3891,1860,7490,4999,9123,656,376,2408,6541,9477,7719,9204,9347,5863,5025,9007,4881,8811,7387,626,5494,4629,4448,7836,3044,1106,317,5777,1162,5566,8079,6420,7174,27,6717,3570,3414,7285,1898,7509,9919,9925,9158,7498,2917,5883,141,146,7444,9869,986,5713,9767,5893,7589,641,3730,793,8121,4745,4428,4780,1208,6816,4938,731,3818,2304,168,853,8584,5791,4582,4867,9325,2728,3372,4027,1784,6432,1960,8374,9396,3437,4720,8597,960,1134,1689,421,8206,7486,3149,19,3575,3953,2063,295,8743,9058,4685,8800,5044,3466,7203,2790,5052,4780,1439,2113,1600,7720,6675,8389,5194,5418,2414,3347,4999,9295,973,643,9368,703,6571,1811,9525,77,6772,2661,1664,2401,2056,6385,7695,4966,7913,7261,9700,6069,7954,4831,9225,3278,2371,7732,5763,7710,9616,6625,128,6157,626,802,9616,3518,5788,9107,9061,5685,4289,42,9144,6739,3722,9109,7663,3772,7773,4660,9768,7242,1617,114,2864,1820,8536,1465,8580,9636,9218,9358,1507,8805,8270,4426,3728,2128,7203,6995,1133,9286,679,6977,323,3898,9185,4270,4003,632,6172,1652,6978,2775,5891,5042,2359,1870,7650,7002,2497,5078,9669,3149,6167,2725,9130,1130,180,9537,7844,9192,579,6216,1856,3588,7070,9981,421,3949,6914,396,1345,290,7378,4944,6151,2852,4329,265,9324,2084,4861,5466,5998,5648,8254,9185,8857,725,8011,9448,1798,1401,2380,7582,303,2872,5193,2690,8152,3146,147,8939,1778,8110,8192,2548,7061,7198,92,6758,2212,6169,9591,2787,5139,5393,5482,9795,2653,1646,7681,1495,3662,8360,6448,662,6523,128,2183,7566,2842,2838,4548,9555,7753,7023,2201,2281,2027,211,3082,7268,6467,3720,4187,2582,1790,6626,1338,8868,3096,5711,6717,6707,3494,7939,206,608,7827,5030,1311,5487,7913,1392,9470,9295,8499,3053,5514,1873,8496,7064,2215,3653,5365,519,7001,5688,1281,6749,2047,1793,3472,2634,6207,1005,6071,219,4123,4137,4032,4035,5265,2974,4918,5104,7032,4597,2430,5864,8255,7580,6392,503,672,342,4957,4802,387,388,8468,8073,1784,2477,9346,5770,9426,4104,5069,4251,5580,2698,4143,9250,4979,1764,9389,5840,2950,535,898,8577,9307,2086,612,8278,5369,7160,9608,512,3035,3691,7194,7027,4931,1168,6387,1317,8821,8441,8132,158,7843,7821,2204,919,7294,599,5407,1861,7550,8355,773,1808,5246,2348,2530,3350,2330,1712,3625,9873,6618,3388,5719,9157,6352,6351,1358,1106,5052,2682,3199,2037,2664,1237,8737,8597,9581,6773,4839,8216,1037,5962,6633,2736,3404,5627,9639,1649,5954,9125,5342,2202,5231,2507,7004,3561,4191,7901,2269,4548,4548,4056,9659,4129,2306,7994,2832,2241,3980,2699,253,6276,5794,1742,564,5738,7256,6779,3043,7817,6603,1683,4086,3108,1235,6803,4293,8586,9635,1734,5383,722,1528,9005,1753,4093,7551,9695,2360,7496,4928,9835,9870,497,920,2363,1390,9799,8010,4834,5929,338,4646,4481,8978,2846,2674,7994,5598,1135,1795,2190,1578,1089,1598,4726,6854,1437,7696,6556,5527,9188,2196,241,1001,6350,9767,6151,4100,9611,3788,3362,6847,1671,3335,2567,8840,2600,5516,520,7038,7766,2070,6341,726,1333,764,6781,6505,5908,8145,9793,7903,2824,9868,4542,9749,88,9467,8040,2379,8443,2924,9927,5361,7924,9453,4377,4261,1930,6920,4214,5997,6585,6150,2508,4084,8878,80,8454,9106,2143,1611,6895,7579,8362,3203,9208,1197,7783,1137,4237,8101,6525,4631,1447,2623,5987,5886,6321,1506,1699,3220,3230,5348,2600,8815,7590,4496,2690,3429,70,4522,4081,7568,9220,7611,3694,885,1579,8065,5400,7571,961,9285,5485,2879,2613,4383,1265,4748,2279,5175,3092,9683,6534,5938,6155,2976,7524,3985,712,4361,4838,5926,2665,4121,2784,7472,3529,5286,4859,5372,4703,6077,3147,9879,7820,5854,386,7180,3273,5264,1466,4973,1446,318,7643,1580,8769,6269,2482,6335,8087,680,5886,5119,5280,3436,2515,1248,6333,3840,9993,6988,7627,2315,7271,5065,5318,2308,8937,8587,4113,9930,3195,1238,2,3524,5311,1624,8901,9555,1617,7104,6946,2124,9294,5899,7590,3466,5555,1698,714,9872,1889,5197,9919,7596,3421,1760,5788,3570,8358,5380,4252,3849,1422,3017,5562,3955,5135,8570,5491,6026,7650,2084,9738,2712,3379,532,7133,8177,5268,1566,6082,9113,6522,7034,5395,6749,2429,1520,2871,6215,5433,7566,8879,6793,8363,1226,7495,2361,5909,2815,4682,8139,3830,8201,2749,9363,2857,5547,2334,2619,4068,7352,4438,4755,898,1900,9160,2610,1908,7705,4150,1357,1356,6176,5888,8543,8221,2234,4212,8006,9808,6386,4114,1426,8177,8337,1767,2430,6538,6857,1148,4025,3335,442,9047,3024,4205,2353,7930,432,9089,6553,3726,4933,8870,6831,1972,9621,2935,3920,9296,7861,7670,318,6371,1506,2010,3137,3898,39,5458,9609,6496,7211,9675,3969,4029,9066,2184,9963,1631,2550,6699,9781,5106,7805,7572,8379,1460,4431,6289,6554,4787,9095,5560,8074,4588,3829,2216,1971,9533,1256,166,903,7056,5854,9096,4948,2811,756,1473,5058,9633,9916,8460,730,9593,271,4791,1916,4862,3161,5581,5061,7691,4,4125,8340,5873,8639,9293,7592,8775,3745,7922,1572,3501,3657,7862,625,1600,3025,2923,4427,1875,10000,4177,2262,5023,3228,9371,1413,3709,9121,2134,4406,5775,5956,8940,6970,7262,9146,5415,2203,3747,7849,3768,4580,8289,6938,2272,8540,7384,8866,5247,2127,3287,3849,9878,3778,5042,7525,6495,6595,3331,6136,9564,9409,62,5959,9552,2028,990,4569,1538,8826,4648,8289,946,4736,6635,8613,3189,5852,6991,1358,453,8508,5614,721,9784,7659,1448,6209,6627,3633,4275,7320,5554,3127,7806,3851,4488,9347,7385,3618,3135,902,1011,8218,6048,5730,9705,4094,5446,2717,389,7615,693,1112,1918,737,5623,5994,4630,9521,5637,1968,4159,9946,6852,3414,7753,9856,8564,586,3049,4556,58,6016,8634,9605,5959,9741,5689,1931,2169,7701,7847,6076,5211,7436,4235,6905,4558,9535,4237,1958,8843,4198,3935,9742,8375,1920,4622,7689,959,6118,6904,787,2000,6232,4191,7592,4657,5789,1543,8203,4393,9187,4886,5055,6807,7976,5403,1177,1915,4742,8346,1972,8624,4140,4763,1850,6828,3045,2859,5753,2294,2274,6059,9140,9490,4904,1168,4920,3385,2003,1367,2477,2573,9277,2565,6531,6979,850,3353,7228,6315,7825,8127,5314,3863,1638,608,7706,8303,6048,5910,4629,877,3168,682,5865,2176,3392,6367,7785,4914,1761,168,9846,6399,441,3966,9276,3817,2455,3967,3128,5010,1302,5335,76,911,4482,8504,7537,9665,9104,8132,9605,374,5954,2278,9995,9639,5687,8835,8215,8292,6340,6190,192,4577,6101,1689,4929,9789,4806,9630,2215,7765,2297,7810,6482,2028,4816,2653,6107,3003,142,7079,600,2796,8659,3933,6782,270,8087,8942,3473,4815,4138,7674,4250,9582,1827,3151,1280,3015,9789,7289,3620,975,7991,6467,6642,8170,4705,4560,9300,8051,4150,4707,8918,120,9653,4476,9427,9103,5375,5248,8373,1511,2726,4089,8771,889,2328,920,3991,6415,3175,7318,742,1262,3327,9654,2247,8954,7840,113,5819,6370,6199,2747,3825,9031,7561,6660,248,692,3585,9413,9020,1463,2878,8324,4949,6069,4535,9562,4494,6190,2834,1558,1407,3493,2158,2396,800,7436,4596,3819,8468,1604,6209,1731,7029,6416,6433,8006,5627,5005,5789,5496,5519,1576,6311,3440,9913,2389,2945,9185,8770,1055,2094,8722,7070,1344,3775,5008,1174,3573,279,875,5157,1676,1243,5336,3875,5707,828,3519,7650,3940,3443,2053,6298,848,8667,8237,3954,8505,800,5885,3552,995,8609,443,5236,9091,159,6046,8689,3527,1991,3437,1388,5022,8288,9920,8928,2254,5562,7206,16,2210,8305,5784,9058,2303,9152,4287,3762,6912,6731,4971,4746,8417,3191,9267,1074,9436,1292,2943,5897,1778,5952,7866,1378,5524,3307,5647,9444,5566,518,1364,3448,8281,9345,2204,8805,5907,1390,9833,6905,437,4027,8396,863,69,7997,6467,380,4453,7861,1104,7898,7351,7914,8444,2160,9453,6575,8932,6021,5418,957,3118,9674,169,8171,505,9019,6340,2824,10000,8635,7493,2293,1852,4222,2519,4072,5741,5838,6043,3344,7073,7658,4785,3771,9108,5856,1913,2775,6983,5111,942,5685,5688,6630,7555,4908,4371,552,4955,5175,7055,4393,4646,3334,1319,9515,2705,5520,9394,8628,6938,6242,3806,9022,4337,2510,4157,717,8885,3099,9162,7329,6693,1383,4623,1548,7521,8713,6218,4477,7865,7018,4211,869,2152,6368,9713,1184,9394,9774,290,1442,9140,66,6989,7033,4462,8756,7210,765,6374,6017,9133,6803,918,8259,1226,5371,2130,3410,2875,822,4112,7327,4925,7120,5307,467,10000,9106,6996,3727,4240,3011,1535,3102,3549,7275,947,9558,3616,2284,4247,5792,2212,4104,5556,9082,3633,367,2250,1482,9320,3564,6591,1425,9777,4810,3279,732,2840,2120,6548,2529,8208,3616,3901,2599,6499,5848,2889,6116,1346,4817,9044,6999,7986,2633,9748,75,4233,369,6158,4257,1204,7901,9113,7506,4559,6792,7323,9308,551,1106,2712,3371,1030,9822,4264,9210,5040,8701,7397,5043,5196,5466,4461,9611,9801,7474,5019,8449,7504,2587,992,1435,1804,2200,7666,8859,2076,8274,6895,6029,2269,634,3083,2910,6920,7710,9481,4793,7423,664,327,814,1648,8624,3999,8889,9066,5455,2908,3666,1046,8598,2672,965,3805,4381,2468,5879,9409,403,2983,8208,4548,5878,2965,1407,1505,8183,8028,5617,9713,7931,1138,6335,539,5975,9393,6693,4766,4099,4517,5374,9700,3440,9377,6253,2359,197,1999,6933,9807,1719,9807,456,8814,251,9620,2052,701,7978,451,7680,463,6875,8961,6742,5222,1527,3588,5902,2984,6738,6050,4395,8009,6436,6040,4274,1222,2209,394,8538,9548,6752,7357,5846,9835,9296,4669,6247,8304,5240,365,9464,4780,3503,7549,3209,1046,9362,5127,3845,8842,7621,6140,7147,4948,7294,8599,7269,4558,4667,4143,547,6478,867,4986,2916,576,6409,2533,4003,2334,2336,9379,4271,9530,2697,322,1623,5074,5076,2192,7155,4543,4416,9605,2083,3174,5313,6382,1481,6520,3908,6549,6419,3918,4412,3603,2666,6430,8033,8481,9969,5169,4101,1497,4513,7558,7738,4005,9821,9908,8639,4386,8608,8709,1116,4353,7219,738,3834,5990,34,1381,8812,1205,1494,21,8730,8963,1340,8872,5062,8602,1142,9490,184,5296,8871,8379,7031,9268,5051,5876,1298,2513,7663,7248,7099,946,3506,6311,6374,8056,7618,9494,5564,2068,3604,9353,1986,3352,3366,7845,7095,6090,9864,9487,3414,4618,8870,1354,3724,7250,6472,9636,622,9915,7246,58,6859,8603,1861,6860,4243,982,7837,2198,8616,5423,2037,5301,3605,6241,5310,6766,3826,5609,6112,413,2835,2843,8619,4494,7910,5107,7946,9774,155,6752,9216,1390,7132,3464,8730,2147,3533,3010,3081,928,813,1754,5155,7451,4770,3054,1542,9068,1934,5599,2665,5557,9304,9655,982,2031,7802,9419,7541,7173,9699,10000,3481,8030,4782,6818,8323,3938,8116,5586,8199,4739,9823,2700,2883,9338,1937,2215,3428,8627,397,9341,1494,8648,6334,2154,4103,245,5940,9029,2270,3169,1341,3896,9324,1949,6612,5456,1371,1656,7834,5975,7755,7298,7673,8690,675,8988,8704,4436,9542,4109,7442,8475,9445,4295,1904,3010,6811,8338,3061,9275,5470,3339,2703,7704,644,1715,879,3638,1888,1280,9612,8153,3684,6976,3042,2441,8514,4009,7189,6020,224,5081,2915,1196,3756,3323,4215,8419,404,9161,6812,690,8187,168,8099,8685,9959,6430,490,7000,3360,3006,5217,2480,2274,8593,5040,4102,354,4359,2389,2404,9459,5435,2402,7867,1774,4701,6438,5733,8980,9034,9998,4268,5110,9924,4172,6672,3436,105,8106,7861,9278,4122,4083,6144,745,9883,9378,8568,7579,7797,5163,7970,4715,194,32,7934,8907,4695,4367,3080,9401,2059,1709,1945,4548,5116,869,9427,2606,2998,2988,6757,8318,6875,4803,6729,611,9713,9907,6509,240,9868,2962,5232,2910,9154,6544,5482,8905,5900,1728,4642,385,345,6475,2838,8623,1293,3310,1399,8648,406,9860,9234,5635,1008,7166,2201,2652,1059,3211,5021,3666,6959,8265,3464,4355,7361,143,8382,4262,6330,1092,3863,4823,3189,6483,2824,234,6176,5976,555,4217,6018,6363,9413,3713,6031,8648,234,1414,1673,6269,5601,3368,1756,1428,7270,5681,5234,1467,7864,1337,6000,7462,755,332,4565,5129,2929,3985,4606,9069,8992,2057,5222,8784,930,612,3949,6462,3649,3899,2897,2123,2664,107,8418,941,9884,5516,3156,7692,2662,2767,2134,9067,2662,6412,6589,9070,6830,8166,9499,3736,9703,3604,9185,4977,3319,3686,1590,4737,669,9588,364,2977,7078,5511,3721,1372,3080,6759,196,1269,5696,2458,7335,4610,2344,4124,7155,2078,9693,3436,9300,8633,7469,1789,161,2889,600,991,4715,4282,3122,2217,9911,3649,3196,2152,3618,8790,5138,9780,577,1981,5370,1295,9332,6570,1351,9955,2899,1908,5499,7100,3535,2248,4858,4364,233,1163,7092,3912,1745,322,8456,4033,4311,4404,8164,8561,4056,694,6691,7856,3793,550,8582,4414,8111,4917,7826,8846,1336,7200,8443,6229,8488,9569,4648,591,4229,1096,753,2850,7122,7901,628,2973,9589,1793,1032,6658,1644,1231,3334,4576,4207,9476,1596,7354,2163,7936,1499,1099,6493,8588,9718,4522,5310,8870,7905,265,5906,4381,7547,3396,5998,8764,7115,6927,1645,3472,7903,5282,2590,7914,4854,3704,8706,7225,3955,2640,865,3106,7828,9536,9566,8488,1488,8575,2979,6050,4751,1177,7832,8435,6879,5129,8826,8370,9831,1913,4019,1738,5487,2477,4140,1643,9145,1502,7604,4559,3191,7109,9468,9767,601,8461,4857,8380,7142,6458,4606,2282,9552,5951,5540,2440,6374,5440,1074,1543,6823,8139,408,9047,9971,8854,6096,2294,8763,3327,1065,7389,5224,9793,8264,4733,8571,6158,1983,1261,454,6187,8127,1096,7663,9537,484,1053,9205,2335,3212,4551,6039,8737,8275,7544,8364,6315,4571,6291,9032,8624,8671,1732,5157,7867,8133,4831,323,9610,4526,4660,72,7936,8277,260,2677,1990,396,238,1037,3594,7199,2330,2680,8385,2474,1627,2193,2635,9360,9691,9408,2698,922,9170,862,7716,4885,4992,2978,480,1824,1563,6651,1702,4305,4887,7454,136,1689,1457,8166,2578,1206,8511,1801,322,6724,6986,1441,1233,6715,8826,191,9700,7660,7925,7399,5393,8607,1167,4332,5034,808,539,9906,7399,7616,4972,3411,1985,2018,1992,4376,4273,1697,2901,4723,1648,8243,1445,808,6797,4790,7623,6601,3253,7590,5534,6300,1412,4049,1042,3172,4268,6487,6637,1616,5607,4400,8601,7234,9857,3693,6876,6814,2834,7332,1933,4226,9151,4154,7851,6085,2424,5784,1268,4308,6340,4125,2445,4386,390,7741,8097,7915,881,5164,6822,6999,4249,5778,9163,547,7216,906,6314,6286,4646,1641,7381,6926,2650,4266,8335,9362,3114,8980,8819,211,9179,2139,2322,3278,5595,7491,9548,330,4485,6876,374,4436,780,8365,6932,8607,361,5881,3055,726,7868,3094,7967,7053,8069,5734,8834,880,2068,2465,5770,4305,8086,2698,6905,5482,1512,5000,1537,248,462,4327,2407,3571,275,1791,6308,1427,2070,1231,8145,8994,8007,728,5778,2581,9726,945,5754,9102,5987,8620,3248,9992,4582,2871,5623,9993,140,5424,1191,4701,9268,4131,7781,3136,9787,1010,3312,5410,6330,3387,6951,9645,4192,3703,4918,1327,2082,2104,8865,4043,4450,3631,2211,4720,7475,8829,7211,3875,9437,497,4340,88,817,8807,3059,6249,2756,629,5748,2949,9783,9602,4243,4201,2484,3045,3945,1661,2171,9214,2882,4986,2091,1130,3635,7749,9259,2379,5484,3638,5932,2806,2706,3948,4403,8320,9953,4169,1271,19,2078,646,1085,1404,9101,4199,3453,786,4101,6820,6157,7368,8836,2170,6341,575,349,7094,744,2342,5120,3113,6402,6003,2006,8010,8706,4844,2204,4219,8980,5561,748,3561,3450,4509,3906,9857,3159,9156,8490,7134,3504,6905,222,7451,2549,8677,2453,3342,796,407,1497,9966,9844,6727,8946,4770,9656,7176,9139,9743,8830,7696,1820,5251,2153,3497,7203,3484,8362,9635,7158,633,2833,2233,4332,7337,4359,7942,3628,7010,2036,5687,8467,7908,9051,7991,8788,9359,4938,7210,9902,3100,9579,5420,3281,7791,7139,3612,4710,2560,1557,7798,4185,6606,2160,4306,2770,4953,4335,6886,4306,2970,7256,5836,2451,9876,2541,9273,2103,7147,7046,4272,5969,1205,4974,8110,8118,4691,1669,2553,9763,7184,2554,2523,9480,4699,5867,3846,7590,8602,7500,3231,7228,2096,8184,4955,6297,1627,423,1359,8952,2220,9314,2624,3077,9850,728,3017,6425,584,6391,1377,5284,3928,8989,5034,8767,6665,4615,5898,3900,2806,7691,278,5414,3639,601,7316,9730,1433,9158,9993,1537,8971,6476,6447,2160,6481,9169,2189,262,916,6359,6309,4185,5427,5207,658,2244,6192,8396,3604,3656,6375,1001,4226,7240,3196,5750,8235,8147,1112,3142,1805,3663,6424,3133,3376,223,1898,530,5916,9101,1595,8364,1845,4314,6132,8870,8147,1212,5127,9353,2279,5263,6111,2336,8367,230,4203,6800,6943,1263,2007,304,3871,2000,4778,7671,2353,3661,2951,3958,6239,3007,4166,828,1715,8546,6744,4482,4515,7274,714,6741,6892,2011,3686,5361,7586,1570,8703,8362,8391,6642,5367,3860,736,8016,9694,5325,4591,3048,7511,2760,7776,7869,4225,2631,1629,7832,3322,145,9546,969,855,4871,4240,2501,3553,1547,3719,3364,4908,2343,3351,8988,9019,2572,2155,9917,7896,5259,2921,3594,4774,8122,2903,371,1716,6978,7027,9635,6120,7645,8794,9859,1743,4478,4365,8506,6971,1611,2537,6072,7160,8332,3887,9742,9589,9986,5799,5214,808,5810,2720,2979,1174,858,6841,7327,3324,2926,3734,6516,2356,7098,3565,5442,3250,1041,9346,6219,793,1061,1353,9324,9695,1646,523,8683,3319,8343,3248,9998,2297,4280,187,1354,6132,7882,3675,9670,8087,8504,7387,5154,7718,4819,2087,2419,7988,4647,8353,7392,7438,8557,9218,7761,7186,4463,3649,4516,2735,6250,1076,3808,1183,2675,6067,9328,7615,2657,5176,4592,2952,6460,821,8029,5712,1301,2725,4655,99,1571,7815,6015,8949,3767,5471,4339,8972,2909,7060,7486,411,6696,9856,9533,9431,9809,1597,7839,3203,7100,5227,9632,984,93,2478,3260,6026,9818,4975,3676,4890,3057,2640,7627,7132,3592,6168,362,2510,8577,1741,7937,8130,5746,9360,1648,2215,4610,1408,7408,6385,2044,1643,4180,2714,5314,2707,6336,7062,8849,1279,4999,3206,6872,8595,6196,7272,8386,9099,9693,966,6738,4522,8437,3434,5806,7591,4411,8148,1511,9905,705,9665,6988,2644,6227,3588,3495,7161,6896,302,7399,3846,6122,1967,4076,9574,7442,4343,2880,3630,1169,1920,2206,9897,2415,2339,6617,3777,1500,6963,8639,9079,2675,7151,3519,5881,4798,1177,9154,3493,5216,1798,558,9055,9047,2299,1426,6743,7226,7898,4309,8259,6357,3421,126,9592,2637,8185,1958,8352,3944,1788,789,4875,8587,3699,5445,5662,9552,8961,5947,6867,1926,2782,1706,6757,6745,1812,4431,907,4745,6852,4496,17,9793,3555,8690,872,2366,6781,6725,268,791,6534,129,3699,8490,6594,181,4145,3791,1235,5740,2899,6534,5539,2781,6581,954,4035,261,3952,5696,8130,4082,1035,9938,4025,2834,5296,3011,6190,9779,2031,5247,6297,6005,4607,7214,1034,2282,9245,7598,5402,9128,9891,9875,9588,1339,3879,9925,9628,9218,9250,1110,8015,6415,2745,1348,5211,1704,7155,3934,7319,5415,7569,6544,7746,4021,6340,3382,1208,7087,8869,5790,9274,6945,4283,290,5712,7844,2508,41,1473,5825,3168,8176,9282,5234,5875,2803,2222,1123,5250,3519,5313,2211,1501,4934,509,5959,3602,8200,6034,2884,984,494,1067,8648,4011,1249,3905,521,1935,1110,1859,4251,8296,3168,6737,2862,2432,6023,8845,8590,7118,9435,7491,4521,4813,6356,8720,9927,3382,7795,6075,4341,9544,8329,4058,9103,3501,5785,5627,4434,8664,1119,7823,1491,685,4058,2406,1006,7427,4358,474,3354,4764,2523,7707,3470,1470,2348,4894,6361,3589,1996,5070,7164,9641,2305,2699,6471,4751,4230,6624,2814,2968,8770,8,2881,6051,4969,7994,5797,6265,7738,2365,2337,896,3293,7400,3027,6384,4685,8680,9686,9289,5726,9737,7658,4698,5441,7380,6297,7768,5551,1443,2090,3043,9700,269,7160,3853,5939,9071,4161,6947,1116,9750,2104,7851,3875,3018,2925,117,6239,3244,97,5169,5592,4513,9051,3172,4929,9449,8088,108,5721,1893,7915,990,2188,2730,800,302,3782,2370,8791,3866,1966,5656,6356,721,7590,6855,9572,1083,2384,5918,6337,5810,4268,1601,6861,2092,3431,6699,6810,1678,8466,7598,1645,6183,5562,1766,2211,2035,5324,2725,8624,4364,5267,2582,2568,5233,8910,4843,4199,5273,4498,5632,2696,4721,9411,777,687,6066,7719,1304,5277,1195,7286,6891,529,8353,6869,1696,244,308,4391,9598,2442,3999,9911,2579,2292,4579,7323,40,3166,9403,4696,1789,8000,5146,9242,2301,4742,1380,1808,1908,6101,9942,7229,5227,2916,7664,5834,8275,9327,756,4700,4740,2390,8714,1586,2007,8620,8265,1747,1446,7057,4180,9334,290,6375,7850,5725,2852,4359,7908,9414,8978,5277,7265,1881,3501,986,9265,5966,9624,2866,406,5605,581,1220,6654,826,6743,7522,4549,1029,3834,6268,2556,6156,8015,7903,7874,4392,3417,154,5628,8269,7195,9345,5363,275,4169,7966,5703,7736,2451,7619,2324,5808,3522,204,2954,8269,3324,8839,7241,746,4548,7415,488,7690,6127,3858,693,6697,6612,9107,1274,2686,1571,8717,7854,5251,4911,4083,345,5000,1502,7154,9566,1666,8167,7739,1992,6611,1908,7276,9115,4299,5294,7463,5583,4958,601,5545,5984,234,3281,776,7099,8467,736,5712,1941,2241,453,772,4349,2347,4094,9325,1256,4597,7210,2405,8711,8177,9507,9311,5067,5547,3627,5211,1295,7261,2107,2664,3200,7164,6732,9986,1192,7295,3169,8559,7879,1286,4213,6232,1862,7416,8544,1023,3278,7299,330,6801,9235,4707,5368,6026,2961,4279,1227,2366,5235,2810,8878,8711,7188,884,1553,4432,7816,1544,3319,7683,9502,9589,1502,2037,3021,142,7050,8575,5647,2079,3189,4016,1145,9380,9893,9530,4573,4558,9297,6630,2430,1075,2278,8255,4766,9446,2427,333,9023,1325,8679,4480,4230,76,3742,242,4015,4621,3665,9944,5206,7449,4988,9745,2255,2314,202,7699,7056,1937,7630,7851,9470,2845,8895,1258,2679,3885,4242,223,7655,3764,2715,7046,8325,8617,4702,1846,5126,961,8876,3067,3046,1370,7426,7717,1084,6966,9642,9160,6111,6051,3269,5734,477,4928,9803,5218,6083,4928,2747,5730,7226,310,7842,4196,7973,7076,1912,9316,5036,2245,5688,7662,847,6515,2797,3110,3523,3593,3677,2489,8105,3248,8266,9776,2515,1738,1897,9675,6126,4017,9906,9491,8834,5143,3027,835,4354,2000,8790,3895,3559,7824,8281,3809,2169,9952,8135,5029,3473,7830,1378,4524,6994,8987,6689,8421,6175,3962,9652,6086,5862,1491,8419,657,2157,6204,1202,7103,1841,4895,8200,3728,7391,4577,705,8346,4367,1349,2004,8699,2336,4779,8414,2723,9468,9512,2095,7714,1049,6433,8592,9886,3079,5715,8661,8772,7792,2560,665,8542,9528,8475,1629,6645,6832,3199,581,4852,1637,6358,2527,5075,2402,2911,3339,1744,8799,8741,2410,6981,1923,2347,7878,4355,2237,6673,1348,7525,8308,613,4659,8509,6890,4538,1132,666,9606,6552,9306,5620,8070,9766,8336,7802,4678,3890,5106,3010,9153,1334,8905,932,1414,1392,5053,9571,7667,4517,7172,4922,8794,2220,3244,2888,8748,9810,3420,2148,8624,7412,8238,224,9374,1317,9936,8475,4416,1056,3985,3851,2968,998,999,2166,7475,9892,505,9931,1346,3152,1328,2142,6938,6819,1142,2363,2193,7783,3057,1291,3457,2239,7138,5684,482,918,3120,38,9972,7796,5102,5499,5145,6011,4955,6256,6781,3260,6827,9262,7930,3836,5074,6355,5860,4971,2621,3162,3508,769,4484,1365,1165,3138,7415,541,7554,5946,8650,2673,9976,2429,803,7653,5325,7014,7558,7896,3051,582,7296,260,2019,2193,531,4987,6402,5942,1693,4002,5764,491,6617,499,3590,118,1112,1726,9215,4617,7312,4579,7964,8881,4790,9148,5189,3821,7378,9063,2472,5762,9333,1317,2387,1950,4586,3649,303,4071,3746,2257,2976,550,3382,3086,531,5198,4130,1965,9326,3238,2279,5137,3871,3526,3384,5592,2884,6197,1785,3242,7383,4339,9676,9652,8785,3605,1372,1424,7304,6867,2737,542,1785,5974,2008,3257,6725,8396,9632,1447,8783,7478,7852,8822,9835,7029,2696,7605,6313,3756,3170,7336,3303,1782,1586,4453,9135,8610,8339,9974,4694,1227,233,2266,5672,9385,1965,850,2730,2468,168,4453,713,3147,6796,418,2,6986,3748,9991,6399,7727,283,8077,1042,741,6088,6748,104,9418,520,9034,6842,6950,7134,3097,1257,1398,5683,7569,4649,4105,2208,3573,8316,8472,6070,6698,6515,7977,1394,1386,967,4785,1509,1329,9210,1690,1289,4641,7178,2754,7703,1054,4389,8096,9407,827,9421,9279,3055,6106,9251,9254,3294,6602,4084,511,4223,8458,6244,5205,4742,599,9167,8010,5385,298,5121,2526,418,7944,3029,3074,9539,8571,5501,8991,2737,5677,9170,1416,1803,3978,8864,3365,8034,5975,8807,4192,1098,3355,6153,4841,4092,2213,7872,7841,9105,9205,7511,7614,2064,438,416,9208,8801,712,8215,7290,7030,2265,4284,5608,4852,4878,145,7373,1621,5734,7703,5098,4462,269,7519,7041,9650,4435,5599,4896,4513,3386,6182,9078,3843,7129,456,5865,7661,239,6759,4950,2553,7866,2292,6273,9611,4687,7083,6772,4260,6933,4325,828,9516,2313,15,8330,6305,2069,4947,9105,7544,163,8635,8642,2362,4695,4910,2441,4452,7940,987,1633,835,4372,7135,6186,4842,4580,8672,310,9818,2051,5198,309,6036,8749,3313,5296,5350,5624,3614,5267,8004,4578,4036,2407,5936,8866,1442,189,3627,2884,7752,8808,1,5517,3700,8936,1320,9719,8713,2880,4524,2808,1085,5216,8654,6400,2041,6865,8787,7069,3076,4884,1215,4493,4551,6699,6804,192,2488,9523,4825,7826,5024,3506,3060,3869,5341,4578,3357,893,3767,8939,7925,5153,9220,8968,439,1291,7800,9175,3666,6119,7161,4564,4393,25,8748,334,7611,6934,1138,340,8596,586,6232,5096,7699,8257,8925,8957,5998,2718,1332,9735,484,8690,5248,5224,8715,4172,5658,5243,4786,1281,1035,8158,5528,799,6080,8207,3309,312,4449,4633,8322,7991,2803,6828,5368,2625,5800,5328,3784,345,9413,653,4827,8994,6777,181,8243,970,7738,2082,5599,1532,3141,2110,2925,471,6753,5528,5846,3814,4606,1706,4188,1139,3756,2510,1540,5773,6371,314,1855,1118,9761,9453,9164,8572,1940,2515,1766,118,4755,6926,5907,4661,8582,2663,2557,9623,5650,6399,9886,1680,9992,9807,6375,7060,9745,4717,9138,2695,6958,8806,3341,6364,3959,1858,3075,8008,8730,4864,8253,953,7074,2657,9446,8964,6537,2420,9276,455,4397,9212,6612,3889,7311,8182,4134,7241,3767,3945,7319,6087,1442,1466,5572,9075,866,5096,2390,8134,7653,6873,8042,3877,7900,9968,2028,845,1419,1717,4075,3580,7731,7312,4293,2703,8752,9027,8413,8258,4475,3013,7666,4155,3180,506,8953,6054,4642,3694,567,6696,9128,9118,5958,733,914,4528,2804,4386,3715,3624,6659,6198,8568,3307,8463,1740,2052,7279,7678,1713,8297,2609,402,3471,8348,7429,7628,2544,6760,3460,4588,2672,4112,4865,9313,5919,2396,6004,2379,8152,2051,912,2966,277,4388,5581,7519,5445,9590,6640,6254,2035,8555,3233,6700,1479,7516,142,6797,5256,6435,433,1887,2452,6358,586,2248,1511,1707,3259,5922,8303,4156,1734,9896,7021,2452,3142,3816,3286,4255,8973,6155,9889,9163,3305,404,7909,9238,8572,3573,9114,9629,7157,1297,6619,330,6469,3878,5681,2769,9547,8384,8573,3979,5587,5161,4422,880,9954,8717,8686,295,1708,5648,9039,5880,2512,8865,4136,1452,5448,7906,5543,2108,2111,4020,5190,2881,1448,7792,6196,5114,6430,361,4297,1398,6636,3626,3890,6284,6626,805,9289,3874,7384,3816,377,1752,3394,9901,4745,8620,715,8777,558,8776,5798,8535,542,3459,2342,768,518,7015,2119,1297,2490,5607,9758,8495,5604,9862,8932,7470,5413,2891,8876,959,2844,1341,3443,1648,1668,3728,76,2218,2510,379,9726,8301,1461,1945,8661,8506,6442,4349,1889,610,500,7552,3143,6816,2128,8252,679,3158,1620,397,9052,9422,5821,4596,2611,8501,3396,6690,4456,5205,8611,6525,1709,5621,4351,1655,3720,3137,2863,2626,2310,896,3727,8225,5799,5162,7368,3158,3656,5975,8106,1364,7706,7782,4105,9538,7770,7567,8710,272,9685,2156,6965,4147,5107,2466,4065,9963,2194,272,4793,6233,9340,4394,8174,3758,6394,8363,4913,6109,7523,2678,404,2772,2750,5505,3769,9537,1371,5313,4153,7468,2936,501,8362,832,596,2675,5436,2379,717,4348,5314,9085,6414,9762,5133,713,3537,9233,5766,3258,7369,4399,3820,1992,7935,9468,4690,6494,1611,6791,4581,8483,3266,8530,1619,3907,5668,3047,2830,6091,196,2435,6646,3391,827,2284,185,5160,6536,8409,9456,896,4447,355,5718,2545,504,887,9399,6221,1060,9279,8986,2886,7197,4195,8404,4299,6688,365,5212,9542,7241,8724,1608,9668,5319,5585,2056,577,6492,7652,6083,3903,9527,1656,1555,4124,2499,3063,8733,2972,2366,5378,5845,1822,3188,1577,8042,2733,1438,394,664,3390,6855,9132,5919,6089,193,9883,4727,7190,8619,302,1983,3118,6203,6174,7565,4415,8259,8523,2997,5398,2029,3618,7319,5398,5121,8774,7595,2738,6619,3579,5142,5525,1292,6403,4331,3267,8720,4149,83,6032,1810,1204,7674,1890,7041,3666,2447,2611,598,705,351,5855,2393,7987,8594,5250,1332,2677,1659,4992,6663,2320,5667,8554,8814,3650,8840,6019,4264,8493,3617,3829,1578,1736,8207,7785,9448,9541,7482,7629,547,4352,3875,5302,528,7069,1960,9610,5438,5818,3256,7392,7905,8027,1021,9076,8608,3866,1564,9909,8689,5931,9141,5058,2306,9750,9121,8561,2889,2570,9813,4924,2022,4079,7366,544,4267,9059,7263,1049,7164,3802,1129,34,7647,1435,7444,3604,2169,4356,9967,4073,1356,9898,1635,2329,7792,303,2405,862,4882,6043,2662,8510,1880,1179,9372,8114,4296,3816,3232,390,6821,7817,3203,6202,4933,9003,8001,33,5954,6479,7685,3045,8025,2337,3553,6775,7595,9618,1748,6247,4615,1973,9392,9229,6120,4539,3664,6408,9739,2862,5691,755,4800,4625,652,1270,957,9832,9856,3788,5936,4747,3718,3482,7344,5720,5421,4391,6572,7972,462,8060,9900,8996,4403,3419,7708,5570,7636,2496,7448,9017,9759,1470,5552,4120,7754,1947,4173,7069,3210,9229,6810,2640,1661,2325,2937,8016,6152,4658,1407,1939,6771,9802,6135,981,6587,2292,3889,2697,7980,8023,5168,7736,5172,551,6777,9590,6169,9137,9627,9138,2552,314,2700,5058,5715,4703,9453,306,1585,4374,9948,5604,3956,5185,9524,5115,4452,1618,8648,9946,1000,7348,8247,1976,2055,5906,2301,9162,3023,4998,1003,2219,7708,3570,5722,6027,2761,3741,1931,165,2332,4131,2386,6759,2102,4158,656,8414,587,9045,9325,249,4980,8627,2481,9385,9546,374,6445,4661,2916,5205,8358,608,3655,3905,3190,4436,5455,5554,8682,6277,611,7422,4454,3516,5748,279,6414,8539,9906,3859,2551,8467,7140,9468,7918,2896,5335,1877,4726,6508,4279,1106,5606,5806,3323,2438,1167,8579,9326,6924,9854,7257,1214,2115,4390,819,1455,5235,8651,7926,3598,1214,2,2617,7260,5268,4372,6206,5296,7066,4011,334,5197,8442,1261,9755,9388,1092,5201,5710,7614,423,1961,8128,3942,9609,4846,8570,9395,2130,8668,5215,9293,316,4762,4943,666,5181,3017,753,8512,7189,1598,9343,7303,5505,852,1268,3102,5605,8611,2517,2081,2599,9319,4426,1900,5674,1253,6963,2488,5087,5626,1329,9008,3788,7485,5518,5659,9058,6558,4119,3234,9525,5551,4183,8878,4191,492,530,7951,7937,7667,4377,3267,4535,1273,7854,88,7781,5395,6712,9055,9554,1726,3812,681,3809,5975,9555,2328,2319,4582,7893,4048,123,1320,5619,8814,9784,596,6889,4813,5812,4843,405,1711,8266,6541,1090,6298,9630,2985,9001,6381,4755,285,2271,575,2039,6078,2367,1902,4748,1972,5975,5966,3592,3471,9956,3153,859,9316,563,6555,1043,4378,8096,3501,4030,3590,5980,3269,4950,8820,8017,5095,793,5246,4874,3921,2368,380,6432,2714,5077,6825,9826,2160,125,1760,6975,1139,6535,4492,4107,3390,1374,2801,2366,8310,5645,867,8109,3885,6869,5126,2215,9489,3829,663,9593,9979,9631,5391,3294,2739,235,6361,8683,8769,718,3660,5578,2499,904,858,4747,632,3149,2608,9679,9138,8276,8882,3617,4270,3324,3273,1017,629,5510,7093,1626,5582,8099,6601,8887,3492,7235,6679,5145,5193,8430,9863,1211,1360,8878,4220,5359,3378,6643,7524,5700,8145,8915,7599,1208,1552,9686,2508,6838,7557,6292,5964,4695,2685,3970,4277,5163,6776,544,4742,4169,9974,5330,3519,7115,497,5455,3663,1089,3679,9543,4219,9279,6574,245,6223,4191,6566,2321,8647,990,2142,1712,2984,1527,154,8115,2371,7942,6311,3938,6983,7590,5555,2859,8927,3939,7326,8788,6930,6133,4222,1656,9634,1091,625,9186,6903,9859,6023,5244,8008,2420,3004,9959,1080,3382,4234,1253,707,9710,600,9467,3810,1307,5229,6629,7498,740,4580,3514,6422,876,7188,8388,6595,9909,1628,768,9858,6840,5191,499,6887,1072,3264,1707,4509,412,1438,7930,2931,5171,7121,425,116,882,4861,5067,5748,7133,8758,9048,6993,1412,6512,2687,4438,4231,8108,9210,858,9341,2302,4205,6668,9219,7332,5828,157,6726,256,6627,6560,2193,3735,1877,3851,6595,1859,8674,4166,8758,7875,9231,2232,1333,2065,2801,7352,9708,3853,138,1084,8705,8306,2234,6276,3224,946,426,7486,8876,2285,2011,9238,5281,7271,8473,2223,3632,9609,5259,9204,3765,8960,7266,2403,2469,707,1196,7058,5401,5478,5819,8312,6877,480,2500,7686,9150,5997,4442,7673,5400,7794,1522,119,9558,4680,7018,6222,6957,5065,4787,6163,2890,9833,5813,5974,2431,4470,5870,3320,9316,7050,2575,2308,3098,1359,8171,6599,4900,2775,9251,6185,777,3166,1465,9289,8739,2951,49,2542,5349,4280,6082,2125,2562,3935,8683,6759,3936,1998,9991,7012,2605,3802,7767,4430]
diff --git "a/leetcode/editor/cn/doc/submission/[215]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254K\344\270\252\346\234\200\345\244\247\345\205\203\347\264\240379635456.txt" "b/leetcode/editor/cn/doc/submission/[215]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254K\344\270\252\346\234\200\345\244\247\345\205\203\347\264\240379635456.txt"
deleted file mode 100644
index dd7904d8..00000000
--- "a/leetcode/editor/cn/doc/submission/[215]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254K\344\270\252\346\234\200\345\244\247\345\205\203\347\264\240379635456.txt"
+++ /dev/null
@@ -1,22 +0,0 @@
-class Solution:
- def findKthLargest(self, nums: List[int], k: int) -> int:
- k_th_largest = sorted(nums[:k])
- for num in nums[k:]:
- if num > k_th_largest[0]:
- k_th_largest[0] = num
- k_th_largest.sort()
-
- return k_th_largest[0]
-
-
-
-# runtime:N/A
-# memory:N/A
-# total_testcases:39
-# total_correct:37
-# input_formatted:[-3858,-536,3182,5894,4366,9983,8440,2314,4264,-1169,4047,-7462,5345,-1731,-2497,-2576,8459,-5433,7300,5924,-2342,-7517,5061,-9984,4186,-1527,-5492,6967,1772,-6623,5629,2778,-1313,4403,9350,-3454,-2384,8554,-4150,-3750,181,7952,-3658,8479,-8536,9277,1541,4186,-5817,-9209,2703,9438,5926,-5937,9664,567,-3792,9750,2258,7021,-8077,555,-8025,315,-4697,7791,-7081,-2796,2326,-7241,6967,-8006,9881,6254,-9670,-4159,-8513,-9717,9061,7682,1160,8654,-5058,-2169,-4251,-7350,7634,-3141,8028,6785,9705,-1834,-3687,3260,-4668,-3849,-4317,4300,5357,3159,-1974,3293,8746,6562,-5718,-1024,-9552,3837,285,6091,-7721,-5129,-8643,-4447,1263,1264,-3375,5203,-7639,7638,-6003,-2075,2421,3386,-107,-1621,-7700,6384,-9516,-7710,-4298,455,-7520,-765,9409,3058,3134,7468,205,-83,1471,1025,-8691,4806,-2852,-5708,118,-8409,-4273,-1983,-5040,2021,6848,187,1675,-6268,2169,8087,-2186,5819,48,3524,-8690,-3125,-9168,4759,1734,9107,4182,5863,839,-1350,6141,7841,6764,-467,2698,6927,8981,2393,-7812,-7771,7167,5206,281,-5257,992,-3113,-4435,5130,9555,4311,2982,4527,-1904,4138,-5415,-1689,-6538,2877,-1991,2785,-2753,-1981,9008,-8455,714,-1957,9281,2948,3906,-3172,5028,3742,6411,-5920,-4371,-2659,7487,-6641,7075,-1107,-8082,-613,4869,1790,7715,2961,-3854,-6994,-7383,4428,-9822,-2867,-3026,8640,-5304,-6050,-3361,4587,-9771,-2971,-4747,7482,-5109,5981,6225,7746,-4621,6275,1449,902,-140,3754,-5636,947,-3647,1070,9143,6370,-2707,-7370,-4473,55,2982,-4643,-4005,-5658,-2983,-376,-1040,-5890,9600,-3727,2280,396,-1163,-3177,8692,7514,4444,6302,3412,3751,-4461,-9493,-7945,9719,-7879,3169,5985,-6362,-7960,-5185,1880,-9655,-1802,6813,6794,-6735,-7449,-7564,-3133,3522,8831,-5708,8938,4749,2362,-725,-4074,-8826,432,5072,9507,-3236,-7666,3970,1161,2692,-8832,1605,5859,5590,-6139,9532,-4431,3724,440,-1878,5942,2058,-3714,-798,-7841,3286,-1031,-5472,-651,-2992,8103,-5828,7541,-1751,8263,1660,2264,-9101,1289,-1110,6500,-7055,4696,-3790,2015,-2849,-4945,-9300,-6938,-254,-3037,-2604,1429,1213,-9022,3113,-4793,-9841,8854,736,-7305,-9662,-3078,-3231,-3321,-5920,2417,8899,-7923,3651,-843,5638,-1203,1030,-3174,3731,7441,4039,-8171,-9762,3335,-1223,-8997,-1800,743,-6643,7865,-4913,-3881,-3150,1690,-1964,-8082,-7327,525,1111,4952,9225,5312,-4727,5150,-6068,4990,3713,-7530,-2123,1941,-4367,-3490,-3767,3668,-5458,3000,-9327,3510,-9530,2324,-3451,7818,-3581,1577,5083,4921,-9436,-7564,46,4369,-5225,4658,6526,5874,2919,-9890,-8355,-9869,5125,-7448,-2427,-8920,5291,4891,-9258,-740,1544,3306,4249,-1892,-8537,978,7061,1087,8274,8248,9167,-1204,1554,5300,-6442,-4477,-7956,3053,-6864,9281,7462,2912,-9385,-1647,-8331,-9224,-9007,2655,1530,7452,-4588,-6050,4994,-1163,1925,-6203,8713,7610,-8262,-1126,-8723,-2753,-7143,-7405,6863,9553,-451,-514,9767,-6619,-1682,-5093,2507,-4408,-6933,8021,-1632,9764,-6311,4071,-1327,-3872,-4288,7269,5736,7700,4491,4354,-9188,-6921,3331,-3218,7870,1081,-2439,10000,-103,-7007,9823,3842,-7152,8067,4431,1431,-9751,8540,-636,6260,-2843,9120,7971,5192,-9804,-6712,-7554,-4479,7806,-5213,932,-1129,-7534,-4778,1491,7105,-4211,-731,-8186,-6110,-7279,-6104,1302,698,5233,6615,-9109,-3918,-5076,4036,8291,-4460,1957,-7171,7931,-2439,-7263,1635,414,-6111,2766,3395,3964,9223,6892,8385,-1903,-5833,-1803,7256,7860,-5882,-5904,-4418,-1408,4833,519,9924,-5105,1161,7932,-8764,8186,-3353,-5976,66,6588,-6906,1650,-1645,-3447,8571,-5763,-3962,2568,5123,-9239,5449,2038,1279,7671,-2058,-3009,4947,4768,1477,7370,-7859,-9476,-7148,-9205,1541,-5899,8151,6842,-464,-904,6747,1745,-7322,-3868,-7142,-7072,8202,6938,2628,4077,9512,5384,-2354,9892,-6058,3007,-1448,-9253,-5813,411,-9189,6081,-8828,6839,-3272,-6401,9568,6986,5036,3612,-9517,-1620,-7872,5019,-4911,-8511,513,-2491,9404,-4190,6828,-4293,-9138,3706,-3646,1669,-6485,-8813,-3985,-2287,-5179,-6166,4205,-2046,1810,1247,-8551,9948,4287,1437,7331,-7071,-8578,5881,9829,-4458,9808,3450,-2004,-2735,-3987,5805,8001,-9157,-7728,-2842,4813,-6787,1577,-6376,1586,7127,1977,3539,6256,-4142,9706,-4826,9480,-3992,-1670,934,-6290,-4337,9837,9976,-8040,9403,-9256,-7052,3973,-103,-4318,1845,9487,3733,-9498,-8461,-4996,-6215,-3028,11,-3012,8469,-3657,-7306,4089,1290,-2208,5023,-7238,-279,5235,-5423,-5071,-7207,-1673,2657,6741,-3453,-9546,-69,-1298,9342,-7526,4124,3575,-3297,-7313,2074,-3187,9315,3746,-8553,-2663,9803,199,-9487,-5193,-8899,7993,-7517,-8914,7965,1588,-1129,5520,-2236,-6922,5131,6130,1295,7192,5219,-1059,3869,-2391,7047,-6241,2797,426,-6004,2592,-1919,-9006,-5080,7838,4178,-421,-1403,-3136,3263,-9558,2745,4446,-7177,-9087,4096,4265,7972,3087,-8355,-8441,-9998,8232,-6516,5550,-9973,-2647,4261,-6122,-1550,-7551,6482,-8076,7505,-5444,-9363,6637,-9206,2710,-6313,-3679,4264,-7198,3725,-7422,-3193,6326,7948,5669,5063,-6255,-9699,4286,-7469,-9520,-3164,9764,-702,-332,4364,-2751,6243,7782,3050,-3238,-1597,4207,308,1671,-6183,-3123,-8957,-4212,-5157,-3217,4052,4540,-7764,-7307,-5946,-2363,-1663,-7400,3059,-6096,8664,6887,1484,-5504,3882,2878,-7060,9237,-9866,5250,9015,207,8915,6420,-2526,960,4927,9896,8713,-6204,-2568,5975,-8716,7075,6055,-7523,1087,1818,8892,4001,-4419,-9466,214,7271,-8127,-2309,-9693,5985,-2298,-3816,8661,-454,3599,1687,-5837,3447,-281,-5715,7477,1169,-2376,7154,-289,-4471,3665,-487,-1841,8529,6293,-8486,1624,-4173,-8951,9707,-5701,5909,-5755,-8698,5390,-9108,-2604,3723,6414,2539,-7212,-7879,7976,4464,-5157,-6070,1161,7046,-3598,7422,9275,-2177,-849,-669,7381,-1290,8895,-2580,-8401,-6529,-6069,8131,-2143,4420,-5539,3196,7918,1105,2920,-8428,-8877,648,-3572,7466,-8450,-3650,2253,4073,1410,-5768,2259,6040,-3936,8974,6108,-1815,-4611,-7669,-9297,6341,1458,-6127,1108,-6522,3769,5341,7359,-3172,9596,-9485,66,9881,-2171,-8964,-5430,7991,8855,-162,-9373,5138,6488,1069,589,-8885,4581,1147,6126,7969,-1061,-9356,4480,4799,528,-4422,-6755,4815,-8545,2909,1471,-7714,4665,7436,1892,2605,-1879,608,-4912,2869,8709,-9539,-6758,6387,2394,4489,6159,-3674,6188,-7727,823,9128,3823,-7246,101,5252,7387,-3335,-3730,-3802,942,-9921,3400,-3547,4716,4851,-8801,6018,-9124,-6821,-4452,-8307,-3743,-4926,-8760,-5327,6106,9400,284,-3103,7732,4648,-5527,-8972,-7252,10,-6269,2172,401,9581,-9077,7325,-6155,-9145,1814,6499,-6124,1474,-4180,261,-175,9907,549,-8702,912,7206,2118,5126,-807,1534,-5680,7095,3195,-4473,6764,1784,4527,3768,-3722,1283,3522,6127,9296,-190,2662,1439,6774,-3921,-1761,2809,-7694,2984,-1771,9483,-7829,-1525,7543,-5529,-2891,-2986,-5854,4849,-2026,535,1507,871,8203,9465,-113,-5423,1006,-1661,-9443,2922,9245,-9410,-4388,7827,-8720,3271,-3831,6655,4169,-3804,7547,720,4106,8438,4342,6495,-1555,4020,-5023,-8409,-6340,-5087,3264,-4067,-2337,4156,-8486,6399,1383,-1918,9895,-6108,2433,-783,-2454,6101,-403,8280,6317,5690,-634,8652,5814,-222,5333,4132,5442,994,6056,-9940,-1085,4222,-4927,-4474,5699,-7130,3474,-9446,1697,-5483,-8220,-3357,5181,232,6942,-9632,7107,-2411,6650,2978,8714,-693,-4495,1151,-9584,8822,3218,4194,-9015,-3092,2900,-8399,-9674,-141,-8550,6034,7789,-8653,3487,-9422,110,-6271,-6396,3707,-5334,7860,-916,-697,6525,-2934,4558,6381,-7873,3186,2725,-8954,3977,8555,9591,4119,-2477,-4888,-3659,783,-3191,6064,8879,-3781,-4520,9037,8436,3991,5229,6059,-3745,-8917,2550,8747,8604,8735,1925,-9410,9200,2317,2387,6325,-6847,-1054,8078,-9424,661,6598,6287,-3702,7827,5954,9069,4686,4609,6664,7834,-1919,-1793,282,-1771,-1662,4281,-351,4166,9213,1306,8176,-2804,5097,3612,4005,123,-4511,-9051,6914,8131,-1787,-9125,3132,-188,9611,-883,1606,6277,-1998,9729,-7784,-847,-4866,-8468,-9745,3161,-3750,7361,2266,5848,-3341,-5511,3855,-5517,1770,4921,-7098,680,-2675,-6359,7959,-9331,-2466,4872,1833,5951,-7611,-462,508,-5124,-187,3232,-6836,-7446,3269,-4866,-3054,-5313,7340,-616,6317,-4912,-7405,1906,6680,8138,-6069,5026,-6533,-3784,-152,-8654,-2545,-4258,-7543,3225,-1455,-6811,1278,-1257,8083,-9974,-3030,5277,2176,-3111,803,-3901,9296,-3328,-5429,6690,-3428,5389,-1172,2580,5760,-9969,-7402,1124,-7379,-7697,9949,-6997,-2882,1453,-9019,-2429,-4180,-959,-3640,-8446,6163,2359,-2145,-82,-994,6503,-7869,7389,4155,-4209,-6469,4709,-789,7757,-2279,9978,-8462,5201,9813,6613,-7886,1096,-1747,-505,6259,4484,7314,-3602,-6798,-4725,-7088,5028,2056,3023,-1617,-6418,-1382,-2279,5061,2739,9244,-1598,-4187,2832,4451,-1259,-9750,-5738,4996,7050,-8594,-6663,-6798,-2972,-8426,-372,427,1468,6622,-2719,-9703,3003,3297,-6019,6221,-6032,523,-6400,-582,5455,8115,-2019,9570,-9481,-8775,9654,-1203,1386,1902,7261,3609,-6939,6827,-1188,2578,-3050,-6028,-6017,-8669,-7884,8074,4684,-5443,-2313,7756,1705,2489,5867,-4756,3113,4191,5261,-2348,-5888,1205,-6583,-1435,-8709,-9331,2668,-4559,-667,-1811,-6136,5648,393,9344,-8087,6855,2667,6269,7381,1643,4226,3966,5977,1026,-1959,-1735,5359,-3017,226,1993,9623,-1912,9163,712,-4482,-5043,2062,4620,-7718,-2130,-4999,-338,-835,6371,619,2412,-2177,-3936,7237,-4259,1729,-1988,-2036,-5800,-1641,-5303,1033,3243,3934,7089,5338,-5543,8471,893,1067,8899,7218,-9690,-7474,-8851,6995,374,2010,8843,8260,-67,-1914,-7175,-6741,6565,-4664,8387,-1503,-4910,6795,-9908,8555,-5327,-9184,2204,-8095,-4873,-9111,-34,9387,2332,4567,6488,1222,-1516,-4300,6876,8168,-8878,-2687,-3232,8297,2433,4287,-619,-7343,-6428,-7609,8125,-8365,520,5536,4959,875,-1211,9390,214,-6162,-4577,-328,-5932,-2749,6243,-6294,337,-7883,5578,-707,-3912,8090,-5309,4520,-2719,-2949,7915,-8899,-7743,-87,1111,4146,-7738,9642,-4563,-6451,6690,-9557,6671,7870,2766,2488,1853,-5847,2087,5999,2346,-4543,-3666,5937,-5832,7328,3719,6062,8334,4330,-5161,4282,-1787,-4294,-7638,202,6432,6344,7150,-7078,3311,3533,984,-5188,-1129,-282,-4674,-9664,7835,-3137,-5241,-9592,-8077,7173,3938,8305,-6080,9601,1163,9234,2319,7245,4698,-951,9916,4325,6923,-2489,3736,-4503,4197,2589,5600,-3289,3463,3425,3749,6497,-7571,-6140,-184,7395,5067,-563,-421,-8816,8351,8358,-8223,-4408,114,5931,1774,-6439,9197,-9676,-5600,9345,-1417,-2549,-110,9916,-7898,-9611,-6659,7494,6525,1373,4591,-9801,-4003,7685,-8168,1521,-8876,2248,-6301,-3737,653,744,-4320,8931,-722,1640,-3764,8488,-7124,6007,-1452,4873,4099,2542,-6461,8263,-9435,4155,5100,-7239,-1030,-1272,3117,1158,684,-5827,-7107,-8642,-3719,6480,-6768,-6695,-7221,6686,4142,-8511,-6751,9028,-9688,-3809,-2273,8755,9364,-864,-6007,-996,-858,-7701,9684,-1839,-288,-9855,5724,5465,3349,2156,-632,5218,-8912,7363,-8809,7375,6039,-4337,-8326,3003,1834,-6455,6206,1927,2510,-4485,5115,2131,2026,-7314,8537,-8111,-1992,2821,1086,9104,401,4099,-5966,499,8091,2889,782,9107,2901,4235,-7613,-9329,-4003,-3050,-2510,9619,-9293,-4934,4248,-7334,5155,-2632,-7613,-5865,-5376,-3984,-8913,8549,-1077,-7836,8113,7055,2541,6481,-6588,-7538,765,1550,2514,9314,8486,-1176,-3420,9545,-6219,-9346,3339,8829,-465,-7189,7019,-4884,8715,6191,-569,-3530,-6011,-527,6104,-3015,9893,-760,4674,1069,4169,-1297,5817,-8622,6976,7711,-5219,-6943,6359,3136,5136,4746,-6417,5108,9478,-5535,7580,-3975,-3853,-8411,3568,-5632,519,-7922,-3763,3075,4618,6659,4024,2333,2926,-6215,-8513,-121,6802,-6120,9530,4987,3692,2439,5538,-542,-2919,9912,7882,-8226,-5300,-4334,5836,5820,3486,-262,-9871,5438,5243,704,9669,1800,-5762,1678,-1535,4382,6490,4585,-9456,6301,1090,5899,-1466,7515,-5776,-2912,2155,1894,9485,-2583,-3032,2249,-5199,-9122,6498,-75,-8331,-4277,2141,8946,-7580,-8051,9999,-6993,-5583,-7631,-8497,3896,5185,-7603,-2932,-8073,6306,8678,2904,5449,8330,-8955,6702,5508,-9408,-425,347,-5295,2302,4231,7516,-2934,5495,5386,-2897,6446,-4993,-5482,1038,340,-9458,2963,7810,7229,4028,8127,-2744,5635,2169,-5805,305,-3501,-1988,-2001,-3327,916,3729,8857,-5349,2445,7710,-7559,298,5920,-7081,-6636,3087,4386,-7480,9847,-7100,-4653,-6981,8906,-1470,-7804,1558,1849,2203,751,3486,-7931,8802,-4645,-4013,61,3764,-3964,5031,-3005,3830,7272,-7675,-371,-3015,8570,-6375,8210,6709,-7086,-2792,-7972,3570,9515,-1666,3846,-3785,8171,958,5633,7530,849,713,-7016,-9196,9647,7675,-9869,-3152,4597,1554,508,-8824,6728,8499,8802,8724,-9250,-1497,-8395,4910,787,2016,5650,5046,1250,-527,5508,-8727,-3339,4322,-2130,3292,7990,4596,-7361,1084,-8668,4271,704,9539,3269,-3055,-3402,5305,6664,-8619,1943,5058,6915,9606,-8039,-9595,8589,319,-5609,3242,1753,-9430,1839,-2625,3027,-4498,91,-4083,798,-4784,3120,1464,7354,8619,4632,58,-3926,-9389,5689,2840,-8991,-5347,498,-717,-3224,-2495,-858,530,-3264,18,2055,626,-4128,8940,-7476,-2745,-7971,985,-3,5815,8175,-3037,-2482,6334,2465,-6164,-3026,-5611,606,-1531,-6522,-1546,-7826,7546,9094,1735,5351,9798,8702,-2456,2315,6826,-3261,-8935,9283,9144,-6161,3949,-8115,-7774,-9110,-9406,-8864,-5661,-8567,-6321,-2013,1819,3707,-8410,6096,5415,9699,-85,691,-3016,7608,-9371,8934,2502,-753,-2846,9412,6316,-8924,8862,2641,-2881,3723,9235,-4991,-1063,-1403,-8362,3591,8478,2940,1330,7670,3162,-681,-4750,-9681,-3958,6300,-3345,-1898,7457,5756,6782,-967,-901,3165,-6613,-5547,-5230,-1237,6247,9827,-6088,-6993,-1202,3337,9472,6931,-2331,-9199,-1809,-921,-246,4326,4242,-4835,7749,-5844,2020,2908,-9126,-1581,3253,-9131,3185,-1706,4842,-1264,888,6218,-5123,-1362,-7216,-117,-779,-4951,4215,4128,4958,-8690,8011,3018,3147,-8856,-8137,-1225,-5164,3182,9268,-4392,2954,5415,6282,5541,6010,2565,-3859,-909,-1248,-876,3280,6676,3162,4700,5804,738,-8209,-9860,-5927,-5140,-884,3952,-3644,7311,-9117,-5473,-6660,4327,7132,1784,-8244,4235,-8947,-1877,6221,-4741,-3560,-6825,7167,92,-4963,-3175,-3958,-3896,7321,-8012,6374,-9087,-2699,-2932,8997,-6365,1666,-1260,-4781,7422,-595,-5963,-5667,7483,-5332,9141,-7043,-3204,-7275,8446,7719,186,-3612,8281,-5556,5096,8442,355,3412,-8860,-9317,-2474,6407,-4818,-84,8580,9839,-7737,-7859,-3841,-6477,-9778,7697,9285,5331,-5223,136,-2344,-5488,3520,-6192,-9694,-9,3898,6550,1742,4599,-3659,-2370,-917,-8933,9445,3483,-4784,-141,-536,9204,737,7858,-2170,-6881,3939,7865,-2970,5427,-54,6182,-661,3239,5169,7296,-8185,-7287,-86,5274,-9374,5096,1796,8564,595,1626,9215,7095,6517,-7601,8114,-3857,-6998,2919,-1720,-7773,7803,6999,-2795,5596,-2317,-8271,591,-8806,-4342,9748,-7950,2117,6516,-6707,8317,-7839,-7295,2454,-2608,-4469,313,4233,5979,-3100,8285,-2505,8564,5431,-2526,-1223,7741,-6502,320,7931,7640,40,-9669,8038,-732,3975,8549,-5763,-5131,2479,460,-6340,-415,2696,7991,-4651,-5548,-8862,4438,2391,8916,4065,9868,-5118,-6607,2596,9160,6830,5290,-4354,-5854,-8675,6030,7511,476,-9152,-6102,-4027,9855,-421,-1666,5774,-7252,-3080,8805,8728,7782,-4145,-1933,-3708,-3318,2772,6157,8308,6802,4050,4657,-5383,3029,5220,-7437,-3013,-364,2933,8792,-9706,-6953,-694,9276,3491,5149,-6130,9019,8904,-7773,728,-6421,3186,4832,3585,-7473,1095,8246,-9148,381,7625,-1414,6347,-7160,-7129,-5161,6064,5149,302,-9159,-203,-8290,129,-1451,-1154,-7795,-368,-8422,-3123,9450,4648,-6484,9973,-664,-5011,-287,4497,-8391,-7332,-1335,-7198,5826,1017,-9639,-7002,2799,6670,-3015,3652,7024,-2941,295,8381,4709,-148,-7627,856,5870,5387,8502,-5968,5961,-4424,-5505,-4496,-8338,7873,9036,6632,-8520,4698,-7485,-9556,2602,-3281,-8619,-1864,1683,7397,6664,-6899,-5716,9726,-8226,1480,9733,3293,4143,3657,-1006,-4001,9378,5442,-7142,6001,4642,-8271,-6164,-8779,-6979,5477,3641,8611,7256,3343,-8852,-8546,-4808,-4677,-6355,-4510,-6772,384,3939,9899,-3796,8215,4510,-1398,-5250,3346,-509,2252,1339,-8490,-8529,8249,-2526,-2218,-6780,7690,-4674,258,8022,-9414,-2635,8533,-7467,2041,5211,5331,6377,4153,4686,5793,-4455,-4359,5966,803,7275,8822,-2034,-2848,3051,9307,7878,8991,-7147,3698,2378,-9397,-8315,7560,547,-9370,6315,-321,384,-7104,-8614,2980,-2619,1986,6788,-7871,6413,1174,-3134,-8044,-1047,-6254,-7571,-9071,9920,3323,7987,2941,-9276,7891,-5324,-9562,-7756,254,-1375,-3770,4682,2715,-6134,-3170,-2161,-3360,2928,-3872,7583,527,4376,-4854,-1558,-2186,-2352,1244,1222,-9459,9385,-1663,926,9684,-9054,5045,3814,2953,-9114,2975,8621,-111,6256,6917,3725,-6061,-1462,-1329,-8733,7438,-6964,1499,-497,6146,7277,2578,-1300,-966,-1857,6498,-4173,8331,5920,4823,9615,9835,6039,-2849,5699,2442,-5342,-5444,-5760,5634,3753,-142,2935,1964,-7190,1051,4143,9643,-9595,-5320,-9333,-504,-1872,2302,4906,-441,-6461,1725,5112,-2097,5197,-9116,-6906,-7216,1842,4422,8267,-833,-6401,-247,8985,8641,-9561,-6412,-8147,-6281,-9256,4424,-2088,4828,6995,9918,1378,-3587,1378,9910,-4878,-1312,9077,-446,3892,-3798,1467,7602,897,-8913,-7119,6540,7362,-1111,7940,-200,9776,8679,-2741,7188,6375,-7970,-8995,-364,73,1082,-9245,-3971,3491,9143,9867,1671,3520,-5978,981,-2488,1033,-9398,-4983,7086,2990,-4904,9432,7764,3882,-8942,-131,2175,534,-9686,7527,5265,-8741,-6445,8363,6320,-7154,-523,6797,6086,4333,-7840,2905,-5267,-5571,-1423,-1,2215,-2609,3873,-1463,7093,-2714,-6690,7653,-5787,3424,-8932,-64,3666,5337,-5339,9642,9992,-2800,-2792,-1904,645,4141,8875,-5198,-8379,9354,8515,-7060,8593,7897,6472,9494,-3519,4345,-7959,-3898,-7980,-5160,-1954,7310,8712,2707,2620,6973,8606,-2482,7938,-3860,-1065,328,5677,-4320,8929,-928,4859,-341,5430,-740,1437,7181,2450,-382,-5137,9406,-1136,8204,6306,-1414,9379,8627,2582,-1026,-6904,-9677,-65,8878,-4931,-8095,3538,3859,-7677,1489,4605,6611,6655,9942,261,-4459,8914,8653,650,3410,-865,-1531,-8049,-5363,8221,3801,2764,765,1587,6117,2137,-1603,-6100,-3186,-511,1572,-3011,-3565,4696,2447,6446,-4482,-9223,3770,-7136,-9735,6138,-5248,813,3990,-2975,5788,6642,-6592,-7107,9552,-6628,1983,-2318,4569,7007,1835,2298,91,-4414,3299,351,-7527,-3233,-8335,645,7816,-6046,-3149,-5636,3154,6455,-2816,7562,6651,-1392,9456,-4230,1824,-3275,-8282,-7062,-8680,-5459,2178,-9816,3466,2278,4383,8958,-1826,6862,-7937,-7287,-8078,-4716,-7935,2292,-2219,1730,-8166,-5659,-3923,-5203,1333,1365,-6117,1794,-8413,-2915,-3972,9291,5953,3169,7564,-6636,-1487,8324,4580,-4879,-6837,-5031,139,-1115,3791,7523,2456,1423,2255,-2231,-4654,-526,5585,-5993,5022,4882,-2648,-7110,-3907,2002,-4287,-4923,-6932,8869,-5700,-1630,-7028,8559,8768,-4247,6591,4718,-8534,-4302,-296,-159,-3991,7952,8200,-2685,-9422,6621,-4634,8116,3657,2609,2067,-8830,-5970,6047,-4465,-4227,9177,3635,1364,6546,3743,8434,-5228,3894,-7472,-9869,-3851,-9653,3602,1340,-8971,8567,4237,-7736,9942,1551,-9281,-8830,6733,6327,1839,-7845,6231,7639,-8992,-829,-3416,-5830,-5763,-5566,8697,1462,-8004,-5865,2410,9937,8325,-1165,5463,3320,-3963,-9204,-8921,5481,8772,106,-803,-8546,5911,8662,-7256,-7832,8923,5578,-7883,-474,5570,-6642,8530,-1624,-1250,3698,-7105,-3164,-1784,-1082,-714,6772,-4798,3831,5561,8282,-9439,-2985,-4733,-9378,-6647,6517,-8594,6806,6520,7045,5063,5323,6242,-4105,-1136,-3037,-4445,3621,9505,1237,-380,-5701,7792,457,-15,-3795,-9709,-6214,-6360,-5923,368,8587,2530,3671,-9497,622,1085,-4350,-1130,-6988,-8022,-4759,-9591,-2360,-1710,1960,-4116,-5220,-5081,-5064,-1939,9979,-2859,3513,2109,2514,-5351,1211,8041,1603,-1514,-5090,-9384,6879,-9174,1912,-620,8625,421,-5830,6529,-5402,-4599,9499,5082,-3033,2486,-1607,7427,-9193,-1996,4775,7628,105,-7118,-7183,-2520,-7534,8685,728,9832,9002,8495,8874,-8938,8628,6871,-6533,-5734,-5155,-4933,6915,1513,7950,3162,8044,8849,-8195,-1264,-3862,-9889,1776,2174,1204,-7567,1133,-4823,1323,1232,-9770,-2307,4022,6333,-6629,-1559,4897,3085,2244,-6495,-9926,-6167,-7015,-2974,-9613,-5282,6975,-4688,3902,-120,-8270,-1511,5948,3530,6116,-8046,1732,242,-5671,-1057,-5316,-1633,-2038,-8172,-7014,2354,-7777,5636,-8911,8173,-4806,-2688,5399,-9621,9027,-1426,-245,7828,8666,-4962,-2911,-831,-9857,9438,-5531,-9638,7894,-3181,3452,-4221,-9116,6822,-9341,2889,-9024,7384,5129,-8068,-63,-4175,6515,8707,5196,8610,-2696,-786,6819,-1360,3291,-7539,-6456,-5677,-3967,-1855,2273,-6647,9100,-7344,6403,-3226,-7135,7381,1658,-4014,-3627,-7,-8683,797,-1033,8945,-8486,6429,6922,521,991,-9008,1006,8490,4745,-146,8147,-111,141,3627,-7058,1106,-7640,-8350,7368,3748,-1592,5627,-2909,5217,-5356,1847,-5647,-3942,-9798,2275,-8729,981,7556,-6097,-9364,984,6281,-1155,-5913,3751,6174,2697,-951,-8952,2234,-2056,-6014,1622,2043,2243,2390,5274,2874,7912,2600,1436,1048,1924,3261,-8504,-7132,8313,3786,8598,7828,-5940,3520,9526,6457,-4297,-1430,2971,-3771,-6407,9486,-6266,1866,1252,-4972,-800,9280,-3416,4071,6398,2172,-1172,2907,-183,5713,-9276,780,-1470,910,5560,-3997,-185,-881,6618,4398,-6618,5851,6237,3193,4491,3485,-4489,5303,26,-8058,-4116,-5438,-8595,-50,-9933,-5681,698,9711,2533,1133,7065,-9779,-3899,7418,-3586,5583,1800,-8293,8039,3933,-9651,56,8045,1792,-9705,7524,3174,-659,8420,-3730,2943,-3096,-4383,6,-9181,-6850,4735,3863,-3884,-2348,-2387,-6837,4957,6584,-5311,-6678,-1819,-2849,-6902,1150,3747,7572,-2542,1059,-5606,8855,-7820,-6569,4513,-3309,540,3268,-3502,-3746,-6790,5784,4969,-9703,6536,-6039,-7703,4580,-675,-9513,-2,5210,9105,6041,-97,1348,7947,-5398,-864,9139,5886,7348,5716,-9353,-575,-84,5649,-5325,-1169,2731,-3630,4525,2432,-6902,-1395,3109,-9614,6955,2616,4585,6481,-3887,-2264,-3689,-4712,-2341,2971,2365,3801,7220,-3939,7049,7247,-4777,8280,-1437,3450,-5809,-1848,1558,-6159,7814,-5917,-5546,-9278,5511,-4533,6396,9302,6137,-9046,1469,-2148,2360,-3709,4392,-1671,-9054,4895,7518,-5806,8609,-360,4280,-1231,2977,-8104,8630,-572,-5723,3469,-3650,1621,-4986,-6389,-9641,8329,5739,1212,-5000,-3298,6508,3932,3366,5398,599,1644,9009,-6145,-5331,4738,-9691,7562,7040,3169,-789,-4404,-8253,568,-2688,3023,1243,3915,3335,5195,-1249,-9698,5797,3850,9527,-2996,3815,-9990,-7760,-253,-882,-2112,4214,-7855,-6569,3091,-6123,-6181,-2788,7096,8144,9395,-6059,6206,-1693,3707,746,-5166,-2457,-3134,-3285,-1427,-8784,-294,982,-4636,7365,-6781,-7362,7369,-9794,1575,-8917,-6427,8152,-1752,-2046,4571,2057,7010,-7299,4870,6627,-7066,-2599,1167,-395,6677,-3741,6755,252,-7279,5509,1188,-5037,1221,-2780,5099,1261,-3278,-5240,7080,-9324,-1789,-2160,9407,2050,-7409,-4714,-1571,-3219,3392,-5154,-7791,420,-8350,5697,-813,-3042,-6370,7833,-3406,-4157,5926,-7158,6064,5619,-7193,9281,4731,9029,-9711,7130,-8011,-2895,-7545,-7921,5853,5588,-3255,2046,-6317,1488,-7562,5733,-6634,9041,-7288,-4069,-2383,1325,-5019,4381,-1959,2688,8057,465,-5083,4260,7961,3779,7784,8548,-1097,-7793,-9137,-2696,7536,-6999,4710,7142,-8287,6105,-4229,-2244,-469,3208,-5447,-2932,-7367,8372,6846,-8534,9693,6765,6847,-5483,5410,-398,9409,-9495,1537,1348,-2766,-7405,9832,-8062,-4958,-5878,-8854,8327,-9818,-3566,8302,-2069,-8220,5181,1077,-9669,-5113,5505,5586,5398,1733,-3888,-2289,8321,-9315,-3392,7057,6507,1514,-6641,-7840,-1748,-2455,8235,-2870,-4656,7894,-9235,-5878,167,-3779,5768,-9966,-5716,-2177,1349,-1904,6456,-5166,-7080,1072,2272,267,9831,-8664,-8703,6396,-1970,-3551,-7882,-6787,-2573,1183,-6545,1286,9917,-6035,1242,8578,6621,7883,-1132,4190,-5740,-9303,293,-2389,8769,1214,374,1604,-7819,-44,-6169,8436,-9193,-4573,-7428,-5776,9889,9287,8820,1686,-7423,-4864,-842,-7625,3016,9578,-4317,-1633,-2315,8164,-5144,2577,-8784,-4065,7602,6215,7621,-1413,-5868,5330,5450,-7726,8907,-2374,8992,9219,4575,-4277,-1096,-6877,-9785,7253,6519,4531,8382,9350,1278,-8447,-4194,450,-8311,-937,-4508,5198,1697,9436,5448,-6062,-4170,1806,-8067,2411,2296,1225,-7071,6657,-3142,5916,-1964,4201,-2069,5295,-8863,5124,-7670,-811,497,-9811,9142,-6546,-56,-169,-8638,-2295,9996,2769,-7482,-7948,7129,-3965,-2903,4871,-4487,-5374,-5173,-1480,6335,-4211,-8870,-4214,-9034,7842,-7674,4229,-5270,8999,6543,-5198,2828,-7708,-3221,6461,-5645,6887,9648,8205,-1417,774,8945,-997,-2597,2500,4516,5118,-7488,-3512,8,-2806,5562,5786,2047,7505,8583,-678,-2118,-5056,-4723,-6977,-5271,-1752,7357,-5080,1233,4494,2047,8934,-5843,-3245,-4817,8552,-2733,54,-1602,-3922,-4781,-4790,-3494,1841,4898,-2280,6216,-1416,-7734,-3866,-5620,6088,5143,8466,4963,6982,-4380,-6362,-1757,-5939,-6386,3276,4238,-9179,4368,4353,5553,-9726,-3654,-6015,1593,-6132,-7207,2954,1806,-6037,2264,9884,5826,7769,4445,-5661,-5538,790,-6311,-9939,-3875,-8234,-1828,-1982,6036,4562,1567,7150,9377,-1800,1230,3631,1478,-9075,402,-2843,8296,2431,715,-3929,7368,-5136,6385,-3217,6909,-8123,-2096,-1954,1537,3581,-7514,3177,5050,8883,2061,1981,-7284,-3321,1876,8229,7573,-1364,708,5347,-9928,3839,-1621,8821,-721,9640,-9116,-5334,-8635,-4718,-7847,-5618,-3255,-9590,-4512,3180,392,1545,5874,3823,-4055,8796,-5464,-1651,-3864,4771,-8596,-4319,-9325,-4544,-5042,2158,3412,2310,-1940,-7555,-365,3924,660,1679,-1800,-2654,4909,9959,5704,-6112,7050,-9136,-9723,-4984,6016,6918,-2046,7986,-947,5890,-786,8188,5642,-5108,-2860,6881,-4124,-2360,-5679,-638,9391,-2241,-5782,7401,-7447,8320,2545,1117,3302,-4609,2730,-6873,3342,-1048,9924,-9305,246,2280,8008,-1921,-3209,1510,7470,-1697,-9635,1366,2369,-7727,3581,-6940,1883,-2925,3515,2576,-1904,3909,4216,-8935,2357,1850,3617,4602,1326,857,-7543,9297,2348,5172,-5395,3793,-7295,8261,-8911,-1314,2944,5977,-2870,7057,2910,7057,-706,-6413,1242,6063,-8604,5243,6008,-7084,7745,-5517,-2523,7766,-8831,-2754,2315,-952,-6878,8262,-3848,1098,3716,2388,-9726,-3840,7809,-7527,-6588,7677,-9787,-450,-2930,9596,-6468,-3117,2927,3967,-2478,-7339,-9437,-5717,-3662,7759,-6675,-7982,-9593,-5497,9177,2808,-3994,-1355,8385,-2565,7611,4986,5647,6453,-1922,-9322,-5508,8144,-31,502,5729,4651,-6906,-6141,-5584,9740,-9660,-2071,-143,6381,-6089,-3571,1290,-9726,135,5375,2647,1489,6750,-1498,9935,1056,9435,-7945,-932,7548,7451,6260,6732,3638,2240,832,-6207,2374,9296,-8831,8012,6619,-4100,-947,1108,-3607,-4187,4415,-5417,6568,-2681,-1179,9831,2874,-9204,-3840,82,113,6883,5413,-8681,1524,4469,3963,-268,-1655,-7683,-7804,-4243,734,-3319,236,-876,5510,814,9124,-1740,-961,7861,6434,-4688,978,6376,-2316,3969,9388,4248,207,-5754,433,-6132,4432,-4174,734,-2188,5923,-1357,-2207,-6541,2307,-7458,-3597,-4387,7103,6916,9847,9540,1662,-1738,-4902,9118,-6116,762,-5179,9249,-2088,-8172,-278,5383,-4920,7874,2686,-8513,-2885,3290,7675,-3517,4425,2360,9512,-1850,-3769,3309,-8351,3046,1404,464,7748,7990,-6173,7041,7070,8962,-1608,-7317,593,-763,-1945,-3225,-7082,2750,-9401,-9620,-5158,2494,-9339,5300,4070,5298,-8750,-4784,474,-1403,-9461,-7980,4865,-3444,-2077,-1214,-6868,4934,5594,-9423,-388,-4,-9417,8124,-6489,-5153,9307,-4750,-8038,-4530,-8026,2188,6578,3714,3871,2516,4387,7371,8820,9097,6396,7127,2384,9929,-6054,-1006,-7398,4419,-2692,-8907,-2749,3503,-5979,1200,5809,5045,-4790,-6299,8237,-8978,4904,-2925,8144,-3398,-380,3095,1060,140,790,2518,-2893,-1846,-113,5968,5073,7013,1889,-1086,-4911,-4097,-5794,-9791,-8657,-5737,7237,-8115,8327,-9849,2845,9442,-3506,-2981,6312,-6340,856,6286,9722,-7078,-4132,-9823,650,2303,-57,-8088,-9705,9465,-762,-4606,3726,-8075,-4342,965,2497,-3680,-6828,-1697,-1754,5406,-3925,4043,-1301,-7952,-2505,-8105,-7284,-569,9917,4661,4885,-279,7252,3672,-4289,-7778,9860,6752,-6370,-5135,5909,-7426,-8154,-8840,5916,-9699,9410,357,-4413,1724,-6538,-8160,374,-3508,-2769,-3246,9781,5034,6660,4172,1015,9476,8537,-5743,2642,-7447,-3342,-2276,69,7674,8735,-4096,-7177,9343,7710,1217,4643,5580,6858,3475,-3387,5310,1526,-4672,-2598,-3533,-8108,2453,1859,-590,-8288,2133,7596,3785,-5150,2909,-5385,4916,-757,6939,-5863,-9125,-6318,-1966,-7293,-4834,5228,-9753,-7885,-5762,6572,160,-2427,1209,-6776,4764,-3003,8365,2245,-6248,5518,-7139,3871,683,-7268,-2168,-4591,-1194,-9175,7148,-1211,4798,9434,3631,7071,4089,-2231,-3611,-4003,-8183,-2768,5450,6185,-4013,-5857,-8991,3364,9534,-6375,-2451,9216,-4141,-5619,1922,4488,-6988,4626,-6199,-5340,2517,8155,-8609,376,-8403,8372,-7023,-3546,-3225,5505,-6990,-3989,2493,9887,-6226,-4279,-5882,5483,-7405,-1338,9879,5507,-5547,7905,2008,-9666,3447,-3644,7552,9880,-3641,4982,-2031,-732,121,-944,-1983,-6744,7638,5254,2984,-2713,-7053,2865,-1943,-5770,-8126,1951,-8085,-5016,619,6718,930,-9532,-3364,-2421,-4517,1256,3910,298,-1878,1899,-8846,-1143,407,-689,8360,9074,-2074,9582,1431,-6425,-2854,-4021,8225,5611,-5492,-218,-5028,-3130,8467,547,-2797,8714,4570,-175,-8478,3124,-1121,4924,6081,-6354,6754,-7588,-4461,-3761,1400,-6823,7590,-542,3734,5480,7500,-4817,-4041,-6937,-8440,-3583,557,-2213,-2897,4323,5871,-2918,-4154,-6616,9572,9228,-8961,-137,-305,-4619,2282,6542,3546,-135,7070,7179,7009,-3978,-1551,-7682,6980,-5615,-8260,-9457,6767,1333,-9750,860,9297,-9537,9049,-7316,-7854,-4941,8691,5096,-4227,-3914,7849,-8688,1389,-2235,4281,6527,-1372,-8349,-4452,-1618,5048,-7344,-1392,50,-6958,-7846,-3834,-2367,-7513,-8914,9986,8090,-9681,-7605,-2487,4249,-5290,-162,2924,8152,9486,2804,-9566,157,-7712,-7155,9756,6071,8189,3329,3387,1854,5107,-5580,512,5382,-5591,2898,-5956,3734,-2360,-2431,1467,7523,-288,-1477,3250,-5361,-1917,231,-7637,8159,-5797,6377,-5316,-7316,-3652,1767,1130,-4981,501,-6432,-2198,-6901,8768,-6556,3397,-2700,2932,-3587,1843,8670,5654,-6376,8425,-8942,-538,-9703,-1705,-5385,-647,8688,-866,738,-812,6093,-2099,6443,6127,-1001,3960,3856,4205,-6147,-2988,-1810,9573,9865,6265,-5920,8059,6107,8954,8759,9302,-2128,9459,-6731,-7247,7487,-7848,-9830,-2519,3422,3783,1313,614,2344,-65,-8784,8400,9851,659,7524,2224,7340,7408,7724,9992,3518,3890,-7189,8190,2792,-932,-1234,7136,-6128,-3237,-3443,3127,-7910,-3868,120,-8054,-9961,-7739,8601,-7087,2747,-9863,-3419,-9197,6358,-2431,-8589,6694,-5459,8926,5423,7860,5565,6054,-8879,-4555,-6369,-5716,2040,-5254,-884,-3179,4708,6366,-6520,477,-746,7875,3022,5922,-7910,7669,-5940,-5463,-2058,-2392,-6212,-8851,7839,7371,-6680,4376,7761,3844,-9932,-2354,-6368,6263,1858,-511,-6908,-6315,6343,-182,-513,-7949,4294,-1056,8767,5791,-6387,2701,294,-189,9680,-756,7221,6102,-6809,-6306,-9882,7925,4819,8007,-923,8344,8044,5996,-7976,7989,-9114,4926,9125,8503,2836,-832,6567,-6585,9456,-7163,-4002,6646,-4944,-8682,-8106,2229,387,-1592,-2943,-9865,3503,-3549,9579,-4370,3170,-4821,-3107,2174,3711,6612,7615,-5655,-8827,2752,-7446,8953,2404,1837,7118,1814,-8203,-2980,4466,-4528,5376,1665,-7123,5811,-9847,-8205,-2396,-1515,7946,-5869,-13,-449,-5166,-9439,5768,-1127,-1501,-5417,2949,2611,-2637,863,-8555,-2057,8468,9379,-8599,9000,6722,-8992,-2726,5231,-3652,8278,2043,77,-5251,-1117,2647,2332,-2526,-1425,2081,6651,8768,-6038,-1263,5981,-9555,-8328,9492,8644,-8642,-7822,9450,634,-3924,-7564,-6927,9541,894,-545,-9824,2724,-9532,5088,8464,-5912,114,-862,5318,-6776,6348,3800,6012,-2606,-9946,-8854,-971,-1287,-9758,8263,1915,4612,-201,7282,-6406,-1802,-5739,730,3644,-752,-8040,-9492,6633,-9980,4221,622,-8418,8353,-2257,-8279,-2479,-2560,9673,-3337,2284,-441,3515,-9523,-3131,4708,1848,-850,9843,400,3649,9413,1473,-5040,-3149,7442,-5978,-4175,-8317,-802,-5851,-985,-942,-6816,-7997,8377,5147,-3306,-7489,-5058,9375,6879,-2023,167,9766,-9938,-7896,-5884,-252,8719,-8115,7126,-1826,6273,9364,-3814,2513,1338,-9750,-7988,-1021,585,-6573,5551,4042,-8970,2563,1786,4017,8586,9877,9438,9410,7989,98,4134,-7599,-4131,9142,-5684,-3859,-3892,-7073,1370,-1403,8983,6153,5484,-8395,1337,-5166,-7088,3375,579,-5766,-7354,-5189,-9748,-6270,-9358,-7247,2585,-824,-9894,-637,-7505,-1408,3499,7245,-4121,-5244,-8509,-708,633,-554,-3957,1183,1975,-2616,952,435,-6343,-9042,4010,4248,-3710,-8704,-265,6378,-462,-7886,-7305,-5166,9216,3175,-1018,6737,-9914,-299,-7393,5665,-9355,572,9034,-705,-6892,715,-6521,-9451,-4218,5167,-9614,-6317,-1381,-1740,9380,5637,1886,3534,-7638,-1325,6251,594,-2445,-9654,7478,-836,-5846,6310,-6338,5535,5976,-6212,8104,-590,1165,6485,-1753,-5903,3990,3667,8148,-8972,-9764,8092,-5379,-649,-2518,-7552,4426,-8472,-9050,5867,6380,-8690,-2145,9561,5675,315,5167,5529,1152,-6270,3483,3022,-3464,-5649,5796,7944,1935,422,8287,-9085,-4003,-6327,-9149,9564,-8411,-3421,-9326,6032,-7582,3067,-9937,2581,-5941,-7425,-5878,1985,7524,2417,6418,2884,-2894,808,4144,-9161,-5697,-587,3580,-2735,6202,8412,3959,7771,2262,4844,-7118,1818,-7835,2196,6826,5665,4408,-3403,-5069,3071,8457,8583,-9608,-3249,7016,-8901,8609,7586,423,9574,7179,4303,9190,7245,-4735,-5994,7241,-7186,-6536,4592,-6878,9196,-9527,2982,7307,-9343,-9728,6206,7294,-1163,4356,-7066,-2849,-1112,7798,8343,2616,-8976,6220,3965,-1181,-1287,8475,-6763,-4558,6198,-7018,1110,-3331,-8839,-3011,-4254,-4533,6885,9772,-9812,7440,9004,-1830,-721,7963,7377,5118,-6473,93,657,-9699,6216,-9396,-9573,-2391,-7660,-5738,5523,-85,8447,4237,-4170,4402,5662,-7522,-4054,-9238,-1604,1657,9337,7717,-6920,-6038,6966,-8443,6493,-2031,7370,-505,-9453,9623,6350,8337,9331,9450,8102,-8388,-9706,9098,3281,9615,6742,-7536,-1091,6831,-1813,8727,4585,-3794,8223,-887,5588,9287,2603,-1303,-3822,8160,337,-4494,4027,-5393,5780,-8599,9525,-2230,8351,726,-6291,-2988,7681,-4185,-473,9348,5962,5277,4296,3516,-3163,6729,2872,3209,-7917,-2019,3013,-3551,403,4725,-1361,1130,476,4370,-1479,-5565,1946,-5735,-8001,-9561,3082,-9243,-5536,-1304,2500,-8966,-4308,-7008,-1761,-7391,9661,-9041,6217,-1299,2124,8312,5888,-4960,-6028,-6490,-4538,-7117,-8326,-9515,-1928,1944,6449,-7653,-8185,1552,-7607,6966,4569,-8634,1504,44,-5354,689,5030,5495,-4261,-3629,-9428,-1196,8053,2309,-5490,4288,672,1969,5194,2071,8449,-4701,8260,3471,-2869,-4077,-9213,-3534,-6251,3549,7602,-6446,4506,-1157,6564,8206,-8224,8094,-8217,-5750,-6144,-4461,8930,-8222,8042,-3981,5988,-3173,-2113,2937,-5370,1077,-2874,-4131,7467,-7806,-1426,-9662,8546,6346,9298,-2716,-9721,-4142,-5508,1488,-8436,-7444,8498,2713,-9994,6514,-5920,1616,-7267,9525,-4386,2874,5810,8162,8233,3018,302,-7667,-7492,-3613,246,-4411,-8466,-8752,-3406,-7918,2392,7651,-2437,1976,9461,-5551,447,-345,4298,1056,4964,-5775,-6325,-5237,-2597,-1755,-5858,1127,2025,-4791,-2956,152,-5812,937,2501,-2201,6208,-5792,3995,3223,5349,6971,517,-4724,-990,964,2133,61,-8472,5981,9473,-9488,9547,3234,-1997,3335,9436,-2594,-5951,-272,6787,4033,1150,-6136,-7651,-5918,-8515,1982,3114,7606,-2210,-1100,2684,439,2334,-4702,8041,-4181,5655,4033,8143,2023,5240,-1587,6904,-9541,-2999,-1489,9923,1369,-269,2424,-6994,1659,8751,7886,5550,2761,-9983,7675,2252,-9519,5043,-8660,4992,-1341,2872,3338,9863,-1449,-1523,-6884,-6753,8434,-8676,-4060,5089,2444,2216,8035,-466,3462,-9534,-7664,-7877,-2673,-1520,8479,4125,-9576,2019,7100,1422,4602,-3178,-6933,8496,-3985,3107,-3684,-696,-6410,-5724,8127,-2105,-8262,-4172,6522,-1224,3175,-6682,-16,-1629,3799,894,9409,6211,8949,1341,-8744,-216,-7115,-2904,-3366,5912,7746,2459,5775,1182,6057,7444,6211,7068,-2102,7553,8091,-3505,-8934,-4193,-8403,4161,20,-5384,8142,-4634,-5227,-6212,-8204,1267,-8667,9987,718,-168,-9899,-4354,1618,-1993,-1638,9373,-1023,9294,-5651,-7337,-5700,8820,-363,2568,6218,1964,-2501,-8826,-4757,-3967,-831,7547,5239,3922,3271,2656,5685,9013,9386,-2688,-5323,-230,-4746,-14,3200,-8025,1030,7715,-6646,-4038,9210,-4361,8362,7564,-5998,8638,1578,-6415,620,4759,-54,-3446,-902,-5993,-8613,189,2909,6182,268,-149,-9180,8668,7301,2657,-8071,5452,-5944,-4081,-60,-2711,-3512,4152,-5433,-3677,8113,-5502,-6956,-7506,-6911,-1267,-5152,4661,-1072,-9937,-6392,-2802,-3900,-6765,-2104,1088,2216,3118,-3618,-1480,1511,-3515,-6742,8034,-9430,2122,5397,-9947,-6028,4186,6339,2235,2566,-4617,5667,-4430,1131,-8240,8343,8549,-58,-1477,8562,-2850,-5652,-295,-204,7688,3915,3317,9676,6971,1610,-9422,2250,-9310,89,7860,-5966,-8609,9592,-2654,-449,2543,-6085,-2495,-8416,6428,-8870,-3047,2276,-1933,-4791,-3768,5060,-3575,-7552,5264,4673,-6288,5432,954,5751,1320,-4439,6962,6971,-8238,4508,2681,-7544,6446,2761,-2728,1289,5120,4436,2170,-9321,7638,3917,-5770,1539,-4940,-3693,-4274,-2039,8303,-2143,4714,-9319,-7846,5146,9987,9386,4203,3888,2872,6041,-9706,1441,-6138,9315,1134,4844,-7242,-4524,-3993,3974,5149,-9862,-4691,4922,-8633,-8917,-7889,3983,9238,4970,2217,7137,-3684,-269,1779,6750,733,-3902,-8111,4425,-9207,2776,-610,4087,-2336,-8357,4309,9704,-5760,930,3553,7939,-2367,-2126,-1493,1452,9319,-3365,9195,4876,-2197,3960,7268,1027,-7824,5614,-968,-7353,7991,1927,-789,2210,829,8533,2666,-781,4997,9040,3522,9461,-383,-6099,-6028,-6559,-6271,-7299,-5908,60,-2731,3235,2128,8238,-1387,-3440,-8646,42,-4428,-549,-95,9646,8472,-6493,-1604,-1776,487,-9498,-1654,6966,-1514,-7299,4765,-3727,5006,-2006,-9964,5429,-2832,6674,3420,-5159,-8016,-5973,-350,8101,9207,-6586,7509,-1137,194,945,-7278,-8782,6999,6541,1353,-5800,-2388,8428,-9241,1243,5410,725,5600,2498,-3298,-6262,8310,-1083,7998,-1071,755,6929,-721,-5850,9077,6623,-2742,-1790,8659,-7360,8985,-7840,1852,7144,3610,9109,-6839,4610,8346,1138,3417,-6041,-7292,-3383,8547,-4107,-3662,-4190,5274,1911,826,6182,2412,5504,3457,6339,-8028,-4246,-221,4109,5774,5921,3182,-7817,-1223,8620,8444,-7154,9336,-576,4982,402,-3410,717,-3179,75,3163,-1666,7909,3995,4550,5770,-5853,1843,2354,9568,-3979,-3331,1823,-5055,-4865,2698,5675,-1510,6396,-2543,8316,2734,-4165,-2662,8115,-6516,-2956,-8839,2775,2831,4140,-6540,-2939,7073,2913,-5079,1267,2348,8971,-8418,4431,9550,6331,2260,-9355,-9639,5666,3850,-8750,7396,-1167,3748,2356,-468,5191,6581,-7466,2079,697,907,-1275,654,-9343,-8201,-6059,-5899,-7516,7839,-6686,6651,2206,1203,9510,-5883,9178,4422,-1646,2722,3410,8647,-4650,-2904,4838,7390,7838,-9975,-4727,2153,-1352,-9981,-2625,41,6081,-841,-5112,-726,1303,-4978,-2002,3137,3813,-9457,730,5755,-7747,5258,7372,1667,7515,4595,-4067,4423,-2974,1589,6787,1701,1636,-5828,-3664,-4641,-5997,-1807,503,-3722,-2952,988,7163,-7027,-4426,4536,4992,-3940,-8935,2366,-6394,5358,-875,-9318,3256,-6873,156,-9195,8859,7956,6438,7769,-8999,234,-1161,-8585,-5951,-1796,-4853,-675,2720,-635,2319,7604,8067,2963,-812,-8216,-4475,-3449,108,1028,9654,-8473,6152,1184,8181,-2241,9474,-6699,-7771,4875,6623,-3649,2230,566,7112,7328,-7788,9073,7172,6553,-8991,-5133,536,-625,-5021,5501,7617,3757,-3946,-917,-6739,9016,1647,2562,-1354,-3014,2693,5911,6322,-1415,5143,5387,4825,-1017,7877,7051,3993,1290,-6359,1587,-5262,4083,-7544,2788,1785,-5115,-7827,5593,-7210,-6137,-7975,-1834,5395,-4553,-7061,-7096,4950,2342,6066,-2319,-5128,-3601,2386,-8204,2021,5409,-7093,-2409,990,4210,4262,-6087,4705,6234,9933,-1822,4577,7106,-345,-6504,7203,8931,2311,3273,291,7193,-4816,-7296,1002,-3916,-3258,-7554,-5816,3049,-2517,-3587,5051,-9227,-2418,1717,-5166,-2090,6149,721,8107,-7933,5855,189,-4579,-419,-5082,9982,5548,4031,-4300,-1906,-5293,5573,-5081,5935,-1909,2075,5360,-4841,-3126,922,-8715,6940,-3277,-2351,2505,-8039,8723,461,6349,2307,2207,9489,8212,-5434,-141,-3874,4166,-4778,-9184,9660,-593,-4346,521,-5504,7218,-9939,955,7784,-8417,5766,-4974,-5189,5767,-4072,-6692,2172,-6443,-4739,-3398,-1950,377,8960,-5061,7424,8201,228,-1078,1667,-6068,-1335,7269,-691,9137,1462,2813,9625,-5626,-4431,5508,3363,3075,-3207,-1069,-3348,5019,-636,-8028,-4006,-1530,4640,-463,-6635,2674,728,-8522,455,-4262,-1644,8541,2014,-9404,7004,6306,-1561,-282,8928,-6185,2238,-383,6300,6649,-2718,-778,7779,-4623,-9677,-3788,-2094,-6583,2712,8556,-6904,-9802,-3715,-1956,8046,2403,8741,-1849,7996,-2694,-1656,6810,-9048,8645,-3456,-9367,2738,-8069,-3399,3922,-7271,-5309,-1980,2468,4540,-8024,3609,-1206,9484,-3279,8025,1982,-3240,-7179,9782,7407,5170,-2762,5340,-4812,-9699,420,-3235,-3549,-9022,1135,331,1137,1718,704,-3713,-5696,1848,4634,1919,-6368,3032,-3106,457,5348,8920,-2867,1919,-6169,9801,-8314,-4556,9412,9561,-9313,7816,-3071,-7122,-9744,-3243,-1738,-5063,-6580,2415,-7235,-4479,-8187,3345,8938,2700,9915,5705,8878,3204,-8206,-2539,-6049,9110,-4571,5031,-7988,-8178,6741,-2275,9843,-448,2513,-3052,8917,-9646,-5235,-4620,4385,-4637,-9456,5596,-8974,5385,2286,-5688,6069,9105,3501,-2602,8166,7353,-7669,8040,4781,-3746,343,-3858,7125,5971,-2816,-9719,2076,7380,-2755,-9974,3804,-2070,-1296,531,2717,2,-1924,-9563,-1472,3586,4927,621,-4452,-713,-9345,8446,6065,8242,-5553,5008,4627,910,7779,9764,-8453,-9289,4071,-5431,-1132,4363,-4390,4640,7883,3458,6128,-8337,-2751,-4849,-1350,-7564,5510,-2419,-7409,6970,-6893,-720,-8084,4644,6626,3011,6286,274,7844,5355,-8151,7298,-3719,4041,1873,1191,-2436,2023,1808,-8802,-3216,1398,-718,1628,924,9811,-5456,9667,2054,9604,572,5414,-3618,782,7617,8949,-7251,7974,-2270,5735,-1720,6664,3052,9399,-6319,1790,6816,5236,2739,960,-8095,4362,-84,4732,-7573,9327,-8597,4536,439,-2805,6127,-7700,7836,4239,1870,-1142,2438,-2280,3532,-9186,-7380,8652,-8390,-9825,1031,-9803,-3916,3494,-7438,7792,9311,2290,-2285,-1709,-9439,-6434,577,8818,-6115,3095,6782,9692,551,4922,822,2499,1463,-2203,-4395,5312,2504,80,4293,-2614,-5541,6884,-4023,535,-1553,654,-2502,76,-953,-1326,-4291,9418,803,4652,7203,2255,-9166,9890,7172,2664,-6769,-8364,8325,-4409,6709,-7929,-3417,-4676,1476,5123,776,5865,2698,-1491,3537,106,2817,9144,-5729,1512,-9963,-7844,-8829,7644,-5433,-5788,2625,-4890,6282,3369,-5527,-2680,-1546,6195,4018,-8735,1916,772,-2550,-2519,9835,-3187,-7633,-7062,2156,4441,-6299,-184,6307,3092,9196,-320,-2833,2023,1967,-349,2262,-1002,1685,8130,7972,-9098,9678,-5095,3744,8881,723,888,-7911,-7139,-4218,7160,-9830,-3493,5719,-9111,6167,-5315,-8772,2888,9997,3727,3790,8797,-5530,-5910,9962,9461,-4106,-5624,-8504,4570,-2020,9242,5736,-716,5713,-5194,8177,-9482,7264,-3846,-3855,749,-38,8399,-5807,-6930,9222,-5536,-5234,-6782,-4712,9027,-6613,4799,3206,9600,1292,-3818,3126,-4425,-7755,-4172,-6849,8836,896,711,-6374,9058,-480,-4463,-280,-5073,-4718,8456,9222,565,7008,8619,6109,-3124,-4873,9361,9360,5795,8270,8893,2438,1464,-6104,7105,398,6589,9248,3430,425,-4674,-5553,-4322,-5771,-9814,2321,5809,7649,-7634,-828,-8945,8240,-7106,3759,-5113,-1864,230,-6108,-4844,9280,-5305,2476,-130,-9273,-7407,-5252,5076,9021,-1835,7415,8354,-9012,-5578,7522,4978,-9188,-1160,2524,-1954,-4039,-9997,255,438,8822,-105,-4324,-6822,-6386,132,8874,-3972,-8783,3578,3329,-6254,-9533,3586,-5083,2583,7789,-2269,-6068,3274,3476,5794,48,-6867,-3641,3679,537,3565,7733,8494,7675,-6063,6676,-4481,6674,-5930,4564,483,5622,-4513,4572,-1655,2054,2747,8547,-1904,9848,3065,5213,-7093,3115,-877,-667,-7521,-351,2932,9237,4964,-890,-5149,1813,-8765,-9914,-5265,9470,3268,4077,6024,1378,-6295,7317,-4475,86,-558,-8288,2564,5285,5328,-8720,9785,-1380,892,6445,-358,622,-5120,-443,-3792,9470,-4131,-9895,-5188,-2602,-3632,330,-618,-25,8067,9421,979,5491,922,-8802,-2273,-1987,-1959,6845,9265,1508,1966,-9310,-7192,-9639,-5194,5421,5593,406,5500,1283,-3505,8825,5182,-6324,-3933,-9046,8989,-266,4148,-6000,2310,-1633,-1143,-7750,-1520,236,-2407,6331,-5960,-5365,7933,9591,-4757,-91,8210,-9499,-6039,-688,-5947,158,4339,-5715,594,-9250,8982,-9554,5580,2858,1049,-741,-1059,-4883,4303,-2454,-2204,9613,8533,-7265,-2795,-3916,5851,7315,-6417,-6955,4033,-9441,2200,4852,4735,-6547,-1177,-7852,-66,-4623,-5303,-8248,-5565,8312,6695,-605,6844,5682,4176,-9044,7357,159,2008,9419,4274,7862,6619,-2361,-6998,6642,-460,-7023,8202,6002,8636,3137,3409,76,8718,2757,-1999,-7959,-8704,-955,-2029,-2125,-6806,-2093,-9220,-3503,-8437,-4853,2453,2913,-1774,6256,8458,-7781,5325,-3677,-3404,-1640,-8977,9472,1180,-2414,-7208,7335,9759,-5522,3483,-437,6932,2207,522,1382,-3455,-5786,2448,-3312,-6408,-3373,-1494,-3861,-4673,3651,2857,437,3702,8939,8832,6621,3839,-999,6932,4473,5826,-245,6142,5692,-4483,8802,467,-5646,-9874,-8245,-9158,3396,5233,3868,2329,4358,-9793,4914,6293,6589,4944,-3826,-9492,2137,6515,-6917,2113,-5107,-6972,1905,-1772,8726,-5999,4392,6144,-5328,285,886,-1543,5810,-5598,-4389,-7772,-1211,2846,3845,6665,-3220,-4279,9146,-6131,-6649,-2317,9506,3977,-3136,3965,-1066,-4691,-30,7710,-9806,1472,-8812,-7628,-2691,-373,6416,5813,-5278,3232,-2650,-778,8930,-7851,-5143,-9565,169,-1308,6455,6297,4218,-3015,1968,2459,-2760,-5484,9782,481,2824,-2066,-5921,-2917,-3481,-274,4299,-8362,6245,-2262,9865,7396,2183,-5793,7206,8040,5600,143,9120,-8966,-9520,1604,-3797,9468,1246,-5209,1312,7035,9988,5736,-3673,-2655,-1743,2493,2038,-753,9000,-1998,-3351,-9467,-5226,3426,-1971,3442,-2520,9253,5522,2889,8157,4779,-2460,1401,5566,5578,-5283,6065,8423,-8504,4668,-1823,4306,-7262,-1305,-4202,4229,4323,2607,-8625,-9359,-29,4587,131,-8262,3195,-4272,326,4657,1162,-3539,-7441,-6638,-6063,6578,2953,1002,3808,3137,7469,-5271,5850,4612,5243,-1135,5141,5712,3333,-8326,6413,-469,8971,-8130,-9103,6834,-9979,1734,-8465,-1948,5199,-2594,9408,-9728,3929,1580,992,1302,-5778,-1963,-781,1769,6433,-4577,7254,6374,6941,-3830,-9204,-5205,-8601,-4199,-3828,4804,-1244,-1868,9430,7072,-8882,-9460,-4115,5646,2135,9020,8483,-7890,8417,-3692,-1450,-6414,706,-6167,-1296,4534,1433,8590,6744,-4153,-7990,-7078,-6180,6891,9606,-2969,-6814,4450,7732,-8560,-6638,5294,-3689,-5034,5621,-2690,-4245,4104,-1060,4072,-7942,-8417,8614,8413,-8281,8781,6370,2228,9573,-9634,-6603,-5299,-8456,-8006,8461,-3225,4748,-6588,-2048,2030,-3776,6515,2659,-2536,-5372,6002,3616,2173,1032,225,8065,7417,5973,9532,3120,-1353,9984,1830,-7468,9042,-5915,3430,-8775,6359,-1898,4632,4856,-7907,-5931,8260,-7880,1993,5889,-4320,5350,8970,-9380,1422,-2711,-354,-6612,-2987,5174,4025,-2816,-2703,7101,6050,7811,-9286,-6781,-3042,7376,-4228,-7654,-3394,2308,-9785,5582,-3170,-9285,933,1731,3815,-1674,-3837,-1695,1089,7119,-5704,-2302,-736,-8334,4199,-1328,1003,4137,-2210,4410,-4146,-1306,-3586,-4826,-3267,9297,-3397,-5383,-8567,-8172,4652,1298,1459,7178,6808,-9480,8105,8227,-6599,1529,-9841,-9286,6602,-3821,-918,-288,8304,-965,6153,-1980,2245,-5878,-7364,-6588,-6559,-5110,-4485,-3969,896,8433,-5880,5114,5698,8569,-990,8569,2435,6803,2434,6521,-9211,5427,5568,9669,-4584,-6824,5555,5608,8601,5110,7729,8498,-117,920,6854,-298,-9130,-4983,988,-8313,-3090,-5605,-1636,-6973,-1924,383,4683,-3949,8086,1373,-711,3544,6508,-1741,-7609,501,3606,2399,6119,6083,671,-4899,9029,7873,7305,7699,9609,4639,6816,-3157,-9686,752,-7651,803,-4875,2045,1224,8548,4178,-415,1690,-8527,-7094,6998,3536,3769,-4691,-6208,-3650,5826,-2043,5160,-3077,3552,2409,-7437,5575,7079,3487,8112,6739,-5960,-8948,3318,3368,-5708,5772,-1782,3207,6497,-669,-9786,-2997,-1765,4966,-2576,-8104,9355,2380,8714,-1718,-1685,-1313,6370,-1256,8664,8469,-4141,9780,8045,1735,-3475,-3203,-6681,-1222,5612,9183,-4272,3540,9895,-2339,-7825,9678,-6348,-4796,-6876,-7905,-8667,3506,-862,-2800,-8518,-3167,-7602,8109,-746,-3432,1966,-9410,8764,5109,3829,6782,7462,-1610,9524,6333,-583,-5832,8183,6156,5802,1349,-8859,-5400,-5326,6831,6659,-4754,1513,-1058,-4881,9518,1038,2637,-1219,1152,268,8535,3849,9046,8073,7802,7568,1606,-5333,3678,4073,1752,-6577,8394,-6303,9517,-4094,7609,3982,8222,615,-1256,5479,932,-1103,-9300,8604,-7123,7885,-5975,9115,717,1350,-6515,-4673,-1982,-9608,2470,-8446,3328,-6266,-6317,-5427,3362,-657,-9999,399,-812,-8764,-7854,-4234,-78,-3956,5787,9116,8244,2613,-6144,-5285,1100,6800,3119,6433,7656,-5600,3724,-6508,-3763,3000,-4914,-3926,2711,3616,5913,-9959,5458,4297,2471,-4022,-8047,-6982,2217,-9151,-8516,7123,6022,5357,-3868,762,-4493,7765,1346,4819,5063,6872,2458,8031,199,8666,5237,-5400,2553,9923,1121,6844,481,6056,2395,-1292,-8438,-27,2836,7981,-1632,1508,5230,-9288,3335,-2976,5832,5195,1950,-5497,-1261,7678,4342,-3558,-4034,1390,-4062,-405,6799,1918,4160,7396,-6318,-1101,4672,5026,-9679,5066,7917,8974,-413,7813,-5889,5153,9186,5831,9007,-7097,8387,5642,9933,8486,627,-3033,8602,5894,9569,1753,-6180,-8841,-8528,9432,4181,4897,4667,-1284,4330,-9915,2846,-4270,8356,-4126,-4235,-7167,3229,-894,6469,-3386,-8730,-2517,6881,-6331,-9023,8566,-3958,2013,-5170,2377,-2392,-559,4186,-9265,-7172,-8455,9466,-4100,-433,8100,-5356,4231,-1093,229,-8999,185,6657,-9236,-8064,1501,6155,8330,-2821,-2800,6080,-2343,-6569,8894,-1866,-3898,9146,4807,2263,1213,-7309,-6659,9099,61,-9469,-6764,-5264,-2562,3444,2129,-3657,6672,8884,-3402,-8948,9164,8324,-1425,-2958,-1526,-3980,-3021,-88,7739,-7538,2583,-2983,-9135,8052,1798,-5515,8105,-718,7026,-1869,-8370,379,-3219,-6593,-378,-9106,-58,863,-9694,-7338,52,-2822,-9041,-2662,7342,-1654,4515,-1596,-9573,-747,9122,-1667,7831,-6899,-9468,-8622,-3635,-1972,5187,-203,-6529,8031,-421,5100,8319,595,7056,-2399,-6768,971,-7289,841,-6200,-5879,7638,-9732,-9844,4538,1900,9776,72,-9882,-9524,-7378,-34,-7315,-608,1986,2080,450,5374,-2384,9997,344,-3466,-1621,-774,-6665,9219,-7713,-4553,7308,-7027,-4787,5202,4591,7044,6276,690,-6423,-2480,-4199,1657,8701,941,8264,-7627,-9980,7952,-1104,-8059,3399,-6192,4533,-5776,7239,7691,-4135,641,1735,-816,-7197,3489,5645,1434,-5002,8357,7886,7125,9799,1916,-4295,6709,-6934,-554,2846,-3203,9878,8429,1233,9962,-4789,-2592,4131,-4281,-126,-1756,9045,1194,-7691,-4951,7151,6128,-7443,-9952,-8012,9886,5553,1852,-4061,6594,-414,-561,-6902,2568,-3,-4148,-4075,-3268,4538,1586,9370,-7005,-4878,9123,-9440,-7336,51,-7531,2022,3325,7638,362,6023,2563,6925,-115,574,5186,-2501,-564,-8971,4622,-8380,-9502,1902,4360,3762,-2176,9160,-8626,4805,-7954,-9809,6939,-7036,2532,8389,-3639,3144,-6208,1735,-3296,-1150,-4252,5717,-4044,-2051,4572,-2404,-3241,-3915,-692,-642,-1533,-3381,-4033,-6211,5859,-3222,-3947,-9802,-7462,4167,-2951,1497,-4505,-2270,4493,-3254,-5332,-8370,7304,-1996,-8366,612,-2976,4050,-5322,3365,534,3749,-9428,9824,4002,8676,312,-4832,-4825,-8079,-5080,2359,-3945,-6397,-706,9769,407,1550,-5205,3063,3071,5045,2878,5370,-9553,2765,-1031,-554,-8396,6559,-3973,4936,372,-732,-2671,4084,4928,-8964,5574,4805,-7143,-477,-3971,6010,4690,3784,5223,-9028,-4251,-7658,7075,2348,-1283,-568,5231,8703,-6723,7767,9352,9313,2561,3736,9934,6948,-7471,-868,-3304,8180,-9236,873,2618,-1945,1851,1084,5605,264,-2612,2803,4049,-9867,-5067,-5548,4270,3684,-517,-4277,-639,-2658,-45,-6707,3787,8893,2384,7332,-2446,4698,2088,9028,-5969,-4324,-2549,1163,419,-453,9383,417,-5759,470,500,8826,2937,-2142,9936,-9768,960,-9287,1966,-1351,3441,8510,-8776,7871,3705,-3293,2340,-1724,6574,-918,-9290,3303,7980,8500,1011,-5454,-1133,7048,7975,-9129,-9518,-4870,4524,990,-6384,8859,-8347,-9471,1482,8196,5151,-4153,-5653,2531,-1982,4143,6528,8066,-8208,-6233,-4710,-5091,-2316,1636,58,4458,-9191,8404,3971,3308,-7216,-456,-4794,-6406,9287,344,-2093,-7113,-8977,63,-2371,2908,-8095,-9493,6599,-535,2374,9951,-1643,-382,5185,-4152,-300,3438,-3333,4365,-8911,-8735,-2757,-1392,3066,1602,6498,-4700,8419,-2438,8430,-3354,-9439,2429,-7462,-9498,-12,8968,-5888,6360,-4097,444,8556,1135,-2169,1584,3367,793,3471,2089,-8934,2717,9692,8622,-607,2657,-5112,6143,-6189,-2148,-3808,-8117,9645,-8012,-9789,4709,6008,-9549,4101,-6874,-571,-3487,4679,816,-700,1607,3048,-1091,42,-7315,3306,8281,3282,6266,-1519,-7980,-3348,4821,-1790,-3390,-367,-7856,-181,9827,-9720,6236,-9855,-4977,-3372,-2681,2234,6792,-1734,-6966,217,-6585,2207,2391,2320,-7815,6991,-7895,1463,5741,1894,8041,-1441,1086,-8173,-8819,439,-4593,-2131,-6401,1176,1319,-6581,-8214,4608,7894,-1923,-1977,280,-9818,-1392,7162,-8236,-513,8798,1740,7941,5732,-8188,7581,-5676,4629,-1968,2329,6341,4722,-812,-6915,7537,9956,-6387,-7884,-819,9783,9568,-8813,-6871,-4268,-5393,-8677,-193,8527,6662,7095,8159,-3962,1225,2041,8621,-5239,1095,-4154,-8663,-9524,-5720,4823,-4378,7675,4434,8874,-3975,-2555,5049,4122,-2107,6832,7669,-4506,7053,-7835,-8776,1197,-7617,9901,9518,-1709,-7526,-9477,-4901,-2248,178,-9615,-7606,7442,-2572,7836,-4280,872,5677,1921,7587,-6235,250,-5965,-7729,9966,-2321,-1088,-2532,65,-3413,3455,7737,-2255,-7075,1905,957,-3881,-3354,5927,-4410,1755,2697,3468,-9932,-8083,-9079,-4172,8041,7279,1869,-9041,2067,-1154,8282,7090,4986,-1326,-6711,1782,-454,-9302,2432,6569,2688,-5397,-1143,9924,-2285,6015,-2423,-4628,-6006,4350,-1876,-669,6632,8772,2129,8629,5672,5497,7334,7217,6900,-5354,9366,970,-1051,7880,-1279,7618,-4890,-9572,5905,137,-3613,-5321,-6043,6385,6606,1806,-1281,8181,-5305,8728,-4011,-8847,3243,9898,7125,7401,-7126,7265,5340,-9989,-9797,-3229,7871,-1763,-6184,-8048,-3700,-3650,-9852,-6613,-3996,-3694,9537,9312,6797,6376,-7416,447,-9016,1346,9826,-2088,1834,8917,7036,-421,9546,-6100,-5721,-8565,-4640,-8568,-3106,5591,4345,5828,5361,684,8142,-6972,-9710,-2917,-1031,7529,-1882,2549,2064,-6155,-4052,-4092,7669,6581,9590,-586,6476,-505,-6265,-1985,-6379,-2094,1832,8529,9929,-5851,-8068,1635,-6720,-6646,-1401,-85,-9935,-2625,-8309,8633,8591,8539,-8588,4259,6119,786,2878,3119,-3707,-4200,9846,-4712,1709,3577,-451,-8598,8917,-412,-6025,9531,1173,8155,-7174,-1530,-7376,-3234,2166,-7357,-3198,-6012,7313,-9977,-6356,236,9994,-461,9589,-8497,-5719,-5686,34,-9965,-2831,-3359,-7876,-346,-912,-9010,-3892,-6810,-8984,8263,4666,4297,-1236,1082,-7146,9563,4653,6870,7818,394,293,-196,-9280,-2641,4055,6675,-816,-1196,-2539,-9676,1496,-2429,-7699,194,3172,-8109,-2478,-2768,-2969,-4377,-7672,260,6180,6251,-738,5461,-6229,1796,-3190,-9003,1986,-9251,1444,6825,4990,1544,5646,1113,-825,-77,-3500,-5320,3512,6240,-9256,2846,3032,6436,-3305,1879,2228,-1330,3712,2824,9015,7181,9231,7409,-8664,-3737,-9713,4337,-3700,1219,-9153,-8286,-8730,-5821,-8573,9268,-9969,2602,480,-9173,5706,-1419,-415,-6817,-8291,1821,1228,-3883,-2000,9168,-2534,-4176,-397,-576,9589,5225,-8412,2896,32,6271,4338,8452,3760,-1901,5321,-372,3782,4834,-9142,-334,7248,1835,6170,-2845,-2046,4883,-7954,7952,-8844,-4069,1223,6570,-1931,131,-5028,8534,-7249,9504,1744,8850,5698,790,-5674,4962,3060,7554,-5116,-896,-5866,9984,1018,-4627,-660,6995,2445,-7289,-3058,-2517,5635,-8249,-3612,-2883,-9961,-9387,7436,2619,-6178,-8757,-4358,-6531,-394,-336,-2598,3869,-2466,4269,-5368,-5198,6464,-4420,455,8517,-6140,-433,3102,70,-8319,-5645,5156,-9987,-8722,7022,-7937,3922,-9059,2198,3451,913,-6929,-6777,-1550,6547,-1486,-6158,8357,4335,-2428,-6275,1917,-8353,-7596,2451,-7221,-6658,-6471,2719,-6221,8523,6783,9837,-2276,-300,-5574,-3982,-9102,-3227,7931,-4869,5070,-5824,9400,-5610,-8042,-1338,2470,-8706,4275,7793,-1379,-9835,1308,-3542,-8421,-2565,-3620,9996,-2154,-1345,-7052,8107,2399,3584,6124,-9509,4494,-5287,-4176,-1160,3736,1622,-2795,4518,-4591,-364,-4398,-5778,-7909,-1728,9146,-9521,-4493,-3417,990,5339,-5657,-5377,-5520,7476,5702,7399,-3763,2197,192,-2357,1179,-9331,-1324,9690,-4978,-8706,-6746,7087,-789,4659,2049,-9282,-7784,9017,-3340,-2598,-2107,6618,-6501,-251,8762,4850,-4637,5,-9316,1031,-4788,1500,-4063,-1327,2235,4491,-74,4462,-2571,-4735,2280,-2846,5398,2959,-9211,1091,4970,6472,4269,8440,79,-402,4002,-8524,-8525,-1737,3490,3730,9132,-3740,5969,3631,1706,-9047,-4742,7567,-2635,-8735,-4282,-6404,9690,5360,-102,-4153,-6010,-9972,-6467,9555,7250,8111,2186,187,-3729,-7832,851,3016,2399,7803,-9184,-1104,5869,-8496,2020,9430,-1429,-8810,5612,628,-7428,9232,-8996,-3931,-2200,-9441,1571,-8419,-782,1273,-9344,3412,5713,-226,7732,-9086,4454,298,4418,-7771,9613,8491,2413,-2849,-2327,3765,-8633,-6706,4763,-7356,-1074,7267,-2848,9073,-6249,-9778,6890,9455,5661,-1666,-4502,-3680,7781,-8504,-2067,7966,9599,6141,271,8776,7655,4202,423,-6466,-8623,3764,2320,3332,-3926,-8345,-2188,-3612,-5408,-4197,-6130,-6028,3445,998,-5774,7493,-5046,-8262,6381,-2106,8224,6033,-3829,9466,9389,-9388,-2753,-4618,-151,5245,-1716,7962,-4979,-9023,7472,-8920,6333,-7664,-9789,-5998,618,-1913,-9576,-339,-3636,-8512,4251,-8016,-8318,-3555,2492,-6364,8750,-6977,-8445,4350,-6788,8020,-3802,-4567,1018,-2217,-2514,8346,4388,-3,2062,5575,9220,-770,-4083,8855,3149,1167,-1305,6006,-3448,-2635,5334,9326,-26,5647,6212,-2626,-4314,7837,-9010,4011,4527,-1349,-4677,-4619,-4764,8100,9906,-6307,7155,-6031,2170,-1878,-9041,1711,1755,2789,1811,4224,96,-4741,7219,5648,-8201,1515,-4541,2854,-5247,-1403,7447,-3043,8365,8381,2857,1262,9836,2008,-736,1336,-5723,-975,-1583,-9309,-1406,-355,-8554,-5353,9788,3079,-8091,-9680,-56,-857,-9037,-6790,-3174,-639,-9869,-6367,-3029,6384,2371,4593,8304,7151,2173,1809,-7895,-3691,-9409,6294,-2379,3038,-2309,3726,854,2625,4349,2024,-5505,-8206,-9254,1634,4332,-4938,-4647,3184,4223,676,3305,4118,568,6049,413,8271,7233,58,3882,-9181,1547,-7492,-9385,-9728,8752,915,-7418,-381,9941,-6991,1241,9844,-1114,609,2553,2476,1348,2940,-4164,6672,4411,1617,1381,-6546,6643,-8082,2913,5385,-2870,-7346,-3737,-3865,-9846,-5141,9266,-7250,-4354,-9879,-7115,9959,-3994,-1156,504,-4844,6502,-8087,416,3340,-1490,-5122,4944,11,-525,6928,-2125,1284,1512,4243,-1800,-8587,-474,2794,-7847,3139,4852,-3483,5995,-7857,7988,7251,5109,-5086,-1884,-3844,-3436,-4892,3210,-1641,9254,-3770,265,-8084,5885,-6552,7475,-3868,-8828,-3811,2231,527,9131,4895,-2038,5715,-6236,-1697,-4392,-8864,-3177,-519,-4658,2788,-5234,-1603,3623,1179,-998,-7257,-7554,4804,8814,-8486,-6212,5847,-6868,-7512,-9940,-9051,-2358,-1273,5503,8396,-6515,-7869,3498,4301,-90,-5209,4054,8023,3036,1988,6997,-8373,2702,8941,4833,8931,-9727,2423,1118,-8727,-5310,-3845,-3700,-940,-6756,-4181,4064,-3448,6839,-5608,3863,-8008,4917,-9894,-1568,2092,-2200,5929,-4126,2883,-9701,-2840,7998,7357,-9105,-1331,-4835,-7037,-309,5652,-2242,6880,3959,-7950,3412,-2291,-3621,3091,6826,5283,5701,-6652,2933,1860,-7812,7224,-4933,-4518,-3142,-3994,-5103,7869,2691,-3923,4473,9302,6421,4121,-7828,-2393,-1178,2520,4206,4510,-9984,4960,429,-2845,499,-8116,8858,2811,-7137,-4945,3238,-9466,-7357,9241,-2971,646,-4175,-1191,9252,5546,-4438,9550,4662,-5949,-8475,2797,2753,-2619,7237,-1020,-4097,8456,-983,814,-2779,4019,-8645,-8606,-9847,2804,34,9338,6525,-6082,-217,-3308,9404,-3379,-3412,-9331,-694,-2027,5602,2863,8672,8783,-5877,2095,7080,3823,6104,374,-9024,-6615,3659,7564,9078,5094,8199,-1706,6727,8814,4538,3588,1564,2174,956,-6006,8131,-5269,5078,-2376,-4936,2476,607,5599,7167,3146,340,982,-3324,-1326,9168,-7444,9173,1495,-9376,6276,-2868,-2801,8006,3443,-5832,-419,6637,7252,-6922,-614,-1265,6623,3860,9844,6544,-3734,-2297,1389,7187,2148,7814,-3306,1930,3225,-2797,9803,-9720,-9213,4963,3995,1820,-5066,-9103,9192,8805,8048,-2320,2611,-6536,-7507,1452,8748,9499,3771,-3034,-8676,8940,2209,2647,7576,-2140,-7442,-2024,-6771,7261,-4588,4924,-2813,9883,-1773,4004,3614,-7905,2214,6794,6330,2962,-8591,2276,-9094,6821,1924,9071,6439,-5493,7007,6525,-1557,7916,1075,-5105,6189,1731,-4261,8811,9936,6633,6983,6114,-1178,5152,8527,6018,433,3446,4185,-6746,-6941,4956,6751,2563,7044,4559,-734,6344,2412,-5069,173,-7223,-8872,2923,1135,9095,-1173,-6233,-6211,7259,-8874,-6204,-6009,7034,6644,-8656,390,753,401,8970,6777,-1421,-865,-615,7617,-6431,5318,-2804,4592,-3064,-7811,25,5115,4622,-1755,-361,1247,8743,2424,-9405,-914,2442,5212,7072,660,4763,3929,8809,-4279,-9495,-4214,2467,-6953,-7170,-3772,-9468,-9199,-4275,-8240,2356,4722,6452,5140,5207,1289,-7847,5813,-8752,-9828,-8453,3120,-6319,6521,-2614,-5553,9004,3590,7959,7160,-367,-3438,9894,-3339,1946,-4972,557,3475,1088,-4797,120,-9107,-4427,-7349,6531,-1721,-8803,-3364,4784,-5917,-8236,5701,-5972,-4288,3861,8924,2160,-1659,8572,9443,-4493,2702,1751,9785,4204,7102,9635,6643,-173,-3985,7159,-7235,-5214,7701,-4909,-225,-2719,7682,-9730,3464,-2701,-5602,7436,8654,5248,-8082,3188,-8809,-8605,616,-271,-6333,-3318,9593,1741,1945,-3062,2621,89,-1918,2706,1852,3197,5937,1457,2585,8185,-9086,2968,402,2170,5252,-6754,6021,3247,-7592,9280,1124,1593,-3501,-5411,8297,399,-4061,8521,3081,-4714,-3558,-5219,-1659,7974,-1603,-8533,7462,8613,-4184,-3226,-4095,-7203,8902,-6779,8507,7312,4116,4168,-3293,-8242,2195,4971,-3415,-8368,-7608,8783,2445,-6455,3462,8313,4893,-1433,-557,-9032,-6533,3873,-5091,-615,-2914,-9728,4660,-3732,2556,5144,-6975,9446,6377,5442,-8238,-5641,1857,4239,-9975,-5740,-8086,1981,1901,2087,5831,-8657,655,173,-3818,-7208,4415,9641,-6989,2173,529,3197,6556,1372,-5573,2761,2072,-613,916,-5583,-1666,3003,8941,5653,-8156,8001,4527,964,-3171,-3184,5437,-5731,-9525,2392,5405,-6512,6488,6686,4708,901,-5232,-3889,-2250,-4579,8795,3443,-650,826,9381,-6989,-5238,1879,8594,8727,-6191,-9406,8655,5712,2784,3078,-3549,8682,-3117,-6730,-1080,5765,-2432,-97,6050,5479,8630,5647,-5755,3087,450,-785,-3827,-7214,9483,5408,-6559,8206,1283,-6526,9783,9839,-1365,6128,2809,42,8156,2455,7837,-3953,2698,-9373,1239,7225,169,8463,9834,5079,1189,9496,4273,932,-7671,8297,-9753,-4895,-5745,-4603,-7403,1203,6463,-8167,1994,5525,-2866,6801,53,-4480,259,-677,9192,-4799,5031,-5051,-3817,7799,9524,9625,-7248,9105,364,-6745,1894,-9322,-7676,8573,991,8930,981,2619,-9423,2734,-2928,-3169,-5272,-5895,-9283,-4194,-7142,-6001,4446,-6508,-294,-6775,-1190,-6176,-2498,-4217,4533,4960,-8800,-9491,21,-7092,5122,-367,-1457,920,8308,7513,1526,3629,-9657,-6418,-4920,-2335,-2445,-2257,-8712,-43,9298,6663,7307,8893,2651,-5618,386,-8243,6069,9139,9187,4128,7404,4175,-3503,-8206,-2871,551,8846,-6326,-965,-140,-2007,6740,-4263,3033,-5155,-6335,-8704,9306,-6752,-221,-6357,-5119,-7809,2549,-9146,4162,8024,6179,-9646,-9819,-4968,8109,8409,-1122,5519,8311,2853,-3743,8592,4830,7158,-3939,-2793,-4969,3459,-2813,9727,1826,-9662,8375,-9702,-8331,-7345,-3204,9293,2295,3914,-6429,4546,-6189,5951,3192,-7992,961,3988,8939,4105,-1613,-2879,4327,3617,9806,-3726,-8932,8563,-9754,2351,8067,-2068,7193,8576,5372,-473,-144,2379,-6847,-145,6840,8867,8285,8040,-5851,6069,-5320,-9417,-7435,-122,-2561,532,-2362,-5897,5409,6378,5978,-664,-1032,3996,-7089,-9099,-9896,1663,-7215,-9879,4052,-5646,-601,-4321,-2645,-3824,6161,-8154,-3343,2589,-4194,-7952,7495,5737,-7346,2218,-6580,-4362,1525,-568,-8875,-4414,5349,-2542,-777,6743,-7269,244,-6348,4204,-6519,-5716,-6699,-8145,7124,-3528,6711,8940,-3159,-989,-2303,-8666,2591,1341,2670,-1635,-2938,218,-6250,7121,-2973,1537,-9311,335,-1393,3411,6142,-3187,-4322,-1460,-9708,6306,7647,-3990,-8629,-4660,3442,-149,4025,9364,-4700,-4014,3330,2005,-7325,-435,8647,9441,-6161,1281,-1955,335,3796,7182,3535,-2155,7401,-3328,-1634,845,5276,-1913,-535,-5922,2156,1685,-1552,-7449,-7526,6388,-947,5500,183,3532,-2002,5098,5837,561,-6002,2834,8339,-3247,2708,8896,-5857,-120,-7831,-8694,9401,4956,2365,-2164,7035,8441,-5146,5673,-9445,949,9409,-7676,-7091,-1520,6417,-8268,-2666,-491,4709,-9684,-1216,-6755,9266,780,1184,9064,5588,1721,2334,6331,-2544,7169,-6586,5305,1682,-545,3296,6709,-7437,-4486,8574,5151,5388,6411,4742,-2073,6038,-2661,-2554,-5590,-4004,3177,9664,-6049,5358,7340,3883,-8691,-8221,8513,-8697,1964,5643,4853,9941,2467,-1716,7099,6912,-4150,1413,5033,-6362,5073,-8670,9743,111,-2325,9946,-7034,1280,-9409,6837,3554,5785,8817,3180,6582,-9937,7289,-1672,-2865,9976,8526,-6684,7213,7485,2529,-7956,1023,5211,-5294,9561,5123,-5037,1753,3811,-908,-664,-7087,-5287,-8617,8191,-7275,-8738,-7482,6846,-2119,-3613,855,-8391,4695,-4415,-3361,-3542,-916,-1401,5200,9168,-6299,5067,7439,-8729,9377,317,2096,4999,415,-6178,5588,2315,-5603,-2311,-5958,-7575,9203,-7261,5417,8377,-5508,-6927,-2463,6496,5064,-8858,9194,-4333,-4529,867,3792,5374,-2992,-9129,6500,-6201,5212,-43,-3028,369,-9142,6549,-1677,6360,605,7252,8938,4378,546,5397,6462,-7100,-1245,-1741,7866,-2159,-1913,-560,-5825,-3759,-4422,-2737,413,-7642,-3264,-3373,-83,-648,3150,-8349,-1324,6458,5818,-5284,-5006,-2277,-3446,-1943,5593,-6615,4420,1476,4204,4908,-3011,-9050,-3351,9011,8290,-8990,-4216,8676,-6198,-5480,2077,58,-8045,-7949,-6299,-8642,8590,-6936,6904,-2818,4538,-8472,-9587,-389,6636,975,-7487,-4548,9724,4196,-9986,7697,4692,8618,7732,9551,-1683,3817,-1153,5970,-6484,9370,1240,3161,2149,577,-9427,-561,4678,6231,7732,3092,8304,-6261,-9947,-8081,-2418,4583,5901,-4130,-1766,370,-359,1857,219,1103,5378,2194,-2702,-6882,-1929,4302,-2967,-2635,-2648,-836,-3509,9511,-1091,7038,3855,9483,-3295,3057,-1460,-6319,-8392,-1625,4048,6820,-3814,9117,9342,-7544,3655,-2497,7526,5449,6850,2664,3610,1790,-5879,-2318,5775,5451,-7824,1650,9437,-4715,-7363,-149,-6171,9710,3451,1244,6225,-3087,5660,-7045,6031,1981,9484,7434,8577,-9696,3272,-1949,3587,-1888,1013,-5662,-4584,-6904,-4225,8152,-811,-2377,-9286,-384,6096,9225,8760,9860,3215,-308,2241,3900,6974,8359,-153,6427,4332,4636,-573,3620,-6006,3909,-4443,-9605,7984,2243,-3886,-7822,-6386,-8237,-1987,-4418,2502,-6141,1888,-7481,3242,9000,56,7792,-3447,484,-5840,743,7705,302,-7019,6666,-6208,-8557,-8034,7236,-8108,3974,6079,-6006,-5354,-7932,4940,4297,-2283,-5417,7288,-9872,682,-3319,-8869,-3112,-1318,7790,3576,-6191,-225,4606,-9102,8965,5301,-201,-9403,-4473,-1580,1489,2620,4931,-115,-6690,-30,-5771,-2937,-1198,-9836,-9991,7825,7455,-6810,-5966,-7527,-6929,-3727,-6796,-372,7744,5645,-2366,5046,-5962,-4792,136,9091,-3358,8496,3353,-9939,8136,5188,5977,-4343,-5936,-964,-7396,5284,-9153,1347,-7210,-8527,-5034,-2195,3907,-7629,-7850,2957,-2199,5260,-1982,2342,6602,1836,1698,1024,-4899,2287,6811,1478,-7333,-5214,-3019,-7980,333,4954,3654,-3464,182,8713,-2376,-4311,7701,5481,2820,-4642,-1087,-9096,-96,-7058,-6305,691,6579,-4922,-3637,-4758,-5503,7534,8243,-8228,-6747,-6499,5976,8517,9799,-614,4373,-3178,-3615,9992,-6651,7822,7007,6522,7589,7040,2519,-5177,-1871,1219,-6185,-6123,6445,33,7740,-5048,-6259,-2429,-9268,4884,7147,-5433,6001,8310,-1845,8932,632,-3180,-1734,-2362,7761,-2020,8803,3472,-5137,-819,2170,7810,-8619,3636,2,3904,2190,5466,3165,-193,8263,-6352,689,-2977,-3558,8229,1828,1987,7339,4564,9684,-7165,2716,-8290,4239,-7931,3717,-1120,7652,8763,-2615,-7080,-7135,-4153,-1172,7610,-2082,-7703,6222,-5950,-4250,-9078,-39,3984,-9046,-8479,4567,3397,-2711,6268,-3369,-1685,-2748,-3408,6978,-8505,6897,-1078,2014,-8517,-8829,7172,4718,2595,-5003,5484,9449,2,-5859,713,-4510,9155,-9648,-5656,5112,4943,-391,960,5162,-3622,-6545,10,6384,-5675,4772,-9956,5514,8274,9527,-4739,-7041,-6918,-7977,-3004,2150,4191,4048,3787,-2198,5442,4029,57,117,7020,-4415,7985,5036,876,-6732,6758,5582,-2395,841,-2397,-8241,8004,-6864,1133,-9057,6075,-2826,1987,9872,9795,979,-7432,-3551,2889,7986,6763,9555,-5346,-2885,5874,-2439,5127,-4461,-1475,5071,-3988,459,1628,-4965,2704,4229,-110,-2529,-6372,-9055,4506,5205,-3801,-1669,-1902,-8408,-2272,-6651,5091,3143,-6140,3302,-122,8262,6917,-9508,2978,3443,9157,-1228,1674,-9295,7750,-5189,-4747,1740,-2357,-6884,293,-4865,-8474,7215,-4037,-9702,6379,-2589,8703,8303,-8611,-7299,7867,9296,-3335,8975,3861,4605,7566,1399,7838,4492,189,-4742,2182,-9075,-9432,4591,2571,-1141,3909,-8381,-8584,-1089,-2127,4304,3554,-233,5821,7319,-3791,9897,4150,-5524,6765,-7380,-7500,-722,-5507,-3637,-1874,6971,2191,7952,650,-3759,-6796,5065,6932,-7529,9592,-8222,4718,-3996,1518,6938,8280,-2010,1199,9393,-6671,-1274,2742,-6948,9623,-3053,3163,8986,9352,7200,-1342,-3455,4751,6915,-8022,4613,-8402,1709,7322,9264,2016,4405,-1657,-6582,-2600,-2307,-4349,8863,-4492,5847,-4957,-2546,-7438,2870,-3570,7278,5621,5332,-9679,1386,-6781,329,-4896,-435,6307,-4068,-6493,2329,748,5336,5485,9680,7955,-7757,-7984,5177,4050,-7892,696,4072,7092,-4390,-1835,1210,-2729,7707,-3259,7439,5,5903,-2949,702,7359,-1927,4568,-1635,-8333,-1592,8875,8191,-3327,3158,1957,6874,4930,-4427,4118,-5433,8609,1266,5595,9569,-8769,-2191,-4608,8128,3336,-8935,5301,-5118,8427,-7270,-6931,6666,-6337,-6200,-6844,-3489,8849,-8147,423,7557,-3606,-2641,3588,112,-1508,1680,1745,1195,-3599,-1287,3819,-9278,1155,-4457,-7290,818,4907,9292,4791,629,1615,-5411,-6004,-2290,-424,5319,-2409,-4504,1905,-9197,-6046,-7393,5855,-9627,1809,1907,3279,-6404,5458,4478,9606,8124,-6788,-8254,782,-6950,-654,8854,-9187,-9255,8912,-5825,-9521,1189,-6761,-2103,3378,2847,5561,1473,-6200,8720,-3754,-8488,5823,2475,-7494,1395,5117,7270,8396,-5905,7673,6486,1660,-3082,-9653,7158,-8382,-762,5041,-3979,-4655,-1946,-8953,6878,-7333,-5439,-3441,-367,-561,-7243,-4264,-4588,-2146,-5551,2558,-943,-945,8874,-7293,-9575,2047,6350,7651,6152,-1353,-236,-8135,-1999,405,-1888,8278,5223,-3831,-6444,2989,3878,9940,917,-3498,-3818,5969,3675,7359,1536,-591,-3488,-220,3547,8675,-4912,-1774,5169,-5454,1034,2766,8562,-242,-7162,6964,4066,-8482,7872,-6696,-152,-2398,-2257,-2291,3741,-7301,8911,-4270,-5222,-4859,163,-6837,6506,7798,7233,3666,5145,1780,1461,-3675,-1235,-1292,7023,-9644,8636,-8994,-9427,3682,-6683,3398,2349,-7941,3647,-2664,-5232,-8713,2661,60,-8359,459,7733,-4763,-1096,-7243,8563,-5429,3500,3419,-5760,341,-3926,-4434,-3988,-5288,8518,47,5039,-2369,-7557,1471,-6155,7885,9185,-7098,-9972,9112,5632,3198,-1885,-2997,7537,-613,-7017,8664,-141,-7380,-7895,3951,-5489,3113,2040,-1907,4958,3360,-6832,1505,7295,7800,-4921,4826,-518,6831,-3754,5200,-5415,-3908,3890,-9373,-339,-4273,-3469,1008,-4048,2634,479,1753,-8689,3197,-2320,3996,9549,-3762,-3064,3957,-4642,-5805,-9595,-556,-5848,-8315,-175,-8338,-1521,4095,3515,-9466,1851,-7083,-1969,1468,444,-1197,8696,-490,-9796,-7499,4626,1532,9113,4414,689,-5555,3656,7881,329,8523,8086,-9871,2665,2529,-9546,-935,-9649,1371,-107,3782,-3092,1272,-1521,-9768,-6175,-8431,7939,-2666,2044,2068,502,-6681,2539,-2360,-3016,3636,6112,-7400,7229,1481,-4019,871,8927,-3350,-6767,-8289,-4699,635,4025,7439,-6355,-3457,4780,-4692,-8841,5333,5384,3371,4763,6538,-6696,2744,4874,-7179,9317,-2628,-4278,-2619,-7258,-4469,2489,-247,5342,2403,-6443,3171,-4868,2862,-7858,6124,-8272,7732,1178,-2635,-579,9156,6079,1197,764,2551,5516,-8607,5329,-9713,9882,5850,-6017,-9925,5990,-3185,-6265,5767,-8609,-4634,7900,-2533,6121,-1408,-5232,-4956,-3141,3140,-3997,-2344,4367,-6240,8100,-684,-9737,7374,-8825,-2498,-3555,7217,-2280,9804,813,510,-9958,2431,-482,-6330,-7836,-9969,-9089,-7356,-243,-551,4152,-9165,-5608,-4117,201,-3371,376,-4084,6573,-9157,8201,-1533,-1908,-2887,-227,2959,-3686,8770,-2920,-239,-825,-1392,-4344,7382,424,2533,9394,-354,6947,-1902,-1722,7,-2312,-8337,-9781,-813,436,4572,2664,-7441,-9383,-6446,-3540,-5113,-876,5194,7287,8082,-6856,1812,1410,8953,-6679,-4765,-6106,4240,-1193,-5374,-9527,4262,-271,-78,-5417,-4862,-3604,3741,5522,-1010,6860,-8354,2069,4681,9805,-7482,-2172,-2310,1789,6893,4679,-2560,2017,-878,2242,1673,-3076,-4412,9945,-2211,-8257,4146,-5188,-4621,-2466,-2255,-9791,-7024,-4070,-3042,-8433,9748,-9621,1349,-4707,-7829,9480,9512,5628,8116,3458,-1743,-163,-3606,6143,-422,-6391,2970,-3776,-7770,-6712,9066,8376,-2286,9340,-1205,293,-7444,4771,8337,-3037,9405,453,3235,-7030,-3013,-3617,581,3799,-791,1494,4370,851,-9855,-1906,-6500,7308,-4122,-5406,-5705,106,4644,4749,5808,-5199,-7269,8720,-6310,-4288,9006,6867,-2522,-7059,-9317,1345,2418,2811,9428,7384,467,6642,5549,-1640,-7894,740,1062,4052,-1670,9033,-3759,-2909,6712,1781,-4104,266,-9799,-1126,6434,6131,1674,-6815,1069,8481,-6753,370,-8928,1387,2263,-4706,8607,7232,-2544,-6768,1839,1371,-9983,965,1432,-8625,7889,-2170,-7790,8434,1570,6708,-5920,-7731,6044,2299,5948,1946,8532,8244,2783,-7258,-465,4183,-829,-7633,-6710,-546,773,-8237,-1292,-4830,8517,-9970,-1072,-8209,-4206,-4021,-8707,-5130,379,3902,6929,-1648,4871,-2824,4882,8555,4628,-2201,3259,-9125,8180,1891,-2407,442,-6160,4200,3481,9770,-1576,-6051,-2252,1596,6019,5824,3147,311,2325,-9216,-8757,-8468,-7185,5756,3288,-3413,-8238,2447,7430,-9329,-6339,-4863,5862,3918,8413,-8675,4291,-1023,9633,-7575,9394,9066,6848,947,-229,-1342,-4465,-7549,8312,9148,5233,1226,4404,782,-2607,-5258,978,-9055,1244,6512,-586,-3157,-1223,1357,-6321,-205,-6484,-3842,4362,-3737,-2914,-6227,5028,-7511,-3977,-2613,-2811,-3817,6186,2618,9811,-4939,-1010,2518,9561,-3842,-6948,1175,7057,-4601,1782,1915,6663,8440,-6357,-2513,5277,-2101,-2095,-3523,3501,4017,8976,-2512,-3484,6328,-4283,3182,2463,-8280,-2776,1215,-7202,1865,8644,-8214,-8509,-9358,-6472,-180,-486,-4160,-182,5231,-2606,-6772,1872,7117,-4367,6750,-380,6860,-804,-1891,2339,606,6392,9461,8478,-7642,-3426,1163,-8812,8973,9737,-5423,3095,-6268,8468,-8997,-8868,3513,8635,-9154,-3302,377,8142,550,8066,-4685,4252,546,5005,9807,5717,4556,-5410,2521,-6586,5204,-7966,2601,-3004,-5001,9830,718,-4108,-8690,6725,-94,9609,-1622,3410,4324,4919,-6972,-2733,4522,4463,-8940,-7076,-9033,3087,2618,3499,71,9336,-3298,5876,7350,-4615,-984,-2548,-5354,-7562,-4389,-5619,-6431,8487,-9084,8579,-7282,-2115,1475,-5020,-6738,-9719,-6141,6504,-9643,-6500,7785,-3620,3618,-1803,3760,-4297,-3662,-3401,-9560,886,8767,3584,2357,-5124,6833,-9558,7527,-1672,2855,2849,2631,-13,5584,-7428,-8536,8214,1085,661,8521,2275,6226,5435,-2292,-9461,-4495,7948,5640,5906,1859,-5903,-6075,-5062,-2125,5823,7679,5815,-5586,-1022,-1848,-4577,-2382,-5112,4966,7564,-4060,-6715,-1314,2914,345,-3267,-2605,6221,1213,-5171,-4327,-9903,-533,1022,9964,-3254,-6903,3356,929,-9749,3856,-8721,4913,4373,7614,8324,2176,7148,9025,9131,-7792,-1805,-3724,893,9738,-9855,-1046,-5910,-7376,-3748,-2451,8365,4381,6894,3902,-767,2333,2999,-3183,8186,-4376,548,-7741,3440,-7895,6305,2115,8699,-2230,2125,480,1314,-7677,517,5627,2834,8447,9040,6774,2765,9234,-7760,-1908,3902,1009,-1631,9610,2301,-5678,9783,-7796,9282,3578,1601,-1397,-1323,7145,-3309,1499,1401,4098,3437,-3752,7559,-8395,9876,-7084,701,-458,1305,8500,-7941,-963,-9356,6599,-1560,-649,3367,-2073,279,417,-9573,2426,5203,-3778,-6670,-6346,-5628,8666,-982,-8555,4995,390,-7719,6480,-7352,-6637,425,36,-4480,-9167,-5131,-5753,-5851,8632,5571,9686,159,-4745,-3461,952,-9999,6481,6703,9873,-9666,8668,5198,-2816,-2977,4368,-5157,5619,-4165,-4366,8985,-9739,3624,7380,5368,-6647,8994,7317,4132,3397,7851,3407,9403,-1421,9753,-4511,-295,5995,-5485,604,9990,-9971,4983,6405,3005,800,-1307,-2673,-6976,4593,2757,6064,-8916,2175,6627,-2016,1654,-3337,-5087,-2770,6778,8719,-587,-2013,-2561,9861,-6420,-7155,738,8903,1030,-5062,9224,7037,9814,460,-1134,8873,5427,2970,3128,-5926,5227,-2049,-3561,-4644,-4484,-4481,-8900,-6548,6547,5888,6877,-4122,-5405,-4484,-5796,621,-6974,6845,3317,-4477,4807,1327,6388,-3260,-7572,4616,-3899,8591,4379,2561,7208,6511,-1691,5779,4196,1079,9050,2291,3996,-1491,-6906,-5004,9206,-7538,5097,5368,-3767,7968,-6719,-2939,-7456,-3412,5613,8628,3175,7550,8701,2141,9345,2135,6765,-5487,615,-3464,-5387,-1887,-8534,-1903,-4741,-8827,-6515,-8255,1004,-7455,5928,-5010,-4912,-8439,4133,1953,-1976,747,1129,7951,997,4369,6496,4815,5875,-2826,4194,1064,-8813,396,6348,137,2296,-1135,-8767,1216,3655,-7113,5433,-7437,-615,2191,-2404,3510,6400,7630,7185,7582,-3162,302,8564,9890,-2145,1839,-7256,-8723,-4497,3270,8884,7403,5212,6416,-7265,-4893,-763,5489,-7873,8806,9066,5393,2792,3449,-7835,5323,-1201,7668,-1467,7325,9954,5797,-8859,6640,1716,-6603,1782,-1221,-1261,9472,-5219,-3322,8414,9029,-5666,-2444,-6931,3276,-1180,9128,9121,-469,-8231,3207,1524,3915,-191,-8372,5425,-6450,7900,-6793,-3981,-9106,-5640,8455,7358,9228,-4445,9935,7830,8306,6808,-7340,7001,4041,-2891,2782,8184,5829,-5135,-6972,2624,9969,-8574,1143,-8884,4558,-1927,9456,6724,-3239,3558,-2443,-9276,7710,-4310,7181,6065,-5945,-1894,-8581,8868,5146,3448,-5098,-4982,-2918,3717,4302,6060,2685,9913,-9823,4276,8543,4587,384,-5225,2575,-1913,-6258,4888,8358,-3529,-5848,-8143,-826,3291,-7239,7625,-4341,6394,-8862,-2386,-9734,8848,2677,-6082,-3945,2646,-5428,6379,6085,-4852,4720,-896,-7430,7713,4336,-8893,1766,-34,-5928,1296,-7276,2944,-152,-7165,4659,-8221,805,-397,5456,1320,-2568,6880,3826,-2191,5423,-6150,7877,-2014,-6741,-4506,-9352,-926,-1745,9161,-3686,-5587,6984,9688,5672,3319,-9155,-6042,-4819,7388,9222,-9540,6561,-7111,6271,1757,8670,1478,-5178,-7811,-8985,9394,-8719,8250,-683,-1792,3966,-2120,3074,5231,-2,3861,51,-2650,-7466,4342,3967,6618,7845,-8177,5717,4849,-576,-6276,5585,-2887,-6739,-3355,6211,7904,-9917,-4207,6076,4465,-197,4847,8407,1307,1425,-3883,8739,2434,7413,1267,1866,7049,8302,7560,-1018,7492,3081,7162,-7363,7402,-2955,-2760,-3709,3858,8695,5610,4542,69,9671,-866,-5005,497,-2637,-4120,-3035,4031,-3502,-5378,660,7363,-519,-9826,7144,-6134,8855,-3127,5857,1261,8791,-3291,6630,2913,1213,-8583,8521,7622,-2556,-3090,6810,-3860,-5586,9534,6783,-4546,-1296,-5260,6039,7384,-5496,-6493,4266,4480,-8616,8413,-2680,7207,2505,-40,-7198,9413,4452,-7232,-9812,509,8223,9080,2336,7503,-7235,5159,-8420,2130,-260,-5084,5974,72,-8691,867,-9613,-7850,2656,2391,-3391,2069,-2892,-321,-5793,-6574,6068,8013,6682,-6057,-4408,8092,-8033,-2449,2059,9985,-651,-2326,-8482,-7686,4119,-8063,-2790,-5541,3714,5942,9991,8009,1386,1991,-9461,8270,-4533,-5630,-5776,-2240,-1074,7966,5694,-3040,8908,7626,8374,-3704,-9913,7192,2351,4410,5582,4313,5435,-2473,9471,3064,4,-8408,7239,9101,8656,-1879,8494,4458,86,4903,-8970,-6207,5196,-2517,-1769,-378,-1869,-8956,6490,-4351,7241,-8256,9394,-8386,3229,2057,820,-9356,-1490,43,-7544,-7167,715,-3092,8625,1771,5540,1967,6706,7975,333,-6438,3051,9909,-2930,5386,7127,-2924,3224,4879,-573,186,9131,3441,9742,8725,2864,6458,-2086,-4945,7194,2477,4797,-4690,5179,8984,6342,3817,-8512,-345,-707,-9992,5135,-4722,-1720,-8787,-339,8390,-6081,-6614,9125,6408,-3272,-4517,101,7122,9119,-684,8906,5626,-9332,-2407,-7808,8967,-810,5842,-2651,3088,5107,-7097,-4061,6175,6095,4277,-1826,98,-1480,6783,5408,-1575,715,-1028,5297,2480,5086,-8240,9270,-4530,1968,987,-1992,-2419,-8744,-6902,-1671,1238,-5360,9893,-5014,4226,-2476,-781,247,1250,-3678,8210,7179,-7809,2133,4118,2340,-1262,-1772,-7955,-6287,2088,-4652,588,-6957,-1540,6800,-3679,-7223,3940,-8069,7522,-832,-7199,-684,-3514,-4671,8849,972,5514,-4690,3927,2298,838,-786,6555,3661,-9009,7218,-9843,9014,-5886,-1645,9373,6532,5713,-975,7323,2993,3164,6887,8614,-6320,-7600,-637,-3208,8570,-4767,9370,2997,8842,-5076,5837,4241,-5853,6706,8786,-127,-6896,7492,4950,-8116,-3904,9673,9421,-1150,403,348,2062,6162,2110,3841,-6271,4627,1132,-2974,4364,-1202,-8040,1062,-4036,-1009,6585,-299,7086,-2606,-2379,1717,3585,-9260,9430,-4344,7018,107,-6482,5352,2632,-4630,-5278,-485,1552,-3819,-3891,-3606,9529,-5330,-5213,-7081,-7068,8313,-2942,3051,2446,-1160,954,-8463,-2831,-878,-7350,2196,2676,-9973,2595,5987,6168,7973,-7072,-6676,-2016,1552,3892,8751,4790,-5519,6820,1389,-1796,-3222,-2098,-2712,-5488,5681,1619,1283,6361,-6010,-5405,-6445,-8049,6056,811,-1882,-3698,-1992,9373,8523,2328,-5602,-1716,9538,6461,7205,8295,-2918,-926,7336,-6093,-2913,-6520,4897,-1388,6661,2199,-7994,3229,-4821,1839,4975,5478,6219,1980,1644,-762,7732,-41,-3810,-7226,-5406,4762,-3159,-8744,-4398,5626,1295,-882,9510,8764,3613,-7497,6747,7898,-9984,1646,-7539,-9749,2537,-2590,5412,5668,1323,5092,7424,2137,8746,-1149,-6903,-2760,4721,8617,-4662,9503,-6115,4494,2996,4636,7537,168,-2352,7441,-3018,-4937,1701,-6866,-8992,-2465,2516,5441,5674,2145,-5153,6697,3844,-3133,-6294,-3848,-3236,56,-3939,-674,8620,8157,2153,8889,4315,1444,-8789,-4823,-3459,-6465,9798,-3634,3745,-468,7112,-6041,6359,4668,-3366,9330,-9811,-5784,8389,9262,6820,-6450,-9585,8061,-2097,-6161,-4237,-2321,4327,2968,3622,1569,1876,2382,274,-4314,-7095,3868,7698,-6882,-8873,-306,-680,-2593,8158,-3293,1761,-5618,-9659,5110,5476,-3558,9206,3144,7758,-8427,-1589,7482,-5528,8694,-6613,8908,4603,-5373,-1916,-592,-9159,-2872,-8066,2463,-9558,-5157,-169,4823,-3705,4639,-202,-3104,8858,-2033,3591,5034,-8878,-7692,-8997,1049,301,-86,-6266,-618,-4992,-2356,8919,-3974,-9219,-3049,8098,-1857,-9719,4237,-1742,3674,-1775,-9748,-5823,7828,-27,3504,6752,-9075,-3457,7437,-9231,-4580,-7492,-864,-8040,-4586,9598,-1500,-4143,-1250,5599,3722,-1477,-6106,-8984,2070,9951,-8002,-5983,-689,-1884,3916,3610,-5200,154,-955,4462,2050,-8243,-6356,8004,-7847,-7970,-1022,-7959,9977,9919,-6962,3303,4846,9555,4804,3209,-4238,5814,-7205,171,3899,7467,-9921,2450,-7436,6784,1697,-8435,-8992,-6792,-3826,8340,6977,9796,4900,1518,-4723,-632,5409,4656,1378,-3908,2992,-9317,-277,34,6252,5134,-819,-8980,2309,8108,-4317,1595,5630,-5631,1251,-9789,-7899,-9649,-2741,-6612,-2726,4867,-4323,-4613,4761,-8846,4357,7637,-6869,-9453,1477,8769,5780,-8257,2324,5527,2848,-7424,-985,-809,4599,-7334,8370,922,4066,-964,-9501,-5770,3972,-7837,1175,-3236,-6824,-4076,-7225,1481,420,50,88,-6695,-47,-883,-128,8373,-1674,-749,-7568,5168,5541,-679,7261,3199,-3022,4388,45,-6474,-7350,-4444,-7482,-696,2259,4745,-5096,-1215,1193,8027,-4928,1972,8487,-5592,-7237,5702,-8831,9049,-1957,5749,6229,-3596,-7461,-4409,4550,-6127,-3990,5898,-621,-3160,6421,9952,-1640,-1058,6506,2468,2066,-4002,-9110,754,-8279,-604,5045,-556,1528,-3706,-146,-5251,4145,1261,-466,-6026,4735,-4795,5339,8835,-3180,9129,-6714,5729,-5623,-7115,2546,-3061,-8600,4363,-854,-8234,-1976,-5601,6839,-276,4736,6051,-5723,-4113,-2042,9514,7950,-8625,6134,-5330,3536,-3674,235,-7627,6411,-4155,2189,4727,-3423,2111,6924,-8909,-3714,-3441,7388,-6792,-5657,-4872,-3300,-9715,1463,-783,-1170,-8878,-7526,4880,5451,7675,-4026,1285,-3381,2846,-6002,-402,-9355,-8040,-2820,6889,-5200,5663,3543,1349,-1381,4923,496,6925,-6085,3350,4765,7057,506,-80,-5215,7404,-4818,-7052,-475,3872,-6627,-4619,-8073,5835,7122,-61,4444,5326,3034,9698,-282,963,4907,502,5323,7278,-3731,4020,6490,5208,-4229,-6083,2825,3684,-2785,-5642,-7955,-9172,7095,-2478,-2579,4228,9895,3368,-7107,-2743,-8244,-2908,-3668,5290,8216,-3289,6427,7737,-3684,7989,7496,-7700,8299,-3309,3746,-931,-9779,76,-5139,676,-7051,1376,8300,959,6032,-4185,8546,-3601,3636,8576,5239,-5726,-9096,-7343,857,-9647,2409,-1027,5853,-4767,6989,49,482,-5670,-5601,-6159,-8387,-7891,9819,-5189,-9596,5216,3373,4638,-7923,-1460,8536,-3622,-874,-1724,-2078,-8962,165,-6098,4980,473,2180,6303,-9572,-4437,-760,-2576,-4056,8702,7626,-1585,196,5858,-5891,-8064,480,914,1211,5689,-3190,-8605,8871,8140,-3688,-1913,3301,998,9215,6581,-7935,9931,8882,-1947,8734,-2745,-6626,7148,7706,9342,-3048,-5770,5387,7232,9063,9391,-291,-2437,-5911,-8650,5952,-1291,-1995,-4534,-3713,-9418,-6503,5963,-3905,3292,-5023,6443,9723,-5949,-6044,1519,-8480,-8798,-1094,-3994,-7985,-9129,-1283,1344,427,-7684,-9925,7019,-9636,0,8778,-4004,-4794,-372,9565,7940,2400,5543,-1471,-6771,-1918,-1554,9278,8580,-8821,8393,-5289,-5464,1920,2346,-970,-6455,-4311,-2294,2271,8902,-8603,-7212,3886,-6817,4404,-9217,-9475,9186,4621,-9794,-7405,5750,677,4832,-957,3894,-8711,9861,5724,2443,8959,-1708,-2718,3585,-1716,-6341,-824,7646,3160,-4639,-5200,3718,-773,9081,-9596,7684,7292,-3669,6697,3031,-837,6993,3933,-5093,9619,-1131,-9845,-7800,2051,-4710,-7282,6896,2699,-9663,6876,-8018,2269,-6978,-6354,-1911,7870,7930,5777,-2865,-754,5914,1318,-3323,1587,8889,-6693,5613,9752,-272,-528,5685,-2680,-7405,-7903,9491,-8956,-1174,1146,-3091,7717,-424,8898,-335,7122,3655,996,7430,771,-78,-6496,4216,-9482,-5105,-9185,-7755,222,6899,6252,666,6735,-7269,7726,3005,2385,-6184,-8193,-2408,8214,4261,-4896,2950,8385,-2137,7327,-7597,-12,8905,-6192,-3329,-5695,6612,8723,86,-6158,-9859,-4193,-7131,-2224,6011,7540,-9598,613,-1020,8097,5598,733,1922,-851,128,-2521,4756,7264,34,4808,1643,-9786,-7757,-4656,-6423,-9105,394,-1194,-5624,8986,-5573,4961,-5578,-3411,-1033,9491,1974,8299,9734,1823,-4051,3617,-5898,2979,-3204,-6044,-5290,-2361,9243,-6271,931,2271,7937,-2369,-7793,507,-7967,5634,-1556,-5004,9262,-9068,7470,-3768,1629,4022,-5719,2768,-3507,2419,7081,-7257,-6328,-954,1552,505,7027,1922,5197,-529,6711,-2507,9917,8672,3771,7219,-9586,-6747,-138,5745,8522,4705,2502,5457,-6167,-9795,-2366,6184,5317,-3135,534,-2943,5737,6717,2623,3672,-9522,2195,-6733,-5138,-291,-6433,1649,8296,304,3990,1002,4684,2852,-9883,-7474,1384,-9700,-3297,-9503,-4053,5232,-299,5491,8648,7011,7255,695,-6097,2537,7277,-2196,-3889,-5806,-4480,3653,-2044,7463,7059,1778,-2340,-6717,3159,-2844,-3478,1452,-5662,1956,6478,9208,-7496,8332,9912,8903,-4149,2915,-321,3456,-4289,1662,-1096,6591,3548,7163,3523,-3455,-2964,7724,5803,-1521,9825,-7265,-882,3501,5682,-9295,3958,-4053,-1066,-4912,1800,8036,-5207,3888,-8669,9387,1652,-3709,892,9527,-9592,1660,359,9099,-130,9440,9604,6757,3090,-6779,7077,6154,4007,6646,-4829,8455,9162,-4071,-5721,7932,1980,-3742,-844,9589,3656,-5015,1924,-612,-9443,-3340,8816,-5999,-4127,4897,-6933,2483,-4773,-6903,-2040,5630,-2098,6254,-29,906,5124,-5812,3350,-5798,-7046,-5963,-3864,-9045,7611,2928,9414,9015,-5336,9351,7506,9907,1953,-7144,639,8414,6469,7153,6468,-3608,-4464,-7112,-3299,4887,-7668,7448,1456,8642,-4055,6691,5141,-5686,-9328,-318,7870,-5426,580,2709,4692,3264,5702,9372,-765,2331,5401,4474,7609,7328,8269,1438,3486,-8957,-3652,-1575,5328,-7123,8200,8453,-4805,-2633,-1631,86,-9611,-2952,-3172,-5897,2542,-1418,-8848,7075,5659,4583,-3951,2963,-8124,-5346,-7197,-8542,4245,4428,-3958,-1510,-8569,9669,1411,1204,-6569,5572,-651,-3485,5698,-1468,-8058,1947,-8715,-1051,4296,-7444,1984,2682,-7731,4461,-9316,-6159,-6005,-549,-841,6636,-6905,9216,-7329,-8241,-4013,-8464,7531,-4102,-9681,5962,328,1276,6121,4807,3151,58,5197,7120,1175,3594,40,-9696,2572,7525,-884,8917,4511,1423,-2677,2910,227,4291,4663,6823,-9863,-3562,7033,-8813,-149,5727,-2112,3456,1930,8970,4581,5814,7506,8790,-5185,-9255,9737,5977,4786,-308,-6545,4926,-3618,-624,-6055,6097,-3913,-2272,7816,6788,-5587,-3628,-8692,64,8032,4562,-3237,-5618,-3086,-7967,6409,4033,5659,5800,1691,-4094,-1455,-1100,8509,9215,5562,-2701,-6587,4953,-7532,-7605,9934,1236,7727,8844,7379,6723,3272,8270,-8200,-2190,9803,-1027,-4178,2468,-740,-8041,6565,1758,411,1810,8683,7529,-9845,1889,3649,-6872,1254,-5207,1093,943,-1854,-1953,3346,4243,1910,-6038,-8427,-9729,2851,-264,-3943,-5031,-4624,5204,2200,5120,-9304,3289,2172,-8987,6596,9248,-7851,-1219,5394,1958,333,-8567,7451,6340,-704,9248,231,-1225,7358,7433,7769,9452,-6939,1849,-5189,-1295,3071,577,8704,11,-5538,8756,-111,6081,5495,-9456,7072,6814,-6823,3090,-6665,-4812,-196,9619,-6364,8323,-2445,-4058,8552,-7424,-1289,3529,5455,4060,7526,-592,-1660,-788,5499,816,2102,9134,-7671,2638,7185,4422,-5182,4075,6956,9481,7417,-603,-4589,957,-4688,6875,701,3943,-8327,7216,-7370,-2814,-7895,7372,-162,509,-6607,879,-1665,-4300,-952,-886,-1540,7779,-3559,-4473,1030,-1899,7493,-2695,2152,7852,5949,4983,-7395,9614,-5828,2009,-4813,-3024,4870,7624,-4621,-2581,-386,-373,-8390,4486,-4688,-4923,-867,-8654,-5978,-5341,-403,5823,-3423,-698,-1320,6194,-9801,8122,6626,8362,9495,4268,5907,2716,5416,-954,9299,-2529,5230,5916,-8046,-6893,7749,-5282,7050,-2382,69,2549,4851,-746,-2598,-2160,-5879,8870,5503,-3211,4560,4974,-960,-6297,-9418,-1877,-9986,1902,1127,8210,1266,5633,3571,324,9923,4476,-8769,5676,-8192,-6675,5129,2221,1579,9411,-5397,9730,-3636,756,-3775,-4088,5479,6245,4376,4111,247,4914,-4316,-4630,-8835,-8337,8221,-5739,-6926,-9672,8292,9132,8372,7570,6849,-4001,-9320,-8216,-72,2305,3747,-1904,3213,-8926,-7761,2079,8181,4838,5931,150,1392,7528,8852,9281,4819,-2603,-2108,-2926,1170,9175,-5879,2097,-8068,-6347,3223,1838,-2746,8999,-117,3763,7252,-2482,-8068,-7999,-108,4652,7402,7612,-8608,5503,-8241,-5671,-1226,9941,2360,-7626,5516,3896,6017,6159,4495,9160,5872,-2809,4886,-9022,-7765,8325,5362,6925,2953,4438,3202,1192,3583,-1533,4474,-3256,831,9069,4019,4176,3669,-3972,6618,-4721,-706,2258,4869,5936,8064,-6668,-438,-856,-5634,5044,-974,996,-3168,-9047,-3118,-2109,8364,2443,-4322,-3930,6287,-4272,-8533,-625,-8134,7506,-1414,5389,-6203,8182,-8157,-3790,2567,214,-3417,9002,-5167,7512,-9852,-7181,8797,9760,-7165,4174,9956,-6236,4489,-4040,197,-2947,1678,-1714,3313,9627,-7301,-3691,-6243,-6094,-1947,-2964,-942,2463,-908,-9713,-4866,3255,6222,5432,3387,9301,-3979,204,-1466,-262,7307,-9087,4524,7468,-1618,4798,-8658,700,9531,-7055,2843,8944,-8384,4800,-4648,6158,3672,5621,170,-38,5756,-4625,3928,-4054,7830,-1773,-6303,-3909,9345,9433,-6298,2464,2420,8676,-825,-5620,6629,290,-217,-1987,3087,8044,-9614,-5192,2377,-2640,-4568,569,-4439,-714,-6194,2738,9705,1545,-3312,919,-4997,2311,3717,-8165,4637,-3207,32,-4902,-7785,846,6452,8003,4318,-5925,-401,-1016,3372,2721,-9777,811,9080,2396,-7059,8847,2239,-7339,4704,1595,5294,-5331,-2167,-3408,-8844,7089,2999,-7393,-9243,-5249,4600,1002,-9964,-5765,-6680,-4662,-22,555,3713,6207,-8813,-7820,8723,660,5900,8039,-4135,-1479,1397,-556,6003,3573,1581,6412,366,-229,-3668,-4718,-8648,8627,-8403,2281,-4819,-8491,321,-6024,7589,-7256,-4911,2716,6930,4253,8925,3659,3048,-5367,2789,-2691,8245,4189,3049,-6923,-6935,-5051,-7896,9026,-6741,9813,2651,-6264,4502,-7550,2958,-9490,5897,-7748,5295,-6316,4173,4419,-7541,4217,2614,-4084,-3335,3195,-4707,-2785,8398,9905,-8232,-4715,959,-8872,3158,-4390,7432,-5313,4073,-3907,4178,-8314,4531,2485,-3950,-2890,7695,-452,4783,-6830,-6766,-5640,-2162,9213,-2818,-1201,3294,1679,548,5810,-7557,-2485,8028,3424,-4944,5048,8607,-8845,-2002,3434,6278,-9819,6950,-6716,1563,-814,-2561,1160,-3929,-6102,8707,7844,-6804,9279,2820,-3916,9705,-3007,-2687,5697,8618,-7756,4849,-7747,7474,8284,6428,9801,-6642,4567,4047,-2060,3697,-7651,-3275,-901,5380,874,419,5625,6647,-2987,-6235,9970,-3851,-8387,2144,6611,-1408,-7817,9245,-3347,-1474,350,-4559,-2507,1746,-4651,8770,-2870,-3980,-9697,2762,940,-5703,-9063,1463,-9333,6023,-8803,2838,-3943,-240,5067,4793,6385,9582,2724,1301,-3223,-6254,6090,-3858,-4665,6790,-4713,-3096,-9681,-1993,-9142,4387,-2548,9280,-1779,-124,-3023,8114,6606,2202,913,4740,-935,9330,6412,9437,9896,9207,-4617,870,-5420,-3625,2465,-8900,-6698,-8079,-4308,-9541,6705,-5343,-4319,-1652,-6858,-3372,2272,-6186,-8942,-9934,7898,1377,-36,-330,-3486,-9583,-8386,-5620,-940,-576,4607,-1356,-5484,-2180,-7281,-4052,-5236,4940,-5491,2904,9429,1617,7432,1009,3812,-5847,1591,-4897,-5125,-9369,-8423,-2322,4259,-4802,9471,-4976,1570,-5936,-8980,-1448,6089,6297,-6402,-3586,-755,-5749,492,9834,6025,-9257,4842,45,-4386,8161,-2211,-7666,5498,-4625,-4164,-2620,-6388,-6837,3393,-5644,-1502,3625,5819,-6391,-2887,-4966,5855,7698,-2330,-9064,4761,-5473,-3524,-7634,-3941,5172,-393,-9068,-6415,5756,5904,6172,-8052,8129,4995,-1296,-3934,-5755,5672,545,-1385,1568,-6793,3593,-2021,2264,7644,547,-7110,-4322,1545,8057,7406,1524,8539,8588,8943,2422,-6575,1969,9455,1449,638,-2842,-975,7647,1625,706,1083,1930,-7554,7413,7571,7961,9989,-2160,590,-7944,-61,-8415,-6079,-4321,-4237,-8007,-2521,5368,3855,-3490,7370,9156,-6286,5330,-2631,-419,4362,-5273,3807,1524,-7765,-1502,-3566,6919,-6081,4203,-5570,5435,6881,-522,-7579,9814,6448,-1668,-3345,-7451,-5058,7256,6403,-8373,-4888,-8762,8679,-3342,-3744,9102,-5149,2519,-2292,3196,7199,3900,-6993,486,477,3274,-4916,2291,-6997,2071,239,9524,-7550,6687,-2384,-9709,-9619,4984,1345,5926,6619,707,9647,-2688,-4889,-6632,-7243,1785,9460,-3410,-6657,-6206,-445,7215,7046,2686,6154,3357,-1442,-1791,9815,-3616,-7526,8715,1651,5942,-7521,5196,-4879,-5316,-1710,-4578,-8900,-9253,-1716,-4713,-1435,8410,2664,-1001,7682,-2666,1681,8534,-1788,1604,3350,1944,8485,9824,8371,-7063,2799,6677,-4563,3092,-3060,-4210,-812,-8437,-5428,-2411,6042,9620,8805,1750,2450,-5690,220,-6934,5786,2119,-6788,1184,-5615,9891,3711,7483,-5399,3618,-5965,512,4081,5287,-6907,9434,-1896,-2189,1452,1639,743,-9518,4193,6162,557,-5188,6434,-6273,-8106,7964,-8289,7118,-7412,-2142,1145,7192,8872,861,4222,-5300,972,3918,9959,7276,-8839,-3859,-42,-7785,9551,8644,5121,4361,-6891,-1872,-950,9133,-4727,-9901,3190,-254,107,-6917,-7956,2858,49,-5486,6888,792,2320,-658,8200,6802,-6269,-7740,-5700,9063,2865,671,-9430,8677,-7022,9229,-9163,3709,-4825,8694,-5021,376,-5992,3162,-4385,2435,2334,6409,9493,-9318,7364,-1243,-5617,-9047,6225,-3641,-4509,-1037,5958,-6993,-3631,-259,6051,6201,3678,-2574,4452,-9357,7291,-6258,7782,8244,-7351,-5111,-8011,3220,-2293,4914,-7001,2465,-4706,-5391,-7474,-3411,-6543,-5235,-1939,1237,-6397,606,127,-4914,-5718,6745,209,8459,-8841,-3925,-200,9047,2521,3406,5428,7296,-3503,9471,-9466,-6934,-7053,-2310,426,2015,8196,-2908,411,4167,-6348,-5347,2269,-8082,7595,-9776,-3073,4120,7555,182,-5815,5136,544,-3473,2995,-6679,-7587,5067,-6583,-2550,1189,-475,-3571,4045,4061,-4438,-8861,-3923,514,-3715,-1020,2616,2725,8255,7955,-8426,-7732,-1372,9785,2537,5651,-5996,9590,1435,1889,3968,-7215,8546,9908,-6481,6317,6845,-6216,-6556,5231,9781,5277,5309,-3496,-7332,-8317,-2105,6092,-5139,5204,-63,-3121,5966,5020,-9020,-4716,2668,-8943,-1539,7060,-746,3654,5344,-8851,9494,737,-3579,3233,6282,-2678,-3235,-9762,5574,7412,-7714,1435,-5768,3988,4158,8141,-8150,-9832,-5453,1296,3630,7645,-6484,7759,-9516,5564,342,5199,-9584,118,4490,-4099,-9470,-8437,5396,8504,-5727,2464,-3936,-8375,3258,-9849,-1973,-9274,1822,-9986,-3278,9978,4787,-7486,1266,-7583,6851,-3889,7305,-1409,5227,-1032,-317,9235,-8202,-8239,-3894,1654,-5469,3585,-4284,-8339,3510,-8406,8807,-9028,-6773,8197,7651,4126,823,-3925,7360,-7032,3437,-4589,4244,3003,-1327,3468,1652,1139,-2747,-8881,5652,4325,-9060,-2388,-1434,6433,9380,-9560,-9235,3437,-6382,740,7443,9165,9016,-7028,9472,5033,5681,-3245,1015,-4207,-4158,-9515,9165,161,-1247,-3333,-267,-8530,-8788,-4574,9079,4778,5023,-3749,-5148,-826,-2631,1023,-9086,2041,-2113,-8511,546,5270,-8265,-345,5951,7419,-5447,-4944,3420,6459,4058,-7041,9081,-372,-9173,9875,-3084,3580,7819,377,3074,6331,5214,-8763,89,1176,9436,-2723,3875,-7849,-5371,1008,8781,-9740,-367,1307,6981,-8094,2039,-1785,-5565,1127,-6590,3931,-7095,-2467,6893,-5414,-5688,-4318,-1709,6448,5285,-4822,8667,8260,7427,-9913,8807,6033,9653,-6610,5846,6169,6214,-7267,-3371,5820,2101,-7445,1356,6459,-7405,-84,8901,6938,-6388,-4344,6258,6856,4008,-2034,-9214,7685,-6431,-4421,-2166,4171,-4515,8782,7492,-2673,-5962,-8317,-2510,818,2102,-2620,-2603,-260,9411,-5436,-9585,-4694,8438,7407,5513,2156,5867,5006,7797,-4632,4144,8511,4585,9451,1365,2197,-419,-2959,-678,-5758,-1124,9037,-9968,-1435,-5225,826,9684,-4308,6579,-5420,-2453,-8336,-2651,1604,975,9948,-9756,-8511,-1448,1228,3313,-5603,-1226,4559,2079,-3956,-3282,-4613,9517,-2938,6901,-5891,9322,-1044,-7197,5524,-9921,-5855,6815,5940,-314,8049,-6009,620,9723,2287,8275,-6526,5817,9307,16,-2562,-3017,7536,4787,7095,1146,3873,-3653,568,6979,7960,-6483,-541,-4288,-9982,8714,5501,5534,6482,-3312,8112,-5354,4457,5456,5557,-8164,2365,3329,-3285,-3994,-1552,-4720,6829,-9061,-7754,-9072,9222,-9081,6447,-5891,3138,-6642,8221,9215,-8217,4781,4333,7651,9624,-4486,-1351,2706,9998,-819,-4024,-9226,9583,5178,8844,4984,5785,7516,4343,2065,-3082,6610,7782,-8318,2804,7440,4904,7270,3457,9524,6976,-4972,-9581,5976,4344,-8159,9348,3630,4535,-8034,7909,5412,-3851,-3527,173,-8896,-2592,-2602,61,-1335,1865,-4481,-1439,3298,2564,1547,9190,459,-5543,-9205,-3560,-867,-2356,-2376,9411,-4578,-7031,-3388,905,-1817,9527,-5209,-7667,-2337,9044,4838,-3804,6574,2622,-6987,-3407,658,-4336,-8500,5104,5437,-6003,-5175,-9367,-193,-4165,-3273,81,-7510,5235,-5721,-140,-7897,5102,9329,-2351,-3353,9252,382,-6660,-7037,-3892,-2252,-9258,1605,6501,1087,-7388,-6102,-2276,3175,3104,1502,-6287,-5074,-9700,8185,8491,9879,-5482,6298,8192,7150,-705,4484,4036,2637,-2597,-6284,8811,5169,4140,6696,-5662,1669,9232,-1621,-2915,-2071,-2991,8724,283,1100,-2109,-3968,-4014,-2708,6114,9243,-8480,9911,-4463,531,-3983,5536,9017,5012,-5827,8452,-3422,-6995,-3874,5021,4390,-6413,-175,-5957,4280,8604,7523,4309,650,-2184,-8880,4341,-1982,-9398,-5716,-111,5764,-4429,-6737,1453,559,-5974,9154,-5669,7599,2413,7301,2005,8483,4692,6709,1723,-6949,3314,-8978,2783,-3740,-2888,4259,-9647,9892,-3508,-5340,9608,-1967,-4257,5896,1657,389,8804,3871,-6345,-6851,1503,-9835,-4369,-8413,-5543,3571,-8820,1167,5405,678,-5523,-3144,6276,-1524,-5016,-1582,-843,9487,-4256,7479,-5470,554,1678,6678,3231,7630,-9130,-5320,-6810,-9202,-3430,5469,-883,7287,-3633,-9594,3674,3514,-8454,-6147,-1728,7487,6838,4778,7240,-8342,-7610,9778,6891,2350,-6836,5972,-5423,5898,-9918,7491,5350,84,3212,-6801,1833,-9610,-5153,-426,-8265,5373,1908,-8206,-1603,-4815,-9649,-4271,-6128,9769,-8519,1108,-3498,-5092,6996,4385,6641,4880,6131,6977,-1883,2695,2838,-5272,8291,4784,-5225,-9853,-3616,-1640,9057,5783,-4770,1093,-7607,8452,6855,-2093,-8844,-6575,5213,-2721,-7253,7568,-3861,9100,4099,-1982,6301,-5566,-1219,-3802,-7856,-6945,-7609,1742,-5855,8523,-6718,5695,6566,-2620,-506,-8551,813,9029,727,-456,-8261,-9147,6782,8374,5962,2910,-3975,8154,-7743,523,1705,-8235,-5708,-3950,-625,-2240,1588,9863,3301,-3388,1651,3490,-8931,-6920,3761,-6862,-9478,3623,9067,9960,-4410,2706,4995,7504,-1866,9956,730,4824,-486,-7817,-3969,600,301,6140,-290,6207,9764,-4362,5157,4209,-4473,-1430,-8697,6675,3933,-2352,7337,-8441,3953,-4190,1455,6021,-5163,8271,-3036,-6960,-1431,5239,-2036,-3764,-312,4893,6667,399,5580,-8678,3999,-6848,-4807,-5756,-9745,-1004,6608,-5528,-8663,-5504,-6037,-1361,2097,-6105,8395,1599,5888,-5159,147,-8382,-3495,1103,-4849,3592,-2685,1135,6383,-369,4424,-9810,-3041,9024,-2826,-3949,1321,7612,7810,4921,7739,-7362,7905,3067,2023,43,6434,114,3337,9336,795,5618,2932,7149,-8676,-3724,7490,9836,19,3763,-8210,-6437,-2302,-1015,9142,7955,1179,-6637,-5500,-656,6830,-8291,7388,-3905,-5823,442,9228,-3561,3366,7618,-1921,-6624,5725,1906,-2689,1747,-5594,4893,2695,5635,5950,-8907,-7971,-1101,-3416,6672,3229,-6969,-2606,9575,-8025,-2222,-3832,-6748,4434,-1137,8265,-1819,-2349,4208,-6742,-2249,8205,7992,-8778,-9549,-3576,4811,-4453,6849,-3128,-1775,3153,8724,-3355,-9284,403,-8596,-8212,-5519,-1949,1636,-8251,-4955,580,9471,9923,-5558,4993,1330,-8204,-4170,-4914,-8523,-4186,-4196,-3257,2438,7295,-1511,1343,-2085,-8707,-2102,-5427,4770,5396,6320,-8468,7503,2120,6590,-1561,-9017,2344,-3931,2670,-9986,-3177,4264,-9347,3381,1647,-7214,4780,6195,2417,2568,5662,6913,8710,-4971,-3159,5190,6253,-4846,379,-4176,-7326,-821,8991,-3281,-190,7791,-9104,2454,6758,-1604,442,3756,-8930,855,4091,8764,-6468,5309,-128,-5926,-4615,6986,9380,-8244,-4440,2029,-9173,5290,-217,7510,2083,914,-1161,-8459,-3816,-4811,6058,-6899,-1678,-8263,-7045,6843,2316,-9997,-3032,1524,7033,3277,5825,8393,4992,7740,3378,-9672,-538,-2547,1319,-1670,-1254,5399,9208,-7788,1188,-1106,-3302,2187,4232,-825,6573,-427,2705,-2776,-4329,2411,-2810,8346,6617,-3548,8394,4119,-3678,-6768,5486,-4810,1067,2661,-1628,9800,2330,-6817,-8879,-134,7167,-980,9915,428,-9109,-1559,-9142,-1180,-9088,6867,-7550,-1330,-7515,8943,-3940,-3963,-1156,480,-7927,-360,6250,4306,1458,-8739,396,-2333,5826,2927,-3888,5559,-1486,-8797,-3129,-2344,-3060,-8694,4276,5355,-7246,-8794,4536,-9169,-1281,-5624,-4949,3085,4908,-3396,4991,-2671,-4907,4348,4638,2067,9108,15,-2781,9430,3473,-9759,-6075,-4115,-469,6297,9745,-7272,6897,-3451,1018,-8466,-1682,-8878,-8488,1788,-7344,-6755,2803,1392,-2217,-9939,-4180,-7030,6032,498,2861,-6870,-7380,4759,-8326,-6937,-6597,-4244,-2924,2691,8919,-1749,-4704,-3615,-9449,7253,912,7613,-5187,8457,4901,8508,3298,3679,7934,1269,-1074,795,-6347,2209,917,8831,-1232,-3878,4605,-7161,-5569,5527,2418,5296,9593,-2448,122,-4582,-1283,265,-9127,6813,1557,3364,1296,-90,5878,-4712,-1503,-342,-858,676,-9974,-5271,-3321,8783,3734,-5549,-5702,-9930,-5491,759,-6585,1471,-8680,-6031,-6946,3135,-6015,-2493,-3692,971,6369,9250,499,-1684,4002,-8493,-7321,-9981,-4656,5639,745,-8789,-3423,-1714,2414,-8275,-5117,9437,3389,-1422,8818,5935,3861,-1576,-1481,-8874,-2549,7509,-9773,5877,-7502,4906,-2933,-2034,-3529,6913,-9125,5671,-7529,-2678,-6891,4545,-396,-8696,-4741,9106,-8818,-2217,-5256,-6914,-873,-1073,7294,-7576,5608,891,1840,8073,8361,-9797,4526,9745,-9037,-6254,-9825,-6962,-105,1247,7543,1237,7344,5615,-1288,-1913,-9290,-126,-1175,-4484,-1487,5154,989,6632,-8017,-5129,-8132,8085,5406,3420,-7521,8377,-682,-550,3869,1369,8517,4025,-9298,-197,9762,4578,-2467,1955,1275,-9690,3286,-406,4391,-2819,-4053,3782,2613,-2710,-3828,-7351,155,1377,2885,-510,-1377,2418,-5539,6249,5960,-9618,1631,-2463,-3193,6307,-4436,-1449,6079,1326,-7898,-3503,-11,2799,7563,9478,9138,9147,4903,2590,6979,-7869,1110,4618,-3736,-2097,3188,2460,-8907,-4226,732,-2831,-2534,-6047,3688,3895,6769,8041,4585,19,7379,-463,8227,-4448,-6260,-4575,-9831,542,2769,2462,9829,-9919,-7173,9356,5442,-6156,-2986,-694,5475,-1773,2501,-1012,-5988,9676,-7697,1296,8646,9930,811,-1097,1895,9039,-9248,3615,1479,378,-9522,-6463,-510,1244,8652,9941,2541,5531,6006,-9682,-8697,2034,726,9871,1170,3215,3232,5135,630,964,-8496,1828,-8787,6361,8932,7663,9110,3018,2744,2501,-3464,9848,8810,-8367,9076,5074,2976,-8427,5590,-1906,4575,8216,4684,4160,-7920,907,-2227,5626,-8128,-9032,-216,-7659,-6804,1954,-3350,1946,-2128,2871,-4650,758,7937,9283,-4186,-439,-7960,-7891,-4491,-1426,-2176,5588,-4254,-9170,2517,-9286,4876,2337,-7182,306,2312,1090,8891,547,-7658,4366,7035,-4160,-1382,6963,-6122,3261,-6440,431,-5833,1687,6497,895,-4395,536,6206,-902,-4216,-1123,2862,2584,4556,8883,7539,-209,3033,-2178,5903,2594,-7623,-201,463,-8362,9309,2366,-6869,-5573,-4303,-7881,-3835,-8039,3122,-6736,8391,5733,2812,-3206,5878,6818,-2293,-6916,951,3692,4395,-7992,6087,2992,-5902,5798,6070,6491,-8692,8698,9875,-154,-2787,-1100,8863,4936,7845,9426,4883,2550,5564,2320,2176,1421,8418,-7157,4483,-3655,9458,-7733,-1246,3426,9219,-3564,8436,9908,7340,2413,8791,-1465,4750,-4859,4073,-3968,-8285,-7679,9085,9300,3589,-3904,-9444,-4427,-1532,4233,-1314,-9787,-6368,1475,-6215,5741,-571,-4962,-5747,-7563,9768,-7240,-3290,-9040,7515,7176,491,1216,-9377,-8344,-555,614,3737,9944,5709,-4214,-4709,9683,9020,-383,4888,-6533,-8728,2140,-9472,-1094,4200,-4209,-889,-9978,-1790,1966,502,-705,8598,-9978,-868,-4390,-7406,8052,-4712,9563,3728,-7925,6329,-2063,-6716,-2175,4874,4096,-5937,-7703,-1633,-5743,5831,-4189,6501,7371,2058,238,-184,-5457,4574,-6860,-8463,-9189,3669,8194,7430,-6205,1825,-9452,293,-4292,-5809,-7680,-1925,-8834,-5763,-9368,3202,4321,7212,-1504,9448,9675,-9550,2097,2725,-2813,-1774,-8885,-7416,-2789,-3048,-7971,4305,5166,-945,5900,4924,4433,-8486,-214,-6379,6236,-3268,236,3912,-1782,2230,-6590,9196,-2144,-3347,1765,2940,699,-1549,2694,-4797,-7227,-6602,-776,2597,7321,-5869,-4208,-1731,681,6405,-1072,-3438,5260,4666,7763,7733,-9647,3940,1537,-8165,3967,3636,7674,-6478,3271,-8887,9637,-4260,624,3103,-3552,2645,-7984,-8384,-3798,-6469,-1194,9920,6279,-6844,-513,-9663,6442,-3932,3414,-7265,-7269,-7896,-9163,1416,9092,-6546,-7961,9952,-6978,820,401,2366,369,7415,7227,9915,1157,-5819,-8671,-8979,-4941,5606,3215,4104,-4767,-2453,-9925,8269,-7263,-3756,5285,-8267,7551,7723,-6800,-1458,-5489,4061,7966,9901,1188,-5435,-6325,-423,1068,7252,-7923,-1853,-2375,9366,-54,8794,-8900,-6849,744,6667,-5618,7399,-4027,-9342,5860,1556,-8410,-5813,-5343,-4242,-236,-1495,-3238,3146,-5134,-3165,-5551,-9588,2868,-21,2641,-6717,2690,-8664,1165,8967,-5561,-9369,-467,2275,-5744,-3995,-2326,-1952,-9908,-2316,1279,153,1391,6628,-2772,2641,-8037,-5904,3607,3630,6683,6074,-7814,8458,-5879,-7971,-9618,2322,-3081,-2623,-1770,2451,-428,-9295,-364,-1346,7754,4216,-1160,2174,-3455,-3044,7923,-6799,6396,-9677,3865,9481,-2094,4906,-4508,-76,8043,6224,-9183,-5315,6839,-3943,6496,-9602,-7253,2011,6961,2234,-175,-8310,-7039,8327,-7175,5226,-5619,-7157,-4216,5244,-7090,-3668,3244,-3971,-5798,4427,-6222,-2606,7905,1577,3075,-2386,8732,2354,5026,9851,2266,5956,3047,-6067,-849,-2619,54,3024,-4987,9048,-6653,5348,-1380,-7438,-9443,-7982,-7597,-8494,-8631,-2128,7790,8866,8171,-7507,-4095,-6993,-7152,4471,898,-9958,9550,-8850,9632,-6311,5608,-1966,-771,-3965,1590,-7033,-7002,-8265,1529,-744,-3668,-4219,-324,604,-328,-1006,2103,8369,4071,-131,-8068,6961,7336,-6567,-5505,3273,-5151,-2539,2687,-300,1297,8670,2459,-2697,-3780,-7633,-5406,-8848,-8653,-1750,-3317,5992,6880,-4725,9267,-6406,1381,-5300,-3092,-5171,7658,4068,-4333,-959,2691,3354,-2751,-9578,4295,-5513,-2424,8795,-796,692,-3179,3559,-1238,5514,7397,-6956,6378,6750,-188,-5323,8592,6334,2623,5650,7046,-2306,-1710,72,9735,-6427,-4584,1110,-9802,3452,9929,-2073,-9647,-5072,3382,5260,-46,8804,-7467,-2028,-7306,8344,1888,625,8971,-6899,-1425,-5168,9892,-1930,-6973,-1756,-970,4844,2741,9480,-3375,-947,8522,6094,-3840,7503,-5183,8299,4625,9725,-4364,7433,-6466,-9267,6130,-5199,8308,9908,1391,-1304,8656,-3497,1342,8739,-4816,-9649,-9561,2370,-20,2019,-2676,-5083,6536,5546,-7175,9247,6302,7205,4088,7584,-4433,-6789,4900,8404,-3046,-221,-9740,-5545,-2492,4538,263,-8773,-3763,-4805,-2458,6386,951,502,2803,-7303,-7534,-8395,-2496,-1820,-3029,-4170,-1117,-4661,2520,4052,-5990,-9696,3098,866,7297,3359,-1678,5253,-3718,5425,-9554,6883,6722,9920,5555,-510,-3546,1632,4459,5122,2459,4820,-6282,9900,-5889,7046,2031,-229,-7826,-8893,-464,4423,389,3514,-7229,9112,3090,-9853,1201,-494,6186,-4066,-6542,-5834,-7673,-4175,2858,5640,6289,-7023,8480,-4034,7327,4417,9212,-3929,-815,-5802,-9576,5449,-2897,-2645,5922,3786,-5698,-8088,6370,-3049,1134,2848,-686,-4668,1609,-3995,-8712,1473,646,5249,-4222,-5050,4756,-8791,-7341,6158,8367,41,-413,91,-6683,-9162,8844,1752,-3128,9120,-3511,-763,-3796,108,-7063,-9062,3737,-2741,-1461,527,-8710,5739,5112,7668,-8580,-8458,-3362,1891,-6713,-4937,-3640,480,7344,8494,-3749,-5708,-9209,9349,-9540,151,5354,-7057,4012,-3630,7740,-6053,4030,4894,-692,-9989,-1029,428,-9171,-8592,-6283,9372,-4949,-1381,-6833,-7433,491,-8068,-3068,5551,-8319,-3906,8301,753,-7278,6267,-8365,5995,5082,9683,280,4820,-2199,4880,9122,7232,5440,8203,5626,2104,5542,-4822,4125,-3369,137,-698,-3967,-1292,-1674,6313,-182,1699,-4926,-6803,-7478,-4604,418,413,-2257,-2887,895,5040,1751,-8742,-8233,3531,9194,2793,-6301,-155,-9361,3637,-3754,3915,-5835,8488,-3739,4574,-6932,-8518,-2714,-4857,3828,508,-149,2336,-812,-3001,-7625,-1676,8131,5097,6942,-207,1599,210,532,-9054,-3949,7501,-3498,1571,883,-6536,-1881,3275,-5584,-8078,-5768,2086,-4834,7373,5901,7022,7227,4047,-7816,-5332,-9610,-127,-7758,3924,1288,-4775,-2438,-5614,-8861,8591,-5716,5990,3649,2929,-507,-6536,8760,-7129,1720,-863,-6692,-1125,-2522,-2679,-6098,2055,6280,2163,5541,1299,2291,7130,779,-4097,-2530,-410,7926,-1101,-4148,-2664,-5393,9497,-4930,5545,-7729,-8573,-5127,2897,-8693,-2835,6519,9702,-4883,-3231,-6886,1994,7095,6246,7241,3121,7696,-2226,3146,-6327,3211,-6900,-3955,-682,-1575,-3300,-120,-8147,-9208,1983,-711,-3759,1748,2670,3186,-6778,-6247,4673,9953,-2318,-862,-9501,-1799,-1243,1493,-8856,-9656,-593,-6619,-1698,2528,2439,-1551,1439,4453,-1185,-2238,-1279,8883,9325,-2365,7505,3619,-2671,-318,-45,-8824,97,-768,3610,-9788,2103,5025,2530,892,3778,-7503,6221,2838,5265,9408,7859,7946,-178,-8385,-8942,-615,-401,-2667,-7224,-6584,8539,-9573,-767,6915,-1597,2517,3499,7986,5819,5062,3186,6431,3510,-7366,-3193,7926,-7014,-6713,-7577,3238,-1644,3743,3153,-9744,4088,5787,8390,-6280,-6566,-8088,9427,4636,7885,8857,-8540,-220,-9896,8997,9377,8657,4150,-4480,-6426,8349,1269,-1307,8099,9083,-3987,3717,5414,-86,-3700,-744,7108,292,6357,-3116,2008,1929,6169,8125,7117,3839,-7872,2822,6078,-5444,-1956,-605,-3596,-3821,-1416,-4813,-8348,268,-3580,60,8178,4960,8048,-6318,-2073,6152,-1793,-6855,-8998,-8870,-5355,-8259,7324,-7316,9899,4110,1322,2694,3647,-6008,-9820,8582,-2529,8733,-4829,914,4480,-7582,-6419,-3754,-4727,-2503,-1331,5763,-3735,-3503,-1091,4446,-2838,5864,6995,-7043,9027,-1391,7713,6933,8673,-5867,-8018,-2035,-5442,-6713,-8795,1282,-3193,1000,-3515,1674,5076,3635,-9066,-7409,-9110,785,5176,7411,1326,6530,4509,1143,-1563,1412,5327,8223,-8201,7770,3096,7402,-1174,4904,3894,5856,-4726,-6073,-2512,-7991,1896,1394,7894,-7602,4648,-2406,-6466,3898,1119,2346,-7306,6486,7646,70,5008,-9974,541,3873,-3758,5914,6515,2773,2194,-5851,5316,1338,3622,1401,-8841,9480,-7235,-8924,-650,-9290,2429,-7210,-7514,1063,3574,2510,-3150,9441,4649,6432,-4369,-9027,5321,-1933,6037,4385,-4770,-2073,3017,-3237,-2432,-9256,-1651,1966,3561,-9276,3424,3324,-7427,-2459,4676,-8731,1357,-4767,8008,-679,-4947,5139,6109,-2882,3302,3501,-432,-8431,-1095,3237,-2082,-461,-4957,-3462,-5284,-1345,-4963,4352,3451,-192,-2540,7471,574,-2417,-2616,-1919,9605,-1167,-196,-8111,7133,-7417,2496,6686,-1384,-3548,-9,-7565,-6856,2992,-2919,-6581,-5815,-3860,702,3760,-3529,-6215,3821,-8281,3280,-7941,974,-1298,-1361,-101,4830,4473,3929,-6950,-8937,4742,523,-1611,-5776,7506,1685,-2910,-7928,5885,-8225,7127,224,-8228,-8946,5204,-596,-896,8379,-6576,-4114,1034,-8891,-6571,7120,9162,-6166,-4385,-6942,-6805,7914,-8141,3431,-6392,1850,-4244,-3723,7005,6358,4663,1400,-7080,4844,744,8591,-8181,-683,-7292,-8306,-1705,7566,26,-3766,-9065,8590,5011,9714,4983,-2494,-6674,-3394,-250,-4416,-1720,-1740,3255,8203,-6841,-2099,-8134,2105,-4189,-171,115,340,6201,-6584,-5617,-5937,5913,-3549,9134,7212,6017,-6753,-5739,3723,-6827,-731,-1508,-7003,-3334,-2082,-4484,-5579,2572,8973,5683,5489,-4468,-3952,9276,2418,1713,9759,-9726,-2593,0,-2555,923,-638,-2200,-8775,5949,7837,622,-1846,-7230,-7530,-1579,201,2834,-8338,3814,9977,-2002,-5846,4067,-4009,788,2632,9668,6516,6959,-6219,6489,-252,22,8932,-4076,-4031,4574,7636,6974,-4015,-9258,-827,-5524,-3408,3824,-7584,4578,3054,-3275,7464,-7793,661,-5634,4417,-6677,-2678,-8539,-6850,-851,-1814,-2669,-400,4405,-8127,9884,-8445,-863,2248,9780,-7820,-2704,1217,153,-2849,9953,-790,-2605,-3780,6859,-103,-4523,6259,1539,6415,-6346,-8269,1107,-8383,1196,9067,-267,3148,1770,-8197,-9685,741,-4121,7608,4815,3510,3195,6627,3599,-7871,-2646,-4190,-6422,7290,-4552,9484,3801,8048,-2440,1829,7999,-1178,2284,-1306,-6231,-5458,-4167,8653,9495,-4598,1409,3269,4196,3650,-2800,2264,812,5604,-2182,4362,6073,-6447,-5701,-8121,5414,6219,-9,2317,7778,4051,-5798,1503,-6002,7862,-4929,9200,7864,8278,6575,-7607,-6203,3424,173,611,-659,5357,-8217,3698,8571,-1708,-4355,-5400,7552,3770,7600,2594,4470,-6849,-8472,-9561,-1190,552,-390,7822,6080,-3369,-7472,-5410,-846,-4931,6606,7253,-4610,-5283,-5736,-4135,-4123,7754,-8763,-5241,-8445,5162,-3535,8257,-3508,4307,6484,-4690,1454,-8754,1210,2243,-2981,376,1329,5480,-5438,9097,9485,4826,-2414,6308,622,6400,-8611,2925,-5402,2052,7531,-6731,-5190,9922,7897,2821,-4443,3798,-9878,9104,8970,392,8425,3734,8459,-997,-7705,-3915,8129,-511,5993,3305,9808,-1976,-8772,5961,7567,6202,3976,5161,-9118,-9815,4745,3051,-8372,-2700,9803,-4850,5226,-7476,46,-8999,-1990,-3846,-2659,-582,8633,7585,-1992,7238,-1059,-3003,-2048,2714,-1742,-5663,4079,9722,5554,-4684,116,-7148,-5048,8330,5657,-6246,-8806,3912,2491,-3837,3026,1533,-8978,772,-8920,-8744,-5217,2751,15,6011,1001,-4665,7186,101,-7844,5303,-4174,-8741,-3120,-2719,3946,-464,-5809,-2712,-6463,7298,7022,6776,-6174,5237,4805,-4050,9515,-8807,450,7003,-8702,-4832,-6377,-4403,-9948,-6798,9285,-5432,9747,-2700,955,1508,3609,5055,3151,8567,9140,759,6283,2438,-1418,347,695,-6184,-9870,-6333,-366,5499,-7960,-8566,-2241,3681,-9372,-869,-8478,-5463,7512,-6889,-1364,60,-6310,9016,9664,-9078,-1730,-5869,7325,-1789,5959,-9070,3386,1801,-7210,5669,437,-6090,8391,-8021,8790,9101,-1303,-1330,345,607,7515,5145,7501,5395,-7468,-7159,1558,-2323,1500,4732,3054,-1271,4386,-8076,-8650,-4683,-3205,1297,-9877,6134,-3946,5735,5006,3613,-4221,-7309,-1560,2416,-1509,-4612,5956,-4071,-8323,2236,4631,-2801,-1763,3375,5108,4326,-10,9955,972,4624,8322,9338,9095,5160,-7973,-5233,1191,-6718,-1162,-8563,2804,-5457,7427,2137,2865,-4266,-5817,9570,720,-3976,2135,8310,1525,7547,-6020,-3401,4015,6150,-9311,-6191,1952,-8622,8183,-6235,-8543,7129,-656,5498,3262,4514,7415,-4270,4833,-9094,9138,6848,-8417,-9505,2420,8779,-9496,-5552,-8989,5186,1829,3777,-3707,-4640,-489,-77,-9420,713,-7517,-1958,-7842,-9120,-2290,-1025,-9736,867,4929,6756,-1328,-1716,4149,-4120,-9053,-9732,464,1877,9413,432,-2546,3658,-4135,1180,-4426,-7096,-5504,-3127,-1370,4261,-5442,-9299,-5850,-9843,-3514,562,-7163,-9952,-9120,-2752,6641,-2011,-5833,6146,2366,690,5840,8087,-8744,-5919,-4125,2442,-7692,5275,-9602,-7070,1585,-2707,9059,-8565,-9031,-5909,7896,-5153,2594,-3577,-4507,-2562,-8673,4682,-1427,5714,-2442,495,-7270,-6301,4548,7027,4360,-2467,5141,-1690,8589,3354,7546,-2165,-5608,4162,5091,-7924,-5354,-5655,5246,3910,-8363,-7046,7666,-4262,-286,-9899,5151,2408,8505,8226,8873,9679,6707,-4976,9983,-4583,9790,5992,-2429,-9833,-5694,-3889,264,6704,-9515,9477,1955,9866,8268,-1514,5404,-5491,5614,1542,-6474,2777,-1827,3732,7473,6798,-2520,4579,-1143,-949,8570,7945,-985,-7936,5495,-7453,4906,-9062,4042,7977,-1851,-1603,-3149,3494,3717,-967,-7237,2716,694,3627,-979,4658,-8661,-683,8592,5589,-6461,2007,-8384,-1902,7113,3160,1460,1614,608,-9116,7507,-90,-1172,-2219,-4071,9557,2586,-1295,-5826,1092,-4717,-3553,-867,6015,8138,-7688,-7251,7225,-1820,-6419,2980,7371,5077,-3636,1832,-9544,9259,8879,-320,-2059,-7705,7707,6460,-8911,-213,6214,-5276,-4418,-2335,-8001,9113,-7157,4425,6281,-4205,-4409,-2662,-5082,-6433,8795,-4798,-1143,-9011,-6186,-2316,-4502,6172,-5900,-8494,-3880,2384,-3906,1226,9922,-8831,-1221,3122,-4311,-9587,4208,-7194,-3950,-228,-6444,-9447,7080,-8033,-2348,-1701,-3065,-4259,-1981,-8757,-8649,-399,4671,9219,8083,-6498,-3437,9146,9952,7769,2244,-8826,-5829,2680,-9826,737,8209,-5182,-5620,8317,-7520,2106,4340,2236,-1300,3059,-3438,-5096,-2131,-5778,-673,-4845,-6780,-1375,7695,3607,-2586,-6668,4509,9351,644,6534,9411,6878,8642,8405,8120,9560,-3437,-3384,5041,-763,7521,1526,-3030,483,9470,-3711,7995,8362,8650,-246,2270,-604,-3446,-6645,-3603,3498,-4259,7061,5634,4714,3845,6308,-7085,-3243,-3198,8467,4784,3869,-3080,94,-6680,6728,-4533,3460,108,8407,5914,8173,-2413,6964,-8584,-5363,-8413,8051,-5011,2622,-9064,6074,-5361,9334,4101,-9013,4816,9781,-985,4363,8549,6497,-4156,-8097,-4485,5239,-917,-6780,-848,-2217,242,-2511,-1095,4995,-4119,6983,-9550,-9965,7415,-7954,387,4214,8056,-540,7611,-8186,-1408,2486,-7195,8484,3066,-5705,5226,4527,-5077,-3574,3994,-5354,-8517,-7700,8121,-2880,606,-2690,9809,5220,3897,5444,-25,-2306,2586,-8055,-5219,537,-488,-4826,6462,637,8607,-1698,8100,1278,-1417,7429,5799,-3672,2824,2069,4337,-2131,6383,751,8,-2298,-8601,6644,7343,-3574,-3717,4268,8322,-1913,-805,8802,689,-8832,6890,1681,-3216,-556,-4593,-1310,-6325,4794,-6205,-9397,7059,3662,2641,-808,-9653,-3922,-9106,-4465,5257,6123,-2117,2542,-4094,-6972,4994,2971,419,6007,466,-1159,-1088,-8928,6382,4433,-3305,-1792,5656,-9313,-2744,-8971,-419,1833,6543,-2094,4339,-7891,6755,-6467,8129,-9189,4272,-4334,-2439,-6149,8713,879,7873,3727,2968,-9672,-8325,-4043,-9353,-5203,-618,4881,-9591,-5209,-1239,1727,-3815,7488,1642,-5313,-446,4208,-6254,-5098,-6665,1657,-8688,2967,5851,6411,9432,9875,5896,6577,9779,-1096,3270,-7272,-3972,-8312,6551,-2212,-8731,-5317,5309,-2422,-8828,6223,-3116,-2993,1367,-3547,-609,-8646,673,2261,-7186,-9664,9651,6165,-1080,8384,-8015,1040,-2796,6080,-6707,1585,-3832,-6363,6938,3978,-9890,7327,-6697,296,-58,-9811,-4307,7574,-244,-3038,-1374,-4538,-4582,6307,-2033,6069,-4117,-8891,1992,-200,8931,-9549,-6260,-5743,-6564,7544,7780,-8252,716,2381,1509,-7203,2801,3058,-6360,1305,-6040,-1890,-5447,3183,8919,-7883,-7087,8500,-9890,-4922,-7267,-6311,9900,2509,1763,-5123,7348,7403,6609,-7896,-2641,1337,7995,-2204,1262,-2979,-8303,4444,2019,-5997,-3760,-5764,2718,-7010,-4761,2077,7513,437,2366,-8308,9748,6947,-3442,-1822,7834,2111,8990,-2991,6177,4548,3581,-6779,479,-1367,-3610,8308,617,-2413,-1176,-5333,-8278,6119,-3922,6087,-1438,-4798,-667,5197,3692,7163,-1981,7506,-7155,9680,-1568,1426,915,9306,4978,-9879,-2072,-493,-1418,1819,-8837,6860,8659,-7321,-9978,760,-3851,3012,-104,-7405,-8504,3879,1171,-8265,-2431,6534,-5447,-7649,-1895,4722,2963,8565,-1177,-1636,2201,8481,-956,1973,7070,-5659,9130,-2546,6697,1201,1398,3932,-3375,-7036,-1272,-3105,4011,3516,-1864,5269,7770,463,-4772,-5474,2477,1549,-3864,391,-5240,2704,8865,-4683,-8567,617,-996,5115,4889,3827,6667,-8741,-1374,-1922,-2002,-390,440,-2470,-5384,189,2517,3996,-6422,-6715,6407,-8113,5034,6315,5366,2690,-3710,-7089,-2216,4083,5252,-6627,3451,-4942,5879,4034,9214,7653,-4973,-9952,5295,-5288,8415,9790,-7412,9472,9902,-9169,8823,3226,-8089,1715,2042,4078,-1303,8856,-7842,3343,7089,1909,2689,-300,5457,4801,4046,-4287,-2484,942,7078,-1052,-6251,6200,4746,-7011,-9219,-3181,-3382,8110,1235,-4099,-1777,-4982,-7731,9625,-4528,8316,9723,-7561,8820,15,-8497,669,3167,761,9989,-2272,-1700,-2290,3862,-1974,4171,-9107,-5865,-7814,-8232,-3033,-6270,-7557,8085,-1561,4158,-7831,-5910,4947,-4189,6681,-8379,-8513,-307,8595,7840,-1709,6480,-1932,4215,5898,-6001,-2366,-3846,6390,3072,-5180,-1503,5321,-1781,5924,-2035,-1964,-3009,-2773,1265,9704,-4364,-7727,-1348,-9253,-3185,-5157,-5811,-4583,6885,9539,-7003,6104,9899,-4367,-7061,8170,-7551,9262,8246,1132,-1064,1759,-5662,4416,-2586,6690,2437,6170,-2874,-5077,8603,5869,-2543,2165,9143,-3342,698,2152,-4878,-7309,203,-4310,7361,-1784,-9518,-3974,3397,8007,4772,-4894,-7672,1193,6800,563,-9247,-9956,790,8558,-890,4101,-7403,-482,-4625,4955,-5149,-9541,-4279,6335,8425,6902,-8002,-5475,315,-4322,5708,-2785,9963,-2873,2017,8636,985,-2489,5722,9318,-2451,3592,8583,-3186,2397,-6204,-6220,3084,-5338,7700,-362,5007,-3780,-4646,-9622,7526,-1581,-9332,-7594,-2427,-5878,1455,-5955,6695,-7066,-8283,1234,175,2569,2215,-6007,4539,4214,-4520,-8801,-1911,-4809,1782,7650,4077,4581,-7558,-9388,-1556,8392,-5937,-9894,9113,3240,1807,6270,-8628,5767,4232,-6904,2392,9037,8158,-3716,8364,7307,-3880,538,-4781,2049,3167,3609,954,-4740,-6776,-3541,4247,4406,-5855,-1286,-3987,-1248,-4098,8522,2439,1629,8736,4314,5320,4349,9698,-3076,6144,-1487,7949,-1787,3635,-7531,-5426,3900,-5974,2861,7997,-18,-4736,-4075,-8927,889,7676,3365,3284,1195,-4118,4100,5010,1368,6246,9834,9961,-7915,1141,-8893,-9255,-1031,682,-7535,-492,475,3096,-2074,7483,3567,1766,-2077,4990,-221,-9882,3616,-3405,-3472,-6113,-8179,-124,6588,8428,-2408,9375,6791,8736,-6466,5467,6001,-4690,-546,4153,550,812,-6493,-4392,5241,-3699,294,3877,5840,-7119,6668,6189,5155,9873,-2917,-497,-3201,3770,-9741,-2528,5101,4677,-2436,-9307,8598,2176,-8355,4266,9162,9128,-8530,-9829,-4669,-204,-446,1990,-4898,3254,-6098,-9670,3808,4333,8948,7435,2845,2446,-8273,-7247,3388,-9170,-8913,-3235,2901,6379,-2941,1679,6030,-6705,6666,5044,-1051,-2497,-4106,3320,-1660,6946,-9718,-1841,5971,-5581,1558,1959,9234,5212,7718,-6384,-7144,-5883,-16,444,3731,-2634,8757,3357,8263,-3426,6440,3342,-7215,-4404,-1999,-7057,-2268,-7469,-5507,-4272,4165,-465,-2084,55,-5337,-2624,-3876,-7257,-8999,-4304,7349,-2942,1293,6590,-1719,6767,-5821,6390,9570,-7550,5338,7418,-2983,2700,8935,2211,-9489,-2647,5643,5007,243,2941,4762,1806,1431,-2362,-9487,-7375,-518,-8394,6821,6586,-2094,6017,3124,-8565,-6599,-4585,7673,-662,9063,-4951,6997,950,4391,-7472,8469,-8929,6996,-1748,-526,-4393,-2871,408,-1375,8326,-3575,-1487,-746,-2307,7010,9841,4487,-1348,-285,-1462,6254,3698,-4986,4809,-2440,2152,2309,-7658,-918,6402,1227,-1123,-4822,7420,-8219,-4506,-916,-1071,8160,6927,-5999,-7271,6211,537,241,9461,-9491,6878,-2187,7533,-8443,-3179,6047,-6604,-1797,-1877,-1315,4396,5513,2156,-516,6835,-1119,2890,-6556,-9585,-8501,8239,-1967,-8489,4527,9586,8821,-9244,-4569,-9284,-2526,4890,-557,5885,2445,-8528,1421,1073,-1986,6505,1771,-9155,1403,2644,5772,-9487,-8140,285,4715,-6243,-164,-8671,9595,-3348,7309,8687,-4686,3372,9015,-4434,8211,8545,-770,981,8386,-2022,5390,-3985,9454,5004,2910,5413,1379,4027,1899,6486,-5006,7160,-6069,7222,-1669,-169,-1066,3146,8334,5889,7736,-5116,6944,5029,2238,6886,-9467,-3738,-4510,-871,-2188,-1383,-9216,6191,6396,235,177,3930,-1276,-9327,7972,3166,-6089,244,-517,-4627,5813,7313,5841,-7421,5577,-1966,-845,7789,2731,2704,-9138,-1977,1748,-482,3984,2212,-310,-7291,-5331,-5907,-9612,-2301,9517,-4828,-4124,-5953,-5803,-9642,-236,-2044,2610,-9748,8299,-1143,2259,4989,3093,9598,489,-5441,-9079,-4275,7616,-1281,-1023,6199,4610,-403,2473,-3028,3910,8362,8999,8137,8727,-5254,9177,2504,-1553,-4623,-7013,-5861,469,8295,1793,1699,-1348,-233,2030,-4211,6687,7299,1191,-4090,8952,5607,-1096,-4505,-6644,-7688,9117,-331,-2173,-8613,6556,-2627,7985,5449,-1621,3792,-7969,3424,-7238,-5100,8458,796,-2918,54,-1595,-1523,3346,-1662,-5002,-3012,-1120,-3426,3037,4390,8193,-905,-8129,5529,483,3933,1850,-3903,-7463,-8966,-184,435,9254,5496,8999,-1567,1521,3566,-4642,-8082,-4729,8960,-1848,-3240,7219,-6661,-4778,-5064,7460,-5528,3779,5786,-178,-1074,-8161,-2734,1846,-3494,-6748,-3194,-7782,2277,1081,-2257,723,-1932,-9514,-1073,2342,-7028,8611,-1060,-1365,5674,-2133,-9791,8241,-1352,669,7075,-8919,1872,5896,-170,287,3295,682,8464,7642,-3160,9019,-6355,1936,1211,2633,-625,-5418,6167,4833,-6473,631,-8672,8920,-874,2799,6725,6220,-6875,3005,-7677,-4007,9910,-2416,6269,5936,7082,-3118,9958,-9008,-4432,9455,-4826,3879,-2788,-6158,-6563,7866,-9849,-8630,-2092,203,-6568,3371,9403,7052,8552,9563,-2329,-4914,5462,-9064,-832,8454,-1559,-2474,3413,7456,1532,-6333,1723,6571,1871,-6571,7423,5145,-5540,5016,-5261,8983,-9775,-1896,-295,177,1306,2292,9459,5700,129,8864,-1458,5131,6571,-2115,7157,8769,-8761,-5244,341,-9804,-3997,438,7063,9104,7348,70,-4733,-156,-5783,-1722,-7348,-164,-6535,1870,8600,9119,7400,2202,4693,-5979,9158,-3339,2501,-6805,-4534,9233,5023,4250,3864,305,-5348,1935,2404,250,6954,2534,-6280,5627,-9705,182,-603,6949,564,-9412,7612,6877,8833,7300,7609,4268,-7435,-9146,-3751,-4055,-8903,-9325,-4482,4236,2469,-3355,-7801,-2395,4685,3569,1493,5086,3339,6953,6729,-3712,352,-5938,5765,3479,2007,-5066,646,-2554,8349,1366,-1745,1944,6710,4270,5317,4915,-6535,-7968,-9755,2926,-525,298,-3519,5046,3032,-3284,6846,7503,-5995,-6403,-7424,4015,7363,3491,2217,-3429,-7488,-5956,-7612,-9528,-4357,-841,8401,-7640,-6669,-6997,2432,-7142,5014,-5859,-8296,9235,-6190,-3540,796,1219,-3242,7541,5689,1508,8868,9016,-8268,-7258,-6352,5414,-8981,8056,1364,-4040,2465,-6744,-2285,-2810,886,-3789,-3872,1537,429,4206,3940,-6856,2577,-7099,-3324,4527,-4023,-3097,8582,3217,5101,3429,-36,4690,-4677,-9376,-389,6751,-7977,-5421,7018,3734,6520,-7989,5329,3358,-8952,-8960,-7241,3606,6186,9581,1929,-8943,6666,5462,6353,-9088,5235,26,5863,5397,-8232,-7197,-8168,-2735,-9678,2659,-2845,7005,5030,-7838,-7666,-3510,-8007,6972,-6562,-9964,-5636,-5920,4755,8044,3550,-1655,-3585,7769,-7186,3284,7411,4267,-6899,1278,4717,-5325,6633,9717,-5171,-4837,-7329,5031,-879,736,-3145,3212,-9751,5271,-5052,-5285,-62,-1171,-2857,6355,-8956,1513,-9533,7661,6079,-1035,6702,-4796,4281,-6940,-2815,-6456,7676,6356,-6847,7407,-6961,-3754,-1161,3983,-3488,4595,6175,-2403,-6822,-4413,6660,1587,-1923,6651,-9795,9099,6854,-924,-7164,152,-1896,-5241,1734,-9860,-8720,3351,8011,-5131,-2442,-1717,-3776,5252,-1863,5531,7271,6450,2060,6320,3148,-4462,-49,8273,2701,1225,-3868,8895,-3458,-3526,3584,-8008,5942,-5327,6195,7104,1010,7474,-303,-2760,-9232,5630,1911,4469,6200,-4286,2547,5349,-643,8488,2562,907,2792,-8157,5436,-496,-8746,-7713,5140,5147,-6363,7694,2363,3842,948,-1109,-3817,-9611,-6643,-890,8362,-5052,-269,9455,-2631,-5597,6439,-6258,-132,-7452,9504,8474,5811,-1180,6476,112,-9534,6756,6291,5970,-3917,6337,-9100,-7943,4884,-8341,5471,-3346,-7675,-9425,-2020,-2192,-5690,3091,-2431,-183,-6269,4476,3337,8119,4932,-3895,448,-9050,-3876,7422,2172,7098,9626,5730,5068,1635,-4271,-1452,1068,5280,2203,9534,-8942,3962,-7343,-5931,3826,-2241,1617,-1761,3734,-6839,7239,6804,-7245,1664,3497,-1691,-3716,-6497,-8085,906,8330,-9005,5902,-5191,-5999,-1713,5811,981,-8276,738,-8079,6894,8209,-4579,8077,7522,4177,2374,1146,4459,-2173,-4038,6508,-8421,-4064,-1370,5048,1943,1249,2503,-5677,-8437,9340,7894,3999,-1312,289,-7056,839,3894,-2478,-8456,6732,7743,1140,-7914,7511,5939,-3331,2667,6814,5820,-6096,-3470,1529,6745,-6417,-5310,-5583,5973,-7219,896,9010,-557,743,2658,1763,-4477,-7613,-3807,-62,4166,9963,-5966,8168,5154,-3670,-1413,-874,-2965,-7416,-2511,5737,2838,-5667,1086,5160,-7105,7204,6984,2405,5221,9565,-7648,-9609,-1467,2825,2987,8545,-2811,-1045,9262,8039,-7172,-1661,-8363,9151,-216,8433,8761,900,-6663,-1641,3992,-9589,2320,4235,-9419,-314,6103,-1064,-3136,8142,2295,-1140,-751,-1772,697,-3209,-3142,5800,-5966,-9146,-1357,2139,-5325,-631,7610,9048,1190,-8129,-7363,2795,-8257,-4952,2803,-9054,-9130,7437,-1599,1615,5946,2432,-4307,-3955,4970,-2396,8040,7675,-587,8840,8876,-1317,9482,7818,-9335,-6780,1286,-2196,9038,5703,-9535,-1636,6640,5956,-6761,-4257,9942,6266,9911,8006,567,8080,1074,9916,-605,6689,8002,-2848,9763,-5161,-6562,7561,-8944,-6668,-2527,1325,-7185,-6060,5795,6283,4100,-861,5140,9164,9469,110,-4884,-5313,-2669,2279,-5006,2262,-6305,-4206,-1285,3384,333,4879,-1023,-1613,62,1333,4147,4418,-1864,-7225,1647,-8275,-3282,-4167,8694,1758,7172,4102,-4773,4544,1345,-1213,-325,-8573,7894,548,3585,83,-1512,-3206,3527,8053,-9879,-8847,3214,4237,6184,3175,-530,3824,8479,3640,2448,-531,-2927,2561,-7629,6056,-1597,-1982,9033,6995,4285,9558,-4441,4687,-7274,461,-4295,8796,-3130,8508,3582,-4417,3588,-3993,-9921,-8988,-9384,-6822,9226,-8778,-1543,-9784,6038,-3832,-7148,-8692,-6486,9778,2068,-5325,-1629,1618,-105,4957,8862,-3736,8790,2324,6910,9791,-2385,-9432,-7156,-2118,9068,-8848,7187,2088,8762,4793,-5804,-2804,-3052,-7759,2816,-1425,6501,-7565,8984,-5679,5025,8296,3509,-2332,-1289,9180,-6344,6035,-7401,5388,7396,959,-8105,229,8538,-452,2505,-6715,-6532,7409,-7491,7681,9011,1282,4989,-6375,-7163,4834,9466,9781,-7997,6830,-8142,-8513,-7364,9695,1266,-8592,1838,-5765,2483,9937,4358,-5672,2992,-1482,9495,-4167,-1877,6551,-1679,-8955,2795,1812,532,8778,8054,-727,-4009,-4924,-3305,5884,6226,-4007,-1338,-2141,-7408,-682,-233,4420,-4386,3232,1103,-9778,5776,4424,4136,-1926,986,6772,-5550,2295,2124,4502,-9461,583,4158,-9392,-5343,4560,118,7613,-8642,5748,-3051,9616,598,8400,2283,-9250,5279,-5013,3528,-5975,1045,-3105,4057,-7231,3554,-9508,6924,-2850,5746,9234,-4619,-8568,-4223,218,-2668,8582,922,8640,-4700,2594,-6971,-4809,-3996,5241,3643,6127,5708,3368,-2936,3792,7170,-3863,-4165,-4698,-6289,-2443,552,6228,-735,7609,675,-3264,-605,6900,4311,8903,-898,4233,-2459,8391,4670,4204,-5194,2945,3252,-3320,-7633,-5853,9643,5164,-9980,-8631,-9350,7679,5334,9484,-320,-3853,-9272,-3427,9045,2361,-7110,440,-4205,-6086,2708,4368,-6486,-4100,-9424,-5527,-8395,-6925,-1964,1943,4281,6859,209,-8349,3255,-6051,8097,6233,-2266,5629,-9942,8560,-4010,4183,5806,-1770,5112,5068,-5567,-3002,-4740,6070,1090,2945,9039,1654,1742,-6135,-866,8006,4810,6919,4063,6795,-1710,8256,-1460,5216,4683,329,-7867,-9598,-4283,-5363,-3876,-4683,1810,2437,1490,1280,-6721,173,-5480,-1558,2693,9843,-1723,3358,5781,7449,-1738,8101,-7565,-742,-9172,3848,-86,6664,-7004,-7418,7437,6229,1940,-3622,-1222,1381,1739,6750,9055,-3973,7288,-3465,-1789,-4671,1729,630,2801,9101,-1031,2940,-8376,-4911,6442,7648,-2988,-3007,-2049,9897,167,1619,-8734,-5702,-5582,-2851,4507,-4693,-2616,-5785,986,-475,4354,6044,4798,-4344,-3611,-9630,-6583,-1189,640,2977,969,-7821,-7841,655,-6596,-7013,7271,-2083,-6368,-3591,-1999,-2474,-7117,-9313,7649,-3855,2396,9333,2623,2211,8694,2503,463,-7306,7359,1532,-6251,386,-1701,-5706,7864,-1500,-6146,-6722,-9906,2015,4277,-5534,-1344,-9106,-5463,-5315,-6121,9014,1159,-9752,-4475,-4351,3710,-6556,-6581,-8640,-2269,-8144,8651,2645,4323,8696,5051,4884,678,9666,9478,-3032,4587,6684,9511,139,1780,-4803,-2150,4094,-5274,-6001,4164,-6968,-6254,5987,-1194,-7416,-117,-981,-6857,-4093,4021,492,-9928,-171,-1275,6496,-1643,-390,6136,6751,-7710,9517,-1397,-148,-8248,-6408,-2138,8538,-7550,-6163,-7134,-5022,-7305,-3672,3619,6537,-270,6931,-1815,-9648,-4101,7623,4069,-9968,740,4253,-9906,3918,4112,-2397,-3367,220,-2125,-9073,-2233,-8863,-2867,-2149,-8558,-9934,4456,-2107,-4237,-6976,7842,5070,-3538,3894,7546,-1100,-30,7811,-2720,9364,2964,-3240,6379,1395,1439,-8435,1322,-4847,-4805,7199,-9603,3870,-3291,1954,-9975,-893,-677,-6390,-873,4058,4730,8593,-3958,-4607,7757,1488,-9137,-5748,-4070,995,817,-1788,5085,1566,-7388,-1941,-4915,-7354,-3554,-7482,-3842,1245,-416,-7595,6524,5958,-4351,1389,4523,2054,337,-3306,-6797,5073,-440,-2849,-7329,-3409,-1441,6350,2105,959,9940,9308,9356,-2470,-1699,-7430,-6204,-5772,8016,-7169,8086,3758,-9179,8902,4453,-8747,-4773,-1127,4977,2268,9597,7899,-1438,-8273,-1371,8305,-5598,-3545,5291,2614,2649,-4294,9977,-54,-5258,-8505,9268,7225,716,9937,9665,3728,5789,-5731,-4617,-5975,3876,3001,-89,3136,5963,-264,6111,-8248,-8648,2359,2101,564,-745,-867,-2309,-9136,5694,-7905,-1366,7150,-136,-6621,5679,-5985,-5290,5448,2768,-4682,-3881,-6020,-7727,1805,-8700,-8726,1695,-2096,-1277,4214,-9212,-1722,1083,-1074,9350,4720,7393,9419,7970,6431,2673,1080,-6581,-6466,6,3171,-2158,3736,-5937,809,4921,-654,8313,8160,-7167,9544,-3524,7522,9401,-2307,4907,3060,2031,-4959,-6201,4703,-8444,7671,3140,-4975,-8360,3276,7608,-1308,292,5423,1829,-5869,1397,7225,6184,-6571,-7619,976,-8651,-7831,-5338,5371,8458,-1584,9435,9726,-7615,5576,-7107,-752,1571,7855,2379,-1611,-4625,-3212,7579,-2375,-3318,-9192,-6598,2421,-423,-9162,7612,7787,-6424,9732,9518,-6405,-3668,1411,-2371,6667,1968,-2606,-1630,4811,-6252,3388,-5163,6935,6028,-5863,-2611,-6054,-7391,-790,-8640,4170,-7330,-2035,-7806,2397,8680,9866,966,5661,-8322,8663,-4484,3290,-4503,8218,6175,-5774,8907,-879,1558,5666,4663,-5980,7300,-9278,4581,2633,-7829,-7876,5834,-8070,4714,-5464,5326,8068,5888,-2058,-9741,8855,-7088,1287,5473,1472,1247,-1319,4935,-9130,5912,-1464,915,-4619,-8689,-9288,-3184,6437,8275,6423,-393,-7624,-1580,-2006,-1693,2534,6185,1238,-4047,8814,-898,-9466,9441,-6128,7572,-5434,3970,6808,2204,-6761,5074,693,-6512,3114,-3841,-1952,2568,9141,7915,-7158,6137,-3995,-621,9483,1090,-3991,2972,7908,796,-9913,1897,8090,-5099,4918,-571,-461,-6030,-5942,-5429,1465,260,3996,5066,9495,7135,-8290,8988,6087,2596,-2136,5176,1041,-4666,3626,-4656,5081,-7357,-5115,5341,1018,6592,-4821,2160,6636,-7214,374,-4109,1419,3157,-6928,6778,-6758,-553,4706,-2171,-3562,-2260,7636,-5921,2882,8533,-5054,7336,-4828,8572,9907,-8435,-3712,6654,-3699,-1873,-80,5378,9963,1348,7773,-3977,3077,8585,-5504,8177,-2164,-9720,-890,-2650,-4396,8374,-2466,9776,8164,2197,6026,-9243,6516,397,7659,-2871,-6222,9581,-9407,-1730,1695,-8793,-5226,-1669,5261,8359,-4386,1340,-4448,4057,2640,2973,1173,-7303,8348,9345,-1848,-2475,2626,6151,-7472,5157,-7305,-6067,-350,-2628,5632,7666,-9095,2988,341,-2428,9927,1910,-7110,-8172,191,886,2196,3700,-640,8104,3627,-9636,1903,9539,258,-2868,4992,-7374,-8517,7961,-9553,7873,8348,-2990,1844,236,746,2830,5473,-1988,4867,-445,8006,-3544,-4342,-1011,5443,-4465,-8701,-8377,-4414,-6942,5770,6037,9923,-4769,8056,-7027,5539,7139,8513,6348,-9072,-3830,-8506,-3586,-212,-3447,193,3941,5961,4238,2432,7443,6268,2754,7339,-9646,-8303,-8256,2539,-2182,-7199,-419,3148,813,3369,-3,-3867,8663,-5751,1618,5352,1629,8769,6050,-5290,6217,-7255,6578,7872,-7420,8080,-307,1895,1167,2719,2619,2085,6356,-5026,-3211,8056,-5229,2968,6231,1974,-4294,-1318,3678,7207,5929,-9552,-8544,-7758,4882,5203,4991,-2612,2269,4708,297,3833,-5438,5260,7264,4234,1211,9532,6178,3868,3368,6558,-3451,9204,8900,-6847,2775,4873,5995,-5106,6643,-4067,4072,5137,-9913,-6986,-2755,-5283,7064,8092,-9147,7046,-4786,283,-6231,-4525,-8529,-2754,8731,-3038,3290,-982,-3440,-950,1771,-1658,9911,-6859,5349,3420,-6485,-475,4461,6368,-7050,8515,7598,-4601,1081,-1035,3609,2893,-9280,7855,-435,-2437,-6304,-8317,712,-2136,6957,-8869,-2005,2072,6800,-9183,-9655,2215,-5638,-8201,-9326,-260,8910,-6080,1331,4068,8003,4725,-9449,-3621,8206,-5223,-5920,-7011,-428,-567,-9480,-4952,-7376,-1271,-9257,1919,-2207,6990,-6272,5006,4814,134,-1617,-9337,9337,-4332,8283,-9876,-2324,-6412,-4286,7301,7836,-5286,5788,1044,2022,-7176,5955,-3181,5485,-874,3661,-2139,3000,-3103,1253,-9192,9066,-9828,4452,1490,-2130,-1507,3397,-5468,1462,-8905,2591,3390,4924,-1042,-1916,2026,4357,6727,-735,3615,7762,5152,-1493,-6960,4544,9032,911,-7091,-4452,-4176,-1640,1388,6228,-7002,1811,-9122,261,-8583,3050,9483,8728,8127,3729,-8605,-3332,2076,4987,5986,3491,-7719,6416,8632,2255,-1724,5589,-2664,-1009,-7511,-1953,2217,324,4014,-6553,1213,526,4416,-9172,-3894,6731,491,9230,194,3292,-4464,-4287,-2312,9159,-4652,2579,6537,-5399,-1798,6954,9252,1241,-2251,-3560,9352,974,2283,6902,-9565,2338,5804,9960,-5576,8539,6405,6420,-6611,1487,-9917,-2046,3327,-9719,-1137,6520,-9511,5309,1825,-7906,9714,-6316,587,-7777,1451,-6789,8219,-4040,4802,637,-458,5114,840,4088,900,4331,1540,-3832,2190,9356,-4319,5596,-8225,-6313,-4879,-1846,-269,-9775,8096,7794,-9655,-2839,-8721,3028,9983,9582,9696,4372,-6033,5292,539,3506,7212,5454,1642,-6186,-7174,9060,7798,8385,-3093,7298,-912,5214,1997,1569,-116,6861,-7548,-346,-5312,-4530,5352,-7856,3730,-4007,-1128,-7878,7002,-8857,-7816,-9480,6718,9093,329,8163,9208,6300,-451,-9090,7754,5560,7732,1493,5880,-3898,7639,1375,133,5110,3846,3692,670,-5268,-3897,8076,-4026,-7408,-2407,9424,-8392,-6145,-2466,-7497,-4229,-4385,-9432,2842,1998,-9425,8260,-3474,1885,6027,-4079,-845,-8427,-2694,8055,2604,1310,-6219,2869,-1417,9074,-7355,9002,3345,-7060,-9205,-2136,-6056,481,-532,-7569,-3736,-7111,-8331,1474,5105,-2441,8428,-7874,-6397,1276,-1242,-2412,2546,6174,-9424,-8375,-7209,8681,-2615,-4631,1434,1892,-2133,-2625,6897,6300,4350,-7778,887,-9315,6298,-2946,5530,-395,322,1603,2347,-4096,-238,-1775,-3835,-3446,7796,-5435,8629,5467,3856,-2012,-3376,-2802,-8791,1164,7680,-6310,3882,605,-2708,-5307,584,9856,7037,-4215,8589,7060,6845,8224,-1554,728,2985,-885,-9255,6964,-8772,-5415,7028,-5196,5272,2817,-2114,7887,-8309,6804,4426,-6310,-9923,-4714,-9819,1084,-5727,4424,4452,6034,-5912,2504,1648,6157,3647,-6232,-3300,-4250,-3823,-5602,9129,-3079,7267,3079,-9240,493,1616,-4436,6962,2203,4529,-4272,2432,108,5449,-4831,768,7180,5692,6810,-3569,5294,618,5954,-2935,6037,-8806,-1993,-1562,-8675,-1102,-1209,3812,9212,199,-7889,5519,2139,5084,-3638,6338,-2668,-4299,4919,-2446,6269,313,4568,-8067,9354,-6867,3250,4668,-6559,844,3107,9216,10,-5105,1412,5523,7566,-1775,-2461,-6975,5058,-8031,-9079,325,-1087,5070,2908,7689,2323,-7142,6301,-2227,-4114,4994,-5707,3344,-3859,-6934,-8528,-995,-1436,2202,5712,-5040,1763,5042,-3104,-7851,8249,7559,5311,-6014,-8795,4878,-3577,6836,-8871,-7254,4119,4266,-9598,-6227,3961,-6524,-6390,5590,-6811,3822,7221,-7980,-5509,-6153,3155,-7751,5014,4825,8642,5959,-1414,6547,6007,7012,-2719,5666,736,7721,7852,1510,3804,6126,-5123,1928,-4016,-5973,5276,947,6921,5206,1414,8937,693,7393,1511,4281,322,5245,6213,-3508,-944,4323,1291,4952,4771,-9567,6509,2362,-8689,7687,4268,7278,3605,2149,9294,1166,-2503,4411,1078,-8047,9800,-8947,9989,567,1869,-4575,3413,-5517,3811,-6268,-3135,-7573,-1314,-707,-5375,5169,-6659,-7484,8323,3462,4025,-9217,-6565,-6156,8759,5078,8354,-9639,2535,1584,-7189,9543,-4712,-418,4342,3122,4305,-7518,8161,-262,-7894,-9937,1890,-8827,-6986,-5185,-2872,-6638,5869,-9543,-5535,1000,2792,-7029,230,-9487,-4200,3250,4026,3442,6725,4621,-6484,2067,-895,9011,-1121,5537,3970,-6185,402,-5223,9985,-4683,-8510,8321,-6092,-7062,5965,-5593,-4952,-5223,7560,-3518,974,6488,-5360,-5514,8938,9991,-8379,-5247,-9406,-5258,-2395,-2358,-1781,-293,-3129,7477,7743,-6024,6122,6843,9232,-4232,1951,2481,12,-8803,2334,-9188,9111,-3214,8300,-4806,-5746,4651,7134,141,-637,-2477,-8147,5155,-6788,540,-8991,-9438,-7080,6480,-4305,-9850,3635,-1224,-5259,1482,-7802,-7522,7324,-1737,-6516,-7240,3211,1276,-1483,7573,-865,6098,6699,-2424,-4005,-1403,2979,8631,5765,5719,-4849,4627,8516,3586,1610,1559,-2046,-7435,-5467,9135,-4262,1722,8786,4543,3032,5241,-2163,3928,7758,677,-8288,-8485,8912,8092,-3820,7592,-5735,-9194,1758,9440,5600,9087,-7796,-3979,1225,8594,3122,3405,-331,4477,35,-592,459,-9123,-8603,7294,3993,641,719,-3942,3281,923,9245,-1200,1692,110,5772,6215,-4494,8251,-1152,3842,1863,2767,-1932,5042,193,-7995,8069,7869,8573,1815,-6473,6201,3364,7502,5233,-4864,-9566,7803,8042,7874,2993,-5909,5593,6357,-4626,-8033,7701,-4179,-8943,-3322,-583,1693,8031,-2835,1658,8846,2362,5893,781,-6609,6813,2432,5512,2120,9141,9237,-239,2405,-5363,2242,3569,-8126,8050,6612,-3998,1710,-6188,-1534,860,-7843,-7504,9812,923,147,7425,9458,9762,8589,2884,-3024,-2281,1688,-5935,6035,2072,-5051,4560,-680,9635,9049,5357,8778,-8409,2834,-3502,5937,-7616,3399,-7919,1227,8270,9881,-4386,7874,384,-6791,-5097,688,2913,3659,-246,3545,-7320,4613,-9563,1275,-272,-3844,-5039,2648,-3978,2736,6440,-2475,-8370,8394,-3149,9082,-1663,-4772,-7814,8376,-6769,9774,1669,8768,6109,5896,-7264,-736,-8417,8710,810,9355,5527,-727,8552,5409,3201,3807,8510,-2615,-9228,3943,2767,-2947,1376,-7299,-982,-5679,5229,-2398,287,1869,-5150,2304,5146,5767,7148,9276,-5340,1916,-3253,-3564,2273,832,2569,4203,9605,6941,-8375,-2224,9173,3559,-1639,-8125,-5027,9431,-3906,9946,-2231,7284,-8773,6343,910,-10,-4818,9156,-3854,6939,4666,7668,4023,3640,-7609,-4337,-9753,-5636,-2759,3738,1238,3898,-5025,6130,3576,-7894,-7217,7648,4688,7554,3676,-3190,-79,3974,-2066,-566,-6142,-9121,-8415,4203,9210,-6947,8667,-2085,8938,5056,-5047,-4628,2569,389,3716,8851,7842,-1986,-4929,-1306,-4995,3205,-1705,6712,-1162,6231,5822,231,-6181,-995,7283,-7792,-6891,-2551,-7821,-3893,-8591,310,6205,3549,-5156,2192,-1202,-3361,3117,3611,-8158,6526,776,4022,-3304,-7257,-7562,2996,7392,-33,-2310,-3508,-3303,7798,-3226,-1464,6854,-3214,-4767,7878,-629,5541,-226,-5452,7453,-6297,-839,-7189,382,8226,-2879,5924,-94,-3865,9049,1449,-2232,-3095,3241,3250,3129,-3395,-8489,7238,-814,9301,-1106,6236,-3427,-151,-6815,318,568,-3988,797,4460,555,-5538,4443,4841,4190,-2670,1485,-7726,-3083,-963,-6901,6065,-8465,7699,-6523,9489,6197,2691,4962,-1903,-6471,9337,-7164,-7828,-1847,-1303,-4188,8892,3677,5197,-3230,6969,3137,1486,-3789,-2417,-3935,4480,-3220,6370,-5121,-5459,-3781,7939,-6052,-4218,2237,-1552,7102,-4652,5671,-3801,9516,-5129,5364,9971,-3284,-9858,4532,-1178,-1454,6679,-7586,-6769,-3299,-8980,7337,-1902,-4908,-1805,-5065,-9300,-8416,-820,-2023,-1479,8870,-1586,-1996,9521,7263,467,4926,4725,-398,-187,-2858,9617,2479,-5519,-7702,6349,-5302,-9017,1483,-1633,-2295,-9649,-6537,-353,-2942,8928,-5507,6218,-3728,-6589,6400,-3293,-2214,-1841,-104,8567,1631,3288,1014,-3394,3194,-5511,-2881,-5316,-7790,3996,2847,582,-7890,1539,-2777,521,1259,-8089,-7561,-3539,-9583,-4997,-7602,9514,9420,-7343,4473,-4083,-1131,327,-8480,-9648,4593,8161,-5089,9639,8564,7884,-9736,6116,6446,6883,-9447,9495,-5674,6731,-6401,9276,3999,-8781,-7635,-4118,-704,7457,-2793,-6017,-8389,-2515,8000,-2152,9265,1861,-9433,-1702,-1434,-6256,-9916,5842,-4990,-827,8790,-3832,9399,5193,-1880,7889,9220,1558,-1752,-873,-5314,-9662,1097,1702,2404,-3826,-5612,-7219,-9504,-4775,-4117,5329,2609,613,4701,9003,-3318,6086,-853,7099,4544,8820,-1195,1758,-917,-2772,7866,6868,-1662,-1405,-2980,-111,-8416,-5447,-4909,220,5009,-597,6876,602,8256,-4608,253,-2494,-9447,-1567,-7022,-5159,-4733,-1830,-1891,5895,-33,-1076,4638,2870,-7710,-5951,-9409,-3182,-6131,-4463,-4355,2559,-3428,2151,5034,699,-544,-4378,-1671,-4461,9538,-7720,2569,-6205,4293,-6854,410,-1743,-7917,-2521,-2285,8537,-7465,7380,-6333,-5898,-9932,-3820,-553,2393,3594,-9793,-8285,4303,9621,1008,2926,-987,5612,-6938,-3554,9320,-9033,2890,4806,-4285,3315,3142,-26,-8125,3144,4100,9042,391,8926,5697,-8272,1175,-9498,2261,-2908,-4623,-7173,-3453,8194,-9263,-9104,7857,5616,1238,7301,-8876,5632,5923,6600,9407,7444,8381,3562,-6683,-3170,-7836,-7018,4339,-3117,7994,-8112,-2244,1655,-4063,-5401,6247,-3831,-938,-6573,-6738,270,-3033,-3069,2648,-1479,-8599,7698,-906,1373,-7839,8873,2706,-5050,750,-7676,4943,-3472,1109,-8247,9736,1504,2050,3128,8635,-2784,9420,4665,2151,1736,-6,-3803,5524,6554,2911,4966,9223,-62,369,-6288,-8614,243,9052,-3591,3181,-1966,3713,5228,-5203,-7237,-1166,-3391,2163,41,-2371,-4224,9585,-6568,7154,9610,-4110,-3212,-7123,-8699,2511,-9592,-8169,-5344,6531,-5236,-7567,-1599,1604,-3717,6546,4326,3428,-5222,281,871,-8918,1958,4757,-3434,-3937,6661,-6382,-946,8200,-758,4698,-2644,-7262,-7181,-7710,4127,-6941,-5514,7377,-8689,-8174,6914,8874,-7853,-5079,-9171,-8161,-2482,-6023,-5391,-574,1375,6617,-7386,-7578,8753,2280,-1770,3613,4589,-8887,-4490,8111,-5399,-1402,-2859,-4851,-881,-131,-3701,8435,3910,7701,1588,7661,-690,2153,5498,4502,9444,-7734,-1172,8143,-2034,-7204,7583,-3666,5465,-8327,5233,-3686,-7759,-5528,-6558,-2687,6227,7279,-3370,-5726,7963,-6072,3309,-2045,1195,4952,-7028,989,-2605,-602,2517,-6449,4580,8360,2656,-3848,3436,6131,-4459,5528,-1506,4546,8502,-6424,-3904,-5818,-2532,910,-5749,-3720,-3802,-820,4577,-7017,877,-7410,6331,3398,6689,9597,7446,-5944,7229,-2253,4659,5065,-2347,5913,7403,3841,-1888,6672,4785,-1945,-819,7663,-7099,-8297,8338,-6635,-6612,-8206,-8460,-2258,7736,3563,-691,-6622,6902,-9479,-1491,-9258,4428,-4443,-6481,-5198,8797,2202,9492,-6558,1015,2525,-6325,-8875,-3218,8424,1644,35,-1924,4959,6835,-7656,-1102,292,-9596,6871,-1643,-9097,324,-3324,1084,-5697,6662,3831,1258,2069,-7928,-7970,8773,-4448,9327,-2727,4685,1437,-6396,-5741,-9651,-2676,818,3375,-317,-9096,-5390,-8446,-6726,9300,-437,4520,2433,-2573,7513,-9659,8353,-1114,4889,2775,-3958,6527,-1099,2630,-1353,-1918,8129,8695,-3215,-5719,3839,-2016,3877,5922,461,-9450,9079,793,2949,9908,8529,1489,-2892,-4843,887,-9446,5151,6369,7542,-8933,-3607,6491,1478,-8946,-8293,-9781,1885,785,3023,-3510,-8749,5217,-2211,-1890,-8195,2185,-1984,-9574,-5568,4447,8964,-4053,3819,2471,-8271,4002,2759,8419,3619,7488,-7467,-1097,5045,-1506,2896,-8807,8904,7698,-7897,9370,-755,-4055,-3842,8639,4402,3091,1562,-315,-6469,-5097,7862,-7350,2605,-6732,-2848,-3788,-2223,-3311,-7691,2001,2814,445,-6441,-8079,2067,-7758,-6235,9744,-4950,-9541,-9105,-5893,-7939,-9003,8459,6410,-820,-1373,1577,9267,-8267,8758,4744,-7996,8607,7355,3938,-4923,5517,2911,5959,699,-8158,-2912,-7845,-3106,2027,3533,7240,-5227,-4300,-768,-3178,-3583,936,-3616,7271,-8111,-3567,-3555,-6284,-1774,-3145,4195,-6228,4404,-6822,-6422,9784,-6154,-6862,-248,6912,-2594,4988,-1654,7602,2008,9705,-5550,8860,3726,-6784,6436,3372,2820,169,-7751,5257,-9760,4003,6574,3859,2839,7152,2571,4788,-7217,-717,1776,-387,4002,-6523,7793,5957,3888,1195,-5541,6770,4881,-7844,5619,4573,4817,-1933,-3509,826,5944,-6080,5677,-1401,-5100,-6821,-2123,-7533,-6181,-6444,-8366,5321,-38,8482,-8144,-7081,9110,-8731,-6473,-6389,8245,-596,-3351,-1182,-236,830,6778,2026,-3928,6607,1362,-7321,-8569,-9312,-5669,-8732,-7177,-3021,-6728,-33,-181,-4214,1527,8412,-8817,-4932,-4712,2986,-1013,5656,-4077,-7571,3988,7698,-9645,-5582,-4905,3003,-3489,-3596,4676,3596,-525,-6158,-5756,-9059,-5869,-2134,-3746,8565,1401,1669,-3280,-3097,-1657,2424,-2094,-8912,-5665,1925,-3599,6496,4637,-2061,714,-8589,-5039,9206,302,-7835,5261,3780,-3634,-8068,2445,9949,-6779,209,5010,5187,-9803,4553,5681,9642,524,6608,-6150,-2167,8537,6324,124,-9612,-5141,5369,-1528,-5247,-5261,8881,2297,-6247,7107,-4944,-9162,5872,-9499,-3833,7044,-8523,-9371,-181,5727,-4902,-7436,-6454,-4675,-7264,-8786,4050,7498,8400,4120,8780,89,2188,-6370,1684,-5847,-9444,2306,4122,1142,-6229,285,8996,-2979,5915,-8459,-6820,-1095,3791,-6451,-5763,-3535,2661,4615,-6386,9245,-325,-5461,-4778,-634,-4484,7512,12,-7082,6455,2655,-1121,7328,3577,2164,6052,4608,-8891,9539,2483,-2910,-9379,-2552,-7552,275,-2659,768,3972,-2688,1973,4230,3418,7611,7396,-777,-5843,6633,-6565,6955,-2555,3233,4658,183,-1146,-9792,-4107,-8539,1160,4123,1782,3304,4649,-286,5862,-4138,3269,-8661,-8884,6515,-5887,-5349,-5519,7074,4252,7312,-2334,-2281,7371,-811,-7292,3887,4193,-9329,-2953,1314,9153,7640,2632,1358,7870,6405,-8414,-7864,-9663,1362,-5879,-7069,9345,559,6771,9311,8216,-7364,-4471,-7769,1928,-4923,4370,7852,714,-1080,5752,6947,-1345,1089,6184,-2582,2445,-4244,7543,9544,5478,3743,7538,-3117,9251,-4814,-972,2883,2143,5121,-2046,-8723,6938,-1541,9886,-4870,-7582,-450,-8923,875,-4560,-6403,-1259,8300,-3547,5602,1713,-7464,8260,4555,9178,5345,-7361,7536,2908,-5888,7383,6716,-8165,-6190,1153,-7706,-9815,-2503,8350,-3016,-9206,7956,7066,7627,-675,-2545,9435,-1831,8344,7951,8318,3707,3736,1980,-2463,5290,-115,8013,4253,1990,3705,4832,-448,8353,3652,9172,65,-3883,-4027,-7586,-5429,-3389,-236,-3782,1632,167,-4050,-1780,-8755,6859,-8661,529,-1108,-3720,-6868,-4905,-5391,-6203,-4511,-3889,-5268,8185,-5135,-1514,-6863,-2182,-5410,-9570,-8136,-3732,-9660,-1283,9436,2996,-8244,-9061,8449,4167,-7996,8036,-8040,-4012,9021,5788,-8033,5505,3531,8685,-4558,-690,2062,8543,-3682,-3865,-968,-7459,8065,-5546,1984,-5128,-5664,8701,6562,-8222,-3258,-6826,942,6921,-8719,9671,-6133,-7384,1032,9749,4995,-1917,-3162,4110,543,8251,-3233,7543,8513,-114,1748,-4188,9958,4862,2450,4760,4925,5321,-178,-9174,-740,-5577,-9745,-2225,-4127,-8244,-2515,4704,6196,-388,8441,5417,6071,9674,-8228,-8975,-6534,-6138,-30,2186,-8758,-3496,-4951,2118,-8188,5961,5103,-6899,163,-2279,-1846,-2544,8296,6640,-764,6782,2429,584,7950,-1572,-544,375,-3862,-1801,6605,-6060,-4592,-5133,-4246,-7876,1628,-9422,6013,-7453,-3014,7732,-2250,-5698,-7071,6230,8324,-4246,2049,-1100,-5474,6912,8307,449,6631,7573,-8565,-6063,-113,-8520,8312,371,-7231,6911,-6798,-8210,9119,3896,5086,9530,-659,233,-7729,-9246,-9680,-8645,-1385,-3024,-5064,-2816,6604,-8367,-2035,2218,3706,1513,9344,3188,-2305,-5681,-3465,9675,2561,-7941,7367,-5371,-7508,-8058,1996,2198,-8055,-5742,-4926,-1799,-9053,-7449,6216,-8908,9276,3449,6767,2291,1851,58,-4567,-2896,-9478,781,-5736,-946,5423,-1345,5530,-4769,7005,-6375,5700,-4975,5382,-2315,5041,9382,-6303,5739,-8884,-4087,-8988,-9845,-8089,-5710,-3164,-5872,8612,8869,7769,-5818,-1107,-3637,-9763,7387,-1392,5843,4356,-4093,4120,9195,-7557,-4119,1637,2735,2306,-379,-3187,291,4927,2542,-9394,-699,3163,257,-4024,5678,7598,-7364,-1244,-6360,-8546,881,7833,-3951,-653,951,8790,9660,1479,8993,-9635,-9378,-7009,6280,-9183,5440,-4386,901,-8504,8551,-2449,-1978,-7668,3893,-1634,-9291,-3155,6457,8731,-1450,4453,300,-7176,-3749,7309,-4522,9144,-6181,8945,634,926,7227,2574,-8099,-810,-4995,-5562,8738,-3745,3434,-2232,-5302,-4574,-7012,7031,4010,7555,1336,8584,-2680,-8081,5709,-6658,-1223,6843,-5196,2499,-97,5843,-5368,8476,9208,8573,7998,2336,7244,9710,-9680,-7688,3712,-2342,-9679,7397,5794,-8874,5870,-2632,6806,9292,6530,9634,9651,-9010,3493,-2935,-3365,3399,7702,4640,224,-3825,6031,-7799,-5684,9419,-2867,-3170,7448,-7825,2109,909,-6678,-8381,6879,6855,-7632,8420,761,-4579,4662,-7214,9047,-9918,581,2336,8068,88,6447,-7576,-6676,-5828,8250,3494,386,-1012,1365,6876,9270,-3491,2646,-2043,3520,-7118,6669,-4426,-9388,-3519,1404,3426,-9976,-146,-4279,-5252,-2790,-7919,4139,-9696,3828,-3783,7157,4970,-4569,5611,-9504,-6213,-719,753,4287,-6805,4835,-4999,1801,148,-4963,-5037,-5215,-1733,8517,-5609,5462,6047,4157,350,7281,1672,-777,-3983,6544,8552,224,5646,-4367,-9901,-4867,7922,445,-9835,8735,4559,-1796,729,-7494,3682,2139,-6699,5721,-8708,-3966,5672,2669,-6295,4352,-6355,-9411,1685,1691,-7971,7437,2042,3708,3263,-1477,8632,-3009,-6145,669,-4669,6126,1365,8304,-2319,5482,-7162,7211,655,5080,-8478,5837,6353,-3861,2958,3293,-1465,9696,-420,-7794,8417,-409,1424,9432,-9980,-7701,-9871,543,-3731,-1473,-2927,9990,-760,8624,-3774,3410,5297,-9825,8459,-8764,-9719,-2106,-9161,6018,-7782,-3096,5681,652,-7467,-749,5028,9894,5194,-1741,-6481,935,-1547,-5636,2872,-2659,-3973,8991,21,1446,-1775,9583,-1379,-191,7377,-4092,-8749,-6372,-3443,-8074,-7164,-7131,-6764,-2389,8981,-3619,-5907,4434,-1984,9253,3439,1512,1519,4398,-8989,-5379,8603,-879,2687,5780,-3747,-8530,-3988,-8274,-9303,173,2708,6842,1879,-21,7510,-3397,-7546,4586,502,-8944,9563,-4017,9428,-2233,-3271,-7779,-8444,-5777,-9419,-2977,-3840,-164,7994,7552,7297,1440,-294,-3287,2273,2632,7551,4789,-9737,6261,3200,5684,-37,-5757,5132,3652,-692,-8484,-5084,8382,839,9005,2035,7130,-8040,-5931,6283,-2307,118,-6021,9401,-705,-1354,3497,-6661,-9822,-9789,8005,-9323,-1632,-8002,-4833,5622,9125,2011,8356,-894,2432,-7746,-2672,9344,399,-7478,9789,6198,-6289,-6385,7985,4545,9619,147,3176,5626,-5621,6804,9198,9269,-1397,-5867,-9541,7818,-5631,7509,-2929,-1362,-9918,-8498,1873,1420,9097,110,-2186,-7529,-1111,1201,1959,460,-3306,-1505,-4389,9708,796,-4622,2606,-2331,-335,4647,5844,-2393,-6579,-4564,-7714,-2370,8450,-1095,-4838,-2624,8462,-3443,3146,-37,-3339,3383,-8687,-6189,1854,-6556,4830,-9262,6557,4274,8164,-4577,-3627,7602,-4694,2472,8849,-4117,-1876,1517,9579,-9778,2169,7444,-2548,-7792,-3513,4801,7823,7777,9684,-5896,-6715,3645,-3489,-4750,-9028,-8481,2613,1679,5072,-7076,708,5226,6920,9935,4429,-7113,6799,-7634,7818,7967,-1150,965,-2027,2228,2940,2922,-2755,1442,9550,-9252,7853,-5073,-1729,8385,-8408,7208,-7588,3476,5188,-2304,3015,3743,-5413,8446,1302,7883,-1957,-8844,5938,-3089,-8235,-276,5701,5233,-6002,7487,1329,9028,2032,8771,-550,8026,-1697,-9027,1540,-5748,-719,-3206,-3361,-8684,-1936,8941,-2725,1166,-5938,-3777,9355,-5626,9184,3066,-7559,-7569,8104,8423,6461,-9500,-295,4927,7156,-7448,-6653,5666,-5474,1411,-3477,4417,-8138,-5092,5816,-7632,8706,-6540,9982,8663,9833,-625,-7146,5921,8299,4665,5435,-6899,2637,-4629,-5396,-6325,2307,-8831,-4166,-5172,3452,-8864,5694,8093,7801,7826,-7883,-8296,-8802,-1299,-4662,6844,-6665,-4211,-3066,-1613,2443,-337,9637,-2149,-8425,267,-2389,7083,434,-3223,7263,7955,8950,7951,-9630,6122,9441,9136,-1332,8687,889,-2323,5139,2835,8746,8106,-9666,-9024,-7596,1561,-3980,-993,3115,-4156,-2863,-2637,-5260,8163,4248,-3029,3343,-4137,-9155,-9472,-7129,8869,4644,5364,-5672,-8636,-2910,-8090,-6955,380,7203,8281,-4805,-1754,816,-7590,3630,4270,9682,50,-748,-4185,7231,-1805,2311,-2096,-8242,-3428,4077,3029,6230,-7772,-753,4019,-504,-7927,-3197,7086,955,-239,-969,-7525,-70,-5008,927,-4622,-5589,-5777,9713,6209,8329,2751,2177,8073,-6143,-1817,2196,8456,-1862,-5222,-3847,-9905,3582,3764,-9741,966,3048,-557,-5005,-2659,-8287,-7112,-8154,-8624,8395,-1851,-5987,-8869,2387,7394,9875,-943,-3812,6362,-3258,2526,8214,-7305,-186,8471,-3680,7984,8315,6565,7745,-2759,6019,-1857,4843,4932,-7317,-9794,354,-9148,-7780,-278,-4474,7305,9096,9764,2774,9394,3706,-3500,-2821,2132,6085,-5194,-6831,-5789,5711,-6032,8000,9593,-6316,4349,-1798,111,-6136,-8897,4124,-7288,-1234,-7642,4379,5664,9382,-1196,9465,690,-9484,-9693,394,1194,-9252,-4681,-6308,-9657,-3287,-6648,8144,-8903,-7982,5284,-412,-3077,-4925,-1592,4925,3071,7869,-1386,-9647,-4858,1142,889,-4304,-8107,-2578,-6558,1082,3820,881,-8752,5929,-8379,-4654,-5775,1583,9320,-3019,7969,2608,-3067,5754,-1979,-8307,9915,7562,8459,-92,1465,-3227,7850,-2843,-387,9055,-2366,2438,-1873,2636,7753,3623,-8737,-6863,9479,4122,1901,6572,2918,2178,-1710,614,-568,8993,-5498,-2431,660,-4040,1850,-8208,7103,579,7921,-1226,-1319,9996,-1595,-662,-6589,5858,-3834,3978,-8694,7882,-1477,-9556,7330,9550,-6682,8483,5300,-4480,7934,8324,-9992,-2407,4575,9643,-8816,2220,-905,-1434,-3697,-4521,-4151,2227,9325,-1932,7120,-7139,-1679,1454,-2432,5005,835,1344,-875,-4247,-5351,2987,-9391,6385,-5740,-6541,4142,-3697,6362,7142,-7738,718,-3672,-6143,916,-8203,7741,2171,2298,21,3977,-2022,3120,6672,-2660,-2660,3480,4376,-4482,-9499,-1908,-9955,-3921,-2706,-1443,2991,8368,7049,-9451,-1854,5156,2080,97,-4763,-7091,4199,-5366,3492,-3607,602,-1851,7621,-3862,76,-5344,398,-9505,5378,-3377,-7423,7768,5778,-3410,-5835,8590,-2203,9027,5863,7929,-2961,-3551,7152,-3066,-7419,9466,-7257,-9308,-1161,6422,-7690,1061,-9787,4770,-3083,-2637,-1868,874,6302,-3669,-1647,8698,-1725,8924,-8906,-1258,7211,-7630,4847,7414,-4303,-9831,9915,2298,-9530,-7987,1779,-341,-6952,-1498,-818,-6914,9414,-8466,3528,-860,1592,-9210,-5685,5771,8159,-9163,9695,5264,7272,6782,-1550,-5941,-7859,4255,457,9034,-9718,180,8105,7931,-7935,-9873,1802,-5843,-1350,8589,-9277,4259,1751,9674,-2597,-3413,-6963,-9277,5301,4341,5465,4776,-6844,-4198,-9219,-4337,2431,8706,-1886,-6479,-1407,4785,-8042,7457,-9263,-1823,-4555,-5665,-5319,-4506,-4446,-3150,-2278,-4562,-9042,8711,5124,6468,-5654,3066,-2263,6029,6240,9733,-8466,3852,5345,1936,-6803,-2859,7077,4628,-9229,5973,9836,2909,-8204,-2672,-2127,1598,3009,-6778,1530,2421,314,-8672,-4651,-6267,6623,7878,-7839,3377,-9559,-4843,-7105,-1905,6001,-5791,-6780,8012,5974,5932,-4222,3351,3631,-6751,-8161,-9921,3985,1020,-1713,-8897,6419,-881,-7573,3162,-5189,7806,7618,-8103,-1264,-858,-3793,-5202,-2880,-5051,5440,-9199,-4113,-8418,-7947,-5676,-5327,7799,4114,6617,2443,2092,8213,-8685,-7191,-5557,-3821,-420,-7553,-5173,-5864,5522,-3427,6262,9947,-8628,9228,4576,-3118,-2864,-874,-817,8975,-8815,9974,-9643,-5382,4577,5580,6812,5709,-3722,-4570,-2231,4176,2746,-7955,-749,1628,9863,3818,-5410,9524,-9053,-4899,-8025,3272,6708,4088,-8930,-5462,-4670,3321,-9113,-351,7026,-2609,8568,5764,2468,7308,-2313,4553,5781,-6300,4051,-5537,-2181,-1321,-2921,6274,-9022,428,9265,-1275,14,9179,-3366,-6073,-4784,2,-5171,2772,-8952,-7106,8672,-6720,-5956,-5585,-1062,-220,-2023,-4143,-1727,369,-2472,-7990,-8610,3165,-6873,-9791,-3224,-8865,2265,-6496,-6057,-7945,2818,244,-9110,2596,-5250,-4099,-1755,5016,3189,6308,-9660,5246,-4122,5833,-3273,750,-4168,-5804,-5520,4802,8850,-722,1703,1789,-6258,-597,-6150,-3776,-9974,-2094,-8030,-7258,-93,8024,9216,1683,-4997,-3413,-3859,-1323,-2033,7843,9006,7352,-9283,137,-1720,-94,-931,-7658,2155,-7839,-6317,-9130,-9789,-6360,-3527,7064,-8210,-5175,917,-8643,170,1288,4287,-1858,9019,-554,7184,1719,-9791,-7866,1993,-7263,-9391,-382,-2733,7881,-1183,-8497,1554,894,921,-6514,3899,-1868,-1675,7484,-8327,-2556,-1011,-6132,6372,9057,1466,-1690,3003,1941,6453,-5662,-7146,-5239,297,-7105,9380,-6307,5246,5130,7754,7488,-3682,770,1447,382,-1798,7555,7835,-1429,909,1983,-5370,-8433,-8126,-8698,2228,63,5350,-327,9842,-7894,-2942,8226,-4112,7902,-6658,4990,2304,7137,-5251,-178,9371,-7685,-8451,2912,-5260,-8210,1644,8577,-4164,-7944,176,-3930,8189,-8127,-4328,-2167,5700,-7273,4993,5074,7648,3325,5328,7442,413,9124,3847,9819,1304,7364,5927,1013,-8259,1120,-648,3579,-6860,7107,-1940,-101,1348,8682,5695,-1753,-2240,-2188,-7762,-2172,-1566,4072,3099,-5051,9262,184,855,6714,-3367,9273,6378,-1565,5027,-9087,-9476,-479,6817,-5998,-3098,9936,-3322,-5039,4605,5865,-295,-6112,-6698,-8428,-2825,2418,8530,-9017,-7117,7352,-6779,3062,-6648,5088,6133,-4466,-1131,-9727,5204,2446,3277,-5546,6356,9536,-411,5437,-2374,-4306,7708,-8456,1535,-4736,-9429,5994,56,6907,4613,4911,-3230,-2879,8424,8257,7303,-9768,1389,6584,3327,2119,-3820,-4362,2399,7729,-1518,9980,-7496,-5442,4313,-4455,6337,9862,2605,-8817,-9216,223,-9570,8213,-9261,8111,9355,6658,-6183,-871,9674,310,9832,9310,-1288,9402,6518,9352,-2855,-5900,5700,-9205,9959,-1920,6277,-4887,-1484,-5041,124,6289,3907,-5089,-3005,8561,-6480,5995,1175,1022,2662,-2359,1825,-7665,1809,4122,-2164,-1199,8037,-4021,-2752,-6765,6986,9468,-6600,4587,-524,-7178,9333,8510,8796,8765,1398,-8689,396,907,-9037,-2690,-5083,5802,1370,-6750,-7790,-338,-3632,2868,-4243,1835,6302,-9372,-2269,6363,727,-1261,-5974,-2939,-2488,7611,-2545,-1735,-8748,-9630,4557,241,3155,1890,1063,-5834,7924,-9086,-3282,-7159,7685,7897,-8097,990,4468,3042,-6239,-7568,7040,5167,-4659,-1028,-4636,-5353,-981,2625,-373,3128,9833,-9000,2074,-3871,6963,-7022,-6286,-6611,-4531,6764,-1363,9855,9928,-3812,-9762,2931,-164,-4187,7473,-2517,-4875,-7019,2689,-5781,-4068,1048,-2607,9741,396,2942,5633,8152,3771,-9502,-8253,-8388,-9298,-3163,-9548,3666,1367,6851,2383,-792,-4549,-4977,-9494,3928,-4108,-9446,-7072,5016,-6673,-2530,-2164,4478,-4595,4734,2733,1789,-1631,1628,-6309,-9218,3531,-5122,-3827,-5,724,-8907,-1701,-5254,5285,-5198,8245,-6833,8136,-6041,-1513,-718,4903,-2151,4022,8514,-685,-9066,-3204,-4107,3312,-9418,-6269,-2546,6599,5457,-3979,-1213,-2763,3402,-7457,2544,8527,1206,-7264,4525,-2506,-2308,-4083,-8873,-9236,-5440,6445,-9653,8107,-3169,6566,-8622,-7366,4912,-2928,-1567,1152,-2154,-4911,-6214,955,-6361,4911,9970,3978,4595,1325,-7198,-8471,-1278,-1945,-3570,-1747,4591,732,-5316,-6633,5526,-1215,-9177,-3521,877,-8381,9313,-8627,-6962,3195,5467,-2306,-3465,-7162,9635,1832,-7958,-9621,-1076,-3796,2227,-828,9370,6012,9966,4827,8833,-2143,2776,-5903,-1936,-9879,-6937,-7740,3476,-2387,8405,-7758,-3608,-1166,5237,8602,-2147,-1139,5913,-5355,1404,4586,-2768,-8332,592,2528,-2600,4251,-9216,794,-6748,-2768,6388,-5962,-8341,1421,4479,-1268,-6810,-3783,8592,-2855,421,-1385,6880,3215,-6483,2030,-6127,2689,9863,8705,-3925,-3292,-5480,388,-4910,-8514,-8431,-8766,4551,-3831,7300,-108,5509,-4440,-8846,-857,8362,-3393,-6880,-1504,7785,2007,-5230,609,2676,-5434,3468,-1403,3754,7305,-6390,-5403,-5924,5108,-5868,7518,8275,3331,4691,6151,-6138,3480,8520,6833,3728,7887,2346,5067,-266,-3463,9272,-2861,-9515,7017,-5223,-7285,-3345,9071,3650,-3920,-480,8565,2657,-6492,6899,-3361,9443,6447,-8630,7148,-9965,3787,5845,1441,1810,-2622,6135,-9696,-3729,2140,-428,3910,6369,-9304,5002,-1776,-4413,3439,-3220,8956,6243,-9940,8501,-8735,4116,130,-5265,-4049,1014,6909,-2743,-1442,-6189,529,3301,-6754,1324,-1310,-1173,8412,-6608,214,2078,371,-5242,8102,-1789,4810,9893,-371,8069,9536,-8604,-8975,8194,-2340,-2952,4519,-7464,-4882,-2342,-3520,-5778,-9375,-4015,6708,8654,-4621,4438,-5426,7973,6187,6041,9367,-8921,-1344,-6788,-4509,-3642,4568,-1850,2722,2620,-6410,3814,-5615,-1316,-7730,2594,-1693,-9708,240,-4548,3994,-6479,-6750,7352,-8893,-9928,7791,-184,572,8304,-2516,-6744,-3417,7698,-186,-4508,-7597,-7425,-8863,8149,660,9484,-1559,4194,-4228,-9936,-7352,-1557,-266,-9510,942,8965,-2028,5649,2280,3118,3311,-6695,-3489,-9416,-4927,-3416,4498,573,1224,-7458,2741,5473,-1936,2674,1571,7331,-5508,3812,3794,4451,-4539,9799,437,-9536,3491,-7156,-3769,6266,-6703,-7756,-12,-5350,-3246,1229,2257,6015,-9223,9361,-8323,-3236,7142,4558,3860,4556,6464,-4583,1687,7789,-4756,-6001,-2875,6934,-1913,3778,5177,8794,-3674,-7498,7994,8586,-7627,-5736,-8488,-4430,6225,2378,-1292,6658,-465,-1811,4345,9205,-5781,3474,5020,963,8556,1018,2505,6304,9062,-5873,146,6891,-1233,-392,6778,4776,-6360,-4280,-9834,-6945,375,2802,5835,2976,-8278,-2897,216,6809,-6785,-8382,-8984,-9564,-548,-4041,3734,2807,7619,7980,-4362,5451,-7028,-7246,57,466,8793,6215,-3457,4663,1258,-4118,3296,7785,8669,8422,4297,5450,-2064,-419,-5968,2322,-4002,-630,8180,-9145,-5567,4602,-9138,9758,-3220,6939,1642,9970,-1490,-1414,-5576,8632,-4976,-4197,-3147,-9612,-1963,-1776,-4187,-8688,7115,2849,9830,-8760,3581,-3974,4408,-7020,1527,6777,6500,7174,9258,1694,8812,9132,6299,5400,1763,-570,-6741,-6185,-8394,747,9364,3391,-2270,-9140,4927,-5135,-3245,-3023,-6141,-7187,2964,-5373,-5555,6901,-661,6940,8672,8086,1427,7000,8874,5845,4124,6649,-4598,-4499,-6536,2422,70,470,8049,3469,9510,5818,-2812,-3546,-7436,1029,-176,3924,-7848,-5310,8313,-1533,-9092,8867,-659,3530,-8422,-9601,1912,-1335,905,-1178,8558,-5923,-7727,-9690,-7462,-7706,-7644,5729,5920,-9299,7954,4111,-1081,990,701,-6318,-5592,3740,-6956,7174,-3574,-2064,3261,8862,-442,-7262,-1065,-2612,-3156,-8938,-1235,3437,3184,-9384,-5210,-6304,5188,1343,-3652,-7383,8442,8149,-5469,-7386,5379,5947,3642,8138,5381,-2875,-5942,3205,-3612,3620,3205,-6699,3676,911,-2272,-300,-775,-2237,-5381,4787,9934,-8410,7465,4081,-3683,-8157,8743,1013,-1349,6629,1077,2637,-2518,-7316,5425,1979,5354,2145,-7633,-4803,8768,-9360,8183,-2102,-4507,-4912,-3814,1349,5937,1566,-5830,3822,-540,209,-9483,5713,-3868,5967,8564,536,-5037,-4534,7258,-7174,5791,9378,-3439,3148,8108,1516,2068,3575,2250,7994,1419,-5055,9223,-1765,4532,-4067,7657,2634,7481,-9313,6851,-521,-4426,6699,3152,5416,9352,-3564,7813,9102,4824,-5985,8689,2470,-5578,5129,-4535,-2863,-31,-9525,-8241,-8007,327,4034,3492,4516,8597,4269,-2601,9415,-5868,421,-5812,8437,-6516,-221,-5858,8261,883,-504,-6352,6048,6375,-842,6788,7911,3929,1798,-391,-8825,1351,8117,-7851,6937,-4317,-8708,1555,-2119,-4365,-161,2143,2464,7013,6102,-9420,-7385,5135,-7069,-2572,6042,-3984,7143,-495,4057,4090,-2697,-5006,9933,3106,-993,-1712,2903,-7775,4926,-148,-3089,6333,-5014,6180,9123,1557,-6681,5429,-1858,6609,8985,-9549,1778,2773,2282,2184,7271,-2346,-9192,-9240,5455,9339,462,-6127,736,6593,9270,1702,386,4046,9581,9753,4555,7293,-4413,4850,5825,2471,9200,-1583,-4354,8210,8357,9970,2693,560,1570,9043,-4066,-648,2811,-9054,5494,3450,4484,6612,9421,6328,-9014,-2976,-2383,5123,-9938,-5879,-7338,-6710,-7227,8528,4598,-7555,-6553,6682,9132,871,-8927,-6656,-5586,-9257,165,5768,6494,3538,8447,-5044,-4999,8608,-8712,-1059,-7975,-6562,-6486,2717,821,8916,-831,-2074,6363,7137,-9586,-3417,-2111,-2828,8172,2098,176,-7062,-6176,-6260,5049,-1140,-2653,3618,261,-1296,-3852,4877,7423,3706,-7978,8819,4508,9255,-5791,5103,7274,-1694,1672,3797,-9814,-4713,9182,-8457,-7474,3941,5502,-1073,-3625,2818,-888,3860,5146,2973,5692,1013,9351,-9321,-3936,-2491,-2082,-4841,-3821,-598,9799,-8839,-1705,-9592,2603,2529,4121,1175,-8700,-3784,6574,7071,-5466,-3875,-2430,-8502,1964,-8102,5612,7441,7753,-9141,9627,-1151,-6121,-6017,5693,-1695,-7998,-7782,5323,-6616,3028,3719,1176,5680,5944,-6371,-3874,6274,7062,-4014,-8310,-1544,-8497,823,-1091,3052,-7990,6477,2667,1152,-2581,3822,-2316,3570,9653,-1647,-9419,9972,7923,8499,9113,-3001,1596,7092,-8151,-9452,1397,-4619,3162,3930,5164,9225,-9908,-9341,-7656,5189,8168,-5493,552,7311,-6401,-9444,1920,4741,388,7822,-8593,8749,-7130,-3636,-1690,-8118,6078,-9979,9347,7449,-705,-2162,5263,-8182,-5209,-3928,-8480,3460,7990,-9999,-2007,-3986,4011,3469,-2535,-8070,5364,-404,-9364,2832,6957,9335,-595,4741,-9089,-1017,7601,-5100,2379,-2533,-5141,2448,-8772,6408,-6891,9559,9620,814,-6697,7964,7892,9584,5559,-1973,-6860,8000,4874,-2796,-9444,6963,6227,5662,4744,-6485,4674,-3600,2003,4642,-4929,-6297,-1924,5136,8632,4358,-6644,1377,-3129,-9668,-9941,-2836,5991,7538,-4299,4889,-7236,-5068,-6076,9492,-3483,-6229,-6261,-8926,-6411,-8256,9564,4542,7420,6874,4133,5578,4324,2582,-833,-8656,7120,7734,9226,8539,2513,5511,7898,-7057,-4811,9492,8225,610,-7196,-2009,8493,8695,-6007,-4394,-8366,-2194,-1007,-3698,8622,8501,3645,9610,1639,2006,-652,4479,7073,-6508,-6154,-7982,-4225,-5203,-9374,-7864,-9285,-1388,-8779,9989,1585,-5415,9506,-6650,-9924,-8977,4909,-4414,-8815,-6884,822,-272,7770,-8769,9666,1900,-4682,-5867,347,2402,9531,-3586,-3747,-6887,-9642,5648,-5951,9085,-2062,5479,-9931,7645,7170,1207,9948,-1746,-148,5481,9149,7583,-7247,-2881,6112,-3798,-9365,2545,-6621,-7524,1979,8029,848,4743,9353,-1012,3634,9939,5611,-3803,6197,-2770,2424,3726,1253,4702,-7894,847,-3210,5348,-7,-6836,1284,-2588,-6951,4922,-9452,7500,-6009,-6353,4822,-7280,8783,-6725,6806,-2367,-8830,-8354,-9629,-9126,-3431,8364,-3747,9882,-3701,2243,-5979,2880,-6598,-491,9178,-2337,5979,-476,-5045,3587,-127,-9192,-4454,-1460,-1048,-2508,6720,-568,-2997,7108,-2031,8846,3624,-5510,8275,7555,9314,5649,-7929,-7079,9209,-564,-3829,-5957,147,6917,-5119,8970,-6826,667,-3752,-4804,4758,-1729,-8095,-8242,4032,1802,-2363,9161,7842,9960,-7334,-3480,-3390,-794,-9120,-4021,5155,-6332,-8683,-2317,-8241,-9571,-9322,8105,-8873,8068,2006,162,6666,4918,-916,9439,2120,5189,7675,847,4556,-2165,3084,112,6409,433,-2087,-6902,7690,1564,-7955,3805,5720,1662,-2536,7040,4222,-5523,-5745,5042,2067,4511,3239,-7235,-784,-6344,86,3747,5586,-5672,-6233,-3866,-1562,-8792,9361,9342,6264,7576,-1792,8918,8542,8362,-2911,-8166,-4044,9487,-7409,-4181,989,5357,-9285,2547,-6816,-5996,-8759,-348,6007,8076,1548,-9430,-8845,6657,-8915,3493,9753,-8273,-787,-3885,-1326,-1485,4656,-3657,4037,-5254,6961,-9693,6933,-4538,2451,956,1797,-4913,-4981,-5332,3354,1954,2333,-736,2457,413,3723,-1245,-8727,-4020,2837,1783,6213,5360,-2078,-1220,3901,-72,-1869,9033,-802,-4492,8830,700,-8839,3280,-7819,6644,9584,-4702,-1396,-4577,3662,-5553,-4898,8183,-1396,-7351,-5205,5892,736,4287,2936,-9049,-9162,270,9318,6111,6035,3007,-5436,-4788,1037,-8024,7251,-3646,3248,378,-8563,-3638,-9311,-2355,2037,-9826,-4189,-1775,-3031,8850,7447,-1758,9731,-2067,9648,7648,-6607,-7531,8772,-8197,-6034,5627,2819,4046,3578,9864,-8101,-2188,-3509,8819,8028,-1783,-1923,-839,7586,376,-3136,8711,3815,-3847,-9249,1596,7644,5470,9752,4434,4939,-7481,-7019,944,-940,8003,6497,9196,7906,8076,-6816,-6927,3664,5194,-1910,-9717,6160,-6017,-7554,1717,-7005,-9641,-9080,-5166,5668,4129,-595,-9720,7828,5566,-2395,8933,5492,2733,6765,6082,7084,-8742,4181,-6377,-714,5838,7521,-6049,-4601,476,6181,8219,-9440,-4520,-2090,2772,-6165,-2689,-9385,1778,6803,-9180,4279,-6328,2820,8961,-4797,-1207,6541,2902,4136,2656,4433,3562,7808,-9242,-4203,-8878,8448,6615,-1849,-9892,-4248,-9926,-2999,-1231,900,5743,-9349,-9379,-8053,-1311,6847,-5413,6208,-3676,1644,7699,6069,326,7447,-5125,-9795,4861,-5571,1512,7687,8697,8177,4921,1679,6203,6335,-2069,2392,4268,9830,4448,4070,2784,1473,-5522,5587,-3180,-3622,-1934,-344,-4437,-4437,243,-559,2928,-4461,7554,-9078,-1748,-2816,-9710,3373,-6892,2870,3897,-4215,2653,-7962,-4912,-7537,-6509,9088,5635,-2004,3320,-7884,9315,5820,251,-5881,-4631,4833,-7016,-5638,6587,8743,-4663,3025,-1361,-927,-3119,-2497,-8240,-4,-1778,-2318,6531,5986,-681,4953,3185,4092,-5670,-3802,-8415,6597,481,-8780,-4793,-2758,6852,-4326,3617,455,-7447,8313,2037,9673,-4607,757,4019,-2661,-4261,-1259,548,2084,-7140,-3671,-1109,-3815,2188,-4498,9802,3502,386,-3438,8674,-4447,-9105,-7152,-850,9632,7657,2098,-7777,-341,-2664,-4907,6082,8434,-3047,4391,-210,497,-6807,-5117,-2629,-7410,5177,-5534,-8599,-356,5490,7697,-1015,9815,7503,-8720,-7901,-2679,-7738,-7849,-8,-9926,-3166,-5994,8218,-66,-9104,1157,-40,2475,-2531,-1874,3632,-3581,-4000,-3818,4412,8904,7416,7432,1086,-3889,-6017,-8825,-5270,-972,3066,-7202,2169,2236,-6694,-6578,3805,3304,5033,3721,8304,-4627,-234,3027,6090,-8252,911,-2576,-5700,-5705,-4450,7693,-3113,9367,904,-9822,43,575,-1425,7178,-3049,6523,7320,2873,7123,-1257,-6912,3257,-3978,8889,-1855,9094,4040,1034,9087,7779,3991,2963,7174,-7526,-6139,7154,3334,8529,6605,1283,554,5121,-9939,915,-9490,2463,-1951,9518,-9181,8235,3106,8194,7924,642,4029,7134,-2452,3974,7624,-7650,-8564,-6911,1400,-8191,3057,-640,-1283,9215,-4609,-7141,-9406,-8530,-4753,-8949,-5144,-7497,2500,8449,418,-6224,-2979,4961,3669,7946,-8539,-1216,-6725,-5989,5232,-5893,-5013,-1088,-6428,506,-803,-417,7267,-7471,-9697,-2754,-4078,4565,6046,-2073,744,7388,-7401,1055,-3659,-9067,6263,-3927,-4731,-2856,1795,-791,7965,-4942,7713,6399,-7514,8407,-4551,2526,-1169,3159,-331,2818,4805,-407,5951,8305,2488,7393,4580,1596,3195,-8499,3765,-2591,8200,-256,5167,-9302,5033,-5355,4572,-8506,-855,-4925,2961,3724,-4465,-9787,-7009,2348,-3183,3122,-7935,-9113,9258,-5289,7090,2943,3385,-1702,6892,5247,-3066,939,3091,-7029,5109,-8957,5101,4620,-2449,8586,1108,-6278,582,9778,7471,2945,9308,-5066,-3870,-9206,-9206,-9436,1308,3905,9484,-6729,5262,9687,-3204,-2301,7271,5521,4314,-6973,-6591,1352,9128,-2836,4030,5157,-404,-8434,-8269,3309,4224,7850,49,-8908,-9149,3834,-1708,-673,6576,3928,-3249,4693,-4743,9157,1361,-7680,-3758,2155,2606,521,-6447,-1660,7366,4702,2884,4575,-2126,3520,-8958,370,5313,-8038,5121,-6256,-7956,4506,6773,-6727,-2038,-4528,577,-408,7804,-3560,-2353,-1933,-941,9747,449,4675,1542,9313,9965,-6779,-962,7649,-4932,-5596,3864,-7392,-9868,2331,3605,3638,8790,5043,-3351,-7786,790,6375,2199,-4376,-6374,5969,-1275,9964,-5490,-788,-9217,9425,-7442,-206,-693,-6318,-2054,-3426,-7601,-118,5943,-5367,8553,6883,-1574,7588,4287,-5209,-128,2837,-3015,-3146,-1794,-5674,2253,-4854,-5483,-3028,7347,-4947,-6608,3816,8448,-7003,-8065,699,2335,2027,6530,6946,-2010,-8058,-4829,-3370,-7089,8041,7040,9707,1642,5305,3410,-8764,-6666,-2482,2306,-8328,579,98,808,1411,-8825,7360,3888,7959,831,137,-6600,4988,-3643,9369,5861,-5234,-9199,6373,-8026,8314,218,-25,5114,-1847,-1806,7143,1440,-3764,-3158,1395,-9347,-7941,-654,-1181,-2154,665,-5177,-4831,-5450,-8947,2622,1241,-32,7748,9911,-7813,-9390,-6730,8287,9339,9965,7308,7898,-5074,3683,-6972,4910,6721,-9994,-7564,2740,-5780,-5802,1323,5347,1642,-8874,6694,-7535,-3914,1623,5019,-6728,9317,-484,817,5101,291,-6701,754,8024,-4556,1164,-1881,4473,119,5971,1300,8216,8936,-6267,-8221,-3253,3631,-8732,4518,5525,-3734,1226,7519,-1384,-8332,-1515,8844,152,-1758,-3971,-8398,-2480,6512,-7035,-4907,-8805,4592,-1329,-4856,-5258,-3232,-5874,6680,-8747,3603,3510,223,1674,4151,8606,-5481,-5038,-5771,-185,-9960,8291,-2310,6611,-4680,8973,4716,-6737,-8263,5427,-2302,-1534,3634,1031,-3666,-3789,-8861,-4905,7380,8484,-678,4032,-605,3782,-6253,-2096,-8410,3641,-6014,6497,2776,1034,-4693,5157,-6736,-6217,653,442,-61,-9678,-6764,-1936,9443,-898,-3803,-5903,-6887,-3613,-7248,-3425,4279,2446,1615,-5860,3445,-947,2832,176,6116,1335,8014,-7677,-3039,548,-1744,-2519,8976,8280,-7848,-2902,-2826,7123,-4203,-7576,-9630,1066,8737,1361,-3224,-87,1850,9034,-8052,-3337,-7877,-8662,2372,-3212,648,-2126,6188,6696,4128,-4283,-9611,-2472,-236,3329,5863,9011,727,6569,-9817,-4862,-5663,-1809,-5914,-2312,-2328,-2905,6994,-7960,-8257,2721,275,-5098,-2573,-4657,1767,2227,3131,-623,4020,5186,-584,-9440,-9102,-4893,3133,7931,-8041,-9690,5716,4584,8428,-4304,3215,-2645,564,4786,2089,-7681,-7194,1276,4786,8423,-3869,4888,9679,158,6038,-2223,-3414,-5411,3079,2777,6707,-9707,-9833,1672,-2339,5392,1461,3677,-7806,6872,-715,-1712,-1163,6072,9782,552,-7958,-8324,-9979,-9306,5830,-2799,6198,4108,6242,4908,3184,-4689,-2816,-6217,-7663,3847,-2461,-2388,880,1929,-3425,8580,-3439,604,2311,4895,-617,1338,6756,-6631,3257,8492,-7417,-6012,-8327,-5622,-1031,-7087,449,-127,7888,-1175,5448,4543,6399,2761,2577,8660,-1961,8361,4777,-6032,8018,-1172,-2180,1564,2354,-8623,7274,-7665,-5991,-2299,9627,6222,4829,-1602,9772,-9706,4473,3222,-3416,6317,-977,-3672,3531,-3011,3895,-2715,4061,-7498,-9602,-4001,702,-6515,8018,4179,-6683,8542,-5890,-6073,-1726,-787,222,-7396,497,-4603,-5317,-5455,-976,-5996,471,135,-3088,3011,-496,2581,-4145,9239,695,-6541,-8607,5041,-5614,5805,-4232,-7249,-8647,2244,8914,-6862,3704,8216,-8166,-5616,-9952,-2759,9371,-1480,-8230,-8461,7851,31,-9520,7201,-1953,6390,-9703,8166,-3482,6169,1247,-3064,6732,-4051,-5871,-8679,-3108,-5938,-2046,522,72,4748,6485,-1087,-6067,2076,-9396,-6882,-5984,4525,7770,8698,-9231,3501,4486,-3462,-256,-7192,-1472,4648,-2981,2780,1313,5160,1681,-1725,-9624,-1004,-9440,1503,-8303,-8497,-5644,-8547,6683,-6455,5436,-2844,-1013,4407,-5342,3663,-7856,9097,6070,2363,-2851,3782,-2511,2777,2462,-2267,-706,4677,-4038,-6206,9086,6377,3796,-7645,1635,6733,-6246,-5534,6282,-6923,-249,-2270,-3149,4733,4776,8584,6005,5290,3994,4690,8894,-6727,7982,-5348,7134,-1340,1618,-2164,6786,4363,-8188,603,3265,3340,-2284,-1200,-1523,2469,2258,-6339,6582,4946,-2886,595,278,-5693,4742,-8725,1995,8082,2477,3586,-1129,-620,3240,2859,-1472,-4366,9232,-9421,-7119,6332,8905,1351,-5409,-1369,6468,2750,5825,3599,2114,7114,1804,7307,-9355,726,-6073,4919,-217,-7837,3085,8093,-866,-2739,1165,8844,4176,3187,-9231,2684,-7251,-6263,-7347,1837,5710,702,-1308,4327,3821,4845,4026,6190,1973,-9943,5427,-4223,-4215,-7125,4207,-8330,-3938,4410,2124,583,5049,870,-5097,-9117,1399,9555,7772,-9364,-7727,-4227,-956,-7728,2053,-6566,8864,-3660,7241,-1279,-6620,6231,-2218,7250,1910,-5106,1448,7413,1441,-7915,-7558,-7764,-8381,-4604,-6473,7764,5161,-3065,-22,530,-4904,6095,-2580,7978,-1246,-185,4970,-9431,-6362,6256,-7758,-7088,9348,-5172,2431,-9851,6060,-569,-4505,3460,-6579,4288,7168,-9874,-6834,-5442,5403,259,9035,-6198,-5261,-4833,9264,6151,-5044,-8743,-9050,-3411,6244,-192,-6267,3382,-4612,-7288,1179,3019,6837,1205,-3884,3715,7945,-1854,2942,-6078,8505,-2658,-1286,935,7097,-7412,6729,-3891,5262,9259,8811,-5530,-3227,3916,6561,829,-2808,9657,-5513,2438,-3621,-7974,-7451,4640,7432,4725,7548,-5831,-5084,9472,3975,-1185,-478,5428,-5592,2952,2134,4661,-9023,2211,-1765,-148,-244,366,-1103,7926,308,9929,5997,8766,1322,-9669,4358,-2507,8792,5756,-5332,8942,9862,-3202,7403,9935,-3051,-8596,9665,3250,2304,-5851,-2419,-7356,3661,442,6267,-2343,9758,-9241,-5080,-1655,7951,-2614,4676,-1377,-5656,-9248,3893,-2189,676,1668,-3180,-422,7939,7247,5728,3466,6071,7294,9339,3003,1776,2920,3771,-3356,4809,-9573,-8454,6577,-3485,-5082,928,-1508,4525,-4268,-1850,4722,1827,3457,-5337,-5316,-8432,-7260,-6579,2020,2726,-8900,-4810,2031,1847,-4981,4202,-5774,6653,5764,-7551,7058,-9565,6823,6969,-5514,6089,-1017,7085,-4705,606,-2119,1175,2963,-4505,-4998,-2875,3214,855,8383,3816,-6306,4673,636,1146,-2277,3667,1250,4980,-6614,6857,6861,-7697,79,-9132,-9868,-5721,8210,9975,-1180,-1374,-6327,9794,-155,-8784,-4491,-592,3794,-9974,-1869,8354,4075,-7570,-8188,-6978,-788,-5031,-6178,2196,-5891,4603,2660,5058,-4916,-8696,1089,-3912,-708,3001,9327,5719,2810,8570,5930,8096,-1473,1484,7318,-3619,-5386,-4890,4906,1543,7526,9536,7382,5999,-2767,-6426,-5247,5061,-7607,-2665,9706,-4338,-1391,6789,-2248,4648,-4726,-1904,3123,-6303,7550,-4677,-9162,9255,7112,-102,6222,-790,-761,1307,-5285,-442,-6334,-6746,-3220,1221,5624,-6433,-1374,-2123,139,3917,7077,787,7370,6226,7272,3797,-3707,-1987,-6999,8469,-9652,3377,-507,-1366,6980,-9638,8852,6986,2735,-8836,-2429,4860,-8397,7409,15,8220,1685,270,9199,8464,7800,-4700,3970,9963,3331,-953,-1522,9023,-779,2799,3124,-3187,5350,-4087,-4547,-9055,4816,9456,1106,6271,281,-5994,-4976,9455,-4162,6459,-7104,8582,2589,2432,-7596,1587,40,-3974,-8368,-3884,-4063,-862,971,9667,5,-9631,6575,9023,-6228,-2997,-2469,3364,-2253,-6146,8358,-2438,346,9811,4356,-2207,4870,9799,2071,3446,-1402,-6404,1471,-9487,9019,8809,-4900,15,-6188,-2868,-1448,8905,2,7495,4385,-4578,-8320,-7965,-4727,-2831,-8620,5655,6325,-7024,-9605,-7351,-4560,-794,-4775,-4659,4240,9880,-9544,3504,7249,7572,8100,2618,-7468,3656,8137,7243,-103,6596,3097,1360,-9402,4280,5007,-2823,8839,-7532,-5801,-471,-4508,-1601,9328,5323,866,-1953,4235,-9013,-9014,4957,-2817,-7998,362,1928,7515,3097,-704,-3395,-1544,4732,-5991,-7546,211,3544,878,-4010,1581,6837,-6353,-2409,-3378,1080,-3001,9115,-7106,-5841,-534,381,4723,4868,-4840,-9006,-3661,310,-125,3131,-5493,8228,3831,-1009,-8634,-5883,960,5667,8387,1329,3649,4683,4973,-5914,-9870,3274,7092,3836,-5630,6294,5686,-5299,1178,4551,-3174,4272,2118,6354,-512,2131,5243,7434,-2619,5240,-2912,-4260,-9984,-6994,-4242,-8640,5741,-5076,-6487,-7180,7652,-2340,3913,-3875,6909,8612,-7129,-1213,-2800,5316,5312,9807,8067,-7178,-5275,6789,7803,3340,-133,9156,6857,891,-438,-889,1958,1679,-1617,6163,-2108,5957,-9114,9583,8321,-8885,-1899,4621,-4678,9905,6436,-6030,-9466,-8556,-811,-2828,41,-3338,2061,-4306,-4183,4266,8697,4294,3039,3652,-8097,-6966,-1050,4252,-4045,-1338,8216,9560,-2718,-6155,-2619,-9099,-7475,-3638,-9120,-2805,-6882,5025,-8764,-2018,-8986,8993,9403,7611,-9701,8187,-599,-4048,4320,-4074,-1746,983,6730,2592,2262,-7316,-390,8982,5599,-6165,-7926,-8428,9493,9244,-4221,7775,-3834,9585,5785,-6673,-3829,-2224,-2390,-530,2140,6474,8247,8608,6333,6296,3978,-4054,-3008,9689,1661,768,-9352,6392,8998,9218,881,-8877,-960,2538,-7441,-3760,-1311,-3756,7297,1358,8086,4679,-1168,220,-9964,9576,-5640,8,-7396,-8557,-4766,1794,2016,9219,2440,-6595,-5201,8997,3706,9546,-9869,-3486,-2670,-7840,4519,3717,7697,1193,-8881,5209,2234,2140,7119,6153,-644,1779,4147,-5889,2953,-4716,4825,5476,6929,-1113,5373,3494,122,-8900,9959,-4673,-8890,-7003,2994,8204,1191,4110,-5277,9696,7849,-9697,8085,-2562,-1041,4485,-4716,-2457,8570,-6274,-509,-3044,7263,8060,9156,5949,9569,-926,-3665,2184,-2836,777,-8315,-8740,-8922,-9842,50,-5034,3659,2181,-6948,-6736,-2018,4546,-8835,300,-1549,2014,846,-3270,2085,9388,207,4214,-4531,-1432,310,-9231,7141,-1296,-3147,-2776,4254,-5243,-5909,7491,6599,-8468,7206,-1257,7002,-5523,6643,-9948,-3662,-2081,-4567,-7593,-1090,1064,-2940,8532,-9962,3314,-2543,6833,4854,97,-7434,1878,9541,8895,6867,8445,7809,-4009,6137,1793,-1551,-8677,9706,-5366,1750,1724,-4879,7534,-7550,-1783,-4655,-8522,-8659,2166,8589,-8032,4487,8506,9045,3651,-3502,-6296,-9315,-1148,9961,9916,-9862,-3736,-3631,9346,2737,2339,3804,-4199,-3755,8761,9982,5409,-9669,7116,-13,2429,6535,-7257,8649,-8782,-676,1770,-2234,2955,471,-293,5033,1438,-7661,1774,-7449,-3709,9256,4305,1,3280,3868,-4155,6032,-6299,-4981,-9881,-8370,5496,3442,3698,364,7813,3102,-4026,7118,3491,-5342,2763,-6883,-8949,9596,-8342,-4437,-1493,-227,9174,-8768,-7252,-9481,1263,7139,-8894,2853,-1782,-1797,-8612,2055,5067,-7517,3506,-7015,8954,5456,1944,3363,4119,-4521,8228,7538,-2598,9970,-6830,8268,7770,2332,-1463,2385,-2389,8042,-2208,-247,2808,-9714,-2330,9387,9228,-3225,9375,9905,601,-975,6524,7916,9369,-2879,-1301,-807,-7582,8116,4209,5781,-660,-9395,-7994,-5070,-6922,-6994,-2604,8730,-7073,6091,-1391,-2978,2006,9544,6957,3255,6757,2998,1614,-1724,-5510,-9397,6285,-1120,8983,-7730,-9679,-3014,5371,-1785,7717,8893,-2092,3285,1901,-5241,-2414,-8224,8077,-6342,-6150,-8258,-358,4691,-5407,9500,1060,-6149,-9770,-5980,9553,1760,-7737,-6302,-2813,-1831,-6112,-5381,9564,5030,2719,1197,-5951,7912,9846,-6139,-2310,-578,-8922,7859,-6119,7163,4376,-7513,6600,-4515,-6610,-1099,4960,9068,-5479,3425,1509,9704,9149,9604,5229,-7911,2959,-4393,-7867,1043,-4258,5255,1471,6677,-2437,-2868,-7038,-8601,5976,3256,-6271,3850,4885,-6548,5261,5459,3182,4961,1829,8934,3885,-1605,-5548,-7090,7648,9264,-300,-5582,8799,2854,-2156,1198,907,-4841,-3002,1949,-4769,5893,-7071,-7345,5451,-9271,-8435,-2928,-7191,-1778,-477,-4198,8312,7370,-3525,2242,-3297,7353,2156,-7595,8782,-2227,5567,8709,7835,-1999,4219,-6304,-1945,-2137,-4039,-1791,-4834,790,1887,5910,-3474,-2802,-771,4779,-8996,2495,5995,-4224,-8569,-6777,7538,-7024,3594,-3434,-5389,7752,-8512,7392,2935,-9918,1994,2962,-3882,-251,-3342,-9602,2761,5942,-4543,-6118,-776,2003,-2600,96,8209,-4322,-6075,-8905,8362,6611,7422,-2566,-2340,-984,-2066,7161,7777,-3243,-6667,8503,-5014,8670,8718,-4147,1831,-2055,5573,2831,-2883,-8335,3363,2492,9404,8884,2291,-7138,62,1618,9051,6077,619,-8898,-3453,9048,8020,3205,-1473,8447,-4505,-1431,8365,-5188,-7060,9960,5623,3129,6208,6050,-628,-6611,-4592,-8266,-5597,-1572,-3945,2517,264,-9236,9674,-5003,9975,-1474,4162,2032,3899,1985,-1698,1932,-9572,-490,-8488,-9699,9751,-1915,198,-7170,-3571,8972,-3977,8082,6117,-9670,-7374,2682,-9357,5996,-9442,-8822,-5140,1548,5879,3544,-644,-6455,477,-8095,5269,5494,9546,-7433,8868,1508,-4435,9415,-5796,-7615,-5854,4014,-8122,2180,-4111,6808,1129,-6704,9983,6734,492,-1406,386,2256,-9463,7110,4277,1206,8011,-6687,2015,8253,-5934,7399,-9072,5619,-4509,6837,-5026,-4782,-4690,-9085,3807,-8980,-5236,-6874,-6700,-8359,9111,-1298,7041,4227,3262,7018,-1991,-198,-7715,9844,-1127,-3214,5442,-1649,6495,-8301,-2706,-8694,8429,6230,9379,7752,-9566,-9851,-5403,-9267,-5122,-6483,-2062,-148,1114,-2964,-3247,-3942,-6851,-8685,7980,3637,5285,9937,-3961,-5718,4746,-1557,7011,7692,-932,8136,1513,3398,-5542,2733,-9877,-6925,4058,5135,9046,-7464,-6159,-419,-3294,-7324,-9712,-3370,3741,5528,-373,-5904,-1221,-8483,276,976,-8511,-3520,-8927,7294,4266,2631,3193,1334,-5061,-2635,3093,-9341,-5987,4734,-7770,6897,-1118,-7244,2051,1126,984,-7997,-200,-696,-2657,-1206,5776,7164,-6291,-4220,-8828,1024,-6272,-9995,8298,288,-326,-5797,9280,8275,2335,-459,-4905,-9738,-9094,5563,-3356,-5691,-9737,-7822,-8585,-9452,-9421,1289,9624,-7424,-3683,-3088,1159,4368,-6127,906,-4356,6261,7326,794,-317,-5212,-2017,6540,7540,9436,-7571,-157,-8299,-3280,-1379,-2119,4204,3031,-1830,514,-7400,4856,-8068,-3782,-4140,-7280,-1358,9223,2807,-9491,118,-8568,4512,8243,-9740,4159,-6936,-1471,628,-5471,-5909,-7696,2010,-6601,-594,4678,6555,7003,-7517,8888,6357,890,-5176,-2105,5828,8316,1510,5243,-8636,-3867,6252,-1129,-8263,5180,8929,-3801,3622,9152,8104,-9720,4499,4821,6678,68,-1613,8298,417,9043,-1012,-6417,7058,-4094,7789,1211,9210,6655,-7097,-4198,-9942,-2635,-9614,5946,-3065,1367,-4344,-6612,669,-4248,6350,-5971,2031,9110,3054,6289,-4530,6672,-4408,-5558,-6110,4722,1378,-9245,-6267,-2782,7137,3046,9062,-9176,903,9695,6165,868,4758,-2375,4579,1647,8662,5432,-2627,-5805,-9492,798,9359,3190,-5353,-1634,9700,8457,3145,6707,-1374,-4125,3512,-1062,-733,7174,598,-6896,-6017,-5559,9049,-7722,-1907,7415,-3522,-1309,7399,-8537,2129,4514,-8369,194,6280,1019,-3925,-3509,4225,6874,-2101,3410,6240,-5632,-1687,2018,-2228,-6987,8317,-5811,1160,2653,-8210,7891,-8410,2355,3376,-6041,-6397,-9166,2188,-5463,-2181,4582,5013,4249,6578,9251,-2930,-2318,2894,-3732,1394,-1582,7311,-4064,1581,3933,-2406,417,-2493,8789,7942,-4041,-3927,5133,-4156,-1168,-7280,4222,3328,-138,9193,-667,8170,-6678,5908,8771,-358,-7780,-1417,9082,8311,2179,-3859,6545,-2580,7100,5947,3552,-6693,4634,4686,-1185,-2373,1238,2645,-6755,-5378,5908,3319,-1677,7641,7927,9280,-9906,3553,-2743,5777,-707,-8788,-3304,-3988,-9454,-6342,2597,3084,-4283,-9833,-6822,8761,-8432,8761,-3861,-3852,-5441,-757,473,-4069,3219,6909,8975,6638,-6910,2334,-2238,-214,2677,8497,-5023,-72,810,-9585,7520,-6013,2833,-3783,-7214,110,7544,8168,6923,-4813,-578,-1698,-3655,5413,2069,8391,9502,-9865,-8831,1203,5776,-5756,3443,-789,-4075,9258,-9595,-3191,8647,3583,2898,-1259,193,4435,-2820,6764,-6393,-454,5684,-3837,-5684,707,1841,911,-4902,9362,7976,134,-9551,-5747,7433,-482,-2759,-4181,-3255,4894,6973,-4567,-2411,-5539,-5,-4967,-9721,3175,9028,-901,-7242,-7352,3540,2836,-8149,-7178,-2848,-8861,-41,3189,-4163,-2239,-1424,3859,3291,-6719,-4757,-8854,8893,4654,-2333,-2973,3652,-5847,7658,-561,3865,4766,7697,8378,768,-7519,999,8728,-3512,-1908,-2620,-3455,-1529,-2931,7550,2034,6134,-3543,-2,-2389,-6217,1974,-3112,3270,-1265,-6820,6716,2123,3699,8626,-9115,9635,205,5528,4754,4026,7118,1040,-5533,-9006,750,-220,667,9861,-6726,-8299,2833,-2368,-7335,-8547,5604,-6316,4293,2560,9386,-5460,-3572,7050,9409,-1541,1757,96,-1562,8115,-6656,-9310,-5138,1800,9020,4899,6823,8570,-3045,674,3698,701,3690,-5387,8311,-7465,-2557,9854,-3859,-6363,-5602,-9361,-2933,6424,2079,-7750,1146,1860,9279,6037,-4187,-1717,-8140,-4569,3035,9920,-123,-4576,6334,5121,-7534,7884,-4018,-1717,546,-1414,-7398,1824,4199,-5553,-8000,-8650,3670,-6593,3925,-5934,56,1668,9393,404,-5805,8155,-4145,5375,-3288,139,1142,1777,392,9653,1333,-8780,-1928,-4603,-5126,-6865,2432,7343,-3393,699,3399,-8140,-9743,-9433,-4016,8021,-4485,-7716,-9779,4178,-4081,715,-9357,7359,2532,4372,-9273,1638,4537,8762,1533,-4904,-1929,6970,8730,6213,-9697,-1855,-2491,1400,-4395,3907,2783,-9575,-6268,-6737,-7839,1359,8558,7831,-3728,-148,-3024,-5068,1138,-8415,5928,-6282,-4788,4124,-1512,7660,-1024,-2569,2126,-8321,3941,4988,-8839,-6668,4551,-5644,7648,-9023,-929,4550,-7323,1149,-3204,1273,5651,-658,4432,-3224,-1823,4911,-6520,3338,-9646,2675,7296,-9856,-1264,-2104,5446,717,6001,9399,-9464,5520,227,-2700,-5394,5196,-1672,-4350,-266,6754,-4678,-6317,-445,-4023,-8100,7228,-51,5945,-7327,-8683,-3630,5361,9871,3690,1441,-9358,-2599,-667,-8763,-2454,4632,-5545,2633,-8630,65,7436,6376,-7910,5402,-6880,1597,-3372,6273,-5827,-1720,3277,6737,7214,6155,7555,2864,3553,-2746,6050,-1682,-2514,-6820,4470,-4022,27,-1638,-376,9944,-189,-6958,5994,3896,3369,8205,-8837,5196,-156,-8565,-6837,6495,-5920,3288,4761,-4360,-5761,-7107,5790,-1104,3528,2569,8802,-3396,-8979,-238,-403,3072,-7922,462,7371,2178,7027,6046,5681,1752,3026,-4497,5529,-5338,-811,4401,-9436,5039,2994,-1113,4402,9256,3564,1942,1031,-7557,-2569,-9335,7240,9957,-7005,7367,6058,-8249,2229,9609,319,-4359,-2840,-7870,-2812,1899,3953,-1634,-7903,-6640,4586,-3838,3967,4462,-9744,5224,588,4674,482,9868,7346,8612,202,9132,6256,-5002,-3348,-8038,-2686,-6534,4448,-350,9740,-8101,-8656,-3524,-3647,-1620,-5023,8723,4720,-1777,-5963,-9448,6111,-6424,-6018,-7099,8988,-8003,-2226,9056,-885,-1234,1502,5024,3170,-30,-7246,4194,-3245,4075,-9356,-9400,5161,9383,7544,-4228,-9075,-9336,-8945,-9203,-1302,3700,-1997,2986,4343,7743,6035,9939,3979,8803,-8755,9045,-9475,-4578,8021,8622,1633,3021,7327,5045,-2540,-6156,-5659,-5007,-1119,-4962,-1204,-2560,69,2328,-9868,-3157,-4497,3642,-794,5448,-7854,6116,-499,9553,3617,4081,-2198,-278,7590,1088,-762,-8931,-6255,3110,8711,-2405,6576,-7328,5924,2199,5482,7851,230,-247,9159,9342,-2047,8636,-1614,-5124,6422,2586,1334,-1026,3578,-5477,-2004,-7456,9389,-3304,-7139,3286,-3553,4320,7498,-3833,9212,8994,6032,9568,-7473,8600,-6580,-1931,5312,1753,6233,3221,8201,-92,-9110,6934,1749,-9817,5135,-739,-8737,-6564,-6781,-7534,2632,5205,19,-8375,9605,-2278,2734,-4743,-3350,6960,423,-9547,7273,8148,-9355,-8159,2429,513,4706,-7269,-2221,-5860,-803,9411,8214,2003,-59,-2876,-1518,1365,-1886,-2301,673,-1054,-2065,4106,-3738,-204,-6602,-6411,7822,7748,8974,7586,-3207,-6080,-4639,-299,5732,-2912,-1990,6984,-2818,4058,6108,-7186,2624,7566,-1293,-70,-9410,1804,-2132,-9118,-9389,-6919,2114,1825,7882,-5802,-3846,-3079,1729,3327,4006,-8820,-9363,-8984,-985,-5994,1015,-7356,-1682,-4910,3247,-3530,6922,4864,2313,8213,1862,-6453,-8894,-6828,-3611,-438,5653,-1347,-6548,4133,9831,-3057,-8881,-779,3945,-6740,-7644,-978,-1420,5046,9339,3534,-2609,7962,3646,109,-8989,-6703,3041,-7301,4169,-5832,-6367,2363,-2028,7952,-695,-9611,-329,-6330,4980,8135,-3970,4662,-3296,-8557,-320,8451,-3465,-8433,-9809,4982,-553,-5212,8125,2195,6867,1545,9255,6520,-8373,-1672,-5871,3094,-6094,-6907,8073,-6729,-4720,9681,3098,7444,-1793,6039,6993,-1150,-658,-9296,1749,-5203,7009,4221,8110,5022,7558,-6327,8592,1117,9067,3337,6884,9371,6333,-1669,-9121,-1775,3945,3050,-4796,4763,303,394,2059,2706,-4318,-5520,9168,-611,-4332,593,-3348,3754,-9859,9625,-8789,635,4199,4825,3917,7725,-9919,-6539,9971,7594,3040,-5220,-520,592,-7299,-8336,-2077,-2617,9680,-1825,8119,3826,-6427,941,6122,-7521,1781,3318,2006,-9275,-3286,3274,4165,2671,2005,2995,-6186,-1983,5577,6673,-3834,-7028,655,9585,9380,-8358,-1431,-9638,-1691,3081,-7954,5683,-4406,6606,5791,5262,-595,-1390,8734,7156,-2652,3296,-4881,-7450,6127,254,2974,2524,-1611,8153,8552,-5474,-1721,9655,-2019,491,9189,601,3705,1522,-4370,8528,9365,-9161,3167,7720,-2237,-9754,-9467,-30,2052,481,5617,-8608,6177,-8195,5655,9982,-44,-5591,5366,9226,1058,3568,-6811,-529,9996,4190,6818,8551,1808,-764,-3089,-5544,6974,9412,-8972,1334,7677,-1207,-2615,1728,272,7118,-7836,834,-1873,5114,3877,1989,-23,-6557,1253,-6341,7884,8691,2655,8808,613,756,2582,-6241,420,6250,8654,-9149,-9374,1834,9403,2966,6447,5797,-443,2403,7281,8869,-308,9411,4227,-1069,-9943,-2883,-9818,-518,1420,-9960,3095,1946,-8740,-9094,-8115,2962,4138,-9953,-6240,-4155,-6532,-5604,-6858,-5011,-6497,-6571,-9638,-2638,-3320,-2516,2526,1003,-7661,-1251,-5889,-2257,-1236,-6325,-2118,8673,-9416,5041,4480,-4077,-8178,1396,5390,-8153,-4424,-6142,-5774,3379,-358,-9246,2220,-1843,-8050,-8629,-6676,9298,6284,4651,9888,3092,8865,-3945,425,1580,-4299,-4534,9601,6230,9027,-3312,8366,1186,7636,9661,-4315,5736,7028,-8029,-5171,5229,4165,2491,-7252,8768,3003,6398,7912,-6368,-5992,-9960,5441,-5850,8429,-176,8453,1801,-8581,-6906,4913,-8570,-119,3728,-7797,4452,8872,9148,1222,4310,-3632,5959,2765,6150,4421,1815,2012,-7480,-409,9970,-7351,5522,-9500,-6854,-9498,9857,-1692,-4061,-5440,5146,5432,-6940,4042,6280,3790,-2858,6426,8008,-3181,-5462,-383,-7245,1164,-4444,-5800,-5461,7163,1301,7156,-2466,1823,5403,6492,-7029,-5020,548,-5951,310,-4334,6,-5565,9812,-4832,619,-8805,-6853,175,9354,-6559,6266,2603,6507,-1752,-3270,8903,7985,-4273,-8089,4343,6611,7474,3310,5754,-81,8209,-4508,818,-4084,8667,868,7208,3958,-7273,-9213,-3301,4011,-5389,9648,-6369,7354,-5774,-1532,-4254,8019,4184,-1430,-247,-8011,6745,5212,-5076,3889,4371,-4324,-8602,7076,3422,-2748,6237,5548,-6412,-5377,-1802,1825,-5372,-3155,-8607,-5100,4940,-7997,-25,1877,-1944,-661,-9469,85,-7974,-157,5820,9252,-5072,-2537,5353,2579,4405,-5719,-1842,-4139,-6758,-9032,2136,-255,157,8228,3592,6473,-9559,-711,-4240,2829,-1563,1597,-8127,-4632,-8877,7958,-228,-7571,-9966,5066,-9934,496,6595,7482,2152,9404,-8581,9874,8501,9022,-5676,3119,2079,1882,-9688,-6912,-974,-3897,-6374,4896,7562,-1995,-4473,692,7115,-2044,8984,9009,-6307,-2986,7060,-5688,-8581,-4056,-3823,-7014,-7354,5695,-1764,3476,-2467,1114,1013,1632,-9404,3677,4465,-5633,5838,4520,9353,8495,9473,4919,-4998,-8837,-3183,3772,-357,523,4728,-4346,6100,1774,-9046,5063,-2231,-5508,9822,501,-8491,-4302,7603,-9967,6783,-8130,3570,-6910,1142,-9814,-5493,-5499,3537,-5251,-9219,4504,-1640,-9121,1744,9516,71,-8030,1245,1126,-236,-4875,465,-8791,651,5701,1482,-434,1404,1329,7183,-5459,-8425,4967,-8311,-2175,7343,-2053,-8915,89,5249,6126,-437,-6248,-743,4791,-2705,1768,-4518,-9511,3621,-2152,3774,-2082,-4726,-6764,3450,7020,-2891,4864,6815,-8435,1563,-432,5309,4142,-9960,2544,6700,-4692,6907,-6372,-6783,144,3503,-8170,1901,-4458,-1302,4498,9435,871,-4065,-6744,2713,-1290,-7677,-7573,-4432,-6691,-4612,-94,-6617,-6990,4120,-9151,9414,5949,7209,610,4976,-8726,301,-8702,9245,-8477,3621,-2771,-7615,-2790,1638,-9485,-5858,6644,-3656,7459,-8965,4994,9101,4800,-1508,-1043,6962,-3973,-6862,-9,-9589,-724,9494,-4761,1568,2256,-8108,9500,-5582,5150,3885,4077,-2942,-8681,-9981,-4930,-5581,5796,-4663,-49,3218,-5652,-2483,722,-9221,4410,-6234,5429,2588,2481,8668,-3971,-7460,-3383,6729,-4576,-9076,-3989,-1920,6931,-3701,-3856,5696,-8994,-179,-2470,-9043,9061,6820,1477,-3697,-2296,-7798,566,-4071,-6338,-2847,1063,62,-2311,-6787,167,-425,5678,3358,-8890,-9379,-5780,-2088,4724,2143,-6320,4246,8610,-6924,-7880,-4175,8885,-3060,2650,9603,-95,-754,-4425,-3098,-6636,-4171,-7828,7431,370,1840,1799,8545,-1016,5366,9029,7412,6723,-4140,-420,4678,-7186,7579,-5986,-6794,-643,776,-8080,-4919,-887,3175,-2424,9086,-561,-403,189,2421,-5844,1419,7553,-786,-7593,3759,8820,8819,7505,-8004,8933,1266,-1078,-9246,6351,5128,3021,-2916,-5686,4334,2425,-5438,-9705,-856,7884,-1826,5462,8367,168,-6828,7213,578,-774,7049,-4192,6360,-3763,-915,2251,-6919,474,-8685,-8748,-8588,-1425,7523,-5311,1905,-3574,-9800,204,2526,577,2341,-1763,7653,3481,6066,4673,3212,-7434,-8479,-2904,404,9310,-7248,1930,-7717,-4234,-9949,-5496,-8219,4983,-3923,196,-889,6199,4632,2961,-9894,1135,1210,-8909,2919,-2534,-6764,3973,-2206,5836,7507,-8806,-917,9448,9043,4299,4017,60,5574,428,-536,-9969,-926,1102,-1300,-6069,-7527,3877,-2845,2734,-4668,-2732,-1914,-5982,-5942,5902,9798,6614,174,-4218,-2582,-5841,6950,-9072,846,-3360,-1003,-888,3009,2281,3838,-8643,-7142,-7348,334,-4399,2489,7045,-4929,-4472,5605,513,-7210,-9809,1299,-1606,6930,3374,8777,-9793,-9880,-3719,-8855,3126,-6342,-4108,4263,-9856,477,-8481,6527,6179,673,8898,-9705,7938,6814,-8570,-1993,-1172,-1072,1942,-456,1814,-2763,-6388,-9185,3843,2033,-2090,-4942,-164,-8419,6683,-3924,5197,9144,2487,210,5837,2411,-1760,-9888,7615,-6345,-99,-7384,6722,-5440,-89,1363,-8796,-5100,9060,-9569,-1826,-3969,7367,6429,-3799,-6753,-8123,394,-8002,4569,-1609,-3269,764,5232,2593,7697,1898,-7310,-5145,6070,-6001,4012,-1119,-6341,1993,-3210,3516,-3114,-9758,2183,468,-6277,-8575,-3668,5194,4883,9078,6517,1156,4510,4949,5207,1189,-8295,-9630,4468,-1986,-356,-6279,-1092,-6396,1482,-4675,-1560,5236,7215,-628,-1818,-1201,4891,2773,1410,-2130,-6262,-5432,1501,-198,106,-1679,1541,-7832,3056,-8456,3337,2157,-4104,-4490,-5726,-5096,5147,911,-3813,8043,-3266,866,-9703,-2607,-7855,-5213,-7043,-9605,-888,-3542,-6752,-1810,-2502,3970,3009,-8046,-7035,8265,-1761,2095,7759,-6096,5754,-8060,-1384,-6337,7079,720,-5985,-791,-3084,-8653,370,-5483,-712,-3932,-6416,3059,7598,4418,-5368,-7487,4959,-7056,-5293,-4770,2830,-8462,6777,8292,-5253,-8121,-5181,-7977,9298,2095,-2728,2800,-7498,-9012,4348,-2261,-8765,-835,2559,-3837,2353,1452,-1425,1538,-2191,6236,410,383,8113,-2339,-6749,-9815,1459,1855,5173,-4276,415,9050,-7886,6971,-1846,-8283,5001,-3371,-6380,-1088,-9504,-7428,-730,5,9632,51,6069,-6448,-997,9584,8994,-812,5159,-215,-3250,-3964,-7685,-6287,-487,-3405,-645,1512,7888,-4274,4561,2039,8617,9667,-4186,-533,-5441,-4446,-5987,6361,-134,993,-53,371,-9565,637,-2213,251,-3117,9501,-863,-32,-4032,83,-3580,3633,7085,591,-106,9882,3291,5168,5326,7203,-4594,-2573,9307,9460,6482,4065,5577,-6381,8680,6422,5218,-7929,9131,7817,4563,5226,-7706,-5157,-9575,-9690,342,-656,-9621,2038,8663,-944,4997,-91,-4610,-6366,4343,-3557,-1924,6434,3449,5521,-1445,-5795,4967,300,8628,476,-587,-8707,-3769,1370,-2039,8786,7814,-5993,-9642,4883,-3810,-2503,-4714,-3170,7905,-7545,-9596,-6499,-8598,8786,5629,-6116,-8465,-4767,-6221,-8238,-7149,-6781,3728,-5242,-4887,-1434,4147,-4105,419,7694,-4954,-7607,-3649,-3516,2843,-7619,1775,-7698,5027,8648,-3688,6065,-3321,757,-7974,1235,8922,1093,-5442,2017,5191,-9836,109,2153,-2897,6288,-8304,-2928,2513,3762,2124,9793,7545,-6217,-3277,-8649,-3876,7608,-8988,-181,7758,1354,828,9083,9780,-7597,3137,1275,-5676,-9272,638,-3148,-2206,6170,1045,8671,8905,-9259,282,-6091,6512,-5608,7579,2390,6048,8476,5742,7422,-5535,-9273,7087,-6308,-9880,-3641,1497,-9607,-1139,-2978,5617,-2568,-9145,5739,-5292,-1693,-8301,7062,-6724,7978,1100,-851,-4971,-7822,-7451,9537,-3807,-4275,2985,9907,6397,-8186,-860,697,7681,-8073,4903,2458,-9618,-4399,-1930,-9637,-4593,2944,-3634,-3266,6887,6620,650,2387,-4157,7525,-5600,2722,9778,-9501,9388,-3866,3360,1142,2998,7675,-748,-3289,-2088,-3420,-9096,-9502,153,5710,8280,-2501,-6883,-6747,2423,-9416,8178,5254,1147,3177,6073,9792,9768,-6047,-9797,-1343,5437,-7286,2644,-135,-4053,-158,5492,-5143,-5133,-2202,-3308,-5557,1799,2184,-7856,-3267,1640,-2096,-814,-4069,3839,-8249,-787,5969,8138,7258,-1921,8299,-8282,7437,7807,-1733,7410,-1478,7728,-5906,-3667,5776,-8450,-4453,9050,-6391,-3198,8846,-196,-3391,1252,9118,4638,6856,-7091,3854,90,757,738,712,-4654,3966,-8272,-7744,9773,-7526,4059,-1176,-4480,8759,-8259,9976,4540,5379,-6770,-8748,1474,-4941,-9223,1205,8479,7471,3299,9862,4617,-2037,7543,-7606,5473,-6277,-8687,-2333,1121,1886,-1463,6169,9393,7455,5412,3207,2358,7192,-3859,-7223,-7260,-1731,2491,-4223,3407,-5212,752,8010,6560,-2640,-1223,9060,-3739,-1419,-3602,5229,9290,-1302,-56,-1298,-2915,-7478,1566,1120,-9495,9367,-3663,3965,6569,8144,1900,-7001,-4607,4915,-3486,-9867,-297,-5389,-7406,-4270,-7509,-8190,-7711,6911,-7682,3300,-363,7629,-9875,-3249,3223,8954,-6132,7285,702,-2357,8443,-5372,-8084,-8872,-4896,-8382,2805,8682,-7074,-2825,-5612,-7585,9972,-1195,3539,8864,1618,2828,-2574,-4278,-1737,-1273,-9103,4415,-6793,-3320,-5681,2402,7929,-1496,1469,4104,3097,-4141,-6132,-3905,9421,-4768,2655,-6804,-2855,-2628,-3505,-9879,-8454,-3896,-7284,394,-4748,2227,-4130,-6007,-879,-6856,9227,-7718,4964,-4771,-7442,1777,-4508,5328,-6025,1846,-6408,3923,8335,-124,-6601,-7563,2644,424,-6935,6765,-7274,-6165,2043,-7976,-4657,8633,-7540,-1762,-1166,1111,-3654,1860,6009,-9941,-4172,-6996,-2759,5495,292,-4675,2470,6136,-8546,-3880,-2614,-3326,-269,-6070,5349,6406,-4847,5823,2796,-6395,-2148,-8323,-7031,-3793,6167,1877,-8468,5389,-2441,1210,-5481,-5590,9261,-1171,1457,4703,-2903,-2119,5288,-9796,4168,227,735,-5157,-7196,-4953,4531,-8198,2622,8150,-5973,-1975,-9039,-4594,-5194,4776,9952,483,2778,-1938,-2794,-4620,5223,6043,-7853,-5969,1840,-9897,994,-9034,-4422,375,-3131,-7863,447,1119,-185,-5538,-1290,3369,4397,-8718,-2669,7843,-3561,3731,-8114,-2976,8288,7737,-9457,-8586,-7239,9766,-3395,3525,509,-4225,-5302,1111,-7239,9893,-8446,8434,-6441,9392,-630,8554,6787,5734,-2293,3603,334,-4949,-9971,498,4315,789,8145,9199,-3149,-9289,-4423,-3263,-8966,9066,3904,-8366,3841,4856,-7556,2039,4707,9092,-2486,-7514,-1462,-4252,9846,1718,3243,-1208,-1583,7551,3719,614,1512,7726,-5718,-8991,5564,-9334,-5276,-6219,6211,-3551,9431,-6942,-3670,3616,8183,-6423,-9419,-1395,5333,-4422,-6557,-292,4668,-7766,4305,481,-8040,-2960,7086,-9122,-6585,-6562,7967,-7008,7296,-5661,4221,-7861,-2178,-3042,7932,1745,-9085,-8457,-7855,6881,2702,-2736,8385,-2713,-3907,-4929,-4044,-4290,-902,-5441,8086,-7841,5200,-4420,6650,-1682,736,-719,-3115,-7644,-3300,2677,-8249,4379,6448,-7817,9828,966,-1835,-3030,8688,-2028,9529,-8781,2824,5737,-9812,-949,-9767,-9835,-2286,-4477,4693,8755,-1286,9146,-2750,-976,-2702,-7304,-2385,-7452,-9456,6206,-3266,-4482,-7215,6391,-2337,9206,6324,9929,-3117,-2494,2103,-7888,3297,2809,695,7399,6565,-4314,-9611,-3098,7677,5584,2104,4892,-3633,-1930,-3327,-7869,5488,7993,5767,-3917,2978,-1903,-8717,-7825,8836,5290,1529,-3488,-1016,1719,9262,-9608,2298,8938,-8221,-7239,-9239,1136,5497,-2366,9364,4698,5776,5098,3540,742,7971,3966,-394,9533,-6610,7732,-1803,-6159,4524,-5793,4808,7039,-7679,-7774,-5981,-3799,8658,4318,934,-2181,-7191,-6633,8919,-3376,9453,4307,5969,-6000,7748,-8745,-6230,-9114,-8204,8279,2666,-6529,2430,9396,6218,9192,1557,-4966,3798,-5279,7597,-1883,-7067,2303,7914,-5836,4360,-2931,-9411,-8590,-6161,-9533,-8094,2039,9993,3823,-1818,-1453,-7454,-4094,-9331,-3,-5005,-5660,-6515,-6926,6967,-530,2994,-23,-5999,6649,-8961,-5383,-7814,-446,-1897,865,6608,-6820,-5408,-561,-2600,2498,4692,9803,-2222,-8323,-543,-1378,3858,5521,-974,2772,9599,9900,9512,3174,7677,5587,491,-9848,1495,9004,6405,-7308,7851,-5988,-2740,7509,5143,-9108,-5404,2266,-8552,8638,8886,-2488,8749,550,2666,-2566,3894,-9760,-3407,-7445,5872,-3697,-7761,-1754,9615,4558,3891,-7637,-9543,5634,1485,3885,-5304,2282,9452,2863,9246,-9279,-5614,6128,2419,6593,-3105,5725,-9745,8625,4684,-5958,4049,-8961,-7623,-4030,7585,4407,-626,-8144,-6450,2444,-8236,-258,-5797,-4883,-8622,-1326,-2673,6436,2054,5601,4340,4107,3682,-7212,3011,-9128,452,1129,-8120,6637,234,3837,-5134,6636,-2218,2317,8092,-4711,195,9328,177,1944,1877,3621,8415,3573,1828,-4925,-135,4328,-7184,-2084,-5957,2212,2581,7303,6307,2518,-8575,484,-7003,-3247,9502,7549,-1144,-5548,-9660,-410,-7728,3806,-5265,-9755,8457,-3456,5006,7531,-941,9382,7429,3088,-8716,7755,6495,-4779,684,482,-2043,8163,5500,2239,-328,7810,3044,-3150,-5738,-7314,-5784,2076,-8373,-6402,-9579,7671,-4353,-875,-9302,-1663,-2512,-930,-6923,2669,8596,2021,-8841,8506,-4248,7052,8858,7196,-425,2292,-8988,1365,8740,739,7469,1506,2488,-2724,5805,-8905,8251,5983,1292,-7224,4234,-6514,6073,-7042,-1220,6794,9909,1741,-271,-4830,-4764,-8864,5348,1155,7449,-9684,4949,5837,-738,-1385,2359,8043,-6231,-8213,-7113,7759,151,-7557,-9751,8524,190,4051,-7173,1153,4325,7390,3585,5913,5441,7321,-4543,-5088,962,-226,7425,1949,9013,-2151,-1170,3486,-3794,5009,334,9776,-9077,-91,9717,-1325,-9781,-6512,-4033,2068,-43,-68,-2109,5310,-4992,230,-1859,5913,-4748,489,3975,2640,2629,-7810,6992,6597,7968,922,3500,-4290,1170,-145,2794,-9100,-9095,-5015,-6916,-3665,5135,-6227,-5578,-3170,-352,-2070,-6913,6885,6556,-2038,1919,5822,3055,-5441,9270,3207,-5922,8643,7893,3455,-1278,-8273,-2895,7101,6093,482,5145,8682,-6556,8860,-2881,2027,-9175,-5853,-6716,7408,548,-4277,-9215,-1791,9829,3733,-7689,-4326,-459,-7115,-1822,-4449,-8643,-7181,-7274,6014,5543,1323,-925,2391,-8195,-7437,4409,-9412,-2420,-4997,9759,-6149,6099,1051,-1333,7678,1364,-4826,-841,-6000,-6127,-9974,5162,-6370,-2502,7761,-362,-3732,-406,8819,6040,5189,-218,-805,7933,-6803,-9272,-7229,2551,-7444,8762,-9093,-8970,-6871,651,6861,6403,-2384,175,-7494,4021,2239,4303,3421,-1013,459,8940,7987,9978,-9560,4991,1506,-9729,2540,-3754,-771,-2921,4813,4836,3350,-7914,158,9647,-707,6426,7373,827,-6957,-7649,-7643,5858,-2951,-3721,8863,5883,-1896,-804,4719,-5531,320,-514,-7726,1912,4134,-4541,862,485,4568,-7900,1365,-7917,2991,4563,6909,-1495,-3920,812,4472,-8009,1121,-5706,5972,8132,9633,-9518,7911,-8575,-7266,-89,5844,8339,2635,4102,-8674,-457,-5723,3479,-2295,7904,-8702,-2834,2802,-6613,-7782,-7311,9698,2660,1376,9086,1702,6488,-2371,-3230,4109,-1240,3926,-6056,-6493,1794,4401,-8568,-3795,3596,9287,-4951,-4965,4642,-2172,2612,-5204,-7621,-6870,8273,-8922,-8948,3728,-7080,7412,9077,-3685,-4237,8621,5280,-1789,5339,1877,-6682,-7772,9817,9458,-6124,-3605,2344,8015,-3830,-8246,2812,775,-2156,-6170,7779,2036,-5330,6008,-1225,3562,-2762,418,8366,-3144,-9151,-8796,2411,750,1907,7107,-8691,260,-200,-228,-1046,-120,4278,282,5238,4224,-5516,8145,1158,92,-1896,5417,-1690,-7279,9534,-7841,-7312,-6780,-5780,8295,-8678,9102,4857,1290,-6623,1139,-9450,-3576,-8405,4053,1375,-1912,-5091,-7946,3875,2839,1895,-9901,6322,9412,-7617,-7344,-284,-5277,5293,-2577,-1398,2644,-5429,-5836,2772,36,5896,5234,-4342,-5619,9008,3807,117,-8742,6375,-1351,6529,8977,974,623,-4852,-109,5869,4430,-7001,8235,-6816,2219,-9602,2341,-6556,-9387,8932,-6637,8116,500,-7059,6753,5339,4154,832,-8273,7597,-6251,5170,3487,-8193,9868,-8077,6038,3945,2348,2575,-8444,851,-9504,9220,-5096,-6357,2352,7274,-4885,-3839,1877,9311,6583,-5462,-8548,-2999,-386,1980,7581,-2962,-4434,-9079,-7439,-9694,-3423,6139,7533,2763,-1499,3357,-8418,-8801,7765,897,222,-6110,-8115,-6476,5207,9303,9398,1659,-8298,5498,-3938,-192,-9082,1493,-7034,-8945,-8750,808,2850,-7487,-4479,-7575,8373,4620,4296,-3961,-8429,-2120,-9771,-6517,-1967,-8363,-6633,-7789,1498,-4586,3275,8383,1916,-6392,-6229,-4194,-1937,-9533,3832,-8820,-9135,6917,7581,2663,8192,-9850,-7305,-9617,-898,-7283,-4903,5587,4313,5349,-3392,1887,-4646,-512,-7802,6180,-9456,-8372,-1483,9299,-6346,3457,4654,-5658,3180,9037,9797,2687,-8928,-7617,7894,-5696,-8479,-1778,5173,9384,-9254,-7418,2716,3890,-4207,4495,-4290,6480,-820,5637,-4806,854,-4663,2029,7928,1904,4234,8737,-3497,-4370,-5654,8738,6989,-4173,-8735,2859,-9634,2344,-5707,3119,8082,-8464,-3297,-9910,1835,6384,-8652,399,9711,-4236,8373,487,-9388,7971,3828,4210,9413,4000,-1195,-5832,-5934,1965,-5376,-9699,174,2722,-2396,4061,638,6224,-3379,-7176,-8280,6343,-2108,-5361,3628,-733,-5058,-7339,583,2949,2645,6579,6950,3919,2149,-2593,3239,9662,3878,-3957,-5640,6558,8289,-7068,9846,5711,3731,9207,8346,6605,6343,-4106,232,7713,5748,514,1300,2615,6025,-4879,-8914,-2884,-5250,493,-6369,-4266,-8201,99,9782,-3120,6126,-9969,-6041,-7397,-173,9147,-4860,-6377,9117,5454,-5456,8313,726,-5658,-5080,2456,-8304,-2725,7828,-5150,-8816,-434,-5527,3239,495,-6440,-124,-2281,2735,-902,-6113,-9028,-1248,-6531,-7620,-6909,-4647,-3939,5592,576,7323,8753,-2292,4394,-9426,4493,-1182,981,-767,-5949,3074,-1580,6000,5507,7484,-6977,-850,-9734,-408,-404,-3343,5704,7491,-4081,-5369,9488,7407,771,-2085,-8626,9870,2188,9731,7309,2833,6507,-3120,9583,-127,4971,6414,-6403,1965,4195,1003,-3901,9768,2580,6879,2188,2638,-661,2272,7096,7743,-9786,-7349,-4566,5687,-5955,-4256,6517,9683,7522,-9503,3217,-6278,4704,1115,1169,6470,-5088,-5929,4338,-5480,8048,-100,-6752,926,-8136,-8327,-6719,-6179,-3597,-748,-8790,-1274,-4218,-20,-9253,5501,-1360,8180,-5534,-2925,5107,8660,-4173,-6595,-7729,-3884,-4549,8433,-5539,548,-7057,1203,-6544,7441,7903,2636,-4610,-4261,-2183,-2721,1517,7391,3942,5239,-676,-2716,-6752,9887,2788,-9814,23,-9904,2351,1208,-5497,4019,9070,3156,-2105,-3879,-9778,-1397,572,-2459,7471,-6135,-6193,9523,-1776,7099,1441,7908,-2562,-534,5982,-7190,-4646,6298,9118,-6801,-1227,9662,6189,-4351,-2842,8244,8502,8748,-4580,-4173,8639,-2624,4554,239,9911,6398,-3805,-3914,667,6782,-6319,-6657,8694,-9448,8421,-3309,-8927,-9491,-8897,-7524,5775,-2787,5566,-6625,-1785,-667,-841,9034,-9837,-9255,-5414,4125,-1969,-4452,-1404,4005,619,-6090,-6182,1245,-8186,9284,4901,8042,-5563,-5110,3487,-7174,9893,3634,6800,210,7536,-690,-3538,8070,-4078,-7837,-3310,-817,3685,9166,3553,9548,4424,-8888,4060,6749,-1091,5664,-1517,9293,-9111,-1134,3704,34,3642,8500,-7463,6152,7399,-6412,-6409,-9446,3308,-7298,-8476,3847,2658,-1884,-5301,-2166,-5018,-9153,4993,-2405,9073,-604,6523,-2095,-317,4328,4085,-4492,-7644,-3435,-3622,4620,7394,-4762,2567,-9823,6920,8855,1886,1679,-8563,-521,4643,-5330,2666,-3472,-4490,6259,806,2537,-559,-9721,-1670,-4407,9121,8435,-7628,-2066,-8104,6519,-2824,-9387,2370,-2877,-5753,-4025,8559,670,-1117,851,9257,6659,-87,9093,348,-4008,9241,-6181,-7663,-42,3343,8653,-7643,8175,-8195,741,5998,8708,-6094,-1631,3471,5594,-8974,-5606,7761,9757,3872,-6120,8242,3649,-5453,-4044,6956,-1508,-8751,1267,8115,6876,5711,-9656,5701,6164,-8828,9419,-7005,-7319,1396,5038,8359,-7264,2121,-5463,-1872,6752,-4826,7515,5708,3936,-7336,-4430,9183,8819,7993,-8593,193,-6709,4119,4870,-4005,4863,1723,-2838,-3966,9167,6529,-342,9882,-9744,3902,-6235,4368,-7375,2940,-403,4745,5382,393,5713,985,3111,-1705,-3313,-1842,6898,7339,-7519,597,-2390,-239,-9185,-8371,6184,-1974,-545,-9540,-4324,601,-5405,-8006,-2637,-6187,-4383,8571,-6346,5295,-3635,6178,2153,7284,7376,-2266,-9655,-6418,7783,-624,8645,2484,2211,1819,4199,4517,6840,-3706,-2715,-3918,-3138,4410,4394,-6468,-4986,8657,2254,-7839,7316,5293,894,-3156,1854,1626,-998,6007,12,-3789,-8727,-4446,-7505,-66,4847,5099,1246,948,7516,-4725,2508,-6493,-9406,1535,2066,-734,-3770,1164,7006,-8686,4573,3446,9575,6822,-4889,-8790,-2189,9327,-1512,4486,-7017,-9575,-6909,-970,-380,-2138,1217,2860,8636,4249,-3773,-429,2874,-1798,7989,-6470,7392,-1561,3183,1739,3840,9673,2189,7136,-5482,201,-4300,-547,6902,-3294,9894,-4402,2535,1673,-2165,-4471,6273,-6994,8608,-856,2121,-1918,-1667,-6795,-2623,3311,-2544,5268,-6234,-2730,4552,7650,-2311,-3572,-7755,3011,-3706,6304,6285,-7897,-461,3056,-8863,8131,37,-9225,6981,9544,3246,-4975,-8046,-3295,1351,-1045,-5258,1490,-2067,-5789,4827,852,2462,5069,-7035,-2219,8869,4095,-8630,85,1002,7876,-5666,5657,582,5616,-442,-3724,-4507,-4567,2316,3189,-4755,3796,-5316,7887,-1337,-1814,-8342,-1311,8449,-2665,8744,3722,6247,-6517,8445,2710,4044,15,5361,-9033,2052,5295,-5654,-6836,8964,4841,-966,6618,1646,3687,4422,-9930,5600,-1690,3245,-5319,5928,-1183,-9215,-335,7194,-4833,989,3259,4723,1383,6012,4912,-3839,2201,-8771,-7731,-8513,3457,-4217,-7863,9274,9992,6596,-4720,8379,-799,-275,3293,9095,9885,-4291,-1425,-3099,-4938,-471,3219,8986,61,7843,-7063,-8834,-1190,5136,-5594,6783,-7644,-1065,7979,-6627,-925,1327,8925,9927,-382,-5331,5940,254,7288,-8556,9588,-2284,-3870,-4552,9125,-5461,-7404,-6564,-785,-68,288,594,7011,-5966,-1497,519,6907,4542,-5933,-6125,-9055,-9784,3328,-1121,-5740,-4337,-8506,6476,7659,5740,-1140,2859,4617,-6860,-1997,-6669,-1264,-114,-3175,8014,-9400,2862,1133,-1821,4389,3952,1,7402,7913,5782,-6992,7337,-6984,5108,-451,-2064,-7565,-9838,-341,-3119,5118,2110,9325,9004,-528,-6927,-2567,-4561,-5020,6061,-4460,-996,-1619,-7899,1457,-3614,-9762,6121,459,1905,2240,6122,5331,-5810,-1506,7696,-367,7677,2172,9097,-3502,-7930,-9420,-4813,-9092,-9106,4019,6438,-4989,7421,8000,2602,3016,-4702,2212,6755,7491,-4390,7414,401,-338,-9464,2662,2747,6211,5661,5744,2632,-664,-3012,-4881,-3856,-8936,-7059,7145,-947,9890,3126,2726,1033,7496,4461,9037,8246,5007,-2123,-3942,511,6874,1512,-3207,5815,8439,-4199,7829,1578,270,-9556,-2995,-2156,2058,318,-1976,2727,-5088,-4497,4413,-8983,5048,-2592,-8082,-2705,7009,6622,1887,-4655,5751,-7198,4529,-5724,8467,-7865,2285,-9080,1352,7403,-2372,-9768,-3838,6238,4514,8438,64,-6721,3046,2033,-3532,-2895,-5910,-9988,7477,-5981,6565,-5925,8064,-3403,4763,7129,9189,-277,2430,-3643,7870,-3322,205,1692,-6959,-16,-8215,9512,-4989,-3011,-1674,-7542,9432,8155,-6806,2101,5271,-6851,-6442,2605,4341,6039,-2459,-6520,-6094,-7138,8275,-6110,-9786,-579,6124,2981,-8607,-5413,-5322,8334,4332,6032,3093,-6573,-9105,-6868,-2749,-6171,6589,9948,2466,964,6705,3630,-1390,-1554,4678,8379,5512,-2897,-7612,3115,-6484,-2503,4538,-4524,2855,-8537,-716,7515,6263,1352,4731,-4899,-1639,-2175,-3967,8516,5924,-8256,-8576,7420,5389,-3959,5563,-1117,3535,4405,-4946,-372,-9837,-4238,-3711,-7645,-5154,-7487,4820,-9736,9517,5151,5525,2159,-1928,6383,6246,1312,9299,-36,369,556,-7305,-1251,-456,2091,-3925,-1544,4138,2271,5557,5038,-3738,-3789,585,8158,-9046,-7663,8364,9330,6777,-3087,1454,5676,3814,-5796,-4326,2191,-8788,-4586,-7155,-8196,-7034,-3865,-2309,-8306,6886,-2970,5251,5426,-1669,-5418,-3786,-298,-3306,-4471,5100,-5695,8893,-770,1635,8556,2188,1042,102,-2958,724,-674,-4051,-3411,4467,-8319,-6330,-4778,1788,6328,583,17,-2200,-6665,-4570,285,-5715,9656,1427,7547,8021,3451,-5717,4171,-73,-6428,-2505,-799,-3049,8971,-7224,-1479,4947,5119,2142,-5542,5976,-3126,-1424,2004,9947,5126,3911,5957,5866,2163,970,-6688,-6090,-4031,-3101,8964,5612,-2261,7447,-1107,63,6720,1458,-9425,-7521,1888,-9707,-520,9748,4241,371,-6037,7553,-9435,4579,6250,-3420,-8912,8705,-9204,5523,-8667,7351,-2438,2622,-5522,-6721,-3091,-4979,7119,-8492,-836,-1446,-9401,-5939,6606,-1506,4584,3863,-8703,-212,3251,488,-6278,5732,-7716,4456,-5722,2179,-4100,-3680,-1610,7123,9940,-801,9948,5506,-3291,-5968,-9863,5469,-5733,6394,9556,-9431,-1452,-8015,-2126,-8995,9011,-5425,6877,-1787,-6542,4621,-6825,9800,2029,5493,3587,-6933,-7106,9111,-3598,-3751,7175,1036,-6165,1561,2342,-4291,3552,320,-9536,-3403,9065,7620,-3157,1291,5111,1079,-5662,-304,6499,7810,9238,-311,9037,-9667,3392,-8603,-633,5230,-8852,161,3305,-191,7275,-2711,-1358,-4385,-2988,8135,-1766,-2368,7595,6376,7812,1983,-8775,7251,6538,-9180,-3098,2205,-8955,-9534,2371,-2315,-11,-9348,-9302,-6282,-2382,-7350,7862,1737,6746,-75,7945,8806,5661,3897,-2803,-5003,-8462,2485,-3116,-8609,-5966,-2026,-2985,3805,-1805,-5702,-8087,2177,-8131,-6330,7264,9385,-2694,4644,-6311,382,-1274,-5433,5805,1278,-3261,-4675,-2745,-6175,-2871,-7154,-8786,2816,-6253,4502,5956,-3773,-7715,7102,-9048,-3564,-7393,5654,-1084,-3155,2740,8764,-5110,-6598,4112,2173,-8990,5335,9887,-3304,6728,3277,-5987,-396,1819,-1876,-2155,-1571,-9589,-8235,-2182,8579,-6718,-5541,152,1591,-6994,-5735,956,5564,7124,-5491,5000,-2182,6419,9180,-5387,2983,7568,-676,-6028,-956,-4779,-3795,4391,4683,869,6325,-7998,-2057,9886,5983,-9208,-5231,-1348,3465,-9453,2021,9177,2662,8436,2586,-8317,6797,-9930,-5396,9957,3112,5602,-7976,1179,-7912,-5009,7913,9147,5864,5252,-2102,-7979,4410,-5218,8051,-7899,-220,-9523,-8577,8874,-6216,6567,-7967,1804,3085,-3992,-4928,3943,1901,-3700,-8039,7721,4069,-8653,9099,7890,-8197,4852,2456,-5338,-8476,9557,-6326,-4243,-4886,-8613,8212,-4681,-7036,1958,-817,-5935,2857,5533,-1340,-5024,9029,-4702,1551,4899,9133,9591,-2873,1393,5112,-7898,7899,9322,-6599,-2221,-6902,9258,-9503,-1493,340,-6159,8538,1227,7235,-6115,1745,-831,-2980,-6943,2222,-4268,2408,-2201,206,-8382,-9505,9338,274,9304,2692,-2725,-1853,8089,-6966,-1993,-107,-7352,3391,1309,-6895,9477,2660,-297,8798,7781,-5086,-4972,-773,-6983,5495,5395,7604,-7452,-7375,-1522,-5067,-3652,2123,-5658,-3968,-5719,-1748,-7575,3255,-2528,9875,-9539,9661,3711,-6281,8205,-3908,-1850,-5642,622,-6770,-5039,8323,7055,-9715,-8749,3828,5973,-606,-1237,1561,-615,-6636,6627,9931,-2195,7561,-1685,6829,-7760,3791,-4423,3271,-853,4974,-7654,4217,-7381,7717,-1565,9901,3589,8170,-5786,3409,1796,-1917,4354,-1434,111,1990,-5310,9196,-4681,8882,8503,438,3022,8103,8901,-669,-9152,8379,5298,6637,-8523,-1921,5533,-2952,5429,3776,-1916,-683,2430,-7340,-9487,2856,-8530,7010,-6647,6910,7157,-8018,1697,1824,1842,-6274,-3997,9752,-2789,-2553,-9124,3195,-2511,859,-4213,-9148,5112,-7322,-3944,-4949,-5573,-52,-6596,6999,3974,-6305,-9783,-4309,-2214,8147,9901,-9421,-9791,2398,-717,1061,-3735,-6540,-3102,8416,-2837,-8332,5791,-7052,39,7864,-5271,-397,971,2919,-7135,4549,-7793,-3458,-1223,-892,-2167,1110,6580,-4629,-8245,8757,5727,9648,5481,1554,-9130,-4206,-5129,9792,-7923,1770,7445,-3912,-8594,3562,8391,4110,-9534,9354,5032,1205,-7083,-4580,5587,-9408,-7390,5705,4750,4317,-9678,-5124,113,-6204,-1876,-424,4437,-2476,-8010,-4459,2098,9721,-4242,542,-6316,6880,-7234,6481,-9935,-8867,4618,9631,-4461,-9387,-4580,92,3436,-3519,-6544,-9404,1973,3148,-3266,2219,8365,7885,-4707,3946,-4619,-2217,6991,-2690,-6235,-9426,-7255,8223,-380,-8131,-5487,5023,-4435,-2128,-2712,-3718,-9970,3528,4832,4339,4345,-9018,-8444,-8532,-316,-330,6634,5828,-1056,4830,5793,9081,-9168,2813,-7618,-8319,9073,-7532,5411,5506,8924,437,427,6532,-477,-2824,-6579,6237,9051,5941,6971,-7374,-5706,3952,-2421,3771,5811,9092,3761,-8175,5989,6533,-9889,-4678,-7078,5937,-4106,3277,5690,2942,3759,-5145,-2197,5562,-1841,2393,-3365,8470,7235,9837,8108,6597,-9797,8315,-667,5604,-1196,-9784,3856,4007,9140,-7146,-3130,6357,-8815,-1579,7244,-1270,-1957,-4682,5405,-1466,6864,-6854,-7938,3368,7558,9299,-9111,2442,7555,-4882,740,7025,-2951,-8255,225,-6695,7597,-4904,5291,-4225,1272,-9334,8501,7243,6713,-7198,8467,5059,-9985,-1871,-9002,-7477,550,8247,-7163,6186,-3152,-6496,5793,2531,9536,2592,-6140,-9797,6590,-6215,3017,6350,-7474,-1034,-647,2044,-5177,-7673,-7301,-1981,5666,4806,-9764,-9417,1592,-9960,3402,7031,-9119,-4630,-5869,1988,3022,3608,-5768,4969,4545,8594,9480,9789,-3925,6302,804,9771,-8146,6480,973,-67,8162,6518,9225,-9098,3198,-2052,7669,4,2257,4999,8334,771,968,146,7345,4608,-5851,8392,4530,-1405,7135,9827,-971,5144,-6471,-734,-2822,-7227,-1334,8246,5133,-3504,-7416,8016,2351,4647,-8068,-5450,-7536,-7984,-3221,-315,5356,5133,9501,-867,-252,-997,-7511,-4731,9012,6064,-1883,-5750,3064,6520,3529,6689,-1871,-3101,-8474,-5591,6439,-7659,3958,-9549,7881,6082,8559,3145,-9326,1514,-8829,7183,-2585,7400,-1166,-8332,-7925,7062,-7810,7843,-440,-2222,7052,-3565,4123,6951,-1087,6283,-4813,9070,4947,-240,35,-929,2437,9026,-2460,5493,-1063,5499,9428,-4582,-6956,6186,703,1434,-7256,3287,-5279,1635,-6410,-7614,-6043,2607,-5012,3627,-7098,-4135,-6005,-9398,-3486,-2306,-7741,-1064,1565,-8305,1030,-9759,-4264,6177,-1030,-5245,-5206,3148,-8867,9015,-8355,-9547,7140,-4845,5653,-2089,-8586,3180,-3331,-7188,1740,-7875,-2665,-4221,5652,-3802,-4939,-5041,9801,1941,-6101,-9473,-5051,-9812,-3924,-2761,7901,-8780,-9766,6349,-7609,-2295,1901,-5207,-5548,5439,-9740,-5351,-9201,-2048,120,-8759,8815,-8964,2201,3435,733,6133,7046,-8675,-8602,-5789,4750,4839,8703,285,-5181,8277,9580,6892,-9334,-2379,2290,-3899,-2363,1572,-2506,2136,5085,3657,6209,5220,-758,-6474,4087,-7401,7609,514,-1624,5165,-4117,1639,-3659,4370,-264,3600,271,9007,-3061,5356,-6682,3765,-670,7477,-6709,5013,3677,-6864,83,-2901,-8765,-8642,812,3084,7516,-4144,6183,-1809,-286,-3027,-2416,-2298,2815,3099,11,5143,5148,-4064,4444,-8213,-1373,5236,-7977,4980,8165,-1376,-2722,-8990,-8135,5628,-2590,7244,5930,-6037,-2661,-7967,9750,-5206,-4540,9873,6800,-89,2359,7408,-549,-5817,6498,9945,-8897,-1454,-5738,-6335,2390,-4656,-8762,-3011,-3728,8899,-7888,-9612,1860,-3236,-6783,569,698,-4667,7875,285,3480,7733,-47,-7840,-7180,5576,6307,-8929,-6212,-4992,1666,4840,2782,-1932,-46,3290,7906,-5366,1275,4479,-8523,-5206,2955,5666,-9971,3707,6638,126,4996,-4327,-8926,-5475,-884,-7430,-1877,-5806,-9713,-7877,5950,-1626,-2354,8686,77,2579,8256,5570,7028,-9078,3332,-8244,5968,-6657,-1914,-9183,-6119,-7674,3971,5900,4090,-6667,3390,7281,1289,490,214,6071,-1085,-4588,-1509,-459,-9789,4081,-4702,-9700,-1325,7766,127,-7451,-5115,-5599,-2137,-9195,-9553,162,1027,2121,-5061,4072,-9321,237,7107,-3164,616,-2476,-9633,8767,18,-2342,-9153,-131,7819,1944,-5208,-2208,-2480,-9444,-5983,-5001,-3704,8516,-2085,4998,3074,-1315,1309,-9762,1206,-8458,2414,3364,-6072,3801,197,6245,-9551,604,72,5919,1154,-5186,-3003,-4269,4426,-3566,-7259,-8411,6762,-7973,-3273,5183,-8758,-438,-3716,9680,-3050,-9506,-6715,2666,6553,2739,4190,-6535,-1529,2800,-3638,-4973,-7443,-8882,-8955,5595,2255,-5196,-2583,1209,-8489,3701,-8910,2909,652,-6236,7653,1591,-7536,-1579,-695,-3317,-7937,-446,-5988,-7473,-9089,1299,-8446,-2062,256,3541,8689,-605,-6704,-2811,-3580,-4062,-9689,7522,-4803,-6497,5411,5632,-9316,-7645,5718,-772,6947,-330,-1888,8701,1356,2702,8270,-1812,-9696,-9595,-3956,-8284,5223,7481,1732,6800,-5504,-568,1996,7271,494,-7628,-2907,3563,-8754,-6105,3034,7181,9731,1438,3321,4395,596,-6160,-1302,4732,6535,-3950,6462,-1121,1383,-9328,1442,-6216,6077,6902,1391,2740,-1303,-7384,-9599,-6111,-1166,-176,3985,-1944,-139,5313,6312,4,749,6145,-989,-4795,-8261,-9589,6955,-7324,4014,6760,-7329,-6029,8352,4001,-914,-2335,2955,7643,-6150,-3820,3855,-3792,632,-642,-2519,-8109,6775,-689,2667,4677,6361,5301,2097,-9521,9207,-5705,-6867,-9072,9879,9667,-3609,8450,-9437,-2794,9546,2281,1456,-3632,4447,8511,7505,-7874,-4950,521,5187,-6265,-1704,-8931,6773,-5153,1649,3302,-1275,-7184,1430,9147,1697,9719,-7764,6267,1520,-6496,-1317,6063,-8383,6287,8821,-1087,-214,-8940,-9168,-8068,-2517,8405,-6963,4674,5773,4738,376,4202,-137,7328,-1844,-8690,161,935,-7361,-1675,-5515,7645,1421,9571,7820,4189,-6887,852,824,-8266,-797,-5839,2781,-9739,3364,-7059,4174,-4210,-7937,-4147,-5722,-4697,6640,-8691,-7368,7977,1045,8279,-3762,2527,-1536,-4228,7771,-5197,-5597,5023,2468,9255,9958,-6924,-9839,-5526,5267,7691,-8903,5527,7535,7031,-6248,7897,1394,2840,6449,3408,9594,-3809,-2540,4810,1562,4798,-3723,6886,8168,-3427,-3775,1574,1795,9190,-549,-5695,5920,-353,-2232,-9190,3098,-9972,-5662,-1614,-677,-8456,-3729,897,-7220,-5707,4699,-8964,9578,-9406,-7578,-1011,5192,-1490,9989,-8391,-7621,-7638,-3278,6203,9483,663,8620,4085,8746,-192,-2142,8046,5066,6612,5832,-9299,-5981,-6067,-1330,443,8901,-5196,4392,5023,6283,-7767,8277,-6686,9756,299,9025,744,-4012,-5397,5774,-1544,7302,-5418,-5377,-3566,40,-8433,-9812,-1892,-9905,3034,-2905,7459,-3413,5945,-2817,2220,5139,-5950,9581,3769,5720,-8920,-6241,-6320,-1184,-4036,5309,3829,-7530,-5552,7371,8773,-2684,9545,4818,-3364,-8144,6899,-8594,185,-9272,5850,3222,5056,-41,2560,-7689,1137,-5688,-6705,3254,9157,-2760,7942,6089,-349,-8410,1834,-7096,285,-9246,-6331,2162,7834,-5203,2220,5886,5362,-2083,115,1338,7822,-2642,9519,-4537,-6202,5202,-331,1590,-9363,-7652,9746,1479,-7208,4685,-9801,2412,5420,9162,3952,9425,-9645,-7214,7886,-6603,4477,-9720,5380,-8897,-7294,5194,8036,1430,-3761,-7462,-1132,6248,-6862,6293,-2292,-497,5778,1094,-8205,3907,9818,-7021,4332,-1608,-6914,331,-5060,-7127,3463,-7379,-5885,-9195,4207,1988,404,7049,-5230,6236,-934,-5550,-4531,922,-4785,-8768,6283,-3279,9121,-7680,-2691,8281,-1175,7087,7405,8428,-7005,-3542,7585,-3894,-7677,2411,-9654,5462,6598,-8660,4421,-6766,5709,2687,-6368,2058,3442,-2102,800,-7282,6118,-7624,7500,-2070,456,4255,5863,5148,6010,2646,469,-4503,-7726,770,-6517,-5119,4717,1730,5134,-3626,-4413,7321,7809,3604,-8531,-2710,3223,-2287,7973,-5481,6242,4652,46,-8705,2758,-5069,-1805,1233,-4639,-9769,6082,5848,5942,2731,3715,-6173,7089,-8641,-7288,6513,8976,-5308,-9634,4876,-5467,-6728,-8173,-7130,7079,7972,9475,-1236,-1397,-7145,-4299,3740,3104,-6666,3429,-4934,6315,5033,5128,-9844,-3757,-930,-494,1728,-91,820,9135,7251,5055,-9803,464,7023,6706,-8638,-5465,4491,-8761,9604,-3550,2651,-5849,3785,-333,-3888,-4417,-2937,-2419,8553,8945,-6256,1168,-5733,2576,-858,-1570,-1251,-7606,5972,3612,2252,7339,-5650,6760,-1608,3441,-5561,-5878,8525,4695,4051,7109,-5209,-6376,6105,4336,1361,7656,7120,-3370,-1543,7040,6602,-585,-5832,2522,5853,7254,-6114,-2611,9922,8547,-8457,2937,-7573,7534,-7071,-5724,6655,1176,-4548,-110,-5502,1057,1069,3006,8092,3808,-9084,-8932,2451,-1568,-7276,-8114,-9779,4204,2756,-8026,-5701,-5861,4116,7213,7724,-5627,-4000,-575,-9581,6965,8766,-7329,-3699,-2998,5175,-845,8188,-7540,-7915,-4500,-1613,-5800,-5333,-367,-1973,8482,2214,3938,-6625,2263,1878,4793,-7292,-5225,-9235,-5471,-5625,-1249,3034,-8762,-2374,987,8506,-2063,4245,-7349,7339,-2478,4990,-1008,-21,-6249,-2952,-815,-9580,-5053,-1971,-1245,6830,-5119,732,-4275,334,-7867,-1107,-4791,-6092,-9160,3707,779,-36,3217,1140,2985,-6216,7295,-4492,-5964,-9784,929,-1580,390,7272,3833,-689,671,-8923,6018,-3527,7805,9471,1252,-9461,-2912,-6544,-83,388,-3343,5691,-3833,9056,-2921,-7167,8385,2617,-3665,-9120,-531,-5753,4634,4594,6631,7465,-5633,-5475,3167,5472,-1413,-1448,9822,-4359,-2236,2047,8054,7832,4628,8671,-1816,-5356,5258,8273,3876,6837,-5326,-6739,-2662,9106,5691,1682,1955,-2110,5334,-3751,2677,-5490,-6188,-6213,5189,-2972,1831,9612,8800,8839,7892,220,4449,1666,-4069,9420,-3545,-8699,5031,-674,-2374,-6593,8980,522,3563,2625,8329,-5172,2030,9615,832,-4541,2442,1549,2194,9955,713,-6445,-7160,7051,-5029,-7612,8291,-3961,8067,-7655,1122,-9363,5335,8118,-3230,1489,1720,2721,4131,-3854,3915,9672,1385,2774,-1040,-980,3199,-3869,3584,7072,-2280,8859,2014,2123,7364,1304,-1705,4945,-6923,-9955,7082,-6590,-1114,254,-2899,5840,7656,-5314,1501,-8640,5529,7126,-7266,-2944,-6749,-9072,-789,-1023,-1894,157,-8283,9294,-1931,-7606,3880,5193,-9566,1847,1369,2756,-884,1692,9191,4497,6500,-807,-9614,-6670,446,4412,-8417,-5576,-5088,489,1977,7566,-73,-6609,-759,7408,-100,-5751,5254,-4141,6927,-6344,-3880,-8835,9017,-9522,1643,5833,-1007,5097,7317,-7683,6799,-7694,-6442,-3239,6267,-6569,-7536,-9422,873,2554,6403,-6194,6272,9641,3526,-9105,-9646,9383,-1575,101,3032,-6599,7113,-1228,-4816,-2027,9256,-2367,-3521,5276,1522,-4374,-3605,-296,9829,-6786,-9441,-2046,-797,7405,8668,-5730,-4756,1446,3516,5716,-9069,-2804,-4493,-9704,-8908,5887,-2877,8802,2249,-8918,-1588,8191,-2738,-6942,9917,-4209,1391,-4385,-8848,-8581,-9461,-5103,-445,8587,-1039,-414,-7792,-4838,6907,4152,-7645,-5650,9258,2737,1791,9516,-8021,-8813,8280,-2947,-5167,-7571,-1368,-6670,429,3510,787,-2591,7165,-652,5448,-4819,-5192,8214,-4647,-2626,-8274,6767,1555,6902,-4316,8537,7296,1502,-3934,1769,7337,1345,-8000,-9601,8728,-7323,-6488,-6497,8758,-1429,7928,2961,-1573,7005,9556,-818,7267,-2809,7775,5069,4107,-8401,4246,6774,4780,-2150,-2929,-6910,9665,-2779,-9997,-7765,8907,-5922,-9976,5110,7143,2604,-7414,-6431,8768,-4951,7995,1163,-8975,8408,-6181,-3955,1076,-3484,1299,2541,7090,-7749,-9538,-7749,344,595,-98,-6507,9304,5714,5052,-1062,1467,-1425,-707,7924,9477,9112,862,9491,3678,4452,-8758,4985,-2268,-6730,-6501,6554,-2057,6345,3462,-408,-1115,2639,4060,-1243,-2309,1447,5807,4901,7339,4705,7949,6300,-1577,3410,-7071,-3201,5810,4710,-1786,-4922,4517,2887,-262,1494,9086,8700,8339,7517,-7210,4577,-8381,-6952,-1259,264,3836,7215,3972,8284,-3926,-6116,-183,-4798,-9843,984,-8353,-6223,-9557,9420,7078,-9321,8038,-6671,-6530,-8143,-7204,6025,-5641,5487,1137,904,-5093,-8130,-1096,-7150,-9260,6534,4890,-4697,-4207,5287,2503,-6526,-8725,7011,7745,-3552,-8404,-8936,2264,-5561,8859,-1652,-4237,7558,828,2091,7880,-212,-9191,-5446,-8576,-2347,9663,7347,8656,-3557,-3576,4712,-8160,6520,59,-4407,3584,-8646,-5934,-8474,-581,3673,-8611,9404,-8390,-494,-268,8520,1208,-3055,-3587,-6859,9881,-8958,-3321,9594,-8276,-6926,4289,-2286,-5330,-734,-9317,-8326,-8186,473,5070,2720,-6074,-8118,1051,-5942,6138,-4228,9332,-2152,-7277,-3077,8486,-8131,-2727,8612,-6827,5684,5488,3943,1868,9691,-6352,3903,-5042,7193,5971,-4483,-3518,7688,-9467,5685,-5321,-802,9882,-3384,9613,-3442,-9228,6246,-3409,4234,3617,-738,-4331,-7851,6797,-2756,-3375,-9815,970,8337,8871,-2229,-4515,2234,7960,9417,5988,6327,191,-5932,-9037,-8630,8191,-9763,828,-3734,9298,2882,-9910,2657,-2629,6954,-3392,-7531,-9270,2322,8836,-575,4342,6753,-9470,-7721,-817,8883,-9612,3860,-532,-377,-7582,9554,-1901,6375,-272,-8425,2608,-6789,-5447,4881,-278,1484,-4151,-2890,9227,-9611,2516,-9984,-524,6003,-1855,9212,2329,1400,-6267,1137,-4417,-658,-555,-6155,-4325,-6199,9579,-6819,-5031,9347,-4614,-630,5975,8986,4200,-4636,5779,9587,7645,7715,7511,-7582,3129,-4713,4519,-9660,6283,-5228,7261,3966,1351,-9217,-3065,-5749,-5273,-3557,-768,8135,3120,8869,9112,7417,5126,-3446,-4982,7699,-634,-9116,-4621,3032,-654,2712,-2542,-4966,-9398,3943,1911,5315,-3362,1402,7774,7640,-3020,-1279,9449,5200,7909,2031,9773,-4157,-7633,-6932,8381,-1660,4702,-6822,7102,9382,-3431,-268,-5551,-214,-9564,1670,-480,6307,1387,-9494,-6410,-4197,8663,-7679,3365,2454,-960,-109,-6072,8503,5431,550,1427,5452,-9578,2608,-9164,1331,-3209,-7369,5092,9881,5249,6905,-4201,-1993,-4489,-1815,3139,457,-4671,297,1334,9950,-9425,-1793,-7917,3025,6156,7987,-7121,-4287,2649,-7321,-9926,6812,8514,-1230,6687,2717,6199,-9891,-2783,2943,7159,4058,-1267,4564,6819,-5167,-2555,6065,8956,-6084,935,880,-1718,6914,9687,5576,3114,7011,8223,-9297,-2149,4332,-546,-9163,4019,1485,-5089,-5489,-9463,5927,-3166,-9120,7008,-2747,5239,2825,5873,6336,1960,-162,-6822,-576,3054,7458,-9566,-5356,-8433,8125,5829,3364,-3945,727,2532,8794,-1279,-4869,4745,6214,2411,5786,4447,3569,8238,-4675,-3340,-7330,-4176,-3281,7735,-4384,829,6040,7415,7664,4083,673,-1851,-5022,-4214,-7200,-6799,-8996,-1257,7271,-7258,-7227,-1351,-7039,-9943,-7123,7341,8963,3760,6671,7095,-4012,-48,-8223,-2796,-1615,-1007,6135,2738,-8880,-4329,3954,1277,-3745,-6056,-9979,-9305,3313,-7416,-8413,5477,-8410,4965,-4178,-9514,4104,4235,6175,7988,-91,-2798,3950,3643,5334,-4705,3498,2989,8563,-2065,2975,2218,-8789,9901,9318,-3549,9544,7769,-8714,-5220,-2467,-9055,-3676,5988,-3702,-9437,-1360,-8168,7823,-9091,-8723,7426,-9138,2722,5272,-6989,3485,3552,4458,-8490,6403,105,-2357,-5633,5116,5092,-8867,-3555,-7182,-8914,-7030,931,577,-644,477,-4484,7115,-4645,-6587,2728,4282,-686,2317,7586,-2020,-9880,7849,1027,6718,-4492,1172,978,-8740,3116,1207,905,-1855,99,-8449,8452,-7608,8397,5419,-525,-984,6526,-6585,6067,-9507,7455,9452,3272,-8827,-3557,-1722,2210,-9754,1787,2399,-4611,-3066,-7447,8155,-2088,-3068,-379,3931,5105,-412,7503,7153,-1260,9197,782,284,-5571,-9425,4804,-1514,5138,-4740,4832,-6497,-9437,-1777,2198,-4330,4624,-1692,-672,-5760,3914,4412,-1570,-398,-1663,-9215,-4371,4567,-5729,-6663,-5720,1814,-541,4091,-9455,7072,4249,5181,8363,8894,3883,1474,8696,8614,5032,5912,-5002,-9438,9095,-3235,-9942,-259,-4525,2045,5209,-1130,-7140,-5205,6947,-3760,-8329,9336,-3065,1728,-2782,6569,-3844,4210,3493,1962,6279,1239,-8717,-1501,-7727,-229,5915,4553,-1400,-1745,-4939,4352,7757,-375,8884,321,4454,7452,8572,9420,1696,8379,-8843,3959,-3255,665,-6352,4831,-6012,-8318,-2997,-8850,3395,-2247,9154,-3466,2977,-1781,7094,884,-2455,867,-4758,9421,8516,-8663,-1732,2334,-1314,-5511,4629,-6992,-1015,-8052,-2565,6753,6423,2416,1859,521,8528,-5823,-4305,-2266,4236,3315,4325,-9401,1891,4658,-9149,-4658,-6204,-2854,-9784,9167,-8325,-2334,-8821,2776,-9484,8253,-3875,-3285,-5810,-5509,4610,3999,1731,8994,2063,3676,9549,-2075,6132,238,-9284,-1682,-5398,4599,4104,-1486,-3563,3940,-2801,3009,-9663,-3397,-289,-9306,-433,2140,8698,6029,-180,-3381,4744,8826,2568,9643,3542,4129,-8311,7644,-4717,-2696,8674,5872,-1320,-4468,-1148,-9076,-558,-7509,2265,-8016,5678,-4035,-5704,6078,2681,7987,-8966,3666,1923,-4676,8180,-837,-5149,-6247,8414,6458,-8125,-4110,-8394,-7544,4268,-6307,-3712,-8365,743,8337,6731,1846,3062,1215,-2929,5773,-6754,4429,4918,-604,-6797,-3461,4788,-3875,6553,6871,-2736,-4275,7595,-7876,6334,-2758,-786,-9339,4628,-2576,-3913,450,-1217,3556,-5903,-2562,-727,-9928,6463,-6536,5351,6456,8199,4334,-5943,9066,6737,-9577,795,3081,-9417,8516,-983,-5492,-7974,-8829,-6981,-8268,-8865,-866,-3442,-5452,-680,-7821,9913,-5044,-2217,-2911,708,9088,-3831,-3446,4089,-9703,3428,-7279,-1102,1952,-6999,5783,9057,-2012,-2292,1866,9027,-6330,-7141,-4886,-740,-2421,5072,4867,-3008,-1643,-1327,3682,2579,-8265,3577,9396,5118,-4802,-7755,-7889,9936,5054,-7879,-3038,-1482,3103,-7808,-3505,-3278,-1479,-3450,-3396,8590,564,9323,6935,4041,-9356,6157,3687,-186,-9843,9262,2792,7355,306,6690,-1221,-3650,5354,7351,-3730,1967,9705,-2871,-9638,-9906,6358,3311,-4484,2294,-4274,-749,5175,-1245,-134,9661,7601,-2773,3699,-2854,4217,-8340,2688,7641,-5425,-4540,1191,7097,9199,-2710,-9779,2526,-5558,-6540,6040,4001,-7132,-7061,8258,-5139,4378,9782,-8703,-3925,5011,-1467,-232,2473,4367,-5961,1614,1373,-4931,-3469,5837,-8195,-93,6794,-8836,8029,5633,-9121,-769,981,-1629,4301,-9793,3879,-9551,2916,-3373,3980,5032,1701,-6957,-3190,3637,8359,3282,3681,-4980,3005,8016,-9087,2171,-4081,-144,6232,221,2798,-9242,-3017,6278,8652,7110,8702,6803,6329,-7626,-4984,-9495,-4029,-3770,7388,3582,-4042,4808,-3623,-2276,2440,2820,4061,-1000,7071,-4238,-7722,-171,-5230,8743,-2838,-680,9080,-9134,2013,887,7282,-7677,3406,460,-235,7864,2641,6280,-6229,1672,5412,-2815,3272,-7228,9314,3928,7769,-6646,-450,7922,4941,-3624,-5204,1290,-8218,-361,-2451,8194,-5607,-56,-5168,4777,5702,-2630,2756,-2647,-7424,5927,-97,6512,-7704,-5996,-5608,-8181,6526,-7115,-5538,-8978,-6670,-4638,4453,9158,5771,-5802,518,9840,-4423,-7449,-2321,4637,-4935,2423,-3720,1270,-2724,1694,-7678,7351,-1586,7408,-3289,-2662,8031,-8803,8091,-5360,-9328,3212,-5815,4569,-1961,6224,-1890,2333,-6797,-7995,7363,-5254,-3720,8360,-2841,6840,-180,-8445,-2205,-9867,7329,-6865,-2257,-929,9637,311,5650,2722,6566,7089,4122,624,4074,9685,-816,1921,4800,2434,7280,9874,-3379,1929,-4508,-2697,5330,-3142,5543,6013,1000,9152,-139,-2930,-7358,-6403,2369,1417,-4849,7916,-3940,8138,-2570,-2048,-7533,-1648,-4302,-7316,7954,8978,9933,-6927,3397,6452,-4832,5217,-1277,721,9805,5397,-5908,-7789,1753,-9480,4471,-8577,3576,-794,4992,-447,309,-6842,-1935,5880,9984,-1478,-9349,3144,5807,-9187,-6650,-5065,-2172,-2036,-6231,8202,-9241,-9789,-4464,9852,-399,-3456,-8746,3855,-6927,-7598,-8253,-198,391,-7438,8031,-2355,7301,-1211,-3780,7892,-356,2137,9844,6335,-6583,-951,9820,-9721,6619,-3391,-4064,-9533,5907,963,547,8577,8714,9711,3785,1226,-9139,-3489,-2554,-1667,16,-229,-499,-5565,5183,-4046,-1562,-751,-5213,-6175,-1155,-8023,-8351,8177,-4835,-8819,-5384,-5147,-2896,-3034,786,-7307,5429,-1284,9345,1563,-2515,-4205,-6542,-1739,1962,1546,1085,7282,9938,6150,-7366,-8951,-3617,3705,-3685,-2190,-9412,2882,-4592,-3993,733,8587,-9739,-4,-2748,-7372,-9807,3434,-2394,-858,-9365,2404,-4578,569,-4163,-7941,-7381,-148,-1389,-3855,9369,3588,-6500,-9979,7996,-8592,9888,-1810,-6560,-603,-9114,9600,-9343,2891,-3094,1928,1395,-7801,-3963,-7264,8135,-3396,-2129,-7534,8202,6747,-8712,1074,-2085,5415,5148,7906,-9802,-241,4562,-6754,-7645,6927,-4727,2403,8657,3915,7601,1223,-5165,-9146,-456,7403,4540,2569,-1792,7236,1451,-501,-5470,-2912,-4735,-5478,879,-9932,1676,-7203,-6034,5634,-4919,-5947,5891,8015,-5069,5784,-1946,8163,-3603,-1405,-2778,-9092,9198,3336,-5005,9315,8236,-7894,-3023,-3644,-1017,2807,-9237,-2757,-5937,5269,3419,8106,7684,-2369,-1284,-8328,-7873,-6465,-765,-8142,-3012,-7945,4586,5545,141,8806,6043,9250,8761,5036,4674,-3553,-9011,8157,9670,-6192,-8863,1525,3596,-5190,-8762,122,6346,6240,-7450,3705,4194,-3199,-4833,8680,-5485,-5587,-772,-6861,7334,-3357,6576,-5513,-9631,1747,-223,-3011,-2821,1070,-9573,-2522,3582,-6263,7,-8870,-7228,-7282,-9466,9721,-7239,4180,-6213,6633,-4643,1761,-4108,-7061,-9155,376,6272,-7451,9559,-1842,1907,2055,-706,2504,3311,4243,-5250,-8612,7757,5348,-8827,-2605,-5624,5765,-5886,-5348,5797,-6461,-3664,5789,4503,-8755,-6106,6607,-393,6562,5578,-4058,-2878,-2657,-102,-372,823,-9170,9288,-8818,5101,1007,-142,-628,-6053,-8527,-3035,-7155,-5698,-8480,-8335,-7991,6356,-4494,-1141,-6794,8134,-8544,1087,-3900,-1464,-7199,-3446,-3249,-7407,-1631,2255,-7113,251,5267,1301,-8218,970,5882,-8819,7965,372,8604,9951,-6754,-9824,5357,6507,1754,-4387,4255,-5724,-8663,9436,-9260,8568,2377,3203,2026,207,5298,6062,-10000,125,4864,-3183,-163,9282,-2011,-8232,-5002,-2988,-8296,-9668,1504,9346,3378,4673,-8637,3272,6582,-8411,-5772,2078,-5630,-9931,4919,3914,8206,3017,-1867,3985,-302,7628,1702,9137,5569,-8990,6181,3641,-4880,3925,-8932,636,2289,-5231,4117,3814,6571,-8964,-1598,5824,-995,-6984,-8075,6690,-222,-3203,7653,415,-409,7379,8269,-9601,8175,-2497,-2639,-2792,-3370,5248,-9483,7946,248,709,5409,-2750,-2401,-9427,-6473,-7812,9326,-9568,9898,-6895,-1956,-7511,531,3722,-8478,9498,-3450,3822,7884,571,5684,-3175,1638,7689,-681,-2642,-3594,6480,9211,8052,2697,-7523,3389,9288,5280,-7735,-612,-3168,-6446,7496,9226,8532,-500,-2072,785,-6461,-1195,6106,-9223,-2191,6342,3101,2799,-6705,-6887,-3236,-8907,-4769,-8848,-9676,803,7987,-5674,9662,-2007,-5216,1178,-5401,-7459,2569,733,5472,6628,-3118,-456,-5908,5625,1102,7295,-527,821,-4037,-9030,5434,-7044,-2202,1184,9533,-9284,7643,2014,-4664,9518,-5976,7815,-7863,8495,-4439,8982,-5781,4521,-7106,3023,-9244,-8518,3743,1276,-538,7704,883,-5095,-8450,-6056,4379,2739,-8167,6710,3957,626,-2209,2532,-6967,-7275,-4828,6963,-4120,-818,-1325,8138,-7786,-8758,-4367,4638,-2333,-5189,7860,9650,7318,-1068,7646,1113,7878,-5412,-4391,-4243,-7910,-7061,-2151,1055,142,9932,-7216,1771,-6828,-5539,-3858,4016,-8072,1812,-2826,6815,989,-3558,1822,-1570,-2083,-3250,9499,-1368,-2613,-9154,6507,-7654,4649,-8656,9993,-591,5713,-9143,-4475,-7265,5606,-4471,-8961,7002,-5168,815,-8016,-1189,-3849,-3347,-7975,-8194,-4424,9564,-4158,1492,9035,-5094,531,-3253,-8805,6698,-8216,3541,-9255,9677,5958,8234,-7388,9337,-6752,7570,-1674,3994,-1765,-8716,-9950,-2943,8555,9505,7029,-1169,-2107,-1478,2861,9702,4498,5486,9095,-3230,-7954,2790,-2909,7992,3375,-8898,-9445,-3699,5808,2964,-5050,3436,-1934,7303,-33,8514,2772,-152,-1126,1281,-1228,307,2315,-3810,-9522,2959,-6477,2550,2456,956,-811,-335,5860,-7299,-5589,-7,8145,9679,5801,-2404,-4202,2965,-2903,3615,-9027,-7098,-1046,-9072,3608,6454,-2735,-1490,2337,3078,2631,6028,1881,-5108,-7787,2572,-1757,-9433,-1450,-2941,7525,-8036,-9839,-7605,5018,5008,8342,-834,644,1053,-7163,-4219,-4972,4942,-9866,-8717,3283,-5353,902,1887,-4880,5894,-5165,-6918,-509,-2496,-8256,497,-5657,-6543,6226,-1683,-8189,4671,922,7846,4843,-9580,-6844,-9480,4572,5277,1379,9387,1729,1428,123,9303,-9046,-7892,8850,8895,3820,7302,-7058,-3891,-243,-9290,-6250,-665,-2134,-3374,7328,-5396,7234,-462,3695,7475,-1525,-2862,3745,-2205,-5817,8119,2704,-358,3563,-1309,-7114,8049,-2751,8897,-9764,-2387,9550,3699,-4248,4726,3284,-318,-4928,-8130,-3638,5295,4048,7430,-8961,9520,-5422,-4380,-476,2621,-3176,1535,7329,-7735,-4302,-3607,-3597,-4092,-4080,6643,-600,-8995,182,-3731,6377,-7695,3755,-3855,-5197,-1351,-225,-4628,2445,-8721,6795,600,696,-3291,9274,-680,296,-7235,-1777,-8726,2190,-9265,-659,2351,2476,-8044,2084,1779,-5314,-6284,-4185,-3827,-3452,3844,1526,6532,-9193,5674,8788,6786,8504,3241,-4303,-4176,-2752,8501,2801,8799,2987,9647,-2714,9906,589,6350,-5898,885,6957,4028,-3008,-2375,1298,-6969,1885,-7117,7576,6334,-1430,7012,1870,-140,8358,-9185,9023,4202,-7724,-7676,7308,657,1652,-7568,-7382,4881,-1548,376,7108,-990,2455,7755,5667,-694,-5181,9897,3852,-9705,-8343,3276,-7705,1033,-3110,-844,-6756,2389,5759,8341,-8261,-2650,-5525,3335,724,-7386,1473,-6667,-4956,3684,-4160,3956,5978,-2517,4654,-3466,-5284,-2937,-3358,-4264,-8433,-3646,9771,-9586,-1153,4345,-5035,2393,-3026,737,1318,5995,-7238,-4490,-6532,-480,-1683,-9810,4662,-7281,9417,1978,-4946,-2848,-9612,5964,-9174,-7454,-5366,8586,-5439,-2287,-7258,3418,-4951,4412,2926,-1521,8066,-139,4616,1466,-3813,6063,3033,5706,3730,-5848,2746,-7561,6499,-3101,-6820,-8246,8614,-1946,2437,-3356,7194,5835,-1002,-7813,4470,2354,2874,-4848,-7698,-6689,-4550,-8479,-8217,5960,-78,4823,5793,9000,-6974,8524,8083,-1047,5635,-1641,1761,-4820,-2402,-774,9788,-7477,-4626,3531,-926,-6049,-1656,-2152,-6766,-3855,-5529,5678,-4034,-1419,-8159,-7365,-8161,-7645,9450,-6318,9145,4325,7243,613,9202,-3671,-5364,-841,5185,-7397,-5597,8249,-106,4356,-5535,-7193,3733,-7483,532,-6573,4485,-4735,-7430,9353,9476,-3936,-7177,823,-8038,-7849,-6761,-1970,-6,4654,2548,9803,-9805,8278,-1491,687,969,977,-2156,518,-1582,7774,-1925,1418,2753,-7938,2484,-6892,-3669,1759,4301,5202,-2029,-6041,8490,-6349,-1909,1015,190,9724,-9120,5478,5978,4528,-2939,6831,4927,-5674,5585,-1461,-4588,-2031,9927,2232,6869,1553,192,-2263,8759,-6957,-2597,-6007,-8722,-8976,6062,-1441,-1086,-4303,-960,-8825,1096,5115,-9593,-508,-5429,-7880,214,-6406,2534,1524,9532,4,7516,-6915,-6952,-174,5529,5329,1642,-3659,-8455,-7708,9074,8541,-4737,2410,3137,7254,-2323,7878,-899,8575,-2272,-9130,-1940,7882,53,-6628,3706,-6050,-373,142,4881,1594,-8511,2004,-8720,-9760,9259,-8134,-688,-7083,-1851,-3511,-5281,6167,-243,8471,-7069,6925,-6461,-1546,2011,6566,6086,-196,3283,8769,5085,973,4071,880,171,974,9060,427,-7526,-8599,-4269,-5082,9293,8484,2233,-2846,-9371,7888,6056,-1443,-7863,-1914,2742,-9694,8985,5393,-3908,6441,-3759,-1427,-8638,-6901,-1825,-3354,2337,-9924,-5004,-9728,-9376,-9546,-7247,-8713,-6078,-7877,706,-5920,-605,-5653,-2414,-4675,2151,-5084,1798,8129,4710,-3368,9892,-5981,-3841,-4521,5053,3859,8851,5852,4585,4551,-7881,1416,4375,-1801,-5362,-8998,973,6512,4949,-2828,3691,-901,7744,6345,-8644,2032,7241,-2760,-8529,2240,9026,-2198,961,-1695,-5325,-4686,6607,-3416,-656,-1136,5348,6673,-3797,25,-5888,-6095,-8299,6960,-4161,1651,8230,6907,4518,9958,-8557,2170,-6457,6891,3820,313,7018,2750,-4472,-8892,7942,9233,-4349,6901,-8565,-3641,8184,-9491,293,3840,6844,1406,4024,3877,3217,-1942,-6884,784,9967,4543,9777,-3057,-8645,-9160,868,2927,6838,-7284,262,-243,-97,2325,-1237,-5518,-7148,5164,641,9,-4826,6182,-8315,2848,6772,2116,-4172,4924,4856,-2527,-633,8513,-4579,5835,-4206,7228,1537,2937,-6271,-7885,-5340,9165,-862,653,2504,5623,9452,-1667,291,445,-2811,-3256,-5873,-7664,-144,-8410,3144,-8028,7614,-5105,6666,6534,-9417,3894,4598,-9375,-4698,9293,-2400,-7216,-6352,4129,-1021,5753,6963,-7959,-7424,-5646,-5384,2765,-5328,5184,-6831,-4328,60,-7537,1772,2472,-6263,6181,-1626,5741,-757,6523,-6110,6586,-2477,-6861,7945,-2336,658,-6163,-5205,-5499,8028,9459,4876,1491,-3699,-3303,6725,-6671,-9189,-8779,6178,-6067,-4856,6719,-1473,6682,-6395,-8993,-2494,-7742,8436,-4680,8752,-5381,-3387,-4267,5666,6249,1046,5458,-6825,493,4391,-2122,-5358,3010,-3441,-9959,3922,-846,-6298,8970,-1717,9998,1104,-6090,210,-3129,-4700,-810,8092,-7874,-1101,-5885,4664,-8383,7449,-9800,-7043,3212,-2767,5573,7184,-8018,7505,3075,6009,9475,-227,2004,-3645,-5501,3253,-7767,3788,-456,-3579,7071,-1060,1945,-7380,2199,1578,-2283,-6153,7233,-5259,-308,-4586,-3193,-5554,-9152,-5421,7252,-3044,8592,-5219,6045,9444,9455,3425,-2798,7926,8318,5924,2449,7879,619,4245,-8550,1962,7309,2949,4288,-6796,-7897,8286,-138,9075,4035,-6512,9122,-9068,7062,-595,2218,-6332,-8031,8553,6839,-3792,7079,8232,3232,-8448,-4077,-3869,6132,6532,-567,-4296,-1381,-3993,4472,-3154,6725,4336,7326,-2490,5498,-439,-26,8203,4981,-5086,-4150,-6955,6876,1801,7293,-451,6684,3936,-872,-9166,-8104,9809,-4798,-1697,-2224,-6086,-9792,-4780,5176,-4363,5739,3740,-5313,435,-6491,-4405,872,3159,4947,2335,-2444,4053,-1228,7918,1026,8651,-9657,-7154,4988,-9828,-8510,-3629,7440,6486,-8659,7523,-4670,-4747,-8122,4872,8313,7310,3846,5813,6892,-2931,2237,610,1398,5160,6022,8990,8252,1598,-9787,-2310,8539,-311,9306,4556,-299,9696,6575,744,-1774,2323,-1411,7698,3290,-8275,-7372,9555,-9472,6451,5950,8711,1141,1397,-5089,7489,-3914,1844,9267,9805,7666,-2344,-7,-620,-4112,7197,2101,-1819,1817,-2645,1419,-345,174,9698,4047,-5478,-8031,7458,-4831,3272,-8412,6525,9830,-322,-2388,1361,6433,7791,-3849,8051,338,9341,793,6549,2917,-2540,2736,2297,-5237,-2303,-6723,6713,-4042,8669,-6713,3083,-4032,-3760,-8327,1863,4637,-5339,155,-4033,2111,4657,-7813,3229,4789,-6403,3688,-4635,4381,-57,-1530,-9693,8096,743,-2247,7572,4855,-3934,-1072,-4984,288,-5358,-1465,-9224,-7917,8650,1741,-2852,8379,-3737,-9434,-5354,-9490,-3160,-6002,-625,3032,307,6222,-6645,6557,-2373,-1872,-649,8307,-1805,-4002,7400,1067,5971,-8893,-2829,-546,-5842,2038,7868,8701,-2728,-1085,6533,5477,8607,6225,5419,2419,-6801,6503,-3490,715,9218,8066,240,5887,-1039,-6788,7573,-4133,-5608,5147,941,-476,5517,-3512,6646,5715,-1120,-6087,-6100,-4493,-5709,6060,-6682,7857,9996,-5247,4677,-5424,-3625,1211,-5588,8404,7846,-2581,9261,5245,-3001,-6718,-4853,5045,1737,-3848,1031,-2869,4733,-6914,4658,8829,3232,-528,3454,-7270,5042,2374,-5467,8751,8011,5353,-1219,4560,-4799,9887,-2142,863,-5922,981,-7471,-4752,-9845,8567,6428,-4272,7135,-1918,-4395,-32,-9835,-4859,-819,6350,9892,-6498,-6346,-4199,6616,-8737,5424,3888,4095,6035,-7388,8919,-9750,5919,2165,-6671,-5821,9554,-4084,-2109,2623,-3795,4680,6340,-3983,-7295,779,5359,-1956,3859,3556,1372,-8728,-7280,-1299,7288,5201,-7946,2576,-2927,2957,6710,7310,3130,4570,1834,-3933,2154,-7430,7800,-7097,-1110,7771,-865,2899,8652,8128,9135,1677,7026,3570,-3392,-4888,-3969,7018,2075,-7522,3280,2636,7982,-1811,8505,1496,-3896,-2255,1016,-2023,8190,4918,8128,-6281,-5102,-232,-2521,-3460,-1514,2092,-5509,-3238,3955,9214,-289,-4999,1595,2837,4101,3406,3627,-3623,-6092,8827,8317,1098,-685,1500,-9259,-9836,-8963,-5487,1246,-8317,7822,-8701,9877,-7378,6625,-6302,-1505,-7964,-7068,7459,2355,-2617,-5029,4444,5512,-4020,-1981,7325,-8898,8262,-8550,-2484,907,-5569,-8580,-2954,4510,9412,-9051,-5328,-4267,8348,-8458,-8682,-8594,9948,-9067,3658,-2636,4256,7146,6726,3022,2800,2000,-6449,2061,7613,-3998,-2433,-5756,2351,3463,7323,7630,-2350,7773,2035,-6780,-1508,954,6665,-4592,-8652,-811,6434,8239,2587,4695,2585,618,9534,-2818,-9489,-945,-8240,-2344,6187,-295,-3862,8206,3985,7952,-3961,-9457,-6402,9336,6144,-1262,-2885,7560,9230,-4444,-9348,9449,-3700,1203,-8409,7157,-9321,85,-6218,8081,-8243,1757,-5915,-5090,-6769,4847,1940,-5332,-2061,8710,531,7759,3527,5991,9629,3006,-270,-7048,5363,4867,8876,7733,-8305,9661,5583,4996,5403,-7797,7388,4709,-3905,-7420,8657,-6985,-8330,2157,5745,6108,3150,-8337,-9778,441,-1504,4917,1981,-259,8305,-9002,-7464,2601,-5679,-9464,-6626,-2073,-3726,6746,4594,3695,655,5666,8832,-8816,9963,-7902,-9957,3183,755,7101,-9405,1898,-2000,8461,4441,-9566,640,588,-6891,2105,3820,-5401,-9531,5553,1708,-9278,-7450,-4696,790,-8958,4295,2872,486,-4425,-3160,-8127,5986,-1274,6175,653,-845,3851,-9043,-2436,-9554,4563,-3185,1217,1477,-1317,-1085,-3700,-8803,-6004,2870,-4807,8715,7851,-1677,-2150,-2755,3264,-6178,-4976,-774,6915,-223,3273,-6658,223,-6419,8769,-9175,1371,-1937,7852,9842,490,-9496,1285,7935,-7099,-9462,7041,268,3495,4617,-3530,-5367,-2632,3858,-2062,-8992,3517,3957,-6295,-5687,-1156,-870,7054,-8637,8087,-1693,-789,-2576,-2140,-3840,-511,2654,3746,-3366,-1880,5304,8477,-30,-462,-5216,3429,-6309,-2429,-9185,5473,-1879,-8149,-8786,8429,-5288,5840,3971,-5381,808,-9995,9619,1598,-3324,3176,7435,-472,9387,2333,-9500,770,-3020,-6667,4698,-9587,-4632,1908,8058,-8398,-9489,4901,-5440,6536,9031,5708,-5183,-3503,-2230,-4650,-6299,9135,-3739,-2390,5046,-5508,3135,1489,583,6935,-3845,-8598,218,5554,4194,4801,4207,-5726,-9294,1623,7039,-7469,5343,-851,8011,3576,2709,-3365,596,-8158,6870,9174,4300,-5745,-7996,8845,2462,6585,828,2802,-8913,-3811,-5563,-9144,6355,6147,5094,-9642,3465,6918,-3400,-7282,-4588,-8063,-9156,-5818,-1404,-5704,9311,-7539,6842,6578,-4571,-1577,9761,-2622,8966,-2041,6928,-5029,3691,-9468,-4750,-3978,2714,-1010,-7961,-9504,-4396,-6715,9661,-6490,-34,1823,-117,114,-1945,5793,5632,-213,-9788,-3961,-4336,8834,5890,-7509,-8420,-5249,2460,-4906,6803,-5508,-6686,559,-9888,427,3803,3684,9250,9126,-9025,8056,8758,-7242,3320,5027,6057,1733,-6902,-6817,-9644,-9118,7265,-3985,9531,2301,6749,5781,-74,8236,7766,9741,-1313,-5555,-6833,-3872,6128,-2087,-9013,-6307,9107,9930,-6165,8984,-2020,-2132,-5378,-7932,-9619,8341,2268,-7182,1911,6567,-3188,-7409,-1897,7032,-3757,8630,-3492,7030,4741,-4029,-1686,-1340,7887,-1170,7273,-7500,-8638,9839,-5732,-7640,4169,-8530,5284,-4624,2377,-6719,2947,8783,5825,-2296,-4607,7298,2525,3257,5083,-4164,5714,-6906,7532,6198,3392,-560,-4565,6510,-18,4228,9582,7570,-9369,3537,2972,7700,-6580,9051,-1597,1102,71,6755,-8369,-9366,2075,-3905,9410,-5988,-4384,8403,-950,-2627,2329,-3316,-4950,2114,5077,-3960,-2644,1557,-9653,-8386,3909,-8366,-7933,4560,-8565,-3827,-1838,9595,-4632,3450,8946,8487,4991,3094,5901,7693,5866,-7582,-2098,3744,5185,-2944,7306,-5482,-609,1282,8717,2842,-67,-2855,9076,5799,-5292,6071,-4236,-2547,3707,-5371,9696,-5686,6689,2936,-1318,-3760,-5150,-5949,-3441,-4270,-83,-9922,-8971,26,-2017,7419,-5590,5673,9484,3158,-6875,4719,9522,9804,3974,9417,510,7871,-5997,-7290,-4965,-303,-9267,-7277,-5422,3403,-6743,-8414,-493,4294,-4662,-7724,-2214,-9303,70,-8096,5138,-3565,-7179,2,9302,6454,705,9028,7002,3715,-8211,-2145,-5397,-7075,1271,4856,-1333,2933,-5034,4711,1956,1673,2289,687,-5890,164,-2078,-8253,9090,7940,-4468,-5417,-5619,7086,2850,2700,6017,-804,-7740,9244,-8807,-8329,-3267,-2523,5067,4597,496,9287,-8927,-8339,4843,2498,8467,-6585,-1758,9130,-7448,5639,-4662,-7490,-6315,8399,3358,-7238,-8161,6278,8801,1940,7139,-9365,1931,6044,-7964,6775,-7151,9406,-7517,-7411,-8719,4604,3309,8734,-1427,-5771,-5069,-7347,-1614,8909,787,-2636,-3261,-6962,-7920,7969,4425,2731,4050,-7992,-4543,9529,-2370,7167,-3566,-5250,-8394,9879,872,-3646,165,2960,-7057,6986,-5064,-167,8729,-174,5160,2218,4507,-9983,515,-29,-9311,-168,7942,7463,326,-1803,5232,-6567,6931,2349,-3294,2581,8556,-7756,1089,7945,5326,-879,-494,-4249,8220,-7080,-818,6574,8670,2015,8915,-743,-8506,2167,3435,5594,-3112,-4806,5036,7049,4243,-2770,7316,-4637,-6493,9818,-7476,2974,4829,9043,1126,-2432,7072,6925,2621,2844,3799,-9562,-3860,147,4272,-4049,3368,-2082,-221,2303,-7819,2566,-2723,-5609,3490,-1756,2484,5523,9446,-4596,2159,738,-7965,-2724,-8294,-3743,-8648,8456,5805,9300,-8375,7511,-1561,-4559,9367,-4395,2605,8668,8169,-3738,-43,1394,58,2915,6321,-8401,-8557,-780,-8967,4896,-6125,8189,-367,1280,7638,-7751,5263,3966,4373,-7649,8637,-4463,3260,5289,-913,-7550,6875,4155,9338,7368,-9303,-1420,-9435,6248,-2691,-7009,-9878,417,-9354,-6362,-7914,598,4936,-1375,5813,4694,-1446,-7926,5189,-6500,-2196,-751,-5852,-2803,5609,2414,-5997,3095,2433,6764,-5033,2081,8526,4984,5754,-1734,8933,6131,4926,-626,1146,3265,-5133,7527,-564,7700,-9687,6864,9894,9827,7377,7672,-2885,7403,-5515,3004,7771,-5492,314,3235,-1770,735,-528,-1875,-6429,-5514,984,7863,-9393,9634,9777,6102,-8570,9414,6471,9150,-9583,9852,-414,-538,1419,2433,-4441,1246,-414,-8660,-5654,7095,-674,9744,9085,-9650,7274,-7586,-1152,4749,7162,-8546,-5173,-4181,-1328,-7278,-500,-1500,-408,7539,-715,-5795,-169,-8741,-5669,6095,-8305,-2276,7060,-1057,-5085,-4401,5002,-521,-5923,-1827,-3788,-9056,-9497,6957,-3747,3558,-8813,-4093,-9454,7595,422,3132,2014,-8060,-9163,9119,-4301,7582,7184,6939,7508,3068,-9562,-5861,119,-6892,-3715,2947,6785,-7018,2259,-7558,2557,-3198,-9578,-5932,-6956,5170,7953,-7083,2575,6666,-3,-6738,-5325,1350,-83,9658,-6204,8353,-9954,2514,3002,-7945,-5345,1386,-3886,-7499,-6892,-7457,2499,5362,-4325,7406,-7230,-5723,-7610,-9969,-4798,-257,-2414,1872,-8202,6942,-9125,-6306,-6788,5440,-1003,-9017,-5085,-7242,-3595,5619,-2689,-3891,7831,-9141,-8034,-7507,-8375,3933,-8526,-2784,-3693,-4528,6569,377,2736,-2930,9862,7712,7709,9805,2163,9737,5207,249,4005,-5259,4978,8265,4295,4295,6501,8566,8365,1490,8299,-3518,-6069,8124,717,7581,-2890,9490,654,-5642,8024,-7211,-5905,-8560,9757,-6814,-4749,-9907,1382,-6360,-7665,-1760,3682,-5033,-233,1844,-5171,-4558,-8501,-4791,-1230,1503,6102,4098,7670,-3351,-9832,-1361,-1444,8901,5168,7872,6645,8439,-9317,-348,5326,9431,-5550,-4094,-6450,9571,8158,8194,2903,8112,-8664,-1724,7503,-5533,4508,-2169,-7566,-6933,-1766,7042,-7764,4599,4727,9515,349,-5161,-369,-3362,-9022,3984,4701,-8353,-8548,-947,-4285,-9828,-5589,-9512,2933,-5405,8537,-8735,-2527,4858,4697,-8278,7910,1013,443,-6336,-1411,6635,-730,5466,-2528,-8700,-3550,-8602,3676,2444,-1644,1657,1905,5453,6507,8777,-6191,-8537,3500,1207,-8855,8634,5489,766,-8763,7260,2718,2334,4471,-3028,8674,-938,-3747,4086,-8670,-7398,-5026,-3087,-8637,7471,-6760,-6212,660,-1935,5217,397,-7810,-7082,-6475,7439,-8536,6717,-459,7364,-9074,-9147,-9878,8160,354,-7888,-3545,-6135,-98,-5546,4596,7878,-8559,8941,-1021,-7686,-9237,-4102,-4830,-2977,-6270,-3061,583,-876,5064,2693,-1328,-4674,6622,3955,6472,-4575,4389,4990,3479,6934,-9120,-5150,-1853,4510,-5795,2812,-7425,-1922,-7346,1151,9956,1253,-2001,-6886,-5991,1955,7876,-9266,1017,-4010,9569,8955,-6056,8720,2783,-8854,5950,2713,-7429,-5529,4087,4320,1958,3170,-4159,8267,6229,2457,4878,-2786,1651,4066,7603,6132,4059,-7393,2551,-6290,212,-7208,4094,-2832,2611,2809,-9670,534,8634,322,-7860,1801,2738,9463,-6694,-8446,9705,5282,-4814,7428,-5384,6677,-8799,-6919,-8594,-7388,-8820,8787,-3939,3343,-5373,5403,-2859,7400,7831,-504,-335,4257,-9283,2042,8281,114,4568,-6760,-1406,-1198,-5999,7033,9758,-9467,-2530,-2083,-8183,6176,217,-7225,3020,1504,490,6574,9223,-9498,-8802,8334,-1841,-5969,4123,-6852,8333,-3403,7806,2789,-9700,1806,72,9379,2543,1768,-5930,5792,-3052,62,-4516,1949,-5085,8338,-438,2136,6601,-3916,-9868,-9558,2382,2059,-6555,-6794,-2239,1163,3657,-1854,7239,422,-9675,2223,-6788,-7979,-8633,-2982,-5614,2082,-9566,-5036,-8349,-3767,4467,-518,4604,2622,2864,-8174,-1165,7736,6247,-2569,1995,-181,-3582,4601,4279,-1794,-3445,3743,-2818,9737,6470,6062,3703,-8294,-8593,3109,9025,-7548,-8236,-6360,7441,-7343,195,-7408,-1185,7001,-2225,-765,774,2332,5608,-5158,-4523,4419,8928,5213,6627,1480,2281,8727,7938,664,-4147,-6471,1388,-6506,-5831,1603,8543,5839,9457,-2852,-4996,-4153,6004,-3026,4908,8673,-6891,5299,-3718,-1290,6596,215,-5910,-7706,-958,-6750,8649,6700,-6256,5462,-8803,3107,8247,-9645,-9083,6207,-3029,5111,-6058,3992,2682,8428,-3446,8951,-2781,-7615,6214,8178,-4163,1116,-8165,1360,8645,3020,-1860,-5328,6852,-3980,-4146,8806,-3856,2452,-3232,-1202,4260,-5288,8050,2263,1494,4272,8436,2145,-8206,6801,7200,-5109,717,-8993,3036,8294,3301,-1683,5256,6996,951,-9133,-5316,3047,-6657,-2115,2322,7325,5647,-8278,9327,-3586,9158,7645,-3761,-3723,-1217,5060,-3449,3933,7888,-3200,8095,-550,4719,-8713,3691,-6926,-8362,-5856,2385,4505,3231,1056,-8251,4600,7710,4261,7672,6132,9336,2685,-8420,9961,-4577,8046,8117,9913,-3383,6355,-7155,-839,-7515,-6189,-1845,93,-2574,5487,-4749,2069,-3860,7316,4987,-9705,9508,1692,-3225,2233,-8284,9886,1727,4406,7131,6620,-1594,258,-8220,-6414,3557,4869,2116,-9285,-64,-6378,-1484,-884,-1821,3289,-3520,5579,5657,7454,5630,4258,5808,223,-7644,-4796,-8998,1720,2109,-7258,-968,-2217,2007,789,-2374,-8161,-5597,-2262,7236,-3630,-8150,-8941,-5810,-4964,2502,-7750,357,8301,-6550,5649,9425,-7808,3796,-6083,-1159,-4733,8829,-6740,8457,302,-6129,-8219,2339,1951,5697,-325,4867,-6644,-6339,3071,-7179,5897,-9775,7077,-1901,-2661,4655,3700,-5135,8447,3835,-9782,2763,6593,-5407,-3959,-9371,5927,9165,-87,-3096,-471,8893,-3786,-4230,-8397,-9856,-7156,4860,9768,5773,-4192,-4166,-167,8496,4335,7302,-4740,-358,-5864,-2752,-5844,-53,-2641,6119,61,8114,-2142,-7180,-1538,8114,4707,-3231,-3908,4170,-4033,9768,-2428,-7154,5468,3976,6475,-5313,6542,-1758,2427,7349,905,-9217,6480,-554,-8919,9937,1766,2268,6000,4215,383,4291,-849,-2204,5492,7552,-6116,2280,7438,8134,6255,7953,1193,4970,1560,2063,3906,-1106,8854,9123,4172,6411,58,-2488,-9086,-2908,-2311,4124,635,-7343,1889,4634,9105,-3754,-9953,-5635,821,5422,-2242,-3063,7921,-1944,2099,8997,4267,3352,9782,-9266,4381,9585,6982,8326,1824,4178,455,6088,1005,-85,-6275,5434,-9458,4048,-337,-4638,-2722,-4856,6684,-6178,7019,9541,-7313,9298,-1226,-8630,9876,6802,619,-8371,-8240,5102,-4542,1991,8241,-1019,7318,-2857,1441,1150,-2184,-7152,8615,-4243,2682,8613,-2284,6364,2326,4612,1183,-3815,-4289,-2087,1378,2775,-3425,-2954,3423,-7505,5078,-9945,8507,-145,531,-7707,-6309,9893,8889,2771,-9919,9125,8864,7776,5177,3706,9531,-7282,540,-9796,189,7551,6975,6603,9997,-4940,-7086,9868,-8383,3730,8497,-7024,-1770,-7417,-7309,4824,8573,-9144,5512,6003,5634,-746,4239,7119,5704,598,-3059,5379,9212,8770,3050,8026,-6505,325,-9174,4889,-6467,-946,-3475,-8626,8963,1805,-5612,-8924,-3784,-8755,-7303,8155,-5207,-4481,-6021,-3292,-4046,4583,-3335,3971,6967,8548,-2994,8889,6182,-316,-8637,-7881,-2174,2534,4403,-1637,5353,1122,-7445,-7195,-2316,6227,4158,2960,-5961,1750,-2215,-3890,8565,7986,-637,8246,6578,4981,-5404,-7522,9070,-6179,3274,3641,6463,4436,1850,-5597,-9277,3087,241,9081,5059,2157,-9303,-2546,5233,-7344,4519,-3804,8779,1861,-4745,8091,3278,-4303,-2827,-1109,5815,4023,4398,-5444,296,1060,-4583,9718,9118,1472,-2522,-1198,6364,4341,-5950,-6119,9954,9795,-6904,3400,-95,-3597,5391,-4872,2124,-410,6955,5081,-2635,-7278,45,-344,7303,-8868,3453,-5622,-6039,-7593,-7595,2707,2234,5108,-8542,6501,5787,-1897,-4472,-7133,6956,8281,-5746,-3679,-3677,-2694,-3350,2792,-4722,-6667,-4735,300,3711,-1468,4584,-8294,9963,-7362,-8291,4311,-1813,-4818,6057,-6896,-8984,-268,-5749,-4104,-7949,-8738,6263,-9376,-6336,2906,-3212,1910,-4558,-7151,5877,3110,724,-1489,-4041,5298,-9480,223,4010,9032,-9553,2970,9473,-714,6928,-6141,-956,-2036,-2810,-8190,-9864,-5024,4443,-3174,-7276,-8140,-4547,-8495,5839,6195,-8403,2582,9119,-9946,9868,6800,-8043,7848,-8736,-2307,3167,-2752,-8096,-7824,-8956,-8384,-19,-5978,9585,2841,-6301,8392,-7932,2870,9071,-595,4549,-6455,-4998,-6560,-4132,-628,5229,311,-597,37,-6090,6702,-3988,-3147,-5338,2065,-9258,9795,4690,5531,6877,298,7183,7319,3442,-6159,2640,3219,-5518,-8694,7176,-3533,9616,-8930,-6448,-3904,7136,-7602,2923,-958,-7340,-4455,-5477,-1983,-607,5613,3188,-4785,7596,-2239,3527,-4223,1427,6935,6241,8413,7354,-3990,3327,7656,5744,1034,-6069,-2589,9911,7209,-6655,6676,9881,1163,-176,9803,-7655,6108,8823,4741,5012,-7701,-4096,-1165,-7132,6385,2617,8063,-1946,-7343,-6115,7203,3454,-7353,3180,9296,2553,-7465,9481,4876,6653,9940,-6343,2057,957,6708,-7142,6048,6165,9861,3125,-8171,8823,-6699,7670,-1834,-7245,-3609,6329,-1938,8526,-4993,1189,-1411,1309,-7491,-970,6819,2333,1804,7321,5833,-2361,947,-5813,837,-7919,-6982,9992,-8691,-8072,8824,-1933,136,4702,-5844,-6443,4123,5068,595,9679,-2394,-323,-4228,1324,-3091,6763,4083,8351,1613,-3050,-1387,3879,7731,1156,-7609,7075,-138,-609,-2001,-7667,9844,692,-2559,2704,-6111,-9010,8504,-7832,9872,-92,-7290,-2395,-9183,8259,2181,-883,2240,-609,-2849,4592,-189,-3364,4904,-4548,7803,-6494,-8872,529,9674,2111,3120,-2130,3258,-4685,7704,-2339,-7798,-990,4904,2147,2717,4568,923,9001,-8732,-910,6607,5114,4800,176,-4488,-5214,-9250,7713,-7477,-4533,-5528,-6168,-7078,1729,7129,1690,-589,6422,62,3351,-2637,7631,3970,1583,6542,4990,-6749,-3482,3202,-2027,-9816,-8514,-4801,3807,-7763,4039,8886,2793,6666,-4337,-3798,7519,-2522,-1649,-4841,8273,7888,4763,-1846,-5194,7546,-9812,-8226,-2948,9387,-8583,4436,-3109,1187,-8203,7002,-2011,-6765,-4471,-4736,-515,491,-3557,-9037,-4493,6599,-2482,-7209,7221,5933,-6247,4150,-3087,-8859,2670,-7237,-1717,2748,-2064,-7409,4315,-7865,9765,2072,-9691,1012,4382,4065,-8314,5410,-2621,-3305,-6118,-8743,5074,7337,1949,3961,-9717,-1580,141,-6294,6245,3873,1984,6222,-7238,1949,6009,8822,-4402,-8665,5048,-6342,-4651,2238,4734,-4978,2694,4111,2739,-9978,-5990,-5158,2877,-3637,3425,-450,-2747,-8297,2803,5258,1106,3345,-4348,-430,2026,5897,-6991,7360,4863,-6157,316,9809,997,-7173,8442,-6972,-1601,-1424,-5145,-1019,-7825,-430,-3241,7206,9801,2114,3654,467,16,3172,-4722,5672,-1180,-5005,231,1328,1964,7212,2176,5036,6075,1934,-7095,8814,-785,1755,2671,9660,-1154,-5448,5192,9830,5933,-577,2730,2252,-7573,-5231,-2005,-8208,1536,-1674,-8099,383,-2997,-2291,-5315,-928,-8774,4567,5903,-7942,8745,-8024,-9935,-3258,-2905,-1679,8517,-7039,3743,-7412,4124,4829,7130,5270,-9830,1398,-8081,-5320,9146,1272,-5966,7271,5469,6837,-8325,3608,-1939,-178,4205,8801,-8234,6797,139,4124,9927,2381,3753,8956,4867,8647,-8245,8179,-6284,-5595,1971,-9456,8997,9094,6685,3837,-1886,-5468,-4685,1642,-3118,-2175,9813,6089,9526,8288,2269,8416,-6071,1882,4208,1631,5594,-9050,599,-7781,-5121,-1526,-2395,-2827,8409,-2346,2479,6942,-8735,-6010,1013,7239,-8470,-6245,3733,2024,9596,-5532,-512,-9478,7191,-7393,4332,-6202,-9498,8764,7937,-4526,-2507,5442,5282,-8963,1504,455,-8783,-5848,-3622,8901,-3319,6278,-4495,3224,-4896,188,-4364,3174,3194,-1633,8426,-1795,-5868,9461,-4113,5863,-9836,2113,-719,1514,-6476,4511,88,9067,-718,-5556,-8685,-8119,-4495,-3352,589,-6040,-1003,-2846,-7347,8313,5570,-2026,-6071,-4890,-5076,9562,137,269,-6134,-8167,-2575,-601,1581,5078,-8622,-4986,7889,6479,-9263,3362,-3415,-3042,-6126,2814,6759,957,-3705,5112,151,4690,8507,1480,-739,-4742,5196,-6645,-674,-2318,-7361,-9212,7810,-1232,1914,-7884,-3386,-6880,3834,-6819,-9968,2358,8805,-4657,-6299,1662,-9879,9805,281,-4953,1513,-8025,8928,3515,3721,-1578,5454,-9031,1676,5445,-9107,3312,-5270,8732,6014,-2797,-1951,5706,3693,-9437,-9827,927,-3293,7500,7422,3763,-2661,-6743,-3558,9485,1921,627,8903,-3906,1240,-9522,-239,-2441,-7521,2724,1821,-1050,-6658,2351,8012,1899,-2704,-7133,-7604,-1334,-5922,-3705,3186,-5060,2610,5633,-5331,-5996,9911,194,-6135,-3659,8365,5105,5091,1797,-9653,2995,9413,-1775,6581,-4537,2102,4042,-9730,-6600,-7776,5089,-3789,-9035,-6102,-5061,9343,-592,4001,-5102,-8953,-9490,5089,7640,-3220,-4996,6312,-8552,-9009,5216,5750,9293,-630,9868,-1554,4533,316,-8748,-503,1101,-8017,9331,-9412,-9215,911,5382,-4177,930,-4717,-1061,455,8094,8338,-1230,5029,-2920,1089,2204,-4522,-4498,728,-5650,9203,4667,-9327,7713,9668,6391,847,9417,2818,8548,3530,-72,1279,5657,-7374,276,1468,4413,4267,9077,-5398,-8291,1090,7398,9230,5808,-2959,6186,-9993,7133,5540,4441,-3396,7092,8843,-4465,-9712,-6247,-1417,-8948,3553,6240,-1771,-9782,-5542,-6269,-5723,-6676,-8660,9343,6786,-6048,5976,5856,382,6605,2660,-5478,-5378,2680,-9190,-9433,6405,1681,8853,1866,4572,1477,-25,9534,8899,-1474,-1440,3225,6580,2800,4358,8733,4688,6946,37,-164,-3325,9229,-7683,-375,-8475,-3503,-6047,-9136,9514,-1785,592,6069,-2050,5069,1285,1030,-5392,6510,8178,-9369,4693,-1049,-9944,-138,9417,-4884,-7659,-6915,-4594,-8645,-4746,-4527,-9462,7200,1339,4368,2899,3860,-3037,6352,8840,8024,7487,-5693,-9606,-8493,-5136,6304,-3885,-4525,8796,6570,-544,-5473,-5775,-5708,-3915,-5437,-7573,1384,-6957,-7328,-8245,-9917,-7279,5956,-7281,7846,-6591,-177,-8480,7353,-7457,-8079,-1819,3676,-2151,-5949,7369,2056,-8966,7764,3705,4173,6965,-6315,474,9106,9641,-107,-6634,-3541,-3796,-8988,-3474,-9237,9425,-8821,3907,-2232,5036,5385,-1200,-5198,6770,-1101,-6594,-7889,2011,-4843,-7820,-5876,-446,1777,-240,75,-1064,9301,-4302,-1648,-8954,-8755,-7255,849,-3357,9124,-906,-1996,9064,-1281,8533,6138,207,5902,4079,7697,-9227,-7453,-4164,-7766,5884,-1335,3276,3671,-683,-6525,-1760,6842,-9328,-3722,-3707,-7611,-8309,7930,6563,-7299,-6233,1322,-431,5985,-1789,3323,868,4664,-5503,-8240,8947,-779,-9157,2336,8518,-5453,-8438,6817,4571,-628,8859,-3719,7508,1727,3511,5141,6143,-2561,4789,6355,-256,-2561,-3480,-6563,-1384,-7692,-997,-8348,9013,2107,5365,-4316,5860,-1104,2572,-1682,-3012,7463,7913,-2306,-9580,-4804,9389,-3738,-1091,-8515,445,-7614,7896,-7993,-3349,1019,-2833,-5682,-5515,7137,-4812,-6181,3508,-451,5769,5580,-4456,8727,459,-9344,6238,8929,3951,1424,4098,3116,9069,-4270,-5041,5553,6446,-8999,52,5618,1654,3661,8887,-4837,-6226,6826,2429,8460,-1209,-5576,-9988,3251,-1455,32,3458,-8805,4978,2892,-1912,-8720,-6451,-5499,8232,1062,681,5199,2347,-4321,1720,9741,-7997,-4666,-861,7817,-8549,-3442,-8295,-3718,-8523,5665,-9192,-926,4827,3246,3941,4804,9378,979,5558,-6607,-7234,-6959,-9865,9995,4210,-7929,-7820,-7214,6441,-2534,3468,-9698,7267,-5270,1510,5844,7052,8942,9537,1243,1374,-3850,-7129,-5119,9792,1266,-6133,5805,-4370,2087,477,3430,-6084,3079,-8039,2233,-3165,-1109,-2214,-2764,4579,-4149,6871,4530,-3801,6092,-6525,-9531,-3877,9359,-9700,2219,-3670,-1055,3494,-9361,-4484,3611,-9780,-8352,3744,-7121,4793,5668,638,8231,1786,7654,6705,6870,5406,9814,-389,-4212,3885,-4481,5748,-9486,4553,2824,-3781,8137,5882,-6184,-8685,7837,5336,4414,-3568,8188,-7903,715,-2547,7641,-2658,-3397,-205,-9066,7601,5154,2271,-3823,-9708,-1793,-4024,4836,-8338,7220,-4704,-6706,7371,6552,7464,-6048,4958,-693,-9245,3681,-5849,121,-6651,-7430,-1270,-4149,5162,-3836,9463,7656,-1838,-1430,10000,9203,5024,-7943,-4225,4465,-2638,-6014,-3904,9882,3322,-6302,9278,-1477,8668,2514,-5207,2571,172,4817,3017,-5066,983,6846,8647,-5493,-1818,9929,-5630,7371,7483,8871,8772,405,-9118,9596,2978,353,4875,-1779,9327,4360,4722,-5464,-4606,-7858,-5439,-6723,-9630,9702,-1500,7878,-3715,7536,-7245,2852,7896,875,-2581,-2584,-8431,2239,1005,-8512,-5171,-2946,-6503,-7120,-7148,7585,3283,-5476,5616,-2717,-2149,-4842,-3817,-38,7645,-9386,3841,-1906,-3720,-7067,-2889,9648,-5101,3756,2834,47,8916,-585,6200,3627,-2182,22,9773,3637,9728,9346,607,-5243,2583,-2368,-9263,1607,4226,-8143,8772,2726,-2563,7712,-9052,360,-2847,-2163,7511,-1192,3941,3249,274,-1428,-1409,-8952,-729,4389,-6891,7869,-7608,9360,5780,-1893,5420,5581,4769,-5770,5007,-642,-9010,-1734,6279,1855,-579,-840,-4329,-7750,1116,-4795,8582,-1560,-3670,-6853,-4506,9352,2422,4846,-5336,6544,1408,-8312,-8683,-8058,915,-9969,389,5500,-3346,-8459,-5288,-9885,5238,-1718,-9280,-2405,9069,-8610,-2572,7419,-1407,3337,4273,6317,346,-9442,-1259,9032,5521,6761,-987,8380,-5800,-3407,8155,-5538,-4876,-1953,5493,7904,-5956,-2417,7339,-8168,3373,4147,4402,-7381,234,4956,9479,-9835,-8480,4986,9255,-2240,3546,95,4719,2888,-2532,-6175,2137,545,-1906,-2994,4312,771,-9076,-4362,-8665,-4222,5305,-5220,7135,2311,-8247,-3912,-8797,7973,9310,7778,-568,2021,-2925,4199,7132,8750,8777,-548,-9888,-8949,-5974,1810,3115,-1023,1018,4133,-3756,294,-5035,5267,-9986,447,78,2845,-1101,-8328,5461,8590,-7920,9824,4816,-877,4693,6518,2989,9502,-5657,-8737,1817,4941,1979,6310,-5287,7367,-3953,4129,-8485,-9255,7585,6410,1550,-936,585,-7770,-1621,-7308,-7909,-9460,2234,40,-75,6849,703,7770,7231,-9542,7770,-8358,5918,3487,3531,828,959,-6679,9946,1292,8830,-1905,-4083,-7701,3356,4580,-8988,-8771,-866,3148,3812,-3441,6704,8898,6325,795,-5986,-299,-3925,5429,-663,-1845,3286,-7771,-5907,9155,8686,-8994,-3096,-5913,4593,9039,-5182,9987,9458,-7116,-3318,-8193,903,3936,-3450,-2134,186,3732,734,4107,3135,-4782,-8368,6016,-1233,3329,9383,1289,-1400,1683,-7173,1333,-1280,-201,-3405,4505,-7248,572,5327,7094,2463,-7956,-3091,-9484,-9612,-4030,-1005,-2931,3866,4994,6458,9876,5606,4751,1259,-3913,4118,-1950,-6504,-7526,8417,-7976,5626,7544,-9973,3234,9579,6776,5215,6705,7826,7508,-904,-6632,-923,-4018,-7043,6824,8858,-6324,2144,5593,-1280,1715,9304,616,-471,9221,3194,-9342,-6897,2939,-6226,-1748,189,-3972,-8328,-5925,909,-5814,3863,-4037,2466,-2396,-5421,-3047,-6748,1482,-1939,-7540,2930,-6843,3802,6314,990,702,724,-5688,-7243,-9498,7071,4226,-6949,-5056,8549,2436,-6263,251,-2121,-4178,9747,-8429,-505,-4292,1324,320,3582,9195,4616,1204,-9347,2746,-910,-5240,-1474,2500,-6692,-6093,-6971,-1821,-2978,2387,-8465,5327,-1448,5505,4540,9512,6457,608,123,-7385,-6349,6464,2529,-1097,-4080,9073,-4,9048,-7364,-9677,-5774,4420,-7755,1500,-5452,2298,-271,2515,-5858,372,-8818,-1373,9909,-9186,120,9497,7121,8583,-1422,-8273,7111,9856,-846,4175,-9273,-4679,-2539,-2253,6275,-2187,5268,443,1209,-8157,6275,-8365,1083,-5750,-1273,-1435,-3485,-4998,-5239,-1370,-1413,2634,3860,-5395,-6486,2748,7635,-1530,217,9736,-5509,5017,-3405,-174,-7964,2182,4383,3107,9871,-3882,-1392,1524,9574,-4122,5977,-80,-223,5046,-1501,-5008,5591,5217,-6677,9844,-649,9050,-4904,-2640,-6333,-6603,-4402,1459,-5758,7539,4690,9419,-3304,-4924,2558,-7477,-244,1139,4400,-9363,5779,-5749,-5556,2719,7781,3010,-5382,2551,1626,-2524,-950,-62,3003,-2664,-445,-1859,8672,-8711,-9530,-6755,-98,-9689,6691,-1427,9617,-1326,-8927,5221,3226,949,3845,1417,-2130,-5335,1135,-1205,2575,7244,5999,-7395,6209,4932,-9415,-5329,-9622,-212,9652,-7760,-9971,702,504,-7050,-7227,-5695,7617,-3731,5915,2559,764,3569,3950,-2819,-9684,5158,-3664,-4,1666,2734,7838,9519,-6097,8354,-4962,2212,-4135,8425,-1820,5913,9913,-3562,-4790,8045,7673,1907,3018,-1468,2987,2231,-5999,577,2530,-409,2029,929,1159,4278,829,-4746,6936,8455,8362,-4283,-2335,-6987,8526,-7359,6996,-550,-3604,4382,-4396,5741,-8265,7045,2294,3336,6543,9840,5321,-5810,1110,-9845,-2770,5423,4268,7299,3457,-8982,-6627,2634,-8669,-3542,-9691,-4629,-7278,-4692,-5076,7598,-4001,8470,-4296,3498,-3085,5063,2517,6706,3254,-1361,-2241,2301,8947,-3841,4134,340,-9794,-6107,1924,-5574,3007,-8534,9794,8324,-7102,1329,-1466,-4176,3125,-6263,9263,5989,-8024,2902,-49,-4017,4333,-830,-5941,5983,5523,-2301,-1616,6888,-2586,-545,5690,-1900,9046,-2774,-7427,7888,-4014,870,-432,-5851,-6721,8617,-3848,-2880,-1417,-9460,-8719,-4224,8259,7408,5550,1719,-5606,-4234,6565,4215,4720,2617,-1583,5360,4895,9723,-7669,-7630,3977,-8580,-598,-8385,6079,6853,-4141,300,-4404,-880,1082,-5385,-345,-8325,9217,-2471,5769,3561,6180,-3969,-752,9586,7256,5355,-583,-2315,5728,168,1057,7339,-4048,-4031,-8926,-127,-6395,31,-7758,-2886,9144,-6381,4227,-7722,7591,-25,-8895,1847,-9853,-4538,2438,1764,-7575,-6597,-4037,1559,-1039,-2443,-7145,9285,4744,-7651,6613,-4163,-1955,102,3042,7418,-5775,-5450,9333,-9366,5683,762,-3411,-6991,5300,871,7726,-6394,6324,8565,1437,-5287,-2001,3883,-7981,-3952,-7470,-1627,-1334,1018,2480,5695,7735,-9008,6330,-1347,-1910,7746,3791,-7582,-6977,-6128,3612,-2360,-366,5679,-6440,-7403,4656,-4074,4058,-6064,2879,-9188,-4673,-6817,-983,-5944,-1188,-5927,8781,3224,1464,-1843,-5295,7742,5803,-8441,-9896,-2356,-2672,4503,1245,-2356,1403,-7875,784,-7569,4775,4268,-5702,4855,-7443,2343,4417,6739,-1154,-6418,-831,-7743,6545,-5368,4895,-3372,-6977,2759,8194,8791,-1464,6996,-7739,3018,4005,3515,-7756,7694,-3827,1684,-6511,7795,-9824,-6885,467,281,-776,-7352,1457,-1389,-8482,6635,6625,5484,3274,-3639,-50,-5016,-1903,6642,-5,-2199,-5715,-1274,-7669,-6546,8930,-598,1469,-5760,-1073,-1138,9707,-8417,-4842,-4710,-3852,5058,4092,-3602,4457,1527,-5817,-6327,5970,779,3517,7578,-7320,7026,-1506,-6025,-5033,-2243,-2750,-2779,6212,-3467,-7043,4909,25,6681,3466,406,-9225,-4473,-2655,1128,9351,3696,1037,-5866,8482,8731,2282,4373,8243,-7104,-7206,176,2252,6200,5283,-7824,-950,9927,-8814,2873,9557,-5022,8865,-8805,3316,-4710,-453,-7700,-6812,-3338,-253,3703,6121,8031,6440,-430,-4519,1700,-2206,2139,-3436,-4933,-1096,3364,-5727,-6917,-4073,6716,-1876,9167,-6701,-3668,-5234,-4398,5881,-2769,-4533,-3299,2392,-4246,2612,7630,1525,8727,9750,5337,7975,5035,-324,-4323,1344,6242,-8437,-5115,-9002,-1173,9958,1964,6376,684,-4436,2244,-5496,1971,-8360,4318,923,-765,3657,1842,6111,56,-5623,-963,8591,1479,-4925,2573,9774,4504,3087,9309,-665,-6418,7516,816,9257,5285,-7373,-569,-361,5967,4623,-354,4204,3946,-9135,-6835,-2383,1733,3244,-2632,-4299,1325,6979,301,1304,7926,7831,-283,-2429,2241,-9792,5684,-4886,-5652,-5179,5340,2593,2758,9595,-8046,4026,-640,-7852,4342,6224,-40,-8587,9030,-8007,-559,6096,9452,-2182,1412,2854,1333,-5774,-4374,3363,-7756,-6885,-8932,2234,-7406,1857,-9260,8549,-2926,-5170,-7092,3353,-1994,3127,3686,-2840,8739,5754,-4587,8766,4744,7511,-5600,-2656,9303,4713,-1137,4139,647,-5973,268,958,-6207,7966,7784,6052,9135,7632,6745,9295,368,-5067,3665,-7131,9625,3353,-5220,-8225,7983,-1320,7533,8905,4439,-6261,4695,7439,-4292,3657,5015,-8743,-7690,1913,-9515,9194,2128,6678,4721,-4215,-6932,-4747,6220,6003,5561,3183,7805,-4191,-8297,5361,1468,-8386,6670,-3087,2907,3490,-6068,-293,2926,-3493,-3615,4462,-4143,9291,3509,-7296,-7426,3822,-4607,3008,8762,2135,7251,6332,2505,4369,2364,4461,-1225,-8385,-3875,6374,7743,6350,9245,6159,-5469,-8317,451,2464,9589,6926,3960,-7398,-3421,-9573,2336,6240,2486,-92,3609,167,1341,-7197,6188,9810,2697,4939,4277,-7389,-3328,-1427,-2753,7359,-909,-585,879,-6541,-5495,2379,4388,904,8272,4360,1214,9448,8729,-3105,-4101,-731,-3818,-5049,2733,-4839,5494,-4118,4892,-290,5337,-1231,-9119,-2862,6852,-909,5131,6478,3018,-8390,5024,6270,-6617,-101,-1142,340,5956,7640,-5590,-7434,100,-7095,5618,-1883,3742,5897,9788,-3474,2197,-9040,-5337,-2504,-3001,-4213,7804,-1839,-2719,-2058,-9391,3082,-9681,-9029,-4633,9917,-3243,8441,-2875,1163,-3006,-464,7159,-7358,-403,1639,-2417,9408,4912,-9591,1471,-1651,-7871,5747,-3479,7652,1604,1074,-8028,6308,6087,9986,2729,4992,-3287,-8715,-8266,-8986,5056,1971,-1673,3917,7113,-1909,5838,2759,4056,5436,1492,6688,-3964,8862,-3390,-9645,7495,2719,-6999,-1404,7355,-2814,-8707,-4571,-7802,541,5280,2370,-5028,198,-9559,7335,2979,-1615,8414,8238,-4133,5499,4838,5657,9163,105,9138,-6152,-470,-6588,-1387,-9984,1186,-927,-335,-5663,-6107,311,-2923,-4440,-2798,-5636,6729,-2023,9062,838,-9559,6536,-7066,-5858,-3190,-1158,6763,4317,1441,-7454,-7150,4770,-9347,5975,-5849,944,-312,-2626,6095,-82,5907,8488,-7264,-8132,1738,1541,7341,7012,-7677,-3648,9396,-1155,3433,3246,-5088,3791,7064,-3388,-8113,-946,-2092,-5841,391,-982,9390,510,6017,-9355,-49,-7646,-1895,-2524,-2424,-5060,-1717,-3712,-4071,4620,3642,9003,-2497,-7158,-5607,-9863,654,-3791,6028,417,3776,7679,2515,1502,-6799,9315,-9363,4569,-2860,2668,-1790,-7425,-1382,1641,-7039,4765,-2073,2291,1402,4909,-4914,3795,-3443,7138,-1078,122,-9824,2126,-6836,-382,1653,-1371,-5525,-3064,8727,-9993,9906,434,-6635,-7774,-7240,2145,7966,6071,4980,-1296,-9662,9218,-720,9055,8809,-1338,2106,-525,-2983,-4993,5218,-4214,-4593,4641,4663,7419,5596,249,3306,7474,-9555,-8707,6137,-4352,4137,-416,-8704,8686,1472,-4327,-1544,6312,733,8153,-6511,1969,9771,9244,8062,9407,-8372,2136,3015,244,4760,2327,6573,3921,4270,-9259,6757,9709,3080,-764,-8008,1112,7938,-7199,625,-4666,-1163,-8449,32,7205,2103,-3917,-121,8358,-1819,-2819,6992,22,-2665,-156,-738,-2542,117,8828,5589,-8418,-6919,-3284,-640,-3221,-3926,-5551,4976,9582,-3738,-8238,1769,6169,8081,-1845,9886,5647,-4891,-9690,-6485,4583,9024,-4894,-8822,-7302,1442,4610,-1615,9528,-5291,-1197,8925,-4139,8137,5772,359,-6707,5014,-3663,856,-5173,-4851,-7210,-6576,-6748,2354,-3142,-8275,8144,-489,5469,-9756,-8041,-6523,7126,-5795,-8554,8841,7601,-4856,2598,4105,4421,-3608,-4418,8271,7551,-7258,8555,6275,7725,-128,-7661,2453,7125,-900,-1147,3043,-9237,9246,4094,5837,-4962,-4482,-966,8493,8595,9299,-9567,1023,3581,-1500,1478,5494,4712,-2132,7235,-7845,4338,8242,-433,-8564,3996,-9600,-1433,-3473,-656,-5052,3744,-4938,-8270,-6155,5645,-216,9491,7986,-3800,-4194,-4559,9814,-4950,-3839,-1468,-2923,-5498,-8648,-1014,9839,-4428,7567,6237,2335,6096,-7582,-3489,326,1842,-7428,2868,7206,48,-8036,8957,-1658,-8093,3998,-1877,9614,4013,-4139,-3139,-4693,7488,1138,6006,6288,-8085,-6311,5779,6937,-727,7485,4815,3536,3698,3585,-5422,5768,-884,4950,3200,700,3732,-1400,8514,-7982,737,5768,-8678,-269,1268,-9535,2254,-140,-1436,9022,-3713,-8419,-6474,-7168,-7213,-7076,-3625,7535,5901,-7565,-4984,7007,-353,4006,-9412,4266,1072,6329,-5509,1688,2606,5616,770,6798,2969,-8140,5754,4140,-897,-6613,-4777,5437,5845,3585,-3081,-2572,-1521,-569,-3901,8524,-5887,5992,-9286,-7719,-7956,1908,4675,8837,-8403,-2871,-5773,-3912,8678,8341,-6802,9126,-9773,6837,3644,3409,8843,-1286,-3855,-720,-3319,4964,7183,2453,-8924,-7663,-2150,-158,8812,9993,-8331,4961,1698,-5970,-2374,8240,9545,-354,-9365,780,2167,4659,9907,9026,8178,-8422,-8356,9870,3009,3211,5853,9940,1212,6169,2552,8445,4671,-3161,8759,1317,-8567,8295,-7432,-9272,7794,2162,4857,-4446,-824,9109,-9184,379,-7559,40,235,2852,1370,-7776,2026,8433,-9151,9946,-591,6553,455,-4946,-8519,6060,-6664,-4055,4409,485,8459,2769,9653,3944,-649,-2479,-9894,9773,-2802,7170,8768,-1346,-1513,9674,-1358,-4599,-2450,5832,1725,-8968,2384,5817,5842,4705,8990,5147,-3880,5346,5031,8694,-5612,-6381,-5198,-4251,7424,-9365,-3643,-4444,6860,-233,-8627,-725,960,3128,-1912,6998,-3070,6528,3456,-1812,6364,3780,562,-7114,-6034,4697,-186,-4558,211,4715,-7560,4306,-9224,4989,-8267,-8745,-2689,7588,1114,232,5546,3094,757,8843,7918,-9877,1994,-3691,9080,8884,7926,-5837,6822,-4411,5588,-9635,-6759,1297,5462,7824,2603,-732,-8939,1571,8938,-4179,9096,9987,4492,647,6695,-5232,-7443,-1010,7244,6159,-7119,9770,-7381,2433,-701,-6726,-8286,5423,4016,2950,3122,3053,-7063,6458,-3217,-6994,170,3334,1057,2300,9899,-2127,-4462,-1772,-6329,5000,-9311,-3710,-4836,-1405,-1966,-8914,-8390,9260,-6929,-2752,1382,4022,214,-3538,-3278,7519,4421,-1575,-8950,-2429,-3038,-6025,-1058,8975,2337,3471,-391,8712,3685,-4755,1357,9315,9327,2536,-3565,-9503,1175,-8598,-1429,458,-5562,-9978,-6709,-2924,6624,-2749,9034,2822,4202,944,-5638,4097,2853,-3850,1689,5734,3424,-1344,-4719,9933,1907,4329,-7363,1964,-8486,-8538,-3171,-4140,-8985,3418,2426,-8314,-4881,-2786,-2142,-6151,-8119,1246,5457,-8498,-7972,-2722,3357,-5206,319,5714,3964,6391,57,9103,8578,-3420,3910,4834,4932,-3978,9271,-3526,3178,-6341,-7570,5472,3691,3317,-2932,2043,-2176,5404,1408,6572,9340,7665,4444,-5307,-7113,-9019,452,-7392,6797,8504,8623,-3841,-3816,-314,3461,-750,-136,-7303,-4541,9135,6497,-4569,-4846,-2621,2450,-8522,9431,-6201,-5675,3265,-9919,6940,9637,9857,-9981,-3384,8465,5367,2926,1642,9559,1808,-9476,-7980,-3800,-480,-7129,2441,-2634,-8981,-259,999,1796,8817,3944,-796,3447,-9385,7661,2201,3834,1824,-7043,143,1257,6806,9045,619,3331,7414,9539,-2131,2874,-5212,2452,6159,-8110,4509,9102,-1193,8077,979,-3991,1106,1987,-389,-7979,3321,-7904,3696,-1137,4025,9453,-5734,-4290,-6184,-1291,-237,8357,-4227,-4199,2268,-1274,1933,-2840,-3747,1023,7370,6962,3001,-2303,-8507,5392,-9248,-4974,9576,-9026,3477,-7832,-5928,-9874,-2622,3171,-4587,-7887,52,7447,-8488,3140,957,441,556,-7998,9051,-2752,158,-1202,738,8483,2629,7344,-6070,-5506,1175,7617,950,-350,9420,-9976,7717,2727,-7310,9642,3267,4657,-9614,7093,4945,8564,8233,-1236,-1361,-550,-8558,3892,971,4012,-8551,9823,4327,-7828,-5122,-4141,-1623,4005,4484,-9842,6025,2887,-7524,5926,-3596,-3106,-1072,-7828,7463,3895,4854,-1424,5808,-9489,-8976,5854,6728,5103,-3649,-4667,5656,-5220,6739,-7115,-3820,-6478,7713,9129,7806,-5430,4466,-9031,-6084,5597,-9290,2987,-5357,6495,-8,-3025,-395,9048,4556,-2071,-7738,-6286,-4075,8016,-2045,4746,-9038,7591,4824,-8965,-1063,8030,6868,321,3924,-1372,-1589,-9629,9023,-8104,-702,8580,-9444,-9236,7177,-8190,5652,6543,6087,-5289,-5873,-3234,3329,6883,8621,-5551,-4628,-7801,5321,-5460,1920,1562,3108,-1858,-2356,-9467,-8139,4256,-7947,7371,9558,3720,-8017,2321,-5967,-6671,5365,6072,-5427,-4792,-8173,1757,-7402,-2321,-9020,956,-8231,-3014,9549,-1826,-991,-9790,-3040,3936,-3551,9885,-111,224,777,-725,-462,7909,-6742,-5155,-5425,983,5104,5553,-3126,2258,8545,4871,-9842,-9379,3864,9531,-7160,8810,-6371,2043,1910,-2089,897,2001,-8117,9387,6998,9229,9739,133,2766,8351,-8959,-5476,-7773,8310,-8250,904,4774,8381,73,-8352,-9697,-1649,-6665,4912,-1397,-2149,-5119,-9997,-1949,7709,4826,263,8039,-6156,-4940,5177,4577,4923,-4764,7435,8771,-8164,-3731,-6239,-3785,-7618,-2156,2633,2541,-3204,-7168,-1322,-9221,-7818,-3449,-1871,-5861,7819,-9493,-1812,1749,389,-1468,7659,4540,-2035,3953,-6801,-4669,9644,7620,-8392,-7504,6861,-9173,5399,4602,-5162,-449,7792,5699,-70,-5790,2651,2269,-3836,6051,8844,-5832,-4238,1729,-7660,3094,9006,-9626,4325,-7456,7306,-3968,-7057,7418,7421,3020,52,4521,151,-7873,-9344,-7790,-9216,5663,9504,-4948,7066,-5146,2290,-4803,-5971,-7875,-3236,-8474,7226,-8953,-9250,-4061,8060,-575,6811,-9402,-901,-3865,-6980,-4963,-4046,-1589,-9020,3516,-8279,1138,-8181,-4496,-6555,7343,-1654,4625,-6460,9561,6133,2318,6473,-1691,-7702,-6626,-4768,2900,-5705,4875,-1993,-4463,-8539,-6987,3554,6980,2632,-8200,838,-2973,3447,-4768,-3014,-2246,-5027,-7884,6951,-1853,7030,-8623,9929,4293,-4713,3840,4918,2217,6803,2571,2782,-9318,-484,-7543,-1258,6245,-7119,4941,-8071,6919,-1939,9692,-8405,-4327,8211,-794,-315,910,7659,1104,-1532,8426,-4183,-5806,-1028,-562,-8782,4497,-61,8158,9889,1657,-9036,-1920,-7006,-8602,-8987,5193,8403,-1291,-75,9295,6284,-7212,2004,9716,4678,5884,-9066,-3304,-7784,1958,-7439,4460,-4573,-9210,-4902,8999,-1392,-190,4198,7748,-8059,6276,2416,5795,-4105,-9719,-9931,9215,9360,-2767,4741,-8525,-7548,-5699,-2554,-5701,489,-1371,6953,8521,-7607,-237,9877,2799,-3237,3547,2790,6435,-7899,8048,-4257,-2365,2287,-9478,-8015,-4916,4954,-7470,1580,-419,-3211,758,594,8376,3636,-4825,3891,3336,2275,-7770,4792,8056,-8707,-2775,-7557,2683,-1817,3008,137,-9133,-1908,4259,5001,-5111,-8620,1018,2047,5910,-6304,3477,8709,-9126,5727,-7036,6656,2953,8967,6789,8127,-9595,4409,7255,2087,-4412,2960,-9765,-5179,-6255,-8391,-6565,3511,6031,4612,1172,9547,8501,-747,8622,-5237,2648,-9087,2481,9326,-6248,-9311,8727,-3883,9629,9692,-4276,3512,4972,-6420,0,3378,-3064,-1408,1701,-4410,117,9630,2106,-9278,473,-996,-2013,100,-6336,-5148,-5015,-3488,6945,6012,6590,7748,-3748,-7262,212,8080,4088,-3795,9426,-2801,4221,-3396,7671,7447,6345,-8562,1202,-561,-1772,115,6155,3407,8242,-6522,1238,486,7284,-1163,-1492,-2873,-9711,-3693,-1395,3901,4237,-2985,-679,46,1793,-2390,-5457,-1005,-2765,5400,9652,4227,-2743,-994,-3226,7475,6854,8536,527,2382,2002,-6374,-2443,-9342,-7660,3874,1859,4082,7284,-817,4374,744,673,-4947,108,2947,-8959,-1720,4638,9873,7273,2382,7689,9253,5489,-6957,5415,-8328,3615,6250,-3552,-2848,2815,-7974,-3828,8053,5876,7760,6162,-8791,9042,-5660,-1912,612,3054,5300,2,8477,6340,-273,5573,4366,6110,-7042,-1103,6594,614,4173,6960,1874,-2522,-9411,-3556,5445,-3697,6419,279,5660,7365,-4087,137,2938,-2593,3524,7662,-185,-124,-523,6656,-1400,2401,874,-1627,-3547,1180,-3157,-8071,-6439,4820,7054,-5036,4380,7195,8085,-7004,8463,8783,-9228,7208,4744,-9777,6675,-7963,6485,4243,-2276,-7226,-6820,8936,8625,-3985,1560,-4223,-1692,-9437,9656,526,2816,5481,6516,8839,-7556,8242,-1126,7321,-9820,-4060,3920,-9469,7176,2141,8889,-9603,-8400,-7046,-7069,7775,2748,9446,458,9670,8111,-8920,-5434,6271,9498,-7198,4188,6854,2325,3529,2206,6811,4475,-6087,-7559,-3339,-6258,6435,-230,-3296,73,6167,2473,-9567,-7538,-4680,1773,4543,-1511,-3796,9327,-1628,-3666,-2154,6412,8372,7224,2802,-4310,-6008,4048,-3393,-8209,-3360,-5484,-242,4389,-8288,-650,-4798,-6146,-4652,3376,6320,252,3617,4151,-6722,6921,8754,5030,-1081,4369,3450,8829,1982,-1578,-4145,5976,-9636,6776,-5758,-2546,-7844,147,2610,9130,7937,7553,-1591,5964,-2284,4739,2064,-3160,6410,2192,1738,4798,1961,7074,-8672,-1357,4941,7905,-185,7466,-3668,3293,432,-933,-2767,-1155,-4354,5388,3316,7979,-9921,-4067,2661,6077,-6065,6677,3054,682,-47,5751,-1172,-7085,780,7328,7499,-1266,6365,-5389,-7871,-2285,6302,-9657,-702,4582,9563,5464,9969,538,101,-2772,7230,-3364,6701,-6698,-2972,4140,4436,4686,682,-9517,-8248,-8606,9906,-5883,-2286,-2070,-5499,347,3153,6010,-5109,7525,-5069,-5692,-1152,819,6488,-5742,3468,-7566,4561,-7033,-851,5523,7322,3914,-6815,3945,9620,-4352,-6871,8665,4788,7957,7585,-3232,-8216,6630,5109,3466,-7914,5755,-4664,-9356,9379,-4143,-2127,6337,-8438,5777,6534,3952,2889,-3840,1615,-8244,6938,4032,-8633,-4056,6916,-6629,-4023,1710,-2232,8214,6432,1081,-8423,-7415,2286,-496,-4293,-4206,2227,6873,8456,77,7543,-4293,-4146,5933,-3542,-3245,1071,-456,1479,1092,2963,993,2239,-8033,-5996,6609,-8476,-7597,1032,8318,-4587,5739,-2168,-3085,-973,2603,-7195,-9727,-4268,9321,7149,-3017,-5464,-2093,-4714,4674,2027,9895,8610,1004,-4651,-36,6646,7263,-5933,-5442,-3499,-1049,1120,-6670,4155,2868,-5505,-7166,-6803,-2263,-2783,1054,-9622,2559,-9103,156,-8782,-1606,9358,-3857,-7992,4319,-5709,514,1918,7492,-960,8123,-6328,-6469,-1870,-1672,-338,7620,-5807,-4109,-2625,7144,7145,2658,-5401,6843,584,2851,4867,294,-5394,339,5452,-5292,-9604,4785,8602,8515,9615,7015,-7579,8476,-8438,-4171,-4681,-6925,-17,-3961,-960,6656,2358,-2719,-9949,-8951,9891,5081,3391,6233,32,-2150,504,2685,-4872,-8652,-7364,-8892,7307,5487,4971,-1334,2464,-4736,-7200,3357,-5041,-3343,-835,751,-7237,6512,4243,9192,7104,-7787,1501,2001,5753,2153,-2652,-3380,9820,-2090,-3764,8947,1913,5122,-3962,2282,-4560,8113,8064,-4415,-4141,4070,402,3121,-6267,9215,-6414,-3458,-9500,7907,8106,-3065,1973,8016,-6708,-515,5532,1785,961,-1099,-9547,-402,-5974,3302,8924,2958,-4500,2695,5655,-4194,7862,9054,4905,-4148,6528,5396,6493,5773,1936,-3441,7582,-6637,7437,4883,9836,3114,-7849,1190,1831,-5371,5644,1390,-8298,729,67,9685,-8517,-5448,-5287,-8569,3194,-557,8627,9392,4852,7215,9585,-2919,-88,9793,-501,4893,-3003,437,9749,-7466,4242,548,9240,7545,573,6184,6416,-4483,3280,-7332,64,-7372,-9683,2380,2729,-6885,-3767,-3735,9524,1773,4047,780,-5697,1226,-5143,47,575,-7076,8708,-4116,989,-8071,7812,-230,-6992,7044,-6367,-9383,-277,-7978,2692,-8522,-8478,4732,-9905,-18,2837,9871,239,-5221,-2683,-7562,-2809,-929,-2852,5400,2868,4509,-7647,1092,4340,2772,3100,-5379,-2916,-9485,2071,9325,9701,3744,-896,-9420,-6303,1167,-5070,3453,-6303,-3449,-1088,1391,8400,-9248,-6166,-2214,933,9343,8476,7433,6822,-8536,4037,3870,9866,5283,-6543,4425,-4496,-8726,637,9341,-3611,-9565,8196,-1396,7567,-428,-6400,-9594,2096,4378,-692,-6335,-8394,3002,-7009,8096,-4606,-6079,1201,3690,6223,7796,-5133,3416,-154,-5915,-7821,-5936,-6633,-5897,-2111,5576,-3834,2712,5455,6264,-6414,-9646,-1961,-3985,-8265,-7363,-239,5106,-3419,1640,9790,5628,-4712,-5313,3879,-4782,6125,-7152,5390,3456,6425,2178,8945,3014,-1789,2352,8628,-8078,9005,1828,-4550,6335,2384,7240,4995,-7229,30,4828,102,-6878,-6587,-2880,-4168,6722,-6506,8528,-1385,9401,-9928,-5939,864,-3728,6458,203,-2514,-840,-9709,-6970,-9317,3984,2437,-7187,9629,868,4020,-7689,2416,3182,3516,-8788,3329,4276,2679,7908,-3707,-9477,-6744,-9821,-676,8999,4838,5772,-7635,1587,-1676,3221,-3571,2051,-4520,-4143,-3152,2166,9942,4870,7811,-2991,8419,6336,5721,7791,-7037,-366,-4615,4942,9687,-6256,4167,-2776,-5948,-5742,-8574,-165,-4030,609,-6444,1479,-5450,998,1850,5948,-5824,-4734,9323,6645,9372,7419,-9552,400,-9875,-5181,5552,9822,-9585,5280,7096,821,-6585,3448,9594,3090,-7974,-6277,3145,4903,-6040,-3746,-5681,-3610,-9085,8271,-5982,-654,-9618,-8161,5457,3012,1670,1359,1465,-7292,-3001,-6782,-7971,-7075,-7758,2172,5412,-9639,2829,-4935,2807,-7114,1176,5410,-5221,-6781,9344,1235,680,-9606,-4864,8901,-1233,-4024,-8362,1430,8725,8087,-3149,2680,7768,8017,-2048,-9571,6035,7342,-8760,1138,3994,-4631,-5667,8181,3994,-7140,6227,-825,-9102,1018,3861,-2196,-469,-5067,709,6829,-9754,-2818,-5923,-6204,1570,-9174,-632,-5853,9321,9983,-5257,-344,-7716,1488,7215,5561,1650,-2575,-4680,-7840,-3040,-3428,3419,985,9184,7654,-5438,-3547,-1216,-205,-2848,-1234,-9942,-2701,-5371,-3931,-7147,663,-1047,-1774,-2169,147,-7755,-8163,-1582,924,7076,2621,8397,2060,-4620,-2010,1032,9808,-2719,3350,-1920,-3849,-1721,8636,661,7383,-5441,4677,2354,1636,9058,-2864,-2674,-5703,-8967,-2385,-4123,-8579,6738,-1024,8697,-7957,2138,-4004,-1064,-7013,5998,-1597,7440,7120,8948,1914,4601,-3696,-6851,-4863,8751,7857,-2145,902,7479,-1217,-946,-6103,1729,5909,-2482,-597,4653,244,7132,8821,-6992,1569,-1211,-2971,8259,-7498,-7031,7760,6544,3748,6540,4630,-5646,-1726,-7357,7748,6270,-3075,4255,-3264,4882,2930,4723,-8839,-9704,-100,6571,-536,7280,9433,-5914,5343,-4958,8790,9759,-5625,6176,-2173,2660,-9541,-5240,614,301,-3845,9517,7985,3511,-3633,-3822,6747,-2770,-9125,4782,-5786,-3029,1124,7279,-2774,597,2621,3745,-7781,-8100,-4280,-695,1525,3795,3865,-9117,9012,2497,7950,-5350,7107,2887,8601,865,-1044,-6121,-392,9545,8206,751,210,4014,-7617,8526,-7955,910,-1856,-1172,7531,6204,-3978,6139,4550,-1806,5138,6555,-1246,-3206,5602,6605,6742,-2761,5251,-7893,-4433,5552,-6034,3836,5870,-8682,-8723,-8979,-5782,-2154,-8727,9072,7029,-5418,9629,-7775,683,-4213,9602,3045,9694,1912,1057,-7166,7557,6351,7559,170,5510,8759,-8862,1850,3772,9189,4976,-9238,3560,8054,8704,-4327,-7574,-8816,1773,-6879,-4061,2137,-3011,8822,-7948,-3316,5815,5317,-6374,-4890,-3199,6625,3918,-9947,-7941,-1353,8911,-7935,-156,7388,2294,6837,-145,8695,-2623,4621,-1181,-4995,8046,-7864,3099,3619,-4653,2489,-8811,-4633,1296,7332,-572,9342,-3222,-4384,-4698,-87,3883,5126,9416,3454,8355,-4878,7903,-7204,2931,-9213,-1393,-4276,-7888,-8566,-5299,3033,-324,-8371,-6369,8936,3589,-4803,-7008,2901,-7756,5077,4343,-6502,9367,-2532,9463,-7234,8188,9610,6338,5139,-9339,-3304,-8843,-8790,-4480,2885,-8024,8229,2482,9211,404,-6273,6571,7434,-868,-5266,-1976,8071,1392,6569,9413,-5620,-7958,7580,1003,5981,-8672,6078,2640,7108,6957,-9755,-6176,-3008,9875,5879,5367,-9898,5374,8193,-9008,2161,-3145,7790,9159,5903,7531,4048,8591,834,6964,-8514,-1690,7893,8486,-9418,-7263,3793,4519,-5448,-7488,3738,-8040,-3447,2517,197,2634,-7171,-6023,-1328,-528,6569,-4850,-1851,5299,-5442,-1522,5564,4980,6169,9970,8865,1242,-6461,-5985,-534,3790,9275,8176,-3819,3280,-1568,7124,-850,-4029,7639,5285,3404,3327,2447,-4623,7814,2021,-2197,-559,7290,8842,-9108,-6560,-5202,-8899,-4095,2964,-7738,-2424,1258,-700,7874,-3983,6706,-5607,4501,-5563,7034,-6606,335,7567,3031,8569,-287,8533,-5165,5256,74,-4194,-3348,-8528,8828,-6156,-8123,-1737,-2323,-8240,-4350,1136,-5348,2317,-9136,-4652,1467,-1901,-2709,-5295,-5403,-8620,2217,-2659,4580,-5590,-588,8392,-6005,-5272,4702,-8791,-4176,1592,-1654,-535,-2461,-952,7313,-3859,5187,-4723,1948,-7777,-4128,3701,3710,1610,9569,9059,-7072,-5504,-2403,-3920,1743,-5968,2588,742,9679,5600,-6442,6438,-6587,-6067,10000,8629,-3381,7856,-4445,3192,-2483,7237,7616,7538,-7370,4393,-262,5961,-522,-5947,-3090,8432,-4369,-4681,6812,6211,5929,6136,-1176,-7965,-3402,9280,946,5529,-4151,-997,-8395,660,2157,-711,-6262,-4453,7315,5638,3275,6579,-7183,-8452,-8868,7926,-4053,543,-2016,2605,4405,8683,7789,-3108,8428,3727,6564,-8883,-1644,-1033,-2061,-4998,-9480,-9562,4678,4236,461,7283,-3327,3874,3715,-1556,944,9089,9596,-1428,7477,2,-7644,-2464,-2216,3061,-4614,-8869,3192,8173,-4420,-131,3,-1635,-3861,-5108,-8482,-4898,7008,-4962,2171,-971,-1827,-8158,-9933,-1103,-7502,482,5352,5893,1757,931,-6806,-6933,-8080,5786,-5028,847,-117,-9316,5856,7899,8408,-5288,2977,8122,7045,2616,-314,-4698,9098,-4421,1985,8263,7698,1885,1748,8672,-8106,-99,8626,-1543,-6089,1741,4149,-8718,-1576,-3223,6329,328,-7910,-4245,-9651,1812,-5901,-7576,5170,-481,9712,1073,-9761,834,9366,-568,734,8061,-8933,9723,6579,3131,-3132,-1380,-5748,9084,6073,-3760,9788,-6986,2628,-7880,3568,-4080,3351,1548,-3253,9940,-7043,3040,-5987,-5962,7658,4066,-3109,-8644,-7588,5796,-9341,9232,3596,-5071,7441,-6229,2222,-5434,-2443,6932,6441,-4103,4924,2241,-9027,337,-6280,-7004,7775,4472,6410,4787,2656,361,932,4518,6458,-1969,-2566,-3226,-2849,5573,-9442,-6169,6298,-7108,9827,-7491,-5202,5038,-4943,-3795,-8811,-63,-8107,-8660,-835,6082,9858,-1853,5878,1110,-3960,6156,4106,6403,-8347,9172,-8637,-4738,-4722,-7270,1150,7721,3848,9076,-1833,-479,-5790,4416,9358,3507,-6737,-7799,-2505,-7381,-3035,-4756,160,1384,-8569,-7482,9098,6769,-9904,7325,-6938,-3479,-1056,8560,3257,154,-6473,7454,3552,-8935,8394,-2790,1816,-4857,935,8129,8474,-3885,-2884,-7855,5641,897,8556,6756,-3281,-9496,692,-8432,2028,9955,-4946,-1615,172,4307,-959,7964,1029,-1190,3265,8133,7518,6608,5119,4842,-4075,-7194,-1332,-7064,-9056,-4817,-7392,-8973,-2693,-7684,-9886,9673,-3886,-3186,-2664,8258,-1163,7557,5546,9370,-4091,1161,7991,-143,3334,-2041,1569,-2200,-2095,6235,-3991,-8062,6104,-5583,-4403,-745,7394,-3155,2664,7467,3897,4006,8104,3601,2891,-5374,-6492,-4702,8520,-4857,3578,5113,-8421,-179,7951,-4153,-3699,-5329,-7102,1016,-9476,-5916,-5154,589,-2012,3199,-1975,-5837,6849,3695,8346,5857,1098,-755,8003,8837,-7957,-7237,-8432,-7142,1237,4069,8444,-1996,7545,1826,1415,6892,7198,-8265,7296,-4097,279,6241,-510,-290,-9710,3385,8452,9090,4248,-717,-6122,4593,-6698,6910,7316,-7819,-2103,8007,421,2362,1527,-24,9994,-2961,5483,259,77,-1904,9360,-6905,6441,-6852,3798,9191,1724,8017,-5831,-2002,6751,8484,-9097,-8491,-35,8042,-5389,-800,5895,3834,6244,760,-3761,-6892,1776,3374,-5169,-368,-8050,6603,-5611,8762,1846,5634,3786,-9970,-5796,-6002,-3779,-9835,-6976,-4834,-7657,-4663,3312,-595,1836,-3927,-378,-4931,3800,7092,4505,7545,4605,-378,6747,-4922,6038,554,1680,2942,9004,-9289,-2154,1370,-7178,-4079,9319,885,1173,-3999,4089,-2472,6601,-2418,8262,-7858,-6206,7234,-7717,-1151,9698,7174,-7313,8629,2354,-6140,7584,9236,-9209,-3742,-3103,986,3880,-1405,7744,-8299,7829,-2677,3046,9927,8859,-5605,-4899,-5438,4293,2010,2473,1871,8536,-1945,2380,-4747,4744,3037,-1327,7580,-6795,-8696,-702,7316,-7672,-5827,-5042,-4638,588,-6698,6754,-1688,3447,8367,9774,5911,-2781,-9138,-8554,-8611,-9809,3062,-5910,4974,-1358,708,-2957,5531,1731,-5779,1685,-1350,-4953,7445,1430,-8197,8773,2083,4723,6843,-8153,-5612,-5666,-5450,2520,8586,-5080,6325,-4046,-7184,9353,-4037,1058,-3220,7397,-770,-2139,-5262,9579,-555,9874,-5499,613,1202,2447,4118,-2192,1166,-3638,1618,529,8079,1827,6523,7946,-8750,-69,9107,-4100,3943,-9533,6384,5820,7731,-3476,2955,9572,-3584,2312,-5273,3640,-460,-9870,6571,9904,-8295,-8645,701,2973,-8864,2478,1277,1183,2898,-450,3987,-3037,6395,3472,7450,3634,-9048,-1963,-5014,3308,5294,9331,8665,2603,7801,2886,6596,-4620,-501,-459,5336,-9777,-4406,84,1010,-3546,3429,-6877,6862,1250,-6017,8953,-1203,-349,500,-349,-2750,4540,-8852,2228,-1095,-8809,-5845,1278,1582,7768,-5863,1709,7869,8376,6834,-7972,-9956,-9840,4021,7370,-9978,1491,-551,-8103,3115,9588,7095,20,-3186,3725,-8621,3199,3050,4520,-7941,-7542,-170,-6108,9348,-4675,-4302,-2324,-1078,2502,-5154,4681,3874,-1552,1801,4224,284,-7712,6112,-3077,-24,-691,-3319,57,-5297,5109,-6399,7801,9838,-6756,-7957,-5827,710,-6285,4061,-3226,3423,-4322,8830,-4350,2346,-3564,8873,2115,-64,5461,4961,3319,9354,-5849,1763,-1374,861,-248,-3946,4418,7908,-3595,5654,9066,-2598,-7710,-3256,-1127,-2263,-2291,8053,-988,-2852,703,467,5496,-4398,-2103,-5491,4162,-6108,-1268,6917,3347,-1078,8724,-9870,6420,7429,-8573,8574,7472,-1466,-8459,1307,-7844,8046,8726,1960,5073,-6651,3922,7267,621,-4170,-4085,-3138,-9017,4130,-4942,7821,9037,2820,-71,-707,-6851,-6038,-2624,-7295,-5864,-6291,-5778,1716,-6707,-6837,-5804,-8026,-8800,-2610,-9131,7850,8228,-482,5227,717,6997,7192,3765,5808,-9892,6223,-1428,-8853,5706,2018,-9029,-7766,282,1109,-1817,4638,-3308,-7140,-3364,-5722,-9668,-348,-5116,-6783,-7434,157,-7890,8300,-7160,-2573,9873,2858,-3314,4714,6153,-2770,6917,-7832,-4825,4786,3857,-5096,-7041,-6133,-860,8406,-3582,-2343,-5679,-6062,-181,4336,9062,3612,-7756,7632,2038,2359,-9806,-6774,-7736,-9049,-5270,-8302,2863,-257,-1230,-5016,2303,638,-1165,8348,980,5879,-5400,5823,2173,-1441,2737,-7885,8267,4042,-4493,-9876,2271,-9531,-8282,9962,217,2740,6646,-4273,-600,3933,-4547,-2800,9321,-2376,8577,-2106,-333,2479,360,-9533,-9146,-1627,8003,-9530,378,-7804,-7745,821,5262,-6560,9108,-7092,-8325,4848,-9621,3138,-7711,5115,8194,5494,-3064,9475,9058,7791,258,-4140,-5152,4483,7419,-6731,8109,9357,-8509,4214,5909,-2883,6814,-75,-9516,-2869,2358,-616,8263,643,-454,-5587,-5282,2282,-1347,-8797,927,1515,-3529,5742,5793,6253,-8326,-63,-4262,2281,9908,-630,4546,7305,2290,7391,9233,-2613,-9787,-6033,-7952,7257,-8846,430,9008,2919,6814,8825,9001,9127,-8157,3000,2546,1405,6706,201,-2111,552,310,6143,9336,9798,-7941,2565,-3028,6833,-6837,9978,2159,-4337,6474,7424,804,-1579,1582,-610,4321,-5729,-3850,-5830,-1740,-8775,4007,-144,-775,-1445,9016,-1855,4494,-1809,3677,5968,9471,-545,616,5015,-3047,-7620,-1005,-2990,847,-5469,6073,3284,6819,1842,1546,9194,7845,8591,2552,2579,-7840,2105,1721,-1133,-4616,-2778,-1065,8003,-1934,-1180,-6967,-2228,-760,2682,-4528,2334,-1634,-8639,-5356,3752,-2931,-307,-9803,6227,148,570,5889,-2048,2173,7251,6991,8983,-5223,6841,4940,-9147,-7331,-7083,-9688,-9863,-6133,9843,-3288,-8021,7148,-475,8639,-5863,6364,-360,-899,-6826,9135,-103,-1750,-7761,-7342,7195,-9727,3606,7245,9595,-2202,-2704,5806,-3151,-9782,2253,1039,1300,4997,6110,-7317,2854,-5429,-3807,-1621,6448,-5965,551,8135,-484,-9686,6306,8765,-1929,8565,-9443,6540,-745,-2138,-627,6206,2449,-6806,-6735,9959,9739,2888,-9557,2126,-1418,4966,9637,-3246,3605,-2001,-86,-3554,5234,-9017,2603,-9279,-2875,-9853,7006,5830,3122,-8289,-6520,-9912,-377,-2467,1174,9457,56,-5076,-4331,-3028,482,5307,-8665,5466,-2607,-3852,-6752,7233,419,-7859,2896,5633,-1228,4962,6177,5999,7659,-7448,6493,5153,4781,-8526,6878,-7284,-2496,-4464,3642,-8692,2636,-9002,2755,5942,-4895,9569,-3373,49,-5522,-9105,-8594,2105,6714,36,5547,629,6148,1511,5659,-4165,-2690,513,9394,3388,-8420,9864,-5025,-1253,-622,-2084,-9698,2554,-6622,-1917,-8870,9045,8951,-8737,-9423,4051,-794,130,5971,3114,2294,-8142,-8682,1937,2220,-6213,4593,-765,8142,1338,-1025,9969,-3978,-8041,-252,2671,2325,2785,-4667,-804,-5579,5634,9987,-1415,-7783,9766,4540,-6972,-785,9488,-5428,-8518,-9039,799,-2140,3533,3974,-4786,-4330,-6394,2115,1499,-8983,285,-1189,6197,-2042,-6341,3560,-6691,8999,-7764,3180,-4640,-7823,-9152,9006,-3955,9630,2272,-4084,-5219,2357,3317,2326,9376,778,2064,1045,-6305,-9571,-8945,-9015,-4683,-6442,-5887,-8122,-4052,-9671,6499,-5513,-104,316,6268,-7971,-1817,7906,-6465,7722,9625,6497,-492,-9769,7090,3472,1672,-648,-1538,5668,1670,8047,9783,-4225,4176,1301,3011,-5310,2306,8717,-1650,-6366,-7657,3825,8990,-4849,-4967,9239,-1736,6664,5950,6194,2121,-14,2317,-2018,-9152,-2765,6898,2333,-301,-2401,-3897,-9461,3708,1861,-2863,-4649,5297,4895,-9948,-291,3163,-1436,-7805,1733,8321,9335,8754,6106,-1199,982,-2440,-7164,296,4977,1288,7701,3019,-6797,9864,5739,5114,6151,-2831,4079,7517,8171,5266,9998,3309,2444,1828,-5306,8683,353,9747,7033,5096,6619,-9942,6138,1899,926,-1290,1365,4978,-3572,4319,5916,3764,-8773,9017,9787,-8802,7158,3361,7579,3222,-241,6367,-9405,-4793,-3091,2619,1271,-5525,-927,7596,1931,7632,9767,2788,8912,8642,1610,6545,6030,6730,-9288,-5860,-7844,1384,9510,-816,5905,4034,-82,5950,5421,4085,-9228,9338,1045,-6178,8660,5651,-524,-2543,9075,9628,-1065,4975,8111,9203,2206,-5944,-2621,7199,5892,4416,-5138,5610,5841,2424,9528,-2547,9608,2735,3045,-5283,2420,-9116,6650,-2775,-2307,8271,5531,-348,-8249,-7669,3964,8870,7944,3181,3830,-4431,274,-4249,3669,4035,8240,2679,-5418,7682,4761,-4117,-5802,-838,-2074,3662,7253,-7397,-4186,8633,-2954,190,-9118,-2982,-200,3606,8439,7243,-9119,3946,2139,4369,5897,5129,-9928,-4227,-6769,-5292,1652,464,8504,-937,5894,1416,-3037,6868,5786,5614,7352,-8489,-3568,-2313,2160,-7219,4235,7730,-1694,282,6031,9123,5619,-5036,8333,-6143,4195,-8387,-4914,7204,-2082,1929,-9287,-4796,2587,-2673,-8606,-2479,-2141,-6869,6250,2689,-3839,-1286,-4551,-1297,-8674,-3967,9784,-1538,2015,-7118,-6583,-2424,-9818,-8737,-5597,-5116,-9569,-6198,-2033,-2892,8904,451,-8452,-7649,-9833,-4346,7460,4193,545,2924,5360,-9793,9189,-5322,7975,-7428,9848,7534,5695,-4732,-8483,4852,9323,-9039,7142,9880,8149,7909,8276,2708,3679,-8546,-8575,8033,4749,-169,5331,-4170,9787,2256,-5932,1914,3416,-1392,3371,133,9272,7323,-6758,1676,-3814,7448,-7010,-5706,-4946,8527,6167,9878,6299,9667,-8763,-1275,-7640,-8337,-8690,4539,-520,-9272,2038,8458,-5759,5556,8613,-471,821,-2062,5659,5311,9285,-9365,9340,-2785,-3862,-6388,7891,9190,-6917,5896,-1422,-2115,-9133,6442,-8624,-7119,-4483,-5583,9781,3172,5062,-8553,3001,-8099,-4040,-2671,-2214,-5557,112,8105,-9927,6755,-7916,-399,-27,-3544,-4243,6259,8741,9273,3555,7921,7829,-847,-9937,4680,7573,7379,-4925,8148,-5782,-1466,5542,6282,-6088,3119,6492,3555,-5967,-7235,6022,-1632,3498,5681,-1012,9034,-4932,3823,-6368,8010,-3412,2110,2333,-8223,4834,-3610,4189,2139,-6880,6440,-3532,851,1935,-4334,-3837,-6307,8425,-7078,-6163,5434,-6735,2094,-1095,2420,16,7349,-5706,-8855,-4132,7745,6126,4897,6287,6915,5957,6129,7786,5778,7063,7244,3291,1936,-649,-4382,5194,8810,-6231,-8991,6239,8112,596,9593,2102,-8313,-1874,3411,-9126,9699,8722,-18,-8543,-9424,-7208,-8612,-4029,-7658,4161,3704,-1851,4955,1355,7479,-6711,-222,7872,9989,6562,45,7937,9660,2893,-2359,7760,1246,9632,7077,4670,6216,-4411,8124,47,-5039,-6642,4122,-2343,-6919,-632,3237,-6914,-1600,-1762,770,9667,-6965,2596,369,-4352,8269,3870,-6179,7372,-4841,-8016,-3231,1871,6757,9490,-9975,1280,6539,8914,-1006,-1662,-1976,-969,-9139,8878,-6322,7611,-4859,9744,2371,-7667,-2849,7257,-2877,7232,8847,-4571,3304,2641,3739,-9153,2765,-4343,-7230,-3813,-1520,-1308,5166,5951,2619,5356,-5373,5629,-8120,98,214,6354,-5059,-4220,7588,-6391,99,301,-9410,-9901,8627,6188,9508,2761,-1407,8083,-7809,-7274,8631,-569,3346,9900,7664,-3467,-7208,-6741,-710,-7714,3108,2988,7679,9949,-3874,4532,-4579,-1635,-9897,6301,-2987,7156,802,6941,4682,1090,2517,2816,-2263,-6105,9302,6507,-876,-1656,4011,-5802,-689,-394,-4915,-1541,2690,7435,8819,-9267,9529,902,3107,5055,-2797,-2507,5603,-7438,7543,7136,-8932,-9821,-830,7110,5034,4509,-7321,-3273,8498,9980,4401,-644,79,-1187,-5776,-9066,-7396,4216,5208,-5569,7751,853,-5890,8166,833,-1618,-7001,-6966,-224,7224,-2480,-7549,7943,9173,4714,5822,-1066,-6327,4098,7060,1395,-1838,-4748,1477,-2985,-5226,-6555,-7357,5803,1172,-9551,-293,-7197,1562,-8130,-4909,9825,-312,-6442,5150,4168,-4185,1996,4751,4835,-5010,4182,-1247,3363,-7734,4711,7831,6298,4108,-3255,9539,3826,9543,9605,-5796,7034,-3681,5945,-9036,-7075,-5969,1480,3950,-3218,2518,9366,8492,4184,6982,5905,-7263,-1926,-2846,-2945,-2262,6648,626,8722,-4578,-49,-7583,1167,-8301,-290,-3643,-3908,6157,-2523,-7913,6337,-9081,1112,-9315,6671,-5770,-8437,-9549,-9084,-5736,1348,2824,-8209,-6875,5935,8645,1049,-6672,6545,-7663,-651,-5510,-3008,8516,-9620,7299,5971,-9636,-321,7584,-8646,2086,8049,2095,-5797,-1724,-8660,5624,-5387,-7014,8850,-2368,-4720,-2226,3849,6772,-879,-709,-9574,-7848,-3645,124,-2345,-2186,5146,4809,1904,9917,2261,2259,-2099,9089,7258,-7902,-4298,2361,8851,-6622,7841,-111,8311,-1886,6721,-148,9332,-1250,-1536,3644,-8257,-1539,-8212,1470,-2999,7756,-3185,-1425,-4693,-3254,3448,-4117,-2792,7727,-5602,8977,4385,8485,615,-304,152,4948,-9863,-1985,-8232,2616,6154,-1791,4680,-5965,8860,2334,-8966,-9117,-4141,1782,-26,-842,2829,-3475,-1458,717,8215,9018,-108,-4952,4692,1692,7881,-17,8392,9356,8996,7350,6471,5414,-4313,-2581,-9698,3165,-1012,1765,-4283,5705,-9854,751,-7607,8346,2414,-6922,-1622,-4449,2481,2017,2827,1784,2065,-2006,-2239,-6445,9396,6160,-7980,6588,-6583,5208,6348,2150,3157,761,2779,-1461,-2956,-1083,-3197,-9083,5807,-1338,3561,3016,-9420,-4571,-3173,4661,-8431,7274,2747,6939,-6455,6412,-538,-3797,-2099,1166,5702,7066,-668,-3418,-9976,243,-8207,791,-3829,3433,7253,7872,1676,3258,-7037,-8132,-2141,636,3688,9617,8123,3036,-4230,-9212,-8990,-1045,9464,6142,-6861,6304,4651,7272,-4222,1052,3049,-7893,9399,-2472,-6687,-3660,-5172,5013,8908,-8345,6016,3043,-9934,895,9647,6836,3206,-6570,6828,8881,-9757,-6518,-2251,-5700,3129,-1941,-9400,1356,2576,-8489,-1837,6113,6691,8561,-7342,6173,7779,-6059,-7037,-1606,-703,-7673,9056,589,-6165,6291,1077,-5257,-4920,4343,-2840,-5846,-5317,-8171,3640,2129,240,-3534,398,7675,-5676,7568,8513,8658,-6409,-6461,-5877,1997,3692,-8947,2008,-3928,7069,-8999,897,-1420,3039,-1118,5394,-2582,740,3740,-3020,-7326,3200,-1061,2442,1991,-2408,5011,-2981,4657,-9858,-9909,424,7058,-569,903,-5771,3794,-9360,138,-1672,-3066,5933,7463,-9046,-4561,-6973,-622,5832,4928,-838,-930,-1524,-3249,4317,7171,-1871,3867,-7207,6649,524,-8777,9341,-4172,-9568,-3659,-2925,-2135,4972,-1646,-2304,-2580,-3132,4362,2811,-9622,3030,-2390,2481,1854,-2508,3436,-2153,-5230,-2447,8098,-1926,5650,-2186,1054,-4291,-1600,338,-9194,6439,-5735,6401,4301,-1470,2958,-6068,-9363,7331,-6270,8183,-1755,5938,8403,8055,-7122,9704,1331,-3397,6799,9257,2357,-50,-4646,6675,-2139,-1291,-9711,3896,-6033,-1756,1482,8691,4597,-5259,8789,-1072,-8465,-8069,7815,5158,6456,-3485,-1618,-619,-4177,-5907,-6610,-3309,2237,-5954,-3389,6420,-1544,-334,925,4418,6123,8545,-4619,5302,9995,-3073,1669,-9496,-6087,2392,7133,3215,-6228,-7148,-1964,-4971,-1120,6216,2803,3249,-5699,2483,-3471,-5887,-7893,3028,4535,3187,5069,755,-4864,-4335,1560,-3626,-5933,6797,4512,-270,-7179,8514,1344,-117,-1194,2438,-6630,-7156,-7885,3692,-8280,-4281,1810,-4016,7511,4387,-7879,1278,8540,-4019,-5549,293,-9429,-9773,2456,-6394,8412,-3113,940,7015,-1132,-1439,-224,-8862,3729,-5748,522,-9873,-8402,8106,-526,-561,9672,2407,88,1349,7166,-7931,-2160,1489,3755,5259,8175,-1358,-6891,-834,8234,5504,2914,-5478,8953,-5327,-9474,-828,-3206,-5676,-1322,221,6995,-8525,4877,-512,-9692,5613,-5367,3619,526,3668,8464,4990,-5865,2763,2768,7397,8786,1059,8397,-4775,9142,-5765,-5815,6040,-7977,8768,-3404,-8471,-4867,2859,1216,-2777,-4476,5133,-4881,6402,-6508,3980,-5811,826,695,9900,3868,-5096,-6832,6983,1632,-1715,1450,6585,-3501,4383,-7916,5640,-1524,-9076,-3165,-4432,-1724,745,-571,3179,290,-4078,-3271,4248,4421,-5948,-1236,-9619,-5950,7951,2196,-4615,6610,6076,-3188,-4528,-8344,6435,-3386,6083,2108,1966,9642,-9367,802,-1335,1075,5120,486,-7713,-680,3800,7895,3922,-888,1224,4986,-8901,2,-8064,4242,1900,-7471,5244,-57,-8461,-235,9964,1974,-7422,1321,4880,-8054,9723,-4897,4924,-1961,4815,4236,4045,-9023,-6153,7225,6608,4681,5351,4551,-2197,6287,4489,-4253,1503,-3425,8155,-9082,7212,6868,8203,2345,-3341,-6045,-5090,5506,8844,5559,4715,-8387,4157,-1852,4186,7821,6426,-5819,-6382,2648,-5576,1790,-1143,-7497,9721,-9409,-8751,-1378,6357,8281,-9932,7956,-9031,7693,-6367,-7899,9599,-4290,-9635,-9373,3671,200,3690,-8669,7431,8809,3108,7645,1868,2265,1137,4458,4971,9334,-8464,3032,4280,-1594,-2702,8992,-2266,9336,1022,7227,-2877,-8209,1869,-7342,-7268,6545,-845,542,-7480,158,-9831,2903,6656,-8901,5232,5273,1981,-251,-3949,995,1203,4483,9522,4712,-2037,1612,3325,1630,25,-257,3200,-9015,9225,-7136,7121,8987,8891,-3324,7443,811,-3092,-736,6030,4564,-2674,-5662,7688,-8173,7288,-5888,1804,5142,-9087,-898,-481,-6065,1491,-1228,-3132,-347,-5698,753,-661,-3340,7365,8530,9280,-2475,123,6206,9735,6018,-7649,-9651,6480,-3128,7581,102,-8330,4939,-6969,-8823,9288,9715,2103,-3226,1419,-8619,2303,6804,2202,-2542,-6167,-392,-9799,779,-6771,-4798,-9238,5884,6269,4478,-2034,-3156,9034,-815,6026,165,-9640,-9016,-8902,-9500,6192,1875,-443,1016,5155,257,-3802,-8385,-3610,7733,6534,6640,7989,198,-8483,5107,226,-9695,-4766,-8052,752,-113,7185,-7614,-893,4196,6590,198,-3208,7005,2483,5948,-984,-6983,555,-8681,-4914,3126,493,-1758,6313,2595,1679,-4969,9347,-8092,917,-8221,2749,8921,7579,4680,-4445,-2468,6731,772,7273,4237,6158,-2451,-8631,6465,-2573,2602,1770,1900,-5697,-5637,-7362,-4880,6314,-4034,5352,968,-8383,-4725,6254,8859,5806,-5535,-6084,1347,6268,-5658,-8020,8492,2182,-5109,392,9752,-5876,-1216,5896,9043,-6870,-3646,2373,-3931,8219,4073,-8365,9417,-3150,5668,6450,-2832,6272,-8565,-8755,9171,-2678,8372,9375,3555,8595,-1939,51,-862,2159,7798,5019,3862,-2034,3001,4589,6002,-3283,-287,-7488,2753,-9742,6581,-2680,2485,4518,9260,7330,-575,-234,-6521,6615,8063,9896,6711,2591,3170,-2188,-6332,2674,6889,-6579,-2029,307,-3579,-8049,8561,3526,-4884,-3482,-168,5170,7436,3284,6325,2847,4356,8519,816,5132,5940,-3425,-7061,-3338,2299,3790,9336,-2674,9627,-8741,-4293,3801,-4199,-9910,-6918,116,9277,-5174,5005,-5254,8949,-8083,677,-6416,9505,-6675,4220,7193,-1497,-2457,728,915,3319,-6767,6084,6444,716,2450,-2629,-9331,-561,8759,8490,3634,9309,5859,636,-1215,2103,5663,9224,7480,4185,9020,7459,7818,-9679,-3917,-1740,-7789,-8602,6582,4488,269,-9702,8687,4144,1914,-3571,8737,-3327,4396,5817,-8033,-9800,-547,804,2964,-8140,4462,3865,-5592,4461,5191,9123,5445,-1436,3287,-8620,922,-9487,7088,-2243,8865,-1103,8590,-6551,7797,-8994,3700,-6045,-6483,9113,8989,-9515,5936,7632,482,-5278,-7338,-6779,-5393,-7328,-6093,-4685,9715,68,-2322,-5178,-1794,-6546,-7787,2287,-5840,2417,95,-2983,5501,5370,7717,-7749,-4591,4849,-9217,3665,5583,-9111,4759,4141,-1361,5491,-5882,77,-3588,1710,3257,9764,3008,-9958,1342,-9283,-2733,1779,5960,-9362,7644,8459,-1628,1904,-2515,-2325,-2771,4078,-7841,-3229,9388,-1820,8451,8513,7132,9653,8221,5620,4886,7766,-9853,-4250,3148,-8138,185,-2214,3800,-4769,808,9261,-1907,441,-1059,7990,5852,-9784,3848,-7112,-5335,9424,-7192,-3693,-5409,367,6132,3873,4220,5062,4635,-5739,3218,-285,7905,8507,-3652,-1844,1899,9015,-7713,8101,-7644,-9891,-4921,6967,-9402,-869,-7707,4231,-9404,-7444,-7422,-3267,6986,-925,271,-3307,8691,1726,6571,4347,-9554,4113,7708,-9820,-6425,3296,-7907,-3626,6608,4393,4764,-6109,-6554,-3706,9180,685,-1343,8276,-7288,-4823,-2791,210,9699,-4224,6605,7279,-1839,2800,5281,3943,-812,9795,-3340,-3349,1957,-3491,-3948,-7906,8194,-7377,-3458,-705,-8583,6214,-8674,-5958,-8389,-9367,9948,-5062,5159,-9740,4300,-1278,2613,1307,-8515,3853,-4891,-8421,-2006,4601,5306,-4518,-9865,-4258,1921,-5310,2226,-9888,1002,2117,-6210,7475,8881,137,5260,8098,-8812,4709,2508,4371,8069,-6986,-9272,1207,3440,8712,-4178,111,8609,3902,3614,4583,-9608,-5671,3770,8177,-4991,3383,-3206,-5345,-6618,2359,5834,9039,-2039,-2026,5706,2935,7774,-4029,6608,5450,-1179,3268,-2357,-4918,-101,968,5222,-6651,-7652,-9350,-6932,-5752,-6335,-3820,-5358,-3538,-6686,721,5045,8405,7441,-2079,6605,8886,1914,-5508,-3139,5426,-5558,-5326,-6236,3919,607,-5543,3695,-767,-1025,1604,5440,-8587,9858,-4348,-9082,7733,-7392,107,-4701,-3459,3399,-4265,-6819,-4271,-9511,-9429,-7539,3846,-7178,2304,-8159,132,7236,-4707,-7940,5195,-5426,-3770,-6365,-4941,-8465,-8778,-7724,6289,-3923,200,3600,-7364,-7823,4263,-2056,2561,9213,-9537,7859,8745,3153,8400,8500,6116,3161,680,-6897,6210,-3732,377,2075,204,-2856,8069,-2868,1160,-7389,839,-2764,-1406,2147,8205,-7504,8399,5656,-9149,-6356,-211,1107,-9555,5035,5620,-4785,-6852,8049,3155,-3133,-8172,9659,-1035,792,7423,4461,-3270,7875,-4147,-6614,-8782,3528,-5597,-7071,2816,-667,8444,4268,4336,7958,-6862,3227,986,6234,3267,-9852,-6729,9639,7992,-4290,-9953,-2793,-4919,-8855,7524,-8141,6171,-4713,124,2785,3,-5572,-3506,-2291,-7451,-7902,-5694,-829,-3899,-1791,1551,3165,-5200,-2986,8670,-8965,5521,-6391,5525,-8059,-9473,170,-6726,6387,6578,5746,6617,9266,-8398,7528,5138,3113,-3091,-8403,-3739,-9940,-7930,-4600,9518,2928,-3037,-2973,7430,-1204,3366,9120,6631,-7220,6518,9303,-2734,-8866,2225,1997,207,9105,-6075,-5490,-885,-9900,-2713,8478,8564,-6929,-5976,1713,-630,6408,-5517,3043,-2909,-5776,-213,-4127,1224,1125,2945,9530,-6539,5349,-2976,4161,-2612,5575,4972,5828,-6755,-109,3364,-2959,8239,-7009,3711,-5643,4700,6987,4132,-7488,-2231,6554,8693,4203,-9397,8479,2258,8547,7881,2880,-1509,-4312,2387,3792,4959,9650,-5992,-3282,2254,6565,5724,-801,-3833,-1525,-5646,-1364,-1890,-9713,652,781,-3440,3139,1752,2697,8340,1831,-7256,2336,617,3649,-9144,-4948,5569,-1763,-4279,980,3992,-8129,-7224,1114,3797,5018,2327,5145,-8741,-5839,-1263,-8450,7964,5496,6032,-2745,-6347,-2732,5314,-6287,6060,-4588,-6270,1113,-9680,5384,145,-6401,9133,-9774,-2178,-172,-8246,-7037,6424,-5245,-7130,5015,8517,8408,4482,-1661,5156,8255,760,7138,6348,-7171,-291,120,-1209,-5529,-1517,-2600,-2036,-3550,4187,547,7751,-2318,4033,8603,3469,-7552,9506,131,-8455,2165,-385,-2960,5943,-8585,-4765,-7343,2724,5384,96,2437,-100,9207,344,-4229,-8711,-5140,-3590,482,-1279,477,6364,-7866,2920,3275,-1344,-6147,-287,-9545,7584,1107,-7960,3586,155,765,-7532,-8432,-5406,6152,-4902,-5303,34,-8166,7040,-6771,-8815,9204,93,-668,804,-1012,-4432,3745,2513,-2256,1664,-4310,370,-3289,3029,-5360,3619,6949,-5706,-6250,3474,-4246,-9320,-1261,2957,-7262,-9142,-2527,7840,-5919,-3506,-2822,3700,6208,7877,-2145,-7342,-6653,1840,-4301,-7977,7405,-9118,3625,-6670,871,-9302,3101,-7367,1995,3379,3305,-11,-1169,4736,6863,-8260,361,7294,-6444,8769,7525,-599,-4849,-6971,-1969,6080,-5741,-3057,-2519,2960,-414,-8402,-8479,4684,1281,-1165,-865,-7126,2878,-4035,-6695,5230,-8985,2246,-6180,-3103,2638,5547,2513,-1625,-7894,2285,-9519,-5484,7250,-9222,3406,-3718,4065,9148,-1459,1494,-5448,-6936,2191,6345,-9391,-8867,7621,-4504,-4750,6617,-2464,-6661,-222,-5743,2359,6446,-3774,-8971,-4996,-1641,-2604,-662,-3960,-4839,7744,-5719,-2181,1250,4777,2248,-9279,5002,-4214,-8489,-2554,-9014,1385,1516,-8425,5259,-9242,-1411,-5289,1994,-8006,-8629,-9638,5295,1454,7396,-2896,-1419,-799,-7840,1274,-818,-959,-845,-4074,-8905,-7841,-6450,9612,-7272,9086,9530,9429,-5978,-5680,3410,-3378,203,-3702,-2401,-7143,9186,-8924,1298,-3435,5585,5123,6926,8009,-8188,-5013,-5524,-705,-9275,2278,-4179,8097,-9576,6815,-4155,1738,8127,-9138,964,2913,-8696,-319,-8841,-8865,-7381,5376,-7752,-6379,3526,9188,-9587,-9654,-4169,8372,322,-2661,6383,-7139,374,7028,4828,1935,2836,-9088,-7239,2028,9541,-2344,-2756,-7168,316,6417,2895,-7355,3783,2608,-7050,-7534,5625,-2585,4351,6062,-7866,-5781,-5457,-2777,3359,3210,1288,152,9667,-7758,8634,8971,9528,1898,-4071,-1926,-8087,2354,-1049,8203,6509,7240,8011,-548,914,-6010,8547,3295,3267,-3525,-469,-9417,8504,-6279,6793,5628,45,-4198,7787,-5780,8669,9670,9348,-4409,-9559,-7516,-3340,-4494,-8609,-8479,5724,5558,-905,6216,6098,-8549,73,3848,1270,-9745,-3554,-1535,4795,-9150,-4852,1044,-4854,7811,-1619,8932,-5722,5082,-1748,-3602,8933,-6755,-55,-4509,-8566,7210,-2313,-7402,-4306,1184,-3218,9812,-7041,-5746,6935,9052,-1115,-3445,2332,1491,1514,9924,-2177,-6696,-7973,5357,-5819,-8194,3677,4149,-7761,3162,-3630,8426,-9569,-7598,-9673,9967,-7152,-9211,-7171,-7117,-6012,-6205,7513,-6088,5331,8363,9211,5414,5196,-4553,3508,-4401,-2355,-9399,-7652,3024,-3484,-9758,7036,8588,-3821,1180,-1247,3241,-598,1213,8572,4869,-9734,7543,-6835,-2876,-8943,444,-2717,-5279,4780,-7751,6469,-5672,8580,160,4383,7030,-3697,-6298,-8052,-2030,9643,-298,-1854,-5381,-5397,8638,-756,-3231,-1026,-4476,2150,4359,8162,-5449,-9424,-2977,-6724,-2542,9198,-10000,-8681,-1909,5897,9931,-1720,1003,4456,-4172,2829,7573,1425,-8091,-4660,6362,-4864,7201,5542,4200,3210,5509,-4366,-1118,8513,3948,-228,-3424,-652,-7831,-8944,-8239,8591,4481,-6228,2504,8976,9822,6587,-9843,4154,4838,-6145,-5455,-6607,-6061,3969,-5060,-2875,2854,-9963,-2382,-2102,-267,-5232,3738,4959,-569,2089,3628,3673,-5703,-9945,-7104,7527,3475,-2569,7005,3833,-1303,-536,-1653,3825,-9054,8369,-5109,-6999,-672,7338,223,2675,3143,5511,6316,421,1118,5260,-9899,-3343,1036,1081,1156,8242,1912,225,-3523,-8262,3674,632,-1601,2260,-6715,-8910,-1150,6002,-6659,-8325,526,1905,9845,7048,9864,-7781,3881,-5549,-8228,-1925,9124,4132,3834,4243,7064,-9272,-5947,-3936,3254,-4095,5270,1447,2899,4803,-737,9521,6490,7575,-1985,7926,-1380,-5503,7203,9748,2748,-8477,6133,1132,3729,7696,-4190,4796,-4623,5093,-1698,273,-1872,-1913,2434,8708,-9932,7083,-2485,-1328,-9501,1270,6538,6410,1068,161,-8320,536,-6286,-5962,-2117,-1603,-6049,5348,152,6953,9598,-8469,-6732,-2941,3783,2021,-8243,-9653,-7960,-2904,7193,9258,-3296,-1735,-3667,2679,5627,5742,-7414,-9628,-4809,9892,-6587,1244,-1180,-8089,-4587,7327,-5622,-8645,5134,85,-5743,-3735,7252,-6232,-8943,-4502,1073,-9283,-1510,4008,4207,-8111,-5606,8929,959,4075,9890,-3616,2219,-2978,533,4985,-3099,-7534,286,7595,-7160,-5137,-9663,9192,-9702,2837,7930,4720,2839,2073,-3230,9948,-6001,1908,8126,-1672,4252,-3071,-7256,-458,-7305,-8371,5303,8228,-8650,4221,-7799,-9355,-8421,-7112,2319,6009,4342,1700,-6193,7671,6306,1891,6798,7561,-5428,9308,-7197,4255,-250,6776,-4290,-8494,-7850,6031,-7114,-6727,4576,9611,-7943,1033,-6798,968,-3968,4518,2623,-7467,-5127,9621,-4360,-526,-3766,8916,2307,-2136,-6315,5351,-5241,5235,2487,-3061,-1372,7362,-9032,4288,-4068,2955,2196,8879,-3106,-6487,1389,-4154,-2843,-8954,-2561,2066,-504,-4977,-9751,4602,-5225,-2273,762,-2041,9615,4028,9467,9899,-9223,-1073,3089,-1201,-1062,-997,3495,6228,4804,-5087,-551,8184,-9431,7856,4237,685,8516,3330,2191,-7963,5117,7283,3126,3548,8171,8485,3485,37,-5809,-9064,-511,-8248,-2088,-8081,2523,6273,4713,7557,-781,1922,-2851,-9045,-1104,-4611,-6481,6603,-4291,-82,5214,-4665,-8246,3816,8607,2797,640,7927,1579,-9898,-5875,-6934,3869,2990,-2576,508,-5460,-4130,-4825,5934,-4138,-6762,9025,194,-2562,-236,8972,-6517,7820,933,200,1066,-4126,9984,8213,-6917,7780,-7547,-6167,525,-8107,8126,1228,3749,8176,-1512,9357,2830,-9642,2869,4384,-6755,2974,-3287,-5150,-5600,-1787,2955,-5542,2601,4468,2810,-5888,3399,-9315,8020,-9052,-9291,-9384,-7726,-1961,-1012,-5517,-1725,4354,3266,-9558,9694,9179,2839,7033,2010,-6568,9643,9710,60,1289,7936,9564,6153,4829,1740,5468,7556,-1354,-5230,6281,1846,4623,-1975,-8052,-8199,-537,-4646,7445,-7790,-8888,-3983,-4003,-7819,1519,3560,-5574,3023,-6106,6132,-7319,-144,6411,5101,1944,721,9957,4874,5993,-5416,8483,-1076,5283,8087,1092,-2997,7966,1179,-1675,9249,-1985,1127,9489,4663,-2227,-833,-5641,1566,582,5151,6844,-580,-4381,-9247,2370,4757,6533,-4167,3126,2983,6104,6000,2876,6901,7540,-8257,-4737,-3667,9869,7573,928,-1681,3942,-6313,4445,-662,-5940,2840,4752,5508,-4053,-5155,-9665,7556,-5880,8325,-4518,-4202,9906,-7047,-5131,2186,7864,-1715,-5442,1430,1715,8031,8530,-4908,7827,-370,-3810,2921,8107,-8590,878,5255,-3929,-2526,-6518,-9494,-1255,-5371,-1493,1586,-7247,8721,-4954,9894,5992,236,5228,3273,6330,-8953,-3614,5146,-3358,-9696,-2781,-2416,-4671,4722,-926,5783,-3992,9180,1584,-3713,1974,1656,2575,-2474,9405,9510,-8271,2802,-8547,9823,2081,8886,-6710,2168,-1221,1100,7056,-7968,3453,-6691,2124,2891,9427,-4615,5500,-2366,6333,9298,-5423,-5968,-1065,5955,1293,5534,-2615,-3656,-4934,-6543,-160,3205,89,-3958,-1010,7529,-5121,6449,4459,8090,7774,-66,8474,-894,-9860,1245,-2631,4870,-9320,7515,2724,9662,-738,-6440,8124,-9635,-5273,-9766,5073,8049,-435,-1605,-812,-2063,533,-4371,9665,-4383,-1656,-1911,4375,-8981,-8020,8677,-6395,7035,4927,7152,3160,-4698,1653,6497,-8027,-5329,8203,-1772,4390,-9796,-2996,4624,5284,-2501,-4820,-7920,-5492,-4710,8003,8462,-2144,165,7196,6737,-2944,6154,4058,-7908,-9730,842,-1237,-6139,-6555,-5280,4512,1613,6053,7036,-2956,9187,9741,-7052,4627,6143,8816,-4490,-401,-9861,-5243,5659,1802,-5715,5294,6043,-1825,-2096,8272,-4758,-6475,1633,3524,-7025,1632,1735,8362,-3565,6214,-718,807,-4029,-6865,-9823,8583,482,-4022,-1785,-2281,5893,5634,-5015,-8471,5144,-458,-5422,4637,-8174,-3122,-9831,4616,3539,4432,3014,2216,9285,2930,1780,3502,3798,1989,8141,1643,-6864,-4957,-6561,8958,-7823,-3106,767,5588,6614,8624,7320,-9250,8372,8522,9386,405,7420,7630,5566,-9686,2289,8523,4539,-1813,3422,-1020,-8343,-132,-1278,66,-7180,-3882,-3543,-6744,-7024,5218,-4093,4910,4036,4875,3961,-1692,1093,-6740,-249,-4477,-2530,-9273,-2358,-2422,-3971,-4165,5748,-9939,-5888,6731,8903,4445,-3174,5422,-7087,-5564,6058,-5651,-2700,-8427,-3669,-3392,-6206,4628,231,-4652,-8388,9439,-313,495,-5223,-7090,6778,-3158,-9622,-174,-4202,-8482,-9358,6889,-7552,6120,269,-8164,-3138,-8754,-7787,-513,8935,-1887,3436,-3294,4907,8607,-5665,4520,-4193,1507,6150,-4927,9078,-4205,7464,58,-3883,-2647,7347,-5880,2765,-1891,8067,3467,6646,-5944,1608,-9833,1104,3106,-4092,-2895,-3961,4736,-4012,-9528,1943,3843,-876,8232,4823,3337,-6726,2469,3326,-4809,-1024,-9344,8740,-3008,4940,-7055,-2103,8605,5377,-9748,8089,6471,-4189,-4556,-2105,3070,1720,7628,-3619,5551,-935,-1508,-6492,3192,-9080,1587,6187,-3653,-36,-3880,-6019,9864,5678,998,8033,3331,1016,4231,-4012,9835,2760,8504,-1940,-5533,-9672,-3383,-3570,-2219,-6017,469,3337,7130,-2557,880,3065,7842,9844,6785,-8530,-4909,1338,7039,1570,5087,5264,-37,4722,-5607,5606,4393,669,-1439,-992,1768,-9263,-3655,2955,958,-668,7592,-8502,-3022,5960,3367,-491,-8322,-3252,9074,-2903,-291,3902,513,-3216,2244,-1913,706,3052,-5711,-4949,-1395,-3959,-7570,7728,9809,8950,-8964,-3770,786,645,8683,-7397,-5714,3105,-6704,9564,-181,267,5697,2254,2741,7944,-2519,-3386,-9965,1205,6434,-8869,1944,9344,-6732,-2052,-2914,6587,-2854,-7920,8388,7021,-7835,2989,-7183,9097,6380,5802,2818,9431,483,-2471,9940,-2999,7933,4739,-5000,3776,-1983,6282,-5436,-7013,8332,-769,1504,-6506,4476,-1925,-337,941,1685,-3608,2302,-3154,-1944,-7371,9571,7686,9548,-3074,-4302,-7496,3146,6030,2480,-3102,7786,3101,-7131,-5410,2786,9184,-3316,-7111,3603,4389,-3289,-2845,-7099,6829,3855,-3499,9161,9737,-7619,8305,5220,-5085,1254,8994,-7303,5298,2426,-8580,6990,-3647,7163,-2730,-1441,5986,-6244,-8452,1156,5596,9334,-2845,-1994,-5235,-5758,6888,315,-467,-7952,-4903,-220,-6404,5016,-1995,-6349,-8686,9846,765,-6889,1791,-1203,-7816,-4659,-1824,-1174,1700,-9012,-6141,-4260,-4110,2325,-7693,9017,2270,-3209,-9158,5056,-1620,9304,6275,-3902,-4443,6472,4699,5390,-3250,3875,-9483,7565,368,1654,-1185,9373,2701,-8074,8162,-684,-2318,-1966,-8495,6615,-8536,-1462,-2065,6712,-9096,-4098,-495,-5206,2858,-1947,7132,8601,4146,-302,441,-1034,-1286,357,1033,1949,3914,7409,4058,-9713,9306,-4819,-8523,275,-7409,3695,3935,6140,3805,5826,2562,3545,-1373,-8473,8989,7453,9885,-7083,-942,465,685,6461,-7031,-3193,-2769,3703,2282,-2746,-6348,5715,4772,6133,-1966,-7424,3531,-9584,5586,-4857,5897,-2194,-8154,1495,4539,-9074,-9614,-4889,-5446,1058,2878,-3932,9084,9119,9543,-3189,9628,-6249,-2291,-4424,-642,-3821,-6416,1508,4481,557,9949,-5628,7795,95,2260,4338,1166,9208,37,8948,7008,-7671,3372,3498,-696,7146,-2911,-3797,9833,-7815,2269,138,-4578,7263,2241,3200,6145,-5722,-9041,-9271,-9877,-3209,8476,-682,-3319,558,5610,-9705,4547,2193,-9586,-5921,-1795,2171,-48,6127,4534,4336,473,-4658,3117,-6351,7398,-7635,3758,-7586,4326,7817,-1417,6376,591,-5431,3113,8774,-1355,-466,-3952,742,-7147,-5402,4725,-8830,-6626,-6821,3966,-8992,6062,1780,-3142,-3755,-7967,3525,1531,-1420,-174,9014,1671,4094,-6011,-7919,5064,-7321,4945,2892,160,-1066,3618,2117,-337,-1353,-7296,-9568,-3168,2485,6703,5233,-2896,-184,1346,-9586,-2313,-7294,-1664,-5153,-7599,-2682,-4495,1339,-6423,1638,4073,8509,-4908,1240,9717,-3701,9272,-743,578,5340,6035,8029,-1480,-6589,-9615,-3243,5509,-6900,5761,-4981,3817,5469,-4114,-7970,-8684,5025,9843,5030,6544,1190,-4744,5267,5884,1829,-6647,-6265,-7546,1557,6558,-5697,4061,-7007,-7845,-6212,-2595,-2044,9765,8768,-7197,2711,3915,-1557,8989,7711,-6791,-4947,-2376,8842,-1815,3822,6217,-1565,-2113,2827,3495,-6064,-1028,6160,5241,3131,-4468,-3088,5189,3892,-5375,-1391,-7674,-6826,5564,-3710,2187,-7262,7047,3487,9918,-5252,-81,482,4391,-4852,9547,2423,-6264,9362,-8366,8201,-3657,6321,2052,-8819,-1282,-9657,3467,144,-1137,-5631,-2600,-5010,4275,-652,9296,1678,7068,5050,165,-7281,1488,4374,4642,-9360,-489,2626,-4969,5152,-8305,6288,3515,9699,8672,-2564,-8474,2119,-108,-4586,-9793,-5162,-3409,-1213,5301,3205,-953,-5654,1681,-166,2986,7583,-9952,1929,-3446,7847,3060,-2252,-2366,1867,9950,-2398,2887,37,9277,3765,3519,-3639,-7854,4684,101,-1578,6110,-2873,2099,1814,-3443,-6286,-640,4941,1033,-3258,-5148,9014,-8189,3002,-8505,9041,-9245,-4443,-8596,-3514,-8256,7054,-8836,-742,-9242,4516,-2915,-9126,-4068,4628,-9858,-173,-5648,-890,-8450,-8209,-9886,-8106,-532,-8584,-5493,-7227,-8546,-3830,6080,6555,7935,-332,-2745,4774,4802,-39,-1893,-9897,-7223,-4182,-4684,-3338,9061,-1394,-6746,5621,3348,-4846,-6469,4382,-3001,8316,-1677,-747,4041,7767,6364,5652,-4510,8696,2774,3656,427,-9291,6854,8744,-8296,-5497,5946,-9709,-2794,-4551,3235,-4439,-3722,6120,1251,8294,-533,2084,9771,-7361,355,2272,7737,-4453,-5612,1410,-7170,741,-1583,2526,-1523,-3703,-138,1975,-6426,4640,-2985,-3684,-8926,3839,370,-6651,-1882,6153,-5681,-8961,4680,8887,5483,-7536,7971,-7649,-4053,-9243,-7905,-6289,2589,-5567,1317,3552,5762,27,6494,1070,-3084,3922,-4531,-2058,1676,-5073,-5783,2154,-9076,-1648,-8038,-6568,-8177,-7028,7768,-8137,2522,-5421,-5263,554,-7873,-9260,-8363,2880,7160,-4625,1511,1065,-1081,-1425,-9366,811,8615,-801,7644,-5003,9865,5764,7113,-9991,-8712,-3681,6454,-3446,7332,-801,9977,-7491,5910,8049,-4207,-407,2863,620,5691,-1699,-7473,-6096,-2955,9036,375,6888,-7528,-9191,-4814,9671,-8513,-3023,-7053,-2105,-1636,26,2013,6494,3251,-9199,-723,-2490,8698,-3489,-6320,-2613,-3631,4663,2281,8538,-5427,-8075,174,-1773,4508,-9865,-5590,9758,-7543,-3440,-1489,-8572,2818,731,-8026,4693,-5500,-7480,6870,-9599,8753,1203,-895,-6035,4857,260,3247,2646,9209,4314,3611,-5743,-6462,-3153,4454,1292,-829,-4252,-19,355,9101,7401,-4377,4378,7451,959,7056,-6830,2643,285,435,-7205,5824,-3102,-6690,1239,-4604,4655,-9412,174,8994,1374,-3749,6112,8503,7025,-2112,1873,9605,-2047,4114,-3355,8283,8910,-8419,-1141,-4792,-7053,-550,3250,-5570,2589,-6192,-8795,9269,7615,7562,9274,647,4691,3650,-1370,3421,-9399,4789,-7618,6706,751,-636,-1336,2156,1920,5825,-2339,-1825,2250,-5364,-665,2322,-2091,6368,9785,-6446,1133,-9058,6583,-4569,-8298,2018,9875,-5476,1131,1839,9825,-2916,2274,9813,-2624,-6439,3294,-5595,-9046,1451,-6542,-1447,-8807,-3274,5936,-4939,860,-5496,-4863,4201,-3502,8933,-1108,2879,-1157,-6570,4293,8063,8031,5051,-826,4250,-6490,-5254,9173,6442,6068,6082,3003,-7512,-884,-1399,-9235,-2075,-6693,5886,-2962,5800,8631,-4466,2963,-9148,-2029,3165,4797,3580,-8331,9382,-9176,-4432,9016,8848,-2651,7060,6717,3089,2063,-4732,7492,-1837,-8136,-3265,202,-8739,-8898,3177,5961,5746,3633,-7848,5514,7075,5430,7806,3745,6784,-3250,-3003,6471,7571,1737,827,4284,4280,-1780,9331,-1855,-9453,-6359,7668,-3062,-9729,-395,-4595,9608,-4259,5805,-5151,-8312,5935,184,-4064,6443,-7857,5818,-4768,7990,-7810,2678,3248,-2411,-9081,9053,9547,8277,-3608,5538,4229,-4685,2966,-6156,5190,9232,6985,-9512,3393,-9688,7513,-4212,4184,7016,1760,-9444,4192,-6946,7686,-1484,7197,1240,-4771,1397,4453,-6576,-1795,-5231,4829,7182,-4268,3734,-5970,-6945,-7526,6945,-7553,-3655,-896,5430,642,8779,-3690,2470,-2805,4634,1141,-6377,7763,4774,-4692,6720,1838,-7470,7251,2019,-7386,3966,-7871,3192,-1338,114,-1217,-4732,-3181,-3485,-1549,-5856,-2915,8035,-3479,-4704,-3597,3793,7323,-3642,3935,-3047,5488,9828,2057,-1336,7208,-7073,-4880,2683,-8366,-6845,9822,2738,-3321,4386,-9498,2492,4599,-2033,-7469,1167,-4920,1665,1347,9368,848,-6622,8495,-2529,6522,-1394,-6034,-2844,8731,-8951,-9254,-6219,-9408,67,-3986,-184,2805,9503,2077,-8826,-3320,8527,1656,2777,-1677,-9927,1685,6863,2880,-5270,-8167,3853,-6812,-4676,3493,-3481,-3831,-7053,7911,9468,-7120,44,-6547,-2918,425,4118,-7289,-5940,1476,7358,1612,-9263,-8701,2571,-9407,-8867,7931,-6127,-6614,-9750,2022,-69,6220,5694,495,5096,3028,-5496,2864,9130,7164,8842,486,1547,8909,1513,2536,-6634,9128,-7254,-1900,-2058,-4941,-5127,-5977,-8624,-151,-7435,-7501,-4404,-7556,-3222,-7990,9985,2421,-6833,-8780,-2909,4907,-6317,4777,7188,840,-4632,-8905,4365,-2144,2720,-8611,-22,4156,2645,6022,6474,-6451,-139,-6475,-8379,5196,-7361,7955,9844,4291,-932,4024,1054,-6561,825,-7663,-8743,-3339,-907,-3541,5371,-7805,-3904,-8487,-8289,9533,4320,-8022,518,6156,3477,280,-5810,-3981,7448,770,6228,-1598,5837,9329,1078,9643,-9385,-5900,8436,-3747,-3087,-8475,-1948,7571,-8225,9076,3105,-1166,-5135,155,6010,-5552,-4049,9743,-3141,-1465,4279,3881,5700,1897,-7264,4336,9032,9863,8217,2820,5605,8845,8790,1834,6998,8061,4911,9501,-5805,2311,9512,4963,8916,-2582,-7413,493,-4400,7595,-2349,3077,-9202,884,6981,-7427,1600,8989,-6482,2329,-7594,5858,8243,453,-1684,-3366,553,7654,-6026,6536,6210,-7733,9271,-2593,-3148,-1575,1787,-6286,-2925,2237,-6650,-9239,2057,5800,795,-7338,796,822,5449,-2041,8242,6597,-6723,-3029,554,-6068,-678,-6610,-3335,-9801,8828,6587,5622,5412,4541,-368,2677,-638,-8956,-3666,-9717,8091,-6479,-4856,1527,8683,-2474,6714,5567,-9503,3361,871,1669,9410,4719,6227,9642,3796,824,4707,-4000,6366,-1657,-4027,5557,5924,-768,1466,1802,-3572,6484,-274,-1958,-251,9312,8340,8007,5156,4649,-6210,5817,8533,7840,4002,2662,2633,-7419,-261,-7889,2174,6046,4784,6901,-9687,4950,-6358,1574,9734,8093,-2669,4112,4651,-9736,-4817,5971,-6551,-2902,-4683,-8320,-2260,5557,-6206,-3236,-7553,1289,-2682,7798,8920,-1797,-21,7398,1762,-5872,-7432,-6187,6257,-6372,-6754,1326,-6492,925,-7169,-4550,237,-6563,6031,6237,-9034,-7912,4890,-7666,9261,-6642,-7074,-7710,-8878,4304,-7594,-9968,-5183,4392,-3436,-1093,5192,-6699,8742,5902,-6364,1914,-8405,-6442,2988,-1527,496,4859,-230,-793,9591,2085,4820,5898,-7806,-2768,1459,6763,882,8974,-1990,1517,8141,-8290,-419,-1421,-2137,-9856,-7524,-6758,-8842,-3215,-8371,3359,1778,4475,-2638,-1404,4697,3157,5910,6037,4116,2204,42,2796,4059,-2429,-5609,-9238,-6749,3314,6621,-3196,-2143,-4032,4871,-7408,-2828,6569,-6299,-8346,5588,5988,4806,-1601,-7946,3014,1228,-1399,-3396,8915,5412,-9541,-664,3293,-8188,9184,-58,7402,7541,1729,-7905,-9243,-3669,7865,5297,-9832,-6931,3640,-3566,-4410,7487,-9438,-3587,5212,9692,9543,-1269,-2035,-8973,4158,4920,4959,7699,8431,-4702,-395,-7279,4155,-7870,8232,-4318,96,-7604,2753,-8484,-9429,6842,5678,-5508,2697,-3249,3391,521,-7143,1439,3001,-4954,371,1568,-2549,3695,9338,-300,6669,7154,-3185,1184,2390,-4798,5613,-6186,4944,3229,-3831,-2877,1025,1718,-8351,-6805,-5330,7904,396,-5219,4095,8724,-1116,-550,-566,-5152,-815,8149,-9415,-2493,5240,-9133,2840,-3899,8241,1379,3857,4352,3609,7984,5514,-1201,-5625,8308,-6397,1117,-2675,-8587,5348,2629,-7524,9277,7480,-3676,-5279,4282,-9277,-1711,-90,8902,-2627,-9577,1514,2507,5590,-2642,8317,-3594,-8240,-7023,2986,-4373,3732,84,9378,3167,-7550,-8987,-8242,-3050,-4458,-4134,8628,1862,-7999,-9044,-7075,-8239,-1963,5640,5051,-3752,2206,6676,-635,722,1310,1253,1760,-3505,2219,-8549,-8897,-2987,-2783,4177,634,-6719,-2577,7201,6248,6674,707,-6994,-3389,-1255,6187,9430,-2805,-8501,9043,5924,-8036,-7941,-3998,-8337,-2071,-6642,-2603,7408,7224,279,986,-567,1729,-9625,-5067,-2987,-7377,4146,-6642,9029,-2768,-3825,-3574,-4506,-4401,5252,-2911,4820,-577,7500,7753,4922,7700,5975,-2378,-8874,-8015,-997,-6590,8569,2061,-5905,8953,4428,3245,-1381,-5739,-9460,1324,4973,609,1310,4703,-6534,-3264,7119,9261,5447,-8313,76,4212,7983,-6297,-8532,2922,-3623,9683,4041,7450,-8917,-5799,-1089,-7840,484,8325,-9302,2757,8543,-4729,-8203,4821,9802,-4935,3614,-7869,-5629,417,3059,484,7865,-623,1173,-5058,-7577,1254,701,-2503,4209,1111,-1163,6263,5864,6586,-545,6580,-1955,-416,-5999,-5174,-3711,-5127,-624,-4734,2389,643,478,2439,-596,-6778,-1189,-8115,-452,-8511,6592,-3618,-1114,-7365,7405,7244,5171,2682,-3005,-4632,-5769,3190,6836,-371,9701,1930,9553,1810,4141,7580,3319,-1787,-6078,7283,808,-2453,-3208,-7801,786,8733,-9581,-220,-7625,2068,4443,6686,-8153,5627,-3005,-8759,3316,7487,-1824,-9856,2344,2317,-3787,-7552,803,5706,-4943,-6127,8628,-9221,-6581,-7442,165,-4018,-245,1831,9559,5082,-2985,1706,4043,-4551,-3020,-1773,-3892,-4231,-5246,-8411,1708,7475,1693,-9170,-6576,-7640,5786,-4184,8315,8672,7347,9799,9225,1947,8976,-5276,-5875,-6673,-1353,6310,-7117,-4097,5558,-2950,-3754,5120,3950,-9963,-9005,8253,-9331,-6356,-7766,7079,-8199,-6575,-3115,-6375,9668,5903,-4429,7342,-5495,1510,5276,7905,-3167,-3170,9716,-324,-7301,4626,-8605,-9511,184,-5499,-8798,4933,7457,8226,-5468,3352,-3264,4376,-5825,430,-1239,9721,-6110,-6231,8983,-2083,3977,-4131,2665,-2798,-6070,-5841,9820,3386,3547,-5034,9411,-1284,6579,1497,-3157,3537,-2684,7786,7536,2781,2879,1176,7626,-9894,-2739,-2170,1695,-1385,1962,620,8778,3748,-9380,4619,8680,-6497,-8597,1601,9729,-6824,3776,-7605,-7253,4749,-5149,-4169,-9446,9824,-4899,5992,-8966,2366,-5570,1750,-630,3558,-2749,-3883,-7878,4584,-6275,-5870,982,-8378,6086,8730,8705,-7950,-182,9818,-5661,-7581,5536,-1186,1396,-747,-2226,2400,-3914,-3387,4173,-2768,-8683,-479,7784,4639,-3155,-7073,-4567,6521,-8183,-1840,2050,4040,9903,-823,-5211,-2402,-6577,-8789,-9406,6825,-3457,2215,9197,7545,-8466,-6542,-5105,-7125,1873,310,-4468,987,4053,-7847,8369,9686,-2301,-652,-6783,8425,-5321,-4850,-2753,-3219,-8464,2030,8438,899,-1982,880,-2207,713,-7641,4450,1484,-2499,-7575,-3977,-3170,-7246,5397,-3442,-8468,-3234,-6628,-3012,6900,3302,4507,-1580,-5204,-1655,2313,-9995,-7077,8576,-348,1160,6687,1973,-8183,-1172,7738,744,-3014,-6080,985,4201,-9666,7472,2069,78,1159,-8465,5052,-6914,764,-8796,9520,3067,-2047,7953,-2298,-8800,9947,7787,1646,6515,-7884,-760,-5188,5174,-7938,1099,8127,2502,-1529,5729,-7342,-3421,4362,112,-9738,7518,2716,4434,7427,-6094,2751,-9809,-766,5273,9691,-8820,2532,4802,9273,-7460,414,-2821,-5010,7191,-5142,1293,-3138,-4762,137,3154,-292,9897,9999,-6750,5225,-6876,3269,-315,3877,1622,7969,2514,8155,-3147,-2156,1351,-596,-4681,948,2127,-3117,9892,-3660,4401,-9811,-5914,-1284,-833,3960,-7519,7289,-1551,-2714,9301,7341,5547,-4145,8235,401,9092,-4858,-1827,-3944,5422,-9293,-8696,4131,9369,156,-6644,4399,-572,-2431,8985,3183,9479,-5777,5976,474,-2146,-9624,-133,9065,-7809,-451,3189,2207,546,2973,-2398,-8542,7339,-885,-2997,7155,6616,5294,775,4203,-312,-6082,3359,5334,-605,4228,-1739,3079,-9656,-7466,-7378,8367,-7422,-6277,9730,948,-4369,-7110,9307,4609,7486,-1775,8738,-808,-8322,1138,-9213,-8190,3094,-90,265,-2131,-5925,-1754,6458,2875,-8957,8001,4011,-9629,-7282,-738,7575,-7581,-3629,-4188,6433,3510,8475,-9737,-7840,-8842,-7993,-8118,-168,6662,923,5753,4459,2988,-6471,7818,1317,-2628,-3076,-4442,4530,-5087,-7073,2066,-1963,-4066,6304,-5006,-1022,8625,-6727,-2380,-1760,5873,-899,3632,1456,-9344,-9879,4496,-3862,611,-3745,-8467,-5256,-5354,-5354,-5860,-1119,9170,2186,-2029,-4657,9323,9655,-7205,9899,7677,-2700,7226,-8979,-1104,6131,9137,-3081,-2952,-6456,7006,-8439,-2015,-1217,-5797,7713,-6278,-4733,-3927,9288,-7578,-2267,-8300,-8642,-639,6716,-1181,1173,-4499,-4747,-8131,7968,-5310,-3676,9493,-9510,7651,8143,5184,-1031,-7243,863,5481,-7501,5269,-7909,8207,-7214,1141,-2352,-8210,5670,4986,-302,8684,2545,4868,3662,-6201,-9784,-9178,9974,5420,-2155,2594,5106,-387,-124,-5272,-4651,-299,94,-9566,1326,8326,-8345,-5275,6140,-6423,1149,2203,-8891,-9616,8479,-7254,7620,-6711,8314,-4183,-9276,-5413,160,1261,3803,-4568,1454,6444,-64,8871,-3192,2490,-4696,-7216,9266,-4980,9652,-3055,-7307,-4813,-1544,-6207,5046,-6309,-6458,-4772,-1835,5733,5397,-7387,-7889,-5500,-313,7363,7819,-492,-1509,-1022,6093,-7794,-6825,-5452,9250,-361,-6736,7495,-580,-9743,8678,-62,3195,527,7967,-2295,-5178,3313,-8103,997,8350,3928,8581,9440,-4306,-4408,-9661,4908,-327,-7722,-6503,-9944,-4488,9973,-1808,-7012,-6200,3196,-8112,-3103,9294,-9338,-4973,-9096,1321,6190,7657,8433,-562,-6598,7415,-7019,2457,-2934,-8424,7774,-1593,-145,9751,8349,-3436,2583,729,5605,2336,-7442,4807,-946,2267,-4056,8326,1027,7746,-3739,-5771,5066,-6807,-8475,-8677,9718,236,-6865,4143,8304,-3348,-6414,-3580,8856,-2486,-8399,-5213,883,-2835,8749,-1894,-5297,-5854,7706,-4168,-3517,8812,-4987,-8545,2140,9677,6023,8113,2715,-9662,1816,4698,-2679,3849,-9172,9239,8352,-8239,9583,-5746,3507,4853,-6859,-9077,-5401,-6921,3385,9476,7803,7766,1343,-8445,8380,-5907,-6678,8538,9582,-5974,3831,3093,2733,-5270,393,2469,9408,9189,-5342,-9921,-711,5575,-5545,1175,1861,5487,3609,-8304,8053,-7321,-6839,-7726,-4606,5191,1298,7168,1865,-5887,2222,-6432,-4532,510,913,-4784,-7662,2355,-6081,-2460,-5690,2379,-2134,-347,-2448,8232,-4108,26,-7746,-5613,-9207,-7862,-6860,6418,5383,2263,2895,6840,6625,-6348,-1268,-2487,9087,-8195,8978,-8197,2562,2643,3731,5608,1754,8871,7613,1941,-1842,9545,2816,6195,-4079,-9257,-929,604,7899,-5025,5503,7271,1316,-9045,8353,-9526,6533,-1243,656,-5273,-8337,-2865,-4577,-2423,484,8310,-4840,-586,4272,-6873,9284,3628,5179,6051,1393,5656,9943,7056,-7661,3825,1755,6687,-3504,-1310,-3719,9388,-8288,8440,-2277,4592,1812,-7133,336,-2970,-8880,5836,3425,5838,-3397,4484,6682,2545,-7720,3326,7432,9177,-9085,14,-7611,-6133,441,5526,7205,-9513,-7604,6560,-7329,5414,1396,-2800,7119,1203,-9006,-5752,7959,-1401,-4022,-7070,-7242,-8678,7829,4453,-4923,3149,4306,-8114,8956,-6244,-6339,9718,825,6238,190,-5291,4362,7526,8668,-9798,6139,4194,5331,-3047,897,3022,4276,-2624,-6067,-2130,9621,-7733,2106,6323,-7168,-6601,5541,-1104,7146,-7688,-9705,2117,-1403,-7335,-9540,-7253,-8617,-716,-7574,-7004,6395,-3397,-7494,-8958,5814,-7788,-5812,-8109,4838,-5518,-7037,5310,6800,4801,6489,9524,-719,-9184,-2881,5806,700,2005,-3589,-4759,-3598,8020,5126,4253,5204,-3404,7719,-825,9017,-1820,-5397,-4922,-9806,8459,7946,-4295,5676,-8226,4084,5039,3162,-7408,3748,-3667,-8913,8755,-2890,-1280,-9188,9448,1533,-8454,9041,-7877,7079,-9932,-236,4397,-8489,-8959,-6645,-1958,-4357,1126,-9385,4647,1039,28,-1081,-2124,7645,-9414,-3322,-2825,-4624,5859,-3151,-1052,990,-5485,7429,-3122,-2198,-2756,-8151,1881,2037,-1873,-5494,-5181,5292,-6990,-162,-5334,-7497,-8148,-6107,-1232,7280,-8292,-8239,-7720,-4243,-9740,172,-9729,1751,7290,6293,7644,4636,-1906,3214,9623,4284,-5256,-5126,-5287,-6255,-4117,8181,1223,-732,10000,539,-9911,-3447,848,-2431,-391,2982,508,-5319,-3144,-399,8712,-6137,-4274,3237,-9149,-5491,2101,-8195,-5211,3875,3355,9860,-1149,6493,-1635,4440,-7254,9888,7311,-2130,-1727,4105,7499,5279,-5887,-1236,-8028,-5017,-7356,-213,-6957,6867,7075,6912,-3192,5078,-3902,-8390,910,-2492,9914,-3784,-3352,-4351,-3184,5842,-9755,8553,8200,5506,322,9010,-5399,-9013,2791,350,5289,5641,3863,5742,-1397,-945,-5499,6284,8191,-9113,7414,-7682,2146,8910,-3851,7083,-5300,1675,1965,4745,-2899,-3286,-5731,-3369,-5622,-1167,694,-8551,-3136,-1065,-3831,-8572,2273,9629,6639,-3938,3294,-4735,-8863,3942,341,7927,-2612,-8831,2086,6155,11,-4743,796,7590,-7979,-3535,-2636,-7026,5016,7296,-3257,-8807,998,-1321,5825,-790,-2915,-4366,-1687,3940,6054,-4065,-6657,5897,770,-7864,5404,-8603,5964,-3713,8944,1439,-1291,-5591,-2452,6257,7674,738,7956,-6517,7674,2384,1258,272,490,-4386,-9783,2101,8292,-8031,-3229,-5342,780,6284,-2275,2331,889,-6966,-3147,5853,9211,-5161,3339,7965,-3,-2295,927,2088,-1013,7605,8446,-9411,-2805,-9842,779,452,981,-3299,-9819,-8014,816,8729,-4028,1207,-9676,3784,4765,2301,-775,-3638,8795,1074,4670,9554,8343,9763,-6520,-4713,3929,-537,4094,-9125,2731,5850,-7365,-7460,4700,9277,2931,2031,7448,-1022,-1919,6835,-4928,3670,321,4029,-8468,8112,9884,1059,3595,5053,-8595,2678,-6709,4881,-9752,5522,-2755,6169,6439,-900,-4235,7530,-1705,7302,9872,-9283,-7556,8014,2589,-9276,-5108,-2833,-9105,-5800,7689,3038,1667,-3543,-6603,-5318,9921,-9021,-8578,6818,4134,4059,-3927,-7751,-5068,972,5613,-2281,4110,-5398,5119,-8354,9591,660,-9202,-8946,-6665,2489,-8566,-7837,-6618,-4019,3418,-1071,6412,-2407,1105,8360,7547,-4129,3522,9018,-4830,-5465,7704,-9751,9156,4560,-5545,-7759,-3788,9911,-4561,-6690,6305,-5853,-8799,3622,5978,-5273,3661,8410,-3588,3446,2571,-1669,-4605,-903,4063,8435,7768,6489,147,6312,2301,8413,-4240,4927,2804,2450,-5523,9219,3256,-2542,-3700,-1377,5580,2062,5875,-7657,-7513,-1039,-2289,-4084,-8320,-7397,-2073,-830,3821,-9702,3272,5688,-3755,6352,-6189,-2568,-7189,-7735,9359,3181,-4934,-3247,-3312,2742,7022,1720,-4760,-7254,-9316,1139,7386,-7944,-6034,-5944,9094,3801,-1044,-705,-411,-2780,-8790,-9689,4068,9922,-3809,2157,-7628,8195,-8260,-4430,-1573,2340,-3532,-7816,-5287,9792,-5786,2258,-9078,-7543,-449,-8134,7302,-9694,-1729,-9392,-6948,7483,-5754,6793,7873,-826,5158,-6791,9534,1711,-5222,-7376,-6168,748,-1202,-7524,6696,-210,2434,6543,8093,5809,7682,-5955,-6864,3274,-336,7421,3399,4942,-2000,-8130,-2465,8422,1487,4196,-1539,-9464,4710,6267,2383,5570,4829,7651,-2343,6270,9404,-9557,3185,532,7189,-8178,7530,-4786,-1595,9288,7022,6010,-6418,-3792,7009,3880,9917,-5180,-5901,7635,7951,-9199,8987,-3846,-9903,-1705,-544,-8141,-8784,2967,324,-7257,110,-4847,-7243,-9645,9248,-5501,7940,-1538,8284,8468,2055,9670,7157,5431,-737,4575,-1250,-5712,-8382,8711,-2003,6095,3613,-1342,441,3098,-8752,-1895,-9988,5664,9489,9302,2929,-1121,5678,3375,4326,2224,-5572,1611,-5664,4937,-7760,-4129,-3650,-8809,-4188,-2004,6664,6138,6612,-5872,-3261,-3173,-9399,5453,8499,3969,-5626,-8216,684,796,4878,5377,5398,5926,-8434,1468,-2207,-9429,-9532,-6781,8098,-9516,4386,-2715,8987,-925,608,-9263,-351,-1008,-2272,-8540,9754,334,-5221,9799,3362,4985,-808,-5151,4588,4328,2821,-9153,8459,-2569,5369,-5380,7167,-7204,9024,4604,-2811,9758,1382,-9195,-3541,-4839,4288,3625,7625,6611,4928,4860,-3436,290,-5778,2084,8649,-2594,3340,-7550,-1189,-2224,-2195,-7249,-5259,5634,-2816,-9253,6194,-1264,-3621,-235,8077,3396,2505,-2051,-1125,7355,6362,2926,1340,3109,-7123,8340,3956,-86,7335,-6727,-8833,4315,778,8514,-7680,3107,-9736,-8644,-7845,9041,8771,1279,-2115,-7170,1307,1690,-7681,398,6451,-8004,1946,3150,-2654,-6094,-4315,-4880,2802,-8244,-5487,-2881,684,546,4798,2262,907,2518,937,-652,962,1527,9409,-4109,-3370,2965,-5311,7809,-6540,-4951,-5817,7467,-2568,-531,7712,9836,-9819,6793,5673,-7022,3409,-2262,-6078,9954,6509,3605,-5538,-2685,8492,3134,6550,9187,482,5913,-7216,-7604,8651,-5574,667,-9037,3136,2157,300,-475,5467,-4333,6647,-9511,-378,4467,9429,-9219,7044,8979,-4055,3579,-3823,-2527,-6062,3555,9879,-4187,-2053,3875,-844,7210,1715,7072,8102,8720,-6287,-2102,-293,-2009,2076,-1817,-6536,7351,-9695,7755,9973,8657,-5375,-574,-6832,-1249,3193,9411,-4225,-1666,4697,4424,-490,5972,212,-9568,-4447,-4410,452,2922,-9644,-631,-7013,-9938,-6197,-6714,-2601,1596,-9517,-3089,2223,9427,356,-5051,-4859,-1593,7270,5490,3953,9958,-6187,6414,5748,7695,-8270,-5727,-3668,-7457,5492,-1178,1539,-166,-6547,-5927,8388,9896,4460,-1642,4497,4778,9199,-2857,9073,-9013,-8038,7426,7164,2319,9523,7060,815,-2071,8911,-9139,9539,5463,-8008,5052,-9560,-8816,-1594,1575,-3435,4732,3212,6783,123,6565,3092,5231,-7734,-8678,1091,7745,5296,4304,-5078,-9658,-8414,-8973,-3517,-6645,-5353,-8396,6150,4480,4682,-5406,4682,-1606,-8384,-9038,5104,-5360,3588,4104,7029,-7600,6984,2922,-2438,-9050,-2777,-5245,9229,-9693,-9720,9081,-7033,-3252,5131,-7631,-4685,-9383,8278,-5719,-1082,9483,-6088,-4611,-4917,-1306,1136,-7241,-1987,-6853,-441,-7398,-2438,-4634,-7329,2211,9767,6099,5310,7178,98,-178,-6051,-5266,-4700,6341,4104,9384,6062,4226,105,4168,-453,-5123,6830,-4180,-3130,4490,106,-9124,996,-9747,1527,3681,-2690,8710,4129,2596,3713,6522,-1550,5356,-4320,7519,-5283,-5074,-1997,3627,7662,-2556,4196,5049,-2499,5075,1322,-6354,-7479,-9487,6065,6304,-3542,-1570,-1489,9922,7513,-7809,5237,9411,3487,8639,-6810,3323,-792,6486,999,9493,5985,5477,3440,-9317,7546,2742,-3746,-7366,-5149,-7893,9771,-2553,-1157,-3293,6928,-4391,2581,2781,-1377,-8857,5450,7807,-4447,-9682,495,4240,7682,-2452,2665,7315,4627,2367,-5028,8906,-6578,-993,-4260,-9816,6624,-5623,-2005,2391,-862,-8310,6659,8861,9727,-9780,1936,-5866,-9007,-5136,-3463,-4000,-916,-5062,-7,-5076,-1415,3340,-451,512,-952,1681,9060,6679,-6584,-8399,-9104,7232,9617,-922,8942,-9128,-9988,8308,9716,4159,-6247,8073,671,7478,-1051,9363,-1142,-9638,527,-5602,-9246,586,-9977,4413,5448,-4868,-8382,6228,5735,-3863,-6476,-6866,-5922,9918,9578,6419,-2573,8990,3238,-6839,7770,7364,-6437,-3112,7241,-6356,5638,2170,4076,-5862,3574,8672,1962,5772,-24,5065,7695,7847,563,-7624,-9572,-406,-1473,480,7926,6398,5532,7680,81,8664,-5353,-6817,-1502,8281,6758,2096,5438,-8578,225,5640,-8652,-8489,6970,-3738,2892,-4485,-5844,-4693,8955,-357,7620,-8871,-9493,-9884,3493,-9041,2374,-4281,6579,6346,7669,340,7029,-2957,-4227,-1067,325,5741,6626,-1241,4523,8413,2998,-9468,3163,9465,5550,5752,-2750,-4572,1411,8006,4325,8498,-8855,-766,-7841,-4118,2471,-2829,-1292,-9158,-826,1247,-4653,4430,-3004,-9910,-8462,-149,5397,6649,-368,2042,-6175,-2233,-8282,5379,3001,-7196,-5074,-2478,-5501,-6024,-81,1408,-5473,283,8592,-1320,-2730,1231,6366,-2872,-3963,9082,3221,8314,6532,4555,-6067,438,-1310,8156,-9631,-9805,-1892,-7961,-2150,-7580,-7419,-2829,3483,-1748,3086,7500,2064,-3297,2033,-9979,3687,3883,-5750,-6557,-500,7800,-2570,5406,6049,-2218,1587,9749,7932,-839,6688,4378,-583,3868,-2728,-8939,5813,-323,6196,7515,6582,4769,-1072,-4582,-6092,-6863,-5894,-9153,9153,6370,-4602,-5723,-6548,7618,-1736,-9793,3547,-3899,-9369,9235,9408,-6917,-6420,-7651,-7744,-7475,5837,8152,881,-5215,5573,-4374,1847,-5538,9608,-6446,-3314,8967,4468,-8360,6521,-1377,-8270,-2483,8686,-2964,-6639,7906,7232,5813,-4900,-1475,5366,-1918,-389,-1970,-3650,800,-5494,-1181,3646,-8757,7445,2304,4132,-4336,-3792,-6341,2618,-5448,-1743,5874,-8980,-3134,4721,-3636,-2665,6295,9150,4587,7328,-3485,-4473,4001,8387,-8431,8288,-491,-9125,-8654,6381,-9523,9491,-3885,9437,-7432,8016,-2364,3091,-9295,3350,-6502,3613,3301,1267,4118,6425,3511,8708,-8117,-8099,-9328,2430,6802,-6859,-9971,3352,-467,3804,-4719,6004,-4050,-6039,-2057,-3358,-588,-6191,7479,-2304,-856,4078,346,4820,4749,-4357,9810,4814,5632,-8275,-499,8899,3977,3998,754,-9974,-7162,7514,-820,-9142,-7687,5750,8165,1905,9746,-828,2647,-6623,-5089,2880,2220,-9029,-889,9934,-7175,9445,6729,3498,-7264,726,7485,8086,755,3222,2437,-691,6224,8307,-5545,6302,5471,9834,1352,9211,8124,-5582,6771,6647,5787,9955,5667,3257,-3520,6258,5829,-6645,9191,8003,270,-3628,9673,2627,-4015,4745,5002,-5619,2195,-2274,-4975,4569,-1805,-5935,-2600,-7592,-5412,6469,4428,9500,528,-6425,6126,956,518,9635,-5010,-2960,-4748,6062,5550,-5560,1174,-9930,-9921,4120,6647,-493,-33,9360,-3051,6091,6146,4860,-8568,5750,-6893,4050,-1598,7688,2365,440,1674,-4879,821,8761,-1218,9937,-6136,7403,-6709,8688,9963,5578,8656,5772,-388,6280,-9782,-9379,-8781,7631,3236,-4436,-4737,-2988,-1798,3148,4749,-4064,4845,6064,9339,6761,-353,3016,-8451,2231,6598,-9855,-3114,9267,-5584,-4773,8281,-1894,7137,3900,1888,-4545,4842,-2190,3340,-5662,9857,8060,684,-9418,-3022,-2410,6452,-3127,1881,2751,-5093,-9594,7749,7731,-1200,1110,5588,6584,7996,-2703,-934,2281,2715,-7205,6565,-324,4798,-1374,9779,-3090,-8591,5813,-3577,-6697,-6810,-6404,-7429,3133,4626,6394,3392,-9351,-6971,2368,3842,992,9207,527,7326,-4420,-2961,-9278,1433,551,666,-7547,6020,3919,-5752,-3829,1406,-7882,-6451,-9582,-1035,1968,-7143,8438,-5909,-1463,9812,-8095,1642,-9045,-9655,-3328,-4626,9521,-9123,-6971,-867,-9025,6128,-840,3074,8728,7301,-8058,4697,9932,759,8392,6181,5926,-7415,-8140,6557,8964,-8850,-7221,9780,3139,-1673,963,9480,9317,6132,-6716,-3376,-5185,4815,-2458,9358,-5925,-3440,8919,9845,-3465,9787,1606,8892,-1167,-9598,9851,5111,9965,-6720,9346,4332,-6850,4007,9178,-6349,4724,2326,-7111,2762,-1548,-5174,2715,-4540,916,-45,-5117,-2165,-6066,-1934,-658,-250,2622,5845,9429,434,1993,-1598,-2812,-6648,4525,-3812,837,-9048,6543,1159,2224,-3272,-6848,5762,8885,-5484,630,8376,-9095,4983,-4645,3448,4107,5770,-1259,3591,-9206,1008,-7197,-9680,6726,7852,9505,-7068,-3040,-2652,-3698,6984,-8556,3773,-8655,307,7000,6233,-2826,9523,-2845,238,3601,188,7481,-8253,6444,-5990,620,-4424,-7921,-3982,1767,9441,-4548,3655,-2318,-416,-8388,-6109,-2801,-8552,3077,-6962,-5335,-6973,2593,8776,5817,-8937,216,-847,8071,-580,-204,8272,-7396,-8997,5428,9947,-8971,2023,2667,-6879,3375,6707,-614,4947,5608,-7913,715,4759,-4878,-9172,-2803,-4970,2194,-9364,-1310,385,-9211,-1772,3627,4333,6486,2682,6169,-7089,-2842,-566,-8950,-1055,-4865,-263,936,-5054,-58,-600,-4822,-976,5990,-6998,3192,-3701,5012,3044,-3074,498,-6616,666,4266,-41,-1669,8870,-5953,-3723,-6854,5631,8830,-8391,-2034,-7874,-2141,-2055,3131,1618,-1129,-2358,5986,-9716,6810,-8425,7205,9699,-2811,2149,-7584,-3440,4477,3894,8845,-4051,-7897,4532,-7474,-9177,-669,-4906,-3224,-9826,-5330,6194,2959,9580,3572,-1551,4656,6639,-9028,5778,-4171,9884,3110,-7488,8227,-2958,-539,-210,-4272,-8201,7870,4248,8486,8593,-4784,1764,-9741,-7927,2565,9973,-4868,4325,-6923,6261,5293,-1146,9761,27,1983,6227,6474,7915,-6121,-9588,9971,6505,-5291,2766,-8938,-2442,6701,-2575,146,9692,-3423,-9437,-4569,-7252,-226,5292,3150,-572,5572,5547,-4650,7241,-6126,-4158,-6436,-7861,9808,580,7554,-4393,-73,4372,-8005,1177,7443,1407,-9118,8651,-52,3290,-840,5771,-5421,732,-8577,-7011,1062,-4887,2762,-8926,7279,7933,-2662,1469,-340,-1743,-8499,7795,-8757,6451,4912,3584,9791,1634,4440,1464,6733,7473,4113,1427,-7743,-4327,-4899,-6941,-1309,6201,-3566,3939,-9885,9121,-9176,5717,-9526,1646,-1842,6149,-7882,-4936,7513,5058,-1168,8758,-1947,202,5857,6019,-7342,2888,6004,-4017,7884,892,1094,-6032,-2349,8391,1668,6612,-1715,-4635,-4291,-1149,5906,-8301,5443,9393,-1488,-7744,8418,-9111,-5547,-9290,-9981,7041,-112,3152,269,6296,-4334,5761,421,5561,9984,-3405,-391,-1483,4907,-2951,1884,-5146,-7789,2417,945,-3404,1274,4729,-1641,2324,352,331,-714,3063,7731,-5581,8130,-1934,-7790,-42,8668,-6422,1495,6799,4668,7358,-6482,9259,2297,5340,-4323,8623,3302,6468,-6307,-1948,5022,-1295,3440,-3808,-2944,-4890,-7695,-4361,273,-2658,3429,-1063,-2759,-9445,6992,-7960,9484,-8192,5452,3243,-2109,2516,-9668,7128,4822,3975,7695,-4606,-4179,9575,5456,-9202,4633,-8870,4340,-6194,-4695,-6325,3077,1792,-7574,4526,3593,-6730,7121,1964,2990,3471,-4015,-7366,5831,6494,5034,-8034,5642,-8966,-1491,7315,2185,-2779,8979,9324,5438,7392,-5526,9238,5073,7307,5714,8866,-5791,-5069,-6336,-1603,-2416,75,8520,-5500,-8116,-3026,3162,-7599,1176,4505,9167,-1018,1122,5746,4166,-4202,6997,1039,3541,2916,-4970,-2714,-2807,1413,-9635,4971,8765,1043,-8339,-7147,6988,8355,-9990,-5230,-4102,-6814,-2196,-6004,-2531,-8585,-9437,-4979,2106,-5747,-9854,-8099,-6985,-1032,4957,-6716,-2771,8033,-6614,-8907,-805,5734,-8027,8510,6347,-5574,-9859,8756,-5573,9065,6334,2519,-1902,-9766,7334,-1528,-8516,-7101,1308,-3847,9385,-4158,-2917,-7338,-7028,5524,4359,-1191,2648,566,5906,1576,-3923,4041,956,9088,-3010,222,2631,-9250,-7575,4473,-2369,-8414,-4848,7652,-292,-8463,7994,-8615,-3383,1772,6273,5239,595,7124,-3791,-5257,7259,5528,7608,1548,-6577,2090,2751,6448,-9140,-594,5929,-9764,250,-5039,-9917,-9808,7091,-9639,7654,1169,-9118,7013,-1953,116,9975,9402,-574,3137,8547,2237,4962,-6065,-1875,-3299,-6315,3311,5750,-365,6355,-6407,-9847,8461,-4665,-4241,-7082,713,-6043,3886,8735,9063,-5928,4518,19,4750,5381,4524,-3560,-7881,-4543,-8000,-6967,9791,5255,-9771,6849,-4172,149,2509,7594,9610,8321,9400,-9784,8695,-7296,2911,-4816,-1627,1162,-3139,-461,9483,1004,3733,4450,-417,-6157,-7903,439,4571,-8788,4213,-5085,9521,-7926,8332,-571,-9384,-7752,8874,-8940,-5898,9463,-3619,689,3181,7809,-7695,-6039,-6699,2311,-5700,8207,-7234,-8263,-98,-2598,5146,-110,-4301,4531,-3154,-2858,-7141,-4368,6901,-9515,5429,7365,-9734,7812,-3285,-5810,1678,-6906,-7012,-7082,-9828,-1557,-2617,7243,-5394,7836,-6715,5376,-5572,553,188,-6625,3883,1361,-3863,-112,-9554,7411,-7192,910,3521,2747,6934,-3682,-261,9454,-1444,-2204,6790,9316,795,3520,8070,-1382,-5988,949,-7462,-9922,5566,3966,-7347,-6188,7353,-5814,2406,36,2561,-8836,558,3197,-9328,9105,1437,4285,-4365,-6516,-8889,7637,-2806,-454,-3643,-4976,-7090,9153,-9766,5594,-2302,7728,-9924,-9463,-3204,2211,3026,-1256,-5540,5553,-3616,4690,-7795,7337,-6050,-579,4430,6828,4001,-7542,6530,-1371,4834,6500,1631,-9561,6590,-3348,-2545,-7390,-2592,-2501,2240,-7294,-2884,3844,8115,-311,7902,-6125,7042,-6723,-7235,-9121,-267,-7248,3160,6,-2083,-4357,9670,4396,-1929,-4412,-503,9189,9105,-5825,507,-1661,-5402,1171,9925,-4485,-9732,-908,-3460,-7796,-9139,-1819,4531,-6550,-2777,-9420,2302,-6875,1637,216,-1708,-476,2966,-2720,-7568,7230,5373,-7185,3870,-325,3279,-2031,968,8043,6899,4158,-7038,-4618,-2068,7520,-1030,-4046,5967,-3749,-9862,-8036,-6042,1272,-3300,-5487,138,-1308,1943,9063,3906,-4121,2887,7729,-8722,-3179,9879,314,-4920,7337,3401,3749,-9074,-8789,5735,-3188,-6550,-7635,-1703,-2046,-1419,8847,-1327,-6918,-2175,-458,-3229,367,6204,302,436,-2019,6628,-5805,-8076,-3021,1132,8794,8079,-7855,-5075,4585,-1596,-7362,6976,7338,-846,8379,6466,-2362,-1520,3265,-7127,7038,-7760,6087,2341,-3550,-9782,3833,7786,-1926,-1602,-7162,5976,1616,2881,-2157,-5835,-6355,1269,59,-4805,1157,-5727,-205,6603,9703,-184,-512,-2439,-715,6033,-9613,9342,4643,7381,6687,9046,1505,-8447,9854,-5545,-4727,8198,-8545,98,-4635,-7297,3752,-5530,3572,-8033,2050,-6972,-405,6018,-3134,7725,5949,4660,-8873,-31,9462,8055,-7363,-9176,-5796,-1570,4420,-6377,-9774,-2569,-7921,-8877,2489,3600,3933,5437,-6437,584,-1259,7202,4911,-8834,6940,9034,3576,-9183,7175,4611,858,-8467,-9321,-2407,-7976,5632,5165,6954,-2576,8736,6118,4061,9848,3468,-6764,738,-9768,9721,-4207,5089,6409,-3114,3241,1996,-6896,-4822,7982,1107,-2472,8805,939,-3107,6248,-1541,6827,-2188,7634,-2829,7900,2663,-4302,1344,-9985,7014,95,-2151,2036,-765,5648,-8924,4526,8516,-1185,-6453,3181,4324,-8280,3026,-9885,7735,-2467,269,-9152,-1167,8083,-339,5060,-9965,-2671,6030,-7550,-8900,-3426,-7343,-5124,4253,-4422,5315,-5391,-8350,5403,8983,-4742,-7704,-5651,-5455,605,-3350,-6495,-1040,4406,-1694,-4553,4359,-5800,-4197,-4175,7537,-7785,7083,-1253,5359,389,-2877,1822,-2620,-7009,3083,5616,5998,-6851,-6721,-3642,-8095,3561,-9857,28,-7455,366,-4550,-5528,-1686,-6232,-761,-2257,-7807,1575,9641,-9423,-2802,-3513,5724,-4941,-6414,4712,-4502,7805,-2831,4308,-6931,7926,-3277,-2714,5905,3854,-5746,1622,-633,-6835,2776,-9731,3255,6656,3098,502,-2496,-2061,30,-4251,1401,-9425,-9854,9530,6010,-1887,4583,-7261,-3627,5878,-5452,-3834,3121,2961,4313,2000,4450,1008,-1165,-113,-1371,3699,-1428,-9498,-618,-6405,7148,95,-5567,3347,8225,-9320,-6441,-7291,2451,-499,4943,-8320,2885,-3455,-6076,-8568,5458,-3546,7851,4913,-9618,3419,3199,7269,-9555,-2602,-1714,1728,-3181,3759,-1784,-9567,8827,5198,1643,-6114,6163,1710,-5350,2768,4911,-9200,277,-308,-7493,4772,4199,-1712,-7766,7659,2919,-3691,-8703,1121,4790,-1069,8821,-8658,-8518,-7060,3321,-6863,-1174,-4958,9343,-4456,1846,-2187,-2657,9489,-4185,5954,-7831,7853,4121,5222,-9367,-6563,-1818,-5748,3272,-8395,7568,-4881,-5300,-1354,-9890,-2172,1481,5024,-8729,199,-1769,4074,-7983,-6332,-570,-6294,3782,5529,-9627,8584,-1710,9908,-1054,6870,8147,58,-9530,7352,4391,3170,8623,-1327,-3949,905,4162,-8210,-1433,-6667,-8052,759,-2080,9057,2687,2280,240,-9751,1303,2996,-6425,1939,-5928,-5457,-7230,-520,9295,6103,3972,7890,-9643,-8634,9685,-6254,-7958,-1496,-1908,-8360,-86,5061,-4238,-443,6865,9869,3034,-4959,-4994,-6046,-5859,3727,7795,-3169,-6193,-3953,-1517,-8555,9097,1300,521,-5921,2070,1472,-7091,6139,5279,-6001,-1677,4377,-854,1458,-6615,6313,-9721,-8171,-9008,-4742,-8868,-5734,3167,7306,3048,-3844,-7531,-7662,-135,809,-6298,7440,9617,-5609,-5633,-2372,-2607,7595,9598,1247,-3679,-3841,-96,7187,6639,9479,1899,6794,-7055,-2379,-7372,7932,-8399,-6533,5009,-8260,417,-4755,-5773,-2593,-5805,1040,8748,-6317,-5906,-6193,-1446,-1961,3520,4723,-2130,5625,-4010,-5376,-1978,-3876,-8111,-5581,-5350,-5850,472,3474,-4779,4352,-5956,4467,-7618,8516,8760,-7282,-1629,9872,-2179,-369,907,7401,-1720,-2594,-8982,7004,5696,-2993,7248,1,-3077,-7246,-6588,4640,-1659,2704,557,-3756,591,6752,1146,8018,-8649,7787,-8516,-8304,53,-8932,4259,7030,6480,9058,-454,-9012,229,3508,225,7747,-4143,3915,-7937,1294,3200,-2221,-1860,-5733,-4606,-1592,-2164,-420,904,-7115,-6429,-5954,1153,-3019,1967,-7826,-4367,-1134,5419,1437,9993,4488,3403,7616,1307,3553,3226,-8100,1817,-8007,2341,4118,6076,527,-6052,7793,5029,3307,7613,-4399,-7740,7086,-8392,-5927,6327,-3392,9299,-9827,8571,-3518,-9865,-467,-1525,9081,7118,-2861,5577,6846,-1625,-529,-5987,51,9757,-7370,-1113,9851,2523,-1595,9112,7001,6098,-7609,8121,-8727,1194,5427,7567,8038,5531,7511,954,8921,953,-5290,-7929,2793,-3100,501,-7527,9973,3034,-6168,449,42,-2651,-2489,-2418,7130,4226,9020,-7577,-1394,3237,6290,4402,-6800,-1079,-436,-6957,-2866,9187,-4044,-1329,9860,-4726,-1522,-6514,-7715,-3079,-7695,-6889,1493,-7551,-8007,8145,5637,-1067,-135,1419,9934,-6758,-7659,3551,-4002,4162,-958,-2067,-5610,8555,-4029,5613,-2059,8001,9970,6587,6763,5661,4020,-1343,-2669,-2740,6273,-3221,1124,-2793,7439,9737,4191,3438,-2382,6658,7570,-4918,7549,6092,-51,-828,-6098,1030,4356,-609,8127,-860,-4982,7811,-9791,335,4954,8869,1713,-1720,1049,-9485,5207,-3478,-7378,-7486,-9642,-5724,2580,-9907,-6512,-2009,3511,6431,-2454,-9869,-9419,5237,-3898,-5362,203,2639,5225,970,3223,-7984,-4370,-6441,-7038,336,9919,-7070,-7376,9889,9169,-3803,-2293,-8892,818,-4315,-8896,3530,-9372,-1924,-3388,8666,8364,6933,8711,6925,-7151,7271,-9065,-6260,8889,9788,-9557,-4817,3719,-3424,-7537,-1587,-343,-8742,9378,-2021,779,8471,1425,-4229,6073,-5931,5928,5019,2589,534,-1862,8192,-6989,-9909,5805,-4526,-7502,-3166,1933,9184,6887,2178,2475,-8784,-7942,-4255,-6310,-3641,142,4453,-2900,4901,9547,8437,-3285,-7339,8144,4827,-8978,308,7409,-3531,1487,-4190,-3587,5988,4197,5771,7114,-3527,2851,-3067,8116,6808,-4605,-3211,-7328,522,5527,-1468,-7296,1798,1856,4380,-5513,-7006,241,-410,3694,2112,-3592,-3496,-8288,6593,-7507,534,594,-8036,1643,-9891,5372,3009,-2834,-8960,2481,9532,2410,9138,2568,795,7428,-4412,-9169,6069,-4716,2444,2542,-578,-307,-6806,-9033,4435,-5547,-8294,3847,423,6692,1125,-2670,-5887,-5226,-4840,1378,-185,-3809,-4160,4362,-8786,-268,-1053,7125,8996,3039,1361,-5019,-8829,-4339,5534,2408,9770,-5348,-9171,2294,46,-137,-6646,7865,-8617,7666,-4428,-9645,-3035,9548,-8027,9344,-8841,3772,8555,5960,86,-3562,-1770,-1375,8439,-4459,2628,7568,1863,-7526,8793,8481,1045,-5795,-9837,-9863,-762,2496,8473,-6404,6161,-8642,8879,7781,-7098,-8668,-9803,-2656,-2424,-9878,3924,-6179,-9141,3543,-4120,-8534,6206,-2220,-7933,-6454,-7441,-4525,-259,3056,-6552,1974,6185,2450,-3229,2911,-1222,-2650,-4980,9753,8249,7288,-6706,258,4610,6130,-3412,108,-6602,-4178,3925,-8299,-112,-751,-2628,-5160,7262,-141,-756,-931,9160,2560,-9537,4356,-9351,4475,6849,8851,9230,-67,-8268,-8376,8723,-9999,-8503,-6239,-3274,6649,5349,-2632,211,-4013,5603,1234,-5469,4167,3390,-4193,-9817,8153,8163,-7245,2106,4941,9907,5166,-795,-4360,6301,8143,9118,6571,5812,655,-8125,-8299,2665,-3531,4783,1224,4452,-719,2784,-5956,623,5307,4301,-403,9560,-5475,7457,-2294,9532,-9174,2239,-7176,-2350,1828,-8977,-9318,-609,8901,-7645,-7668,-2561,3083,5090,4789,9797,-6955,2114,-5938,2901,9846,-6868,-318,-3114,3487,8790,-584,-1430,9444,5522,7621,-7525,-4272,-8948,-9587,-7348,-8409,-6173,-2613,986,4139,2130,6631,-5578,-4691,-4375,-2109,-2329,-7675,5728,7787,-3315,2756,6172,7824,6599,-7148,7213,9203,4928,3693,4669,8095,-4778,6440,1272,-1797,-4107,-2272,583,-4781,5676,2592,5362,3588,8385,7534,7253,-6676,6018,-8691,-4362,405,6169,-9887,8494,-695,8310,1125,860,-8636,3758,8677,5347,9732,5639,1188,-3563,325,-9231,9978,9757,-4704,-1779,-8753,2493,9601,-5283,1481,-9452,195,-4762,5802,7874,5681,1970,-1934,-5103,-2289,-7305,-5265,2067,8838,-3134,-5826,966,-2360,-9544,-7105,-3298,-1571,-8791,4485,-7186,5336,-8489,-8191,430,5812,-5309,-6442,243,-4304,4588,-5035,5509,-6764,-5903,3972,4147,-2901,-1475,-1873,-715,-7753,6090,-5317,2715,-2057,-6257,3551,1089,-9497,2791,6056,-7042,6175,-8527,-2415,-8199,-4730,2691,2241,-5128,330,-6834,-7684,-3475,-7415,9577,1265,9760,3079,9059,7669,1747,2522,-8405,2934,-8090,-1121,9899,-9872,3709,3699,-8090,-7875,-8898,-2306,7332,8193,2948,-4462,5171,-4405,-8583,381,712,-3019,7078,-3809,9057,6622,9677,3412,-1175,-6760,6920,7238,3992,7137,-8317,-298,6368,2833,1499,-2795,-3005,5675,-8336,9871,-9175,2347,8716,6344,-1433,7282,-6720,494,-7336,-7812,8847,-9520,7318,-2772,7910,-2700,-9876,6816,3385,2164,3297,-3574,-1534,-6011,7104,2099,204,-8363,-2193,1292,9694,-239,-7745,1353,-6808,-5810,2599,-7366,1927,-857,-7190,6091,6805,-6842,-4272,946,5073,-7685,5642,-1940,-3136,2465,638,9464,1805,-6552,5452,7821,-7882,-9401,2227,-3545,-361,-4889,-6459,1310,6426,-6864,-5031,-820,4905,1380,4217,708,-9926,-9517,-9247,-8984,1823,3097,-486,9349,9602,-29,-9283,-8181,462,2130,-5495,3473,-2277,2739,7490,-2175,3358,-9544,-3116,7694,-3144,4309,-6196,8198,8616,4386,2519,-7809,-903,-4480,-1979,4342,-7230,-710,-3885,-872,-7948,5230,7693,9546,-3974,7801,-5315,5481,5037,9091,-9765,-1951,-3928,-7081,207,6869,7183,-2737,-2212,4472,1311,-6764,237,-1396,9255,4769,1719,470,8995,4290,3557,681,6081,-3338,4831,9435,864,-2159,-1890,-8531,-4718,4214,2883,5132,1163,-6901,4724,6908,7994,-7653,6510,-4911,1020,1347,6531,-5225,4842,6859,326,-4139,7906,-4472,9471,-4514,-2396,-1539,5484,-9021,713,6243,2983,-7183,-8266,-9104,9092,-1840,9506,2768,1499,7829,6889,294,-9381,5169,2612,1294,-7690,714,-7122,3854,726,1081,9106,-1763,-319,-219,4612,-5221,9569,-7965,-6892,-7328,-6277,-7730,6971,-7122,4282,-6560,9336,6115,6321,1853,9293,-3029,-5369,4878,4336,2755,8797,2634,7210,-6776,-1776,839,4863,-1303,-6998,906,4615,-3408,-7866,-7370,-9206,-2622,-8927,658,5580,-4243,-52,-9181,9626,-4052,-5852,2371,3315,-456,3294,6163,-7638,-2999,8024,6605,9583,-2930,948,-309,-3790,-5071,-8206,-1411,8005,-1967,-4378,-9837,1633,6769,1431,-4625,-7226,-5022,9837,2134,-8750,8717,7766,-1764,4577,-6080,-1121,-6234,4025,-4554,6518,-9429,5008,-2286,5088,5414,-156,-3597,9387,27,9292,7994,-2449,1596,3181,9505,-7929,-2130,-9315,-1354,5612,3640,-6371,168,-8417,2391,1633,948,-6708,-5829,-9827,5625,-9431,2346,388,7630,-32,-6095,-5981,2653,-8479,-6585,7989,-6470,3044,8712,9619,-4867,5047,-8670,7933,-1099,-9134,-1499,7257,-2867,-9274,9631,-6599,-5804,-7607,5315,-7254,298,2379,-5363,4178,2664,9390,9873,1847,349,-7628,4207,4338,2746,9183,7697,2629,-1460,-4900,2474,-2801,-2220,5513,3887,-2595,589,9420,2856,-1955,5724,-7214,9075,1524,8589,1994,-3300,2712,4201,-8705,-1990,-4016,-3438,-1211,6253,-2934,4585,9134,5124,-1986,-1343,3222,2494,-3322,-6772,-4025,2601,-3433,-7220,7904,2900,-2257,-6648,-1282,297,8965,-5497,6550,1940,1104,9777,-1323,-6948,-1976,4974,8110,-6080,3047,-6199,-6100,6774,-5864,-8710,4749,1652,3743,-3437,-8524,168,3977,-7408,3733,-5074,-4045,9070,-4498,8121,-5779,8022,7806,5047,-5159,-4366,7298,-6910,-1914,-7024,5695,4962,9550,2244,-387,-3162,-1943,7577,584,2705,6349,273,-925,7690,2718,7573,-5595,-6195,-5543,2009,-7880,6685,6634,2879,-2195,-3302,-6881,-8463,-4592,-4574,9257,1449,-9548,-4351,-4208,2511,2267,3633,-3660,-642,8223,5268,2099,9340,4253,9511,-2297,1393,154,507,9064,-3032,9882,-2257,1737,-7168,-288,3143,-2258,-3013,315,3260,4931,2834,-2768,5308,6906,379,-1974,4339,-4277,-7751,792,-2815,-8575,2362,1770,-48,7961,8752,-7980,646,7618,-4173,5821,-9695,-5801,-8093,-7572,1411,198,6034,440,-1276,-2665,7198,7487,-9281,-4097,2241,-8922,-8732,-4010,4708,5083,3398,1920,-504,8833,9675,4965,-7590,1945,7855,-9087,3482,251,-8134,8663,-6346,-2849,-5013,5256,-7593,-4004,-248,4869,1098,9928,2682,-1166,8618,7133,4192,-7031,5748,-4987,-8333,-252,4799,-4628,-7765,4725,2501,2635,2366,-4597,-9502,-8779,786,8203,7373,-1486,-1777,-7569,7963,-7019,7606,7066,-9390,4447,2255,-1250,9473,-6508,-2822,5081,9725,-5787,-3821,2760,-7074,8227,-4215,-956,-1783,2815,5207,2521,1049,7804,-1046,3646,-5795,-9596,-9820,8211,8226,-6748,6874,3527,-2482,-4705,5274,-6496,3370,-578,5027,9016,-1503,5086,-6619,-334,6502,7742,7831,-4112,-712,570,2004,-4528,2983,-7373,9569,1537,-5192,-690,8998,-307,7707,-4000,1523,-7421,4642,4458,-3098,4467,-7510,7656,6994,2312,-8865,8412,4277,6606,5892,8492,6023,6916,5265,-783,-7033,-6795,2167,6019,8970,-1498,5924,4320,1076,-4958,9386,2891,-8014,5208,-7807,-5331,3450,-8908,5543,4592,-8011,338,1949,-9938,7629,-5941,5838,-2015,-2370,7975,-499,-7226,-4468,7877,8394,-1069,-2061,1211,-4687,8325,-8979,-7720,1980,-6676,-4182,9427,2587,-6067,-3788,906,-5170,-9790,-3267,-7119,-7065,-9157,6471,1579,8909,-4761,-460,4828,-6907,-1002,2969,8630,4518,1240,1002,3400,-7558,1094,-3688,-1577,-2727,-2659,9842,-6589,9427,-613,-8370,-1814,2699,9679,9342,2021,-5677,-9277,5767,6293,-3936,9684,-6502,-9081,-2425,-4446,-5386,3245,-2208,-8898,-2714,1091,4045,-1107,7284,3536,5394,-711,1346,-1808,-4379,7233,-845,6369,-1921,-5926,5060,-3117,-4627,5860,-6159,-8559,-2113,6768,-5508,6228,4561,271,3966,5523,-8624,337,2433,-7312,-9644,-9529,6661,-8562,6112,7450,-7213,6850,9823,3379,-1002,4708,5476,4771,-658,9591,-6892,5319,9675,403,7436,732,5196,307,1004,1971,-1783,2210,-8544,-9432,1432,-970,5205,7681,6939,-8400,-5770,-2502,1222,-6728,-1592,-620,-3787,5114,-1760,6606,-141,9759,-8321,-1516,7416,-3033,9077,2621,7841,3820,-2736,3215,8465,-5591,4560,-7973,-7928,-6687,-4375,-8408,2462,-8995,-8936,-9235,-1733,-6625,-5606,-9047,-2184,7302,7684,7648,-8978,5726,-790,1168,-3274,-9608,-6332,-4778,-6583,-390,5786,-8933,-242,8183,-6827,-6477,7170,-5885,5290,8,-6524,6457,-949,4984,7769,1677,1207,-5297,5025,-1137,5560,9605,8880,7281,-6773,-536,-343,9781,-4798,-6981,-7724,8464,-1605,-7256,2223,-2373,-4916,-8243,9614,-6674,-8625,-2451,-1040,1520,4509,-1797,-9643,5645,-841,-3663,-1689,-5546,1909,-9729,4204,-8295,6342,4113,-5696,6602,6802,-1999,1149,8257,-6079,8161,-3300,5511,-7867,9971,791,-5985,-2560,-7918,9909,-992,2681,180,498,-894,5992,-9137,7123,-4987,3599,-9703,-4673,-2278,4552,-1236,2381,-1018,-5195,8286,4821,-6389,-7186,8315,-4188,-4576,4049,-1488,-4058,-5257,5790,-6771,-3368,7317,6171,5046,2624,6100,-8950,1224,-144,-4998,-3319,8762,-4387,9733,2351,7197,-6795,-3529,9018,-6753,9036,-9985,1050,-9160,5721,6862,-7256,6620,5563,-3393,-2922,-9957,-3978,-3079,6717,5100,-6753,7008,2855,-4137,-1289,3144,-1625,8264,-9314,-2022,4460,-8753,6868,6658,-3730,4721,-594,9383,-9579,-7003,-4166,-9712,-5285,7080,1004,-1458,-1508,-6764,-3716,7877,4915,-3789,-5223,7740,1712,1358,-971,-7529,-3787,1579,-19,-2034,-9455,-1634,-2898,4561,-7237,-9824,9638,8865,-7287,-3728,1875,4497,7650,780,4732,-5461,878,3513,-4621,-5603,4700,-3406,9422,4122,-2701,-9419,8907,7858,-7625,7057,5463,-892,-8343,2647,-1292,-8580,9469,7022,6726,-4156,3526,76,-2558,6879,-2952,8866,-5236,2710,-5263,6980,-6604,5778,9191,-7830,1593,-5570,820,4423,-8788,-8913,-3622,-6979,-6134,-3674,-5390,-6752,-8422,-9010,8828,-8616,9319,-6239,-9991,8613,7730,-4672,9973,-1686,224,-7387,2817,1474,-4370,-4090,-5104,-6382,-5338,-8297,-5978,7169,-3741,3420,4524,-6203,-7253,6322,-4431,2551,510,3115,9473,3700,8472,-8842,4425,-6730,-6625,1050,8642,-8675,-7419,4412,-7649,8679,5795,8446,-2089,1811,9491,-9664,2370,7898,-5429,-1479,-9025,-4086,6337,-9635,-7898,-4666,-877,2887,-3485,9450,6607,7576,892,-374,8264,9754,-6921,-9039,8230,-6658,4114,2480,-687,-2924,7875,6046,-6532,-6606,1551,6836,4427,8844,796,5729,4828,9213,-608,-8444,-2039,1355,1306,-6477,9371,949,6273,2665,8969,-5510,3683,8391,4782,7821,5763,-4624,-2549,-8237,9658,-2418,-68,-5665,-7417,5330,-8295,5789,-3633,-7803,6471,-2991,-2689,9590,9434,8520,-414,6199,-6320,-8762,1274,-1115,-7133,933,-2799,-334,-7042,-2962,-1665,-2559,7849,-2573,8164,-7095,-3178,3249,6537,2379,5187,-5065,877,5754,-5716,-9462,-8670,-2098,3421,-2320,-1250,9932,-4353,-1639,422,-7126,7286,9311,8832,-229,932,-6789,-4137,2934,-3034,1577,150,5858,-9291,845,196,-9726,7506,-2222,2284,4352,-3342,-1778,-1977,3202,-6841,3186,9225,1351,4455,8697,-2015,-6070,2376,-4355,4364,-7048,3500,-5698,-4168,6650,715,-2423,5695,-5586,-787,4000,1623,-958,8528,4849,-3707,-2693,-9657,4992,-2151,5332,-1578,2753,-1579,-6905,3326,-7574,-7840,-6271,1710,-3296,2015,-4258,-9436,-30,998,-6905,-2164,4206,-9008,8858,-3022,-2127,-1751,4585,-5597,3650,5175,-951,1354,-5984,7377,-9912,3108,-8103,-9487,-7340,-8937,2083,-5964,7113,6906,-2662,4153,3783,609,6842,-356,8141,2607,-6987,-3432,6933,3407,9763,-3469,-7524,-2281,2193,5764,7732,5709,4446,3054,1025,-9317,2641,8646,1653,9281,-8112,-9357,-2749,233,-5940,-9273,8410,1044,4543,-2468,-4080,-4696,-742,-542,-9311,5696,7938,-451,-511,2161,-8500,4211,6422,-1710,-8556,-6623,-8628,-7683,-4780,-610,4789,-2471,-945,-5660,3558,2561,-2554,-4024,8162,9479,8706,899,7392,5743,1792,3794,-7749,8655,-8644,8832,-1941,-9107,-1139,1221,8683,2402,1354,-254,-8470,1213,-2782,-9446,-7051,-3510,4954,-9340,1016,-5108,8185,-8313,8262,-1221,-6115,9401,-3460,8063,214,-3158,3201,-6568,1389,-7950,-9764,673,-1032,1312,-4522,8505,-2382,-7590,-9751,6518,-8860,-9154,3345,-5391,8347,-245,-3156,-2984,-6580,-2594,5885,7789,-1501,-894,-9746,828,6150,-5581,-3680,9965,6702,-7581,-3916,-5217,3791,-4826,167,-364,3874,-1490,4799,-6842,-1354,-134,-7795,-7184,-9709,-611,3950,-5730,-7795,4975,-678,8820,9965,-1758,-8369,5218,-4046,5754,-9939,-8626,6959,7983,-6997,-7325,-9783,-301,7628,5811,-4147,-2614,6011,-3819,-4004,-1574,6586,-3902,9487,-9721,-3248,9962,-953,-200,-5868,5982,7229,7799,8898,-1962,-9904,6436,9383,3664,1089,-1269,-3702,2198,5989,1595,7327,-7622,-7414,1388,3921,-7478,2077,1710,-4542,746,-6369,-7530,-4923,3962,8754,-7682,-3734,-3344,2248,-8518,9050,2764,-5023,8481,-2846,2451,-5326,1309,1488,7990,-4824,1963,-3068,8823,-7515,1572,-7976,9828,6892,9251,854,5607,5623,684,-8282,-6243,6917,-8223,2874,-1619,5872,9365,-2884,-1890,-4561,-3087,-8869,6346,8868,4707,-4954,-9628,6283,3543,-755,-2097,-535,5549,-582,2903,-35,-4371,3683,-5287,-7217,-6794,-9373,115,-6239,3569,-4476,-2455,997,8356,-7748,-1097,-6602,3394,-8952,8245,-3893,-8001,-6617,-6991,2070,-3172,-7744,8497,4473,-455,280,-8652,3667,-1178,-7354,6228,-5146,9804,-3686,339,8178,8991,-3576,-6354,-5164,9267,5085,1151,6545,5854,-826,3552,4582,-6623,-6420,-438,3918,998,-5267,-5057,2326,-875,3196,6377,-9975,3398,8768,6943,8940,5770,-7981,-130,3484,-6667,6721,-6279,9375,3634,8037,-3698,-7397,6964,3398,-7281,4336,-5802,4059,1089,-8961,-9602,5156,9523,2061,-6645,3370,9801,-9228,9737,2597,4994,757,8860,-3458,3105,9456,-8808,-9195,5596,-1294,-2430,1469,-7713,-5462,-4952,3628,-5210,-3167,7496,9221,-9178,6601,-7449,-397,-3619,5044,3276,-7553,-6697,8889,-4402,-4277,6553,2974,-5510,-9204,-3894,-503,9647,-9161,-6365,9821,-6269,-2228,-7637,6661,-2481,-6813,-8346,2995,-2032,7297,1973,-5660,-1171,5282,-9675,-3767,2446,-2096,-311,-5681,803,-6012,3862,7627,-8623,-7796,-9902,-9962,-1285,-9919,6492,9318,7672,1828,-1903,2237,3851,8529,-5066,7749,-9235,-789,-998,9718,-5985,2397,7921,2925,-153,1162,6902,-2902,-5267,-6147,-1166,-1946,2172,3586,3972,-3144,7900,2796,7058,966,-7613,9097,-2186,-2180,5442,7218,-5356,-666,4640,-4092,-5934,-1290,9214,-8232,-6305,2235,-1200,2041,-5962,2008,-2008,8458,-2136,-8535,-3791,5457,-6001,2420,7461,-7017,-238,-2318,7828,1355,4310,4138,7859,6647,8469,6208,1379,6939,1283,1606,-3177,6476,-8848,5414,-2459,2371,5565,9754,-8550,1020,1922,9476,-7632,4684,7348,-8285,8843,-4424,547,2494,165,2911,-7949,-6120,-8673,-6202,9681,-9290,-3717,-4753,-6084,-9549,6994,-1229,3915,-5890,1785,-7615,-5095,7199,3670,5208,-5198,-113,7969,-2432,56,-1362,-4032,6589,-3668,6334,8737,1119,-9054,7668,7275,9020,8360,29,-9867,-5941,3612,-4972,8064,-3793,-261,3374,4820,-9391,4538,-4117,-6758,9118,4785,-6042,-7816,-1346,5657,5963,-7355,6843,-8049,-8947,5662,-8524,-1243,3711,6899,4584,9447,-614,7380,-3694,865,4342,8615,-6244,-3186,5331,8950,4953,5520,-3151,6671,-1284,1251,-4355,-4331,4771,-3276,4533,-1718,7091,-5511,8386,9677,-1832,6911,-7674,-9199,-6935,-9148,202,-7343,5377,3279,485,2038,480,-8156,-4563,-6877,1132,5051,7591,8104,3374,-3027,460,6444,-2216,-8554,-2651,5363,7414,-6363,-8402,-8876,-9200,-26,-9819,-5919,7216,9216,-6805,9581,-1925,-1889,3310,7516,-4892,-2744,-5961,7014,9659,-2776,-2124,6708,7567,-9352,-3807,2682,-4949,9246,-2145,-5604,-2961,8353,3820,-7771,9419,-9856,7725,7280,390,9888,-8125,5655,-6502,-2190,-5554,1697,6863,8621,191,8022,6256,-9028,7191,-7306,-9351,2580,-2015,4569,9523,9881,-5575,5054,-3050,-4972,-9497,3787,-2441,-3123,-6293,3173,-5644,-925,-3022,5979,4845,-2276,-1244,-2040,-7754,976,5346,6911,-2433,5854,-801,-865,211,4424,4104,-8031,8470,-4364,1336,1599,1245,-565,808,-9874,-9732,3795,-9828,-5225,-5152,8646,8630,4068,9676,8090,-8328,-9238,3743,3448,-1872,5349,7264,1503,33,-3401,8391,-4117,6680,319,-951,4393,-2051,132,4752,3316,6926,4237,2386,-5628,-3753,-100,1849,-3040,2530,1710,-332,-7726,8977,5948,7109,-1070,-4839,-9121,9722,-2088,4038,2114,6386,-5572,688,9051,8361,6430,-4303,-6738,180,-4451,1100,-5978,-1112,-6016,-6021,4714,5442,6264,1162,1141,6337,-127,-8082,3187,5319,1878,4395,-9389,-3945,3574,6686,390,-9232,4895,46,6776,-1996,-390,-2395,3113,5122,-5718,4709,3464,-521,-7153,8748,-5057,-7389,7561,-4228,7101,288,-1567,5957,-3955,46,6591,7094,-6187,2307,8142,-6638,-9615,5580,724,5726,2280,5259,9342,511,-1852,-1814,-5715,1985,-3044,-9237,7567,3136,3910,8606,5107,2945,544,3217,-3237,-2931,-1856,-6350,1458,-4130,-3022,-394,4692,9820,3304,-1581,-6540,-4166,-4640,-720,-7141,-4554,-964,-9860,-8040,-8107,7767,-8540,76,-4180,6121,-1667,9537,-8801,-9114,6501,-3637,-6729,-3560,-3400,2583,-5182,6970,-5732,-9824,8178,1751,9165,-9718,1431,-6029,-9517,-79,-8694,-8313,9369,7584,-5867,2078,9749,1908,-4376,-5171,-1818,-4665,4474,1308,9268,7499,-2667,-5040,1239,2716,-566,5002,-2195,8211,8473,-3867,7997,-6603,-4480,-6429,3916,99,-5536,-9609,5015,-5949,-5168,8587,6165,-5807,-9659,7451,-2381,-5475,-7510,5752,-3916,5188,4848,4273,-284,7834,6564,6366,4367,-8016,-4954,-8962,5463,6908,-7423,-1173,6939,8681,9647,-7172,5178,-2162,3570,-9055,5217,-2312,7514,4524,-9948,707,-506,5117,-2302,4668,-1458,-8060,-8769,2674,-8489,759,3836,-4478,-1855,7800,-1967,522,5581,-1446,1380,4558,962,-9069,-8973,1114,-733,4747,1569,1930,-7233,1780,2438,3682,809,317,4300,-3407,-3509,-4797,2310,-5664,-6585,-877,-3121,-3245,-9820,-8162,-3703,-6609,3561,3535,-8579,-4570,-9557,-1309,-4670,-2977,9509,-2245,8224,7042,2646,-3487,-4566,8529,5509,-7336,7180,331,4166,-3013,2224,6160,-5133,-2909,922,7162,-9671,7611,1530,960,-6821,-501,-3294,8381,-7696,-2407,2201,-3723,-4957,-6005,-7418,-3017,3003,-9066,-2648,-2263,-4676,-719,2377,-5276,4098,3990,1938,9883,-5212,-1815,8363,2996,-2923,-7186,-3328,-9093,5462,-2608,7630,-9216,1197,-153,3939,-7190,5090,-8232,9036,-8665,7121,-2766,4046,-611,6174,-8704,-5305,3591,-6299,3625,9323,-2024,-2394,9920,-954,-2967,-6653,-4596,-3374,-466,2540,8125,6529,770,5513,4671,-7173,4749,-2263,4536,6512,-2353,-6734,-8174,-3400,8357,7952,4842,9709,3974,9399,3115,5438,7723,-5714,4191,5655,9753,130,-1251,-4904,7194,-1114,-2236,8441,3954,-3607,1782,576,6601,8801,-9934,-1097,-1020,-6137,5072,-4234,2537,3347,-8426,9679,-7011,585,-8773,-6838,8184,413,-5817,-449,-4779,-9613,-1991,-7703,4607,2399,3045,5264,-6053,-274,-9128,-8933,-8830,-6786,1263,1094,-3932,6246,-9558,-4099,-4500,-5937,1299,4514,-7492,-9346,5181,7007,1880,3070,-577,-4776,4451,803,5665,-8573,-6257,-2221,1568,7758,8210,-1603,8013,-3938,6034,413,-106,1327,6030,-4855,-2509,-6695,7504,4119,-966,782,5770,-1382,2371,-4347,-4564,-2747,4728,9987,-6593,-7919,1280,6783,1207,6314,-3159,3177,2873,-8884,2248,-1340,6740,6639,9987,4667,-5233,-1466,2866,-9022,-8478,1273,7730,-4913,-9588,1105,4754,-4249,9168,-5589,231,5619,9911,-7445,-6819,8859,4271,-5133,211,-2928,3699,5785,687,-2914,7513,-6192,6828,3052,4052,9201,-6342,9774,2317,-7314,-4102,-28,-2816,-8525,6165,4628,7965,-654,6615,-8273,-7836,-5678,-2863,6628,6693,-4879,3607,9413,6926,-3282,-7829,8933,2551,-7389,-4972,-9754,-1695,-1445,1922,431,-5411,7250,-9001,327,4665,9318,-2286,-2954,9352,-6706,-5224,-3504,-5478,5350,6825,-4033,-202,-9556,1713,3916,4991,5913,8673,-9008,2060,-3735,5833,3638,3138,-8504,1534,-8866,3205,-5387,-4500,3471,-1634,9437,1340,-5833,-8721,6421,-4222,6348,-311,-4861,-8101,5340,8253,-6309,-6242,-4469,7164,4084,-3665,2366,4094,3252,-1278,4143,3381,2061,4575,-4837,1053,8124,3765,4681,4152,5654,4720,-7628,9622,-506,-5964,-5979,4799,-332,-6479,-7853,-5950,-5917,-5188,-4195,-7700,7636,-2664,2880,4621,-4196,-7367,4243,-6192,-7858,5323,-3055,-7947,7332,-7096,-864,-4474,6139,-1205,-7613,2319,3733,-2871,3947,-9663,-8955,-6169,1292,7468,5099,-3575,7594,-2835,1659,2932,-6103,262,7985,1654,3403,7754,-1757,-6979,-5791,3751,2580,4793,9797,3158,198,-8716,-2281,-4801,6168,1561,2939,-4336,-4043,604,-7168,4522,8978,-9246,-5587,-5814,4791,-9679,1306,-2826,796,-3151,-8871,-2387,5005,7998,831,-952,-6433,9168,-3636,1099,-8411,-2077,6006,1134,-2675,-7238,1222,-9893,3736,622,-1973,-3345,819,-1283,-8695,-8943,-3964,8689,-5123,1277,1446,6819,8672,-1093,9820,592,820,3176,1115,-6649,5893,-477,-679,-9522,-6,718,-5684,-933,1618,783,6163,3714,5209,-3730,-5521,5357,8866,1913,5498,-3111,1474,1411,-3179,-6057,3323,8697,-5722,4116,-1466,2785,5521,-6151,2228,-1891,7030,-8450,-450,-2069,4338,7727,2638,322,-1224,7752,9533,-6139,5238,7262,5299,8173,8561,3722,1172,-387,7655,-4296,9190,1288,3135,-7644,-8641,5292,-4856,-2747,6313,-6086,-9680,-6762,-3760,4136,-9514,-5632,6219,-7248,3785,6825,-7339,-1574,6031,-4303,-6358,626,-3771,-6524,9315,4039,9415,-3107,-1192,-5298,1070,-5492,-3104,7261,1048,-9534,4151,-3186,1559,771,-3782,-9011,2157,4314,5460,9512,7808,-7629,2856,-5569,1441,1355,-9966,-994,-523,1436,3052,-5230,3449,9245,-9977,5912,-5622,5931,6915,-7005,-7168,7789,374,1315,2311,2408,9639,8971,8200,-7133,4258,-3269,5548,-7064,-3021,-4976,-397,-9714,-8123,4781,-6917,-7752,7187,-5211,1661,-386,-1829,682,-1069,-3612,-6593,6758,9543,-7691,-3611,9321,-2542,-1720,8510,-4407,-7274,1176,4301,2627,-8584,546,-5450,4253,9638,-8637,1150,1296,-4590,-3319,-4009,3252,1218,-9836,8223,652,-1443,4578,-8749,-3542,-5095,-5770,-1472,742,-2861,9043,-4439,9145,9540,-3545,-5779,8733,-9267,-4474,-7026,-1384,-5171,-6924,7752,9457,8020,8216,8962,534,9616,-2648,5542,6827,4926,3670,-4883,-5779,-3154,7854,5542,1281,6001,-8338,-201,90,6397,8069,-1179,8146,4709,-446,-2584,-1579,-6108,9027,-8684,8656,6891,-8058,-8001,9322,-20,4919,3829,627,7786,5468,-3953,9498,9434,-6387,9308,8250,3395,-7892,-1480,-8591,5090,-830,1780,-4468,-4652,833,-7481,5436,-1613,4128,-8922,-2596,1763,-9209,813,7517,9333,-321,-9650,-198,5825,5834,715,3826,-8957,1020,8177,5376,1739,2313,-1639,-8963,-5003,-9251,-3022,144,-947,6292,3414,-7649,-2695,-6832,-892,-1157,-8792,6267,-1874,1297,316,497,-2081,3552,1833,9682,4353,3049,-8205,-7722,1795,7594,-7320,5660,340,1890,-2857,8259,-2605,-5277,-1409,-4866,-6705,8296,9164,-4048,8221,-5173,9612,-4662,-6510,-548,7267,7792,-5114,2916,4942,-7912,358,3173,3858,-1643,5690,6174,-6099,956,-275,-4346,5854,-7025,-9195,5292,5820,-4378,-9695,7651,4755,5345,-2768,4716,8434,-3552,-9995,5363,800,-2756,-4173,-7192,-676,6989,-9901,5814,5427,604,-1093,7226,-3998,-3908,7923,4009,817,-7988,2316,3914,607,-9310,3353,2793,272,-9221,6686,-8768,4351,7285,4459,6403,1667,4042,-2084,9016,-7700,-3781,77,-2541,-1345,-3693,7538,7625,2666,-4977,32,-7586,-5095,-5739,-8422,-9299,5041,-7710,6555,3375,7707,202,-8575,-413,-1165,-7924,-6409,-4628,1239,1134,-548,-2573,2312,793,-8035,-9943,-9331,-8373,187,-8435,-4879,8660,-2949,-1398,-1816,-1777,-7330,50,-6734,-7826,2601,-8726,-1431,-2658,-2210,-6121,8627,-429,3542,8993,-3835,-8008,-6451,-7271,6454,-930,-3470,6448,-8377,3004,1393,5048,-6660,9083,9187,-7692,-6140,2418,6593,5170,-2166,-4130,8172,-2443,-7004,-8864,2084,-5227,-4591,-296,-5935,2987,-6885,-3022,4203,-4017,-4644,-1281,2723,7567,-4360,-6905,-9545,-4191,6790,-6826,9363,246,-5666,-964,-9873,-4789,-8921,8495,6245,2894,8482,-3476,8480,-2899,-6217,-1940,-539,-6388,-748,-9588,3114,5942,5265,-7548,179,2482,-3592,2633,-4603,3178,9731,-9346,-5798,-4388,5710,-280,-3346,1248,-6124,-488,6816,-9395,-8986,8185,-4212,9130,-2312,8,-7325,-3297,1614,6488,-24,-8612,-1693,6135,-8460,4566,-4877,1093,-533,684,-3058,-6264,3128,-8586,9574,-5574,-4345,-1884,1173,-8802,-6350,5345,-6446,-4574,9277,8128,6158,-7398,-9382,-954,-2597,-8270,-7026,-2727,-9934,7841,9759,4592,8744,5300,-7799,5809,5880,-2629,6604,9506,-136,-3649,6362,2729,-292,-1607,-3377,-838,-7340,2001,4802,9629,9968,-5007,-1863,1752,-7822,924,8669,487,-9824,-6959,-9601,-6068,4401,-626,-8676,-5539,-5407,4609,-8984,-5033,-5706,6828,8455,8216,-8328,-75,5102,652,-4433,4374,3864,8474,1387,552,8115,-9277,-191,-7372,-5403,4400,9622,-2392,-5474,-5991,-9631,4876,-9036,-3627,-3925,9551,7761,-7672,3458,1462,-2765,-9821,-5154,4294,1048,-5301,7737,-3270,6496,9461,-6510,-6586,-3825,-4423,3034,-6818,5499,6053,9602,713,5460,9438,6806,6211,-5354,-9975,2843,6795,5683,2391,-8594,2186,-7313,7178,5898,-3326,8214,-5836,2395,-1993,1285,-919,-1949,5823,-545,-1562,6485,-7401,-6560,-7251,5918,-8839,7903,2036,-6973,-3171,9812,4028,-7790,5278,-9384,-116,3222,-9019,-3740,8630,1385,-1895,-7835,-3377,-8619,8320,1587,-3679,6127,8545,6355,5192,-5499,-8906,1346,-1145,6277,-5930,-3388,5262,-6207,-5252,-6730,-7869,-6785,9839,-7684,-7456,-4650,-8527,-3737,-4908,-9644,-9912,1795,5376,-7503,7893,-7449,-7587,-9778,-2626,-6087,7882,-6410,-2882,9272,-8219,-3158,-329,-9964,2040,4579,7548,-3138,4141,9255,-5397,9289,5952,6573,-6230,-1434,4868,-3995,-6967,5618,7533,-5576,6187,1564,9991,8501,6598,-7758,5718,-4145,-2981,719,1874,-3132,-6889,2182,3989,6295,6104,-4420,-7452,-9245,9463,-927,-6149,-2190,3098,9161,2125,6217,555,5850,5175,-9288,-5380,-5335,-1903,-6105,3028,-6984,-7733,-3437,-4472,5422,9248,5655,-9594,7060,-5286,6412,219,-3489,9597,-2341,-2356,7382,-5196,-5051,5520,-6610,-6371,-4751,-8843,-1323,-4632,-5166,-3814,667,-4618,-3952,-23,8679,9894,196,-7512,-9345,1668,3390,5347,8552,-3606,-6454,-8944,-8535,579,-2672,-9320,-8244,330,4296,-2533,2545,6299,-2809,-1429,4859,-1995,5675,-3945,-418,5513,-9211,-6058,3717,7311,2291,-7550,6887,5373,3178,-3900,9289,1559,8845,-1065,-3209,7610,-1552,-2540,-6804,-487,7361,-9591,3369,-8851,-179,4201,-6941,-4543,-9914,-9386,6551,6864,7601,3579,507,7969,-7420,-1182,-8693,8679,185,6979,-4185,8932,8862,3090,4252,5024,-1320,-2547,1070,-4056,-4602,-5644,-301,2374,9894,1905,-9208,9435,-4082,-8861,-7330,6408,-3554,1217,218,-2013,4610,9917,5612,-1593,5839,-1998,-7601,-4981,1802,-1234,-1778,3423,145,5181,2788,4752,619,-8076,6868,1206,-7025,6519,7905,-4628,5699,6958,6616,-7813,-5452,254,220,5840,-2527,5971,-6000,1520,-8740,-5301,-3863,-1199,7012,-5722,4183,-3828,2388,254,7062,-8565,1326,9467,-3195,795,-2472,-1325,862,-1677,-9811,-4463,-6673,-4224,3966,-9900,7384,-9629,4236,5432,5860,-5752,5119,-9781,1472,-7633,-2894,7910,4875,-4930,-1515,-8819,-3289,8661,-5161,-877,1119,3845,1180,-2124,7909,2637,1428,1304,-6450,-1397,1125,9530,9327,3825,7850,-150,7835,683,3656,4318,-2294,-4479,-9253,78,-5950,-5618,-5421,1458,-8046,-6172,-2837,-5421,9953,-9249,1982,-154,9455,4190,1471,929,-5528,-6831,-2438,-7138,683,4906,-6920,-4285,-6109,-7380,-2492,8033,-8689,3219,3576,5700,1117,8972,848,7845,5923,9449,-3507,-6893,154,-289,-7805,1590,2421,3522,-5668,-8219,-8087,-7610,-3303,2747,6060,208,-1645,-505,7858,-359,69,-3670,-2949,-2708,-5321,-1877,-8191,6404,-9572,2368,4057,6953,-1266,-7940,3973,4649,-1270,-2151,1360,1712,-2720,-6548,-8364,-2107,9400,-8241,-9814,-5826,-2547,9092,-2367,3619,9082,1032,-1693,5516,-9955,3868,9685,-3754,-268,197,-5523,-8844,-6509,-5395,-3392,1681,-2362,9857,-2399,3040,-3913,-4446,-9575,-408,9472,9419,-8351,9471,-1440,-1434,8492,-1108,2764,9711,-4300,5456,6892,9373,-6666,-5431,5913,871,7986,7828,829,9262,-1718,-8153,4591,-5132,-8368,-4494,-6425,6495,7574,-3367,-7308,-9867,1316,4830,9656,4724,-9874,7774,-7718,-7667,4826,9730,-8588,-9193,569,5474,5776,-2863,3615,1851,-2800,-4021,-8273,3312,-444,5330,-4326,3064,-9621,5186,-5171,-9584,5943,5879,-419,6620,3920,500,-7637,5881,-4604,-4669,-689,-4461,-8174,8729,-1695,-6684,-4911,-5891,-3642,-7960,8575,7611,-9441,2560,-5629,-1741,-1770,-7252,-6290,6737,969,4144,-8981,5066,461,-9091,-3868,9436,2743,1696,-9262,237,4908,-3833,-2307,-7058,-7598,-6420,-3449,-2245,-4100,9207,-5077,1994,1423,-7078,6221,-6885,2058,31,8974,5720,-9283,-6348,-6200,6360,3043,-9221,-1578,-4890,9583,-6067,-7000,-8868,1297,-1609,5582,-5001,6210,2890,227,1102,-9115,-3523,6589,-1937,5785,9627,-8576,-8283,640,-7730,564,-2246,7893,3097,-3025,-8068,-6761,-7418,575,9016,-2518,6721,-6114,4696,-5526,-8676,4445,-4315,-7834,-1014,8343,2164,8267,430,7992,-3894,-4371,-6722,-187,-8111,5071,-8511,7640,-47,-7110,-8844,-4949,-5339,1778,-1501,7334,2653,-4048,-3118,-3951,4920,-7694,-5192,-40,2026,9193,952,-5290,8792,-7455,-4552,-5197,-28,1662,-6261,-6619,5163,9813,-5740,7232,-1979,-7208,-6903,-7007,-9052,-1708,-9259,-1353,6238,3038,3254,-1424,5440,-9831,2769,4358,-6907,-5275,4618,-1713,6956,1459,-6587,317,-5639,9963,-7512,-8553,-6260,986,-5591,9366,8240,5212,-7248,7438,9786,3577,-4471,6103,-8094,-4634,-3154,-8483,-2875,2429,8699,-2779,-6732,-3198,3580,399,-9592,-2726,1095,5147,-3763,2408,-2521,4668,1648,-7026,3490,8113,8307,5245,438,-8437,-8326,-7413,117,-2943,7507,7626,-6478,-429,5792,26,2736,1189,152,-7536,-5679,-286,-7821,-593,-2037,1186,9965,6053,-6396,8760,6311,-4012,-7500,-5995,-3113,-2650,696,1875,868,-7711,-7617,4133,-8210,-2898,5614,-4803,-4415,-6529,2350,-5447,-7171,3315,-8986,9402,2851,1246,5863,-957,1361,3186,-7585,9386,8449,-8451,-4700,-2706,-4417,2087,3090,-3759,2917,7175,6669,2794,5219,-2110,166,9763,9574,-418,5726,4440,2733,360,5665,709,1650,-3381,-3044,9584,-4772,34,6231,-8993,-888,5950,1890,2805,-1026,-4116,117,-4292,5319,2043,8382,-8965,9719,4920,-8557,3576,1735,1374,-6456,3301,-3402,-6642,-2923,9546,1421,5458,-9126,-1076,-8034,6963,8732,9272,-7593,5556,-2306,-6298,1593,6019,3357,-1633,-5981,8163,6852,6383,-7959,9871,-4236,3636,-5044,2035,4403,2283,8974,9207,9099,-3843,-8049,-6482,7644,7322,-9653,3588,2903,-3672,40,-322,-4582,-7213,7811,-9568,-5369,-514,-4460,5115,-2258,-8616,-7837,6305,-884,-3914,-7624,-763,1966,-9029,-2412,-8210,-465,2966,6089,7366,-8310,-4166,9379,1329,-4674,-1229,-3502,-8421,-209,62,5072,-4143,-5643,9138,3512,6253,8957,-3591,-9392,7978,8047,367,6038,2950,-1508,7215,-9942,7195,-3544,-4606,-3613,-4730,8201,2483,-6184,1986,9561,4943,3246,6189,-5354,-3519,-4099,4714,8187,-9859,-2815,2394,9997,7634,-3094,-6621,6469,-8062,8829,-7973,8316,5169,-914,-1468,8042,6436,9874,-8656,-9876,8041,-4073,-4948,1694,425,-1297,7782,3985,-3113,-6258,5023,-1308,1138,-6286,-2215,711,-1112,9056,6738,3339,-3109,1751,-2189,-7739,-2744,-7910,-8795,-7781,2600,9787,-8393,4946,7944,-5727,-5076,-9774,-5362,489,-2871,3214,-9857,6523,-7229,-9462,5959,-6006,3567,-7863,-5282,-5358,-7004,-1562,4078,-4775,-6296,-5095,-2901,7537,9000,5527,5392,-1637,-6991,5785,-1641,-5107,4166,-4057,6761,7119,-649,-2551,-6622,5223,-4465,-1776,9259,-4853,3094,7989,-3806,3709,-9873,4414,7111,1317,-7863,3035,-7468,8504,2089,-6695,1194,3712,-5689,6771,2608,-4169,1028,3193,-4679,1405,4228,-1612,7784,8805,-3420,6954,-9212,-9025,-4024,4569,-8072,-5298,-8345,-2079,-2004,-1264,7112,-9436,2325,-3067,-341,875,-4968,9753,-1512,3242,4006,-6040,-483,2374,-3977,-5327,6279,6197,-1407,-1532,-5924,7188,2172,7530,-6342,430,6340,-9834,-7362,773,5606,-7588,7529,-9465,-9457,-4211,-4980,-6499,7335,-7505,-8205,-6891,5649,-223,93,-3202,6028,-4137,7207,-7408,-9301,-1020,-8697,-4927,-3994,2461,9135,8795,-8050,5544,-9388,9182,-2184,-5331,-8059,-786,-7610,4947,5581,3297,-2270,-5314,363,-6936,-3870,6245,-7629,8245,-6171,1082,1614,-1113,-5655,7821,-2940,-6422,7527,-6536,-516,5644,-1225,-4864,-561,-9053,7839,-7410,-8572,-3515,9635,5718,1083,-5594,-3633,9985,8124,2654,6799,854,3551,-2726,2223,669,-5132,8558,5350,417,9405,3481,5558,116,5513,-3821,9214,-1713,1720,-9528,1376,-5423,1193,-3756,-2188,5161,1825,-1031,726,-3741,8108,-6956,-3542,9345,-2341,-6339,-9891,-1149,2249,4326,3327,-7753,-6948,-2069,3529,-2398,9775,-9849,4428,-2982,-8235,-7318,8122,6050,1221,-8628,-1457,-7470,-1246,-6196,-5316,-2135,7207,5112,4406,3334,-9037,-5579,9416,5510,-862,-8855,6917,-3435,4416,-7938,7381,8536,9979,9457,8214,4571,-8965,656,-6369,-1759,-9418,-5158,1826,4007,8587,6212,7309,5722,-4311,-6408,-5002,-6748,3270,-1502,6207,1747,-3057,893,965,-9702,-7334,3103,-9549,-6255,7729,1495,-2879,-6240,-9326,-8641,4137,5226,7839,7153,-2678,-8820,-9728,-9191,-2736,-3787,-6319,4351,1017,-5089,5093,-4522,1962,5935,-6354,-1426,4922,-9977,-8578,6579,7552,916,-5081,2889,-7309,-2954,3122,7885,2443,-4266,5603,-4662,-2649,-6422,6670,7337,2461,2170,-4583,-6475,-9551,-1406,-6406,6160,-2424,-654,-4408,2768,5577,-2706,9980,-8379,32,75,4061,-759,3563,1666,1839,4716,-4733,-9694,-9722,-8352,-9337,5969,1284,-6305,-5423,3456,154,6422,-6831,-5397,-7544,-7349,-5430,6543,-8706,3576,4212,7773,-7184,-2437,3012,-6179,2013,4041,699,-8670,-9268,-3070,5149,-6128,-9264,-493,3128,7369,-915,-2011,-2076,-217,-8245,9557,3089,-5230,9717,5547,-3153,-1361,1437,3479,3329,5271,4156,-4602,-1492,2423,756,-4538,1035,5548,-2294,-9499,8731,1535,9080,-468,8416,7642,5208,7096,3025,-6568,-8776,419,4567,2260,5721,2759,2188,6826,-9094,3905,8415,6986,9932,-9583,-6235,2757,5073,-6421,-2086,-2366,6901,-380,-3794,-5837,7632,2538,-5015,9124,4472,-3881,1005,-847,-1792,-938,-6916,-8083,4353,-2181,3274,-624,1927,8515,7627,556,4876,3076,-9365,-7824,2956,-6076,-5228,-9487,-5692,-1339,9280,-3718,3627,2043,-7451,-7245,-1873,-7044,4738,-4971,-518,-4623,-4321,-6261,8608,7159,-6645,4565,-6661,-4223,-282,9659,-9583,-9288,-2463,-3243,-7546,5032,1531,7316,-1359,8459,-6559,1557,-3271,-9330,5949,2665,6610,7780,5592,-2623,-5454,-4345,-1137,-184,4050,3964,1335,176,-9609,6061,8862,-5485,-1789,8079,6073,-7177,5137,-4042,5052,-8881,-1659,-9470,-5446,475,-753,-7883,2933,-325,7971,-2138,8922,3890,-3915,-9017,-3505,9501,802,5978,6319,691,5183,9766,-2496,4922,4655,4785,-7471,5698,1513,-4867,-4963,-9761,-6544,-3447,8026,-8799,-3976,9034,9235,5607,3005,-1122,-1112,8490,-6762,2973,2588,4899,7460,647,2130,-5227,1502,2012,-1137,-5485,3309,-3604,4008,9811,4884,7463,-840,-8087,-580,5059,-9618,-9051,-1368,2620,-3593,744,2561,-7704,-7393,8778,1150,-7655,-2111,-3065,9134,-1800,5120,6231,9680,-1320,2024,1098,2329,4779,-2895,4243,-6232,-6591,-5877,4275,-6895,4334,1199,-1596,6034,8571,-1046,394,-9088,912,1411,-2604,-6922,-6876,4763,-331,-444,6142,-2077,8426,9968,5617,-7917,7713,2193,-9084,670,1003,9463,-8797,8481,-1539,-8817,-6685,-5526,4556,8115,3378,6195,-9427,8407,5848,-5241,-213,6189,4161,2340,4772,-6779,9272,9927,4994,9793,-2682,-4262,8202,3564,8692,-5007,-5290,-483,-3733,-5598,-498,3560,-4313,-4308,-3052,-7853,2017,6943,5395,4893,-5747,-7985,613,5845,-5980,-215,-8326,-4329,-4208,-7205,-1926,580,-9819,3292,-8912,-280,7929,-59,8754,5274,6259,-997,4866,-9545,-9139,-7994,7442,7068,-1003,7021,4916,8925,-9344,-8593,8291,8841,-9780,9775,-1449,-8225,-7594,9478,3468,9396,-4639,-8108,8957,-6409,2729,4320,8872,8390,2618,-3830,-545,-3177,-6789,7220,7694,-5239,-704,5842,-6449,-698,-2116,1036,5463,-2023,3129,-2362,-1194,2722,8221,3348,5754,5852,7228,4460,-3790,-1497,2965,-2132,3492,638,443,-6132,2765,443,-3569,1859,-5075,7665,-1606,-6747,372,3153,-3462,-4254,-9168,1043,5588,-9775,4838,-363,-3400,-2818,9145,-6658,961,-5616,-2069,9081,723,-9006,659,-6953,-3473,4633,-4286,4356,3738,4224,1509,-5043,8671,3286,5120,8295,-5072,7196,-7772,-7184,-3901,-2211,9230,-6398,-6513,-1509,-3985,403,7376,4888,-8254,1953,5542,6442,4033,-6757,-5073,2871,5483,-7661,-3823,-5058,2981,4042,7061,-8966,2573,7163,-4910,-7732,-8369,-5453,-9978,4797,5525,-9518,9649,7224,-2488,3158,3328,-9208,-4823,9959,-8180,8543,-6929,864,2007,-5143,1547,4332,-3490,2744,159,-9358,-191,-3433,1470,581,-5843,-5921,-3146,1344,2981,3979,4161,-1998,6070,-9582,-7009,-3312,1926,-2031,-7453,2145,9463,-8814,8015,-2505,9094,-911,-8537,8048,3020,-2716,-7906,-2476,-2981,-102,7828,2376,-2662,-4447,9795,-8899,-1448,-4301,-8146,-5504,5609,-5974,-3098,-6303,-1325,3059,1003,9714,-7339,-3031,-830,-1000,7583,6026,-5886,652,5411,8102,2320,-9917,2332,9151,-7278,684,-1852,7821,6184,4297,963,-2093,1760,6377,-7993,-3116,-6360,3052,-9727,2288,-7349,-5019,-9828,-3453,-4798,-5632,2374,-3659,-8667,7721,6768,7635,8703,-5304,-1873,-4036,-8767,-3061,-7221,-8114,-8365,1681,2254,540,-9183,2325,5608,-3933,-3864,5386,4950,6023,-766,8548,-3540,9145,1924,-2745,-3296,-6665,9036,565,-538,-8277,-7558,828,9975,-5011,-4789,4765,-7635,-8383,4002,-5135,3617,-6600,8419,2900,3253,6156,-5442,-8923,2995,8823,-5232,2861,197,-6947,3170,-788,1465,2825,-1574,-7611,4199,-2724,5870,-9940,-152,292,-5876,-2354,-2442,-4027,5869,3987,-488,-7,3567,2307,-4354,-1266,8794,3987,9964,-3461,-8399,6873,5196,3927,-7103,-5895,7821,875,3628,897,7682,-4851,-7996,2067,-1409,699,-5886,541,-4365,-8057,4287,8851,-3187,7442,6098,358,7397,-7751,-2459,-5720,-4141,-4077,-9792,-7871,1262,9379,6030,-3549,7285,1239,-8575,-6934,1953,6301,-8067,-2880,-6506,-8230,-7942,5451,-746,9560,9327,-6539,-6131,3034,8807,4549,-4678,-6831,4143,3408,6708,4325,-8605,6271,-5152,5814,9586,-5955,-8734,-2819,1763,1340,-4675,1240,8609,-5285,-500,1819,-476,6519,7265,-9265,4232,-5931,-6466,9822,-7331,3120,1925,9017,2237,-4550,6286,647,-6408,-4225,6808,-2158,-9198,-2323,-5656,-2257,231,970,9170,3019,864,-512,9142,-1209,-3139,5849,-4189,7473,2607,-9435,1036,2305,-7286,3883,-3575,9105,3445,-9663,-4945,7585,-4747,-6189,-7944,-9860,-4301,299,-4720,571,9388,6104,6171,5948,363,-7269,9089,-7719,9378,-9560,3438,-7733,-9584,8894,-489,-2539,1760,-5438,-7447,-2767,2380,-5361,-2257,-617,-6416,-1914,807,2668,-8846,-132,-3154,2582,2178,743,-6752,-8791,3654,4304,-2128,8063,4401,4265,9392,6501,-1082,5917,-3115,-6512,-6819,2654,2180,-524,-5853,-9294,2486,-817,277,4060,-5630,1121,1018,-7992,3532,9522,2151,1198,5086,-7960,-9203,-7139,928,9693,-6757,7407,8840,-385,6390,3387,-5895,2475,4928,3139,7186,5663,-7922,-1930,-4795,-4830,-7740,-3277,-1490,5606,-3253,-963,-3251,4708,-1744,-8017,-4606,-7456,-2854,-3126,6324,707,-3024,6919,-9724,3421,-2442,-9008,9176,5841,5494,-7629,-6249,-8984,2774,2129,9133,-5053,-6651,8786,5163,2632,-8937,-9558,-1454,4934,6497,-1846,-685,-9211,7294,4030,-2638,901,551,6827,-1688,-3030,-7771,2286,5534,988,-5258,3527,5125,7839,-6189,-6384,3044,-4602,2224,-2999,-1989,4568,-9150,31,535,5125,6818,9644,-3672,6058,8200,4844,8611,752,5503,1556,3610,-8275,-6108,-5731,-4542,8179,-7906,-6748,-881,-7802,39,-1095,9129,7755,7934,-5672,9276,-8236,-8852,1714,-1744,-6924,-2632,5457,-4487,-8069,4095,1728,2208,2626,9021,-504,-8122,8029,-4823,350,-1533,-8517,8562,-3295,-2096,1905,-6602,-2240,9574,-696,-2961,6481,3068,-1939,-4051,-3123,-7535,-9178,-8468,-6152,2860,4647,461,-2778,-4274,3284,-4800,3711,35,-7382,-1508,-442,-8948,9404,429,-1201,3960,7572,-5766,6977,7414,4521,4405,4630,-5975,-6337,-1416,-2886,4528,-8064,-9984,6890,9360,-6058,-3586,3409,-9017,-3778,922,-6271,1010,7437,9992,-8267,4972,-7380,-5493,733,-1556,344,7578,-9833,4127,204,-1183,-4153,4526,8107,5661,5705,3598,-2247,9177,5483,9112,-3796,-6446,-7891,6086,-2632,-8350,4213,3992,-6408,-6636,-6343,-7573,-3730,-6890,-9903,4951,8346,-77,6222,7826,-2570,3260,-2170,-8423,8888,2934,1281,-201,-7472,600,1051,-4803,-2529,-3174,-8446,-7537,1822,-2826,-7022,5053,-5399,4972,-4336,6210,-3847,-2186,7766,-8766,8344,5834,9198,1776,362,-482,-610,-9790,-8733,2697,2010,-5914,-7121,-5198,-611,-8313,9770,-5364,7736,-6495,3255,-4296,-4796,-9157,-960,-3546,9731,8889,-8009,7626,1744,3538,-5434,3382,3820,5165,-2086,1581,-4787,-5216,-9889,-5739,3206,9534,-7642,-611,-9441,7956,9780,3771,-7724,1805,9871,4931,306,4880,6798,-2883,-8896,-6640,3873,-539,7993,-2132,2802,-58,-8882,-6935,-7688,-4506,4716,1796,-4660,-346,-1909,8135,5581,4389,7877,571,4518,1076,7216,-1049,-1951,6035,4018,-2544,5909,6989,-6919,254,-8631,5044,-9768,7055,1867,-9640,-1687,-4138,-6546,646,1163,628,9313,4869,9368,-6827,-5801,-4096,9124,5882,-1179,-5972,-301,-996,-6752,-3483,-2441,3243,2168,-7336,-248,9468,-3236,7881,-1140,7851,-6550,-6327,-3338,5930,-7355,5953,9381,-1255,-841,25,-4372,-7494,-885,3959,-8760,2155,3145,6791,-4139,4093,-1130,5585,-5549,-6575,260,8208,-9774,6002,4044,5908,-9299,-2970,2595,1290,-238,-3382,1512,5126,9264,5954,721,2144,-7424,-648,-3688,-9270,861,-1359,-2901,-4104,7312,-1887,5395,-6061,3726,-9810,-664,2741,8305,-739,-3289,543,-8594,1943,6808,2947,-2011,3127,-8017,-6771,2828,-2359,1802,5929,7412,788,-6295,-7664,7442,8989,-3588,-4245,7899,4703,-2207,4459,-7141,-5844,-6941,235,-9309,-8071,-6156,4603,-313,-5404,9553,-9941,-9716,4473,4448,707,4508,-7967,-6879,-9943,-9861,9358,4028,4057,2213,2359,6125,-5440,-2710,-4346,9011,-4089,8265,-3491,3628,-7689,8985,9191,-8565,2533,1548,-9653,5800,-6028,-7953,-5723,5862,7678,6897,-8370,-3786,6272,-3123,-4282,8567,6756,-3296,7105,-6707,8575,-2940,-8078,-5034,-521,-3441,4928,261,-9472,-7802,-235,-2857,-6016,5313,8406,8078,6810,765,-4522,2881,-9843,9811,-2435,2221,-2269,-3551,-1822,-3378,4514,-8952,4450,-1106,-9329,-2961,-9583,2353,-7280,-8452,-5450,5217,-9468,-4614,-5032,-7831,-3748,5609,-4830,357,-7106,5800,-1739,-297,4759,5322,4218,-2541,-7013,6689,-6710,3419,-7555,816,-3492,-4227,-1623,-3338,-5604,4396,-7869,3356,478,169,6853,-5272,-7168,7305,-2366,-7020,-2216,-7932,-8808,6079,4854,9767,3236,4509,6279,-7138,8371,1029,-1478,-7686,328,-4708,9361,2578,1511,8145,7481,4083,631,8262,-9524,1406,-789,-6627,7959,7350,1244,7305,-7324,2043,-242,6171,1601,5450,-9844,4189,-9948,-8860,890,-142,7404,4097,5538,2245,-9141,-3054,-1877,6780,-2704,-418,-9507,5238,9699,2822,-4977,-7583,-899,-6972,2602,5291,-8609,-8339,4376,-8584,823,3670,9150,5754,-9341,-3731,-5634,-389,6798,9034,-9739,3348,5385,-1440,9244,8447,7082,103,-4526,-5412,338,6515,7838,1748,-6223,-7603,-4174,1832,-1814,-3360,-1252,-9678,7698,-5424,-4652,2755,4784,-1561,-4315,-6920,-4186,5568,-7338,2662,9573,7863,1113,-8294,-8347,5408,9109,-977,-1201,-3674,-3939,-555,-2594,7572,8423,-7523,738,-9998,-515,-2577,481,-443,2000,7268,-6230,-6862,7944,-3326,2785,529,4410,2577,5430,-3343,1697,-1048,-5297,7872,1201,-7243,-2825,3687,9428,742,1576,-501,6953,932,7524,4123,7416,8092,3121,6771,-6998,-5395,8495,-4394,8905,-341,3527,-110,-3320,3751,265,-6043,8835,8245,1203,-9779,-3998,-5383,7593,-112,1996,-8069,6340,3022,-8922,9581,-1550,4286,2236,918,-5786,1638,7158,-1102,7796,2583,-1424,4094,-907,1318,-8725,-5443,3370,1781,4065,1367,-8841,3272,-5143,-1951,-3805,8113,232,6936,5074,1215,-5233,-827,-1045,-9864,-5338,6371,-5425,-2568,-3717,-3248,2347,2242,9311,5761,5092,-7995,1822,8239,8367,-320,2663,-3307,-7950,-9180,-5746,6657,3773,8599,-5960,-8816,398,-2962,-7674,-4321,1552,6560,9695,3021,7219,9421,-4160,-1757,-6886,-8208,9177,901,-5633,-2934,-684,2039,9649,-3617,4786,-4786,-305,-2985,8328,6649,-9778,-8524,-7311,-1300,-617,5828,-3551,-3367,-5039,-4332,5155,-2673,3282,-9073,-8371,3417,734,-5618,1903,3511,-7126,2705,-2873,735,-3293,-7181,9973,-3886,-3555,-9551,5344,4012,-379,9262,144,-2933,-2753,-9846,-3421,-5998,9793,4074,-7647,6757,1918,-1975,6428,9139,-6407,1528,9478,-4234,-1119,554,-9341,-9711,-3018,-3583,2722,2293,8150,-4573,4455,-2571,-1175,-1447,5150,8903,-7922,-2735,-2300,5841,2207,7466,8906,-1300,8774,-5817,7759,2174,-6859,6965,-4813,-5947,8233,5186,1139,-7809,4347,8721,-2413,2479,4279,-8541,-5119,-8298,2151,-1240,-6499,-7286,9220,934,-1829,2719,-8702,9508,-7920,-8623,1351,9013,-1408,1526,-8244,-4112,9030,-1500,2015,4736,9037,5751,-9515,-7090,-9182,6360,4116,-9298,2402,-6284,-3879,5008,3951,5968,-1064,1082,74,4533,-2469,8078,8063,4961,-4070,-8009,4438,-1698,-4460,-8297,6832,1151,-5654,-5379,3637,5805,-8605,-9300,-7750,-8377,-5065,-8763,-7447,9941,-1735,7650,6056,3397,-850,2352,5332,-915,-8555,-1965,2317,6762,7657,-3557,5961,-8346,5726,591,-9528,4529,-5918,-2618,1335,5427,-3704,-5089,-9536,-9242,-9033,-8486,-8521,-7222,3732,-9218,-9785,-2898,6264,7222,-5796,-1470,7677,-6616,6707,-2996,2774,-5396,9204,-6294,6317,2902,-9713,7135,-1828,164,-8401,-8685,9497,-957,3728,-8283,-7682,-1849,1229,-552,-9175,180,4551,-2281,3518,9063,2105,-7961,8749,-5250,-2433,8687,3634,-7396,2208,3573,-2572,5152,-1909,8172,9461,-8228,929,6687,6599,4855,4253,4111,4542,4745,-319,-7498,-2469,9057,-9805,-1843,6403,-6325,3497,8571,-2398,5359,-5157,3355,5671,7696,7165,3828,-406,5163,4987,1700,-5932,-4010,1694,-6290,-6033,420,3895,8766,-3820,-2052,3417,6732,4496,-5332,6604,-8289,-6258,9506,-7881,9925,-5237,6954,2020,-4452,-8974,1720,-1918,3260,-4942,-6850,-9494,-3540,-5837,1764,2319,-9207,5840,-831,346,-366,2940,4658,1902,6849,-5544,2760,2329,-8423,7895,-1062,-5863,9245,6295,8941,-7522,-3437,8957,-8145,8328,6399,2595,-6813,-3584,-7161,-2039,-592,-731,-490,9308,-2726,-2465,6995,-6201,-7281,6714,-9005,-4293,-2789,9104,-2381,-2191,-1306,4729,-6764,-4835,-3212,-4786,-2897,4700,-1395,3350,-5071,948,-3439,9003,8044,-7996,3440,-1850,-1240,-416,-4851,2418,-2492,-7497,6870,588,-2552,874,-3851,703,2073,-2811,-281,8704,5274,4372,-728,-9720,9672,1252,-1052,1658,5354,7669,9247,-1398,-486,-840,4221,-3563,4902,6787,377,2716,1206,7453,8534,-8789,6078,-5545,-3488,-3703,2855,3449,-1200,-7676,-1763,-8908,-5053,8170,9731,-2878,9482,5913,8776,4016,-8980,-6918,-4520,5046,1140,-5059,-4551,5865,3629,5896,-3584,-1872,-785,-6938,-6306,-169,-7667,7785,-7001,-5400,-2114,-5258,336,-4325,8013,7515,8612,-7587,4853,-8722,1895,1922,-5879,4630,-7121,-7836,400,45,9091,-1019,18,-2795,5407,3011,8588,-1389,2462,-4850,1130,-5970,-4441,160,-4977,3074,4369,-7888,-5786,-3733,8500,4741,-4564,8278,-8679,3604,3336,-5585,9077,8638,-8378,-2144,-7695,7243,5545,1132,1949,3282,7659,726,2139,1213,5252,-9879,5763,3681,7632,704,-3050,-2194,-3391,-1741,7299,6026,-3956,2231,-1967,-5839,-8536,-4632,5481,-2949,64,-5500,9101,4319,6742,3325,-6598,3256,-7694,-2494,818,-3182,3035,6804,614,-8537,9313,8321,-2774,7377,4193,7770,2492,3763,2308,4658,-4554,946,-2491,4227,9172,-312,9205,-9171,-3026,-4925,9439,3033,-1195,2147,7585,-8278,-5916,6188,-5558,7191,-5501,-561,9,3296,-8371,7238,9960,6082,-9496,-1836,1366,3196,-8427,7718,4301,899,-1492,-4263,3783,-4733,-5740,-8864,-7226,472,-5887,245,-5740,-1720,3661,6593,6397,-6373,-1442,7314,9069,3478,1659,5291,7539,96,3195,-4649,400,9880,-7190,-2839,-1153,-8833,-5085,-7197,-8258,1483,-8785,-4129,-665,-1764,-4255,2932,-7901,4694,2986,-8158,643,5636,-5874,-7791,-6308,-3091,7175,-3986,-301,-9021,6446,6237,25,5205,-2477,-7763,-9826,933,-3349,-212,7552,1595,-3440,-8137,-6742,6515,-5700,-1959,-4281,-9014,1573,9107,-8610,-3615,-6724,1958,351,-5587,4926,1980,-6851,-9945,-9123,6849,9110,-466,9013,6232,2782,-5932,9927,-4382,739,1720,8790,7763,-7956,-9673,9057,-8022,3055,-6021,7822,-2713,6241,-9656,3196,9820,-8187,1754,-7470,7670,7199,-2221,6068,3988,6015,-9995,7820,-1236,-5153,-6744,-6238,-7915,-5890,-300,-3167,-6626,-8965,-3107,-5166,-4417,-7298,3112,-8081,-7508,8759,2715,-3902,9125,7012,4645,-213,4372,6687,943,3515,5198,1200,-8180,9781,-6647,-2158,9142,8639,-5335,-5791,-3471,-3641,-9314,-3938,-1819,-5516,9308,3354,-3827,-6149,2508,6918,-1927,-6096,-3332,6270,19,1878,-7157,7454,-2827,-1174,-7159,-1312,-867,8822,2494,5829,-5924,6316,-9974,6429,7357,9531,-3502,-3887,6683,-5925,8965,-6164,-3595,-6561,7190,7488,-7540,-7221,-3361,3536,-2940,5958,1707,-6143,4022,3834,7387,-4329,-975,8993,-4530,-305,-6220,764,8278,3520,-2894,4235,-91,6131,-8354,4624,-8822,-6319,7922,-9299,40,-5638,-1399,-2006,3620,5156,1805,-9005,-7916,-9288,8777,-7373,-5633,-4816,-7171,8569,8683,7834,6636,-4228,1671,9871,-2324,4861,-9331,-661,-2403,-1237,2540,-5922,5760,3651,-9886,55,9550,8497,-1389,-1925,-1170,9396,4638,6006,-7555,2717,-8001,569,-7547,4981,7464,-1709,-7629,4977,-3495,6043,-3528,-5633,-6924,5918,-9659,-2112,-8621,-2488,-2257,2029,3836,6557,-1902,2325,-7757,-5299,-7332,7092,-9603,264,-8468,-7818,-6488,-9993,-5614,8791,4411,467,1942,-7942,2929,-841,-2288,3818,-1023,9628,5892,-6157,-493,9259,9463,6047,-7958,-8930,-8731,-1621,5070,7131,8219,-3568,9385,-27,536,4988,-2789,-1518,131,-1932,5599,-6110,4442,5197,-3556,5556,7185,-7822,-9777,-6195,9786,3065,-1518,-6945,5701,4887,4452,5200,-3160,-6263,-5068,-4116,-3268,-789,-7619,-808,-9243,3822,-8072,-3787,8806,9879,747,6956,-7793,-4224,9574,2634,-3053,-9488,-7121,9225,-6770,-5357,-403,8439,2276,-8276,1310,6670,-6159,6850,6083,9094,-3530,-5920,-2946,6107,3626,2878,-1,9738,6165,4862,8247,638,5042,1,-1862,8297,-7307,5597,9912,-1009,4160,4260,7867,3811,-5990,9473,-5521,6331,-9487,-6789,-4655,-4073,-7759,-2664,6395,-9619,2863,492,-2611,2675,-9987,-713,-2248,-4952,-3344,823,-1232,-8918,5330,-46,9895,-410,-2965,-359,9921,4542,3559,8483,451,4937,-6827,-6638,6145,-9257,6456,-9429,-9585,7679,4729,3199,5042,-1381,2030,467,-8352,9337,-1585,4482,5717,1393,-1385,6856,5656,8080,-4978,7272,621,-9646,-5994,9610,5095,-8133,-6510,3018,7781,1156,3273,4046,-7266,-2461,-5206,-6101,-415,-7351,-8482,1518,7813,4946,3635,-4640,-526,-9486,-298,-7913,-7007,3875,3374,3234,-5404,-8466,8704,8655,-3694,7055,-1821,1741,5189,-4870,7518,2312,-7692,7377,3852,-1009,5939,-9378,1132,-8592,-1841,8918,-690,1595,-163,-2653,-7575,4474,4086,-1958,3712,-7150,7523,-2801,-5726,-1602,4897,-9855,-5798,-1596,-5433,3843,-2820,-940,6903,5679,8170,9033,3628,-3526,7190,-6357,8801,9241,-4364,2299,-3714,8547,4642,-8705,7000,8670,-2632,-5494,-3688,-4047,9826,-4214,-9091,3724,-2110,-8150,9547,-854,2697,717,1786,5615,-7472,1097,-3474,-2443,6196,5988,1221,6739,-8939,4473,-8832,3057,2498,-1313,7998,-8858,7989,4346,-2671,8227,-8434,8167,-3111,-8110,-7597,-7504,-596,-415,524,-3711,231,-1411,4197,5081,5640,4752,-1072,6092,-2003,-1732,1985,241,-8584,-7943,-7238,3551,9766,9542,3866,8241,3300,-4866,-1815,3003,3084,1490,-2085,2288,7317,-3916,4336,-3086,-3218,3739,461,-1430,4670,-2871,3772,8512,3856,-8835,4068,8459,3305,-8427,6340,6750,4804,-2068,6844,-893,-8049,-540,-1777,-1191,-1217,4413,9110,4765,2715,-9587,-5814,-7142,7481,-8062,1689,1393,-8070,8142,-868,7707,-3511,1136,6307,-9421,-5159,-11,-9124,8324,-739,-6034,-1092,-3132,9734,-464,-9379,-3559,-6271,-484,-5894,8455,102,7844,3085,-8010,7912,-1919,-9204,8598,-4625,-4909,4732,-5907,5667,-1204,1472,5599,-6039,-60,6296,985,-6350,-7754,6294,-9202,792,5591,-9060,-7826,5160,1995,-1593,-6581,-303,-2848,-7010,1519,8711,7133,3290,-4998,-204,-1902,5497,-5743,-1083,2040,-7366,-3696,-8192,7379,6560,8105,6116,-7252,1304,-8455,2148,-7928,7629,-5448,-8806,-1652,3691,-1343,1821,654,7448,7239,-6962,-9937,3869,-9745,7125,4170,3671,1710,6155,9914,-8738,8230,9999,-86,-4573,-6495,-8917,8794,3368,6753,1423,8370,-1373,537,8807,9228,-718,-3187,-8241,-4843,-26,-5424,-5062,-8070,-9951,6945,2158,7430,2175,4263,9943,-8855,-7446,6012,-372,1716,-4204,-8270,5488,-5610,3089,-6239,7315,-484,-9725,291,-7013,-6770,5878,7497,4042,-5589,-1011,9081,2350,3610,7441,-5445,892,-371,6480,-9378,-2309,6081,-8238,-2927,3642,-3341,-968,3525,2494,-3181,6419,8898,-6229,-4594,9338,-7286,4762,3337,9566,-8759,-3444,569,-7242,-4727,4053,-8512,7762,1541,-6949,-6372,-5290,-1444,-5645,-8252,-7613,7848,7318,-5433,8942,-260,-291,-1179,-6678,-6787,-1012,-2372,2988,-2435,6759,-4,8863,8409,453,-8225,7529,-486,2110,-1166,-822,3496,2294,5986,8159,-570,-1414,7915,-6509,7222,8956,8302,4610,662,-51,-8310,6750,8118,8579,8089,7714,8001,8396,-2225,-9696,-6196,7623,-7331,-844,3456,370,-3539,-5801,-4408,4864,-290,-3276,4578,5766,7720,-7360,-3110,2684,-8058,-2033,6463,-1038,-3201,360,4154,133,4458,2097,-5736,8718,-9098,1951,-5346,-8767,-3498,-8509,7597,8804,-9825,4629,4564,5214,-8794,-9133,2911,-4355,-1134,3209,8618,8435,-3846,-5535,-2573,4149,6385,8418,5472,6262,6705,6851,8352,9388,-8656,9345,3235,-9796,-2148,7689,-1705,5916,-8473,-7257,9895,-2273,2753,526,-2903,-9590,-7148,4381,3602,5197,6755,1311,-8078,546,-8047,3934,-5222,-8967,-5567,-5878,-4899,9938,3762,8884,3743,5697,-6283,-2488,-1281,570,4294,1967,6256,-9330,-3241,1440,2648,-6746,6356,-2804,-9594,8029,-8283,-440,2472,-1574,-2363,-6649,499,9601,9475,-8281,3372,-9346,-5521,4578,-76,9199,9680,950,-3132,-6465,-6048,3569,3026,-3467,4826,-4923,-8087,9760,4865,6803,-8240,9488,1775,6814,-5642,-2596,3654,6661,658,5866,8072,-7521,2626,9204,661,7148,-172,-6530,9300,6221,-9438,-6502,7131,4119,-6478,8876,-6951,7004,7808,-424,-6515,-5686,-1566,1087,8418,3030,-6085,8942,5296,2057,1152,9378,5488,-1970,-5865,4051,-9796,1155,-4426,-3796,2846,3599,1371,9713,8428,7142,268,1416,-8439,5371,-634,5744,7345,-728,262,987,-398,-6297,-5271,-8809,-1317,2408,3291,1765,3337,-5576,-8873,3359,8832,9429,-3317,7444,-8378,5548,-2937,4413,3210,7519,-326,-5669,-2169,5300,-2057,4585,2285,-3892,1677,2607,630,-9609,-5069,-6170,4906,188,4881,-3102,-7388,8398,-3614,4063,3162,-2794,3041,9593,1350,2883,7848,-8372,-7594,8976,-1220,1530,4642,504,49,-3934,-5061,2687,9474,2466,-1834,6307,3706,-5448,6572,9482,-7548,7194,5366,-6276,6969,-5157,-8504,7297,5801,8948,2860,-1263,-6583,-5416,6661,3884,-7764,-9608,7167,-153,-9534,3588,1349,825,-5738,-716,-6106,-5202,-6450,1954,5012,6588,-321,-6899,1876,5043,9716,-3418,2883,-1953,-2803,9786,-2669,-6120,-6295,-4021,-284,8256,5434,1162,-693,4085,3899,-6078,-6523,-618,9244,8999,7971,-6926,-4909,8635,9761,-7407,9176,3971,2725,8111,-9554,-7032,4615,-6837,-5066,3090,1540,8828,-9337,-8084,5656,-39,-7573,-5152,3750,-5960,-6404,-6765,2163,9263,-2680,-2045,3775,-7676,-7269,-9184,2771,-3278,7694,7374,8350,1057,2842,-8733,-1743,-6528,-4996,-3559,7317,8757,-1871,-5485,-7664,-4427,-3500,-3218,4522,5905,1205,-6282,-9140,-3452,4195,-2850,-7222,-9101,2868,-6428,-2864,1984,1578,7769,7896,1408,7994,-2443,5803,2431,2857,1571,432,373,907,-4741,-3267,-5979,-8179,-9001,-4989,-6746,393,6820,-6041,-1538,-6213,4127,-668,-7205,9010,7200,97,-3756,5419,-8578,559,-3550,8559,73,1428,-5109,-4902,3193,2196,-5196,-8033,1474,-7122,-1916,7281,7155,-3464,-8085,-7908,-6771,-7019,-7536,-4519,2219,-2997,9350,8956,1390,-6133,-5340,8074,-2162,-1317,-2767,-4295,-440,553,-7222,2335,-6265,8557,-1570,641,4475,997,6177,4167,4865,-4698,2086,-3211,-9073,6479,1441,-5244,309,-4807,4342,-5302,9330,7408,8525,-7686,3042,-5986,2501,-6475,4059,-1017,6829,-368,-5860,-4476,370,-7078,6391,1802,-7284,6878,974,8859,3133,-6465,-8536,6226,6102,7368,7875,3630,5879,-5918,603,5374,1809,8808,13,-1564,-2971,4028,7061,2557,-7842,5896,-7435,496,2577,-4130,-9739,-2683,2425,3370,9546,5117,-9978,1092,5930,7473,-5349,-7629,-1111,-7465,2924,3450,-2074,1914,-8474,372,-4394,8587,-8248,6443,8159,3836,4895,-6045,1745,8361,-3291,-9206,3604,5482,604,5286,-1657,-232,8129,-5096,7258,7641,-8647,-1546,-6443,-9800,8633,8916,4488,-3128,-251,-795,-7149,1829,-8623,-8011,6817,3085,2935,9301,6702,-8130,6553,-421,7963,-3489,-5212,-7637,-441,5023,-4206,8540,-2001,-9928,-3098,-2929,3686,6023,-8969,970,7276,-5768,-4361,-9885,6331,-5578,-6355,-9542,-8405,-1398,-7047,490,-7755,8422,3418,3766,-1739,-9449,-2390,4779,-3185,-9874,6933,7347,1327,2681,-9886,-3564,8693,6303,1962,-8654,5827,-9134,3253,-9135,-8382,7051,-8049,2616,2812,6201,-1159,731,-9505,-5782,-7568,-5780,-3741,-7272,-3519,2652,-5814,3854,-5829,9896,-498,768,2080,-5835,4203,-8388,9026,8283,-4043,-5653,-7887,8922,-2720,-2331,-8242,-5441,-4091,-8593,6360,7199,-6010,780,-7705,-5792,7172,5389,8892,-6214,9256,-203,-96,3992,-3058,-2906,7466,-3220,-1208,-6896,-9145,4732,8806,602,-3385,6651,-6876,5464,5112,4194,9015,-7760,432,108,-6018,3076,5684,2074,-5075,969,-7292,2391,3353,3726,-216,3943,-4951,3881,-7058,6845,5321,7372,218,9536,-6563,-5976,3218,-1600,3628,-9,-918,5808,-8183,-5550,-4571,-4335,7465,162,-1160,-857,-5887,1177,-9620,1025,-89,-4209,6058,8406,2876,7981,-1474,-2291,-431,-1030,-6030,-6787,9247,3459,48,-3279,-4998,5415,7,9718,5456,-9750,3709,3365,6182,-2166,-994,-6865,6526,-9185,659,5202,3319,-3697,3931,-7718,5738,-5964,3420,-5612,-1761,4396,6616,-7658,2477,2729,357,-8136,3278,-4814,6317,7658,9594,159,9926,7244,-9319,8946,-1137,-7524,8771,9795,-9128,-5081,-6404,-7223,-8636,-7480,-5552,4139,-2576,-3226,-2394,6841,-764,3900,1310,-7378,4634,6018,8800,-6535,1142,-9210,4690,-2245,5414,-9981,3983,-6445,4124,-7908,1352,-3952,-800,6522,2708,-500,4303,1311,8816,-4339,3765,503,-3759,-4595,2417,-318,3946,8678,-6570,1863,6112,1172,-9462,-967,2636,-8007,-8757,-1340,2080,6326,8798,1181,100,-6044,6935,-277,-6948,3284,9284,-5058,9439,514,-1019,-9684,-8803,4867,8452,819,6879,737,5378,9561,-1675,-3534,-9807,6470,1095,6080,1276,-3340,-6304,-344,-7530,8672,8848,-3692,1899,8392,501,-5525,-7281,4289,-9883,-5264,4848,3061,7464,-7120,-4347,-9243,-5315,9678,-9800,5910,6571,-2422,1519,9008,1190,-6431,-1067,1391,-6805,-4280,-7542,2236,-4378,-4597,4614,-2843,-4167,3640,3375,973,3564,-7985,4577,9174,2655,-379,-2946,1611,-2978,4854,3572,3513,-9522,2158,5360,-8880,-7258,-2750,-7853,197,8016,8312,5841,540,-5552,-3648,9100,-6045,7968,9829,-7227,7001,-1715,-810,7747,6645,4093,7354,1475,-6356,7255,9505,1300,8929,-6498,-1921,1471,-910,5140,5213,-8593,-8337,2364,-5028,1803,7869,-4372,2315,-5522,6541,7873,6332,-3074,-7381,2307,5768,4898,-6634,1956,-9946,-1912,9987,5203,4807,2233,1439,-198,-1638,7913,-7594,1165,-3947,-7039,-3874,-30,9294,1023,-3524,509,-8791,1264,-7192,3825,1062,-5456,4980,-8068,4965,6137,9765,3555,-3690,5074,-1114,-8325,3630,-2008,3610,4292,-6538,236,-8847,-3721,-8422,3344,7995,5021,5944,-5819,-2151,-1877,6152,-1202,5955,8275,-7210,4816,-3686,4267,2330,2219,9597,-8448,-4627,1487,6209,3947,8319,9489,2606,-1295,-8725,6064,-3463,7495,3485,5867,7873,6883,7130,2941,-6655,-7654,2528,-7584,-8425,5421,-542,-4638,5169,-2151,-3560,-8313,-968,3037,2630,-3194,3540,-5298,-9922,-7260,-3036,-6700,5813,6010,7714,8901,7540,-6334,7466,6183,-719,4027,3525,2556,-6678,-6828,5034,-1845,-605,0,-4407,181,3320,-674,-920,2400,989,-8492,4903,-7768,3617,9485,6230,-9861,734,3552,-6249,5010,-4478,5551,9109,-2008,2307,2923,-664,791,8568,8099,157,4733,9294,8574,1057,126,-4994,9074,6589,777,5330,-8722,-9781,-1224,-6757,4504,8740,-7247,1876,-606,7339,6230,2331,-4400,5002,6454,7921,-8084,-9667,4182,9446,-7405,8616,-9656,-6701,3964,63,7849,-7328,7142,8037,928,-7707,8766,5788,-436,1620,-4186,-833,-7031,2527,7501,-1866,-9407,-5658,65,-8586,-3131,-9935,3704,8839,-4018,4440,8366,-6077,3359,5770,5736,2105,-9137,-6187,-9612,-9842,-1032,3054,-6770,-8878,7545,2372,6882,-9513,2650,-1828,832,-5964,8940,8988,2813,2477,487,-7232,787,8463,-5730,-500,3755,2149,9961,3018,-6773,2822,1693,876,-2842,1953,4010,-5963,-3910,6888,6972,-7188,5646,6691,-8015,4834,-4002,-3539,-4060,3484,9861,8685,1154,-4384,2047,-8821,-8314,-8866,-2637,4880,-1647,7388,-9872,4780,-7887,-1632,-5235,-4105,-4167,-3711,6997,5840,5523,-7608,-634,-3942,3823,-7174,1387,4811,-930,7311,-3333,2389,7045,9997,4764,2578,9846,-4208,-9524,-65,7356,1539,6473,8703,3358,-5008,3853,-5037,-215,9592,2625,-1135,-5130,9130,-2765,-7172,-9961,6307,-5057,9481,2108,-4469,4649,1328,-6606,-240,4135,-7265,-3741,-6873,-2238,9802,-1366,-363,5760,-7414,-2279,-3606,-6418,7172,-2362,40,7862,-8168,-4081,-8303,-6499,-1962,4979,7404,-3186,-6624,1855,-2550,-5446,-5348,-8986,-7453,5487,492,9015,-5989,-5737,9461,-227,-3947,2342,-9991,8259,-4901,-6634,3547,8724,-3793,2606,-504,2944,4278,1498,388,8183,-6298,-2026,5492,4832,-3499,-424,-2605,1028,-6397,-6745,4944,-7329,-674,-3902,-5597,4346,9517,-9317,-496,4867,-2970,320,-3972,190,-3883,8888,2294,-3276,-9401,6559,-6518,3907,6815,3140,791,8106,-2139,2906,3584,701,-4124,-912,1687,-9016,-3976,-6398,-6140,973,-4291,-6196,-3598,-7238,-6759,-4968,166,205,6968,-7836,-5308,-8737,5090,-4026,-2922,1508,-145,3592,352,9996,-36,-1576,2177,7369,9776,6969,-6329,-9868,805,3121,-8970,-7457,2160,2090,2472,9236,-6550,7097,9602,-2819,7587,4149,1100,5314,-5796,-8172,328,7230,-4201,-3866,-4345,3386,-9810,-3751,3500,-3993,2392,3197,4735,-2528,-7499,6987,8191,2107,-5495,-6159,-3971,-9717,-2947,-1741,-383,-4584,3346,-9056,3281,-9798,-1001,8150,-9792,2413,-9744,-1460,-9504,3167,156,1837,-4667,8238,9575,9168,769,2552,5931,9033,-5222,-4322,6441,5980,3226,-4267,-867,4323,-5207,2556,-9826,-5238,476,-3534,8204,-9914,4263,7041,-4283,-845,-8766,-4466,680,-4909,-5104,-156,6856,428,-5115,-8779,4576,7443,9196,7580,-2719,-7145,7899,-7544,6245,4632,8533,3413,4264,-5759,-4281,1505,8969,-9773,5685,4025,1400,3398,9629,-3849,9414,-8521,-835,7201,3300,5468,7915,-2789,-4173,-161,2980,-1767,-5827,3555,-871,-9730,832,2225,-9318,9959,-2138,-3279,-2945,9644,-4654,5722,7400,7319,51,8739,-5758,-6961,-4912,-5007,2007,9358,-5355,1748,-2367,8282,-5078,-6678,-6545,-3874,-4039,4914,-8042,-4111,-2210,-9304,-6220,2369,1711,498,6583,-7075,8174,6029,2609,-4578,77,6538,9971,-2151,-5460,-769,634,-8785,1370,-2792,2376,4743,-5377,-9143,6967,-7670,-7250,3951,-8470,-6717,-807,-4830,8155,-4914,-6034,-2263,-6761,1073,446,-1487,-2871,1611,-3931,-6019,9687,3772,-8267,-8549,-8456,-618,-6092,-257,-2491,-2335,5676,3571,-7786,3966,-8880,-5306,6934,8375,2533,3984,-6711,-8293,-6171,7518,5903,7287,564,5077,3771,-7688,9537,6250,8704,-6069,-6010,4650,185,9460,-2681,-7039,5948,-7053,1365,-9041,9908,8431,492,-4613,4243,-6279,-8775,-9615,-6565,-3122,-9421,8645,-8754,-8794,3459,275,2716,-3251,853,3623,2030,856,3273,-2374,-7723,-5927,-5070,-4863,7261,3185,-851,-7847,-9385,-5785,-6792,5746,855,-8334,-6132,9337,-5643,992,-9345,1000,847,8658,3702,-7220,769,7199,-3136,1273,-7634,-7258,3254,8090,9601,-7805,-3346,4389,5508,7496,8232,9241,2922,-7800,-266,7633,1499,-2785,-8345,174,2815,9802,4044,5136,8149,9082,-8355,-7739,7503,4838,415,-8261,-9850,-4543,3605,9708,-4979,6078,8785,7505,-2332,9508,3606,-9988,6123,-939,-6402,-7411,-698,6668,7823,-2416,4695,-2228,7548,1335,6993,3189,8317,-4099,4070,-795,-5422,8576,-6739,-152,294,-5956,-7360,-1658,2013,-1617,-4062,-9752,-3482,5775,8373,-9368,-5483,5988,561,2698,3245,-9005,-5249,8719,-918,2295,-3552,-5978,-6104,5288,-7660,-268,8100,1266,-1942,-3638,6307,9883,7063,-8212,-3100,3043,-3203,7380,4425,2177,-5645,3464,-3572,-778,-8710,-9443,8942,-2806,3150,8504,415,968,545,1665,-7470,-6514,3229,4947,8238,5345,-3444,-9591,-481,9001,-5283,-1581,5853,-1007,6375,-1968,5109,5413,3314,726,-118,-9510,8809,-9319,-4024,-5952,-5502,9513,3014,1394,4537,-2393,8364,-10,-7799,2896,-5596,-6887,4535,-3915,-7220,-586,-6084,5835,1477,1779,-7310,6105,142,-9982,4973,-9511,4532,7485,-7917,-9449,2958,3283,-6761,-9872,4012,8125,-6038,-2831,3798,821,1429,8704,-7818,-6167,-8353,-7849,-6346,-455,-4046,-3500,-8492,-7950,8620,-8181,8775,-1469,-7129,6933,3136,-8782,144,5609,-1010,1290,699,-1137,152,8961,-5651,5088,6377,5239,-8545,-2870,4219,6381,5789,6240,8963,4152,-2021,2254,-7415,2815,5115,2679,-5491,-2503,-7397,-9192,3734,3719,8246,1657,-2017,-5197,9377,-5191,-80,9657,8455,793,3581,4350,-8913,-8651,-5969,5345,4822,5527,9855,3536,1537,-1737,-826,-7037,-4764,902,2049,-3741,-9362,-4917,-7668,-640,3187,-4185,8409,4734,8742,-4649,-2654,5680,610,2058,-10,5193,-1040,3664,-4412,-4192,-4849,-8749,4472,6969,3841,-6487,-6741,5165,-85,8414,7003,5350,-8349,-5049,-6135,-2892,-2844,-1424,-607,-6939,2759,-1157,2896,9582,8793,1529,6699,2255,-9319,9315,-5083,2285,-4296,-4934,-7450,5733,-8778,-3994,-4620,-5363,-1767,-8644,-7907,-5304,-4790,5798,-8763,2701,-8320,-6158,-5773,9465,-7674,3220,-3319,215,1914,1073,-8964,-845,709,2650,7994,-9476,741,-7311,5374,-8079,-2945,-4695,7027,2581,4507,2611,1596,4671,7605,-9704,-3413,2482,-896,-1740,3639,-3314,-4725,5332,-9165,-9221,2112,-6120,-6283,-9656,7275,1252,-8123,1400,5658,-1121,1575,6200,-5584,6701,-8113,-791,-6482,-5697,8610,-6718,823,-2753,-3641,9923,-2553,7291,-151,-9424,4262,-6756,4156,8596,-720,-1344,-6934,-7412,-9175,5638,2767,4616,3568,-2453,7951,884,8419,3820,4706,9051,-1224,3911,-6535,-294,1043,6558,-1848,-6003,9194,-7764,2506,5414,-124,5689,3689,-3795,-3428,-838,-3848,9176,8335,-9617,1427,-2094,8103,-5719,-6022,-8143,-9292,466,-3341,7500,3432,-330,-4892,6667,-7450,-3073,9452,3911,-6014,-6839,2737,3098,-3290,6440,7075,5230,-3549,9476,-7155,5872,6354,5360,4784,-1876,-5110,6197,-7652,-6837,8888,-6351,7153,-8103,-5841,3330,-9170,-8986,947,1436,-4698,-5739,2415,-996,-5071,-4302,-481,8729,735,-2209,1638,3025,4714,-8131,9406,-9522,1689,2887,-6657,-7618,-1293,-9843,-2404,-2280,-5545,6850,-3029,5802,-5886,4131,2663,2744,6679,5340,128,1373,-8353,7709,-7307,9476,3155,9123,5585,45,6700,8046,-6154,-2143,-4540,5108,1852,1536,2769,-9978,-4806,6482,9839,9437,9647,-8666,6296,2730,-6617,8940,5386,7954,-3037,4649,6847,8983,-1356,-503,8411,4042,-9117,-9332,2733,7930,-803,4381,-6248,-1961,-6200,7683,3631,4102,8836,-6985,9595,-4124,7063,-8516,-5826,3136,-9721,-5106,6447,-3817,-302,6492,99,8672,-9800,-5076,1250,5285,7680,-4625,-5419,-6443,-643,6208,-698,2683,2174,-2443,7297,-4408,-7404,-5983,2366,3729,-5563,-9028,7945,-1200,1687,-3014,-321,-8566,2043,9404,6684,-3600,-8542,8443,-3003,156,-8358,856,-282,-3001,1667,-8329,2673,8450,3781,7845,142,4547,3732,-4010,-3443,8396,1782,9388,5412,-6841,9460,7919,-2357,1809,-8070,2134,-8938,5869,-7239,-9637,4704,4618,-1858,-5063,4385,5512,-6402,-224,-1379,1296,6799,6029,-7536,-7771,-1683,5049,927,6031,2837,4323,4137,3025,-7663,-7326,-7366,-3623,2948,-1828,-7440,5974,9622,-8938,4155,-4757,-2130,-3654,3201,3696,4680,886,-3905,9500,9057,-3609,8859,1782,-7003,-1665,-3399,-5484,8719,246,5501,762,-2819,-9555,6743,2709,8091,7587,-8064,-2930,-3254,-1190,2849,-1483,4112,-7264,-7099,1684,6388,9079,7787,-6749,5855,-253,4847,475,5294,5407,-3793,-2548,6832,1915,3257,7059,-5857,-296,8798,-3966,2668,-1973,-5961,6443,-6447,-6376,9949,1992,5486,-2769,-4289,-7281,7463,4716,7737,5261,-9930,7393,-5293,6482,9464,5506,9308,7397,-1647,9179,-505,-2652,4667,8126,-4471,9199,1293,8969,-4545,-2643,-3773,8406,-5762,6076,6288,-389,9911,-2647,-7113,-6343,-4528,-3129,-1104,581,8168,5376,3970,998,-9371,-1881,-574,9827,4447,5416,-1883,8220,9181,8257,-826,286,-9828,5927,-8950,-4778,551,2224,1758,-9700,9719,-7699,-3743,-9166,3345,-3205,-5164,-3946,1370,-8913,5342,373,-592,1897,6240,4495,-3648,3088,-6885,8638,-2376,7496,-9520,-3832,3247,-953,979,862,8665,-8748,1444,-7022,-4244,1209,5106,-677,-9963,-3492,-4970,-7765,-7105,-2157,-1561,574,8460,-2819,4669,7679,-8911,-6871,-5338,-3791,-5410,2216,-1070,-8920,8337,3150,3944,-8223,-1012,545,-546,-984,6631,2000,-3684,-9972,-843,5887,-5987,255,4535,-7245,-2963,6751,-8354,5562,4424,-7801,1614,956,5094,-585,-6946,-1460,-832,6399,8169,6897,7870,9359,3886,786,-3901,-5960,-3649,9737,2933,9964,-6709,-4840,-3721,8566,-6638,-789,-2833,3408,-19,9682,-9845,-7972,-7777,-2732,2998,1953,7529,-2982,3869,1832,9466,-9748,-8993,3821,9550,-1702,-4515,316,9574,-2612,-2879,3576,-8847,-3274,-3023,-6236,-4131,5235,5381,4905,1575,545,-1267,2228,-9046,-859,-6985,8147,2379,-5337,-3362,3398,5422,2416,5674,-6632,-7045,4631,6293,1432,-3773,4453,-7394,-555,999,-9643,732,-8377,-5406,7878,-1897,-8756,-5762,421,-5435,6429,3319,896,1149,2694,-2901,5636,-1544,-5506,-7544,-6891,-2364,9671,-8532,5336,8323,-8961,-4768,2969,-6920,8088,33,-4464,-1992,8348,4684,6982,41,-8634,-861,4272,6262,-9668,5175,-2716,-5443,-1824,3166,-1382,6268,-5512,9471,-4277,5034,-6039,5183,-6291,-9525,8061,-5428,432,110,-1488,-5743,2156,-7956,-8129,-8364,-3350,9891,2490,-3389,-8881,2619,-2263,-6942,-8930,7293,-7520,67,2191,2361,-2176,5476,3491,-2302,-8291,-2149,2968,8087,4545,-9592,5185,-4059,6080,-8441,6335,-1190,9772,4279,-4818,-5238,6190,7337,-7318,7501,8789,-7956,-8132,-3066,9312,3000,-1267,-35,988,9686,-6349,492,3774,5713,9019,-8162,1982,-1669,-5492,-3538,-5761,3122,1970,-7029,5054,5159,-5678,-9609,3324,-8333,-3971,-4975,-5919,-6639,-3762,-1073,8035,-9746,-6403,4002,5939,3799,-2732,6530,3097,6106,5716,8466,5876,1320,3543,8013,-7023,-8907,9919,524,8985,3145,7976,8406,5499,9511,-6952,-889,4951,-9570,485,-8008,-5147,-7820,-7023,-9263,1241,9081,-3277,-272,9671,-1955,-3326,5102,7578,-9612,7089,-5414,-7852,5205,2309,2547,50,3309,8237,1395,-4258,-7222,-8068,5094,7100,5897,8296,4493,3076,-9534,4969,-9821,3353,-8428,116,9926,-6840,-5874,9536,1979,7962,-1417,6995,-673,-2908,6962,-3669,-2131,-1812,9118,1576,-7769,-7128,7971,5474,-1422,8237,-1928,9719,-6916,4852,-5878,9989,-1356,-5391,-5706,1473,-3770,-3641,2082,-7234,7837,5118,-7300,-461,2620,-5002,3615,-7253,-8962,6075,-940,-2174,-5193,-9484,6154,5617,8918,1620,238,5648,-4134,6324,9259,12,7714,-1982,5801,-8442,5043,-8375,9793,8892,779,8346,8901,5520,832,-8330,-4981,-54,-3236,3318,5489,-6136,9276,-8124,-7730,9318,5693,-1333,-9530,5573,7495,8791,-5689,-8703,-1700,-6608,-8164,9772,2915,1269,-8864,4557,7497,2477,-6457,9190,-1729,-2988,-6151,-1473,-4888,-4329,-8398,-8422,3091,8150,-9050,9691,-3549,-630,-6247,-1633,-1489,398,6854,-3528,-4920,8718,-7847,-4479,8271,6681,8877,320,-1021,7339,4231,4619,3779,4916,-8987,8538,2383,6231,-8628,-4951,-1953,3246,4816,-7460,6126,-6246,6050,-567,2452,9345,8062,-8972,-6446,1711,-5884,-1696,5157,1719,-6034,6908,9870,-7978,-40,-8598,-7950,4082,4258,5383,7890,-5922,6779,-5328,4217,988,-3184,2085,6780,-2448,2810,-4957,-2068,-428,-8381,6642,-8755,-341,6651,6520,-5152,9058,1447,-9591,-8078,-313,-4142,-2080,6055,5244,9382,-1638,-7891,-834,1797,-7686,-4701,2712,-4976,-8413,-7604,6190,1002,5336,9967,8533,-9281,778,4569,-1381,1157,2223,8499,-7134,-4795,-8058,-6902,6731,-2030,-2450,-5189,-8200,9635,-9771,-7188,977,-7118,-9567,-9916,-5603,-3112,4084,5645,-1020,-1765,-3561,-6596,-475,-9004,5294,-7230,9968,6700,-3054,7435,2847,-7935,7869,1176,1691,-1820,8155,4447,6191,3289,9481,8926,-6920,1079,-899,2167,-9164,6737,5007,-812,9576,10,8619,-5972,-3386,8749,6036,-6468,5152,1713,-1895,-908,-6422,-9529,-6294,6228,-351,-8592,3265,8693,9289,-7416,-6808,-7324,5884,-2887,5251,2170,6208,5426,-1036,3965,1709,7391,1419,-9009,1893,2344,7437,5183,5119,9947,-3929,7464,457,-8282,-9819,8042,-6557,-4159,6619,2661,-283,1982,-3162,2079,129,-6596,6758,6005,-5039,-2472,2854,-6835,-5372,7839,-6006,3728,2200,-8357,7859,6060,-5640,-5888,1712,-6587,3990,-3434,3257,6131,-3843,8502,2965,6696,3157,8758,6283,8129,2050,1296,6086,-6816,-8126,-7658,4808,-8685,-3756,3024,-2802,-584,-4670,3504,9250,-1858,-1406,-9571,-2632,-4680,7895,-4636,-6612,-1130,-1808,-6179,-1207,4159,9126,-9288,2474,7068,103,2349,3246,-6043,-9266,-1526,8166,-1284,8606,5172,-6757,-7946,9947,-9619,3721,-7983,-4616,7745,9712,-4146,6027,-5557,-4941,-6337,832,-5440,7586,-9828,-7996,42,-2438,-1089,-3000,-1076,7731,-1549,1648,5719,3034,1765,9041,2167,6217,-43,8251,4120,701,-4185,6681,311,5077,-2605,2092,2780,5911,-9024,807,8695,-9282,4900,-8874,-73,9051,7163,-1531,-7432,2363,458,-108,6236,9714,6037,-5590,-5309,3266,-5074,9506,3523,-5967,-7896,-5945,2071,-836,3333,1911,8004,-6639,7562,2082,-7942,-2402,8287,-3948,-5673,-9335,-8111,-6419,5339,888,-1416,5222,4201,4326,-3891,193,8850,1973,-8991,-4411,-1732,-1489,-3589,6467,-9767,-6560,6680,7579,1836,1764,-1730,6401,-78,3175,-4729,9123,7552,-9792,-7820,-3431,-9392,1924,1438,-9553,-8784,7359,-2974,-4370,6827,3568,-5657,7250,811,-7676,8238,-9243,-8653,-135,6961,7771,5536,9995,5062,6047,1395,4072,-1636,-4399,8040,-9817,3528,9457,-5088,1387,-1657,-5380,5875,-2207,-2985,-3037,-2717,-239,-7604,-191,9345,-2264,-8241,1226,2858,582,5489,7002,-7937,-5521,6096,9144,-2294,6087,9388,-4638,6381,-2749,2216,3633,-8779,-6744,-3340,2412,1557,1586,4085,1110,-8019,5821,-7697,8103,-2238,4153,-8452,-9446,-3814,5226,-7703,5380,4075,-648,-3211,-7906,5675,7455,-3632,4143,-2681,8835,850,3866,-9437,-75,-5074,5735,4044,8590,-4391,3787,1439,-379,4228,8126,7105,2445,-2745,-2321,-3342,8760,-9201,-9659,7447,9697,7947,-2204,-4252,5215,-9121,-5299,-4825,207,-9066,-1844,-7580,2006,-1534,9160,6352,-4631,-1306,9502,-7508,-8975,-7707,7874,8899,-1161,-54,551,8995,-7500,4751,-1527,-5724,55,-7798,970,-484,-7032,-6034,7184,4907,2834,-3584,-2158,-3084,4219,-1084,9147,-1026,-8742,6464,4578,-1883,-1352,4352,9836,-9291,-7377,6069,7168,-2205,8030,-247,-4346,617,969,651,7143,-3669,-9345,5531,-9692,4311,6287,-4587,-9745,-3265,5161,-2140,-5198,-1523,-9938,-1406,-585,605,5378,-4063,-3694,4884,-7539,-6390,-6756,1443,2610,949,-1764,-112,-7715,6364,1121,-5136,-3907,203,-9081,3245,6291,-5834,-26,3386,-1754,2576,-5524,1702,-6177,4361,563,6459,-6621,2739,-8173,9327,4020,-7466,-4095,9328,-2245,1848,-959,5517,7907,4255,5344,-5407,-1521,-6998,-7329,-7482,-9657,-2510,-7537,1371,5304,8714,4903,3610,-855,7172,6330,-9036,-948,-3392,-4619,9841,-530,-2734,3794,-124,1013,779,5744,-8031,-7088,7756,4371,8807,-9247,9318,6220,6761,4941,8440,7671,7396,-258,6119,-1787,-8757,-9245,8662,448,5811,4624,-435,1639,4090,-9282,1938,2905,-4073,-7306,7025,-8768,-6778,-627,-4235,-3628,-5132,1767,-4426,9493,6525,-971,-417,2056,1755,-5977,2450,-7174,263,7646,-834,-8339,1156,-7627,-5409,7824,-458,-5636,1180,-3754,-3808,-8309,869,-7578,-4772,-8457,-4042,7259,-586,-5309,2437,-3960,-7518,8941,-7176,-1909,-9363,-3505,9977,1716,1693,-620,6074,7130,4354,-7273,8646,-8984,-7611,616,1368,6062,-4113,-3768,8721,5575,6420,-365,-3407,7623,-6202,2679,6615,-2347,-5724,-6293,-2591,9304,7731,-2300,7725,8298,1291,9991,-9188,-8522,4456,-7417,-35,-6823,-6690,-8324,4322,2517,-3538,-3054,-8045,7466,-1005,6170,-6561,-1751,6518,4329,-1459,3914,-241,-4957,5311,448,9147,-2000,-1417,955,9774,-7266,5918,1425,-165,-2126,-2023,-1022,9539,-3134,9090,7672,2597,-2447,685,4965,3593,3455,5091,2129,7473,9241,-7508,7776,6513,4787,7166,6010,902,5961,7877,-8743,1341,-4574,-5073,-7860,8168,-7899,2480,-7484,-4801,-9462,8835,-4045,2363,-4838,5661,550,-3352,-2147,-5769,1811,5115,4955,5398,-4908,-4858,2274,-6164,-9566,-4348,2874,7423,-5819,-7309,-2913,-534,9263,-977,-8839,-1458,-7593,-9659,4662,-3757,3246,2802,6155,-598,2546,3884,4011,-129,5270,2578,-6408,-1685,8720,-9956,1214,3479,-5225,5145,-7162,6670,-4858,-1684,2223,-646,3540,-1255,-1339,-1592,232,-5411,-9206,-2712,8902,-4409,-2961,7777,7560,2199,1506,-2524,-4806,-5108,-2486,-7520,-985,-1945,3677,405,9214,-5730,-9759,-8958,7595,9368,984,-8190,9677,-2829,-2582,-6168,-8306,-5507,2263,4515,-7305,1393,-845,-6269,3955,7108,-5443,-114,-2969,-3780,-6959,-5393,5599,8039,5357,-3244,1693,-6280,-4029,-1073,-4704,-4779,-6169,-4708,4065,-7640,6004,-3857,4659,5781,4084,230,-1541,5765,1094,9063,1513,1162,-1141,5919,5907,7450,5524,-7991,6754,-2591,4907,3684,6840,-9735,-9701,-2325,-5472,-7766,9536,8452,-8858,-1378,2531,-3229,8330,-2534,-381,4513,-2720,1709,-9318,1192,8502,-1855,-8638,9644,-9342,5103,-6290,460,-544,-7057,2653,-6090,3767,-6190,-3498,-6083,-3132,9065,-4868,-9733,-6896,2807,-2399,3364,2660,5424,954,-4122,-746,-8418,628,-1152,4566,-4457,-4330,8607,-7860,-3361,-8997,-864,-1377,-6234,-407,2581,-9951,-5215,3855,5806,9203,-1715,8730,-878,2191,-6645,6096,5101,-9727,720,-7937,6566,-2056,4025,-9993,-9200,-6621,2745,-896,383,-3092,8485,-7308,2883,-2288,-5135,-9036,9007,1873,-4666,220,-2688,5685,9545,-4485,7919,832,9086,7851,-2470,-1753,6387,-3495,8060,-3482,-5625,9282,722,-8018,1528,7261,-3690,9834,8778,8482,-6174,7968,-687,-6250,-4941,7715,5337,-5378,7435,-3068,3595,8702,-3023,9577,7930,5724,-428,-5460,-5683,-5965,3937,9103,2330,3019,-6153,-1031,2028,2695,-9800,-3182,-8859,2486,-4427,7150,-4827,5321,7624,8794,-180,1003,1969,7366,681,1764,341,8897,-6565,-3926,-2090,-7303,-6047,5471,-103,865,2877,-4500,4135,407,5357,8626,-3838,214,9656,7245,-3941,4781,-8534,-9437,-3467,-3730,1204,-3870,5360,5986,-3120,-3136,2879,2650,-7714,-5913,401,-9853,3256,-6054,6276,4256,-7478,5154,6716,4343,-2013,2380,3936,1839,-9749,-7257,7010,4270,-1786,5976,-3717,-6729,-1629,2868,-3105,-5770,9589,-8940,-4667,-1532,1842,3798,-9111,9708,-8247,-2216,-5455,-7065,1174,658,-9571,2779,876,-6848,-2210,-313,6737,-7944,-5984,3688,4898,666,6066,-6887,-909,-5222,-6809,2152,4650,6829,-6234,8123,9681,1721,-6688,2188,-4415,119,1167,-5484,6642,5074,7298,-5434,-6492,949,-3539,7268,-2274,1994,-3053,231,6493,7193,-7464,-4215,-6090,824,8422,-9089,-280,-322,-899,-1793,-7487,-1637,8128,-1029,2637,1301,-155,-9984,-3276,7497,6009,-1066,5047,-9252,-8569,-3973,-1990,8285,6251,-1251,-6714,9837,-8893,-2157,-4018,-5658,-2090,-9611,2268,1119,-6583,-3076,9154,-3716,3714,-1912,-7796,7991,-2038,2844,-4296,3039,6609,-4056,2722,-7462,8961,-5800,1659,4916,6711,8909,9140,3626,-2996,7526,4902,-1437,-8776,-6742,-3980,-3316,1957,-3940,8008,-7189,-1291,-7377,6325,-2163,-4505,-9442,119,6962,-9936,-3794,7486,-7729,3040,-483,355,4048,4816,1943,2265,-9703,-4351,-3646,-3540,-9227,-3909,-3346,8905,-2506,5373,6492,3034,7178,-8980,5828,-4661,-949,-9187,5084,1325,-276,-8397,3687,2736,-6307,-1300,-516,-7017,6236,-1377,-848,-9094,-4380,6600,9868,-1573,4225,-5282,3809,-2952,-5648,-3343,-545,5342,3712,-6253,-8005,-125,8529,-903,551,-6544,-8231,-4473,1964,252,-4178,-8654,-6233,-9997,-4549,-2114,-2031,-495,9370,-1936,7804,7284,1193,6566,3733,4834,284,-103,-9373,388,8980,-103,5513,-3078,8175,-870,-1736,-4045,1390,6646,-3923,8795,2610,2825,-1867,8961,4409,5554,5697,-204,2858,6785,8737,8414,3685,9876,6267,6142,991,4026,-9352,-3571,6574,4874,-145,-8496,273,-1883,8150,-3140,1095,4246,2410,-8630,-2811,680,-8696,3737,515,-9744,-2084,-4200,5327,7805,-3006,2738,6179,-7298,-7097,2913,-5358,-1244,-1182,-6249,6508,-1805,-5426,9148,3034,-7390,-1299,5606,9362,-3199,-8455,-9097,3985,9743,3068,5426,-2910,-1688,5182,-1093,5352,2241,-4968,1532,-4456,9175,2639,2684,9342,4539,3450,9145,-2146,6419,-1324,885,966,2077,1583,3195,2040,4365,8143,9241,-8911,1276,-2515,7355,-5899,-9731,5310,2669,9484,7905,-5184,544,-7784,-1917,7068,8158,-1729,-3167,-1610,2661,9827,5280,4325,3659,-7344,-5980,-7476,-8539,4363,-4921,6347,-8988,-7057,-1729,8005,-5369,4171,8178,-9404,-3689,5562,-4855,7751,5280,1310,5396,-5622,-6086,5263,-5606,-1215,1728,-1296,-9235,-8703,3579,-3618,-4054,-5878,-801,8182,-7918,6741,9369,1861,-4417,2613,-8492,-8074,4579,-6381,6501,-3273,-6715,-7212,-3344,-8352,-1267,3167,596,702,9827,-8527,-4344,-5382,-3643,2406,7983,-2917,-3840,6917,-6431,616,-2127,4526,1342,4306,7818,-1515,-1301,-141,-1796,-6388,-6617,9046,-4060,-9025,6819,-3732,9545,-2392,-3905,-5299,-2559,-3332,-322,-2557,-1349,-3192,-5596,-9157,3346,-5056,-3458,-128,2076,8445,8487,-2588,2231,-6502,3717,8303,1682,2879,4249,6210,-3789,-9883,-178,1408,-1082,9026,3636,-7386,4977,-57,-1483,8210,-6489,6597,9650,7124,-7452,-619,-6985,-6799,-7054,-3051,3555,5997,-7212,2368,-6288,-8208,-938,5894,2039,4308,9907,431,-5862,4839,-3825,3377,-8401,-1222,-3353,-1928,-964,-7353,-4660,-4604,5888,8760,6363,1542,6738,-8003,-551,3334,6245,3762,4173,7732,-4269,8235,2653,9584,-6570,5265,-4163,5366,-690,1744,-5022,5299,608,-9739,-3937,4274,-7738,-5522,1960,-9153,-3484,4172,9524,1883,-836,1854,4584,-497,-7999,-6011,718,9517,4398,-7559,-1555,-7279,6364,-8850,-7,-945,2248,4528,-5224,2375,-4145,-8363,3821,7014,-2652,5830,-9820,1772,4771,-4585,-957,9849,-8536,2100,-6987,5144,6893,2166,-7258,-4360,-9776,-1612,8239,1996,7026,7433,3202,4349,-5737,2976,-592,3175,-2088,8083,-6757,-6831,6972,1789,9595,-200,5234,-1366,8717,-1792,-3241,-6443,2038,-7476,8165,4272,-1541,-5124,904,-9887,5960,1567,4249,-3927,8239,-3755,-358,2095,246,204,-4540,2399,-1136,6950,3748,3030,5671,9491,3059,-1618,2458,-3890,-6894,-5456,9492,-1454,-6613,9341,7491,3739,-4994,2412,-5409,-2165,9366,7099,4964,5097,-9954,-2073,626,-8380,6362,6459,-3569,1384,8804,7116,9181,4915,-1852,-6915,5213,9310,-628,-7302,5565,2969,9684,-1161,5019,8271,-5280,-4617,6195,34,-5816,-7669,2851,1064,1863,-3255,2138,1594,-677,9012,9392,-6059,6910,6735,-9056,-3587,6837,-6642,-9359,-66,4917,-5797,8058,-5027,-1502,-3137,4939,-7982,-1728,4703,9056,-8994,-9475,8289,3340,-1509,2585,-9611,2645,-50,2873,-1703,7220,4430,-7232,6725,9171,-826,-3775,8001,1711,6210,7023,-7559,-3082,-7499,7037,8765,-4636,2579,-7833,-8368,5005,9457,-2891,-7817,-2692,-4599,5041,-6116,5781,9910,-7476,-1085,-6720,-2107,8317,-8237,4482,-7284,-2682,8759,-4008,227,-3542,-7361,7081,5156,-7111,9274,-8582,1651,-9548,2663,-1381,-2587,-5386,1178,623,-363,8995,9814,9216,8605,7259,-86,8155,-280,7948,-9356,-5630,268,6952,8653,-7396,-707,-4711,3159,9745,-7113,-295,-2576,-2839,-6787,-4902,5490,4763,-7814,8466,3143,3515,-7967,-9853,-7660,-6289,881,-2082,-4791,9451,1056,3697,7624,3419,-4244,-343,3166,-6222,5412,1760,9540,-7408,220,-2025,1284,-1495,-9020,211,-6133,6431,8912,-1248,5718,8705,7127,7717,-9886,-9064,-4801,-2432,6257,-6356,-2970,3702,-8228,2585,-2627,4159,-5196,-8860,7330,8307,-6798,-6951,197,1106,-3418,9003,-1487,9128,6522,8981,-8070,-6622,9418,564,8098,-2630,-775,-9287,-9226,-7207,-6143,-9192,5597,-560,7582,3599,-8773,-7157,7012,-885,3142,1017,-453,5727,1671,-6556,7340,-5859,-3371,4563,-4643,-2530,4838,-1304,-9436,-2766,1347,8400,4674,-7598,-3851,-5650,9775,7510,-5763,-9353,6451,-3403,-3703,4455,-9260,9227,-940,-629,-1979,3184,6776,-7376,-9378,5401,-2058,-8468,-2409,-9135,496,1355,-2474,6562,-7140,-7523,-5000,-1437,1616,5014,1763,-8520,-2792,8741,-7657,-620,-3100,-2014,-8374,1675,-5999,7579,5753,-5083,3826,-3047,7618,2670,-6338,-3764,755,-5163,-7014,2248,1154,4294,-7313,-9582,607,-7582,445,7340,-1967,9614,5719,-978,-1735,258,-5296,-3092,-7719,-2563,-7279,-3342,-1467,8953,-5431,3486,-1146,-8509,-8513,4500,1026,-8162,4553,-5536,5410,-852,2648,301,3765,-3007,7272,-8316,4225,-9613,-8651,3665,-7944,6672,8521,5882,-6263,2378,-2369,-6781,293,-970,-8232,3231,6797,-1882,2117,3559,3468,6038,-1010,-4822,5851,8780,-8746,1288,-6720,4085,-4477,-373,-7413,-3864,9959,-3991,3353,6832,8356,326,-7052,5491,9483,-3843,-4477,9258,8105,4636,-5159,7081,7303,-2854,-8176,3512,-9529,-3899,-4872,445,8717,-1665,9039,3236,5329,8408,-3472,6694,3808,-9081,428,-4878,-8773,3437,8013,9164,-6502,-9963,3331,-5292,-5837,534,-5613,946,744,9085,3730,1743,-8852,4675,-37,6559,-4191,8058,7081,-865,-2491,5405,-8532,-5042,5635,-7923,5982,2982,3926,9587,2010,4994,-102,-7167,-7035,-3370,-6626,-7749,2030,-7794,9435,8779,1160,-6281,-4511,5396,7957,2107,-307,-7020,5755,6121,-5798,8800,8555,-8785,-3440,-7501,-2174,4161,-8115,9106,-2123,-3017,3857,8662,-7148,5749,6966,3982,5304,-1088,-8461,8580,8834,-176,-7963,4150,-4979,-2325,-950,8420,-1746,-2996,-1896,-5524,-4585,-1277,-717,9061,-5411,-4495,131,-7828,6057,-7262,8256,-1004,3661,9029,-8469,-5425,4751,1942,-7377,-8979,-778,-3174,-7803,2340,2,7765,-8492,-7424,7782,-716,-2575,-835,3639,-4727,4438,1391,-9515,8821,5713,3834,-2879,-1414,-8386,1817,-8875,3541,-7009,4218,3124,-486,8340,-4709,274,-792,-594,2410,9107,-144,-3556,-4781,4862,4068,-454,-4111,2039,3443,-3794,3874,-497,762,-3995,-7866,3822,6304,4416,1823,955,-1701,-5104,-5015,-7719,-4723,1633,2243,272,-3713,-1790,-8347,7724,-5128,1053,6414,-1076,-8275,-6473,3699,-7922,6599,-1786,9817,916,-4476,7066,8988,4127,6247,811,2273,-6034,9911,74,7366,-6355,6443,-744,6183,-7770,-8868,4937,7787,-3993,-5285,2848,-637,7829,-8730,5813,7955,-5939,2383,-345,-1843,-3973,-253,-3012,-3009,9616,9766,610,-1629,-2533,-6642,9318,5337,1058,9104,-1619,-8453,-5086,9428,-9823,-776,-2568,-5817,-9195,-3554,5439,1878,-6189,8095,-6130,-8374,-971,5583,9852,-8986,-8958,-9156,3416,9944,-279,8597,-1609,-9821,688,-5889,-445,-7267,8510,2284,5306,-8866,7825,6103,2178,-2166,-5703,6280,7204,-2311,-2660,-263,7997,-6177,2992,-5180,-6540,2231,1183,-9010,4489,-5061,9454,-2507,-2487,8464,7925,7900,6567,2958,-1824,-5733,6876,8582,8024,6405,-5873,7833,-4452,7080,2375,8974,-6140,6076,1633,-1680,-3813,-3076,2954,6237,-4961,8982,-1185,-3734,5971,-1060,-1674,-2367,1022,4893,-7530,-4233,-304,3915,3386,-1991,3918,-8638,-5796,3861,-464,-3238,-9884,9292,-5245,-494,5082,-3442,-6702,-8211,-9323,-4259,5321,-8001,2468,-4776,4916,7593,-3563,7278,7790,-4088,2089,-8389,3412,2314,4042,1355,-5947,8889,2279,5870,-5972,7311,7151,-3732,-394,-2762,-2951,-5878,2244,9262,4098,4785,8731,1675,8337,-2156,6629,7734,9352,9035,-9592,-5500,2067,-5958,-5113,-4984,6822,6065,-6539,5992,8419,-5018,7896,-2628,-4241,-293,3614,6481,-8991,7476,-1883,-2649,653,8756,8030,-6730,1224,-1546,2951,7809,5902,8708,-7445,-484,1523,-211,-7391,-5770,9782,-2173,-7496,155,1353,-5872,-5572,4522,-6891,9594,3161,2853,2472,-6961,-1591,-1664,3550,2738,-2777,-6837,-6432,7124,8830,8665,5514,6862,1825,293,-7014,-1008,-3865,4262,4433,-5921,-3152,7384,9108,-9870,-2564,5115,117,3365,1831,4407,-8833,-238,-7478,8975,-8551,-1084,-3107,-6398,1879,-8366,-838,8044,-108,-5198,5289,-8291,8706,5174,1123,3057,4763,-5046,9610,-8012,-3715,1593,-6927,191,8275,7797,-2123,-8902,-1970,-5352,-5661,5678,2212,-3946,-3882,8591,4527,-2577,-3424,1338,1803,-8677,7074,7263,-3689,6794,8019,4910,2397,7184,1599,-1783,-3172,-1876,-6929,2142,-2445,6603,-9059,-7849,-2457,-8413,3727,553,-6049,167,-4760,3968,-9674,9155,-8260,174,-8475,-9980,1620,-6214,-9003,1304,8515,-9999,-6332,5817,3061,-2511,-4481,-8262,-4954,-5205,5435,6637,-798,4028,452,-6337,5898,-8569,1079,-7034,-5579,-8281,-5189,9835,-2494,7774,-4516,-4609,-7405,3427,-9951,-549,3363,8890,8905,-582,8169,4190,-8987,1687,1836,-4911,-5779,-6597,8534,6446,-1601,2607,-8272,-118,-7833,9690,8519,6765,-3794,-1927,6781,7143,-2834,-3022,-637,1144,2238,-7700,7394,-5706,-3394,2784,-4878,-486,-206,2176,-7492,-5738,8409,9466,1884,3811,4618,5323,2438,9450,3141,9095,5623,-5977,-4101,-7478,85,9477,7954,3805,-419,4902,-7761,4001,1895,4035,-9787,-2189,2258,6787,-3295,7286,2048,-3240,-5170,-1143,1125,-5608,7096,-8267,-4597,6972,-7666,-3848,2869,-8944,-4104,-9713,4733,5172,7096,-2083,5749,9021,5158,9225,8621,9721,-1708,120,4719,-269,8512,-3102,9854,-2752,-5491,-1919,9752,-3110,-1774,-2454,-8179,4982,-2542,-97,5871,7196,-7523,-485,2986,2584,7781,7793,-7944,-3186,8598,4765,4183,9793,4037,-9595,6854,2872,-9950,-4452,4393,7057,9762,-8385,4642,1347,-2188,7820,180,-2739,9331,-6645,2095,-4515,-3769,-5480,3155,6708,-3558,527,2465,8319,3046,-7508,-3834,-1234,-5247,6697,9325,9720,5414,-268,4360,-7190,3474,-8058,-9155,-246,4068,9921,-2073,-3026,7785,1753,7629,-7130,6260,7174,7941,-339,7828,7334,-5556,8400,3343,1696,-2483,-2879,-670,-2797,524,9043,1363,-8788,6063,2822,8347,4973,-8590,-9245,-6615,4626,-5203,7854,7867,-8728,-1176,9028,-299,-3197,7430,-5455,6031,6257,-7238,5244,-3857,9224,-4755,2624,7168,-8376,-6610,4376,-8562,9359,-1718,-5818,5806,9524,3285,7057,-4893,-2361,3424,7509,7701,-3351,713,4077,5271,-504,-4221,3526,-7900,-1394,-9774,-4787,5046,-912,5587,3918,1024,3136,6113,-1301,-9033,-9096,-6310,6127,-3643,5850,1203,9190,-2297,7473,-4795,2193,1317,7952,-3591,-2438,-4448,549,4159,5927,-2654,-2828,-9854,-957,7321,8706,-2170,2298,-1416,-8162,7536,-3912,-1777,-2539,7932,-367,-1480,8348,-604,-3778,-5514,8780,3406,-6165,862,7523,936,-9424,9387,6290,-2594,1426,5469,2819,-1783,-9419,73,5895,3193,-2548,-3060,-3900,-6214,1250,3729,-9176,3446,9866,1238,2062,-3600,8951,-5120,1152,-4233,1846,6531,2004,3008,8025,5059,-3716,3721,4477,2264,594,-3064,6765,-8011,-2480,2203,-2592,3193,3637,-5795,-8661,4922,-1401,6379,925,-8989,-4894,-6469,-2828,-4548,-4722,-6531,-1927,1834,-1286,5136,-2548,1335,2373,-963,-2379,2060,-7543,-888,-5161,4257,-8242,9159,-533,8425,9997,-2360,3447,9847,8067,-282,-8623,7678,-569,1969,1497,-3540,-1035,-7617,-9609,625,5315,-5313,-5673,4330,-8585,213,3309,4616,-8208,5899,1025,4317,-7832,-2805,3353,-4428,8642,3313,3743,-4101,1368,1545,-1381,1281,7141,-4787,-5762,7782,4731,8693,-2011,3150,-1204,-8707,-873,839,341,2391,422,7378,7096,-5539,4382,-4027,3354,9465,-1153,-9277,-2952,-4452,-2641,1855,9305,-7883,6317,5850,-5855,-3979,5118,-7842,-8511,-7890,-2376,4883,5450,6971,-7308,-8821,6417,-3803,-2477,-3352,-3547,1056,-4684,-9766,9185,-4129,-9554,5569,6380,8139,-8408,2689,9994,-4263,6385,-8297,-8134,2977,3438,-6240,3014,-1951,-4224,-6384,2987,3341,7415,7723,9420,-2175,-2767,2430,8489,7423,4184,-7790,2563,-177,-4340,5853,-7354,589,-6887,-9506,7011,-4301,1421,-7697,-5040,1927,-1523,2114,4115,3944,-2385,-103,2228,-8433,9493,1622,-8872,-6907,9166,7206,-7012,1832,-2489,-4872,-3766,-8085,720,-9620,3571,-3412,-631,7283,-465,-9582,1274,-171,4007,9061,2209,-4016,4805,-256,1256,5068,9117,7538,-9421,6055,-1160,3638,-5425,-9296,-279,-3975,-3482,486,4748,-9959,-6373,7555,-6750,6675,-4874,3710,-1203,-914,-9725,-6308,-9271,4455,-2488,6285,-6281,2441,3105,-8328,-869,-1544,-4737,-4073,-1932,-5111,841,-1564,-1585,9882,758,-4346,6693,3205,-7263,-1037,-3332,5022,4843,-1176,-105,6867,-8187,6065,-1716,2207,-7737,-6490,-5963,-1091,-3630,-6226,5552,5840,6936,-7458,-6061,-821,-7604,-6358,6960,36,-8083,-5677,-5454,-5217,-9005,-6722,5491,-9339,3410,-3975,-5316,-5841,-7273,5206,-9534,9449,8717,2793,5895,-8940,-5592,8494,2870,-9512,-1821,-2339,3653,-7318,7289,8454,-756,-1291,2723,9866,4657,2295,-2953,3508,9103,8948,-7580,6000,5205,-2503,9944,-3860,-8308,2110,3198,-6804,555,-1639,-106,-8569,8915,1639,524,-4130,1225,-6664,-8434,-3296,-7055,6008,-2792,-303,-9698,7970,393,6552,-5545,978,6765,-4350,-820,-7187,6398,122,-8564,-1087,-6501,9521,-7424,-7049,-9719,-7049,3384,-797,-2091,-1410,-2488,8514,3789,-1553,7947,-9418,9282,-2036,-978,5278,-6668,-8179,-1394,9,-573,-6942,-3498,5511,-3055,6695,1795,-2651,-3881,9937,832,-7345,-7460,624,3397,2379,-1102,4772,5600,-1310,-2664,-3629,-5715,-1685,-655,2682,2848,-9989,-4999,-1214,6487,-8548,6251,4420,-9055,2321,-7750,-4491,-9309,-7967,-2146,-8619,-958,1585,-3714,-7224,9116,-6355,6363,4141,-5599,2751,-2625,6243,-2863,6460,6843,2697,-5521,3113,4594,-4299,-3646,9890,-6755,-5527,-8813,4301,7344,-3823,5143,8493,-5780,-2285,-5278,-7454,8491,9445,-560,2705,1641,-1102,639,1825,-6462,3857,-6601,6504,7389,-1830,-2700,994,2619,-1003,3763,9771,8594,-1344,-6860,-4169,7496,827,-4925,6741,-3094,1229,1154,3358,-4221,-9284,-7821,1165,-208,-2898,-8312,5530,-5147,-2306,3605,2585,-5043,-1014,8507,-9415,1146,5220,7928,-7000,-9034,5209,4024,-6256,-7787,6304,5180,223,7938,-8495,8502,382,-7045,-3004,3925,-2547,2656,5398,8759,-5240,-6425,-3149,237,-2928,8878,2154,4684,-2510,9529,-3077,8244,-2219,3143,-9338,1937,-5007,5708,7218,1336,2696,-9190,2960,-1322,-4599,-3596,-7295,2450,7742,2212,-9211,3180,-3942,-8869,7656,8982,-8214,-3810,-488,7106,-8965,-7931,-4588,-614,-7090,-8522,-7929,8790,-7345,9819,-9583,3009,-2598,6206,-1299,-5707,5173,8111,-7866,-3941,1867,-4788,8164,-8872,8031,8394,-8106,-5595,4150,9398,-567,-818,-2047,-3631,-117,-5151,-7014,-1422,-74,-3646,-3046,4052,-8460,-941,2205,-8827,-2076,5657,7179,-8409,9247,3465,9135,8873,-8995,6989,6928,-5386,9657,-2022,-5226,-2796,-2425,7564,8668,5724,5197,-8525,4431,-5445,5487,-2137,129,-1516,3122,-9218,-3406,2435,-4714,1475,8000,-3438,336,-8973,8570,-6769,28,3275,-4941,-9523,1065,3492,-5396,-8468,-5243,-8390,6013,-101,-4936,-6934,9789,-5512,5887,-7879,-1505,9315,9265,3524,-7675,1639,-1149,-6424,4933,7089,6722,-4747,3040,5682,1579,-7732,-4437,-9025,5564,3924,-4078,-3356,-8973,-5743,8330,9469,3373,4567,-5098,-7399,9826,2777,-5761,-7335,121,-8144,-3473,-8940,-172,-4027,9402,-449,8022,-1422,-7561,-72,4609,3839,8526,-4542,-2697,-8992,9234,366,2068,9501,4016,2347,6243,8249,-7958,-8727,-6980,594,8314,-7427,2282,4037,1452,-8300,-917,-6542,-2429,-3311,3888,1551,-377,-8034,289,4058,2438,7723,3477,-6721,7129,-9390,4879,3499,8839,9830,-370,6302,-4613,-1306,8543,-3347,-106,3572,-2863,2030,9045,6742,1346,-2786,-4058,-3900,8739,8799,2143,539,2236,9659,581,6977,1662,-3926,5253,-1677,-2784,-1334,4286,6255,4849,7600,1563,-7688,3099,3305,-3815,-9947,-2019,-9860,-2636,6685,4599,3227,-6348,8559,1739,-6466,-8987,316,7387,-7160,-3818,-9483,-997,6783,6598,-6256,2862,-6374,-7833,272,5896,-3758,7567,4669,8484,-3817,-8760,-1286,8521,-6156,-3050,-5973,7656,6845,-1651,2447,-1918,-2948,6513,-1072,5579,-2396,2986,-3123,7126,8388,9179,5606,-1756,5868,-495,427,1394,7557,-6796,9142,8542,414,-5934,5100,-7570,-5929,-4252,3925,-3593,5984,8814,-2153,9122,2501,2717,-3078,2009,-8177,8107,5979,-9756,-5808,9957,1087,4465,-6114,-7965,8403,-3912,-6026,8216,1175,7871,-921,-9150,1490,7373,-4289,-971,-9505,-8751,-3994,4344,-8096,9367,-5901,3531,611,-5162,9532,-3262,1859,3510,-4912,8874,-2880,4751,-1096,-8692,5813,8561,423,-3204,-1722,2608,-1481,487,-1347,5855,5758,4694,-7406,-3322,8796,-1955,60,4407,-4863,-4686,-5068,4819,-9934,7309,8341,-837,198,-2740,-3780,1513,1774,3880,-3121,2179,-5676,9512,9821,4236,-9477,4629,-6989,-9010,3992,9506,-7346,4199,-2328,-500,2860,7782,-4222,3541,5490,-6333,-5990,-9157,6757,6134,-5329,3143,-445,6785,-2379,-7232,177,-3579,4626,-2536,-6719,-8945,9991,2609,-8871,6603,8421,7708,5909,-275,-7033,-2986,2767,-1516,1886,827,8358,-7467,-5594,-61,-6226,-1695,2631,-7926,8227,4735,-5186,3920,-8111,8706,-1000,2787,7130,-4753,-6426,6595,-6868,-7664,-7910,-3583,9175,1931,8037,7048,8943,8367,-8652,3414,-3157,-7344,-5191,-7213,8633,749,351,-716,-2839,-136,9406,-5204,-6236,-6392,1537,-7373,-7079,5662,-969,-1229,5000,-5570,4724,-5106,5569,-2233,434,-9314,-8191,-1738,-2468,1952,1399,3716,4320,-6716,-1964,-7473,-6829,4532,-7081,-832,-7782,2559,5808,-7931,-7751,2637,2070,4792,2494,2345,-6529,1128,5375,484,1285,3943,9884,-4965,8798,9916,-9826,6906,-4171,-3844,-626,4384,-2785,-8893,748,-1426,7629,-8744,-2028,-2693,1485,-3719,-6291,426,2752,-1007,3435,-2720,-9717,9356,-7072,-8708,5942,-8709,1739,8732,7907,-1938,4283,4756,2571,-8572,8118,-1455,-6611,4872,2519,7905,6129,4516,231,-6385,-7119,336,6541,8458,626,-468,-3488,-9909,-9699,6504,4558,5880,5246,-6500,772,-5290,1516,2429,-9430,-2539,7809,5141,-3954,1256,-1683,6563,8034,3319,-4631,3857,-2123,1027,3112,732,-7845,-1787,9824,6627,-118,-9140,2094,1534,1224,8974,5907,-8968,-6696,-6704,-3230,7543,-7121,-2028,-3771,-1215,-7018,-9694,-9722,-3334,7287,7383,5826,-3464,-3885,6529,-8606,1669,-3238,1268,9596,-1128,-2997,-3328,-907,-777,482,-5189,-1326,-6971,8744,-2247,-2407,2155,-5715,-5095,2450,6316,-6099,-3570,702,8201,-4631,5039,-170,-2640,1330,6068,-3049,-7152,-7445,4944,-2924,3027,-6475,-6508,-8131,-1591,5817,-6754,-5797,8418,-518,5680,-8481,22,5603,-6906,-2649,4390,558,-9067,363,4080,4616,5686,6112,161,2141,-8538,7851,5410,-1861,7163,-8522,-1626,8485,6521,-9341,-7781,9169,9763,-3332,4396,5504,-4192,6141,-65,3013,8615,2039,5207,8395,4390,-7693,7249,-5835,-417,6088,402,3035,7861,-1095,2097,5114,-734,-5712,965,-9951,9554,3916,7250,8641,-3672,-4232,2841,1548,7259,3234,2770,-6091,1920,3477,-4400,9019,8880,-9875,-1479,6783,-5164,-696,3242,583,4360,-7676,7085,7404,3188,-7092,-8444,949,216,-5872,9829,4774,6877,-4271,1296,-7547,-6589,-7929,-9748,4517,5245,-7116,-8491,-6106,883,-6218,-100,3187,9732,-3158,8929,-2727,-8799,-5209,-1098,-7040,-9291,-1478,3028,205,-7002,2738,281,-4843,7207,-4504,-4779,-7980,-2578,5319,4893,-593,381,9311,7265,-4674,-8455,-8077,-7164,-9385,3566,5724,5295,6645,-9402,-8969,-8854,5702,-1205,4990,8422,-4740,-585,1084,9742,-948,7897,-8641,-404,-7864,7469,4166,-324,7764,-2703,9054,-2102,-4987,-4181,6498,-7686,4704,-1700,-7345,1957,8622,-4296,-6204,-4572,-6755,-5293,-1681,-7106,-1729,-9954,6442,785,-1736,8948,994,-4768,8418,9399,2752,9717,5120,-8656,-8238,-6252,-4242,-9781,-7926,3694,3995,8244,2701,-3757,8628,-3744,-4213,-1414,-914,909,6607,-445,8177,3483,121,3030,4957,-3217,-2644,-3877,249,-3634,5474,1102,5166,-7290,-1256,8444,-4193,-1529,6659,8538,7523,-2546,5398,4886,164,757,6210,3430,5388,3978,577,3481,-6629,2944,9115,445,2163,-8868,6960,195,9312,-439,-4399,-1513,-5077,7059,-4620,-2996,8694,-3803,4406,-7584,-9856,3174,2994,-5705,2711,5117,2910,9942,-1772,4282,1332,-3773,-5713,-6752,6967,9228,5796,2186,601,-9997,3295,4568,-3746,7471,3108,4501,7198,4694,-1896,1016,9946,3183,-2543,7310,2238,1465,-8205,5116,4333,-8913,-7944,-5926,6038,-282,-4351,-5889,601,-1259,1197,1348,-2314,345,-3341,9707,9007,-8501,-9733,9368,9866,-609,-8412,9773,573,6032,-8544,-8179,4531,-6617,8802,-5424,1787,640,8563,-4171,7796,4322,6385,-4898,8352,1091,6322,1631,-541,-7703,-835,3695,-2666,9116,6159,-8079,8349,86,1167,-1103,-5658,-7261,4450,-543,2094,-201,-1265,-9811,-8929,1842,7893,-9115,3572,-3987,1670,-9922,-7503,-3009,-2084,9452,9498,-21,7782,3907,8188,8350,-1629,4752,-995,-8280,-619,-5570,-3324,-3629,-233,3327,6829,1002,8624,-4786,-9012,1402,-800,-7772,1963,9128,-757,6050,1879,835,1769,6751,-1561,7573,2004,-7667,-4163,2981,9299,-8234,-6521,4480,9190,-9466,4448,-942,-7675,-9636,3,3243,-4062,-6136,-5033,-7280,1100,3327,-2692,5525,-9613,-1149,-8772,3586,1415,-9295,-6699,6953,-6682,9087,-9897,1120,2572,2759,986,-3319,-3327,-6953,-3938,-273,-3241,8925,-7682,-5066,5585,6724,7890,-5271,-7704,1263,-9187,9182,5222,-3050,-2538,3535,8153,-1774,-6133,2947,3864,3918,-2910,-9282,4113,7914,-4067,2490,-3439,-9970,598,404,-2048,6094,-5683,5052,2108,5052,-2038,9809,8294,9835,6331,-8402,4354,-3517,-3043,-9628,7547,9325,-8322,-9274,-5060,4809,7620,8795,7506,4763,-935,-6635,-1085,-5993,8920,9695,-3028,-512,-8125,-7906,3779,-8302,3134,-8586,2747,-8439,4008,-7371,884,5634,-6758,4474,8091,5692,5984,784,3142,3640,-4510,-9902,-9034,-1882,9665,4697,425,-8312,-437,-2380,6656,6014,-7311,9886,-1973,9864,-89,-9697,602,511,-3055,1841,-110,5670,-7513,1235,-5233,-9267,5660,-3256,-7773,-9143,5415,5116,4166,5054,9237,5271,2482,6128,5874,4973,1406,-5367,-7446,6283,550,-5685,2437,-3615,9239,-655,-4782,9071,-1634,-5578,-7476,-2557,-9568,-7390,6960,-140,4426,-8502,-7048,-6683,-6787,-3008,9952,6650,3100,3670,-6436,-3477,9322,3091,-9043,-2325,-441,-9910,8778,8958,-4246,4777,-7603,9558,-4125,-3003,-927,-7399,-7082,202,-375,6001,-6377,3584,5414,-2977,7928,2167,4260,-5669,3473,820,4474,6166,1375,8965,-677,3594,4870,-4510,6023,9349,-5836,-7877,-8259,6441,943,2094,-2564,-7694,-1065,-8484,8479,3780,9620,461,6857,3186,-5237,-4974,-9425,-3334,143,-4707,-2640,-2072,-8252,-7268,-2846,8541,6997,-5201,-1198,2493,-6609,-4730,-7242,-5287,3234,3762,-952,8791,-1121,-2084,5652,-8971,8073,-3705,-467,1575,-2491,-1710,-364,3146,2695,5713,-1587,3908,5830,1714,-2031,6277,-8050,7525,7603,4096,6765,-6214,-86,-4863,5700,-7958,-5911,-6334,3409,-1938,9145,4347,7131,5830,3369,-194,-6050,-8533,-1150,1294,-5147,-1457,-1529,8540,-6740,5403,1874,-6534,-1877,-8457,6741,5571,3842,4386,1402,3706,6701,-4174,-2261,6974,-7169,-6676,8777,8956,-7887,-7135,-4516,8,5701,572,-7996,9405,-9711,-7086,-3160,5616,1036,3309,7426,8463,-9675,8706,7833,-1754,-2322,9647,-1981,-5144,-6978,-6815,-8705,-4329,-239,5641,3047,6726,-2199,9345,-732,-8347,-7290,-9649,-8513,8464,-4156,-3970,2331,-7719,-4796,-4713,6453,1072,7613,-9471,6532,2614,1601,1001,-5657,-2026,-1888,-4927,-1132,-2377,-4577,-5538,-2392,-3579,3337,-8756,8596,-886,2955,-8210,7802,8903,-9886,9330,9887,-8906,-6026,-7469,-8855,-4607,-1118,4335,-4712,-1691,-1939,4242,5738,-2398,8482,-5323,4243,6167,-5887,-3553,6996,-6710,-6543,2506,4290,-3259,-3233,6970,-3371,-5395,-5741,-1870,-4690,-9968,-6180,-8306,-5288,-6898,1074,6983,5180,1701,-5175,4680,3583,-609,-7303,-3347,2351,-3833,-7594,-5570,6450,4963,-4513,-773,5551,3662,-7980,4444,-20,7487,-1068,-5193,4081,4684,-5268,-1819,1061,7492,-22,1101,-898,-4410,6909,8251,683,-1486,-960,296,972,4796,1954,-9029,-3981,-119,2587,-1113,985,-441,-8716,-4992,3364,-384,7387,-1958,6511,-4468,3802,5041,8387,-3512,4886,7866,7803,-5987,2001,3493,-8231,680,7597,-9516,574,-4629,-1799,-4765,9531,-6747,-8758,-3651,9304,7143,3215,-7372,-4292,-6498,1187,6145,1375,4225,-6087,7568,-1699,4924,6997,5373,422,7099,662,-1783,638,-9503,-9980,-7961,9096,820,-991,-5492,-8512,2984,6037,-3290,-2546,7075,-9468,3580,-3156,-6976,9758,-7525,8172,-6699,4594,-3271,9244,-7478,9175,-8417,-6998,-8951,-9851,1972,-387,4615,3494,-7584,8960,952,1050,4634,6961,-2710,-225,8110,-8144,-6104,-2215,5100,9560,1557,2400,-4081,-6706,1456,-1824,-8702,5611,5033,-4577,9998,-6733,-2392,4688,8120,3136,-1627,5817,-3788,-3078,-7069,-229,-4023,-993,6559,-8264,5503,6762,-6355,-2330,6585,-3809,8308,-1428,7667,3633,7046,7511,1656,4751,4187,536,-6076,774,9572,6706,-6680,-5134,-560,-3598,1967,8916,6684,799,-9834,-2296,8288,-6960,-2421,8926,3131,-3583,9163,-6452,-2731,3104,-3616,8773,-7527,9503,882,-4744,4498,3945,-59,8865,-149,-9726,215,7139,-3914,4174,8400,272,-9714,8013,-6730,-1163,5159,-644,-893,2037,-7514,5355,-5778,-3045,9941,4847,9117,-6950,6872,-2965,5605,-7089,8618,7248,1401,-7265,-8822,444,-8009,-3051,-2661,-1420,-5593,-8067,-5826,-3715,-6790,-2005,-5220,-7445,2000,-8455,5333,-7789,2136,8546,-702,-2119,6074,-3486,8269,-9670,8179,2675,2152,6127,-6403,-2232,6310,5946,9102,-4720,4806,-6122,2904,806,-5867,-3234,-9027,9398,-8068,4841,5290,7717,7779,4455,-7698,1916,5104,-5529,5059,-251,4236,-8645,-9242,-8947,653,3737,-7334,7142,5742,-7783,8,-7683,-8862,-8253,-1972,1193,3544,8569,3235,-3664,-1956,-1387,-1286,3124,-1188,9899,-2587,8187,4333,4286,-2055,7965,-275,-9143,8116,1345,-8810,7422,7735,-2022,-3702,-4748,1698,7732,-9973,1870,9382,-316,-5828,-6180,-8214,3312,-9896,-9813,-3603,1706,-6117,4360,-9582,-232,1317,-1291,-1964,-6640,-3539,913,5103,-5587,5051,3734,7554,-5189,-8801,8203,7757,-64,-184,4434,5865,4971,127,3756,3848,-9616,-2174,-6496,-8787,5133,6974,4939,-7079,3352,2963,-3711,-2959,5225,-9478,3369,701,-3475,7110,-7621,6902,-5992,5239,2263,3231,-8007,7054,7805,976,5326,-1119,-2643,7209,1068,-9920,-3395,7811,8659,7455,-3548,-8128,6032,4190,6153,2849,-904,7216,-2764,112,-3602,7722,-1993,-8823,9857,-2029,-6437,-2840,2844,6915,7035,-7493,4751,9237,-4771,9428,8093,-4423,-3652,1976,-9578,-874,-7265,-187,8953,3774,-9152,7620,108,-5599,2383,7757,9274,7152,1858,-9586,1747,8731,-5772,-8270,-6009,-2409,8665,388,7021,-7693,6912,-869,8673,7019,637,535,-274,6196,166,9267,3795,-6769,815,-4280,-8720,5299,1177,-6023,6792,4382,-6371,-9055,-4540,-6023,3281,-7125,-6723,-8626,-3770,3905,6956,5774,-9379,-8311,-1817,3277,-8046,-4211,4115,-3128,-7120,-9494,2968,2164,-9455,1652,-6479,-8887,-1146,-7827,-7439,-2054,4597,-2919,-3467,4010,304,-6709,3903,6271,-4546,-9981,-9049,-2777,29,-6814,8068,-1676,2220,4788,-3327,-5823,-2905,6201,-1112,5749,3306,3046,-6491,2349,-9317,-8369,6579,-1460,-3530,-9637,-2796,3685,-8989,8064,4008,2438,-2211,-2210,-4467,7038,-6690,3937,9344,3125,641,7136,7996,-780,-6045,1356,-2791,-5859,4035,-8951,-8055,-9609,-8835,4943,2818,-6482,-3162,4454,6308,-8943,8023,-8795,4465,1871,5333,-7393,-4472,8536,-2915,-1100,-9936,6293,-7583,9915,-9757,-4329,-5056,-854,55,4813,8373,-7087,7900,-5884,-2996,6772,-5353,-8751,6933,-873,357,5623,4551,476,6084,5499,-3591,-3909,-9890,8427,1487,-3457,9216,8561,-4806,-7938,4734,9921,-3177,902,-1933,5382,-8920,6273,-8778,4498,-4624,-2726,-3298,3366,7893,1004,2276,-1700,-2532,-5410,-5949,6470,2821,9142,4552,3411,5580,8121,-9605,8399,4852,-3738,-642,2518,-2252,-8627,-8222,5440,-2122,8935,-8287,-7711,-7807,-7771,8965,-6669,8879,-5626,-4221,-7819,-1514,-5615,5058,8527,2670,8265,6625,7850,6160,4832,7601,-3850,8069,5949,9598,-9320,-6849,-1903,5049,2193,1556,7386,-1323,2596,2013,-5015,-4769,7263,-1265,8579,-8297,-1704,-2746,-1343,4101,5944,-6478,-7926,-4360,-9849,8914,6629,8909,9064,-9296,-5924,5217,4661,-6412,-8300,-4103,-8042,-5634,-4135,4189,167,-2887,-3710,-2153,-7817,-2143,-5701,6431,8911,-4541,9773,-7086,-9343,3513,6533,-326,-1485,-1387,4698,170,8840,-1662,-1079,-7391,2272,4921,3146,2974,1532,7152,1975,-5682,1601,-1789,1853,-5966,8401,1556,3773,-794,-8875,729,1660,1547,1707,3936,-9441,-2613,4844,5431,-2069,-4782,9551,-5041,769,2515,5788,-5698,3583,6654,277,-6962,-2296,-5656,-6888,-1288,4507,-4167,-8640,-421,1195,-5053,-508,-9153,3472,-2985,-3217,9874,-9863,-4254,8124,-2495,9613,3249,-6548,-9545,-6872,-5185,-5965,-9053,-311,-1179,857,4705,-5411,1186,-5386,3552,-6759,-6682,-5203,-9360,4743,4508,7574,-1513,-7575,-4686,-4736,-2785,-9802,-8981,-3436,2377,-5911,6339,1848,1798,-9445,-306,192,2926,5187,-7051,8482,-8276,-4470,6585,-2617,1362,-5817,2233,-3777,-8399,9352,-6409,2593,-7257,-8911,-5211,-670,-7190,-3530,4459,-157,6117,8187,9351,9358,-104,-9147,-3818,1487,6252,4986,9413,-2660,3233,4900,-7861,5319,6702,-255,-7076,-6957,-8076,-7793,3123,9286,-6991,3681,2418,-6361,-5078,-4047,-174,-5326,4560,-8241,-1079,7286,-613,-3866,2150,4561,1236,3100,-3643,4305,3370,-509,4220,-1822,3314,-4795,4260,6215,-3343,6221,-1701,-9958,-4896,-6961,-2986,8854,-8768,-4099,-6567,-8061,-3824,2834,6759,-7853,-7407,-7856,3308,-7654,9151,5558,3656,-4406,-9219,-7838,-9541,9785,8778,-2755,770,6005,7214,6452,4130,886,14,-7303,9086,-8926,-9165,-4955,4734,-3452,9497,3326,2218,-2036,2940,-5359,-2772,-6381,-6369,-9794,741,-9234,-4876,-7097,3457,4971,8183,2056,-8458,9045,-9562,7464,-1944,6188,-9028,2349,628,3035,3871,3501,9485,-1207,-469,-6321,-5697,8167,-7462,3338,-7086,-4705,-7279,8860,9018,-225,-6439,5866,8773,-1624,-9201,7235,-1790,-6622,-9299,5368,3979,8856,3275,-5256,8918,-660,-1924,7713,-2553,4235,9860,7917,-8013,-5091,9302,7721,8736,-8626,-4561,-8446,3709,5490,-3900,-3094,-4079,-4116,8070,-7293,-504,-743,6393,-3940,5538,-315,-7324,-7108,-6224,9888,7267,9603,7249,4310,6138,107,-9401,-922,-4409,-3912,6912,397,5707,3935,9005,-7829,9732,6450,-5451,-2037,-8937,6420,5774,5525,-6186,3315,1534,285,-3093,2042,-6710,-9188,-9052,6227,-2960,-1247,-78,-9482,4402,-4655,-279,6149,-2209,1218,-3706,4279,6307,-1288,8232,-7630,1201,6,5632,-5440,6866,5009,6913,-7556,2317,7214,4534,-7555,471,4350,878,-9594,6971,479,-7667,9766,-6842,-4594,9229,2424,-909,-483,-2879,-9311,7565,-1318,-7861,-5902,-4499,-8681,7974,7789,3404,3748,6360,-3998,-9248,-3989,-6715,-3340,-4133,-8891,-621,-8918,-9019,1512,6440,8016,-1333,3035,-2082,-519,2249,7055,8454,1189,7082,-4173,-9611,3342,-3514,-8088,4296,3127,-96,3255,-2494,-1625,-14,-255,-4760,7212,-2651,538,9932,2924,-8064,-3574,7878,-5874,-3561,-1813,1177,9722,-8864,-1797,7502,-9571,5392,3603,-6506,3176,7949,1473,1421,-8299,-9213,9831,-2600,-8510,1535,-1344,4114,-648,-5083,5420,-9590,538,-1835,-151,8041,-3677,-6243,9804,6073,4203,-5273,5734,3753,2817,-1402,-3116,-5112,-6649,-3929,-6942,4516,-6447,2392,-6053,-7979,-1056,-1572,2353,-9370,5889,1618,-4255,-9952,1092,8771,-3056,-8022,-8393,-5920,-2936,-9722,-4330,7259,9067,-2947,-4117,4299,-3862,9202,-7353,112,-5556,-5405,7037,-9735,5436,5982,-1064,654,5186,-7991,8862,-9517,-7518,5908,5496,-4720,787,4033,-258,-3253,-1746,1161,-1688,2486,-5272,3406,3809,9605,2103,1876,-1142,-2120,-822,-9515,9016,-9347,-8769,-6013,8318,5699,3070,9731,-4882,-2345,-4855,7641,-6408,3796,-1407,5579,4502,9379,-138,6356,3265,3718,7052,2598,2006,543,2240,6898,3884,1859,-8752,-567,-4677,-6780,-779,6858,149,594,1965,-2587,9271,5931,-9956,4950,8934,4520,-4491,-5818,166,2369,-8385,-1910,8043,-2315,8949,5919,-2377,4587,2048,-3114,-2245,6524,-8301,5770,4206,-622,6011,-5669,-470,-2318,-3094,9986,-9701,3051,-9021,2468,3159,9370,-3105,-528,-4934,-7882,3393,9210,-9242,-4864,-812,-5564,-2371,-4309,6685,-4594,6862,-3069,756,-7951,-3917,5963,-9631,9368,8977,5566,-5581,-2064,-8883,-6098,-9342,-4527,3885,-4117,-3144,523,3825,-2683,9250,-8207,177,-5179,9498,-4327,-6967,5123,6899,7090,-4875,6907,-8738,4483,-669,-6692,2517,4421,-3372,-9339,-2787,-8185,4615,8974,-8068,-6261,-3353,-63,5952,-28,4600,-2568,3852,2951,-1173,-3541,-1027,-3086,2848,6482,4125,-7501,-5812,4072,-2618,6804,7983,-9665,-6114,-4985,-4651,-7180,5718,-7789,7451,3297,6687,-5542,-4417,-1674,192,-5347,-3030,-2758,-5276,7319,3844,-2643,-2278,6652,-9867,1309,-1960,6933,6800,4961,9034,-5156,8556,-9267,9700,4005,6842,-6258,-8372,-917,-3308,1964,1207,-3796,4128,-3491,-1700,7775,-1726,9193,2735,-6309,-9022,-3964,6838,-9353,-2750,-2070,-2978,-9394,3544,5109,-7206,7674,4265,7697,3725,-5696,-6996,-3148,-5796,-7519,3081,-6858,-2408,-7278,1523,6721,6158,-9754,-3228,7379,-7561,3562,7827,-9053,-3362,4456,6955,-2781,-8423,3374,8137,9173,-2134,-5871,-571,-1421,902,-4818,-3672,7869,6003,-7421,-476,-6003,3667,4596,-5111,-9371,-607,-1687,3230,3095,8168,8863,4298,9969,9881,-7673,-2139,-1031,-6866,2169,-2529,4423,1984,1263,9247,-4184,8397,-6038,-4499,66,-7007,1564,-5743,-2595,-3099,919,2739,7451,-7175,-708,-4962,-9901,-8903,3301,-4738,-1290,2558,7971,2113,-1353,102,2471,6487,-4216,3564,-468,-2858,7446,9306,-9885,-9731,5324,3657,-5518,-6889,8241,-2929,7787,9440,-915,-203,4184,-1627,-8876,-6737,6530,-897,-5187,6444,9071,9462,4175,-8126,-5410,4831,8273,8144,9607,-4249,-5514,-7835,2944,9647,9248,-3622,-509,1428,3824,6838,9378,8065,5311,2878,6411,-486,8205,-8280,-7702,7705,-821,2996,2013,-6943,9600,1684,1578,4039,-6637,4363,2597,8412,-6800,8437,3060,-6069,-3190,-7459,-2662,8051,-5305,3115,6512,2037,9148,-3615,-6870,5578,6661,7963,-2451,5174,479,3414,-4419,-767,-6777,-1472,4066,1488,9043,-8463,-8308,-8469,-8202,130,6980,3784,838,4571,1895,4560,4881,-3778,9339,-5670,-4713,5008,-9697,5034,6179,-4736,3409,-6645,3316,4358,-5521,9841,-2302,-8864,9315,-5773,-9489,7482,7738,3385,2026,5887,-8359,-2949,-8361,-1173,-4059,-8566,-9683,5794,-3887,-9114,-1485,4775,5644,7709,4523,-3496,2833,1357,-7244,6530,-8058,-6151,1599,7249,-2966,8744,-1859,-4397,4887,1574,4337,-8980,-4868,1182,3250,-9391,778,-619,7465,1583,-291,1687,7771,5898,-9776,643,7724,9000,-9479,-3426,4511,-4575,3244,1037,1448,-5111,-5454,-7094,-3048,-5932,5077,5554,-9925,-3303,-7329,-7938,4890,-6199,-7773,-4808,-7689,-5452,5480,7029,-1563,-3098,9566,5531,5844,4197,9854,5994,3400,3027,-1282,-7816,1492,7090,1297,6144,-6335,7899,5526,-6686,-8072,-1593,-3963,6476,-5959,9936,-3796,8478,9079,-3594,3688,3219,1740,-6898,7378,-9602,5945,7410,-3977,3941,-8358,-4736,-9004,-4758,5156,-3822,-6955,1736,9644,-5300,-2016,6484,4506,-8314,-570,8559,-250,-1423,7405,-7391,4298,-5090,4190,-7007,-5653,-3732,-2946,-8241,9859,2951,-1912,3443,3198,1591,-8167,4945,-9900,-1510,7665,-9286,2156,5288,9896,7910,5673,-6736,-3556,-3812,7307,-5357,-940,-4001,3368,-9821,-7825,9418,8111,-4566,8097,-5488,9818,329,92,5301,-5836,-6165,-9044,-9135,-1461,708,-769,-5398,-295,-7048,8672,-8670,-1768,-4649,3651,-7479,8556,-2250,778,3741,8505,1182,-9734,-5417,4166,1908,5430,-1071,-5894,8798,-4211,-2233,-1882,2797,-3537,1914,5576,-6819,1144,282,5685,3658,4620,9244,-6162,-61,1765,-5987,2118,-7791,1557,442,3141,-1635,-7819,3980,-808,-9104,6768,-7570,-2683,1739,-1230,1278,5290,4249,987,6191,-3235,2192,5332,1144,3253,3665,-9307,-9674,-4523,-1641,-9070,9840,-4707,-9837,6525,8705,-5730,-4170,-2924,-9911,597,-1147,-7170,-6882,8385,3699,9624,4357,3359,6166,-6615,8391,-7899,-3759,2733,8014,7444,-4113,6803,-5526,9956,-6820,-7290,-446,-6093,-481,-7724,8144,-1472,8644,-699,-161,3608,-9417,-6020,-7421,2640,283,-9726,8756,-968,9207,-3181,-7757,-6930,-4114,1127,9800,-1134,-9077,5593,7634,-9286,9920,-6487,-3457,-8556,-1635,3010,-3475,-6151,-1665,8461,-4970,-5948,4682,-5649,881,-8120,2846,-5949,-461,1123,-4195,4215,-9115,-9960,-6349,-877,-6935,9574,-9579,-4447,-6050,-2146,-8021,-5124,-2397,-8173,-7822,6237,-7362,993,4712,5773,-1344,3191,-5669,-2087,8455,-5552,6505,-435,2224,3451,7274,-8125,4105,2264,5191,-389,-2835,5987,2320,3552,-7712,8519,-7533,7387,-7578,-888,3827,8419,6960,-4783,9527,936,866,-2824,666,-6948,5162,7664,-4202,-2407,5421,-2097,-5030,687,-2828,-5051,6000,9611,-2934,1133,-8396,7281,744,-5517,7581,6569,-3164,-8898,8339,3641,-2806,5559,-9397,9766,-1723,-9896,3850,6685,-7599,4543,-3711,-8584,2922,9085,9548,-5967,-1750,8072,-8512,-1105,-1111,-276,3658,-3868,-2746,-7408,-7601,-5428,-1708,2334,2766,-1820,4816,8448,-5552,-8196,-9536,1637,-7169,-9370,-593,2089,7895,680,-126,-8497,846,8704,7230,-1421,4434,7060,-6002,-5106,-6807,-2124,-5984,6221,-5604,-9448,2534,-9632,-8752,-4226,-6381,7741,-3746,-1723,-3577,612,7853,-826,-4841,7904,5397,-4432,3169,6472,-8484,6954,-5689,7618,9557,-1928,-6152,-2902,4394,7004,6338,-1761,5445,3154,139,4447,-2959,139,-7113,-757,-2683,-6546,6824,-1829,2692,2055,4833,-1580,-8285,1483,-3019,7388,-4044,429,7493,2847,-3244,3045,677,-4605,-3459,-2633,-1770,-2127,-222,-7222,-571,-9370,5982,-7242,-1083,2099,-340,-6257,-3430,-1436,-3836,-8893,-4338,-9281,8733,6115,2700,-7904,1278,-8919,-8423,-1097,-7465,-7197,-1682,7362,8330,4862,-4729,-6661,-4714,-4488,-7300,-4385,-2171,-4774,956,5620,-2219,-229,4297,-3727,8866,-5126,459,-3165,-9566,6751,-8372,9576,-4113,3748,7700,-4094,-8938,2734,2498,-5249,-8881,-6385,5246,9947,4100,-6252,3349,-4688,-3305,-6778,-5971,-6422,-773,145,-7204,1022,1199,-157,-121,-4802,2227,-3138,-1217,4993,-5137,398,-2521,6418,4853,-435,-1883,-3953,-6186,-6646,-9820,-3621,1918,3343,8546,3,-3299,802,-804,-4118,-5407,-4678,2411,3794,5285,1174,-9824,-5428,-4157,9026,-8769,-9356,6196,-803,-5364,-1989,-6744,-4110,-9800,1254,7405,-4754,3583,1239,-3178,-2127,2912,5527,-1965,3032,-7633,9995,1402,-6069,-3062,6539,9705,-6515,-25,822,-1820,-947,1055,3629,1864,4031,8750,2867,-6630,-8690,-8707,4758,-8803,7802,-1568,526,6334,1315,3577,-4677,-8326,8887,-4345,2345,-1486,7763,7476,9870,8459,2954,2456,690,8960,-2641,9104,-4161,6949,2951,7520,4861,-9955,5574,-755,6233,760,-2773,-4144,2639,6051,-9888,8724,896,-3989,-1280,9791,2499,4410,9240,-1255,9652,-3061,-2309,7509,-8246,5875,3317,-2443,-5274,-9573,8009,8608,9676,-5940,6714,702,8280,4927,3886,-9695,-5094,7696,-2098,-5258,-7931,-2933,9386,7906,8320,4751,-1120,-3432,1661,-153,2611,-6551,7892,2588,-7248,3451,4337,98,3249,8391,1027,6566,9912,-7423,-8432,-9448,-3453,6906,-7981,-9812,-6782,-6971,-6914,-2320,3288,-7086,-1947,-5011,7005,-965,-2279,8510,342,6718,6837,4695,-2157,-1300,-3388,-7314,-999,-7837,4953,-9166,1293,-9708,-267,4467,8693,5377,4528,6613,-4743,7898,3678,7055,8563,-1214,6878,-3968,6198,-1224,-1491,2785,-8518,-5213,5830,4423,8769,5412,1451,-5614,-4345,-7716,8790,5020,-2331,-8243,7968,-9669,-9127,6886,-5544,9103,-696,-1039,9694,-650,-7788,-7797,-2149,8997,-3144,3897,9933,-4228,-6376,-3688,-405,9955,-3380,759,4908,6571,9647,758,-652,-4633,-5026,-9342,-5178,-9603,3968,-8066,-4236,-9754,1265,5531,3260,2487,3203,-6004,-2125,7371,4958,-4948,6017,4416,-1986,-303,-9738,4573,4158,5644,91,-4364,-675,6699,281,9877,-7978,-4083,-2502,-8578,-6028,8855,-6250,9706,-9810,-5935,7377,1263,-5029,-3334,-772,-6253,4983,-3879,-4666,7229,-6029,-9,-1208,-3382,4959,6286,-2149,3981,-6710,-2131,3914,-1471,8776,-3048,6989,-6911,8381,-2953,-2421,8884,-8436,-1500,8489,-5864,-9210,-931,-6758,3441,-7903,1849,-5153,8750,-6415,-7654,-5605,6515,9988,-4674,-9217,7502,-6959,631,7585,3470,6127,-112,352,-4587,-9653,2583,-2533,6000,-3569,-9838,8260,-2106,9742,2601,-3712,-2635,530,9546,-4754,-2494,8126,7704,3360,277,-8247,953,-5738,5959,-5757,7808,6217,818,-3316,2891,3981,-9724,-9312,-2782,4020,2891,9350,7153,-8871,-1311,8767,-353,-6802,-245,-6231,9557,-6226,438,8946,-2564,-3486,-7507,7025,-8040,-750,-5539,-8633,6510,962,2488,-8136,-8247,-8145,1256,924,-7137,-9093,7408,7786,-9998,-3535,7504,-9509,-3562,-9217,9589,4014,-3580,4368,4645,4576,-5846,1949,1408,9039,8705,2867,-3939,-3161,7128,-5082,-8050,3420,9331,-7084,399,7295,7096,-9064,-4059,-710,-924,-7509,5259,-3334,7039,2140,-7090,4379,-7987,-3123,1276,-1900,-4405,-777,6985,-1635,662,3528,-3872,-2697,1593,8273,-8640,8189,8776,-6693,-2465,-2323,-2667,-2930,-7925,5846,-3567,4573,-7444,-8100,-9282,-9092,-4835,8449,-5392,-1812,-6107,-4408,2089,543,-8332,-6407,-8052,9473,934,1200,7396,4430,4921,3428,-5110,-3909,7331,3095,-6771,8563,-4078,-6358,328,-2607,-6726,7190,-9621,-4656,-8341,-9216,-4997,-9997,-2795,-8393,-7294,2521,3543,9253,-3942,5020,-4298,3805,-5893,66,-1628,6065,-9432,6300,9572,2100,4221,3067,3856,7249,-4925,8082,-4154,9230,-2589,9189,-1414,9513,1473,-1128,6371,5862,-4677,1840,-8760,-2461,3933,-4113,-2897,-7621,-6680,3196,9304,3646,-977,-1490,2612,3323,8922,8529,-2564,-2512,-8798,6939,5124,7599,8530,4532,8447,-2629,-8304,-9130,-6669,2145,7397,8606,8863,-4547,-2855,3876,6456,-4661,2208,6670,-3974,-2486,2942,-1325,-4938,-2758,41,6211,5166,5108,5187,9622,1817,3192,-8461,-7989,8569,-1617,-7832,2320,187,5673,-660,4992,-8809,-1318,-1500,-8156,-9263,6979,9834,-206,7923,5542,-2920,4564,2216,2166,-9153,-8991,8652,-9157,8963,5510,2076,8877,-879,-5089,-8990,-2420,2064,3264,-6841,-6398,229,-8557,-6296,9627,377,-7930,8110,-8526,-2976,2761,6953,8502,1314,5671,-6482,1492,-2844,-1357,6627,9706,5452,299,9650,-8642,8444,-1963,-635,356,-3317,-2094,1857,7174,-1818,6837,-3702,6504,6079,-3690,-5628,8778,-8790,-1283,-6433,5309,-2892,8294,-4616,6962,3640,-5739,-2812,-9562,-7282,-2715,7334,4242,1142,-3980,4071,-3375,4245,2687,4717,-1316,774,8959,-6980,1421,-5017,4074,-374,-6579,-7122,7095,1330,3144,9783,-729,-398,-5052,-556,5231,7974,7343,-2172,-9755,-5481,4919,2784,7944,3058,6479,1189,4606,7114,6353,-515,7637,646,8315,2661,3752,-9180,3393,-4969,4082,9534,9470,6437,1009,-7748,8371,4063,-6280,4982,4171,7668,662,1777,-8559,171,-9064,5153,8669,-6855,5035,4367,-5033,5228,2381,4800,5185,5552,3442,-9866,3051,9135,-9453,-3947,3562,6309,2998,4712,6161,3179,-5757,-5225,-1154,6553,-8370,5069,9402,-2331,7181,1421,1498,-2902,9764,-7842,7773,-3036,1658,-4017,6060,3655,3089,-7852,3884,5318,6833,-3071,-3058,9208,-9353,-7509,9835,-8095,5584,-7750,-1258,-2135,-9564,-6328,1335,-6338,2847,-8163,6397,-534,-7309,-2662,-9845,-8627,-9425,944,1632,-286,-5096,1649,9400,-4181,-7320,2591,-5804,-3591,431,8889,9154,-9423,-425,399,-6461,9161,-7785,-8064,8572,-762,-5099,-2884,2160,-443,5104,-9199,-9491,-5297,-2868,-3113,1631,-6110,-6163,6026,-5239,-7355,-6658,-9594,3579,8996,-9850,6278,-3616,5921,4534,3925,-4378,4200,5794,1419,-6895,8608,6147,-9401,5217,-6658,1463,3671,-4492,3207,-8376,-9056,7565,7743,-2050,3778,-6468,-1059,-6285,8924,-8666,5602,-4783,7723,2298,7717,5518,7228,904,5140,-9601,9885,9112,-6761,-4257,-4802,-3491,-5582,4585,7446,-9468,150,-1844,2168,1590,6403,-7516,-2907,240,-5844,5246,376,2897,-7047,-6554,2245,7131,-9042,5873,-5747,986,9329,-5762,-1145,7950,-2406,-128,-4976,-4319,5812,7678,8642,4408,-4521,-4967,2180,-6000,-4609,-6708,1677,-1730,7024,7836,9342,8621,1435,1337,8165,-1409,2157,6170,354,165,-7384,-8533,8864,-5718,-5365,-9451,165,3642,5632,-3809,6680,3055,-9081,-8614,-8114,-9869,7134,-5077,2293,4594,8318,-8077,4241,8664,7374,-686,-6939,9758,5486,3381,15,8751,1936,-4458,-8677,3814,1923,6240,-4833,2969,-3750,-2272,3629,2084,5919,-5527,489,6421,3903,-681,617,1701,1766,-8589,-8906,-2950,-4037,-1652,-9533,2972,-2523,2289,2800,-9868,7666,4701,-665,6401,9079,3160,-6927,2971,-1692,7920,-4379,-8845,-173,-5276,2236,-9924,5313,-7237,-1274,-8418,-4087,-7286,-743,-9054,-4762,-3172,1056,4142,959,-8778,-4870,-5585,7959,6467,9844,-1921,3123,-6658,9077,-8169,9296,6447,-7033,7220,-4699,2148,-8017,-8290,-9950,117,-2478,-6239,-7350,-5711,-5377,-3885,8740,9776,-6691,-1735,-2527,-2844,1286,-9646,-9456,-1608,925,-5773,-8960,214,3572,-8852,-4192,-1010,-146,-3983,-1590,-4908,-5530,-5417,3779,6078,-494,3232,-8270,6794,2319,-8778,-4781,-3446,-5903,9779,6902,-923,4850,6767,-1508,9134,9014,-8410,2419,9144,-8976,6191,2606,-7155,9349,-519,7896,4213,-1358,6393,7805,-9699,644,9229,8997,-4394,-3068,-2602,-5473,5769,-1464,-8298,-2241,-2066,3486,8675,-5807,-5083,8000,5744,4494,5783,-5991,-8745,9748,4153,-6591,1046,2880,-5323,5901,7937,-2530,7909,1357,-8799,7038,-8631,7179,506,-7811,-4319,3260,-5579,6278,8062,-286,-6648,-9187,-5496,5108,-9258,1242,-3747,-2588,1305,3351,-6055,-8686,-6226,-6653,3986,-1052,-4906,3501,-730,-6141,-3641,-1975,-9741,-2085,-4952,-2882,-9330,-230,-3915,3057,8201,5062,9230,-9996,6497,-3307,1600,1035,1422,6253,-6172,8231,2320,-6093,-7344,-1486,1575,-6560,2206,-4825,-4262,4947,8829,-1341,8977,6125,-7952,9425,-7942,-4641,-6287,-5203,-8896,1544,2172,1979,2317,3567,-5069,-8768,3052,-8152,3198,-3652,2186,9692,3839,-5882,9943,9864,1883,-3275,9359,-6274,-6673,4358,423,-638,-4112,7435,3088,-7386,-8037,7353,1695,2797,-7669,5341,4281,-6750,-1622,812,812,47,-7181,8115,-1908,-2531,5675,-4950,7043,-9988,6927,1067,3282,-861,9371,7720,-9481,5195,6893,-1113,8962,5500,-1434,3008,5539,4776,-3927,3555,5963,-7148,-6404,-2724,966,749,7892,-382,7730,3190,2031,8858,4168,-1630,-3028,-3079,9902,-8872,140,-5858,-3257,5880,7137,-7590,-9964,-2096,-6432,2723,8013,-439,4212,6955,3220,4632,-4780,-3505,5676,2073,1207,-1622,7312,-2072,-4566,3299,-8512,8942,-7427,-9303,4691,-6527,-7891,-7342,7477,-1402,3257,-3207,-4006,-8205,-1719,9013,-7405,-8363,-4195,-411,6859,6292,-4096,-3382,6473,-8965,-6905,7000,-7167,-2991,-128,-5222,7250,9056,8039,6806,-7898,-3732,1071,-1346,2382,9089,-9721,-8386,-5867,778,6318,20,4276,-2515,2659,-5585,5872,9134,2854,-9964,859,4343,-3954,5503,6911,1186,429,-1752,1330,-6152,6166,1580,8109,8159,-4646,582,-9198,3686,-5993,-7827,-7854,3090,-2907,-3397,-8114,-7095,521,2073,-2968,5736,2792,-3315,8433,-9445,-3720,3403,2896,1991,289,-9399,-9795,7982,109,6265,2551,709,-7901,-4564,-2852,1325,5432,-2111,8894,-2226,-7147,1577,-7725,23,4555,-7576,7314,-3008,1288,4601,-3928,-3,-3133,-6374,5848,8170,-6884,7316,-4826,-3132,-7237,6194,2452,2632,3009,1970,1908,-5722,-8526,3483,1330,-2185,3817,-2095,-3115,4239,292,4003,6814,-5826,1662,-4541,7411,-7652,3920,-9500,-9469,-1075,-8060,9754,-1029,-2714,6139,155,-8194,8797,2490,-5687,-7374,881,-9216,-8803,-7266,-579,-9530,-6131,8658,-2626,1010,8150,4167,-8241,-1474,-1865,3715,8047,2158,7718,7790,9105,9064,4558,-8872,-3096,-9510,2720,8201,5360,1395,4418,-3709,1780,-4521,-6676,6492,5116,2432,-9994,-3271,1885,2259,2904,5199,3630,-2769,-5759,9542,9425,8761,6719,240,9348,-3069,-9827,3378,-5129,8791,-4923,-8047,2661,7982,-8697,3567,-2663,2343,-6093,213,840,4574,6448,7982,-6522,-4596,-1009,4781,-9845,-8283,2536,3510,-2731,5811,2843,4298,-57,7307,1789,-5650,-4715,-7861,3972,-1398,266,-5305,-422,3542,-3694,-2616,5938,-7409,8011,-6399,-3766,6589,1307,-5955,-6756,2443,-4990,8680,-2127,-7601,7789,8732,-5861,3196,-3134,3323,-8332,-243,-5378,6672,-5590,333,-6407,2482,-5142,-380,374,3233,696,-843,-5639,-3689,-6837,-5641,-4174,2409,4096,-6071,9110,-8786,-7028,6765,2370,9747,6059,7162,-1077,-4127,-2661,-8009,4497,2524,-4605,-2358,-1968,-3029,3993,3688,-8907,-9836,-4356,-3768,-3178,-2484,-471,6715,3233,1502,-9681,-6759,2400,1126,-685,1045,-9185,3840,-4048,-5646,-4789,-3952,7291,-687,-7478,-4651,-2760,-8782,4230,4320,-7706,5813,-909,-7791,-656,8481,-7421,-6225,-864,-2798,7478,-1806,6725,-279,-6301,-7205,5147,4321,-915,-2902,7280,-5172,-9013,-1882,6280,-7638,548,-4226,-2130,1391,4500,4192,-1820,8908,-4531,-3722,6735,5445,-6440,-7972,318,1915,-3638,-5552,1614,-9567,-1570,3864,2214,5279,731,-2473,-8495,-7177,-2082,7405,5513,-8767,-6483,2,9782,3103,-6348,8616,2314,-9722,-7722,6304,-9185,9924,2469,-7968,-6554,-5030,-6574,-8798,3350,5340,-329,4426,-2431,1554,1973,-1245,8849,3511,-6489,5507,2226,-3277,-879,-1879,-5505,1008,4568,-3718,7064,3952,-8984,1257,-4,-1061,6629,-8706,5594,-6373,2232,7349,4611,-3973,-1376,9607,3640,-4849,-8025,5976,-9368,3449,4065,-5759,784,-1603,9762,7765,392,3778,9379,8977,-8610,4020,6964,8698,4821,-5226,4982,-1339,-2616,6403,-5715,5941,9297,-6488,546,7533,3819,-7948,-6255,8528,-709,6015,-7697,-3145,-2152,9393,8306,4054,-3280,-5849,-1466,-4826,-8646,-5541,8613,5062,3338,-2605,6914,8490,2843,3793,1070,-2518,6178,-613,-3488,-9606,2279,-3226,-594,-4380,160,1494,-3944,-3542,-2922,7187,5854,7711,-7955,4452,-7568,6274,-4801,6213,-5849,8254,-7005,4793,7791,-2377,-2934,-7314,7997,-9437,5052,8025,-4811,4749,7539,-7022,4052,-7223,2145,9021,-3526,-5994,-3373,2496,-9916,8035,-349,2112,9740,-7940,-5183,-4602,4408,-4877,-5493,2049,2973,9429,-7761,-1653,3517,-9610,-5526,6367,-3975,-8274,9751,-839,6569,7841,-6069,5688,-8222,-31,-3483,-6806,-674,6468,-1638,-1066,-2260,-157,-4871,971,2955,-3108,-7465,-3156,-7609,-8526,955,-5536,-4373,5973,9754,5137,9866,-1436,9563,-2097,9515,6498,-1526,6431,685,397,-5435,-6438,1671,6117,-5195,-2847,-9798,4668,5119,8892,6097,-4502,4403,-2005,-6203,172,8801,934,5912,3031,2138,7729,-4118,5808,-2745,-5486,-691,-2890,-4403,-811,-8916,-7895,4199,-4,-2271,5403,8303,-2128,4432,-2569,9467,-3800,6953,-1436,-5103,-9259,1952,5093,6667,2588,6185,-8793,9113,135,-5108,928,-7414,3866,-875,6793,8031,1404,2718,-7492,9963,8328,-6659,6781,-2127,-8491,4347,4504,-9153,2302,4516,758,-9166,1000,-2342,7551,-2680,-5087,-846,5712,9041,-3347,2733,9238,-3179,4153,3107,4862,-1100,7088,-6800,-4021,6996,-911,-4897,-5240,-4782,-6562,-6692,-2677,-1586,7955,-9895,-7044,2052,4471,-512,4045,8968,-9345,7610,8441,9195,-916,-2397,-6211,-2934,-891,-8951,4219,6842,-5425,3503,-6581,715,-7972,-7761,-6886,2524,-2508,-3272,1799,4194,5617,8999,8536,2519,-3036,902,-8311,-9253,-2440,-9003,-3301,3258,-1847,7419,5197,858,803,-7166,2466,-8809,-5417,1861,-3322,-2762,-8945,-3709,7748,1756,6062,-4761,-2888,-8840,-4589,4594,-525,8523,2198,1084,5417,3411,-3166,8108,1734,4136,-9926,3517,-3782,-1125,2015,8057,6463,-7737,9225,-8125,6580,9656,-944,-6278,-8787,3213,4662,2646,2165,5278,2702,-7673,3783,3936,-7128,4637,9588,-9889,8477,-8873,-2130,6770,-1908,-7783,5852,-5974,4180,-5455,9161,-8758,-5348,-6875,443,942,-5059,-1791,38,-7429,-9168,1434,6174,-6734,3215,-8513,-7637,-4644,-5544,-2749,-4810,-2404,-5333,-8086,235,-4205,2897,7665,-7377,-3490,-1142,-3186,-8358,5289,7902,-2824,2320,-2547,2284,-3480,6928,-3007,-9524,2121,-1407,-4992,122,-1921,-4829,1189,2660,7460,-4684,6414,8647,-1322,1711,-2817,3234,8262,3020,-1564,-4014,-6892,-9443,2538,-4652,8530,-7299,-6173,-7829,3616,-5887,-6386,849,-4288,-9218,4745,3111,-3781,-6465,3947,-7397,5363,8193,2724,-7796,6782,8709,-4418,-6448,2592,7649,-1553,7002,-1815,-6817,-2236,-2226,1676,2870,-7079,-9369,-5706,1365,1276,-8515,6097,5137,8570,-7929,-881,-4894,6464,-1685,6249,7272,-5770,4849,-2681,-6479,-8538,4614,1201,2437,29,9079,6209,-209,-7087,9284,8026,-9103,2839,1921,5763,-9669,-8509,8732,367,-4407,-8445,-4741,4851,7862,7818,-2643,-7359,4909,3970,-9314,-8119,-753,5282,-5869,-3152,-7631,4855,-5074,-4442,8239,6638,4350,1459,-5068,-6573,1972,-4393,-7331,-2577,-729,-4845,2017,7011,4364,-959,-8149,-3922,7678,-4227,-5046,6483,-4297,-5733,-7608,9142,2528,2213,-2827,8303,-1724,2798,-7801,-8774,6513,-7679,1161,4154,-8668,-4744,-4041,-9588,3369,5695,5018,2958,9525,7000,3892,-9197,4464,-7669,5937,6974,-3932,-9750,-7769,6549,-8262,1917,7484,4856,-4708,7455,-5786,9446,-7814,-1679,-2921,2918,-4789,-6620,-4092,-1242,762,-751,4508,-3295,5801,-6410,-6924,-5478,-1974,-5012,3158,5349,8333,333,5284,-316,6964,8116,-275,8383,-8080,-9646,-8521,-2609,8858,-8835,-5685,-2545,7872,-960,-8244,-6074,9945,676,-4651,9952,7867,5585,4133,2911,4999,1663,-3467,-2338,-4175,5210,-7411,-4935,-5931,-634,5438,-6985,-5698,385,8165,427,8547,2657,5613,1916,3061,-3575,5809,3632,-7101,5788,-5309,-7969,1959,-686,-8732,-1462,-3515,5591,-4462,-9611,4011,3858,-266,6487,1409,-5160,4331,5376,5129,-6471,-6487,-3279,6236,5701,2938,8064,3071,-7593,-4512,-713,2563,-7602,8367,-7421,1414,6874,-1361,7580,-6868,8724,-5358,-4316,-8225,8474,-9598,3386,-3825,616,-679,-2793,-805,6629,5987,-1178,-1428,-1460,-8569,-1691,5176,-8727,-4336,-8833,2392,-7467,3665,-4465,-8757,-4595,-8980,2316,-6974,3027,-5729,-4814,4225,-5725,390,-905,-7806,-3151,-8669,-106,5501,-1221,4073,5736,-953,-2112,7477,-2799,2428,3640,-5483,989,8908,-8603,-5127,-4508,2506,793,1373,-7572,1829,-7251,5323,-7183,-234,1297,7571,2804,6737,-4289,-4887,7687,8625,-7101,-6393,-4637,358,-9560,9572,-7814,-438,-859,2247,3038,-9962,8720,-6701,-4417,5264,-3978,-4423,-4384,-6552,-439,1104,3230,5642,8873,4048,5095,-9784,9156,-5956,-1452,-4312,-8149,-58,4516,3733,8106,5851,-1432,9988,8118,-8511,7188,-7294,-4338,-9562,288,8255,-7702,-9860,310,9593,-160,-7571,-1285,-6809,2275,-7915,-1967,-1608,-8793,-6884,4698,7809,-3093,-6813,9131,3944,-9625,-390,1499,7318,9036,6896,-3907,-759,-7296,-7585,-3333,-5526,-9042,582,-9952,6574,-4987,5841,7635,-3346,5771,8886,-2602,-6354,4022,-9492,8763,2261,3591,461,428,-8271,675,1887,-8609,-3767,8976,-4259,3667,-4695,-205,5119,1897,-9653,-1114,6130,-6533,2208,315,-3959,4990,-3589,-1939,-9956,5926,-3508,6826,8438,5405,-9155,-9329,-3671,-586,1574,-4330,4704,3992,-6624,-8364,7033,24,354,-7210,1603,6880,-3597,-7495,8600,589,9355,7443,-2842,8014,-7030,-5312,2675,792,-3345,-5788,-8767,-2994,8400,-9664,5606,-9846,-8008,-5135,-9389,238,5419,-4583,-8420,-4244,-7978,4570,8704,497,-7189,7713,-3846,5772,-7605,-5891,-2306,-1963,-7997,3184,820,5823,9568,-2014,-9268,6597,-8029,-720,5269,-8558,5692,8936,8937,1825,7644,1567,7699,5597,-2281,-4826,785,7868,-3714,6509,1008,-2726,5531,2341,-6583,-8658,-7541,2871,1464,-4168,-3466,-5268,-5702,-2481,1638,-259,-6843,8735,7379,8068,3952,4024,9874,-6218,-9476,-1097,1880,2251,4489,-9032,5889,-8965,-3734,3572,-7699,1676,-5934,-4251,-8582,-7461,922,3548,9796,7162,-8397,-2315,4959,-996,3697,-6880,-7281,7142,2375,9562,5697,-6446,6549,1863,-854,1081,2916,1204,4577,-6530,-4141,9311,8719,-9403,-2097,7266,-1745,9295,-4169,-2200,-8777,1792,-1136,6870,1733,-7164,5145,-1540,8097,-4698,-8286,-952,6399,4862,3336,269,-2039,-4828,-5177,9431,-8158,4323,3675,-6520,4964,3512,-6676,9696,-9477,-5407,-6708,9225,3924,6013,-2274,-1815,-8104,-113,6630,-4381,-7570,-8549,-7980,-696,-901,3285,-330,934,-2594,-9612,9207,-3118,-114,-1073,-9222,-5520,6705,-2014,9319,-6517,7654,6042,2898,7825,-2696,6208,9700,-8518,7710,4014,-1587,-6731,-8473,-7003,-6986,7888,3089,-9869,-6042,8758,-8870,-2596,-8409,8234,8702,1373,8170,-7380,3358,-2329,-1080,-128,6425,6553,6972,6515,-4398,7622,-4363,-4666,-3028,-544,1504,1018,-8489,-2814,4079,-6346,5719,553,-2315,9174,7687,9577,-1305,-1677,9113,6278,-2227,5325,7743,1567,2132,1197,5525,4962,-6054,1807,-8170,-2086,-1064,2469,5788,-7946,3859,-6154,9394,8083,-2143,8894,9787,-5897,8752,1565,-6230,9021,-837,-896,-1847,-6239,2206,1497,7774,-7167,-7841,-8399,6353,-4557,2249,2382,7863,6044,3864,-8081,-7399,-3678,-5947,-2522,-7169,-9867,7146,6370,-8405,-5291,-7593,6828,4237,-2514,-2250,7519,7969,-2386,881,-1182,-43,1157,-4819,107,4175,1792,7023,-1035,-2822,7628,-9983,-9343,6705,-7175,-8659,-6104,1481,979,-8777,9812,-8217,-5138,-7119,-3306,6625,5501,-8508,-3753,7677,-681,7521,5529,-6757,-9572,5746,5384,-6773,-4169,-6390,-1740,9476,-8896,6359,-5944,-9007,-2392,-1395,1035,7919,-7193,-2681,5144,6241,2072,2989,4573,6044,2209,5233,-3140,-5947,-1040,1271,2817,7558,-4232,7409,3531,-8732,-6554,9270,5428,187,-2699,7215,-7570,4626,4681,-4018,-9173,858,6246,3629,-2241,-9923,-3410,461,-432,5330,-5042,-4397,-8735,-7462,4578,6685,3098,4081,9807,-932,2523,2656,-2440,5614,3195,-2352,8675,5605,-7700,-7977,-9341,-5385,8777,6790,8317,462,-3942,-7020,-9880,4683,1076,9107,-3786,5081,701,7190,-1318,7530,-2644,-205,7871,-8445,8705,9345,8391,1027,2466,-1174,-3519,2862,3394,1513,662,1344,992,-1723,-1704,-3381,1281,6476,2682,-3362,-8311,-2108,-1745,9067,-6769,2530,-6520,-9412,9438,-7699,9204,-1781,-3821,9586,6330,-6770,3044,140,-4667,-8510,-1820,-1192,-3609,-5563,7089,-2333,3559,-2268,-8317,8032,5659,-8560,2282,6954,-1003,1936,3291,-7986,-605,-599,-7248,4142,-1280,-5785,4686,710,-6672,6661,-2769,3326,-1885,3251,7231,3938,6461,-1595,7273,3075,-4029,-239,-9013,7656,9403,4901,6463,-5520,9354,-8583,-9448,-5336,-3864,8526,8798,-5419,-9139,9182,774,7876,5627,-2724,1771,1813,5094,-3393,-583,767,3179,-8573,-8637,4491,5509,-6151,-8320,941,-3131,-2980,6071,-2646,-575,7371,-2893,9143,2062,-1999,-6069,-922,2829,2338,-3468,-1258,7960,-5793,-9071,404,4625,7737,-3291,8176,-963,5059,5229,7805,-9296,7727,3656,6916,-6115,-1619,1138,8682,-3183,-2659,-2220,5568,5574,-1939,-993,-6283,-8325,9698,-1167,-7543,2243,4141,-3236,101,-9007,-546,-2029,7903,-9824,-4346,-7122,1847,-3261,-3693,-1938,2244,-9249,-978,-438,2268,7810,-6583,-9603,-2453,7043,4293,908,9232,53,-1410,-9839,-1686,2101,5955,-3009,-2364,-3554,-9045,-1816,-4054,1305,-7869,-3193,4649,2160,4054,-1083,8906,-3444,7976,5881,5829,-1866,2770,-1311,7817,6131,-4727,7827,-4492,1427,-6790,2903,4404,-6207,-9327,8161,-8934,2284,-1886,-9398,-3351,-3644,-8368,3544,-5460,3484,-7655,6697,7687,5984,6169,-7892,-662,-4837,1454,3296,-252,112,-9295,-3864,-4715,7346,-5324,-1000,9291,-7600,-2315,5741,-1264,-6823,-4614,-575,9196,-8646,-4772,-6615,5074,9886,-671,4074,-9330,6392,4714,1642,-6949,-7347,8313,9499,4463,8069,-8801,2079,177,-2109,1339,7381,-3042,7372,698,-5598,-2829,6211,9114,7943,-4758,1964,5970,3286,9249,73,-4448,-8519,2443,3921,4574,5742,1173,-1210,-2767,3860,-2713,5450,-9125,-5859,-9333,-8540,-7139,1312,8010,5565,-761,-7561,9937,728,4444,-5737,6469,1049,-343,8876,4055,9778,9849,-1458,1457,-6976,6171,-9031,-4145,-6107,1315,-1413,-9745,-2931,-9292,-8536,9273,-2032,6231,-860,-3278,114,-5712,163,3392,-3619,-7469,2737,-6477,3321,990,9698,8527,-9689,748,-6176,7039,3857,-948,3208,8170,-6132,2448,-7106,7671,-3943,612,-7668,-2195,-6559,-4767,286,-7337,1626,1588,5337,-3155,5232,-3189,-5785,658,-9660,6900,-1587,8640,-2775,-795,6926,2342,-5,-5946,-3900,5972,-2652,3347,5085,-5355,312,-7027,4600,123,-6483,6724,-5721,-5531,-1279,8392,-8710,4879,-3434,-8051,-1922,-5350,3101,-9930,2213,-1281,2288,9808,5449,1404,4294,1960,-8424,-3465,2727,7023,-2722,-9826,-7757,6312,-2126,7641,-4832,-2010,-1170,5036,-8430,815,-3703,-48,2645,3122,-9126,-7507,-1968,8344,-7686,-3057,-8705,-3396,-9259,5985,-8528,-7670,-5805,7254,73,5776,-9209,-5783,-1797,3024,831,7374,-9692,3455,-3634,568,-6473,-199,8429,2921,97,-8351,-2345,-6926,-1787,-7427,-6698,5713,5807,-6705,4626,-8487,9954,1271,4996,1081,-8178,1925,7099,-9842,6865,1042,-8988,360,-5161,-5543,-7802,-921,-5387,1009,6954,-2497,8005,-5593,-7501,4525,5037,-4491,-8961,3047,5852,3406,7952,-763,8039,1860,4281,-5461,-7480,1925,1899,-1987,6045,2537,-6328,-7354,5546,-1379,-7310,-2029,-8487,1823,4852,1491,-401,4390,3908,-2726,-2450,-7304,-9431,-6317,1975,4982,4642,-895,5780,-4362,-1168,-9763,2331,-1472,2383,1101,-7083,5653,-8165,3839,970,3248,-2947,-5874,703,3476,-156,-6662,3093,-5,-6523,-4190,-1484,8860,5221,-7498,6860,-3086,868,4254,-3059,2159,1113,816,6412,-5648,-9672,-2801,9250,1298,-2853,1358,9912,9900,-8284,-60,5008,-3908,3902,-4810,6548,2986,-9552,-9222,-9710,5310,-4724,-4098,-9351,-9110,-2832,-2006,1187,-55,-529,1862,4061,-7158,7413,-9261,-325,-9901,1061,-3782,8914,-8280,351,-2450,-1823,-3210,-2411,-1422,-8318,714,4040,-8062,-3881,4352,8010,-7648,4596,8143,6320,7194,-4553,-4290,6740,-963,-9681,3038,-6398,3366,3510,-9517,-5906,-362,6629,7952,-8616,1132,-788,-7457,782,1585,-7155,5592,-2987,1910,4314,-1999,-2414,-7384,6576,-8390,1348,3258,-99,-3870,-5812,202,-9832,-1551,2851,6185,7523,-4196,3546,-9054,-232,9439,8433,8295,-2879,8884,3236,-7605,-2793,2028,-5559,7983,-7284,-3927,7707,2086,-505,-2133,-3068,-2395,3329,-5461,3022,4667,9446,7451,-8518,-5415,3895,8541,9030,-4575,-1865,-8505,5586,8748,-1529,-5917,1718,1456,-5835,-8666,4044,5609,-1069,-3555,-9452,-9633,1003,-7394,6574,1763,-7719,3555,-1359,-9914,-9627,882,-9134,9734,-5661,2091,2381,5784,-6022,4793,387,-4490,6181,-6781,-4589,6446,9879,-425,-7879,-1771,4510,6974,-1835,3733,5518,-6734,-9515,-5607,1923,-2597,-605,-2481,7912,8248,-6638,-8481,5917,9133,-9050,1572,-4653,-8240,-7116,2146,8582,6112,5351,-4272,-3475,-4047,-684,-3702,-3572,-4353,2214,7021,-4102,3630,-2071,-8122,7287,1897,8170,-2138,3865,-2738,-5867,-9922,-9777,2445,1483,-8183,5393,902,-8189,7097,4203,-6176,1024,-916,1270,7336,7870,-3644,9614,-6522,-9958,7242,-5058,-363,9876,466,-6132,1163,3569,3669,-4237,3909,-9490,-346,2110,-3922,-2898,189,-9854,6892,652,-1961,-2489,1618,7043,-9027,1116,6482,-5489,-7141,-4349,-8590,-4018,1511,-9813,-9341,-6308,-4259,4089,4223,-4854,1454,221,5313,-5092,4962,-7677,2064,-368,8100,-7055,-20,2936,-8580,-3511,4977,-8719,5298,445,8857,-6167,-4523,-6847,3290,7165,-8593,-1776,323,-3558,-7687,4363,295,-8532,4355,8546,-4527,-412,8134,4435,2683,4314,-9505,5013,-7756,-7546,5546,-3757,-4913,-3521,-2647,2701,6742,-796,4773,-6386,3823,-3802,4715,7061,1238,-1800,-7354,6533,-456,-9104,-6970,7540,-8457,-7276,-3009,-7725,-2656,4640,-3108,366,-4186,2043,53,9691,6286,-8968,7086,9794,3334,-1856,-1826,4120,9684,-3306,-8682,8840,8420,-7029,-66,4833,-2213,-7106,-2014,5134,9482,5530,8663,-5544,6623,-9684,-34,-2052,6199,-4830,-8873,1266,4948,1083,1749,8231,-8474,-4904,5901,-874,-6748,-63,-1577,-9126,-9894,3425,2789,3157,4785,1992,1174,-2679,-7984,-979,3651,1143,-2815,-2561,-7997,-4842,-6823,-8433,5570,8167,-8654,-4982,-4730,5272,686,-1938,-2834,-6106,1281,-6914,-5042,8781,821,251,2225,9771,-4950,-655,5134,1870,1136,-7749,4492,-1044,387,1616,-9402,864,3235,7544,-4197,-4708,-2608,-5224,-8987,2785,8234,-9904,3635,3761,-4254,-4117,-3681,4043,7572,-614,3199,2150,1390,-1581,1044,3982,-2108,-7766,2774,7967,5964,2001,-5033,-8184,-9081,-5560,-8985,4465,6377,-8783,880,2448,-1678,-5988,-5796,-1873,-4701,-7991,-9675,6823,-5458,8124,9760,-7444,259,1793,-8583,-7985,-7249,1021,-250,4892,-6351,9391,4139,-4641,-6977,-4276,8795,-5787,-6027,-4192,-8782,-4118,6951,-1651,9843,-4757,-7778,4327,188,-804,-9555,-9498,7211,-9064,7364,5871,3263,-11,-5957,-8225,3816,-4137,4425,3747,-2432,4501,8086,6512,3262,-2718,8593,-4643,806,-6649,-5730,-4343,-3375,-6789,142,7679,-4935,-8270,-1215,1748,-4905,-5702,-9119,-9325,5814,-2989,4121,-5128,-8120,-407,3858,5192,6793,747,8285,2943,3061,1046,-7491,3891,7103,-9052,4510,6430,8748,6907,-5461,-6681,-5757,813,4829,-509,7747,8110,7196,3908,8921,5349,2948,-8435,-535,-2928,7940,6905,-5707,-5622,9155,103,8241,-2078,-1822,-2359,-7283,1261,-8187,-2481,-8389,-5640,-7734,5232,4486,641,7330,-4762,-8746,-7630,1254,6454,8391,-2219,-1072,5078,-867,-9894,-7800,-2557,2664,729,-963,-6015,-4750,8194,8466,4410,-2773,-9549,1982,-5819,4563,-5580,1704,4422,6002,-1329,9334,6494,1400,1151,-5480,6524,-1856,1199,6510,9934,-7442,8942,3086,-5445,9189,-3726,9905,-3561,-112,7840,5043,7394,7803,-9563,-7606,-3899,4071,9943,1022,-8870,9161,-5428,-3111,808,3046,-395,-5880,-4950,-1303,-9587,9194,9215,8190,6280,-6508,8997,8583,-3710,9592,-1931,-3191,5335,456,9925,1819,4599,-6469,-1951,8230,9904,1935,2521,-7032,-9082,556,-1539,6655,1171,65,1527,-9031,-7268,-805,5405,1948,-9050,-5196,5629,4408,3036,5693,1282,5108,851,7228,-9093,-2052,-5578,-14,-190,-2045,-4959,-4778,-3273,795,5382,2157,-8283,3787,4656,-9856,-1255,5296,-6554,5391,6199,9262,-8950,-485,5016,-3245,8829,1154,5284,6349,5649,-2004,8094,8753,1936,-3318,1126,-626,-2954,5260,9195,7978,3132,-6909,-3628,6358,3581,-2519,-9720,-832,8333,7205,554,7361,-6697,-4770,6898,1472,-2845,-9202,3405,-2556,8770,8806,8171,2576,-8641,9970,5540,9867,-8241,1048,6466,-6940,-7517,6412,-3080,-5817,-9208,9918,-5949,2948,4648,-6490,-8363,1435,8390,-9534,3814,2610,2858,-83,3135,2400,6580,4596,-1220,-2275,-1825,786,-1169,6220,2855,3622,-3062,-6522,8071,1111,-4497,2752,-6243,-7217,-6218,5608,-3230,4614,-7103,210,-5060,-3611,-2108,2203,5614,-8618,6328,-3767,-4506,-4799,-9499,6104,7301,3582,2600,-2176,9261,6908,-4667,5761,-7584,2540,-3877,4188,-8435,6887,-6665,7176,5740,-2674,-3576,8192,4010,-3784,-1680,6601,6972,-8643,-316,2553,3001,-452,-64,1022,-3797,-6193,-1299,3136,-4675,7567,5736,1353,7662,-5978,-6857,-7898,908,7539,3308,7583,-4224,-35,-2202,1066,1531,5141,4131,1077,-8492,-6241,6544,1362,6365,-3833,8112,8498,715,-1628,726,-583,906,-5051,443,-5990,-3425,-4008,479,-1708,5301,1585,7342,7613,-4426,-3716,-9817,-3941,-1647,1288,4845,-1432,2929,2600,9901,7734,-9398,-5410,6565,-635,8935,6727,8861,-4258,208,300,-1678,7278,-6719,7843,4630,-6699,-6388,-5160,3184,9718,-1262,9987,7996,9418,-8209,6107,6665,-4655,-8191,6654,-4575,-2074,-7352,-6222,2748,-8514,-4942,3648,-453,-2237,3721,9921,6558,-3106,-1258,-1708,-5198,8956,6278,-1993,-1672,9091,-2986,-9740,7011,-7455,8542,-8087,-4211,7598,-1072,7596,-192,-3244,-6089,-2918,911,6209,2044,-7685,-3236,9556,-1799,3192,8815,8794,4367,-9895,-2384,-7650,-7099,-604,-284,-4086,5514,-7488,365,2298,-4225,2192,-1883,-4209,-4634,4277,-5255,-9837,6007,2350,6448,3037,-9087,3048,3693,5357,-5583,2098,456,4526,-3342,9054,8426,5772,2419,-1273,8566,2089,-1628,-9189,3231,-4729,-8959,8428,-473,-2946,-7987,-2137,-2186,8675,-552,-5965,758,-9140,9244,-6616,9235,-1688,-2503,-2546,-8341,-2914,-1712,-6392,-3616,6294,7326,-2316,-5203,-7395,-8499,6339,-7254,8783,3259,1359,3836,6328,6602,892,4194,-7117,-7445,-5456,-7258,3274,-270,7045,3721,2286,3840,-1113,-4509,-1319,4685,-1835,9086,-2634,7635,6387,8783,-1978,7064,-2563,4894,7217,3748,-3231,4361,3702,24,6323,-7996,-6893,626,-3000,119,5573,7610,-5211,2706,7420,1122,8405,-5366,-9120,-8219,-7599,-62,2744,9419,-8865,-8566,4848,-7239,3768,-6448,-4735,-4616,8351,-9919,2872,-7155,-6578,8192,-1840,7365,-5250,-759,-1745,2959,-9005,9251,-7462,-196,4743,-8435,2929,4411,4919,-2819,1261,-3777,-8139,1903,1688,-2198,7667,9176,7011,218,-3672,-7884,-8171,-4704,1242,-7884,893,-2981,3538,-8089,-1477,-6054,-4895,8416,8191,5968,-2379,1209,-2759,9177,-2504,8399,7851,-6212,747,9900,6651,-7384,3086,-9337,9020,-9226,-353,-2190,-8799,-1254,779,5869,-7674,7383,-266,6705,2497,5912,9723,8814,5941,8069,-3208,4217,-5348,3986,-6605,5564,5944,-4312,-1028,2851,6058,-5646,8864,8828,9449,-809,-5618,6872,6149,-8903,-2128,3963,856,-9867,9225,2992,1906,9,6300,-4482,-6279,-868,8616,-6851,-7004,-5349,-4191,7513,3080,3606,7870,6125,-252,-8729,-179,-9255,-1548,-1192,4983,9656,809,7227,6049,-7158,-3049,-4537,734,7155,2912,8411,-1112,6039,3440,-3157,3197,3504,5851,-1598,6486,1393,-7050,513,-2724,3617,-5080,3668,2655,-3324,478,5445,7798,6136,3941,-6223,3777,-3095,5541,6906,-8944,-7470,7974,-7965,-861,-4447,-332,1866,-2287,-7671,7922,7379,9887,-6722,7906,-4747,-3539,8025,1241,165,-7722,-6820,2087,2712,3951,1712,3642,1893,3177,-1900,-8073,2199,9396,7578,513,-777,2942,1000,4281,7240,-1440,-6276,8774,2583,-7470,8471,-9278,1275,-5419,-428,9852,-2199,4286,8141,9333,4613,-6383,1903,-451,9459,8637,1206,-6938,3705,-7304,-78,6373,5938,3667,2448,2454,-3796,-1943,9589,9881,873,-1109,-9225,9718,3235,9176,-6191,-6526,-4415,-1034,-4859,-7611,-5813,-3719,3250,-4135,-2153,-652,8579,-6805,6924,9830,-9368,6271,-6111,-8107,5048,-7068,3706,6949,913,-4632,-6830,-3368,-7528,-8740,-2539,-130,-3331,7013,-3202,-4808,7378,7586,-317,-21,1954,749,-3946,9031,-1430,609,3849,-4436,1657,-2136,-6731,-3006,1468,528,-9560,2068,-9724,6748,3988,-4856,929,2716,7252,4584,6392,8486,959,2890,-2675,-1392,-7688,5556,1953,-5827,-2992,5935,1070,-9817,882,-568,-960,-4619,5841,9328,-7022,821,-3475,8581,-1222,-8915,2232,-71,-3894,1206,-559,1170,-6638,-808,-5677,-525,-7267,9004,-8585,-2482,1131,-7485,3938,-9831,1911,-3268,1545,-5270,-6548,823,340,3734,3091,8337,-8743,5219,-2691,-9558,-1737,8573,-8497,-3019,5118,-2294,-1584,1347,8221,5471,-9349,2617,-7919,-5505,-6406,3699,-5977,-9563,-1664,-698,-3157,-3856,3654,-2687,-501,-2970,-193,1043,-7610,-7721,3054,9626,1371,6962,8099,-140,-9305,-8173,1133,2809,665,4632,2145,6503,6190,5819,4999,-2858,1784,-2713,4586,-2124,-2842,6982,9055,3612,-475,7196,82,3903,1159,-6285,5359,-4920,2388,6310,-9595,-8363,-7932,7323,-6489,6531,-2410,-1467,6449,2990,-9766,-8444,-1120,-536,-7743,-2739,6843,1837,-964,-4408,-5859,-6968,3237,5952,3670,1959,9216,-786,-2815,-8735,-9764,341,472,-3591,4987,-5331,-6775,-8540,6306,8830,-9277,4715,-4335,2688,-7974,-8234,-5866,5413,6113,8875,60,-8715,3498,2510,-3052,5520,1488,6741,2047,975,9352,9106,2261,5223,-3671,-7663,9925,-5438,-5116,-7951,-6049,3636,-5477,-2877,6560,5456,3039,3515,1835,-4251,-7593,573,-5263,-6206,6989,-1097,-7076,8073,1293,-1921,6018,6011,3300,9100,-6755,-2345,5945,3211,1312,4068,7075,-7395,-1839,8240,-5588,1993,968,6259,-9462,163,2587,-3469,3377,8897,-1250,-7058,5027,7527,3630,2220,-617,2631,1343,-3538,2626,-1001,-2282,5885,-4652,-5793,173,-8440,5916,3958,2825,8008,7020,4854,478,-471,-1027,9763,-7423,7441,3007,4121,9526,-4906,-2788,-7491,-8016,8794,8615,-3465,9230,5579,2868,-9101,-9789,-596,-9192,-3832,8640,-4928,6052,4366,-6976,-8588,-4842,6034,594,-3996,-7721,4575,2114,3541,6250,-7954,9310,763,5923,8936,1909,-2710,2681,-3676,7484,6225,-2618,-3885,2222,-8129,-3910,-3467,7025,8991,6417,-5066,-7792,-3693,9604,-370,-5560,4076,-2128,-2001,4987,9707,-3193,-8064,-1535,7941,-9526,-4576,-865,8356,-1219,-8128,3373,-2163,9746,-5458,-4416,1045,6102,5956,6890,-9596,-9538,-582,8148,-7624,-4944,-3408,-7113,6267,-1102,7742,-8537,-9219,8038,-1312,5979,8487,-4756,-6053,-6334,1786,4553,-3624,4358,-1051,2245,-2923,5452,-9557,-573,-5507,8668,7465,9134,5144,2481,-6148,4249,-3193,311,-8801,-9408,1013,-9164,-8568,-8016,8076,-6194,179,6876,3998,3638,9819,-4924,-560,8582,3901,-6846,-6799,6280,6923,839,-605,6655,-8859,8237,3010,-191,1702,4465,-7247,1793,4836,2637,-8811,-2310,5921,-4182,-8563,9731,6673,-4565,1032,5645,-9318,6843,882,-2968,-1295,-8710,-4653,-7522,-2324,1088,-6221,6184,-7007,-5653,5516,-863,8883,-5685,6736,8251,2699,3815,-8515,-6849,1805,7683,-7795,-2590,6608,-7567,3470,-1469,-6991,-6034,1958,4112,7060,-4946,-1996,419,-6149,-4858,-880,1070,871,-4260,7842,7936,8272,459,7373,-3027,3843,-1853,5771,2985,-4317,3455,9635,-4194,-9720,4567,1594,-1976,772,6062,5001,654,3636,9390,-8240,-4766,-6352,9972,-9748,470,488,-2801,-2682,-8260,-7691,3616,-9709,-4644,-8282,645,3669,560,1910,-5594,1904,-53,5121,5919,5839,6809,5244,-4588,4156,-6127,-1092,8925,-8607,-9251,-8682,-5193,4173,8739,-4445,3813,-3066,3895,2617,-3295,-8880,4252,-4104,9492,1352,9450,-6186,9068,2253,-832,-2994,-7878,-1118,3575,5160,-5450,-371,6238,-4903,-935,352,6603,5230,-1741,-744,4572,4380,9924,519,-8676,5511,8796,1355,-8131,2710,7746,7587,-3490,919,9858,-8255,5143,7686,-283,-4600,-8428,5699,-7942,-9210,3445,1327,-8683,1784,-2871,-3676,-8533,-5780,-9575,-3003,7563,-4289,-97,-1054,7950,-809,-8158,-1114,-8657,-3801,-6404,-6479,-3154,-4845,-2976,6015,7204,71,2426,4705,4271,5941,-6972,7142,-2228,9039,5359,5825,6220,-2357,-1532,4448,-3116,8375,-8592,8275,3119,3744,4959,-5923,-3609,-2116,-70,-5779,-3998,-9342,3277,2017,8057,6933,2105,8793,5739,9281,-3623,-1492,7308,6264,-6310,2462,7359,-7068,3433,5663,8653,9696,9969,-2743,1883,-9899,-9214,-4717,-3276,-3479,7355,-2731,-4698,-1742,8232,-2625,9387,-1792,1918,-6403,4572,570,-7285,-3154,-6835,4289,-443,8717,-6967,8116,-9981,-1550,-7807,-8621,-2155,-9768,3754,-5588,296,-5907,-6670,-8372,6286,-9629,7525,2349,-4559,7233,1481,-6314,4016,3506,-4725,1281,9112,1239,-2272,-2560,-6710,8301,-1508,-1995,169,7769,8975,-6605,128,-5167,-8368,-9877,8674,-7059,-8618,-7401,4452,-2380,3037,-3790,-7452,-8356,-1879,-8990,5215,-467,-7737,550,5107,5876,5878,-2156,3007,-7929,198,3442,-2728,-7964,7493,1864,-6179,-8082,-4055,-4914,-9478,-2475,-4584,-6525,846,1913,-3517,7606,-465,8322,9060,697,7874,6008,-9758,-7341,3103,-4687,3207,7746,606,-4918,6573,-9083,-1419,9810,-6117,1476,6149,-69,1318,-4598,7099,1427,9362,-7590,-6328,8812,189,-4158,-7073,-6440,-1910,-8669,-1727,418,7389,-3964,-5064,2361,9827,2671,-3722,-5449,-6912,4070,-4855,7346,2420,9427,7204,4901,4437,4799,3061,3420,5052,9190,-3196,4298,-326,8247,-2211,-8669,-2802,6217,2750,1557,-4232,-1003,-1944,5077,-4414,2660,3002,-825,-5325,1647,-3184,-4700,-5131,349,6088,-8475,2428,2629,1317,-9177,-7683,-9952,4055,-9436,1336,-7080,-63,-6416,-8163,-5146,-4457,-819,-1166,3327,-2565,-3419,2363,-5733,6169,-657,7945,-3275,-6798,-5261,-6839,-4872,9390,-7562,-2668,6960,-4203,-9817,1105,-4096,-9648,1050,8354,-243,-6078,-7208,-1239,7255,-3706,7718,7148,6253,-5158,-624,-3260,-4440,-9574,-3947,2151,1288,9552,2385,1512,-5225,-752,7758,3697,-2641,-7611,-8357,-2746,3341,-4289,3660,-8503,5795,-6076,7443,2938,-318,4181,100,5463,541,7495,4910,8715,1061,-1707,6797,8391,-797,6201,7581,7810,-4267,6072,6993,8154,-7233,883,-5691,9279,-2099,-3978,-736,1334,7492,7942,-9425,350,3548,-6193,-1592,-8905,-4144,1658,8586,7403,4623,-9774,7730,-6800,4389,-721,329,5281,4791,2301,9079,925,-3275,6533,-4541,9744,3575,-6618,4100,7629,-6941,-5471,-2102,2827,-6856,3391,242,-736,-6064,-6223,-5468,-2227,193,1748,-3965,-8438,-8123,-5944,2450,2198,2663,-4427,1955,-6954,6026,-8763,3984,-1878,9491,3774,-6040,6049,-5132,-1789,5022,6540,-6998,4219,-9836,-3664,-5536,9297,-3181,-1537,-5363,2775,-4320,2934,-8186,-4169,3059,-303,-8731,3605,-2498,4177,3690,5345,-9555,-7753,-6880,8070,2846,8866,-336,-35,7470,7859,7264,-8295,4249,-9646,1167,-9525,-4055,5672,-762,1907,-2483,-9911,3590,9143,-1846,1630,-7255,1223,8777,3507,3142,-852,-8032,-3762,-7451,-5858,6327,1612,-9976,-5404,4700,7482,-5279,-7779,-2210,2309,451,-6211,9685,-7469,-109,6534,8819,-3694,9892,7997,4429,-954,9105,8534,9924,9751,9474,-8160,-1240,-8353,1222,-7128,-3614,4738,-7750,-4678,-1690,9908,-5580,-2525,5180,-5176,5609,-9569,-2235,2232,7051,-5797,4839,7218,-3845,7694,4678,-4925,-7993,-4139,7472,-3168,7171,4902,-4958,6235,-803,-4299,1278,-4956,-1589,-6105,-30,-3567,-5394,-2105,1184,2329,-2914,-6649,-6955,-640,-2366,8331,5181,5235,-1709,43,-7485,-1484,1952,1238,-5356,9378,4955,8018,3461,-9239,3819,6797,-2922,5540,2069,-1169,-1738,-2616,-2505,2513,7122,4122,-1336,7447,8584,1974,1854,-3465,7097,690,1411,-7601,5386,-3835,7843,3689,1583,-9650,-5238,-6336,-7840,4698,8414,-9149,-1626,-9491,-5882,-8979,1561,3402,-1840,-7425,-9188,6873,9965,-8381,-3424,7926,3218,-9090,9876,9424,8123,3199,8766,-9745,-564,9561,-3139,-6413,2394,4753,-7739,4990,-1375,-6408,8691,-3255,-2722,6582,-5650,9333,5644,6907,5112,9430,-9409,-8426,5333,-9825,577,-1681,-1582,-6648,-865,-681,-2088,7259,2782,5862,-773,6227,2958,-7084,7931,-5136,-258,1720,-5698,6803,-5293,-3558,-3548,6976,-8825,-4996,-839,4601,-366,-7004,9818,-923,-7188,2468,-3591,-5774,8198,-1886,1185,9557,1184,-1304,-2506,-4359,6310,4639,4686,5991,-1409,-1975,7322,6815,-4252,-2733,1094,-7184,175,7323,-2194,-5531,-9658,-6331,-2111,6028,6622,7002,-2555,4713,5783,3715,7536,-5878,-5236,5598,7653,-834,-7948,-7332,8297,-9755,9692,6031,5333,-2224,-8347,3919,4341,8553,6033,6651,-7586,8324,8959,3516,305,7231,-7970,9505,-479,6449,9947,8652,6451,1560,-5883,-7241,8817,3982,-7333,340,-4014,8997,-2358,5226,-8384,-3985,-5415,2391,2421,-3706,9063,4179,9638,4138,-9090,-7695,-8654,-6851,1040,-378,-8065,-5183,4458,6551,-3507,-9172,-8953,5979,-6037,-7194,-3529,-9633,-8447,-7864,-9730,-4309,-7842,7602,8448,3715,4910,1334,430,-5293,-9611,9503,-869,4855,4202,7541,1238,9066,-2873,2356,6934,-2736,-8531,-8946,-8393,-4016,-1179,-5245,942,8113,9816,7785,-944,2638,-9426,2216,1480,659,9175,-7294,7889,694,-7624,8399,-9083,4690,-8091,1504,-3073,7886,1737,6869,9380,2029,7459,-8467,8876,-2298,7675,1922,-3381,4811,-4648,4725,-4674,9865,-7047,-14,8577,-4308,-5119,-6676,7974,-222,5848,-3722,-2813,8849,-5226,4993,9051,1871,5886,82,2946,-4085,3515,6728,-6410,-2780,6048,-879,7049,4640,1990,-2658,-5929,7967,-2848,2147,-4873,4943,1093,-1128,4698,-1513,6792,-4291,7198,984,-5682,8114,-5632,-4479,7481,186,-7670,3627,-9359,-9543,-3449,-3715,7438,-4687,-8212,-6227,-4524,-6680,7443,7324,6007,5216,9664,-2561,4216,8456,7346,20,-5138,6710,9381,2367,-5226,-9067,7403,1908,-9280,-5020,4034,-3953,-1139,2591,8861,-2144,1200,5381,-7874,-7723,8798,4552,4837,-150,-7044,-252,7054,8566,-3137,5827,-6090,9517,6604,8354,8571,-2529,-4057,-6643,-8765,8210,-5631,-673,-2679,8345,6587,2666,-150,9529,-3132,-3139,-6113,-644,341,-519,-5115,-4107,1819,-5915,-4734,816,8154,-8210,-7397,-2689,-3654,8270,-3232,-4350,-9804,-8172,1325,-3948,8905,2239,-883,-5948,-8182,-9008,-1982,7297,4867,-3283,-7624,1019,2680,3491,-3298,6227,-4548,3657,8123,-9983,-9461,-283,6448,-5903,-3520,-8985,9946,-9703,1309,-9465,8836,5346,5100,-5461,8171,614,6671,-7378,9529,7659,-2831,-5212,-6241,9052,-4320,-9482,-7429,6568,-320,6272,-1674,-4112,-498,4203,-899,7705,-2489,-122,-1107,-2878,1594,-7773,9912,9296,3760,-7353,42,-1446,1733,-4108,3269,-6358,-1209,-572,5123,5823,-7277,-8394,9437,-7281,-5012,-3148,-2053,-1781,782,5048,7900,-4589,670,-4023,1655,-2003,6105,7200,5320,-5244,-2962,7317,-8320,9569,5099,5695,5250,9429,8167,6562,5459,4264,7361,8699,447,-281,9368,4901,-941,8403,2436,7200,-5385,-3940,-3607,-7292,3923,-2577,3139,1904,-9084,1785,4617,-7154,-813,9482,-3293,6622,-4154,3353,2535,7458,-4128,5710,-8912,9264,9105,-9974,-3869,7616,9555,1307,7015,-6116,-1274,2031,-4026,9863,925,6511,-4212,-3807,7318,3412,-2167,1271,-5359,2293,4521,7276,-3483,3432,-8499,1041,-3867,-6491,1095,278,9850,-8319,1213,2434,9031,-4107,-1535,-772,-9431,-6031,9943,-303,1556,-6718,-3067,-2818,-4562,-2638,-8374,9895,4208,-160,-4536,8009,6424,6336,-767,-4875,-4920,-221,398,6812,3445,7147,-8093,-6884,-2608,6716,254,-9896,-9618,3272,-6457,1138,6807,-536,3187,-7659,5188,9652,-866,-9563,8162,9467,-5671,6969,-8336,-6279,-1282,1214,9959,-9482,9002,3523,7955,-2060,4813,-3011,5383,-2286,3279,-1563,5542,-9120,-1860,-3428,9144,-2466,5765,1588,-4626,1761,5314,-7360,985,8236,-8755,-2712,1430,169,-6744,-811,8745,6577,5471,-9965,6238,6454,6345,-5445,-6905,5199,1487,-5968,7818,-2198,-5932,-127,-8352,3000,673,7972,-3241,9066,-6879,-2751,-7617,-9524,4737,-8837,8774,9043,-2059,-1786,-9970,4326,-4844,6596,-9458,4666,-4086,-6754,-5812,-2216,-8827,8532,-4160,-9476,-2562,-7891,5886,5615,-6618,-9323,916,-3647,6737,-8843,-2076,-5932,5975,2991,-5393,-4052,-9330,-7266,6438,3587,3563,-4778,-5877,-1470,8277,-6461,2481,-5321,9201,-9759,9688,-6906,6143,6662,1110,7953,5188,4597,5904,-3505,132,7872,-8341,506,9071,2529,-9261,-3836,-6244,-7657,141,-785,3728,-5128,-7773,-4601,-6175,9412,-9645,3873,4734,9443,9498,7449,-596,-9986,5823,-6343,-5160,9692,-1439,-7904,7479,-1755,8334,6364,116,4026,8020,-651,627,-2763,-5108,-6136,1004,8486,240,8658,6232,3222,5272,-6508,-5531,7050,-7976,-2392,-3870,-9054,5566,3993,-3197,-8184,-2178,-3359,6067,6745,-5055,-4949,6943,-2814,4312,5663,-7706,2969,-3837,4500,-9268,8044,-3541,-8133,-7924,1917,2939,-4959,-9056,-1498,3767,-1076,-5658,1819,9739,605,-9714,-5278,754,1179,-809,-3933,-8701,8994,2934,-3471,8225,9934,397,5595,-7448,4620,-5300,4409,-123,-717,-5849,-8688,-3089,-1647,-9544,5021,2011,-6517,-350,-1547,-299,354,4085,-4117,-3269,1795,790,5875,9731,-6424,-7219,6133,-6876,6707,4269,-1057,4850,-7986,5203,7860,-7091,-1755,-6097,8874,-1672,-2478,-7439,8706,-5260,-619,-5897,3552,5511,312,6270,-2107,-4068,-6361,3672,-4268,1440,-8318,3616,-580,-5645,-3173,5446,-4045,-3417,-5794,-1154,5761,-1431,-8186,444,-7948,660,-6974,6234,6548,-4575,-3275,9324,7601,1343,-6944,-5742,9191,994,-9378,1092,-869,-838,9841,-9375,-1811,-2413,8102,-38,2890,-7957,1231,-5113,1822,8397,-4228,-8260,1798,8328,1763,6827,7820,3612,6349,-5124,3771,8414,-3573,1149,-3828,6273,9996,-1757,1678,-3134,2690,5906,-1545,-1305,-9123,9883,-9755,-1,-4270,475,2033,-4402,-6316,660,-6427,5860,8332,9908,1582,4116,-1469,-702,2251,1216,5594,-7372,7668,873,2259,5303,-3171,-3255,-3923,-4559,-9217,1879,-4377,-7879,3871,1089,6699,-4465,3810,-115,-6169,-4539,8723,-9039,6964,-6593,-7898,3417,8463,5431,-3057,-4566,6529,-2413,7939,-1993,3448,-2940,-9202,-6905,-7532,-7358,-2038,-5256,-9021,-1135,8,-302,1417,-4495,-7067,3194,-2421,6777,-9783,5727,-1108,-948,1222,-2721,4553,-6710,-9480,-3038,5110,2694,-8091,9798,3195,5779,-205,1651,6399,-8792,-2454,-5334,-7444,-1362,-5150,6904,4459,-9283,6922,-8973,9706,-8611,2180,3920,-3979,-946,-5230,5264,365,862,-4077,3321,2370,4297,1243,-7947,481,4680,7301,-1733,1859,1360,4837,-7486,5364,-2889,9035,3297,-6907,3259,-7061,3885,-9647,5402,576,-4414,1474,-6139,9678,5950,3273,7100,-3424,-3602,3233,6489,-788,-8637,6346,-4527,-1711,-1550,-9884,-4673,-6186,6976,642,402,1754,2181,-8772,1677,822,7574,3731,5586,-7926,-9311,-3315,9896,7152,5224,-9791,5918,-5780,2031,1235,-932,-4857,-167,713,2568,-9147,9782,6456,389,6272,-49,1874,-4668,-1471,5293,-4799,-6647,-3324,-5187,3196,-7032,-2940,-6126,1706,1398,-596,1168,-9273,9171,-2377,2805,-5010,2004,4040,2593,9953,-9483,-5698,-7287,8954,3875,-1192,1946,4183,8694,9639,-2172,8981,-1428,-6378,554,-7025,-1570,3737,-2246,-3006,-4777,-5318,-7785,-8167,-7073,-7620,-7986,9906,8325,-9422,-6109,5835,-8574,-8159,8841,-3273,9422,-3517,-9553,-7586,-7637,2066,5300,6097,3461,1421,-1921,-2919,-2504,-9409,4866,9622,3747,-4526,-629,8246,9405,6219,-1264,1558,-7547,-4464,3357,-1337,-6898,-1,1743,-8249,-5937,-1688,9097,9588,9899,-5808,7512,8553,-3124,-4080,1551,-3493,-575,7305,7511,133,2110,-3731,-7146,9324,-5260,-5622,2182,-3310,-2044,-5020,7270,8900,4834,4860,1227,-6886,-2494,1494,3656,-4800,5151,9864,-6014,-1466,1257,-3091,4385,2072,9085,-3420,2741,1590,5844,7980,-7796,2236,-1908,6166,-6856,8462,-2136,1809,-1669,8221,389,-5734,-4506,-2953,-7254,-2314,-7223,-5765,5569,827,3667,5058,8328,-2116,-709,-5813,6956,-7409,2548,-2793,-9637,5542,-4152,2422,6885,7842,1930,9425,9952,9864,-7599,7517,-2914,3415,-1833,2517,-2394,-9818,-8876,-8033,113,5691,-4763,2864,-902,-4990,6968,7731,4358,-2032,-1899,-7731,662,2139,-6425,-4243,455,9664,1719,-5148,-3971,7811,2548,9677,-1526,9639,410,5429,-2895,7389,-1096,-2351,5108,5073,-4305,5380,-6424,7733,-3116,-1695,-4085,5329,4805,-4241,-6720,-9854,1120,5546,7052,-1135,5525,3375,214,1772,530,-7186,-2474,-2577,-2741,5058,-4452,8763,-8194,3445,-4094,-5521,-3897,2669,6408,-83,1239,-4519,4881,-3297,-7053,-9664,6420,4663,-2522,3910,-5694,-4538,9122,-5401,2806,-1355,1782,-1342,743,-2229,473,6024,-3790,1939,-1248,-199,-1022,-2111,-4431,-3087,-8085,2411,-1360,-4107,551,4167,-5039,9205,8077,-5822,8048,124,-4210,-8291,-8261,2000,3656,-13,-3857,7757,518,-5464,-136,-3584,3267,4332,-5484,-3136,-2877,-9115,-7036,4562,6917,9345,6988,2399,3732,-7109,-9725,-2332,1321,-9184,6450,6337,9764,7579,-8622,5320,-703,8918,-2184,5194,7992,190,4869,9642,2045,3592,-5427,-7994,7595,1433,8553,-8317,-9314,-3162,9575,-330,-8812,-56,3709,1483,-8769,-1809,3955,9132,-6121,1226,1894,8950,-4760,-3758,-7422,2525,-765,-7264,-4241,-3810,330,-8084,-7966,9921,-7425,-3984,4351,-1383,5813,9810,-2334,-3171,-539,3085,-5992,4886,5634,2626,8986,-8738,-7126,4503,-2936,-7255,5693,7605,-795,-172,4397,-2028,-1997,5156,-4389,-7373,2376,3722,-4228,495,-6460,4062,-6503,-5787,-1218,7242,6852,3360,6154,-1359,-3025,-6779,7036,8692,9692,-7339,-673,5880,5197,8008,8788,2902,3436,2061,-3652,-8562,-7744,-7622,101,5732,-9273,-8315,-1165,9577,-4748,-4131,5574,2757,-2262,1224,-175,-5549,9660,6186,3777,-4871,5792,4201,-3218,-6222,3587,7122,-3128,8445,-8249,2589,-3587,-9654,-521,7968,-8601,8878,-992,-3293,-6584,1434,6579,-1411,-1335,-6669,198,3215,-8062,6955,4455,-5068,-6809,499,1260,-5765,8800,-8910,51,4875,4799,-3906,7430,1515,4687,-6461,3730,-616,7377,-5352,-3780,1741,9749,6095,-5684,-3388,8041,-8214,-7278,-5641,218,-7976,3462,238,-3117,975,7564,4038,3217,-7475,3062,4647,1637,385,-8193,6961,-4342,5029,5024,-5309,-9850,4092,8220,2777,-3222,-862,-9445,-7028,9173,8282,3603,-1299,-494,2688,-5029,-2105,1878,-6878,3070,-1933,4358,-6930,-9615,-33,-3424,-6422,-7352,3290,238,1247,-3474,1020,-7614,-7176,-897,6337,4952,8387,-8572,5504,-1078,-9250,-2525,7474,-6271,2512,7313,3966,-936,8433,8311,-8023,-8965,8969,-5884,-6716,1869,-9043,1929,-9951,-6985,1802,-1039,15,244,-9038,-6796,-4246,5682,-1165,-839,2012,-1867,5785,-2079,-7229,-9843,8369,-1136,-4733,-1569,-4418,7723,9650,3332,4936,-9732,-4909,2464,797,7542,1068,2526,2505,-6700,6252,8450,6891,-7897,-5173,-9960,-9048,-4288,-3999,-745,-9143,-8036,-2062,-6016,-7773,-7843,59,-9173,-5734,-1633,5416,7374,2457,2587,6349,7060,5031,9123,993,-8476,-6387,8849,8284,-8082,-4454,-8345,-1087,4113,3326,2305,-280,-6627,-2286,2013,6477,-1640,-2436,1687,-8847,9424,-3621,5311,3365,-7670,8360,6811,-100,-8768,2809,1698,-5983,4577,1765,-1902,-1485,-2775,3553,-1347,-5010,3015,288,-4506,-1168,-3364,-5568,8117,4904,2309,3588,-2348,3707,7503,5102,4761,-8800,-9971,-9791,-5247,-3868,-2219,-5012,4868,-32,2579,-6,1735,-7122,-624,9669,-5156,-5938,-1672,-748,6987,1802,9123,-6814,1386,-3183,5815,-4142,2818,-8502,-2629,4742,4158,-7022,-2128,7530,2704,-1889,8373,-3502,7866,2380,-9986,4512,-590,-5679,-4473,-5247,5562,3559,-4461,506,9136,-492,-4585,-1736,610,5523,-4196,7847,8959,2385,5482,-3031,-6360,-3418,3686,-713,6520,4162,3145,3375,-8792,-1021,1445,-3643,657,4183,8073,6557,7799,-8313,-4134,-127,1284,-8762,3890,-9750,-5242,-8246,6566,1747,-5968,2562,-4155,7645,-3706,-2019,-1949,8768,-7059,429,-2047,-4263,770,9972,-718,3202,-9645,-1943,1461,-5747,-9905,5836,2045,-4111,-5070,2151,7720,143,2043,3349,4806,7216,9557,-3774,-8035,-2911,488,-8807,-9281,-8016,-2872,5809,-3932,3956,-9544,-3983,905,3246,5869,-1826,-3873,3282,2637,-1542,-3467,-8943,62,7188,2236,3319,7447,-91,962,7433,-6266,-1217,2933,-1021,3916,6290,8369,-299,-4844,4245,8864,-5022,-2385,710,889,-1865,-3100,9603,-3049,-8410,3817,-9590,5676,8752,6787,-7703,9898,9844,3694,2403,2854,-6373,8287,-7625,-5780,-3387,5090,-7742,2003,-7489,-8027,-381,-2337,568,7445,36,-65,-1067,7344,7960,-264,-4143,-3371,-520,-5612,2817,-262,2366,-4980,7345,-4471,2277,7855,5754,757,-4275,5966,-8869,-460,9000,5957,-8740,3160,-9074,9144,6626,6487,9445,-8161,-7055,-4400,-2953,6035,-5114,9223,2590,649,-3683,6612,-9572,-4722,-1835,-5233,8670,4242,-2185,773,8149,-1042,-1746,-373,6555,2785,-9954,4756,-212,-4360,6116,-3122,2974,-346,-6740,5636,-609,-6269,3897,70,6006,-4926,-5067,-2282,4877,-2160,-9205,6952,-5932,-3268,2044,-2603,834,2266,-1033,2836,7015,-1826,-2531,9839,-1317,2020,-9794,2505,3718,2112,-4138,-322,-3469,1992,6626,-5044,496,4717,6213,5187,2408,125,-9722,1224,6507,2837,6329,1313,3485,8905,5380,8699,-395,-8206,1206,3627,9680,-6412,831,3884,-9774,-4844,-6444,-4180,3396,4192,-8698,8810,1401,-6173,4698,-4646,6688,2492,-7469,-3810,4325,8751,9124,-5203,-4433,-5448,3606,3015,3506,622,-7518,-5338,-614,-7254,5882,-763,-2620,-6577,-4288,2860,-6755,-9794,-2509,-3147,5837,8731,-8844,-6278,6208,1454,-2495,-5451,-8875,2163,849,5884,-6742,9090,4173,-8241,5780,-8221,-3415,8705,-9428,-6146,-2470,3330,5112,-7324,8714,-4479,7065,569,-7376,-9007,-8611,1252,-4855,5644,-2449,9897,-4675,9278,-1568,744,191,5547,-4450,4197,5638,-4441,7389,1541,2302,-9503,-5930,-9154,-4855,-1090,6594,-6838,8563,-9460,7401,-8449,-9139,572,3707,-7435,-2015,119,327,-9266,3340,-3391,6408,531,-282,-8835,5357,-9461,-5025,2583,3677,2505,-1931,-8207,-3563,2532,-4705,3644,3060,6757,8881,-9639,2501,5879,-8531,-551,-1518,8830,5920,-9124,-4871,-1292,-653,6367,-9136,6738,-9307,7219,1919,2983,-7425,-3495,8001,-9342,-429,3511,-2412,8666,306,2359,-2103,655,-9730,-983,-2559,-1536,-1191,-6219,-8274,813,375,-4627,4356,-8663,-5532,8799,-3594,-2916,-9804,1936,2760,5544,705,3574,3614,-663,7565,-7807,-7908,-5223,1206,3297,-8906,773,-7616,-4477,-7215,9128,-1268,7323,-4516,5105,2999,-7037,6155,830,383,-7099,5463,1779,2643,4366,-3877,-6731,-5911,4824,-6570,-9893,-5286,-272,737,-4211,-2512,7375,-9854,170,-4115,9592,-4410,-655,6778,3843,918,8809,-5898,6871,-3916,-452,-1914,1496,2414,-8515,1765,-7759,-989,1714,-3399,8152,-5543,7471,1949,2310,8905,-4639,-1196,-70,-2717,-6976,-3315,8485,2833,-3651,-8054,-5523,-729,-3113,9814,8211,-1943,-5381,-6326,-6855,-9570,-7436,5300,86,-4004,5175,-2050,-646,-4086,-1978,3028,673,-4508,83,2807,4552,9712,2904,-8127,1630,-7119,5901,3897,-8786,-8097,4234,3519,6677,-5991,88,-3044,1818,4765,-817,479,-2448,-644,9469,-1463,5532,-2743,-7889,5190,3523,9060,-9280,-5336,-7324,2717,5080,1753,-4061,9844,-7831,-7502,-9769,-9281,5497,-4853,-5868,-7269,-3357,-3660,-381,6876,-2008,7515,-433,8892,6833,-3252,8205,7154,5027,2911,-8374,2104,5645,4079,8276,-2544,6225,-9944,9688,-345,1551,2355,-3387,-5664,-2508,-5283,-3993,727,-2234,8781,4103,-5444,-2070,1689,9599,1765,611,-3594,2314,-1144,-5540,7745,-8675,-4573,-8514,-8520,-1724,-9397,-2660,3796,7870,1868,-6254,2492,3918,1491,4108,7110,7599,-1345,-4094,1658,-2096,-1134,-5911,-9893,8375,6341,7809,4748,-4333,8575,9311,686,6419,-9093,3851,-6976,-9096,-3841,-9856,-6783,-5047,-7200,7,3022,3891,4288,-412,9361,-5219,-6851,9706,1368,-2628,-2296,-7586,659,-6898,-9717,8184,-949,-8237,3253,-7921,9572,-1163,2194,8748,-4013,8827,9310,8338,-2039,2804,-2460,1937,-4701,9566,-8492,1056,-394,-1011,1459,6782,-8617,9979,-9067,5047,6447,-7403,848,3807,-4798,-207,6678,553,1435,8701,-6325,-7306,-2981,-5117,9128,7062,3861,-22,-2432,-3052,-331,7615,-1122,953,-3840,-4077,6666,7,-6268,9922,-624,3227,-531,6345,7501,-1282,9484,-9552,-8718,-9736,2763,2500,7500,1959,-139,8043,-7154,7521,-1163,-9585,4338,1326,-3888,-7011,-9158,-7497,6319,6762,6493,-3570,-389,-5841,-7440,5461,-9907,6139,3001,5387,-2655,6300,6791,2864,6773,-7847,-3744,9540,8916,7805,5210,5038,-4578,-5566,-1762,940,3770,-137,5076,-3450,-8571,3203,2503,-4410,6197,-3336,-6701,5539,-7642,-7551,5385,-8939,-3236,-4684,6737,8433,-6936,3430,-6909,6157,-3019,-872,5180,5416,6744,4145,9973,7691,6228,8893,-8466,-7684,6671,-1900,6609,-8965,3237,-6702,-2259,3286,4039,37,-3654,-7918,704,-4648,7920,-1415,304,4790,4071,3862,3091,9580,-4307,5264,5666,5897,-3335,7445,4927,-7133,-7719,6782,-3166,2068,-1198,58,-7511,-4504,863,-4640,4489,-2544,107,8050,-8313,-1057,-3847,3751,2560,1922,8431,426,4805,-5066,-3865,-5384,-8060,-2834,5516,5412,4155,-4749,3189,1318,-1290,-2003,-4348,6625,-1149,-6108,1553,-1251,-7825,4616,5030,-465,-5597,-2235,2543,1135,6636,5934,-3760,534,-1923,-8938,-6053,3613,-4011,-705,-3136,9264,6049,-8386,-8623,6413,6656,-5751,-3611,9376,-5294,-6874,-2156,4547,-6204,-4888,-4606,-5069,2845,-4211,1521,2528,3351,9279,-3711,4242,-5200,-7502,6954,312,269,-2026,9842,-1449,5831,-9679,3927,-3940,-4132,8106,2887,-8423,8099,-7011,-8020,2567,-2123,-4007,-7772,9913,-6031,-3311,-7288,2484,-2781,4208,5389,4796,7782,-3486,-7045,5363,-1003,9298,-209,619,4980,-6673,-9973,-5749,6816,-352,7459,-1267,8075,7792,7273,-2736,-8423,7951,-1929,7444,9091,8629,4901,-5434,1780,4328,5203,393,-38,593,-8123,-344,6677,2643,-6384,-922,73,-5546,-6882,1069,-2971,7021,-4470,-766,8416,7825,-8139,-8396,-2187,6069,4207,-1626,5580,2955,5472,6471,6284,-9833,7104,-1075,-966,-7607,-3367,-15,3303,6528,5060,3678,-8920,-6897,7567,2311,-4237,-5532,-374,4893,2599,5768,607,341,8925,3174,-2564,175,1132,-130,7832,1436,8761,-1621,602,-7159,-7782,6724,-8392,1366,413,-5143,-4917,-9330,4290,3147,5001,-1534,4270,5271,4734,-7652,-5294,-7642,-2803,8627,3612,-4262,-3202,1261,767,7200,-40,-1935,-8870,-5244,-6940,2761,-9704,7763,-3343,7419,-7873,-1877,8032,-3918,-6250,4235,-5305,-2897,-9448,-6373,5222,-1465,811,7343,-7428,-830,8107,9452,-8780,2220,2979,-8383,-3650,8756,3808,-267,-8216,-4596,-5810,1464,-8598,864,7786,-3476,-523,-6217,-2930,5103,3292,6333,-1447,6170,8816,-2751,7494,822,-944,7151,4074,5729,8759,-5836,-3293,-4969,6047,9472,-490,9949,-2767,7155,3281,-3472,-1336,6512,1557,6465,6624,6296,5438,-7601,-8870,-5960,-3466,-6305,2919,-1894,-530,-2834,2719,2003,8261,-1817,-2488,9035,-4072,5910,5319,1780,9262,8098,9748,5920,100,1955,314,-5676,-6904,2521,451,-608,5270,-2401,3683,-7430,2597,-1841,8375,-2360,5379,7657,-9311,-5846,5936,2153,-9623,-9777,-77,6562,-4239,-8042,4621,3918,4484,-7271,-3012,998,7275,-9828,603,2129,-5209,-2021,-9988,1665,6528,-9375,7478,-6704,9379,2298,-8204,7289,-7855,-6907,7269,8742,7498,-9089,9537,-2364,-1905,3535,-3194,8492,-2740,-4592,482,5716,1254,-314,295,4203,-8589,1956,-6916,6669,-3370,2207,-9720,-7527,-8778,-6515,816,4347,-5278,6344,-9324,1851,2032,8097,-4268,3686,5632,5073,-4696,-4459,-2105,7549,2201,617,1019,-386,1267,-235,3874,-5908,-4901,-8836,-679,2899,-8957,-6951,-4807,-9522,-2646,4283,8756,4377,157,-712,-4099,-8632,-5330,-6091,-8992,-4865,-5147,9222,-5954,300,7518,2348,-3782,-7629,6923,6533,8565,-971,-7091,-5672,-339,-2791,-7182,1586,-1218,-7002,1723,-752,-780,4167,-7317,8094,-6258,-9758,3360,2782,970,-8737,1977,-8707,-5078,-2525,54,4225,-7525,9027,6251,9173,-6691,-1902,-5911,-8801,-3716,2373,-2366,-5234,-6124,4398,-9323,1334,-7386,-3552,-3924,-3889,-4139,527,-8543,-9491,-6591,-207,-6428,7708,3997,4885,8728,8553,-6020,38,-5687,4141,7213,1486,-2348,569,-2391,8961,3453,9358,5486,3611,2661,121,-8363,2313,-6521,9049,-3344,6353,-2436,6447,-5134,4701,-9776,-6335,-2108,-6629,1961,-2384,-9915,8693,9158,-9529,1620,7036,-3254,34,3004,-2768,-6869,-992,-1644,2597,-177,-1,6353,-4539,4023,2956,4077,2194,2413,7917,-9656,-2056,-2179,6210,8378,-4884,-8626,2193,-9899,2235,1375,-9678,-770,6293,5351,9300,8729,9459,7320,8423,-7442,9148,-2769,7781,-6311,9966,-4022,-3346,59,5626,-3725,6570,5367,3396,-2577,967,-2245,1345,7888,-3315,4820,2047,-7254,-6031,451,7231,8081,-3286,-4362,2418,-9846,6819,2128,1969,-1439,8004,-2605,7455,-4154,2797,2809,-4507,-1029,5730,9050,-8191,-9644,-3736,-6953,-6448,6382,-2197,-2070,-1019,6466,-6130,-1200,2942,1408,-3560,-7503,-4900,-2152,-6844,7869,2897,-1748,-4526,-7882,-6305,9115,1584,-8654,3102,9281,291,-5378,-4044,-7961,5762,-5093,3033,-4455,6522,5311,5340,-2272,1882,-2896,8115,-5084,-4941,-5782,230,-1912,-1277,-8808,5454,-8716,-121,1318,6383,4949,-9201,-8781,7483,8076,1739,-8860,-1953,2830,7597,-5749,5253,-8921,2911,9541,-5703,-8508,-487,-7021,8914,7891,-5963,4499,6150,-5980,-2684,1281,8394,9978,-6047,-5862,7601,-2263,-4499,1644,-4661,8808,4056,5079,9909,-8756,-3060,22,9338,-4006,-8662,6465,2413,4931,-4250,-7760,-5801,5754,70,-298,8522,612,-2636,-5604,3561,6947,3359,9159,-4118,7716,4539,-2218,2835,-3467,-1941,1901,-4276,1205,-2839,2078,2102,8777,9928,-2106,9493,-5070,6120,-2143,4304,-4123,6969,3584,7751,1013,640,8303,-6207,-6319,-1195,-5436,5212,9086,-1071,8194,-543,-9921,-3177,-7928,9516,-8847,-4017,-3739,-6255,8046,2070,3194,5321,5550,6796,3423,6702,-1953,-7509,2379,-4538,-2957,-1439,-940,725,-1336,-458,-4015,7745,-5649,24,8706,-5024,-7877,2523,9843,4709,6781,663,3705,-5359,-8580,4481,-8221,-641,-5507,7765,1049,-8722,-8566,8190,-4738,4624,-9876,-2674,-8002,5903,-8062,5181,5169,-6419,-2630,9342,2786,-1081,6727,-7535,528,-9091,1043,-5046,-515,-7217,5278,3191,-8166,-809,-1452,-1155,4727,2815,3306,5717,-1781,4144,6650,-9890,5865,-9998,-3558,-9655,-4518,-5128,2326,5042,9218,-1644,-9293,-4324,858,-1724,-6770,-3227,7953,2055,-7267,1749,-809,-618,-2149,-11,7552,-3286,5033,-3496,9877,-74,-5988,-2040,8907,-1091,5985,6352,-7231,-2285,6254,-6949,-6716,4794,7789,-419,-4517,-6033,-5922,-2240,-8146,2911,-3212,-9505,-5853,5380,2342,7531,-4114,-4682,-9778,-9547,-8591,-7243,-2139,2774,5075,-834,3963,-6290,-9950,-557,8183,-3968,-8175,3174,6496,7354,-6409,-5596,8153,8290,-8292,-340,2111,3568,-2432,-1225,-1984,-6083,8842,-3070,1652,9840,8312,7360,-5832,-1111,8889,-8092,5152,8610,-4161,9146,4974,9919,-5059,4439,-3487,-652,-9290,8245,-9832,2000,1701,-4520,-8335,-1826,9716,152,-950,842,-205,-6634,-1151,2384,916,8701,-8457,-473,-7325,7461,-2179,2191,-1088,-5933,7681,6015,-9486,-4624,9769,3724,9347,7054,-8344,-8939,8723,923,7717,3113,-2623,1222,-6691,8906,-546,561,5124,7793,-1056,-7080,6027,-6634,8433,2676,2192,3801,-6455,-7294,4735,9819,8340,-6296,3189,7891,-4154,3859,2101,1321,2412,6262,9830,-9538,-5693,5175,-954,4826,5372,2990,4354,-1257,-3094,-5290,2842,6734,-9808,-3333,5262,-3641,8261,-104,-1320,-9952,-9379,5124,6468,9698,5431,-7882,-2699,9866,9649,3798,-344,467,-9946,-5513,3147,5983,-2020,-1406,-3125,-8335,-6246,5918,3452,860,-1297,-6848,5966,-9321,6440,-4714,-7610,6116,-3682,-4351,-2322,8758,-4996,-9114,1064,-7632,9668,-3884,-4575,-4511,1892,-6074,3827,-5495,257,-5888,-6693,1847,-374,5896,-3403,1353,-7717,-3564,3490,2534,3855,-6715,-9454,-4255,-21,-8005,-4336,2335,1008,7349,4652,-4763,2880,2974,-7941,-9141,-7057,-2332,-2426,-2877,-191,9006,287,-8995,-9060,8222,-198,5669,4122,5966,-8107,-6572,-2107,-1245,-2241,4950,-3930,3889,-3078,-9806,-4308,-3978,6687,-4440,8917,5283,4312,9957,-8050,-9619,4053,-6736,-9365,-8754,3846,6035,-349,968,6390,-7782,-5872,9023,9543,6331,1611,3149,1614,-2482,-1503,6138,8867,-805,-884,1475,2744,-8307,549,-9654,5203,-2317,-337,9796,-169,-841,2985,2670,-709,6999,5441,6421,-1783,3254,-8177,-5929,-419,-5095,6388,8376,2238,4504,9113,5089,2424,-4051,-5406,1132,4461,-4697,6426,1699,5714,9047,-9584,98,4005,2167,-4757,-5328,-1524,5031,-1578,-8029,7946,4110,-5901,-1738,-7920,-1255,6878,6229,4417,2324,9874,-4207,-5391,-1506,1144,6543,1322,2131,-5996,-5167,-8837,-1337,-3276,-2221,5589,7261,4696,8478,6369,-1878,-1087,-1550,-2057,-2300,-2053,1979,-3139,-7669,-778,-4259,9028,4649,5008,-729,8398,-5223,-4985,-2287,734,6448,7821,-5166,8306,-6972,-1747,1445,6405,-5457,-375,-1353,-3786,6369,867,-8571,-9649,-7854,-1442,3234,-1527,-6550,-7147,2591,3425,-4109,9483,8007,8909,-9292,9828,-2834,7850,-266,-1666,-6429,1935,-6082,5960,770,4747,5863,-7246,-1119,1736,-4578,4452,6805,-8496,7232,1930,-2616,7487,2516,558,-4447,-1307,1318,3547,-3110,9616,-3275,-6945,-2650,6815,-3971,2298,1679,9801,2338,4769,-8854,-5089,8035,3662,-8608,4007,529,4885,8124,-9497,6685,-1746,9424,-2042,-3593,-6542,-4313,-1736,-8589,7514,5989,4614,6909,-7108,-988,6499,-6781,9041,-6205,6457,-5696,-5032,-5533,6417,-360,-8883,4215,-9739,-1150,-4730,4913,-518,-4631,-7906,-6756,3892,-1180,8832,8870,-6035,5851,-4775,9800,7556,-5692,-7642,-2503,1415,11,-4137,-8702,3774,-568,2450,-9777,738,8734,-4971,8702,-2742,4497,7794,-2761,-9567,-9530,8572,5103,-767,-8244,841,5245,4599,-4249,-5368,8172,-2027,-9377,9625,321,4644,9,4861,-8569,1713,-3100,307,-1845,632,6195,3065,7314,680,-7870,-4230,3786,5565,-8962,-4590,7847,-2935,-8382,4734,-2824,-7516,2789,3817,-1547,3744,-961,9940,9710,6357,3945,7609,-8898,1278,810,5397,16,-9299,1124,472,-1191,-6318,-8101,5252,-8177,-682,-6094,-6288,6071,2151,538,-9635,3924,3451,6377,483,-9331,2556,7797,-7385,-4032,-8033,-8331,6363,-7656,-1786,-4991,3539,5074,4791,-1189,4999,6120,-8363,1667,4432,6473,-4872,1099,-1511,9231,575,5636,-7912,3139,9204,-1626,-2505,4800,739,4044,-3941,7019,5577,-2118,-506,7318,7261,8145,-1452,7935,2955,1889,919,-6264,5858,-8145,3204,-3586,3485,-8994,-9813,4075,-4429,2737,5844,-3288,1654,2650,8262,1267,467,9924,8284,-7636,5292,-8417,-6835,8975,4216,-7062,-3547,9991,2605,-2294,-9375,2954,-521,6606,-3287,-2892,5562,-5296,-353,1199,3361,-6747,2449,-8810,-4598,2367,4729,311,1231,7778,-58,6304,-2700,5134,-5179,6537,9268,5302,-2746,-1556,6930,-435,-598,8332,8828,-9492,-3401,8044,4224,7444,3427,-9642,2053,2017,4612,-8523,5159,-213,8043,-1747,-9495,-4331,9138,-4368,6,295,-6897,5193,386,2824,-3310,3509,2445,1144,236,-6476,-3836,9043,-1820,-2848,-3826,5872,2449,7592,-5475,-4849,-8889,8947,1758,-9502,-7728,2363,5890,-4389,8214,6041,2395,9067,7239,-4947,3151,3674,-3648,-4384,-9193,9742,-9698,-6032,-2247,4899,-5448,-7403,-5845,8806,-3873,-4672,-1405,3682,6467,-7159,-2248,-1926,1799,-3369,-559,-5302,8974,7537,5024,3001,-6987,-4437,-45,8944,4416,3874,7361,8402,-6832,-8581,3749,-5382,4786,5067,-2964,-8188,9186,-3511,-4979,-5189,-4039,-3370,9546,354,-8236,3132,-19,-6188,-7741,-2776,9976,7066,-1642,9624,3270,5684,2739,-2392,5174,4599,-2917,4287,7423,-1101,-1040,4412,7953,-6969,-7865,-5283,-1260,8135,6470,-4000,-5733,7403,-8066,-8052,-2435,-26,-5024,-3218,-1334,-9787,1236,-2580,8330,-3543,3793,-550,-7825,-2686,-4328,8918,773,8897,-9393,-4530,9826,2855,6115,4174,-9245,9575,7479,7965,-5577,-97,-5040,-4078,-2064,1453,4374,-9755,-6982,-8644,2576,-821,-9262,-5855,-1346,-196,-2026,9902,-8616,7421,1185,-9546,4300,-4376,-1054,-5804,-1225,7893,-6805,9967,-8734,2749,8872,8740,1820,9925,-4174,-9699,7994,8016,2024,2488,-1935,-4626,6700,-1393,1243,-849,2870,-8632,6923,-9584,3102,-3442,7870,-923,-5332,5243,-1538,6363,-915,383,-5803,9702,1232,4941,-2992,3965,7323,7647,8491,-791,-1994,3692,7474,9355,6173,989,8446,-7654,3771,9231,8189,-8849,-3411,7531,-193,2427,4763,1806,3195,8305,-1084,-3169,3917,7606,-7406,-536,9981,-1086,1096,1803,3508,-5780,8738,-9567,5815,1804,5131,-1872,7931,-7899,-340,-4861,-2823,-5528,9094,-5168,-6491,-9994,9169,-8777,8344,-7314,-5123,9174,-6242,-2380,-9300,-3607,-4120,-7934,8938,-4143,7889,3396,5419,2230,2400,98,-282,-967,-1810,-7076,-6008,-5594,1119,-7126,8554,-4386,318,-6484,-2211,6187,-3774,6825,9055,6626,-801,5240,7485,-8979,-1858,5731,2482,5090,6933,7117,-6316,-5326,1635,9103,-5535,352,-2076,5791,-5840,5547,-5333,1893,-5945,5354,6009,-7568,3312,3965,9703,3627,5198,-71,-2241,-754,7165,-5121,-3680,-8177,-83,9448,-2413,-8642,2694,-2750,4209,4930,1988,5531,-161,-3768,-4401,9628,9826,-8840,4230,7706,-2824,-3673,4239,5140,-5545,-5388,5626,-3764,-8244,2947,4469,-7768,1982,-898,-6392,2419,6007,-2914,9568,3148,-6248,-5623,-7113,4216,-1005,826,2709,-8970,9591,-5733,237,-7265,-2246,-916,-4842,3247,-1645,-6550,-6002,2828,6443,5731,5177,-2443,-2064,-9169,-3349,1794,2960,9579,750,-9937,9564,3170,-573,6456,7670,-1877,3541,-1245,-8797,7156,-6470,-2760,-7963,-2924,3901,4500,2821,-2267,-9614,5404,-7781,-1945,-9327,-9396,-8706,-3404,378,-9958,2793,2036,-8297,8682,1025,9382,-9109,244,-1338,9343,3489,8243,-816,5178,-8110,3994,-1781,-8054,9698,-262,-4353,-9514,-4902,-8377,6675,8948,-985,1295,-1195,-6799,-593,-9724,-6047,4362,2652,-8994,-6967,3648,-8860,9315,9063,-724,3409,5873,-4427,498,9065,5868,-9237,-9801,-623,630,-7552,-3625,-923,7285,-3644,-5767,-838,-6135,-2512,-5136,-2690,1040,7138,-3647,-3630,4123,-7725,-3457,-238,8394,-3987,1721,-4852,-8513,7996,-3094,7455,-9248,4226,-351,-7587,1659,5606,-3122,-7871,3542,2666,3348,7617,-5714,8260,8275,1560,-2542,-7384,4135,8303,89,4699,4987,-68,4034,7954,-125,-2148,3385,-2420,6991,8938,2221,-3953,-7699,5168,1536,9301,5556,-9322,-7602,-6203,-5242,6649,2771,4011,8756,5972,5481,-712,1608,5633,5596,-9965,-9976,-5646,-7914,3649,9326,-1208,-2613,-1657,5748,410,4543,1116,4850,9929,9748,6303,-7411,6851,6728,-6863,9723,79,4103,5252,-7814,4147,-8867,-9156,-5387,-2590,5475,6685,-9932,8145,-1382,7321,5690,-6771,-7649,6162,2381,-5127,-6055,-3616,-2814,-7991,-4325,627,-2294,-5656,1795,9019,-3101,-1172,4950,2820,-8613,-1651,-1151,6410,-1028,-3435,-106,7126,-1335,-4160,6513,-6559,1116,4312,-8322,-8676,1075,7436,5224,9138,7670,-6648,-3912,8610,6666,251,6802,2038,-3717,-2586,-3542,1216,-7639,-3621,-1614,-3389,-561,4745,-6701,-9016,9966,-8572,-9218,5303,5276,2478,-8632,-7504,5818,4899,1719,-1669,6445,6825,-4815,-9320,-2641,-7488,3168,-248,4621,4534,8674,9096,3106,-1616,-1122,2144,761,5400,-3352,-5880,2876,2773,838,-2294,3431,1752,-869,-4498,4826,-3546,2138,-3612,1142,-48,-9017,-6391,667,3518,9332,4532,7025,-6444,-9466,2568,3581,-7094,4056,8919,1236,9263,5089,-4306,4669,7694,2181,-4118,-7500,8855,160,-6801,-2685,6718,8191,-4051,6003,8889,-2361,-9439,-528,-3946,7755,-6714,-3943,-4842,8575,8891,-9175,-7530,6214,3018,6751,-3667,7281,1470,-1393,595,1710,2772,2762,-8153,-6089,-6604,1933,-5660,-1848,9700,-5823,-1378,3011,-6117,-4453,-4390,-1092,-1346,-9710,1171,6785,-4601,-9171,-2781,-1604,4945,7004,-9950,-1549,8593,7155,-8606,3807,7337,7992,1640,-5224,-6800,-896,124,-5594,-3470,3945,-8987,9795,9124,3153,9385,904,5137,-4069,6855,-1104,-8507,-2108,9669,-266,1242,-9287,7703,-7537,-5709,2990,-2738,-8274,-7745,5336,-4588,-8693,9495,-7345,-5674,8615,1781,-5102,4557,-4117,5516,6700,3185,1646,-984,1814,7912,1649,-4769,1622,210,2295,2621,-8543,1244,-3600,-7587,-9767,2075,-1224,6434,-4596,-3733,4875,1819,-9510,6344,-2944,-5302,-6353,-1228,3906,1043,-168,-7394,-89,2592,778,-5436,9191,4653,7000,-707,5025,-8735,-9282,-317,5359,9655,3380,8923,-3184,-5853,-2776,4825,9567,-5844,-8840,2855,-7180,-4675,9838,-7539,-7062,5470,7074,5931,5880,-8198,-2886,-8054,4872,-9396,5359,7246,-3711,-5076,-716,8088,758,-3120,1185,8150,-6314,792,-730,-1725,8618,3661,8464,-3922,-9082,6295,694,2148,-6993,-8087,-233,-1656,-5962,1480,9114,5551,-5336,-7685,8296,-834,-5162,8546,-970,673,804,4000,-6834,2556,-5330,1686,-6822,2417,5023,8070,7936,-9186,9730,-1821,-8762,-9798,-4906,-8062,3606,-5433,5644,-4358,718,4819,-5834,-2790,9240,914,4706,5298,-9443,-234,-8103,2681,4457,-7567,846,7374,5887,3668,-2457,-6819,7634,-234,-3349,5504,4552,-5031,-7464,-7192,7445,7003,-4635,-8135,837,735,-674,6112,-9528,-2124,-471,-4899,4766,-4019,-1116,-7606,1199,4153,6734,2807,-9696,55,5905,1437,9026,8882,2444,8182,8603,3228,5941,2469,-2403,43,-9182,-9425,-6073,-2811,3595,-7926,8669,8334,-251,-585,6451,-3759,-9033,9740,-867,8891,-6051,-8920,-6569,-7676,-5564,-6468,3605,2034,2109,-6111,3579,9957,-5139,4264,5997,-4631,-7549,-2283,-7714,9576,-6156,-4178,-970,3270,2218,-4848,4717,-7447,-8490,2380,-9463,-2160,-2033,-4990,-1189,1418,-4485,-6143,-4566,96,-5315,7979,-1961,3769,5479,-3101,-1732,3653,5314,7651,-2141,-635,-1973,9539,-8690,-9020,2321,-7481,9593,-7298,-8886,349,5695,-1736,9640,-7407,-438,9251,-3662,-6530,4938,7868,9951,7000,-7799,-2238,-5816,2522,-7495,-1963,-8492,9989,-3482,4894,-6974,3799,5219,-9989,-9307,-8821,1619,-1145,875,9694,-1780,8228,2572,-3131,-8471,-8909,-8273,8185,-8818,-2597,6868,-782,1943,-4015,-6701,5742,8230,1583,7643,5081,-6821,5360,-4034,9483,-377,3929,-5521,-7094,-7531,4739,3656,-2809,5867,941,8926,958,8830,-1293,3194,-1692,-6360,-1437,8044,8933,-8938,-1400,2108,9419,4489,-4589,9818,3488,7310,-9753,-1313,4277,-3937,484,5489,-9476,6463,6012,-8082,-5361,1268,-1225,-1667,4674,1066,5372,2608,-4370,-7259,1739,-1204,-2342,7004,-6409,772,-4922,8552,5927,3695,4371,-792,-2657,2274,4683,-2551,810,9309,-90,293,8588,-873,4404,-4558,4401,-5725,3605,4311,1950,-3762,9989,-1721,-8734,-5520,8631,-1849,-436,2562,-1047,-1411,8656,-4085,4243,-3354,-3867,-6838,7969,9238,7995,-6249,-5452,-6622,-6384,6709,-6199,7704,-6915,-7586,2472,7419,6524,7484,5414,-4678,4471,-4400,7033,-2694,-672,-9001,-8354,2706,2100,2329,3662,-8068,6105,-1078,2105,-8,4750,6097,-3389,5925,-6773,-5332,7425,-3365,6957,-4762,-8429,-3049,5405,-8955,7630,-6836,-805,-1892,-484,4526,-811,3565,-5208,9523,2720,-6442,7138,2014,3679,188,8134,6130,1005,7584,8564,6725,-9417,2436,-2180,4198,-1122,3065,-6626,-1406,-7150,-6147,-6702,-5705,9986,-3252,7135,-6860,7573,-8236,887,8213,8435,9456,8754,-1815,-4761,5063,-8662,8845,-9185,4678,-9270,4194,-5343,6433,-7775,9346,-6155,5229,5357,-3036,-1355,1888,-2412,-5767,-3168,-5200,-2993,888,2398,-8658,-5247,193,-2120,-1002,-3971,5902,6674,305,-9145,-1397,889,2944,1791,5767,-1768,6420,-7295,8716,-7289,-5650,-5209,-8039,1096,4763,-1076,-3911,-9809,-4084,3045,-5974,3764,7009,-4200,8943,2886,-8540,-1757,6566,8892,4882,-9333,5970,-6445,-69,7245,8215,8864,3836,7898,-6381,-2174,4687,-3738,-5335,5752,5875,7141,-1545,5831,2542,-4131,-4090,8233,-2606,-5273,3574,2628,8594,-6583,-3502,-1816,7875,934,8752,5877,-8547,-3971,-5665,5552,-5759,1472,-2122,-6787,3810,-1855,-3638,-9246,5019,5785,-7556,735,6312,-1688,8865,-9745,-4106,9082,-5285,1355,9956,-58,901,-5571,-6397,2764,4310,-678,3250,-8654,5515,-881,329,2387,-890,3213,2135,8108,-5775,3696,-221,6397,1306,-6861,2424,-5438,4501,8162,-173,-5593,-3694,-7711,6344,-1476,-4957,4134,9160,-8787,-2884,4931,-1057,-531,-875,-1584,-6913,-385,2421,-2190,9366,-2348,-2440,-793,8169,6110,8604,-3019,-2086,3940,5843,-8760,4518,5311,-6408,6040,1516,-2101,6448,5869,3283,-313,-751,-830,1533,6829,-3402,-6978,-8229,1754,9658,2031,748,-6824,6124,-9151,2903,-5190,8787,-9346,-9821,1025,6360,2788,7815,7784,2092,1674,-9102,6817,2215,-3044,3777,-2823,-3086,-6779,-7139,3016,6285,-6176,1182,-9676,6737,-2715,-1335,-2543,1220,1208,-7796,2480,8070,-2625,-9297,2591,1401,2358,5750,-3372,21,-3680,-7499,8502,-2596,5651,4327,-3022,3648,-5192,-834,9827,8812,-5587,-4452,-4342,7631,-2342,5543,-6381,9144,4415,1237,-1405,2693,-5866,-5548,8248,-1333,-692,3377,5406,4808,-530,6429,-3147,-5601,3557,1955,-2900,7611,-6873,3044,1726,-5833,-3912,-8068,2592,-7143,489,-5920,3462,-6080,5488,4833,1289,-3337,3746,-7312,1035,-7913,-166,1914,2903,9545,8346,-4588,4123,850,-2821,5524,-7243,1572,3923,-7014,-5389,1616,3414,6732,-2601,-2697,4253,-6362,-8009,5739,-5896,-9568,6962,-2266,-2180,-9945,-3385,8746,-9573,7065,1480,-9572,2850,-6674,-3027,-8620,-4115,9476,2952,923,559,-1659,-8079,-4909,3555,-7981,4065,-919,526,9638,-6023,-9973,-9185,-1285,-8000,668,6525,-4595,-453,7524,5975,8714,-9005,3272,-4825,-1529,4914,6234,-345,2528,-551,6025,98,-9574,5899,-8810,6038,-9866,-3090,1651,-6595,-3210,9920,6489,-4402,1112,2928,-2067,2452,3654,2651,-7879,-5250,3984,-3971,-2671,6392,-6242,-6732,4270,-3634,-7054,-6976,9210,7235,5771,6210,4699,-5047,898,2537,-5118,3140,1881,-383,-4603,7119,-3842,4780,-8631,8548,8099,142,851,-9639,9684,3272,-3519,-1605,7216,-6054,-1801,1867,8346,-2077,-2024,-6486,4750,-5336,2341,1200,-5885,3168,8937,1798,5692,5659,-4591,1694,4882,5652,-2827,6053,-5761,7248,-2644,8424,-2095,1855,-1877,2034,683,-8284,-3069,7159,7648,-9261,1243,-7185,5116,-7644,-4494,-9735,7176,-4717,-9792,-1412,3654,-6149,-6133,-602,-8640,-1455,-1310,-2307,4261,8650,-9766,-2805,-754,3715,-7646,-358,610,-4949,-2845,-9118,5996,-8203,-6696,-1616,5178,-286,9401,-2754,8903,-9596,-9214,-7276,5950,4551,2544,-9770,1957,-2974,-8111,5167,-7907,-3650,5028,4248,5133,975,-1127,-8999,-3423,-8216,-3289,-7234,-2760,-251,-6749,6784,-8690,222,8115,-1115,-2118,4795,3847,731,9643,-7389,3634,4437,-1954,-8159,9737,3644,4795,-4915,7250,-9083,6943,-5975,8812,-1828,-6409,-9248,-8576,-5986,2164,9860,8623,7419,7345,2029,8619,-2374,-7730,244,219,-9525,-1350,1153,-4823,8402,4623,994,5649,7259,995,-9964,-9438,9126,-4887,9573,-9642,-6657,-9172,2077,4050,-2017,-7694,-4577,6795,-2971,-7713,-4044,5494,5856,8356,6617,-4091,3316,-1236,7205,-3509,5118,-8660,-599,8945,-949,8677,-83,2304,1927,7891,-7867,-8247,4635,1585,8074,-2871,-5152,5380,8699,-6994,-112,-5250,2848,-1520,7669,-2568,-4832,4771,8086,3978,6819,8,2760,-2999,-2939,-1875,8062,8079,-8521,-6131,4683,8167,-1460,-1198,6888,6936,6487,4443,-4924,8545,1207,-5908,-1891,4155,-4074,2735,6699,-7440,-624,9824,-1742,-5620,1685,2748,-7625,2426,-3110,4117,2421,1441,-3006,-5265,-4789,-4900,-5509,-2099,1672,9985,8920,-5298,-7731,5305,-7325,-8294,-5013,7954,515,7676,5463,7903,-1980,-9432,8609,-8443,2374,4598,7731,-7126,6945,7729,9543,874,4275,8507,-5707,6263,5973,-5591,2390,-8438,6162,-9836,-6802,9040,-2823,1510,4906,9713,-2808,404,902,-6371,6057,2821,-4529,6002,977,6693,6297,-5595,5393,-4657,-2361,-7223,2175,4310,-8409,-3535,4864,143,-5990,4368,-5922,-1509,7389,-4793,-7010,-5336,-1271,9355,-2299,-6448,5888,6650,-623,-6363,-9239,-4318,2880,9403,-8200,5616,7043,-7986,15,-4313,4115,8431,2897,9172,-1345,7694,-7631,-4741,-4736,7233,8782,-6896,8310,-9603,312,4890,3952,4750,-6435,-7131,1265,-7173,9951,-4053,-8704,8411,-3682,2992,9621,9012,-5060,-5543,3046,1964,-9169,-669,-6608,-3140,4121,6916,-1535,7449,4704,3193,5371,1491,9948,-1177,3268,-3426,803,3362,9556,4865,8755,6308,1331,-3314,2138,8715,2157,-9296,-6026,8542,-6519,-9692,-732,8507,6941,7789,-1828,6366,9046,3883,3862,-4495,-9689,-8612,-5241,-4144,1024,3853,2407,7876,-2504,6738,-880,-2669,-7390,9293,5489,-7601,1583,-6294,1902,-9299,4545,-7770,3094,2051,-1825,8343,5860,7650,166,-1971,-8077,-1741,5047,5899,-4903,9572,9849,2944,-5174,-1004,-2676,-9257,9496,-8799,1435,2330,1098,-4018,6639,2672,-9058,-7369,4012,897,-543,175,-6999,6742,3627,5678,1189,-35,7620,7353,8028,-3042,-8246,-6856,7672,-9966,-4402,2993,5666,7625,5540,-7369,8038,7193,1299,6941,-3977,-8028,-9944,587,-6922,-9668,-951,-4758,-6034,-8592,-6136,468,-3436,-4913,-1043,5709,-1676,-6526,-8844,2895,-7556,242,-2239,-6538,-9859,4540,-1961,7331,9689,8864,4278,1867,-3736,727,1296,-6819,1044,-9461,7023,-2163,-8735,8391,-2785,-9773,-9227,-154,-719,-6318,5170,7329,5035,-8961,1854,8503,581,-2121,-5158,-7164,-2728,4334,7339,7225,6167,3234,-6125,4558,2877,-3966,-4420,-6460,4998,-1015,50,5795,-2533,1892,7828,4149,-886,3467,6823,5806,-5012,8675,-4026,-17,2489,-1191,7556,-6419,-8071,-8692,2286,-5834,-7244,2017,-6866,-3667,-8720,-7419,6686,-7450,9672,-4168,223,1194,-3890,9370,8009,3639,-2334,-148,-416,-9369,-2508,4593,7548,2899,1109,1664,-6444,-7468,-7101,2541,9748,5514,6446,-364,-5737,1950,-3882,5583,-349,5464,-8267,1016,2699,-3235,-1727,-8653,4207,3693,7345,2137,3867,-3718,-2279,-4098,-5564,7184,5899,-6412,5350,-6887,5860,-4174,7889,403,9962,815,1898,-371,1237,7447,4993,976,557,-2667,-6227,5118,-7313,-2016,-3026,-1384,-6650,5942,-9881,1986,7650,-9090,-6733,-7433,6567,3601,56,-4799,7801,-5961,7534,8138,-5479,-3106,6947,-518,-9858,-8925,-4158,-8974,8073,4955,1720,8200,1656,-4618,-1682,-3754,-328,1044,6319,-2649,2229,5546,-2689,-7678,8905,-2232,-6873,-4406,-7455,9803,-4030,-3533,-591,7007,8190,7664,-8401,6419,-1094,1426,-1566,1063,-7225,3262,-2211,-9285,-3245,-2364,3862,-337,-8012,-6620,7491,6256,-7364,9256,4563,-5225,-4012,1072,-391,-8543]
-63565
-# expected_output:-3096
-# code_output:
-# runtime_error:
-# last_testcase:[-3858,-536,3182,5894,4366,9983,8440,2314,4264,-1169,4047,-7462,5345,-1731,-2497,-2576,8459,-5433,7300,5924,-2342,-7517,5061,-9984,4186,-1527,-5492,6967,1772,-6623,5629,2778,-1313,4403,9350,-3454,-2384,8554,-4150,-3750,181,7952,-3658,8479,-8536,9277,1541,4186,-5817,-9209,2703,9438,5926,-5937,9664,567,-3792,9750,2258,7021,-8077,555,-8025,315,-4697,7791,-7081,-2796,2326,-7241,6967,-8006,9881,6254,-9670,-4159,-8513,-9717,9061,7682,1160,8654,-5058,-2169,-4251,-7350,7634,-3141,8028,6785,9705,-1834,-3687,3260,-4668,-3849,-4317,4300,5357,3159,-1974,3293,8746,6562,-5718,-1024,-9552,3837,285,6091,-7721,-5129,-8643,-4447,1263,1264,-3375,5203,-7639,7638,-6003,-2075,2421,3386,-107,-1621,-7700,6384,-9516,-7710,-4298,455,-7520,-765,9409,3058,3134,7468,205,-83,1471,1025,-8691,4806,-2852,-5708,118,-8409,-4273,-1983,-5040,2021,6848,187,1675,-6268,2169,8087,-2186,5819,48,3524,-8690,-3125,-9168,4759,1734,9107,4182,5863,839,-1350,6141,7841,6764,-467,2698,6927,8981,2393,-7812,-7771,7167,5206,281,-5257,992,-3113,-4435,5130,9555,4311,2982,4527,-1904,4138,-5415,-1689,-6538,2877,-1991,2785,-2753,-1981,9008,-8455,714,-1957,9281,2948,3906,-3172,5028,3742,6411,-5920,-4371,-2659,7487,-6641,7075,-1107,-8082,-613,4869,1790,7715,2961,-3854,-6994,-7383,4428,-9822,-2867,-3026,8640,-5304,-6050,-3361,4587,-9771,-2971,-4747,7482,-5109,5981,6225,7746,-4621,6275,1449,902,-140,3754,-5636,947,-3647,1070,9143,6370,-2707,-7370,-4473,55,2982,-4643,-4005,-5658,-2983,-376,-1040,-5890,9600,-3727,2280,396,-1163,-3177,8692,7514,4444,6302,3412,3751,-4461,-9493,-7945,9719,-7879,3169,5985,-6362,-7960,-5185,1880,-9655,-1802,6813,6794,-6735,-7449,-7564,-3133,3522,8831,-5708,8938,4749,2362,-725,-4074,-8826,432,5072,9507,-3236,-7666,3970,1161,2692,-8832,1605,5859,5590,-6139,9532,-4431,3724,440,-1878,5942,2058,-3714,-798,-7841,3286,-1031,-5472,-651,-2992,8103,-5828,7541,-1751,8263,1660,2264,-9101,1289,-1110,6500,-7055,4696,-3790,2015,-2849,-4945,-9300,-6938,-254,-3037,-2604,1429,1213,-9022,3113,-4793,-9841,8854,736,-7305,-9662,-3078,-3231,-3321,-5920,2417,8899,-7923,3651,-843,5638,-1203,1030,-3174,3731,7441,4039,-8171,-9762,3335,-1223,-8997,-1800,743,-6643,7865,-4913,-3881,-3150,1690,-1964,-8082,-7327,525,1111,4952,9225,5312,-4727,5150,-6068,4990,3713,-7530,-2123,1941,-4367,-3490,-3767,3668,-5458,3000,-9327,3510,-9530,2324,-3451,7818,-3581,1577,5083,4921,-9436,-7564,46,4369,-5225,4658,6526,5874,2919,-9890,-8355,-9869,5125,-7448,-2427,-8920,5291,4891,-9258,-740,1544,3306,4249,-1892,-8537,978,7061,1087,8274,8248,9167,-1204,1554,5300,-6442,-4477,-7956,3053,-6864,9281,7462,2912,-9385,-1647,-8331,-9224,-9007,2655,1530,7452,-4588,-6050,4994,-1163,1925,-6203,8713,7610,-8262,-1126,-8723,-2753,-7143,-7405,6863,9553,-451,-514,9767,-6619,-1682,-5093,2507,-4408,-6933,8021,-1632,9764,-6311,4071,-1327,-3872,-4288,7269,5736,7700,4491,4354,-9188,-6921,3331,-3218,7870,1081,-2439,10000,-103,-7007,9823,3842,-7152,8067,4431,1431,-9751,8540,-636,6260,-2843,9120,7971,5192,-9804,-6712,-7554,-4479,7806,-5213,932,-1129,-7534,-4778,1491,7105,-4211,-731,-8186,-6110,-7279,-6104,1302,698,5233,6615,-9109,-3918,-5076,4036,8291,-4460,1957,-7171,7931,-2439,-7263,1635,414,-6111,2766,3395,3964,9223,6892,8385,-1903,-5833,-1803,7256,7860,-5882,-5904,-4418,-1408,4833,519,9924,-5105,1161,7932,-8764,8186,-3353,-5976,66,6588,-6906,1650,-1645,-3447,8571,-5763,-3962,2568,5123,-9239,5449,2038,1279,7671,-2058,-3009,4947,4768,1477,7370,-7859,-9476,-7148,-9205,1541,-5899,8151,6842,-464,-904,6747,1745,-7322,-3868,-7142,-7072,8202,6938,2628,4077,9512,5384,-2354,9892,-6058,3007,-1448,-9253,-5813,411,-9189,6081,-8828,6839,-3272,-6401,9568,6986,5036,3612,-9517,-1620,-7872,5019,-4911,-8511,513,-2491,9404,-4190,6828,-4293,-9138,3706,-3646,1669,-6485,-8813,-3985,-2287,-5179,-6166,4205,-2046,1810,1247,-8551,9948,4287,1437,7331,-7071,-8578,5881,9829,-4458,9808,3450,-2004,-2735,-3987,5805,8001,-9157,-7728,-2842,4813,-6787,1577,-6376,1586,7127,1977,3539,6256,-4142,9706,-4826,9480,-3992,-1670,934,-6290,-4337,9837,9976,-8040,9403,-9256,-7052,3973,-103,-4318,1845,9487,3733,-9498,-8461,-4996,-6215,-3028,11,-3012,8469,-3657,-7306,4089,1290,-2208,5023,-7238,-279,5235,-5423,-5071,-7207,-1673,2657,6741,-3453,-9546,-69,-1298,9342,-7526,4124,3575,-3297,-7313,2074,-3187,9315,3746,-8553,-2663,9803,199,-9487,-5193,-8899,7993,-7517,-8914,7965,1588,-1129,5520,-2236,-6922,5131,6130,1295,7192,5219,-1059,3869,-2391,7047,-6241,2797,426,-6004,2592,-1919,-9006,-5080,7838,4178,-421,-1403,-3136,3263,-9558,2745,4446,-7177,-9087,4096,4265,7972,3087,-8355,-8441,-9998,8232,-6516,5550,-9973,-2647,4261,-6122,-1550,-7551,6482,-8076,7505,-5444,-9363,6637,-9206,2710,-6313,-3679,4264,-7198,3725,-7422,-3193,6326,7948,5669,5063,-6255,-9699,4286,-7469,-9520,-3164,9764,-702,-332,4364,-2751,6243,7782,3050,-3238,-1597,4207,308,1671,-6183,-3123,-8957,-4212,-5157,-3217,4052,4540,-7764,-7307,-5946,-2363,-1663,-7400,3059,-6096,8664,6887,1484,-5504,3882,2878,-7060,9237,-9866,5250,9015,207,8915,6420,-2526,960,4927,9896,8713,-6204,-2568,5975,-8716,7075,6055,-7523,1087,1818,8892,4001,-4419,-9466,214,7271,-8127,-2309,-9693,5985,-2298,-3816,8661,-454,3599,1687,-5837,3447,-281,-5715,7477,1169,-2376,7154,-289,-4471,3665,-487,-1841,8529,6293,-8486,1624,-4173,-8951,9707,-5701,5909,-5755,-8698,5390,-9108,-2604,3723,6414,2539,-7212,-7879,7976,4464,-5157,-6070,1161,7046,-3598,7422,9275,-2177,-849,-669,7381,-1290,8895,-2580,-8401,-6529,-6069,8131,-2143,4420,-5539,3196,7918,1105,2920,-8428,-8877,648,-3572,7466,-8450,-3650,2253,4073,1410,-5768,2259,6040,-3936,8974,6108,-1815,-4611,-7669,-9297,6341,1458,-6127,1108,-6522,3769,5341,7359,-3172,9596,-9485,66,9881,-2171,-8964,-5430,7991,8855,-162,-9373,5138,6488,1069,589,-8885,4581,1147,6126,7969,-1061,-9356,4480,4799,528,-4422,-6755,4815,-8545,2909,1471,-7714,4665,7436,1892,2605,-1879,608,-4912,2869,8709,-9539,-6758,6387,2394,4489,6159,-3674,6188,-7727,823,9128,3823,-7246,101,5252,7387,-3335,-3730,-3802,942,-9921,3400,-3547,4716,4851,-8801,6018,-9124,-6821,-4452,-8307,-3743,-4926,-8760,-5327,6106,9400,284,-3103,7732,4648,-5527,-8972,-7252,10,-6269,2172,401,9581,-9077,7325,-6155,-9145,1814,6499,-6124,1474,-4180,261,-175,9907,549,-8702,912,7206,2118,5126,-807,1534,-5680,7095,3195,-4473,6764,1784,4527,3768,-3722,1283,3522,6127,9296,-190,2662,1439,6774,-3921,-1761,2809,-7694,2984,-1771,9483,-7829,-1525,7543,-5529,-2891,-2986,-5854,4849,-2026,535,1507,871,8203,9465,-113,-5423,1006,-1661,-9443,2922,9245,-9410,-4388,7827,-8720,3271,-3831,6655,4169,-3804,7547,720,4106,8438,4342,6495,-1555,4020,-5023,-8409,-6340,-5087,3264,-4067,-2337,4156,-8486,6399,1383,-1918,9895,-6108,2433,-783,-2454,6101,-403,8280,6317,5690,-634,8652,5814,-222,5333,4132,5442,994,6056,-9940,-1085,4222,-4927,-4474,5699,-7130,3474,-9446,1697,-5483,-8220,-3357,5181,232,6942,-9632,7107,-2411,6650,2978,8714,-693,-4495,1151,-9584,8822,3218,4194,-9015,-3092,2900,-8399,-9674,-141,-8550,6034,7789,-8653,3487,-9422,110,-6271,-6396,3707,-5334,7860,-916,-697,6525,-2934,4558,6381,-7873,3186,2725,-8954,3977,8555,9591,4119,-2477,-4888,-3659,783,-3191,6064,8879,-3781,-4520,9037,8436,3991,5229,6059,-3745,-8917,2550,8747,8604,8735,1925,-9410,9200,2317,2387,6325,-6847,-1054,8078,-9424,661,6598,6287,-3702,7827,5954,9069,4686,4609,6664,7834,-1919,-1793,282,-1771,-1662,4281,-351,4166,9213,1306,8176,-2804,5097,3612,4005,123,-4511,-9051,6914,8131,-1787,-9125,3132,-188,9611,-883,1606,6277,-1998,9729,-7784,-847,-4866,-8468,-9745,3161,-3750,7361,2266,5848,-3341,-5511,3855,-5517,1770,4921,-7098,680,-2675,-6359,7959,-9331,-2466,4872,1833,5951,-7611,-462,508,-5124,-187,3232,-6836,-7446,3269,-4866,-3054,-5313,7340,-616,6317,-4912,-7405,1906,6680,8138,-6069,5026,-6533,-3784,-152,-8654,-2545,-4258,-7543,3225,-1455,-6811,1278,-1257,8083,-9974,-3030,5277,2176,-3111,803,-3901,9296,-3328,-5429,6690,-3428,5389,-1172,2580,5760,-9969,-7402,1124,-7379,-7697,9949,-6997,-2882,1453,-9019,-2429,-4180,-959,-3640,-8446,6163,2359,-2145,-82,-994,6503,-7869,7389,4155,-4209,-6469,4709,-789,7757,-2279,9978,-8462,5201,9813,6613,-7886,1096,-1747,-505,6259,4484,7314,-3602,-6798,-4725,-7088,5028,2056,3023,-1617,-6418,-1382,-2279,5061,2739,9244,-1598,-4187,2832,4451,-1259,-9750,-5738,4996,7050,-8594,-6663,-6798,-2972,-8426,-372,427,1468,6622,-2719,-9703,3003,3297,-6019,6221,-6032,523,-6400,-582,5455,8115,-2019,9570,-9481,-8775,9654,-1203,1386,1902,7261,3609,-6939,6827,-1188,2578,-3050,-6028,-6017,-8669,-7884,8074,4684,-5443,-2313,7756,1705,2489,5867,-4756,3113,4191,5261,-2348,-5888,1205,-6583,-1435,-8709,-9331,2668,-4559,-667,-1811,-6136,5648,393,9344,-8087,6855,2667,6269,7381,1643,4226,3966,5977,1026,-1959,-1735,5359,-3017,226,1993,9623,-1912,9163,712,-4482,-5043,2062,4620,-7718,-2130,-4999,-338,-835,6371,619,2412,-2177,-3936,7237,-4259,1729,-1988,-2036,-5800,-1641,-5303,1033,3243,3934,7089,5338,-5543,8471,893,1067,8899,7218,-9690,-7474,-8851,6995,374,2010,8843,8260,-67,-1914,-7175,-6741,6565,-4664,8387,-1503,-4910,6795,-9908,8555,-5327,-9184,2204,-8095,-4873,-9111,-34,9387,2332,4567,6488,1222,-1516,-4300,6876,8168,-8878,-2687,-3232,8297,2433,4287,-619,-7343,-6428,-7609,8125,-8365,520,5536,4959,875,-1211,9390,214,-6162,-4577,-328,-5932,-2749,6243,-6294,337,-7883,5578,-707,-3912,8090,-5309,4520,-2719,-2949,7915,-8899,-7743,-87,1111,4146,-7738,9642,-4563,-6451,6690,-9557,6671,7870,2766,2488,1853,-5847,2087,5999,2346,-4543,-3666,5937,-5832,7328,3719,6062,8334,4330,-5161,4282,-1787,-4294,-7638,202,6432,6344,7150,-7078,3311,3533,984,-5188,-1129,-282,-4674,-9664,7835,-3137,-5241,-9592,-8077,7173,3938,8305,-6080,9601,1163,9234,2319,7245,4698,-951,9916,4325,6923,-2489,3736,-4503,4197,2589,5600,-3289,3463,3425,3749,6497,-7571,-6140,-184,7395,5067,-563,-421,-8816,8351,8358,-8223,-4408,114,5931,1774,-6439,9197,-9676,-5600,9345,-1417,-2549,-110,9916,-7898,-9611,-6659,7494,6525,1373,4591,-9801,-4003,7685,-8168,1521,-8876,2248,-6301,-3737,653,744,-4320,8931,-722,1640,-3764,8488,-7124,6007,-1452,4873,4099,2542,-6461,8263,-9435,4155,5100,-7239,-1030,-1272,3117,1158,684,-5827,-7107,-8642,-3719,6480,-6768,-6695,-7221,6686,4142,-8511,-6751,9028,-9688,-3809,-2273,8755,9364,-864,-6007,-996,-858,-7701,9684,-1839,-288,-9855,5724,5465,3349,2156,-632,5218,-8912,7363,-8809,7375,6039,-4337,-8326,3003,1834,-6455,6206,1927,2510,-4485,5115,2131,2026,-7314,8537,-8111,-1992,2821,1086,9104,401,4099,-5966,499,8091,2889,782,9107,2901,4235,-7613,-9329,-4003,-3050,-2510,9619,-9293,-4934,4248,-7334,5155,-2632,-7613,-5865,-5376,-3984,-8913,8549,-1077,-7836,8113,7055,2541,6481,-6588,-7538,765,1550,2514,9314,8486,-1176,-3420,9545,-6219,-9346,3339,8829,-465,-7189,7019,-4884,8715,6191,-569,-3530,-6011,-527,6104,-3015,9893,-760,4674,1069,4169,-1297,5817,-8622,6976,7711,-5219,-6943,6359,3136,5136,4746,-6417,5108,9478,-5535,7580,-3975,-3853,-8411,3568,-5632,519,-7922,-3763,3075,4618,6659,4024,2333,2926,-6215,-8513,-121,6802,-6120,9530,4987,3692,2439,5538,-542,-2919,9912,7882,-8226,-5300,-4334,5836,5820,3486,-262,-9871,5438,5243,704,9669,1800,-5762,1678,-1535,4382,6490,4585,-9456,6301,1090,5899,-1466,7515,-5776,-2912,2155,1894,9485,-2583,-3032,2249,-5199,-9122,6498,-75,-8331,-4277,2141,8946,-7580,-8051,9999,-6993,-5583,-7631,-8497,3896,5185,-7603,-2932,-8073,6306,8678,2904,5449,8330,-8955,6702,5508,-9408,-425,347,-5295,2302,4231,7516,-2934,5495,5386,-2897,6446,-4993,-5482,1038,340,-9458,2963,7810,7229,4028,8127,-2744,5635,2169,-5805,305,-3501,-1988,-2001,-3327,916,3729,8857,-5349,2445,7710,-7559,298,5920,-7081,-6636,3087,4386,-7480,9847,-7100,-4653,-6981,8906,-1470,-7804,1558,1849,2203,751,3486,-7931,8802,-4645,-4013,61,3764,-3964,5031,-3005,3830,7272,-7675,-371,-3015,8570,-6375,8210,6709,-7086,-2792,-7972,3570,9515,-1666,3846,-3785,8171,958,5633,7530,849,713,-7016,-9196,9647,7675,-9869,-3152,4597,1554,508,-8824,6728,8499,8802,8724,-9250,-1497,-8395,4910,787,2016,5650,5046,1250,-527,5508,-8727,-3339,4322,-2130,3292,7990,4596,-7361,1084,-8668,4271,704,9539,3269,-3055,-3402,5305,6664,-8619,1943,5058,6915,9606,-8039,-9595,8589,319,-5609,3242,1753,-9430,1839,-2625,3027,-4498,91,-4083,798,-4784,3120,1464,7354,8619,4632,58,-3926,-9389,5689,2840,-8991,-5347,498,-717,-3224,-2495,-858,530,-3264,18,2055,626,-4128,8940,-7476,-2745,-7971,985,-3,5815,8175,-3037,-2482,6334,2465,-6164,-3026,-5611,606,-1531,-6522,-1546,-7826,7546,9094,1735,5351,9798,8702,-2456,2315,6826,-3261,-8935,9283,9144,-6161,3949,-8115,-7774,-9110,-9406,-8864,-5661,-8567,-6321,-2013,1819,3707,-8410,6096,5415,9699,-85,691,-3016,7608,-9371,8934,2502,-753,-2846,9412,6316,-8924,8862,2641,-2881,3723,9235,-4991,-1063,-1403,-8362,3591,8478,2940,1330,7670,3162,-681,-4750,-9681,-3958,6300,-3345,-1898,7457,5756,6782,-967,-901,3165,-6613,-5547,-5230,-1237,6247,9827,-6088,-6993,-1202,3337,9472,6931,-2331,-9199,-1809,-921,-246,4326,4242,-4835,7749,-5844,2020,2908,-9126,-1581,3253,-9131,3185,-1706,4842,-1264,888,6218,-5123,-1362,-7216,-117,-779,-4951,4215,4128,4958,-8690,8011,3018,3147,-8856,-8137,-1225,-5164,3182,9268,-4392,2954,5415,6282,5541,6010,2565,-3859,-909,-1248,-876,3280,6676,3162,4700,5804,738,-8209,-9860,-5927,-5140,-884,3952,-3644,7311,-9117,-5473,-6660,4327,7132,1784,-8244,4235,-8947,-1877,6221,-4741,-3560,-6825,7167,92,-4963,-3175,-3958,-3896,7321,-8012,6374,-9087,-2699,-2932,8997,-6365,1666,-1260,-4781,7422,-595,-5963,-5667,7483,-5332,9141,-7043,-3204,-7275,8446,7719,186,-3612,8281,-5556,5096,8442,355,3412,-8860,-9317,-2474,6407,-4818,-84,8580,9839,-7737,-7859,-3841,-6477,-9778,7697,9285,5331,-5223,136,-2344,-5488,3520,-6192,-9694,-9,3898,6550,1742,4599,-3659,-2370,-917,-8933,9445,3483,-4784,-141,-536,9204,737,7858,-2170,-6881,3939,7865,-2970,5427,-54,6182,-661,3239,5169,7296,-8185,-7287,-86,5274,-9374,5096,1796,8564,595,1626,9215,7095,6517,-7601,8114,-3857,-6998,2919,-1720,-7773,7803,6999,-2795,5596,-2317,-8271,591,-8806,-4342,9748,-7950,2117,6516,-6707,8317,-7839,-7295,2454,-2608,-4469,313,4233,5979,-3100,8285,-2505,8564,5431,-2526,-1223,7741,-6502,320,7931,7640,40,-9669,8038,-732,3975,8549,-5763,-5131,2479,460,-6340,-415,2696,7991,-4651,-5548,-8862,4438,2391,8916,4065,9868,-5118,-6607,2596,9160,6830,5290,-4354,-5854,-8675,6030,7511,476,-9152,-6102,-4027,9855,-421,-1666,5774,-7252,-3080,8805,8728,7782,-4145,-1933,-3708,-3318,2772,6157,8308,6802,4050,4657,-5383,3029,5220,-7437,-3013,-364,2933,8792,-9706,-6953,-694,9276,3491,5149,-6130,9019,8904,-7773,728,-6421,3186,4832,3585,-7473,1095,8246,-9148,381,7625,-1414,6347,-7160,-7129,-5161,6064,5149,302,-9159,-203,-8290,129,-1451,-1154,-7795,-368,-8422,-3123,9450,4648,-6484,9973,-664,-5011,-287,4497,-8391,-7332,-1335,-7198,5826,1017,-9639,-7002,2799,6670,-3015,3652,7024,-2941,295,8381,4709,-148,-7627,856,5870,5387,8502,-5968,5961,-4424,-5505,-4496,-8338,7873,9036,6632,-8520,4698,-7485,-9556,2602,-3281,-8619,-1864,1683,7397,6664,-6899,-5716,9726,-8226,1480,9733,3293,4143,3657,-1006,-4001,9378,5442,-7142,6001,4642,-8271,-6164,-8779,-6979,5477,3641,8611,7256,3343,-8852,-8546,-4808,-4677,-6355,-4510,-6772,384,3939,9899,-3796,8215,4510,-1398,-5250,3346,-509,2252,1339,-8490,-8529,8249,-2526,-2218,-6780,7690,-4674,258,8022,-9414,-2635,8533,-7467,2041,5211,5331,6377,4153,4686,5793,-4455,-4359,5966,803,7275,8822,-2034,-2848,3051,9307,7878,8991,-7147,3698,2378,-9397,-8315,7560,547,-9370,6315,-321,384,-7104,-8614,2980,-2619,1986,6788,-7871,6413,1174,-3134,-8044,-1047,-6254,-7571,-9071,9920,3323,7987,2941,-9276,7891,-5324,-9562,-7756,254,-1375,-3770,4682,2715,-6134,-3170,-2161,-3360,2928,-3872,7583,527,4376,-4854,-1558,-2186,-2352,1244,1222,-9459,9385,-1663,926,9684,-9054,5045,3814,2953,-9114,2975,8621,-111,6256,6917,3725,-6061,-1462,-1329,-8733,7438,-6964,1499,-497,6146,7277,2578,-1300,-966,-1857,6498,-4173,8331,5920,4823,9615,9835,6039,-2849,5699,2442,-5342,-5444,-5760,5634,3753,-142,2935,1964,-7190,1051,4143,9643,-9595,-5320,-9333,-504,-1872,2302,4906,-441,-6461,1725,5112,-2097,5197,-9116,-6906,-7216,1842,4422,8267,-833,-6401,-247,8985,8641,-9561,-6412,-8147,-6281,-9256,4424,-2088,4828,6995,9918,1378,-3587,1378,9910,-4878,-1312,9077,-446,3892,-3798,1467,7602,897,-8913,-7119,6540,7362,-1111,7940,-200,9776,8679,-2741,7188,6375,-7970,-8995,-364,73,1082,-9245,-3971,3491,9143,9867,1671,3520,-5978,981,-2488,1033,-9398,-4983,7086,2990,-4904,9432,7764,3882,-8942,-131,2175,534,-9686,7527,5265,-8741,-6445,8363,6320,-7154,-523,6797,6086,4333,-7840,2905,-5267,-5571,-1423,-1,2215,-2609,3873,-1463,7093,-2714,-6690,7653,-5787,3424,-8932,-64,3666,5337,-5339,9642,9992,-2800,-2792,-1904,645,4141,8875,-5198,-8379,9354,8515,-7060,8593,7897,6472,9494,-3519,4345,-7959,-3898,-7980,-5160,-1954,7310,8712,2707,2620,6973,8606,-2482,7938,-3860,-1065,328,5677,-4320,8929,-928,4859,-341,5430,-740,1437,7181,2450,-382,-5137,9406,-1136,8204,6306,-1414,9379,8627,2582,-1026,-6904,-9677,-65,8878,-4931,-8095,3538,3859,-7677,1489,4605,6611,6655,9942,261,-4459,8914,8653,650,3410,-865,-1531,-8049,-5363,8221,3801,2764,765,1587,6117,2137,-1603,-6100,-3186,-511,1572,-3011,-3565,4696,2447,6446,-4482,-9223,3770,-7136,-9735,6138,-5248,813,3990,-2975,5788,6642,-6592,-7107,9552,-6628,1983,-2318,4569,7007,1835,2298,91,-4414,3299,351,-7527,-3233,-8335,645,7816,-6046,-3149,-5636,3154,6455,-2816,7562,6651,-1392,9456,-4230,1824,-3275,-8282,-7062,-8680,-5459,2178,-9816,3466,2278,4383,8958,-1826,6862,-7937,-7287,-8078,-4716,-7935,2292,-2219,1730,-8166,-5659,-3923,-5203,1333,1365,-6117,1794,-8413,-2915,-3972,9291,5953,3169,7564,-6636,-1487,8324,4580,-4879,-6837,-5031,139,-1115,3791,7523,2456,1423,2255,-2231,-4654,-526,5585,-5993,5022,4882,-2648,-7110,-3907,2002,-4287,-4923,-6932,8869,-5700,-1630,-7028,8559,8768,-4247,6591,4718,-8534,-4302,-296,-159,-3991,7952,8200,-2685,-9422,6621,-4634,8116,3657,2609,2067,-8830,-5970,6047,-4465,-4227,9177,3635,1364,6546,3743,8434,-5228,3894,-7472,-9869,-3851,-9653,3602,1340,-8971,8567,4237,-7736,9942,1551,-9281,-8830,6733,6327,1839,-7845,6231,7639,-8992,-829,-3416,-5830,-5763,-5566,8697,1462,-8004,-5865,2410,9937,8325,-1165,5463,3320,-3963,-9204,-8921,5481,8772,106,-803,-8546,5911,8662,-7256,-7832,8923,5578,-7883,-474,5570,-6642,8530,-1624,-1250,3698,-7105,-3164,-1784,-1082,-714,6772,-4798,3831,5561,8282,-9439,-2985,-4733,-9378,-6647,6517,-8594,6806,6520,7045,5063,5323,6242,-4105,-1136,-3037,-4445,3621,9505,1237,-380,-5701,7792,457,-15,-3795,-9709,-6214,-6360,-5923,368,8587,2530,3671,-9497,622,1085,-4350,-1130,-6988,-8022,-4759,-9591,-2360,-1710,1960,-4116,-5220,-5081,-5064,-1939,9979,-2859,3513,2109,2514,-5351,1211,8041,1603,-1514,-5090,-9384,6879,-9174,1912,-620,8625,421,-5830,6529,-5402,-4599,9499,5082,-3033,2486,-1607,7427,-9193,-1996,4775,7628,105,-7118,-7183,-2520,-7534,8685,728,9832,9002,8495,8874,-8938,8628,6871,-6533,-5734,-5155,-4933,6915,1513,7950,3162,8044,8849,-8195,-1264,-3862,-9889,1776,2174,1204,-7567,1133,-4823,1323,1232,-9770,-2307,4022,6333,-6629,-1559,4897,3085,2244,-6495,-9926,-6167,-7015,-2974,-9613,-5282,6975,-4688,3902,-120,-8270,-1511,5948,3530,6116,-8046,1732,242,-5671,-1057,-5316,-1633,-2038,-8172,-7014,2354,-7777,5636,-8911,8173,-4806,-2688,5399,-9621,9027,-1426,-245,7828,8666,-4962,-2911,-831,-9857,9438,-5531,-9638,7894,-3181,3452,-4221,-9116,6822,-9341,2889,-9024,7384,5129,-8068,-63,-4175,6515,8707,5196,8610,-2696,-786,6819,-1360,3291,-7539,-6456,-5677,-3967,-1855,2273,-6647,9100,-7344,6403,-3226,-7135,7381,1658,-4014,-3627,-7,-8683,797,-1033,8945,-8486,6429,6922,521,991,-9008,1006,8490,4745,-146,8147,-111,141,3627,-7058,1106,-7640,-8350,7368,3748,-1592,5627,-2909,5217,-5356,1847,-5647,-3942,-9798,2275,-8729,981,7556,-6097,-9364,984,6281,-1155,-5913,3751,6174,2697,-951,-8952,2234,-2056,-6014,1622,2043,2243,2390,5274,2874,7912,2600,1436,1048,1924,3261,-8504,-7132,8313,3786,8598,7828,-5940,3520,9526,6457,-4297,-1430,2971,-3771,-6407,9486,-6266,1866,1252,-4972,-800,9280,-3416,4071,6398,2172,-1172,2907,-183,5713,-9276,780,-1470,910,5560,-3997,-185,-881,6618,4398,-6618,5851,6237,3193,4491,3485,-4489,5303,26,-8058,-4116,-5438,-8595,-50,-9933,-5681,698,9711,2533,1133,7065,-9779,-3899,7418,-3586,5583,1800,-8293,8039,3933,-9651,56,8045,1792,-9705,7524,3174,-659,8420,-3730,2943,-3096,-4383,6,-9181,-6850,4735,3863,-3884,-2348,-2387,-6837,4957,6584,-5311,-6678,-1819,-2849,-6902,1150,3747,7572,-2542,1059,-5606,8855,-7820,-6569,4513,-3309,540,3268,-3502,-3746,-6790,5784,4969,-9703,6536,-6039,-7703,4580,-675,-9513,-2,5210,9105,6041,-97,1348,7947,-5398,-864,9139,5886,7348,5716,-9353,-575,-84,5649,-5325,-1169,2731,-3630,4525,2432,-6902,-1395,3109,-9614,6955,2616,4585,6481,-3887,-2264,-3689,-4712,-2341,2971,2365,3801,7220,-3939,7049,7247,-4777,8280,-1437,3450,-5809,-1848,1558,-6159,7814,-5917,-5546,-9278,5511,-4533,6396,9302,6137,-9046,1469,-2148,2360,-3709,4392,-1671,-9054,4895,7518,-5806,8609,-360,4280,-1231,2977,-8104,8630,-572,-5723,3469,-3650,1621,-4986,-6389,-9641,8329,5739,1212,-5000,-3298,6508,3932,3366,5398,599,1644,9009,-6145,-5331,4738,-9691,7562,7040,3169,-789,-4404,-8253,568,-2688,3023,1243,3915,3335,5195,-1249,-9698,5797,3850,9527,-2996,3815,-9990,-7760,-253,-882,-2112,4214,-7855,-6569,3091,-6123,-6181,-2788,7096,8144,9395,-6059,6206,-1693,3707,746,-5166,-2457,-3134,-3285,-1427,-8784,-294,982,-4636,7365,-6781,-7362,7369,-9794,1575,-8917,-6427,8152,-1752,-2046,4571,2057,7010,-7299,4870,6627,-7066,-2599,1167,-395,6677,-3741,6755,252,-7279,5509,1188,-5037,1221,-2780,5099,1261,-3278,-5240,7080,-9324,-1789,-2160,9407,2050,-7409,-4714,-1571,-3219,3392,-5154,-7791,420,-8350,5697,-813,-3042,-6370,7833,-3406,-4157,5926,-7158,6064,5619,-7193,9281,4731,9029,-9711,7130,-8011,-2895,-7545,-7921,5853,5588,-3255,2046,-6317,1488,-7562,5733,-6634,9041,-7288,-4069,-2383,1325,-5019,4381,-1959,2688,8057,465,-5083,4260,7961,3779,7784,8548,-1097,-7793,-9137,-2696,7536,-6999,4710,7142,-8287,6105,-4229,-2244,-469,3208,-5447,-2932,-7367,8372,6846,-8534,9693,6765,6847,-5483,5410,-398,9409,-9495,1537,1348,-2766,-7405,9832,-8062,-4958,-5878,-8854,8327,-9818,-3566,8302,-2069,-8220,5181,1077,-9669,-5113,5505,5586,5398,1733,-3888,-2289,8321,-9315,-3392,7057,6507,1514,-6641,-7840,-1748,-2455,8235,-2870,-4656,7894,-9235,-5878,167,-3779,5768,-9966,-5716,-2177,1349,-1904,6456,-5166,-7080,1072,2272,267,9831,-8664,-8703,6396,-1970,-3551,-7882,-6787,-2573,1183,-6545,1286,9917,-6035,1242,8578,6621,7883,-1132,4190,-5740,-9303,293,-2389,8769,1214,374,1604,-7819,-44,-6169,8436,-9193,-4573,-7428,-5776,9889,9287,8820,1686,-7423,-4864,-842,-7625,3016,9578,-4317,-1633,-2315,8164,-5144,2577,-8784,-4065,7602,6215,7621,-1413,-5868,5330,5450,-7726,8907,-2374,8992,9219,4575,-4277,-1096,-6877,-9785,7253,6519,4531,8382,9350,1278,-8447,-4194,450,-8311,-937,-4508,5198,1697,9436,5448,-6062,-4170,1806,-8067,2411,2296,1225,-7071,6657,-3142,5916,-1964,4201,-2069,5295,-8863,5124,-7670,-811,497,-9811,9142,-6546,-56,-169,-8638,-2295,9996,2769,-7482,-7948,7129,-3965,-2903,4871,-4487,-5374,-5173,-1480,6335,-4211,-8870,-4214,-9034,7842,-7674,4229,-5270,8999,6543,-5198,2828,-7708,-3221,6461,-5645,6887,9648,8205,-1417,774,8945,-997,-2597,2500,4516,5118,-7488,-3512,8,-2806,5562,5786,2047,7505,8583,-678,-2118,-5056,-4723,-6977,-5271,-1752,7357,-5080,1233,4494,2047,8934,-5843,-3245,-4817,8552,-2733,54,-1602,-3922,-4781,-4790,-3494,1841,4898,-2280,6216,-1416,-7734,-3866,-5620,6088,5143,8466,4963,6982,-4380,-6362,-1757,-5939,-6386,3276,4238,-9179,4368,4353,5553,-9726,-3654,-6015,1593,-6132,-7207,2954,1806,-6037,2264,9884,5826,7769,4445,-5661,-5538,790,-6311,-9939,-3875,-8234,-1828,-1982,6036,4562,1567,7150,9377,-1800,1230,3631,1478,-9075,402,-2843,8296,2431,715,-3929,7368,-5136,6385,-3217,6909,-8123,-2096,-1954,1537,3581,-7514,3177,5050,8883,2061,1981,-7284,-3321,1876,8229,7573,-1364,708,5347,-9928,3839,-1621,8821,-721,9640,-9116,-5334,-8635,-4718,-7847,-5618,-3255,-9590,-4512,3180,392,1545,5874,3823,-4055,8796,-5464,-1651,-3864,4771,-8596,-4319,-9325,-4544,-5042,2158,3412,2310,-1940,-7555,-365,3924,660,1679,-1800,-2654,4909,9959,5704,-6112,7050,-9136,-9723,-4984,6016,6918,-2046,7986,-947,5890,-786,8188,5642,-5108,-2860,6881,-4124,-2360,-5679,-638,9391,-2241,-5782,7401,-7447,8320,2545,1117,3302,-4609,2730,-6873,3342,-1048,9924,-9305,246,2280,8008,-1921,-3209,1510,7470,-1697,-9635,1366,2369,-7727,3581,-6940,1883,-2925,3515,2576,-1904,3909,4216,-8935,2357,1850,3617,4602,1326,857,-7543,9297,2348,5172,-5395,3793,-7295,8261,-8911,-1314,2944,5977,-2870,7057,2910,7057,-706,-6413,1242,6063,-8604,5243,6008,-7084,7745,-5517,-2523,7766,-8831,-2754,2315,-952,-6878,8262,-3848,1098,3716,2388,-9726,-3840,7809,-7527,-6588,7677,-9787,-450,-2930,9596,-6468,-3117,2927,3967,-2478,-7339,-9437,-5717,-3662,7759,-6675,-7982,-9593,-5497,9177,2808,-3994,-1355,8385,-2565,7611,4986,5647,6453,-1922,-9322,-5508,8144,-31,502,5729,4651,-6906,-6141,-5584,9740,-9660,-2071,-143,6381,-6089,-3571,1290,-9726,135,5375,2647,1489,6750,-1498,9935,1056,9435,-7945,-932,7548,7451,6260,6732,3638,2240,832,-6207,2374,9296,-8831,8012,6619,-4100,-947,1108,-3607,-4187,4415,-5417,6568,-2681,-1179,9831,2874,-9204,-3840,82,113,6883,5413,-8681,1524,4469,3963,-268,-1655,-7683,-7804,-4243,734,-3319,236,-876,5510,814,9124,-1740,-961,7861,6434,-4688,978,6376,-2316,3969,9388,4248,207,-5754,433,-6132,4432,-4174,734,-2188,5923,-1357,-2207,-6541,2307,-7458,-3597,-4387,7103,6916,9847,9540,1662,-1738,-4902,9118,-6116,762,-5179,9249,-2088,-8172,-278,5383,-4920,7874,2686,-8513,-2885,3290,7675,-3517,4425,2360,9512,-1850,-3769,3309,-8351,3046,1404,464,7748,7990,-6173,7041,7070,8962,-1608,-7317,593,-763,-1945,-3225,-7082,2750,-9401,-9620,-5158,2494,-9339,5300,4070,5298,-8750,-4784,474,-1403,-9461,-7980,4865,-3444,-2077,-1214,-6868,4934,5594,-9423,-388,-4,-9417,8124,-6489,-5153,9307,-4750,-8038,-4530,-8026,2188,6578,3714,3871,2516,4387,7371,8820,9097,6396,7127,2384,9929,-6054,-1006,-7398,4419,-2692,-8907,-2749,3503,-5979,1200,5809,5045,-4790,-6299,8237,-8978,4904,-2925,8144,-3398,-380,3095,1060,140,790,2518,-2893,-1846,-113,5968,5073,7013,1889,-1086,-4911,-4097,-5794,-9791,-8657,-5737,7237,-8115,8327,-9849,2845,9442,-3506,-2981,6312,-6340,856,6286,9722,-7078,-4132,-9823,650,2303,-57,-8088,-9705,9465,-762,-4606,3726,-8075,-4342,965,2497,-3680,-6828,-1697,-1754,5406,-3925,4043,-1301,-7952,-2505,-8105,-7284,-569,9917,4661,4885,-279,7252,3672,-4289,-7778,9860,6752,-6370,-5135,5909,-7426,-8154,-8840,5916,-9699,9410,357,-4413,1724,-6538,-8160,374,-3508,-2769,-3246,9781,5034,6660,4172,1015,9476,8537,-5743,2642,-7447,-3342,-2276,69,7674,8735,-4096,-7177,9343,7710,1217,4643,5580,6858,3475,-3387,5310,1526,-4672,-2598,-3533,-8108,2453,1859,-590,-8288,2133,7596,3785,-5150,2909,-5385,4916,-757,6939,-5863,-9125,-6318,-1966,-7293,-4834,5228,-9753,-7885,-5762,6572,160,-2427,1209,-6776,4764,-3003,8365,2245,-6248,5518,-7139,3871,683,-7268,-2168,-4591,-1194,-9175,7148,-1211,4798,9434,3631,7071,4089,-2231,-3611,-4003,-8183,-2768,5450,6185,-4013,-5857,-8991,3364,9534,-6375,-2451,9216,-4141,-5619,1922,4488,-6988,4626,-6199,-5340,2517,8155,-8609,376,-8403,8372,-7023,-3546,-3225,5505,-6990,-3989,2493,9887,-6226,-4279,-5882,5483,-7405,-1338,9879,5507,-5547,7905,2008,-9666,3447,-3644,7552,9880,-3641,4982,-2031,-732,121,-944,-1983,-6744,7638,5254,2984,-2713,-7053,2865,-1943,-5770,-8126,1951,-8085,-5016,619,6718,930,-9532,-3364,-2421,-4517,1256,3910,298,-1878,1899,-8846,-1143,407,-689,8360,9074,-2074,9582,1431,-6425,-2854,-4021,8225,5611,-5492,-218,-5028,-3130,8467,547,-2797,8714,4570,-175,-8478,3124,-1121,4924,6081,-6354,6754,-7588,-4461,-3761,1400,-6823,7590,-542,3734,5480,7500,-4817,-4041,-6937,-8440,-3583,557,-2213,-2897,4323,5871,-2918,-4154,-6616,9572,9228,-8961,-137,-305,-4619,2282,6542,3546,-135,7070,7179,7009,-3978,-1551,-7682,6980,-5615,-8260,-9457,6767,1333,-9750,860,9297,-9537,9049,-7316,-7854,-4941,8691,5096,-4227,-3914,7849,-8688,1389,-2235,4281,6527,-1372,-8349,-4452,-1618,5048,-7344,-1392,50,-6958,-7846,-3834,-2367,-7513,-8914,9986,8090,-9681,-7605,-2487,4249,-5290,-162,2924,8152,9486,2804,-9566,157,-7712,-7155,9756,6071,8189,3329,3387,1854,5107,-5580,512,5382,-5591,2898,-5956,3734,-2360,-2431,1467,7523,-288,-1477,3250,-5361,-1917,231,-7637,8159,-5797,6377,-5316,-7316,-3652,1767,1130,-4981,501,-6432,-2198,-6901,8768,-6556,3397,-2700,2932,-3587,1843,8670,5654,-6376,8425,-8942,-538,-9703,-1705,-5385,-647,8688,-866,738,-812,6093,-2099,6443,6127,-1001,3960,3856,4205,-6147,-2988,-1810,9573,9865,6265,-5920,8059,6107,8954,8759,9302,-2128,9459,-6731,-7247,7487,-7848,-9830,-2519,3422,3783,1313,614,2344,-65,-8784,8400,9851,659,7524,2224,7340,7408,7724,9992,3518,3890,-7189,8190,2792,-932,-1234,7136,-6128,-3237,-3443,3127,-7910,-3868,120,-8054,-9961,-7739,8601,-7087,2747,-9863,-3419,-9197,6358,-2431,-8589,6694,-5459,8926,5423,7860,5565,6054,-8879,-4555,-6369,-5716,2040,-5254,-884,-3179,4708,6366,-6520,477,-746,7875,3022,5922,-7910,7669,-5940,-5463,-2058,-2392,-6212,-8851,7839,7371,-6680,4376,7761,3844,-9932,-2354,-6368,6263,1858,-511,-6908,-6315,6343,-182,-513,-7949,4294,-1056,8767,5791,-6387,2701,294,-189,9680,-756,7221,6102,-6809,-6306,-9882,7925,4819,8007,-923,8344,8044,5996,-7976,7989,-9114,4926,9125,8503,2836,-832,6567,-6585,9456,-7163,-4002,6646,-4944,-8682,-8106,2229,387,-1592,-2943,-9865,3503,-3549,9579,-4370,3170,-4821,-3107,2174,3711,6612,7615,-5655,-8827,2752,-7446,8953,2404,1837,7118,1814,-8203,-2980,4466,-4528,5376,1665,-7123,5811,-9847,-8205,-2396,-1515,7946,-5869,-13,-449,-5166,-9439,5768,-1127,-1501,-5417,2949,2611,-2637,863,-8555,-2057,8468,9379,-8599,9000,6722,-8992,-2726,5231,-3652,8278,2043,77,-5251,-1117,2647,2332,-2526,-1425,2081,6651,8768,-6038,-1263,5981,-9555,-8328,9492,8644,-8642,-7822,9450,634,-3924,-7564,-6927,9541,894,-545,-9824,2724,-9532,5088,8464,-5912,114,-862,5318,-6776,6348,3800,6012,-2606,-9946,-8854,-971,-1287,-9758,8263,1915,4612,-201,7282,-6406,-1802,-5739,730,3644,-752,-8040,-9492,6633,-9980,4221,622,-8418,8353,-2257,-8279,-2479,-2560,9673,-3337,2284,-441,3515,-9523,-3131,4708,1848,-850,9843,400,3649,9413,1473,-5040,-3149,7442,-5978,-4175,-8317,-802,-5851,-985,-942,-6816,-7997,8377,5147,-3306,-7489,-5058,9375,6879,-2023,167,9766,-9938,-7896,-5884,-252,8719,-8115,7126,-1826,6273,9364,-3814,2513,1338,-9750,-7988,-1021,585,-6573,5551,4042,-8970,2563,1786,4017,8586,9877,9438,9410,7989,98,4134,-7599,-4131,9142,-5684,-3859,-3892,-7073,1370,-1403,8983,6153,5484,-8395,1337,-5166,-7088,3375,579,-5766,-7354,-5189,-9748,-6270,-9358,-7247,2585,-824,-9894,-637,-7505,-1408,3499,7245,-4121,-5244,-8509,-708,633,-554,-3957,1183,1975,-2616,952,435,-6343,-9042,4010,4248,-3710,-8704,-265,6378,-462,-7886,-7305,-5166,9216,3175,-1018,6737,-9914,-299,-7393,5665,-9355,572,9034,-705,-6892,715,-6521,-9451,-4218,5167,-9614,-6317,-1381,-1740,9380,5637,1886,3534,-7638,-1325,6251,594,-2445,-9654,7478,-836,-5846,6310,-6338,5535,5976,-6212,8104,-590,1165,6485,-1753,-5903,3990,3667,8148,-8972,-9764,8092,-5379,-649,-2518,-7552,4426,-8472,-9050,5867,6380,-8690,-2145,9561,5675,315,5167,5529,1152,-6270,3483,3022,-3464,-5649,5796,7944,1935,422,8287,-9085,-4003,-6327,-9149,9564,-8411,-3421,-9326,6032,-7582,3067,-9937,2581,-5941,-7425,-5878,1985,7524,2417,6418,2884,-2894,808,4144,-9161,-5697,-587,3580,-2735,6202,8412,3959,7771,2262,4844,-7118,1818,-7835,2196,6826,5665,4408,-3403,-5069,3071,8457,8583,-9608,-3249,7016,-8901,8609,7586,423,9574,7179,4303,9190,7245,-4735,-5994,7241,-7186,-6536,4592,-6878,9196,-9527,2982,7307,-9343,-9728,6206,7294,-1163,4356,-7066,-2849,-1112,7798,8343,2616,-8976,6220,3965,-1181,-1287,8475,-6763,-4558,6198,-7018,1110,-3331,-8839,-3011,-4254,-4533,6885,9772,-9812,7440,9004,-1830,-721,7963,7377,5118,-6473,93,657,-9699,6216,-9396,-9573,-2391,-7660,-5738,5523,-85,8447,4237,-4170,4402,5662,-7522,-4054,-9238,-1604,1657,9337,7717,-6920,-6038,6966,-8443,6493,-2031,7370,-505,-9453,9623,6350,8337,9331,9450,8102,-8388,-9706,9098,3281,9615,6742,-7536,-1091,6831,-1813,8727,4585,-3794,8223,-887,5588,9287,2603,-1303,-3822,8160,337,-4494,4027,-5393,5780,-8599,9525,-2230,8351,726,-6291,-2988,7681,-4185,-473,9348,5962,5277,4296,3516,-3163,6729,2872,3209,-7917,-2019,3013,-3551,403,4725,-1361,1130,476,4370,-1479,-5565,1946,-5735,-8001,-9561,3082,-9243,-5536,-1304,2500,-8966,-4308,-7008,-1761,-7391,9661,-9041,6217,-1299,2124,8312,5888,-4960,-6028,-6490,-4538,-7117,-8326,-9515,-1928,1944,6449,-7653,-8185,1552,-7607,6966,4569,-8634,1504,44,-5354,689,5030,5495,-4261,-3629,-9428,-1196,8053,2309,-5490,4288,672,1969,5194,2071,8449,-4701,8260,3471,-2869,-4077,-9213,-3534,-6251,3549,7602,-6446,4506,-1157,6564,8206,-8224,8094,-8217,-5750,-6144,-4461,8930,-8222,8042,-3981,5988,-3173,-2113,2937,-5370,1077,-2874,-4131,7467,-7806,-1426,-9662,8546,6346,9298,-2716,-9721,-4142,-5508,1488,-8436,-7444,8498,2713,-9994,6514,-5920,1616,-7267,9525,-4386,2874,5810,8162,8233,3018,302,-7667,-7492,-3613,246,-4411,-8466,-8752,-3406,-7918,2392,7651,-2437,1976,9461,-5551,447,-345,4298,1056,4964,-5775,-6325,-5237,-2597,-1755,-5858,1127,2025,-4791,-2956,152,-5812,937,2501,-2201,6208,-5792,3995,3223,5349,6971,517,-4724,-990,964,2133,61,-8472,5981,9473,-9488,9547,3234,-1997,3335,9436,-2594,-5951,-272,6787,4033,1150,-6136,-7651,-5918,-8515,1982,3114,7606,-2210,-1100,2684,439,2334,-4702,8041,-4181,5655,4033,8143,2023,5240,-1587,6904,-9541,-2999,-1489,9923,1369,-269,2424,-6994,1659,8751,7886,5550,2761,-9983,7675,2252,-9519,5043,-8660,4992,-1341,2872,3338,9863,-1449,-1523,-6884,-6753,8434,-8676,-4060,5089,2444,2216,8035,-466,3462,-9534,-7664,-7877,-2673,-1520,8479,4125,-9576,2019,7100,1422,4602,-3178,-6933,8496,-3985,3107,-3684,-696,-6410,-5724,8127,-2105,-8262,-4172,6522,-1224,3175,-6682,-16,-1629,3799,894,9409,6211,8949,1341,-8744,-216,-7115,-2904,-3366,5912,7746,2459,5775,1182,6057,7444,6211,7068,-2102,7553,8091,-3505,-8934,-4193,-8403,4161,20,-5384,8142,-4634,-5227,-6212,-8204,1267,-8667,9987,718,-168,-9899,-4354,1618,-1993,-1638,9373,-1023,9294,-5651,-7337,-5700,8820,-363,2568,6218,1964,-2501,-8826,-4757,-3967,-831,7547,5239,3922,3271,2656,5685,9013,9386,-2688,-5323,-230,-4746,-14,3200,-8025,1030,7715,-6646,-4038,9210,-4361,8362,7564,-5998,8638,1578,-6415,620,4759,-54,-3446,-902,-5993,-8613,189,2909,6182,268,-149,-9180,8668,7301,2657,-8071,5452,-5944,-4081,-60,-2711,-3512,4152,-5433,-3677,8113,-5502,-6956,-7506,-6911,-1267,-5152,4661,-1072,-9937,-6392,-2802,-3900,-6765,-2104,1088,2216,3118,-3618,-1480,1511,-3515,-6742,8034,-9430,2122,5397,-9947,-6028,4186,6339,2235,2566,-4617,5667,-4430,1131,-8240,8343,8549,-58,-1477,8562,-2850,-5652,-295,-204,7688,3915,3317,9676,6971,1610,-9422,2250,-9310,89,7860,-5966,-8609,9592,-2654,-449,2543,-6085,-2495,-8416,6428,-8870,-3047,2276,-1933,-4791,-3768,5060,-3575,-7552,5264,4673,-6288,5432,954,5751,1320,-4439,6962,6971,-8238,4508,2681,-7544,6446,2761,-2728,1289,5120,4436,2170,-9321,7638,3917,-5770,1539,-4940,-3693,-4274,-2039,8303,-2143,4714,-9319,-7846,5146,9987,9386,4203,3888,2872,6041,-9706,1441,-6138,9315,1134,4844,-7242,-4524,-3993,3974,5149,-9862,-4691,4922,-8633,-8917,-7889,3983,9238,4970,2217,7137,-3684,-269,1779,6750,733,-3902,-8111,4425,-9207,2776,-610,4087,-2336,-8357,4309,9704,-5760,930,3553,7939,-2367,-2126,-1493,1452,9319,-3365,9195,4876,-2197,3960,7268,1027,-7824,5614,-968,-7353,7991,1927,-789,2210,829,8533,2666,-781,4997,9040,3522,9461,-383,-6099,-6028,-6559,-6271,-7299,-5908,60,-2731,3235,2128,8238,-1387,-3440,-8646,42,-4428,-549,-95,9646,8472,-6493,-1604,-1776,487,-9498,-1654,6966,-1514,-7299,4765,-3727,5006,-2006,-9964,5429,-2832,6674,3420,-5159,-8016,-5973,-350,8101,9207,-6586,7509,-1137,194,945,-7278,-8782,6999,6541,1353,-5800,-2388,8428,-9241,1243,5410,725,5600,2498,-3298,-6262,8310,-1083,7998,-1071,755,6929,-721,-5850,9077,6623,-2742,-1790,8659,-7360,8985,-7840,1852,7144,3610,9109,-6839,4610,8346,1138,3417,-6041,-7292,-3383,8547,-4107,-3662,-4190,5274,1911,826,6182,2412,5504,3457,6339,-8028,-4246,-221,4109,5774,5921,3182,-7817,-1223,8620,8444,-7154,9336,-576,4982,402,-3410,717,-3179,75,3163,-1666,7909,3995,4550,5770,-5853,1843,2354,9568,-3979,-3331,1823,-5055,-4865,2698,5675,-1510,6396,-2543,8316,2734,-4165,-2662,8115,-6516,-2956,-8839,2775,2831,4140,-6540,-2939,7073,2913,-5079,1267,2348,8971,-8418,4431,9550,6331,2260,-9355,-9639,5666,3850,-8750,7396,-1167,3748,2356,-468,5191,6581,-7466,2079,697,907,-1275,654,-9343,-8201,-6059,-5899,-7516,7839,-6686,6651,2206,1203,9510,-5883,9178,4422,-1646,2722,3410,8647,-4650,-2904,4838,7390,7838,-9975,-4727,2153,-1352,-9981,-2625,41,6081,-841,-5112,-726,1303,-4978,-2002,3137,3813,-9457,730,5755,-7747,5258,7372,1667,7515,4595,-4067,4423,-2974,1589,6787,1701,1636,-5828,-3664,-4641,-5997,-1807,503,-3722,-2952,988,7163,-7027,-4426,4536,4992,-3940,-8935,2366,-6394,5358,-875,-9318,3256,-6873,156,-9195,8859,7956,6438,7769,-8999,234,-1161,-8585,-5951,-1796,-4853,-675,2720,-635,2319,7604,8067,2963,-812,-8216,-4475,-3449,108,1028,9654,-8473,6152,1184,8181,-2241,9474,-6699,-7771,4875,6623,-3649,2230,566,7112,7328,-7788,9073,7172,6553,-8991,-5133,536,-625,-5021,5501,7617,3757,-3946,-917,-6739,9016,1647,2562,-1354,-3014,2693,5911,6322,-1415,5143,5387,4825,-1017,7877,7051,3993,1290,-6359,1587,-5262,4083,-7544,2788,1785,-5115,-7827,5593,-7210,-6137,-7975,-1834,5395,-4553,-7061,-7096,4950,2342,6066,-2319,-5128,-3601,2386,-8204,2021,5409,-7093,-2409,990,4210,4262,-6087,4705,6234,9933,-1822,4577,7106,-345,-6504,7203,8931,2311,3273,291,7193,-4816,-7296,1002,-3916,-3258,-7554,-5816,3049,-2517,-3587,5051,-9227,-2418,1717,-5166,-2090,6149,721,8107,-7933,5855,189,-4579,-419,-5082,9982,5548,4031,-4300,-1906,-5293,5573,-5081,5935,-1909,2075,5360,-4841,-3126,922,-8715,6940,-3277,-2351,2505,-8039,8723,461,6349,2307,2207,9489,8212,-5434,-141,-3874,4166,-4778,-9184,9660,-593,-4346,521,-5504,7218,-9939,955,7784,-8417,5766,-4974,-5189,5767,-4072,-6692,2172,-6443,-4739,-3398,-1950,377,8960,-5061,7424,8201,228,-1078,1667,-6068,-1335,7269,-691,9137,1462,2813,9625,-5626,-4431,5508,3363,3075,-3207,-1069,-3348,5019,-636,-8028,-4006,-1530,4640,-463,-6635,2674,728,-8522,455,-4262,-1644,8541,2014,-9404,7004,6306,-1561,-282,8928,-6185,2238,-383,6300,6649,-2718,-778,7779,-4623,-9677,-3788,-2094,-6583,2712,8556,-6904,-9802,-3715,-1956,8046,2403,8741,-1849,7996,-2694,-1656,6810,-9048,8645,-3456,-9367,2738,-8069,-3399,3922,-7271,-5309,-1980,2468,4540,-8024,3609,-1206,9484,-3279,8025,1982,-3240,-7179,9782,7407,5170,-2762,5340,-4812,-9699,420,-3235,-3549,-9022,1135,331,1137,1718,704,-3713,-5696,1848,4634,1919,-6368,3032,-3106,457,5348,8920,-2867,1919,-6169,9801,-8314,-4556,9412,9561,-9313,7816,-3071,-7122,-9744,-3243,-1738,-5063,-6580,2415,-7235,-4479,-8187,3345,8938,2700,9915,5705,8878,3204,-8206,-2539,-6049,9110,-4571,5031,-7988,-8178,6741,-2275,9843,-448,2513,-3052,8917,-9646,-5235,-4620,4385,-4637,-9456,5596,-8974,5385,2286,-5688,6069,9105,3501,-2602,8166,7353,-7669,8040,4781,-3746,343,-3858,7125,5971,-2816,-9719,2076,7380,-2755,-9974,3804,-2070,-1296,531,2717,2,-1924,-9563,-1472,3586,4927,621,-4452,-713,-9345,8446,6065,8242,-5553,5008,4627,910,7779,9764,-8453,-9289,4071,-5431,-1132,4363,-4390,4640,7883,3458,6128,-8337,-2751,-4849,-1350,-7564,5510,-2419,-7409,6970,-6893,-720,-8084,4644,6626,3011,6286,274,7844,5355,-8151,7298,-3719,4041,1873,1191,-2436,2023,1808,-8802,-3216,1398,-718,1628,924,9811,-5456,9667,2054,9604,572,5414,-3618,782,7617,8949,-7251,7974,-2270,5735,-1720,6664,3052,9399,-6319,1790,6816,5236,2739,960,-8095,4362,-84,4732,-7573,9327,-8597,4536,439,-2805,6127,-7700,7836,4239,1870,-1142,2438,-2280,3532,-9186,-7380,8652,-8390,-9825,1031,-9803,-3916,3494,-7438,7792,9311,2290,-2285,-1709,-9439,-6434,577,8818,-6115,3095,6782,9692,551,4922,822,2499,1463,-2203,-4395,5312,2504,80,4293,-2614,-5541,6884,-4023,535,-1553,654,-2502,76,-953,-1326,-4291,9418,803,4652,7203,2255,-9166,9890,7172,2664,-6769,-8364,8325,-4409,6709,-7929,-3417,-4676,1476,5123,776,5865,2698,-1491,3537,106,2817,9144,-5729,1512,-9963,-7844,-8829,7644,-5433,-5788,2625,-4890,6282,3369,-5527,-2680,-1546,6195,4018,-8735,1916,772,-2550,-2519,9835,-3187,-7633,-7062,2156,4441,-6299,-184,6307,3092,9196,-320,-2833,2023,1967,-349,2262,-1002,1685,8130,7972,-9098,9678,-5095,3744,8881,723,888,-7911,-7139,-4218,7160,-9830,-3493,5719,-9111,6167,-5315,-8772,2888,9997,3727,3790,8797,-5530,-5910,9962,9461,-4106,-5624,-8504,4570,-2020,9242,5736,-716,5713,-5194,8177,-9482,7264,-3846,-3855,749,-38,8399,-5807,-6930,9222,-5536,-5234,-6782,-4712,9027,-6613,4799,3206,9600,1292,-3818,3126,-4425,-7755,-4172,-6849,8836,896,711,-6374,9058,-480,-4463,-280,-5073,-4718,8456,9222,565,7008,8619,6109,-3124,-4873,9361,9360,5795,8270,8893,2438,1464,-6104,7105,398,6589,9248,3430,425,-4674,-5553,-4322,-5771,-9814,2321,5809,7649,-7634,-828,-8945,8240,-7106,3759,-5113,-1864,230,-6108,-4844,9280,-5305,2476,-130,-9273,-7407,-5252,5076,9021,-1835,7415,8354,-9012,-5578,7522,4978,-9188,-1160,2524,-1954,-4039,-9997,255,438,8822,-105,-4324,-6822,-6386,132,8874,-3972,-8783,3578,3329,-6254,-9533,3586,-5083,2583,7789,-2269,-6068,3274,3476,5794,48,-6867,-3641,3679,537,3565,7733,8494,7675,-6063,6676,-4481,6674,-5930,4564,483,5622,-4513,4572,-1655,2054,2747,8547,-1904,9848,3065,5213,-7093,3115,-877,-667,-7521,-351,2932,9237,4964,-890,-5149,1813,-8765,-9914,-5265,9470,3268,4077,6024,1378,-6295,7317,-4475,86,-558,-8288,2564,5285,5328,-8720,9785,-1380,892,6445,-358,622,-5120,-443,-3792,9470,-4131,-9895,-5188,-2602,-3632,330,-618,-25,8067,9421,979,5491,922,-8802,-2273,-1987,-1959,6845,9265,1508,1966,-9310,-7192,-9639,-5194,5421,5593,406,5500,1283,-3505,8825,5182,-6324,-3933,-9046,8989,-266,4148,-6000,2310,-1633,-1143,-7750,-1520,236,-2407,6331,-5960,-5365,7933,9591,-4757,-91,8210,-9499,-6039,-688,-5947,158,4339,-5715,594,-9250,8982,-9554,5580,2858,1049,-741,-1059,-4883,4303,-2454,-2204,9613,8533,-7265,-2795,-3916,5851,7315,-6417,-6955,4033,-9441,2200,4852,4735,-6547,-1177,-7852,-66,-4623,-5303,-8248,-5565,8312,6695,-605,6844,5682,4176,-9044,7357,159,2008,9419,4274,7862,6619,-2361,-6998,6642,-460,-7023,8202,6002,8636,3137,3409,76,8718,2757,-1999,-7959,-8704,-955,-2029,-2125,-6806,-2093,-9220,-3503,-8437,-4853,2453,2913,-1774,6256,8458,-7781,5325,-3677,-3404,-1640,-8977,9472,1180,-2414,-7208,7335,9759,-5522,3483,-437,6932,2207,522,1382,-3455,-5786,2448,-3312,-6408,-3373,-1494,-3861,-4673,3651,2857,437,3702,8939,8832,6621,3839,-999,6932,4473,5826,-245,6142,5692,-4483,8802,467,-5646,-9874,-8245,-9158,3396,5233,3868,2329,4358,-9793,4914,6293,6589,4944,-3826,-9492,2137,6515,-6917,2113,-5107,-6972,1905,-1772,8726,-5999,4392,6144,-5328,285,886,-1543,5810,-5598,-4389,-7772,-1211,2846,3845,6665,-3220,-4279,9146,-6131,-6649,-2317,9506,3977,-3136,3965,-1066,-4691,-30,7710,-9806,1472,-8812,-7628,-2691,-373,6416,5813,-5278,3232,-2650,-778,8930,-7851,-5143,-9565,169,-1308,6455,6297,4218,-3015,1968,2459,-2760,-5484,9782,481,2824,-2066,-5921,-2917,-3481,-274,4299,-8362,6245,-2262,9865,7396,2183,-5793,7206,8040,5600,143,9120,-8966,-9520,1604,-3797,9468,1246,-5209,1312,7035,9988,5736,-3673,-2655,-1743,2493,2038,-753,9000,-1998,-3351,-9467,-5226,3426,-1971,3442,-2520,9253,5522,2889,8157,4779,-2460,1401,5566,5578,-5283,6065,8423,-8504,4668,-1823,4306,-7262,-1305,-4202,4229,4323,2607,-8625,-9359,-29,4587,131,-8262,3195,-4272,326,4657,1162,-3539,-7441,-6638,-6063,6578,2953,1002,3808,3137,7469,-5271,5850,4612,5243,-1135,5141,5712,3333,-8326,6413,-469,8971,-8130,-9103,6834,-9979,1734,-8465,-1948,5199,-2594,9408,-9728,3929,1580,992,1302,-5778,-1963,-781,1769,6433,-4577,7254,6374,6941,-3830,-9204,-5205,-8601,-4199,-3828,4804,-1244,-1868,9430,7072,-8882,-9460,-4115,5646,2135,9020,8483,-7890,8417,-3692,-1450,-6414,706,-6167,-1296,4534,1433,8590,6744,-4153,-7990,-7078,-6180,6891,9606,-2969,-6814,4450,7732,-8560,-6638,5294,-3689,-5034,5621,-2690,-4245,4104,-1060,4072,-7942,-8417,8614,8413,-8281,8781,6370,2228,9573,-9634,-6603,-5299,-8456,-8006,8461,-3225,4748,-6588,-2048,2030,-3776,6515,2659,-2536,-5372,6002,3616,2173,1032,225,8065,7417,5973,9532,3120,-1353,9984,1830,-7468,9042,-5915,3430,-8775,6359,-1898,4632,4856,-7907,-5931,8260,-7880,1993,5889,-4320,5350,8970,-9380,1422,-2711,-354,-6612,-2987,5174,4025,-2816,-2703,7101,6050,7811,-9286,-6781,-3042,7376,-4228,-7654,-3394,2308,-9785,5582,-3170,-9285,933,1731,3815,-1674,-3837,-1695,1089,7119,-5704,-2302,-736,-8334,4199,-1328,1003,4137,-2210,4410,-4146,-1306,-3586,-4826,-3267,9297,-3397,-5383,-8567,-8172,4652,1298,1459,7178,6808,-9480,8105,8227,-6599,1529,-9841,-9286,6602,-3821,-918,-288,8304,-965,6153,-1980,2245,-5878,-7364,-6588,-6559,-5110,-4485,-3969,896,8433,-5880,5114,5698,8569,-990,8569,2435,6803,2434,6521,-9211,5427,5568,9669,-4584,-6824,5555,5608,8601,5110,7729,8498,-117,920,6854,-298,-9130,-4983,988,-8313,-3090,-5605,-1636,-6973,-1924,383,4683,-3949,8086,1373,-711,3544,6508,-1741,-7609,501,3606,2399,6119,6083,671,-4899,9029,7873,7305,7699,9609,4639,6816,-3157,-9686,752,-7651,803,-4875,2045,1224,8548,4178,-415,1690,-8527,-7094,6998,3536,3769,-4691,-6208,-3650,5826,-2043,5160,-3077,3552,2409,-7437,5575,7079,3487,8112,6739,-5960,-8948,3318,3368,-5708,5772,-1782,3207,6497,-669,-9786,-2997,-1765,4966,-2576,-8104,9355,2380,8714,-1718,-1685,-1313,6370,-1256,8664,8469,-4141,9780,8045,1735,-3475,-3203,-6681,-1222,5612,9183,-4272,3540,9895,-2339,-7825,9678,-6348,-4796,-6876,-7905,-8667,3506,-862,-2800,-8518,-3167,-7602,8109,-746,-3432,1966,-9410,8764,5109,3829,6782,7462,-1610,9524,6333,-583,-5832,8183,6156,5802,1349,-8859,-5400,-5326,6831,6659,-4754,1513,-1058,-4881,9518,1038,2637,-1219,1152,268,8535,3849,9046,8073,7802,7568,1606,-5333,3678,4073,1752,-6577,8394,-6303,9517,-4094,7609,3982,8222,615,-1256,5479,932,-1103,-9300,8604,-7123,7885,-5975,9115,717,1350,-6515,-4673,-1982,-9608,2470,-8446,3328,-6266,-6317,-5427,3362,-657,-9999,399,-812,-8764,-7854,-4234,-78,-3956,5787,9116,8244,2613,-6144,-5285,1100,6800,3119,6433,7656,-5600,3724,-6508,-3763,3000,-4914,-3926,2711,3616,5913,-9959,5458,4297,2471,-4022,-8047,-6982,2217,-9151,-8516,7123,6022,5357,-3868,762,-4493,7765,1346,4819,5063,6872,2458,8031,199,8666,5237,-5400,2553,9923,1121,6844,481,6056,2395,-1292,-8438,-27,2836,7981,-1632,1508,5230,-9288,3335,-2976,5832,5195,1950,-5497,-1261,7678,4342,-3558,-4034,1390,-4062,-405,6799,1918,4160,7396,-6318,-1101,4672,5026,-9679,5066,7917,8974,-413,7813,-5889,5153,9186,5831,9007,-7097,8387,5642,9933,8486,627,-3033,8602,5894,9569,1753,-6180,-8841,-8528,9432,4181,4897,4667,-1284,4330,-9915,2846,-4270,8356,-4126,-4235,-7167,3229,-894,6469,-3386,-8730,-2517,6881,-6331,-9023,8566,-3958,2013,-5170,2377,-2392,-559,4186,-9265,-7172,-8455,9466,-4100,-433,8100,-5356,4231,-1093,229,-8999,185,6657,-9236,-8064,1501,6155,8330,-2821,-2800,6080,-2343,-6569,8894,-1866,-3898,9146,4807,2263,1213,-7309,-6659,9099,61,-9469,-6764,-5264,-2562,3444,2129,-3657,6672,8884,-3402,-8948,9164,8324,-1425,-2958,-1526,-3980,-3021,-88,7739,-7538,2583,-2983,-9135,8052,1798,-5515,8105,-718,7026,-1869,-8370,379,-3219,-6593,-378,-9106,-58,863,-9694,-7338,52,-2822,-9041,-2662,7342,-1654,4515,-1596,-9573,-747,9122,-1667,7831,-6899,-9468,-8622,-3635,-1972,5187,-203,-6529,8031,-421,5100,8319,595,7056,-2399,-6768,971,-7289,841,-6200,-5879,7638,-9732,-9844,4538,1900,9776,72,-9882,-9524,-7378,-34,-7315,-608,1986,2080,450,5374,-2384,9997,344,-3466,-1621,-774,-6665,9219,-7713,-4553,7308,-7027,-4787,5202,4591,7044,6276,690,-6423,-2480,-4199,1657,8701,941,8264,-7627,-9980,7952,-1104,-8059,3399,-6192,4533,-5776,7239,7691,-4135,641,1735,-816,-7197,3489,5645,1434,-5002,8357,7886,7125,9799,1916,-4295,6709,-6934,-554,2846,-3203,9878,8429,1233,9962,-4789,-2592,4131,-4281,-126,-1756,9045,1194,-7691,-4951,7151,6128,-7443,-9952,-8012,9886,5553,1852,-4061,6594,-414,-561,-6902,2568,-3,-4148,-4075,-3268,4538,1586,9370,-7005,-4878,9123,-9440,-7336,51,-7531,2022,3325,7638,362,6023,2563,6925,-115,574,5186,-2501,-564,-8971,4622,-8380,-9502,1902,4360,3762,-2176,9160,-8626,4805,-7954,-9809,6939,-7036,2532,8389,-3639,3144,-6208,1735,-3296,-1150,-4252,5717,-4044,-2051,4572,-2404,-3241,-3915,-692,-642,-1533,-3381,-4033,-6211,5859,-3222,-3947,-9802,-7462,4167,-2951,1497,-4505,-2270,4493,-3254,-5332,-8370,7304,-1996,-8366,612,-2976,4050,-5322,3365,534,3749,-9428,9824,4002,8676,312,-4832,-4825,-8079,-5080,2359,-3945,-6397,-706,9769,407,1550,-5205,3063,3071,5045,2878,5370,-9553,2765,-1031,-554,-8396,6559,-3973,4936,372,-732,-2671,4084,4928,-8964,5574,4805,-7143,-477,-3971,6010,4690,3784,5223,-9028,-4251,-7658,7075,2348,-1283,-568,5231,8703,-6723,7767,9352,9313,2561,3736,9934,6948,-7471,-868,-3304,8180,-9236,873,2618,-1945,1851,1084,5605,264,-2612,2803,4049,-9867,-5067,-5548,4270,3684,-517,-4277,-639,-2658,-45,-6707,3787,8893,2384,7332,-2446,4698,2088,9028,-5969,-4324,-2549,1163,419,-453,9383,417,-5759,470,500,8826,2937,-2142,9936,-9768,960,-9287,1966,-1351,3441,8510,-8776,7871,3705,-3293,2340,-1724,6574,-918,-9290,3303,7980,8500,1011,-5454,-1133,7048,7975,-9129,-9518,-4870,4524,990,-6384,8859,-8347,-9471,1482,8196,5151,-4153,-5653,2531,-1982,4143,6528,8066,-8208,-6233,-4710,-5091,-2316,1636,58,4458,-9191,8404,3971,3308,-7216,-456,-4794,-6406,9287,344,-2093,-7113,-8977,63,-2371,2908,-8095,-9493,6599,-535,2374,9951,-1643,-382,5185,-4152,-300,3438,-3333,4365,-8911,-8735,-2757,-1392,3066,1602,6498,-4700,8419,-2438,8430,-3354,-9439,2429,-7462,-9498,-12,8968,-5888,6360,-4097,444,8556,1135,-2169,1584,3367,793,3471,2089,-8934,2717,9692,8622,-607,2657,-5112,6143,-6189,-2148,-3808,-8117,9645,-8012,-9789,4709,6008,-9549,4101,-6874,-571,-3487,4679,816,-700,1607,3048,-1091,42,-7315,3306,8281,3282,6266,-1519,-7980,-3348,4821,-1790,-3390,-367,-7856,-181,9827,-9720,6236,-9855,-4977,-3372,-2681,2234,6792,-1734,-6966,217,-6585,2207,2391,2320,-7815,6991,-7895,1463,5741,1894,8041,-1441,1086,-8173,-8819,439,-4593,-2131,-6401,1176,1319,-6581,-8214,4608,7894,-1923,-1977,280,-9818,-1392,7162,-8236,-513,8798,1740,7941,5732,-8188,7581,-5676,4629,-1968,2329,6341,4722,-812,-6915,7537,9956,-6387,-7884,-819,9783,9568,-8813,-6871,-4268,-5393,-8677,-193,8527,6662,7095,8159,-3962,1225,2041,8621,-5239,1095,-4154,-8663,-9524,-5720,4823,-4378,7675,4434,8874,-3975,-2555,5049,4122,-2107,6832,7669,-4506,7053,-7835,-8776,1197,-7617,9901,9518,-1709,-7526,-9477,-4901,-2248,178,-9615,-7606,7442,-2572,7836,-4280,872,5677,1921,7587,-6235,250,-5965,-7729,9966,-2321,-1088,-2532,65,-3413,3455,7737,-2255,-7075,1905,957,-3881,-3354,5927,-4410,1755,2697,3468,-9932,-8083,-9079,-4172,8041,7279,1869,-9041,2067,-1154,8282,7090,4986,-1326,-6711,1782,-454,-9302,2432,6569,2688,-5397,-1143,9924,-2285,6015,-2423,-4628,-6006,4350,-1876,-669,6632,8772,2129,8629,5672,5497,7334,7217,6900,-5354,9366,970,-1051,7880,-1279,7618,-4890,-9572,5905,137,-3613,-5321,-6043,6385,6606,1806,-1281,8181,-5305,8728,-4011,-8847,3243,9898,7125,7401,-7126,7265,5340,-9989,-9797,-3229,7871,-1763,-6184,-8048,-3700,-3650,-9852,-6613,-3996,-3694,9537,9312,6797,6376,-7416,447,-9016,1346,9826,-2088,1834,8917,7036,-421,9546,-6100,-5721,-8565,-4640,-8568,-3106,5591,4345,5828,5361,684,8142,-6972,-9710,-2917,-1031,7529,-1882,2549,2064,-6155,-4052,-4092,7669,6581,9590,-586,6476,-505,-6265,-1985,-6379,-2094,1832,8529,9929,-5851,-8068,1635,-6720,-6646,-1401,-85,-9935,-2625,-8309,8633,8591,8539,-8588,4259,6119,786,2878,3119,-3707,-4200,9846,-4712,1709,3577,-451,-8598,8917,-412,-6025,9531,1173,8155,-7174,-1530,-7376,-3234,2166,-7357,-3198,-6012,7313,-9977,-6356,236,9994,-461,9589,-8497,-5719,-5686,34,-9965,-2831,-3359,-7876,-346,-912,-9010,-3892,-6810,-8984,8263,4666,4297,-1236,1082,-7146,9563,4653,6870,7818,394,293,-196,-9280,-2641,4055,6675,-816,-1196,-2539,-9676,1496,-2429,-7699,194,3172,-8109,-2478,-2768,-2969,-4377,-7672,260,6180,6251,-738,5461,-6229,1796,-3190,-9003,1986,-9251,1444,6825,4990,1544,5646,1113,-825,-77,-3500,-5320,3512,6240,-9256,2846,3032,6436,-3305,1879,2228,-1330,3712,2824,9015,7181,9231,7409,-8664,-3737,-9713,4337,-3700,1219,-9153,-8286,-8730,-5821,-8573,9268,-9969,2602,480,-9173,5706,-1419,-415,-6817,-8291,1821,1228,-3883,-2000,9168,-2534,-4176,-397,-576,9589,5225,-8412,2896,32,6271,4338,8452,3760,-1901,5321,-372,3782,4834,-9142,-334,7248,1835,6170,-2845,-2046,4883,-7954,7952,-8844,-4069,1223,6570,-1931,131,-5028,8534,-7249,9504,1744,8850,5698,790,-5674,4962,3060,7554,-5116,-896,-5866,9984,1018,-4627,-660,6995,2445,-7289,-3058,-2517,5635,-8249,-3612,-2883,-9961,-9387,7436,2619,-6178,-8757,-4358,-6531,-394,-336,-2598,3869,-2466,4269,-5368,-5198,6464,-4420,455,8517,-6140,-433,3102,70,-8319,-5645,5156,-9987,-8722,7022,-7937,3922,-9059,2198,3451,913,-6929,-6777,-1550,6547,-1486,-6158,8357,4335,-2428,-6275,1917,-8353,-7596,2451,-7221,-6658,-6471,2719,-6221,8523,6783,9837,-2276,-300,-5574,-3982,-9102,-3227,7931,-4869,5070,-5824,9400,-5610,-8042,-1338,2470,-8706,4275,7793,-1379,-9835,1308,-3542,-8421,-2565,-3620,9996,-2154,-1345,-7052,8107,2399,3584,6124,-9509,4494,-5287,-4176,-1160,3736,1622,-2795,4518,-4591,-364,-4398,-5778,-7909,-1728,9146,-9521,-4493,-3417,990,5339,-5657,-5377,-5520,7476,5702,7399,-3763,2197,192,-2357,1179,-9331,-1324,9690,-4978,-8706,-6746,7087,-789,4659,2049,-9282,-7784,9017,-3340,-2598,-2107,6618,-6501,-251,8762,4850,-4637,5,-9316,1031,-4788,1500,-4063,-1327,2235,4491,-74,4462,-2571,-4735,2280,-2846,5398,2959,-9211,1091,4970,6472,4269,8440,79,-402,4002,-8524,-8525,-1737,3490,3730,9132,-3740,5969,3631,1706,-9047,-4742,7567,-2635,-8735,-4282,-6404,9690,5360,-102,-4153,-6010,-9972,-6467,9555,7250,8111,2186,187,-3729,-7832,851,3016,2399,7803,-9184,-1104,5869,-8496,2020,9430,-1429,-8810,5612,628,-7428,9232,-8996,-3931,-2200,-9441,1571,-8419,-782,1273,-9344,3412,5713,-226,7732,-9086,4454,298,4418,-7771,9613,8491,2413,-2849,-2327,3765,-8633,-6706,4763,-7356,-1074,7267,-2848,9073,-6249,-9778,6890,9455,5661,-1666,-4502,-3680,7781,-8504,-2067,7966,9599,6141,271,8776,7655,4202,423,-6466,-8623,3764,2320,3332,-3926,-8345,-2188,-3612,-5408,-4197,-6130,-6028,3445,998,-5774,7493,-5046,-8262,6381,-2106,8224,6033,-3829,9466,9389,-9388,-2753,-4618,-151,5245,-1716,7962,-4979,-9023,7472,-8920,6333,-7664,-9789,-5998,618,-1913,-9576,-339,-3636,-8512,4251,-8016,-8318,-3555,2492,-6364,8750,-6977,-8445,4350,-6788,8020,-3802,-4567,1018,-2217,-2514,8346,4388,-3,2062,5575,9220,-770,-4083,8855,3149,1167,-1305,6006,-3448,-2635,5334,9326,-26,5647,6212,-2626,-4314,7837,-9010,4011,4527,-1349,-4677,-4619,-4764,8100,9906,-6307,7155,-6031,2170,-1878,-9041,1711,1755,2789,1811,4224,96,-4741,7219,5648,-8201,1515,-4541,2854,-5247,-1403,7447,-3043,8365,8381,2857,1262,9836,2008,-736,1336,-5723,-975,-1583,-9309,-1406,-355,-8554,-5353,9788,3079,-8091,-9680,-56,-857,-9037,-6790,-3174,-639,-9869,-6367,-3029,6384,2371,4593,8304,7151,2173,1809,-7895,-3691,-9409,6294,-2379,3038,-2309,3726,854,2625,4349,2024,-5505,-8206,-9254,1634,4332,-4938,-4647,3184,4223,676,3305,4118,568,6049,413,8271,7233,58,3882,-9181,1547,-7492,-9385,-9728,8752,915,-7418,-381,9941,-6991,1241,9844,-1114,609,2553,2476,1348,2940,-4164,6672,4411,1617,1381,-6546,6643,-8082,2913,5385,-2870,-7346,-3737,-3865,-9846,-5141,9266,-7250,-4354,-9879,-7115,9959,-3994,-1156,504,-4844,6502,-8087,416,3340,-1490,-5122,4944,11,-525,6928,-2125,1284,1512,4243,-1800,-8587,-474,2794,-7847,3139,4852,-3483,5995,-7857,7988,7251,5109,-5086,-1884,-3844,-3436,-4892,3210,-1641,9254,-3770,265,-8084,5885,-6552,7475,-3868,-8828,-3811,2231,527,9131,4895,-2038,5715,-6236,-1697,-4392,-8864,-3177,-519,-4658,2788,-5234,-1603,3623,1179,-998,-7257,-7554,4804,8814,-8486,-6212,5847,-6868,-7512,-9940,-9051,-2358,-1273,5503,8396,-6515,-7869,3498,4301,-90,-5209,4054,8023,3036,1988,6997,-8373,2702,8941,4833,8931,-9727,2423,1118,-8727,-5310,-3845,-3700,-940,-6756,-4181,4064,-3448,6839,-5608,3863,-8008,4917,-9894,-1568,2092,-2200,5929,-4126,2883,-9701,-2840,7998,7357,-9105,-1331,-4835,-7037,-309,5652,-2242,6880,3959,-7950,3412,-2291,-3621,3091,6826,5283,5701,-6652,2933,1860,-7812,7224,-4933,-4518,-3142,-3994,-5103,7869,2691,-3923,4473,9302,6421,4121,-7828,-2393,-1178,2520,4206,4510,-9984,4960,429,-2845,499,-8116,8858,2811,-7137,-4945,3238,-9466,-7357,9241,-2971,646,-4175,-1191,9252,5546,-4438,9550,4662,-5949,-8475,2797,2753,-2619,7237,-1020,-4097,8456,-983,814,-2779,4019,-8645,-8606,-9847,2804,34,9338,6525,-6082,-217,-3308,9404,-3379,-3412,-9331,-694,-2027,5602,2863,8672,8783,-5877,2095,7080,3823,6104,374,-9024,-6615,3659,7564,9078,5094,8199,-1706,6727,8814,4538,3588,1564,2174,956,-6006,8131,-5269,5078,-2376,-4936,2476,607,5599,7167,3146,340,982,-3324,-1326,9168,-7444,9173,1495,-9376,6276,-2868,-2801,8006,3443,-5832,-419,6637,7252,-6922,-614,-1265,6623,3860,9844,6544,-3734,-2297,1389,7187,2148,7814,-3306,1930,3225,-2797,9803,-9720,-9213,4963,3995,1820,-5066,-9103,9192,8805,8048,-2320,2611,-6536,-7507,1452,8748,9499,3771,-3034,-8676,8940,2209,2647,7576,-2140,-7442,-2024,-6771,7261,-4588,4924,-2813,9883,-1773,4004,3614,-7905,2214,6794,6330,2962,-8591,2276,-9094,6821,1924,9071,6439,-5493,7007,6525,-1557,7916,1075,-5105,6189,1731,-4261,8811,9936,6633,6983,6114,-1178,5152,8527,6018,433,3446,4185,-6746,-6941,4956,6751,2563,7044,4559,-734,6344,2412,-5069,173,-7223,-8872,2923,1135,9095,-1173,-6233,-6211,7259,-8874,-6204,-6009,7034,6644,-8656,390,753,401,8970,6777,-1421,-865,-615,7617,-6431,5318,-2804,4592,-3064,-7811,25,5115,4622,-1755,-361,1247,8743,2424,-9405,-914,2442,5212,7072,660,4763,3929,8809,-4279,-9495,-4214,2467,-6953,-7170,-3772,-9468,-9199,-4275,-8240,2356,4722,6452,5140,5207,1289,-7847,5813,-8752,-9828,-8453,3120,-6319,6521,-2614,-5553,9004,3590,7959,7160,-367,-3438,9894,-3339,1946,-4972,557,3475,1088,-4797,120,-9107,-4427,-7349,6531,-1721,-8803,-3364,4784,-5917,-8236,5701,-5972,-4288,3861,8924,2160,-1659,8572,9443,-4493,2702,1751,9785,4204,7102,9635,6643,-173,-3985,7159,-7235,-5214,7701,-4909,-225,-2719,7682,-9730,3464,-2701,-5602,7436,8654,5248,-8082,3188,-8809,-8605,616,-271,-6333,-3318,9593,1741,1945,-3062,2621,89,-1918,2706,1852,3197,5937,1457,2585,8185,-9086,2968,402,2170,5252,-6754,6021,3247,-7592,9280,1124,1593,-3501,-5411,8297,399,-4061,8521,3081,-4714,-3558,-5219,-1659,7974,-1603,-8533,7462,8613,-4184,-3226,-4095,-7203,8902,-6779,8507,7312,4116,4168,-3293,-8242,2195,4971,-3415,-8368,-7608,8783,2445,-6455,3462,8313,4893,-1433,-557,-9032,-6533,3873,-5091,-615,-2914,-9728,4660,-3732,2556,5144,-6975,9446,6377,5442,-8238,-5641,1857,4239,-9975,-5740,-8086,1981,1901,2087,5831,-8657,655,173,-3818,-7208,4415,9641,-6989,2173,529,3197,6556,1372,-5573,2761,2072,-613,916,-5583,-1666,3003,8941,5653,-8156,8001,4527,964,-3171,-3184,5437,-5731,-9525,2392,5405,-6512,6488,6686,4708,901,-5232,-3889,-2250,-4579,8795,3443,-650,826,9381,-6989,-5238,1879,8594,8727,-6191,-9406,8655,5712,2784,3078,-3549,8682,-3117,-6730,-1080,5765,-2432,-97,6050,5479,8630,5647,-5755,3087,450,-785,-3827,-7214,9483,5408,-6559,8206,1283,-6526,9783,9839,-1365,6128,2809,42,8156,2455,7837,-3953,2698,-9373,1239,7225,169,8463,9834,5079,1189,9496,4273,932,-7671,8297,-9753,-4895,-5745,-4603,-7403,1203,6463,-8167,1994,5525,-2866,6801,53,-4480,259,-677,9192,-4799,5031,-5051,-3817,7799,9524,9625,-7248,9105,364,-6745,1894,-9322,-7676,8573,991,8930,981,2619,-9423,2734,-2928,-3169,-5272,-5895,-9283,-4194,-7142,-6001,4446,-6508,-294,-6775,-1190,-6176,-2498,-4217,4533,4960,-8800,-9491,21,-7092,5122,-367,-1457,920,8308,7513,1526,3629,-9657,-6418,-4920,-2335,-2445,-2257,-8712,-43,9298,6663,7307,8893,2651,-5618,386,-8243,6069,9139,9187,4128,7404,4175,-3503,-8206,-2871,551,8846,-6326,-965,-140,-2007,6740,-4263,3033,-5155,-6335,-8704,9306,-6752,-221,-6357,-5119,-7809,2549,-9146,4162,8024,6179,-9646,-9819,-4968,8109,8409,-1122,5519,8311,2853,-3743,8592,4830,7158,-3939,-2793,-4969,3459,-2813,9727,1826,-9662,8375,-9702,-8331,-7345,-3204,9293,2295,3914,-6429,4546,-6189,5951,3192,-7992,961,3988,8939,4105,-1613,-2879,4327,3617,9806,-3726,-8932,8563,-9754,2351,8067,-2068,7193,8576,5372,-473,-144,2379,-6847,-145,6840,8867,8285,8040,-5851,6069,-5320,-9417,-7435,-122,-2561,532,-2362,-5897,5409,6378,5978,-664,-1032,3996,-7089,-9099,-9896,1663,-7215,-9879,4052,-5646,-601,-4321,-2645,-3824,6161,-8154,-3343,2589,-4194,-7952,7495,5737,-7346,2218,-6580,-4362,1525,-568,-8875,-4414,5349,-2542,-777,6743,-7269,244,-6348,4204,-6519,-5716,-6699,-8145,7124,-3528,6711,8940,-3159,-989,-2303,-8666,2591,1341,2670,-1635,-2938,218,-6250,7121,-2973,1537,-9311,335,-1393,3411,6142,-3187,-4322,-1460,-9708,6306,7647,-3990,-8629,-4660,3442,-149,4025,9364,-4700,-4014,3330,2005,-7325,-435,8647,9441,-6161,1281,-1955,335,3796,7182,3535,-2155,7401,-3328,-1634,845,5276,-1913,-535,-5922,2156,1685,-1552,-7449,-7526,6388,-947,5500,183,3532,-2002,5098,5837,561,-6002,2834,8339,-3247,2708,8896,-5857,-120,-7831,-8694,9401,4956,2365,-2164,7035,8441,-5146,5673,-9445,949,9409,-7676,-7091,-1520,6417,-8268,-2666,-491,4709,-9684,-1216,-6755,9266,780,1184,9064,5588,1721,2334,6331,-2544,7169,-6586,5305,1682,-545,3296,6709,-7437,-4486,8574,5151,5388,6411,4742,-2073,6038,-2661,-2554,-5590,-4004,3177,9664,-6049,5358,7340,3883,-8691,-8221,8513,-8697,1964,5643,4853,9941,2467,-1716,7099,6912,-4150,1413,5033,-6362,5073,-8670,9743,111,-2325,9946,-7034,1280,-9409,6837,3554,5785,8817,3180,6582,-9937,7289,-1672,-2865,9976,8526,-6684,7213,7485,2529,-7956,1023,5211,-5294,9561,5123,-5037,1753,3811,-908,-664,-7087,-5287,-8617,8191,-7275,-8738,-7482,6846,-2119,-3613,855,-8391,4695,-4415,-3361,-3542,-916,-1401,5200,9168,-6299,5067,7439,-8729,9377,317,2096,4999,415,-6178,5588,2315,-5603,-2311,-5958,-7575,9203,-7261,5417,8377,-5508,-6927,-2463,6496,5064,-8858,9194,-4333,-4529,867,3792,5374,-2992,-9129,6500,-6201,5212,-43,-3028,369,-9142,6549,-1677,6360,605,7252,8938,4378,546,5397,6462,-7100,-1245,-1741,7866,-2159,-1913,-560,-5825,-3759,-4422,-2737,413,-7642,-3264,-3373,-83,-648,3150,-8349,-1324,6458,5818,-5284,-5006,-2277,-3446,-1943,5593,-6615,4420,1476,4204,4908,-3011,-9050,-3351,9011,8290,-8990,-4216,8676,-6198,-5480,2077,58,-8045,-7949,-6299,-8642,8590,-6936,6904,-2818,4538,-8472,-9587,-389,6636,975,-7487,-4548,9724,4196,-9986,7697,4692,8618,7732,9551,-1683,3817,-1153,5970,-6484,9370,1240,3161,2149,577,-9427,-561,4678,6231,7732,3092,8304,-6261,-9947,-8081,-2418,4583,5901,-4130,-1766,370,-359,1857,219,1103,5378,2194,-2702,-6882,-1929,4302,-2967,-2635,-2648,-836,-3509,9511,-1091,7038,3855,9483,-3295,3057,-1460,-6319,-8392,-1625,4048,6820,-3814,9117,9342,-7544,3655,-2497,7526,5449,6850,2664,3610,1790,-5879,-2318,5775,5451,-7824,1650,9437,-4715,-7363,-149,-6171,9710,3451,1244,6225,-3087,5660,-7045,6031,1981,9484,7434,8577,-9696,3272,-1949,3587,-1888,1013,-5662,-4584,-6904,-4225,8152,-811,-2377,-9286,-384,6096,9225,8760,9860,3215,-308,2241,3900,6974,8359,-153,6427,4332,4636,-573,3620,-6006,3909,-4443,-9605,7984,2243,-3886,-7822,-6386,-8237,-1987,-4418,2502,-6141,1888,-7481,3242,9000,56,7792,-3447,484,-5840,743,7705,302,-7019,6666,-6208,-8557,-8034,7236,-8108,3974,6079,-6006,-5354,-7932,4940,4297,-2283,-5417,7288,-9872,682,-3319,-8869,-3112,-1318,7790,3576,-6191,-225,4606,-9102,8965,5301,-201,-9403,-4473,-1580,1489,2620,4931,-115,-6690,-30,-5771,-2937,-1198,-9836,-9991,7825,7455,-6810,-5966,-7527,-6929,-3727,-6796,-372,7744,5645,-2366,5046,-5962,-4792,136,9091,-3358,8496,3353,-9939,8136,5188,5977,-4343,-5936,-964,-7396,5284,-9153,1347,-7210,-8527,-5034,-2195,3907,-7629,-7850,2957,-2199,5260,-1982,2342,6602,1836,1698,1024,-4899,2287,6811,1478,-7333,-5214,-3019,-7980,333,4954,3654,-3464,182,8713,-2376,-4311,7701,5481,2820,-4642,-1087,-9096,-96,-7058,-6305,691,6579,-4922,-3637,-4758,-5503,7534,8243,-8228,-6747,-6499,5976,8517,9799,-614,4373,-3178,-3615,9992,-6651,7822,7007,6522,7589,7040,2519,-5177,-1871,1219,-6185,-6123,6445,33,7740,-5048,-6259,-2429,-9268,4884,7147,-5433,6001,8310,-1845,8932,632,-3180,-1734,-2362,7761,-2020,8803,3472,-5137,-819,2170,7810,-8619,3636,2,3904,2190,5466,3165,-193,8263,-6352,689,-2977,-3558,8229,1828,1987,7339,4564,9684,-7165,2716,-8290,4239,-7931,3717,-1120,7652,8763,-2615,-7080,-7135,-4153,-1172,7610,-2082,-7703,6222,-5950,-4250,-9078,-39,3984,-9046,-8479,4567,3397,-2711,6268,-3369,-1685,-2748,-3408,6978,-8505,6897,-1078,2014,-8517,-8829,7172,4718,2595,-5003,5484,9449,2,-5859,713,-4510,9155,-9648,-5656,5112,4943,-391,960,5162,-3622,-6545,10,6384,-5675,4772,-9956,5514,8274,9527,-4739,-7041,-6918,-7977,-3004,2150,4191,4048,3787,-2198,5442,4029,57,117,7020,-4415,7985,5036,876,-6732,6758,5582,-2395,841,-2397,-8241,8004,-6864,1133,-9057,6075,-2826,1987,9872,9795,979,-7432,-3551,2889,7986,6763,9555,-5346,-2885,5874,-2439,5127,-4461,-1475,5071,-3988,459,1628,-4965,2704,4229,-110,-2529,-6372,-9055,4506,5205,-3801,-1669,-1902,-8408,-2272,-6651,5091,3143,-6140,3302,-122,8262,6917,-9508,2978,3443,9157,-1228,1674,-9295,7750,-5189,-4747,1740,-2357,-6884,293,-4865,-8474,7215,-4037,-9702,6379,-2589,8703,8303,-8611,-7299,7867,9296,-3335,8975,3861,4605,7566,1399,7838,4492,189,-4742,2182,-9075,-9432,4591,2571,-1141,3909,-8381,-8584,-1089,-2127,4304,3554,-233,5821,7319,-3791,9897,4150,-5524,6765,-7380,-7500,-722,-5507,-3637,-1874,6971,2191,7952,650,-3759,-6796,5065,6932,-7529,9592,-8222,4718,-3996,1518,6938,8280,-2010,1199,9393,-6671,-1274,2742,-6948,9623,-3053,3163,8986,9352,7200,-1342,-3455,4751,6915,-8022,4613,-8402,1709,7322,9264,2016,4405,-1657,-6582,-2600,-2307,-4349,8863,-4492,5847,-4957,-2546,-7438,2870,-3570,7278,5621,5332,-9679,1386,-6781,329,-4896,-435,6307,-4068,-6493,2329,748,5336,5485,9680,7955,-7757,-7984,5177,4050,-7892,696,4072,7092,-4390,-1835,1210,-2729,7707,-3259,7439,5,5903,-2949,702,7359,-1927,4568,-1635,-8333,-1592,8875,8191,-3327,3158,1957,6874,4930,-4427,4118,-5433,8609,1266,5595,9569,-8769,-2191,-4608,8128,3336,-8935,5301,-5118,8427,-7270,-6931,6666,-6337,-6200,-6844,-3489,8849,-8147,423,7557,-3606,-2641,3588,112,-1508,1680,1745,1195,-3599,-1287,3819,-9278,1155,-4457,-7290,818,4907,9292,4791,629,1615,-5411,-6004,-2290,-424,5319,-2409,-4504,1905,-9197,-6046,-7393,5855,-9627,1809,1907,3279,-6404,5458,4478,9606,8124,-6788,-8254,782,-6950,-654,8854,-9187,-9255,8912,-5825,-9521,1189,-6761,-2103,3378,2847,5561,1473,-6200,8720,-3754,-8488,5823,2475,-7494,1395,5117,7270,8396,-5905,7673,6486,1660,-3082,-9653,7158,-8382,-762,5041,-3979,-4655,-1946,-8953,6878,-7333,-5439,-3441,-367,-561,-7243,-4264,-4588,-2146,-5551,2558,-943,-945,8874,-7293,-9575,2047,6350,7651,6152,-1353,-236,-8135,-1999,405,-1888,8278,5223,-3831,-6444,2989,3878,9940,917,-3498,-3818,5969,3675,7359,1536,-591,-3488,-220,3547,8675,-4912,-1774,5169,-5454,1034,2766,8562,-242,-7162,6964,4066,-8482,7872,-6696,-152,-2398,-2257,-2291,3741,-7301,8911,-4270,-5222,-4859,163,-6837,6506,7798,7233,3666,5145,1780,1461,-3675,-1235,-1292,7023,-9644,8636,-8994,-9427,3682,-6683,3398,2349,-7941,3647,-2664,-5232,-8713,2661,60,-8359,459,7733,-4763,-1096,-7243,8563,-5429,3500,3419,-5760,341,-3926,-4434,-3988,-5288,8518,47,5039,-2369,-7557,1471,-6155,7885,9185,-7098,-9972,9112,5632,3198,-1885,-2997,7537,-613,-7017,8664,-141,-7380,-7895,3951,-5489,3113,2040,-1907,4958,3360,-6832,1505,7295,7800,-4921,4826,-518,6831,-3754,5200,-5415,-3908,3890,-9373,-339,-4273,-3469,1008,-4048,2634,479,1753,-8689,3197,-2320,3996,9549,-3762,-3064,3957,-4642,-5805,-9595,-556,-5848,-8315,-175,-8338,-1521,4095,3515,-9466,1851,-7083,-1969,1468,444,-1197,8696,-490,-9796,-7499,4626,1532,9113,4414,689,-5555,3656,7881,329,8523,8086,-9871,2665,2529,-9546,-935,-9649,1371,-107,3782,-3092,1272,-1521,-9768,-6175,-8431,7939,-2666,2044,2068,502,-6681,2539,-2360,-3016,3636,6112,-7400,7229,1481,-4019,871,8927,-3350,-6767,-8289,-4699,635,4025,7439,-6355,-3457,4780,-4692,-8841,5333,5384,3371,4763,6538,-6696,2744,4874,-7179,9317,-2628,-4278,-2619,-7258,-4469,2489,-247,5342,2403,-6443,3171,-4868,2862,-7858,6124,-8272,7732,1178,-2635,-579,9156,6079,1197,764,2551,5516,-8607,5329,-9713,9882,5850,-6017,-9925,5990,-3185,-6265,5767,-8609,-4634,7900,-2533,6121,-1408,-5232,-4956,-3141,3140,-3997,-2344,4367,-6240,8100,-684,-9737,7374,-8825,-2498,-3555,7217,-2280,9804,813,510,-9958,2431,-482,-6330,-7836,-9969,-9089,-7356,-243,-551,4152,-9165,-5608,-4117,201,-3371,376,-4084,6573,-9157,8201,-1533,-1908,-2887,-227,2959,-3686,8770,-2920,-239,-825,-1392,-4344,7382,424,2533,9394,-354,6947,-1902,-1722,7,-2312,-8337,-9781,-813,436,4572,2664,-7441,-9383,-6446,-3540,-5113,-876,5194,7287,8082,-6856,1812,1410,8953,-6679,-4765,-6106,4240,-1193,-5374,-9527,4262,-271,-78,-5417,-4862,-3604,3741,5522,-1010,6860,-8354,2069,4681,9805,-7482,-2172,-2310,1789,6893,4679,-2560,2017,-878,2242,1673,-3076,-4412,9945,-2211,-8257,4146,-5188,-4621,-2466,-2255,-9791,-7024,-4070,-3042,-8433,9748,-9621,1349,-4707,-7829,9480,9512,5628,8116,3458,-1743,-163,-3606,6143,-422,-6391,2970,-3776,-7770,-6712,9066,8376,-2286,9340,-1205,293,-7444,4771,8337,-3037,9405,453,3235,-7030,-3013,-3617,581,3799,-791,1494,4370,851,-9855,-1906,-6500,7308,-4122,-5406,-5705,106,4644,4749,5808,-5199,-7269,8720,-6310,-4288,9006,6867,-2522,-7059,-9317,1345,2418,2811,9428,7384,467,6642,5549,-1640,-7894,740,1062,4052,-1670,9033,-3759,-2909,6712,1781,-4104,266,-9799,-1126,6434,6131,1674,-6815,1069,8481,-6753,370,-8928,1387,2263,-4706,8607,7232,-2544,-6768,1839,1371,-9983,965,1432,-8625,7889,-2170,-7790,8434,1570,6708,-5920,-7731,6044,2299,5948,1946,8532,8244,2783,-7258,-465,4183,-829,-7633,-6710,-546,773,-8237,-1292,-4830,8517,-9970,-1072,-8209,-4206,-4021,-8707,-5130,379,3902,6929,-1648,4871,-2824,4882,8555,4628,-2201,3259,-9125,8180,1891,-2407,442,-6160,4200,3481,9770,-1576,-6051,-2252,1596,6019,5824,3147,311,2325,-9216,-8757,-8468,-7185,5756,3288,-3413,-8238,2447,7430,-9329,-6339,-4863,5862,3918,8413,-8675,4291,-1023,9633,-7575,9394,9066,6848,947,-229,-1342,-4465,-7549,8312,9148,5233,1226,4404,782,-2607,-5258,978,-9055,1244,6512,-586,-3157,-1223,1357,-6321,-205,-6484,-3842,4362,-3737,-2914,-6227,5028,-7511,-3977,-2613,-2811,-3817,6186,2618,9811,-4939,-1010,2518,9561,-3842,-6948,1175,7057,-4601,1782,1915,6663,8440,-6357,-2513,5277,-2101,-2095,-3523,3501,4017,8976,-2512,-3484,6328,-4283,3182,2463,-8280,-2776,1215,-7202,1865,8644,-8214,-8509,-9358,-6472,-180,-486,-4160,-182,5231,-2606,-6772,1872,7117,-4367,6750,-380,6860,-804,-1891,2339,606,6392,9461,8478,-7642,-3426,1163,-8812,8973,9737,-5423,3095,-6268,8468,-8997,-8868,3513,8635,-9154,-3302,377,8142,550,8066,-4685,4252,546,5005,9807,5717,4556,-5410,2521,-6586,5204,-7966,2601,-3004,-5001,9830,718,-4108,-8690,6725,-94,9609,-1622,3410,4324,4919,-6972,-2733,4522,4463,-8940,-7076,-9033,3087,2618,3499,71,9336,-3298,5876,7350,-4615,-984,-2548,-5354,-7562,-4389,-5619,-6431,8487,-9084,8579,-7282,-2115,1475,-5020,-6738,-9719,-6141,6504,-9643,-6500,7785,-3620,3618,-1803,3760,-4297,-3662,-3401,-9560,886,8767,3584,2357,-5124,6833,-9558,7527,-1672,2855,2849,2631,-13,5584,-7428,-8536,8214,1085,661,8521,2275,6226,5435,-2292,-9461,-4495,7948,5640,5906,1859,-5903,-6075,-5062,-2125,5823,7679,5815,-5586,-1022,-1848,-4577,-2382,-5112,4966,7564,-4060,-6715,-1314,2914,345,-3267,-2605,6221,1213,-5171,-4327,-9903,-533,1022,9964,-3254,-6903,3356,929,-9749,3856,-8721,4913,4373,7614,8324,2176,7148,9025,9131,-7792,-1805,-3724,893,9738,-9855,-1046,-5910,-7376,-3748,-2451,8365,4381,6894,3902,-767,2333,2999,-3183,8186,-4376,548,-7741,3440,-7895,6305,2115,8699,-2230,2125,480,1314,-7677,517,5627,2834,8447,9040,6774,2765,9234,-7760,-1908,3902,1009,-1631,9610,2301,-5678,9783,-7796,9282,3578,1601,-1397,-1323,7145,-3309,1499,1401,4098,3437,-3752,7559,-8395,9876,-7084,701,-458,1305,8500,-7941,-963,-9356,6599,-1560,-649,3367,-2073,279,417,-9573,2426,5203,-3778,-6670,-6346,-5628,8666,-982,-8555,4995,390,-7719,6480,-7352,-6637,425,36,-4480,-9167,-5131,-5753,-5851,8632,5571,9686,159,-4745,-3461,952,-9999,6481,6703,9873,-9666,8668,5198,-2816,-2977,4368,-5157,5619,-4165,-4366,8985,-9739,3624,7380,5368,-6647,8994,7317,4132,3397,7851,3407,9403,-1421,9753,-4511,-295,5995,-5485,604,9990,-9971,4983,6405,3005,800,-1307,-2673,-6976,4593,2757,6064,-8916,2175,6627,-2016,1654,-3337,-5087,-2770,6778,8719,-587,-2013,-2561,9861,-6420,-7155,738,8903,1030,-5062,9224,7037,9814,460,-1134,8873,5427,2970,3128,-5926,5227,-2049,-3561,-4644,-4484,-4481,-8900,-6548,6547,5888,6877,-4122,-5405,-4484,-5796,621,-6974,6845,3317,-4477,4807,1327,6388,-3260,-7572,4616,-3899,8591,4379,2561,7208,6511,-1691,5779,4196,1079,9050,2291,3996,-1491,-6906,-5004,9206,-7538,5097,5368,-3767,7968,-6719,-2939,-7456,-3412,5613,8628,3175,7550,8701,2141,9345,2135,6765,-5487,615,-3464,-5387,-1887,-8534,-1903,-4741,-8827,-6515,-8255,1004,-7455,5928,-5010,-4912,-8439,4133,1953,-1976,747,1129,7951,997,4369,6496,4815,5875,-2826,4194,1064,-8813,396,6348,137,2296,-1135,-8767,1216,3655,-7113,5433,-7437,-615,2191,-2404,3510,6400,7630,7185,7582,-3162,302,8564,9890,-2145,1839,-7256,-8723,-4497,3270,8884,7403,5212,6416,-7265,-4893,-763,5489,-7873,8806,9066,5393,2792,3449,-7835,5323,-1201,7668,-1467,7325,9954,5797,-8859,6640,1716,-6603,1782,-1221,-1261,9472,-5219,-3322,8414,9029,-5666,-2444,-6931,3276,-1180,9128,9121,-469,-8231,3207,1524,3915,-191,-8372,5425,-6450,7900,-6793,-3981,-9106,-5640,8455,7358,9228,-4445,9935,7830,8306,6808,-7340,7001,4041,-2891,2782,8184,5829,-5135,-6972,2624,9969,-8574,1143,-8884,4558,-1927,9456,6724,-3239,3558,-2443,-9276,7710,-4310,7181,6065,-5945,-1894,-8581,8868,5146,3448,-5098,-4982,-2918,3717,4302,6060,2685,9913,-9823,4276,8543,4587,384,-5225,2575,-1913,-6258,4888,8358,-3529,-5848,-8143,-826,3291,-7239,7625,-4341,6394,-8862,-2386,-9734,8848,2677,-6082,-3945,2646,-5428,6379,6085,-4852,4720,-896,-7430,7713,4336,-8893,1766,-34,-5928,1296,-7276,2944,-152,-7165,4659,-8221,805,-397,5456,1320,-2568,6880,3826,-2191,5423,-6150,7877,-2014,-6741,-4506,-9352,-926,-1745,9161,-3686,-5587,6984,9688,5672,3319,-9155,-6042,-4819,7388,9222,-9540,6561,-7111,6271,1757,8670,1478,-5178,-7811,-8985,9394,-8719,8250,-683,-1792,3966,-2120,3074,5231,-2,3861,51,-2650,-7466,4342,3967,6618,7845,-8177,5717,4849,-576,-6276,5585,-2887,-6739,-3355,6211,7904,-9917,-4207,6076,4465,-197,4847,8407,1307,1425,-3883,8739,2434,7413,1267,1866,7049,8302,7560,-1018,7492,3081,7162,-7363,7402,-2955,-2760,-3709,3858,8695,5610,4542,69,9671,-866,-5005,497,-2637,-4120,-3035,4031,-3502,-5378,660,7363,-519,-9826,7144,-6134,8855,-3127,5857,1261,8791,-3291,6630,2913,1213,-8583,8521,7622,-2556,-3090,6810,-3860,-5586,9534,6783,-4546,-1296,-5260,6039,7384,-5496,-6493,4266,4480,-8616,8413,-2680,7207,2505,-40,-7198,9413,4452,-7232,-9812,509,8223,9080,2336,7503,-7235,5159,-8420,2130,-260,-5084,5974,72,-8691,867,-9613,-7850,2656,2391,-3391,2069,-2892,-321,-5793,-6574,6068,8013,6682,-6057,-4408,8092,-8033,-2449,2059,9985,-651,-2326,-8482,-7686,4119,-8063,-2790,-5541,3714,5942,9991,8009,1386,1991,-9461,8270,-4533,-5630,-5776,-2240,-1074,7966,5694,-3040,8908,7626,8374,-3704,-9913,7192,2351,4410,5582,4313,5435,-2473,9471,3064,4,-8408,7239,9101,8656,-1879,8494,4458,86,4903,-8970,-6207,5196,-2517,-1769,-378,-1869,-8956,6490,-4351,7241,-8256,9394,-8386,3229,2057,820,-9356,-1490,43,-7544,-7167,715,-3092,8625,1771,5540,1967,6706,7975,333,-6438,3051,9909,-2930,5386,7127,-2924,3224,4879,-573,186,9131,3441,9742,8725,2864,6458,-2086,-4945,7194,2477,4797,-4690,5179,8984,6342,3817,-8512,-345,-707,-9992,5135,-4722,-1720,-8787,-339,8390,-6081,-6614,9125,6408,-3272,-4517,101,7122,9119,-684,8906,5626,-9332,-2407,-7808,8967,-810,5842,-2651,3088,5107,-7097,-4061,6175,6095,4277,-1826,98,-1480,6783,5408,-1575,715,-1028,5297,2480,5086,-8240,9270,-4530,1968,987,-1992,-2419,-8744,-6902,-1671,1238,-5360,9893,-5014,4226,-2476,-781,247,1250,-3678,8210,7179,-7809,2133,4118,2340,-1262,-1772,-7955,-6287,2088,-4652,588,-6957,-1540,6800,-3679,-7223,3940,-8069,7522,-832,-7199,-684,-3514,-4671,8849,972,5514,-4690,3927,2298,838,-786,6555,3661,-9009,7218,-9843,9014,-5886,-1645,9373,6532,5713,-975,7323,2993,3164,6887,8614,-6320,-7600,-637,-3208,8570,-4767,9370,2997,8842,-5076,5837,4241,-5853,6706,8786,-127,-6896,7492,4950,-8116,-3904,9673,9421,-1150,403,348,2062,6162,2110,3841,-6271,4627,1132,-2974,4364,-1202,-8040,1062,-4036,-1009,6585,-299,7086,-2606,-2379,1717,3585,-9260,9430,-4344,7018,107,-6482,5352,2632,-4630,-5278,-485,1552,-3819,-3891,-3606,9529,-5330,-5213,-7081,-7068,8313,-2942,3051,2446,-1160,954,-8463,-2831,-878,-7350,2196,2676,-9973,2595,5987,6168,7973,-7072,-6676,-2016,1552,3892,8751,4790,-5519,6820,1389,-1796,-3222,-2098,-2712,-5488,5681,1619,1283,6361,-6010,-5405,-6445,-8049,6056,811,-1882,-3698,-1992,9373,8523,2328,-5602,-1716,9538,6461,7205,8295,-2918,-926,7336,-6093,-2913,-6520,4897,-1388,6661,2199,-7994,3229,-4821,1839,4975,5478,6219,1980,1644,-762,7732,-41,-3810,-7226,-5406,4762,-3159,-8744,-4398,5626,1295,-882,9510,8764,3613,-7497,6747,7898,-9984,1646,-7539,-9749,2537,-2590,5412,5668,1323,5092,7424,2137,8746,-1149,-6903,-2760,4721,8617,-4662,9503,-6115,4494,2996,4636,7537,168,-2352,7441,-3018,-4937,1701,-6866,-8992,-2465,2516,5441,5674,2145,-5153,6697,3844,-3133,-6294,-3848,-3236,56,-3939,-674,8620,8157,2153,8889,4315,1444,-8789,-4823,-3459,-6465,9798,-3634,3745,-468,7112,-6041,6359,4668,-3366,9330,-9811,-5784,8389,9262,6820,-6450,-9585,8061,-2097,-6161,-4237,-2321,4327,2968,3622,1569,1876,2382,274,-4314,-7095,3868,7698,-6882,-8873,-306,-680,-2593,8158,-3293,1761,-5618,-9659,5110,5476,-3558,9206,3144,7758,-8427,-1589,7482,-5528,8694,-6613,8908,4603,-5373,-1916,-592,-9159,-2872,-8066,2463,-9558,-5157,-169,4823,-3705,4639,-202,-3104,8858,-2033,3591,5034,-8878,-7692,-8997,1049,301,-86,-6266,-618,-4992,-2356,8919,-3974,-9219,-3049,8098,-1857,-9719,4237,-1742,3674,-1775,-9748,-5823,7828,-27,3504,6752,-9075,-3457,7437,-9231,-4580,-7492,-864,-8040,-4586,9598,-1500,-4143,-1250,5599,3722,-1477,-6106,-8984,2070,9951,-8002,-5983,-689,-1884,3916,3610,-5200,154,-955,4462,2050,-8243,-6356,8004,-7847,-7970,-1022,-7959,9977,9919,-6962,3303,4846,9555,4804,3209,-4238,5814,-7205,171,3899,7467,-9921,2450,-7436,6784,1697,-8435,-8992,-6792,-3826,8340,6977,9796,4900,1518,-4723,-632,5409,4656,1378,-3908,2992,-9317,-277,34,6252,5134,-819,-8980,2309,8108,-4317,1595,5630,-5631,1251,-9789,-7899,-9649,-2741,-6612,-2726,4867,-4323,-4613,4761,-8846,4357,7637,-6869,-9453,1477,8769,5780,-8257,2324,5527,2848,-7424,-985,-809,4599,-7334,8370,922,4066,-964,-9501,-5770,3972,-7837,1175,-3236,-6824,-4076,-7225,1481,420,50,88,-6695,-47,-883,-128,8373,-1674,-749,-7568,5168,5541,-679,7261,3199,-3022,4388,45,-6474,-7350,-4444,-7482,-696,2259,4745,-5096,-1215,1193,8027,-4928,1972,8487,-5592,-7237,5702,-8831,9049,-1957,5749,6229,-3596,-7461,-4409,4550,-6127,-3990,5898,-621,-3160,6421,9952,-1640,-1058,6506,2468,2066,-4002,-9110,754,-8279,-604,5045,-556,1528,-3706,-146,-5251,4145,1261,-466,-6026,4735,-4795,5339,8835,-3180,9129,-6714,5729,-5623,-7115,2546,-3061,-8600,4363,-854,-8234,-1976,-5601,6839,-276,4736,6051,-5723,-4113,-2042,9514,7950,-8625,6134,-5330,3536,-3674,235,-7627,6411,-4155,2189,4727,-3423,2111,6924,-8909,-3714,-3441,7388,-6792,-5657,-4872,-3300,-9715,1463,-783,-1170,-8878,-7526,4880,5451,7675,-4026,1285,-3381,2846,-6002,-402,-9355,-8040,-2820,6889,-5200,5663,3543,1349,-1381,4923,496,6925,-6085,3350,4765,7057,506,-80,-5215,7404,-4818,-7052,-475,3872,-6627,-4619,-8073,5835,7122,-61,4444,5326,3034,9698,-282,963,4907,502,5323,7278,-3731,4020,6490,5208,-4229,-6083,2825,3684,-2785,-5642,-7955,-9172,7095,-2478,-2579,4228,9895,3368,-7107,-2743,-8244,-2908,-3668,5290,8216,-3289,6427,7737,-3684,7989,7496,-7700,8299,-3309,3746,-931,-9779,76,-5139,676,-7051,1376,8300,959,6032,-4185,8546,-3601,3636,8576,5239,-5726,-9096,-7343,857,-9647,2409,-1027,5853,-4767,6989,49,482,-5670,-5601,-6159,-8387,-7891,9819,-5189,-9596,5216,3373,4638,-7923,-1460,8536,-3622,-874,-1724,-2078,-8962,165,-6098,4980,473,2180,6303,-9572,-4437,-760,-2576,-4056,8702,7626,-1585,196,5858,-5891,-8064,480,914,1211,5689,-3190,-8605,8871,8140,-3688,-1913,3301,998,9215,6581,-7935,9931,8882,-1947,8734,-2745,-6626,7148,7706,9342,-3048,-5770,5387,7232,9063,9391,-291,-2437,-5911,-8650,5952,-1291,-1995,-4534,-3713,-9418,-6503,5963,-3905,3292,-5023,6443,9723,-5949,-6044,1519,-8480,-8798,-1094,-3994,-7985,-9129,-1283,1344,427,-7684,-9925,7019,-9636,0,8778,-4004,-4794,-372,9565,7940,2400,5543,-1471,-6771,-1918,-1554,9278,8580,-8821,8393,-5289,-5464,1920,2346,-970,-6455,-4311,-2294,2271,8902,-8603,-7212,3886,-6817,4404,-9217,-9475,9186,4621,-9794,-7405,5750,677,4832,-957,3894,-8711,9861,5724,2443,8959,-1708,-2718,3585,-1716,-6341,-824,7646,3160,-4639,-5200,3718,-773,9081,-9596,7684,7292,-3669,6697,3031,-837,6993,3933,-5093,9619,-1131,-9845,-7800,2051,-4710,-7282,6896,2699,-9663,6876,-8018,2269,-6978,-6354,-1911,7870,7930,5777,-2865,-754,5914,1318,-3323,1587,8889,-6693,5613,9752,-272,-528,5685,-2680,-7405,-7903,9491,-8956,-1174,1146,-3091,7717,-424,8898,-335,7122,3655,996,7430,771,-78,-6496,4216,-9482,-5105,-9185,-7755,222,6899,6252,666,6735,-7269,7726,3005,2385,-6184,-8193,-2408,8214,4261,-4896,2950,8385,-2137,7327,-7597,-12,8905,-6192,-3329,-5695,6612,8723,86,-6158,-9859,-4193,-7131,-2224,6011,7540,-9598,613,-1020,8097,5598,733,1922,-851,128,-2521,4756,7264,34,4808,1643,-9786,-7757,-4656,-6423,-9105,394,-1194,-5624,8986,-5573,4961,-5578,-3411,-1033,9491,1974,8299,9734,1823,-4051,3617,-5898,2979,-3204,-6044,-5290,-2361,9243,-6271,931,2271,7937,-2369,-7793,507,-7967,5634,-1556,-5004,9262,-9068,7470,-3768,1629,4022,-5719,2768,-3507,2419,7081,-7257,-6328,-954,1552,505,7027,1922,5197,-529,6711,-2507,9917,8672,3771,7219,-9586,-6747,-138,5745,8522,4705,2502,5457,-6167,-9795,-2366,6184,5317,-3135,534,-2943,5737,6717,2623,3672,-9522,2195,-6733,-5138,-291,-6433,1649,8296,304,3990,1002,4684,2852,-9883,-7474,1384,-9700,-3297,-9503,-4053,5232,-299,5491,8648,7011,7255,695,-6097,2537,7277,-2196,-3889,-5806,-4480,3653,-2044,7463,7059,1778,-2340,-6717,3159,-2844,-3478,1452,-5662,1956,6478,9208,-7496,8332,9912,8903,-4149,2915,-321,3456,-4289,1662,-1096,6591,3548,7163,3523,-3455,-2964,7724,5803,-1521,9825,-7265,-882,3501,5682,-9295,3958,-4053,-1066,-4912,1800,8036,-5207,3888,-8669,9387,1652,-3709,892,9527,-9592,1660,359,9099,-130,9440,9604,6757,3090,-6779,7077,6154,4007,6646,-4829,8455,9162,-4071,-5721,7932,1980,-3742,-844,9589,3656,-5015,1924,-612,-9443,-3340,8816,-5999,-4127,4897,-6933,2483,-4773,-6903,-2040,5630,-2098,6254,-29,906,5124,-5812,3350,-5798,-7046,-5963,-3864,-9045,7611,2928,9414,9015,-5336,9351,7506,9907,1953,-7144,639,8414,6469,7153,6468,-3608,-4464,-7112,-3299,4887,-7668,7448,1456,8642,-4055,6691,5141,-5686,-9328,-318,7870,-5426,580,2709,4692,3264,5702,9372,-765,2331,5401,4474,7609,7328,8269,1438,3486,-8957,-3652,-1575,5328,-7123,8200,8453,-4805,-2633,-1631,86,-9611,-2952,-3172,-5897,2542,-1418,-8848,7075,5659,4583,-3951,2963,-8124,-5346,-7197,-8542,4245,4428,-3958,-1510,-8569,9669,1411,1204,-6569,5572,-651,-3485,5698,-1468,-8058,1947,-8715,-1051,4296,-7444,1984,2682,-7731,4461,-9316,-6159,-6005,-549,-841,6636,-6905,9216,-7329,-8241,-4013,-8464,7531,-4102,-9681,5962,328,1276,6121,4807,3151,58,5197,7120,1175,3594,40,-9696,2572,7525,-884,8917,4511,1423,-2677,2910,227,4291,4663,6823,-9863,-3562,7033,-8813,-149,5727,-2112,3456,1930,8970,4581,5814,7506,8790,-5185,-9255,9737,5977,4786,-308,-6545,4926,-3618,-624,-6055,6097,-3913,-2272,7816,6788,-5587,-3628,-8692,64,8032,4562,-3237,-5618,-3086,-7967,6409,4033,5659,5800,1691,-4094,-1455,-1100,8509,9215,5562,-2701,-6587,4953,-7532,-7605,9934,1236,7727,8844,7379,6723,3272,8270,-8200,-2190,9803,-1027,-4178,2468,-740,-8041,6565,1758,411,1810,8683,7529,-9845,1889,3649,-6872,1254,-5207,1093,943,-1854,-1953,3346,4243,1910,-6038,-8427,-9729,2851,-264,-3943,-5031,-4624,5204,2200,5120,-9304,3289,2172,-8987,6596,9248,-7851,-1219,5394,1958,333,-8567,7451,6340,-704,9248,231,-1225,7358,7433,7769,9452,-6939,1849,-5189,-1295,3071,577,8704,11,-5538,8756,-111,6081,5495,-9456,7072,6814,-6823,3090,-6665,-4812,-196,9619,-6364,8323,-2445,-4058,8552,-7424,-1289,3529,5455,4060,7526,-592,-1660,-788,5499,816,2102,9134,-7671,2638,7185,4422,-5182,4075,6956,9481,7417,-603,-4589,957,-4688,6875,701,3943,-8327,7216,-7370,-2814,-7895,7372,-162,509,-6607,879,-1665,-4300,-952,-886,-1540,7779,-3559,-4473,1030,-1899,7493,-2695,2152,7852,5949,4983,-7395,9614,-5828,2009,-4813,-3024,4870,7624,-4621,-2581,-386,-373,-8390,4486,-4688,-4923,-867,-8654,-5978,-5341,-403,5823,-3423,-698,-1320,6194,-9801,8122,6626,8362,9495,4268,5907,2716,5416,-954,9299,-2529,5230,5916,-8046,-6893,7749,-5282,7050,-2382,69,2549,4851,-746,-2598,-2160,-5879,8870,5503,-3211,4560,4974,-960,-6297,-9418,-1877,-9986,1902,1127,8210,1266,5633,3571,324,9923,4476,-8769,5676,-8192,-6675,5129,2221,1579,9411,-5397,9730,-3636,756,-3775,-4088,5479,6245,4376,4111,247,4914,-4316,-4630,-8835,-8337,8221,-5739,-6926,-9672,8292,9132,8372,7570,6849,-4001,-9320,-8216,-72,2305,3747,-1904,3213,-8926,-7761,2079,8181,4838,5931,150,1392,7528,8852,9281,4819,-2603,-2108,-2926,1170,9175,-5879,2097,-8068,-6347,3223,1838,-2746,8999,-117,3763,7252,-2482,-8068,-7999,-108,4652,7402,7612,-8608,5503,-8241,-5671,-1226,9941,2360,-7626,5516,3896,6017,6159,4495,9160,5872,-2809,4886,-9022,-7765,8325,5362,6925,2953,4438,3202,1192,3583,-1533,4474,-3256,831,9069,4019,4176,3669,-3972,6618,-4721,-706,2258,4869,5936,8064,-6668,-438,-856,-5634,5044,-974,996,-3168,-9047,-3118,-2109,8364,2443,-4322,-3930,6287,-4272,-8533,-625,-8134,7506,-1414,5389,-6203,8182,-8157,-3790,2567,214,-3417,9002,-5167,7512,-9852,-7181,8797,9760,-7165,4174,9956,-6236,4489,-4040,197,-2947,1678,-1714,3313,9627,-7301,-3691,-6243,-6094,-1947,-2964,-942,2463,-908,-9713,-4866,3255,6222,5432,3387,9301,-3979,204,-1466,-262,7307,-9087,4524,7468,-1618,4798,-8658,700,9531,-7055,2843,8944,-8384,4800,-4648,6158,3672,5621,170,-38,5756,-4625,3928,-4054,7830,-1773,-6303,-3909,9345,9433,-6298,2464,2420,8676,-825,-5620,6629,290,-217,-1987,3087,8044,-9614,-5192,2377,-2640,-4568,569,-4439,-714,-6194,2738,9705,1545,-3312,919,-4997,2311,3717,-8165,4637,-3207,32,-4902,-7785,846,6452,8003,4318,-5925,-401,-1016,3372,2721,-9777,811,9080,2396,-7059,8847,2239,-7339,4704,1595,5294,-5331,-2167,-3408,-8844,7089,2999,-7393,-9243,-5249,4600,1002,-9964,-5765,-6680,-4662,-22,555,3713,6207,-8813,-7820,8723,660,5900,8039,-4135,-1479,1397,-556,6003,3573,1581,6412,366,-229,-3668,-4718,-8648,8627,-8403,2281,-4819,-8491,321,-6024,7589,-7256,-4911,2716,6930,4253,8925,3659,3048,-5367,2789,-2691,8245,4189,3049,-6923,-6935,-5051,-7896,9026,-6741,9813,2651,-6264,4502,-7550,2958,-9490,5897,-7748,5295,-6316,4173,4419,-7541,4217,2614,-4084,-3335,3195,-4707,-2785,8398,9905,-8232,-4715,959,-8872,3158,-4390,7432,-5313,4073,-3907,4178,-8314,4531,2485,-3950,-2890,7695,-452,4783,-6830,-6766,-5640,-2162,9213,-2818,-1201,3294,1679,548,5810,-7557,-2485,8028,3424,-4944,5048,8607,-8845,-2002,3434,6278,-9819,6950,-6716,1563,-814,-2561,1160,-3929,-6102,8707,7844,-6804,9279,2820,-3916,9705,-3007,-2687,5697,8618,-7756,4849,-7747,7474,8284,6428,9801,-6642,4567,4047,-2060,3697,-7651,-3275,-901,5380,874,419,5625,6647,-2987,-6235,9970,-3851,-8387,2144,6611,-1408,-7817,9245,-3347,-1474,350,-4559,-2507,1746,-4651,8770,-2870,-3980,-9697,2762,940,-5703,-9063,1463,-9333,6023,-8803,2838,-3943,-240,5067,4793,6385,9582,2724,1301,-3223,-6254,6090,-3858,-4665,6790,-4713,-3096,-9681,-1993,-9142,4387,-2548,9280,-1779,-124,-3023,8114,6606,2202,913,4740,-935,9330,6412,9437,9896,9207,-4617,870,-5420,-3625,2465,-8900,-6698,-8079,-4308,-9541,6705,-5343,-4319,-1652,-6858,-3372,2272,-6186,-8942,-9934,7898,1377,-36,-330,-3486,-9583,-8386,-5620,-940,-576,4607,-1356,-5484,-2180,-7281,-4052,-5236,4940,-5491,2904,9429,1617,7432,1009,3812,-5847,1591,-4897,-5125,-9369,-8423,-2322,4259,-4802,9471,-4976,1570,-5936,-8980,-1448,6089,6297,-6402,-3586,-755,-5749,492,9834,6025,-9257,4842,45,-4386,8161,-2211,-7666,5498,-4625,-4164,-2620,-6388,-6837,3393,-5644,-1502,3625,5819,-6391,-2887,-4966,5855,7698,-2330,-9064,4761,-5473,-3524,-7634,-3941,5172,-393,-9068,-6415,5756,5904,6172,-8052,8129,4995,-1296,-3934,-5755,5672,545,-1385,1568,-6793,3593,-2021,2264,7644,547,-7110,-4322,1545,8057,7406,1524,8539,8588,8943,2422,-6575,1969,9455,1449,638,-2842,-975,7647,1625,706,1083,1930,-7554,7413,7571,7961,9989,-2160,590,-7944,-61,-8415,-6079,-4321,-4237,-8007,-2521,5368,3855,-3490,7370,9156,-6286,5330,-2631,-419,4362,-5273,3807,1524,-7765,-1502,-3566,6919,-6081,4203,-5570,5435,6881,-522,-7579,9814,6448,-1668,-3345,-7451,-5058,7256,6403,-8373,-4888,-8762,8679,-3342,-3744,9102,-5149,2519,-2292,3196,7199,3900,-6993,486,477,3274,-4916,2291,-6997,2071,239,9524,-7550,6687,-2384,-9709,-9619,4984,1345,5926,6619,707,9647,-2688,-4889,-6632,-7243,1785,9460,-3410,-6657,-6206,-445,7215,7046,2686,6154,3357,-1442,-1791,9815,-3616,-7526,8715,1651,5942,-7521,5196,-4879,-5316,-1710,-4578,-8900,-9253,-1716,-4713,-1435,8410,2664,-1001,7682,-2666,1681,8534,-1788,1604,3350,1944,8485,9824,8371,-7063,2799,6677,-4563,3092,-3060,-4210,-812,-8437,-5428,-2411,6042,9620,8805,1750,2450,-5690,220,-6934,5786,2119,-6788,1184,-5615,9891,3711,7483,-5399,3618,-5965,512,4081,5287,-6907,9434,-1896,-2189,1452,1639,743,-9518,4193,6162,557,-5188,6434,-6273,-8106,7964,-8289,7118,-7412,-2142,1145,7192,8872,861,4222,-5300,972,3918,9959,7276,-8839,-3859,-42,-7785,9551,8644,5121,4361,-6891,-1872,-950,9133,-4727,-9901,3190,-254,107,-6917,-7956,2858,49,-5486,6888,792,2320,-658,8200,6802,-6269,-7740,-5700,9063,2865,671,-9430,8677,-7022,9229,-9163,3709,-4825,8694,-5021,376,-5992,3162,-4385,2435,2334,6409,9493,-9318,7364,-1243,-5617,-9047,6225,-3641,-4509,-1037,5958,-6993,-3631,-259,6051,6201,3678,-2574,4452,-9357,7291,-6258,7782,8244,-7351,-5111,-8011,3220,-2293,4914,-7001,2465,-4706,-5391,-7474,-3411,-6543,-5235,-1939,1237,-6397,606,127,-4914,-5718,6745,209,8459,-8841,-3925,-200,9047,2521,3406,5428,7296,-3503,9471,-9466,-6934,-7053,-2310,426,2015,8196,-2908,411,4167,-6348,-5347,2269,-8082,7595,-9776,-3073,4120,7555,182,-5815,5136,544,-3473,2995,-6679,-7587,5067,-6583,-2550,1189,-475,-3571,4045,4061,-4438,-8861,-3923,514,-3715,-1020,2616,2725,8255,7955,-8426,-7732,-1372,9785,2537,5651,-5996,9590,1435,1889,3968,-7215,8546,9908,-6481,6317,6845,-6216,-6556,5231,9781,5277,5309,-3496,-7332,-8317,-2105,6092,-5139,5204,-63,-3121,5966,5020,-9020,-4716,2668,-8943,-1539,7060,-746,3654,5344,-8851,9494,737,-3579,3233,6282,-2678,-3235,-9762,5574,7412,-7714,1435,-5768,3988,4158,8141,-8150,-9832,-5453,1296,3630,7645,-6484,7759,-9516,5564,342,5199,-9584,118,4490,-4099,-9470,-8437,5396,8504,-5727,2464,-3936,-8375,3258,-9849,-1973,-9274,1822,-9986,-3278,9978,4787,-7486,1266,-7583,6851,-3889,7305,-1409,5227,-1032,-317,9235,-8202,-8239,-3894,1654,-5469,3585,-4284,-8339,3510,-8406,8807,-9028,-6773,8197,7651,4126,823,-3925,7360,-7032,3437,-4589,4244,3003,-1327,3468,1652,1139,-2747,-8881,5652,4325,-9060,-2388,-1434,6433,9380,-9560,-9235,3437,-6382,740,7443,9165,9016,-7028,9472,5033,5681,-3245,1015,-4207,-4158,-9515,9165,161,-1247,-3333,-267,-8530,-8788,-4574,9079,4778,5023,-3749,-5148,-826,-2631,1023,-9086,2041,-2113,-8511,546,5270,-8265,-345,5951,7419,-5447,-4944,3420,6459,4058,-7041,9081,-372,-9173,9875,-3084,3580,7819,377,3074,6331,5214,-8763,89,1176,9436,-2723,3875,-7849,-5371,1008,8781,-9740,-367,1307,6981,-8094,2039,-1785,-5565,1127,-6590,3931,-7095,-2467,6893,-5414,-5688,-4318,-1709,6448,5285,-4822,8667,8260,7427,-9913,8807,6033,9653,-6610,5846,6169,6214,-7267,-3371,5820,2101,-7445,1356,6459,-7405,-84,8901,6938,-6388,-4344,6258,6856,4008,-2034,-9214,7685,-6431,-4421,-2166,4171,-4515,8782,7492,-2673,-5962,-8317,-2510,818,2102,-2620,-2603,-260,9411,-5436,-9585,-4694,8438,7407,5513,2156,5867,5006,7797,-4632,4144,8511,4585,9451,1365,2197,-419,-2959,-678,-5758,-1124,9037,-9968,-1435,-5225,826,9684,-4308,6579,-5420,-2453,-8336,-2651,1604,975,9948,-9756,-8511,-1448,1228,3313,-5603,-1226,4559,2079,-3956,-3282,-4613,9517,-2938,6901,-5891,9322,-1044,-7197,5524,-9921,-5855,6815,5940,-314,8049,-6009,620,9723,2287,8275,-6526,5817,9307,16,-2562,-3017,7536,4787,7095,1146,3873,-3653,568,6979,7960,-6483,-541,-4288,-9982,8714,5501,5534,6482,-3312,8112,-5354,4457,5456,5557,-8164,2365,3329,-3285,-3994,-1552,-4720,6829,-9061,-7754,-9072,9222,-9081,6447,-5891,3138,-6642,8221,9215,-8217,4781,4333,7651,9624,-4486,-1351,2706,9998,-819,-4024,-9226,9583,5178,8844,4984,5785,7516,4343,2065,-3082,6610,7782,-8318,2804,7440,4904,7270,3457,9524,6976,-4972,-9581,5976,4344,-8159,9348,3630,4535,-8034,7909,5412,-3851,-3527,173,-8896,-2592,-2602,61,-1335,1865,-4481,-1439,3298,2564,1547,9190,459,-5543,-9205,-3560,-867,-2356,-2376,9411,-4578,-7031,-3388,905,-1817,9527,-5209,-7667,-2337,9044,4838,-3804,6574,2622,-6987,-3407,658,-4336,-8500,5104,5437,-6003,-5175,-9367,-193,-4165,-3273,81,-7510,5235,-5721,-140,-7897,5102,9329,-2351,-3353,9252,382,-6660,-7037,-3892,-2252,-9258,1605,6501,1087,-7388,-6102,-2276,3175,3104,1502,-6287,-5074,-9700,8185,8491,9879,-5482,6298,8192,7150,-705,4484,4036,2637,-2597,-6284,8811,5169,4140,6696,-5662,1669,9232,-1621,-2915,-2071,-2991,8724,283,1100,-2109,-3968,-4014,-2708,6114,9243,-8480,9911,-4463,531,-3983,5536,9017,5012,-5827,8452,-3422,-6995,-3874,5021,4390,-6413,-175,-5957,4280,8604,7523,4309,650,-2184,-8880,4341,-1982,-9398,-5716,-111,5764,-4429,-6737,1453,559,-5974,9154,-5669,7599,2413,7301,2005,8483,4692,6709,1723,-6949,3314,-8978,2783,-3740,-2888,4259,-9647,9892,-3508,-5340,9608,-1967,-4257,5896,1657,389,8804,3871,-6345,-6851,1503,-9835,-4369,-8413,-5543,3571,-8820,1167,5405,678,-5523,-3144,6276,-1524,-5016,-1582,-843,9487,-4256,7479,-5470,554,1678,6678,3231,7630,-9130,-5320,-6810,-9202,-3430,5469,-883,7287,-3633,-9594,3674,3514,-8454,-6147,-1728,7487,6838,4778,7240,-8342,-7610,9778,6891,2350,-6836,5972,-5423,5898,-9918,7491,5350,84,3212,-6801,1833,-9610,-5153,-426,-8265,5373,1908,-8206,-1603,-4815,-9649,-4271,-6128,9769,-8519,1108,-3498,-5092,6996,4385,6641,4880,6131,6977,-1883,2695,2838,-5272,8291,4784,-5225,-9853,-3616,-1640,9057,5783,-4770,1093,-7607,8452,6855,-2093,-8844,-6575,5213,-2721,-7253,7568,-3861,9100,4099,-1982,6301,-5566,-1219,-3802,-7856,-6945,-7609,1742,-5855,8523,-6718,5695,6566,-2620,-506,-8551,813,9029,727,-456,-8261,-9147,6782,8374,5962,2910,-3975,8154,-7743,523,1705,-8235,-5708,-3950,-625,-2240,1588,9863,3301,-3388,1651,3490,-8931,-6920,3761,-6862,-9478,3623,9067,9960,-4410,2706,4995,7504,-1866,9956,730,4824,-486,-7817,-3969,600,301,6140,-290,6207,9764,-4362,5157,4209,-4473,-1430,-8697,6675,3933,-2352,7337,-8441,3953,-4190,1455,6021,-5163,8271,-3036,-6960,-1431,5239,-2036,-3764,-312,4893,6667,399,5580,-8678,3999,-6848,-4807,-5756,-9745,-1004,6608,-5528,-8663,-5504,-6037,-1361,2097,-6105,8395,1599,5888,-5159,147,-8382,-3495,1103,-4849,3592,-2685,1135,6383,-369,4424,-9810,-3041,9024,-2826,-3949,1321,7612,7810,4921,7739,-7362,7905,3067,2023,43,6434,114,3337,9336,795,5618,2932,7149,-8676,-3724,7490,9836,19,3763,-8210,-6437,-2302,-1015,9142,7955,1179,-6637,-5500,-656,6830,-8291,7388,-3905,-5823,442,9228,-3561,3366,7618,-1921,-6624,5725,1906,-2689,1747,-5594,4893,2695,5635,5950,-8907,-7971,-1101,-3416,6672,3229,-6969,-2606,9575,-8025,-2222,-3832,-6748,4434,-1137,8265,-1819,-2349,4208,-6742,-2249,8205,7992,-8778,-9549,-3576,4811,-4453,6849,-3128,-1775,3153,8724,-3355,-9284,403,-8596,-8212,-5519,-1949,1636,-8251,-4955,580,9471,9923,-5558,4993,1330,-8204,-4170,-4914,-8523,-4186,-4196,-3257,2438,7295,-1511,1343,-2085,-8707,-2102,-5427,4770,5396,6320,-8468,7503,2120,6590,-1561,-9017,2344,-3931,2670,-9986,-3177,4264,-9347,3381,1647,-7214,4780,6195,2417,2568,5662,6913,8710,-4971,-3159,5190,6253,-4846,379,-4176,-7326,-821,8991,-3281,-190,7791,-9104,2454,6758,-1604,442,3756,-8930,855,4091,8764,-6468,5309,-128,-5926,-4615,6986,9380,-8244,-4440,2029,-9173,5290,-217,7510,2083,914,-1161,-8459,-3816,-4811,6058,-6899,-1678,-8263,-7045,6843,2316,-9997,-3032,1524,7033,3277,5825,8393,4992,7740,3378,-9672,-538,-2547,1319,-1670,-1254,5399,9208,-7788,1188,-1106,-3302,2187,4232,-825,6573,-427,2705,-2776,-4329,2411,-2810,8346,6617,-3548,8394,4119,-3678,-6768,5486,-4810,1067,2661,-1628,9800,2330,-6817,-8879,-134,7167,-980,9915,428,-9109,-1559,-9142,-1180,-9088,6867,-7550,-1330,-7515,8943,-3940,-3963,-1156,480,-7927,-360,6250,4306,1458,-8739,396,-2333,5826,2927,-3888,5559,-1486,-8797,-3129,-2344,-3060,-8694,4276,5355,-7246,-8794,4536,-9169,-1281,-5624,-4949,3085,4908,-3396,4991,-2671,-4907,4348,4638,2067,9108,15,-2781,9430,3473,-9759,-6075,-4115,-469,6297,9745,-7272,6897,-3451,1018,-8466,-1682,-8878,-8488,1788,-7344,-6755,2803,1392,-2217,-9939,-4180,-7030,6032,498,2861,-6870,-7380,4759,-8326,-6937,-6597,-4244,-2924,2691,8919,-1749,-4704,-3615,-9449,7253,912,7613,-5187,8457,4901,8508,3298,3679,7934,1269,-1074,795,-6347,2209,917,8831,-1232,-3878,4605,-7161,-5569,5527,2418,5296,9593,-2448,122,-4582,-1283,265,-9127,6813,1557,3364,1296,-90,5878,-4712,-1503,-342,-858,676,-9974,-5271,-3321,8783,3734,-5549,-5702,-9930,-5491,759,-6585,1471,-8680,-6031,-6946,3135,-6015,-2493,-3692,971,6369,9250,499,-1684,4002,-8493,-7321,-9981,-4656,5639,745,-8789,-3423,-1714,2414,-8275,-5117,9437,3389,-1422,8818,5935,3861,-1576,-1481,-8874,-2549,7509,-9773,5877,-7502,4906,-2933,-2034,-3529,6913,-9125,5671,-7529,-2678,-6891,4545,-396,-8696,-4741,9106,-8818,-2217,-5256,-6914,-873,-1073,7294,-7576,5608,891,1840,8073,8361,-9797,4526,9745,-9037,-6254,-9825,-6962,-105,1247,7543,1237,7344,5615,-1288,-1913,-9290,-126,-1175,-4484,-1487,5154,989,6632,-8017,-5129,-8132,8085,5406,3420,-7521,8377,-682,-550,3869,1369,8517,4025,-9298,-197,9762,4578,-2467,1955,1275,-9690,3286,-406,4391,-2819,-4053,3782,2613,-2710,-3828,-7351,155,1377,2885,-510,-1377,2418,-5539,6249,5960,-9618,1631,-2463,-3193,6307,-4436,-1449,6079,1326,-7898,-3503,-11,2799,7563,9478,9138,9147,4903,2590,6979,-7869,1110,4618,-3736,-2097,3188,2460,-8907,-4226,732,-2831,-2534,-6047,3688,3895,6769,8041,4585,19,7379,-463,8227,-4448,-6260,-4575,-9831,542,2769,2462,9829,-9919,-7173,9356,5442,-6156,-2986,-694,5475,-1773,2501,-1012,-5988,9676,-7697,1296,8646,9930,811,-1097,1895,9039,-9248,3615,1479,378,-9522,-6463,-510,1244,8652,9941,2541,5531,6006,-9682,-8697,2034,726,9871,1170,3215,3232,5135,630,964,-8496,1828,-8787,6361,8932,7663,9110,3018,2744,2501,-3464,9848,8810,-8367,9076,5074,2976,-8427,5590,-1906,4575,8216,4684,4160,-7920,907,-2227,5626,-8128,-9032,-216,-7659,-6804,1954,-3350,1946,-2128,2871,-4650,758,7937,9283,-4186,-439,-7960,-7891,-4491,-1426,-2176,5588,-4254,-9170,2517,-9286,4876,2337,-7182,306,2312,1090,8891,547,-7658,4366,7035,-4160,-1382,6963,-6122,3261,-6440,431,-5833,1687,6497,895,-4395,536,6206,-902,-4216,-1123,2862,2584,4556,8883,7539,-209,3033,-2178,5903,2594,-7623,-201,463,-8362,9309,2366,-6869,-5573,-4303,-7881,-3835,-8039,3122,-6736,8391,5733,2812,-3206,5878,6818,-2293,-6916,951,3692,4395,-7992,6087,2992,-5902,5798,6070,6491,-8692,8698,9875,-154,-2787,-1100,8863,4936,7845,9426,4883,2550,5564,2320,2176,1421,8418,-7157,4483,-3655,9458,-7733,-1246,3426,9219,-3564,8436,9908,7340,2413,8791,-1465,4750,-4859,4073,-3968,-8285,-7679,9085,9300,3589,-3904,-9444,-4427,-1532,4233,-1314,-9787,-6368,1475,-6215,5741,-571,-4962,-5747,-7563,9768,-7240,-3290,-9040,7515,7176,491,1216,-9377,-8344,-555,614,3737,9944,5709,-4214,-4709,9683,9020,-383,4888,-6533,-8728,2140,-9472,-1094,4200,-4209,-889,-9978,-1790,1966,502,-705,8598,-9978,-868,-4390,-7406,8052,-4712,9563,3728,-7925,6329,-2063,-6716,-2175,4874,4096,-5937,-7703,-1633,-5743,5831,-4189,6501,7371,2058,238,-184,-5457,4574,-6860,-8463,-9189,3669,8194,7430,-6205,1825,-9452,293,-4292,-5809,-7680,-1925,-8834,-5763,-9368,3202,4321,7212,-1504,9448,9675,-9550,2097,2725,-2813,-1774,-8885,-7416,-2789,-3048,-7971,4305,5166,-945,5900,4924,4433,-8486,-214,-6379,6236,-3268,236,3912,-1782,2230,-6590,9196,-2144,-3347,1765,2940,699,-1549,2694,-4797,-7227,-6602,-776,2597,7321,-5869,-4208,-1731,681,6405,-1072,-3438,5260,4666,7763,7733,-9647,3940,1537,-8165,3967,3636,7674,-6478,3271,-8887,9637,-4260,624,3103,-3552,2645,-7984,-8384,-3798,-6469,-1194,9920,6279,-6844,-513,-9663,6442,-3932,3414,-7265,-7269,-7896,-9163,1416,9092,-6546,-7961,9952,-6978,820,401,2366,369,7415,7227,9915,1157,-5819,-8671,-8979,-4941,5606,3215,4104,-4767,-2453,-9925,8269,-7263,-3756,5285,-8267,7551,7723,-6800,-1458,-5489,4061,7966,9901,1188,-5435,-6325,-423,1068,7252,-7923,-1853,-2375,9366,-54,8794,-8900,-6849,744,6667,-5618,7399,-4027,-9342,5860,1556,-8410,-5813,-5343,-4242,-236,-1495,-3238,3146,-5134,-3165,-5551,-9588,2868,-21,2641,-6717,2690,-8664,1165,8967,-5561,-9369,-467,2275,-5744,-3995,-2326,-1952,-9908,-2316,1279,153,1391,6628,-2772,2641,-8037,-5904,3607,3630,6683,6074,-7814,8458,-5879,-7971,-9618,2322,-3081,-2623,-1770,2451,-428,-9295,-364,-1346,7754,4216,-1160,2174,-3455,-3044,7923,-6799,6396,-9677,3865,9481,-2094,4906,-4508,-76,8043,6224,-9183,-5315,6839,-3943,6496,-9602,-7253,2011,6961,2234,-175,-8310,-7039,8327,-7175,5226,-5619,-7157,-4216,5244,-7090,-3668,3244,-3971,-5798,4427,-6222,-2606,7905,1577,3075,-2386,8732,2354,5026,9851,2266,5956,3047,-6067,-849,-2619,54,3024,-4987,9048,-6653,5348,-1380,-7438,-9443,-7982,-7597,-8494,-8631,-2128,7790,8866,8171,-7507,-4095,-6993,-7152,4471,898,-9958,9550,-8850,9632,-6311,5608,-1966,-771,-3965,1590,-7033,-7002,-8265,1529,-744,-3668,-4219,-324,604,-328,-1006,2103,8369,4071,-131,-8068,6961,7336,-6567,-5505,3273,-5151,-2539,2687,-300,1297,8670,2459,-2697,-3780,-7633,-5406,-8848,-8653,-1750,-3317,5992,6880,-4725,9267,-6406,1381,-5300,-3092,-5171,7658,4068,-4333,-959,2691,3354,-2751,-9578,4295,-5513,-2424,8795,-796,692,-3179,3559,-1238,5514,7397,-6956,6378,6750,-188,-5323,8592,6334,2623,5650,7046,-2306,-1710,72,9735,-6427,-4584,1110,-9802,3452,9929,-2073,-9647,-5072,3382,5260,-46,8804,-7467,-2028,-7306,8344,1888,625,8971,-6899,-1425,-5168,9892,-1930,-6973,-1756,-970,4844,2741,9480,-3375,-947,8522,6094,-3840,7503,-5183,8299,4625,9725,-4364,7433,-6466,-9267,6130,-5199,8308,9908,1391,-1304,8656,-3497,1342,8739,-4816,-9649,-9561,2370,-20,2019,-2676,-5083,6536,5546,-7175,9247,6302,7205,4088,7584,-4433,-6789,4900,8404,-3046,-221,-9740,-5545,-2492,4538,263,-8773,-3763,-4805,-2458,6386,951,502,2803,-7303,-7534,-8395,-2496,-1820,-3029,-4170,-1117,-4661,2520,4052,-5990,-9696,3098,866,7297,3359,-1678,5253,-3718,5425,-9554,6883,6722,9920,5555,-510,-3546,1632,4459,5122,2459,4820,-6282,9900,-5889,7046,2031,-229,-7826,-8893,-464,4423,389,3514,-7229,9112,3090,-9853,1201,-494,6186,-4066,-6542,-5834,-7673,-4175,2858,5640,6289,-7023,8480,-4034,7327,4417,9212,-3929,-815,-5802,-9576,5449,-2897,-2645,5922,3786,-5698,-8088,6370,-3049,1134,2848,-686,-4668,1609,-3995,-8712,1473,646,5249,-4222,-5050,4756,-8791,-7341,6158,8367,41,-413,91,-6683,-9162,8844,1752,-3128,9120,-3511,-763,-3796,108,-7063,-9062,3737,-2741,-1461,527,-8710,5739,5112,7668,-8580,-8458,-3362,1891,-6713,-4937,-3640,480,7344,8494,-3749,-5708,-9209,9349,-9540,151,5354,-7057,4012,-3630,7740,-6053,4030,4894,-692,-9989,-1029,428,-9171,-8592,-6283,9372,-4949,-1381,-6833,-7433,491,-8068,-3068,5551,-8319,-3906,8301,753,-7278,6267,-8365,5995,5082,9683,280,4820,-2199,4880,9122,7232,5440,8203,5626,2104,5542,-4822,4125,-3369,137,-698,-3967,-1292,-1674,6313,-182,1699,-4926,-6803,-7478,-4604,418,413,-2257,-2887,895,5040,1751,-8742,-8233,3531,9194,2793,-6301,-155,-9361,3637,-3754,3915,-5835,8488,-3739,4574,-6932,-8518,-2714,-4857,3828,508,-149,2336,-812,-3001,-7625,-1676,8131,5097,6942,-207,1599,210,532,-9054,-3949,7501,-3498,1571,883,-6536,-1881,3275,-5584,-8078,-5768,2086,-4834,7373,5901,7022,7227,4047,-7816,-5332,-9610,-127,-7758,3924,1288,-4775,-2438,-5614,-8861,8591,-5716,5990,3649,2929,-507,-6536,8760,-7129,1720,-863,-6692,-1125,-2522,-2679,-6098,2055,6280,2163,5541,1299,2291,7130,779,-4097,-2530,-410,7926,-1101,-4148,-2664,-5393,9497,-4930,5545,-7729,-8573,-5127,2897,-8693,-2835,6519,9702,-4883,-3231,-6886,1994,7095,6246,7241,3121,7696,-2226,3146,-6327,3211,-6900,-3955,-682,-1575,-3300,-120,-8147,-9208,1983,-711,-3759,1748,2670,3186,-6778,-6247,4673,9953,-2318,-862,-9501,-1799,-1243,1493,-8856,-9656,-593,-6619,-1698,2528,2439,-1551,1439,4453,-1185,-2238,-1279,8883,9325,-2365,7505,3619,-2671,-318,-45,-8824,97,-768,3610,-9788,2103,5025,2530,892,3778,-7503,6221,2838,5265,9408,7859,7946,-178,-8385,-8942,-615,-401,-2667,-7224,-6584,8539,-9573,-767,6915,-1597,2517,3499,7986,5819,5062,3186,6431,3510,-7366,-3193,7926,-7014,-6713,-7577,3238,-1644,3743,3153,-9744,4088,5787,8390,-6280,-6566,-8088,9427,4636,7885,8857,-8540,-220,-9896,8997,9377,8657,4150,-4480,-6426,8349,1269,-1307,8099,9083,-3987,3717,5414,-86,-3700,-744,7108,292,6357,-3116,2008,1929,6169,8125,7117,3839,-7872,2822,6078,-5444,-1956,-605,-3596,-3821,-1416,-4813,-8348,268,-3580,60,8178,4960,8048,-6318,-2073,6152,-1793,-6855,-8998,-8870,-5355,-8259,7324,-7316,9899,4110,1322,2694,3647,-6008,-9820,8582,-2529,8733,-4829,914,4480,-7582,-6419,-3754,-4727,-2503,-1331,5763,-3735,-3503,-1091,4446,-2838,5864,6995,-7043,9027,-1391,7713,6933,8673,-5867,-8018,-2035,-5442,-6713,-8795,1282,-3193,1000,-3515,1674,5076,3635,-9066,-7409,-9110,785,5176,7411,1326,6530,4509,1143,-1563,1412,5327,8223,-8201,7770,3096,7402,-1174,4904,3894,5856,-4726,-6073,-2512,-7991,1896,1394,7894,-7602,4648,-2406,-6466,3898,1119,2346,-7306,6486,7646,70,5008,-9974,541,3873,-3758,5914,6515,2773,2194,-5851,5316,1338,3622,1401,-8841,9480,-7235,-8924,-650,-9290,2429,-7210,-7514,1063,3574,2510,-3150,9441,4649,6432,-4369,-9027,5321,-1933,6037,4385,-4770,-2073,3017,-3237,-2432,-9256,-1651,1966,3561,-9276,3424,3324,-7427,-2459,4676,-8731,1357,-4767,8008,-679,-4947,5139,6109,-2882,3302,3501,-432,-8431,-1095,3237,-2082,-461,-4957,-3462,-5284,-1345,-4963,4352,3451,-192,-2540,7471,574,-2417,-2616,-1919,9605,-1167,-196,-8111,7133,-7417,2496,6686,-1384,-3548,-9,-7565,-6856,2992,-2919,-6581,-5815,-3860,702,3760,-3529,-6215,3821,-8281,3280,-7941,974,-1298,-1361,-101,4830,4473,3929,-6950,-8937,4742,523,-1611,-5776,7506,1685,-2910,-7928,5885,-8225,7127,224,-8228,-8946,5204,-596,-896,8379,-6576,-4114,1034,-8891,-6571,7120,9162,-6166,-4385,-6942,-6805,7914,-8141,3431,-6392,1850,-4244,-3723,7005,6358,4663,1400,-7080,4844,744,8591,-8181,-683,-7292,-8306,-1705,7566,26,-3766,-9065,8590,5011,9714,4983,-2494,-6674,-3394,-250,-4416,-1720,-1740,3255,8203,-6841,-2099,-8134,2105,-4189,-171,115,340,6201,-6584,-5617,-5937,5913,-3549,9134,7212,6017,-6753,-5739,3723,-6827,-731,-1508,-7003,-3334,-2082,-4484,-5579,2572,8973,5683,5489,-4468,-3952,9276,2418,1713,9759,-9726,-2593,0,-2555,923,-638,-2200,-8775,5949,7837,622,-1846,-7230,-7530,-1579,201,2834,-8338,3814,9977,-2002,-5846,4067,-4009,788,2632,9668,6516,6959,-6219,6489,-252,22,8932,-4076,-4031,4574,7636,6974,-4015,-9258,-827,-5524,-3408,3824,-7584,4578,3054,-3275,7464,-7793,661,-5634,4417,-6677,-2678,-8539,-6850,-851,-1814,-2669,-400,4405,-8127,9884,-8445,-863,2248,9780,-7820,-2704,1217,153,-2849,9953,-790,-2605,-3780,6859,-103,-4523,6259,1539,6415,-6346,-8269,1107,-8383,1196,9067,-267,3148,1770,-8197,-9685,741,-4121,7608,4815,3510,3195,6627,3599,-7871,-2646,-4190,-6422,7290,-4552,9484,3801,8048,-2440,1829,7999,-1178,2284,-1306,-6231,-5458,-4167,8653,9495,-4598,1409,3269,4196,3650,-2800,2264,812,5604,-2182,4362,6073,-6447,-5701,-8121,5414,6219,-9,2317,7778,4051,-5798,1503,-6002,7862,-4929,9200,7864,8278,6575,-7607,-6203,3424,173,611,-659,5357,-8217,3698,8571,-1708,-4355,-5400,7552,3770,7600,2594,4470,-6849,-8472,-9561,-1190,552,-390,7822,6080,-3369,-7472,-5410,-846,-4931,6606,7253,-4610,-5283,-5736,-4135,-4123,7754,-8763,-5241,-8445,5162,-3535,8257,-3508,4307,6484,-4690,1454,-8754,1210,2243,-2981,376,1329,5480,-5438,9097,9485,4826,-2414,6308,622,6400,-8611,2925,-5402,2052,7531,-6731,-5190,9922,7897,2821,-4443,3798,-9878,9104,8970,392,8425,3734,8459,-997,-7705,-3915,8129,-511,5993,3305,9808,-1976,-8772,5961,7567,6202,3976,5161,-9118,-9815,4745,3051,-8372,-2700,9803,-4850,5226,-7476,46,-8999,-1990,-3846,-2659,-582,8633,7585,-1992,7238,-1059,-3003,-2048,2714,-1742,-5663,4079,9722,5554,-4684,116,-7148,-5048,8330,5657,-6246,-8806,3912,2491,-3837,3026,1533,-8978,772,-8920,-8744,-5217,2751,15,6011,1001,-4665,7186,101,-7844,5303,-4174,-8741,-3120,-2719,3946,-464,-5809,-2712,-6463,7298,7022,6776,-6174,5237,4805,-4050,9515,-8807,450,7003,-8702,-4832,-6377,-4403,-9948,-6798,9285,-5432,9747,-2700,955,1508,3609,5055,3151,8567,9140,759,6283,2438,-1418,347,695,-6184,-9870,-6333,-366,5499,-7960,-8566,-2241,3681,-9372,-869,-8478,-5463,7512,-6889,-1364,60,-6310,9016,9664,-9078,-1730,-5869,7325,-1789,5959,-9070,3386,1801,-7210,5669,437,-6090,8391,-8021,8790,9101,-1303,-1330,345,607,7515,5145,7501,5395,-7468,-7159,1558,-2323,1500,4732,3054,-1271,4386,-8076,-8650,-4683,-3205,1297,-9877,6134,-3946,5735,5006,3613,-4221,-7309,-1560,2416,-1509,-4612,5956,-4071,-8323,2236,4631,-2801,-1763,3375,5108,4326,-10,9955,972,4624,8322,9338,9095,5160,-7973,-5233,1191,-6718,-1162,-8563,2804,-5457,7427,2137,2865,-4266,-5817,9570,720,-3976,2135,8310,1525,7547,-6020,-3401,4015,6150,-9311,-6191,1952,-8622,8183,-6235,-8543,7129,-656,5498,3262,4514,7415,-4270,4833,-9094,9138,6848,-8417,-9505,2420,8779,-9496,-5552,-8989,5186,1829,3777,-3707,-4640,-489,-77,-9420,713,-7517,-1958,-7842,-9120,-2290,-1025,-9736,867,4929,6756,-1328,-1716,4149,-4120,-9053,-9732,464,1877,9413,432,-2546,3658,-4135,1180,-4426,-7096,-5504,-3127,-1370,4261,-5442,-9299,-5850,-9843,-3514,562,-7163,-9952,-9120,-2752,6641,-2011,-5833,6146,2366,690,5840,8087,-8744,-5919,-4125,2442,-7692,5275,-9602,-7070,1585,-2707,9059,-8565,-9031,-5909,7896,-5153,2594,-3577,-4507,-2562,-8673,4682,-1427,5714,-2442,495,-7270,-6301,4548,7027,4360,-2467,5141,-1690,8589,3354,7546,-2165,-5608,4162,5091,-7924,-5354,-5655,5246,3910,-8363,-7046,7666,-4262,-286,-9899,5151,2408,8505,8226,8873,9679,6707,-4976,9983,-4583,9790,5992,-2429,-9833,-5694,-3889,264,6704,-9515,9477,1955,9866,8268,-1514,5404,-5491,5614,1542,-6474,2777,-1827,3732,7473,6798,-2520,4579,-1143,-949,8570,7945,-985,-7936,5495,-7453,4906,-9062,4042,7977,-1851,-1603,-3149,3494,3717,-967,-7237,2716,694,3627,-979,4658,-8661,-683,8592,5589,-6461,2007,-8384,-1902,7113,3160,1460,1614,608,-9116,7507,-90,-1172,-2219,-4071,9557,2586,-1295,-5826,1092,-4717,-3553,-867,6015,8138,-7688,-7251,7225,-1820,-6419,2980,7371,5077,-3636,1832,-9544,9259,8879,-320,-2059,-7705,7707,6460,-8911,-213,6214,-5276,-4418,-2335,-8001,9113,-7157,4425,6281,-4205,-4409,-2662,-5082,-6433,8795,-4798,-1143,-9011,-6186,-2316,-4502,6172,-5900,-8494,-3880,2384,-3906,1226,9922,-8831,-1221,3122,-4311,-9587,4208,-7194,-3950,-228,-6444,-9447,7080,-8033,-2348,-1701,-3065,-4259,-1981,-8757,-8649,-399,4671,9219,8083,-6498,-3437,9146,9952,7769,2244,-8826,-5829,2680,-9826,737,8209,-5182,-5620,8317,-7520,2106,4340,2236,-1300,3059,-3438,-5096,-2131,-5778,-673,-4845,-6780,-1375,7695,3607,-2586,-6668,4509,9351,644,6534,9411,6878,8642,8405,8120,9560,-3437,-3384,5041,-763,7521,1526,-3030,483,9470,-3711,7995,8362,8650,-246,2270,-604,-3446,-6645,-3603,3498,-4259,7061,5634,4714,3845,6308,-7085,-3243,-3198,8467,4784,3869,-3080,94,-6680,6728,-4533,3460,108,8407,5914,8173,-2413,6964,-8584,-5363,-8413,8051,-5011,2622,-9064,6074,-5361,9334,4101,-9013,4816,9781,-985,4363,8549,6497,-4156,-8097,-4485,5239,-917,-6780,-848,-2217,242,-2511,-1095,4995,-4119,6983,-9550,-9965,7415,-7954,387,4214,8056,-540,7611,-8186,-1408,2486,-7195,8484,3066,-5705,5226,4527,-5077,-3574,3994,-5354,-8517,-7700,8121,-2880,606,-2690,9809,5220,3897,5444,-25,-2306,2586,-8055,-5219,537,-488,-4826,6462,637,8607,-1698,8100,1278,-1417,7429,5799,-3672,2824,2069,4337,-2131,6383,751,8,-2298,-8601,6644,7343,-3574,-3717,4268,8322,-1913,-805,8802,689,-8832,6890,1681,-3216,-556,-4593,-1310,-6325,4794,-6205,-9397,7059,3662,2641,-808,-9653,-3922,-9106,-4465,5257,6123,-2117,2542,-4094,-6972,4994,2971,419,6007,466,-1159,-1088,-8928,6382,4433,-3305,-1792,5656,-9313,-2744,-8971,-419,1833,6543,-2094,4339,-7891,6755,-6467,8129,-9189,4272,-4334,-2439,-6149,8713,879,7873,3727,2968,-9672,-8325,-4043,-9353,-5203,-618,4881,-9591,-5209,-1239,1727,-3815,7488,1642,-5313,-446,4208,-6254,-5098,-6665,1657,-8688,2967,5851,6411,9432,9875,5896,6577,9779,-1096,3270,-7272,-3972,-8312,6551,-2212,-8731,-5317,5309,-2422,-8828,6223,-3116,-2993,1367,-3547,-609,-8646,673,2261,-7186,-9664,9651,6165,-1080,8384,-8015,1040,-2796,6080,-6707,1585,-3832,-6363,6938,3978,-9890,7327,-6697,296,-58,-9811,-4307,7574,-244,-3038,-1374,-4538,-4582,6307,-2033,6069,-4117,-8891,1992,-200,8931,-9549,-6260,-5743,-6564,7544,7780,-8252,716,2381,1509,-7203,2801,3058,-6360,1305,-6040,-1890,-5447,3183,8919,-7883,-7087,8500,-9890,-4922,-7267,-6311,9900,2509,1763,-5123,7348,7403,6609,-7896,-2641,1337,7995,-2204,1262,-2979,-8303,4444,2019,-5997,-3760,-5764,2718,-7010,-4761,2077,7513,437,2366,-8308,9748,6947,-3442,-1822,7834,2111,8990,-2991,6177,4548,3581,-6779,479,-1367,-3610,8308,617,-2413,-1176,-5333,-8278,6119,-3922,6087,-1438,-4798,-667,5197,3692,7163,-1981,7506,-7155,9680,-1568,1426,915,9306,4978,-9879,-2072,-493,-1418,1819,-8837,6860,8659,-7321,-9978,760,-3851,3012,-104,-7405,-8504,3879,1171,-8265,-2431,6534,-5447,-7649,-1895,4722,2963,8565,-1177,-1636,2201,8481,-956,1973,7070,-5659,9130,-2546,6697,1201,1398,3932,-3375,-7036,-1272,-3105,4011,3516,-1864,5269,7770,463,-4772,-5474,2477,1549,-3864,391,-5240,2704,8865,-4683,-8567,617,-996,5115,4889,3827,6667,-8741,-1374,-1922,-2002,-390,440,-2470,-5384,189,2517,3996,-6422,-6715,6407,-8113,5034,6315,5366,2690,-3710,-7089,-2216,4083,5252,-6627,3451,-4942,5879,4034,9214,7653,-4973,-9952,5295,-5288,8415,9790,-7412,9472,9902,-9169,8823,3226,-8089,1715,2042,4078,-1303,8856,-7842,3343,7089,1909,2689,-300,5457,4801,4046,-4287,-2484,942,7078,-1052,-6251,6200,4746,-7011,-9219,-3181,-3382,8110,1235,-4099,-1777,-4982,-7731,9625,-4528,8316,9723,-7561,8820,15,-8497,669,3167,761,9989,-2272,-1700,-2290,3862,-1974,4171,-9107,-5865,-7814,-8232,-3033,-6270,-7557,8085,-1561,4158,-7831,-5910,4947,-4189,6681,-8379,-8513,-307,8595,7840,-1709,6480,-1932,4215,5898,-6001,-2366,-3846,6390,3072,-5180,-1503,5321,-1781,5924,-2035,-1964,-3009,-2773,1265,9704,-4364,-7727,-1348,-9253,-3185,-5157,-5811,-4583,6885,9539,-7003,6104,9899,-4367,-7061,8170,-7551,9262,8246,1132,-1064,1759,-5662,4416,-2586,6690,2437,6170,-2874,-5077,8603,5869,-2543,2165,9143,-3342,698,2152,-4878,-7309,203,-4310,7361,-1784,-9518,-3974,3397,8007,4772,-4894,-7672,1193,6800,563,-9247,-9956,790,8558,-890,4101,-7403,-482,-4625,4955,-5149,-9541,-4279,6335,8425,6902,-8002,-5475,315,-4322,5708,-2785,9963,-2873,2017,8636,985,-2489,5722,9318,-2451,3592,8583,-3186,2397,-6204,-6220,3084,-5338,7700,-362,5007,-3780,-4646,-9622,7526,-1581,-9332,-7594,-2427,-5878,1455,-5955,6695,-7066,-8283,1234,175,2569,2215,-6007,4539,4214,-4520,-8801,-1911,-4809,1782,7650,4077,4581,-7558,-9388,-1556,8392,-5937,-9894,9113,3240,1807,6270,-8628,5767,4232,-6904,2392,9037,8158,-3716,8364,7307,-3880,538,-4781,2049,3167,3609,954,-4740,-6776,-3541,4247,4406,-5855,-1286,-3987,-1248,-4098,8522,2439,1629,8736,4314,5320,4349,9698,-3076,6144,-1487,7949,-1787,3635,-7531,-5426,3900,-5974,2861,7997,-18,-4736,-4075,-8927,889,7676,3365,3284,1195,-4118,4100,5010,1368,6246,9834,9961,-7915,1141,-8893,-9255,-1031,682,-7535,-492,475,3096,-2074,7483,3567,1766,-2077,4990,-221,-9882,3616,-3405,-3472,-6113,-8179,-124,6588,8428,-2408,9375,6791,8736,-6466,5467,6001,-4690,-546,4153,550,812,-6493,-4392,5241,-3699,294,3877,5840,-7119,6668,6189,5155,9873,-2917,-497,-3201,3770,-9741,-2528,5101,4677,-2436,-9307,8598,2176,-8355,4266,9162,9128,-8530,-9829,-4669,-204,-446,1990,-4898,3254,-6098,-9670,3808,4333,8948,7435,2845,2446,-8273,-7247,3388,-9170,-8913,-3235,2901,6379,-2941,1679,6030,-6705,6666,5044,-1051,-2497,-4106,3320,-1660,6946,-9718,-1841,5971,-5581,1558,1959,9234,5212,7718,-6384,-7144,-5883,-16,444,3731,-2634,8757,3357,8263,-3426,6440,3342,-7215,-4404,-1999,-7057,-2268,-7469,-5507,-4272,4165,-465,-2084,55,-5337,-2624,-3876,-7257,-8999,-4304,7349,-2942,1293,6590,-1719,6767,-5821,6390,9570,-7550,5338,7418,-2983,2700,8935,2211,-9489,-2647,5643,5007,243,2941,4762,1806,1431,-2362,-9487,-7375,-518,-8394,6821,6586,-2094,6017,3124,-8565,-6599,-4585,7673,-662,9063,-4951,6997,950,4391,-7472,8469,-8929,6996,-1748,-526,-4393,-2871,408,-1375,8326,-3575,-1487,-746,-2307,7010,9841,4487,-1348,-285,-1462,6254,3698,-4986,4809,-2440,2152,2309,-7658,-918,6402,1227,-1123,-4822,7420,-8219,-4506,-916,-1071,8160,6927,-5999,-7271,6211,537,241,9461,-9491,6878,-2187,7533,-8443,-3179,6047,-6604,-1797,-1877,-1315,4396,5513,2156,-516,6835,-1119,2890,-6556,-9585,-8501,8239,-1967,-8489,4527,9586,8821,-9244,-4569,-9284,-2526,4890,-557,5885,2445,-8528,1421,1073,-1986,6505,1771,-9155,1403,2644,5772,-9487,-8140,285,4715,-6243,-164,-8671,9595,-3348,7309,8687,-4686,3372,9015,-4434,8211,8545,-770,981,8386,-2022,5390,-3985,9454,5004,2910,5413,1379,4027,1899,6486,-5006,7160,-6069,7222,-1669,-169,-1066,3146,8334,5889,7736,-5116,6944,5029,2238,6886,-9467,-3738,-4510,-871,-2188,-1383,-9216,6191,6396,235,177,3930,-1276,-9327,7972,3166,-6089,244,-517,-4627,5813,7313,5841,-7421,5577,-1966,-845,7789,2731,2704,-9138,-1977,1748,-482,3984,2212,-310,-7291,-5331,-5907,-9612,-2301,9517,-4828,-4124,-5953,-5803,-9642,-236,-2044,2610,-9748,8299,-1143,2259,4989,3093,9598,489,-5441,-9079,-4275,7616,-1281,-1023,6199,4610,-403,2473,-3028,3910,8362,8999,8137,8727,-5254,9177,2504,-1553,-4623,-7013,-5861,469,8295,1793,1699,-1348,-233,2030,-4211,6687,7299,1191,-4090,8952,5607,-1096,-4505,-6644,-7688,9117,-331,-2173,-8613,6556,-2627,7985,5449,-1621,3792,-7969,3424,-7238,-5100,8458,796,-2918,54,-1595,-1523,3346,-1662,-5002,-3012,-1120,-3426,3037,4390,8193,-905,-8129,5529,483,3933,1850,-3903,-7463,-8966,-184,435,9254,5496,8999,-1567,1521,3566,-4642,-8082,-4729,8960,-1848,-3240,7219,-6661,-4778,-5064,7460,-5528,3779,5786,-178,-1074,-8161,-2734,1846,-3494,-6748,-3194,-7782,2277,1081,-2257,723,-1932,-9514,-1073,2342,-7028,8611,-1060,-1365,5674,-2133,-9791,8241,-1352,669,7075,-8919,1872,5896,-170,287,3295,682,8464,7642,-3160,9019,-6355,1936,1211,2633,-625,-5418,6167,4833,-6473,631,-8672,8920,-874,2799,6725,6220,-6875,3005,-7677,-4007,9910,-2416,6269,5936,7082,-3118,9958,-9008,-4432,9455,-4826,3879,-2788,-6158,-6563,7866,-9849,-8630,-2092,203,-6568,3371,9403,7052,8552,9563,-2329,-4914,5462,-9064,-832,8454,-1559,-2474,3413,7456,1532,-6333,1723,6571,1871,-6571,7423,5145,-5540,5016,-5261,8983,-9775,-1896,-295,177,1306,2292,9459,5700,129,8864,-1458,5131,6571,-2115,7157,8769,-8761,-5244,341,-9804,-3997,438,7063,9104,7348,70,-4733,-156,-5783,-1722,-7348,-164,-6535,1870,8600,9119,7400,2202,4693,-5979,9158,-3339,2501,-6805,-4534,9233,5023,4250,3864,305,-5348,1935,2404,250,6954,2534,-6280,5627,-9705,182,-603,6949,564,-9412,7612,6877,8833,7300,7609,4268,-7435,-9146,-3751,-4055,-8903,-9325,-4482,4236,2469,-3355,-7801,-2395,4685,3569,1493,5086,3339,6953,6729,-3712,352,-5938,5765,3479,2007,-5066,646,-2554,8349,1366,-1745,1944,6710,4270,5317,4915,-6535,-7968,-9755,2926,-525,298,-3519,5046,3032,-3284,6846,7503,-5995,-6403,-7424,4015,7363,3491,2217,-3429,-7488,-5956,-7612,-9528,-4357,-841,8401,-7640,-6669,-6997,2432,-7142,5014,-5859,-8296,9235,-6190,-3540,796,1219,-3242,7541,5689,1508,8868,9016,-8268,-7258,-6352,5414,-8981,8056,1364,-4040,2465,-6744,-2285,-2810,886,-3789,-3872,1537,429,4206,3940,-6856,2577,-7099,-3324,4527,-4023,-3097,8582,3217,5101,3429,-36,4690,-4677,-9376,-389,6751,-7977,-5421,7018,3734,6520,-7989,5329,3358,-8952,-8960,-7241,3606,6186,9581,1929,-8943,6666,5462,6353,-9088,5235,26,5863,5397,-8232,-7197,-8168,-2735,-9678,2659,-2845,7005,5030,-7838,-7666,-3510,-8007,6972,-6562,-9964,-5636,-5920,4755,8044,3550,-1655,-3585,7769,-7186,3284,7411,4267,-6899,1278,4717,-5325,6633,9717,-5171,-4837,-7329,5031,-879,736,-3145,3212,-9751,5271,-5052,-5285,-62,-1171,-2857,6355,-8956,1513,-9533,7661,6079,-1035,6702,-4796,4281,-6940,-2815,-6456,7676,6356,-6847,7407,-6961,-3754,-1161,3983,-3488,4595,6175,-2403,-6822,-4413,6660,1587,-1923,6651,-9795,9099,6854,-924,-7164,152,-1896,-5241,1734,-9860,-8720,3351,8011,-5131,-2442,-1717,-3776,5252,-1863,5531,7271,6450,2060,6320,3148,-4462,-49,8273,2701,1225,-3868,8895,-3458,-3526,3584,-8008,5942,-5327,6195,7104,1010,7474,-303,-2760,-9232,5630,1911,4469,6200,-4286,2547,5349,-643,8488,2562,907,2792,-8157,5436,-496,-8746,-7713,5140,5147,-6363,7694,2363,3842,948,-1109,-3817,-9611,-6643,-890,8362,-5052,-269,9455,-2631,-5597,6439,-6258,-132,-7452,9504,8474,5811,-1180,6476,112,-9534,6756,6291,5970,-3917,6337,-9100,-7943,4884,-8341,5471,-3346,-7675,-9425,-2020,-2192,-5690,3091,-2431,-183,-6269,4476,3337,8119,4932,-3895,448,-9050,-3876,7422,2172,7098,9626,5730,5068,1635,-4271,-1452,1068,5280,2203,9534,-8942,3962,-7343,-5931,3826,-2241,1617,-1761,3734,-6839,7239,6804,-7245,1664,3497,-1691,-3716,-6497,-8085,906,8330,-9005,5902,-5191,-5999,-1713,5811,981,-8276,738,-8079,6894,8209,-4579,8077,7522,4177,2374,1146,4459,-2173,-4038,6508,-8421,-4064,-1370,5048,1943,1249,2503,-5677,-8437,9340,7894,3999,-1312,289,-7056,839,3894,-2478,-8456,6732,7743,1140,-7914,7511,5939,-3331,2667,6814,5820,-6096,-3470,1529,6745,-6417,-5310,-5583,5973,-7219,896,9010,-557,743,2658,1763,-4477,-7613,-3807,-62,4166,9963,-5966,8168,5154,-3670,-1413,-874,-2965,-7416,-2511,5737,2838,-5667,1086,5160,-7105,7204,6984,2405,5221,9565,-7648,-9609,-1467,2825,2987,8545,-2811,-1045,9262,8039,-7172,-1661,-8363,9151,-216,8433,8761,900,-6663,-1641,3992,-9589,2320,4235,-9419,-314,6103,-1064,-3136,8142,2295,-1140,-751,-1772,697,-3209,-3142,5800,-5966,-9146,-1357,2139,-5325,-631,7610,9048,1190,-8129,-7363,2795,-8257,-4952,2803,-9054,-9130,7437,-1599,1615,5946,2432,-4307,-3955,4970,-2396,8040,7675,-587,8840,8876,-1317,9482,7818,-9335,-6780,1286,-2196,9038,5703,-9535,-1636,6640,5956,-6761,-4257,9942,6266,9911,8006,567,8080,1074,9916,-605,6689,8002,-2848,9763,-5161,-6562,7561,-8944,-6668,-2527,1325,-7185,-6060,5795,6283,4100,-861,5140,9164,9469,110,-4884,-5313,-2669,2279,-5006,2262,-6305,-4206,-1285,3384,333,4879,-1023,-1613,62,1333,4147,4418,-1864,-7225,1647,-8275,-3282,-4167,8694,1758,7172,4102,-4773,4544,1345,-1213,-325,-8573,7894,548,3585,83,-1512,-3206,3527,8053,-9879,-8847,3214,4237,6184,3175,-530,3824,8479,3640,2448,-531,-2927,2561,-7629,6056,-1597,-1982,9033,6995,4285,9558,-4441,4687,-7274,461,-4295,8796,-3130,8508,3582,-4417,3588,-3993,-9921,-8988,-9384,-6822,9226,-8778,-1543,-9784,6038,-3832,-7148,-8692,-6486,9778,2068,-5325,-1629,1618,-105,4957,8862,-3736,8790,2324,6910,9791,-2385,-9432,-7156,-2118,9068,-8848,7187,2088,8762,4793,-5804,-2804,-3052,-7759,2816,-1425,6501,-7565,8984,-5679,5025,8296,3509,-2332,-1289,9180,-6344,6035,-7401,5388,7396,959,-8105,229,8538,-452,2505,-6715,-6532,7409,-7491,7681,9011,1282,4989,-6375,-7163,4834,9466,9781,-7997,6830,-8142,-8513,-7364,9695,1266,-8592,1838,-5765,2483,9937,4358,-5672,2992,-1482,9495,-4167,-1877,6551,-1679,-8955,2795,1812,532,8778,8054,-727,-4009,-4924,-3305,5884,6226,-4007,-1338,-2141,-7408,-682,-233,4420,-4386,3232,1103,-9778,5776,4424,4136,-1926,986,6772,-5550,2295,2124,4502,-9461,583,4158,-9392,-5343,4560,118,7613,-8642,5748,-3051,9616,598,8400,2283,-9250,5279,-5013,3528,-5975,1045,-3105,4057,-7231,3554,-9508,6924,-2850,5746,9234,-4619,-8568,-4223,218,-2668,8582,922,8640,-4700,2594,-6971,-4809,-3996,5241,3643,6127,5708,3368,-2936,3792,7170,-3863,-4165,-4698,-6289,-2443,552,6228,-735,7609,675,-3264,-605,6900,4311,8903,-898,4233,-2459,8391,4670,4204,-5194,2945,3252,-3320,-7633,-5853,9643,5164,-9980,-8631,-9350,7679,5334,9484,-320,-3853,-9272,-3427,9045,2361,-7110,440,-4205,-6086,2708,4368,-6486,-4100,-9424,-5527,-8395,-6925,-1964,1943,4281,6859,209,-8349,3255,-6051,8097,6233,-2266,5629,-9942,8560,-4010,4183,5806,-1770,5112,5068,-5567,-3002,-4740,6070,1090,2945,9039,1654,1742,-6135,-866,8006,4810,6919,4063,6795,-1710,8256,-1460,5216,4683,329,-7867,-9598,-4283,-5363,-3876,-4683,1810,2437,1490,1280,-6721,173,-5480,-1558,2693,9843,-1723,3358,5781,7449,-1738,8101,-7565,-742,-9172,3848,-86,6664,-7004,-7418,7437,6229,1940,-3622,-1222,1381,1739,6750,9055,-3973,7288,-3465,-1789,-4671,1729,630,2801,9101,-1031,2940,-8376,-4911,6442,7648,-2988,-3007,-2049,9897,167,1619,-8734,-5702,-5582,-2851,4507,-4693,-2616,-5785,986,-475,4354,6044,4798,-4344,-3611,-9630,-6583,-1189,640,2977,969,-7821,-7841,655,-6596,-7013,7271,-2083,-6368,-3591,-1999,-2474,-7117,-9313,7649,-3855,2396,9333,2623,2211,8694,2503,463,-7306,7359,1532,-6251,386,-1701,-5706,7864,-1500,-6146,-6722,-9906,2015,4277,-5534,-1344,-9106,-5463,-5315,-6121,9014,1159,-9752,-4475,-4351,3710,-6556,-6581,-8640,-2269,-8144,8651,2645,4323,8696,5051,4884,678,9666,9478,-3032,4587,6684,9511,139,1780,-4803,-2150,4094,-5274,-6001,4164,-6968,-6254,5987,-1194,-7416,-117,-981,-6857,-4093,4021,492,-9928,-171,-1275,6496,-1643,-390,6136,6751,-7710,9517,-1397,-148,-8248,-6408,-2138,8538,-7550,-6163,-7134,-5022,-7305,-3672,3619,6537,-270,6931,-1815,-9648,-4101,7623,4069,-9968,740,4253,-9906,3918,4112,-2397,-3367,220,-2125,-9073,-2233,-8863,-2867,-2149,-8558,-9934,4456,-2107,-4237,-6976,7842,5070,-3538,3894,7546,-1100,-30,7811,-2720,9364,2964,-3240,6379,1395,1439,-8435,1322,-4847,-4805,7199,-9603,3870,-3291,1954,-9975,-893,-677,-6390,-873,4058,4730,8593,-3958,-4607,7757,1488,-9137,-5748,-4070,995,817,-1788,5085,1566,-7388,-1941,-4915,-7354,-3554,-7482,-3842,1245,-416,-7595,6524,5958,-4351,1389,4523,2054,337,-3306,-6797,5073,-440,-2849,-7329,-3409,-1441,6350,2105,959,9940,9308,9356,-2470,-1699,-7430,-6204,-5772,8016,-7169,8086,3758,-9179,8902,4453,-8747,-4773,-1127,4977,2268,9597,7899,-1438,-8273,-1371,8305,-5598,-3545,5291,2614,2649,-4294,9977,-54,-5258,-8505,9268,7225,716,9937,9665,3728,5789,-5731,-4617,-5975,3876,3001,-89,3136,5963,-264,6111,-8248,-8648,2359,2101,564,-745,-867,-2309,-9136,5694,-7905,-1366,7150,-136,-6621,5679,-5985,-5290,5448,2768,-4682,-3881,-6020,-7727,1805,-8700,-8726,1695,-2096,-1277,4214,-9212,-1722,1083,-1074,9350,4720,7393,9419,7970,6431,2673,1080,-6581,-6466,6,3171,-2158,3736,-5937,809,4921,-654,8313,8160,-7167,9544,-3524,7522,9401,-2307,4907,3060,2031,-4959,-6201,4703,-8444,7671,3140,-4975,-8360,3276,7608,-1308,292,5423,1829,-5869,1397,7225,6184,-6571,-7619,976,-8651,-7831,-5338,5371,8458,-1584,9435,9726,-7615,5576,-7107,-752,1571,7855,2379,-1611,-4625,-3212,7579,-2375,-3318,-9192,-6598,2421,-423,-9162,7612,7787,-6424,9732,9518,-6405,-3668,1411,-2371,6667,1968,-2606,-1630,4811,-6252,3388,-5163,6935,6028,-5863,-2611,-6054,-7391,-790,-8640,4170,-7330,-2035,-7806,2397,8680,9866,966,5661,-8322,8663,-4484,3290,-4503,8218,6175,-5774,8907,-879,1558,5666,4663,-5980,7300,-9278,4581,2633,-7829,-7876,5834,-8070,4714,-5464,5326,8068,5888,-2058,-9741,8855,-7088,1287,5473,1472,1247,-1319,4935,-9130,5912,-1464,915,-4619,-8689,-9288,-3184,6437,8275,6423,-393,-7624,-1580,-2006,-1693,2534,6185,1238,-4047,8814,-898,-9466,9441,-6128,7572,-5434,3970,6808,2204,-6761,5074,693,-6512,3114,-3841,-1952,2568,9141,7915,-7158,6137,-3995,-621,9483,1090,-3991,2972,7908,796,-9913,1897,8090,-5099,4918,-571,-461,-6030,-5942,-5429,1465,260,3996,5066,9495,7135,-8290,8988,6087,2596,-2136,5176,1041,-4666,3626,-4656,5081,-7357,-5115,5341,1018,6592,-4821,2160,6636,-7214,374,-4109,1419,3157,-6928,6778,-6758,-553,4706,-2171,-3562,-2260,7636,-5921,2882,8533,-5054,7336,-4828,8572,9907,-8435,-3712,6654,-3699,-1873,-80,5378,9963,1348,7773,-3977,3077,8585,-5504,8177,-2164,-9720,-890,-2650,-4396,8374,-2466,9776,8164,2197,6026,-9243,6516,397,7659,-2871,-6222,9581,-9407,-1730,1695,-8793,-5226,-1669,5261,8359,-4386,1340,-4448,4057,2640,2973,1173,-7303,8348,9345,-1848,-2475,2626,6151,-7472,5157,-7305,-6067,-350,-2628,5632,7666,-9095,2988,341,-2428,9927,1910,-7110,-8172,191,886,2196,3700,-640,8104,3627,-9636,1903,9539,258,-2868,4992,-7374,-8517,7961,-9553,7873,8348,-2990,1844,236,746,2830,5473,-1988,4867,-445,8006,-3544,-4342,-1011,5443,-4465,-8701,-8377,-4414,-6942,5770,6037,9923,-4769,8056,-7027,5539,7139,8513,6348,-9072,-3830,-8506,-3586,-212,-3447,193,3941,5961,4238,2432,7443,6268,2754,7339,-9646,-8303,-8256,2539,-2182,-7199,-419,3148,813,3369,-3,-3867,8663,-5751,1618,5352,1629,8769,6050,-5290,6217,-7255,6578,7872,-7420,8080,-307,1895,1167,2719,2619,2085,6356,-5026,-3211,8056,-5229,2968,6231,1974,-4294,-1318,3678,7207,5929,-9552,-8544,-7758,4882,5203,4991,-2612,2269,4708,297,3833,-5438,5260,7264,4234,1211,9532,6178,3868,3368,6558,-3451,9204,8900,-6847,2775,4873,5995,-5106,6643,-4067,4072,5137,-9913,-6986,-2755,-5283,7064,8092,-9147,7046,-4786,283,-6231,-4525,-8529,-2754,8731,-3038,3290,-982,-3440,-950,1771,-1658,9911,-6859,5349,3420,-6485,-475,4461,6368,-7050,8515,7598,-4601,1081,-1035,3609,2893,-9280,7855,-435,-2437,-6304,-8317,712,-2136,6957,-8869,-2005,2072,6800,-9183,-9655,2215,-5638,-8201,-9326,-260,8910,-6080,1331,4068,8003,4725,-9449,-3621,8206,-5223,-5920,-7011,-428,-567,-9480,-4952,-7376,-1271,-9257,1919,-2207,6990,-6272,5006,4814,134,-1617,-9337,9337,-4332,8283,-9876,-2324,-6412,-4286,7301,7836,-5286,5788,1044,2022,-7176,5955,-3181,5485,-874,3661,-2139,3000,-3103,1253,-9192,9066,-9828,4452,1490,-2130,-1507,3397,-5468,1462,-8905,2591,3390,4924,-1042,-1916,2026,4357,6727,-735,3615,7762,5152,-1493,-6960,4544,9032,911,-7091,-4452,-4176,-1640,1388,6228,-7002,1811,-9122,261,-8583,3050,9483,8728,8127,3729,-8605,-3332,2076,4987,5986,3491,-7719,6416,8632,2255,-1724,5589,-2664,-1009,-7511,-1953,2217,324,4014,-6553,1213,526,4416,-9172,-3894,6731,491,9230,194,3292,-4464,-4287,-2312,9159,-4652,2579,6537,-5399,-1798,6954,9252,1241,-2251,-3560,9352,974,2283,6902,-9565,2338,5804,9960,-5576,8539,6405,6420,-6611,1487,-9917,-2046,3327,-9719,-1137,6520,-9511,5309,1825,-7906,9714,-6316,587,-7777,1451,-6789,8219,-4040,4802,637,-458,5114,840,4088,900,4331,1540,-3832,2190,9356,-4319,5596,-8225,-6313,-4879,-1846,-269,-9775,8096,7794,-9655,-2839,-8721,3028,9983,9582,9696,4372,-6033,5292,539,3506,7212,5454,1642,-6186,-7174,9060,7798,8385,-3093,7298,-912,5214,1997,1569,-116,6861,-7548,-346,-5312,-4530,5352,-7856,3730,-4007,-1128,-7878,7002,-8857,-7816,-9480,6718,9093,329,8163,9208,6300,-451,-9090,7754,5560,7732,1493,5880,-3898,7639,1375,133,5110,3846,3692,670,-5268,-3897,8076,-4026,-7408,-2407,9424,-8392,-6145,-2466,-7497,-4229,-4385,-9432,2842,1998,-9425,8260,-3474,1885,6027,-4079,-845,-8427,-2694,8055,2604,1310,-6219,2869,-1417,9074,-7355,9002,3345,-7060,-9205,-2136,-6056,481,-532,-7569,-3736,-7111,-8331,1474,5105,-2441,8428,-7874,-6397,1276,-1242,-2412,2546,6174,-9424,-8375,-7209,8681,-2615,-4631,1434,1892,-2133,-2625,6897,6300,4350,-7778,887,-9315,6298,-2946,5530,-395,322,1603,2347,-4096,-238,-1775,-3835,-3446,7796,-5435,8629,5467,3856,-2012,-3376,-2802,-8791,1164,7680,-6310,3882,605,-2708,-5307,584,9856,7037,-4215,8589,7060,6845,8224,-1554,728,2985,-885,-9255,6964,-8772,-5415,7028,-5196,5272,2817,-2114,7887,-8309,6804,4426,-6310,-9923,-4714,-9819,1084,-5727,4424,4452,6034,-5912,2504,1648,6157,3647,-6232,-3300,-4250,-3823,-5602,9129,-3079,7267,3079,-9240,493,1616,-4436,6962,2203,4529,-4272,2432,108,5449,-4831,768,7180,5692,6810,-3569,5294,618,5954,-2935,6037,-8806,-1993,-1562,-8675,-1102,-1209,3812,9212,199,-7889,5519,2139,5084,-3638,6338,-2668,-4299,4919,-2446,6269,313,4568,-8067,9354,-6867,3250,4668,-6559,844,3107,9216,10,-5105,1412,5523,7566,-1775,-2461,-6975,5058,-8031,-9079,325,-1087,5070,2908,7689,2323,-7142,6301,-2227,-4114,4994,-5707,3344,-3859,-6934,-8528,-995,-1436,2202,5712,-5040,1763,5042,-3104,-7851,8249,7559,5311,-6014,-8795,4878,-3577,6836,-8871,-7254,4119,4266,-9598,-6227,3961,-6524,-6390,5590,-6811,3822,7221,-7980,-5509,-6153,3155,-7751,5014,4825,8642,5959,-1414,6547,6007,7012,-2719,5666,736,7721,7852,1510,3804,6126,-5123,1928,-4016,-5973,5276,947,6921,5206,1414,8937,693,7393,1511,4281,322,5245,6213,-3508,-944,4323,1291,4952,4771,-9567,6509,2362,-8689,7687,4268,7278,3605,2149,9294,1166,-2503,4411,1078,-8047,9800,-8947,9989,567,1869,-4575,3413,-5517,3811,-6268,-3135,-7573,-1314,-707,-5375,5169,-6659,-7484,8323,3462,4025,-9217,-6565,-6156,8759,5078,8354,-9639,2535,1584,-7189,9543,-4712,-418,4342,3122,4305,-7518,8161,-262,-7894,-9937,1890,-8827,-6986,-5185,-2872,-6638,5869,-9543,-5535,1000,2792,-7029,230,-9487,-4200,3250,4026,3442,6725,4621,-6484,2067,-895,9011,-1121,5537,3970,-6185,402,-5223,9985,-4683,-8510,8321,-6092,-7062,5965,-5593,-4952,-5223,7560,-3518,974,6488,-5360,-5514,8938,9991,-8379,-5247,-9406,-5258,-2395,-2358,-1781,-293,-3129,7477,7743,-6024,6122,6843,9232,-4232,1951,2481,12,-8803,2334,-9188,9111,-3214,8300,-4806,-5746,4651,7134,141,-637,-2477,-8147,5155,-6788,540,-8991,-9438,-7080,6480,-4305,-9850,3635,-1224,-5259,1482,-7802,-7522,7324,-1737,-6516,-7240,3211,1276,-1483,7573,-865,6098,6699,-2424,-4005,-1403,2979,8631,5765,5719,-4849,4627,8516,3586,1610,1559,-2046,-7435,-5467,9135,-4262,1722,8786,4543,3032,5241,-2163,3928,7758,677,-8288,-8485,8912,8092,-3820,7592,-5735,-9194,1758,9440,5600,9087,-7796,-3979,1225,8594,3122,3405,-331,4477,35,-592,459,-9123,-8603,7294,3993,641,719,-3942,3281,923,9245,-1200,1692,110,5772,6215,-4494,8251,-1152,3842,1863,2767,-1932,5042,193,-7995,8069,7869,8573,1815,-6473,6201,3364,7502,5233,-4864,-9566,7803,8042,7874,2993,-5909,5593,6357,-4626,-8033,7701,-4179,-8943,-3322,-583,1693,8031,-2835,1658,8846,2362,5893,781,-6609,6813,2432,5512,2120,9141,9237,-239,2405,-5363,2242,3569,-8126,8050,6612,-3998,1710,-6188,-1534,860,-7843,-7504,9812,923,147,7425,9458,9762,8589,2884,-3024,-2281,1688,-5935,6035,2072,-5051,4560,-680,9635,9049,5357,8778,-8409,2834,-3502,5937,-7616,3399,-7919,1227,8270,9881,-4386,7874,384,-6791,-5097,688,2913,3659,-246,3545,-7320,4613,-9563,1275,-272,-3844,-5039,2648,-3978,2736,6440,-2475,-8370,8394,-3149,9082,-1663,-4772,-7814,8376,-6769,9774,1669,8768,6109,5896,-7264,-736,-8417,8710,810,9355,5527,-727,8552,5409,3201,3807,8510,-2615,-9228,3943,2767,-2947,1376,-7299,-982,-5679,5229,-2398,287,1869,-5150,2304,5146,5767,7148,9276,-5340,1916,-3253,-3564,2273,832,2569,4203,9605,6941,-8375,-2224,9173,3559,-1639,-8125,-5027,9431,-3906,9946,-2231,7284,-8773,6343,910,-10,-4818,9156,-3854,6939,4666,7668,4023,3640,-7609,-4337,-9753,-5636,-2759,3738,1238,3898,-5025,6130,3576,-7894,-7217,7648,4688,7554,3676,-3190,-79,3974,-2066,-566,-6142,-9121,-8415,4203,9210,-6947,8667,-2085,8938,5056,-5047,-4628,2569,389,3716,8851,7842,-1986,-4929,-1306,-4995,3205,-1705,6712,-1162,6231,5822,231,-6181,-995,7283,-7792,-6891,-2551,-7821,-3893,-8591,310,6205,3549,-5156,2192,-1202,-3361,3117,3611,-8158,6526,776,4022,-3304,-7257,-7562,2996,7392,-33,-2310,-3508,-3303,7798,-3226,-1464,6854,-3214,-4767,7878,-629,5541,-226,-5452,7453,-6297,-839,-7189,382,8226,-2879,5924,-94,-3865,9049,1449,-2232,-3095,3241,3250,3129,-3395,-8489,7238,-814,9301,-1106,6236,-3427,-151,-6815,318,568,-3988,797,4460,555,-5538,4443,4841,4190,-2670,1485,-7726,-3083,-963,-6901,6065,-8465,7699,-6523,9489,6197,2691,4962,-1903,-6471,9337,-7164,-7828,-1847,-1303,-4188,8892,3677,5197,-3230,6969,3137,1486,-3789,-2417,-3935,4480,-3220,6370,-5121,-5459,-3781,7939,-6052,-4218,2237,-1552,7102,-4652,5671,-3801,9516,-5129,5364,9971,-3284,-9858,4532,-1178,-1454,6679,-7586,-6769,-3299,-8980,7337,-1902,-4908,-1805,-5065,-9300,-8416,-820,-2023,-1479,8870,-1586,-1996,9521,7263,467,4926,4725,-398,-187,-2858,9617,2479,-5519,-7702,6349,-5302,-9017,1483,-1633,-2295,-9649,-6537,-353,-2942,8928,-5507,6218,-3728,-6589,6400,-3293,-2214,-1841,-104,8567,1631,3288,1014,-3394,3194,-5511,-2881,-5316,-7790,3996,2847,582,-7890,1539,-2777,521,1259,-8089,-7561,-3539,-9583,-4997,-7602,9514,9420,-7343,4473,-4083,-1131,327,-8480,-9648,4593,8161,-5089,9639,8564,7884,-9736,6116,6446,6883,-9447,9495,-5674,6731,-6401,9276,3999,-8781,-7635,-4118,-704,7457,-2793,-6017,-8389,-2515,8000,-2152,9265,1861,-9433,-1702,-1434,-6256,-9916,5842,-4990,-827,8790,-3832,9399,5193,-1880,7889,9220,1558,-1752,-873,-5314,-9662,1097,1702,2404,-3826,-5612,-7219,-9504,-4775,-4117,5329,2609,613,4701,9003,-3318,6086,-853,7099,4544,8820,-1195,1758,-917,-2772,7866,6868,-1662,-1405,-2980,-111,-8416,-5447,-4909,220,5009,-597,6876,602,8256,-4608,253,-2494,-9447,-1567,-7022,-5159,-4733,-1830,-1891,5895,-33,-1076,4638,2870,-7710,-5951,-9409,-3182,-6131,-4463,-4355,2559,-3428,2151,5034,699,-544,-4378,-1671,-4461,9538,-7720,2569,-6205,4293,-6854,410,-1743,-7917,-2521,-2285,8537,-7465,7380,-6333,-5898,-9932,-3820,-553,2393,3594,-9793,-8285,4303,9621,1008,2926,-987,5612,-6938,-3554,9320,-9033,2890,4806,-4285,3315,3142,-26,-8125,3144,4100,9042,391,8926,5697,-8272,1175,-9498,2261,-2908,-4623,-7173,-3453,8194,-9263,-9104,7857,5616,1238,7301,-8876,5632,5923,6600,9407,7444,8381,3562,-6683,-3170,-7836,-7018,4339,-3117,7994,-8112,-2244,1655,-4063,-5401,6247,-3831,-938,-6573,-6738,270,-3033,-3069,2648,-1479,-8599,7698,-906,1373,-7839,8873,2706,-5050,750,-7676,4943,-3472,1109,-8247,9736,1504,2050,3128,8635,-2784,9420,4665,2151,1736,-6,-3803,5524,6554,2911,4966,9223,-62,369,-6288,-8614,243,9052,-3591,3181,-1966,3713,5228,-5203,-7237,-1166,-3391,2163,41,-2371,-4224,9585,-6568,7154,9610,-4110,-3212,-7123,-8699,2511,-9592,-8169,-5344,6531,-5236,-7567,-1599,1604,-3717,6546,4326,3428,-5222,281,871,-8918,1958,4757,-3434,-3937,6661,-6382,-946,8200,-758,4698,-2644,-7262,-7181,-7710,4127,-6941,-5514,7377,-8689,-8174,6914,8874,-7853,-5079,-9171,-8161,-2482,-6023,-5391,-574,1375,6617,-7386,-7578,8753,2280,-1770,3613,4589,-8887,-4490,8111,-5399,-1402,-2859,-4851,-881,-131,-3701,8435,3910,7701,1588,7661,-690,2153,5498,4502,9444,-7734,-1172,8143,-2034,-7204,7583,-3666,5465,-8327,5233,-3686,-7759,-5528,-6558,-2687,6227,7279,-3370,-5726,7963,-6072,3309,-2045,1195,4952,-7028,989,-2605,-602,2517,-6449,4580,8360,2656,-3848,3436,6131,-4459,5528,-1506,4546,8502,-6424,-3904,-5818,-2532,910,-5749,-3720,-3802,-820,4577,-7017,877,-7410,6331,3398,6689,9597,7446,-5944,7229,-2253,4659,5065,-2347,5913,7403,3841,-1888,6672,4785,-1945,-819,7663,-7099,-8297,8338,-6635,-6612,-8206,-8460,-2258,7736,3563,-691,-6622,6902,-9479,-1491,-9258,4428,-4443,-6481,-5198,8797,2202,9492,-6558,1015,2525,-6325,-8875,-3218,8424,1644,35,-1924,4959,6835,-7656,-1102,292,-9596,6871,-1643,-9097,324,-3324,1084,-5697,6662,3831,1258,2069,-7928,-7970,8773,-4448,9327,-2727,4685,1437,-6396,-5741,-9651,-2676,818,3375,-317,-9096,-5390,-8446,-6726,9300,-437,4520,2433,-2573,7513,-9659,8353,-1114,4889,2775,-3958,6527,-1099,2630,-1353,-1918,8129,8695,-3215,-5719,3839,-2016,3877,5922,461,-9450,9079,793,2949,9908,8529,1489,-2892,-4843,887,-9446,5151,6369,7542,-8933,-3607,6491,1478,-8946,-8293,-9781,1885,785,3023,-3510,-8749,5217,-2211,-1890,-8195,2185,-1984,-9574,-5568,4447,8964,-4053,3819,2471,-8271,4002,2759,8419,3619,7488,-7467,-1097,5045,-1506,2896,-8807,8904,7698,-7897,9370,-755,-4055,-3842,8639,4402,3091,1562,-315,-6469,-5097,7862,-7350,2605,-6732,-2848,-3788,-2223,-3311,-7691,2001,2814,445,-6441,-8079,2067,-7758,-6235,9744,-4950,-9541,-9105,-5893,-7939,-9003,8459,6410,-820,-1373,1577,9267,-8267,8758,4744,-7996,8607,7355,3938,-4923,5517,2911,5959,699,-8158,-2912,-7845,-3106,2027,3533,7240,-5227,-4300,-768,-3178,-3583,936,-3616,7271,-8111,-3567,-3555,-6284,-1774,-3145,4195,-6228,4404,-6822,-6422,9784,-6154,-6862,-248,6912,-2594,4988,-1654,7602,2008,9705,-5550,8860,3726,-6784,6436,3372,2820,169,-7751,5257,-9760,4003,6574,3859,2839,7152,2571,4788,-7217,-717,1776,-387,4002,-6523,7793,5957,3888,1195,-5541,6770,4881,-7844,5619,4573,4817,-1933,-3509,826,5944,-6080,5677,-1401,-5100,-6821,-2123,-7533,-6181,-6444,-8366,5321,-38,8482,-8144,-7081,9110,-8731,-6473,-6389,8245,-596,-3351,-1182,-236,830,6778,2026,-3928,6607,1362,-7321,-8569,-9312,-5669,-8732,-7177,-3021,-6728,-33,-181,-4214,1527,8412,-8817,-4932,-4712,2986,-1013,5656,-4077,-7571,3988,7698,-9645,-5582,-4905,3003,-3489,-3596,4676,3596,-525,-6158,-5756,-9059,-5869,-2134,-3746,8565,1401,1669,-3280,-3097,-1657,2424,-2094,-8912,-5665,1925,-3599,6496,4637,-2061,714,-8589,-5039,9206,302,-7835,5261,3780,-3634,-8068,2445,9949,-6779,209,5010,5187,-9803,4553,5681,9642,524,6608,-6150,-2167,8537,6324,124,-9612,-5141,5369,-1528,-5247,-5261,8881,2297,-6247,7107,-4944,-9162,5872,-9499,-3833,7044,-8523,-9371,-181,5727,-4902,-7436,-6454,-4675,-7264,-8786,4050,7498,8400,4120,8780,89,2188,-6370,1684,-5847,-9444,2306,4122,1142,-6229,285,8996,-2979,5915,-8459,-6820,-1095,3791,-6451,-5763,-3535,2661,4615,-6386,9245,-325,-5461,-4778,-634,-4484,7512,12,-7082,6455,2655,-1121,7328,3577,2164,6052,4608,-8891,9539,2483,-2910,-9379,-2552,-7552,275,-2659,768,3972,-2688,1973,4230,3418,7611,7396,-777,-5843,6633,-6565,6955,-2555,3233,4658,183,-1146,-9792,-4107,-8539,1160,4123,1782,3304,4649,-286,5862,-4138,3269,-8661,-8884,6515,-5887,-5349,-5519,7074,4252,7312,-2334,-2281,7371,-811,-7292,3887,4193,-9329,-2953,1314,9153,7640,2632,1358,7870,6405,-8414,-7864,-9663,1362,-5879,-7069,9345,559,6771,9311,8216,-7364,-4471,-7769,1928,-4923,4370,7852,714,-1080,5752,6947,-1345,1089,6184,-2582,2445,-4244,7543,9544,5478,3743,7538,-3117,9251,-4814,-972,2883,2143,5121,-2046,-8723,6938,-1541,9886,-4870,-7582,-450,-8923,875,-4560,-6403,-1259,8300,-3547,5602,1713,-7464,8260,4555,9178,5345,-7361,7536,2908,-5888,7383,6716,-8165,-6190,1153,-7706,-9815,-2503,8350,-3016,-9206,7956,7066,7627,-675,-2545,9435,-1831,8344,7951,8318,3707,3736,1980,-2463,5290,-115,8013,4253,1990,3705,4832,-448,8353,3652,9172,65,-3883,-4027,-7586,-5429,-3389,-236,-3782,1632,167,-4050,-1780,-8755,6859,-8661,529,-1108,-3720,-6868,-4905,-5391,-6203,-4511,-3889,-5268,8185,-5135,-1514,-6863,-2182,-5410,-9570,-8136,-3732,-9660,-1283,9436,2996,-8244,-9061,8449,4167,-7996,8036,-8040,-4012,9021,5788,-8033,5505,3531,8685,-4558,-690,2062,8543,-3682,-3865,-968,-7459,8065,-5546,1984,-5128,-5664,8701,6562,-8222,-3258,-6826,942,6921,-8719,9671,-6133,-7384,1032,9749,4995,-1917,-3162,4110,543,8251,-3233,7543,8513,-114,1748,-4188,9958,4862,2450,4760,4925,5321,-178,-9174,-740,-5577,-9745,-2225,-4127,-8244,-2515,4704,6196,-388,8441,5417,6071,9674,-8228,-8975,-6534,-6138,-30,2186,-8758,-3496,-4951,2118,-8188,5961,5103,-6899,163,-2279,-1846,-2544,8296,6640,-764,6782,2429,584,7950,-1572,-544,375,-3862,-1801,6605,-6060,-4592,-5133,-4246,-7876,1628,-9422,6013,-7453,-3014,7732,-2250,-5698,-7071,6230,8324,-4246,2049,-1100,-5474,6912,8307,449,6631,7573,-8565,-6063,-113,-8520,8312,371,-7231,6911,-6798,-8210,9119,3896,5086,9530,-659,233,-7729,-9246,-9680,-8645,-1385,-3024,-5064,-2816,6604,-8367,-2035,2218,3706,1513,9344,3188,-2305,-5681,-3465,9675,2561,-7941,7367,-5371,-7508,-8058,1996,2198,-8055,-5742,-4926,-1799,-9053,-7449,6216,-8908,9276,3449,6767,2291,1851,58,-4567,-2896,-9478,781,-5736,-946,5423,-1345,5530,-4769,7005,-6375,5700,-4975,5382,-2315,5041,9382,-6303,5739,-8884,-4087,-8988,-9845,-8089,-5710,-3164,-5872,8612,8869,7769,-5818,-1107,-3637,-9763,7387,-1392,5843,4356,-4093,4120,9195,-7557,-4119,1637,2735,2306,-379,-3187,291,4927,2542,-9394,-699,3163,257,-4024,5678,7598,-7364,-1244,-6360,-8546,881,7833,-3951,-653,951,8790,9660,1479,8993,-9635,-9378,-7009,6280,-9183,5440,-4386,901,-8504,8551,-2449,-1978,-7668,3893,-1634,-9291,-3155,6457,8731,-1450,4453,300,-7176,-3749,7309,-4522,9144,-6181,8945,634,926,7227,2574,-8099,-810,-4995,-5562,8738,-3745,3434,-2232,-5302,-4574,-7012,7031,4010,7555,1336,8584,-2680,-8081,5709,-6658,-1223,6843,-5196,2499,-97,5843,-5368,8476,9208,8573,7998,2336,7244,9710,-9680,-7688,3712,-2342,-9679,7397,5794,-8874,5870,-2632,6806,9292,6530,9634,9651,-9010,3493,-2935,-3365,3399,7702,4640,224,-3825,6031,-7799,-5684,9419,-2867,-3170,7448,-7825,2109,909,-6678,-8381,6879,6855,-7632,8420,761,-4579,4662,-7214,9047,-9918,581,2336,8068,88,6447,-7576,-6676,-5828,8250,3494,386,-1012,1365,6876,9270,-3491,2646,-2043,3520,-7118,6669,-4426,-9388,-3519,1404,3426,-9976,-146,-4279,-5252,-2790,-7919,4139,-9696,3828,-3783,7157,4970,-4569,5611,-9504,-6213,-719,753,4287,-6805,4835,-4999,1801,148,-4963,-5037,-5215,-1733,8517,-5609,5462,6047,4157,350,7281,1672,-777,-3983,6544,8552,224,5646,-4367,-9901,-4867,7922,445,-9835,8735,4559,-1796,729,-7494,3682,2139,-6699,5721,-8708,-3966,5672,2669,-6295,4352,-6355,-9411,1685,1691,-7971,7437,2042,3708,3263,-1477,8632,-3009,-6145,669,-4669,6126,1365,8304,-2319,5482,-7162,7211,655,5080,-8478,5837,6353,-3861,2958,3293,-1465,9696,-420,-7794,8417,-409,1424,9432,-9980,-7701,-9871,543,-3731,-1473,-2927,9990,-760,8624,-3774,3410,5297,-9825,8459,-8764,-9719,-2106,-9161,6018,-7782,-3096,5681,652,-7467,-749,5028,9894,5194,-1741,-6481,935,-1547,-5636,2872,-2659,-3973,8991,21,1446,-1775,9583,-1379,-191,7377,-4092,-8749,-6372,-3443,-8074,-7164,-7131,-6764,-2389,8981,-3619,-5907,4434,-1984,9253,3439,1512,1519,4398,-8989,-5379,8603,-879,2687,5780,-3747,-8530,-3988,-8274,-9303,173,2708,6842,1879,-21,7510,-3397,-7546,4586,502,-8944,9563,-4017,9428,-2233,-3271,-7779,-8444,-5777,-9419,-2977,-3840,-164,7994,7552,7297,1440,-294,-3287,2273,2632,7551,4789,-9737,6261,3200,5684,-37,-5757,5132,3652,-692,-8484,-5084,8382,839,9005,2035,7130,-8040,-5931,6283,-2307,118,-6021,9401,-705,-1354,3497,-6661,-9822,-9789,8005,-9323,-1632,-8002,-4833,5622,9125,2011,8356,-894,2432,-7746,-2672,9344,399,-7478,9789,6198,-6289,-6385,7985,4545,9619,147,3176,5626,-5621,6804,9198,9269,-1397,-5867,-9541,7818,-5631,7509,-2929,-1362,-9918,-8498,1873,1420,9097,110,-2186,-7529,-1111,1201,1959,460,-3306,-1505,-4389,9708,796,-4622,2606,-2331,-335,4647,5844,-2393,-6579,-4564,-7714,-2370,8450,-1095,-4838,-2624,8462,-3443,3146,-37,-3339,3383,-8687,-6189,1854,-6556,4830,-9262,6557,4274,8164,-4577,-3627,7602,-4694,2472,8849,-4117,-1876,1517,9579,-9778,2169,7444,-2548,-7792,-3513,4801,7823,7777,9684,-5896,-6715,3645,-3489,-4750,-9028,-8481,2613,1679,5072,-7076,708,5226,6920,9935,4429,-7113,6799,-7634,7818,7967,-1150,965,-2027,2228,2940,2922,-2755,1442,9550,-9252,7853,-5073,-1729,8385,-8408,7208,-7588,3476,5188,-2304,3015,3743,-5413,8446,1302,7883,-1957,-8844,5938,-3089,-8235,-276,5701,5233,-6002,7487,1329,9028,2032,8771,-550,8026,-1697,-9027,1540,-5748,-719,-3206,-3361,-8684,-1936,8941,-2725,1166,-5938,-3777,9355,-5626,9184,3066,-7559,-7569,8104,8423,6461,-9500,-295,4927,7156,-7448,-6653,5666,-5474,1411,-3477,4417,-8138,-5092,5816,-7632,8706,-6540,9982,8663,9833,-625,-7146,5921,8299,4665,5435,-6899,2637,-4629,-5396,-6325,2307,-8831,-4166,-5172,3452,-8864,5694,8093,7801,7826,-7883,-8296,-8802,-1299,-4662,6844,-6665,-4211,-3066,-1613,2443,-337,9637,-2149,-8425,267,-2389,7083,434,-3223,7263,7955,8950,7951,-9630,6122,9441,9136,-1332,8687,889,-2323,5139,2835,8746,8106,-9666,-9024,-7596,1561,-3980,-993,3115,-4156,-2863,-2637,-5260,8163,4248,-3029,3343,-4137,-9155,-9472,-7129,8869,4644,5364,-5672,-8636,-2910,-8090,-6955,380,7203,8281,-4805,-1754,816,-7590,3630,4270,9682,50,-748,-4185,7231,-1805,2311,-2096,-8242,-3428,4077,3029,6230,-7772,-753,4019,-504,-7927,-3197,7086,955,-239,-969,-7525,-70,-5008,927,-4622,-5589,-5777,9713,6209,8329,2751,2177,8073,-6143,-1817,2196,8456,-1862,-5222,-3847,-9905,3582,3764,-9741,966,3048,-557,-5005,-2659,-8287,-7112,-8154,-8624,8395,-1851,-5987,-8869,2387,7394,9875,-943,-3812,6362,-3258,2526,8214,-7305,-186,8471,-3680,7984,8315,6565,7745,-2759,6019,-1857,4843,4932,-7317,-9794,354,-9148,-7780,-278,-4474,7305,9096,9764,2774,9394,3706,-3500,-2821,2132,6085,-5194,-6831,-5789,5711,-6032,8000,9593,-6316,4349,-1798,111,-6136,-8897,4124,-7288,-1234,-7642,4379,5664,9382,-1196,9465,690,-9484,-9693,394,1194,-9252,-4681,-6308,-9657,-3287,-6648,8144,-8903,-7982,5284,-412,-3077,-4925,-1592,4925,3071,7869,-1386,-9647,-4858,1142,889,-4304,-8107,-2578,-6558,1082,3820,881,-8752,5929,-8379,-4654,-5775,1583,9320,-3019,7969,2608,-3067,5754,-1979,-8307,9915,7562,8459,-92,1465,-3227,7850,-2843,-387,9055,-2366,2438,-1873,2636,7753,3623,-8737,-6863,9479,4122,1901,6572,2918,2178,-1710,614,-568,8993,-5498,-2431,660,-4040,1850,-8208,7103,579,7921,-1226,-1319,9996,-1595,-662,-6589,5858,-3834,3978,-8694,7882,-1477,-9556,7330,9550,-6682,8483,5300,-4480,7934,8324,-9992,-2407,4575,9643,-8816,2220,-905,-1434,-3697,-4521,-4151,2227,9325,-1932,7120,-7139,-1679,1454,-2432,5005,835,1344,-875,-4247,-5351,2987,-9391,6385,-5740,-6541,4142,-3697,6362,7142,-7738,718,-3672,-6143,916,-8203,7741,2171,2298,21,3977,-2022,3120,6672,-2660,-2660,3480,4376,-4482,-9499,-1908,-9955,-3921,-2706,-1443,2991,8368,7049,-9451,-1854,5156,2080,97,-4763,-7091,4199,-5366,3492,-3607,602,-1851,7621,-3862,76,-5344,398,-9505,5378,-3377,-7423,7768,5778,-3410,-5835,8590,-2203,9027,5863,7929,-2961,-3551,7152,-3066,-7419,9466,-7257,-9308,-1161,6422,-7690,1061,-9787,4770,-3083,-2637,-1868,874,6302,-3669,-1647,8698,-1725,8924,-8906,-1258,7211,-7630,4847,7414,-4303,-9831,9915,2298,-9530,-7987,1779,-341,-6952,-1498,-818,-6914,9414,-8466,3528,-860,1592,-9210,-5685,5771,8159,-9163,9695,5264,7272,6782,-1550,-5941,-7859,4255,457,9034,-9718,180,8105,7931,-7935,-9873,1802,-5843,-1350,8589,-9277,4259,1751,9674,-2597,-3413,-6963,-9277,5301,4341,5465,4776,-6844,-4198,-9219,-4337,2431,8706,-1886,-6479,-1407,4785,-8042,7457,-9263,-1823,-4555,-5665,-5319,-4506,-4446,-3150,-2278,-4562,-9042,8711,5124,6468,-5654,3066,-2263,6029,6240,9733,-8466,3852,5345,1936,-6803,-2859,7077,4628,-9229,5973,9836,2909,-8204,-2672,-2127,1598,3009,-6778,1530,2421,314,-8672,-4651,-6267,6623,7878,-7839,3377,-9559,-4843,-7105,-1905,6001,-5791,-6780,8012,5974,5932,-4222,3351,3631,-6751,-8161,-9921,3985,1020,-1713,-8897,6419,-881,-7573,3162,-5189,7806,7618,-8103,-1264,-858,-3793,-5202,-2880,-5051,5440,-9199,-4113,-8418,-7947,-5676,-5327,7799,4114,6617,2443,2092,8213,-8685,-7191,-5557,-3821,-420,-7553,-5173,-5864,5522,-3427,6262,9947,-8628,9228,4576,-3118,-2864,-874,-817,8975,-8815,9974,-9643,-5382,4577,5580,6812,5709,-3722,-4570,-2231,4176,2746,-7955,-749,1628,9863,3818,-5410,9524,-9053,-4899,-8025,3272,6708,4088,-8930,-5462,-4670,3321,-9113,-351,7026,-2609,8568,5764,2468,7308,-2313,4553,5781,-6300,4051,-5537,-2181,-1321,-2921,6274,-9022,428,9265,-1275,14,9179,-3366,-6073,-4784,2,-5171,2772,-8952,-7106,8672,-6720,-5956,-5585,-1062,-220,-2023,-4143,-1727,369,-2472,-7990,-8610,3165,-6873,-9791,-3224,-8865,2265,-6496,-6057,-7945,2818,244,-9110,2596,-5250,-4099,-1755,5016,3189,6308,-9660,5246,-4122,5833,-3273,750,-4168,-5804,-5520,4802,8850,-722,1703,1789,-6258,-597,-6150,-3776,-9974,-2094,-8030,-7258,-93,8024,9216,1683,-4997,-3413,-3859,-1323,-2033,7843,9006,7352,-9283,137,-1720,-94,-931,-7658,2155,-7839,-6317,-9130,-9789,-6360,-3527,7064,-8210,-5175,917,-8643,170,1288,4287,-1858,9019,-554,7184,1719,-9791,-7866,1993,-7263,-9391,-382,-2733,7881,-1183,-8497,1554,894,921,-6514,3899,-1868,-1675,7484,-8327,-2556,-1011,-6132,6372,9057,1466,-1690,3003,1941,6453,-5662,-7146,-5239,297,-7105,9380,-6307,5246,5130,7754,7488,-3682,770,1447,382,-1798,7555,7835,-1429,909,1983,-5370,-8433,-8126,-8698,2228,63,5350,-327,9842,-7894,-2942,8226,-4112,7902,-6658,4990,2304,7137,-5251,-178,9371,-7685,-8451,2912,-5260,-8210,1644,8577,-4164,-7944,176,-3930,8189,-8127,-4328,-2167,5700,-7273,4993,5074,7648,3325,5328,7442,413,9124,3847,9819,1304,7364,5927,1013,-8259,1120,-648,3579,-6860,7107,-1940,-101,1348,8682,5695,-1753,-2240,-2188,-7762,-2172,-1566,4072,3099,-5051,9262,184,855,6714,-3367,9273,6378,-1565,5027,-9087,-9476,-479,6817,-5998,-3098,9936,-3322,-5039,4605,5865,-295,-6112,-6698,-8428,-2825,2418,8530,-9017,-7117,7352,-6779,3062,-6648,5088,6133,-4466,-1131,-9727,5204,2446,3277,-5546,6356,9536,-411,5437,-2374,-4306,7708,-8456,1535,-4736,-9429,5994,56,6907,4613,4911,-3230,-2879,8424,8257,7303,-9768,1389,6584,3327,2119,-3820,-4362,2399,7729,-1518,9980,-7496,-5442,4313,-4455,6337,9862,2605,-8817,-9216,223,-9570,8213,-9261,8111,9355,6658,-6183,-871,9674,310,9832,9310,-1288,9402,6518,9352,-2855,-5900,5700,-9205,9959,-1920,6277,-4887,-1484,-5041,124,6289,3907,-5089,-3005,8561,-6480,5995,1175,1022,2662,-2359,1825,-7665,1809,4122,-2164,-1199,8037,-4021,-2752,-6765,6986,9468,-6600,4587,-524,-7178,9333,8510,8796,8765,1398,-8689,396,907,-9037,-2690,-5083,5802,1370,-6750,-7790,-338,-3632,2868,-4243,1835,6302,-9372,-2269,6363,727,-1261,-5974,-2939,-2488,7611,-2545,-1735,-8748,-9630,4557,241,3155,1890,1063,-5834,7924,-9086,-3282,-7159,7685,7897,-8097,990,4468,3042,-6239,-7568,7040,5167,-4659,-1028,-4636,-5353,-981,2625,-373,3128,9833,-9000,2074,-3871,6963,-7022,-6286,-6611,-4531,6764,-1363,9855,9928,-3812,-9762,2931,-164,-4187,7473,-2517,-4875,-7019,2689,-5781,-4068,1048,-2607,9741,396,2942,5633,8152,3771,-9502,-8253,-8388,-9298,-3163,-9548,3666,1367,6851,2383,-792,-4549,-4977,-9494,3928,-4108,-9446,-7072,5016,-6673,-2530,-2164,4478,-4595,4734,2733,1789,-1631,1628,-6309,-9218,3531,-5122,-3827,-5,724,-8907,-1701,-5254,5285,-5198,8245,-6833,8136,-6041,-1513,-718,4903,-2151,4022,8514,-685,-9066,-3204,-4107,3312,-9418,-6269,-2546,6599,5457,-3979,-1213,-2763,3402,-7457,2544,8527,1206,-7264,4525,-2506,-2308,-4083,-8873,-9236,-5440,6445,-9653,8107,-3169,6566,-8622,-7366,4912,-2928,-1567,1152,-2154,-4911,-6214,955,-6361,4911,9970,3978,4595,1325,-7198,-8471,-1278,-1945,-3570,-1747,4591,732,-5316,-6633,5526,-1215,-9177,-3521,877,-8381,9313,-8627,-6962,3195,5467,-2306,-3465,-7162,9635,1832,-7958,-9621,-1076,-3796,2227,-828,9370,6012,9966,4827,8833,-2143,2776,-5903,-1936,-9879,-6937,-7740,3476,-2387,8405,-7758,-3608,-1166,5237,8602,-2147,-1139,5913,-5355,1404,4586,-2768,-8332,592,2528,-2600,4251,-9216,794,-6748,-2768,6388,-5962,-8341,1421,4479,-1268,-6810,-3783,8592,-2855,421,-1385,6880,3215,-6483,2030,-6127,2689,9863,8705,-3925,-3292,-5480,388,-4910,-8514,-8431,-8766,4551,-3831,7300,-108,5509,-4440,-8846,-857,8362,-3393,-6880,-1504,7785,2007,-5230,609,2676,-5434,3468,-1403,3754,7305,-6390,-5403,-5924,5108,-5868,7518,8275,3331,4691,6151,-6138,3480,8520,6833,3728,7887,2346,5067,-266,-3463,9272,-2861,-9515,7017,-5223,-7285,-3345,9071,3650,-3920,-480,8565,2657,-6492,6899,-3361,9443,6447,-8630,7148,-9965,3787,5845,1441,1810,-2622,6135,-9696,-3729,2140,-428,3910,6369,-9304,5002,-1776,-4413,3439,-3220,8956,6243,-9940,8501,-8735,4116,130,-5265,-4049,1014,6909,-2743,-1442,-6189,529,3301,-6754,1324,-1310,-1173,8412,-6608,214,2078,371,-5242,8102,-1789,4810,9893,-371,8069,9536,-8604,-8975,8194,-2340,-2952,4519,-7464,-4882,-2342,-3520,-5778,-9375,-4015,6708,8654,-4621,4438,-5426,7973,6187,6041,9367,-8921,-1344,-6788,-4509,-3642,4568,-1850,2722,2620,-6410,3814,-5615,-1316,-7730,2594,-1693,-9708,240,-4548,3994,-6479,-6750,7352,-8893,-9928,7791,-184,572,8304,-2516,-6744,-3417,7698,-186,-4508,-7597,-7425,-8863,8149,660,9484,-1559,4194,-4228,-9936,-7352,-1557,-266,-9510,942,8965,-2028,5649,2280,3118,3311,-6695,-3489,-9416,-4927,-3416,4498,573,1224,-7458,2741,5473,-1936,2674,1571,7331,-5508,3812,3794,4451,-4539,9799,437,-9536,3491,-7156,-3769,6266,-6703,-7756,-12,-5350,-3246,1229,2257,6015,-9223,9361,-8323,-3236,7142,4558,3860,4556,6464,-4583,1687,7789,-4756,-6001,-2875,6934,-1913,3778,5177,8794,-3674,-7498,7994,8586,-7627,-5736,-8488,-4430,6225,2378,-1292,6658,-465,-1811,4345,9205,-5781,3474,5020,963,8556,1018,2505,6304,9062,-5873,146,6891,-1233,-392,6778,4776,-6360,-4280,-9834,-6945,375,2802,5835,2976,-8278,-2897,216,6809,-6785,-8382,-8984,-9564,-548,-4041,3734,2807,7619,7980,-4362,5451,-7028,-7246,57,466,8793,6215,-3457,4663,1258,-4118,3296,7785,8669,8422,4297,5450,-2064,-419,-5968,2322,-4002,-630,8180,-9145,-5567,4602,-9138,9758,-3220,6939,1642,9970,-1490,-1414,-5576,8632,-4976,-4197,-3147,-9612,-1963,-1776,-4187,-8688,7115,2849,9830,-8760,3581,-3974,4408,-7020,1527,6777,6500,7174,9258,1694,8812,9132,6299,5400,1763,-570,-6741,-6185,-8394,747,9364,3391,-2270,-9140,4927,-5135,-3245,-3023,-6141,-7187,2964,-5373,-5555,6901,-661,6940,8672,8086,1427,7000,8874,5845,4124,6649,-4598,-4499,-6536,2422,70,470,8049,3469,9510,5818,-2812,-3546,-7436,1029,-176,3924,-7848,-5310,8313,-1533,-9092,8867,-659,3530,-8422,-9601,1912,-1335,905,-1178,8558,-5923,-7727,-9690,-7462,-7706,-7644,5729,5920,-9299,7954,4111,-1081,990,701,-6318,-5592,3740,-6956,7174,-3574,-2064,3261,8862,-442,-7262,-1065,-2612,-3156,-8938,-1235,3437,3184,-9384,-5210,-6304,5188,1343,-3652,-7383,8442,8149,-5469,-7386,5379,5947,3642,8138,5381,-2875,-5942,3205,-3612,3620,3205,-6699,3676,911,-2272,-300,-775,-2237,-5381,4787,9934,-8410,7465,4081,-3683,-8157,8743,1013,-1349,6629,1077,2637,-2518,-7316,5425,1979,5354,2145,-7633,-4803,8768,-9360,8183,-2102,-4507,-4912,-3814,1349,5937,1566,-5830,3822,-540,209,-9483,5713,-3868,5967,8564,536,-5037,-4534,7258,-7174,5791,9378,-3439,3148,8108,1516,2068,3575,2250,7994,1419,-5055,9223,-1765,4532,-4067,7657,2634,7481,-9313,6851,-521,-4426,6699,3152,5416,9352,-3564,7813,9102,4824,-5985,8689,2470,-5578,5129,-4535,-2863,-31,-9525,-8241,-8007,327,4034,3492,4516,8597,4269,-2601,9415,-5868,421,-5812,8437,-6516,-221,-5858,8261,883,-504,-6352,6048,6375,-842,6788,7911,3929,1798,-391,-8825,1351,8117,-7851,6937,-4317,-8708,1555,-2119,-4365,-161,2143,2464,7013,6102,-9420,-7385,5135,-7069,-2572,6042,-3984,7143,-495,4057,4090,-2697,-5006,9933,3106,-993,-1712,2903,-7775,4926,-148,-3089,6333,-5014,6180,9123,1557,-6681,5429,-1858,6609,8985,-9549,1778,2773,2282,2184,7271,-2346,-9192,-9240,5455,9339,462,-6127,736,6593,9270,1702,386,4046,9581,9753,4555,7293,-4413,4850,5825,2471,9200,-1583,-4354,8210,8357,9970,2693,560,1570,9043,-4066,-648,2811,-9054,5494,3450,4484,6612,9421,6328,-9014,-2976,-2383,5123,-9938,-5879,-7338,-6710,-7227,8528,4598,-7555,-6553,6682,9132,871,-8927,-6656,-5586,-9257,165,5768,6494,3538,8447,-5044,-4999,8608,-8712,-1059,-7975,-6562,-6486,2717,821,8916,-831,-2074,6363,7137,-9586,-3417,-2111,-2828,8172,2098,176,-7062,-6176,-6260,5049,-1140,-2653,3618,261,-1296,-3852,4877,7423,3706,-7978,8819,4508,9255,-5791,5103,7274,-1694,1672,3797,-9814,-4713,9182,-8457,-7474,3941,5502,-1073,-3625,2818,-888,3860,5146,2973,5692,1013,9351,-9321,-3936,-2491,-2082,-4841,-3821,-598,9799,-8839,-1705,-9592,2603,2529,4121,1175,-8700,-3784,6574,7071,-5466,-3875,-2430,-8502,1964,-8102,5612,7441,7753,-9141,9627,-1151,-6121,-6017,5693,-1695,-7998,-7782,5323,-6616,3028,3719,1176,5680,5944,-6371,-3874,6274,7062,-4014,-8310,-1544,-8497,823,-1091,3052,-7990,6477,2667,1152,-2581,3822,-2316,3570,9653,-1647,-9419,9972,7923,8499,9113,-3001,1596,7092,-8151,-9452,1397,-4619,3162,3930,5164,9225,-9908,-9341,-7656,5189,8168,-5493,552,7311,-6401,-9444,1920,4741,388,7822,-8593,8749,-7130,-3636,-1690,-8118,6078,-9979,9347,7449,-705,-2162,5263,-8182,-5209,-3928,-8480,3460,7990,-9999,-2007,-3986,4011,3469,-2535,-8070,5364,-404,-9364,2832,6957,9335,-595,4741,-9089,-1017,7601,-5100,2379,-2533,-5141,2448,-8772,6408,-6891,9559,9620,814,-6697,7964,7892,9584,5559,-1973,-6860,8000,4874,-2796,-9444,6963,6227,5662,4744,-6485,4674,-3600,2003,4642,-4929,-6297,-1924,5136,8632,4358,-6644,1377,-3129,-9668,-9941,-2836,5991,7538,-4299,4889,-7236,-5068,-6076,9492,-3483,-6229,-6261,-8926,-6411,-8256,9564,4542,7420,6874,4133,5578,4324,2582,-833,-8656,7120,7734,9226,8539,2513,5511,7898,-7057,-4811,9492,8225,610,-7196,-2009,8493,8695,-6007,-4394,-8366,-2194,-1007,-3698,8622,8501,3645,9610,1639,2006,-652,4479,7073,-6508,-6154,-7982,-4225,-5203,-9374,-7864,-9285,-1388,-8779,9989,1585,-5415,9506,-6650,-9924,-8977,4909,-4414,-8815,-6884,822,-272,7770,-8769,9666,1900,-4682,-5867,347,2402,9531,-3586,-3747,-6887,-9642,5648,-5951,9085,-2062,5479,-9931,7645,7170,1207,9948,-1746,-148,5481,9149,7583,-7247,-2881,6112,-3798,-9365,2545,-6621,-7524,1979,8029,848,4743,9353,-1012,3634,9939,5611,-3803,6197,-2770,2424,3726,1253,4702,-7894,847,-3210,5348,-7,-6836,1284,-2588,-6951,4922,-9452,7500,-6009,-6353,4822,-7280,8783,-6725,6806,-2367,-8830,-8354,-9629,-9126,-3431,8364,-3747,9882,-3701,2243,-5979,2880,-6598,-491,9178,-2337,5979,-476,-5045,3587,-127,-9192,-4454,-1460,-1048,-2508,6720,-568,-2997,7108,-2031,8846,3624,-5510,8275,7555,9314,5649,-7929,-7079,9209,-564,-3829,-5957,147,6917,-5119,8970,-6826,667,-3752,-4804,4758,-1729,-8095,-8242,4032,1802,-2363,9161,7842,9960,-7334,-3480,-3390,-794,-9120,-4021,5155,-6332,-8683,-2317,-8241,-9571,-9322,8105,-8873,8068,2006,162,6666,4918,-916,9439,2120,5189,7675,847,4556,-2165,3084,112,6409,433,-2087,-6902,7690,1564,-7955,3805,5720,1662,-2536,7040,4222,-5523,-5745,5042,2067,4511,3239,-7235,-784,-6344,86,3747,5586,-5672,-6233,-3866,-1562,-8792,9361,9342,6264,7576,-1792,8918,8542,8362,-2911,-8166,-4044,9487,-7409,-4181,989,5357,-9285,2547,-6816,-5996,-8759,-348,6007,8076,1548,-9430,-8845,6657,-8915,3493,9753,-8273,-787,-3885,-1326,-1485,4656,-3657,4037,-5254,6961,-9693,6933,-4538,2451,956,1797,-4913,-4981,-5332,3354,1954,2333,-736,2457,413,3723,-1245,-8727,-4020,2837,1783,6213,5360,-2078,-1220,3901,-72,-1869,9033,-802,-4492,8830,700,-8839,3280,-7819,6644,9584,-4702,-1396,-4577,3662,-5553,-4898,8183,-1396,-7351,-5205,5892,736,4287,2936,-9049,-9162,270,9318,6111,6035,3007,-5436,-4788,1037,-8024,7251,-3646,3248,378,-8563,-3638,-9311,-2355,2037,-9826,-4189,-1775,-3031,8850,7447,-1758,9731,-2067,9648,7648,-6607,-7531,8772,-8197,-6034,5627,2819,4046,3578,9864,-8101,-2188,-3509,8819,8028,-1783,-1923,-839,7586,376,-3136,8711,3815,-3847,-9249,1596,7644,5470,9752,4434,4939,-7481,-7019,944,-940,8003,6497,9196,7906,8076,-6816,-6927,3664,5194,-1910,-9717,6160,-6017,-7554,1717,-7005,-9641,-9080,-5166,5668,4129,-595,-9720,7828,5566,-2395,8933,5492,2733,6765,6082,7084,-8742,4181,-6377,-714,5838,7521,-6049,-4601,476,6181,8219,-9440,-4520,-2090,2772,-6165,-2689,-9385,1778,6803,-9180,4279,-6328,2820,8961,-4797,-1207,6541,2902,4136,2656,4433,3562,7808,-9242,-4203,-8878,8448,6615,-1849,-9892,-4248,-9926,-2999,-1231,900,5743,-9349,-9379,-8053,-1311,6847,-5413,6208,-3676,1644,7699,6069,326,7447,-5125,-9795,4861,-5571,1512,7687,8697,8177,4921,1679,6203,6335,-2069,2392,4268,9830,4448,4070,2784,1473,-5522,5587,-3180,-3622,-1934,-344,-4437,-4437,243,-559,2928,-4461,7554,-9078,-1748,-2816,-9710,3373,-6892,2870,3897,-4215,2653,-7962,-4912,-7537,-6509,9088,5635,-2004,3320,-7884,9315,5820,251,-5881,-4631,4833,-7016,-5638,6587,8743,-4663,3025,-1361,-927,-3119,-2497,-8240,-4,-1778,-2318,6531,5986,-681,4953,3185,4092,-5670,-3802,-8415,6597,481,-8780,-4793,-2758,6852,-4326,3617,455,-7447,8313,2037,9673,-4607,757,4019,-2661,-4261,-1259,548,2084,-7140,-3671,-1109,-3815,2188,-4498,9802,3502,386,-3438,8674,-4447,-9105,-7152,-850,9632,7657,2098,-7777,-341,-2664,-4907,6082,8434,-3047,4391,-210,497,-6807,-5117,-2629,-7410,5177,-5534,-8599,-356,5490,7697,-1015,9815,7503,-8720,-7901,-2679,-7738,-7849,-8,-9926,-3166,-5994,8218,-66,-9104,1157,-40,2475,-2531,-1874,3632,-3581,-4000,-3818,4412,8904,7416,7432,1086,-3889,-6017,-8825,-5270,-972,3066,-7202,2169,2236,-6694,-6578,3805,3304,5033,3721,8304,-4627,-234,3027,6090,-8252,911,-2576,-5700,-5705,-4450,7693,-3113,9367,904,-9822,43,575,-1425,7178,-3049,6523,7320,2873,7123,-1257,-6912,3257,-3978,8889,-1855,9094,4040,1034,9087,7779,3991,2963,7174,-7526,-6139,7154,3334,8529,6605,1283,554,5121,-9939,915,-9490,2463,-1951,9518,-9181,8235,3106,8194,7924,642,4029,7134,-2452,3974,7624,-7650,-8564,-6911,1400,-8191,3057,-640,-1283,9215,-4609,-7141,-9406,-8530,-4753,-8949,-5144,-7497,2500,8449,418,-6224,-2979,4961,3669,7946,-8539,-1216,-6725,-5989,5232,-5893,-5013,-1088,-6428,506,-803,-417,7267,-7471,-9697,-2754,-4078,4565,6046,-2073,744,7388,-7401,1055,-3659,-9067,6263,-3927,-4731,-2856,1795,-791,7965,-4942,7713,6399,-7514,8407,-4551,2526,-1169,3159,-331,2818,4805,-407,5951,8305,2488,7393,4580,1596,3195,-8499,3765,-2591,8200,-256,5167,-9302,5033,-5355,4572,-8506,-855,-4925,2961,3724,-4465,-9787,-7009,2348,-3183,3122,-7935,-9113,9258,-5289,7090,2943,3385,-1702,6892,5247,-3066,939,3091,-7029,5109,-8957,5101,4620,-2449,8586,1108,-6278,582,9778,7471,2945,9308,-5066,-3870,-9206,-9206,-9436,1308,3905,9484,-6729,5262,9687,-3204,-2301,7271,5521,4314,-6973,-6591,1352,9128,-2836,4030,5157,-404,-8434,-8269,3309,4224,7850,49,-8908,-9149,3834,-1708,-673,6576,3928,-3249,4693,-4743,9157,1361,-7680,-3758,2155,2606,521,-6447,-1660,7366,4702,2884,4575,-2126,3520,-8958,370,5313,-8038,5121,-6256,-7956,4506,6773,-6727,-2038,-4528,577,-408,7804,-3560,-2353,-1933,-941,9747,449,4675,1542,9313,9965,-6779,-962,7649,-4932,-5596,3864,-7392,-9868,2331,3605,3638,8790,5043,-3351,-7786,790,6375,2199,-4376,-6374,5969,-1275,9964,-5490,-788,-9217,9425,-7442,-206,-693,-6318,-2054,-3426,-7601,-118,5943,-5367,8553,6883,-1574,7588,4287,-5209,-128,2837,-3015,-3146,-1794,-5674,2253,-4854,-5483,-3028,7347,-4947,-6608,3816,8448,-7003,-8065,699,2335,2027,6530,6946,-2010,-8058,-4829,-3370,-7089,8041,7040,9707,1642,5305,3410,-8764,-6666,-2482,2306,-8328,579,98,808,1411,-8825,7360,3888,7959,831,137,-6600,4988,-3643,9369,5861,-5234,-9199,6373,-8026,8314,218,-25,5114,-1847,-1806,7143,1440,-3764,-3158,1395,-9347,-7941,-654,-1181,-2154,665,-5177,-4831,-5450,-8947,2622,1241,-32,7748,9911,-7813,-9390,-6730,8287,9339,9965,7308,7898,-5074,3683,-6972,4910,6721,-9994,-7564,2740,-5780,-5802,1323,5347,1642,-8874,6694,-7535,-3914,1623,5019,-6728,9317,-484,817,5101,291,-6701,754,8024,-4556,1164,-1881,4473,119,5971,1300,8216,8936,-6267,-8221,-3253,3631,-8732,4518,5525,-3734,1226,7519,-1384,-8332,-1515,8844,152,-1758,-3971,-8398,-2480,6512,-7035,-4907,-8805,4592,-1329,-4856,-5258,-3232,-5874,6680,-8747,3603,3510,223,1674,4151,8606,-5481,-5038,-5771,-185,-9960,8291,-2310,6611,-4680,8973,4716,-6737,-8263,5427,-2302,-1534,3634,1031,-3666,-3789,-8861,-4905,7380,8484,-678,4032,-605,3782,-6253,-2096,-8410,3641,-6014,6497,2776,1034,-4693,5157,-6736,-6217,653,442,-61,-9678,-6764,-1936,9443,-898,-3803,-5903,-6887,-3613,-7248,-3425,4279,2446,1615,-5860,3445,-947,2832,176,6116,1335,8014,-7677,-3039,548,-1744,-2519,8976,8280,-7848,-2902,-2826,7123,-4203,-7576,-9630,1066,8737,1361,-3224,-87,1850,9034,-8052,-3337,-7877,-8662,2372,-3212,648,-2126,6188,6696,4128,-4283,-9611,-2472,-236,3329,5863,9011,727,6569,-9817,-4862,-5663,-1809,-5914,-2312,-2328,-2905,6994,-7960,-8257,2721,275,-5098,-2573,-4657,1767,2227,3131,-623,4020,5186,-584,-9440,-9102,-4893,3133,7931,-8041,-9690,5716,4584,8428,-4304,3215,-2645,564,4786,2089,-7681,-7194,1276,4786,8423,-3869,4888,9679,158,6038,-2223,-3414,-5411,3079,2777,6707,-9707,-9833,1672,-2339,5392,1461,3677,-7806,6872,-715,-1712,-1163,6072,9782,552,-7958,-8324,-9979,-9306,5830,-2799,6198,4108,6242,4908,3184,-4689,-2816,-6217,-7663,3847,-2461,-2388,880,1929,-3425,8580,-3439,604,2311,4895,-617,1338,6756,-6631,3257,8492,-7417,-6012,-8327,-5622,-1031,-7087,449,-127,7888,-1175,5448,4543,6399,2761,2577,8660,-1961,8361,4777,-6032,8018,-1172,-2180,1564,2354,-8623,7274,-7665,-5991,-2299,9627,6222,4829,-1602,9772,-9706,4473,3222,-3416,6317,-977,-3672,3531,-3011,3895,-2715,4061,-7498,-9602,-4001,702,-6515,8018,4179,-6683,8542,-5890,-6073,-1726,-787,222,-7396,497,-4603,-5317,-5455,-976,-5996,471,135,-3088,3011,-496,2581,-4145,9239,695,-6541,-8607,5041,-5614,5805,-4232,-7249,-8647,2244,8914,-6862,3704,8216,-8166,-5616,-9952,-2759,9371,-1480,-8230,-8461,7851,31,-9520,7201,-1953,6390,-9703,8166,-3482,6169,1247,-3064,6732,-4051,-5871,-8679,-3108,-5938,-2046,522,72,4748,6485,-1087,-6067,2076,-9396,-6882,-5984,4525,7770,8698,-9231,3501,4486,-3462,-256,-7192,-1472,4648,-2981,2780,1313,5160,1681,-1725,-9624,-1004,-9440,1503,-8303,-8497,-5644,-8547,6683,-6455,5436,-2844,-1013,4407,-5342,3663,-7856,9097,6070,2363,-2851,3782,-2511,2777,2462,-2267,-706,4677,-4038,-6206,9086,6377,3796,-7645,1635,6733,-6246,-5534,6282,-6923,-249,-2270,-3149,4733,4776,8584,6005,5290,3994,4690,8894,-6727,7982,-5348,7134,-1340,1618,-2164,6786,4363,-8188,603,3265,3340,-2284,-1200,-1523,2469,2258,-6339,6582,4946,-2886,595,278,-5693,4742,-8725,1995,8082,2477,3586,-1129,-620,3240,2859,-1472,-4366,9232,-9421,-7119,6332,8905,1351,-5409,-1369,6468,2750,5825,3599,2114,7114,1804,7307,-9355,726,-6073,4919,-217,-7837,3085,8093,-866,-2739,1165,8844,4176,3187,-9231,2684,-7251,-6263,-7347,1837,5710,702,-1308,4327,3821,4845,4026,6190,1973,-9943,5427,-4223,-4215,-7125,4207,-8330,-3938,4410,2124,583,5049,870,-5097,-9117,1399,9555,7772,-9364,-7727,-4227,-956,-7728,2053,-6566,8864,-3660,7241,-1279,-6620,6231,-2218,7250,1910,-5106,1448,7413,1441,-7915,-7558,-7764,-8381,-4604,-6473,7764,5161,-3065,-22,530,-4904,6095,-2580,7978,-1246,-185,4970,-9431,-6362,6256,-7758,-7088,9348,-5172,2431,-9851,6060,-569,-4505,3460,-6579,4288,7168,-9874,-6834,-5442,5403,259,9035,-6198,-5261,-4833,9264,6151,-5044,-8743,-9050,-3411,6244,-192,-6267,3382,-4612,-7288,1179,3019,6837,1205,-3884,3715,7945,-1854,2942,-6078,8505,-2658,-1286,935,7097,-7412,6729,-3891,5262,9259,8811,-5530,-3227,3916,6561,829,-2808,9657,-5513,2438,-3621,-7974,-7451,4640,7432,4725,7548,-5831,-5084,9472,3975,-1185,-478,5428,-5592,2952,2134,4661,-9023,2211,-1765,-148,-244,366,-1103,7926,308,9929,5997,8766,1322,-9669,4358,-2507,8792,5756,-5332,8942,9862,-3202,7403,9935,-3051,-8596,9665,3250,2304,-5851,-2419,-7356,3661,442,6267,-2343,9758,-9241,-5080,-1655,7951,-2614,4676,-1377,-5656,-9248,3893,-2189,676,1668,-3180,-422,7939,7247,5728,3466,6071,7294,9339,3003,1776,2920,3771,-3356,4809,-9573,-8454,6577,-3485,-5082,928,-1508,4525,-4268,-1850,4722,1827,3457,-5337,-5316,-8432,-7260,-6579,2020,2726,-8900,-4810,2031,1847,-4981,4202,-5774,6653,5764,-7551,7058,-9565,6823,6969,-5514,6089,-1017,7085,-4705,606,-2119,1175,2963,-4505,-4998,-2875,3214,855,8383,3816,-6306,4673,636,1146,-2277,3667,1250,4980,-6614,6857,6861,-7697,79,-9132,-9868,-5721,8210,9975,-1180,-1374,-6327,9794,-155,-8784,-4491,-592,3794,-9974,-1869,8354,4075,-7570,-8188,-6978,-788,-5031,-6178,2196,-5891,4603,2660,5058,-4916,-8696,1089,-3912,-708,3001,9327,5719,2810,8570,5930,8096,-1473,1484,7318,-3619,-5386,-4890,4906,1543,7526,9536,7382,5999,-2767,-6426,-5247,5061,-7607,-2665,9706,-4338,-1391,6789,-2248,4648,-4726,-1904,3123,-6303,7550,-4677,-9162,9255,7112,-102,6222,-790,-761,1307,-5285,-442,-6334,-6746,-3220,1221,5624,-6433,-1374,-2123,139,3917,7077,787,7370,6226,7272,3797,-3707,-1987,-6999,8469,-9652,3377,-507,-1366,6980,-9638,8852,6986,2735,-8836,-2429,4860,-8397,7409,15,8220,1685,270,9199,8464,7800,-4700,3970,9963,3331,-953,-1522,9023,-779,2799,3124,-3187,5350,-4087,-4547,-9055,4816,9456,1106,6271,281,-5994,-4976,9455,-4162,6459,-7104,8582,2589,2432,-7596,1587,40,-3974,-8368,-3884,-4063,-862,971,9667,5,-9631,6575,9023,-6228,-2997,-2469,3364,-2253,-6146,8358,-2438,346,9811,4356,-2207,4870,9799,2071,3446,-1402,-6404,1471,-9487,9019,8809,-4900,15,-6188,-2868,-1448,8905,2,7495,4385,-4578,-8320,-7965,-4727,-2831,-8620,5655,6325,-7024,-9605,-7351,-4560,-794,-4775,-4659,4240,9880,-9544,3504,7249,7572,8100,2618,-7468,3656,8137,7243,-103,6596,3097,1360,-9402,4280,5007,-2823,8839,-7532,-5801,-471,-4508,-1601,9328,5323,866,-1953,4235,-9013,-9014,4957,-2817,-7998,362,1928,7515,3097,-704,-3395,-1544,4732,-5991,-7546,211,3544,878,-4010,1581,6837,-6353,-2409,-3378,1080,-3001,9115,-7106,-5841,-534,381,4723,4868,-4840,-9006,-3661,310,-125,3131,-5493,8228,3831,-1009,-8634,-5883,960,5667,8387,1329,3649,4683,4973,-5914,-9870,3274,7092,3836,-5630,6294,5686,-5299,1178,4551,-3174,4272,2118,6354,-512,2131,5243,7434,-2619,5240,-2912,-4260,-9984,-6994,-4242,-8640,5741,-5076,-6487,-7180,7652,-2340,3913,-3875,6909,8612,-7129,-1213,-2800,5316,5312,9807,8067,-7178,-5275,6789,7803,3340,-133,9156,6857,891,-438,-889,1958,1679,-1617,6163,-2108,5957,-9114,9583,8321,-8885,-1899,4621,-4678,9905,6436,-6030,-9466,-8556,-811,-2828,41,-3338,2061,-4306,-4183,4266,8697,4294,3039,3652,-8097,-6966,-1050,4252,-4045,-1338,8216,9560,-2718,-6155,-2619,-9099,-7475,-3638,-9120,-2805,-6882,5025,-8764,-2018,-8986,8993,9403,7611,-9701,8187,-599,-4048,4320,-4074,-1746,983,6730,2592,2262,-7316,-390,8982,5599,-6165,-7926,-8428,9493,9244,-4221,7775,-3834,9585,5785,-6673,-3829,-2224,-2390,-530,2140,6474,8247,8608,6333,6296,3978,-4054,-3008,9689,1661,768,-9352,6392,8998,9218,881,-8877,-960,2538,-7441,-3760,-1311,-3756,7297,1358,8086,4679,-1168,220,-9964,9576,-5640,8,-7396,-8557,-4766,1794,2016,9219,2440,-6595,-5201,8997,3706,9546,-9869,-3486,-2670,-7840,4519,3717,7697,1193,-8881,5209,2234,2140,7119,6153,-644,1779,4147,-5889,2953,-4716,4825,5476,6929,-1113,5373,3494,122,-8900,9959,-4673,-8890,-7003,2994,8204,1191,4110,-5277,9696,7849,-9697,8085,-2562,-1041,4485,-4716,-2457,8570,-6274,-509,-3044,7263,8060,9156,5949,9569,-926,-3665,2184,-2836,777,-8315,-8740,-8922,-9842,50,-5034,3659,2181,-6948,-6736,-2018,4546,-8835,300,-1549,2014,846,-3270,2085,9388,207,4214,-4531,-1432,310,-9231,7141,-1296,-3147,-2776,4254,-5243,-5909,7491,6599,-8468,7206,-1257,7002,-5523,6643,-9948,-3662,-2081,-4567,-7593,-1090,1064,-2940,8532,-9962,3314,-2543,6833,4854,97,-7434,1878,9541,8895,6867,8445,7809,-4009,6137,1793,-1551,-8677,9706,-5366,1750,1724,-4879,7534,-7550,-1783,-4655,-8522,-8659,2166,8589,-8032,4487,8506,9045,3651,-3502,-6296,-9315,-1148,9961,9916,-9862,-3736,-3631,9346,2737,2339,3804,-4199,-3755,8761,9982,5409,-9669,7116,-13,2429,6535,-7257,8649,-8782,-676,1770,-2234,2955,471,-293,5033,1438,-7661,1774,-7449,-3709,9256,4305,1,3280,3868,-4155,6032,-6299,-4981,-9881,-8370,5496,3442,3698,364,7813,3102,-4026,7118,3491,-5342,2763,-6883,-8949,9596,-8342,-4437,-1493,-227,9174,-8768,-7252,-9481,1263,7139,-8894,2853,-1782,-1797,-8612,2055,5067,-7517,3506,-7015,8954,5456,1944,3363,4119,-4521,8228,7538,-2598,9970,-6830,8268,7770,2332,-1463,2385,-2389,8042,-2208,-247,2808,-9714,-2330,9387,9228,-3225,9375,9905,601,-975,6524,7916,9369,-2879,-1301,-807,-7582,8116,4209,5781,-660,-9395,-7994,-5070,-6922,-6994,-2604,8730,-7073,6091,-1391,-2978,2006,9544,6957,3255,6757,2998,1614,-1724,-5510,-9397,6285,-1120,8983,-7730,-9679,-3014,5371,-1785,7717,8893,-2092,3285,1901,-5241,-2414,-8224,8077,-6342,-6150,-8258,-358,4691,-5407,9500,1060,-6149,-9770,-5980,9553,1760,-7737,-6302,-2813,-1831,-6112,-5381,9564,5030,2719,1197,-5951,7912,9846,-6139,-2310,-578,-8922,7859,-6119,7163,4376,-7513,6600,-4515,-6610,-1099,4960,9068,-5479,3425,1509,9704,9149,9604,5229,-7911,2959,-4393,-7867,1043,-4258,5255,1471,6677,-2437,-2868,-7038,-8601,5976,3256,-6271,3850,4885,-6548,5261,5459,3182,4961,1829,8934,3885,-1605,-5548,-7090,7648,9264,-300,-5582,8799,2854,-2156,1198,907,-4841,-3002,1949,-4769,5893,-7071,-7345,5451,-9271,-8435,-2928,-7191,-1778,-477,-4198,8312,7370,-3525,2242,-3297,7353,2156,-7595,8782,-2227,5567,8709,7835,-1999,4219,-6304,-1945,-2137,-4039,-1791,-4834,790,1887,5910,-3474,-2802,-771,4779,-8996,2495,5995,-4224,-8569,-6777,7538,-7024,3594,-3434,-5389,7752,-8512,7392,2935,-9918,1994,2962,-3882,-251,-3342,-9602,2761,5942,-4543,-6118,-776,2003,-2600,96,8209,-4322,-6075,-8905,8362,6611,7422,-2566,-2340,-984,-2066,7161,7777,-3243,-6667,8503,-5014,8670,8718,-4147,1831,-2055,5573,2831,-2883,-8335,3363,2492,9404,8884,2291,-7138,62,1618,9051,6077,619,-8898,-3453,9048,8020,3205,-1473,8447,-4505,-1431,8365,-5188,-7060,9960,5623,3129,6208,6050,-628,-6611,-4592,-8266,-5597,-1572,-3945,2517,264,-9236,9674,-5003,9975,-1474,4162,2032,3899,1985,-1698,1932,-9572,-490,-8488,-9699,9751,-1915,198,-7170,-3571,8972,-3977,8082,6117,-9670,-7374,2682,-9357,5996,-9442,-8822,-5140,1548,5879,3544,-644,-6455,477,-8095,5269,5494,9546,-7433,8868,1508,-4435,9415,-5796,-7615,-5854,4014,-8122,2180,-4111,6808,1129,-6704,9983,6734,492,-1406,386,2256,-9463,7110,4277,1206,8011,-6687,2015,8253,-5934,7399,-9072,5619,-4509,6837,-5026,-4782,-4690,-9085,3807,-8980,-5236,-6874,-6700,-8359,9111,-1298,7041,4227,3262,7018,-1991,-198,-7715,9844,-1127,-3214,5442,-1649,6495,-8301,-2706,-8694,8429,6230,9379,7752,-9566,-9851,-5403,-9267,-5122,-6483,-2062,-148,1114,-2964,-3247,-3942,-6851,-8685,7980,3637,5285,9937,-3961,-5718,4746,-1557,7011,7692,-932,8136,1513,3398,-5542,2733,-9877,-6925,4058,5135,9046,-7464,-6159,-419,-3294,-7324,-9712,-3370,3741,5528,-373,-5904,-1221,-8483,276,976,-8511,-3520,-8927,7294,4266,2631,3193,1334,-5061,-2635,3093,-9341,-5987,4734,-7770,6897,-1118,-7244,2051,1126,984,-7997,-200,-696,-2657,-1206,5776,7164,-6291,-4220,-8828,1024,-6272,-9995,8298,288,-326,-5797,9280,8275,2335,-459,-4905,-9738,-9094,5563,-3356,-5691,-9737,-7822,-8585,-9452,-9421,1289,9624,-7424,-3683,-3088,1159,4368,-6127,906,-4356,6261,7326,794,-317,-5212,-2017,6540,7540,9436,-7571,-157,-8299,-3280,-1379,-2119,4204,3031,-1830,514,-7400,4856,-8068,-3782,-4140,-7280,-1358,9223,2807,-9491,118,-8568,4512,8243,-9740,4159,-6936,-1471,628,-5471,-5909,-7696,2010,-6601,-594,4678,6555,7003,-7517,8888,6357,890,-5176,-2105,5828,8316,1510,5243,-8636,-3867,6252,-1129,-8263,5180,8929,-3801,3622,9152,8104,-9720,4499,4821,6678,68,-1613,8298,417,9043,-1012,-6417,7058,-4094,7789,1211,9210,6655,-7097,-4198,-9942,-2635,-9614,5946,-3065,1367,-4344,-6612,669,-4248,6350,-5971,2031,9110,3054,6289,-4530,6672,-4408,-5558,-6110,4722,1378,-9245,-6267,-2782,7137,3046,9062,-9176,903,9695,6165,868,4758,-2375,4579,1647,8662,5432,-2627,-5805,-9492,798,9359,3190,-5353,-1634,9700,8457,3145,6707,-1374,-4125,3512,-1062,-733,7174,598,-6896,-6017,-5559,9049,-7722,-1907,7415,-3522,-1309,7399,-8537,2129,4514,-8369,194,6280,1019,-3925,-3509,4225,6874,-2101,3410,6240,-5632,-1687,2018,-2228,-6987,8317,-5811,1160,2653,-8210,7891,-8410,2355,3376,-6041,-6397,-9166,2188,-5463,-2181,4582,5013,4249,6578,9251,-2930,-2318,2894,-3732,1394,-1582,7311,-4064,1581,3933,-2406,417,-2493,8789,7942,-4041,-3927,5133,-4156,-1168,-7280,4222,3328,-138,9193,-667,8170,-6678,5908,8771,-358,-7780,-1417,9082,8311,2179,-3859,6545,-2580,7100,5947,3552,-6693,4634,4686,-1185,-2373,1238,2645,-6755,-5378,5908,3319,-1677,7641,7927,9280,-9906,3553,-2743,5777,-707,-8788,-3304,-3988,-9454,-6342,2597,3084,-4283,-9833,-6822,8761,-8432,8761,-3861,-3852,-5441,-757,473,-4069,3219,6909,8975,6638,-6910,2334,-2238,-214,2677,8497,-5023,-72,810,-9585,7520,-6013,2833,-3783,-7214,110,7544,8168,6923,-4813,-578,-1698,-3655,5413,2069,8391,9502,-9865,-8831,1203,5776,-5756,3443,-789,-4075,9258,-9595,-3191,8647,3583,2898,-1259,193,4435,-2820,6764,-6393,-454,5684,-3837,-5684,707,1841,911,-4902,9362,7976,134,-9551,-5747,7433,-482,-2759,-4181,-3255,4894,6973,-4567,-2411,-5539,-5,-4967,-9721,3175,9028,-901,-7242,-7352,3540,2836,-8149,-7178,-2848,-8861,-41,3189,-4163,-2239,-1424,3859,3291,-6719,-4757,-8854,8893,4654,-2333,-2973,3652,-5847,7658,-561,3865,4766,7697,8378,768,-7519,999,8728,-3512,-1908,-2620,-3455,-1529,-2931,7550,2034,6134,-3543,-2,-2389,-6217,1974,-3112,3270,-1265,-6820,6716,2123,3699,8626,-9115,9635,205,5528,4754,4026,7118,1040,-5533,-9006,750,-220,667,9861,-6726,-8299,2833,-2368,-7335,-8547,5604,-6316,4293,2560,9386,-5460,-3572,7050,9409,-1541,1757,96,-1562,8115,-6656,-9310,-5138,1800,9020,4899,6823,8570,-3045,674,3698,701,3690,-5387,8311,-7465,-2557,9854,-3859,-6363,-5602,-9361,-2933,6424,2079,-7750,1146,1860,9279,6037,-4187,-1717,-8140,-4569,3035,9920,-123,-4576,6334,5121,-7534,7884,-4018,-1717,546,-1414,-7398,1824,4199,-5553,-8000,-8650,3670,-6593,3925,-5934,56,1668,9393,404,-5805,8155,-4145,5375,-3288,139,1142,1777,392,9653,1333,-8780,-1928,-4603,-5126,-6865,2432,7343,-3393,699,3399,-8140,-9743,-9433,-4016,8021,-4485,-7716,-9779,4178,-4081,715,-9357,7359,2532,4372,-9273,1638,4537,8762,1533,-4904,-1929,6970,8730,6213,-9697,-1855,-2491,1400,-4395,3907,2783,-9575,-6268,-6737,-7839,1359,8558,7831,-3728,-148,-3024,-5068,1138,-8415,5928,-6282,-4788,4124,-1512,7660,-1024,-2569,2126,-8321,3941,4988,-8839,-6668,4551,-5644,7648,-9023,-929,4550,-7323,1149,-3204,1273,5651,-658,4432,-3224,-1823,4911,-6520,3338,-9646,2675,7296,-9856,-1264,-2104,5446,717,6001,9399,-9464,5520,227,-2700,-5394,5196,-1672,-4350,-266,6754,-4678,-6317,-445,-4023,-8100,7228,-51,5945,-7327,-8683,-3630,5361,9871,3690,1441,-9358,-2599,-667,-8763,-2454,4632,-5545,2633,-8630,65,7436,6376,-7910,5402,-6880,1597,-3372,6273,-5827,-1720,3277,6737,7214,6155,7555,2864,3553,-2746,6050,-1682,-2514,-6820,4470,-4022,27,-1638,-376,9944,-189,-6958,5994,3896,3369,8205,-8837,5196,-156,-8565,-6837,6495,-5920,3288,4761,-4360,-5761,-7107,5790,-1104,3528,2569,8802,-3396,-8979,-238,-403,3072,-7922,462,7371,2178,7027,6046,5681,1752,3026,-4497,5529,-5338,-811,4401,-9436,5039,2994,-1113,4402,9256,3564,1942,1031,-7557,-2569,-9335,7240,9957,-7005,7367,6058,-8249,2229,9609,319,-4359,-2840,-7870,-2812,1899,3953,-1634,-7903,-6640,4586,-3838,3967,4462,-9744,5224,588,4674,482,9868,7346,8612,202,9132,6256,-5002,-3348,-8038,-2686,-6534,4448,-350,9740,-8101,-8656,-3524,-3647,-1620,-5023,8723,4720,-1777,-5963,-9448,6111,-6424,-6018,-7099,8988,-8003,-2226,9056,-885,-1234,1502,5024,3170,-30,-7246,4194,-3245,4075,-9356,-9400,5161,9383,7544,-4228,-9075,-9336,-8945,-9203,-1302,3700,-1997,2986,4343,7743,6035,9939,3979,8803,-8755,9045,-9475,-4578,8021,8622,1633,3021,7327,5045,-2540,-6156,-5659,-5007,-1119,-4962,-1204,-2560,69,2328,-9868,-3157,-4497,3642,-794,5448,-7854,6116,-499,9553,3617,4081,-2198,-278,7590,1088,-762,-8931,-6255,3110,8711,-2405,6576,-7328,5924,2199,5482,7851,230,-247,9159,9342,-2047,8636,-1614,-5124,6422,2586,1334,-1026,3578,-5477,-2004,-7456,9389,-3304,-7139,3286,-3553,4320,7498,-3833,9212,8994,6032,9568,-7473,8600,-6580,-1931,5312,1753,6233,3221,8201,-92,-9110,6934,1749,-9817,5135,-739,-8737,-6564,-6781,-7534,2632,5205,19,-8375,9605,-2278,2734,-4743,-3350,6960,423,-9547,7273,8148,-9355,-8159,2429,513,4706,-7269,-2221,-5860,-803,9411,8214,2003,-59,-2876,-1518,1365,-1886,-2301,673,-1054,-2065,4106,-3738,-204,-6602,-6411,7822,7748,8974,7586,-3207,-6080,-4639,-299,5732,-2912,-1990,6984,-2818,4058,6108,-7186,2624,7566,-1293,-70,-9410,1804,-2132,-9118,-9389,-6919,2114,1825,7882,-5802,-3846,-3079,1729,3327,4006,-8820,-9363,-8984,-985,-5994,1015,-7356,-1682,-4910,3247,-3530,6922,4864,2313,8213,1862,-6453,-8894,-6828,-3611,-438,5653,-1347,-6548,4133,9831,-3057,-8881,-779,3945,-6740,-7644,-978,-1420,5046,9339,3534,-2609,7962,3646,109,-8989,-6703,3041,-7301,4169,-5832,-6367,2363,-2028,7952,-695,-9611,-329,-6330,4980,8135,-3970,4662,-3296,-8557,-320,8451,-3465,-8433,-9809,4982,-553,-5212,8125,2195,6867,1545,9255,6520,-8373,-1672,-5871,3094,-6094,-6907,8073,-6729,-4720,9681,3098,7444,-1793,6039,6993,-1150,-658,-9296,1749,-5203,7009,4221,8110,5022,7558,-6327,8592,1117,9067,3337,6884,9371,6333,-1669,-9121,-1775,3945,3050,-4796,4763,303,394,2059,2706,-4318,-5520,9168,-611,-4332,593,-3348,3754,-9859,9625,-8789,635,4199,4825,3917,7725,-9919,-6539,9971,7594,3040,-5220,-520,592,-7299,-8336,-2077,-2617,9680,-1825,8119,3826,-6427,941,6122,-7521,1781,3318,2006,-9275,-3286,3274,4165,2671,2005,2995,-6186,-1983,5577,6673,-3834,-7028,655,9585,9380,-8358,-1431,-9638,-1691,3081,-7954,5683,-4406,6606,5791,5262,-595,-1390,8734,7156,-2652,3296,-4881,-7450,6127,254,2974,2524,-1611,8153,8552,-5474,-1721,9655,-2019,491,9189,601,3705,1522,-4370,8528,9365,-9161,3167,7720,-2237,-9754,-9467,-30,2052,481,5617,-8608,6177,-8195,5655,9982,-44,-5591,5366,9226,1058,3568,-6811,-529,9996,4190,6818,8551,1808,-764,-3089,-5544,6974,9412,-8972,1334,7677,-1207,-2615,1728,272,7118,-7836,834,-1873,5114,3877,1989,-23,-6557,1253,-6341,7884,8691,2655,8808,613,756,2582,-6241,420,6250,8654,-9149,-9374,1834,9403,2966,6447,5797,-443,2403,7281,8869,-308,9411,4227,-1069,-9943,-2883,-9818,-518,1420,-9960,3095,1946,-8740,-9094,-8115,2962,4138,-9953,-6240,-4155,-6532,-5604,-6858,-5011,-6497,-6571,-9638,-2638,-3320,-2516,2526,1003,-7661,-1251,-5889,-2257,-1236,-6325,-2118,8673,-9416,5041,4480,-4077,-8178,1396,5390,-8153,-4424,-6142,-5774,3379,-358,-9246,2220,-1843,-8050,-8629,-6676,9298,6284,4651,9888,3092,8865,-3945,425,1580,-4299,-4534,9601,6230,9027,-3312,8366,1186,7636,9661,-4315,5736,7028,-8029,-5171,5229,4165,2491,-7252,8768,3003,6398,7912,-6368,-5992,-9960,5441,-5850,8429,-176,8453,1801,-8581,-6906,4913,-8570,-119,3728,-7797,4452,8872,9148,1222,4310,-3632,5959,2765,6150,4421,1815,2012,-7480,-409,9970,-7351,5522,-9500,-6854,-9498,9857,-1692,-4061,-5440,5146,5432,-6940,4042,6280,3790,-2858,6426,8008,-3181,-5462,-383,-7245,1164,-4444,-5800,-5461,7163,1301,7156,-2466,1823,5403,6492,-7029,-5020,548,-5951,310,-4334,6,-5565,9812,-4832,619,-8805,-6853,175,9354,-6559,6266,2603,6507,-1752,-3270,8903,7985,-4273,-8089,4343,6611,7474,3310,5754,-81,8209,-4508,818,-4084,8667,868,7208,3958,-7273,-9213,-3301,4011,-5389,9648,-6369,7354,-5774,-1532,-4254,8019,4184,-1430,-247,-8011,6745,5212,-5076,3889,4371,-4324,-8602,7076,3422,-2748,6237,5548,-6412,-5377,-1802,1825,-5372,-3155,-8607,-5100,4940,-7997,-25,1877,-1944,-661,-9469,85,-7974,-157,5820,9252,-5072,-2537,5353,2579,4405,-5719,-1842,-4139,-6758,-9032,2136,-255,157,8228,3592,6473,-9559,-711,-4240,2829,-1563,1597,-8127,-4632,-8877,7958,-228,-7571,-9966,5066,-9934,496,6595,7482,2152,9404,-8581,9874,8501,9022,-5676,3119,2079,1882,-9688,-6912,-974,-3897,-6374,4896,7562,-1995,-4473,692,7115,-2044,8984,9009,-6307,-2986,7060,-5688,-8581,-4056,-3823,-7014,-7354,5695,-1764,3476,-2467,1114,1013,1632,-9404,3677,4465,-5633,5838,4520,9353,8495,9473,4919,-4998,-8837,-3183,3772,-357,523,4728,-4346,6100,1774,-9046,5063,-2231,-5508,9822,501,-8491,-4302,7603,-9967,6783,-8130,3570,-6910,1142,-9814,-5493,-5499,3537,-5251,-9219,4504,-1640,-9121,1744,9516,71,-8030,1245,1126,-236,-4875,465,-8791,651,5701,1482,-434,1404,1329,7183,-5459,-8425,4967,-8311,-2175,7343,-2053,-8915,89,5249,6126,-437,-6248,-743,4791,-2705,1768,-4518,-9511,3621,-2152,3774,-2082,-4726,-6764,3450,7020,-2891,4864,6815,-8435,1563,-432,5309,4142,-9960,2544,6700,-4692,6907,-6372,-6783,144,3503,-8170,1901,-4458,-1302,4498,9435,871,-4065,-6744,2713,-1290,-7677,-7573,-4432,-6691,-4612,-94,-6617,-6990,4120,-9151,9414,5949,7209,610,4976,-8726,301,-8702,9245,-8477,3621,-2771,-7615,-2790,1638,-9485,-5858,6644,-3656,7459,-8965,4994,9101,4800,-1508,-1043,6962,-3973,-6862,-9,-9589,-724,9494,-4761,1568,2256,-8108,9500,-5582,5150,3885,4077,-2942,-8681,-9981,-4930,-5581,5796,-4663,-49,3218,-5652,-2483,722,-9221,4410,-6234,5429,2588,2481,8668,-3971,-7460,-3383,6729,-4576,-9076,-3989,-1920,6931,-3701,-3856,5696,-8994,-179,-2470,-9043,9061,6820,1477,-3697,-2296,-7798,566,-4071,-6338,-2847,1063,62,-2311,-6787,167,-425,5678,3358,-8890,-9379,-5780,-2088,4724,2143,-6320,4246,8610,-6924,-7880,-4175,8885,-3060,2650,9603,-95,-754,-4425,-3098,-6636,-4171,-7828,7431,370,1840,1799,8545,-1016,5366,9029,7412,6723,-4140,-420,4678,-7186,7579,-5986,-6794,-643,776,-8080,-4919,-887,3175,-2424,9086,-561,-403,189,2421,-5844,1419,7553,-786,-7593,3759,8820,8819,7505,-8004,8933,1266,-1078,-9246,6351,5128,3021,-2916,-5686,4334,2425,-5438,-9705,-856,7884,-1826,5462,8367,168,-6828,7213,578,-774,7049,-4192,6360,-3763,-915,2251,-6919,474,-8685,-8748,-8588,-1425,7523,-5311,1905,-3574,-9800,204,2526,577,2341,-1763,7653,3481,6066,4673,3212,-7434,-8479,-2904,404,9310,-7248,1930,-7717,-4234,-9949,-5496,-8219,4983,-3923,196,-889,6199,4632,2961,-9894,1135,1210,-8909,2919,-2534,-6764,3973,-2206,5836,7507,-8806,-917,9448,9043,4299,4017,60,5574,428,-536,-9969,-926,1102,-1300,-6069,-7527,3877,-2845,2734,-4668,-2732,-1914,-5982,-5942,5902,9798,6614,174,-4218,-2582,-5841,6950,-9072,846,-3360,-1003,-888,3009,2281,3838,-8643,-7142,-7348,334,-4399,2489,7045,-4929,-4472,5605,513,-7210,-9809,1299,-1606,6930,3374,8777,-9793,-9880,-3719,-8855,3126,-6342,-4108,4263,-9856,477,-8481,6527,6179,673,8898,-9705,7938,6814,-8570,-1993,-1172,-1072,1942,-456,1814,-2763,-6388,-9185,3843,2033,-2090,-4942,-164,-8419,6683,-3924,5197,9144,2487,210,5837,2411,-1760,-9888,7615,-6345,-99,-7384,6722,-5440,-89,1363,-8796,-5100,9060,-9569,-1826,-3969,7367,6429,-3799,-6753,-8123,394,-8002,4569,-1609,-3269,764,5232,2593,7697,1898,-7310,-5145,6070,-6001,4012,-1119,-6341,1993,-3210,3516,-3114,-9758,2183,468,-6277,-8575,-3668,5194,4883,9078,6517,1156,4510,4949,5207,1189,-8295,-9630,4468,-1986,-356,-6279,-1092,-6396,1482,-4675,-1560,5236,7215,-628,-1818,-1201,4891,2773,1410,-2130,-6262,-5432,1501,-198,106,-1679,1541,-7832,3056,-8456,3337,2157,-4104,-4490,-5726,-5096,5147,911,-3813,8043,-3266,866,-9703,-2607,-7855,-5213,-7043,-9605,-888,-3542,-6752,-1810,-2502,3970,3009,-8046,-7035,8265,-1761,2095,7759,-6096,5754,-8060,-1384,-6337,7079,720,-5985,-791,-3084,-8653,370,-5483,-712,-3932,-6416,3059,7598,4418,-5368,-7487,4959,-7056,-5293,-4770,2830,-8462,6777,8292,-5253,-8121,-5181,-7977,9298,2095,-2728,2800,-7498,-9012,4348,-2261,-8765,-835,2559,-3837,2353,1452,-1425,1538,-2191,6236,410,383,8113,-2339,-6749,-9815,1459,1855,5173,-4276,415,9050,-7886,6971,-1846,-8283,5001,-3371,-6380,-1088,-9504,-7428,-730,5,9632,51,6069,-6448,-997,9584,8994,-812,5159,-215,-3250,-3964,-7685,-6287,-487,-3405,-645,1512,7888,-4274,4561,2039,8617,9667,-4186,-533,-5441,-4446,-5987,6361,-134,993,-53,371,-9565,637,-2213,251,-3117,9501,-863,-32,-4032,83,-3580,3633,7085,591,-106,9882,3291,5168,5326,7203,-4594,-2573,9307,9460,6482,4065,5577,-6381,8680,6422,5218,-7929,9131,7817,4563,5226,-7706,-5157,-9575,-9690,342,-656,-9621,2038,8663,-944,4997,-91,-4610,-6366,4343,-3557,-1924,6434,3449,5521,-1445,-5795,4967,300,8628,476,-587,-8707,-3769,1370,-2039,8786,7814,-5993,-9642,4883,-3810,-2503,-4714,-3170,7905,-7545,-9596,-6499,-8598,8786,5629,-6116,-8465,-4767,-6221,-8238,-7149,-6781,3728,-5242,-4887,-1434,4147,-4105,419,7694,-4954,-7607,-3649,-3516,2843,-7619,1775,-7698,5027,8648,-3688,6065,-3321,757,-7974,1235,8922,1093,-5442,2017,5191,-9836,109,2153,-2897,6288,-8304,-2928,2513,3762,2124,9793,7545,-6217,-3277,-8649,-3876,7608,-8988,-181,7758,1354,828,9083,9780,-7597,3137,1275,-5676,-9272,638,-3148,-2206,6170,1045,8671,8905,-9259,282,-6091,6512,-5608,7579,2390,6048,8476,5742,7422,-5535,-9273,7087,-6308,-9880,-3641,1497,-9607,-1139,-2978,5617,-2568,-9145,5739,-5292,-1693,-8301,7062,-6724,7978,1100,-851,-4971,-7822,-7451,9537,-3807,-4275,2985,9907,6397,-8186,-860,697,7681,-8073,4903,2458,-9618,-4399,-1930,-9637,-4593,2944,-3634,-3266,6887,6620,650,2387,-4157,7525,-5600,2722,9778,-9501,9388,-3866,3360,1142,2998,7675,-748,-3289,-2088,-3420,-9096,-9502,153,5710,8280,-2501,-6883,-6747,2423,-9416,8178,5254,1147,3177,6073,9792,9768,-6047,-9797,-1343,5437,-7286,2644,-135,-4053,-158,5492,-5143,-5133,-2202,-3308,-5557,1799,2184,-7856,-3267,1640,-2096,-814,-4069,3839,-8249,-787,5969,8138,7258,-1921,8299,-8282,7437,7807,-1733,7410,-1478,7728,-5906,-3667,5776,-8450,-4453,9050,-6391,-3198,8846,-196,-3391,1252,9118,4638,6856,-7091,3854,90,757,738,712,-4654,3966,-8272,-7744,9773,-7526,4059,-1176,-4480,8759,-8259,9976,4540,5379,-6770,-8748,1474,-4941,-9223,1205,8479,7471,3299,9862,4617,-2037,7543,-7606,5473,-6277,-8687,-2333,1121,1886,-1463,6169,9393,7455,5412,3207,2358,7192,-3859,-7223,-7260,-1731,2491,-4223,3407,-5212,752,8010,6560,-2640,-1223,9060,-3739,-1419,-3602,5229,9290,-1302,-56,-1298,-2915,-7478,1566,1120,-9495,9367,-3663,3965,6569,8144,1900,-7001,-4607,4915,-3486,-9867,-297,-5389,-7406,-4270,-7509,-8190,-7711,6911,-7682,3300,-363,7629,-9875,-3249,3223,8954,-6132,7285,702,-2357,8443,-5372,-8084,-8872,-4896,-8382,2805,8682,-7074,-2825,-5612,-7585,9972,-1195,3539,8864,1618,2828,-2574,-4278,-1737,-1273,-9103,4415,-6793,-3320,-5681,2402,7929,-1496,1469,4104,3097,-4141,-6132,-3905,9421,-4768,2655,-6804,-2855,-2628,-3505,-9879,-8454,-3896,-7284,394,-4748,2227,-4130,-6007,-879,-6856,9227,-7718,4964,-4771,-7442,1777,-4508,5328,-6025,1846,-6408,3923,8335,-124,-6601,-7563,2644,424,-6935,6765,-7274,-6165,2043,-7976,-4657,8633,-7540,-1762,-1166,1111,-3654,1860,6009,-9941,-4172,-6996,-2759,5495,292,-4675,2470,6136,-8546,-3880,-2614,-3326,-269,-6070,5349,6406,-4847,5823,2796,-6395,-2148,-8323,-7031,-3793,6167,1877,-8468,5389,-2441,1210,-5481,-5590,9261,-1171,1457,4703,-2903,-2119,5288,-9796,4168,227,735,-5157,-7196,-4953,4531,-8198,2622,8150,-5973,-1975,-9039,-4594,-5194,4776,9952,483,2778,-1938,-2794,-4620,5223,6043,-7853,-5969,1840,-9897,994,-9034,-4422,375,-3131,-7863,447,1119,-185,-5538,-1290,3369,4397,-8718,-2669,7843,-3561,3731,-8114,-2976,8288,7737,-9457,-8586,-7239,9766,-3395,3525,509,-4225,-5302,1111,-7239,9893,-8446,8434,-6441,9392,-630,8554,6787,5734,-2293,3603,334,-4949,-9971,498,4315,789,8145,9199,-3149,-9289,-4423,-3263,-8966,9066,3904,-8366,3841,4856,-7556,2039,4707,9092,-2486,-7514,-1462,-4252,9846,1718,3243,-1208,-1583,7551,3719,614,1512,7726,-5718,-8991,5564,-9334,-5276,-6219,6211,-3551,9431,-6942,-3670,3616,8183,-6423,-9419,-1395,5333,-4422,-6557,-292,4668,-7766,4305,481,-8040,-2960,7086,-9122,-6585,-6562,7967,-7008,7296,-5661,4221,-7861,-2178,-3042,7932,1745,-9085,-8457,-7855,6881,2702,-2736,8385,-2713,-3907,-4929,-4044,-4290,-902,-5441,8086,-7841,5200,-4420,6650,-1682,736,-719,-3115,-7644,-3300,2677,-8249,4379,6448,-7817,9828,966,-1835,-3030,8688,-2028,9529,-8781,2824,5737,-9812,-949,-9767,-9835,-2286,-4477,4693,8755,-1286,9146,-2750,-976,-2702,-7304,-2385,-7452,-9456,6206,-3266,-4482,-7215,6391,-2337,9206,6324,9929,-3117,-2494,2103,-7888,3297,2809,695,7399,6565,-4314,-9611,-3098,7677,5584,2104,4892,-3633,-1930,-3327,-7869,5488,7993,5767,-3917,2978,-1903,-8717,-7825,8836,5290,1529,-3488,-1016,1719,9262,-9608,2298,8938,-8221,-7239,-9239,1136,5497,-2366,9364,4698,5776,5098,3540,742,7971,3966,-394,9533,-6610,7732,-1803,-6159,4524,-5793,4808,7039,-7679,-7774,-5981,-3799,8658,4318,934,-2181,-7191,-6633,8919,-3376,9453,4307,5969,-6000,7748,-8745,-6230,-9114,-8204,8279,2666,-6529,2430,9396,6218,9192,1557,-4966,3798,-5279,7597,-1883,-7067,2303,7914,-5836,4360,-2931,-9411,-8590,-6161,-9533,-8094,2039,9993,3823,-1818,-1453,-7454,-4094,-9331,-3,-5005,-5660,-6515,-6926,6967,-530,2994,-23,-5999,6649,-8961,-5383,-7814,-446,-1897,865,6608,-6820,-5408,-561,-2600,2498,4692,9803,-2222,-8323,-543,-1378,3858,5521,-974,2772,9599,9900,9512,3174,7677,5587,491,-9848,1495,9004,6405,-7308,7851,-5988,-2740,7509,5143,-9108,-5404,2266,-8552,8638,8886,-2488,8749,550,2666,-2566,3894,-9760,-3407,-7445,5872,-3697,-7761,-1754,9615,4558,3891,-7637,-9543,5634,1485,3885,-5304,2282,9452,2863,9246,-9279,-5614,6128,2419,6593,-3105,5725,-9745,8625,4684,-5958,4049,-8961,-7623,-4030,7585,4407,-626,-8144,-6450,2444,-8236,-258,-5797,-4883,-8622,-1326,-2673,6436,2054,5601,4340,4107,3682,-7212,3011,-9128,452,1129,-8120,6637,234,3837,-5134,6636,-2218,2317,8092,-4711,195,9328,177,1944,1877,3621,8415,3573,1828,-4925,-135,4328,-7184,-2084,-5957,2212,2581,7303,6307,2518,-8575,484,-7003,-3247,9502,7549,-1144,-5548,-9660,-410,-7728,3806,-5265,-9755,8457,-3456,5006,7531,-941,9382,7429,3088,-8716,7755,6495,-4779,684,482,-2043,8163,5500,2239,-328,7810,3044,-3150,-5738,-7314,-5784,2076,-8373,-6402,-9579,7671,-4353,-875,-9302,-1663,-2512,-930,-6923,2669,8596,2021,-8841,8506,-4248,7052,8858,7196,-425,2292,-8988,1365,8740,739,7469,1506,2488,-2724,5805,-8905,8251,5983,1292,-7224,4234,-6514,6073,-7042,-1220,6794,9909,1741,-271,-4830,-4764,-8864,5348,1155,7449,-9684,4949,5837,-738,-1385,2359,8043,-6231,-8213,-7113,7759,151,-7557,-9751,8524,190,4051,-7173,1153,4325,7390,3585,5913,5441,7321,-4543,-5088,962,-226,7425,1949,9013,-2151,-1170,3486,-3794,5009,334,9776,-9077,-91,9717,-1325,-9781,-6512,-4033,2068,-43,-68,-2109,5310,-4992,230,-1859,5913,-4748,489,3975,2640,2629,-7810,6992,6597,7968,922,3500,-4290,1170,-145,2794,-9100,-9095,-5015,-6916,-3665,5135,-6227,-5578,-3170,-352,-2070,-6913,6885,6556,-2038,1919,5822,3055,-5441,9270,3207,-5922,8643,7893,3455,-1278,-8273,-2895,7101,6093,482,5145,8682,-6556,8860,-2881,2027,-9175,-5853,-6716,7408,548,-4277,-9215,-1791,9829,3733,-7689,-4326,-459,-7115,-1822,-4449,-8643,-7181,-7274,6014,5543,1323,-925,2391,-8195,-7437,4409,-9412,-2420,-4997,9759,-6149,6099,1051,-1333,7678,1364,-4826,-841,-6000,-6127,-9974,5162,-6370,-2502,7761,-362,-3732,-406,8819,6040,5189,-218,-805,7933,-6803,-9272,-7229,2551,-7444,8762,-9093,-8970,-6871,651,6861,6403,-2384,175,-7494,4021,2239,4303,3421,-1013,459,8940,7987,9978,-9560,4991,1506,-9729,2540,-3754,-771,-2921,4813,4836,3350,-7914,158,9647,-707,6426,7373,827,-6957,-7649,-7643,5858,-2951,-3721,8863,5883,-1896,-804,4719,-5531,320,-514,-7726,1912,4134,-4541,862,485,4568,-7900,1365,-7917,2991,4563,6909,-1495,-3920,812,4472,-8009,1121,-5706,5972,8132,9633,-9518,7911,-8575,-7266,-89,5844,8339,2635,4102,-8674,-457,-5723,3479,-2295,7904,-8702,-2834,2802,-6613,-7782,-7311,9698,2660,1376,9086,1702,6488,-2371,-3230,4109,-1240,3926,-6056,-6493,1794,4401,-8568,-3795,3596,9287,-4951,-4965,4642,-2172,2612,-5204,-7621,-6870,8273,-8922,-8948,3728,-7080,7412,9077,-3685,-4237,8621,5280,-1789,5339,1877,-6682,-7772,9817,9458,-6124,-3605,2344,8015,-3830,-8246,2812,775,-2156,-6170,7779,2036,-5330,6008,-1225,3562,-2762,418,8366,-3144,-9151,-8796,2411,750,1907,7107,-8691,260,-200,-228,-1046,-120,4278,282,5238,4224,-5516,8145,1158,92,-1896,5417,-1690,-7279,9534,-7841,-7312,-6780,-5780,8295,-8678,9102,4857,1290,-6623,1139,-9450,-3576,-8405,4053,1375,-1912,-5091,-7946,3875,2839,1895,-9901,6322,9412,-7617,-7344,-284,-5277,5293,-2577,-1398,2644,-5429,-5836,2772,36,5896,5234,-4342,-5619,9008,3807,117,-8742,6375,-1351,6529,8977,974,623,-4852,-109,5869,4430,-7001,8235,-6816,2219,-9602,2341,-6556,-9387,8932,-6637,8116,500,-7059,6753,5339,4154,832,-8273,7597,-6251,5170,3487,-8193,9868,-8077,6038,3945,2348,2575,-8444,851,-9504,9220,-5096,-6357,2352,7274,-4885,-3839,1877,9311,6583,-5462,-8548,-2999,-386,1980,7581,-2962,-4434,-9079,-7439,-9694,-3423,6139,7533,2763,-1499,3357,-8418,-8801,7765,897,222,-6110,-8115,-6476,5207,9303,9398,1659,-8298,5498,-3938,-192,-9082,1493,-7034,-8945,-8750,808,2850,-7487,-4479,-7575,8373,4620,4296,-3961,-8429,-2120,-9771,-6517,-1967,-8363,-6633,-7789,1498,-4586,3275,8383,1916,-6392,-6229,-4194,-1937,-9533,3832,-8820,-9135,6917,7581,2663,8192,-9850,-7305,-9617,-898,-7283,-4903,5587,4313,5349,-3392,1887,-4646,-512,-7802,6180,-9456,-8372,-1483,9299,-6346,3457,4654,-5658,3180,9037,9797,2687,-8928,-7617,7894,-5696,-8479,-1778,5173,9384,-9254,-7418,2716,3890,-4207,4495,-4290,6480,-820,5637,-4806,854,-4663,2029,7928,1904,4234,8737,-3497,-4370,-5654,8738,6989,-4173,-8735,2859,-9634,2344,-5707,3119,8082,-8464,-3297,-9910,1835,6384,-8652,399,9711,-4236,8373,487,-9388,7971,3828,4210,9413,4000,-1195,-5832,-5934,1965,-5376,-9699,174,2722,-2396,4061,638,6224,-3379,-7176,-8280,6343,-2108,-5361,3628,-733,-5058,-7339,583,2949,2645,6579,6950,3919,2149,-2593,3239,9662,3878,-3957,-5640,6558,8289,-7068,9846,5711,3731,9207,8346,6605,6343,-4106,232,7713,5748,514,1300,2615,6025,-4879,-8914,-2884,-5250,493,-6369,-4266,-8201,99,9782,-3120,6126,-9969,-6041,-7397,-173,9147,-4860,-6377,9117,5454,-5456,8313,726,-5658,-5080,2456,-8304,-2725,7828,-5150,-8816,-434,-5527,3239,495,-6440,-124,-2281,2735,-902,-6113,-9028,-1248,-6531,-7620,-6909,-4647,-3939,5592,576,7323,8753,-2292,4394,-9426,4493,-1182,981,-767,-5949,3074,-1580,6000,5507,7484,-6977,-850,-9734,-408,-404,-3343,5704,7491,-4081,-5369,9488,7407,771,-2085,-8626,9870,2188,9731,7309,2833,6507,-3120,9583,-127,4971,6414,-6403,1965,4195,1003,-3901,9768,2580,6879,2188,2638,-661,2272,7096,7743,-9786,-7349,-4566,5687,-5955,-4256,6517,9683,7522,-9503,3217,-6278,4704,1115,1169,6470,-5088,-5929,4338,-5480,8048,-100,-6752,926,-8136,-8327,-6719,-6179,-3597,-748,-8790,-1274,-4218,-20,-9253,5501,-1360,8180,-5534,-2925,5107,8660,-4173,-6595,-7729,-3884,-4549,8433,-5539,548,-7057,1203,-6544,7441,7903,2636,-4610,-4261,-2183,-2721,1517,7391,3942,5239,-676,-2716,-6752,9887,2788,-9814,23,-9904,2351,1208,-5497,4019,9070,3156,-2105,-3879,-9778,-1397,572,-2459,7471,-6135,-6193,9523,-1776,7099,1441,7908,-2562,-534,5982,-7190,-4646,6298,9118,-6801,-1227,9662,6189,-4351,-2842,8244,8502,8748,-4580,-4173,8639,-2624,4554,239,9911,6398,-3805,-3914,667,6782,-6319,-6657,8694,-9448,8421,-3309,-8927,-9491,-8897,-7524,5775,-2787,5566,-6625,-1785,-667,-841,9034,-9837,-9255,-5414,4125,-1969,-4452,-1404,4005,619,-6090,-6182,1245,-8186,9284,4901,8042,-5563,-5110,3487,-7174,9893,3634,6800,210,7536,-690,-3538,8070,-4078,-7837,-3310,-817,3685,9166,3553,9548,4424,-8888,4060,6749,-1091,5664,-1517,9293,-9111,-1134,3704,34,3642,8500,-7463,6152,7399,-6412,-6409,-9446,3308,-7298,-8476,3847,2658,-1884,-5301,-2166,-5018,-9153,4993,-2405,9073,-604,6523,-2095,-317,4328,4085,-4492,-7644,-3435,-3622,4620,7394,-4762,2567,-9823,6920,8855,1886,1679,-8563,-521,4643,-5330,2666,-3472,-4490,6259,806,2537,-559,-9721,-1670,-4407,9121,8435,-7628,-2066,-8104,6519,-2824,-9387,2370,-2877,-5753,-4025,8559,670,-1117,851,9257,6659,-87,9093,348,-4008,9241,-6181,-7663,-42,3343,8653,-7643,8175,-8195,741,5998,8708,-6094,-1631,3471,5594,-8974,-5606,7761,9757,3872,-6120,8242,3649,-5453,-4044,6956,-1508,-8751,1267,8115,6876,5711,-9656,5701,6164,-8828,9419,-7005,-7319,1396,5038,8359,-7264,2121,-5463,-1872,6752,-4826,7515,5708,3936,-7336,-4430,9183,8819,7993,-8593,193,-6709,4119,4870,-4005,4863,1723,-2838,-3966,9167,6529,-342,9882,-9744,3902,-6235,4368,-7375,2940,-403,4745,5382,393,5713,985,3111,-1705,-3313,-1842,6898,7339,-7519,597,-2390,-239,-9185,-8371,6184,-1974,-545,-9540,-4324,601,-5405,-8006,-2637,-6187,-4383,8571,-6346,5295,-3635,6178,2153,7284,7376,-2266,-9655,-6418,7783,-624,8645,2484,2211,1819,4199,4517,6840,-3706,-2715,-3918,-3138,4410,4394,-6468,-4986,8657,2254,-7839,7316,5293,894,-3156,1854,1626,-998,6007,12,-3789,-8727,-4446,-7505,-66,4847,5099,1246,948,7516,-4725,2508,-6493,-9406,1535,2066,-734,-3770,1164,7006,-8686,4573,3446,9575,6822,-4889,-8790,-2189,9327,-1512,4486,-7017,-9575,-6909,-970,-380,-2138,1217,2860,8636,4249,-3773,-429,2874,-1798,7989,-6470,7392,-1561,3183,1739,3840,9673,2189,7136,-5482,201,-4300,-547,6902,-3294,9894,-4402,2535,1673,-2165,-4471,6273,-6994,8608,-856,2121,-1918,-1667,-6795,-2623,3311,-2544,5268,-6234,-2730,4552,7650,-2311,-3572,-7755,3011,-3706,6304,6285,-7897,-461,3056,-8863,8131,37,-9225,6981,9544,3246,-4975,-8046,-3295,1351,-1045,-5258,1490,-2067,-5789,4827,852,2462,5069,-7035,-2219,8869,4095,-8630,85,1002,7876,-5666,5657,582,5616,-442,-3724,-4507,-4567,2316,3189,-4755,3796,-5316,7887,-1337,-1814,-8342,-1311,8449,-2665,8744,3722,6247,-6517,8445,2710,4044,15,5361,-9033,2052,5295,-5654,-6836,8964,4841,-966,6618,1646,3687,4422,-9930,5600,-1690,3245,-5319,5928,-1183,-9215,-335,7194,-4833,989,3259,4723,1383,6012,4912,-3839,2201,-8771,-7731,-8513,3457,-4217,-7863,9274,9992,6596,-4720,8379,-799,-275,3293,9095,9885,-4291,-1425,-3099,-4938,-471,3219,8986,61,7843,-7063,-8834,-1190,5136,-5594,6783,-7644,-1065,7979,-6627,-925,1327,8925,9927,-382,-5331,5940,254,7288,-8556,9588,-2284,-3870,-4552,9125,-5461,-7404,-6564,-785,-68,288,594,7011,-5966,-1497,519,6907,4542,-5933,-6125,-9055,-9784,3328,-1121,-5740,-4337,-8506,6476,7659,5740,-1140,2859,4617,-6860,-1997,-6669,-1264,-114,-3175,8014,-9400,2862,1133,-1821,4389,3952,1,7402,7913,5782,-6992,7337,-6984,5108,-451,-2064,-7565,-9838,-341,-3119,5118,2110,9325,9004,-528,-6927,-2567,-4561,-5020,6061,-4460,-996,-1619,-7899,1457,-3614,-9762,6121,459,1905,2240,6122,5331,-5810,-1506,7696,-367,7677,2172,9097,-3502,-7930,-9420,-4813,-9092,-9106,4019,6438,-4989,7421,8000,2602,3016,-4702,2212,6755,7491,-4390,7414,401,-338,-9464,2662,2747,6211,5661,5744,2632,-664,-3012,-4881,-3856,-8936,-7059,7145,-947,9890,3126,2726,1033,7496,4461,9037,8246,5007,-2123,-3942,511,6874,1512,-3207,5815,8439,-4199,7829,1578,270,-9556,-2995,-2156,2058,318,-1976,2727,-5088,-4497,4413,-8983,5048,-2592,-8082,-2705,7009,6622,1887,-4655,5751,-7198,4529,-5724,8467,-7865,2285,-9080,1352,7403,-2372,-9768,-3838,6238,4514,8438,64,-6721,3046,2033,-3532,-2895,-5910,-9988,7477,-5981,6565,-5925,8064,-3403,4763,7129,9189,-277,2430,-3643,7870,-3322,205,1692,-6959,-16,-8215,9512,-4989,-3011,-1674,-7542,9432,8155,-6806,2101,5271,-6851,-6442,2605,4341,6039,-2459,-6520,-6094,-7138,8275,-6110,-9786,-579,6124,2981,-8607,-5413,-5322,8334,4332,6032,3093,-6573,-9105,-6868,-2749,-6171,6589,9948,2466,964,6705,3630,-1390,-1554,4678,8379,5512,-2897,-7612,3115,-6484,-2503,4538,-4524,2855,-8537,-716,7515,6263,1352,4731,-4899,-1639,-2175,-3967,8516,5924,-8256,-8576,7420,5389,-3959,5563,-1117,3535,4405,-4946,-372,-9837,-4238,-3711,-7645,-5154,-7487,4820,-9736,9517,5151,5525,2159,-1928,6383,6246,1312,9299,-36,369,556,-7305,-1251,-456,2091,-3925,-1544,4138,2271,5557,5038,-3738,-3789,585,8158,-9046,-7663,8364,9330,6777,-3087,1454,5676,3814,-5796,-4326,2191,-8788,-4586,-7155,-8196,-7034,-3865,-2309,-8306,6886,-2970,5251,5426,-1669,-5418,-3786,-298,-3306,-4471,5100,-5695,8893,-770,1635,8556,2188,1042,102,-2958,724,-674,-4051,-3411,4467,-8319,-6330,-4778,1788,6328,583,17,-2200,-6665,-4570,285,-5715,9656,1427,7547,8021,3451,-5717,4171,-73,-6428,-2505,-799,-3049,8971,-7224,-1479,4947,5119,2142,-5542,5976,-3126,-1424,2004,9947,5126,3911,5957,5866,2163,970,-6688,-6090,-4031,-3101,8964,5612,-2261,7447,-1107,63,6720,1458,-9425,-7521,1888,-9707,-520,9748,4241,371,-6037,7553,-9435,4579,6250,-3420,-8912,8705,-9204,5523,-8667,7351,-2438,2622,-5522,-6721,-3091,-4979,7119,-8492,-836,-1446,-9401,-5939,6606,-1506,4584,3863,-8703,-212,3251,488,-6278,5732,-7716,4456,-5722,2179,-4100,-3680,-1610,7123,9940,-801,9948,5506,-3291,-5968,-9863,5469,-5733,6394,9556,-9431,-1452,-8015,-2126,-8995,9011,-5425,6877,-1787,-6542,4621,-6825,9800,2029,5493,3587,-6933,-7106,9111,-3598,-3751,7175,1036,-6165,1561,2342,-4291,3552,320,-9536,-3403,9065,7620,-3157,1291,5111,1079,-5662,-304,6499,7810,9238,-311,9037,-9667,3392,-8603,-633,5230,-8852,161,3305,-191,7275,-2711,-1358,-4385,-2988,8135,-1766,-2368,7595,6376,7812,1983,-8775,7251,6538,-9180,-3098,2205,-8955,-9534,2371,-2315,-11,-9348,-9302,-6282,-2382,-7350,7862,1737,6746,-75,7945,8806,5661,3897,-2803,-5003,-8462,2485,-3116,-8609,-5966,-2026,-2985,3805,-1805,-5702,-8087,2177,-8131,-6330,7264,9385,-2694,4644,-6311,382,-1274,-5433,5805,1278,-3261,-4675,-2745,-6175,-2871,-7154,-8786,2816,-6253,4502,5956,-3773,-7715,7102,-9048,-3564,-7393,5654,-1084,-3155,2740,8764,-5110,-6598,4112,2173,-8990,5335,9887,-3304,6728,3277,-5987,-396,1819,-1876,-2155,-1571,-9589,-8235,-2182,8579,-6718,-5541,152,1591,-6994,-5735,956,5564,7124,-5491,5000,-2182,6419,9180,-5387,2983,7568,-676,-6028,-956,-4779,-3795,4391,4683,869,6325,-7998,-2057,9886,5983,-9208,-5231,-1348,3465,-9453,2021,9177,2662,8436,2586,-8317,6797,-9930,-5396,9957,3112,5602,-7976,1179,-7912,-5009,7913,9147,5864,5252,-2102,-7979,4410,-5218,8051,-7899,-220,-9523,-8577,8874,-6216,6567,-7967,1804,3085,-3992,-4928,3943,1901,-3700,-8039,7721,4069,-8653,9099,7890,-8197,4852,2456,-5338,-8476,9557,-6326,-4243,-4886,-8613,8212,-4681,-7036,1958,-817,-5935,2857,5533,-1340,-5024,9029,-4702,1551,4899,9133,9591,-2873,1393,5112,-7898,7899,9322,-6599,-2221,-6902,9258,-9503,-1493,340,-6159,8538,1227,7235,-6115,1745,-831,-2980,-6943,2222,-4268,2408,-2201,206,-8382,-9505,9338,274,9304,2692,-2725,-1853,8089,-6966,-1993,-107,-7352,3391,1309,-6895,9477,2660,-297,8798,7781,-5086,-4972,-773,-6983,5495,5395,7604,-7452,-7375,-1522,-5067,-3652,2123,-5658,-3968,-5719,-1748,-7575,3255,-2528,9875,-9539,9661,3711,-6281,8205,-3908,-1850,-5642,622,-6770,-5039,8323,7055,-9715,-8749,3828,5973,-606,-1237,1561,-615,-6636,6627,9931,-2195,7561,-1685,6829,-7760,3791,-4423,3271,-853,4974,-7654,4217,-7381,7717,-1565,9901,3589,8170,-5786,3409,1796,-1917,4354,-1434,111,1990,-5310,9196,-4681,8882,8503,438,3022,8103,8901,-669,-9152,8379,5298,6637,-8523,-1921,5533,-2952,5429,3776,-1916,-683,2430,-7340,-9487,2856,-8530,7010,-6647,6910,7157,-8018,1697,1824,1842,-6274,-3997,9752,-2789,-2553,-9124,3195,-2511,859,-4213,-9148,5112,-7322,-3944,-4949,-5573,-52,-6596,6999,3974,-6305,-9783,-4309,-2214,8147,9901,-9421,-9791,2398,-717,1061,-3735,-6540,-3102,8416,-2837,-8332,5791,-7052,39,7864,-5271,-397,971,2919,-7135,4549,-7793,-3458,-1223,-892,-2167,1110,6580,-4629,-8245,8757,5727,9648,5481,1554,-9130,-4206,-5129,9792,-7923,1770,7445,-3912,-8594,3562,8391,4110,-9534,9354,5032,1205,-7083,-4580,5587,-9408,-7390,5705,4750,4317,-9678,-5124,113,-6204,-1876,-424,4437,-2476,-8010,-4459,2098,9721,-4242,542,-6316,6880,-7234,6481,-9935,-8867,4618,9631,-4461,-9387,-4580,92,3436,-3519,-6544,-9404,1973,3148,-3266,2219,8365,7885,-4707,3946,-4619,-2217,6991,-2690,-6235,-9426,-7255,8223,-380,-8131,-5487,5023,-4435,-2128,-2712,-3718,-9970,3528,4832,4339,4345,-9018,-8444,-8532,-316,-330,6634,5828,-1056,4830,5793,9081,-9168,2813,-7618,-8319,9073,-7532,5411,5506,8924,437,427,6532,-477,-2824,-6579,6237,9051,5941,6971,-7374,-5706,3952,-2421,3771,5811,9092,3761,-8175,5989,6533,-9889,-4678,-7078,5937,-4106,3277,5690,2942,3759,-5145,-2197,5562,-1841,2393,-3365,8470,7235,9837,8108,6597,-9797,8315,-667,5604,-1196,-9784,3856,4007,9140,-7146,-3130,6357,-8815,-1579,7244,-1270,-1957,-4682,5405,-1466,6864,-6854,-7938,3368,7558,9299,-9111,2442,7555,-4882,740,7025,-2951,-8255,225,-6695,7597,-4904,5291,-4225,1272,-9334,8501,7243,6713,-7198,8467,5059,-9985,-1871,-9002,-7477,550,8247,-7163,6186,-3152,-6496,5793,2531,9536,2592,-6140,-9797,6590,-6215,3017,6350,-7474,-1034,-647,2044,-5177,-7673,-7301,-1981,5666,4806,-9764,-9417,1592,-9960,3402,7031,-9119,-4630,-5869,1988,3022,3608,-5768,4969,4545,8594,9480,9789,-3925,6302,804,9771,-8146,6480,973,-67,8162,6518,9225,-9098,3198,-2052,7669,4,2257,4999,8334,771,968,146,7345,4608,-5851,8392,4530,-1405,7135,9827,-971,5144,-6471,-734,-2822,-7227,-1334,8246,5133,-3504,-7416,8016,2351,4647,-8068,-5450,-7536,-7984,-3221,-315,5356,5133,9501,-867,-252,-997,-7511,-4731,9012,6064,-1883,-5750,3064,6520,3529,6689,-1871,-3101,-8474,-5591,6439,-7659,3958,-9549,7881,6082,8559,3145,-9326,1514,-8829,7183,-2585,7400,-1166,-8332,-7925,7062,-7810,7843,-440,-2222,7052,-3565,4123,6951,-1087,6283,-4813,9070,4947,-240,35,-929,2437,9026,-2460,5493,-1063,5499,9428,-4582,-6956,6186,703,1434,-7256,3287,-5279,1635,-6410,-7614,-6043,2607,-5012,3627,-7098,-4135,-6005,-9398,-3486,-2306,-7741,-1064,1565,-8305,1030,-9759,-4264,6177,-1030,-5245,-5206,3148,-8867,9015,-8355,-9547,7140,-4845,5653,-2089,-8586,3180,-3331,-7188,1740,-7875,-2665,-4221,5652,-3802,-4939,-5041,9801,1941,-6101,-9473,-5051,-9812,-3924,-2761,7901,-8780,-9766,6349,-7609,-2295,1901,-5207,-5548,5439,-9740,-5351,-9201,-2048,120,-8759,8815,-8964,2201,3435,733,6133,7046,-8675,-8602,-5789,4750,4839,8703,285,-5181,8277,9580,6892,-9334,-2379,2290,-3899,-2363,1572,-2506,2136,5085,3657,6209,5220,-758,-6474,4087,-7401,7609,514,-1624,5165,-4117,1639,-3659,4370,-264,3600,271,9007,-3061,5356,-6682,3765,-670,7477,-6709,5013,3677,-6864,83,-2901,-8765,-8642,812,3084,7516,-4144,6183,-1809,-286,-3027,-2416,-2298,2815,3099,11,5143,5148,-4064,4444,-8213,-1373,5236,-7977,4980,8165,-1376,-2722,-8990,-8135,5628,-2590,7244,5930,-6037,-2661,-7967,9750,-5206,-4540,9873,6800,-89,2359,7408,-549,-5817,6498,9945,-8897,-1454,-5738,-6335,2390,-4656,-8762,-3011,-3728,8899,-7888,-9612,1860,-3236,-6783,569,698,-4667,7875,285,3480,7733,-47,-7840,-7180,5576,6307,-8929,-6212,-4992,1666,4840,2782,-1932,-46,3290,7906,-5366,1275,4479,-8523,-5206,2955,5666,-9971,3707,6638,126,4996,-4327,-8926,-5475,-884,-7430,-1877,-5806,-9713,-7877,5950,-1626,-2354,8686,77,2579,8256,5570,7028,-9078,3332,-8244,5968,-6657,-1914,-9183,-6119,-7674,3971,5900,4090,-6667,3390,7281,1289,490,214,6071,-1085,-4588,-1509,-459,-9789,4081,-4702,-9700,-1325,7766,127,-7451,-5115,-5599,-2137,-9195,-9553,162,1027,2121,-5061,4072,-9321,237,7107,-3164,616,-2476,-9633,8767,18,-2342,-9153,-131,7819,1944,-5208,-2208,-2480,-9444,-5983,-5001,-3704,8516,-2085,4998,3074,-1315,1309,-9762,1206,-8458,2414,3364,-6072,3801,197,6245,-9551,604,72,5919,1154,-5186,-3003,-4269,4426,-3566,-7259,-8411,6762,-7973,-3273,5183,-8758,-438,-3716,9680,-3050,-9506,-6715,2666,6553,2739,4190,-6535,-1529,2800,-3638,-4973,-7443,-8882,-8955,5595,2255,-5196,-2583,1209,-8489,3701,-8910,2909,652,-6236,7653,1591,-7536,-1579,-695,-3317,-7937,-446,-5988,-7473,-9089,1299,-8446,-2062,256,3541,8689,-605,-6704,-2811,-3580,-4062,-9689,7522,-4803,-6497,5411,5632,-9316,-7645,5718,-772,6947,-330,-1888,8701,1356,2702,8270,-1812,-9696,-9595,-3956,-8284,5223,7481,1732,6800,-5504,-568,1996,7271,494,-7628,-2907,3563,-8754,-6105,3034,7181,9731,1438,3321,4395,596,-6160,-1302,4732,6535,-3950,6462,-1121,1383,-9328,1442,-6216,6077,6902,1391,2740,-1303,-7384,-9599,-6111,-1166,-176,3985,-1944,-139,5313,6312,4,749,6145,-989,-4795,-8261,-9589,6955,-7324,4014,6760,-7329,-6029,8352,4001,-914,-2335,2955,7643,-6150,-3820,3855,-3792,632,-642,-2519,-8109,6775,-689,2667,4677,6361,5301,2097,-9521,9207,-5705,-6867,-9072,9879,9667,-3609,8450,-9437,-2794,9546,2281,1456,-3632,4447,8511,7505,-7874,-4950,521,5187,-6265,-1704,-8931,6773,-5153,1649,3302,-1275,-7184,1430,9147,1697,9719,-7764,6267,1520,-6496,-1317,6063,-8383,6287,8821,-1087,-214,-8940,-9168,-8068,-2517,8405,-6963,4674,5773,4738,376,4202,-137,7328,-1844,-8690,161,935,-7361,-1675,-5515,7645,1421,9571,7820,4189,-6887,852,824,-8266,-797,-5839,2781,-9739,3364,-7059,4174,-4210,-7937,-4147,-5722,-4697,6640,-8691,-7368,7977,1045,8279,-3762,2527,-1536,-4228,7771,-5197,-5597,5023,2468,9255,9958,-6924,-9839,-5526,5267,7691,-8903,5527,7535,7031,-6248,7897,1394,2840,6449,3408,9594,-3809,-2540,4810,1562,4798,-3723,6886,8168,-3427,-3775,1574,1795,9190,-549,-5695,5920,-353,-2232,-9190,3098,-9972,-5662,-1614,-677,-8456,-3729,897,-7220,-5707,4699,-8964,9578,-9406,-7578,-1011,5192,-1490,9989,-8391,-7621,-7638,-3278,6203,9483,663,8620,4085,8746,-192,-2142,8046,5066,6612,5832,-9299,-5981,-6067,-1330,443,8901,-5196,4392,5023,6283,-7767,8277,-6686,9756,299,9025,744,-4012,-5397,5774,-1544,7302,-5418,-5377,-3566,40,-8433,-9812,-1892,-9905,3034,-2905,7459,-3413,5945,-2817,2220,5139,-5950,9581,3769,5720,-8920,-6241,-6320,-1184,-4036,5309,3829,-7530,-5552,7371,8773,-2684,9545,4818,-3364,-8144,6899,-8594,185,-9272,5850,3222,5056,-41,2560,-7689,1137,-5688,-6705,3254,9157,-2760,7942,6089,-349,-8410,1834,-7096,285,-9246,-6331,2162,7834,-5203,2220,5886,5362,-2083,115,1338,7822,-2642,9519,-4537,-6202,5202,-331,1590,-9363,-7652,9746,1479,-7208,4685,-9801,2412,5420,9162,3952,9425,-9645,-7214,7886,-6603,4477,-9720,5380,-8897,-7294,5194,8036,1430,-3761,-7462,-1132,6248,-6862,6293,-2292,-497,5778,1094,-8205,3907,9818,-7021,4332,-1608,-6914,331,-5060,-7127,3463,-7379,-5885,-9195,4207,1988,404,7049,-5230,6236,-934,-5550,-4531,922,-4785,-8768,6283,-3279,9121,-7680,-2691,8281,-1175,7087,7405,8428,-7005,-3542,7585,-3894,-7677,2411,-9654,5462,6598,-8660,4421,-6766,5709,2687,-6368,2058,3442,-2102,800,-7282,6118,-7624,7500,-2070,456,4255,5863,5148,6010,2646,469,-4503,-7726,770,-6517,-5119,4717,1730,5134,-3626,-4413,7321,7809,3604,-8531,-2710,3223,-2287,7973,-5481,6242,4652,46,-8705,2758,-5069,-1805,1233,-4639,-9769,6082,5848,5942,2731,3715,-6173,7089,-8641,-7288,6513,8976,-5308,-9634,4876,-5467,-6728,-8173,-7130,7079,7972,9475,-1236,-1397,-7145,-4299,3740,3104,-6666,3429,-4934,6315,5033,5128,-9844,-3757,-930,-494,1728,-91,820,9135,7251,5055,-9803,464,7023,6706,-8638,-5465,4491,-8761,9604,-3550,2651,-5849,3785,-333,-3888,-4417,-2937,-2419,8553,8945,-6256,1168,-5733,2576,-858,-1570,-1251,-7606,5972,3612,2252,7339,-5650,6760,-1608,3441,-5561,-5878,8525,4695,4051,7109,-5209,-6376,6105,4336,1361,7656,7120,-3370,-1543,7040,6602,-585,-5832,2522,5853,7254,-6114,-2611,9922,8547,-8457,2937,-7573,7534,-7071,-5724,6655,1176,-4548,-110,-5502,1057,1069,3006,8092,3808,-9084,-8932,2451,-1568,-7276,-8114,-9779,4204,2756,-8026,-5701,-5861,4116,7213,7724,-5627,-4000,-575,-9581,6965,8766,-7329,-3699,-2998,5175,-845,8188,-7540,-7915,-4500,-1613,-5800,-5333,-367,-1973,8482,2214,3938,-6625,2263,1878,4793,-7292,-5225,-9235,-5471,-5625,-1249,3034,-8762,-2374,987,8506,-2063,4245,-7349,7339,-2478,4990,-1008,-21,-6249,-2952,-815,-9580,-5053,-1971,-1245,6830,-5119,732,-4275,334,-7867,-1107,-4791,-6092,-9160,3707,779,-36,3217,1140,2985,-6216,7295,-4492,-5964,-9784,929,-1580,390,7272,3833,-689,671,-8923,6018,-3527,7805,9471,1252,-9461,-2912,-6544,-83,388,-3343,5691,-3833,9056,-2921,-7167,8385,2617,-3665,-9120,-531,-5753,4634,4594,6631,7465,-5633,-5475,3167,5472,-1413,-1448,9822,-4359,-2236,2047,8054,7832,4628,8671,-1816,-5356,5258,8273,3876,6837,-5326,-6739,-2662,9106,5691,1682,1955,-2110,5334,-3751,2677,-5490,-6188,-6213,5189,-2972,1831,9612,8800,8839,7892,220,4449,1666,-4069,9420,-3545,-8699,5031,-674,-2374,-6593,8980,522,3563,2625,8329,-5172,2030,9615,832,-4541,2442,1549,2194,9955,713,-6445,-7160,7051,-5029,-7612,8291,-3961,8067,-7655,1122,-9363,5335,8118,-3230,1489,1720,2721,4131,-3854,3915,9672,1385,2774,-1040,-980,3199,-3869,3584,7072,-2280,8859,2014,2123,7364,1304,-1705,4945,-6923,-9955,7082,-6590,-1114,254,-2899,5840,7656,-5314,1501,-8640,5529,7126,-7266,-2944,-6749,-9072,-789,-1023,-1894,157,-8283,9294,-1931,-7606,3880,5193,-9566,1847,1369,2756,-884,1692,9191,4497,6500,-807,-9614,-6670,446,4412,-8417,-5576,-5088,489,1977,7566,-73,-6609,-759,7408,-100,-5751,5254,-4141,6927,-6344,-3880,-8835,9017,-9522,1643,5833,-1007,5097,7317,-7683,6799,-7694,-6442,-3239,6267,-6569,-7536,-9422,873,2554,6403,-6194,6272,9641,3526,-9105,-9646,9383,-1575,101,3032,-6599,7113,-1228,-4816,-2027,9256,-2367,-3521,5276,1522,-4374,-3605,-296,9829,-6786,-9441,-2046,-797,7405,8668,-5730,-4756,1446,3516,5716,-9069,-2804,-4493,-9704,-8908,5887,-2877,8802,2249,-8918,-1588,8191,-2738,-6942,9917,-4209,1391,-4385,-8848,-8581,-9461,-5103,-445,8587,-1039,-414,-7792,-4838,6907,4152,-7645,-5650,9258,2737,1791,9516,-8021,-8813,8280,-2947,-5167,-7571,-1368,-6670,429,3510,787,-2591,7165,-652,5448,-4819,-5192,8214,-4647,-2626,-8274,6767,1555,6902,-4316,8537,7296,1502,-3934,1769,7337,1345,-8000,-9601,8728,-7323,-6488,-6497,8758,-1429,7928,2961,-1573,7005,9556,-818,7267,-2809,7775,5069,4107,-8401,4246,6774,4780,-2150,-2929,-6910,9665,-2779,-9997,-7765,8907,-5922,-9976,5110,7143,2604,-7414,-6431,8768,-4951,7995,1163,-8975,8408,-6181,-3955,1076,-3484,1299,2541,7090,-7749,-9538,-7749,344,595,-98,-6507,9304,5714,5052,-1062,1467,-1425,-707,7924,9477,9112,862,9491,3678,4452,-8758,4985,-2268,-6730,-6501,6554,-2057,6345,3462,-408,-1115,2639,4060,-1243,-2309,1447,5807,4901,7339,4705,7949,6300,-1577,3410,-7071,-3201,5810,4710,-1786,-4922,4517,2887,-262,1494,9086,8700,8339,7517,-7210,4577,-8381,-6952,-1259,264,3836,7215,3972,8284,-3926,-6116,-183,-4798,-9843,984,-8353,-6223,-9557,9420,7078,-9321,8038,-6671,-6530,-8143,-7204,6025,-5641,5487,1137,904,-5093,-8130,-1096,-7150,-9260,6534,4890,-4697,-4207,5287,2503,-6526,-8725,7011,7745,-3552,-8404,-8936,2264,-5561,8859,-1652,-4237,7558,828,2091,7880,-212,-9191,-5446,-8576,-2347,9663,7347,8656,-3557,-3576,4712,-8160,6520,59,-4407,3584,-8646,-5934,-8474,-581,3673,-8611,9404,-8390,-494,-268,8520,1208,-3055,-3587,-6859,9881,-8958,-3321,9594,-8276,-6926,4289,-2286,-5330,-734,-9317,-8326,-8186,473,5070,2720,-6074,-8118,1051,-5942,6138,-4228,9332,-2152,-7277,-3077,8486,-8131,-2727,8612,-6827,5684,5488,3943,1868,9691,-6352,3903,-5042,7193,5971,-4483,-3518,7688,-9467,5685,-5321,-802,9882,-3384,9613,-3442,-9228,6246,-3409,4234,3617,-738,-4331,-7851,6797,-2756,-3375,-9815,970,8337,8871,-2229,-4515,2234,7960,9417,5988,6327,191,-5932,-9037,-8630,8191,-9763,828,-3734,9298,2882,-9910,2657,-2629,6954,-3392,-7531,-9270,2322,8836,-575,4342,6753,-9470,-7721,-817,8883,-9612,3860,-532,-377,-7582,9554,-1901,6375,-272,-8425,2608,-6789,-5447,4881,-278,1484,-4151,-2890,9227,-9611,2516,-9984,-524,6003,-1855,9212,2329,1400,-6267,1137,-4417,-658,-555,-6155,-4325,-6199,9579,-6819,-5031,9347,-4614,-630,5975,8986,4200,-4636,5779,9587,7645,7715,7511,-7582,3129,-4713,4519,-9660,6283,-5228,7261,3966,1351,-9217,-3065,-5749,-5273,-3557,-768,8135,3120,8869,9112,7417,5126,-3446,-4982,7699,-634,-9116,-4621,3032,-654,2712,-2542,-4966,-9398,3943,1911,5315,-3362,1402,7774,7640,-3020,-1279,9449,5200,7909,2031,9773,-4157,-7633,-6932,8381,-1660,4702,-6822,7102,9382,-3431,-268,-5551,-214,-9564,1670,-480,6307,1387,-9494,-6410,-4197,8663,-7679,3365,2454,-960,-109,-6072,8503,5431,550,1427,5452,-9578,2608,-9164,1331,-3209,-7369,5092,9881,5249,6905,-4201,-1993,-4489,-1815,3139,457,-4671,297,1334,9950,-9425,-1793,-7917,3025,6156,7987,-7121,-4287,2649,-7321,-9926,6812,8514,-1230,6687,2717,6199,-9891,-2783,2943,7159,4058,-1267,4564,6819,-5167,-2555,6065,8956,-6084,935,880,-1718,6914,9687,5576,3114,7011,8223,-9297,-2149,4332,-546,-9163,4019,1485,-5089,-5489,-9463,5927,-3166,-9120,7008,-2747,5239,2825,5873,6336,1960,-162,-6822,-576,3054,7458,-9566,-5356,-8433,8125,5829,3364,-3945,727,2532,8794,-1279,-4869,4745,6214,2411,5786,4447,3569,8238,-4675,-3340,-7330,-4176,-3281,7735,-4384,829,6040,7415,7664,4083,673,-1851,-5022,-4214,-7200,-6799,-8996,-1257,7271,-7258,-7227,-1351,-7039,-9943,-7123,7341,8963,3760,6671,7095,-4012,-48,-8223,-2796,-1615,-1007,6135,2738,-8880,-4329,3954,1277,-3745,-6056,-9979,-9305,3313,-7416,-8413,5477,-8410,4965,-4178,-9514,4104,4235,6175,7988,-91,-2798,3950,3643,5334,-4705,3498,2989,8563,-2065,2975,2218,-8789,9901,9318,-3549,9544,7769,-8714,-5220,-2467,-9055,-3676,5988,-3702,-9437,-1360,-8168,7823,-9091,-8723,7426,-9138,2722,5272,-6989,3485,3552,4458,-8490,6403,105,-2357,-5633,5116,5092,-8867,-3555,-7182,-8914,-7030,931,577,-644,477,-4484,7115,-4645,-6587,2728,4282,-686,2317,7586,-2020,-9880,7849,1027,6718,-4492,1172,978,-8740,3116,1207,905,-1855,99,-8449,8452,-7608,8397,5419,-525,-984,6526,-6585,6067,-9507,7455,9452,3272,-8827,-3557,-1722,2210,-9754,1787,2399,-4611,-3066,-7447,8155,-2088,-3068,-379,3931,5105,-412,7503,7153,-1260,9197,782,284,-5571,-9425,4804,-1514,5138,-4740,4832,-6497,-9437,-1777,2198,-4330,4624,-1692,-672,-5760,3914,4412,-1570,-398,-1663,-9215,-4371,4567,-5729,-6663,-5720,1814,-541,4091,-9455,7072,4249,5181,8363,8894,3883,1474,8696,8614,5032,5912,-5002,-9438,9095,-3235,-9942,-259,-4525,2045,5209,-1130,-7140,-5205,6947,-3760,-8329,9336,-3065,1728,-2782,6569,-3844,4210,3493,1962,6279,1239,-8717,-1501,-7727,-229,5915,4553,-1400,-1745,-4939,4352,7757,-375,8884,321,4454,7452,8572,9420,1696,8379,-8843,3959,-3255,665,-6352,4831,-6012,-8318,-2997,-8850,3395,-2247,9154,-3466,2977,-1781,7094,884,-2455,867,-4758,9421,8516,-8663,-1732,2334,-1314,-5511,4629,-6992,-1015,-8052,-2565,6753,6423,2416,1859,521,8528,-5823,-4305,-2266,4236,3315,4325,-9401,1891,4658,-9149,-4658,-6204,-2854,-9784,9167,-8325,-2334,-8821,2776,-9484,8253,-3875,-3285,-5810,-5509,4610,3999,1731,8994,2063,3676,9549,-2075,6132,238,-9284,-1682,-5398,4599,4104,-1486,-3563,3940,-2801,3009,-9663,-3397,-289,-9306,-433,2140,8698,6029,-180,-3381,4744,8826,2568,9643,3542,4129,-8311,7644,-4717,-2696,8674,5872,-1320,-4468,-1148,-9076,-558,-7509,2265,-8016,5678,-4035,-5704,6078,2681,7987,-8966,3666,1923,-4676,8180,-837,-5149,-6247,8414,6458,-8125,-4110,-8394,-7544,4268,-6307,-3712,-8365,743,8337,6731,1846,3062,1215,-2929,5773,-6754,4429,4918,-604,-6797,-3461,4788,-3875,6553,6871,-2736,-4275,7595,-7876,6334,-2758,-786,-9339,4628,-2576,-3913,450,-1217,3556,-5903,-2562,-727,-9928,6463,-6536,5351,6456,8199,4334,-5943,9066,6737,-9577,795,3081,-9417,8516,-983,-5492,-7974,-8829,-6981,-8268,-8865,-866,-3442,-5452,-680,-7821,9913,-5044,-2217,-2911,708,9088,-3831,-3446,4089,-9703,3428,-7279,-1102,1952,-6999,5783,9057,-2012,-2292,1866,9027,-6330,-7141,-4886,-740,-2421,5072,4867,-3008,-1643,-1327,3682,2579,-8265,3577,9396,5118,-4802,-7755,-7889,9936,5054,-7879,-3038,-1482,3103,-7808,-3505,-3278,-1479,-3450,-3396,8590,564,9323,6935,4041,-9356,6157,3687,-186,-9843,9262,2792,7355,306,6690,-1221,-3650,5354,7351,-3730,1967,9705,-2871,-9638,-9906,6358,3311,-4484,2294,-4274,-749,5175,-1245,-134,9661,7601,-2773,3699,-2854,4217,-8340,2688,7641,-5425,-4540,1191,7097,9199,-2710,-9779,2526,-5558,-6540,6040,4001,-7132,-7061,8258,-5139,4378,9782,-8703,-3925,5011,-1467,-232,2473,4367,-5961,1614,1373,-4931,-3469,5837,-8195,-93,6794,-8836,8029,5633,-9121,-769,981,-1629,4301,-9793,3879,-9551,2916,-3373,3980,5032,1701,-6957,-3190,3637,8359,3282,3681,-4980,3005,8016,-9087,2171,-4081,-144,6232,221,2798,-9242,-3017,6278,8652,7110,8702,6803,6329,-7626,-4984,-9495,-4029,-3770,7388,3582,-4042,4808,-3623,-2276,2440,2820,4061,-1000,7071,-4238,-7722,-171,-5230,8743,-2838,-680,9080,-9134,2013,887,7282,-7677,3406,460,-235,7864,2641,6280,-6229,1672,5412,-2815,3272,-7228,9314,3928,7769,-6646,-450,7922,4941,-3624,-5204,1290,-8218,-361,-2451,8194,-5607,-56,-5168,4777,5702,-2630,2756,-2647,-7424,5927,-97,6512,-7704,-5996,-5608,-8181,6526,-7115,-5538,-8978,-6670,-4638,4453,9158,5771,-5802,518,9840,-4423,-7449,-2321,4637,-4935,2423,-3720,1270,-2724,1694,-7678,7351,-1586,7408,-3289,-2662,8031,-8803,8091,-5360,-9328,3212,-5815,4569,-1961,6224,-1890,2333,-6797,-7995,7363,-5254,-3720,8360,-2841,6840,-180,-8445,-2205,-9867,7329,-6865,-2257,-929,9637,311,5650,2722,6566,7089,4122,624,4074,9685,-816,1921,4800,2434,7280,9874,-3379,1929,-4508,-2697,5330,-3142,5543,6013,1000,9152,-139,-2930,-7358,-6403,2369,1417,-4849,7916,-3940,8138,-2570,-2048,-7533,-1648,-4302,-7316,7954,8978,9933,-6927,3397,6452,-4832,5217,-1277,721,9805,5397,-5908,-7789,1753,-9480,4471,-8577,3576,-794,4992,-447,309,-6842,-1935,5880,9984,-1478,-9349,3144,5807,-9187,-6650,-5065,-2172,-2036,-6231,8202,-9241,-9789,-4464,9852,-399,-3456,-8746,3855,-6927,-7598,-8253,-198,391,-7438,8031,-2355,7301,-1211,-3780,7892,-356,2137,9844,6335,-6583,-951,9820,-9721,6619,-3391,-4064,-9533,5907,963,547,8577,8714,9711,3785,1226,-9139,-3489,-2554,-1667,16,-229,-499,-5565,5183,-4046,-1562,-751,-5213,-6175,-1155,-8023,-8351,8177,-4835,-8819,-5384,-5147,-2896,-3034,786,-7307,5429,-1284,9345,1563,-2515,-4205,-6542,-1739,1962,1546,1085,7282,9938,6150,-7366,-8951,-3617,3705,-3685,-2190,-9412,2882,-4592,-3993,733,8587,-9739,-4,-2748,-7372,-9807,3434,-2394,-858,-9365,2404,-4578,569,-4163,-7941,-7381,-148,-1389,-3855,9369,3588,-6500,-9979,7996,-8592,9888,-1810,-6560,-603,-9114,9600,-9343,2891,-3094,1928,1395,-7801,-3963,-7264,8135,-3396,-2129,-7534,8202,6747,-8712,1074,-2085,5415,5148,7906,-9802,-241,4562,-6754,-7645,6927,-4727,2403,8657,3915,7601,1223,-5165,-9146,-456,7403,4540,2569,-1792,7236,1451,-501,-5470,-2912,-4735,-5478,879,-9932,1676,-7203,-6034,5634,-4919,-5947,5891,8015,-5069,5784,-1946,8163,-3603,-1405,-2778,-9092,9198,3336,-5005,9315,8236,-7894,-3023,-3644,-1017,2807,-9237,-2757,-5937,5269,3419,8106,7684,-2369,-1284,-8328,-7873,-6465,-765,-8142,-3012,-7945,4586,5545,141,8806,6043,9250,8761,5036,4674,-3553,-9011,8157,9670,-6192,-8863,1525,3596,-5190,-8762,122,6346,6240,-7450,3705,4194,-3199,-4833,8680,-5485,-5587,-772,-6861,7334,-3357,6576,-5513,-9631,1747,-223,-3011,-2821,1070,-9573,-2522,3582,-6263,7,-8870,-7228,-7282,-9466,9721,-7239,4180,-6213,6633,-4643,1761,-4108,-7061,-9155,376,6272,-7451,9559,-1842,1907,2055,-706,2504,3311,4243,-5250,-8612,7757,5348,-8827,-2605,-5624,5765,-5886,-5348,5797,-6461,-3664,5789,4503,-8755,-6106,6607,-393,6562,5578,-4058,-2878,-2657,-102,-372,823,-9170,9288,-8818,5101,1007,-142,-628,-6053,-8527,-3035,-7155,-5698,-8480,-8335,-7991,6356,-4494,-1141,-6794,8134,-8544,1087,-3900,-1464,-7199,-3446,-3249,-7407,-1631,2255,-7113,251,5267,1301,-8218,970,5882,-8819,7965,372,8604,9951,-6754,-9824,5357,6507,1754,-4387,4255,-5724,-8663,9436,-9260,8568,2377,3203,2026,207,5298,6062,-10000,125,4864,-3183,-163,9282,-2011,-8232,-5002,-2988,-8296,-9668,1504,9346,3378,4673,-8637,3272,6582,-8411,-5772,2078,-5630,-9931,4919,3914,8206,3017,-1867,3985,-302,7628,1702,9137,5569,-8990,6181,3641,-4880,3925,-8932,636,2289,-5231,4117,3814,6571,-8964,-1598,5824,-995,-6984,-8075,6690,-222,-3203,7653,415,-409,7379,8269,-9601,8175,-2497,-2639,-2792,-3370,5248,-9483,7946,248,709,5409,-2750,-2401,-9427,-6473,-7812,9326,-9568,9898,-6895,-1956,-7511,531,3722,-8478,9498,-3450,3822,7884,571,5684,-3175,1638,7689,-681,-2642,-3594,6480,9211,8052,2697,-7523,3389,9288,5280,-7735,-612,-3168,-6446,7496,9226,8532,-500,-2072,785,-6461,-1195,6106,-9223,-2191,6342,3101,2799,-6705,-6887,-3236,-8907,-4769,-8848,-9676,803,7987,-5674,9662,-2007,-5216,1178,-5401,-7459,2569,733,5472,6628,-3118,-456,-5908,5625,1102,7295,-527,821,-4037,-9030,5434,-7044,-2202,1184,9533,-9284,7643,2014,-4664,9518,-5976,7815,-7863,8495,-4439,8982,-5781,4521,-7106,3023,-9244,-8518,3743,1276,-538,7704,883,-5095,-8450,-6056,4379,2739,-8167,6710,3957,626,-2209,2532,-6967,-7275,-4828,6963,-4120,-818,-1325,8138,-7786,-8758,-4367,4638,-2333,-5189,7860,9650,7318,-1068,7646,1113,7878,-5412,-4391,-4243,-7910,-7061,-2151,1055,142,9932,-7216,1771,-6828,-5539,-3858,4016,-8072,1812,-2826,6815,989,-3558,1822,-1570,-2083,-3250,9499,-1368,-2613,-9154,6507,-7654,4649,-8656,9993,-591,5713,-9143,-4475,-7265,5606,-4471,-8961,7002,-5168,815,-8016,-1189,-3849,-3347,-7975,-8194,-4424,9564,-4158,1492,9035,-5094,531,-3253,-8805,6698,-8216,3541,-9255,9677,5958,8234,-7388,9337,-6752,7570,-1674,3994,-1765,-8716,-9950,-2943,8555,9505,7029,-1169,-2107,-1478,2861,9702,4498,5486,9095,-3230,-7954,2790,-2909,7992,3375,-8898,-9445,-3699,5808,2964,-5050,3436,-1934,7303,-33,8514,2772,-152,-1126,1281,-1228,307,2315,-3810,-9522,2959,-6477,2550,2456,956,-811,-335,5860,-7299,-5589,-7,8145,9679,5801,-2404,-4202,2965,-2903,3615,-9027,-7098,-1046,-9072,3608,6454,-2735,-1490,2337,3078,2631,6028,1881,-5108,-7787,2572,-1757,-9433,-1450,-2941,7525,-8036,-9839,-7605,5018,5008,8342,-834,644,1053,-7163,-4219,-4972,4942,-9866,-8717,3283,-5353,902,1887,-4880,5894,-5165,-6918,-509,-2496,-8256,497,-5657,-6543,6226,-1683,-8189,4671,922,7846,4843,-9580,-6844,-9480,4572,5277,1379,9387,1729,1428,123,9303,-9046,-7892,8850,8895,3820,7302,-7058,-3891,-243,-9290,-6250,-665,-2134,-3374,7328,-5396,7234,-462,3695,7475,-1525,-2862,3745,-2205,-5817,8119,2704,-358,3563,-1309,-7114,8049,-2751,8897,-9764,-2387,9550,3699,-4248,4726,3284,-318,-4928,-8130,-3638,5295,4048,7430,-8961,9520,-5422,-4380,-476,2621,-3176,1535,7329,-7735,-4302,-3607,-3597,-4092,-4080,6643,-600,-8995,182,-3731,6377,-7695,3755,-3855,-5197,-1351,-225,-4628,2445,-8721,6795,600,696,-3291,9274,-680,296,-7235,-1777,-8726,2190,-9265,-659,2351,2476,-8044,2084,1779,-5314,-6284,-4185,-3827,-3452,3844,1526,6532,-9193,5674,8788,6786,8504,3241,-4303,-4176,-2752,8501,2801,8799,2987,9647,-2714,9906,589,6350,-5898,885,6957,4028,-3008,-2375,1298,-6969,1885,-7117,7576,6334,-1430,7012,1870,-140,8358,-9185,9023,4202,-7724,-7676,7308,657,1652,-7568,-7382,4881,-1548,376,7108,-990,2455,7755,5667,-694,-5181,9897,3852,-9705,-8343,3276,-7705,1033,-3110,-844,-6756,2389,5759,8341,-8261,-2650,-5525,3335,724,-7386,1473,-6667,-4956,3684,-4160,3956,5978,-2517,4654,-3466,-5284,-2937,-3358,-4264,-8433,-3646,9771,-9586,-1153,4345,-5035,2393,-3026,737,1318,5995,-7238,-4490,-6532,-480,-1683,-9810,4662,-7281,9417,1978,-4946,-2848,-9612,5964,-9174,-7454,-5366,8586,-5439,-2287,-7258,3418,-4951,4412,2926,-1521,8066,-139,4616,1466,-3813,6063,3033,5706,3730,-5848,2746,-7561,6499,-3101,-6820,-8246,8614,-1946,2437,-3356,7194,5835,-1002,-7813,4470,2354,2874,-4848,-7698,-6689,-4550,-8479,-8217,5960,-78,4823,5793,9000,-6974,8524,8083,-1047,5635,-1641,1761,-4820,-2402,-774,9788,-7477,-4626,3531,-926,-6049,-1656,-2152,-6766,-3855,-5529,5678,-4034,-1419,-8159,-7365,-8161,-7645,9450,-6318,9145,4325,7243,613,9202,-3671,-5364,-841,5185,-7397,-5597,8249,-106,4356,-5535,-7193,3733,-7483,532,-6573,4485,-4735,-7430,9353,9476,-3936,-7177,823,-8038,-7849,-6761,-1970,-6,4654,2548,9803,-9805,8278,-1491,687,969,977,-2156,518,-1582,7774,-1925,1418,2753,-7938,2484,-6892,-3669,1759,4301,5202,-2029,-6041,8490,-6349,-1909,1015,190,9724,-9120,5478,5978,4528,-2939,6831,4927,-5674,5585,-1461,-4588,-2031,9927,2232,6869,1553,192,-2263,8759,-6957,-2597,-6007,-8722,-8976,6062,-1441,-1086,-4303,-960,-8825,1096,5115,-9593,-508,-5429,-7880,214,-6406,2534,1524,9532,4,7516,-6915,-6952,-174,5529,5329,1642,-3659,-8455,-7708,9074,8541,-4737,2410,3137,7254,-2323,7878,-899,8575,-2272,-9130,-1940,7882,53,-6628,3706,-6050,-373,142,4881,1594,-8511,2004,-8720,-9760,9259,-8134,-688,-7083,-1851,-3511,-5281,6167,-243,8471,-7069,6925,-6461,-1546,2011,6566,6086,-196,3283,8769,5085,973,4071,880,171,974,9060,427,-7526,-8599,-4269,-5082,9293,8484,2233,-2846,-9371,7888,6056,-1443,-7863,-1914,2742,-9694,8985,5393,-3908,6441,-3759,-1427,-8638,-6901,-1825,-3354,2337,-9924,-5004,-9728,-9376,-9546,-7247,-8713,-6078,-7877,706,-5920,-605,-5653,-2414,-4675,2151,-5084,1798,8129,4710,-3368,9892,-5981,-3841,-4521,5053,3859,8851,5852,4585,4551,-7881,1416,4375,-1801,-5362,-8998,973,6512,4949,-2828,3691,-901,7744,6345,-8644,2032,7241,-2760,-8529,2240,9026,-2198,961,-1695,-5325,-4686,6607,-3416,-656,-1136,5348,6673,-3797,25,-5888,-6095,-8299,6960,-4161,1651,8230,6907,4518,9958,-8557,2170,-6457,6891,3820,313,7018,2750,-4472,-8892,7942,9233,-4349,6901,-8565,-3641,8184,-9491,293,3840,6844,1406,4024,3877,3217,-1942,-6884,784,9967,4543,9777,-3057,-8645,-9160,868,2927,6838,-7284,262,-243,-97,2325,-1237,-5518,-7148,5164,641,9,-4826,6182,-8315,2848,6772,2116,-4172,4924,4856,-2527,-633,8513,-4579,5835,-4206,7228,1537,2937,-6271,-7885,-5340,9165,-862,653,2504,5623,9452,-1667,291,445,-2811,-3256,-5873,-7664,-144,-8410,3144,-8028,7614,-5105,6666,6534,-9417,3894,4598,-9375,-4698,9293,-2400,-7216,-6352,4129,-1021,5753,6963,-7959,-7424,-5646,-5384,2765,-5328,5184,-6831,-4328,60,-7537,1772,2472,-6263,6181,-1626,5741,-757,6523,-6110,6586,-2477,-6861,7945,-2336,658,-6163,-5205,-5499,8028,9459,4876,1491,-3699,-3303,6725,-6671,-9189,-8779,6178,-6067,-4856,6719,-1473,6682,-6395,-8993,-2494,-7742,8436,-4680,8752,-5381,-3387,-4267,5666,6249,1046,5458,-6825,493,4391,-2122,-5358,3010,-3441,-9959,3922,-846,-6298,8970,-1717,9998,1104,-6090,210,-3129,-4700,-810,8092,-7874,-1101,-5885,4664,-8383,7449,-9800,-7043,3212,-2767,5573,7184,-8018,7505,3075,6009,9475,-227,2004,-3645,-5501,3253,-7767,3788,-456,-3579,7071,-1060,1945,-7380,2199,1578,-2283,-6153,7233,-5259,-308,-4586,-3193,-5554,-9152,-5421,7252,-3044,8592,-5219,6045,9444,9455,3425,-2798,7926,8318,5924,2449,7879,619,4245,-8550,1962,7309,2949,4288,-6796,-7897,8286,-138,9075,4035,-6512,9122,-9068,7062,-595,2218,-6332,-8031,8553,6839,-3792,7079,8232,3232,-8448,-4077,-3869,6132,6532,-567,-4296,-1381,-3993,4472,-3154,6725,4336,7326,-2490,5498,-439,-26,8203,4981,-5086,-4150,-6955,6876,1801,7293,-451,6684,3936,-872,-9166,-8104,9809,-4798,-1697,-2224,-6086,-9792,-4780,5176,-4363,5739,3740,-5313,435,-6491,-4405,872,3159,4947,2335,-2444,4053,-1228,7918,1026,8651,-9657,-7154,4988,-9828,-8510,-3629,7440,6486,-8659,7523,-4670,-4747,-8122,4872,8313,7310,3846,5813,6892,-2931,2237,610,1398,5160,6022,8990,8252,1598,-9787,-2310,8539,-311,9306,4556,-299,9696,6575,744,-1774,2323,-1411,7698,3290,-8275,-7372,9555,-9472,6451,5950,8711,1141,1397,-5089,7489,-3914,1844,9267,9805,7666,-2344,-7,-620,-4112,7197,2101,-1819,1817,-2645,1419,-345,174,9698,4047,-5478,-8031,7458,-4831,3272,-8412,6525,9830,-322,-2388,1361,6433,7791,-3849,8051,338,9341,793,6549,2917,-2540,2736,2297,-5237,-2303,-6723,6713,-4042,8669,-6713,3083,-4032,-3760,-8327,1863,4637,-5339,155,-4033,2111,4657,-7813,3229,4789,-6403,3688,-4635,4381,-57,-1530,-9693,8096,743,-2247,7572,4855,-3934,-1072,-4984,288,-5358,-1465,-9224,-7917,8650,1741,-2852,8379,-3737,-9434,-5354,-9490,-3160,-6002,-625,3032,307,6222,-6645,6557,-2373,-1872,-649,8307,-1805,-4002,7400,1067,5971,-8893,-2829,-546,-5842,2038,7868,8701,-2728,-1085,6533,5477,8607,6225,5419,2419,-6801,6503,-3490,715,9218,8066,240,5887,-1039,-6788,7573,-4133,-5608,5147,941,-476,5517,-3512,6646,5715,-1120,-6087,-6100,-4493,-5709,6060,-6682,7857,9996,-5247,4677,-5424,-3625,1211,-5588,8404,7846,-2581,9261,5245,-3001,-6718,-4853,5045,1737,-3848,1031,-2869,4733,-6914,4658,8829,3232,-528,3454,-7270,5042,2374,-5467,8751,8011,5353,-1219,4560,-4799,9887,-2142,863,-5922,981,-7471,-4752,-9845,8567,6428,-4272,7135,-1918,-4395,-32,-9835,-4859,-819,6350,9892,-6498,-6346,-4199,6616,-8737,5424,3888,4095,6035,-7388,8919,-9750,5919,2165,-6671,-5821,9554,-4084,-2109,2623,-3795,4680,6340,-3983,-7295,779,5359,-1956,3859,3556,1372,-8728,-7280,-1299,7288,5201,-7946,2576,-2927,2957,6710,7310,3130,4570,1834,-3933,2154,-7430,7800,-7097,-1110,7771,-865,2899,8652,8128,9135,1677,7026,3570,-3392,-4888,-3969,7018,2075,-7522,3280,2636,7982,-1811,8505,1496,-3896,-2255,1016,-2023,8190,4918,8128,-6281,-5102,-232,-2521,-3460,-1514,2092,-5509,-3238,3955,9214,-289,-4999,1595,2837,4101,3406,3627,-3623,-6092,8827,8317,1098,-685,1500,-9259,-9836,-8963,-5487,1246,-8317,7822,-8701,9877,-7378,6625,-6302,-1505,-7964,-7068,7459,2355,-2617,-5029,4444,5512,-4020,-1981,7325,-8898,8262,-8550,-2484,907,-5569,-8580,-2954,4510,9412,-9051,-5328,-4267,8348,-8458,-8682,-8594,9948,-9067,3658,-2636,4256,7146,6726,3022,2800,2000,-6449,2061,7613,-3998,-2433,-5756,2351,3463,7323,7630,-2350,7773,2035,-6780,-1508,954,6665,-4592,-8652,-811,6434,8239,2587,4695,2585,618,9534,-2818,-9489,-945,-8240,-2344,6187,-295,-3862,8206,3985,7952,-3961,-9457,-6402,9336,6144,-1262,-2885,7560,9230,-4444,-9348,9449,-3700,1203,-8409,7157,-9321,85,-6218,8081,-8243,1757,-5915,-5090,-6769,4847,1940,-5332,-2061,8710,531,7759,3527,5991,9629,3006,-270,-7048,5363,4867,8876,7733,-8305,9661,5583,4996,5403,-7797,7388,4709,-3905,-7420,8657,-6985,-8330,2157,5745,6108,3150,-8337,-9778,441,-1504,4917,1981,-259,8305,-9002,-7464,2601,-5679,-9464,-6626,-2073,-3726,6746,4594,3695,655,5666,8832,-8816,9963,-7902,-9957,3183,755,7101,-9405,1898,-2000,8461,4441,-9566,640,588,-6891,2105,3820,-5401,-9531,5553,1708,-9278,-7450,-4696,790,-8958,4295,2872,486,-4425,-3160,-8127,5986,-1274,6175,653,-845,3851,-9043,-2436,-9554,4563,-3185,1217,1477,-1317,-1085,-3700,-8803,-6004,2870,-4807,8715,7851,-1677,-2150,-2755,3264,-6178,-4976,-774,6915,-223,3273,-6658,223,-6419,8769,-9175,1371,-1937,7852,9842,490,-9496,1285,7935,-7099,-9462,7041,268,3495,4617,-3530,-5367,-2632,3858,-2062,-8992,3517,3957,-6295,-5687,-1156,-870,7054,-8637,8087,-1693,-789,-2576,-2140,-3840,-511,2654,3746,-3366,-1880,5304,8477,-30,-462,-5216,3429,-6309,-2429,-9185,5473,-1879,-8149,-8786,8429,-5288,5840,3971,-5381,808,-9995,9619,1598,-3324,3176,7435,-472,9387,2333,-9500,770,-3020,-6667,4698,-9587,-4632,1908,8058,-8398,-9489,4901,-5440,6536,9031,5708,-5183,-3503,-2230,-4650,-6299,9135,-3739,-2390,5046,-5508,3135,1489,583,6935,-3845,-8598,218,5554,4194,4801,4207,-5726,-9294,1623,7039,-7469,5343,-851,8011,3576,2709,-3365,596,-8158,6870,9174,4300,-5745,-7996,8845,2462,6585,828,2802,-8913,-3811,-5563,-9144,6355,6147,5094,-9642,3465,6918,-3400,-7282,-4588,-8063,-9156,-5818,-1404,-5704,9311,-7539,6842,6578,-4571,-1577,9761,-2622,8966,-2041,6928,-5029,3691,-9468,-4750,-3978,2714,-1010,-7961,-9504,-4396,-6715,9661,-6490,-34,1823,-117,114,-1945,5793,5632,-213,-9788,-3961,-4336,8834,5890,-7509,-8420,-5249,2460,-4906,6803,-5508,-6686,559,-9888,427,3803,3684,9250,9126,-9025,8056,8758,-7242,3320,5027,6057,1733,-6902,-6817,-9644,-9118,7265,-3985,9531,2301,6749,5781,-74,8236,7766,9741,-1313,-5555,-6833,-3872,6128,-2087,-9013,-6307,9107,9930,-6165,8984,-2020,-2132,-5378,-7932,-9619,8341,2268,-7182,1911,6567,-3188,-7409,-1897,7032,-3757,8630,-3492,7030,4741,-4029,-1686,-1340,7887,-1170,7273,-7500,-8638,9839,-5732,-7640,4169,-8530,5284,-4624,2377,-6719,2947,8783,5825,-2296,-4607,7298,2525,3257,5083,-4164,5714,-6906,7532,6198,3392,-560,-4565,6510,-18,4228,9582,7570,-9369,3537,2972,7700,-6580,9051,-1597,1102,71,6755,-8369,-9366,2075,-3905,9410,-5988,-4384,8403,-950,-2627,2329,-3316,-4950,2114,5077,-3960,-2644,1557,-9653,-8386,3909,-8366,-7933,4560,-8565,-3827,-1838,9595,-4632,3450,8946,8487,4991,3094,5901,7693,5866,-7582,-2098,3744,5185,-2944,7306,-5482,-609,1282,8717,2842,-67,-2855,9076,5799,-5292,6071,-4236,-2547,3707,-5371,9696,-5686,6689,2936,-1318,-3760,-5150,-5949,-3441,-4270,-83,-9922,-8971,26,-2017,7419,-5590,5673,9484,3158,-6875,4719,9522,9804,3974,9417,510,7871,-5997,-7290,-4965,-303,-9267,-7277,-5422,3403,-6743,-8414,-493,4294,-4662,-7724,-2214,-9303,70,-8096,5138,-3565,-7179,2,9302,6454,705,9028,7002,3715,-8211,-2145,-5397,-7075,1271,4856,-1333,2933,-5034,4711,1956,1673,2289,687,-5890,164,-2078,-8253,9090,7940,-4468,-5417,-5619,7086,2850,2700,6017,-804,-7740,9244,-8807,-8329,-3267,-2523,5067,4597,496,9287,-8927,-8339,4843,2498,8467,-6585,-1758,9130,-7448,5639,-4662,-7490,-6315,8399,3358,-7238,-8161,6278,8801,1940,7139,-9365,1931,6044,-7964,6775,-7151,9406,-7517,-7411,-8719,4604,3309,8734,-1427,-5771,-5069,-7347,-1614,8909,787,-2636,-3261,-6962,-7920,7969,4425,2731,4050,-7992,-4543,9529,-2370,7167,-3566,-5250,-8394,9879,872,-3646,165,2960,-7057,6986,-5064,-167,8729,-174,5160,2218,4507,-9983,515,-29,-9311,-168,7942,7463,326,-1803,5232,-6567,6931,2349,-3294,2581,8556,-7756,1089,7945,5326,-879,-494,-4249,8220,-7080,-818,6574,8670,2015,8915,-743,-8506,2167,3435,5594,-3112,-4806,5036,7049,4243,-2770,7316,-4637,-6493,9818,-7476,2974,4829,9043,1126,-2432,7072,6925,2621,2844,3799,-9562,-3860,147,4272,-4049,3368,-2082,-221,2303,-7819,2566,-2723,-5609,3490,-1756,2484,5523,9446,-4596,2159,738,-7965,-2724,-8294,-3743,-8648,8456,5805,9300,-8375,7511,-1561,-4559,9367,-4395,2605,8668,8169,-3738,-43,1394,58,2915,6321,-8401,-8557,-780,-8967,4896,-6125,8189,-367,1280,7638,-7751,5263,3966,4373,-7649,8637,-4463,3260,5289,-913,-7550,6875,4155,9338,7368,-9303,-1420,-9435,6248,-2691,-7009,-9878,417,-9354,-6362,-7914,598,4936,-1375,5813,4694,-1446,-7926,5189,-6500,-2196,-751,-5852,-2803,5609,2414,-5997,3095,2433,6764,-5033,2081,8526,4984,5754,-1734,8933,6131,4926,-626,1146,3265,-5133,7527,-564,7700,-9687,6864,9894,9827,7377,7672,-2885,7403,-5515,3004,7771,-5492,314,3235,-1770,735,-528,-1875,-6429,-5514,984,7863,-9393,9634,9777,6102,-8570,9414,6471,9150,-9583,9852,-414,-538,1419,2433,-4441,1246,-414,-8660,-5654,7095,-674,9744,9085,-9650,7274,-7586,-1152,4749,7162,-8546,-5173,-4181,-1328,-7278,-500,-1500,-408,7539,-715,-5795,-169,-8741,-5669,6095,-8305,-2276,7060,-1057,-5085,-4401,5002,-521,-5923,-1827,-3788,-9056,-9497,6957,-3747,3558,-8813,-4093,-9454,7595,422,3132,2014,-8060,-9163,9119,-4301,7582,7184,6939,7508,3068,-9562,-5861,119,-6892,-3715,2947,6785,-7018,2259,-7558,2557,-3198,-9578,-5932,-6956,5170,7953,-7083,2575,6666,-3,-6738,-5325,1350,-83,9658,-6204,8353,-9954,2514,3002,-7945,-5345,1386,-3886,-7499,-6892,-7457,2499,5362,-4325,7406,-7230,-5723,-7610,-9969,-4798,-257,-2414,1872,-8202,6942,-9125,-6306,-6788,5440,-1003,-9017,-5085,-7242,-3595,5619,-2689,-3891,7831,-9141,-8034,-7507,-8375,3933,-8526,-2784,-3693,-4528,6569,377,2736,-2930,9862,7712,7709,9805,2163,9737,5207,249,4005,-5259,4978,8265,4295,4295,6501,8566,8365,1490,8299,-3518,-6069,8124,717,7581,-2890,9490,654,-5642,8024,-7211,-5905,-8560,9757,-6814,-4749,-9907,1382,-6360,-7665,-1760,3682,-5033,-233,1844,-5171,-4558,-8501,-4791,-1230,1503,6102,4098,7670,-3351,-9832,-1361,-1444,8901,5168,7872,6645,8439,-9317,-348,5326,9431,-5550,-4094,-6450,9571,8158,8194,2903,8112,-8664,-1724,7503,-5533,4508,-2169,-7566,-6933,-1766,7042,-7764,4599,4727,9515,349,-5161,-369,-3362,-9022,3984,4701,-8353,-8548,-947,-4285,-9828,-5589,-9512,2933,-5405,8537,-8735,-2527,4858,4697,-8278,7910,1013,443,-6336,-1411,6635,-730,5466,-2528,-8700,-3550,-8602,3676,2444,-1644,1657,1905,5453,6507,8777,-6191,-8537,3500,1207,-8855,8634,5489,766,-8763,7260,2718,2334,4471,-3028,8674,-938,-3747,4086,-8670,-7398,-5026,-3087,-8637,7471,-6760,-6212,660,-1935,5217,397,-7810,-7082,-6475,7439,-8536,6717,-459,7364,-9074,-9147,-9878,8160,354,-7888,-3545,-6135,-98,-5546,4596,7878,-8559,8941,-1021,-7686,-9237,-4102,-4830,-2977,-6270,-3061,583,-876,5064,2693,-1328,-4674,6622,3955,6472,-4575,4389,4990,3479,6934,-9120,-5150,-1853,4510,-5795,2812,-7425,-1922,-7346,1151,9956,1253,-2001,-6886,-5991,1955,7876,-9266,1017,-4010,9569,8955,-6056,8720,2783,-8854,5950,2713,-7429,-5529,4087,4320,1958,3170,-4159,8267,6229,2457,4878,-2786,1651,4066,7603,6132,4059,-7393,2551,-6290,212,-7208,4094,-2832,2611,2809,-9670,534,8634,322,-7860,1801,2738,9463,-6694,-8446,9705,5282,-4814,7428,-5384,6677,-8799,-6919,-8594,-7388,-8820,8787,-3939,3343,-5373,5403,-2859,7400,7831,-504,-335,4257,-9283,2042,8281,114,4568,-6760,-1406,-1198,-5999,7033,9758,-9467,-2530,-2083,-8183,6176,217,-7225,3020,1504,490,6574,9223,-9498,-8802,8334,-1841,-5969,4123,-6852,8333,-3403,7806,2789,-9700,1806,72,9379,2543,1768,-5930,5792,-3052,62,-4516,1949,-5085,8338,-438,2136,6601,-3916,-9868,-9558,2382,2059,-6555,-6794,-2239,1163,3657,-1854,7239,422,-9675,2223,-6788,-7979,-8633,-2982,-5614,2082,-9566,-5036,-8349,-3767,4467,-518,4604,2622,2864,-8174,-1165,7736,6247,-2569,1995,-181,-3582,4601,4279,-1794,-3445,3743,-2818,9737,6470,6062,3703,-8294,-8593,3109,9025,-7548,-8236,-6360,7441,-7343,195,-7408,-1185,7001,-2225,-765,774,2332,5608,-5158,-4523,4419,8928,5213,6627,1480,2281,8727,7938,664,-4147,-6471,1388,-6506,-5831,1603,8543,5839,9457,-2852,-4996,-4153,6004,-3026,4908,8673,-6891,5299,-3718,-1290,6596,215,-5910,-7706,-958,-6750,8649,6700,-6256,5462,-8803,3107,8247,-9645,-9083,6207,-3029,5111,-6058,3992,2682,8428,-3446,8951,-2781,-7615,6214,8178,-4163,1116,-8165,1360,8645,3020,-1860,-5328,6852,-3980,-4146,8806,-3856,2452,-3232,-1202,4260,-5288,8050,2263,1494,4272,8436,2145,-8206,6801,7200,-5109,717,-8993,3036,8294,3301,-1683,5256,6996,951,-9133,-5316,3047,-6657,-2115,2322,7325,5647,-8278,9327,-3586,9158,7645,-3761,-3723,-1217,5060,-3449,3933,7888,-3200,8095,-550,4719,-8713,3691,-6926,-8362,-5856,2385,4505,3231,1056,-8251,4600,7710,4261,7672,6132,9336,2685,-8420,9961,-4577,8046,8117,9913,-3383,6355,-7155,-839,-7515,-6189,-1845,93,-2574,5487,-4749,2069,-3860,7316,4987,-9705,9508,1692,-3225,2233,-8284,9886,1727,4406,7131,6620,-1594,258,-8220,-6414,3557,4869,2116,-9285,-64,-6378,-1484,-884,-1821,3289,-3520,5579,5657,7454,5630,4258,5808,223,-7644,-4796,-8998,1720,2109,-7258,-968,-2217,2007,789,-2374,-8161,-5597,-2262,7236,-3630,-8150,-8941,-5810,-4964,2502,-7750,357,8301,-6550,5649,9425,-7808,3796,-6083,-1159,-4733,8829,-6740,8457,302,-6129,-8219,2339,1951,5697,-325,4867,-6644,-6339,3071,-7179,5897,-9775,7077,-1901,-2661,4655,3700,-5135,8447,3835,-9782,2763,6593,-5407,-3959,-9371,5927,9165,-87,-3096,-471,8893,-3786,-4230,-8397,-9856,-7156,4860,9768,5773,-4192,-4166,-167,8496,4335,7302,-4740,-358,-5864,-2752,-5844,-53,-2641,6119,61,8114,-2142,-7180,-1538,8114,4707,-3231,-3908,4170,-4033,9768,-2428,-7154,5468,3976,6475,-5313,6542,-1758,2427,7349,905,-9217,6480,-554,-8919,9937,1766,2268,6000,4215,383,4291,-849,-2204,5492,7552,-6116,2280,7438,8134,6255,7953,1193,4970,1560,2063,3906,-1106,8854,9123,4172,6411,58,-2488,-9086,-2908,-2311,4124,635,-7343,1889,4634,9105,-3754,-9953,-5635,821,5422,-2242,-3063,7921,-1944,2099,8997,4267,3352,9782,-9266,4381,9585,6982,8326,1824,4178,455,6088,1005,-85,-6275,5434,-9458,4048,-337,-4638,-2722,-4856,6684,-6178,7019,9541,-7313,9298,-1226,-8630,9876,6802,619,-8371,-8240,5102,-4542,1991,8241,-1019,7318,-2857,1441,1150,-2184,-7152,8615,-4243,2682,8613,-2284,6364,2326,4612,1183,-3815,-4289,-2087,1378,2775,-3425,-2954,3423,-7505,5078,-9945,8507,-145,531,-7707,-6309,9893,8889,2771,-9919,9125,8864,7776,5177,3706,9531,-7282,540,-9796,189,7551,6975,6603,9997,-4940,-7086,9868,-8383,3730,8497,-7024,-1770,-7417,-7309,4824,8573,-9144,5512,6003,5634,-746,4239,7119,5704,598,-3059,5379,9212,8770,3050,8026,-6505,325,-9174,4889,-6467,-946,-3475,-8626,8963,1805,-5612,-8924,-3784,-8755,-7303,8155,-5207,-4481,-6021,-3292,-4046,4583,-3335,3971,6967,8548,-2994,8889,6182,-316,-8637,-7881,-2174,2534,4403,-1637,5353,1122,-7445,-7195,-2316,6227,4158,2960,-5961,1750,-2215,-3890,8565,7986,-637,8246,6578,4981,-5404,-7522,9070,-6179,3274,3641,6463,4436,1850,-5597,-9277,3087,241,9081,5059,2157,-9303,-2546,5233,-7344,4519,-3804,8779,1861,-4745,8091,3278,-4303,-2827,-1109,5815,4023,4398,-5444,296,1060,-4583,9718,9118,1472,-2522,-1198,6364,4341,-5950,-6119,9954,9795,-6904,3400,-95,-3597,5391,-4872,2124,-410,6955,5081,-2635,-7278,45,-344,7303,-8868,3453,-5622,-6039,-7593,-7595,2707,2234,5108,-8542,6501,5787,-1897,-4472,-7133,6956,8281,-5746,-3679,-3677,-2694,-3350,2792,-4722,-6667,-4735,300,3711,-1468,4584,-8294,9963,-7362,-8291,4311,-1813,-4818,6057,-6896,-8984,-268,-5749,-4104,-7949,-8738,6263,-9376,-6336,2906,-3212,1910,-4558,-7151,5877,3110,724,-1489,-4041,5298,-9480,223,4010,9032,-9553,2970,9473,-714,6928,-6141,-956,-2036,-2810,-8190,-9864,-5024,4443,-3174,-7276,-8140,-4547,-8495,5839,6195,-8403,2582,9119,-9946,9868,6800,-8043,7848,-8736,-2307,3167,-2752,-8096,-7824,-8956,-8384,-19,-5978,9585,2841,-6301,8392,-7932,2870,9071,-595,4549,-6455,-4998,-6560,-4132,-628,5229,311,-597,37,-6090,6702,-3988,-3147,-5338,2065,-9258,9795,4690,5531,6877,298,7183,7319,3442,-6159,2640,3219,-5518,-8694,7176,-3533,9616,-8930,-6448,-3904,7136,-7602,2923,-958,-7340,-4455,-5477,-1983,-607,5613,3188,-4785,7596,-2239,3527,-4223,1427,6935,6241,8413,7354,-3990,3327,7656,5744,1034,-6069,-2589,9911,7209,-6655,6676,9881,1163,-176,9803,-7655,6108,8823,4741,5012,-7701,-4096,-1165,-7132,6385,2617,8063,-1946,-7343,-6115,7203,3454,-7353,3180,9296,2553,-7465,9481,4876,6653,9940,-6343,2057,957,6708,-7142,6048,6165,9861,3125,-8171,8823,-6699,7670,-1834,-7245,-3609,6329,-1938,8526,-4993,1189,-1411,1309,-7491,-970,6819,2333,1804,7321,5833,-2361,947,-5813,837,-7919,-6982,9992,-8691,-8072,8824,-1933,136,4702,-5844,-6443,4123,5068,595,9679,-2394,-323,-4228,1324,-3091,6763,4083,8351,1613,-3050,-1387,3879,7731,1156,-7609,7075,-138,-609,-2001,-7667,9844,692,-2559,2704,-6111,-9010,8504,-7832,9872,-92,-7290,-2395,-9183,8259,2181,-883,2240,-609,-2849,4592,-189,-3364,4904,-4548,7803,-6494,-8872,529,9674,2111,3120,-2130,3258,-4685,7704,-2339,-7798,-990,4904,2147,2717,4568,923,9001,-8732,-910,6607,5114,4800,176,-4488,-5214,-9250,7713,-7477,-4533,-5528,-6168,-7078,1729,7129,1690,-589,6422,62,3351,-2637,7631,3970,1583,6542,4990,-6749,-3482,3202,-2027,-9816,-8514,-4801,3807,-7763,4039,8886,2793,6666,-4337,-3798,7519,-2522,-1649,-4841,8273,7888,4763,-1846,-5194,7546,-9812,-8226,-2948,9387,-8583,4436,-3109,1187,-8203,7002,-2011,-6765,-4471,-4736,-515,491,-3557,-9037,-4493,6599,-2482,-7209,7221,5933,-6247,4150,-3087,-8859,2670,-7237,-1717,2748,-2064,-7409,4315,-7865,9765,2072,-9691,1012,4382,4065,-8314,5410,-2621,-3305,-6118,-8743,5074,7337,1949,3961,-9717,-1580,141,-6294,6245,3873,1984,6222,-7238,1949,6009,8822,-4402,-8665,5048,-6342,-4651,2238,4734,-4978,2694,4111,2739,-9978,-5990,-5158,2877,-3637,3425,-450,-2747,-8297,2803,5258,1106,3345,-4348,-430,2026,5897,-6991,7360,4863,-6157,316,9809,997,-7173,8442,-6972,-1601,-1424,-5145,-1019,-7825,-430,-3241,7206,9801,2114,3654,467,16,3172,-4722,5672,-1180,-5005,231,1328,1964,7212,2176,5036,6075,1934,-7095,8814,-785,1755,2671,9660,-1154,-5448,5192,9830,5933,-577,2730,2252,-7573,-5231,-2005,-8208,1536,-1674,-8099,383,-2997,-2291,-5315,-928,-8774,4567,5903,-7942,8745,-8024,-9935,-3258,-2905,-1679,8517,-7039,3743,-7412,4124,4829,7130,5270,-9830,1398,-8081,-5320,9146,1272,-5966,7271,5469,6837,-8325,3608,-1939,-178,4205,8801,-8234,6797,139,4124,9927,2381,3753,8956,4867,8647,-8245,8179,-6284,-5595,1971,-9456,8997,9094,6685,3837,-1886,-5468,-4685,1642,-3118,-2175,9813,6089,9526,8288,2269,8416,-6071,1882,4208,1631,5594,-9050,599,-7781,-5121,-1526,-2395,-2827,8409,-2346,2479,6942,-8735,-6010,1013,7239,-8470,-6245,3733,2024,9596,-5532,-512,-9478,7191,-7393,4332,-6202,-9498,8764,7937,-4526,-2507,5442,5282,-8963,1504,455,-8783,-5848,-3622,8901,-3319,6278,-4495,3224,-4896,188,-4364,3174,3194,-1633,8426,-1795,-5868,9461,-4113,5863,-9836,2113,-719,1514,-6476,4511,88,9067,-718,-5556,-8685,-8119,-4495,-3352,589,-6040,-1003,-2846,-7347,8313,5570,-2026,-6071,-4890,-5076,9562,137,269,-6134,-8167,-2575,-601,1581,5078,-8622,-4986,7889,6479,-9263,3362,-3415,-3042,-6126,2814,6759,957,-3705,5112,151,4690,8507,1480,-739,-4742,5196,-6645,-674,-2318,-7361,-9212,7810,-1232,1914,-7884,-3386,-6880,3834,-6819,-9968,2358,8805,-4657,-6299,1662,-9879,9805,281,-4953,1513,-8025,8928,3515,3721,-1578,5454,-9031,1676,5445,-9107,3312,-5270,8732,6014,-2797,-1951,5706,3693,-9437,-9827,927,-3293,7500,7422,3763,-2661,-6743,-3558,9485,1921,627,8903,-3906,1240,-9522,-239,-2441,-7521,2724,1821,-1050,-6658,2351,8012,1899,-2704,-7133,-7604,-1334,-5922,-3705,3186,-5060,2610,5633,-5331,-5996,9911,194,-6135,-3659,8365,5105,5091,1797,-9653,2995,9413,-1775,6581,-4537,2102,4042,-9730,-6600,-7776,5089,-3789,-9035,-6102,-5061,9343,-592,4001,-5102,-8953,-9490,5089,7640,-3220,-4996,6312,-8552,-9009,5216,5750,9293,-630,9868,-1554,4533,316,-8748,-503,1101,-8017,9331,-9412,-9215,911,5382,-4177,930,-4717,-1061,455,8094,8338,-1230,5029,-2920,1089,2204,-4522,-4498,728,-5650,9203,4667,-9327,7713,9668,6391,847,9417,2818,8548,3530,-72,1279,5657,-7374,276,1468,4413,4267,9077,-5398,-8291,1090,7398,9230,5808,-2959,6186,-9993,7133,5540,4441,-3396,7092,8843,-4465,-9712,-6247,-1417,-8948,3553,6240,-1771,-9782,-5542,-6269,-5723,-6676,-8660,9343,6786,-6048,5976,5856,382,6605,2660,-5478,-5378,2680,-9190,-9433,6405,1681,8853,1866,4572,1477,-25,9534,8899,-1474,-1440,3225,6580,2800,4358,8733,4688,6946,37,-164,-3325,9229,-7683,-375,-8475,-3503,-6047,-9136,9514,-1785,592,6069,-2050,5069,1285,1030,-5392,6510,8178,-9369,4693,-1049,-9944,-138,9417,-4884,-7659,-6915,-4594,-8645,-4746,-4527,-9462,7200,1339,4368,2899,3860,-3037,6352,8840,8024,7487,-5693,-9606,-8493,-5136,6304,-3885,-4525,8796,6570,-544,-5473,-5775,-5708,-3915,-5437,-7573,1384,-6957,-7328,-8245,-9917,-7279,5956,-7281,7846,-6591,-177,-8480,7353,-7457,-8079,-1819,3676,-2151,-5949,7369,2056,-8966,7764,3705,4173,6965,-6315,474,9106,9641,-107,-6634,-3541,-3796,-8988,-3474,-9237,9425,-8821,3907,-2232,5036,5385,-1200,-5198,6770,-1101,-6594,-7889,2011,-4843,-7820,-5876,-446,1777,-240,75,-1064,9301,-4302,-1648,-8954,-8755,-7255,849,-3357,9124,-906,-1996,9064,-1281,8533,6138,207,5902,4079,7697,-9227,-7453,-4164,-7766,5884,-1335,3276,3671,-683,-6525,-1760,6842,-9328,-3722,-3707,-7611,-8309,7930,6563,-7299,-6233,1322,-431,5985,-1789,3323,868,4664,-5503,-8240,8947,-779,-9157,2336,8518,-5453,-8438,6817,4571,-628,8859,-3719,7508,1727,3511,5141,6143,-2561,4789,6355,-256,-2561,-3480,-6563,-1384,-7692,-997,-8348,9013,2107,5365,-4316,5860,-1104,2572,-1682,-3012,7463,7913,-2306,-9580,-4804,9389,-3738,-1091,-8515,445,-7614,7896,-7993,-3349,1019,-2833,-5682,-5515,7137,-4812,-6181,3508,-451,5769,5580,-4456,8727,459,-9344,6238,8929,3951,1424,4098,3116,9069,-4270,-5041,5553,6446,-8999,52,5618,1654,3661,8887,-4837,-6226,6826,2429,8460,-1209,-5576,-9988,3251,-1455,32,3458,-8805,4978,2892,-1912,-8720,-6451,-5499,8232,1062,681,5199,2347,-4321,1720,9741,-7997,-4666,-861,7817,-8549,-3442,-8295,-3718,-8523,5665,-9192,-926,4827,3246,3941,4804,9378,979,5558,-6607,-7234,-6959,-9865,9995,4210,-7929,-7820,-7214,6441,-2534,3468,-9698,7267,-5270,1510,5844,7052,8942,9537,1243,1374,-3850,-7129,-5119,9792,1266,-6133,5805,-4370,2087,477,3430,-6084,3079,-8039,2233,-3165,-1109,-2214,-2764,4579,-4149,6871,4530,-3801,6092,-6525,-9531,-3877,9359,-9700,2219,-3670,-1055,3494,-9361,-4484,3611,-9780,-8352,3744,-7121,4793,5668,638,8231,1786,7654,6705,6870,5406,9814,-389,-4212,3885,-4481,5748,-9486,4553,2824,-3781,8137,5882,-6184,-8685,7837,5336,4414,-3568,8188,-7903,715,-2547,7641,-2658,-3397,-205,-9066,7601,5154,2271,-3823,-9708,-1793,-4024,4836,-8338,7220,-4704,-6706,7371,6552,7464,-6048,4958,-693,-9245,3681,-5849,121,-6651,-7430,-1270,-4149,5162,-3836,9463,7656,-1838,-1430,10000,9203,5024,-7943,-4225,4465,-2638,-6014,-3904,9882,3322,-6302,9278,-1477,8668,2514,-5207,2571,172,4817,3017,-5066,983,6846,8647,-5493,-1818,9929,-5630,7371,7483,8871,8772,405,-9118,9596,2978,353,4875,-1779,9327,4360,4722,-5464,-4606,-7858,-5439,-6723,-9630,9702,-1500,7878,-3715,7536,-7245,2852,7896,875,-2581,-2584,-8431,2239,1005,-8512,-5171,-2946,-6503,-7120,-7148,7585,3283,-5476,5616,-2717,-2149,-4842,-3817,-38,7645,-9386,3841,-1906,-3720,-7067,-2889,9648,-5101,3756,2834,47,8916,-585,6200,3627,-2182,22,9773,3637,9728,9346,607,-5243,2583,-2368,-9263,1607,4226,-8143,8772,2726,-2563,7712,-9052,360,-2847,-2163,7511,-1192,3941,3249,274,-1428,-1409,-8952,-729,4389,-6891,7869,-7608,9360,5780,-1893,5420,5581,4769,-5770,5007,-642,-9010,-1734,6279,1855,-579,-840,-4329,-7750,1116,-4795,8582,-1560,-3670,-6853,-4506,9352,2422,4846,-5336,6544,1408,-8312,-8683,-8058,915,-9969,389,5500,-3346,-8459,-5288,-9885,5238,-1718,-9280,-2405,9069,-8610,-2572,7419,-1407,3337,4273,6317,346,-9442,-1259,9032,5521,6761,-987,8380,-5800,-3407,8155,-5538,-4876,-1953,5493,7904,-5956,-2417,7339,-8168,3373,4147,4402,-7381,234,4956,9479,-9835,-8480,4986,9255,-2240,3546,95,4719,2888,-2532,-6175,2137,545,-1906,-2994,4312,771,-9076,-4362,-8665,-4222,5305,-5220,7135,2311,-8247,-3912,-8797,7973,9310,7778,-568,2021,-2925,4199,7132,8750,8777,-548,-9888,-8949,-5974,1810,3115,-1023,1018,4133,-3756,294,-5035,5267,-9986,447,78,2845,-1101,-8328,5461,8590,-7920,9824,4816,-877,4693,6518,2989,9502,-5657,-8737,1817,4941,1979,6310,-5287,7367,-3953,4129,-8485,-9255,7585,6410,1550,-936,585,-7770,-1621,-7308,-7909,-9460,2234,40,-75,6849,703,7770,7231,-9542,7770,-8358,5918,3487,3531,828,959,-6679,9946,1292,8830,-1905,-4083,-7701,3356,4580,-8988,-8771,-866,3148,3812,-3441,6704,8898,6325,795,-5986,-299,-3925,5429,-663,-1845,3286,-7771,-5907,9155,8686,-8994,-3096,-5913,4593,9039,-5182,9987,9458,-7116,-3318,-8193,903,3936,-3450,-2134,186,3732,734,4107,3135,-4782,-8368,6016,-1233,3329,9383,1289,-1400,1683,-7173,1333,-1280,-201,-3405,4505,-7248,572,5327,7094,2463,-7956,-3091,-9484,-9612,-4030,-1005,-2931,3866,4994,6458,9876,5606,4751,1259,-3913,4118,-1950,-6504,-7526,8417,-7976,5626,7544,-9973,3234,9579,6776,5215,6705,7826,7508,-904,-6632,-923,-4018,-7043,6824,8858,-6324,2144,5593,-1280,1715,9304,616,-471,9221,3194,-9342,-6897,2939,-6226,-1748,189,-3972,-8328,-5925,909,-5814,3863,-4037,2466,-2396,-5421,-3047,-6748,1482,-1939,-7540,2930,-6843,3802,6314,990,702,724,-5688,-7243,-9498,7071,4226,-6949,-5056,8549,2436,-6263,251,-2121,-4178,9747,-8429,-505,-4292,1324,320,3582,9195,4616,1204,-9347,2746,-910,-5240,-1474,2500,-6692,-6093,-6971,-1821,-2978,2387,-8465,5327,-1448,5505,4540,9512,6457,608,123,-7385,-6349,6464,2529,-1097,-4080,9073,-4,9048,-7364,-9677,-5774,4420,-7755,1500,-5452,2298,-271,2515,-5858,372,-8818,-1373,9909,-9186,120,9497,7121,8583,-1422,-8273,7111,9856,-846,4175,-9273,-4679,-2539,-2253,6275,-2187,5268,443,1209,-8157,6275,-8365,1083,-5750,-1273,-1435,-3485,-4998,-5239,-1370,-1413,2634,3860,-5395,-6486,2748,7635,-1530,217,9736,-5509,5017,-3405,-174,-7964,2182,4383,3107,9871,-3882,-1392,1524,9574,-4122,5977,-80,-223,5046,-1501,-5008,5591,5217,-6677,9844,-649,9050,-4904,-2640,-6333,-6603,-4402,1459,-5758,7539,4690,9419,-3304,-4924,2558,-7477,-244,1139,4400,-9363,5779,-5749,-5556,2719,7781,3010,-5382,2551,1626,-2524,-950,-62,3003,-2664,-445,-1859,8672,-8711,-9530,-6755,-98,-9689,6691,-1427,9617,-1326,-8927,5221,3226,949,3845,1417,-2130,-5335,1135,-1205,2575,7244,5999,-7395,6209,4932,-9415,-5329,-9622,-212,9652,-7760,-9971,702,504,-7050,-7227,-5695,7617,-3731,5915,2559,764,3569,3950,-2819,-9684,5158,-3664,-4,1666,2734,7838,9519,-6097,8354,-4962,2212,-4135,8425,-1820,5913,9913,-3562,-4790,8045,7673,1907,3018,-1468,2987,2231,-5999,577,2530,-409,2029,929,1159,4278,829,-4746,6936,8455,8362,-4283,-2335,-6987,8526,-7359,6996,-550,-3604,4382,-4396,5741,-8265,7045,2294,3336,6543,9840,5321,-5810,1110,-9845,-2770,5423,4268,7299,3457,-8982,-6627,2634,-8669,-3542,-9691,-4629,-7278,-4692,-5076,7598,-4001,8470,-4296,3498,-3085,5063,2517,6706,3254,-1361,-2241,2301,8947,-3841,4134,340,-9794,-6107,1924,-5574,3007,-8534,9794,8324,-7102,1329,-1466,-4176,3125,-6263,9263,5989,-8024,2902,-49,-4017,4333,-830,-5941,5983,5523,-2301,-1616,6888,-2586,-545,5690,-1900,9046,-2774,-7427,7888,-4014,870,-432,-5851,-6721,8617,-3848,-2880,-1417,-9460,-8719,-4224,8259,7408,5550,1719,-5606,-4234,6565,4215,4720,2617,-1583,5360,4895,9723,-7669,-7630,3977,-8580,-598,-8385,6079,6853,-4141,300,-4404,-880,1082,-5385,-345,-8325,9217,-2471,5769,3561,6180,-3969,-752,9586,7256,5355,-583,-2315,5728,168,1057,7339,-4048,-4031,-8926,-127,-6395,31,-7758,-2886,9144,-6381,4227,-7722,7591,-25,-8895,1847,-9853,-4538,2438,1764,-7575,-6597,-4037,1559,-1039,-2443,-7145,9285,4744,-7651,6613,-4163,-1955,102,3042,7418,-5775,-5450,9333,-9366,5683,762,-3411,-6991,5300,871,7726,-6394,6324,8565,1437,-5287,-2001,3883,-7981,-3952,-7470,-1627,-1334,1018,2480,5695,7735,-9008,6330,-1347,-1910,7746,3791,-7582,-6977,-6128,3612,-2360,-366,5679,-6440,-7403,4656,-4074,4058,-6064,2879,-9188,-4673,-6817,-983,-5944,-1188,-5927,8781,3224,1464,-1843,-5295,7742,5803,-8441,-9896,-2356,-2672,4503,1245,-2356,1403,-7875,784,-7569,4775,4268,-5702,4855,-7443,2343,4417,6739,-1154,-6418,-831,-7743,6545,-5368,4895,-3372,-6977,2759,8194,8791,-1464,6996,-7739,3018,4005,3515,-7756,7694,-3827,1684,-6511,7795,-9824,-6885,467,281,-776,-7352,1457,-1389,-8482,6635,6625,5484,3274,-3639,-50,-5016,-1903,6642,-5,-2199,-5715,-1274,-7669,-6546,8930,-598,1469,-5760,-1073,-1138,9707,-8417,-4842,-4710,-3852,5058,4092,-3602,4457,1527,-5817,-6327,5970,779,3517,7578,-7320,7026,-1506,-6025,-5033,-2243,-2750,-2779,6212,-3467,-7043,4909,25,6681,3466,406,-9225,-4473,-2655,1128,9351,3696,1037,-5866,8482,8731,2282,4373,8243,-7104,-7206,176,2252,6200,5283,-7824,-950,9927,-8814,2873,9557,-5022,8865,-8805,3316,-4710,-453,-7700,-6812,-3338,-253,3703,6121,8031,6440,-430,-4519,1700,-2206,2139,-3436,-4933,-1096,3364,-5727,-6917,-4073,6716,-1876,9167,-6701,-3668,-5234,-4398,5881,-2769,-4533,-3299,2392,-4246,2612,7630,1525,8727,9750,5337,7975,5035,-324,-4323,1344,6242,-8437,-5115,-9002,-1173,9958,1964,6376,684,-4436,2244,-5496,1971,-8360,4318,923,-765,3657,1842,6111,56,-5623,-963,8591,1479,-4925,2573,9774,4504,3087,9309,-665,-6418,7516,816,9257,5285,-7373,-569,-361,5967,4623,-354,4204,3946,-9135,-6835,-2383,1733,3244,-2632,-4299,1325,6979,301,1304,7926,7831,-283,-2429,2241,-9792,5684,-4886,-5652,-5179,5340,2593,2758,9595,-8046,4026,-640,-7852,4342,6224,-40,-8587,9030,-8007,-559,6096,9452,-2182,1412,2854,1333,-5774,-4374,3363,-7756,-6885,-8932,2234,-7406,1857,-9260,8549,-2926,-5170,-7092,3353,-1994,3127,3686,-2840,8739,5754,-4587,8766,4744,7511,-5600,-2656,9303,4713,-1137,4139,647,-5973,268,958,-6207,7966,7784,6052,9135,7632,6745,9295,368,-5067,3665,-7131,9625,3353,-5220,-8225,7983,-1320,7533,8905,4439,-6261,4695,7439,-4292,3657,5015,-8743,-7690,1913,-9515,9194,2128,6678,4721,-4215,-6932,-4747,6220,6003,5561,3183,7805,-4191,-8297,5361,1468,-8386,6670,-3087,2907,3490,-6068,-293,2926,-3493,-3615,4462,-4143,9291,3509,-7296,-7426,3822,-4607,3008,8762,2135,7251,6332,2505,4369,2364,4461,-1225,-8385,-3875,6374,7743,6350,9245,6159,-5469,-8317,451,2464,9589,6926,3960,-7398,-3421,-9573,2336,6240,2486,-92,3609,167,1341,-7197,6188,9810,2697,4939,4277,-7389,-3328,-1427,-2753,7359,-909,-585,879,-6541,-5495,2379,4388,904,8272,4360,1214,9448,8729,-3105,-4101,-731,-3818,-5049,2733,-4839,5494,-4118,4892,-290,5337,-1231,-9119,-2862,6852,-909,5131,6478,3018,-8390,5024,6270,-6617,-101,-1142,340,5956,7640,-5590,-7434,100,-7095,5618,-1883,3742,5897,9788,-3474,2197,-9040,-5337,-2504,-3001,-4213,7804,-1839,-2719,-2058,-9391,3082,-9681,-9029,-4633,9917,-3243,8441,-2875,1163,-3006,-464,7159,-7358,-403,1639,-2417,9408,4912,-9591,1471,-1651,-7871,5747,-3479,7652,1604,1074,-8028,6308,6087,9986,2729,4992,-3287,-8715,-8266,-8986,5056,1971,-1673,3917,7113,-1909,5838,2759,4056,5436,1492,6688,-3964,8862,-3390,-9645,7495,2719,-6999,-1404,7355,-2814,-8707,-4571,-7802,541,5280,2370,-5028,198,-9559,7335,2979,-1615,8414,8238,-4133,5499,4838,5657,9163,105,9138,-6152,-470,-6588,-1387,-9984,1186,-927,-335,-5663,-6107,311,-2923,-4440,-2798,-5636,6729,-2023,9062,838,-9559,6536,-7066,-5858,-3190,-1158,6763,4317,1441,-7454,-7150,4770,-9347,5975,-5849,944,-312,-2626,6095,-82,5907,8488,-7264,-8132,1738,1541,7341,7012,-7677,-3648,9396,-1155,3433,3246,-5088,3791,7064,-3388,-8113,-946,-2092,-5841,391,-982,9390,510,6017,-9355,-49,-7646,-1895,-2524,-2424,-5060,-1717,-3712,-4071,4620,3642,9003,-2497,-7158,-5607,-9863,654,-3791,6028,417,3776,7679,2515,1502,-6799,9315,-9363,4569,-2860,2668,-1790,-7425,-1382,1641,-7039,4765,-2073,2291,1402,4909,-4914,3795,-3443,7138,-1078,122,-9824,2126,-6836,-382,1653,-1371,-5525,-3064,8727,-9993,9906,434,-6635,-7774,-7240,2145,7966,6071,4980,-1296,-9662,9218,-720,9055,8809,-1338,2106,-525,-2983,-4993,5218,-4214,-4593,4641,4663,7419,5596,249,3306,7474,-9555,-8707,6137,-4352,4137,-416,-8704,8686,1472,-4327,-1544,6312,733,8153,-6511,1969,9771,9244,8062,9407,-8372,2136,3015,244,4760,2327,6573,3921,4270,-9259,6757,9709,3080,-764,-8008,1112,7938,-7199,625,-4666,-1163,-8449,32,7205,2103,-3917,-121,8358,-1819,-2819,6992,22,-2665,-156,-738,-2542,117,8828,5589,-8418,-6919,-3284,-640,-3221,-3926,-5551,4976,9582,-3738,-8238,1769,6169,8081,-1845,9886,5647,-4891,-9690,-6485,4583,9024,-4894,-8822,-7302,1442,4610,-1615,9528,-5291,-1197,8925,-4139,8137,5772,359,-6707,5014,-3663,856,-5173,-4851,-7210,-6576,-6748,2354,-3142,-8275,8144,-489,5469,-9756,-8041,-6523,7126,-5795,-8554,8841,7601,-4856,2598,4105,4421,-3608,-4418,8271,7551,-7258,8555,6275,7725,-128,-7661,2453,7125,-900,-1147,3043,-9237,9246,4094,5837,-4962,-4482,-966,8493,8595,9299,-9567,1023,3581,-1500,1478,5494,4712,-2132,7235,-7845,4338,8242,-433,-8564,3996,-9600,-1433,-3473,-656,-5052,3744,-4938,-8270,-6155,5645,-216,9491,7986,-3800,-4194,-4559,9814,-4950,-3839,-1468,-2923,-5498,-8648,-1014,9839,-4428,7567,6237,2335,6096,-7582,-3489,326,1842,-7428,2868,7206,48,-8036,8957,-1658,-8093,3998,-1877,9614,4013,-4139,-3139,-4693,7488,1138,6006,6288,-8085,-6311,5779,6937,-727,7485,4815,3536,3698,3585,-5422,5768,-884,4950,3200,700,3732,-1400,8514,-7982,737,5768,-8678,-269,1268,-9535,2254,-140,-1436,9022,-3713,-8419,-6474,-7168,-7213,-7076,-3625,7535,5901,-7565,-4984,7007,-353,4006,-9412,4266,1072,6329,-5509,1688,2606,5616,770,6798,2969,-8140,5754,4140,-897,-6613,-4777,5437,5845,3585,-3081,-2572,-1521,-569,-3901,8524,-5887,5992,-9286,-7719,-7956,1908,4675,8837,-8403,-2871,-5773,-3912,8678,8341,-6802,9126,-9773,6837,3644,3409,8843,-1286,-3855,-720,-3319,4964,7183,2453,-8924,-7663,-2150,-158,8812,9993,-8331,4961,1698,-5970,-2374,8240,9545,-354,-9365,780,2167,4659,9907,9026,8178,-8422,-8356,9870,3009,3211,5853,9940,1212,6169,2552,8445,4671,-3161,8759,1317,-8567,8295,-7432,-9272,7794,2162,4857,-4446,-824,9109,-9184,379,-7559,40,235,2852,1370,-7776,2026,8433,-9151,9946,-591,6553,455,-4946,-8519,6060,-6664,-4055,4409,485,8459,2769,9653,3944,-649,-2479,-9894,9773,-2802,7170,8768,-1346,-1513,9674,-1358,-4599,-2450,5832,1725,-8968,2384,5817,5842,4705,8990,5147,-3880,5346,5031,8694,-5612,-6381,-5198,-4251,7424,-9365,-3643,-4444,6860,-233,-8627,-725,960,3128,-1912,6998,-3070,6528,3456,-1812,6364,3780,562,-7114,-6034,4697,-186,-4558,211,4715,-7560,4306,-9224,4989,-8267,-8745,-2689,7588,1114,232,5546,3094,757,8843,7918,-9877,1994,-3691,9080,8884,7926,-5837,6822,-4411,5588,-9635,-6759,1297,5462,7824,2603,-732,-8939,1571,8938,-4179,9096,9987,4492,647,6695,-5232,-7443,-1010,7244,6159,-7119,9770,-7381,2433,-701,-6726,-8286,5423,4016,2950,3122,3053,-7063,6458,-3217,-6994,170,3334,1057,2300,9899,-2127,-4462,-1772,-6329,5000,-9311,-3710,-4836,-1405,-1966,-8914,-8390,9260,-6929,-2752,1382,4022,214,-3538,-3278,7519,4421,-1575,-8950,-2429,-3038,-6025,-1058,8975,2337,3471,-391,8712,3685,-4755,1357,9315,9327,2536,-3565,-9503,1175,-8598,-1429,458,-5562,-9978,-6709,-2924,6624,-2749,9034,2822,4202,944,-5638,4097,2853,-3850,1689,5734,3424,-1344,-4719,9933,1907,4329,-7363,1964,-8486,-8538,-3171,-4140,-8985,3418,2426,-8314,-4881,-2786,-2142,-6151,-8119,1246,5457,-8498,-7972,-2722,3357,-5206,319,5714,3964,6391,57,9103,8578,-3420,3910,4834,4932,-3978,9271,-3526,3178,-6341,-7570,5472,3691,3317,-2932,2043,-2176,5404,1408,6572,9340,7665,4444,-5307,-7113,-9019,452,-7392,6797,8504,8623,-3841,-3816,-314,3461,-750,-136,-7303,-4541,9135,6497,-4569,-4846,-2621,2450,-8522,9431,-6201,-5675,3265,-9919,6940,9637,9857,-9981,-3384,8465,5367,2926,1642,9559,1808,-9476,-7980,-3800,-480,-7129,2441,-2634,-8981,-259,999,1796,8817,3944,-796,3447,-9385,7661,2201,3834,1824,-7043,143,1257,6806,9045,619,3331,7414,9539,-2131,2874,-5212,2452,6159,-8110,4509,9102,-1193,8077,979,-3991,1106,1987,-389,-7979,3321,-7904,3696,-1137,4025,9453,-5734,-4290,-6184,-1291,-237,8357,-4227,-4199,2268,-1274,1933,-2840,-3747,1023,7370,6962,3001,-2303,-8507,5392,-9248,-4974,9576,-9026,3477,-7832,-5928,-9874,-2622,3171,-4587,-7887,52,7447,-8488,3140,957,441,556,-7998,9051,-2752,158,-1202,738,8483,2629,7344,-6070,-5506,1175,7617,950,-350,9420,-9976,7717,2727,-7310,9642,3267,4657,-9614,7093,4945,8564,8233,-1236,-1361,-550,-8558,3892,971,4012,-8551,9823,4327,-7828,-5122,-4141,-1623,4005,4484,-9842,6025,2887,-7524,5926,-3596,-3106,-1072,-7828,7463,3895,4854,-1424,5808,-9489,-8976,5854,6728,5103,-3649,-4667,5656,-5220,6739,-7115,-3820,-6478,7713,9129,7806,-5430,4466,-9031,-6084,5597,-9290,2987,-5357,6495,-8,-3025,-395,9048,4556,-2071,-7738,-6286,-4075,8016,-2045,4746,-9038,7591,4824,-8965,-1063,8030,6868,321,3924,-1372,-1589,-9629,9023,-8104,-702,8580,-9444,-9236,7177,-8190,5652,6543,6087,-5289,-5873,-3234,3329,6883,8621,-5551,-4628,-7801,5321,-5460,1920,1562,3108,-1858,-2356,-9467,-8139,4256,-7947,7371,9558,3720,-8017,2321,-5967,-6671,5365,6072,-5427,-4792,-8173,1757,-7402,-2321,-9020,956,-8231,-3014,9549,-1826,-991,-9790,-3040,3936,-3551,9885,-111,224,777,-725,-462,7909,-6742,-5155,-5425,983,5104,5553,-3126,2258,8545,4871,-9842,-9379,3864,9531,-7160,8810,-6371,2043,1910,-2089,897,2001,-8117,9387,6998,9229,9739,133,2766,8351,-8959,-5476,-7773,8310,-8250,904,4774,8381,73,-8352,-9697,-1649,-6665,4912,-1397,-2149,-5119,-9997,-1949,7709,4826,263,8039,-6156,-4940,5177,4577,4923,-4764,7435,8771,-8164,-3731,-6239,-3785,-7618,-2156,2633,2541,-3204,-7168,-1322,-9221,-7818,-3449,-1871,-5861,7819,-9493,-1812,1749,389,-1468,7659,4540,-2035,3953,-6801,-4669,9644,7620,-8392,-7504,6861,-9173,5399,4602,-5162,-449,7792,5699,-70,-5790,2651,2269,-3836,6051,8844,-5832,-4238,1729,-7660,3094,9006,-9626,4325,-7456,7306,-3968,-7057,7418,7421,3020,52,4521,151,-7873,-9344,-7790,-9216,5663,9504,-4948,7066,-5146,2290,-4803,-5971,-7875,-3236,-8474,7226,-8953,-9250,-4061,8060,-575,6811,-9402,-901,-3865,-6980,-4963,-4046,-1589,-9020,3516,-8279,1138,-8181,-4496,-6555,7343,-1654,4625,-6460,9561,6133,2318,6473,-1691,-7702,-6626,-4768,2900,-5705,4875,-1993,-4463,-8539,-6987,3554,6980,2632,-8200,838,-2973,3447,-4768,-3014,-2246,-5027,-7884,6951,-1853,7030,-8623,9929,4293,-4713,3840,4918,2217,6803,2571,2782,-9318,-484,-7543,-1258,6245,-7119,4941,-8071,6919,-1939,9692,-8405,-4327,8211,-794,-315,910,7659,1104,-1532,8426,-4183,-5806,-1028,-562,-8782,4497,-61,8158,9889,1657,-9036,-1920,-7006,-8602,-8987,5193,8403,-1291,-75,9295,6284,-7212,2004,9716,4678,5884,-9066,-3304,-7784,1958,-7439,4460,-4573,-9210,-4902,8999,-1392,-190,4198,7748,-8059,6276,2416,5795,-4105,-9719,-9931,9215,9360,-2767,4741,-8525,-7548,-5699,-2554,-5701,489,-1371,6953,8521,-7607,-237,9877,2799,-3237,3547,2790,6435,-7899,8048,-4257,-2365,2287,-9478,-8015,-4916,4954,-7470,1580,-419,-3211,758,594,8376,3636,-4825,3891,3336,2275,-7770,4792,8056,-8707,-2775,-7557,2683,-1817,3008,137,-9133,-1908,4259,5001,-5111,-8620,1018,2047,5910,-6304,3477,8709,-9126,5727,-7036,6656,2953,8967,6789,8127,-9595,4409,7255,2087,-4412,2960,-9765,-5179,-6255,-8391,-6565,3511,6031,4612,1172,9547,8501,-747,8622,-5237,2648,-9087,2481,9326,-6248,-9311,8727,-3883,9629,9692,-4276,3512,4972,-6420,0,3378,-3064,-1408,1701,-4410,117,9630,2106,-9278,473,-996,-2013,100,-6336,-5148,-5015,-3488,6945,6012,6590,7748,-3748,-7262,212,8080,4088,-3795,9426,-2801,4221,-3396,7671,7447,6345,-8562,1202,-561,-1772,115,6155,3407,8242,-6522,1238,486,7284,-1163,-1492,-2873,-9711,-3693,-1395,3901,4237,-2985,-679,46,1793,-2390,-5457,-1005,-2765,5400,9652,4227,-2743,-994,-3226,7475,6854,8536,527,2382,2002,-6374,-2443,-9342,-7660,3874,1859,4082,7284,-817,4374,744,673,-4947,108,2947,-8959,-1720,4638,9873,7273,2382,7689,9253,5489,-6957,5415,-8328,3615,6250,-3552,-2848,2815,-7974,-3828,8053,5876,7760,6162,-8791,9042,-5660,-1912,612,3054,5300,2,8477,6340,-273,5573,4366,6110,-7042,-1103,6594,614,4173,6960,1874,-2522,-9411,-3556,5445,-3697,6419,279,5660,7365,-4087,137,2938,-2593,3524,7662,-185,-124,-523,6656,-1400,2401,874,-1627,-3547,1180,-3157,-8071,-6439,4820,7054,-5036,4380,7195,8085,-7004,8463,8783,-9228,7208,4744,-9777,6675,-7963,6485,4243,-2276,-7226,-6820,8936,8625,-3985,1560,-4223,-1692,-9437,9656,526,2816,5481,6516,8839,-7556,8242,-1126,7321,-9820,-4060,3920,-9469,7176,2141,8889,-9603,-8400,-7046,-7069,7775,2748,9446,458,9670,8111,-8920,-5434,6271,9498,-7198,4188,6854,2325,3529,2206,6811,4475,-6087,-7559,-3339,-6258,6435,-230,-3296,73,6167,2473,-9567,-7538,-4680,1773,4543,-1511,-3796,9327,-1628,-3666,-2154,6412,8372,7224,2802,-4310,-6008,4048,-3393,-8209,-3360,-5484,-242,4389,-8288,-650,-4798,-6146,-4652,3376,6320,252,3617,4151,-6722,6921,8754,5030,-1081,4369,3450,8829,1982,-1578,-4145,5976,-9636,6776,-5758,-2546,-7844,147,2610,9130,7937,7553,-1591,5964,-2284,4739,2064,-3160,6410,2192,1738,4798,1961,7074,-8672,-1357,4941,7905,-185,7466,-3668,3293,432,-933,-2767,-1155,-4354,5388,3316,7979,-9921,-4067,2661,6077,-6065,6677,3054,682,-47,5751,-1172,-7085,780,7328,7499,-1266,6365,-5389,-7871,-2285,6302,-9657,-702,4582,9563,5464,9969,538,101,-2772,7230,-3364,6701,-6698,-2972,4140,4436,4686,682,-9517,-8248,-8606,9906,-5883,-2286,-2070,-5499,347,3153,6010,-5109,7525,-5069,-5692,-1152,819,6488,-5742,3468,-7566,4561,-7033,-851,5523,7322,3914,-6815,3945,9620,-4352,-6871,8665,4788,7957,7585,-3232,-8216,6630,5109,3466,-7914,5755,-4664,-9356,9379,-4143,-2127,6337,-8438,5777,6534,3952,2889,-3840,1615,-8244,6938,4032,-8633,-4056,6916,-6629,-4023,1710,-2232,8214,6432,1081,-8423,-7415,2286,-496,-4293,-4206,2227,6873,8456,77,7543,-4293,-4146,5933,-3542,-3245,1071,-456,1479,1092,2963,993,2239,-8033,-5996,6609,-8476,-7597,1032,8318,-4587,5739,-2168,-3085,-973,2603,-7195,-9727,-4268,9321,7149,-3017,-5464,-2093,-4714,4674,2027,9895,8610,1004,-4651,-36,6646,7263,-5933,-5442,-3499,-1049,1120,-6670,4155,2868,-5505,-7166,-6803,-2263,-2783,1054,-9622,2559,-9103,156,-8782,-1606,9358,-3857,-7992,4319,-5709,514,1918,7492,-960,8123,-6328,-6469,-1870,-1672,-338,7620,-5807,-4109,-2625,7144,7145,2658,-5401,6843,584,2851,4867,294,-5394,339,5452,-5292,-9604,4785,8602,8515,9615,7015,-7579,8476,-8438,-4171,-4681,-6925,-17,-3961,-960,6656,2358,-2719,-9949,-8951,9891,5081,3391,6233,32,-2150,504,2685,-4872,-8652,-7364,-8892,7307,5487,4971,-1334,2464,-4736,-7200,3357,-5041,-3343,-835,751,-7237,6512,4243,9192,7104,-7787,1501,2001,5753,2153,-2652,-3380,9820,-2090,-3764,8947,1913,5122,-3962,2282,-4560,8113,8064,-4415,-4141,4070,402,3121,-6267,9215,-6414,-3458,-9500,7907,8106,-3065,1973,8016,-6708,-515,5532,1785,961,-1099,-9547,-402,-5974,3302,8924,2958,-4500,2695,5655,-4194,7862,9054,4905,-4148,6528,5396,6493,5773,1936,-3441,7582,-6637,7437,4883,9836,3114,-7849,1190,1831,-5371,5644,1390,-8298,729,67,9685,-8517,-5448,-5287,-8569,3194,-557,8627,9392,4852,7215,9585,-2919,-88,9793,-501,4893,-3003,437,9749,-7466,4242,548,9240,7545,573,6184,6416,-4483,3280,-7332,64,-7372,-9683,2380,2729,-6885,-3767,-3735,9524,1773,4047,780,-5697,1226,-5143,47,575,-7076,8708,-4116,989,-8071,7812,-230,-6992,7044,-6367,-9383,-277,-7978,2692,-8522,-8478,4732,-9905,-18,2837,9871,239,-5221,-2683,-7562,-2809,-929,-2852,5400,2868,4509,-7647,1092,4340,2772,3100,-5379,-2916,-9485,2071,9325,9701,3744,-896,-9420,-6303,1167,-5070,3453,-6303,-3449,-1088,1391,8400,-9248,-6166,-2214,933,9343,8476,7433,6822,-8536,4037,3870,9866,5283,-6543,4425,-4496,-8726,637,9341,-3611,-9565,8196,-1396,7567,-428,-6400,-9594,2096,4378,-692,-6335,-8394,3002,-7009,8096,-4606,-6079,1201,3690,6223,7796,-5133,3416,-154,-5915,-7821,-5936,-6633,-5897,-2111,5576,-3834,2712,5455,6264,-6414,-9646,-1961,-3985,-8265,-7363,-239,5106,-3419,1640,9790,5628,-4712,-5313,3879,-4782,6125,-7152,5390,3456,6425,2178,8945,3014,-1789,2352,8628,-8078,9005,1828,-4550,6335,2384,7240,4995,-7229,30,4828,102,-6878,-6587,-2880,-4168,6722,-6506,8528,-1385,9401,-9928,-5939,864,-3728,6458,203,-2514,-840,-9709,-6970,-9317,3984,2437,-7187,9629,868,4020,-7689,2416,3182,3516,-8788,3329,4276,2679,7908,-3707,-9477,-6744,-9821,-676,8999,4838,5772,-7635,1587,-1676,3221,-3571,2051,-4520,-4143,-3152,2166,9942,4870,7811,-2991,8419,6336,5721,7791,-7037,-366,-4615,4942,9687,-6256,4167,-2776,-5948,-5742,-8574,-165,-4030,609,-6444,1479,-5450,998,1850,5948,-5824,-4734,9323,6645,9372,7419,-9552,400,-9875,-5181,5552,9822,-9585,5280,7096,821,-6585,3448,9594,3090,-7974,-6277,3145,4903,-6040,-3746,-5681,-3610,-9085,8271,-5982,-654,-9618,-8161,5457,3012,1670,1359,1465,-7292,-3001,-6782,-7971,-7075,-7758,2172,5412,-9639,2829,-4935,2807,-7114,1176,5410,-5221,-6781,9344,1235,680,-9606,-4864,8901,-1233,-4024,-8362,1430,8725,8087,-3149,2680,7768,8017,-2048,-9571,6035,7342,-8760,1138,3994,-4631,-5667,8181,3994,-7140,6227,-825,-9102,1018,3861,-2196,-469,-5067,709,6829,-9754,-2818,-5923,-6204,1570,-9174,-632,-5853,9321,9983,-5257,-344,-7716,1488,7215,5561,1650,-2575,-4680,-7840,-3040,-3428,3419,985,9184,7654,-5438,-3547,-1216,-205,-2848,-1234,-9942,-2701,-5371,-3931,-7147,663,-1047,-1774,-2169,147,-7755,-8163,-1582,924,7076,2621,8397,2060,-4620,-2010,1032,9808,-2719,3350,-1920,-3849,-1721,8636,661,7383,-5441,4677,2354,1636,9058,-2864,-2674,-5703,-8967,-2385,-4123,-8579,6738,-1024,8697,-7957,2138,-4004,-1064,-7013,5998,-1597,7440,7120,8948,1914,4601,-3696,-6851,-4863,8751,7857,-2145,902,7479,-1217,-946,-6103,1729,5909,-2482,-597,4653,244,7132,8821,-6992,1569,-1211,-2971,8259,-7498,-7031,7760,6544,3748,6540,4630,-5646,-1726,-7357,7748,6270,-3075,4255,-3264,4882,2930,4723,-8839,-9704,-100,6571,-536,7280,9433,-5914,5343,-4958,8790,9759,-5625,6176,-2173,2660,-9541,-5240,614,301,-3845,9517,7985,3511,-3633,-3822,6747,-2770,-9125,4782,-5786,-3029,1124,7279,-2774,597,2621,3745,-7781,-8100,-4280,-695,1525,3795,3865,-9117,9012,2497,7950,-5350,7107,2887,8601,865,-1044,-6121,-392,9545,8206,751,210,4014,-7617,8526,-7955,910,-1856,-1172,7531,6204,-3978,6139,4550,-1806,5138,6555,-1246,-3206,5602,6605,6742,-2761,5251,-7893,-4433,5552,-6034,3836,5870,-8682,-8723,-8979,-5782,-2154,-8727,9072,7029,-5418,9629,-7775,683,-4213,9602,3045,9694,1912,1057,-7166,7557,6351,7559,170,5510,8759,-8862,1850,3772,9189,4976,-9238,3560,8054,8704,-4327,-7574,-8816,1773,-6879,-4061,2137,-3011,8822,-7948,-3316,5815,5317,-6374,-4890,-3199,6625,3918,-9947,-7941,-1353,8911,-7935,-156,7388,2294,6837,-145,8695,-2623,4621,-1181,-4995,8046,-7864,3099,3619,-4653,2489,-8811,-4633,1296,7332,-572,9342,-3222,-4384,-4698,-87,3883,5126,9416,3454,8355,-4878,7903,-7204,2931,-9213,-1393,-4276,-7888,-8566,-5299,3033,-324,-8371,-6369,8936,3589,-4803,-7008,2901,-7756,5077,4343,-6502,9367,-2532,9463,-7234,8188,9610,6338,5139,-9339,-3304,-8843,-8790,-4480,2885,-8024,8229,2482,9211,404,-6273,6571,7434,-868,-5266,-1976,8071,1392,6569,9413,-5620,-7958,7580,1003,5981,-8672,6078,2640,7108,6957,-9755,-6176,-3008,9875,5879,5367,-9898,5374,8193,-9008,2161,-3145,7790,9159,5903,7531,4048,8591,834,6964,-8514,-1690,7893,8486,-9418,-7263,3793,4519,-5448,-7488,3738,-8040,-3447,2517,197,2634,-7171,-6023,-1328,-528,6569,-4850,-1851,5299,-5442,-1522,5564,4980,6169,9970,8865,1242,-6461,-5985,-534,3790,9275,8176,-3819,3280,-1568,7124,-850,-4029,7639,5285,3404,3327,2447,-4623,7814,2021,-2197,-559,7290,8842,-9108,-6560,-5202,-8899,-4095,2964,-7738,-2424,1258,-700,7874,-3983,6706,-5607,4501,-5563,7034,-6606,335,7567,3031,8569,-287,8533,-5165,5256,74,-4194,-3348,-8528,8828,-6156,-8123,-1737,-2323,-8240,-4350,1136,-5348,2317,-9136,-4652,1467,-1901,-2709,-5295,-5403,-8620,2217,-2659,4580,-5590,-588,8392,-6005,-5272,4702,-8791,-4176,1592,-1654,-535,-2461,-952,7313,-3859,5187,-4723,1948,-7777,-4128,3701,3710,1610,9569,9059,-7072,-5504,-2403,-3920,1743,-5968,2588,742,9679,5600,-6442,6438,-6587,-6067,10000,8629,-3381,7856,-4445,3192,-2483,7237,7616,7538,-7370,4393,-262,5961,-522,-5947,-3090,8432,-4369,-4681,6812,6211,5929,6136,-1176,-7965,-3402,9280,946,5529,-4151,-997,-8395,660,2157,-711,-6262,-4453,7315,5638,3275,6579,-7183,-8452,-8868,7926,-4053,543,-2016,2605,4405,8683,7789,-3108,8428,3727,6564,-8883,-1644,-1033,-2061,-4998,-9480,-9562,4678,4236,461,7283,-3327,3874,3715,-1556,944,9089,9596,-1428,7477,2,-7644,-2464,-2216,3061,-4614,-8869,3192,8173,-4420,-131,3,-1635,-3861,-5108,-8482,-4898,7008,-4962,2171,-971,-1827,-8158,-9933,-1103,-7502,482,5352,5893,1757,931,-6806,-6933,-8080,5786,-5028,847,-117,-9316,5856,7899,8408,-5288,2977,8122,7045,2616,-314,-4698,9098,-4421,1985,8263,7698,1885,1748,8672,-8106,-99,8626,-1543,-6089,1741,4149,-8718,-1576,-3223,6329,328,-7910,-4245,-9651,1812,-5901,-7576,5170,-481,9712,1073,-9761,834,9366,-568,734,8061,-8933,9723,6579,3131,-3132,-1380,-5748,9084,6073,-3760,9788,-6986,2628,-7880,3568,-4080,3351,1548,-3253,9940,-7043,3040,-5987,-5962,7658,4066,-3109,-8644,-7588,5796,-9341,9232,3596,-5071,7441,-6229,2222,-5434,-2443,6932,6441,-4103,4924,2241,-9027,337,-6280,-7004,7775,4472,6410,4787,2656,361,932,4518,6458,-1969,-2566,-3226,-2849,5573,-9442,-6169,6298,-7108,9827,-7491,-5202,5038,-4943,-3795,-8811,-63,-8107,-8660,-835,6082,9858,-1853,5878,1110,-3960,6156,4106,6403,-8347,9172,-8637,-4738,-4722,-7270,1150,7721,3848,9076,-1833,-479,-5790,4416,9358,3507,-6737,-7799,-2505,-7381,-3035,-4756,160,1384,-8569,-7482,9098,6769,-9904,7325,-6938,-3479,-1056,8560,3257,154,-6473,7454,3552,-8935,8394,-2790,1816,-4857,935,8129,8474,-3885,-2884,-7855,5641,897,8556,6756,-3281,-9496,692,-8432,2028,9955,-4946,-1615,172,4307,-959,7964,1029,-1190,3265,8133,7518,6608,5119,4842,-4075,-7194,-1332,-7064,-9056,-4817,-7392,-8973,-2693,-7684,-9886,9673,-3886,-3186,-2664,8258,-1163,7557,5546,9370,-4091,1161,7991,-143,3334,-2041,1569,-2200,-2095,6235,-3991,-8062,6104,-5583,-4403,-745,7394,-3155,2664,7467,3897,4006,8104,3601,2891,-5374,-6492,-4702,8520,-4857,3578,5113,-8421,-179,7951,-4153,-3699,-5329,-7102,1016,-9476,-5916,-5154,589,-2012,3199,-1975,-5837,6849,3695,8346,5857,1098,-755,8003,8837,-7957,-7237,-8432,-7142,1237,4069,8444,-1996,7545,1826,1415,6892,7198,-8265,7296,-4097,279,6241,-510,-290,-9710,3385,8452,9090,4248,-717,-6122,4593,-6698,6910,7316,-7819,-2103,8007,421,2362,1527,-24,9994,-2961,5483,259,77,-1904,9360,-6905,6441,-6852,3798,9191,1724,8017,-5831,-2002,6751,8484,-9097,-8491,-35,8042,-5389,-800,5895,3834,6244,760,-3761,-6892,1776,3374,-5169,-368,-8050,6603,-5611,8762,1846,5634,3786,-9970,-5796,-6002,-3779,-9835,-6976,-4834,-7657,-4663,3312,-595,1836,-3927,-378,-4931,3800,7092,4505,7545,4605,-378,6747,-4922,6038,554,1680,2942,9004,-9289,-2154,1370,-7178,-4079,9319,885,1173,-3999,4089,-2472,6601,-2418,8262,-7858,-6206,7234,-7717,-1151,9698,7174,-7313,8629,2354,-6140,7584,9236,-9209,-3742,-3103,986,3880,-1405,7744,-8299,7829,-2677,3046,9927,8859,-5605,-4899,-5438,4293,2010,2473,1871,8536,-1945,2380,-4747,4744,3037,-1327,7580,-6795,-8696,-702,7316,-7672,-5827,-5042,-4638,588,-6698,6754,-1688,3447,8367,9774,5911,-2781,-9138,-8554,-8611,-9809,3062,-5910,4974,-1358,708,-2957,5531,1731,-5779,1685,-1350,-4953,7445,1430,-8197,8773,2083,4723,6843,-8153,-5612,-5666,-5450,2520,8586,-5080,6325,-4046,-7184,9353,-4037,1058,-3220,7397,-770,-2139,-5262,9579,-555,9874,-5499,613,1202,2447,4118,-2192,1166,-3638,1618,529,8079,1827,6523,7946,-8750,-69,9107,-4100,3943,-9533,6384,5820,7731,-3476,2955,9572,-3584,2312,-5273,3640,-460,-9870,6571,9904,-8295,-8645,701,2973,-8864,2478,1277,1183,2898,-450,3987,-3037,6395,3472,7450,3634,-9048,-1963,-5014,3308,5294,9331,8665,2603,7801,2886,6596,-4620,-501,-459,5336,-9777,-4406,84,1010,-3546,3429,-6877,6862,1250,-6017,8953,-1203,-349,500,-349,-2750,4540,-8852,2228,-1095,-8809,-5845,1278,1582,7768,-5863,1709,7869,8376,6834,-7972,-9956,-9840,4021,7370,-9978,1491,-551,-8103,3115,9588,7095,20,-3186,3725,-8621,3199,3050,4520,-7941,-7542,-170,-6108,9348,-4675,-4302,-2324,-1078,2502,-5154,4681,3874,-1552,1801,4224,284,-7712,6112,-3077,-24,-691,-3319,57,-5297,5109,-6399,7801,9838,-6756,-7957,-5827,710,-6285,4061,-3226,3423,-4322,8830,-4350,2346,-3564,8873,2115,-64,5461,4961,3319,9354,-5849,1763,-1374,861,-248,-3946,4418,7908,-3595,5654,9066,-2598,-7710,-3256,-1127,-2263,-2291,8053,-988,-2852,703,467,5496,-4398,-2103,-5491,4162,-6108,-1268,6917,3347,-1078,8724,-9870,6420,7429,-8573,8574,7472,-1466,-8459,1307,-7844,8046,8726,1960,5073,-6651,3922,7267,621,-4170,-4085,-3138,-9017,4130,-4942,7821,9037,2820,-71,-707,-6851,-6038,-2624,-7295,-5864,-6291,-5778,1716,-6707,-6837,-5804,-8026,-8800,-2610,-9131,7850,8228,-482,5227,717,6997,7192,3765,5808,-9892,6223,-1428,-8853,5706,2018,-9029,-7766,282,1109,-1817,4638,-3308,-7140,-3364,-5722,-9668,-348,-5116,-6783,-7434,157,-7890,8300,-7160,-2573,9873,2858,-3314,4714,6153,-2770,6917,-7832,-4825,4786,3857,-5096,-7041,-6133,-860,8406,-3582,-2343,-5679,-6062,-181,4336,9062,3612,-7756,7632,2038,2359,-9806,-6774,-7736,-9049,-5270,-8302,2863,-257,-1230,-5016,2303,638,-1165,8348,980,5879,-5400,5823,2173,-1441,2737,-7885,8267,4042,-4493,-9876,2271,-9531,-8282,9962,217,2740,6646,-4273,-600,3933,-4547,-2800,9321,-2376,8577,-2106,-333,2479,360,-9533,-9146,-1627,8003,-9530,378,-7804,-7745,821,5262,-6560,9108,-7092,-8325,4848,-9621,3138,-7711,5115,8194,5494,-3064,9475,9058,7791,258,-4140,-5152,4483,7419,-6731,8109,9357,-8509,4214,5909,-2883,6814,-75,-9516,-2869,2358,-616,8263,643,-454,-5587,-5282,2282,-1347,-8797,927,1515,-3529,5742,5793,6253,-8326,-63,-4262,2281,9908,-630,4546,7305,2290,7391,9233,-2613,-9787,-6033,-7952,7257,-8846,430,9008,2919,6814,8825,9001,9127,-8157,3000,2546,1405,6706,201,-2111,552,310,6143,9336,9798,-7941,2565,-3028,6833,-6837,9978,2159,-4337,6474,7424,804,-1579,1582,-610,4321,-5729,-3850,-5830,-1740,-8775,4007,-144,-775,-1445,9016,-1855,4494,-1809,3677,5968,9471,-545,616,5015,-3047,-7620,-1005,-2990,847,-5469,6073,3284,6819,1842,1546,9194,7845,8591,2552,2579,-7840,2105,1721,-1133,-4616,-2778,-1065,8003,-1934,-1180,-6967,-2228,-760,2682,-4528,2334,-1634,-8639,-5356,3752,-2931,-307,-9803,6227,148,570,5889,-2048,2173,7251,6991,8983,-5223,6841,4940,-9147,-7331,-7083,-9688,-9863,-6133,9843,-3288,-8021,7148,-475,8639,-5863,6364,-360,-899,-6826,9135,-103,-1750,-7761,-7342,7195,-9727,3606,7245,9595,-2202,-2704,5806,-3151,-9782,2253,1039,1300,4997,6110,-7317,2854,-5429,-3807,-1621,6448,-5965,551,8135,-484,-9686,6306,8765,-1929,8565,-9443,6540,-745,-2138,-627,6206,2449,-6806,-6735,9959,9739,2888,-9557,2126,-1418,4966,9637,-3246,3605,-2001,-86,-3554,5234,-9017,2603,-9279,-2875,-9853,7006,5830,3122,-8289,-6520,-9912,-377,-2467,1174,9457,56,-5076,-4331,-3028,482,5307,-8665,5466,-2607,-3852,-6752,7233,419,-7859,2896,5633,-1228,4962,6177,5999,7659,-7448,6493,5153,4781,-8526,6878,-7284,-2496,-4464,3642,-8692,2636,-9002,2755,5942,-4895,9569,-3373,49,-5522,-9105,-8594,2105,6714,36,5547,629,6148,1511,5659,-4165,-2690,513,9394,3388,-8420,9864,-5025,-1253,-622,-2084,-9698,2554,-6622,-1917,-8870,9045,8951,-8737,-9423,4051,-794,130,5971,3114,2294,-8142,-8682,1937,2220,-6213,4593,-765,8142,1338,-1025,9969,-3978,-8041,-252,2671,2325,2785,-4667,-804,-5579,5634,9987,-1415,-7783,9766,4540,-6972,-785,9488,-5428,-8518,-9039,799,-2140,3533,3974,-4786,-4330,-6394,2115,1499,-8983,285,-1189,6197,-2042,-6341,3560,-6691,8999,-7764,3180,-4640,-7823,-9152,9006,-3955,9630,2272,-4084,-5219,2357,3317,2326,9376,778,2064,1045,-6305,-9571,-8945,-9015,-4683,-6442,-5887,-8122,-4052,-9671,6499,-5513,-104,316,6268,-7971,-1817,7906,-6465,7722,9625,6497,-492,-9769,7090,3472,1672,-648,-1538,5668,1670,8047,9783,-4225,4176,1301,3011,-5310,2306,8717,-1650,-6366,-7657,3825,8990,-4849,-4967,9239,-1736,6664,5950,6194,2121,-14,2317,-2018,-9152,-2765,6898,2333,-301,-2401,-3897,-9461,3708,1861,-2863,-4649,5297,4895,-9948,-291,3163,-1436,-7805,1733,8321,9335,8754,6106,-1199,982,-2440,-7164,296,4977,1288,7701,3019,-6797,9864,5739,5114,6151,-2831,4079,7517,8171,5266,9998,3309,2444,1828,-5306,8683,353,9747,7033,5096,6619,-9942,6138,1899,926,-1290,1365,4978,-3572,4319,5916,3764,-8773,9017,9787,-8802,7158,3361,7579,3222,-241,6367,-9405,-4793,-3091,2619,1271,-5525,-927,7596,1931,7632,9767,2788,8912,8642,1610,6545,6030,6730,-9288,-5860,-7844,1384,9510,-816,5905,4034,-82,5950,5421,4085,-9228,9338,1045,-6178,8660,5651,-524,-2543,9075,9628,-1065,4975,8111,9203,2206,-5944,-2621,7199,5892,4416,-5138,5610,5841,2424,9528,-2547,9608,2735,3045,-5283,2420,-9116,6650,-2775,-2307,8271,5531,-348,-8249,-7669,3964,8870,7944,3181,3830,-4431,274,-4249,3669,4035,8240,2679,-5418,7682,4761,-4117,-5802,-838,-2074,3662,7253,-7397,-4186,8633,-2954,190,-9118,-2982,-200,3606,8439,7243,-9119,3946,2139,4369,5897,5129,-9928,-4227,-6769,-5292,1652,464,8504,-937,5894,1416,-3037,6868,5786,5614,7352,-8489,-3568,-2313,2160,-7219,4235,7730,-1694,282,6031,9123,5619,-5036,8333,-6143,4195,-8387,-4914,7204,-2082,1929,-9287,-4796,2587,-2673,-8606,-2479,-2141,-6869,6250,2689,-3839,-1286,-4551,-1297,-8674,-3967,9784,-1538,2015,-7118,-6583,-2424,-9818,-8737,-5597,-5116,-9569,-6198,-2033,-2892,8904,451,-8452,-7649,-9833,-4346,7460,4193,545,2924,5360,-9793,9189,-5322,7975,-7428,9848,7534,5695,-4732,-8483,4852,9323,-9039,7142,9880,8149,7909,8276,2708,3679,-8546,-8575,8033,4749,-169,5331,-4170,9787,2256,-5932,1914,3416,-1392,3371,133,9272,7323,-6758,1676,-3814,7448,-7010,-5706,-4946,8527,6167,9878,6299,9667,-8763,-1275,-7640,-8337,-8690,4539,-520,-9272,2038,8458,-5759,5556,8613,-471,821,-2062,5659,5311,9285,-9365,9340,-2785,-3862,-6388,7891,9190,-6917,5896,-1422,-2115,-9133,6442,-8624,-7119,-4483,-5583,9781,3172,5062,-8553,3001,-8099,-4040,-2671,-2214,-5557,112,8105,-9927,6755,-7916,-399,-27,-3544,-4243,6259,8741,9273,3555,7921,7829,-847,-9937,4680,7573,7379,-4925,8148,-5782,-1466,5542,6282,-6088,3119,6492,3555,-5967,-7235,6022,-1632,3498,5681,-1012,9034,-4932,3823,-6368,8010,-3412,2110,2333,-8223,4834,-3610,4189,2139,-6880,6440,-3532,851,1935,-4334,-3837,-6307,8425,-7078,-6163,5434,-6735,2094,-1095,2420,16,7349,-5706,-8855,-4132,7745,6126,4897,6287,6915,5957,6129,7786,5778,7063,7244,3291,1936,-649,-4382,5194,8810,-6231,-8991,6239,8112,596,9593,2102,-8313,-1874,3411,-9126,9699,8722,-18,-8543,-9424,-7208,-8612,-4029,-7658,4161,3704,-1851,4955,1355,7479,-6711,-222,7872,9989,6562,45,7937,9660,2893,-2359,7760,1246,9632,7077,4670,6216,-4411,8124,47,-5039,-6642,4122,-2343,-6919,-632,3237,-6914,-1600,-1762,770,9667,-6965,2596,369,-4352,8269,3870,-6179,7372,-4841,-8016,-3231,1871,6757,9490,-9975,1280,6539,8914,-1006,-1662,-1976,-969,-9139,8878,-6322,7611,-4859,9744,2371,-7667,-2849,7257,-2877,7232,8847,-4571,3304,2641,3739,-9153,2765,-4343,-7230,-3813,-1520,-1308,5166,5951,2619,5356,-5373,5629,-8120,98,214,6354,-5059,-4220,7588,-6391,99,301,-9410,-9901,8627,6188,9508,2761,-1407,8083,-7809,-7274,8631,-569,3346,9900,7664,-3467,-7208,-6741,-710,-7714,3108,2988,7679,9949,-3874,4532,-4579,-1635,-9897,6301,-2987,7156,802,6941,4682,1090,2517,2816,-2263,-6105,9302,6507,-876,-1656,4011,-5802,-689,-394,-4915,-1541,2690,7435,8819,-9267,9529,902,3107,5055,-2797,-2507,5603,-7438,7543,7136,-8932,-9821,-830,7110,5034,4509,-7321,-3273,8498,9980,4401,-644,79,-1187,-5776,-9066,-7396,4216,5208,-5569,7751,853,-5890,8166,833,-1618,-7001,-6966,-224,7224,-2480,-7549,7943,9173,4714,5822,-1066,-6327,4098,7060,1395,-1838,-4748,1477,-2985,-5226,-6555,-7357,5803,1172,-9551,-293,-7197,1562,-8130,-4909,9825,-312,-6442,5150,4168,-4185,1996,4751,4835,-5010,4182,-1247,3363,-7734,4711,7831,6298,4108,-3255,9539,3826,9543,9605,-5796,7034,-3681,5945,-9036,-7075,-5969,1480,3950,-3218,2518,9366,8492,4184,6982,5905,-7263,-1926,-2846,-2945,-2262,6648,626,8722,-4578,-49,-7583,1167,-8301,-290,-3643,-3908,6157,-2523,-7913,6337,-9081,1112,-9315,6671,-5770,-8437,-9549,-9084,-5736,1348,2824,-8209,-6875,5935,8645,1049,-6672,6545,-7663,-651,-5510,-3008,8516,-9620,7299,5971,-9636,-321,7584,-8646,2086,8049,2095,-5797,-1724,-8660,5624,-5387,-7014,8850,-2368,-4720,-2226,3849,6772,-879,-709,-9574,-7848,-3645,124,-2345,-2186,5146,4809,1904,9917,2261,2259,-2099,9089,7258,-7902,-4298,2361,8851,-6622,7841,-111,8311,-1886,6721,-148,9332,-1250,-1536,3644,-8257,-1539,-8212,1470,-2999,7756,-3185,-1425,-4693,-3254,3448,-4117,-2792,7727,-5602,8977,4385,8485,615,-304,152,4948,-9863,-1985,-8232,2616,6154,-1791,4680,-5965,8860,2334,-8966,-9117,-4141,1782,-26,-842,2829,-3475,-1458,717,8215,9018,-108,-4952,4692,1692,7881,-17,8392,9356,8996,7350,6471,5414,-4313,-2581,-9698,3165,-1012,1765,-4283,5705,-9854,751,-7607,8346,2414,-6922,-1622,-4449,2481,2017,2827,1784,2065,-2006,-2239,-6445,9396,6160,-7980,6588,-6583,5208,6348,2150,3157,761,2779,-1461,-2956,-1083,-3197,-9083,5807,-1338,3561,3016,-9420,-4571,-3173,4661,-8431,7274,2747,6939,-6455,6412,-538,-3797,-2099,1166,5702,7066,-668,-3418,-9976,243,-8207,791,-3829,3433,7253,7872,1676,3258,-7037,-8132,-2141,636,3688,9617,8123,3036,-4230,-9212,-8990,-1045,9464,6142,-6861,6304,4651,7272,-4222,1052,3049,-7893,9399,-2472,-6687,-3660,-5172,5013,8908,-8345,6016,3043,-9934,895,9647,6836,3206,-6570,6828,8881,-9757,-6518,-2251,-5700,3129,-1941,-9400,1356,2576,-8489,-1837,6113,6691,8561,-7342,6173,7779,-6059,-7037,-1606,-703,-7673,9056,589,-6165,6291,1077,-5257,-4920,4343,-2840,-5846,-5317,-8171,3640,2129,240,-3534,398,7675,-5676,7568,8513,8658,-6409,-6461,-5877,1997,3692,-8947,2008,-3928,7069,-8999,897,-1420,3039,-1118,5394,-2582,740,3740,-3020,-7326,3200,-1061,2442,1991,-2408,5011,-2981,4657,-9858,-9909,424,7058,-569,903,-5771,3794,-9360,138,-1672,-3066,5933,7463,-9046,-4561,-6973,-622,5832,4928,-838,-930,-1524,-3249,4317,7171,-1871,3867,-7207,6649,524,-8777,9341,-4172,-9568,-3659,-2925,-2135,4972,-1646,-2304,-2580,-3132,4362,2811,-9622,3030,-2390,2481,1854,-2508,3436,-2153,-5230,-2447,8098,-1926,5650,-2186,1054,-4291,-1600,338,-9194,6439,-5735,6401,4301,-1470,2958,-6068,-9363,7331,-6270,8183,-1755,5938,8403,8055,-7122,9704,1331,-3397,6799,9257,2357,-50,-4646,6675,-2139,-1291,-9711,3896,-6033,-1756,1482,8691,4597,-5259,8789,-1072,-8465,-8069,7815,5158,6456,-3485,-1618,-619,-4177,-5907,-6610,-3309,2237,-5954,-3389,6420,-1544,-334,925,4418,6123,8545,-4619,5302,9995,-3073,1669,-9496,-6087,2392,7133,3215,-6228,-7148,-1964,-4971,-1120,6216,2803,3249,-5699,2483,-3471,-5887,-7893,3028,4535,3187,5069,755,-4864,-4335,1560,-3626,-5933,6797,4512,-270,-7179,8514,1344,-117,-1194,2438,-6630,-7156,-7885,3692,-8280,-4281,1810,-4016,7511,4387,-7879,1278,8540,-4019,-5549,293,-9429,-9773,2456,-6394,8412,-3113,940,7015,-1132,-1439,-224,-8862,3729,-5748,522,-9873,-8402,8106,-526,-561,9672,2407,88,1349,7166,-7931,-2160,1489,3755,5259,8175,-1358,-6891,-834,8234,5504,2914,-5478,8953,-5327,-9474,-828,-3206,-5676,-1322,221,6995,-8525,4877,-512,-9692,5613,-5367,3619,526,3668,8464,4990,-5865,2763,2768,7397,8786,1059,8397,-4775,9142,-5765,-5815,6040,-7977,8768,-3404,-8471,-4867,2859,1216,-2777,-4476,5133,-4881,6402,-6508,3980,-5811,826,695,9900,3868,-5096,-6832,6983,1632,-1715,1450,6585,-3501,4383,-7916,5640,-1524,-9076,-3165,-4432,-1724,745,-571,3179,290,-4078,-3271,4248,4421,-5948,-1236,-9619,-5950,7951,2196,-4615,6610,6076,-3188,-4528,-8344,6435,-3386,6083,2108,1966,9642,-9367,802,-1335,1075,5120,486,-7713,-680,3800,7895,3922,-888,1224,4986,-8901,2,-8064,4242,1900,-7471,5244,-57,-8461,-235,9964,1974,-7422,1321,4880,-8054,9723,-4897,4924,-1961,4815,4236,4045,-9023,-6153,7225,6608,4681,5351,4551,-2197,6287,4489,-4253,1503,-3425,8155,-9082,7212,6868,8203,2345,-3341,-6045,-5090,5506,8844,5559,4715,-8387,4157,-1852,4186,7821,6426,-5819,-6382,2648,-5576,1790,-1143,-7497,9721,-9409,-8751,-1378,6357,8281,-9932,7956,-9031,7693,-6367,-7899,9599,-4290,-9635,-9373,3671,200,3690,-8669,7431,8809,3108,7645,1868,2265,1137,4458,4971,9334,-8464,3032,4280,-1594,-2702,8992,-2266,9336,1022,7227,-2877,-8209,1869,-7342,-7268,6545,-845,542,-7480,158,-9831,2903,6656,-8901,5232,5273,1981,-251,-3949,995,1203,4483,9522,4712,-2037,1612,3325,1630,25,-257,3200,-9015,9225,-7136,7121,8987,8891,-3324,7443,811,-3092,-736,6030,4564,-2674,-5662,7688,-8173,7288,-5888,1804,5142,-9087,-898,-481,-6065,1491,-1228,-3132,-347,-5698,753,-661,-3340,7365,8530,9280,-2475,123,6206,9735,6018,-7649,-9651,6480,-3128,7581,102,-8330,4939,-6969,-8823,9288,9715,2103,-3226,1419,-8619,2303,6804,2202,-2542,-6167,-392,-9799,779,-6771,-4798,-9238,5884,6269,4478,-2034,-3156,9034,-815,6026,165,-9640,-9016,-8902,-9500,6192,1875,-443,1016,5155,257,-3802,-8385,-3610,7733,6534,6640,7989,198,-8483,5107,226,-9695,-4766,-8052,752,-113,7185,-7614,-893,4196,6590,198,-3208,7005,2483,5948,-984,-6983,555,-8681,-4914,3126,493,-1758,6313,2595,1679,-4969,9347,-8092,917,-8221,2749,8921,7579,4680,-4445,-2468,6731,772,7273,4237,6158,-2451,-8631,6465,-2573,2602,1770,1900,-5697,-5637,-7362,-4880,6314,-4034,5352,968,-8383,-4725,6254,8859,5806,-5535,-6084,1347,6268,-5658,-8020,8492,2182,-5109,392,9752,-5876,-1216,5896,9043,-6870,-3646,2373,-3931,8219,4073,-8365,9417,-3150,5668,6450,-2832,6272,-8565,-8755,9171,-2678,8372,9375,3555,8595,-1939,51,-862,2159,7798,5019,3862,-2034,3001,4589,6002,-3283,-287,-7488,2753,-9742,6581,-2680,2485,4518,9260,7330,-575,-234,-6521,6615,8063,9896,6711,2591,3170,-2188,-6332,2674,6889,-6579,-2029,307,-3579,-8049,8561,3526,-4884,-3482,-168,5170,7436,3284,6325,2847,4356,8519,816,5132,5940,-3425,-7061,-3338,2299,3790,9336,-2674,9627,-8741,-4293,3801,-4199,-9910,-6918,116,9277,-5174,5005,-5254,8949,-8083,677,-6416,9505,-6675,4220,7193,-1497,-2457,728,915,3319,-6767,6084,6444,716,2450,-2629,-9331,-561,8759,8490,3634,9309,5859,636,-1215,2103,5663,9224,7480,4185,9020,7459,7818,-9679,-3917,-1740,-7789,-8602,6582,4488,269,-9702,8687,4144,1914,-3571,8737,-3327,4396,5817,-8033,-9800,-547,804,2964,-8140,4462,3865,-5592,4461,5191,9123,5445,-1436,3287,-8620,922,-9487,7088,-2243,8865,-1103,8590,-6551,7797,-8994,3700,-6045,-6483,9113,8989,-9515,5936,7632,482,-5278,-7338,-6779,-5393,-7328,-6093,-4685,9715,68,-2322,-5178,-1794,-6546,-7787,2287,-5840,2417,95,-2983,5501,5370,7717,-7749,-4591,4849,-9217,3665,5583,-9111,4759,4141,-1361,5491,-5882,77,-3588,1710,3257,9764,3008,-9958,1342,-9283,-2733,1779,5960,-9362,7644,8459,-1628,1904,-2515,-2325,-2771,4078,-7841,-3229,9388,-1820,8451,8513,7132,9653,8221,5620,4886,7766,-9853,-4250,3148,-8138,185,-2214,3800,-4769,808,9261,-1907,441,-1059,7990,5852,-9784,3848,-7112,-5335,9424,-7192,-3693,-5409,367,6132,3873,4220,5062,4635,-5739,3218,-285,7905,8507,-3652,-1844,1899,9015,-7713,8101,-7644,-9891,-4921,6967,-9402,-869,-7707,4231,-9404,-7444,-7422,-3267,6986,-925,271,-3307,8691,1726,6571,4347,-9554,4113,7708,-9820,-6425,3296,-7907,-3626,6608,4393,4764,-6109,-6554,-3706,9180,685,-1343,8276,-7288,-4823,-2791,210,9699,-4224,6605,7279,-1839,2800,5281,3943,-812,9795,-3340,-3349,1957,-3491,-3948,-7906,8194,-7377,-3458,-705,-8583,6214,-8674,-5958,-8389,-9367,9948,-5062,5159,-9740,4300,-1278,2613,1307,-8515,3853,-4891,-8421,-2006,4601,5306,-4518,-9865,-4258,1921,-5310,2226,-9888,1002,2117,-6210,7475,8881,137,5260,8098,-8812,4709,2508,4371,8069,-6986,-9272,1207,3440,8712,-4178,111,8609,3902,3614,4583,-9608,-5671,3770,8177,-4991,3383,-3206,-5345,-6618,2359,5834,9039,-2039,-2026,5706,2935,7774,-4029,6608,5450,-1179,3268,-2357,-4918,-101,968,5222,-6651,-7652,-9350,-6932,-5752,-6335,-3820,-5358,-3538,-6686,721,5045,8405,7441,-2079,6605,8886,1914,-5508,-3139,5426,-5558,-5326,-6236,3919,607,-5543,3695,-767,-1025,1604,5440,-8587,9858,-4348,-9082,7733,-7392,107,-4701,-3459,3399,-4265,-6819,-4271,-9511,-9429,-7539,3846,-7178,2304,-8159,132,7236,-4707,-7940,5195,-5426,-3770,-6365,-4941,-8465,-8778,-7724,6289,-3923,200,3600,-7364,-7823,4263,-2056,2561,9213,-9537,7859,8745,3153,8400,8500,6116,3161,680,-6897,6210,-3732,377,2075,204,-2856,8069,-2868,1160,-7389,839,-2764,-1406,2147,8205,-7504,8399,5656,-9149,-6356,-211,1107,-9555,5035,5620,-4785,-6852,8049,3155,-3133,-8172,9659,-1035,792,7423,4461,-3270,7875,-4147,-6614,-8782,3528,-5597,-7071,2816,-667,8444,4268,4336,7958,-6862,3227,986,6234,3267,-9852,-6729,9639,7992,-4290,-9953,-2793,-4919,-8855,7524,-8141,6171,-4713,124,2785,3,-5572,-3506,-2291,-7451,-7902,-5694,-829,-3899,-1791,1551,3165,-5200,-2986,8670,-8965,5521,-6391,5525,-8059,-9473,170,-6726,6387,6578,5746,6617,9266,-8398,7528,5138,3113,-3091,-8403,-3739,-9940,-7930,-4600,9518,2928,-3037,-2973,7430,-1204,3366,9120,6631,-7220,6518,9303,-2734,-8866,2225,1997,207,9105,-6075,-5490,-885,-9900,-2713,8478,8564,-6929,-5976,1713,-630,6408,-5517,3043,-2909,-5776,-213,-4127,1224,1125,2945,9530,-6539,5349,-2976,4161,-2612,5575,4972,5828,-6755,-109,3364,-2959,8239,-7009,3711,-5643,4700,6987,4132,-7488,-2231,6554,8693,4203,-9397,8479,2258,8547,7881,2880,-1509,-4312,2387,3792,4959,9650,-5992,-3282,2254,6565,5724,-801,-3833,-1525,-5646,-1364,-1890,-9713,652,781,-3440,3139,1752,2697,8340,1831,-7256,2336,617,3649,-9144,-4948,5569,-1763,-4279,980,3992,-8129,-7224,1114,3797,5018,2327,5145,-8741,-5839,-1263,-8450,7964,5496,6032,-2745,-6347,-2732,5314,-6287,6060,-4588,-6270,1113,-9680,5384,145,-6401,9133,-9774,-2178,-172,-8246,-7037,6424,-5245,-7130,5015,8517,8408,4482,-1661,5156,8255,760,7138,6348,-7171,-291,120,-1209,-5529,-1517,-2600,-2036,-3550,4187,547,7751,-2318,4033,8603,3469,-7552,9506,131,-8455,2165,-385,-2960,5943,-8585,-4765,-7343,2724,5384,96,2437,-100,9207,344,-4229,-8711,-5140,-3590,482,-1279,477,6364,-7866,2920,3275,-1344,-6147,-287,-9545,7584,1107,-7960,3586,155,765,-7532,-8432,-5406,6152,-4902,-5303,34,-8166,7040,-6771,-8815,9204,93,-668,804,-1012,-4432,3745,2513,-2256,1664,-4310,370,-3289,3029,-5360,3619,6949,-5706,-6250,3474,-4246,-9320,-1261,2957,-7262,-9142,-2527,7840,-5919,-3506,-2822,3700,6208,7877,-2145,-7342,-6653,1840,-4301,-7977,7405,-9118,3625,-6670,871,-9302,3101,-7367,1995,3379,3305,-11,-1169,4736,6863,-8260,361,7294,-6444,8769,7525,-599,-4849,-6971,-1969,6080,-5741,-3057,-2519,2960,-414,-8402,-8479,4684,1281,-1165,-865,-7126,2878,-4035,-6695,5230,-8985,2246,-6180,-3103,2638,5547,2513,-1625,-7894,2285,-9519,-5484,7250,-9222,3406,-3718,4065,9148,-1459,1494,-5448,-6936,2191,6345,-9391,-8867,7621,-4504,-4750,6617,-2464,-6661,-222,-5743,2359,6446,-3774,-8971,-4996,-1641,-2604,-662,-3960,-4839,7744,-5719,-2181,1250,4777,2248,-9279,5002,-4214,-8489,-2554,-9014,1385,1516,-8425,5259,-9242,-1411,-5289,1994,-8006,-8629,-9638,5295,1454,7396,-2896,-1419,-799,-7840,1274,-818,-959,-845,-4074,-8905,-7841,-6450,9612,-7272,9086,9530,9429,-5978,-5680,3410,-3378,203,-3702,-2401,-7143,9186,-8924,1298,-3435,5585,5123,6926,8009,-8188,-5013,-5524,-705,-9275,2278,-4179,8097,-9576,6815,-4155,1738,8127,-9138,964,2913,-8696,-319,-8841,-8865,-7381,5376,-7752,-6379,3526,9188,-9587,-9654,-4169,8372,322,-2661,6383,-7139,374,7028,4828,1935,2836,-9088,-7239,2028,9541,-2344,-2756,-7168,316,6417,2895,-7355,3783,2608,-7050,-7534,5625,-2585,4351,6062,-7866,-5781,-5457,-2777,3359,3210,1288,152,9667,-7758,8634,8971,9528,1898,-4071,-1926,-8087,2354,-1049,8203,6509,7240,8011,-548,914,-6010,8547,3295,3267,-3525,-469,-9417,8504,-6279,6793,5628,45,-4198,7787,-5780,8669,9670,9348,-4409,-9559,-7516,-3340,-4494,-8609,-8479,5724,5558,-905,6216,6098,-8549,73,3848,1270,-9745,-3554,-1535,4795,-9150,-4852,1044,-4854,7811,-1619,8932,-5722,5082,-1748,-3602,8933,-6755,-55,-4509,-8566,7210,-2313,-7402,-4306,1184,-3218,9812,-7041,-5746,6935,9052,-1115,-3445,2332,1491,1514,9924,-2177,-6696,-7973,5357,-5819,-8194,3677,4149,-7761,3162,-3630,8426,-9569,-7598,-9673,9967,-7152,-9211,-7171,-7117,-6012,-6205,7513,-6088,5331,8363,9211,5414,5196,-4553,3508,-4401,-2355,-9399,-7652,3024,-3484,-9758,7036,8588,-3821,1180,-1247,3241,-598,1213,8572,4869,-9734,7543,-6835,-2876,-8943,444,-2717,-5279,4780,-7751,6469,-5672,8580,160,4383,7030,-3697,-6298,-8052,-2030,9643,-298,-1854,-5381,-5397,8638,-756,-3231,-1026,-4476,2150,4359,8162,-5449,-9424,-2977,-6724,-2542,9198,-10000,-8681,-1909,5897,9931,-1720,1003,4456,-4172,2829,7573,1425,-8091,-4660,6362,-4864,7201,5542,4200,3210,5509,-4366,-1118,8513,3948,-228,-3424,-652,-7831,-8944,-8239,8591,4481,-6228,2504,8976,9822,6587,-9843,4154,4838,-6145,-5455,-6607,-6061,3969,-5060,-2875,2854,-9963,-2382,-2102,-267,-5232,3738,4959,-569,2089,3628,3673,-5703,-9945,-7104,7527,3475,-2569,7005,3833,-1303,-536,-1653,3825,-9054,8369,-5109,-6999,-672,7338,223,2675,3143,5511,6316,421,1118,5260,-9899,-3343,1036,1081,1156,8242,1912,225,-3523,-8262,3674,632,-1601,2260,-6715,-8910,-1150,6002,-6659,-8325,526,1905,9845,7048,9864,-7781,3881,-5549,-8228,-1925,9124,4132,3834,4243,7064,-9272,-5947,-3936,3254,-4095,5270,1447,2899,4803,-737,9521,6490,7575,-1985,7926,-1380,-5503,7203,9748,2748,-8477,6133,1132,3729,7696,-4190,4796,-4623,5093,-1698,273,-1872,-1913,2434,8708,-9932,7083,-2485,-1328,-9501,1270,6538,6410,1068,161,-8320,536,-6286,-5962,-2117,-1603,-6049,5348,152,6953,9598,-8469,-6732,-2941,3783,2021,-8243,-9653,-7960,-2904,7193,9258,-3296,-1735,-3667,2679,5627,5742,-7414,-9628,-4809,9892,-6587,1244,-1180,-8089,-4587,7327,-5622,-8645,5134,85,-5743,-3735,7252,-6232,-8943,-4502,1073,-9283,-1510,4008,4207,-8111,-5606,8929,959,4075,9890,-3616,2219,-2978,533,4985,-3099,-7534,286,7595,-7160,-5137,-9663,9192,-9702,2837,7930,4720,2839,2073,-3230,9948,-6001,1908,8126,-1672,4252,-3071,-7256,-458,-7305,-8371,5303,8228,-8650,4221,-7799,-9355,-8421,-7112,2319,6009,4342,1700,-6193,7671,6306,1891,6798,7561,-5428,9308,-7197,4255,-250,6776,-4290,-8494,-7850,6031,-7114,-6727,4576,9611,-7943,1033,-6798,968,-3968,4518,2623,-7467,-5127,9621,-4360,-526,-3766,8916,2307,-2136,-6315,5351,-5241,5235,2487,-3061,-1372,7362,-9032,4288,-4068,2955,2196,8879,-3106,-6487,1389,-4154,-2843,-8954,-2561,2066,-504,-4977,-9751,4602,-5225,-2273,762,-2041,9615,4028,9467,9899,-9223,-1073,3089,-1201,-1062,-997,3495,6228,4804,-5087,-551,8184,-9431,7856,4237,685,8516,3330,2191,-7963,5117,7283,3126,3548,8171,8485,3485,37,-5809,-9064,-511,-8248,-2088,-8081,2523,6273,4713,7557,-781,1922,-2851,-9045,-1104,-4611,-6481,6603,-4291,-82,5214,-4665,-8246,3816,8607,2797,640,7927,1579,-9898,-5875,-6934,3869,2990,-2576,508,-5460,-4130,-4825,5934,-4138,-6762,9025,194,-2562,-236,8972,-6517,7820,933,200,1066,-4126,9984,8213,-6917,7780,-7547,-6167,525,-8107,8126,1228,3749,8176,-1512,9357,2830,-9642,2869,4384,-6755,2974,-3287,-5150,-5600,-1787,2955,-5542,2601,4468,2810,-5888,3399,-9315,8020,-9052,-9291,-9384,-7726,-1961,-1012,-5517,-1725,4354,3266,-9558,9694,9179,2839,7033,2010,-6568,9643,9710,60,1289,7936,9564,6153,4829,1740,5468,7556,-1354,-5230,6281,1846,4623,-1975,-8052,-8199,-537,-4646,7445,-7790,-8888,-3983,-4003,-7819,1519,3560,-5574,3023,-6106,6132,-7319,-144,6411,5101,1944,721,9957,4874,5993,-5416,8483,-1076,5283,8087,1092,-2997,7966,1179,-1675,9249,-1985,1127,9489,4663,-2227,-833,-5641,1566,582,5151,6844,-580,-4381,-9247,2370,4757,6533,-4167,3126,2983,6104,6000,2876,6901,7540,-8257,-4737,-3667,9869,7573,928,-1681,3942,-6313,4445,-662,-5940,2840,4752,5508,-4053,-5155,-9665,7556,-5880,8325,-4518,-4202,9906,-7047,-5131,2186,7864,-1715,-5442,1430,1715,8031,8530,-4908,7827,-370,-3810,2921,8107,-8590,878,5255,-3929,-2526,-6518,-9494,-1255,-5371,-1493,1586,-7247,8721,-4954,9894,5992,236,5228,3273,6330,-8953,-3614,5146,-3358,-9696,-2781,-2416,-4671,4722,-926,5783,-3992,9180,1584,-3713,1974,1656,2575,-2474,9405,9510,-8271,2802,-8547,9823,2081,8886,-6710,2168,-1221,1100,7056,-7968,3453,-6691,2124,2891,9427,-4615,5500,-2366,6333,9298,-5423,-5968,-1065,5955,1293,5534,-2615,-3656,-4934,-6543,-160,3205,89,-3958,-1010,7529,-5121,6449,4459,8090,7774,-66,8474,-894,-9860,1245,-2631,4870,-9320,7515,2724,9662,-738,-6440,8124,-9635,-5273,-9766,5073,8049,-435,-1605,-812,-2063,533,-4371,9665,-4383,-1656,-1911,4375,-8981,-8020,8677,-6395,7035,4927,7152,3160,-4698,1653,6497,-8027,-5329,8203,-1772,4390,-9796,-2996,4624,5284,-2501,-4820,-7920,-5492,-4710,8003,8462,-2144,165,7196,6737,-2944,6154,4058,-7908,-9730,842,-1237,-6139,-6555,-5280,4512,1613,6053,7036,-2956,9187,9741,-7052,4627,6143,8816,-4490,-401,-9861,-5243,5659,1802,-5715,5294,6043,-1825,-2096,8272,-4758,-6475,1633,3524,-7025,1632,1735,8362,-3565,6214,-718,807,-4029,-6865,-9823,8583,482,-4022,-1785,-2281,5893,5634,-5015,-8471,5144,-458,-5422,4637,-8174,-3122,-9831,4616,3539,4432,3014,2216,9285,2930,1780,3502,3798,1989,8141,1643,-6864,-4957,-6561,8958,-7823,-3106,767,5588,6614,8624,7320,-9250,8372,8522,9386,405,7420,7630,5566,-9686,2289,8523,4539,-1813,3422,-1020,-8343,-132,-1278,66,-7180,-3882,-3543,-6744,-7024,5218,-4093,4910,4036,4875,3961,-1692,1093,-6740,-249,-4477,-2530,-9273,-2358,-2422,-3971,-4165,5748,-9939,-5888,6731,8903,4445,-3174,5422,-7087,-5564,6058,-5651,-2700,-8427,-3669,-3392,-6206,4628,231,-4652,-8388,9439,-313,495,-5223,-7090,6778,-3158,-9622,-174,-4202,-8482,-9358,6889,-7552,6120,269,-8164,-3138,-8754,-7787,-513,8935,-1887,3436,-3294,4907,8607,-5665,4520,-4193,1507,6150,-4927,9078,-4205,7464,58,-3883,-2647,7347,-5880,2765,-1891,8067,3467,6646,-5944,1608,-9833,1104,3106,-4092,-2895,-3961,4736,-4012,-9528,1943,3843,-876,8232,4823,3337,-6726,2469,3326,-4809,-1024,-9344,8740,-3008,4940,-7055,-2103,8605,5377,-9748,8089,6471,-4189,-4556,-2105,3070,1720,7628,-3619,5551,-935,-1508,-6492,3192,-9080,1587,6187,-3653,-36,-3880,-6019,9864,5678,998,8033,3331,1016,4231,-4012,9835,2760,8504,-1940,-5533,-9672,-3383,-3570,-2219,-6017,469,3337,7130,-2557,880,3065,7842,9844,6785,-8530,-4909,1338,7039,1570,5087,5264,-37,4722,-5607,5606,4393,669,-1439,-992,1768,-9263,-3655,2955,958,-668,7592,-8502,-3022,5960,3367,-491,-8322,-3252,9074,-2903,-291,3902,513,-3216,2244,-1913,706,3052,-5711,-4949,-1395,-3959,-7570,7728,9809,8950,-8964,-3770,786,645,8683,-7397,-5714,3105,-6704,9564,-181,267,5697,2254,2741,7944,-2519,-3386,-9965,1205,6434,-8869,1944,9344,-6732,-2052,-2914,6587,-2854,-7920,8388,7021,-7835,2989,-7183,9097,6380,5802,2818,9431,483,-2471,9940,-2999,7933,4739,-5000,3776,-1983,6282,-5436,-7013,8332,-769,1504,-6506,4476,-1925,-337,941,1685,-3608,2302,-3154,-1944,-7371,9571,7686,9548,-3074,-4302,-7496,3146,6030,2480,-3102,7786,3101,-7131,-5410,2786,9184,-3316,-7111,3603,4389,-3289,-2845,-7099,6829,3855,-3499,9161,9737,-7619,8305,5220,-5085,1254,8994,-7303,5298,2426,-8580,6990,-3647,7163,-2730,-1441,5986,-6244,-8452,1156,5596,9334,-2845,-1994,-5235,-5758,6888,315,-467,-7952,-4903,-220,-6404,5016,-1995,-6349,-8686,9846,765,-6889,1791,-1203,-7816,-4659,-1824,-1174,1700,-9012,-6141,-4260,-4110,2325,-7693,9017,2270,-3209,-9158,5056,-1620,9304,6275,-3902,-4443,6472,4699,5390,-3250,3875,-9483,7565,368,1654,-1185,9373,2701,-8074,8162,-684,-2318,-1966,-8495,6615,-8536,-1462,-2065,6712,-9096,-4098,-495,-5206,2858,-1947,7132,8601,4146,-302,441,-1034,-1286,357,1033,1949,3914,7409,4058,-9713,9306,-4819,-8523,275,-7409,3695,3935,6140,3805,5826,2562,3545,-1373,-8473,8989,7453,9885,-7083,-942,465,685,6461,-7031,-3193,-2769,3703,2282,-2746,-6348,5715,4772,6133,-1966,-7424,3531,-9584,5586,-4857,5897,-2194,-8154,1495,4539,-9074,-9614,-4889,-5446,1058,2878,-3932,9084,9119,9543,-3189,9628,-6249,-2291,-4424,-642,-3821,-6416,1508,4481,557,9949,-5628,7795,95,2260,4338,1166,9208,37,8948,7008,-7671,3372,3498,-696,7146,-2911,-3797,9833,-7815,2269,138,-4578,7263,2241,3200,6145,-5722,-9041,-9271,-9877,-3209,8476,-682,-3319,558,5610,-9705,4547,2193,-9586,-5921,-1795,2171,-48,6127,4534,4336,473,-4658,3117,-6351,7398,-7635,3758,-7586,4326,7817,-1417,6376,591,-5431,3113,8774,-1355,-466,-3952,742,-7147,-5402,4725,-8830,-6626,-6821,3966,-8992,6062,1780,-3142,-3755,-7967,3525,1531,-1420,-174,9014,1671,4094,-6011,-7919,5064,-7321,4945,2892,160,-1066,3618,2117,-337,-1353,-7296,-9568,-3168,2485,6703,5233,-2896,-184,1346,-9586,-2313,-7294,-1664,-5153,-7599,-2682,-4495,1339,-6423,1638,4073,8509,-4908,1240,9717,-3701,9272,-743,578,5340,6035,8029,-1480,-6589,-9615,-3243,5509,-6900,5761,-4981,3817,5469,-4114,-7970,-8684,5025,9843,5030,6544,1190,-4744,5267,5884,1829,-6647,-6265,-7546,1557,6558,-5697,4061,-7007,-7845,-6212,-2595,-2044,9765,8768,-7197,2711,3915,-1557,8989,7711,-6791,-4947,-2376,8842,-1815,3822,6217,-1565,-2113,2827,3495,-6064,-1028,6160,5241,3131,-4468,-3088,5189,3892,-5375,-1391,-7674,-6826,5564,-3710,2187,-7262,7047,3487,9918,-5252,-81,482,4391,-4852,9547,2423,-6264,9362,-8366,8201,-3657,6321,2052,-8819,-1282,-9657,3467,144,-1137,-5631,-2600,-5010,4275,-652,9296,1678,7068,5050,165,-7281,1488,4374,4642,-9360,-489,2626,-4969,5152,-8305,6288,3515,9699,8672,-2564,-8474,2119,-108,-4586,-9793,-5162,-3409,-1213,5301,3205,-953,-5654,1681,-166,2986,7583,-9952,1929,-3446,7847,3060,-2252,-2366,1867,9950,-2398,2887,37,9277,3765,3519,-3639,-7854,4684,101,-1578,6110,-2873,2099,1814,-3443,-6286,-640,4941,1033,-3258,-5148,9014,-8189,3002,-8505,9041,-9245,-4443,-8596,-3514,-8256,7054,-8836,-742,-9242,4516,-2915,-9126,-4068,4628,-9858,-173,-5648,-890,-8450,-8209,-9886,-8106,-532,-8584,-5493,-7227,-8546,-3830,6080,6555,7935,-332,-2745,4774,4802,-39,-1893,-9897,-7223,-4182,-4684,-3338,9061,-1394,-6746,5621,3348,-4846,-6469,4382,-3001,8316,-1677,-747,4041,7767,6364,5652,-4510,8696,2774,3656,427,-9291,6854,8744,-8296,-5497,5946,-9709,-2794,-4551,3235,-4439,-3722,6120,1251,8294,-533,2084,9771,-7361,355,2272,7737,-4453,-5612,1410,-7170,741,-1583,2526,-1523,-3703,-138,1975,-6426,4640,-2985,-3684,-8926,3839,370,-6651,-1882,6153,-5681,-8961,4680,8887,5483,-7536,7971,-7649,-4053,-9243,-7905,-6289,2589,-5567,1317,3552,5762,27,6494,1070,-3084,3922,-4531,-2058,1676,-5073,-5783,2154,-9076,-1648,-8038,-6568,-8177,-7028,7768,-8137,2522,-5421,-5263,554,-7873,-9260,-8363,2880,7160,-4625,1511,1065,-1081,-1425,-9366,811,8615,-801,7644,-5003,9865,5764,7113,-9991,-8712,-3681,6454,-3446,7332,-801,9977,-7491,5910,8049,-4207,-407,2863,620,5691,-1699,-7473,-6096,-2955,9036,375,6888,-7528,-9191,-4814,9671,-8513,-3023,-7053,-2105,-1636,26,2013,6494,3251,-9199,-723,-2490,8698,-3489,-6320,-2613,-3631,4663,2281,8538,-5427,-8075,174,-1773,4508,-9865,-5590,9758,-7543,-3440,-1489,-8572,2818,731,-8026,4693,-5500,-7480,6870,-9599,8753,1203,-895,-6035,4857,260,3247,2646,9209,4314,3611,-5743,-6462,-3153,4454,1292,-829,-4252,-19,355,9101,7401,-4377,4378,7451,959,7056,-6830,2643,285,435,-7205,5824,-3102,-6690,1239,-4604,4655,-9412,174,8994,1374,-3749,6112,8503,7025,-2112,1873,9605,-2047,4114,-3355,8283,8910,-8419,-1141,-4792,-7053,-550,3250,-5570,2589,-6192,-8795,9269,7615,7562,9274,647,4691,3650,-1370,3421,-9399,4789,-7618,6706,751,-636,-1336,2156,1920,5825,-2339,-1825,2250,-5364,-665,2322,-2091,6368,9785,-6446,1133,-9058,6583,-4569,-8298,2018,9875,-5476,1131,1839,9825,-2916,2274,9813,-2624,-6439,3294,-5595,-9046,1451,-6542,-1447,-8807,-3274,5936,-4939,860,-5496,-4863,4201,-3502,8933,-1108,2879,-1157,-6570,4293,8063,8031,5051,-826,4250,-6490,-5254,9173,6442,6068,6082,3003,-7512,-884,-1399,-9235,-2075,-6693,5886,-2962,5800,8631,-4466,2963,-9148,-2029,3165,4797,3580,-8331,9382,-9176,-4432,9016,8848,-2651,7060,6717,3089,2063,-4732,7492,-1837,-8136,-3265,202,-8739,-8898,3177,5961,5746,3633,-7848,5514,7075,5430,7806,3745,6784,-3250,-3003,6471,7571,1737,827,4284,4280,-1780,9331,-1855,-9453,-6359,7668,-3062,-9729,-395,-4595,9608,-4259,5805,-5151,-8312,5935,184,-4064,6443,-7857,5818,-4768,7990,-7810,2678,3248,-2411,-9081,9053,9547,8277,-3608,5538,4229,-4685,2966,-6156,5190,9232,6985,-9512,3393,-9688,7513,-4212,4184,7016,1760,-9444,4192,-6946,7686,-1484,7197,1240,-4771,1397,4453,-6576,-1795,-5231,4829,7182,-4268,3734,-5970,-6945,-7526,6945,-7553,-3655,-896,5430,642,8779,-3690,2470,-2805,4634,1141,-6377,7763,4774,-4692,6720,1838,-7470,7251,2019,-7386,3966,-7871,3192,-1338,114,-1217,-4732,-3181,-3485,-1549,-5856,-2915,8035,-3479,-4704,-3597,3793,7323,-3642,3935,-3047,5488,9828,2057,-1336,7208,-7073,-4880,2683,-8366,-6845,9822,2738,-3321,4386,-9498,2492,4599,-2033,-7469,1167,-4920,1665,1347,9368,848,-6622,8495,-2529,6522,-1394,-6034,-2844,8731,-8951,-9254,-6219,-9408,67,-3986,-184,2805,9503,2077,-8826,-3320,8527,1656,2777,-1677,-9927,1685,6863,2880,-5270,-8167,3853,-6812,-4676,3493,-3481,-3831,-7053,7911,9468,-7120,44,-6547,-2918,425,4118,-7289,-5940,1476,7358,1612,-9263,-8701,2571,-9407,-8867,7931,-6127,-6614,-9750,2022,-69,6220,5694,495,5096,3028,-5496,2864,9130,7164,8842,486,1547,8909,1513,2536,-6634,9128,-7254,-1900,-2058,-4941,-5127,-5977,-8624,-151,-7435,-7501,-4404,-7556,-3222,-7990,9985,2421,-6833,-8780,-2909,4907,-6317,4777,7188,840,-4632,-8905,4365,-2144,2720,-8611,-22,4156,2645,6022,6474,-6451,-139,-6475,-8379,5196,-7361,7955,9844,4291,-932,4024,1054,-6561,825,-7663,-8743,-3339,-907,-3541,5371,-7805,-3904,-8487,-8289,9533,4320,-8022,518,6156,3477,280,-5810,-3981,7448,770,6228,-1598,5837,9329,1078,9643,-9385,-5900,8436,-3747,-3087,-8475,-1948,7571,-8225,9076,3105,-1166,-5135,155,6010,-5552,-4049,9743,-3141,-1465,4279,3881,5700,1897,-7264,4336,9032,9863,8217,2820,5605,8845,8790,1834,6998,8061,4911,9501,-5805,2311,9512,4963,8916,-2582,-7413,493,-4400,7595,-2349,3077,-9202,884,6981,-7427,1600,8989,-6482,2329,-7594,5858,8243,453,-1684,-3366,553,7654,-6026,6536,6210,-7733,9271,-2593,-3148,-1575,1787,-6286,-2925,2237,-6650,-9239,2057,5800,795,-7338,796,822,5449,-2041,8242,6597,-6723,-3029,554,-6068,-678,-6610,-3335,-9801,8828,6587,5622,5412,4541,-368,2677,-638,-8956,-3666,-9717,8091,-6479,-4856,1527,8683,-2474,6714,5567,-9503,3361,871,1669,9410,4719,6227,9642,3796,824,4707,-4000,6366,-1657,-4027,5557,5924,-768,1466,1802,-3572,6484,-274,-1958,-251,9312,8340,8007,5156,4649,-6210,5817,8533,7840,4002,2662,2633,-7419,-261,-7889,2174,6046,4784,6901,-9687,4950,-6358,1574,9734,8093,-2669,4112,4651,-9736,-4817,5971,-6551,-2902,-4683,-8320,-2260,5557,-6206,-3236,-7553,1289,-2682,7798,8920,-1797,-21,7398,1762,-5872,-7432,-6187,6257,-6372,-6754,1326,-6492,925,-7169,-4550,237,-6563,6031,6237,-9034,-7912,4890,-7666,9261,-6642,-7074,-7710,-8878,4304,-7594,-9968,-5183,4392,-3436,-1093,5192,-6699,8742,5902,-6364,1914,-8405,-6442,2988,-1527,496,4859,-230,-793,9591,2085,4820,5898,-7806,-2768,1459,6763,882,8974,-1990,1517,8141,-8290,-419,-1421,-2137,-9856,-7524,-6758,-8842,-3215,-8371,3359,1778,4475,-2638,-1404,4697,3157,5910,6037,4116,2204,42,2796,4059,-2429,-5609,-9238,-6749,3314,6621,-3196,-2143,-4032,4871,-7408,-2828,6569,-6299,-8346,5588,5988,4806,-1601,-7946,3014,1228,-1399,-3396,8915,5412,-9541,-664,3293,-8188,9184,-58,7402,7541,1729,-7905,-9243,-3669,7865,5297,-9832,-6931,3640,-3566,-4410,7487,-9438,-3587,5212,9692,9543,-1269,-2035,-8973,4158,4920,4959,7699,8431,-4702,-395,-7279,4155,-7870,8232,-4318,96,-7604,2753,-8484,-9429,6842,5678,-5508,2697,-3249,3391,521,-7143,1439,3001,-4954,371,1568,-2549,3695,9338,-300,6669,7154,-3185,1184,2390,-4798,5613,-6186,4944,3229,-3831,-2877,1025,1718,-8351,-6805,-5330,7904,396,-5219,4095,8724,-1116,-550,-566,-5152,-815,8149,-9415,-2493,5240,-9133,2840,-3899,8241,1379,3857,4352,3609,7984,5514,-1201,-5625,8308,-6397,1117,-2675,-8587,5348,2629,-7524,9277,7480,-3676,-5279,4282,-9277,-1711,-90,8902,-2627,-9577,1514,2507,5590,-2642,8317,-3594,-8240,-7023,2986,-4373,3732,84,9378,3167,-7550,-8987,-8242,-3050,-4458,-4134,8628,1862,-7999,-9044,-7075,-8239,-1963,5640,5051,-3752,2206,6676,-635,722,1310,1253,1760,-3505,2219,-8549,-8897,-2987,-2783,4177,634,-6719,-2577,7201,6248,6674,707,-6994,-3389,-1255,6187,9430,-2805,-8501,9043,5924,-8036,-7941,-3998,-8337,-2071,-6642,-2603,7408,7224,279,986,-567,1729,-9625,-5067,-2987,-7377,4146,-6642,9029,-2768,-3825,-3574,-4506,-4401,5252,-2911,4820,-577,7500,7753,4922,7700,5975,-2378,-8874,-8015,-997,-6590,8569,2061,-5905,8953,4428,3245,-1381,-5739,-9460,1324,4973,609,1310,4703,-6534,-3264,7119,9261,5447,-8313,76,4212,7983,-6297,-8532,2922,-3623,9683,4041,7450,-8917,-5799,-1089,-7840,484,8325,-9302,2757,8543,-4729,-8203,4821,9802,-4935,3614,-7869,-5629,417,3059,484,7865,-623,1173,-5058,-7577,1254,701,-2503,4209,1111,-1163,6263,5864,6586,-545,6580,-1955,-416,-5999,-5174,-3711,-5127,-624,-4734,2389,643,478,2439,-596,-6778,-1189,-8115,-452,-8511,6592,-3618,-1114,-7365,7405,7244,5171,2682,-3005,-4632,-5769,3190,6836,-371,9701,1930,9553,1810,4141,7580,3319,-1787,-6078,7283,808,-2453,-3208,-7801,786,8733,-9581,-220,-7625,2068,4443,6686,-8153,5627,-3005,-8759,3316,7487,-1824,-9856,2344,2317,-3787,-7552,803,5706,-4943,-6127,8628,-9221,-6581,-7442,165,-4018,-245,1831,9559,5082,-2985,1706,4043,-4551,-3020,-1773,-3892,-4231,-5246,-8411,1708,7475,1693,-9170,-6576,-7640,5786,-4184,8315,8672,7347,9799,9225,1947,8976,-5276,-5875,-6673,-1353,6310,-7117,-4097,5558,-2950,-3754,5120,3950,-9963,-9005,8253,-9331,-6356,-7766,7079,-8199,-6575,-3115,-6375,9668,5903,-4429,7342,-5495,1510,5276,7905,-3167,-3170,9716,-324,-7301,4626,-8605,-9511,184,-5499,-8798,4933,7457,8226,-5468,3352,-3264,4376,-5825,430,-1239,9721,-6110,-6231,8983,-2083,3977,-4131,2665,-2798,-6070,-5841,9820,3386,3547,-5034,9411,-1284,6579,1497,-3157,3537,-2684,7786,7536,2781,2879,1176,7626,-9894,-2739,-2170,1695,-1385,1962,620,8778,3748,-9380,4619,8680,-6497,-8597,1601,9729,-6824,3776,-7605,-7253,4749,-5149,-4169,-9446,9824,-4899,5992,-8966,2366,-5570,1750,-630,3558,-2749,-3883,-7878,4584,-6275,-5870,982,-8378,6086,8730,8705,-7950,-182,9818,-5661,-7581,5536,-1186,1396,-747,-2226,2400,-3914,-3387,4173,-2768,-8683,-479,7784,4639,-3155,-7073,-4567,6521,-8183,-1840,2050,4040,9903,-823,-5211,-2402,-6577,-8789,-9406,6825,-3457,2215,9197,7545,-8466,-6542,-5105,-7125,1873,310,-4468,987,4053,-7847,8369,9686,-2301,-652,-6783,8425,-5321,-4850,-2753,-3219,-8464,2030,8438,899,-1982,880,-2207,713,-7641,4450,1484,-2499,-7575,-3977,-3170,-7246,5397,-3442,-8468,-3234,-6628,-3012,6900,3302,4507,-1580,-5204,-1655,2313,-9995,-7077,8576,-348,1160,6687,1973,-8183,-1172,7738,744,-3014,-6080,985,4201,-9666,7472,2069,78,1159,-8465,5052,-6914,764,-8796,9520,3067,-2047,7953,-2298,-8800,9947,7787,1646,6515,-7884,-760,-5188,5174,-7938,1099,8127,2502,-1529,5729,-7342,-3421,4362,112,-9738,7518,2716,4434,7427,-6094,2751,-9809,-766,5273,9691,-8820,2532,4802,9273,-7460,414,-2821,-5010,7191,-5142,1293,-3138,-4762,137,3154,-292,9897,9999,-6750,5225,-6876,3269,-315,3877,1622,7969,2514,8155,-3147,-2156,1351,-596,-4681,948,2127,-3117,9892,-3660,4401,-9811,-5914,-1284,-833,3960,-7519,7289,-1551,-2714,9301,7341,5547,-4145,8235,401,9092,-4858,-1827,-3944,5422,-9293,-8696,4131,9369,156,-6644,4399,-572,-2431,8985,3183,9479,-5777,5976,474,-2146,-9624,-133,9065,-7809,-451,3189,2207,546,2973,-2398,-8542,7339,-885,-2997,7155,6616,5294,775,4203,-312,-6082,3359,5334,-605,4228,-1739,3079,-9656,-7466,-7378,8367,-7422,-6277,9730,948,-4369,-7110,9307,4609,7486,-1775,8738,-808,-8322,1138,-9213,-8190,3094,-90,265,-2131,-5925,-1754,6458,2875,-8957,8001,4011,-9629,-7282,-738,7575,-7581,-3629,-4188,6433,3510,8475,-9737,-7840,-8842,-7993,-8118,-168,6662,923,5753,4459,2988,-6471,7818,1317,-2628,-3076,-4442,4530,-5087,-7073,2066,-1963,-4066,6304,-5006,-1022,8625,-6727,-2380,-1760,5873,-899,3632,1456,-9344,-9879,4496,-3862,611,-3745,-8467,-5256,-5354,-5354,-5860,-1119,9170,2186,-2029,-4657,9323,9655,-7205,9899,7677,-2700,7226,-8979,-1104,6131,9137,-3081,-2952,-6456,7006,-8439,-2015,-1217,-5797,7713,-6278,-4733,-3927,9288,-7578,-2267,-8300,-8642,-639,6716,-1181,1173,-4499,-4747,-8131,7968,-5310,-3676,9493,-9510,7651,8143,5184,-1031,-7243,863,5481,-7501,5269,-7909,8207,-7214,1141,-2352,-8210,5670,4986,-302,8684,2545,4868,3662,-6201,-9784,-9178,9974,5420,-2155,2594,5106,-387,-124,-5272,-4651,-299,94,-9566,1326,8326,-8345,-5275,6140,-6423,1149,2203,-8891,-9616,8479,-7254,7620,-6711,8314,-4183,-9276,-5413,160,1261,3803,-4568,1454,6444,-64,8871,-3192,2490,-4696,-7216,9266,-4980,9652,-3055,-7307,-4813,-1544,-6207,5046,-6309,-6458,-4772,-1835,5733,5397,-7387,-7889,-5500,-313,7363,7819,-492,-1509,-1022,6093,-7794,-6825,-5452,9250,-361,-6736,7495,-580,-9743,8678,-62,3195,527,7967,-2295,-5178,3313,-8103,997,8350,3928,8581,9440,-4306,-4408,-9661,4908,-327,-7722,-6503,-9944,-4488,9973,-1808,-7012,-6200,3196,-8112,-3103,9294,-9338,-4973,-9096,1321,6190,7657,8433,-562,-6598,7415,-7019,2457,-2934,-8424,7774,-1593,-145,9751,8349,-3436,2583,729,5605,2336,-7442,4807,-946,2267,-4056,8326,1027,7746,-3739,-5771,5066,-6807,-8475,-8677,9718,236,-6865,4143,8304,-3348,-6414,-3580,8856,-2486,-8399,-5213,883,-2835,8749,-1894,-5297,-5854,7706,-4168,-3517,8812,-4987,-8545,2140,9677,6023,8113,2715,-9662,1816,4698,-2679,3849,-9172,9239,8352,-8239,9583,-5746,3507,4853,-6859,-9077,-5401,-6921,3385,9476,7803,7766,1343,-8445,8380,-5907,-6678,8538,9582,-5974,3831,3093,2733,-5270,393,2469,9408,9189,-5342,-9921,-711,5575,-5545,1175,1861,5487,3609,-8304,8053,-7321,-6839,-7726,-4606,5191,1298,7168,1865,-5887,2222,-6432,-4532,510,913,-4784,-7662,2355,-6081,-2460,-5690,2379,-2134,-347,-2448,8232,-4108,26,-7746,-5613,-9207,-7862,-6860,6418,5383,2263,2895,6840,6625,-6348,-1268,-2487,9087,-8195,8978,-8197,2562,2643,3731,5608,1754,8871,7613,1941,-1842,9545,2816,6195,-4079,-9257,-929,604,7899,-5025,5503,7271,1316,-9045,8353,-9526,6533,-1243,656,-5273,-8337,-2865,-4577,-2423,484,8310,-4840,-586,4272,-6873,9284,3628,5179,6051,1393,5656,9943,7056,-7661,3825,1755,6687,-3504,-1310,-3719,9388,-8288,8440,-2277,4592,1812,-7133,336,-2970,-8880,5836,3425,5838,-3397,4484,6682,2545,-7720,3326,7432,9177,-9085,14,-7611,-6133,441,5526,7205,-9513,-7604,6560,-7329,5414,1396,-2800,7119,1203,-9006,-5752,7959,-1401,-4022,-7070,-7242,-8678,7829,4453,-4923,3149,4306,-8114,8956,-6244,-6339,9718,825,6238,190,-5291,4362,7526,8668,-9798,6139,4194,5331,-3047,897,3022,4276,-2624,-6067,-2130,9621,-7733,2106,6323,-7168,-6601,5541,-1104,7146,-7688,-9705,2117,-1403,-7335,-9540,-7253,-8617,-716,-7574,-7004,6395,-3397,-7494,-8958,5814,-7788,-5812,-8109,4838,-5518,-7037,5310,6800,4801,6489,9524,-719,-9184,-2881,5806,700,2005,-3589,-4759,-3598,8020,5126,4253,5204,-3404,7719,-825,9017,-1820,-5397,-4922,-9806,8459,7946,-4295,5676,-8226,4084,5039,3162,-7408,3748,-3667,-8913,8755,-2890,-1280,-9188,9448,1533,-8454,9041,-7877,7079,-9932,-236,4397,-8489,-8959,-6645,-1958,-4357,1126,-9385,4647,1039,28,-1081,-2124,7645,-9414,-3322,-2825,-4624,5859,-3151,-1052,990,-5485,7429,-3122,-2198,-2756,-8151,1881,2037,-1873,-5494,-5181,5292,-6990,-162,-5334,-7497,-8148,-6107,-1232,7280,-8292,-8239,-7720,-4243,-9740,172,-9729,1751,7290,6293,7644,4636,-1906,3214,9623,4284,-5256,-5126,-5287,-6255,-4117,8181,1223,-732,10000,539,-9911,-3447,848,-2431,-391,2982,508,-5319,-3144,-399,8712,-6137,-4274,3237,-9149,-5491,2101,-8195,-5211,3875,3355,9860,-1149,6493,-1635,4440,-7254,9888,7311,-2130,-1727,4105,7499,5279,-5887,-1236,-8028,-5017,-7356,-213,-6957,6867,7075,6912,-3192,5078,-3902,-8390,910,-2492,9914,-3784,-3352,-4351,-3184,5842,-9755,8553,8200,5506,322,9010,-5399,-9013,2791,350,5289,5641,3863,5742,-1397,-945,-5499,6284,8191,-9113,7414,-7682,2146,8910,-3851,7083,-5300,1675,1965,4745,-2899,-3286,-5731,-3369,-5622,-1167,694,-8551,-3136,-1065,-3831,-8572,2273,9629,6639,-3938,3294,-4735,-8863,3942,341,7927,-2612,-8831,2086,6155,11,-4743,796,7590,-7979,-3535,-2636,-7026,5016,7296,-3257,-8807,998,-1321,5825,-790,-2915,-4366,-1687,3940,6054,-4065,-6657,5897,770,-7864,5404,-8603,5964,-3713,8944,1439,-1291,-5591,-2452,6257,7674,738,7956,-6517,7674,2384,1258,272,490,-4386,-9783,2101,8292,-8031,-3229,-5342,780,6284,-2275,2331,889,-6966,-3147,5853,9211,-5161,3339,7965,-3,-2295,927,2088,-1013,7605,8446,-9411,-2805,-9842,779,452,981,-3299,-9819,-8014,816,8729,-4028,1207,-9676,3784,4765,2301,-775,-3638,8795,1074,4670,9554,8343,9763,-6520,-4713,3929,-537,4094,-9125,2731,5850,-7365,-7460,4700,9277,2931,2031,7448,-1022,-1919,6835,-4928,3670,321,4029,-8468,8112,9884,1059,3595,5053,-8595,2678,-6709,4881,-9752,5522,-2755,6169,6439,-900,-4235,7530,-1705,7302,9872,-9283,-7556,8014,2589,-9276,-5108,-2833,-9105,-5800,7689,3038,1667,-3543,-6603,-5318,9921,-9021,-8578,6818,4134,4059,-3927,-7751,-5068,972,5613,-2281,4110,-5398,5119,-8354,9591,660,-9202,-8946,-6665,2489,-8566,-7837,-6618,-4019,3418,-1071,6412,-2407,1105,8360,7547,-4129,3522,9018,-4830,-5465,7704,-9751,9156,4560,-5545,-7759,-3788,9911,-4561,-6690,6305,-5853,-8799,3622,5978,-5273,3661,8410,-3588,3446,2571,-1669,-4605,-903,4063,8435,7768,6489,147,6312,2301,8413,-4240,4927,2804,2450,-5523,9219,3256,-2542,-3700,-1377,5580,2062,5875,-7657,-7513,-1039,-2289,-4084,-8320,-7397,-2073,-830,3821,-9702,3272,5688,-3755,6352,-6189,-2568,-7189,-7735,9359,3181,-4934,-3247,-3312,2742,7022,1720,-4760,-7254,-9316,1139,7386,-7944,-6034,-5944,9094,3801,-1044,-705,-411,-2780,-8790,-9689,4068,9922,-3809,2157,-7628,8195,-8260,-4430,-1573,2340,-3532,-7816,-5287,9792,-5786,2258,-9078,-7543,-449,-8134,7302,-9694,-1729,-9392,-6948,7483,-5754,6793,7873,-826,5158,-6791,9534,1711,-5222,-7376,-6168,748,-1202,-7524,6696,-210,2434,6543,8093,5809,7682,-5955,-6864,3274,-336,7421,3399,4942,-2000,-8130,-2465,8422,1487,4196,-1539,-9464,4710,6267,2383,5570,4829,7651,-2343,6270,9404,-9557,3185,532,7189,-8178,7530,-4786,-1595,9288,7022,6010,-6418,-3792,7009,3880,9917,-5180,-5901,7635,7951,-9199,8987,-3846,-9903,-1705,-544,-8141,-8784,2967,324,-7257,110,-4847,-7243,-9645,9248,-5501,7940,-1538,8284,8468,2055,9670,7157,5431,-737,4575,-1250,-5712,-8382,8711,-2003,6095,3613,-1342,441,3098,-8752,-1895,-9988,5664,9489,9302,2929,-1121,5678,3375,4326,2224,-5572,1611,-5664,4937,-7760,-4129,-3650,-8809,-4188,-2004,6664,6138,6612,-5872,-3261,-3173,-9399,5453,8499,3969,-5626,-8216,684,796,4878,5377,5398,5926,-8434,1468,-2207,-9429,-9532,-6781,8098,-9516,4386,-2715,8987,-925,608,-9263,-351,-1008,-2272,-8540,9754,334,-5221,9799,3362,4985,-808,-5151,4588,4328,2821,-9153,8459,-2569,5369,-5380,7167,-7204,9024,4604,-2811,9758,1382,-9195,-3541,-4839,4288,3625,7625,6611,4928,4860,-3436,290,-5778,2084,8649,-2594,3340,-7550,-1189,-2224,-2195,-7249,-5259,5634,-2816,-9253,6194,-1264,-3621,-235,8077,3396,2505,-2051,-1125,7355,6362,2926,1340,3109,-7123,8340,3956,-86,7335,-6727,-8833,4315,778,8514,-7680,3107,-9736,-8644,-7845,9041,8771,1279,-2115,-7170,1307,1690,-7681,398,6451,-8004,1946,3150,-2654,-6094,-4315,-4880,2802,-8244,-5487,-2881,684,546,4798,2262,907,2518,937,-652,962,1527,9409,-4109,-3370,2965,-5311,7809,-6540,-4951,-5817,7467,-2568,-531,7712,9836,-9819,6793,5673,-7022,3409,-2262,-6078,9954,6509,3605,-5538,-2685,8492,3134,6550,9187,482,5913,-7216,-7604,8651,-5574,667,-9037,3136,2157,300,-475,5467,-4333,6647,-9511,-378,4467,9429,-9219,7044,8979,-4055,3579,-3823,-2527,-6062,3555,9879,-4187,-2053,3875,-844,7210,1715,7072,8102,8720,-6287,-2102,-293,-2009,2076,-1817,-6536,7351,-9695,7755,9973,8657,-5375,-574,-6832,-1249,3193,9411,-4225,-1666,4697,4424,-490,5972,212,-9568,-4447,-4410,452,2922,-9644,-631,-7013,-9938,-6197,-6714,-2601,1596,-9517,-3089,2223,9427,356,-5051,-4859,-1593,7270,5490,3953,9958,-6187,6414,5748,7695,-8270,-5727,-3668,-7457,5492,-1178,1539,-166,-6547,-5927,8388,9896,4460,-1642,4497,4778,9199,-2857,9073,-9013,-8038,7426,7164,2319,9523,7060,815,-2071,8911,-9139,9539,5463,-8008,5052,-9560,-8816,-1594,1575,-3435,4732,3212,6783,123,6565,3092,5231,-7734,-8678,1091,7745,5296,4304,-5078,-9658,-8414,-8973,-3517,-6645,-5353,-8396,6150,4480,4682,-5406,4682,-1606,-8384,-9038,5104,-5360,3588,4104,7029,-7600,6984,2922,-2438,-9050,-2777,-5245,9229,-9693,-9720,9081,-7033,-3252,5131,-7631,-4685,-9383,8278,-5719,-1082,9483,-6088,-4611,-4917,-1306,1136,-7241,-1987,-6853,-441,-7398,-2438,-4634,-7329,2211,9767,6099,5310,7178,98,-178,-6051,-5266,-4700,6341,4104,9384,6062,4226,105,4168,-453,-5123,6830,-4180,-3130,4490,106,-9124,996,-9747,1527,3681,-2690,8710,4129,2596,3713,6522,-1550,5356,-4320,7519,-5283,-5074,-1997,3627,7662,-2556,4196,5049,-2499,5075,1322,-6354,-7479,-9487,6065,6304,-3542,-1570,-1489,9922,7513,-7809,5237,9411,3487,8639,-6810,3323,-792,6486,999,9493,5985,5477,3440,-9317,7546,2742,-3746,-7366,-5149,-7893,9771,-2553,-1157,-3293,6928,-4391,2581,2781,-1377,-8857,5450,7807,-4447,-9682,495,4240,7682,-2452,2665,7315,4627,2367,-5028,8906,-6578,-993,-4260,-9816,6624,-5623,-2005,2391,-862,-8310,6659,8861,9727,-9780,1936,-5866,-9007,-5136,-3463,-4000,-916,-5062,-7,-5076,-1415,3340,-451,512,-952,1681,9060,6679,-6584,-8399,-9104,7232,9617,-922,8942,-9128,-9988,8308,9716,4159,-6247,8073,671,7478,-1051,9363,-1142,-9638,527,-5602,-9246,586,-9977,4413,5448,-4868,-8382,6228,5735,-3863,-6476,-6866,-5922,9918,9578,6419,-2573,8990,3238,-6839,7770,7364,-6437,-3112,7241,-6356,5638,2170,4076,-5862,3574,8672,1962,5772,-24,5065,7695,7847,563,-7624,-9572,-406,-1473,480,7926,6398,5532,7680,81,8664,-5353,-6817,-1502,8281,6758,2096,5438,-8578,225,5640,-8652,-8489,6970,-3738,2892,-4485,-5844,-4693,8955,-357,7620,-8871,-9493,-9884,3493,-9041,2374,-4281,6579,6346,7669,340,7029,-2957,-4227,-1067,325,5741,6626,-1241,4523,8413,2998,-9468,3163,9465,5550,5752,-2750,-4572,1411,8006,4325,8498,-8855,-766,-7841,-4118,2471,-2829,-1292,-9158,-826,1247,-4653,4430,-3004,-9910,-8462,-149,5397,6649,-368,2042,-6175,-2233,-8282,5379,3001,-7196,-5074,-2478,-5501,-6024,-81,1408,-5473,283,8592,-1320,-2730,1231,6366,-2872,-3963,9082,3221,8314,6532,4555,-6067,438,-1310,8156,-9631,-9805,-1892,-7961,-2150,-7580,-7419,-2829,3483,-1748,3086,7500,2064,-3297,2033,-9979,3687,3883,-5750,-6557,-500,7800,-2570,5406,6049,-2218,1587,9749,7932,-839,6688,4378,-583,3868,-2728,-8939,5813,-323,6196,7515,6582,4769,-1072,-4582,-6092,-6863,-5894,-9153,9153,6370,-4602,-5723,-6548,7618,-1736,-9793,3547,-3899,-9369,9235,9408,-6917,-6420,-7651,-7744,-7475,5837,8152,881,-5215,5573,-4374,1847,-5538,9608,-6446,-3314,8967,4468,-8360,6521,-1377,-8270,-2483,8686,-2964,-6639,7906,7232,5813,-4900,-1475,5366,-1918,-389,-1970,-3650,800,-5494,-1181,3646,-8757,7445,2304,4132,-4336,-3792,-6341,2618,-5448,-1743,5874,-8980,-3134,4721,-3636,-2665,6295,9150,4587,7328,-3485,-4473,4001,8387,-8431,8288,-491,-9125,-8654,6381,-9523,9491,-3885,9437,-7432,8016,-2364,3091,-9295,3350,-6502,3613,3301,1267,4118,6425,3511,8708,-8117,-8099,-9328,2430,6802,-6859,-9971,3352,-467,3804,-4719,6004,-4050,-6039,-2057,-3358,-588,-6191,7479,-2304,-856,4078,346,4820,4749,-4357,9810,4814,5632,-8275,-499,8899,3977,3998,754,-9974,-7162,7514,-820,-9142,-7687,5750,8165,1905,9746,-828,2647,-6623,-5089,2880,2220,-9029,-889,9934,-7175,9445,6729,3498,-7264,726,7485,8086,755,3222,2437,-691,6224,8307,-5545,6302,5471,9834,1352,9211,8124,-5582,6771,6647,5787,9955,5667,3257,-3520,6258,5829,-6645,9191,8003,270,-3628,9673,2627,-4015,4745,5002,-5619,2195,-2274,-4975,4569,-1805,-5935,-2600,-7592,-5412,6469,4428,9500,528,-6425,6126,956,518,9635,-5010,-2960,-4748,6062,5550,-5560,1174,-9930,-9921,4120,6647,-493,-33,9360,-3051,6091,6146,4860,-8568,5750,-6893,4050,-1598,7688,2365,440,1674,-4879,821,8761,-1218,9937,-6136,7403,-6709,8688,9963,5578,8656,5772,-388,6280,-9782,-9379,-8781,7631,3236,-4436,-4737,-2988,-1798,3148,4749,-4064,4845,6064,9339,6761,-353,3016,-8451,2231,6598,-9855,-3114,9267,-5584,-4773,8281,-1894,7137,3900,1888,-4545,4842,-2190,3340,-5662,9857,8060,684,-9418,-3022,-2410,6452,-3127,1881,2751,-5093,-9594,7749,7731,-1200,1110,5588,6584,7996,-2703,-934,2281,2715,-7205,6565,-324,4798,-1374,9779,-3090,-8591,5813,-3577,-6697,-6810,-6404,-7429,3133,4626,6394,3392,-9351,-6971,2368,3842,992,9207,527,7326,-4420,-2961,-9278,1433,551,666,-7547,6020,3919,-5752,-3829,1406,-7882,-6451,-9582,-1035,1968,-7143,8438,-5909,-1463,9812,-8095,1642,-9045,-9655,-3328,-4626,9521,-9123,-6971,-867,-9025,6128,-840,3074,8728,7301,-8058,4697,9932,759,8392,6181,5926,-7415,-8140,6557,8964,-8850,-7221,9780,3139,-1673,963,9480,9317,6132,-6716,-3376,-5185,4815,-2458,9358,-5925,-3440,8919,9845,-3465,9787,1606,8892,-1167,-9598,9851,5111,9965,-6720,9346,4332,-6850,4007,9178,-6349,4724,2326,-7111,2762,-1548,-5174,2715,-4540,916,-45,-5117,-2165,-6066,-1934,-658,-250,2622,5845,9429,434,1993,-1598,-2812,-6648,4525,-3812,837,-9048,6543,1159,2224,-3272,-6848,5762,8885,-5484,630,8376,-9095,4983,-4645,3448,4107,5770,-1259,3591,-9206,1008,-7197,-9680,6726,7852,9505,-7068,-3040,-2652,-3698,6984,-8556,3773,-8655,307,7000,6233,-2826,9523,-2845,238,3601,188,7481,-8253,6444,-5990,620,-4424,-7921,-3982,1767,9441,-4548,3655,-2318,-416,-8388,-6109,-2801,-8552,3077,-6962,-5335,-6973,2593,8776,5817,-8937,216,-847,8071,-580,-204,8272,-7396,-8997,5428,9947,-8971,2023,2667,-6879,3375,6707,-614,4947,5608,-7913,715,4759,-4878,-9172,-2803,-4970,2194,-9364,-1310,385,-9211,-1772,3627,4333,6486,2682,6169,-7089,-2842,-566,-8950,-1055,-4865,-263,936,-5054,-58,-600,-4822,-976,5990,-6998,3192,-3701,5012,3044,-3074,498,-6616,666,4266,-41,-1669,8870,-5953,-3723,-6854,5631,8830,-8391,-2034,-7874,-2141,-2055,3131,1618,-1129,-2358,5986,-9716,6810,-8425,7205,9699,-2811,2149,-7584,-3440,4477,3894,8845,-4051,-7897,4532,-7474,-9177,-669,-4906,-3224,-9826,-5330,6194,2959,9580,3572,-1551,4656,6639,-9028,5778,-4171,9884,3110,-7488,8227,-2958,-539,-210,-4272,-8201,7870,4248,8486,8593,-4784,1764,-9741,-7927,2565,9973,-4868,4325,-6923,6261,5293,-1146,9761,27,1983,6227,6474,7915,-6121,-9588,9971,6505,-5291,2766,-8938,-2442,6701,-2575,146,9692,-3423,-9437,-4569,-7252,-226,5292,3150,-572,5572,5547,-4650,7241,-6126,-4158,-6436,-7861,9808,580,7554,-4393,-73,4372,-8005,1177,7443,1407,-9118,8651,-52,3290,-840,5771,-5421,732,-8577,-7011,1062,-4887,2762,-8926,7279,7933,-2662,1469,-340,-1743,-8499,7795,-8757,6451,4912,3584,9791,1634,4440,1464,6733,7473,4113,1427,-7743,-4327,-4899,-6941,-1309,6201,-3566,3939,-9885,9121,-9176,5717,-9526,1646,-1842,6149,-7882,-4936,7513,5058,-1168,8758,-1947,202,5857,6019,-7342,2888,6004,-4017,7884,892,1094,-6032,-2349,8391,1668,6612,-1715,-4635,-4291,-1149,5906,-8301,5443,9393,-1488,-7744,8418,-9111,-5547,-9290,-9981,7041,-112,3152,269,6296,-4334,5761,421,5561,9984,-3405,-391,-1483,4907,-2951,1884,-5146,-7789,2417,945,-3404,1274,4729,-1641,2324,352,331,-714,3063,7731,-5581,8130,-1934,-7790,-42,8668,-6422,1495,6799,4668,7358,-6482,9259,2297,5340,-4323,8623,3302,6468,-6307,-1948,5022,-1295,3440,-3808,-2944,-4890,-7695,-4361,273,-2658,3429,-1063,-2759,-9445,6992,-7960,9484,-8192,5452,3243,-2109,2516,-9668,7128,4822,3975,7695,-4606,-4179,9575,5456,-9202,4633,-8870,4340,-6194,-4695,-6325,3077,1792,-7574,4526,3593,-6730,7121,1964,2990,3471,-4015,-7366,5831,6494,5034,-8034,5642,-8966,-1491,7315,2185,-2779,8979,9324,5438,7392,-5526,9238,5073,7307,5714,8866,-5791,-5069,-6336,-1603,-2416,75,8520,-5500,-8116,-3026,3162,-7599,1176,4505,9167,-1018,1122,5746,4166,-4202,6997,1039,3541,2916,-4970,-2714,-2807,1413,-9635,4971,8765,1043,-8339,-7147,6988,8355,-9990,-5230,-4102,-6814,-2196,-6004,-2531,-8585,-9437,-4979,2106,-5747,-9854,-8099,-6985,-1032,4957,-6716,-2771,8033,-6614,-8907,-805,5734,-8027,8510,6347,-5574,-9859,8756,-5573,9065,6334,2519,-1902,-9766,7334,-1528,-8516,-7101,1308,-3847,9385,-4158,-2917,-7338,-7028,5524,4359,-1191,2648,566,5906,1576,-3923,4041,956,9088,-3010,222,2631,-9250,-7575,4473,-2369,-8414,-4848,7652,-292,-8463,7994,-8615,-3383,1772,6273,5239,595,7124,-3791,-5257,7259,5528,7608,1548,-6577,2090,2751,6448,-9140,-594,5929,-9764,250,-5039,-9917,-9808,7091,-9639,7654,1169,-9118,7013,-1953,116,9975,9402,-574,3137,8547,2237,4962,-6065,-1875,-3299,-6315,3311,5750,-365,6355,-6407,-9847,8461,-4665,-4241,-7082,713,-6043,3886,8735,9063,-5928,4518,19,4750,5381,4524,-3560,-7881,-4543,-8000,-6967,9791,5255,-9771,6849,-4172,149,2509,7594,9610,8321,9400,-9784,8695,-7296,2911,-4816,-1627,1162,-3139,-461,9483,1004,3733,4450,-417,-6157,-7903,439,4571,-8788,4213,-5085,9521,-7926,8332,-571,-9384,-7752,8874,-8940,-5898,9463,-3619,689,3181,7809,-7695,-6039,-6699,2311,-5700,8207,-7234,-8263,-98,-2598,5146,-110,-4301,4531,-3154,-2858,-7141,-4368,6901,-9515,5429,7365,-9734,7812,-3285,-5810,1678,-6906,-7012,-7082,-9828,-1557,-2617,7243,-5394,7836,-6715,5376,-5572,553,188,-6625,3883,1361,-3863,-112,-9554,7411,-7192,910,3521,2747,6934,-3682,-261,9454,-1444,-2204,6790,9316,795,3520,8070,-1382,-5988,949,-7462,-9922,5566,3966,-7347,-6188,7353,-5814,2406,36,2561,-8836,558,3197,-9328,9105,1437,4285,-4365,-6516,-8889,7637,-2806,-454,-3643,-4976,-7090,9153,-9766,5594,-2302,7728,-9924,-9463,-3204,2211,3026,-1256,-5540,5553,-3616,4690,-7795,7337,-6050,-579,4430,6828,4001,-7542,6530,-1371,4834,6500,1631,-9561,6590,-3348,-2545,-7390,-2592,-2501,2240,-7294,-2884,3844,8115,-311,7902,-6125,7042,-6723,-7235,-9121,-267,-7248,3160,6,-2083,-4357,9670,4396,-1929,-4412,-503,9189,9105,-5825,507,-1661,-5402,1171,9925,-4485,-9732,-908,-3460,-7796,-9139,-1819,4531,-6550,-2777,-9420,2302,-6875,1637,216,-1708,-476,2966,-2720,-7568,7230,5373,-7185,3870,-325,3279,-2031,968,8043,6899,4158,-7038,-4618,-2068,7520,-1030,-4046,5967,-3749,-9862,-8036,-6042,1272,-3300,-5487,138,-1308,1943,9063,3906,-4121,2887,7729,-8722,-3179,9879,314,-4920,7337,3401,3749,-9074,-8789,5735,-3188,-6550,-7635,-1703,-2046,-1419,8847,-1327,-6918,-2175,-458,-3229,367,6204,302,436,-2019,6628,-5805,-8076,-3021,1132,8794,8079,-7855,-5075,4585,-1596,-7362,6976,7338,-846,8379,6466,-2362,-1520,3265,-7127,7038,-7760,6087,2341,-3550,-9782,3833,7786,-1926,-1602,-7162,5976,1616,2881,-2157,-5835,-6355,1269,59,-4805,1157,-5727,-205,6603,9703,-184,-512,-2439,-715,6033,-9613,9342,4643,7381,6687,9046,1505,-8447,9854,-5545,-4727,8198,-8545,98,-4635,-7297,3752,-5530,3572,-8033,2050,-6972,-405,6018,-3134,7725,5949,4660,-8873,-31,9462,8055,-7363,-9176,-5796,-1570,4420,-6377,-9774,-2569,-7921,-8877,2489,3600,3933,5437,-6437,584,-1259,7202,4911,-8834,6940,9034,3576,-9183,7175,4611,858,-8467,-9321,-2407,-7976,5632,5165,6954,-2576,8736,6118,4061,9848,3468,-6764,738,-9768,9721,-4207,5089,6409,-3114,3241,1996,-6896,-4822,7982,1107,-2472,8805,939,-3107,6248,-1541,6827,-2188,7634,-2829,7900,2663,-4302,1344,-9985,7014,95,-2151,2036,-765,5648,-8924,4526,8516,-1185,-6453,3181,4324,-8280,3026,-9885,7735,-2467,269,-9152,-1167,8083,-339,5060,-9965,-2671,6030,-7550,-8900,-3426,-7343,-5124,4253,-4422,5315,-5391,-8350,5403,8983,-4742,-7704,-5651,-5455,605,-3350,-6495,-1040,4406,-1694,-4553,4359,-5800,-4197,-4175,7537,-7785,7083,-1253,5359,389,-2877,1822,-2620,-7009,3083,5616,5998,-6851,-6721,-3642,-8095,3561,-9857,28,-7455,366,-4550,-5528,-1686,-6232,-761,-2257,-7807,1575,9641,-9423,-2802,-3513,5724,-4941,-6414,4712,-4502,7805,-2831,4308,-6931,7926,-3277,-2714,5905,3854,-5746,1622,-633,-6835,2776,-9731,3255,6656,3098,502,-2496,-2061,30,-4251,1401,-9425,-9854,9530,6010,-1887,4583,-7261,-3627,5878,-5452,-3834,3121,2961,4313,2000,4450,1008,-1165,-113,-1371,3699,-1428,-9498,-618,-6405,7148,95,-5567,3347,8225,-9320,-6441,-7291,2451,-499,4943,-8320,2885,-3455,-6076,-8568,5458,-3546,7851,4913,-9618,3419,3199,7269,-9555,-2602,-1714,1728,-3181,3759,-1784,-9567,8827,5198,1643,-6114,6163,1710,-5350,2768,4911,-9200,277,-308,-7493,4772,4199,-1712,-7766,7659,2919,-3691,-8703,1121,4790,-1069,8821,-8658,-8518,-7060,3321,-6863,-1174,-4958,9343,-4456,1846,-2187,-2657,9489,-4185,5954,-7831,7853,4121,5222,-9367,-6563,-1818,-5748,3272,-8395,7568,-4881,-5300,-1354,-9890,-2172,1481,5024,-8729,199,-1769,4074,-7983,-6332,-570,-6294,3782,5529,-9627,8584,-1710,9908,-1054,6870,8147,58,-9530,7352,4391,3170,8623,-1327,-3949,905,4162,-8210,-1433,-6667,-8052,759,-2080,9057,2687,2280,240,-9751,1303,2996,-6425,1939,-5928,-5457,-7230,-520,9295,6103,3972,7890,-9643,-8634,9685,-6254,-7958,-1496,-1908,-8360,-86,5061,-4238,-443,6865,9869,3034,-4959,-4994,-6046,-5859,3727,7795,-3169,-6193,-3953,-1517,-8555,9097,1300,521,-5921,2070,1472,-7091,6139,5279,-6001,-1677,4377,-854,1458,-6615,6313,-9721,-8171,-9008,-4742,-8868,-5734,3167,7306,3048,-3844,-7531,-7662,-135,809,-6298,7440,9617,-5609,-5633,-2372,-2607,7595,9598,1247,-3679,-3841,-96,7187,6639,9479,1899,6794,-7055,-2379,-7372,7932,-8399,-6533,5009,-8260,417,-4755,-5773,-2593,-5805,1040,8748,-6317,-5906,-6193,-1446,-1961,3520,4723,-2130,5625,-4010,-5376,-1978,-3876,-8111,-5581,-5350,-5850,472,3474,-4779,4352,-5956,4467,-7618,8516,8760,-7282,-1629,9872,-2179,-369,907,7401,-1720,-2594,-8982,7004,5696,-2993,7248,1,-3077,-7246,-6588,4640,-1659,2704,557,-3756,591,6752,1146,8018,-8649,7787,-8516,-8304,53,-8932,4259,7030,6480,9058,-454,-9012,229,3508,225,7747,-4143,3915,-7937,1294,3200,-2221,-1860,-5733,-4606,-1592,-2164,-420,904,-7115,-6429,-5954,1153,-3019,1967,-7826,-4367,-1134,5419,1437,9993,4488,3403,7616,1307,3553,3226,-8100,1817,-8007,2341,4118,6076,527,-6052,7793,5029,3307,7613,-4399,-7740,7086,-8392,-5927,6327,-3392,9299,-9827,8571,-3518,-9865,-467,-1525,9081,7118,-2861,5577,6846,-1625,-529,-5987,51,9757,-7370,-1113,9851,2523,-1595,9112,7001,6098,-7609,8121,-8727,1194,5427,7567,8038,5531,7511,954,8921,953,-5290,-7929,2793,-3100,501,-7527,9973,3034,-6168,449,42,-2651,-2489,-2418,7130,4226,9020,-7577,-1394,3237,6290,4402,-6800,-1079,-436,-6957,-2866,9187,-4044,-1329,9860,-4726,-1522,-6514,-7715,-3079,-7695,-6889,1493,-7551,-8007,8145,5637,-1067,-135,1419,9934,-6758,-7659,3551,-4002,4162,-958,-2067,-5610,8555,-4029,5613,-2059,8001,9970,6587,6763,5661,4020,-1343,-2669,-2740,6273,-3221,1124,-2793,7439,9737,4191,3438,-2382,6658,7570,-4918,7549,6092,-51,-828,-6098,1030,4356,-609,8127,-860,-4982,7811,-9791,335,4954,8869,1713,-1720,1049,-9485,5207,-3478,-7378,-7486,-9642,-5724,2580,-9907,-6512,-2009,3511,6431,-2454,-9869,-9419,5237,-3898,-5362,203,2639,5225,970,3223,-7984,-4370,-6441,-7038,336,9919,-7070,-7376,9889,9169,-3803,-2293,-8892,818,-4315,-8896,3530,-9372,-1924,-3388,8666,8364,6933,8711,6925,-7151,7271,-9065,-6260,8889,9788,-9557,-4817,3719,-3424,-7537,-1587,-343,-8742,9378,-2021,779,8471,1425,-4229,6073,-5931,5928,5019,2589,534,-1862,8192,-6989,-9909,5805,-4526,-7502,-3166,1933,9184,6887,2178,2475,-8784,-7942,-4255,-6310,-3641,142,4453,-2900,4901,9547,8437,-3285,-7339,8144,4827,-8978,308,7409,-3531,1487,-4190,-3587,5988,4197,5771,7114,-3527,2851,-3067,8116,6808,-4605,-3211,-7328,522,5527,-1468,-7296,1798,1856,4380,-5513,-7006,241,-410,3694,2112,-3592,-3496,-8288,6593,-7507,534,594,-8036,1643,-9891,5372,3009,-2834,-8960,2481,9532,2410,9138,2568,795,7428,-4412,-9169,6069,-4716,2444,2542,-578,-307,-6806,-9033,4435,-5547,-8294,3847,423,6692,1125,-2670,-5887,-5226,-4840,1378,-185,-3809,-4160,4362,-8786,-268,-1053,7125,8996,3039,1361,-5019,-8829,-4339,5534,2408,9770,-5348,-9171,2294,46,-137,-6646,7865,-8617,7666,-4428,-9645,-3035,9548,-8027,9344,-8841,3772,8555,5960,86,-3562,-1770,-1375,8439,-4459,2628,7568,1863,-7526,8793,8481,1045,-5795,-9837,-9863,-762,2496,8473,-6404,6161,-8642,8879,7781,-7098,-8668,-9803,-2656,-2424,-9878,3924,-6179,-9141,3543,-4120,-8534,6206,-2220,-7933,-6454,-7441,-4525,-259,3056,-6552,1974,6185,2450,-3229,2911,-1222,-2650,-4980,9753,8249,7288,-6706,258,4610,6130,-3412,108,-6602,-4178,3925,-8299,-112,-751,-2628,-5160,7262,-141,-756,-931,9160,2560,-9537,4356,-9351,4475,6849,8851,9230,-67,-8268,-8376,8723,-9999,-8503,-6239,-3274,6649,5349,-2632,211,-4013,5603,1234,-5469,4167,3390,-4193,-9817,8153,8163,-7245,2106,4941,9907,5166,-795,-4360,6301,8143,9118,6571,5812,655,-8125,-8299,2665,-3531,4783,1224,4452,-719,2784,-5956,623,5307,4301,-403,9560,-5475,7457,-2294,9532,-9174,2239,-7176,-2350,1828,-8977,-9318,-609,8901,-7645,-7668,-2561,3083,5090,4789,9797,-6955,2114,-5938,2901,9846,-6868,-318,-3114,3487,8790,-584,-1430,9444,5522,7621,-7525,-4272,-8948,-9587,-7348,-8409,-6173,-2613,986,4139,2130,6631,-5578,-4691,-4375,-2109,-2329,-7675,5728,7787,-3315,2756,6172,7824,6599,-7148,7213,9203,4928,3693,4669,8095,-4778,6440,1272,-1797,-4107,-2272,583,-4781,5676,2592,5362,3588,8385,7534,7253,-6676,6018,-8691,-4362,405,6169,-9887,8494,-695,8310,1125,860,-8636,3758,8677,5347,9732,5639,1188,-3563,325,-9231,9978,9757,-4704,-1779,-8753,2493,9601,-5283,1481,-9452,195,-4762,5802,7874,5681,1970,-1934,-5103,-2289,-7305,-5265,2067,8838,-3134,-5826,966,-2360,-9544,-7105,-3298,-1571,-8791,4485,-7186,5336,-8489,-8191,430,5812,-5309,-6442,243,-4304,4588,-5035,5509,-6764,-5903,3972,4147,-2901,-1475,-1873,-715,-7753,6090,-5317,2715,-2057,-6257,3551,1089,-9497,2791,6056,-7042,6175,-8527,-2415,-8199,-4730,2691,2241,-5128,330,-6834,-7684,-3475,-7415,9577,1265,9760,3079,9059,7669,1747,2522,-8405,2934,-8090,-1121,9899,-9872,3709,3699,-8090,-7875,-8898,-2306,7332,8193,2948,-4462,5171,-4405,-8583,381,712,-3019,7078,-3809,9057,6622,9677,3412,-1175,-6760,6920,7238,3992,7137,-8317,-298,6368,2833,1499,-2795,-3005,5675,-8336,9871,-9175,2347,8716,6344,-1433,7282,-6720,494,-7336,-7812,8847,-9520,7318,-2772,7910,-2700,-9876,6816,3385,2164,3297,-3574,-1534,-6011,7104,2099,204,-8363,-2193,1292,9694,-239,-7745,1353,-6808,-5810,2599,-7366,1927,-857,-7190,6091,6805,-6842,-4272,946,5073,-7685,5642,-1940,-3136,2465,638,9464,1805,-6552,5452,7821,-7882,-9401,2227,-3545,-361,-4889,-6459,1310,6426,-6864,-5031,-820,4905,1380,4217,708,-9926,-9517,-9247,-8984,1823,3097,-486,9349,9602,-29,-9283,-8181,462,2130,-5495,3473,-2277,2739,7490,-2175,3358,-9544,-3116,7694,-3144,4309,-6196,8198,8616,4386,2519,-7809,-903,-4480,-1979,4342,-7230,-710,-3885,-872,-7948,5230,7693,9546,-3974,7801,-5315,5481,5037,9091,-9765,-1951,-3928,-7081,207,6869,7183,-2737,-2212,4472,1311,-6764,237,-1396,9255,4769,1719,470,8995,4290,3557,681,6081,-3338,4831,9435,864,-2159,-1890,-8531,-4718,4214,2883,5132,1163,-6901,4724,6908,7994,-7653,6510,-4911,1020,1347,6531,-5225,4842,6859,326,-4139,7906,-4472,9471,-4514,-2396,-1539,5484,-9021,713,6243,2983,-7183,-8266,-9104,9092,-1840,9506,2768,1499,7829,6889,294,-9381,5169,2612,1294,-7690,714,-7122,3854,726,1081,9106,-1763,-319,-219,4612,-5221,9569,-7965,-6892,-7328,-6277,-7730,6971,-7122,4282,-6560,9336,6115,6321,1853,9293,-3029,-5369,4878,4336,2755,8797,2634,7210,-6776,-1776,839,4863,-1303,-6998,906,4615,-3408,-7866,-7370,-9206,-2622,-8927,658,5580,-4243,-52,-9181,9626,-4052,-5852,2371,3315,-456,3294,6163,-7638,-2999,8024,6605,9583,-2930,948,-309,-3790,-5071,-8206,-1411,8005,-1967,-4378,-9837,1633,6769,1431,-4625,-7226,-5022,9837,2134,-8750,8717,7766,-1764,4577,-6080,-1121,-6234,4025,-4554,6518,-9429,5008,-2286,5088,5414,-156,-3597,9387,27,9292,7994,-2449,1596,3181,9505,-7929,-2130,-9315,-1354,5612,3640,-6371,168,-8417,2391,1633,948,-6708,-5829,-9827,5625,-9431,2346,388,7630,-32,-6095,-5981,2653,-8479,-6585,7989,-6470,3044,8712,9619,-4867,5047,-8670,7933,-1099,-9134,-1499,7257,-2867,-9274,9631,-6599,-5804,-7607,5315,-7254,298,2379,-5363,4178,2664,9390,9873,1847,349,-7628,4207,4338,2746,9183,7697,2629,-1460,-4900,2474,-2801,-2220,5513,3887,-2595,589,9420,2856,-1955,5724,-7214,9075,1524,8589,1994,-3300,2712,4201,-8705,-1990,-4016,-3438,-1211,6253,-2934,4585,9134,5124,-1986,-1343,3222,2494,-3322,-6772,-4025,2601,-3433,-7220,7904,2900,-2257,-6648,-1282,297,8965,-5497,6550,1940,1104,9777,-1323,-6948,-1976,4974,8110,-6080,3047,-6199,-6100,6774,-5864,-8710,4749,1652,3743,-3437,-8524,168,3977,-7408,3733,-5074,-4045,9070,-4498,8121,-5779,8022,7806,5047,-5159,-4366,7298,-6910,-1914,-7024,5695,4962,9550,2244,-387,-3162,-1943,7577,584,2705,6349,273,-925,7690,2718,7573,-5595,-6195,-5543,2009,-7880,6685,6634,2879,-2195,-3302,-6881,-8463,-4592,-4574,9257,1449,-9548,-4351,-4208,2511,2267,3633,-3660,-642,8223,5268,2099,9340,4253,9511,-2297,1393,154,507,9064,-3032,9882,-2257,1737,-7168,-288,3143,-2258,-3013,315,3260,4931,2834,-2768,5308,6906,379,-1974,4339,-4277,-7751,792,-2815,-8575,2362,1770,-48,7961,8752,-7980,646,7618,-4173,5821,-9695,-5801,-8093,-7572,1411,198,6034,440,-1276,-2665,7198,7487,-9281,-4097,2241,-8922,-8732,-4010,4708,5083,3398,1920,-504,8833,9675,4965,-7590,1945,7855,-9087,3482,251,-8134,8663,-6346,-2849,-5013,5256,-7593,-4004,-248,4869,1098,9928,2682,-1166,8618,7133,4192,-7031,5748,-4987,-8333,-252,4799,-4628,-7765,4725,2501,2635,2366,-4597,-9502,-8779,786,8203,7373,-1486,-1777,-7569,7963,-7019,7606,7066,-9390,4447,2255,-1250,9473,-6508,-2822,5081,9725,-5787,-3821,2760,-7074,8227,-4215,-956,-1783,2815,5207,2521,1049,7804,-1046,3646,-5795,-9596,-9820,8211,8226,-6748,6874,3527,-2482,-4705,5274,-6496,3370,-578,5027,9016,-1503,5086,-6619,-334,6502,7742,7831,-4112,-712,570,2004,-4528,2983,-7373,9569,1537,-5192,-690,8998,-307,7707,-4000,1523,-7421,4642,4458,-3098,4467,-7510,7656,6994,2312,-8865,8412,4277,6606,5892,8492,6023,6916,5265,-783,-7033,-6795,2167,6019,8970,-1498,5924,4320,1076,-4958,9386,2891,-8014,5208,-7807,-5331,3450,-8908,5543,4592,-8011,338,1949,-9938,7629,-5941,5838,-2015,-2370,7975,-499,-7226,-4468,7877,8394,-1069,-2061,1211,-4687,8325,-8979,-7720,1980,-6676,-4182,9427,2587,-6067,-3788,906,-5170,-9790,-3267,-7119,-7065,-9157,6471,1579,8909,-4761,-460,4828,-6907,-1002,2969,8630,4518,1240,1002,3400,-7558,1094,-3688,-1577,-2727,-2659,9842,-6589,9427,-613,-8370,-1814,2699,9679,9342,2021,-5677,-9277,5767,6293,-3936,9684,-6502,-9081,-2425,-4446,-5386,3245,-2208,-8898,-2714,1091,4045,-1107,7284,3536,5394,-711,1346,-1808,-4379,7233,-845,6369,-1921,-5926,5060,-3117,-4627,5860,-6159,-8559,-2113,6768,-5508,6228,4561,271,3966,5523,-8624,337,2433,-7312,-9644,-9529,6661,-8562,6112,7450,-7213,6850,9823,3379,-1002,4708,5476,4771,-658,9591,-6892,5319,9675,403,7436,732,5196,307,1004,1971,-1783,2210,-8544,-9432,1432,-970,5205,7681,6939,-8400,-5770,-2502,1222,-6728,-1592,-620,-3787,5114,-1760,6606,-141,9759,-8321,-1516,7416,-3033,9077,2621,7841,3820,-2736,3215,8465,-5591,4560,-7973,-7928,-6687,-4375,-8408,2462,-8995,-8936,-9235,-1733,-6625,-5606,-9047,-2184,7302,7684,7648,-8978,5726,-790,1168,-3274,-9608,-6332,-4778,-6583,-390,5786,-8933,-242,8183,-6827,-6477,7170,-5885,5290,8,-6524,6457,-949,4984,7769,1677,1207,-5297,5025,-1137,5560,9605,8880,7281,-6773,-536,-343,9781,-4798,-6981,-7724,8464,-1605,-7256,2223,-2373,-4916,-8243,9614,-6674,-8625,-2451,-1040,1520,4509,-1797,-9643,5645,-841,-3663,-1689,-5546,1909,-9729,4204,-8295,6342,4113,-5696,6602,6802,-1999,1149,8257,-6079,8161,-3300,5511,-7867,9971,791,-5985,-2560,-7918,9909,-992,2681,180,498,-894,5992,-9137,7123,-4987,3599,-9703,-4673,-2278,4552,-1236,2381,-1018,-5195,8286,4821,-6389,-7186,8315,-4188,-4576,4049,-1488,-4058,-5257,5790,-6771,-3368,7317,6171,5046,2624,6100,-8950,1224,-144,-4998,-3319,8762,-4387,9733,2351,7197,-6795,-3529,9018,-6753,9036,-9985,1050,-9160,5721,6862,-7256,6620,5563,-3393,-2922,-9957,-3978,-3079,6717,5100,-6753,7008,2855,-4137,-1289,3144,-1625,8264,-9314,-2022,4460,-8753,6868,6658,-3730,4721,-594,9383,-9579,-7003,-4166,-9712,-5285,7080,1004,-1458,-1508,-6764,-3716,7877,4915,-3789,-5223,7740,1712,1358,-971,-7529,-3787,1579,-19,-2034,-9455,-1634,-2898,4561,-7237,-9824,9638,8865,-7287,-3728,1875,4497,7650,780,4732,-5461,878,3513,-4621,-5603,4700,-3406,9422,4122,-2701,-9419,8907,7858,-7625,7057,5463,-892,-8343,2647,-1292,-8580,9469,7022,6726,-4156,3526,76,-2558,6879,-2952,8866,-5236,2710,-5263,6980,-6604,5778,9191,-7830,1593,-5570,820,4423,-8788,-8913,-3622,-6979,-6134,-3674,-5390,-6752,-8422,-9010,8828,-8616,9319,-6239,-9991,8613,7730,-4672,9973,-1686,224,-7387,2817,1474,-4370,-4090,-5104,-6382,-5338,-8297,-5978,7169,-3741,3420,4524,-6203,-7253,6322,-4431,2551,510,3115,9473,3700,8472,-8842,4425,-6730,-6625,1050,8642,-8675,-7419,4412,-7649,8679,5795,8446,-2089,1811,9491,-9664,2370,7898,-5429,-1479,-9025,-4086,6337,-9635,-7898,-4666,-877,2887,-3485,9450,6607,7576,892,-374,8264,9754,-6921,-9039,8230,-6658,4114,2480,-687,-2924,7875,6046,-6532,-6606,1551,6836,4427,8844,796,5729,4828,9213,-608,-8444,-2039,1355,1306,-6477,9371,949,6273,2665,8969,-5510,3683,8391,4782,7821,5763,-4624,-2549,-8237,9658,-2418,-68,-5665,-7417,5330,-8295,5789,-3633,-7803,6471,-2991,-2689,9590,9434,8520,-414,6199,-6320,-8762,1274,-1115,-7133,933,-2799,-334,-7042,-2962,-1665,-2559,7849,-2573,8164,-7095,-3178,3249,6537,2379,5187,-5065,877,5754,-5716,-9462,-8670,-2098,3421,-2320,-1250,9932,-4353,-1639,422,-7126,7286,9311,8832,-229,932,-6789,-4137,2934,-3034,1577,150,5858,-9291,845,196,-9726,7506,-2222,2284,4352,-3342,-1778,-1977,3202,-6841,3186,9225,1351,4455,8697,-2015,-6070,2376,-4355,4364,-7048,3500,-5698,-4168,6650,715,-2423,5695,-5586,-787,4000,1623,-958,8528,4849,-3707,-2693,-9657,4992,-2151,5332,-1578,2753,-1579,-6905,3326,-7574,-7840,-6271,1710,-3296,2015,-4258,-9436,-30,998,-6905,-2164,4206,-9008,8858,-3022,-2127,-1751,4585,-5597,3650,5175,-951,1354,-5984,7377,-9912,3108,-8103,-9487,-7340,-8937,2083,-5964,7113,6906,-2662,4153,3783,609,6842,-356,8141,2607,-6987,-3432,6933,3407,9763,-3469,-7524,-2281,2193,5764,7732,5709,4446,3054,1025,-9317,2641,8646,1653,9281,-8112,-9357,-2749,233,-5940,-9273,8410,1044,4543,-2468,-4080,-4696,-742,-542,-9311,5696,7938,-451,-511,2161,-8500,4211,6422,-1710,-8556,-6623,-8628,-7683,-4780,-610,4789,-2471,-945,-5660,3558,2561,-2554,-4024,8162,9479,8706,899,7392,5743,1792,3794,-7749,8655,-8644,8832,-1941,-9107,-1139,1221,8683,2402,1354,-254,-8470,1213,-2782,-9446,-7051,-3510,4954,-9340,1016,-5108,8185,-8313,8262,-1221,-6115,9401,-3460,8063,214,-3158,3201,-6568,1389,-7950,-9764,673,-1032,1312,-4522,8505,-2382,-7590,-9751,6518,-8860,-9154,3345,-5391,8347,-245,-3156,-2984,-6580,-2594,5885,7789,-1501,-894,-9746,828,6150,-5581,-3680,9965,6702,-7581,-3916,-5217,3791,-4826,167,-364,3874,-1490,4799,-6842,-1354,-134,-7795,-7184,-9709,-611,3950,-5730,-7795,4975,-678,8820,9965,-1758,-8369,5218,-4046,5754,-9939,-8626,6959,7983,-6997,-7325,-9783,-301,7628,5811,-4147,-2614,6011,-3819,-4004,-1574,6586,-3902,9487,-9721,-3248,9962,-953,-200,-5868,5982,7229,7799,8898,-1962,-9904,6436,9383,3664,1089,-1269,-3702,2198,5989,1595,7327,-7622,-7414,1388,3921,-7478,2077,1710,-4542,746,-6369,-7530,-4923,3962,8754,-7682,-3734,-3344,2248,-8518,9050,2764,-5023,8481,-2846,2451,-5326,1309,1488,7990,-4824,1963,-3068,8823,-7515,1572,-7976,9828,6892,9251,854,5607,5623,684,-8282,-6243,6917,-8223,2874,-1619,5872,9365,-2884,-1890,-4561,-3087,-8869,6346,8868,4707,-4954,-9628,6283,3543,-755,-2097,-535,5549,-582,2903,-35,-4371,3683,-5287,-7217,-6794,-9373,115,-6239,3569,-4476,-2455,997,8356,-7748,-1097,-6602,3394,-8952,8245,-3893,-8001,-6617,-6991,2070,-3172,-7744,8497,4473,-455,280,-8652,3667,-1178,-7354,6228,-5146,9804,-3686,339,8178,8991,-3576,-6354,-5164,9267,5085,1151,6545,5854,-826,3552,4582,-6623,-6420,-438,3918,998,-5267,-5057,2326,-875,3196,6377,-9975,3398,8768,6943,8940,5770,-7981,-130,3484,-6667,6721,-6279,9375,3634,8037,-3698,-7397,6964,3398,-7281,4336,-5802,4059,1089,-8961,-9602,5156,9523,2061,-6645,3370,9801,-9228,9737,2597,4994,757,8860,-3458,3105,9456,-8808,-9195,5596,-1294,-2430,1469,-7713,-5462,-4952,3628,-5210,-3167,7496,9221,-9178,6601,-7449,-397,-3619,5044,3276,-7553,-6697,8889,-4402,-4277,6553,2974,-5510,-9204,-3894,-503,9647,-9161,-6365,9821,-6269,-2228,-7637,6661,-2481,-6813,-8346,2995,-2032,7297,1973,-5660,-1171,5282,-9675,-3767,2446,-2096,-311,-5681,803,-6012,3862,7627,-8623,-7796,-9902,-9962,-1285,-9919,6492,9318,7672,1828,-1903,2237,3851,8529,-5066,7749,-9235,-789,-998,9718,-5985,2397,7921,2925,-153,1162,6902,-2902,-5267,-6147,-1166,-1946,2172,3586,3972,-3144,7900,2796,7058,966,-7613,9097,-2186,-2180,5442,7218,-5356,-666,4640,-4092,-5934,-1290,9214,-8232,-6305,2235,-1200,2041,-5962,2008,-2008,8458,-2136,-8535,-3791,5457,-6001,2420,7461,-7017,-238,-2318,7828,1355,4310,4138,7859,6647,8469,6208,1379,6939,1283,1606,-3177,6476,-8848,5414,-2459,2371,5565,9754,-8550,1020,1922,9476,-7632,4684,7348,-8285,8843,-4424,547,2494,165,2911,-7949,-6120,-8673,-6202,9681,-9290,-3717,-4753,-6084,-9549,6994,-1229,3915,-5890,1785,-7615,-5095,7199,3670,5208,-5198,-113,7969,-2432,56,-1362,-4032,6589,-3668,6334,8737,1119,-9054,7668,7275,9020,8360,29,-9867,-5941,3612,-4972,8064,-3793,-261,3374,4820,-9391,4538,-4117,-6758,9118,4785,-6042,-7816,-1346,5657,5963,-7355,6843,-8049,-8947,5662,-8524,-1243,3711,6899,4584,9447,-614,7380,-3694,865,4342,8615,-6244,-3186,5331,8950,4953,5520,-3151,6671,-1284,1251,-4355,-4331,4771,-3276,4533,-1718,7091,-5511,8386,9677,-1832,6911,-7674,-9199,-6935,-9148,202,-7343,5377,3279,485,2038,480,-8156,-4563,-6877,1132,5051,7591,8104,3374,-3027,460,6444,-2216,-8554,-2651,5363,7414,-6363,-8402,-8876,-9200,-26,-9819,-5919,7216,9216,-6805,9581,-1925,-1889,3310,7516,-4892,-2744,-5961,7014,9659,-2776,-2124,6708,7567,-9352,-3807,2682,-4949,9246,-2145,-5604,-2961,8353,3820,-7771,9419,-9856,7725,7280,390,9888,-8125,5655,-6502,-2190,-5554,1697,6863,8621,191,8022,6256,-9028,7191,-7306,-9351,2580,-2015,4569,9523,9881,-5575,5054,-3050,-4972,-9497,3787,-2441,-3123,-6293,3173,-5644,-925,-3022,5979,4845,-2276,-1244,-2040,-7754,976,5346,6911,-2433,5854,-801,-865,211,4424,4104,-8031,8470,-4364,1336,1599,1245,-565,808,-9874,-9732,3795,-9828,-5225,-5152,8646,8630,4068,9676,8090,-8328,-9238,3743,3448,-1872,5349,7264,1503,33,-3401,8391,-4117,6680,319,-951,4393,-2051,132,4752,3316,6926,4237,2386,-5628,-3753,-100,1849,-3040,2530,1710,-332,-7726,8977,5948,7109,-1070,-4839,-9121,9722,-2088,4038,2114,6386,-5572,688,9051,8361,6430,-4303,-6738,180,-4451,1100,-5978,-1112,-6016,-6021,4714,5442,6264,1162,1141,6337,-127,-8082,3187,5319,1878,4395,-9389,-3945,3574,6686,390,-9232,4895,46,6776,-1996,-390,-2395,3113,5122,-5718,4709,3464,-521,-7153,8748,-5057,-7389,7561,-4228,7101,288,-1567,5957,-3955,46,6591,7094,-6187,2307,8142,-6638,-9615,5580,724,5726,2280,5259,9342,511,-1852,-1814,-5715,1985,-3044,-9237,7567,3136,3910,8606,5107,2945,544,3217,-3237,-2931,-1856,-6350,1458,-4130,-3022,-394,4692,9820,3304,-1581,-6540,-4166,-4640,-720,-7141,-4554,-964,-9860,-8040,-8107,7767,-8540,76,-4180,6121,-1667,9537,-8801,-9114,6501,-3637,-6729,-3560,-3400,2583,-5182,6970,-5732,-9824,8178,1751,9165,-9718,1431,-6029,-9517,-79,-8694,-8313,9369,7584,-5867,2078,9749,1908,-4376,-5171,-1818,-4665,4474,1308,9268,7499,-2667,-5040,1239,2716,-566,5002,-2195,8211,8473,-3867,7997,-6603,-4480,-6429,3916,99,-5536,-9609,5015,-5949,-5168,8587,6165,-5807,-9659,7451,-2381,-5475,-7510,5752,-3916,5188,4848,4273,-284,7834,6564,6366,4367,-8016,-4954,-8962,5463,6908,-7423,-1173,6939,8681,9647,-7172,5178,-2162,3570,-9055,5217,-2312,7514,4524,-9948,707,-506,5117,-2302,4668,-1458,-8060,-8769,2674,-8489,759,3836,-4478,-1855,7800,-1967,522,5581,-1446,1380,4558,962,-9069,-8973,1114,-733,4747,1569,1930,-7233,1780,2438,3682,809,317,4300,-3407,-3509,-4797,2310,-5664,-6585,-877,-3121,-3245,-9820,-8162,-3703,-6609,3561,3535,-8579,-4570,-9557,-1309,-4670,-2977,9509,-2245,8224,7042,2646,-3487,-4566,8529,5509,-7336,7180,331,4166,-3013,2224,6160,-5133,-2909,922,7162,-9671,7611,1530,960,-6821,-501,-3294,8381,-7696,-2407,2201,-3723,-4957,-6005,-7418,-3017,3003,-9066,-2648,-2263,-4676,-719,2377,-5276,4098,3990,1938,9883,-5212,-1815,8363,2996,-2923,-7186,-3328,-9093,5462,-2608,7630,-9216,1197,-153,3939,-7190,5090,-8232,9036,-8665,7121,-2766,4046,-611,6174,-8704,-5305,3591,-6299,3625,9323,-2024,-2394,9920,-954,-2967,-6653,-4596,-3374,-466,2540,8125,6529,770,5513,4671,-7173,4749,-2263,4536,6512,-2353,-6734,-8174,-3400,8357,7952,4842,9709,3974,9399,3115,5438,7723,-5714,4191,5655,9753,130,-1251,-4904,7194,-1114,-2236,8441,3954,-3607,1782,576,6601,8801,-9934,-1097,-1020,-6137,5072,-4234,2537,3347,-8426,9679,-7011,585,-8773,-6838,8184,413,-5817,-449,-4779,-9613,-1991,-7703,4607,2399,3045,5264,-6053,-274,-9128,-8933,-8830,-6786,1263,1094,-3932,6246,-9558,-4099,-4500,-5937,1299,4514,-7492,-9346,5181,7007,1880,3070,-577,-4776,4451,803,5665,-8573,-6257,-2221,1568,7758,8210,-1603,8013,-3938,6034,413,-106,1327,6030,-4855,-2509,-6695,7504,4119,-966,782,5770,-1382,2371,-4347,-4564,-2747,4728,9987,-6593,-7919,1280,6783,1207,6314,-3159,3177,2873,-8884,2248,-1340,6740,6639,9987,4667,-5233,-1466,2866,-9022,-8478,1273,7730,-4913,-9588,1105,4754,-4249,9168,-5589,231,5619,9911,-7445,-6819,8859,4271,-5133,211,-2928,3699,5785,687,-2914,7513,-6192,6828,3052,4052,9201,-6342,9774,2317,-7314,-4102,-28,-2816,-8525,6165,4628,7965,-654,6615,-8273,-7836,-5678,-2863,6628,6693,-4879,3607,9413,6926,-3282,-7829,8933,2551,-7389,-4972,-9754,-1695,-1445,1922,431,-5411,7250,-9001,327,4665,9318,-2286,-2954,9352,-6706,-5224,-3504,-5478,5350,6825,-4033,-202,-9556,1713,3916,4991,5913,8673,-9008,2060,-3735,5833,3638,3138,-8504,1534,-8866,3205,-5387,-4500,3471,-1634,9437,1340,-5833,-8721,6421,-4222,6348,-311,-4861,-8101,5340,8253,-6309,-6242,-4469,7164,4084,-3665,2366,4094,3252,-1278,4143,3381,2061,4575,-4837,1053,8124,3765,4681,4152,5654,4720,-7628,9622,-506,-5964,-5979,4799,-332,-6479,-7853,-5950,-5917,-5188,-4195,-7700,7636,-2664,2880,4621,-4196,-7367,4243,-6192,-7858,5323,-3055,-7947,7332,-7096,-864,-4474,6139,-1205,-7613,2319,3733,-2871,3947,-9663,-8955,-6169,1292,7468,5099,-3575,7594,-2835,1659,2932,-6103,262,7985,1654,3403,7754,-1757,-6979,-5791,3751,2580,4793,9797,3158,198,-8716,-2281,-4801,6168,1561,2939,-4336,-4043,604,-7168,4522,8978,-9246,-5587,-5814,4791,-9679,1306,-2826,796,-3151,-8871,-2387,5005,7998,831,-952,-6433,9168,-3636,1099,-8411,-2077,6006,1134,-2675,-7238,1222,-9893,3736,622,-1973,-3345,819,-1283,-8695,-8943,-3964,8689,-5123,1277,1446,6819,8672,-1093,9820,592,820,3176,1115,-6649,5893,-477,-679,-9522,-6,718,-5684,-933,1618,783,6163,3714,5209,-3730,-5521,5357,8866,1913,5498,-3111,1474,1411,-3179,-6057,3323,8697,-5722,4116,-1466,2785,5521,-6151,2228,-1891,7030,-8450,-450,-2069,4338,7727,2638,322,-1224,7752,9533,-6139,5238,7262,5299,8173,8561,3722,1172,-387,7655,-4296,9190,1288,3135,-7644,-8641,5292,-4856,-2747,6313,-6086,-9680,-6762,-3760,4136,-9514,-5632,6219,-7248,3785,6825,-7339,-1574,6031,-4303,-6358,626,-3771,-6524,9315,4039,9415,-3107,-1192,-5298,1070,-5492,-3104,7261,1048,-9534,4151,-3186,1559,771,-3782,-9011,2157,4314,5460,9512,7808,-7629,2856,-5569,1441,1355,-9966,-994,-523,1436,3052,-5230,3449,9245,-9977,5912,-5622,5931,6915,-7005,-7168,7789,374,1315,2311,2408,9639,8971,8200,-7133,4258,-3269,5548,-7064,-3021,-4976,-397,-9714,-8123,4781,-6917,-7752,7187,-5211,1661,-386,-1829,682,-1069,-3612,-6593,6758,9543,-7691,-3611,9321,-2542,-1720,8510,-4407,-7274,1176,4301,2627,-8584,546,-5450,4253,9638,-8637,1150,1296,-4590,-3319,-4009,3252,1218,-9836,8223,652,-1443,4578,-8749,-3542,-5095,-5770,-1472,742,-2861,9043,-4439,9145,9540,-3545,-5779,8733,-9267,-4474,-7026,-1384,-5171,-6924,7752,9457,8020,8216,8962,534,9616,-2648,5542,6827,4926,3670,-4883,-5779,-3154,7854,5542,1281,6001,-8338,-201,90,6397,8069,-1179,8146,4709,-446,-2584,-1579,-6108,9027,-8684,8656,6891,-8058,-8001,9322,-20,4919,3829,627,7786,5468,-3953,9498,9434,-6387,9308,8250,3395,-7892,-1480,-8591,5090,-830,1780,-4468,-4652,833,-7481,5436,-1613,4128,-8922,-2596,1763,-9209,813,7517,9333,-321,-9650,-198,5825,5834,715,3826,-8957,1020,8177,5376,1739,2313,-1639,-8963,-5003,-9251,-3022,144,-947,6292,3414,-7649,-2695,-6832,-892,-1157,-8792,6267,-1874,1297,316,497,-2081,3552,1833,9682,4353,3049,-8205,-7722,1795,7594,-7320,5660,340,1890,-2857,8259,-2605,-5277,-1409,-4866,-6705,8296,9164,-4048,8221,-5173,9612,-4662,-6510,-548,7267,7792,-5114,2916,4942,-7912,358,3173,3858,-1643,5690,6174,-6099,956,-275,-4346,5854,-7025,-9195,5292,5820,-4378,-9695,7651,4755,5345,-2768,4716,8434,-3552,-9995,5363,800,-2756,-4173,-7192,-676,6989,-9901,5814,5427,604,-1093,7226,-3998,-3908,7923,4009,817,-7988,2316,3914,607,-9310,3353,2793,272,-9221,6686,-8768,4351,7285,4459,6403,1667,4042,-2084,9016,-7700,-3781,77,-2541,-1345,-3693,7538,7625,2666,-4977,32,-7586,-5095,-5739,-8422,-9299,5041,-7710,6555,3375,7707,202,-8575,-413,-1165,-7924,-6409,-4628,1239,1134,-548,-2573,2312,793,-8035,-9943,-9331,-8373,187,-8435,-4879,8660,-2949,-1398,-1816,-1777,-7330,50,-6734,-7826,2601,-8726,-1431,-2658,-2210,-6121,8627,-429,3542,8993,-3835,-8008,-6451,-7271,6454,-930,-3470,6448,-8377,3004,1393,5048,-6660,9083,9187,-7692,-6140,2418,6593,5170,-2166,-4130,8172,-2443,-7004,-8864,2084,-5227,-4591,-296,-5935,2987,-6885,-3022,4203,-4017,-4644,-1281,2723,7567,-4360,-6905,-9545,-4191,6790,-6826,9363,246,-5666,-964,-9873,-4789,-8921,8495,6245,2894,8482,-3476,8480,-2899,-6217,-1940,-539,-6388,-748,-9588,3114,5942,5265,-7548,179,2482,-3592,2633,-4603,3178,9731,-9346,-5798,-4388,5710,-280,-3346,1248,-6124,-488,6816,-9395,-8986,8185,-4212,9130,-2312,8,-7325,-3297,1614,6488,-24,-8612,-1693,6135,-8460,4566,-4877,1093,-533,684,-3058,-6264,3128,-8586,9574,-5574,-4345,-1884,1173,-8802,-6350,5345,-6446,-4574,9277,8128,6158,-7398,-9382,-954,-2597,-8270,-7026,-2727,-9934,7841,9759,4592,8744,5300,-7799,5809,5880,-2629,6604,9506,-136,-3649,6362,2729,-292,-1607,-3377,-838,-7340,2001,4802,9629,9968,-5007,-1863,1752,-7822,924,8669,487,-9824,-6959,-9601,-6068,4401,-626,-8676,-5539,-5407,4609,-8984,-5033,-5706,6828,8455,8216,-8328,-75,5102,652,-4433,4374,3864,8474,1387,552,8115,-9277,-191,-7372,-5403,4400,9622,-2392,-5474,-5991,-9631,4876,-9036,-3627,-3925,9551,7761,-7672,3458,1462,-2765,-9821,-5154,4294,1048,-5301,7737,-3270,6496,9461,-6510,-6586,-3825,-4423,3034,-6818,5499,6053,9602,713,5460,9438,6806,6211,-5354,-9975,2843,6795,5683,2391,-8594,2186,-7313,7178,5898,-3326,8214,-5836,2395,-1993,1285,-919,-1949,5823,-545,-1562,6485,-7401,-6560,-7251,5918,-8839,7903,2036,-6973,-3171,9812,4028,-7790,5278,-9384,-116,3222,-9019,-3740,8630,1385,-1895,-7835,-3377,-8619,8320,1587,-3679,6127,8545,6355,5192,-5499,-8906,1346,-1145,6277,-5930,-3388,5262,-6207,-5252,-6730,-7869,-6785,9839,-7684,-7456,-4650,-8527,-3737,-4908,-9644,-9912,1795,5376,-7503,7893,-7449,-7587,-9778,-2626,-6087,7882,-6410,-2882,9272,-8219,-3158,-329,-9964,2040,4579,7548,-3138,4141,9255,-5397,9289,5952,6573,-6230,-1434,4868,-3995,-6967,5618,7533,-5576,6187,1564,9991,8501,6598,-7758,5718,-4145,-2981,719,1874,-3132,-6889,2182,3989,6295,6104,-4420,-7452,-9245,9463,-927,-6149,-2190,3098,9161,2125,6217,555,5850,5175,-9288,-5380,-5335,-1903,-6105,3028,-6984,-7733,-3437,-4472,5422,9248,5655,-9594,7060,-5286,6412,219,-3489,9597,-2341,-2356,7382,-5196,-5051,5520,-6610,-6371,-4751,-8843,-1323,-4632,-5166,-3814,667,-4618,-3952,-23,8679,9894,196,-7512,-9345,1668,3390,5347,8552,-3606,-6454,-8944,-8535,579,-2672,-9320,-8244,330,4296,-2533,2545,6299,-2809,-1429,4859,-1995,5675,-3945,-418,5513,-9211,-6058,3717,7311,2291,-7550,6887,5373,3178,-3900,9289,1559,8845,-1065,-3209,7610,-1552,-2540,-6804,-487,7361,-9591,3369,-8851,-179,4201,-6941,-4543,-9914,-9386,6551,6864,7601,3579,507,7969,-7420,-1182,-8693,8679,185,6979,-4185,8932,8862,3090,4252,5024,-1320,-2547,1070,-4056,-4602,-5644,-301,2374,9894,1905,-9208,9435,-4082,-8861,-7330,6408,-3554,1217,218,-2013,4610,9917,5612,-1593,5839,-1998,-7601,-4981,1802,-1234,-1778,3423,145,5181,2788,4752,619,-8076,6868,1206,-7025,6519,7905,-4628,5699,6958,6616,-7813,-5452,254,220,5840,-2527,5971,-6000,1520,-8740,-5301,-3863,-1199,7012,-5722,4183,-3828,2388,254,7062,-8565,1326,9467,-3195,795,-2472,-1325,862,-1677,-9811,-4463,-6673,-4224,3966,-9900,7384,-9629,4236,5432,5860,-5752,5119,-9781,1472,-7633,-2894,7910,4875,-4930,-1515,-8819,-3289,8661,-5161,-877,1119,3845,1180,-2124,7909,2637,1428,1304,-6450,-1397,1125,9530,9327,3825,7850,-150,7835,683,3656,4318,-2294,-4479,-9253,78,-5950,-5618,-5421,1458,-8046,-6172,-2837,-5421,9953,-9249,1982,-154,9455,4190,1471,929,-5528,-6831,-2438,-7138,683,4906,-6920,-4285,-6109,-7380,-2492,8033,-8689,3219,3576,5700,1117,8972,848,7845,5923,9449,-3507,-6893,154,-289,-7805,1590,2421,3522,-5668,-8219,-8087,-7610,-3303,2747,6060,208,-1645,-505,7858,-359,69,-3670,-2949,-2708,-5321,-1877,-8191,6404,-9572,2368,4057,6953,-1266,-7940,3973,4649,-1270,-2151,1360,1712,-2720,-6548,-8364,-2107,9400,-8241,-9814,-5826,-2547,9092,-2367,3619,9082,1032,-1693,5516,-9955,3868,9685,-3754,-268,197,-5523,-8844,-6509,-5395,-3392,1681,-2362,9857,-2399,3040,-3913,-4446,-9575,-408,9472,9419,-8351,9471,-1440,-1434,8492,-1108,2764,9711,-4300,5456,6892,9373,-6666,-5431,5913,871,7986,7828,829,9262,-1718,-8153,4591,-5132,-8368,-4494,-6425,6495,7574,-3367,-7308,-9867,1316,4830,9656,4724,-9874,7774,-7718,-7667,4826,9730,-8588,-9193,569,5474,5776,-2863,3615,1851,-2800,-4021,-8273,3312,-444,5330,-4326,3064,-9621,5186,-5171,-9584,5943,5879,-419,6620,3920,500,-7637,5881,-4604,-4669,-689,-4461,-8174,8729,-1695,-6684,-4911,-5891,-3642,-7960,8575,7611,-9441,2560,-5629,-1741,-1770,-7252,-6290,6737,969,4144,-8981,5066,461,-9091,-3868,9436,2743,1696,-9262,237,4908,-3833,-2307,-7058,-7598,-6420,-3449,-2245,-4100,9207,-5077,1994,1423,-7078,6221,-6885,2058,31,8974,5720,-9283,-6348,-6200,6360,3043,-9221,-1578,-4890,9583,-6067,-7000,-8868,1297,-1609,5582,-5001,6210,2890,227,1102,-9115,-3523,6589,-1937,5785,9627,-8576,-8283,640,-7730,564,-2246,7893,3097,-3025,-8068,-6761,-7418,575,9016,-2518,6721,-6114,4696,-5526,-8676,4445,-4315,-7834,-1014,8343,2164,8267,430,7992,-3894,-4371,-6722,-187,-8111,5071,-8511,7640,-47,-7110,-8844,-4949,-5339,1778,-1501,7334,2653,-4048,-3118,-3951,4920,-7694,-5192,-40,2026,9193,952,-5290,8792,-7455,-4552,-5197,-28,1662,-6261,-6619,5163,9813,-5740,7232,-1979,-7208,-6903,-7007,-9052,-1708,-9259,-1353,6238,3038,3254,-1424,5440,-9831,2769,4358,-6907,-5275,4618,-1713,6956,1459,-6587,317,-5639,9963,-7512,-8553,-6260,986,-5591,9366,8240,5212,-7248,7438,9786,3577,-4471,6103,-8094,-4634,-3154,-8483,-2875,2429,8699,-2779,-6732,-3198,3580,399,-9592,-2726,1095,5147,-3763,2408,-2521,4668,1648,-7026,3490,8113,8307,5245,438,-8437,-8326,-7413,117,-2943,7507,7626,-6478,-429,5792,26,2736,1189,152,-7536,-5679,-286,-7821,-593,-2037,1186,9965,6053,-6396,8760,6311,-4012,-7500,-5995,-3113,-2650,696,1875,868,-7711,-7617,4133,-8210,-2898,5614,-4803,-4415,-6529,2350,-5447,-7171,3315,-8986,9402,2851,1246,5863,-957,1361,3186,-7585,9386,8449,-8451,-4700,-2706,-4417,2087,3090,-3759,2917,7175,6669,2794,5219,-2110,166,9763,9574,-418,5726,4440,2733,360,5665,709,1650,-3381,-3044,9584,-4772,34,6231,-8993,-888,5950,1890,2805,-1026,-4116,117,-4292,5319,2043,8382,-8965,9719,4920,-8557,3576,1735,1374,-6456,3301,-3402,-6642,-2923,9546,1421,5458,-9126,-1076,-8034,6963,8732,9272,-7593,5556,-2306,-6298,1593,6019,3357,-1633,-5981,8163,6852,6383,-7959,9871,-4236,3636,-5044,2035,4403,2283,8974,9207,9099,-3843,-8049,-6482,7644,7322,-9653,3588,2903,-3672,40,-322,-4582,-7213,7811,-9568,-5369,-514,-4460,5115,-2258,-8616,-7837,6305,-884,-3914,-7624,-763,1966,-9029,-2412,-8210,-465,2966,6089,7366,-8310,-4166,9379,1329,-4674,-1229,-3502,-8421,-209,62,5072,-4143,-5643,9138,3512,6253,8957,-3591,-9392,7978,8047,367,6038,2950,-1508,7215,-9942,7195,-3544,-4606,-3613,-4730,8201,2483,-6184,1986,9561,4943,3246,6189,-5354,-3519,-4099,4714,8187,-9859,-2815,2394,9997,7634,-3094,-6621,6469,-8062,8829,-7973,8316,5169,-914,-1468,8042,6436,9874,-8656,-9876,8041,-4073,-4948,1694,425,-1297,7782,3985,-3113,-6258,5023,-1308,1138,-6286,-2215,711,-1112,9056,6738,3339,-3109,1751,-2189,-7739,-2744,-7910,-8795,-7781,2600,9787,-8393,4946,7944,-5727,-5076,-9774,-5362,489,-2871,3214,-9857,6523,-7229,-9462,5959,-6006,3567,-7863,-5282,-5358,-7004,-1562,4078,-4775,-6296,-5095,-2901,7537,9000,5527,5392,-1637,-6991,5785,-1641,-5107,4166,-4057,6761,7119,-649,-2551,-6622,5223,-4465,-1776,9259,-4853,3094,7989,-3806,3709,-9873,4414,7111,1317,-7863,3035,-7468,8504,2089,-6695,1194,3712,-5689,6771,2608,-4169,1028,3193,-4679,1405,4228,-1612,7784,8805,-3420,6954,-9212,-9025,-4024,4569,-8072,-5298,-8345,-2079,-2004,-1264,7112,-9436,2325,-3067,-341,875,-4968,9753,-1512,3242,4006,-6040,-483,2374,-3977,-5327,6279,6197,-1407,-1532,-5924,7188,2172,7530,-6342,430,6340,-9834,-7362,773,5606,-7588,7529,-9465,-9457,-4211,-4980,-6499,7335,-7505,-8205,-6891,5649,-223,93,-3202,6028,-4137,7207,-7408,-9301,-1020,-8697,-4927,-3994,2461,9135,8795,-8050,5544,-9388,9182,-2184,-5331,-8059,-786,-7610,4947,5581,3297,-2270,-5314,363,-6936,-3870,6245,-7629,8245,-6171,1082,1614,-1113,-5655,7821,-2940,-6422,7527,-6536,-516,5644,-1225,-4864,-561,-9053,7839,-7410,-8572,-3515,9635,5718,1083,-5594,-3633,9985,8124,2654,6799,854,3551,-2726,2223,669,-5132,8558,5350,417,9405,3481,5558,116,5513,-3821,9214,-1713,1720,-9528,1376,-5423,1193,-3756,-2188,5161,1825,-1031,726,-3741,8108,-6956,-3542,9345,-2341,-6339,-9891,-1149,2249,4326,3327,-7753,-6948,-2069,3529,-2398,9775,-9849,4428,-2982,-8235,-7318,8122,6050,1221,-8628,-1457,-7470,-1246,-6196,-5316,-2135,7207,5112,4406,3334,-9037,-5579,9416,5510,-862,-8855,6917,-3435,4416,-7938,7381,8536,9979,9457,8214,4571,-8965,656,-6369,-1759,-9418,-5158,1826,4007,8587,6212,7309,5722,-4311,-6408,-5002,-6748,3270,-1502,6207,1747,-3057,893,965,-9702,-7334,3103,-9549,-6255,7729,1495,-2879,-6240,-9326,-8641,4137,5226,7839,7153,-2678,-8820,-9728,-9191,-2736,-3787,-6319,4351,1017,-5089,5093,-4522,1962,5935,-6354,-1426,4922,-9977,-8578,6579,7552,916,-5081,2889,-7309,-2954,3122,7885,2443,-4266,5603,-4662,-2649,-6422,6670,7337,2461,2170,-4583,-6475,-9551,-1406,-6406,6160,-2424,-654,-4408,2768,5577,-2706,9980,-8379,32,75,4061,-759,3563,1666,1839,4716,-4733,-9694,-9722,-8352,-9337,5969,1284,-6305,-5423,3456,154,6422,-6831,-5397,-7544,-7349,-5430,6543,-8706,3576,4212,7773,-7184,-2437,3012,-6179,2013,4041,699,-8670,-9268,-3070,5149,-6128,-9264,-493,3128,7369,-915,-2011,-2076,-217,-8245,9557,3089,-5230,9717,5547,-3153,-1361,1437,3479,3329,5271,4156,-4602,-1492,2423,756,-4538,1035,5548,-2294,-9499,8731,1535,9080,-468,8416,7642,5208,7096,3025,-6568,-8776,419,4567,2260,5721,2759,2188,6826,-9094,3905,8415,6986,9932,-9583,-6235,2757,5073,-6421,-2086,-2366,6901,-380,-3794,-5837,7632,2538,-5015,9124,4472,-3881,1005,-847,-1792,-938,-6916,-8083,4353,-2181,3274,-624,1927,8515,7627,556,4876,3076,-9365,-7824,2956,-6076,-5228,-9487,-5692,-1339,9280,-3718,3627,2043,-7451,-7245,-1873,-7044,4738,-4971,-518,-4623,-4321,-6261,8608,7159,-6645,4565,-6661,-4223,-282,9659,-9583,-9288,-2463,-3243,-7546,5032,1531,7316,-1359,8459,-6559,1557,-3271,-9330,5949,2665,6610,7780,5592,-2623,-5454,-4345,-1137,-184,4050,3964,1335,176,-9609,6061,8862,-5485,-1789,8079,6073,-7177,5137,-4042,5052,-8881,-1659,-9470,-5446,475,-753,-7883,2933,-325,7971,-2138,8922,3890,-3915,-9017,-3505,9501,802,5978,6319,691,5183,9766,-2496,4922,4655,4785,-7471,5698,1513,-4867,-4963,-9761,-6544,-3447,8026,-8799,-3976,9034,9235,5607,3005,-1122,-1112,8490,-6762,2973,2588,4899,7460,647,2130,-5227,1502,2012,-1137,-5485,3309,-3604,4008,9811,4884,7463,-840,-8087,-580,5059,-9618,-9051,-1368,2620,-3593,744,2561,-7704,-7393,8778,1150,-7655,-2111,-3065,9134,-1800,5120,6231,9680,-1320,2024,1098,2329,4779,-2895,4243,-6232,-6591,-5877,4275,-6895,4334,1199,-1596,6034,8571,-1046,394,-9088,912,1411,-2604,-6922,-6876,4763,-331,-444,6142,-2077,8426,9968,5617,-7917,7713,2193,-9084,670,1003,9463,-8797,8481,-1539,-8817,-6685,-5526,4556,8115,3378,6195,-9427,8407,5848,-5241,-213,6189,4161,2340,4772,-6779,9272,9927,4994,9793,-2682,-4262,8202,3564,8692,-5007,-5290,-483,-3733,-5598,-498,3560,-4313,-4308,-3052,-7853,2017,6943,5395,4893,-5747,-7985,613,5845,-5980,-215,-8326,-4329,-4208,-7205,-1926,580,-9819,3292,-8912,-280,7929,-59,8754,5274,6259,-997,4866,-9545,-9139,-7994,7442,7068,-1003,7021,4916,8925,-9344,-8593,8291,8841,-9780,9775,-1449,-8225,-7594,9478,3468,9396,-4639,-8108,8957,-6409,2729,4320,8872,8390,2618,-3830,-545,-3177,-6789,7220,7694,-5239,-704,5842,-6449,-698,-2116,1036,5463,-2023,3129,-2362,-1194,2722,8221,3348,5754,5852,7228,4460,-3790,-1497,2965,-2132,3492,638,443,-6132,2765,443,-3569,1859,-5075,7665,-1606,-6747,372,3153,-3462,-4254,-9168,1043,5588,-9775,4838,-363,-3400,-2818,9145,-6658,961,-5616,-2069,9081,723,-9006,659,-6953,-3473,4633,-4286,4356,3738,4224,1509,-5043,8671,3286,5120,8295,-5072,7196,-7772,-7184,-3901,-2211,9230,-6398,-6513,-1509,-3985,403,7376,4888,-8254,1953,5542,6442,4033,-6757,-5073,2871,5483,-7661,-3823,-5058,2981,4042,7061,-8966,2573,7163,-4910,-7732,-8369,-5453,-9978,4797,5525,-9518,9649,7224,-2488,3158,3328,-9208,-4823,9959,-8180,8543,-6929,864,2007,-5143,1547,4332,-3490,2744,159,-9358,-191,-3433,1470,581,-5843,-5921,-3146,1344,2981,3979,4161,-1998,6070,-9582,-7009,-3312,1926,-2031,-7453,2145,9463,-8814,8015,-2505,9094,-911,-8537,8048,3020,-2716,-7906,-2476,-2981,-102,7828,2376,-2662,-4447,9795,-8899,-1448,-4301,-8146,-5504,5609,-5974,-3098,-6303,-1325,3059,1003,9714,-7339,-3031,-830,-1000,7583,6026,-5886,652,5411,8102,2320,-9917,2332,9151,-7278,684,-1852,7821,6184,4297,963,-2093,1760,6377,-7993,-3116,-6360,3052,-9727,2288,-7349,-5019,-9828,-3453,-4798,-5632,2374,-3659,-8667,7721,6768,7635,8703,-5304,-1873,-4036,-8767,-3061,-7221,-8114,-8365,1681,2254,540,-9183,2325,5608,-3933,-3864,5386,4950,6023,-766,8548,-3540,9145,1924,-2745,-3296,-6665,9036,565,-538,-8277,-7558,828,9975,-5011,-4789,4765,-7635,-8383,4002,-5135,3617,-6600,8419,2900,3253,6156,-5442,-8923,2995,8823,-5232,2861,197,-6947,3170,-788,1465,2825,-1574,-7611,4199,-2724,5870,-9940,-152,292,-5876,-2354,-2442,-4027,5869,3987,-488,-7,3567,2307,-4354,-1266,8794,3987,9964,-3461,-8399,6873,5196,3927,-7103,-5895,7821,875,3628,897,7682,-4851,-7996,2067,-1409,699,-5886,541,-4365,-8057,4287,8851,-3187,7442,6098,358,7397,-7751,-2459,-5720,-4141,-4077,-9792,-7871,1262,9379,6030,-3549,7285,1239,-8575,-6934,1953,6301,-8067,-2880,-6506,-8230,-7942,5451,-746,9560,9327,-6539,-6131,3034,8807,4549,-4678,-6831,4143,3408,6708,4325,-8605,6271,-5152,5814,9586,-5955,-8734,-2819,1763,1340,-4675,1240,8609,-5285,-500,1819,-476,6519,7265,-9265,4232,-5931,-6466,9822,-7331,3120,1925,9017,2237,-4550,6286,647,-6408,-4225,6808,-2158,-9198,-2323,-5656,-2257,231,970,9170,3019,864,-512,9142,-1209,-3139,5849,-4189,7473,2607,-9435,1036,2305,-7286,3883,-3575,9105,3445,-9663,-4945,7585,-4747,-6189,-7944,-9860,-4301,299,-4720,571,9388,6104,6171,5948,363,-7269,9089,-7719,9378,-9560,3438,-7733,-9584,8894,-489,-2539,1760,-5438,-7447,-2767,2380,-5361,-2257,-617,-6416,-1914,807,2668,-8846,-132,-3154,2582,2178,743,-6752,-8791,3654,4304,-2128,8063,4401,4265,9392,6501,-1082,5917,-3115,-6512,-6819,2654,2180,-524,-5853,-9294,2486,-817,277,4060,-5630,1121,1018,-7992,3532,9522,2151,1198,5086,-7960,-9203,-7139,928,9693,-6757,7407,8840,-385,6390,3387,-5895,2475,4928,3139,7186,5663,-7922,-1930,-4795,-4830,-7740,-3277,-1490,5606,-3253,-963,-3251,4708,-1744,-8017,-4606,-7456,-2854,-3126,6324,707,-3024,6919,-9724,3421,-2442,-9008,9176,5841,5494,-7629,-6249,-8984,2774,2129,9133,-5053,-6651,8786,5163,2632,-8937,-9558,-1454,4934,6497,-1846,-685,-9211,7294,4030,-2638,901,551,6827,-1688,-3030,-7771,2286,5534,988,-5258,3527,5125,7839,-6189,-6384,3044,-4602,2224,-2999,-1989,4568,-9150,31,535,5125,6818,9644,-3672,6058,8200,4844,8611,752,5503,1556,3610,-8275,-6108,-5731,-4542,8179,-7906,-6748,-881,-7802,39,-1095,9129,7755,7934,-5672,9276,-8236,-8852,1714,-1744,-6924,-2632,5457,-4487,-8069,4095,1728,2208,2626,9021,-504,-8122,8029,-4823,350,-1533,-8517,8562,-3295,-2096,1905,-6602,-2240,9574,-696,-2961,6481,3068,-1939,-4051,-3123,-7535,-9178,-8468,-6152,2860,4647,461,-2778,-4274,3284,-4800,3711,35,-7382,-1508,-442,-8948,9404,429,-1201,3960,7572,-5766,6977,7414,4521,4405,4630,-5975,-6337,-1416,-2886,4528,-8064,-9984,6890,9360,-6058,-3586,3409,-9017,-3778,922,-6271,1010,7437,9992,-8267,4972,-7380,-5493,733,-1556,344,7578,-9833,4127,204,-1183,-4153,4526,8107,5661,5705,3598,-2247,9177,5483,9112,-3796,-6446,-7891,6086,-2632,-8350,4213,3992,-6408,-6636,-6343,-7573,-3730,-6890,-9903,4951,8346,-77,6222,7826,-2570,3260,-2170,-8423,8888,2934,1281,-201,-7472,600,1051,-4803,-2529,-3174,-8446,-7537,1822,-2826,-7022,5053,-5399,4972,-4336,6210,-3847,-2186,7766,-8766,8344,5834,9198,1776,362,-482,-610,-9790,-8733,2697,2010,-5914,-7121,-5198,-611,-8313,9770,-5364,7736,-6495,3255,-4296,-4796,-9157,-960,-3546,9731,8889,-8009,7626,1744,3538,-5434,3382,3820,5165,-2086,1581,-4787,-5216,-9889,-5739,3206,9534,-7642,-611,-9441,7956,9780,3771,-7724,1805,9871,4931,306,4880,6798,-2883,-8896,-6640,3873,-539,7993,-2132,2802,-58,-8882,-6935,-7688,-4506,4716,1796,-4660,-346,-1909,8135,5581,4389,7877,571,4518,1076,7216,-1049,-1951,6035,4018,-2544,5909,6989,-6919,254,-8631,5044,-9768,7055,1867,-9640,-1687,-4138,-6546,646,1163,628,9313,4869,9368,-6827,-5801,-4096,9124,5882,-1179,-5972,-301,-996,-6752,-3483,-2441,3243,2168,-7336,-248,9468,-3236,7881,-1140,7851,-6550,-6327,-3338,5930,-7355,5953,9381,-1255,-841,25,-4372,-7494,-885,3959,-8760,2155,3145,6791,-4139,4093,-1130,5585,-5549,-6575,260,8208,-9774,6002,4044,5908,-9299,-2970,2595,1290,-238,-3382,1512,5126,9264,5954,721,2144,-7424,-648,-3688,-9270,861,-1359,-2901,-4104,7312,-1887,5395,-6061,3726,-9810,-664,2741,8305,-739,-3289,543,-8594,1943,6808,2947,-2011,3127,-8017,-6771,2828,-2359,1802,5929,7412,788,-6295,-7664,7442,8989,-3588,-4245,7899,4703,-2207,4459,-7141,-5844,-6941,235,-9309,-8071,-6156,4603,-313,-5404,9553,-9941,-9716,4473,4448,707,4508,-7967,-6879,-9943,-9861,9358,4028,4057,2213,2359,6125,-5440,-2710,-4346,9011,-4089,8265,-3491,3628,-7689,8985,9191,-8565,2533,1548,-9653,5800,-6028,-7953,-5723,5862,7678,6897,-8370,-3786,6272,-3123,-4282,8567,6756,-3296,7105,-6707,8575,-2940,-8078,-5034,-521,-3441,4928,261,-9472,-7802,-235,-2857,-6016,5313,8406,8078,6810,765,-4522,2881,-9843,9811,-2435,2221,-2269,-3551,-1822,-3378,4514,-8952,4450,-1106,-9329,-2961,-9583,2353,-7280,-8452,-5450,5217,-9468,-4614,-5032,-7831,-3748,5609,-4830,357,-7106,5800,-1739,-297,4759,5322,4218,-2541,-7013,6689,-6710,3419,-7555,816,-3492,-4227,-1623,-3338,-5604,4396,-7869,3356,478,169,6853,-5272,-7168,7305,-2366,-7020,-2216,-7932,-8808,6079,4854,9767,3236,4509,6279,-7138,8371,1029,-1478,-7686,328,-4708,9361,2578,1511,8145,7481,4083,631,8262,-9524,1406,-789,-6627,7959,7350,1244,7305,-7324,2043,-242,6171,1601,5450,-9844,4189,-9948,-8860,890,-142,7404,4097,5538,2245,-9141,-3054,-1877,6780,-2704,-418,-9507,5238,9699,2822,-4977,-7583,-899,-6972,2602,5291,-8609,-8339,4376,-8584,823,3670,9150,5754,-9341,-3731,-5634,-389,6798,9034,-9739,3348,5385,-1440,9244,8447,7082,103,-4526,-5412,338,6515,7838,1748,-6223,-7603,-4174,1832,-1814,-3360,-1252,-9678,7698,-5424,-4652,2755,4784,-1561,-4315,-6920,-4186,5568,-7338,2662,9573,7863,1113,-8294,-8347,5408,9109,-977,-1201,-3674,-3939,-555,-2594,7572,8423,-7523,738,-9998,-515,-2577,481,-443,2000,7268,-6230,-6862,7944,-3326,2785,529,4410,2577,5430,-3343,1697,-1048,-5297,7872,1201,-7243,-2825,3687,9428,742,1576,-501,6953,932,7524,4123,7416,8092,3121,6771,-6998,-5395,8495,-4394,8905,-341,3527,-110,-3320,3751,265,-6043,8835,8245,1203,-9779,-3998,-5383,7593,-112,1996,-8069,6340,3022,-8922,9581,-1550,4286,2236,918,-5786,1638,7158,-1102,7796,2583,-1424,4094,-907,1318,-8725,-5443,3370,1781,4065,1367,-8841,3272,-5143,-1951,-3805,8113,232,6936,5074,1215,-5233,-827,-1045,-9864,-5338,6371,-5425,-2568,-3717,-3248,2347,2242,9311,5761,5092,-7995,1822,8239,8367,-320,2663,-3307,-7950,-9180,-5746,6657,3773,8599,-5960,-8816,398,-2962,-7674,-4321,1552,6560,9695,3021,7219,9421,-4160,-1757,-6886,-8208,9177,901,-5633,-2934,-684,2039,9649,-3617,4786,-4786,-305,-2985,8328,6649,-9778,-8524,-7311,-1300,-617,5828,-3551,-3367,-5039,-4332,5155,-2673,3282,-9073,-8371,3417,734,-5618,1903,3511,-7126,2705,-2873,735,-3293,-7181,9973,-3886,-3555,-9551,5344,4012,-379,9262,144,-2933,-2753,-9846,-3421,-5998,9793,4074,-7647,6757,1918,-1975,6428,9139,-6407,1528,9478,-4234,-1119,554,-9341,-9711,-3018,-3583,2722,2293,8150,-4573,4455,-2571,-1175,-1447,5150,8903,-7922,-2735,-2300,5841,2207,7466,8906,-1300,8774,-5817,7759,2174,-6859,6965,-4813,-5947,8233,5186,1139,-7809,4347,8721,-2413,2479,4279,-8541,-5119,-8298,2151,-1240,-6499,-7286,9220,934,-1829,2719,-8702,9508,-7920,-8623,1351,9013,-1408,1526,-8244,-4112,9030,-1500,2015,4736,9037,5751,-9515,-7090,-9182,6360,4116,-9298,2402,-6284,-3879,5008,3951,5968,-1064,1082,74,4533,-2469,8078,8063,4961,-4070,-8009,4438,-1698,-4460,-8297,6832,1151,-5654,-5379,3637,5805,-8605,-9300,-7750,-8377,-5065,-8763,-7447,9941,-1735,7650,6056,3397,-850,2352,5332,-915,-8555,-1965,2317,6762,7657,-3557,5961,-8346,5726,591,-9528,4529,-5918,-2618,1335,5427,-3704,-5089,-9536,-9242,-9033,-8486,-8521,-7222,3732,-9218,-9785,-2898,6264,7222,-5796,-1470,7677,-6616,6707,-2996,2774,-5396,9204,-6294,6317,2902,-9713,7135,-1828,164,-8401,-8685,9497,-957,3728,-8283,-7682,-1849,1229,-552,-9175,180,4551,-2281,3518,9063,2105,-7961,8749,-5250,-2433,8687,3634,-7396,2208,3573,-2572,5152,-1909,8172,9461,-8228,929,6687,6599,4855,4253,4111,4542,4745,-319,-7498,-2469,9057,-9805,-1843,6403,-6325,3497,8571,-2398,5359,-5157,3355,5671,7696,7165,3828,-406,5163,4987,1700,-5932,-4010,1694,-6290,-6033,420,3895,8766,-3820,-2052,3417,6732,4496,-5332,6604,-8289,-6258,9506,-7881,9925,-5237,6954,2020,-4452,-8974,1720,-1918,3260,-4942,-6850,-9494,-3540,-5837,1764,2319,-9207,5840,-831,346,-366,2940,4658,1902,6849,-5544,2760,2329,-8423,7895,-1062,-5863,9245,6295,8941,-7522,-3437,8957,-8145,8328,6399,2595,-6813,-3584,-7161,-2039,-592,-731,-490,9308,-2726,-2465,6995,-6201,-7281,6714,-9005,-4293,-2789,9104,-2381,-2191,-1306,4729,-6764,-4835,-3212,-4786,-2897,4700,-1395,3350,-5071,948,-3439,9003,8044,-7996,3440,-1850,-1240,-416,-4851,2418,-2492,-7497,6870,588,-2552,874,-3851,703,2073,-2811,-281,8704,5274,4372,-728,-9720,9672,1252,-1052,1658,5354,7669,9247,-1398,-486,-840,4221,-3563,4902,6787,377,2716,1206,7453,8534,-8789,6078,-5545,-3488,-3703,2855,3449,-1200,-7676,-1763,-8908,-5053,8170,9731,-2878,9482,5913,8776,4016,-8980,-6918,-4520,5046,1140,-5059,-4551,5865,3629,5896,-3584,-1872,-785,-6938,-6306,-169,-7667,7785,-7001,-5400,-2114,-5258,336,-4325,8013,7515,8612,-7587,4853,-8722,1895,1922,-5879,4630,-7121,-7836,400,45,9091,-1019,18,-2795,5407,3011,8588,-1389,2462,-4850,1130,-5970,-4441,160,-4977,3074,4369,-7888,-5786,-3733,8500,4741,-4564,8278,-8679,3604,3336,-5585,9077,8638,-8378,-2144,-7695,7243,5545,1132,1949,3282,7659,726,2139,1213,5252,-9879,5763,3681,7632,704,-3050,-2194,-3391,-1741,7299,6026,-3956,2231,-1967,-5839,-8536,-4632,5481,-2949,64,-5500,9101,4319,6742,3325,-6598,3256,-7694,-2494,818,-3182,3035,6804,614,-8537,9313,8321,-2774,7377,4193,7770,2492,3763,2308,4658,-4554,946,-2491,4227,9172,-312,9205,-9171,-3026,-4925,9439,3033,-1195,2147,7585,-8278,-5916,6188,-5558,7191,-5501,-561,9,3296,-8371,7238,9960,6082,-9496,-1836,1366,3196,-8427,7718,4301,899,-1492,-4263,3783,-4733,-5740,-8864,-7226,472,-5887,245,-5740,-1720,3661,6593,6397,-6373,-1442,7314,9069,3478,1659,5291,7539,96,3195,-4649,400,9880,-7190,-2839,-1153,-8833,-5085,-7197,-8258,1483,-8785,-4129,-665,-1764,-4255,2932,-7901,4694,2986,-8158,643,5636,-5874,-7791,-6308,-3091,7175,-3986,-301,-9021,6446,6237,25,5205,-2477,-7763,-9826,933,-3349,-212,7552,1595,-3440,-8137,-6742,6515,-5700,-1959,-4281,-9014,1573,9107,-8610,-3615,-6724,1958,351,-5587,4926,1980,-6851,-9945,-9123,6849,9110,-466,9013,6232,2782,-5932,9927,-4382,739,1720,8790,7763,-7956,-9673,9057,-8022,3055,-6021,7822,-2713,6241,-9656,3196,9820,-8187,1754,-7470,7670,7199,-2221,6068,3988,6015,-9995,7820,-1236,-5153,-6744,-6238,-7915,-5890,-300,-3167,-6626,-8965,-3107,-5166,-4417,-7298,3112,-8081,-7508,8759,2715,-3902,9125,7012,4645,-213,4372,6687,943,3515,5198,1200,-8180,9781,-6647,-2158,9142,8639,-5335,-5791,-3471,-3641,-9314,-3938,-1819,-5516,9308,3354,-3827,-6149,2508,6918,-1927,-6096,-3332,6270,19,1878,-7157,7454,-2827,-1174,-7159,-1312,-867,8822,2494,5829,-5924,6316,-9974,6429,7357,9531,-3502,-3887,6683,-5925,8965,-6164,-3595,-6561,7190,7488,-7540,-7221,-3361,3536,-2940,5958,1707,-6143,4022,3834,7387,-4329,-975,8993,-4530,-305,-6220,764,8278,3520,-2894,4235,-91,6131,-8354,4624,-8822,-6319,7922,-9299,40,-5638,-1399,-2006,3620,5156,1805,-9005,-7916,-9288,8777,-7373,-5633,-4816,-7171,8569,8683,7834,6636,-4228,1671,9871,-2324,4861,-9331,-661,-2403,-1237,2540,-5922,5760,3651,-9886,55,9550,8497,-1389,-1925,-1170,9396,4638,6006,-7555,2717,-8001,569,-7547,4981,7464,-1709,-7629,4977,-3495,6043,-3528,-5633,-6924,5918,-9659,-2112,-8621,-2488,-2257,2029,3836,6557,-1902,2325,-7757,-5299,-7332,7092,-9603,264,-8468,-7818,-6488,-9993,-5614,8791,4411,467,1942,-7942,2929,-841,-2288,3818,-1023,9628,5892,-6157,-493,9259,9463,6047,-7958,-8930,-8731,-1621,5070,7131,8219,-3568,9385,-27,536,4988,-2789,-1518,131,-1932,5599,-6110,4442,5197,-3556,5556,7185,-7822,-9777,-6195,9786,3065,-1518,-6945,5701,4887,4452,5200,-3160,-6263,-5068,-4116,-3268,-789,-7619,-808,-9243,3822,-8072,-3787,8806,9879,747,6956,-7793,-4224,9574,2634,-3053,-9488,-7121,9225,-6770,-5357,-403,8439,2276,-8276,1310,6670,-6159,6850,6083,9094,-3530,-5920,-2946,6107,3626,2878,-1,9738,6165,4862,8247,638,5042,1,-1862,8297,-7307,5597,9912,-1009,4160,4260,7867,3811,-5990,9473,-5521,6331,-9487,-6789,-4655,-4073,-7759,-2664,6395,-9619,2863,492,-2611,2675,-9987,-713,-2248,-4952,-3344,823,-1232,-8918,5330,-46,9895,-410,-2965,-359,9921,4542,3559,8483,451,4937,-6827,-6638,6145,-9257,6456,-9429,-9585,7679,4729,3199,5042,-1381,2030,467,-8352,9337,-1585,4482,5717,1393,-1385,6856,5656,8080,-4978,7272,621,-9646,-5994,9610,5095,-8133,-6510,3018,7781,1156,3273,4046,-7266,-2461,-5206,-6101,-415,-7351,-8482,1518,7813,4946,3635,-4640,-526,-9486,-298,-7913,-7007,3875,3374,3234,-5404,-8466,8704,8655,-3694,7055,-1821,1741,5189,-4870,7518,2312,-7692,7377,3852,-1009,5939,-9378,1132,-8592,-1841,8918,-690,1595,-163,-2653,-7575,4474,4086,-1958,3712,-7150,7523,-2801,-5726,-1602,4897,-9855,-5798,-1596,-5433,3843,-2820,-940,6903,5679,8170,9033,3628,-3526,7190,-6357,8801,9241,-4364,2299,-3714,8547,4642,-8705,7000,8670,-2632,-5494,-3688,-4047,9826,-4214,-9091,3724,-2110,-8150,9547,-854,2697,717,1786,5615,-7472,1097,-3474,-2443,6196,5988,1221,6739,-8939,4473,-8832,3057,2498,-1313,7998,-8858,7989,4346,-2671,8227,-8434,8167,-3111,-8110,-7597,-7504,-596,-415,524,-3711,231,-1411,4197,5081,5640,4752,-1072,6092,-2003,-1732,1985,241,-8584,-7943,-7238,3551,9766,9542,3866,8241,3300,-4866,-1815,3003,3084,1490,-2085,2288,7317,-3916,4336,-3086,-3218,3739,461,-1430,4670,-2871,3772,8512,3856,-8835,4068,8459,3305,-8427,6340,6750,4804,-2068,6844,-893,-8049,-540,-1777,-1191,-1217,4413,9110,4765,2715,-9587,-5814,-7142,7481,-8062,1689,1393,-8070,8142,-868,7707,-3511,1136,6307,-9421,-5159,-11,-9124,8324,-739,-6034,-1092,-3132,9734,-464,-9379,-3559,-6271,-484,-5894,8455,102,7844,3085,-8010,7912,-1919,-9204,8598,-4625,-4909,4732,-5907,5667,-1204,1472,5599,-6039,-60,6296,985,-6350,-7754,6294,-9202,792,5591,-9060,-7826,5160,1995,-1593,-6581,-303,-2848,-7010,1519,8711,7133,3290,-4998,-204,-1902,5497,-5743,-1083,2040,-7366,-3696,-8192,7379,6560,8105,6116,-7252,1304,-8455,2148,-7928,7629,-5448,-8806,-1652,3691,-1343,1821,654,7448,7239,-6962,-9937,3869,-9745,7125,4170,3671,1710,6155,9914,-8738,8230,9999,-86,-4573,-6495,-8917,8794,3368,6753,1423,8370,-1373,537,8807,9228,-718,-3187,-8241,-4843,-26,-5424,-5062,-8070,-9951,6945,2158,7430,2175,4263,9943,-8855,-7446,6012,-372,1716,-4204,-8270,5488,-5610,3089,-6239,7315,-484,-9725,291,-7013,-6770,5878,7497,4042,-5589,-1011,9081,2350,3610,7441,-5445,892,-371,6480,-9378,-2309,6081,-8238,-2927,3642,-3341,-968,3525,2494,-3181,6419,8898,-6229,-4594,9338,-7286,4762,3337,9566,-8759,-3444,569,-7242,-4727,4053,-8512,7762,1541,-6949,-6372,-5290,-1444,-5645,-8252,-7613,7848,7318,-5433,8942,-260,-291,-1179,-6678,-6787,-1012,-2372,2988,-2435,6759,-4,8863,8409,453,-8225,7529,-486,2110,-1166,-822,3496,2294,5986,8159,-570,-1414,7915,-6509,7222,8956,8302,4610,662,-51,-8310,6750,8118,8579,8089,7714,8001,8396,-2225,-9696,-6196,7623,-7331,-844,3456,370,-3539,-5801,-4408,4864,-290,-3276,4578,5766,7720,-7360,-3110,2684,-8058,-2033,6463,-1038,-3201,360,4154,133,4458,2097,-5736,8718,-9098,1951,-5346,-8767,-3498,-8509,7597,8804,-9825,4629,4564,5214,-8794,-9133,2911,-4355,-1134,3209,8618,8435,-3846,-5535,-2573,4149,6385,8418,5472,6262,6705,6851,8352,9388,-8656,9345,3235,-9796,-2148,7689,-1705,5916,-8473,-7257,9895,-2273,2753,526,-2903,-9590,-7148,4381,3602,5197,6755,1311,-8078,546,-8047,3934,-5222,-8967,-5567,-5878,-4899,9938,3762,8884,3743,5697,-6283,-2488,-1281,570,4294,1967,6256,-9330,-3241,1440,2648,-6746,6356,-2804,-9594,8029,-8283,-440,2472,-1574,-2363,-6649,499,9601,9475,-8281,3372,-9346,-5521,4578,-76,9199,9680,950,-3132,-6465,-6048,3569,3026,-3467,4826,-4923,-8087,9760,4865,6803,-8240,9488,1775,6814,-5642,-2596,3654,6661,658,5866,8072,-7521,2626,9204,661,7148,-172,-6530,9300,6221,-9438,-6502,7131,4119,-6478,8876,-6951,7004,7808,-424,-6515,-5686,-1566,1087,8418,3030,-6085,8942,5296,2057,1152,9378,5488,-1970,-5865,4051,-9796,1155,-4426,-3796,2846,3599,1371,9713,8428,7142,268,1416,-8439,5371,-634,5744,7345,-728,262,987,-398,-6297,-5271,-8809,-1317,2408,3291,1765,3337,-5576,-8873,3359,8832,9429,-3317,7444,-8378,5548,-2937,4413,3210,7519,-326,-5669,-2169,5300,-2057,4585,2285,-3892,1677,2607,630,-9609,-5069,-6170,4906,188,4881,-3102,-7388,8398,-3614,4063,3162,-2794,3041,9593,1350,2883,7848,-8372,-7594,8976,-1220,1530,4642,504,49,-3934,-5061,2687,9474,2466,-1834,6307,3706,-5448,6572,9482,-7548,7194,5366,-6276,6969,-5157,-8504,7297,5801,8948,2860,-1263,-6583,-5416,6661,3884,-7764,-9608,7167,-153,-9534,3588,1349,825,-5738,-716,-6106,-5202,-6450,1954,5012,6588,-321,-6899,1876,5043,9716,-3418,2883,-1953,-2803,9786,-2669,-6120,-6295,-4021,-284,8256,5434,1162,-693,4085,3899,-6078,-6523,-618,9244,8999,7971,-6926,-4909,8635,9761,-7407,9176,3971,2725,8111,-9554,-7032,4615,-6837,-5066,3090,1540,8828,-9337,-8084,5656,-39,-7573,-5152,3750,-5960,-6404,-6765,2163,9263,-2680,-2045,3775,-7676,-7269,-9184,2771,-3278,7694,7374,8350,1057,2842,-8733,-1743,-6528,-4996,-3559,7317,8757,-1871,-5485,-7664,-4427,-3500,-3218,4522,5905,1205,-6282,-9140,-3452,4195,-2850,-7222,-9101,2868,-6428,-2864,1984,1578,7769,7896,1408,7994,-2443,5803,2431,2857,1571,432,373,907,-4741,-3267,-5979,-8179,-9001,-4989,-6746,393,6820,-6041,-1538,-6213,4127,-668,-7205,9010,7200,97,-3756,5419,-8578,559,-3550,8559,73,1428,-5109,-4902,3193,2196,-5196,-8033,1474,-7122,-1916,7281,7155,-3464,-8085,-7908,-6771,-7019,-7536,-4519,2219,-2997,9350,8956,1390,-6133,-5340,8074,-2162,-1317,-2767,-4295,-440,553,-7222,2335,-6265,8557,-1570,641,4475,997,6177,4167,4865,-4698,2086,-3211,-9073,6479,1441,-5244,309,-4807,4342,-5302,9330,7408,8525,-7686,3042,-5986,2501,-6475,4059,-1017,6829,-368,-5860,-4476,370,-7078,6391,1802,-7284,6878,974,8859,3133,-6465,-8536,6226,6102,7368,7875,3630,5879,-5918,603,5374,1809,8808,13,-1564,-2971,4028,7061,2557,-7842,5896,-7435,496,2577,-4130,-9739,-2683,2425,3370,9546,5117,-9978,1092,5930,7473,-5349,-7629,-1111,-7465,2924,3450,-2074,1914,-8474,372,-4394,8587,-8248,6443,8159,3836,4895,-6045,1745,8361,-3291,-9206,3604,5482,604,5286,-1657,-232,8129,-5096,7258,7641,-8647,-1546,-6443,-9800,8633,8916,4488,-3128,-251,-795,-7149,1829,-8623,-8011,6817,3085,2935,9301,6702,-8130,6553,-421,7963,-3489,-5212,-7637,-441,5023,-4206,8540,-2001,-9928,-3098,-2929,3686,6023,-8969,970,7276,-5768,-4361,-9885,6331,-5578,-6355,-9542,-8405,-1398,-7047,490,-7755,8422,3418,3766,-1739,-9449,-2390,4779,-3185,-9874,6933,7347,1327,2681,-9886,-3564,8693,6303,1962,-8654,5827,-9134,3253,-9135,-8382,7051,-8049,2616,2812,6201,-1159,731,-9505,-5782,-7568,-5780,-3741,-7272,-3519,2652,-5814,3854,-5829,9896,-498,768,2080,-5835,4203,-8388,9026,8283,-4043,-5653,-7887,8922,-2720,-2331,-8242,-5441,-4091,-8593,6360,7199,-6010,780,-7705,-5792,7172,5389,8892,-6214,9256,-203,-96,3992,-3058,-2906,7466,-3220,-1208,-6896,-9145,4732,8806,602,-3385,6651,-6876,5464,5112,4194,9015,-7760,432,108,-6018,3076,5684,2074,-5075,969,-7292,2391,3353,3726,-216,3943,-4951,3881,-7058,6845,5321,7372,218,9536,-6563,-5976,3218,-1600,3628,-9,-918,5808,-8183,-5550,-4571,-4335,7465,162,-1160,-857,-5887,1177,-9620,1025,-89,-4209,6058,8406,2876,7981,-1474,-2291,-431,-1030,-6030,-6787,9247,3459,48,-3279,-4998,5415,7,9718,5456,-9750,3709,3365,6182,-2166,-994,-6865,6526,-9185,659,5202,3319,-3697,3931,-7718,5738,-5964,3420,-5612,-1761,4396,6616,-7658,2477,2729,357,-8136,3278,-4814,6317,7658,9594,159,9926,7244,-9319,8946,-1137,-7524,8771,9795,-9128,-5081,-6404,-7223,-8636,-7480,-5552,4139,-2576,-3226,-2394,6841,-764,3900,1310,-7378,4634,6018,8800,-6535,1142,-9210,4690,-2245,5414,-9981,3983,-6445,4124,-7908,1352,-3952,-800,6522,2708,-500,4303,1311,8816,-4339,3765,503,-3759,-4595,2417,-318,3946,8678,-6570,1863,6112,1172,-9462,-967,2636,-8007,-8757,-1340,2080,6326,8798,1181,100,-6044,6935,-277,-6948,3284,9284,-5058,9439,514,-1019,-9684,-8803,4867,8452,819,6879,737,5378,9561,-1675,-3534,-9807,6470,1095,6080,1276,-3340,-6304,-344,-7530,8672,8848,-3692,1899,8392,501,-5525,-7281,4289,-9883,-5264,4848,3061,7464,-7120,-4347,-9243,-5315,9678,-9800,5910,6571,-2422,1519,9008,1190,-6431,-1067,1391,-6805,-4280,-7542,2236,-4378,-4597,4614,-2843,-4167,3640,3375,973,3564,-7985,4577,9174,2655,-379,-2946,1611,-2978,4854,3572,3513,-9522,2158,5360,-8880,-7258,-2750,-7853,197,8016,8312,5841,540,-5552,-3648,9100,-6045,7968,9829,-7227,7001,-1715,-810,7747,6645,4093,7354,1475,-6356,7255,9505,1300,8929,-6498,-1921,1471,-910,5140,5213,-8593,-8337,2364,-5028,1803,7869,-4372,2315,-5522,6541,7873,6332,-3074,-7381,2307,5768,4898,-6634,1956,-9946,-1912,9987,5203,4807,2233,1439,-198,-1638,7913,-7594,1165,-3947,-7039,-3874,-30,9294,1023,-3524,509,-8791,1264,-7192,3825,1062,-5456,4980,-8068,4965,6137,9765,3555,-3690,5074,-1114,-8325,3630,-2008,3610,4292,-6538,236,-8847,-3721,-8422,3344,7995,5021,5944,-5819,-2151,-1877,6152,-1202,5955,8275,-7210,4816,-3686,4267,2330,2219,9597,-8448,-4627,1487,6209,3947,8319,9489,2606,-1295,-8725,6064,-3463,7495,3485,5867,7873,6883,7130,2941,-6655,-7654,2528,-7584,-8425,5421,-542,-4638,5169,-2151,-3560,-8313,-968,3037,2630,-3194,3540,-5298,-9922,-7260,-3036,-6700,5813,6010,7714,8901,7540,-6334,7466,6183,-719,4027,3525,2556,-6678,-6828,5034,-1845,-605,0,-4407,181,3320,-674,-920,2400,989,-8492,4903,-7768,3617,9485,6230,-9861,734,3552,-6249,5010,-4478,5551,9109,-2008,2307,2923,-664,791,8568,8099,157,4733,9294,8574,1057,126,-4994,9074,6589,777,5330,-8722,-9781,-1224,-6757,4504,8740,-7247,1876,-606,7339,6230,2331,-4400,5002,6454,7921,-8084,-9667,4182,9446,-7405,8616,-9656,-6701,3964,63,7849,-7328,7142,8037,928,-7707,8766,5788,-436,1620,-4186,-833,-7031,2527,7501,-1866,-9407,-5658,65,-8586,-3131,-9935,3704,8839,-4018,4440,8366,-6077,3359,5770,5736,2105,-9137,-6187,-9612,-9842,-1032,3054,-6770,-8878,7545,2372,6882,-9513,2650,-1828,832,-5964,8940,8988,2813,2477,487,-7232,787,8463,-5730,-500,3755,2149,9961,3018,-6773,2822,1693,876,-2842,1953,4010,-5963,-3910,6888,6972,-7188,5646,6691,-8015,4834,-4002,-3539,-4060,3484,9861,8685,1154,-4384,2047,-8821,-8314,-8866,-2637,4880,-1647,7388,-9872,4780,-7887,-1632,-5235,-4105,-4167,-3711,6997,5840,5523,-7608,-634,-3942,3823,-7174,1387,4811,-930,7311,-3333,2389,7045,9997,4764,2578,9846,-4208,-9524,-65,7356,1539,6473,8703,3358,-5008,3853,-5037,-215,9592,2625,-1135,-5130,9130,-2765,-7172,-9961,6307,-5057,9481,2108,-4469,4649,1328,-6606,-240,4135,-7265,-3741,-6873,-2238,9802,-1366,-363,5760,-7414,-2279,-3606,-6418,7172,-2362,40,7862,-8168,-4081,-8303,-6499,-1962,4979,7404,-3186,-6624,1855,-2550,-5446,-5348,-8986,-7453,5487,492,9015,-5989,-5737,9461,-227,-3947,2342,-9991,8259,-4901,-6634,3547,8724,-3793,2606,-504,2944,4278,1498,388,8183,-6298,-2026,5492,4832,-3499,-424,-2605,1028,-6397,-6745,4944,-7329,-674,-3902,-5597,4346,9517,-9317,-496,4867,-2970,320,-3972,190,-3883,8888,2294,-3276,-9401,6559,-6518,3907,6815,3140,791,8106,-2139,2906,3584,701,-4124,-912,1687,-9016,-3976,-6398,-6140,973,-4291,-6196,-3598,-7238,-6759,-4968,166,205,6968,-7836,-5308,-8737,5090,-4026,-2922,1508,-145,3592,352,9996,-36,-1576,2177,7369,9776,6969,-6329,-9868,805,3121,-8970,-7457,2160,2090,2472,9236,-6550,7097,9602,-2819,7587,4149,1100,5314,-5796,-8172,328,7230,-4201,-3866,-4345,3386,-9810,-3751,3500,-3993,2392,3197,4735,-2528,-7499,6987,8191,2107,-5495,-6159,-3971,-9717,-2947,-1741,-383,-4584,3346,-9056,3281,-9798,-1001,8150,-9792,2413,-9744,-1460,-9504,3167,156,1837,-4667,8238,9575,9168,769,2552,5931,9033,-5222,-4322,6441,5980,3226,-4267,-867,4323,-5207,2556,-9826,-5238,476,-3534,8204,-9914,4263,7041,-4283,-845,-8766,-4466,680,-4909,-5104,-156,6856,428,-5115,-8779,4576,7443,9196,7580,-2719,-7145,7899,-7544,6245,4632,8533,3413,4264,-5759,-4281,1505,8969,-9773,5685,4025,1400,3398,9629,-3849,9414,-8521,-835,7201,3300,5468,7915,-2789,-4173,-161,2980,-1767,-5827,3555,-871,-9730,832,2225,-9318,9959,-2138,-3279,-2945,9644,-4654,5722,7400,7319,51,8739,-5758,-6961,-4912,-5007,2007,9358,-5355,1748,-2367,8282,-5078,-6678,-6545,-3874,-4039,4914,-8042,-4111,-2210,-9304,-6220,2369,1711,498,6583,-7075,8174,6029,2609,-4578,77,6538,9971,-2151,-5460,-769,634,-8785,1370,-2792,2376,4743,-5377,-9143,6967,-7670,-7250,3951,-8470,-6717,-807,-4830,8155,-4914,-6034,-2263,-6761,1073,446,-1487,-2871,1611,-3931,-6019,9687,3772,-8267,-8549,-8456,-618,-6092,-257,-2491,-2335,5676,3571,-7786,3966,-8880,-5306,6934,8375,2533,3984,-6711,-8293,-6171,7518,5903,7287,564,5077,3771,-7688,9537,6250,8704,-6069,-6010,4650,185,9460,-2681,-7039,5948,-7053,1365,-9041,9908,8431,492,-4613,4243,-6279,-8775,-9615,-6565,-3122,-9421,8645,-8754,-8794,3459,275,2716,-3251,853,3623,2030,856,3273,-2374,-7723,-5927,-5070,-4863,7261,3185,-851,-7847,-9385,-5785,-6792,5746,855,-8334,-6132,9337,-5643,992,-9345,1000,847,8658,3702,-7220,769,7199,-3136,1273,-7634,-7258,3254,8090,9601,-7805,-3346,4389,5508,7496,8232,9241,2922,-7800,-266,7633,1499,-2785,-8345,174,2815,9802,4044,5136,8149,9082,-8355,-7739,7503,4838,415,-8261,-9850,-4543,3605,9708,-4979,6078,8785,7505,-2332,9508,3606,-9988,6123,-939,-6402,-7411,-698,6668,7823,-2416,4695,-2228,7548,1335,6993,3189,8317,-4099,4070,-795,-5422,8576,-6739,-152,294,-5956,-7360,-1658,2013,-1617,-4062,-9752,-3482,5775,8373,-9368,-5483,5988,561,2698,3245,-9005,-5249,8719,-918,2295,-3552,-5978,-6104,5288,-7660,-268,8100,1266,-1942,-3638,6307,9883,7063,-8212,-3100,3043,-3203,7380,4425,2177,-5645,3464,-3572,-778,-8710,-9443,8942,-2806,3150,8504,415,968,545,1665,-7470,-6514,3229,4947,8238,5345,-3444,-9591,-481,9001,-5283,-1581,5853,-1007,6375,-1968,5109,5413,3314,726,-118,-9510,8809,-9319,-4024,-5952,-5502,9513,3014,1394,4537,-2393,8364,-10,-7799,2896,-5596,-6887,4535,-3915,-7220,-586,-6084,5835,1477,1779,-7310,6105,142,-9982,4973,-9511,4532,7485,-7917,-9449,2958,3283,-6761,-9872,4012,8125,-6038,-2831,3798,821,1429,8704,-7818,-6167,-8353,-7849,-6346,-455,-4046,-3500,-8492,-7950,8620,-8181,8775,-1469,-7129,6933,3136,-8782,144,5609,-1010,1290,699,-1137,152,8961,-5651,5088,6377,5239,-8545,-2870,4219,6381,5789,6240,8963,4152,-2021,2254,-7415,2815,5115,2679,-5491,-2503,-7397,-9192,3734,3719,8246,1657,-2017,-5197,9377,-5191,-80,9657,8455,793,3581,4350,-8913,-8651,-5969,5345,4822,5527,9855,3536,1537,-1737,-826,-7037,-4764,902,2049,-3741,-9362,-4917,-7668,-640,3187,-4185,8409,4734,8742,-4649,-2654,5680,610,2058,-10,5193,-1040,3664,-4412,-4192,-4849,-8749,4472,6969,3841,-6487,-6741,5165,-85,8414,7003,5350,-8349,-5049,-6135,-2892,-2844,-1424,-607,-6939,2759,-1157,2896,9582,8793,1529,6699,2255,-9319,9315,-5083,2285,-4296,-4934,-7450,5733,-8778,-3994,-4620,-5363,-1767,-8644,-7907,-5304,-4790,5798,-8763,2701,-8320,-6158,-5773,9465,-7674,3220,-3319,215,1914,1073,-8964,-845,709,2650,7994,-9476,741,-7311,5374,-8079,-2945,-4695,7027,2581,4507,2611,1596,4671,7605,-9704,-3413,2482,-896,-1740,3639,-3314,-4725,5332,-9165,-9221,2112,-6120,-6283,-9656,7275,1252,-8123,1400,5658,-1121,1575,6200,-5584,6701,-8113,-791,-6482,-5697,8610,-6718,823,-2753,-3641,9923,-2553,7291,-151,-9424,4262,-6756,4156,8596,-720,-1344,-6934,-7412,-9175,5638,2767,4616,3568,-2453,7951,884,8419,3820,4706,9051,-1224,3911,-6535,-294,1043,6558,-1848,-6003,9194,-7764,2506,5414,-124,5689,3689,-3795,-3428,-838,-3848,9176,8335,-9617,1427,-2094,8103,-5719,-6022,-8143,-9292,466,-3341,7500,3432,-330,-4892,6667,-7450,-3073,9452,3911,-6014,-6839,2737,3098,-3290,6440,7075,5230,-3549,9476,-7155,5872,6354,5360,4784,-1876,-5110,6197,-7652,-6837,8888,-6351,7153,-8103,-5841,3330,-9170,-8986,947,1436,-4698,-5739,2415,-996,-5071,-4302,-481,8729,735,-2209,1638,3025,4714,-8131,9406,-9522,1689,2887,-6657,-7618,-1293,-9843,-2404,-2280,-5545,6850,-3029,5802,-5886,4131,2663,2744,6679,5340,128,1373,-8353,7709,-7307,9476,3155,9123,5585,45,6700,8046,-6154,-2143,-4540,5108,1852,1536,2769,-9978,-4806,6482,9839,9437,9647,-8666,6296,2730,-6617,8940,5386,7954,-3037,4649,6847,8983,-1356,-503,8411,4042,-9117,-9332,2733,7930,-803,4381,-6248,-1961,-6200,7683,3631,4102,8836,-6985,9595,-4124,7063,-8516,-5826,3136,-9721,-5106,6447,-3817,-302,6492,99,8672,-9800,-5076,1250,5285,7680,-4625,-5419,-6443,-643,6208,-698,2683,2174,-2443,7297,-4408,-7404,-5983,2366,3729,-5563,-9028,7945,-1200,1687,-3014,-321,-8566,2043,9404,6684,-3600,-8542,8443,-3003,156,-8358,856,-282,-3001,1667,-8329,2673,8450,3781,7845,142,4547,3732,-4010,-3443,8396,1782,9388,5412,-6841,9460,7919,-2357,1809,-8070,2134,-8938,5869,-7239,-9637,4704,4618,-1858,-5063,4385,5512,-6402,-224,-1379,1296,6799,6029,-7536,-7771,-1683,5049,927,6031,2837,4323,4137,3025,-7663,-7326,-7366,-3623,2948,-1828,-7440,5974,9622,-8938,4155,-4757,-2130,-3654,3201,3696,4680,886,-3905,9500,9057,-3609,8859,1782,-7003,-1665,-3399,-5484,8719,246,5501,762,-2819,-9555,6743,2709,8091,7587,-8064,-2930,-3254,-1190,2849,-1483,4112,-7264,-7099,1684,6388,9079,7787,-6749,5855,-253,4847,475,5294,5407,-3793,-2548,6832,1915,3257,7059,-5857,-296,8798,-3966,2668,-1973,-5961,6443,-6447,-6376,9949,1992,5486,-2769,-4289,-7281,7463,4716,7737,5261,-9930,7393,-5293,6482,9464,5506,9308,7397,-1647,9179,-505,-2652,4667,8126,-4471,9199,1293,8969,-4545,-2643,-3773,8406,-5762,6076,6288,-389,9911,-2647,-7113,-6343,-4528,-3129,-1104,581,8168,5376,3970,998,-9371,-1881,-574,9827,4447,5416,-1883,8220,9181,8257,-826,286,-9828,5927,-8950,-4778,551,2224,1758,-9700,9719,-7699,-3743,-9166,3345,-3205,-5164,-3946,1370,-8913,5342,373,-592,1897,6240,4495,-3648,3088,-6885,8638,-2376,7496,-9520,-3832,3247,-953,979,862,8665,-8748,1444,-7022,-4244,1209,5106,-677,-9963,-3492,-4970,-7765,-7105,-2157,-1561,574,8460,-2819,4669,7679,-8911,-6871,-5338,-3791,-5410,2216,-1070,-8920,8337,3150,3944,-8223,-1012,545,-546,-984,6631,2000,-3684,-9972,-843,5887,-5987,255,4535,-7245,-2963,6751,-8354,5562,4424,-7801,1614,956,5094,-585,-6946,-1460,-832,6399,8169,6897,7870,9359,3886,786,-3901,-5960,-3649,9737,2933,9964,-6709,-4840,-3721,8566,-6638,-789,-2833,3408,-19,9682,-9845,-7972,-7777,-2732,2998,1953,7529,-2982,3869,1832,9466,-9748,-8993,3821,9550,-1702,-4515,316,9574,-2612,-2879,3576,-8847,-3274,-3023,-6236,-4131,5235,5381,4905,1575,545,-1267,2228,-9046,-859,-6985,8147,2379,-5337,-3362,3398,5422,2416,5674,-6632,-7045,4631,6293,1432,-3773,4453,-7394,-555,999,-9643,732,-8377,-5406,7878,-1897,-8756,-5762,421,-5435,6429,3319,896,1149,2694,-2901,5636,-1544,-5506,-7544,-6891,-2364,9671,-8532,5336,8323,-8961,-4768,2969,-6920,8088,33,-4464,-1992,8348,4684,6982,41,-8634,-861,4272,6262,-9668,5175,-2716,-5443,-1824,3166,-1382,6268,-5512,9471,-4277,5034,-6039,5183,-6291,-9525,8061,-5428,432,110,-1488,-5743,2156,-7956,-8129,-8364,-3350,9891,2490,-3389,-8881,2619,-2263,-6942,-8930,7293,-7520,67,2191,2361,-2176,5476,3491,-2302,-8291,-2149,2968,8087,4545,-9592,5185,-4059,6080,-8441,6335,-1190,9772,4279,-4818,-5238,6190,7337,-7318,7501,8789,-7956,-8132,-3066,9312,3000,-1267,-35,988,9686,-6349,492,3774,5713,9019,-8162,1982,-1669,-5492,-3538,-5761,3122,1970,-7029,5054,5159,-5678,-9609,3324,-8333,-3971,-4975,-5919,-6639,-3762,-1073,8035,-9746,-6403,4002,5939,3799,-2732,6530,3097,6106,5716,8466,5876,1320,3543,8013,-7023,-8907,9919,524,8985,3145,7976,8406,5499,9511,-6952,-889,4951,-9570,485,-8008,-5147,-7820,-7023,-9263,1241,9081,-3277,-272,9671,-1955,-3326,5102,7578,-9612,7089,-5414,-7852,5205,2309,2547,50,3309,8237,1395,-4258,-7222,-8068,5094,7100,5897,8296,4493,3076,-9534,4969,-9821,3353,-8428,116,9926,-6840,-5874,9536,1979,7962,-1417,6995,-673,-2908,6962,-3669,-2131,-1812,9118,1576,-7769,-7128,7971,5474,-1422,8237,-1928,9719,-6916,4852,-5878,9989,-1356,-5391,-5706,1473,-3770,-3641,2082,-7234,7837,5118,-7300,-461,2620,-5002,3615,-7253,-8962,6075,-940,-2174,-5193,-9484,6154,5617,8918,1620,238,5648,-4134,6324,9259,12,7714,-1982,5801,-8442,5043,-8375,9793,8892,779,8346,8901,5520,832,-8330,-4981,-54,-3236,3318,5489,-6136,9276,-8124,-7730,9318,5693,-1333,-9530,5573,7495,8791,-5689,-8703,-1700,-6608,-8164,9772,2915,1269,-8864,4557,7497,2477,-6457,9190,-1729,-2988,-6151,-1473,-4888,-4329,-8398,-8422,3091,8150,-9050,9691,-3549,-630,-6247,-1633,-1489,398,6854,-3528,-4920,8718,-7847,-4479,8271,6681,8877,320,-1021,7339,4231,4619,3779,4916,-8987,8538,2383,6231,-8628,-4951,-1953,3246,4816,-7460,6126,-6246,6050,-567,2452,9345,8062,-8972,-6446,1711,-5884,-1696,5157,1719,-6034,6908,9870,-7978,-40,-8598,-7950,4082,4258,5383,7890,-5922,6779,-5328,4217,988,-3184,2085,6780,-2448,2810,-4957,-2068,-428,-8381,6642,-8755,-341,6651,6520,-5152,9058,1447,-9591,-8078,-313,-4142,-2080,6055,5244,9382,-1638,-7891,-834,1797,-7686,-4701,2712,-4976,-8413,-7604,6190,1002,5336,9967,8533,-9281,778,4569,-1381,1157,2223,8499,-7134,-4795,-8058,-6902,6731,-2030,-2450,-5189,-8200,9635,-9771,-7188,977,-7118,-9567,-9916,-5603,-3112,4084,5645,-1020,-1765,-3561,-6596,-475,-9004,5294,-7230,9968,6700,-3054,7435,2847,-7935,7869,1176,1691,-1820,8155,4447,6191,3289,9481,8926,-6920,1079,-899,2167,-9164,6737,5007,-812,9576,10,8619,-5972,-3386,8749,6036,-6468,5152,1713,-1895,-908,-6422,-9529,-6294,6228,-351,-8592,3265,8693,9289,-7416,-6808,-7324,5884,-2887,5251,2170,6208,5426,-1036,3965,1709,7391,1419,-9009,1893,2344,7437,5183,5119,9947,-3929,7464,457,-8282,-9819,8042,-6557,-4159,6619,2661,-283,1982,-3162,2079,129,-6596,6758,6005,-5039,-2472,2854,-6835,-5372,7839,-6006,3728,2200,-8357,7859,6060,-5640,-5888,1712,-6587,3990,-3434,3257,6131,-3843,8502,2965,6696,3157,8758,6283,8129,2050,1296,6086,-6816,-8126,-7658,4808,-8685,-3756,3024,-2802,-584,-4670,3504,9250,-1858,-1406,-9571,-2632,-4680,7895,-4636,-6612,-1130,-1808,-6179,-1207,4159,9126,-9288,2474,7068,103,2349,3246,-6043,-9266,-1526,8166,-1284,8606,5172,-6757,-7946,9947,-9619,3721,-7983,-4616,7745,9712,-4146,6027,-5557,-4941,-6337,832,-5440,7586,-9828,-7996,42,-2438,-1089,-3000,-1076,7731,-1549,1648,5719,3034,1765,9041,2167,6217,-43,8251,4120,701,-4185,6681,311,5077,-2605,2092,2780,5911,-9024,807,8695,-9282,4900,-8874,-73,9051,7163,-1531,-7432,2363,458,-108,6236,9714,6037,-5590,-5309,3266,-5074,9506,3523,-5967,-7896,-5945,2071,-836,3333,1911,8004,-6639,7562,2082,-7942,-2402,8287,-3948,-5673,-9335,-8111,-6419,5339,888,-1416,5222,4201,4326,-3891,193,8850,1973,-8991,-4411,-1732,-1489,-3589,6467,-9767,-6560,6680,7579,1836,1764,-1730,6401,-78,3175,-4729,9123,7552,-9792,-7820,-3431,-9392,1924,1438,-9553,-8784,7359,-2974,-4370,6827,3568,-5657,7250,811,-7676,8238,-9243,-8653,-135,6961,7771,5536,9995,5062,6047,1395,4072,-1636,-4399,8040,-9817,3528,9457,-5088,1387,-1657,-5380,5875,-2207,-2985,-3037,-2717,-239,-7604,-191,9345,-2264,-8241,1226,2858,582,5489,7002,-7937,-5521,6096,9144,-2294,6087,9388,-4638,6381,-2749,2216,3633,-8779,-6744,-3340,2412,1557,1586,4085,1110,-8019,5821,-7697,8103,-2238,4153,-8452,-9446,-3814,5226,-7703,5380,4075,-648,-3211,-7906,5675,7455,-3632,4143,-2681,8835,850,3866,-9437,-75,-5074,5735,4044,8590,-4391,3787,1439,-379,4228,8126,7105,2445,-2745,-2321,-3342,8760,-9201,-9659,7447,9697,7947,-2204,-4252,5215,-9121,-5299,-4825,207,-9066,-1844,-7580,2006,-1534,9160,6352,-4631,-1306,9502,-7508,-8975,-7707,7874,8899,-1161,-54,551,8995,-7500,4751,-1527,-5724,55,-7798,970,-484,-7032,-6034,7184,4907,2834,-3584,-2158,-3084,4219,-1084,9147,-1026,-8742,6464,4578,-1883,-1352,4352,9836,-9291,-7377,6069,7168,-2205,8030,-247,-4346,617,969,651,7143,-3669,-9345,5531,-9692,4311,6287,-4587,-9745,-3265,5161,-2140,-5198,-1523,-9938,-1406,-585,605,5378,-4063,-3694,4884,-7539,-6390,-6756,1443,2610,949,-1764,-112,-7715,6364,1121,-5136,-3907,203,-9081,3245,6291,-5834,-26,3386,-1754,2576,-5524,1702,-6177,4361,563,6459,-6621,2739,-8173,9327,4020,-7466,-4095,9328,-2245,1848,-959,5517,7907,4255,5344,-5407,-1521,-6998,-7329,-7482,-9657,-2510,-7537,1371,5304,8714,4903,3610,-855,7172,6330,-9036,-948,-3392,-4619,9841,-530,-2734,3794,-124,1013,779,5744,-8031,-7088,7756,4371,8807,-9247,9318,6220,6761,4941,8440,7671,7396,-258,6119,-1787,-8757,-9245,8662,448,5811,4624,-435,1639,4090,-9282,1938,2905,-4073,-7306,7025,-8768,-6778,-627,-4235,-3628,-5132,1767,-4426,9493,6525,-971,-417,2056,1755,-5977,2450,-7174,263,7646,-834,-8339,1156,-7627,-5409,7824,-458,-5636,1180,-3754,-3808,-8309,869,-7578,-4772,-8457,-4042,7259,-586,-5309,2437,-3960,-7518,8941,-7176,-1909,-9363,-3505,9977,1716,1693,-620,6074,7130,4354,-7273,8646,-8984,-7611,616,1368,6062,-4113,-3768,8721,5575,6420,-365,-3407,7623,-6202,2679,6615,-2347,-5724,-6293,-2591,9304,7731,-2300,7725,8298,1291,9991,-9188,-8522,4456,-7417,-35,-6823,-6690,-8324,4322,2517,-3538,-3054,-8045,7466,-1005,6170,-6561,-1751,6518,4329,-1459,3914,-241,-4957,5311,448,9147,-2000,-1417,955,9774,-7266,5918,1425,-165,-2126,-2023,-1022,9539,-3134,9090,7672,2597,-2447,685,4965,3593,3455,5091,2129,7473,9241,-7508,7776,6513,4787,7166,6010,902,5961,7877,-8743,1341,-4574,-5073,-7860,8168,-7899,2480,-7484,-4801,-9462,8835,-4045,2363,-4838,5661,550,-3352,-2147,-5769,1811,5115,4955,5398,-4908,-4858,2274,-6164,-9566,-4348,2874,7423,-5819,-7309,-2913,-534,9263,-977,-8839,-1458,-7593,-9659,4662,-3757,3246,2802,6155,-598,2546,3884,4011,-129,5270,2578,-6408,-1685,8720,-9956,1214,3479,-5225,5145,-7162,6670,-4858,-1684,2223,-646,3540,-1255,-1339,-1592,232,-5411,-9206,-2712,8902,-4409,-2961,7777,7560,2199,1506,-2524,-4806,-5108,-2486,-7520,-985,-1945,3677,405,9214,-5730,-9759,-8958,7595,9368,984,-8190,9677,-2829,-2582,-6168,-8306,-5507,2263,4515,-7305,1393,-845,-6269,3955,7108,-5443,-114,-2969,-3780,-6959,-5393,5599,8039,5357,-3244,1693,-6280,-4029,-1073,-4704,-4779,-6169,-4708,4065,-7640,6004,-3857,4659,5781,4084,230,-1541,5765,1094,9063,1513,1162,-1141,5919,5907,7450,5524,-7991,6754,-2591,4907,3684,6840,-9735,-9701,-2325,-5472,-7766,9536,8452,-8858,-1378,2531,-3229,8330,-2534,-381,4513,-2720,1709,-9318,1192,8502,-1855,-8638,9644,-9342,5103,-6290,460,-544,-7057,2653,-6090,3767,-6190,-3498,-6083,-3132,9065,-4868,-9733,-6896,2807,-2399,3364,2660,5424,954,-4122,-746,-8418,628,-1152,4566,-4457,-4330,8607,-7860,-3361,-8997,-864,-1377,-6234,-407,2581,-9951,-5215,3855,5806,9203,-1715,8730,-878,2191,-6645,6096,5101,-9727,720,-7937,6566,-2056,4025,-9993,-9200,-6621,2745,-896,383,-3092,8485,-7308,2883,-2288,-5135,-9036,9007,1873,-4666,220,-2688,5685,9545,-4485,7919,832,9086,7851,-2470,-1753,6387,-3495,8060,-3482,-5625,9282,722,-8018,1528,7261,-3690,9834,8778,8482,-6174,7968,-687,-6250,-4941,7715,5337,-5378,7435,-3068,3595,8702,-3023,9577,7930,5724,-428,-5460,-5683,-5965,3937,9103,2330,3019,-6153,-1031,2028,2695,-9800,-3182,-8859,2486,-4427,7150,-4827,5321,7624,8794,-180,1003,1969,7366,681,1764,341,8897,-6565,-3926,-2090,-7303,-6047,5471,-103,865,2877,-4500,4135,407,5357,8626,-3838,214,9656,7245,-3941,4781,-8534,-9437,-3467,-3730,1204,-3870,5360,5986,-3120,-3136,2879,2650,-7714,-5913,401,-9853,3256,-6054,6276,4256,-7478,5154,6716,4343,-2013,2380,3936,1839,-9749,-7257,7010,4270,-1786,5976,-3717,-6729,-1629,2868,-3105,-5770,9589,-8940,-4667,-1532,1842,3798,-9111,9708,-8247,-2216,-5455,-7065,1174,658,-9571,2779,876,-6848,-2210,-313,6737,-7944,-5984,3688,4898,666,6066,-6887,-909,-5222,-6809,2152,4650,6829,-6234,8123,9681,1721,-6688,2188,-4415,119,1167,-5484,6642,5074,7298,-5434,-6492,949,-3539,7268,-2274,1994,-3053,231,6493,7193,-7464,-4215,-6090,824,8422,-9089,-280,-322,-899,-1793,-7487,-1637,8128,-1029,2637,1301,-155,-9984,-3276,7497,6009,-1066,5047,-9252,-8569,-3973,-1990,8285,6251,-1251,-6714,9837,-8893,-2157,-4018,-5658,-2090,-9611,2268,1119,-6583,-3076,9154,-3716,3714,-1912,-7796,7991,-2038,2844,-4296,3039,6609,-4056,2722,-7462,8961,-5800,1659,4916,6711,8909,9140,3626,-2996,7526,4902,-1437,-8776,-6742,-3980,-3316,1957,-3940,8008,-7189,-1291,-7377,6325,-2163,-4505,-9442,119,6962,-9936,-3794,7486,-7729,3040,-483,355,4048,4816,1943,2265,-9703,-4351,-3646,-3540,-9227,-3909,-3346,8905,-2506,5373,6492,3034,7178,-8980,5828,-4661,-949,-9187,5084,1325,-276,-8397,3687,2736,-6307,-1300,-516,-7017,6236,-1377,-848,-9094,-4380,6600,9868,-1573,4225,-5282,3809,-2952,-5648,-3343,-545,5342,3712,-6253,-8005,-125,8529,-903,551,-6544,-8231,-4473,1964,252,-4178,-8654,-6233,-9997,-4549,-2114,-2031,-495,9370,-1936,7804,7284,1193,6566,3733,4834,284,-103,-9373,388,8980,-103,5513,-3078,8175,-870,-1736,-4045,1390,6646,-3923,8795,2610,2825,-1867,8961,4409,5554,5697,-204,2858,6785,8737,8414,3685,9876,6267,6142,991,4026,-9352,-3571,6574,4874,-145,-8496,273,-1883,8150,-3140,1095,4246,2410,-8630,-2811,680,-8696,3737,515,-9744,-2084,-4200,5327,7805,-3006,2738,6179,-7298,-7097,2913,-5358,-1244,-1182,-6249,6508,-1805,-5426,9148,3034,-7390,-1299,5606,9362,-3199,-8455,-9097,3985,9743,3068,5426,-2910,-1688,5182,-1093,5352,2241,-4968,1532,-4456,9175,2639,2684,9342,4539,3450,9145,-2146,6419,-1324,885,966,2077,1583,3195,2040,4365,8143,9241,-8911,1276,-2515,7355,-5899,-9731,5310,2669,9484,7905,-5184,544,-7784,-1917,7068,8158,-1729,-3167,-1610,2661,9827,5280,4325,3659,-7344,-5980,-7476,-8539,4363,-4921,6347,-8988,-7057,-1729,8005,-5369,4171,8178,-9404,-3689,5562,-4855,7751,5280,1310,5396,-5622,-6086,5263,-5606,-1215,1728,-1296,-9235,-8703,3579,-3618,-4054,-5878,-801,8182,-7918,6741,9369,1861,-4417,2613,-8492,-8074,4579,-6381,6501,-3273,-6715,-7212,-3344,-8352,-1267,3167,596,702,9827,-8527,-4344,-5382,-3643,2406,7983,-2917,-3840,6917,-6431,616,-2127,4526,1342,4306,7818,-1515,-1301,-141,-1796,-6388,-6617,9046,-4060,-9025,6819,-3732,9545,-2392,-3905,-5299,-2559,-3332,-322,-2557,-1349,-3192,-5596,-9157,3346,-5056,-3458,-128,2076,8445,8487,-2588,2231,-6502,3717,8303,1682,2879,4249,6210,-3789,-9883,-178,1408,-1082,9026,3636,-7386,4977,-57,-1483,8210,-6489,6597,9650,7124,-7452,-619,-6985,-6799,-7054,-3051,3555,5997,-7212,2368,-6288,-8208,-938,5894,2039,4308,9907,431,-5862,4839,-3825,3377,-8401,-1222,-3353,-1928,-964,-7353,-4660,-4604,5888,8760,6363,1542,6738,-8003,-551,3334,6245,3762,4173,7732,-4269,8235,2653,9584,-6570,5265,-4163,5366,-690,1744,-5022,5299,608,-9739,-3937,4274,-7738,-5522,1960,-9153,-3484,4172,9524,1883,-836,1854,4584,-497,-7999,-6011,718,9517,4398,-7559,-1555,-7279,6364,-8850,-7,-945,2248,4528,-5224,2375,-4145,-8363,3821,7014,-2652,5830,-9820,1772,4771,-4585,-957,9849,-8536,2100,-6987,5144,6893,2166,-7258,-4360,-9776,-1612,8239,1996,7026,7433,3202,4349,-5737,2976,-592,3175,-2088,8083,-6757,-6831,6972,1789,9595,-200,5234,-1366,8717,-1792,-3241,-6443,2038,-7476,8165,4272,-1541,-5124,904,-9887,5960,1567,4249,-3927,8239,-3755,-358,2095,246,204,-4540,2399,-1136,6950,3748,3030,5671,9491,3059,-1618,2458,-3890,-6894,-5456,9492,-1454,-6613,9341,7491,3739,-4994,2412,-5409,-2165,9366,7099,4964,5097,-9954,-2073,626,-8380,6362,6459,-3569,1384,8804,7116,9181,4915,-1852,-6915,5213,9310,-628,-7302,5565,2969,9684,-1161,5019,8271,-5280,-4617,6195,34,-5816,-7669,2851,1064,1863,-3255,2138,1594,-677,9012,9392,-6059,6910,6735,-9056,-3587,6837,-6642,-9359,-66,4917,-5797,8058,-5027,-1502,-3137,4939,-7982,-1728,4703,9056,-8994,-9475,8289,3340,-1509,2585,-9611,2645,-50,2873,-1703,7220,4430,-7232,6725,9171,-826,-3775,8001,1711,6210,7023,-7559,-3082,-7499,7037,8765,-4636,2579,-7833,-8368,5005,9457,-2891,-7817,-2692,-4599,5041,-6116,5781,9910,-7476,-1085,-6720,-2107,8317,-8237,4482,-7284,-2682,8759,-4008,227,-3542,-7361,7081,5156,-7111,9274,-8582,1651,-9548,2663,-1381,-2587,-5386,1178,623,-363,8995,9814,9216,8605,7259,-86,8155,-280,7948,-9356,-5630,268,6952,8653,-7396,-707,-4711,3159,9745,-7113,-295,-2576,-2839,-6787,-4902,5490,4763,-7814,8466,3143,3515,-7967,-9853,-7660,-6289,881,-2082,-4791,9451,1056,3697,7624,3419,-4244,-343,3166,-6222,5412,1760,9540,-7408,220,-2025,1284,-1495,-9020,211,-6133,6431,8912,-1248,5718,8705,7127,7717,-9886,-9064,-4801,-2432,6257,-6356,-2970,3702,-8228,2585,-2627,4159,-5196,-8860,7330,8307,-6798,-6951,197,1106,-3418,9003,-1487,9128,6522,8981,-8070,-6622,9418,564,8098,-2630,-775,-9287,-9226,-7207,-6143,-9192,5597,-560,7582,3599,-8773,-7157,7012,-885,3142,1017,-453,5727,1671,-6556,7340,-5859,-3371,4563,-4643,-2530,4838,-1304,-9436,-2766,1347,8400,4674,-7598,-3851,-5650,9775,7510,-5763,-9353,6451,-3403,-3703,4455,-9260,9227,-940,-629,-1979,3184,6776,-7376,-9378,5401,-2058,-8468,-2409,-9135,496,1355,-2474,6562,-7140,-7523,-5000,-1437,1616,5014,1763,-8520,-2792,8741,-7657,-620,-3100,-2014,-8374,1675,-5999,7579,5753,-5083,3826,-3047,7618,2670,-6338,-3764,755,-5163,-7014,2248,1154,4294,-7313,-9582,607,-7582,445,7340,-1967,9614,5719,-978,-1735,258,-5296,-3092,-7719,-2563,-7279,-3342,-1467,8953,-5431,3486,-1146,-8509,-8513,4500,1026,-8162,4553,-5536,5410,-852,2648,301,3765,-3007,7272,-8316,4225,-9613,-8651,3665,-7944,6672,8521,5882,-6263,2378,-2369,-6781,293,-970,-8232,3231,6797,-1882,2117,3559,3468,6038,-1010,-4822,5851,8780,-8746,1288,-6720,4085,-4477,-373,-7413,-3864,9959,-3991,3353,6832,8356,326,-7052,5491,9483,-3843,-4477,9258,8105,4636,-5159,7081,7303,-2854,-8176,3512,-9529,-3899,-4872,445,8717,-1665,9039,3236,5329,8408,-3472,6694,3808,-9081,428,-4878,-8773,3437,8013,9164,-6502,-9963,3331,-5292,-5837,534,-5613,946,744,9085,3730,1743,-8852,4675,-37,6559,-4191,8058,7081,-865,-2491,5405,-8532,-5042,5635,-7923,5982,2982,3926,9587,2010,4994,-102,-7167,-7035,-3370,-6626,-7749,2030,-7794,9435,8779,1160,-6281,-4511,5396,7957,2107,-307,-7020,5755,6121,-5798,8800,8555,-8785,-3440,-7501,-2174,4161,-8115,9106,-2123,-3017,3857,8662,-7148,5749,6966,3982,5304,-1088,-8461,8580,8834,-176,-7963,4150,-4979,-2325,-950,8420,-1746,-2996,-1896,-5524,-4585,-1277,-717,9061,-5411,-4495,131,-7828,6057,-7262,8256,-1004,3661,9029,-8469,-5425,4751,1942,-7377,-8979,-778,-3174,-7803,2340,2,7765,-8492,-7424,7782,-716,-2575,-835,3639,-4727,4438,1391,-9515,8821,5713,3834,-2879,-1414,-8386,1817,-8875,3541,-7009,4218,3124,-486,8340,-4709,274,-792,-594,2410,9107,-144,-3556,-4781,4862,4068,-454,-4111,2039,3443,-3794,3874,-497,762,-3995,-7866,3822,6304,4416,1823,955,-1701,-5104,-5015,-7719,-4723,1633,2243,272,-3713,-1790,-8347,7724,-5128,1053,6414,-1076,-8275,-6473,3699,-7922,6599,-1786,9817,916,-4476,7066,8988,4127,6247,811,2273,-6034,9911,74,7366,-6355,6443,-744,6183,-7770,-8868,4937,7787,-3993,-5285,2848,-637,7829,-8730,5813,7955,-5939,2383,-345,-1843,-3973,-253,-3012,-3009,9616,9766,610,-1629,-2533,-6642,9318,5337,1058,9104,-1619,-8453,-5086,9428,-9823,-776,-2568,-5817,-9195,-3554,5439,1878,-6189,8095,-6130,-8374,-971,5583,9852,-8986,-8958,-9156,3416,9944,-279,8597,-1609,-9821,688,-5889,-445,-7267,8510,2284,5306,-8866,7825,6103,2178,-2166,-5703,6280,7204,-2311,-2660,-263,7997,-6177,2992,-5180,-6540,2231,1183,-9010,4489,-5061,9454,-2507,-2487,8464,7925,7900,6567,2958,-1824,-5733,6876,8582,8024,6405,-5873,7833,-4452,7080,2375,8974,-6140,6076,1633,-1680,-3813,-3076,2954,6237,-4961,8982,-1185,-3734,5971,-1060,-1674,-2367,1022,4893,-7530,-4233,-304,3915,3386,-1991,3918,-8638,-5796,3861,-464,-3238,-9884,9292,-5245,-494,5082,-3442,-6702,-8211,-9323,-4259,5321,-8001,2468,-4776,4916,7593,-3563,7278,7790,-4088,2089,-8389,3412,2314,4042,1355,-5947,8889,2279,5870,-5972,7311,7151,-3732,-394,-2762,-2951,-5878,2244,9262,4098,4785,8731,1675,8337,-2156,6629,7734,9352,9035,-9592,-5500,2067,-5958,-5113,-4984,6822,6065,-6539,5992,8419,-5018,7896,-2628,-4241,-293,3614,6481,-8991,7476,-1883,-2649,653,8756,8030,-6730,1224,-1546,2951,7809,5902,8708,-7445,-484,1523,-211,-7391,-5770,9782,-2173,-7496,155,1353,-5872,-5572,4522,-6891,9594,3161,2853,2472,-6961,-1591,-1664,3550,2738,-2777,-6837,-6432,7124,8830,8665,5514,6862,1825,293,-7014,-1008,-3865,4262,4433,-5921,-3152,7384,9108,-9870,-2564,5115,117,3365,1831,4407,-8833,-238,-7478,8975,-8551,-1084,-3107,-6398,1879,-8366,-838,8044,-108,-5198,5289,-8291,8706,5174,1123,3057,4763,-5046,9610,-8012,-3715,1593,-6927,191,8275,7797,-2123,-8902,-1970,-5352,-5661,5678,2212,-3946,-3882,8591,4527,-2577,-3424,1338,1803,-8677,7074,7263,-3689,6794,8019,4910,2397,7184,1599,-1783,-3172,-1876,-6929,2142,-2445,6603,-9059,-7849,-2457,-8413,3727,553,-6049,167,-4760,3968,-9674,9155,-8260,174,-8475,-9980,1620,-6214,-9003,1304,8515,-9999,-6332,5817,3061,-2511,-4481,-8262,-4954,-5205,5435,6637,-798,4028,452,-6337,5898,-8569,1079,-7034,-5579,-8281,-5189,9835,-2494,7774,-4516,-4609,-7405,3427,-9951,-549,3363,8890,8905,-582,8169,4190,-8987,1687,1836,-4911,-5779,-6597,8534,6446,-1601,2607,-8272,-118,-7833,9690,8519,6765,-3794,-1927,6781,7143,-2834,-3022,-637,1144,2238,-7700,7394,-5706,-3394,2784,-4878,-486,-206,2176,-7492,-5738,8409,9466,1884,3811,4618,5323,2438,9450,3141,9095,5623,-5977,-4101,-7478,85,9477,7954,3805,-419,4902,-7761,4001,1895,4035,-9787,-2189,2258,6787,-3295,7286,2048,-3240,-5170,-1143,1125,-5608,7096,-8267,-4597,6972,-7666,-3848,2869,-8944,-4104,-9713,4733,5172,7096,-2083,5749,9021,5158,9225,8621,9721,-1708,120,4719,-269,8512,-3102,9854,-2752,-5491,-1919,9752,-3110,-1774,-2454,-8179,4982,-2542,-97,5871,7196,-7523,-485,2986,2584,7781,7793,-7944,-3186,8598,4765,4183,9793,4037,-9595,6854,2872,-9950,-4452,4393,7057,9762,-8385,4642,1347,-2188,7820,180,-2739,9331,-6645,2095,-4515,-3769,-5480,3155,6708,-3558,527,2465,8319,3046,-7508,-3834,-1234,-5247,6697,9325,9720,5414,-268,4360,-7190,3474,-8058,-9155,-246,4068,9921,-2073,-3026,7785,1753,7629,-7130,6260,7174,7941,-339,7828,7334,-5556,8400,3343,1696,-2483,-2879,-670,-2797,524,9043,1363,-8788,6063,2822,8347,4973,-8590,-9245,-6615,4626,-5203,7854,7867,-8728,-1176,9028,-299,-3197,7430,-5455,6031,6257,-7238,5244,-3857,9224,-4755,2624,7168,-8376,-6610,4376,-8562,9359,-1718,-5818,5806,9524,3285,7057,-4893,-2361,3424,7509,7701,-3351,713,4077,5271,-504,-4221,3526,-7900,-1394,-9774,-4787,5046,-912,5587,3918,1024,3136,6113,-1301,-9033,-9096,-6310,6127,-3643,5850,1203,9190,-2297,7473,-4795,2193,1317,7952,-3591,-2438,-4448,549,4159,5927,-2654,-2828,-9854,-957,7321,8706,-2170,2298,-1416,-8162,7536,-3912,-1777,-2539,7932,-367,-1480,8348,-604,-3778,-5514,8780,3406,-6165,862,7523,936,-9424,9387,6290,-2594,1426,5469,2819,-1783,-9419,73,5895,3193,-2548,-3060,-3900,-6214,1250,3729,-9176,3446,9866,1238,2062,-3600,8951,-5120,1152,-4233,1846,6531,2004,3008,8025,5059,-3716,3721,4477,2264,594,-3064,6765,-8011,-2480,2203,-2592,3193,3637,-5795,-8661,4922,-1401,6379,925,-8989,-4894,-6469,-2828,-4548,-4722,-6531,-1927,1834,-1286,5136,-2548,1335,2373,-963,-2379,2060,-7543,-888,-5161,4257,-8242,9159,-533,8425,9997,-2360,3447,9847,8067,-282,-8623,7678,-569,1969,1497,-3540,-1035,-7617,-9609,625,5315,-5313,-5673,4330,-8585,213,3309,4616,-8208,5899,1025,4317,-7832,-2805,3353,-4428,8642,3313,3743,-4101,1368,1545,-1381,1281,7141,-4787,-5762,7782,4731,8693,-2011,3150,-1204,-8707,-873,839,341,2391,422,7378,7096,-5539,4382,-4027,3354,9465,-1153,-9277,-2952,-4452,-2641,1855,9305,-7883,6317,5850,-5855,-3979,5118,-7842,-8511,-7890,-2376,4883,5450,6971,-7308,-8821,6417,-3803,-2477,-3352,-3547,1056,-4684,-9766,9185,-4129,-9554,5569,6380,8139,-8408,2689,9994,-4263,6385,-8297,-8134,2977,3438,-6240,3014,-1951,-4224,-6384,2987,3341,7415,7723,9420,-2175,-2767,2430,8489,7423,4184,-7790,2563,-177,-4340,5853,-7354,589,-6887,-9506,7011,-4301,1421,-7697,-5040,1927,-1523,2114,4115,3944,-2385,-103,2228,-8433,9493,1622,-8872,-6907,9166,7206,-7012,1832,-2489,-4872,-3766,-8085,720,-9620,3571,-3412,-631,7283,-465,-9582,1274,-171,4007,9061,2209,-4016,4805,-256,1256,5068,9117,7538,-9421,6055,-1160,3638,-5425,-9296,-279,-3975,-3482,486,4748,-9959,-6373,7555,-6750,6675,-4874,3710,-1203,-914,-9725,-6308,-9271,4455,-2488,6285,-6281,2441,3105,-8328,-869,-1544,-4737,-4073,-1932,-5111,841,-1564,-1585,9882,758,-4346,6693,3205,-7263,-1037,-3332,5022,4843,-1176,-105,6867,-8187,6065,-1716,2207,-7737,-6490,-5963,-1091,-3630,-6226,5552,5840,6936,-7458,-6061,-821,-7604,-6358,6960,36,-8083,-5677,-5454,-5217,-9005,-6722,5491,-9339,3410,-3975,-5316,-5841,-7273,5206,-9534,9449,8717,2793,5895,-8940,-5592,8494,2870,-9512,-1821,-2339,3653,-7318,7289,8454,-756,-1291,2723,9866,4657,2295,-2953,3508,9103,8948,-7580,6000,5205,-2503,9944,-3860,-8308,2110,3198,-6804,555,-1639,-106,-8569,8915,1639,524,-4130,1225,-6664,-8434,-3296,-7055,6008,-2792,-303,-9698,7970,393,6552,-5545,978,6765,-4350,-820,-7187,6398,122,-8564,-1087,-6501,9521,-7424,-7049,-9719,-7049,3384,-797,-2091,-1410,-2488,8514,3789,-1553,7947,-9418,9282,-2036,-978,5278,-6668,-8179,-1394,9,-573,-6942,-3498,5511,-3055,6695,1795,-2651,-3881,9937,832,-7345,-7460,624,3397,2379,-1102,4772,5600,-1310,-2664,-3629,-5715,-1685,-655,2682,2848,-9989,-4999,-1214,6487,-8548,6251,4420,-9055,2321,-7750,-4491,-9309,-7967,-2146,-8619,-958,1585,-3714,-7224,9116,-6355,6363,4141,-5599,2751,-2625,6243,-2863,6460,6843,2697,-5521,3113,4594,-4299,-3646,9890,-6755,-5527,-8813,4301,7344,-3823,5143,8493,-5780,-2285,-5278,-7454,8491,9445,-560,2705,1641,-1102,639,1825,-6462,3857,-6601,6504,7389,-1830,-2700,994,2619,-1003,3763,9771,8594,-1344,-6860,-4169,7496,827,-4925,6741,-3094,1229,1154,3358,-4221,-9284,-7821,1165,-208,-2898,-8312,5530,-5147,-2306,3605,2585,-5043,-1014,8507,-9415,1146,5220,7928,-7000,-9034,5209,4024,-6256,-7787,6304,5180,223,7938,-8495,8502,382,-7045,-3004,3925,-2547,2656,5398,8759,-5240,-6425,-3149,237,-2928,8878,2154,4684,-2510,9529,-3077,8244,-2219,3143,-9338,1937,-5007,5708,7218,1336,2696,-9190,2960,-1322,-4599,-3596,-7295,2450,7742,2212,-9211,3180,-3942,-8869,7656,8982,-8214,-3810,-488,7106,-8965,-7931,-4588,-614,-7090,-8522,-7929,8790,-7345,9819,-9583,3009,-2598,6206,-1299,-5707,5173,8111,-7866,-3941,1867,-4788,8164,-8872,8031,8394,-8106,-5595,4150,9398,-567,-818,-2047,-3631,-117,-5151,-7014,-1422,-74,-3646,-3046,4052,-8460,-941,2205,-8827,-2076,5657,7179,-8409,9247,3465,9135,8873,-8995,6989,6928,-5386,9657,-2022,-5226,-2796,-2425,7564,8668,5724,5197,-8525,4431,-5445,5487,-2137,129,-1516,3122,-9218,-3406,2435,-4714,1475,8000,-3438,336,-8973,8570,-6769,28,3275,-4941,-9523,1065,3492,-5396,-8468,-5243,-8390,6013,-101,-4936,-6934,9789,-5512,5887,-7879,-1505,9315,9265,3524,-7675,1639,-1149,-6424,4933,7089,6722,-4747,3040,5682,1579,-7732,-4437,-9025,5564,3924,-4078,-3356,-8973,-5743,8330,9469,3373,4567,-5098,-7399,9826,2777,-5761,-7335,121,-8144,-3473,-8940,-172,-4027,9402,-449,8022,-1422,-7561,-72,4609,3839,8526,-4542,-2697,-8992,9234,366,2068,9501,4016,2347,6243,8249,-7958,-8727,-6980,594,8314,-7427,2282,4037,1452,-8300,-917,-6542,-2429,-3311,3888,1551,-377,-8034,289,4058,2438,7723,3477,-6721,7129,-9390,4879,3499,8839,9830,-370,6302,-4613,-1306,8543,-3347,-106,3572,-2863,2030,9045,6742,1346,-2786,-4058,-3900,8739,8799,2143,539,2236,9659,581,6977,1662,-3926,5253,-1677,-2784,-1334,4286,6255,4849,7600,1563,-7688,3099,3305,-3815,-9947,-2019,-9860,-2636,6685,4599,3227,-6348,8559,1739,-6466,-8987,316,7387,-7160,-3818,-9483,-997,6783,6598,-6256,2862,-6374,-7833,272,5896,-3758,7567,4669,8484,-3817,-8760,-1286,8521,-6156,-3050,-5973,7656,6845,-1651,2447,-1918,-2948,6513,-1072,5579,-2396,2986,-3123,7126,8388,9179,5606,-1756,5868,-495,427,1394,7557,-6796,9142,8542,414,-5934,5100,-7570,-5929,-4252,3925,-3593,5984,8814,-2153,9122,2501,2717,-3078,2009,-8177,8107,5979,-9756,-5808,9957,1087,4465,-6114,-7965,8403,-3912,-6026,8216,1175,7871,-921,-9150,1490,7373,-4289,-971,-9505,-8751,-3994,4344,-8096,9367,-5901,3531,611,-5162,9532,-3262,1859,3510,-4912,8874,-2880,4751,-1096,-8692,5813,8561,423,-3204,-1722,2608,-1481,487,-1347,5855,5758,4694,-7406,-3322,8796,-1955,60,4407,-4863,-4686,-5068,4819,-9934,7309,8341,-837,198,-2740,-3780,1513,1774,3880,-3121,2179,-5676,9512,9821,4236,-9477,4629,-6989,-9010,3992,9506,-7346,4199,-2328,-500,2860,7782,-4222,3541,5490,-6333,-5990,-9157,6757,6134,-5329,3143,-445,6785,-2379,-7232,177,-3579,4626,-2536,-6719,-8945,9991,2609,-8871,6603,8421,7708,5909,-275,-7033,-2986,2767,-1516,1886,827,8358,-7467,-5594,-61,-6226,-1695,2631,-7926,8227,4735,-5186,3920,-8111,8706,-1000,2787,7130,-4753,-6426,6595,-6868,-7664,-7910,-3583,9175,1931,8037,7048,8943,8367,-8652,3414,-3157,-7344,-5191,-7213,8633,749,351,-716,-2839,-136,9406,-5204,-6236,-6392,1537,-7373,-7079,5662,-969,-1229,5000,-5570,4724,-5106,5569,-2233,434,-9314,-8191,-1738,-2468,1952,1399,3716,4320,-6716,-1964,-7473,-6829,4532,-7081,-832,-7782,2559,5808,-7931,-7751,2637,2070,4792,2494,2345,-6529,1128,5375,484,1285,3943,9884,-4965,8798,9916,-9826,6906,-4171,-3844,-626,4384,-2785,-8893,748,-1426,7629,-8744,-2028,-2693,1485,-3719,-6291,426,2752,-1007,3435,-2720,-9717,9356,-7072,-8708,5942,-8709,1739,8732,7907,-1938,4283,4756,2571,-8572,8118,-1455,-6611,4872,2519,7905,6129,4516,231,-6385,-7119,336,6541,8458,626,-468,-3488,-9909,-9699,6504,4558,5880,5246,-6500,772,-5290,1516,2429,-9430,-2539,7809,5141,-3954,1256,-1683,6563,8034,3319,-4631,3857,-2123,1027,3112,732,-7845,-1787,9824,6627,-118,-9140,2094,1534,1224,8974,5907,-8968,-6696,-6704,-3230,7543,-7121,-2028,-3771,-1215,-7018,-9694,-9722,-3334,7287,7383,5826,-3464,-3885,6529,-8606,1669,-3238,1268,9596,-1128,-2997,-3328,-907,-777,482,-5189,-1326,-6971,8744,-2247,-2407,2155,-5715,-5095,2450,6316,-6099,-3570,702,8201,-4631,5039,-170,-2640,1330,6068,-3049,-7152,-7445,4944,-2924,3027,-6475,-6508,-8131,-1591,5817,-6754,-5797,8418,-518,5680,-8481,22,5603,-6906,-2649,4390,558,-9067,363,4080,4616,5686,6112,161,2141,-8538,7851,5410,-1861,7163,-8522,-1626,8485,6521,-9341,-7781,9169,9763,-3332,4396,5504,-4192,6141,-65,3013,8615,2039,5207,8395,4390,-7693,7249,-5835,-417,6088,402,3035,7861,-1095,2097,5114,-734,-5712,965,-9951,9554,3916,7250,8641,-3672,-4232,2841,1548,7259,3234,2770,-6091,1920,3477,-4400,9019,8880,-9875,-1479,6783,-5164,-696,3242,583,4360,-7676,7085,7404,3188,-7092,-8444,949,216,-5872,9829,4774,6877,-4271,1296,-7547,-6589,-7929,-9748,4517,5245,-7116,-8491,-6106,883,-6218,-100,3187,9732,-3158,8929,-2727,-8799,-5209,-1098,-7040,-9291,-1478,3028,205,-7002,2738,281,-4843,7207,-4504,-4779,-7980,-2578,5319,4893,-593,381,9311,7265,-4674,-8455,-8077,-7164,-9385,3566,5724,5295,6645,-9402,-8969,-8854,5702,-1205,4990,8422,-4740,-585,1084,9742,-948,7897,-8641,-404,-7864,7469,4166,-324,7764,-2703,9054,-2102,-4987,-4181,6498,-7686,4704,-1700,-7345,1957,8622,-4296,-6204,-4572,-6755,-5293,-1681,-7106,-1729,-9954,6442,785,-1736,8948,994,-4768,8418,9399,2752,9717,5120,-8656,-8238,-6252,-4242,-9781,-7926,3694,3995,8244,2701,-3757,8628,-3744,-4213,-1414,-914,909,6607,-445,8177,3483,121,3030,4957,-3217,-2644,-3877,249,-3634,5474,1102,5166,-7290,-1256,8444,-4193,-1529,6659,8538,7523,-2546,5398,4886,164,757,6210,3430,5388,3978,577,3481,-6629,2944,9115,445,2163,-8868,6960,195,9312,-439,-4399,-1513,-5077,7059,-4620,-2996,8694,-3803,4406,-7584,-9856,3174,2994,-5705,2711,5117,2910,9942,-1772,4282,1332,-3773,-5713,-6752,6967,9228,5796,2186,601,-9997,3295,4568,-3746,7471,3108,4501,7198,4694,-1896,1016,9946,3183,-2543,7310,2238,1465,-8205,5116,4333,-8913,-7944,-5926,6038,-282,-4351,-5889,601,-1259,1197,1348,-2314,345,-3341,9707,9007,-8501,-9733,9368,9866,-609,-8412,9773,573,6032,-8544,-8179,4531,-6617,8802,-5424,1787,640,8563,-4171,7796,4322,6385,-4898,8352,1091,6322,1631,-541,-7703,-835,3695,-2666,9116,6159,-8079,8349,86,1167,-1103,-5658,-7261,4450,-543,2094,-201,-1265,-9811,-8929,1842,7893,-9115,3572,-3987,1670,-9922,-7503,-3009,-2084,9452,9498,-21,7782,3907,8188,8350,-1629,4752,-995,-8280,-619,-5570,-3324,-3629,-233,3327,6829,1002,8624,-4786,-9012,1402,-800,-7772,1963,9128,-757,6050,1879,835,1769,6751,-1561,7573,2004,-7667,-4163,2981,9299,-8234,-6521,4480,9190,-9466,4448,-942,-7675,-9636,3,3243,-4062,-6136,-5033,-7280,1100,3327,-2692,5525,-9613,-1149,-8772,3586,1415,-9295,-6699,6953,-6682,9087,-9897,1120,2572,2759,986,-3319,-3327,-6953,-3938,-273,-3241,8925,-7682,-5066,5585,6724,7890,-5271,-7704,1263,-9187,9182,5222,-3050,-2538,3535,8153,-1774,-6133,2947,3864,3918,-2910,-9282,4113,7914,-4067,2490,-3439,-9970,598,404,-2048,6094,-5683,5052,2108,5052,-2038,9809,8294,9835,6331,-8402,4354,-3517,-3043,-9628,7547,9325,-8322,-9274,-5060,4809,7620,8795,7506,4763,-935,-6635,-1085,-5993,8920,9695,-3028,-512,-8125,-7906,3779,-8302,3134,-8586,2747,-8439,4008,-7371,884,5634,-6758,4474,8091,5692,5984,784,3142,3640,-4510,-9902,-9034,-1882,9665,4697,425,-8312,-437,-2380,6656,6014,-7311,9886,-1973,9864,-89,-9697,602,511,-3055,1841,-110,5670,-7513,1235,-5233,-9267,5660,-3256,-7773,-9143,5415,5116,4166,5054,9237,5271,2482,6128,5874,4973,1406,-5367,-7446,6283,550,-5685,2437,-3615,9239,-655,-4782,9071,-1634,-5578,-7476,-2557,-9568,-7390,6960,-140,4426,-8502,-7048,-6683,-6787,-3008,9952,6650,3100,3670,-6436,-3477,9322,3091,-9043,-2325,-441,-9910,8778,8958,-4246,4777,-7603,9558,-4125,-3003,-927,-7399,-7082,202,-375,6001,-6377,3584,5414,-2977,7928,2167,4260,-5669,3473,820,4474,6166,1375,8965,-677,3594,4870,-4510,6023,9349,-5836,-7877,-8259,6441,943,2094,-2564,-7694,-1065,-8484,8479,3780,9620,461,6857,3186,-5237,-4974,-9425,-3334,143,-4707,-2640,-2072,-8252,-7268,-2846,8541,6997,-5201,-1198,2493,-6609,-4730,-7242,-5287,3234,3762,-952,8791,-1121,-2084,5652,-8971,8073,-3705,-467,1575,-2491,-1710,-364,3146,2695,5713,-1587,3908,5830,1714,-2031,6277,-8050,7525,7603,4096,6765,-6214,-86,-4863,5700,-7958,-5911,-6334,3409,-1938,9145,4347,7131,5830,3369,-194,-6050,-8533,-1150,1294,-5147,-1457,-1529,8540,-6740,5403,1874,-6534,-1877,-8457,6741,5571,3842,4386,1402,3706,6701,-4174,-2261,6974,-7169,-6676,8777,8956,-7887,-7135,-4516,8,5701,572,-7996,9405,-9711,-7086,-3160,5616,1036,3309,7426,8463,-9675,8706,7833,-1754,-2322,9647,-1981,-5144,-6978,-6815,-8705,-4329,-239,5641,3047,6726,-2199,9345,-732,-8347,-7290,-9649,-8513,8464,-4156,-3970,2331,-7719,-4796,-4713,6453,1072,7613,-9471,6532,2614,1601,1001,-5657,-2026,-1888,-4927,-1132,-2377,-4577,-5538,-2392,-3579,3337,-8756,8596,-886,2955,-8210,7802,8903,-9886,9330,9887,-8906,-6026,-7469,-8855,-4607,-1118,4335,-4712,-1691,-1939,4242,5738,-2398,8482,-5323,4243,6167,-5887,-3553,6996,-6710,-6543,2506,4290,-3259,-3233,6970,-3371,-5395,-5741,-1870,-4690,-9968,-6180,-8306,-5288,-6898,1074,6983,5180,1701,-5175,4680,3583,-609,-7303,-3347,2351,-3833,-7594,-5570,6450,4963,-4513,-773,5551,3662,-7980,4444,-20,7487,-1068,-5193,4081,4684,-5268,-1819,1061,7492,-22,1101,-898,-4410,6909,8251,683,-1486,-960,296,972,4796,1954,-9029,-3981,-119,2587,-1113,985,-441,-8716,-4992,3364,-384,7387,-1958,6511,-4468,3802,5041,8387,-3512,4886,7866,7803,-5987,2001,3493,-8231,680,7597,-9516,574,-4629,-1799,-4765,9531,-6747,-8758,-3651,9304,7143,3215,-7372,-4292,-6498,1187,6145,1375,4225,-6087,7568,-1699,4924,6997,5373,422,7099,662,-1783,638,-9503,-9980,-7961,9096,820,-991,-5492,-8512,2984,6037,-3290,-2546,7075,-9468,3580,-3156,-6976,9758,-7525,8172,-6699,4594,-3271,9244,-7478,9175,-8417,-6998,-8951,-9851,1972,-387,4615,3494,-7584,8960,952,1050,4634,6961,-2710,-225,8110,-8144,-6104,-2215,5100,9560,1557,2400,-4081,-6706,1456,-1824,-8702,5611,5033,-4577,9998,-6733,-2392,4688,8120,3136,-1627,5817,-3788,-3078,-7069,-229,-4023,-993,6559,-8264,5503,6762,-6355,-2330,6585,-3809,8308,-1428,7667,3633,7046,7511,1656,4751,4187,536,-6076,774,9572,6706,-6680,-5134,-560,-3598,1967,8916,6684,799,-9834,-2296,8288,-6960,-2421,8926,3131,-3583,9163,-6452,-2731,3104,-3616,8773,-7527,9503,882,-4744,4498,3945,-59,8865,-149,-9726,215,7139,-3914,4174,8400,272,-9714,8013,-6730,-1163,5159,-644,-893,2037,-7514,5355,-5778,-3045,9941,4847,9117,-6950,6872,-2965,5605,-7089,8618,7248,1401,-7265,-8822,444,-8009,-3051,-2661,-1420,-5593,-8067,-5826,-3715,-6790,-2005,-5220,-7445,2000,-8455,5333,-7789,2136,8546,-702,-2119,6074,-3486,8269,-9670,8179,2675,2152,6127,-6403,-2232,6310,5946,9102,-4720,4806,-6122,2904,806,-5867,-3234,-9027,9398,-8068,4841,5290,7717,7779,4455,-7698,1916,5104,-5529,5059,-251,4236,-8645,-9242,-8947,653,3737,-7334,7142,5742,-7783,8,-7683,-8862,-8253,-1972,1193,3544,8569,3235,-3664,-1956,-1387,-1286,3124,-1188,9899,-2587,8187,4333,4286,-2055,7965,-275,-9143,8116,1345,-8810,7422,7735,-2022,-3702,-4748,1698,7732,-9973,1870,9382,-316,-5828,-6180,-8214,3312,-9896,-9813,-3603,1706,-6117,4360,-9582,-232,1317,-1291,-1964,-6640,-3539,913,5103,-5587,5051,3734,7554,-5189,-8801,8203,7757,-64,-184,4434,5865,4971,127,3756,3848,-9616,-2174,-6496,-8787,5133,6974,4939,-7079,3352,2963,-3711,-2959,5225,-9478,3369,701,-3475,7110,-7621,6902,-5992,5239,2263,3231,-8007,7054,7805,976,5326,-1119,-2643,7209,1068,-9920,-3395,7811,8659,7455,-3548,-8128,6032,4190,6153,2849,-904,7216,-2764,112,-3602,7722,-1993,-8823,9857,-2029,-6437,-2840,2844,6915,7035,-7493,4751,9237,-4771,9428,8093,-4423,-3652,1976,-9578,-874,-7265,-187,8953,3774,-9152,7620,108,-5599,2383,7757,9274,7152,1858,-9586,1747,8731,-5772,-8270,-6009,-2409,8665,388,7021,-7693,6912,-869,8673,7019,637,535,-274,6196,166,9267,3795,-6769,815,-4280,-8720,5299,1177,-6023,6792,4382,-6371,-9055,-4540,-6023,3281,-7125,-6723,-8626,-3770,3905,6956,5774,-9379,-8311,-1817,3277,-8046,-4211,4115,-3128,-7120,-9494,2968,2164,-9455,1652,-6479,-8887,-1146,-7827,-7439,-2054,4597,-2919,-3467,4010,304,-6709,3903,6271,-4546,-9981,-9049,-2777,29,-6814,8068,-1676,2220,4788,-3327,-5823,-2905,6201,-1112,5749,3306,3046,-6491,2349,-9317,-8369,6579,-1460,-3530,-9637,-2796,3685,-8989,8064,4008,2438,-2211,-2210,-4467,7038,-6690,3937,9344,3125,641,7136,7996,-780,-6045,1356,-2791,-5859,4035,-8951,-8055,-9609,-8835,4943,2818,-6482,-3162,4454,6308,-8943,8023,-8795,4465,1871,5333,-7393,-4472,8536,-2915,-1100,-9936,6293,-7583,9915,-9757,-4329,-5056,-854,55,4813,8373,-7087,7900,-5884,-2996,6772,-5353,-8751,6933,-873,357,5623,4551,476,6084,5499,-3591,-3909,-9890,8427,1487,-3457,9216,8561,-4806,-7938,4734,9921,-3177,902,-1933,5382,-8920,6273,-8778,4498,-4624,-2726,-3298,3366,7893,1004,2276,-1700,-2532,-5410,-5949,6470,2821,9142,4552,3411,5580,8121,-9605,8399,4852,-3738,-642,2518,-2252,-8627,-8222,5440,-2122,8935,-8287,-7711,-7807,-7771,8965,-6669,8879,-5626,-4221,-7819,-1514,-5615,5058,8527,2670,8265,6625,7850,6160,4832,7601,-3850,8069,5949,9598,-9320,-6849,-1903,5049,2193,1556,7386,-1323,2596,2013,-5015,-4769,7263,-1265,8579,-8297,-1704,-2746,-1343,4101,5944,-6478,-7926,-4360,-9849,8914,6629,8909,9064,-9296,-5924,5217,4661,-6412,-8300,-4103,-8042,-5634,-4135,4189,167,-2887,-3710,-2153,-7817,-2143,-5701,6431,8911,-4541,9773,-7086,-9343,3513,6533,-326,-1485,-1387,4698,170,8840,-1662,-1079,-7391,2272,4921,3146,2974,1532,7152,1975,-5682,1601,-1789,1853,-5966,8401,1556,3773,-794,-8875,729,1660,1547,1707,3936,-9441,-2613,4844,5431,-2069,-4782,9551,-5041,769,2515,5788,-5698,3583,6654,277,-6962,-2296,-5656,-6888,-1288,4507,-4167,-8640,-421,1195,-5053,-508,-9153,3472,-2985,-3217,9874,-9863,-4254,8124,-2495,9613,3249,-6548,-9545,-6872,-5185,-5965,-9053,-311,-1179,857,4705,-5411,1186,-5386,3552,-6759,-6682,-5203,-9360,4743,4508,7574,-1513,-7575,-4686,-4736,-2785,-9802,-8981,-3436,2377,-5911,6339,1848,1798,-9445,-306,192,2926,5187,-7051,8482,-8276,-4470,6585,-2617,1362,-5817,2233,-3777,-8399,9352,-6409,2593,-7257,-8911,-5211,-670,-7190,-3530,4459,-157,6117,8187,9351,9358,-104,-9147,-3818,1487,6252,4986,9413,-2660,3233,4900,-7861,5319,6702,-255,-7076,-6957,-8076,-7793,3123,9286,-6991,3681,2418,-6361,-5078,-4047,-174,-5326,4560,-8241,-1079,7286,-613,-3866,2150,4561,1236,3100,-3643,4305,3370,-509,4220,-1822,3314,-4795,4260,6215,-3343,6221,-1701,-9958,-4896,-6961,-2986,8854,-8768,-4099,-6567,-8061,-3824,2834,6759,-7853,-7407,-7856,3308,-7654,9151,5558,3656,-4406,-9219,-7838,-9541,9785,8778,-2755,770,6005,7214,6452,4130,886,14,-7303,9086,-8926,-9165,-4955,4734,-3452,9497,3326,2218,-2036,2940,-5359,-2772,-6381,-6369,-9794,741,-9234,-4876,-7097,3457,4971,8183,2056,-8458,9045,-9562,7464,-1944,6188,-9028,2349,628,3035,3871,3501,9485,-1207,-469,-6321,-5697,8167,-7462,3338,-7086,-4705,-7279,8860,9018,-225,-6439,5866,8773,-1624,-9201,7235,-1790,-6622,-9299,5368,3979,8856,3275,-5256,8918,-660,-1924,7713,-2553,4235,9860,7917,-8013,-5091,9302,7721,8736,-8626,-4561,-8446,3709,5490,-3900,-3094,-4079,-4116,8070,-7293,-504,-743,6393,-3940,5538,-315,-7324,-7108,-6224,9888,7267,9603,7249,4310,6138,107,-9401,-922,-4409,-3912,6912,397,5707,3935,9005,-7829,9732,6450,-5451,-2037,-8937,6420,5774,5525,-6186,3315,1534,285,-3093,2042,-6710,-9188,-9052,6227,-2960,-1247,-78,-9482,4402,-4655,-279,6149,-2209,1218,-3706,4279,6307,-1288,8232,-7630,1201,6,5632,-5440,6866,5009,6913,-7556,2317,7214,4534,-7555,471,4350,878,-9594,6971,479,-7667,9766,-6842,-4594,9229,2424,-909,-483,-2879,-9311,7565,-1318,-7861,-5902,-4499,-8681,7974,7789,3404,3748,6360,-3998,-9248,-3989,-6715,-3340,-4133,-8891,-621,-8918,-9019,1512,6440,8016,-1333,3035,-2082,-519,2249,7055,8454,1189,7082,-4173,-9611,3342,-3514,-8088,4296,3127,-96,3255,-2494,-1625,-14,-255,-4760,7212,-2651,538,9932,2924,-8064,-3574,7878,-5874,-3561,-1813,1177,9722,-8864,-1797,7502,-9571,5392,3603,-6506,3176,7949,1473,1421,-8299,-9213,9831,-2600,-8510,1535,-1344,4114,-648,-5083,5420,-9590,538,-1835,-151,8041,-3677,-6243,9804,6073,4203,-5273,5734,3753,2817,-1402,-3116,-5112,-6649,-3929,-6942,4516,-6447,2392,-6053,-7979,-1056,-1572,2353,-9370,5889,1618,-4255,-9952,1092,8771,-3056,-8022,-8393,-5920,-2936,-9722,-4330,7259,9067,-2947,-4117,4299,-3862,9202,-7353,112,-5556,-5405,7037,-9735,5436,5982,-1064,654,5186,-7991,8862,-9517,-7518,5908,5496,-4720,787,4033,-258,-3253,-1746,1161,-1688,2486,-5272,3406,3809,9605,2103,1876,-1142,-2120,-822,-9515,9016,-9347,-8769,-6013,8318,5699,3070,9731,-4882,-2345,-4855,7641,-6408,3796,-1407,5579,4502,9379,-138,6356,3265,3718,7052,2598,2006,543,2240,6898,3884,1859,-8752,-567,-4677,-6780,-779,6858,149,594,1965,-2587,9271,5931,-9956,4950,8934,4520,-4491,-5818,166,2369,-8385,-1910,8043,-2315,8949,5919,-2377,4587,2048,-3114,-2245,6524,-8301,5770,4206,-622,6011,-5669,-470,-2318,-3094,9986,-9701,3051,-9021,2468,3159,9370,-3105,-528,-4934,-7882,3393,9210,-9242,-4864,-812,-5564,-2371,-4309,6685,-4594,6862,-3069,756,-7951,-3917,5963,-9631,9368,8977,5566,-5581,-2064,-8883,-6098,-9342,-4527,3885,-4117,-3144,523,3825,-2683,9250,-8207,177,-5179,9498,-4327,-6967,5123,6899,7090,-4875,6907,-8738,4483,-669,-6692,2517,4421,-3372,-9339,-2787,-8185,4615,8974,-8068,-6261,-3353,-63,5952,-28,4600,-2568,3852,2951,-1173,-3541,-1027,-3086,2848,6482,4125,-7501,-5812,4072,-2618,6804,7983,-9665,-6114,-4985,-4651,-7180,5718,-7789,7451,3297,6687,-5542,-4417,-1674,192,-5347,-3030,-2758,-5276,7319,3844,-2643,-2278,6652,-9867,1309,-1960,6933,6800,4961,9034,-5156,8556,-9267,9700,4005,6842,-6258,-8372,-917,-3308,1964,1207,-3796,4128,-3491,-1700,7775,-1726,9193,2735,-6309,-9022,-3964,6838,-9353,-2750,-2070,-2978,-9394,3544,5109,-7206,7674,4265,7697,3725,-5696,-6996,-3148,-5796,-7519,3081,-6858,-2408,-7278,1523,6721,6158,-9754,-3228,7379,-7561,3562,7827,-9053,-3362,4456,6955,-2781,-8423,3374,8137,9173,-2134,-5871,-571,-1421,902,-4818,-3672,7869,6003,-7421,-476,-6003,3667,4596,-5111,-9371,-607,-1687,3230,3095,8168,8863,4298,9969,9881,-7673,-2139,-1031,-6866,2169,-2529,4423,1984,1263,9247,-4184,8397,-6038,-4499,66,-7007,1564,-5743,-2595,-3099,919,2739,7451,-7175,-708,-4962,-9901,-8903,3301,-4738,-1290,2558,7971,2113,-1353,102,2471,6487,-4216,3564,-468,-2858,7446,9306,-9885,-9731,5324,3657,-5518,-6889,8241,-2929,7787,9440,-915,-203,4184,-1627,-8876,-6737,6530,-897,-5187,6444,9071,9462,4175,-8126,-5410,4831,8273,8144,9607,-4249,-5514,-7835,2944,9647,9248,-3622,-509,1428,3824,6838,9378,8065,5311,2878,6411,-486,8205,-8280,-7702,7705,-821,2996,2013,-6943,9600,1684,1578,4039,-6637,4363,2597,8412,-6800,8437,3060,-6069,-3190,-7459,-2662,8051,-5305,3115,6512,2037,9148,-3615,-6870,5578,6661,7963,-2451,5174,479,3414,-4419,-767,-6777,-1472,4066,1488,9043,-8463,-8308,-8469,-8202,130,6980,3784,838,4571,1895,4560,4881,-3778,9339,-5670,-4713,5008,-9697,5034,6179,-4736,3409,-6645,3316,4358,-5521,9841,-2302,-8864,9315,-5773,-9489,7482,7738,3385,2026,5887,-8359,-2949,-8361,-1173,-4059,-8566,-9683,5794,-3887,-9114,-1485,4775,5644,7709,4523,-3496,2833,1357,-7244,6530,-8058,-6151,1599,7249,-2966,8744,-1859,-4397,4887,1574,4337,-8980,-4868,1182,3250,-9391,778,-619,7465,1583,-291,1687,7771,5898,-9776,643,7724,9000,-9479,-3426,4511,-4575,3244,1037,1448,-5111,-5454,-7094,-3048,-5932,5077,5554,-9925,-3303,-7329,-7938,4890,-6199,-7773,-4808,-7689,-5452,5480,7029,-1563,-3098,9566,5531,5844,4197,9854,5994,3400,3027,-1282,-7816,1492,7090,1297,6144,-6335,7899,5526,-6686,-8072,-1593,-3963,6476,-5959,9936,-3796,8478,9079,-3594,3688,3219,1740,-6898,7378,-9602,5945,7410,-3977,3941,-8358,-4736,-9004,-4758,5156,-3822,-6955,1736,9644,-5300,-2016,6484,4506,-8314,-570,8559,-250,-1423,7405,-7391,4298,-5090,4190,-7007,-5653,-3732,-2946,-8241,9859,2951,-1912,3443,3198,1591,-8167,4945,-9900,-1510,7665,-9286,2156,5288,9896,7910,5673,-6736,-3556,-3812,7307,-5357,-940,-4001,3368,-9821,-7825,9418,8111,-4566,8097,-5488,9818,329,92,5301,-5836,-6165,-9044,-9135,-1461,708,-769,-5398,-295,-7048,8672,-8670,-1768,-4649,3651,-7479,8556,-2250,778,3741,8505,1182,-9734,-5417,4166,1908,5430,-1071,-5894,8798,-4211,-2233,-1882,2797,-3537,1914,5576,-6819,1144,282,5685,3658,4620,9244,-6162,-61,1765,-5987,2118,-7791,1557,442,3141,-1635,-7819,3980,-808,-9104,6768,-7570,-2683,1739,-1230,1278,5290,4249,987,6191,-3235,2192,5332,1144,3253,3665,-9307,-9674,-4523,-1641,-9070,9840,-4707,-9837,6525,8705,-5730,-4170,-2924,-9911,597,-1147,-7170,-6882,8385,3699,9624,4357,3359,6166,-6615,8391,-7899,-3759,2733,8014,7444,-4113,6803,-5526,9956,-6820,-7290,-446,-6093,-481,-7724,8144,-1472,8644,-699,-161,3608,-9417,-6020,-7421,2640,283,-9726,8756,-968,9207,-3181,-7757,-6930,-4114,1127,9800,-1134,-9077,5593,7634,-9286,9920,-6487,-3457,-8556,-1635,3010,-3475,-6151,-1665,8461,-4970,-5948,4682,-5649,881,-8120,2846,-5949,-461,1123,-4195,4215,-9115,-9960,-6349,-877,-6935,9574,-9579,-4447,-6050,-2146,-8021,-5124,-2397,-8173,-7822,6237,-7362,993,4712,5773,-1344,3191,-5669,-2087,8455,-5552,6505,-435,2224,3451,7274,-8125,4105,2264,5191,-389,-2835,5987,2320,3552,-7712,8519,-7533,7387,-7578,-888,3827,8419,6960,-4783,9527,936,866,-2824,666,-6948,5162,7664,-4202,-2407,5421,-2097,-5030,687,-2828,-5051,6000,9611,-2934,1133,-8396,7281,744,-5517,7581,6569,-3164,-8898,8339,3641,-2806,5559,-9397,9766,-1723,-9896,3850,6685,-7599,4543,-3711,-8584,2922,9085,9548,-5967,-1750,8072,-8512,-1105,-1111,-276,3658,-3868,-2746,-7408,-7601,-5428,-1708,2334,2766,-1820,4816,8448,-5552,-8196,-9536,1637,-7169,-9370,-593,2089,7895,680,-126,-8497,846,8704,7230,-1421,4434,7060,-6002,-5106,-6807,-2124,-5984,6221,-5604,-9448,2534,-9632,-8752,-4226,-6381,7741,-3746,-1723,-3577,612,7853,-826,-4841,7904,5397,-4432,3169,6472,-8484,6954,-5689,7618,9557,-1928,-6152,-2902,4394,7004,6338,-1761,5445,3154,139,4447,-2959,139,-7113,-757,-2683,-6546,6824,-1829,2692,2055,4833,-1580,-8285,1483,-3019,7388,-4044,429,7493,2847,-3244,3045,677,-4605,-3459,-2633,-1770,-2127,-222,-7222,-571,-9370,5982,-7242,-1083,2099,-340,-6257,-3430,-1436,-3836,-8893,-4338,-9281,8733,6115,2700,-7904,1278,-8919,-8423,-1097,-7465,-7197,-1682,7362,8330,4862,-4729,-6661,-4714,-4488,-7300,-4385,-2171,-4774,956,5620,-2219,-229,4297,-3727,8866,-5126,459,-3165,-9566,6751,-8372,9576,-4113,3748,7700,-4094,-8938,2734,2498,-5249,-8881,-6385,5246,9947,4100,-6252,3349,-4688,-3305,-6778,-5971,-6422,-773,145,-7204,1022,1199,-157,-121,-4802,2227,-3138,-1217,4993,-5137,398,-2521,6418,4853,-435,-1883,-3953,-6186,-6646,-9820,-3621,1918,3343,8546,3,-3299,802,-804,-4118,-5407,-4678,2411,3794,5285,1174,-9824,-5428,-4157,9026,-8769,-9356,6196,-803,-5364,-1989,-6744,-4110,-9800,1254,7405,-4754,3583,1239,-3178,-2127,2912,5527,-1965,3032,-7633,9995,1402,-6069,-3062,6539,9705,-6515,-25,822,-1820,-947,1055,3629,1864,4031,8750,2867,-6630,-8690,-8707,4758,-8803,7802,-1568,526,6334,1315,3577,-4677,-8326,8887,-4345,2345,-1486,7763,7476,9870,8459,2954,2456,690,8960,-2641,9104,-4161,6949,2951,7520,4861,-9955,5574,-755,6233,760,-2773,-4144,2639,6051,-9888,8724,896,-3989,-1280,9791,2499,4410,9240,-1255,9652,-3061,-2309,7509,-8246,5875,3317,-2443,-5274,-9573,8009,8608,9676,-5940,6714,702,8280,4927,3886,-9695,-5094,7696,-2098,-5258,-7931,-2933,9386,7906,8320,4751,-1120,-3432,1661,-153,2611,-6551,7892,2588,-7248,3451,4337,98,3249,8391,1027,6566,9912,-7423,-8432,-9448,-3453,6906,-7981,-9812,-6782,-6971,-6914,-2320,3288,-7086,-1947,-5011,7005,-965,-2279,8510,342,6718,6837,4695,-2157,-1300,-3388,-7314,-999,-7837,4953,-9166,1293,-9708,-267,4467,8693,5377,4528,6613,-4743,7898,3678,7055,8563,-1214,6878,-3968,6198,-1224,-1491,2785,-8518,-5213,5830,4423,8769,5412,1451,-5614,-4345,-7716,8790,5020,-2331,-8243,7968,-9669,-9127,6886,-5544,9103,-696,-1039,9694,-650,-7788,-7797,-2149,8997,-3144,3897,9933,-4228,-6376,-3688,-405,9955,-3380,759,4908,6571,9647,758,-652,-4633,-5026,-9342,-5178,-9603,3968,-8066,-4236,-9754,1265,5531,3260,2487,3203,-6004,-2125,7371,4958,-4948,6017,4416,-1986,-303,-9738,4573,4158,5644,91,-4364,-675,6699,281,9877,-7978,-4083,-2502,-8578,-6028,8855,-6250,9706,-9810,-5935,7377,1263,-5029,-3334,-772,-6253,4983,-3879,-4666,7229,-6029,-9,-1208,-3382,4959,6286,-2149,3981,-6710,-2131,3914,-1471,8776,-3048,6989,-6911,8381,-2953,-2421,8884,-8436,-1500,8489,-5864,-9210,-931,-6758,3441,-7903,1849,-5153,8750,-6415,-7654,-5605,6515,9988,-4674,-9217,7502,-6959,631,7585,3470,6127,-112,352,-4587,-9653,2583,-2533,6000,-3569,-9838,8260,-2106,9742,2601,-3712,-2635,530,9546,-4754,-2494,8126,7704,3360,277,-8247,953,-5738,5959,-5757,7808,6217,818,-3316,2891,3981,-9724,-9312,-2782,4020,2891,9350,7153,-8871,-1311,8767,-353,-6802,-245,-6231,9557,-6226,438,8946,-2564,-3486,-7507,7025,-8040,-750,-5539,-8633,6510,962,2488,-8136,-8247,-8145,1256,924,-7137,-9093,7408,7786,-9998,-3535,7504,-9509,-3562,-9217,9589,4014,-3580,4368,4645,4576,-5846,1949,1408,9039,8705,2867,-3939,-3161,7128,-5082,-8050,3420,9331,-7084,399,7295,7096,-9064,-4059,-710,-924,-7509,5259,-3334,7039,2140,-7090,4379,-7987,-3123,1276,-1900,-4405,-777,6985,-1635,662,3528,-3872,-2697,1593,8273,-8640,8189,8776,-6693,-2465,-2323,-2667,-2930,-7925,5846,-3567,4573,-7444,-8100,-9282,-9092,-4835,8449,-5392,-1812,-6107,-4408,2089,543,-8332,-6407,-8052,9473,934,1200,7396,4430,4921,3428,-5110,-3909,7331,3095,-6771,8563,-4078,-6358,328,-2607,-6726,7190,-9621,-4656,-8341,-9216,-4997,-9997,-2795,-8393,-7294,2521,3543,9253,-3942,5020,-4298,3805,-5893,66,-1628,6065,-9432,6300,9572,2100,4221,3067,3856,7249,-4925,8082,-4154,9230,-2589,9189,-1414,9513,1473,-1128,6371,5862,-4677,1840,-8760,-2461,3933,-4113,-2897,-7621,-6680,3196,9304,3646,-977,-1490,2612,3323,8922,8529,-2564,-2512,-8798,6939,5124,7599,8530,4532,8447,-2629,-8304,-9130,-6669,2145,7397,8606,8863,-4547,-2855,3876,6456,-4661,2208,6670,-3974,-2486,2942,-1325,-4938,-2758,41,6211,5166,5108,5187,9622,1817,3192,-8461,-7989,8569,-1617,-7832,2320,187,5673,-660,4992,-8809,-1318,-1500,-8156,-9263,6979,9834,-206,7923,5542,-2920,4564,2216,2166,-9153,-8991,8652,-9157,8963,5510,2076,8877,-879,-5089,-8990,-2420,2064,3264,-6841,-6398,229,-8557,-6296,9627,377,-7930,8110,-8526,-2976,2761,6953,8502,1314,5671,-6482,1492,-2844,-1357,6627,9706,5452,299,9650,-8642,8444,-1963,-635,356,-3317,-2094,1857,7174,-1818,6837,-3702,6504,6079,-3690,-5628,8778,-8790,-1283,-6433,5309,-2892,8294,-4616,6962,3640,-5739,-2812,-9562,-7282,-2715,7334,4242,1142,-3980,4071,-3375,4245,2687,4717,-1316,774,8959,-6980,1421,-5017,4074,-374,-6579,-7122,7095,1330,3144,9783,-729,-398,-5052,-556,5231,7974,7343,-2172,-9755,-5481,4919,2784,7944,3058,6479,1189,4606,7114,6353,-515,7637,646,8315,2661,3752,-9180,3393,-4969,4082,9534,9470,6437,1009,-7748,8371,4063,-6280,4982,4171,7668,662,1777,-8559,171,-9064,5153,8669,-6855,5035,4367,-5033,5228,2381,4800,5185,5552,3442,-9866,3051,9135,-9453,-3947,3562,6309,2998,4712,6161,3179,-5757,-5225,-1154,6553,-8370,5069,9402,-2331,7181,1421,1498,-2902,9764,-7842,7773,-3036,1658,-4017,6060,3655,3089,-7852,3884,5318,6833,-3071,-3058,9208,-9353,-7509,9835,-8095,5584,-7750,-1258,-2135,-9564,-6328,1335,-6338,2847,-8163,6397,-534,-7309,-2662,-9845,-8627,-9425,944,1632,-286,-5096,1649,9400,-4181,-7320,2591,-5804,-3591,431,8889,9154,-9423,-425,399,-6461,9161,-7785,-8064,8572,-762,-5099,-2884,2160,-443,5104,-9199,-9491,-5297,-2868,-3113,1631,-6110,-6163,6026,-5239,-7355,-6658,-9594,3579,8996,-9850,6278,-3616,5921,4534,3925,-4378,4200,5794,1419,-6895,8608,6147,-9401,5217,-6658,1463,3671,-4492,3207,-8376,-9056,7565,7743,-2050,3778,-6468,-1059,-6285,8924,-8666,5602,-4783,7723,2298,7717,5518,7228,904,5140,-9601,9885,9112,-6761,-4257,-4802,-3491,-5582,4585,7446,-9468,150,-1844,2168,1590,6403,-7516,-2907,240,-5844,5246,376,2897,-7047,-6554,2245,7131,-9042,5873,-5747,986,9329,-5762,-1145,7950,-2406,-128,-4976,-4319,5812,7678,8642,4408,-4521,-4967,2180,-6000,-4609,-6708,1677,-1730,7024,7836,9342,8621,1435,1337,8165,-1409,2157,6170,354,165,-7384,-8533,8864,-5718,-5365,-9451,165,3642,5632,-3809,6680,3055,-9081,-8614,-8114,-9869,7134,-5077,2293,4594,8318,-8077,4241,8664,7374,-686,-6939,9758,5486,3381,15,8751,1936,-4458,-8677,3814,1923,6240,-4833,2969,-3750,-2272,3629,2084,5919,-5527,489,6421,3903,-681,617,1701,1766,-8589,-8906,-2950,-4037,-1652,-9533,2972,-2523,2289,2800,-9868,7666,4701,-665,6401,9079,3160,-6927,2971,-1692,7920,-4379,-8845,-173,-5276,2236,-9924,5313,-7237,-1274,-8418,-4087,-7286,-743,-9054,-4762,-3172,1056,4142,959,-8778,-4870,-5585,7959,6467,9844,-1921,3123,-6658,9077,-8169,9296,6447,-7033,7220,-4699,2148,-8017,-8290,-9950,117,-2478,-6239,-7350,-5711,-5377,-3885,8740,9776,-6691,-1735,-2527,-2844,1286,-9646,-9456,-1608,925,-5773,-8960,214,3572,-8852,-4192,-1010,-146,-3983,-1590,-4908,-5530,-5417,3779,6078,-494,3232,-8270,6794,2319,-8778,-4781,-3446,-5903,9779,6902,-923,4850,6767,-1508,9134,9014,-8410,2419,9144,-8976,6191,2606,-7155,9349,-519,7896,4213,-1358,6393,7805,-9699,644,9229,8997,-4394,-3068,-2602,-5473,5769,-1464,-8298,-2241,-2066,3486,8675,-5807,-5083,8000,5744,4494,5783,-5991,-8745,9748,4153,-6591,1046,2880,-5323,5901,7937,-2530,7909,1357,-8799,7038,-8631,7179,506,-7811,-4319,3260,-5579,6278,8062,-286,-6648,-9187,-5496,5108,-9258,1242,-3747,-2588,1305,3351,-6055,-8686,-6226,-6653,3986,-1052,-4906,3501,-730,-6141,-3641,-1975,-9741,-2085,-4952,-2882,-9330,-230,-3915,3057,8201,5062,9230,-9996,6497,-3307,1600,1035,1422,6253,-6172,8231,2320,-6093,-7344,-1486,1575,-6560,2206,-4825,-4262,4947,8829,-1341,8977,6125,-7952,9425,-7942,-4641,-6287,-5203,-8896,1544,2172,1979,2317,3567,-5069,-8768,3052,-8152,3198,-3652,2186,9692,3839,-5882,9943,9864,1883,-3275,9359,-6274,-6673,4358,423,-638,-4112,7435,3088,-7386,-8037,7353,1695,2797,-7669,5341,4281,-6750,-1622,812,812,47,-7181,8115,-1908,-2531,5675,-4950,7043,-9988,6927,1067,3282,-861,9371,7720,-9481,5195,6893,-1113,8962,5500,-1434,3008,5539,4776,-3927,3555,5963,-7148,-6404,-2724,966,749,7892,-382,7730,3190,2031,8858,4168,-1630,-3028,-3079,9902,-8872,140,-5858,-3257,5880,7137,-7590,-9964,-2096,-6432,2723,8013,-439,4212,6955,3220,4632,-4780,-3505,5676,2073,1207,-1622,7312,-2072,-4566,3299,-8512,8942,-7427,-9303,4691,-6527,-7891,-7342,7477,-1402,3257,-3207,-4006,-8205,-1719,9013,-7405,-8363,-4195,-411,6859,6292,-4096,-3382,6473,-8965,-6905,7000,-7167,-2991,-128,-5222,7250,9056,8039,6806,-7898,-3732,1071,-1346,2382,9089,-9721,-8386,-5867,778,6318,20,4276,-2515,2659,-5585,5872,9134,2854,-9964,859,4343,-3954,5503,6911,1186,429,-1752,1330,-6152,6166,1580,8109,8159,-4646,582,-9198,3686,-5993,-7827,-7854,3090,-2907,-3397,-8114,-7095,521,2073,-2968,5736,2792,-3315,8433,-9445,-3720,3403,2896,1991,289,-9399,-9795,7982,109,6265,2551,709,-7901,-4564,-2852,1325,5432,-2111,8894,-2226,-7147,1577,-7725,23,4555,-7576,7314,-3008,1288,4601,-3928,-3,-3133,-6374,5848,8170,-6884,7316,-4826,-3132,-7237,6194,2452,2632,3009,1970,1908,-5722,-8526,3483,1330,-2185,3817,-2095,-3115,4239,292,4003,6814,-5826,1662,-4541,7411,-7652,3920,-9500,-9469,-1075,-8060,9754,-1029,-2714,6139,155,-8194,8797,2490,-5687,-7374,881,-9216,-8803,-7266,-579,-9530,-6131,8658,-2626,1010,8150,4167,-8241,-1474,-1865,3715,8047,2158,7718,7790,9105,9064,4558,-8872,-3096,-9510,2720,8201,5360,1395,4418,-3709,1780,-4521,-6676,6492,5116,2432,-9994,-3271,1885,2259,2904,5199,3630,-2769,-5759,9542,9425,8761,6719,240,9348,-3069,-9827,3378,-5129,8791,-4923,-8047,2661,7982,-8697,3567,-2663,2343,-6093,213,840,4574,6448,7982,-6522,-4596,-1009,4781,-9845,-8283,2536,3510,-2731,5811,2843,4298,-57,7307,1789,-5650,-4715,-7861,3972,-1398,266,-5305,-422,3542,-3694,-2616,5938,-7409,8011,-6399,-3766,6589,1307,-5955,-6756,2443,-4990,8680,-2127,-7601,7789,8732,-5861,3196,-3134,3323,-8332,-243,-5378,6672,-5590,333,-6407,2482,-5142,-380,374,3233,696,-843,-5639,-3689,-6837,-5641,-4174,2409,4096,-6071,9110,-8786,-7028,6765,2370,9747,6059,7162,-1077,-4127,-2661,-8009,4497,2524,-4605,-2358,-1968,-3029,3993,3688,-8907,-9836,-4356,-3768,-3178,-2484,-471,6715,3233,1502,-9681,-6759,2400,1126,-685,1045,-9185,3840,-4048,-5646,-4789,-3952,7291,-687,-7478,-4651,-2760,-8782,4230,4320,-7706,5813,-909,-7791,-656,8481,-7421,-6225,-864,-2798,7478,-1806,6725,-279,-6301,-7205,5147,4321,-915,-2902,7280,-5172,-9013,-1882,6280,-7638,548,-4226,-2130,1391,4500,4192,-1820,8908,-4531,-3722,6735,5445,-6440,-7972,318,1915,-3638,-5552,1614,-9567,-1570,3864,2214,5279,731,-2473,-8495,-7177,-2082,7405,5513,-8767,-6483,2,9782,3103,-6348,8616,2314,-9722,-7722,6304,-9185,9924,2469,-7968,-6554,-5030,-6574,-8798,3350,5340,-329,4426,-2431,1554,1973,-1245,8849,3511,-6489,5507,2226,-3277,-879,-1879,-5505,1008,4568,-3718,7064,3952,-8984,1257,-4,-1061,6629,-8706,5594,-6373,2232,7349,4611,-3973,-1376,9607,3640,-4849,-8025,5976,-9368,3449,4065,-5759,784,-1603,9762,7765,392,3778,9379,8977,-8610,4020,6964,8698,4821,-5226,4982,-1339,-2616,6403,-5715,5941,9297,-6488,546,7533,3819,-7948,-6255,8528,-709,6015,-7697,-3145,-2152,9393,8306,4054,-3280,-5849,-1466,-4826,-8646,-5541,8613,5062,3338,-2605,6914,8490,2843,3793,1070,-2518,6178,-613,-3488,-9606,2279,-3226,-594,-4380,160,1494,-3944,-3542,-2922,7187,5854,7711,-7955,4452,-7568,6274,-4801,6213,-5849,8254,-7005,4793,7791,-2377,-2934,-7314,7997,-9437,5052,8025,-4811,4749,7539,-7022,4052,-7223,2145,9021,-3526,-5994,-3373,2496,-9916,8035,-349,2112,9740,-7940,-5183,-4602,4408,-4877,-5493,2049,2973,9429,-7761,-1653,3517,-9610,-5526,6367,-3975,-8274,9751,-839,6569,7841,-6069,5688,-8222,-31,-3483,-6806,-674,6468,-1638,-1066,-2260,-157,-4871,971,2955,-3108,-7465,-3156,-7609,-8526,955,-5536,-4373,5973,9754,5137,9866,-1436,9563,-2097,9515,6498,-1526,6431,685,397,-5435,-6438,1671,6117,-5195,-2847,-9798,4668,5119,8892,6097,-4502,4403,-2005,-6203,172,8801,934,5912,3031,2138,7729,-4118,5808,-2745,-5486,-691,-2890,-4403,-811,-8916,-7895,4199,-4,-2271,5403,8303,-2128,4432,-2569,9467,-3800,6953,-1436,-5103,-9259,1952,5093,6667,2588,6185,-8793,9113,135,-5108,928,-7414,3866,-875,6793,8031,1404,2718,-7492,9963,8328,-6659,6781,-2127,-8491,4347,4504,-9153,2302,4516,758,-9166,1000,-2342,7551,-2680,-5087,-846,5712,9041,-3347,2733,9238,-3179,4153,3107,4862,-1100,7088,-6800,-4021,6996,-911,-4897,-5240,-4782,-6562,-6692,-2677,-1586,7955,-9895,-7044,2052,4471,-512,4045,8968,-9345,7610,8441,9195,-916,-2397,-6211,-2934,-891,-8951,4219,6842,-5425,3503,-6581,715,-7972,-7761,-6886,2524,-2508,-3272,1799,4194,5617,8999,8536,2519,-3036,902,-8311,-9253,-2440,-9003,-3301,3258,-1847,7419,5197,858,803,-7166,2466,-8809,-5417,1861,-3322,-2762,-8945,-3709,7748,1756,6062,-4761,-2888,-8840,-4589,4594,-525,8523,2198,1084,5417,3411,-3166,8108,1734,4136,-9926,3517,-3782,-1125,2015,8057,6463,-7737,9225,-8125,6580,9656,-944,-6278,-8787,3213,4662,2646,2165,5278,2702,-7673,3783,3936,-7128,4637,9588,-9889,8477,-8873,-2130,6770,-1908,-7783,5852,-5974,4180,-5455,9161,-8758,-5348,-6875,443,942,-5059,-1791,38,-7429,-9168,1434,6174,-6734,3215,-8513,-7637,-4644,-5544,-2749,-4810,-2404,-5333,-8086,235,-4205,2897,7665,-7377,-3490,-1142,-3186,-8358,5289,7902,-2824,2320,-2547,2284,-3480,6928,-3007,-9524,2121,-1407,-4992,122,-1921,-4829,1189,2660,7460,-4684,6414,8647,-1322,1711,-2817,3234,8262,3020,-1564,-4014,-6892,-9443,2538,-4652,8530,-7299,-6173,-7829,3616,-5887,-6386,849,-4288,-9218,4745,3111,-3781,-6465,3947,-7397,5363,8193,2724,-7796,6782,8709,-4418,-6448,2592,7649,-1553,7002,-1815,-6817,-2236,-2226,1676,2870,-7079,-9369,-5706,1365,1276,-8515,6097,5137,8570,-7929,-881,-4894,6464,-1685,6249,7272,-5770,4849,-2681,-6479,-8538,4614,1201,2437,29,9079,6209,-209,-7087,9284,8026,-9103,2839,1921,5763,-9669,-8509,8732,367,-4407,-8445,-4741,4851,7862,7818,-2643,-7359,4909,3970,-9314,-8119,-753,5282,-5869,-3152,-7631,4855,-5074,-4442,8239,6638,4350,1459,-5068,-6573,1972,-4393,-7331,-2577,-729,-4845,2017,7011,4364,-959,-8149,-3922,7678,-4227,-5046,6483,-4297,-5733,-7608,9142,2528,2213,-2827,8303,-1724,2798,-7801,-8774,6513,-7679,1161,4154,-8668,-4744,-4041,-9588,3369,5695,5018,2958,9525,7000,3892,-9197,4464,-7669,5937,6974,-3932,-9750,-7769,6549,-8262,1917,7484,4856,-4708,7455,-5786,9446,-7814,-1679,-2921,2918,-4789,-6620,-4092,-1242,762,-751,4508,-3295,5801,-6410,-6924,-5478,-1974,-5012,3158,5349,8333,333,5284,-316,6964,8116,-275,8383,-8080,-9646,-8521,-2609,8858,-8835,-5685,-2545,7872,-960,-8244,-6074,9945,676,-4651,9952,7867,5585,4133,2911,4999,1663,-3467,-2338,-4175,5210,-7411,-4935,-5931,-634,5438,-6985,-5698,385,8165,427,8547,2657,5613,1916,3061,-3575,5809,3632,-7101,5788,-5309,-7969,1959,-686,-8732,-1462,-3515,5591,-4462,-9611,4011,3858,-266,6487,1409,-5160,4331,5376,5129,-6471,-6487,-3279,6236,5701,2938,8064,3071,-7593,-4512,-713,2563,-7602,8367,-7421,1414,6874,-1361,7580,-6868,8724,-5358,-4316,-8225,8474,-9598,3386,-3825,616,-679,-2793,-805,6629,5987,-1178,-1428,-1460,-8569,-1691,5176,-8727,-4336,-8833,2392,-7467,3665,-4465,-8757,-4595,-8980,2316,-6974,3027,-5729,-4814,4225,-5725,390,-905,-7806,-3151,-8669,-106,5501,-1221,4073,5736,-953,-2112,7477,-2799,2428,3640,-5483,989,8908,-8603,-5127,-4508,2506,793,1373,-7572,1829,-7251,5323,-7183,-234,1297,7571,2804,6737,-4289,-4887,7687,8625,-7101,-6393,-4637,358,-9560,9572,-7814,-438,-859,2247,3038,-9962,8720,-6701,-4417,5264,-3978,-4423,-4384,-6552,-439,1104,3230,5642,8873,4048,5095,-9784,9156,-5956,-1452,-4312,-8149,-58,4516,3733,8106,5851,-1432,9988,8118,-8511,7188,-7294,-4338,-9562,288,8255,-7702,-9860,310,9593,-160,-7571,-1285,-6809,2275,-7915,-1967,-1608,-8793,-6884,4698,7809,-3093,-6813,9131,3944,-9625,-390,1499,7318,9036,6896,-3907,-759,-7296,-7585,-3333,-5526,-9042,582,-9952,6574,-4987,5841,7635,-3346,5771,8886,-2602,-6354,4022,-9492,8763,2261,3591,461,428,-8271,675,1887,-8609,-3767,8976,-4259,3667,-4695,-205,5119,1897,-9653,-1114,6130,-6533,2208,315,-3959,4990,-3589,-1939,-9956,5926,-3508,6826,8438,5405,-9155,-9329,-3671,-586,1574,-4330,4704,3992,-6624,-8364,7033,24,354,-7210,1603,6880,-3597,-7495,8600,589,9355,7443,-2842,8014,-7030,-5312,2675,792,-3345,-5788,-8767,-2994,8400,-9664,5606,-9846,-8008,-5135,-9389,238,5419,-4583,-8420,-4244,-7978,4570,8704,497,-7189,7713,-3846,5772,-7605,-5891,-2306,-1963,-7997,3184,820,5823,9568,-2014,-9268,6597,-8029,-720,5269,-8558,5692,8936,8937,1825,7644,1567,7699,5597,-2281,-4826,785,7868,-3714,6509,1008,-2726,5531,2341,-6583,-8658,-7541,2871,1464,-4168,-3466,-5268,-5702,-2481,1638,-259,-6843,8735,7379,8068,3952,4024,9874,-6218,-9476,-1097,1880,2251,4489,-9032,5889,-8965,-3734,3572,-7699,1676,-5934,-4251,-8582,-7461,922,3548,9796,7162,-8397,-2315,4959,-996,3697,-6880,-7281,7142,2375,9562,5697,-6446,6549,1863,-854,1081,2916,1204,4577,-6530,-4141,9311,8719,-9403,-2097,7266,-1745,9295,-4169,-2200,-8777,1792,-1136,6870,1733,-7164,5145,-1540,8097,-4698,-8286,-952,6399,4862,3336,269,-2039,-4828,-5177,9431,-8158,4323,3675,-6520,4964,3512,-6676,9696,-9477,-5407,-6708,9225,3924,6013,-2274,-1815,-8104,-113,6630,-4381,-7570,-8549,-7980,-696,-901,3285,-330,934,-2594,-9612,9207,-3118,-114,-1073,-9222,-5520,6705,-2014,9319,-6517,7654,6042,2898,7825,-2696,6208,9700,-8518,7710,4014,-1587,-6731,-8473,-7003,-6986,7888,3089,-9869,-6042,8758,-8870,-2596,-8409,8234,8702,1373,8170,-7380,3358,-2329,-1080,-128,6425,6553,6972,6515,-4398,7622,-4363,-4666,-3028,-544,1504,1018,-8489,-2814,4079,-6346,5719,553,-2315,9174,7687,9577,-1305,-1677,9113,6278,-2227,5325,7743,1567,2132,1197,5525,4962,-6054,1807,-8170,-2086,-1064,2469,5788,-7946,3859,-6154,9394,8083,-2143,8894,9787,-5897,8752,1565,-6230,9021,-837,-896,-1847,-6239,2206,1497,7774,-7167,-7841,-8399,6353,-4557,2249,2382,7863,6044,3864,-8081,-7399,-3678,-5947,-2522,-7169,-9867,7146,6370,-8405,-5291,-7593,6828,4237,-2514,-2250,7519,7969,-2386,881,-1182,-43,1157,-4819,107,4175,1792,7023,-1035,-2822,7628,-9983,-9343,6705,-7175,-8659,-6104,1481,979,-8777,9812,-8217,-5138,-7119,-3306,6625,5501,-8508,-3753,7677,-681,7521,5529,-6757,-9572,5746,5384,-6773,-4169,-6390,-1740,9476,-8896,6359,-5944,-9007,-2392,-1395,1035,7919,-7193,-2681,5144,6241,2072,2989,4573,6044,2209,5233,-3140,-5947,-1040,1271,2817,7558,-4232,7409,3531,-8732,-6554,9270,5428,187,-2699,7215,-7570,4626,4681,-4018,-9173,858,6246,3629,-2241,-9923,-3410,461,-432,5330,-5042,-4397,-8735,-7462,4578,6685,3098,4081,9807,-932,2523,2656,-2440,5614,3195,-2352,8675,5605,-7700,-7977,-9341,-5385,8777,6790,8317,462,-3942,-7020,-9880,4683,1076,9107,-3786,5081,701,7190,-1318,7530,-2644,-205,7871,-8445,8705,9345,8391,1027,2466,-1174,-3519,2862,3394,1513,662,1344,992,-1723,-1704,-3381,1281,6476,2682,-3362,-8311,-2108,-1745,9067,-6769,2530,-6520,-9412,9438,-7699,9204,-1781,-3821,9586,6330,-6770,3044,140,-4667,-8510,-1820,-1192,-3609,-5563,7089,-2333,3559,-2268,-8317,8032,5659,-8560,2282,6954,-1003,1936,3291,-7986,-605,-599,-7248,4142,-1280,-5785,4686,710,-6672,6661,-2769,3326,-1885,3251,7231,3938,6461,-1595,7273,3075,-4029,-239,-9013,7656,9403,4901,6463,-5520,9354,-8583,-9448,-5336,-3864,8526,8798,-5419,-9139,9182,774,7876,5627,-2724,1771,1813,5094,-3393,-583,767,3179,-8573,-8637,4491,5509,-6151,-8320,941,-3131,-2980,6071,-2646,-575,7371,-2893,9143,2062,-1999,-6069,-922,2829,2338,-3468,-1258,7960,-5793,-9071,404,4625,7737,-3291,8176,-963,5059,5229,7805,-9296,7727,3656,6916,-6115,-1619,1138,8682,-3183,-2659,-2220,5568,5574,-1939,-993,-6283,-8325,9698,-1167,-7543,2243,4141,-3236,101,-9007,-546,-2029,7903,-9824,-4346,-7122,1847,-3261,-3693,-1938,2244,-9249,-978,-438,2268,7810,-6583,-9603,-2453,7043,4293,908,9232,53,-1410,-9839,-1686,2101,5955,-3009,-2364,-3554,-9045,-1816,-4054,1305,-7869,-3193,4649,2160,4054,-1083,8906,-3444,7976,5881,5829,-1866,2770,-1311,7817,6131,-4727,7827,-4492,1427,-6790,2903,4404,-6207,-9327,8161,-8934,2284,-1886,-9398,-3351,-3644,-8368,3544,-5460,3484,-7655,6697,7687,5984,6169,-7892,-662,-4837,1454,3296,-252,112,-9295,-3864,-4715,7346,-5324,-1000,9291,-7600,-2315,5741,-1264,-6823,-4614,-575,9196,-8646,-4772,-6615,5074,9886,-671,4074,-9330,6392,4714,1642,-6949,-7347,8313,9499,4463,8069,-8801,2079,177,-2109,1339,7381,-3042,7372,698,-5598,-2829,6211,9114,7943,-4758,1964,5970,3286,9249,73,-4448,-8519,2443,3921,4574,5742,1173,-1210,-2767,3860,-2713,5450,-9125,-5859,-9333,-8540,-7139,1312,8010,5565,-761,-7561,9937,728,4444,-5737,6469,1049,-343,8876,4055,9778,9849,-1458,1457,-6976,6171,-9031,-4145,-6107,1315,-1413,-9745,-2931,-9292,-8536,9273,-2032,6231,-860,-3278,114,-5712,163,3392,-3619,-7469,2737,-6477,3321,990,9698,8527,-9689,748,-6176,7039,3857,-948,3208,8170,-6132,2448,-7106,7671,-3943,612,-7668,-2195,-6559,-4767,286,-7337,1626,1588,5337,-3155,5232,-3189,-5785,658,-9660,6900,-1587,8640,-2775,-795,6926,2342,-5,-5946,-3900,5972,-2652,3347,5085,-5355,312,-7027,4600,123,-6483,6724,-5721,-5531,-1279,8392,-8710,4879,-3434,-8051,-1922,-5350,3101,-9930,2213,-1281,2288,9808,5449,1404,4294,1960,-8424,-3465,2727,7023,-2722,-9826,-7757,6312,-2126,7641,-4832,-2010,-1170,5036,-8430,815,-3703,-48,2645,3122,-9126,-7507,-1968,8344,-7686,-3057,-8705,-3396,-9259,5985,-8528,-7670,-5805,7254,73,5776,-9209,-5783,-1797,3024,831,7374,-9692,3455,-3634,568,-6473,-199,8429,2921,97,-8351,-2345,-6926,-1787,-7427,-6698,5713,5807,-6705,4626,-8487,9954,1271,4996,1081,-8178,1925,7099,-9842,6865,1042,-8988,360,-5161,-5543,-7802,-921,-5387,1009,6954,-2497,8005,-5593,-7501,4525,5037,-4491,-8961,3047,5852,3406,7952,-763,8039,1860,4281,-5461,-7480,1925,1899,-1987,6045,2537,-6328,-7354,5546,-1379,-7310,-2029,-8487,1823,4852,1491,-401,4390,3908,-2726,-2450,-7304,-9431,-6317,1975,4982,4642,-895,5780,-4362,-1168,-9763,2331,-1472,2383,1101,-7083,5653,-8165,3839,970,3248,-2947,-5874,703,3476,-156,-6662,3093,-5,-6523,-4190,-1484,8860,5221,-7498,6860,-3086,868,4254,-3059,2159,1113,816,6412,-5648,-9672,-2801,9250,1298,-2853,1358,9912,9900,-8284,-60,5008,-3908,3902,-4810,6548,2986,-9552,-9222,-9710,5310,-4724,-4098,-9351,-9110,-2832,-2006,1187,-55,-529,1862,4061,-7158,7413,-9261,-325,-9901,1061,-3782,8914,-8280,351,-2450,-1823,-3210,-2411,-1422,-8318,714,4040,-8062,-3881,4352,8010,-7648,4596,8143,6320,7194,-4553,-4290,6740,-963,-9681,3038,-6398,3366,3510,-9517,-5906,-362,6629,7952,-8616,1132,-788,-7457,782,1585,-7155,5592,-2987,1910,4314,-1999,-2414,-7384,6576,-8390,1348,3258,-99,-3870,-5812,202,-9832,-1551,2851,6185,7523,-4196,3546,-9054,-232,9439,8433,8295,-2879,8884,3236,-7605,-2793,2028,-5559,7983,-7284,-3927,7707,2086,-505,-2133,-3068,-2395,3329,-5461,3022,4667,9446,7451,-8518,-5415,3895,8541,9030,-4575,-1865,-8505,5586,8748,-1529,-5917,1718,1456,-5835,-8666,4044,5609,-1069,-3555,-9452,-9633,1003,-7394,6574,1763,-7719,3555,-1359,-9914,-9627,882,-9134,9734,-5661,2091,2381,5784,-6022,4793,387,-4490,6181,-6781,-4589,6446,9879,-425,-7879,-1771,4510,6974,-1835,3733,5518,-6734,-9515,-5607,1923,-2597,-605,-2481,7912,8248,-6638,-8481,5917,9133,-9050,1572,-4653,-8240,-7116,2146,8582,6112,5351,-4272,-3475,-4047,-684,-3702,-3572,-4353,2214,7021,-4102,3630,-2071,-8122,7287,1897,8170,-2138,3865,-2738,-5867,-9922,-9777,2445,1483,-8183,5393,902,-8189,7097,4203,-6176,1024,-916,1270,7336,7870,-3644,9614,-6522,-9958,7242,-5058,-363,9876,466,-6132,1163,3569,3669,-4237,3909,-9490,-346,2110,-3922,-2898,189,-9854,6892,652,-1961,-2489,1618,7043,-9027,1116,6482,-5489,-7141,-4349,-8590,-4018,1511,-9813,-9341,-6308,-4259,4089,4223,-4854,1454,221,5313,-5092,4962,-7677,2064,-368,8100,-7055,-20,2936,-8580,-3511,4977,-8719,5298,445,8857,-6167,-4523,-6847,3290,7165,-8593,-1776,323,-3558,-7687,4363,295,-8532,4355,8546,-4527,-412,8134,4435,2683,4314,-9505,5013,-7756,-7546,5546,-3757,-4913,-3521,-2647,2701,6742,-796,4773,-6386,3823,-3802,4715,7061,1238,-1800,-7354,6533,-456,-9104,-6970,7540,-8457,-7276,-3009,-7725,-2656,4640,-3108,366,-4186,2043,53,9691,6286,-8968,7086,9794,3334,-1856,-1826,4120,9684,-3306,-8682,8840,8420,-7029,-66,4833,-2213,-7106,-2014,5134,9482,5530,8663,-5544,6623,-9684,-34,-2052,6199,-4830,-8873,1266,4948,1083,1749,8231,-8474,-4904,5901,-874,-6748,-63,-1577,-9126,-9894,3425,2789,3157,4785,1992,1174,-2679,-7984,-979,3651,1143,-2815,-2561,-7997,-4842,-6823,-8433,5570,8167,-8654,-4982,-4730,5272,686,-1938,-2834,-6106,1281,-6914,-5042,8781,821,251,2225,9771,-4950,-655,5134,1870,1136,-7749,4492,-1044,387,1616,-9402,864,3235,7544,-4197,-4708,-2608,-5224,-8987,2785,8234,-9904,3635,3761,-4254,-4117,-3681,4043,7572,-614,3199,2150,1390,-1581,1044,3982,-2108,-7766,2774,7967,5964,2001,-5033,-8184,-9081,-5560,-8985,4465,6377,-8783,880,2448,-1678,-5988,-5796,-1873,-4701,-7991,-9675,6823,-5458,8124,9760,-7444,259,1793,-8583,-7985,-7249,1021,-250,4892,-6351,9391,4139,-4641,-6977,-4276,8795,-5787,-6027,-4192,-8782,-4118,6951,-1651,9843,-4757,-7778,4327,188,-804,-9555,-9498,7211,-9064,7364,5871,3263,-11,-5957,-8225,3816,-4137,4425,3747,-2432,4501,8086,6512,3262,-2718,8593,-4643,806,-6649,-5730,-4343,-3375,-6789,142,7679,-4935,-8270,-1215,1748,-4905,-5702,-9119,-9325,5814,-2989,4121,-5128,-8120,-407,3858,5192,6793,747,8285,2943,3061,1046,-7491,3891,7103,-9052,4510,6430,8748,6907,-5461,-6681,-5757,813,4829,-509,7747,8110,7196,3908,8921,5349,2948,-8435,-535,-2928,7940,6905,-5707,-5622,9155,103,8241,-2078,-1822,-2359,-7283,1261,-8187,-2481,-8389,-5640,-7734,5232,4486,641,7330,-4762,-8746,-7630,1254,6454,8391,-2219,-1072,5078,-867,-9894,-7800,-2557,2664,729,-963,-6015,-4750,8194,8466,4410,-2773,-9549,1982,-5819,4563,-5580,1704,4422,6002,-1329,9334,6494,1400,1151,-5480,6524,-1856,1199,6510,9934,-7442,8942,3086,-5445,9189,-3726,9905,-3561,-112,7840,5043,7394,7803,-9563,-7606,-3899,4071,9943,1022,-8870,9161,-5428,-3111,808,3046,-395,-5880,-4950,-1303,-9587,9194,9215,8190,6280,-6508,8997,8583,-3710,9592,-1931,-3191,5335,456,9925,1819,4599,-6469,-1951,8230,9904,1935,2521,-7032,-9082,556,-1539,6655,1171,65,1527,-9031,-7268,-805,5405,1948,-9050,-5196,5629,4408,3036,5693,1282,5108,851,7228,-9093,-2052,-5578,-14,-190,-2045,-4959,-4778,-3273,795,5382,2157,-8283,3787,4656,-9856,-1255,5296,-6554,5391,6199,9262,-8950,-485,5016,-3245,8829,1154,5284,6349,5649,-2004,8094,8753,1936,-3318,1126,-626,-2954,5260,9195,7978,3132,-6909,-3628,6358,3581,-2519,-9720,-832,8333,7205,554,7361,-6697,-4770,6898,1472,-2845,-9202,3405,-2556,8770,8806,8171,2576,-8641,9970,5540,9867,-8241,1048,6466,-6940,-7517,6412,-3080,-5817,-9208,9918,-5949,2948,4648,-6490,-8363,1435,8390,-9534,3814,2610,2858,-83,3135,2400,6580,4596,-1220,-2275,-1825,786,-1169,6220,2855,3622,-3062,-6522,8071,1111,-4497,2752,-6243,-7217,-6218,5608,-3230,4614,-7103,210,-5060,-3611,-2108,2203,5614,-8618,6328,-3767,-4506,-4799,-9499,6104,7301,3582,2600,-2176,9261,6908,-4667,5761,-7584,2540,-3877,4188,-8435,6887,-6665,7176,5740,-2674,-3576,8192,4010,-3784,-1680,6601,6972,-8643,-316,2553,3001,-452,-64,1022,-3797,-6193,-1299,3136,-4675,7567,5736,1353,7662,-5978,-6857,-7898,908,7539,3308,7583,-4224,-35,-2202,1066,1531,5141,4131,1077,-8492,-6241,6544,1362,6365,-3833,8112,8498,715,-1628,726,-583,906,-5051,443,-5990,-3425,-4008,479,-1708,5301,1585,7342,7613,-4426,-3716,-9817,-3941,-1647,1288,4845,-1432,2929,2600,9901,7734,-9398,-5410,6565,-635,8935,6727,8861,-4258,208,300,-1678,7278,-6719,7843,4630,-6699,-6388,-5160,3184,9718,-1262,9987,7996,9418,-8209,6107,6665,-4655,-8191,6654,-4575,-2074,-7352,-6222,2748,-8514,-4942,3648,-453,-2237,3721,9921,6558,-3106,-1258,-1708,-5198,8956,6278,-1993,-1672,9091,-2986,-9740,7011,-7455,8542,-8087,-4211,7598,-1072,7596,-192,-3244,-6089,-2918,911,6209,2044,-7685,-3236,9556,-1799,3192,8815,8794,4367,-9895,-2384,-7650,-7099,-604,-284,-4086,5514,-7488,365,2298,-4225,2192,-1883,-4209,-4634,4277,-5255,-9837,6007,2350,6448,3037,-9087,3048,3693,5357,-5583,2098,456,4526,-3342,9054,8426,5772,2419,-1273,8566,2089,-1628,-9189,3231,-4729,-8959,8428,-473,-2946,-7987,-2137,-2186,8675,-552,-5965,758,-9140,9244,-6616,9235,-1688,-2503,-2546,-8341,-2914,-1712,-6392,-3616,6294,7326,-2316,-5203,-7395,-8499,6339,-7254,8783,3259,1359,3836,6328,6602,892,4194,-7117,-7445,-5456,-7258,3274,-270,7045,3721,2286,3840,-1113,-4509,-1319,4685,-1835,9086,-2634,7635,6387,8783,-1978,7064,-2563,4894,7217,3748,-3231,4361,3702,24,6323,-7996,-6893,626,-3000,119,5573,7610,-5211,2706,7420,1122,8405,-5366,-9120,-8219,-7599,-62,2744,9419,-8865,-8566,4848,-7239,3768,-6448,-4735,-4616,8351,-9919,2872,-7155,-6578,8192,-1840,7365,-5250,-759,-1745,2959,-9005,9251,-7462,-196,4743,-8435,2929,4411,4919,-2819,1261,-3777,-8139,1903,1688,-2198,7667,9176,7011,218,-3672,-7884,-8171,-4704,1242,-7884,893,-2981,3538,-8089,-1477,-6054,-4895,8416,8191,5968,-2379,1209,-2759,9177,-2504,8399,7851,-6212,747,9900,6651,-7384,3086,-9337,9020,-9226,-353,-2190,-8799,-1254,779,5869,-7674,7383,-266,6705,2497,5912,9723,8814,5941,8069,-3208,4217,-5348,3986,-6605,5564,5944,-4312,-1028,2851,6058,-5646,8864,8828,9449,-809,-5618,6872,6149,-8903,-2128,3963,856,-9867,9225,2992,1906,9,6300,-4482,-6279,-868,8616,-6851,-7004,-5349,-4191,7513,3080,3606,7870,6125,-252,-8729,-179,-9255,-1548,-1192,4983,9656,809,7227,6049,-7158,-3049,-4537,734,7155,2912,8411,-1112,6039,3440,-3157,3197,3504,5851,-1598,6486,1393,-7050,513,-2724,3617,-5080,3668,2655,-3324,478,5445,7798,6136,3941,-6223,3777,-3095,5541,6906,-8944,-7470,7974,-7965,-861,-4447,-332,1866,-2287,-7671,7922,7379,9887,-6722,7906,-4747,-3539,8025,1241,165,-7722,-6820,2087,2712,3951,1712,3642,1893,3177,-1900,-8073,2199,9396,7578,513,-777,2942,1000,4281,7240,-1440,-6276,8774,2583,-7470,8471,-9278,1275,-5419,-428,9852,-2199,4286,8141,9333,4613,-6383,1903,-451,9459,8637,1206,-6938,3705,-7304,-78,6373,5938,3667,2448,2454,-3796,-1943,9589,9881,873,-1109,-9225,9718,3235,9176,-6191,-6526,-4415,-1034,-4859,-7611,-5813,-3719,3250,-4135,-2153,-652,8579,-6805,6924,9830,-9368,6271,-6111,-8107,5048,-7068,3706,6949,913,-4632,-6830,-3368,-7528,-8740,-2539,-130,-3331,7013,-3202,-4808,7378,7586,-317,-21,1954,749,-3946,9031,-1430,609,3849,-4436,1657,-2136,-6731,-3006,1468,528,-9560,2068,-9724,6748,3988,-4856,929,2716,7252,4584,6392,8486,959,2890,-2675,-1392,-7688,5556,1953,-5827,-2992,5935,1070,-9817,882,-568,-960,-4619,5841,9328,-7022,821,-3475,8581,-1222,-8915,2232,-71,-3894,1206,-559,1170,-6638,-808,-5677,-525,-7267,9004,-8585,-2482,1131,-7485,3938,-9831,1911,-3268,1545,-5270,-6548,823,340,3734,3091,8337,-8743,5219,-2691,-9558,-1737,8573,-8497,-3019,5118,-2294,-1584,1347,8221,5471,-9349,2617,-7919,-5505,-6406,3699,-5977,-9563,-1664,-698,-3157,-3856,3654,-2687,-501,-2970,-193,1043,-7610,-7721,3054,9626,1371,6962,8099,-140,-9305,-8173,1133,2809,665,4632,2145,6503,6190,5819,4999,-2858,1784,-2713,4586,-2124,-2842,6982,9055,3612,-475,7196,82,3903,1159,-6285,5359,-4920,2388,6310,-9595,-8363,-7932,7323,-6489,6531,-2410,-1467,6449,2990,-9766,-8444,-1120,-536,-7743,-2739,6843,1837,-964,-4408,-5859,-6968,3237,5952,3670,1959,9216,-786,-2815,-8735,-9764,341,472,-3591,4987,-5331,-6775,-8540,6306,8830,-9277,4715,-4335,2688,-7974,-8234,-5866,5413,6113,8875,60,-8715,3498,2510,-3052,5520,1488,6741,2047,975,9352,9106,2261,5223,-3671,-7663,9925,-5438,-5116,-7951,-6049,3636,-5477,-2877,6560,5456,3039,3515,1835,-4251,-7593,573,-5263,-6206,6989,-1097,-7076,8073,1293,-1921,6018,6011,3300,9100,-6755,-2345,5945,3211,1312,4068,7075,-7395,-1839,8240,-5588,1993,968,6259,-9462,163,2587,-3469,3377,8897,-1250,-7058,5027,7527,3630,2220,-617,2631,1343,-3538,2626,-1001,-2282,5885,-4652,-5793,173,-8440,5916,3958,2825,8008,7020,4854,478,-471,-1027,9763,-7423,7441,3007,4121,9526,-4906,-2788,-7491,-8016,8794,8615,-3465,9230,5579,2868,-9101,-9789,-596,-9192,-3832,8640,-4928,6052,4366,-6976,-8588,-4842,6034,594,-3996,-7721,4575,2114,3541,6250,-7954,9310,763,5923,8936,1909,-2710,2681,-3676,7484,6225,-2618,-3885,2222,-8129,-3910,-3467,7025,8991,6417,-5066,-7792,-3693,9604,-370,-5560,4076,-2128,-2001,4987,9707,-3193,-8064,-1535,7941,-9526,-4576,-865,8356,-1219,-8128,3373,-2163,9746,-5458,-4416,1045,6102,5956,6890,-9596,-9538,-582,8148,-7624,-4944,-3408,-7113,6267,-1102,7742,-8537,-9219,8038,-1312,5979,8487,-4756,-6053,-6334,1786,4553,-3624,4358,-1051,2245,-2923,5452,-9557,-573,-5507,8668,7465,9134,5144,2481,-6148,4249,-3193,311,-8801,-9408,1013,-9164,-8568,-8016,8076,-6194,179,6876,3998,3638,9819,-4924,-560,8582,3901,-6846,-6799,6280,6923,839,-605,6655,-8859,8237,3010,-191,1702,4465,-7247,1793,4836,2637,-8811,-2310,5921,-4182,-8563,9731,6673,-4565,1032,5645,-9318,6843,882,-2968,-1295,-8710,-4653,-7522,-2324,1088,-6221,6184,-7007,-5653,5516,-863,8883,-5685,6736,8251,2699,3815,-8515,-6849,1805,7683,-7795,-2590,6608,-7567,3470,-1469,-6991,-6034,1958,4112,7060,-4946,-1996,419,-6149,-4858,-880,1070,871,-4260,7842,7936,8272,459,7373,-3027,3843,-1853,5771,2985,-4317,3455,9635,-4194,-9720,4567,1594,-1976,772,6062,5001,654,3636,9390,-8240,-4766,-6352,9972,-9748,470,488,-2801,-2682,-8260,-7691,3616,-9709,-4644,-8282,645,3669,560,1910,-5594,1904,-53,5121,5919,5839,6809,5244,-4588,4156,-6127,-1092,8925,-8607,-9251,-8682,-5193,4173,8739,-4445,3813,-3066,3895,2617,-3295,-8880,4252,-4104,9492,1352,9450,-6186,9068,2253,-832,-2994,-7878,-1118,3575,5160,-5450,-371,6238,-4903,-935,352,6603,5230,-1741,-744,4572,4380,9924,519,-8676,5511,8796,1355,-8131,2710,7746,7587,-3490,919,9858,-8255,5143,7686,-283,-4600,-8428,5699,-7942,-9210,3445,1327,-8683,1784,-2871,-3676,-8533,-5780,-9575,-3003,7563,-4289,-97,-1054,7950,-809,-8158,-1114,-8657,-3801,-6404,-6479,-3154,-4845,-2976,6015,7204,71,2426,4705,4271,5941,-6972,7142,-2228,9039,5359,5825,6220,-2357,-1532,4448,-3116,8375,-8592,8275,3119,3744,4959,-5923,-3609,-2116,-70,-5779,-3998,-9342,3277,2017,8057,6933,2105,8793,5739,9281,-3623,-1492,7308,6264,-6310,2462,7359,-7068,3433,5663,8653,9696,9969,-2743,1883,-9899,-9214,-4717,-3276,-3479,7355,-2731,-4698,-1742,8232,-2625,9387,-1792,1918,-6403,4572,570,-7285,-3154,-6835,4289,-443,8717,-6967,8116,-9981,-1550,-7807,-8621,-2155,-9768,3754,-5588,296,-5907,-6670,-8372,6286,-9629,7525,2349,-4559,7233,1481,-6314,4016,3506,-4725,1281,9112,1239,-2272,-2560,-6710,8301,-1508,-1995,169,7769,8975,-6605,128,-5167,-8368,-9877,8674,-7059,-8618,-7401,4452,-2380,3037,-3790,-7452,-8356,-1879,-8990,5215,-467,-7737,550,5107,5876,5878,-2156,3007,-7929,198,3442,-2728,-7964,7493,1864,-6179,-8082,-4055,-4914,-9478,-2475,-4584,-6525,846,1913,-3517,7606,-465,8322,9060,697,7874,6008,-9758,-7341,3103,-4687,3207,7746,606,-4918,6573,-9083,-1419,9810,-6117,1476,6149,-69,1318,-4598,7099,1427,9362,-7590,-6328,8812,189,-4158,-7073,-6440,-1910,-8669,-1727,418,7389,-3964,-5064,2361,9827,2671,-3722,-5449,-6912,4070,-4855,7346,2420,9427,7204,4901,4437,4799,3061,3420,5052,9190,-3196,4298,-326,8247,-2211,-8669,-2802,6217,2750,1557,-4232,-1003,-1944,5077,-4414,2660,3002,-825,-5325,1647,-3184,-4700,-5131,349,6088,-8475,2428,2629,1317,-9177,-7683,-9952,4055,-9436,1336,-7080,-63,-6416,-8163,-5146,-4457,-819,-1166,3327,-2565,-3419,2363,-5733,6169,-657,7945,-3275,-6798,-5261,-6839,-4872,9390,-7562,-2668,6960,-4203,-9817,1105,-4096,-9648,1050,8354,-243,-6078,-7208,-1239,7255,-3706,7718,7148,6253,-5158,-624,-3260,-4440,-9574,-3947,2151,1288,9552,2385,1512,-5225,-752,7758,3697,-2641,-7611,-8357,-2746,3341,-4289,3660,-8503,5795,-6076,7443,2938,-318,4181,100,5463,541,7495,4910,8715,1061,-1707,6797,8391,-797,6201,7581,7810,-4267,6072,6993,8154,-7233,883,-5691,9279,-2099,-3978,-736,1334,7492,7942,-9425,350,3548,-6193,-1592,-8905,-4144,1658,8586,7403,4623,-9774,7730,-6800,4389,-721,329,5281,4791,2301,9079,925,-3275,6533,-4541,9744,3575,-6618,4100,7629,-6941,-5471,-2102,2827,-6856,3391,242,-736,-6064,-6223,-5468,-2227,193,1748,-3965,-8438,-8123,-5944,2450,2198,2663,-4427,1955,-6954,6026,-8763,3984,-1878,9491,3774,-6040,6049,-5132,-1789,5022,6540,-6998,4219,-9836,-3664,-5536,9297,-3181,-1537,-5363,2775,-4320,2934,-8186,-4169,3059,-303,-8731,3605,-2498,4177,3690,5345,-9555,-7753,-6880,8070,2846,8866,-336,-35,7470,7859,7264,-8295,4249,-9646,1167,-9525,-4055,5672,-762,1907,-2483,-9911,3590,9143,-1846,1630,-7255,1223,8777,3507,3142,-852,-8032,-3762,-7451,-5858,6327,1612,-9976,-5404,4700,7482,-5279,-7779,-2210,2309,451,-6211,9685,-7469,-109,6534,8819,-3694,9892,7997,4429,-954,9105,8534,9924,9751,9474,-8160,-1240,-8353,1222,-7128,-3614,4738,-7750,-4678,-1690,9908,-5580,-2525,5180,-5176,5609,-9569,-2235,2232,7051,-5797,4839,7218,-3845,7694,4678,-4925,-7993,-4139,7472,-3168,7171,4902,-4958,6235,-803,-4299,1278,-4956,-1589,-6105,-30,-3567,-5394,-2105,1184,2329,-2914,-6649,-6955,-640,-2366,8331,5181,5235,-1709,43,-7485,-1484,1952,1238,-5356,9378,4955,8018,3461,-9239,3819,6797,-2922,5540,2069,-1169,-1738,-2616,-2505,2513,7122,4122,-1336,7447,8584,1974,1854,-3465,7097,690,1411,-7601,5386,-3835,7843,3689,1583,-9650,-5238,-6336,-7840,4698,8414,-9149,-1626,-9491,-5882,-8979,1561,3402,-1840,-7425,-9188,6873,9965,-8381,-3424,7926,3218,-9090,9876,9424,8123,3199,8766,-9745,-564,9561,-3139,-6413,2394,4753,-7739,4990,-1375,-6408,8691,-3255,-2722,6582,-5650,9333,5644,6907,5112,9430,-9409,-8426,5333,-9825,577,-1681,-1582,-6648,-865,-681,-2088,7259,2782,5862,-773,6227,2958,-7084,7931,-5136,-258,1720,-5698,6803,-5293,-3558,-3548,6976,-8825,-4996,-839,4601,-366,-7004,9818,-923,-7188,2468,-3591,-5774,8198,-1886,1185,9557,1184,-1304,-2506,-4359,6310,4639,4686,5991,-1409,-1975,7322,6815,-4252,-2733,1094,-7184,175,7323,-2194,-5531,-9658,-6331,-2111,6028,6622,7002,-2555,4713,5783,3715,7536,-5878,-5236,5598,7653,-834,-7948,-7332,8297,-9755,9692,6031,5333,-2224,-8347,3919,4341,8553,6033,6651,-7586,8324,8959,3516,305,7231,-7970,9505,-479,6449,9947,8652,6451,1560,-5883,-7241,8817,3982,-7333,340,-4014,8997,-2358,5226,-8384,-3985,-5415,2391,2421,-3706,9063,4179,9638,4138,-9090,-7695,-8654,-6851,1040,-378,-8065,-5183,4458,6551,-3507,-9172,-8953,5979,-6037,-7194,-3529,-9633,-8447,-7864,-9730,-4309,-7842,7602,8448,3715,4910,1334,430,-5293,-9611,9503,-869,4855,4202,7541,1238,9066,-2873,2356,6934,-2736,-8531,-8946,-8393,-4016,-1179,-5245,942,8113,9816,7785,-944,2638,-9426,2216,1480,659,9175,-7294,7889,694,-7624,8399,-9083,4690,-8091,1504,-3073,7886,1737,6869,9380,2029,7459,-8467,8876,-2298,7675,1922,-3381,4811,-4648,4725,-4674,9865,-7047,-14,8577,-4308,-5119,-6676,7974,-222,5848,-3722,-2813,8849,-5226,4993,9051,1871,5886,82,2946,-4085,3515,6728,-6410,-2780,6048,-879,7049,4640,1990,-2658,-5929,7967,-2848,2147,-4873,4943,1093,-1128,4698,-1513,6792,-4291,7198,984,-5682,8114,-5632,-4479,7481,186,-7670,3627,-9359,-9543,-3449,-3715,7438,-4687,-8212,-6227,-4524,-6680,7443,7324,6007,5216,9664,-2561,4216,8456,7346,20,-5138,6710,9381,2367,-5226,-9067,7403,1908,-9280,-5020,4034,-3953,-1139,2591,8861,-2144,1200,5381,-7874,-7723,8798,4552,4837,-150,-7044,-252,7054,8566,-3137,5827,-6090,9517,6604,8354,8571,-2529,-4057,-6643,-8765,8210,-5631,-673,-2679,8345,6587,2666,-150,9529,-3132,-3139,-6113,-644,341,-519,-5115,-4107,1819,-5915,-4734,816,8154,-8210,-7397,-2689,-3654,8270,-3232,-4350,-9804,-8172,1325,-3948,8905,2239,-883,-5948,-8182,-9008,-1982,7297,4867,-3283,-7624,1019,2680,3491,-3298,6227,-4548,3657,8123,-9983,-9461,-283,6448,-5903,-3520,-8985,9946,-9703,1309,-9465,8836,5346,5100,-5461,8171,614,6671,-7378,9529,7659,-2831,-5212,-6241,9052,-4320,-9482,-7429,6568,-320,6272,-1674,-4112,-498,4203,-899,7705,-2489,-122,-1107,-2878,1594,-7773,9912,9296,3760,-7353,42,-1446,1733,-4108,3269,-6358,-1209,-572,5123,5823,-7277,-8394,9437,-7281,-5012,-3148,-2053,-1781,782,5048,7900,-4589,670,-4023,1655,-2003,6105,7200,5320,-5244,-2962,7317,-8320,9569,5099,5695,5250,9429,8167,6562,5459,4264,7361,8699,447,-281,9368,4901,-941,8403,2436,7200,-5385,-3940,-3607,-7292,3923,-2577,3139,1904,-9084,1785,4617,-7154,-813,9482,-3293,6622,-4154,3353,2535,7458,-4128,5710,-8912,9264,9105,-9974,-3869,7616,9555,1307,7015,-6116,-1274,2031,-4026,9863,925,6511,-4212,-3807,7318,3412,-2167,1271,-5359,2293,4521,7276,-3483,3432,-8499,1041,-3867,-6491,1095,278,9850,-8319,1213,2434,9031,-4107,-1535,-772,-9431,-6031,9943,-303,1556,-6718,-3067,-2818,-4562,-2638,-8374,9895,4208,-160,-4536,8009,6424,6336,-767,-4875,-4920,-221,398,6812,3445,7147,-8093,-6884,-2608,6716,254,-9896,-9618,3272,-6457,1138,6807,-536,3187,-7659,5188,9652,-866,-9563,8162,9467,-5671,6969,-8336,-6279,-1282,1214,9959,-9482,9002,3523,7955,-2060,4813,-3011,5383,-2286,3279,-1563,5542,-9120,-1860,-3428,9144,-2466,5765,1588,-4626,1761,5314,-7360,985,8236,-8755,-2712,1430,169,-6744,-811,8745,6577,5471,-9965,6238,6454,6345,-5445,-6905,5199,1487,-5968,7818,-2198,-5932,-127,-8352,3000,673,7972,-3241,9066,-6879,-2751,-7617,-9524,4737,-8837,8774,9043,-2059,-1786,-9970,4326,-4844,6596,-9458,4666,-4086,-6754,-5812,-2216,-8827,8532,-4160,-9476,-2562,-7891,5886,5615,-6618,-9323,916,-3647,6737,-8843,-2076,-5932,5975,2991,-5393,-4052,-9330,-7266,6438,3587,3563,-4778,-5877,-1470,8277,-6461,2481,-5321,9201,-9759,9688,-6906,6143,6662,1110,7953,5188,4597,5904,-3505,132,7872,-8341,506,9071,2529,-9261,-3836,-6244,-7657,141,-785,3728,-5128,-7773,-4601,-6175,9412,-9645,3873,4734,9443,9498,7449,-596,-9986,5823,-6343,-5160,9692,-1439,-7904,7479,-1755,8334,6364,116,4026,8020,-651,627,-2763,-5108,-6136,1004,8486,240,8658,6232,3222,5272,-6508,-5531,7050,-7976,-2392,-3870,-9054,5566,3993,-3197,-8184,-2178,-3359,6067,6745,-5055,-4949,6943,-2814,4312,5663,-7706,2969,-3837,4500,-9268,8044,-3541,-8133,-7924,1917,2939,-4959,-9056,-1498,3767,-1076,-5658,1819,9739,605,-9714,-5278,754,1179,-809,-3933,-8701,8994,2934,-3471,8225,9934,397,5595,-7448,4620,-5300,4409,-123,-717,-5849,-8688,-3089,-1647,-9544,5021,2011,-6517,-350,-1547,-299,354,4085,-4117,-3269,1795,790,5875,9731,-6424,-7219,6133,-6876,6707,4269,-1057,4850,-7986,5203,7860,-7091,-1755,-6097,8874,-1672,-2478,-7439,8706,-5260,-619,-5897,3552,5511,312,6270,-2107,-4068,-6361,3672,-4268,1440,-8318,3616,-580,-5645,-3173,5446,-4045,-3417,-5794,-1154,5761,-1431,-8186,444,-7948,660,-6974,6234,6548,-4575,-3275,9324,7601,1343,-6944,-5742,9191,994,-9378,1092,-869,-838,9841,-9375,-1811,-2413,8102,-38,2890,-7957,1231,-5113,1822,8397,-4228,-8260,1798,8328,1763,6827,7820,3612,6349,-5124,3771,8414,-3573,1149,-3828,6273,9996,-1757,1678,-3134,2690,5906,-1545,-1305,-9123,9883,-9755,-1,-4270,475,2033,-4402,-6316,660,-6427,5860,8332,9908,1582,4116,-1469,-702,2251,1216,5594,-7372,7668,873,2259,5303,-3171,-3255,-3923,-4559,-9217,1879,-4377,-7879,3871,1089,6699,-4465,3810,-115,-6169,-4539,8723,-9039,6964,-6593,-7898,3417,8463,5431,-3057,-4566,6529,-2413,7939,-1993,3448,-2940,-9202,-6905,-7532,-7358,-2038,-5256,-9021,-1135,8,-302,1417,-4495,-7067,3194,-2421,6777,-9783,5727,-1108,-948,1222,-2721,4553,-6710,-9480,-3038,5110,2694,-8091,9798,3195,5779,-205,1651,6399,-8792,-2454,-5334,-7444,-1362,-5150,6904,4459,-9283,6922,-8973,9706,-8611,2180,3920,-3979,-946,-5230,5264,365,862,-4077,3321,2370,4297,1243,-7947,481,4680,7301,-1733,1859,1360,4837,-7486,5364,-2889,9035,3297,-6907,3259,-7061,3885,-9647,5402,576,-4414,1474,-6139,9678,5950,3273,7100,-3424,-3602,3233,6489,-788,-8637,6346,-4527,-1711,-1550,-9884,-4673,-6186,6976,642,402,1754,2181,-8772,1677,822,7574,3731,5586,-7926,-9311,-3315,9896,7152,5224,-9791,5918,-5780,2031,1235,-932,-4857,-167,713,2568,-9147,9782,6456,389,6272,-49,1874,-4668,-1471,5293,-4799,-6647,-3324,-5187,3196,-7032,-2940,-6126,1706,1398,-596,1168,-9273,9171,-2377,2805,-5010,2004,4040,2593,9953,-9483,-5698,-7287,8954,3875,-1192,1946,4183,8694,9639,-2172,8981,-1428,-6378,554,-7025,-1570,3737,-2246,-3006,-4777,-5318,-7785,-8167,-7073,-7620,-7986,9906,8325,-9422,-6109,5835,-8574,-8159,8841,-3273,9422,-3517,-9553,-7586,-7637,2066,5300,6097,3461,1421,-1921,-2919,-2504,-9409,4866,9622,3747,-4526,-629,8246,9405,6219,-1264,1558,-7547,-4464,3357,-1337,-6898,-1,1743,-8249,-5937,-1688,9097,9588,9899,-5808,7512,8553,-3124,-4080,1551,-3493,-575,7305,7511,133,2110,-3731,-7146,9324,-5260,-5622,2182,-3310,-2044,-5020,7270,8900,4834,4860,1227,-6886,-2494,1494,3656,-4800,5151,9864,-6014,-1466,1257,-3091,4385,2072,9085,-3420,2741,1590,5844,7980,-7796,2236,-1908,6166,-6856,8462,-2136,1809,-1669,8221,389,-5734,-4506,-2953,-7254,-2314,-7223,-5765,5569,827,3667,5058,8328,-2116,-709,-5813,6956,-7409,2548,-2793,-9637,5542,-4152,2422,6885,7842,1930,9425,9952,9864,-7599,7517,-2914,3415,-1833,2517,-2394,-9818,-8876,-8033,113,5691,-4763,2864,-902,-4990,6968,7731,4358,-2032,-1899,-7731,662,2139,-6425,-4243,455,9664,1719,-5148,-3971,7811,2548,9677,-1526,9639,410,5429,-2895,7389,-1096,-2351,5108,5073,-4305,5380,-6424,7733,-3116,-1695,-4085,5329,4805,-4241,-6720,-9854,1120,5546,7052,-1135,5525,3375,214,1772,530,-7186,-2474,-2577,-2741,5058,-4452,8763,-8194,3445,-4094,-5521,-3897,2669,6408,-83,1239,-4519,4881,-3297,-7053,-9664,6420,4663,-2522,3910,-5694,-4538,9122,-5401,2806,-1355,1782,-1342,743,-2229,473,6024,-3790,1939,-1248,-199,-1022,-2111,-4431,-3087,-8085,2411,-1360,-4107,551,4167,-5039,9205,8077,-5822,8048,124,-4210,-8291,-8261,2000,3656,-13,-3857,7757,518,-5464,-136,-3584,3267,4332,-5484,-3136,-2877,-9115,-7036,4562,6917,9345,6988,2399,3732,-7109,-9725,-2332,1321,-9184,6450,6337,9764,7579,-8622,5320,-703,8918,-2184,5194,7992,190,4869,9642,2045,3592,-5427,-7994,7595,1433,8553,-8317,-9314,-3162,9575,-330,-8812,-56,3709,1483,-8769,-1809,3955,9132,-6121,1226,1894,8950,-4760,-3758,-7422,2525,-765,-7264,-4241,-3810,330,-8084,-7966,9921,-7425,-3984,4351,-1383,5813,9810,-2334,-3171,-539,3085,-5992,4886,5634,2626,8986,-8738,-7126,4503,-2936,-7255,5693,7605,-795,-172,4397,-2028,-1997,5156,-4389,-7373,2376,3722,-4228,495,-6460,4062,-6503,-5787,-1218,7242,6852,3360,6154,-1359,-3025,-6779,7036,8692,9692,-7339,-673,5880,5197,8008,8788,2902,3436,2061,-3652,-8562,-7744,-7622,101,5732,-9273,-8315,-1165,9577,-4748,-4131,5574,2757,-2262,1224,-175,-5549,9660,6186,3777,-4871,5792,4201,-3218,-6222,3587,7122,-3128,8445,-8249,2589,-3587,-9654,-521,7968,-8601,8878,-992,-3293,-6584,1434,6579,-1411,-1335,-6669,198,3215,-8062,6955,4455,-5068,-6809,499,1260,-5765,8800,-8910,51,4875,4799,-3906,7430,1515,4687,-6461,3730,-616,7377,-5352,-3780,1741,9749,6095,-5684,-3388,8041,-8214,-7278,-5641,218,-7976,3462,238,-3117,975,7564,4038,3217,-7475,3062,4647,1637,385,-8193,6961,-4342,5029,5024,-5309,-9850,4092,8220,2777,-3222,-862,-9445,-7028,9173,8282,3603,-1299,-494,2688,-5029,-2105,1878,-6878,3070,-1933,4358,-6930,-9615,-33,-3424,-6422,-7352,3290,238,1247,-3474,1020,-7614,-7176,-897,6337,4952,8387,-8572,5504,-1078,-9250,-2525,7474,-6271,2512,7313,3966,-936,8433,8311,-8023,-8965,8969,-5884,-6716,1869,-9043,1929,-9951,-6985,1802,-1039,15,244,-9038,-6796,-4246,5682,-1165,-839,2012,-1867,5785,-2079,-7229,-9843,8369,-1136,-4733,-1569,-4418,7723,9650,3332,4936,-9732,-4909,2464,797,7542,1068,2526,2505,-6700,6252,8450,6891,-7897,-5173,-9960,-9048,-4288,-3999,-745,-9143,-8036,-2062,-6016,-7773,-7843,59,-9173,-5734,-1633,5416,7374,2457,2587,6349,7060,5031,9123,993,-8476,-6387,8849,8284,-8082,-4454,-8345,-1087,4113,3326,2305,-280,-6627,-2286,2013,6477,-1640,-2436,1687,-8847,9424,-3621,5311,3365,-7670,8360,6811,-100,-8768,2809,1698,-5983,4577,1765,-1902,-1485,-2775,3553,-1347,-5010,3015,288,-4506,-1168,-3364,-5568,8117,4904,2309,3588,-2348,3707,7503,5102,4761,-8800,-9971,-9791,-5247,-3868,-2219,-5012,4868,-32,2579,-6,1735,-7122,-624,9669,-5156,-5938,-1672,-748,6987,1802,9123,-6814,1386,-3183,5815,-4142,2818,-8502,-2629,4742,4158,-7022,-2128,7530,2704,-1889,8373,-3502,7866,2380,-9986,4512,-590,-5679,-4473,-5247,5562,3559,-4461,506,9136,-492,-4585,-1736,610,5523,-4196,7847,8959,2385,5482,-3031,-6360,-3418,3686,-713,6520,4162,3145,3375,-8792,-1021,1445,-3643,657,4183,8073,6557,7799,-8313,-4134,-127,1284,-8762,3890,-9750,-5242,-8246,6566,1747,-5968,2562,-4155,7645,-3706,-2019,-1949,8768,-7059,429,-2047,-4263,770,9972,-718,3202,-9645,-1943,1461,-5747,-9905,5836,2045,-4111,-5070,2151,7720,143,2043,3349,4806,7216,9557,-3774,-8035,-2911,488,-8807,-9281,-8016,-2872,5809,-3932,3956,-9544,-3983,905,3246,5869,-1826,-3873,3282,2637,-1542,-3467,-8943,62,7188,2236,3319,7447,-91,962,7433,-6266,-1217,2933,-1021,3916,6290,8369,-299,-4844,4245,8864,-5022,-2385,710,889,-1865,-3100,9603,-3049,-8410,3817,-9590,5676,8752,6787,-7703,9898,9844,3694,2403,2854,-6373,8287,-7625,-5780,-3387,5090,-7742,2003,-7489,-8027,-381,-2337,568,7445,36,-65,-1067,7344,7960,-264,-4143,-3371,-520,-5612,2817,-262,2366,-4980,7345,-4471,2277,7855,5754,757,-4275,5966,-8869,-460,9000,5957,-8740,3160,-9074,9144,6626,6487,9445,-8161,-7055,-4400,-2953,6035,-5114,9223,2590,649,-3683,6612,-9572,-4722,-1835,-5233,8670,4242,-2185,773,8149,-1042,-1746,-373,6555,2785,-9954,4756,-212,-4360,6116,-3122,2974,-346,-6740,5636,-609,-6269,3897,70,6006,-4926,-5067,-2282,4877,-2160,-9205,6952,-5932,-3268,2044,-2603,834,2266,-1033,2836,7015,-1826,-2531,9839,-1317,2020,-9794,2505,3718,2112,-4138,-322,-3469,1992,6626,-5044,496,4717,6213,5187,2408,125,-9722,1224,6507,2837,6329,1313,3485,8905,5380,8699,-395,-8206,1206,3627,9680,-6412,831,3884,-9774,-4844,-6444,-4180,3396,4192,-8698,8810,1401,-6173,4698,-4646,6688,2492,-7469,-3810,4325,8751,9124,-5203,-4433,-5448,3606,3015,3506,622,-7518,-5338,-614,-7254,5882,-763,-2620,-6577,-4288,2860,-6755,-9794,-2509,-3147,5837,8731,-8844,-6278,6208,1454,-2495,-5451,-8875,2163,849,5884,-6742,9090,4173,-8241,5780,-8221,-3415,8705,-9428,-6146,-2470,3330,5112,-7324,8714,-4479,7065,569,-7376,-9007,-8611,1252,-4855,5644,-2449,9897,-4675,9278,-1568,744,191,5547,-4450,4197,5638,-4441,7389,1541,2302,-9503,-5930,-9154,-4855,-1090,6594,-6838,8563,-9460,7401,-8449,-9139,572,3707,-7435,-2015,119,327,-9266,3340,-3391,6408,531,-282,-8835,5357,-9461,-5025,2583,3677,2505,-1931,-8207,-3563,2532,-4705,3644,3060,6757,8881,-9639,2501,5879,-8531,-551,-1518,8830,5920,-9124,-4871,-1292,-653,6367,-9136,6738,-9307,7219,1919,2983,-7425,-3495,8001,-9342,-429,3511,-2412,8666,306,2359,-2103,655,-9730,-983,-2559,-1536,-1191,-6219,-8274,813,375,-4627,4356,-8663,-5532,8799,-3594,-2916,-9804,1936,2760,5544,705,3574,3614,-663,7565,-7807,-7908,-5223,1206,3297,-8906,773,-7616,-4477,-7215,9128,-1268,7323,-4516,5105,2999,-7037,6155,830,383,-7099,5463,1779,2643,4366,-3877,-6731,-5911,4824,-6570,-9893,-5286,-272,737,-4211,-2512,7375,-9854,170,-4115,9592,-4410,-655,6778,3843,918,8809,-5898,6871,-3916,-452,-1914,1496,2414,-8515,1765,-7759,-989,1714,-3399,8152,-5543,7471,1949,2310,8905,-4639,-1196,-70,-2717,-6976,-3315,8485,2833,-3651,-8054,-5523,-729,-3113,9814,8211,-1943,-5381,-6326,-6855,-9570,-7436,5300,86,-4004,5175,-2050,-646,-4086,-1978,3028,673,-4508,83,2807,4552,9712,2904,-8127,1630,-7119,5901,3897,-8786,-8097,4234,3519,6677,-5991,88,-3044,1818,4765,-817,479,-2448,-644,9469,-1463,5532,-2743,-7889,5190,3523,9060,-9280,-5336,-7324,2717,5080,1753,-4061,9844,-7831,-7502,-9769,-9281,5497,-4853,-5868,-7269,-3357,-3660,-381,6876,-2008,7515,-433,8892,6833,-3252,8205,7154,5027,2911,-8374,2104,5645,4079,8276,-2544,6225,-9944,9688,-345,1551,2355,-3387,-5664,-2508,-5283,-3993,727,-2234,8781,4103,-5444,-2070,1689,9599,1765,611,-3594,2314,-1144,-5540,7745,-8675,-4573,-8514,-8520,-1724,-9397,-2660,3796,7870,1868,-6254,2492,3918,1491,4108,7110,7599,-1345,-4094,1658,-2096,-1134,-5911,-9893,8375,6341,7809,4748,-4333,8575,9311,686,6419,-9093,3851,-6976,-9096,-3841,-9856,-6783,-5047,-7200,7,3022,3891,4288,-412,9361,-5219,-6851,9706,1368,-2628,-2296,-7586,659,-6898,-9717,8184,-949,-8237,3253,-7921,9572,-1163,2194,8748,-4013,8827,9310,8338,-2039,2804,-2460,1937,-4701,9566,-8492,1056,-394,-1011,1459,6782,-8617,9979,-9067,5047,6447,-7403,848,3807,-4798,-207,6678,553,1435,8701,-6325,-7306,-2981,-5117,9128,7062,3861,-22,-2432,-3052,-331,7615,-1122,953,-3840,-4077,6666,7,-6268,9922,-624,3227,-531,6345,7501,-1282,9484,-9552,-8718,-9736,2763,2500,7500,1959,-139,8043,-7154,7521,-1163,-9585,4338,1326,-3888,-7011,-9158,-7497,6319,6762,6493,-3570,-389,-5841,-7440,5461,-9907,6139,3001,5387,-2655,6300,6791,2864,6773,-7847,-3744,9540,8916,7805,5210,5038,-4578,-5566,-1762,940,3770,-137,5076,-3450,-8571,3203,2503,-4410,6197,-3336,-6701,5539,-7642,-7551,5385,-8939,-3236,-4684,6737,8433,-6936,3430,-6909,6157,-3019,-872,5180,5416,6744,4145,9973,7691,6228,8893,-8466,-7684,6671,-1900,6609,-8965,3237,-6702,-2259,3286,4039,37,-3654,-7918,704,-4648,7920,-1415,304,4790,4071,3862,3091,9580,-4307,5264,5666,5897,-3335,7445,4927,-7133,-7719,6782,-3166,2068,-1198,58,-7511,-4504,863,-4640,4489,-2544,107,8050,-8313,-1057,-3847,3751,2560,1922,8431,426,4805,-5066,-3865,-5384,-8060,-2834,5516,5412,4155,-4749,3189,1318,-1290,-2003,-4348,6625,-1149,-6108,1553,-1251,-7825,4616,5030,-465,-5597,-2235,2543,1135,6636,5934,-3760,534,-1923,-8938,-6053,3613,-4011,-705,-3136,9264,6049,-8386,-8623,6413,6656,-5751,-3611,9376,-5294,-6874,-2156,4547,-6204,-4888,-4606,-5069,2845,-4211,1521,2528,3351,9279,-3711,4242,-5200,-7502,6954,312,269,-2026,9842,-1449,5831,-9679,3927,-3940,-4132,8106,2887,-8423,8099,-7011,-8020,2567,-2123,-4007,-7772,9913,-6031,-3311,-7288,2484,-2781,4208,5389,4796,7782,-3486,-7045,5363,-1003,9298,-209,619,4980,-6673,-9973,-5749,6816,-352,7459,-1267,8075,7792,7273,-2736,-8423,7951,-1929,7444,9091,8629,4901,-5434,1780,4328,5203,393,-38,593,-8123,-344,6677,2643,-6384,-922,73,-5546,-6882,1069,-2971,7021,-4470,-766,8416,7825,-8139,-8396,-2187,6069,4207,-1626,5580,2955,5472,6471,6284,-9833,7104,-1075,-966,-7607,-3367,-15,3303,6528,5060,3678,-8920,-6897,7567,2311,-4237,-5532,-374,4893,2599,5768,607,341,8925,3174,-2564,175,1132,-130,7832,1436,8761,-1621,602,-7159,-7782,6724,-8392,1366,413,-5143,-4917,-9330,4290,3147,5001,-1534,4270,5271,4734,-7652,-5294,-7642,-2803,8627,3612,-4262,-3202,1261,767,7200,-40,-1935,-8870,-5244,-6940,2761,-9704,7763,-3343,7419,-7873,-1877,8032,-3918,-6250,4235,-5305,-2897,-9448,-6373,5222,-1465,811,7343,-7428,-830,8107,9452,-8780,2220,2979,-8383,-3650,8756,3808,-267,-8216,-4596,-5810,1464,-8598,864,7786,-3476,-523,-6217,-2930,5103,3292,6333,-1447,6170,8816,-2751,7494,822,-944,7151,4074,5729,8759,-5836,-3293,-4969,6047,9472,-490,9949,-2767,7155,3281,-3472,-1336,6512,1557,6465,6624,6296,5438,-7601,-8870,-5960,-3466,-6305,2919,-1894,-530,-2834,2719,2003,8261,-1817,-2488,9035,-4072,5910,5319,1780,9262,8098,9748,5920,100,1955,314,-5676,-6904,2521,451,-608,5270,-2401,3683,-7430,2597,-1841,8375,-2360,5379,7657,-9311,-5846,5936,2153,-9623,-9777,-77,6562,-4239,-8042,4621,3918,4484,-7271,-3012,998,7275,-9828,603,2129,-5209,-2021,-9988,1665,6528,-9375,7478,-6704,9379,2298,-8204,7289,-7855,-6907,7269,8742,7498,-9089,9537,-2364,-1905,3535,-3194,8492,-2740,-4592,482,5716,1254,-314,295,4203,-8589,1956,-6916,6669,-3370,2207,-9720,-7527,-8778,-6515,816,4347,-5278,6344,-9324,1851,2032,8097,-4268,3686,5632,5073,-4696,-4459,-2105,7549,2201,617,1019,-386,1267,-235,3874,-5908,-4901,-8836,-679,2899,-8957,-6951,-4807,-9522,-2646,4283,8756,4377,157,-712,-4099,-8632,-5330,-6091,-8992,-4865,-5147,9222,-5954,300,7518,2348,-3782,-7629,6923,6533,8565,-971,-7091,-5672,-339,-2791,-7182,1586,-1218,-7002,1723,-752,-780,4167,-7317,8094,-6258,-9758,3360,2782,970,-8737,1977,-8707,-5078,-2525,54,4225,-7525,9027,6251,9173,-6691,-1902,-5911,-8801,-3716,2373,-2366,-5234,-6124,4398,-9323,1334,-7386,-3552,-3924,-3889,-4139,527,-8543,-9491,-6591,-207,-6428,7708,3997,4885,8728,8553,-6020,38,-5687,4141,7213,1486,-2348,569,-2391,8961,3453,9358,5486,3611,2661,121,-8363,2313,-6521,9049,-3344,6353,-2436,6447,-5134,4701,-9776,-6335,-2108,-6629,1961,-2384,-9915,8693,9158,-9529,1620,7036,-3254,34,3004,-2768,-6869,-992,-1644,2597,-177,-1,6353,-4539,4023,2956,4077,2194,2413,7917,-9656,-2056,-2179,6210,8378,-4884,-8626,2193,-9899,2235,1375,-9678,-770,6293,5351,9300,8729,9459,7320,8423,-7442,9148,-2769,7781,-6311,9966,-4022,-3346,59,5626,-3725,6570,5367,3396,-2577,967,-2245,1345,7888,-3315,4820,2047,-7254,-6031,451,7231,8081,-3286,-4362,2418,-9846,6819,2128,1969,-1439,8004,-2605,7455,-4154,2797,2809,-4507,-1029,5730,9050,-8191,-9644,-3736,-6953,-6448,6382,-2197,-2070,-1019,6466,-6130,-1200,2942,1408,-3560,-7503,-4900,-2152,-6844,7869,2897,-1748,-4526,-7882,-6305,9115,1584,-8654,3102,9281,291,-5378,-4044,-7961,5762,-5093,3033,-4455,6522,5311,5340,-2272,1882,-2896,8115,-5084,-4941,-5782,230,-1912,-1277,-8808,5454,-8716,-121,1318,6383,4949,-9201,-8781,7483,8076,1739,-8860,-1953,2830,7597,-5749,5253,-8921,2911,9541,-5703,-8508,-487,-7021,8914,7891,-5963,4499,6150,-5980,-2684,1281,8394,9978,-6047,-5862,7601,-2263,-4499,1644,-4661,8808,4056,5079,9909,-8756,-3060,22,9338,-4006,-8662,6465,2413,4931,-4250,-7760,-5801,5754,70,-298,8522,612,-2636,-5604,3561,6947,3359,9159,-4118,7716,4539,-2218,2835,-3467,-1941,1901,-4276,1205,-2839,2078,2102,8777,9928,-2106,9493,-5070,6120,-2143,4304,-4123,6969,3584,7751,1013,640,8303,-6207,-6319,-1195,-5436,5212,9086,-1071,8194,-543,-9921,-3177,-7928,9516,-8847,-4017,-3739,-6255,8046,2070,3194,5321,5550,6796,3423,6702,-1953,-7509,2379,-4538,-2957,-1439,-940,725,-1336,-458,-4015,7745,-5649,24,8706,-5024,-7877,2523,9843,4709,6781,663,3705,-5359,-8580,4481,-8221,-641,-5507,7765,1049,-8722,-8566,8190,-4738,4624,-9876,-2674,-8002,5903,-8062,5181,5169,-6419,-2630,9342,2786,-1081,6727,-7535,528,-9091,1043,-5046,-515,-7217,5278,3191,-8166,-809,-1452,-1155,4727,2815,3306,5717,-1781,4144,6650,-9890,5865,-9998,-3558,-9655,-4518,-5128,2326,5042,9218,-1644,-9293,-4324,858,-1724,-6770,-3227,7953,2055,-7267,1749,-809,-618,-2149,-11,7552,-3286,5033,-3496,9877,-74,-5988,-2040,8907,-1091,5985,6352,-7231,-2285,6254,-6949,-6716,4794,7789,-419,-4517,-6033,-5922,-2240,-8146,2911,-3212,-9505,-5853,5380,2342,7531,-4114,-4682,-9778,-9547,-8591,-7243,-2139,2774,5075,-834,3963,-6290,-9950,-557,8183,-3968,-8175,3174,6496,7354,-6409,-5596,8153,8290,-8292,-340,2111,3568,-2432,-1225,-1984,-6083,8842,-3070,1652,9840,8312,7360,-5832,-1111,8889,-8092,5152,8610,-4161,9146,4974,9919,-5059,4439,-3487,-652,-9290,8245,-9832,2000,1701,-4520,-8335,-1826,9716,152,-950,842,-205,-6634,-1151,2384,916,8701,-8457,-473,-7325,7461,-2179,2191,-1088,-5933,7681,6015,-9486,-4624,9769,3724,9347,7054,-8344,-8939,8723,923,7717,3113,-2623,1222,-6691,8906,-546,561,5124,7793,-1056,-7080,6027,-6634,8433,2676,2192,3801,-6455,-7294,4735,9819,8340,-6296,3189,7891,-4154,3859,2101,1321,2412,6262,9830,-9538,-5693,5175,-954,4826,5372,2990,4354,-1257,-3094,-5290,2842,6734,-9808,-3333,5262,-3641,8261,-104,-1320,-9952,-9379,5124,6468,9698,5431,-7882,-2699,9866,9649,3798,-344,467,-9946,-5513,3147,5983,-2020,-1406,-3125,-8335,-6246,5918,3452,860,-1297,-6848,5966,-9321,6440,-4714,-7610,6116,-3682,-4351,-2322,8758,-4996,-9114,1064,-7632,9668,-3884,-4575,-4511,1892,-6074,3827,-5495,257,-5888,-6693,1847,-374,5896,-3403,1353,-7717,-3564,3490,2534,3855,-6715,-9454,-4255,-21,-8005,-4336,2335,1008,7349,4652,-4763,2880,2974,-7941,-9141,-7057,-2332,-2426,-2877,-191,9006,287,-8995,-9060,8222,-198,5669,4122,5966,-8107,-6572,-2107,-1245,-2241,4950,-3930,3889,-3078,-9806,-4308,-3978,6687,-4440,8917,5283,4312,9957,-8050,-9619,4053,-6736,-9365,-8754,3846,6035,-349,968,6390,-7782,-5872,9023,9543,6331,1611,3149,1614,-2482,-1503,6138,8867,-805,-884,1475,2744,-8307,549,-9654,5203,-2317,-337,9796,-169,-841,2985,2670,-709,6999,5441,6421,-1783,3254,-8177,-5929,-419,-5095,6388,8376,2238,4504,9113,5089,2424,-4051,-5406,1132,4461,-4697,6426,1699,5714,9047,-9584,98,4005,2167,-4757,-5328,-1524,5031,-1578,-8029,7946,4110,-5901,-1738,-7920,-1255,6878,6229,4417,2324,9874,-4207,-5391,-1506,1144,6543,1322,2131,-5996,-5167,-8837,-1337,-3276,-2221,5589,7261,4696,8478,6369,-1878,-1087,-1550,-2057,-2300,-2053,1979,-3139,-7669,-778,-4259,9028,4649,5008,-729,8398,-5223,-4985,-2287,734,6448,7821,-5166,8306,-6972,-1747,1445,6405,-5457,-375,-1353,-3786,6369,867,-8571,-9649,-7854,-1442,3234,-1527,-6550,-7147,2591,3425,-4109,9483,8007,8909,-9292,9828,-2834,7850,-266,-1666,-6429,1935,-6082,5960,770,4747,5863,-7246,-1119,1736,-4578,4452,6805,-8496,7232,1930,-2616,7487,2516,558,-4447,-1307,1318,3547,-3110,9616,-3275,-6945,-2650,6815,-3971,2298,1679,9801,2338,4769,-8854,-5089,8035,3662,-8608,4007,529,4885,8124,-9497,6685,-1746,9424,-2042,-3593,-6542,-4313,-1736,-8589,7514,5989,4614,6909,-7108,-988,6499,-6781,9041,-6205,6457,-5696,-5032,-5533,6417,-360,-8883,4215,-9739,-1150,-4730,4913,-518,-4631,-7906,-6756,3892,-1180,8832,8870,-6035,5851,-4775,9800,7556,-5692,-7642,-2503,1415,11,-4137,-8702,3774,-568,2450,-9777,738,8734,-4971,8702,-2742,4497,7794,-2761,-9567,-9530,8572,5103,-767,-8244,841,5245,4599,-4249,-5368,8172,-2027,-9377,9625,321,4644,9,4861,-8569,1713,-3100,307,-1845,632,6195,3065,7314,680,-7870,-4230,3786,5565,-8962,-4590,7847,-2935,-8382,4734,-2824,-7516,2789,3817,-1547,3744,-961,9940,9710,6357,3945,7609,-8898,1278,810,5397,16,-9299,1124,472,-1191,-6318,-8101,5252,-8177,-682,-6094,-6288,6071,2151,538,-9635,3924,3451,6377,483,-9331,2556,7797,-7385,-4032,-8033,-8331,6363,-7656,-1786,-4991,3539,5074,4791,-1189,4999,6120,-8363,1667,4432,6473,-4872,1099,-1511,9231,575,5636,-7912,3139,9204,-1626,-2505,4800,739,4044,-3941,7019,5577,-2118,-506,7318,7261,8145,-1452,7935,2955,1889,919,-6264,5858,-8145,3204,-3586,3485,-8994,-9813,4075,-4429,2737,5844,-3288,1654,2650,8262,1267,467,9924,8284,-7636,5292,-8417,-6835,8975,4216,-7062,-3547,9991,2605,-2294,-9375,2954,-521,6606,-3287,-2892,5562,-5296,-353,1199,3361,-6747,2449,-8810,-4598,2367,4729,311,1231,7778,-58,6304,-2700,5134,-5179,6537,9268,5302,-2746,-1556,6930,-435,-598,8332,8828,-9492,-3401,8044,4224,7444,3427,-9642,2053,2017,4612,-8523,5159,-213,8043,-1747,-9495,-4331,9138,-4368,6,295,-6897,5193,386,2824,-3310,3509,2445,1144,236,-6476,-3836,9043,-1820,-2848,-3826,5872,2449,7592,-5475,-4849,-8889,8947,1758,-9502,-7728,2363,5890,-4389,8214,6041,2395,9067,7239,-4947,3151,3674,-3648,-4384,-9193,9742,-9698,-6032,-2247,4899,-5448,-7403,-5845,8806,-3873,-4672,-1405,3682,6467,-7159,-2248,-1926,1799,-3369,-559,-5302,8974,7537,5024,3001,-6987,-4437,-45,8944,4416,3874,7361,8402,-6832,-8581,3749,-5382,4786,5067,-2964,-8188,9186,-3511,-4979,-5189,-4039,-3370,9546,354,-8236,3132,-19,-6188,-7741,-2776,9976,7066,-1642,9624,3270,5684,2739,-2392,5174,4599,-2917,4287,7423,-1101,-1040,4412,7953,-6969,-7865,-5283,-1260,8135,6470,-4000,-5733,7403,-8066,-8052,-2435,-26,-5024,-3218,-1334,-9787,1236,-2580,8330,-3543,3793,-550,-7825,-2686,-4328,8918,773,8897,-9393,-4530,9826,2855,6115,4174,-9245,9575,7479,7965,-5577,-97,-5040,-4078,-2064,1453,4374,-9755,-6982,-8644,2576,-821,-9262,-5855,-1346,-196,-2026,9902,-8616,7421,1185,-9546,4300,-4376,-1054,-5804,-1225,7893,-6805,9967,-8734,2749,8872,8740,1820,9925,-4174,-9699,7994,8016,2024,2488,-1935,-4626,6700,-1393,1243,-849,2870,-8632,6923,-9584,3102,-3442,7870,-923,-5332,5243,-1538,6363,-915,383,-5803,9702,1232,4941,-2992,3965,7323,7647,8491,-791,-1994,3692,7474,9355,6173,989,8446,-7654,3771,9231,8189,-8849,-3411,7531,-193,2427,4763,1806,3195,8305,-1084,-3169,3917,7606,-7406,-536,9981,-1086,1096,1803,3508,-5780,8738,-9567,5815,1804,5131,-1872,7931,-7899,-340,-4861,-2823,-5528,9094,-5168,-6491,-9994,9169,-8777,8344,-7314,-5123,9174,-6242,-2380,-9300,-3607,-4120,-7934,8938,-4143,7889,3396,5419,2230,2400,98,-282,-967,-1810,-7076,-6008,-5594,1119,-7126,8554,-4386,318,-6484,-2211,6187,-3774,6825,9055,6626,-801,5240,7485,-8979,-1858,5731,2482,5090,6933,7117,-6316,-5326,1635,9103,-5535,352,-2076,5791,-5840,5547,-5333,1893,-5945,5354,6009,-7568,3312,3965,9703,3627,5198,-71,-2241,-754,7165,-5121,-3680,-8177,-83,9448,-2413,-8642,2694,-2750,4209,4930,1988,5531,-161,-3768,-4401,9628,9826,-8840,4230,7706,-2824,-3673,4239,5140,-5545,-5388,5626,-3764,-8244,2947,4469,-7768,1982,-898,-6392,2419,6007,-2914,9568,3148,-6248,-5623,-7113,4216,-1005,826,2709,-8970,9591,-5733,237,-7265,-2246,-916,-4842,3247,-1645,-6550,-6002,2828,6443,5731,5177,-2443,-2064,-9169,-3349,1794,2960,9579,750,-9937,9564,3170,-573,6456,7670,-1877,3541,-1245,-8797,7156,-6470,-2760,-7963,-2924,3901,4500,2821,-2267,-9614,5404,-7781,-1945,-9327,-9396,-8706,-3404,378,-9958,2793,2036,-8297,8682,1025,9382,-9109,244,-1338,9343,3489,8243,-816,5178,-8110,3994,-1781,-8054,9698,-262,-4353,-9514,-4902,-8377,6675,8948,-985,1295,-1195,-6799,-593,-9724,-6047,4362,2652,-8994,-6967,3648,-8860,9315,9063,-724,3409,5873,-4427,498,9065,5868,-9237,-9801,-623,630,-7552,-3625,-923,7285,-3644,-5767,-838,-6135,-2512,-5136,-2690,1040,7138,-3647,-3630,4123,-7725,-3457,-238,8394,-3987,1721,-4852,-8513,7996,-3094,7455,-9248,4226,-351,-7587,1659,5606,-3122,-7871,3542,2666,3348,7617,-5714,8260,8275,1560,-2542,-7384,4135,8303,89,4699,4987,-68,4034,7954,-125,-2148,3385,-2420,6991,8938,2221,-3953,-7699,5168,1536,9301,5556,-9322,-7602,-6203,-5242,6649,2771,4011,8756,5972,5481,-712,1608,5633,5596,-9965,-9976,-5646,-7914,3649,9326,-1208,-2613,-1657,5748,410,4543,1116,4850,9929,9748,6303,-7411,6851,6728,-6863,9723,79,4103,5252,-7814,4147,-8867,-9156,-5387,-2590,5475,6685,-9932,8145,-1382,7321,5690,-6771,-7649,6162,2381,-5127,-6055,-3616,-2814,-7991,-4325,627,-2294,-5656,1795,9019,-3101,-1172,4950,2820,-8613,-1651,-1151,6410,-1028,-3435,-106,7126,-1335,-4160,6513,-6559,1116,4312,-8322,-8676,1075,7436,5224,9138,7670,-6648,-3912,8610,6666,251,6802,2038,-3717,-2586,-3542,1216,-7639,-3621,-1614,-3389,-561,4745,-6701,-9016,9966,-8572,-9218,5303,5276,2478,-8632,-7504,5818,4899,1719,-1669,6445,6825,-4815,-9320,-2641,-7488,3168,-248,4621,4534,8674,9096,3106,-1616,-1122,2144,761,5400,-3352,-5880,2876,2773,838,-2294,3431,1752,-869,-4498,4826,-3546,2138,-3612,1142,-48,-9017,-6391,667,3518,9332,4532,7025,-6444,-9466,2568,3581,-7094,4056,8919,1236,9263,5089,-4306,4669,7694,2181,-4118,-7500,8855,160,-6801,-2685,6718,8191,-4051,6003,8889,-2361,-9439,-528,-3946,7755,-6714,-3943,-4842,8575,8891,-9175,-7530,6214,3018,6751,-3667,7281,1470,-1393,595,1710,2772,2762,-8153,-6089,-6604,1933,-5660,-1848,9700,-5823,-1378,3011,-6117,-4453,-4390,-1092,-1346,-9710,1171,6785,-4601,-9171,-2781,-1604,4945,7004,-9950,-1549,8593,7155,-8606,3807,7337,7992,1640,-5224,-6800,-896,124,-5594,-3470,3945,-8987,9795,9124,3153,9385,904,5137,-4069,6855,-1104,-8507,-2108,9669,-266,1242,-9287,7703,-7537,-5709,2990,-2738,-8274,-7745,5336,-4588,-8693,9495,-7345,-5674,8615,1781,-5102,4557,-4117,5516,6700,3185,1646,-984,1814,7912,1649,-4769,1622,210,2295,2621,-8543,1244,-3600,-7587,-9767,2075,-1224,6434,-4596,-3733,4875,1819,-9510,6344,-2944,-5302,-6353,-1228,3906,1043,-168,-7394,-89,2592,778,-5436,9191,4653,7000,-707,5025,-8735,-9282,-317,5359,9655,3380,8923,-3184,-5853,-2776,4825,9567,-5844,-8840,2855,-7180,-4675,9838,-7539,-7062,5470,7074,5931,5880,-8198,-2886,-8054,4872,-9396,5359,7246,-3711,-5076,-716,8088,758,-3120,1185,8150,-6314,792,-730,-1725,8618,3661,8464,-3922,-9082,6295,694,2148,-6993,-8087,-233,-1656,-5962,1480,9114,5551,-5336,-7685,8296,-834,-5162,8546,-970,673,804,4000,-6834,2556,-5330,1686,-6822,2417,5023,8070,7936,-9186,9730,-1821,-8762,-9798,-4906,-8062,3606,-5433,5644,-4358,718,4819,-5834,-2790,9240,914,4706,5298,-9443,-234,-8103,2681,4457,-7567,846,7374,5887,3668,-2457,-6819,7634,-234,-3349,5504,4552,-5031,-7464,-7192,7445,7003,-4635,-8135,837,735,-674,6112,-9528,-2124,-471,-4899,4766,-4019,-1116,-7606,1199,4153,6734,2807,-9696,55,5905,1437,9026,8882,2444,8182,8603,3228,5941,2469,-2403,43,-9182,-9425,-6073,-2811,3595,-7926,8669,8334,-251,-585,6451,-3759,-9033,9740,-867,8891,-6051,-8920,-6569,-7676,-5564,-6468,3605,2034,2109,-6111,3579,9957,-5139,4264,5997,-4631,-7549,-2283,-7714,9576,-6156,-4178,-970,3270,2218,-4848,4717,-7447,-8490,2380,-9463,-2160,-2033,-4990,-1189,1418,-4485,-6143,-4566,96,-5315,7979,-1961,3769,5479,-3101,-1732,3653,5314,7651,-2141,-635,-1973,9539,-8690,-9020,2321,-7481,9593,-7298,-8886,349,5695,-1736,9640,-7407,-438,9251,-3662,-6530,4938,7868,9951,7000,-7799,-2238,-5816,2522,-7495,-1963,-8492,9989,-3482,4894,-6974,3799,5219,-9989,-9307,-8821,1619,-1145,875,9694,-1780,8228,2572,-3131,-8471,-8909,-8273,8185,-8818,-2597,6868,-782,1943,-4015,-6701,5742,8230,1583,7643,5081,-6821,5360,-4034,9483,-377,3929,-5521,-7094,-7531,4739,3656,-2809,5867,941,8926,958,8830,-1293,3194,-1692,-6360,-1437,8044,8933,-8938,-1400,2108,9419,4489,-4589,9818,3488,7310,-9753,-1313,4277,-3937,484,5489,-9476,6463,6012,-8082,-5361,1268,-1225,-1667,4674,1066,5372,2608,-4370,-7259,1739,-1204,-2342,7004,-6409,772,-4922,8552,5927,3695,4371,-792,-2657,2274,4683,-2551,810,9309,-90,293,8588,-873,4404,-4558,4401,-5725,3605,4311,1950,-3762,9989,-1721,-8734,-5520,8631,-1849,-436,2562,-1047,-1411,8656,-4085,4243,-3354,-3867,-6838,7969,9238,7995,-6249,-5452,-6622,-6384,6709,-6199,7704,-6915,-7586,2472,7419,6524,7484,5414,-4678,4471,-4400,7033,-2694,-672,-9001,-8354,2706,2100,2329,3662,-8068,6105,-1078,2105,-8,4750,6097,-3389,5925,-6773,-5332,7425,-3365,6957,-4762,-8429,-3049,5405,-8955,7630,-6836,-805,-1892,-484,4526,-811,3565,-5208,9523,2720,-6442,7138,2014,3679,188,8134,6130,1005,7584,8564,6725,-9417,2436,-2180,4198,-1122,3065,-6626,-1406,-7150,-6147,-6702,-5705,9986,-3252,7135,-6860,7573,-8236,887,8213,8435,9456,8754,-1815,-4761,5063,-8662,8845,-9185,4678,-9270,4194,-5343,6433,-7775,9346,-6155,5229,5357,-3036,-1355,1888,-2412,-5767,-3168,-5200,-2993,888,2398,-8658,-5247,193,-2120,-1002,-3971,5902,6674,305,-9145,-1397,889,2944,1791,5767,-1768,6420,-7295,8716,-7289,-5650,-5209,-8039,1096,4763,-1076,-3911,-9809,-4084,3045,-5974,3764,7009,-4200,8943,2886,-8540,-1757,6566,8892,4882,-9333,5970,-6445,-69,7245,8215,8864,3836,7898,-6381,-2174,4687,-3738,-5335,5752,5875,7141,-1545,5831,2542,-4131,-4090,8233,-2606,-5273,3574,2628,8594,-6583,-3502,-1816,7875,934,8752,5877,-8547,-3971,-5665,5552,-5759,1472,-2122,-6787,3810,-1855,-3638,-9246,5019,5785,-7556,735,6312,-1688,8865,-9745,-4106,9082,-5285,1355,9956,-58,901,-5571,-6397,2764,4310,-678,3250,-8654,5515,-881,329,2387,-890,3213,2135,8108,-5775,3696,-221,6397,1306,-6861,2424,-5438,4501,8162,-173,-5593,-3694,-7711,6344,-1476,-4957,4134,9160,-8787,-2884,4931,-1057,-531,-875,-1584,-6913,-385,2421,-2190,9366,-2348,-2440,-793,8169,6110,8604,-3019,-2086,3940,5843,-8760,4518,5311,-6408,6040,1516,-2101,6448,5869,3283,-313,-751,-830,1533,6829,-3402,-6978,-8229,1754,9658,2031,748,-6824,6124,-9151,2903,-5190,8787,-9346,-9821,1025,6360,2788,7815,7784,2092,1674,-9102,6817,2215,-3044,3777,-2823,-3086,-6779,-7139,3016,6285,-6176,1182,-9676,6737,-2715,-1335,-2543,1220,1208,-7796,2480,8070,-2625,-9297,2591,1401,2358,5750,-3372,21,-3680,-7499,8502,-2596,5651,4327,-3022,3648,-5192,-834,9827,8812,-5587,-4452,-4342,7631,-2342,5543,-6381,9144,4415,1237,-1405,2693,-5866,-5548,8248,-1333,-692,3377,5406,4808,-530,6429,-3147,-5601,3557,1955,-2900,7611,-6873,3044,1726,-5833,-3912,-8068,2592,-7143,489,-5920,3462,-6080,5488,4833,1289,-3337,3746,-7312,1035,-7913,-166,1914,2903,9545,8346,-4588,4123,850,-2821,5524,-7243,1572,3923,-7014,-5389,1616,3414,6732,-2601,-2697,4253,-6362,-8009,5739,-5896,-9568,6962,-2266,-2180,-9945,-3385,8746,-9573,7065,1480,-9572,2850,-6674,-3027,-8620,-4115,9476,2952,923,559,-1659,-8079,-4909,3555,-7981,4065,-919,526,9638,-6023,-9973,-9185,-1285,-8000,668,6525,-4595,-453,7524,5975,8714,-9005,3272,-4825,-1529,4914,6234,-345,2528,-551,6025,98,-9574,5899,-8810,6038,-9866,-3090,1651,-6595,-3210,9920,6489,-4402,1112,2928,-2067,2452,3654,2651,-7879,-5250,3984,-3971,-2671,6392,-6242,-6732,4270,-3634,-7054,-6976,9210,7235,5771,6210,4699,-5047,898,2537,-5118,3140,1881,-383,-4603,7119,-3842,4780,-8631,8548,8099,142,851,-9639,9684,3272,-3519,-1605,7216,-6054,-1801,1867,8346,-2077,-2024,-6486,4750,-5336,2341,1200,-5885,3168,8937,1798,5692,5659,-4591,1694,4882,5652,-2827,6053,-5761,7248,-2644,8424,-2095,1855,-1877,2034,683,-8284,-3069,7159,7648,-9261,1243,-7185,5116,-7644,-4494,-9735,7176,-4717,-9792,-1412,3654,-6149,-6133,-602,-8640,-1455,-1310,-2307,4261,8650,-9766,-2805,-754,3715,-7646,-358,610,-4949,-2845,-9118,5996,-8203,-6696,-1616,5178,-286,9401,-2754,8903,-9596,-9214,-7276,5950,4551,2544,-9770,1957,-2974,-8111,5167,-7907,-3650,5028,4248,5133,975,-1127,-8999,-3423,-8216,-3289,-7234,-2760,-251,-6749,6784,-8690,222,8115,-1115,-2118,4795,3847,731,9643,-7389,3634,4437,-1954,-8159,9737,3644,4795,-4915,7250,-9083,6943,-5975,8812,-1828,-6409,-9248,-8576,-5986,2164,9860,8623,7419,7345,2029,8619,-2374,-7730,244,219,-9525,-1350,1153,-4823,8402,4623,994,5649,7259,995,-9964,-9438,9126,-4887,9573,-9642,-6657,-9172,2077,4050,-2017,-7694,-4577,6795,-2971,-7713,-4044,5494,5856,8356,6617,-4091,3316,-1236,7205,-3509,5118,-8660,-599,8945,-949,8677,-83,2304,1927,7891,-7867,-8247,4635,1585,8074,-2871,-5152,5380,8699,-6994,-112,-5250,2848,-1520,7669,-2568,-4832,4771,8086,3978,6819,8,2760,-2999,-2939,-1875,8062,8079,-8521,-6131,4683,8167,-1460,-1198,6888,6936,6487,4443,-4924,8545,1207,-5908,-1891,4155,-4074,2735,6699,-7440,-624,9824,-1742,-5620,1685,2748,-7625,2426,-3110,4117,2421,1441,-3006,-5265,-4789,-4900,-5509,-2099,1672,9985,8920,-5298,-7731,5305,-7325,-8294,-5013,7954,515,7676,5463,7903,-1980,-9432,8609,-8443,2374,4598,7731,-7126,6945,7729,9543,874,4275,8507,-5707,6263,5973,-5591,2390,-8438,6162,-9836,-6802,9040,-2823,1510,4906,9713,-2808,404,902,-6371,6057,2821,-4529,6002,977,6693,6297,-5595,5393,-4657,-2361,-7223,2175,4310,-8409,-3535,4864,143,-5990,4368,-5922,-1509,7389,-4793,-7010,-5336,-1271,9355,-2299,-6448,5888,6650,-623,-6363,-9239,-4318,2880,9403,-8200,5616,7043,-7986,15,-4313,4115,8431,2897,9172,-1345,7694,-7631,-4741,-4736,7233,8782,-6896,8310,-9603,312,4890,3952,4750,-6435,-7131,1265,-7173,9951,-4053,-8704,8411,-3682,2992,9621,9012,-5060,-5543,3046,1964,-9169,-669,-6608,-3140,4121,6916,-1535,7449,4704,3193,5371,1491,9948,-1177,3268,-3426,803,3362,9556,4865,8755,6308,1331,-3314,2138,8715,2157,-9296,-6026,8542,-6519,-9692,-732,8507,6941,7789,-1828,6366,9046,3883,3862,-4495,-9689,-8612,-5241,-4144,1024,3853,2407,7876,-2504,6738,-880,-2669,-7390,9293,5489,-7601,1583,-6294,1902,-9299,4545,-7770,3094,2051,-1825,8343,5860,7650,166,-1971,-8077,-1741,5047,5899,-4903,9572,9849,2944,-5174,-1004,-2676,-9257,9496,-8799,1435,2330,1098,-4018,6639,2672,-9058,-7369,4012,897,-543,175,-6999,6742,3627,5678,1189,-35,7620,7353,8028,-3042,-8246,-6856,7672,-9966,-4402,2993,5666,7625,5540,-7369,8038,7193,1299,6941,-3977,-8028,-9944,587,-6922,-9668,-951,-4758,-6034,-8592,-6136,468,-3436,-4913,-1043,5709,-1676,-6526,-8844,2895,-7556,242,-2239,-6538,-9859,4540,-1961,7331,9689,8864,4278,1867,-3736,727,1296,-6819,1044,-9461,7023,-2163,-8735,8391,-2785,-9773,-9227,-154,-719,-6318,5170,7329,5035,-8961,1854,8503,581,-2121,-5158,-7164,-2728,4334,7339,7225,6167,3234,-6125,4558,2877,-3966,-4420,-6460,4998,-1015,50,5795,-2533,1892,7828,4149,-886,3467,6823,5806,-5012,8675,-4026,-17,2489,-1191,7556,-6419,-8071,-8692,2286,-5834,-7244,2017,-6866,-3667,-8720,-7419,6686,-7450,9672,-4168,223,1194,-3890,9370,8009,3639,-2334,-148,-416,-9369,-2508,4593,7548,2899,1109,1664,-6444,-7468,-7101,2541,9748,5514,6446,-364,-5737,1950,-3882,5583,-349,5464,-8267,1016,2699,-3235,-1727,-8653,4207,3693,7345,2137,3867,-3718,-2279,-4098,-5564,7184,5899,-6412,5350,-6887,5860,-4174,7889,403,9962,815,1898,-371,1237,7447,4993,976,557,-2667,-6227,5118,-7313,-2016,-3026,-1384,-6650,5942,-9881,1986,7650,-9090,-6733,-7433,6567,3601,56,-4799,7801,-5961,7534,8138,-5479,-3106,6947,-518,-9858,-8925,-4158,-8974,8073,4955,1720,8200,1656,-4618,-1682,-3754,-328,1044,6319,-2649,2229,5546,-2689,-7678,8905,-2232,-6873,-4406,-7455,9803,-4030,-3533,-591,7007,8190,7664,-8401,6419,-1094,1426,-1566,1063,-7225,3262,-2211,-9285,-3245,-2364,3862,-337,-8012,-6620,7491,6256,-7364,9256,4563,-5225,-4012,1072,-391,-8543] 63565
diff --git "a/leetcode/editor/cn/doc/submission/[222]\345\256\214\345\205\250\344\272\214\345\217\211\346\240\221\347\232\204\350\212\202\347\202\271\344\270\252\346\225\260379802663.txt" "b/leetcode/editor/cn/doc/submission/[222]\345\256\214\345\205\250\344\272\214\345\217\211\346\240\221\347\232\204\350\212\202\347\202\271\344\270\252\346\225\260379802663.txt"
deleted file mode 100644
index c3d537d8..00000000
--- "a/leetcode/editor/cn/doc/submission/[222]\345\256\214\345\205\250\344\272\214\345\217\211\346\240\221\347\232\204\350\212\202\347\202\271\344\270\252\346\225\260379802663.txt"
+++ /dev/null
@@ -1,19 +0,0 @@
-# Definition for a binary tree node.
-# class TreeNode:
-# def __init__(self, val=0, left=None, right=None):
-# self.val = val
-# self.left = left
-# self.right = right
-class Solution:
- def countNodes(self, root: Optional[TreeNode]) -> int:
- if root is None:
- return 0
- root_left_count = self.countNodes(root.left)
- root_right_count = self.countNodes(root.right)
-
- return root_left_count + root_right_count + 1
-
-
-
-# runtime:88 ms
-# memory:22 MB
diff --git "a/leetcode/editor/cn/doc/submission/[297]\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226378166704.txt" "b/leetcode/editor/cn/doc/submission/[297]\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226378166704.txt"
deleted file mode 100644
index 61957c0f..00000000
--- "a/leetcode/editor/cn/doc/submission/[297]\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226378166704.txt"
+++ /dev/null
@@ -1,48 +0,0 @@
-# Definition for a binary tree node.
-# class TreeNode(object):
-# def __init__(self, x):
-# self.val = x
-# self.left = None
-# self.right = None
-
-class Codec:
-
- def serialize(self, root):
- """Encodes a tree to a single string.
-
- :type root: TreeNode
- :rtype: str
- """
- if not root:
- return 'null,'
- left = self.serialize(root.left)
- right = self.serialize(root.right)
-
- return str(root.val) + ',' + left + right
-
- def bfs(self, res: List) -> TreeNode:
- val = res.pop(0)
- if val == 'null':
- return
- root = TreeNode(val)
- root.left = self.bfs(res)
- root.right = self.bfs(res)
-
- return root
-
- def deserialize(self, data):
- """Decodes your encoded data to tree.
-
- :type data: str
- :rtype: TreeNode
- """
- return self.bfs(data.split(','))
-
-
-# Your Codec object will be instantiated and called as such:
-# ser = Codec()
-# deser = Codec()
-# ans = deser.deserialize(ser.serialize(root))
-
-# runtime:1032 ms
-# memory:20.5 MB
diff --git "a/leetcode/editor/cn/doc/submission/[297]\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226380162665.txt" "b/leetcode/editor/cn/doc/submission/[297]\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226380162665.txt"
deleted file mode 100644
index da699d5a..00000000
--- "a/leetcode/editor/cn/doc/submission/[297]\344\272\214\345\217\211\346\240\221\347\232\204\345\272\217\345\210\227\345\214\226\344\270\216\345\217\215\345\272\217\345\210\227\345\214\226380162665.txt"
+++ /dev/null
@@ -1,49 +0,0 @@
-# Definition for a binary tree node.
-# class TreeNode(object):
-# def __init__(self, x):
-# self.val = x
-# self.left = None
-# self.right = None
-
-class Codec:
-
- def serialize(self, root):
- """Encodes a tree to a single string.
-
- :type root: TreeNode
- :rtype: str
- """
- if not root:
- return 'null'
- left = self.serialize(root.left)
- right = self.serialize(root.right)
-
- return str(root.val) + ',' + left + ',' + right
-
- def bfs(self, res: List) -> Optional[TreeNode]:
- val = res.pop(0)
- if val == 'null':
- return None
- root = TreeNode(val)
- root.left = self.bfs(res)
- root.right = self.bfs(res)
-
- return root
-
- def deserialize(self, data):
- """Decodes your encoded data to tree.
-
- :type data: str
- :rtype: TreeNode
- """
- print(data)
- return self.bfs(data.split(','))
-
-
-# Your Codec object will be instantiated and called as such:
-# ser = Codec()
-# deser = Codec()
-# ans = deser.deserialize(ser.serialize(root))
-
-# runtime:1040 ms
-# memory:20.6 MB
diff --git "a/leetcode/editor/cn/doc/submission/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260387901775.txt" "b/leetcode/editor/cn/doc/submission/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260387901775.txt"
deleted file mode 100644
index 60f31665..00000000
--- "a/leetcode/editor/cn/doc/submission/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260387901775.txt"
+++ /dev/null
@@ -1,47 +0,0 @@
-class Solution:
- def merge_list(self, nums1: List[int], nums2: List[int]):
- res = []
- while nums1 and nums2:
- if nums1[0] > nums2[0]:
- res.append(nums1.pop(0))
- else:
- res.append(nums2.pop(0))
-
- res.extend(nums1)
- res.extend(nums2)
-
- return res
-
- def remove_k_digits(self, nums: List[int], remain: int) -> List[int]:
- assert len(nums) >= remain, "保留的数量不应超过 nums 的长度"
-
- k = len(nums) - remain
- queue = []
- for num in nums:
- while queue and queue[-1] < num and k:
- queue.pop()
- k -= 1
- queue.append(num)
- return queue[:remain]
-
- def maxNumber(self, nums1: List[int], nums2: List[int], k: int) -> List[int]:
- res = []
- for part_remain in range(k):
- if part_remain <= len(nums1) and (k - part_remain) <= len(nums2):
- part1 = self.remove_k_digits(nums1, part_remain)
- part2 = self.remove_k_digits(nums2, k - part_remain)
-
- merge = self.merge_list(part1, part2)
- res.append(merge)
-
- return max(res)
-
-
-
-# total_testcases:101
-# total_correct:54
-# input_formatted:[6,7]
-[6,0,4]
-5
-# expected_output:[6,7,6,0,4]
-# code_output:[6,6,7,0,4]
diff --git "a/leetcode/editor/cn/doc/submission/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260387903098.txt" "b/leetcode/editor/cn/doc/submission/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260387903098.txt"
deleted file mode 100644
index 1d627c0a..00000000
--- "a/leetcode/editor/cn/doc/submission/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260387903098.txt"
+++ /dev/null
@@ -1,44 +0,0 @@
-class Solution:
- def merge_list(self, nums1: List[int], nums2: List[int]):
- res = []
- while nums1 or nums2:
- if nums1 > nums2:
- res.append(nums1.pop(0))
- else:
- res.append(nums2.pop(0))
-
- return res
-
- def remove_k_digits(self, nums: List[int], remain: int) -> List[int]:
- assert len(nums) >= remain, "保留的数量不应超过 nums 的长度"
-
- k = len(nums) - remain
- queue = []
- for num in nums:
- while queue and queue[-1] < num and k:
- queue.pop()
- k -= 1
- queue.append(num)
- return queue[:remain]
-
- def maxNumber(self, nums1: List[int], nums2: List[int], k: int) -> List[int]:
- res = []
- for part_remain in range(k):
- if part_remain <= len(nums1) and (k - part_remain) <= len(nums2):
- part1 = self.remove_k_digits(nums1, part_remain)
- part2 = self.remove_k_digits(nums2, k - part_remain)
-
- merge = self.merge_list(part1, part2)
- res.append(merge)
-
- return max(res)
-
-
-
-# total_testcases:101
-# total_correct:100
-# input_formatted:[8,1,8,8,6]
-[4]
-2
-# expected_output:[8,8]
-# code_output:[8,4]
diff --git "a/leetcode/editor/cn/doc/submission/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260387903481.txt" "b/leetcode/editor/cn/doc/submission/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260387903481.txt"
deleted file mode 100644
index 5aa7ddc8..00000000
--- "a/leetcode/editor/cn/doc/submission/[321]\346\213\274\346\216\245\346\234\200\345\244\247\346\225\260387903481.txt"
+++ /dev/null
@@ -1,39 +0,0 @@
-class Solution:
- def merge_list(self, nums1: List[int], nums2: List[int]):
- res = []
- while nums1 or nums2:
- if nums1 > nums2:
- res.append(nums1.pop(0))
- else:
- res.append(nums2.pop(0))
-
- return res
-
- def remove_k_digits(self, nums: List[int], remain: int) -> List[int]:
- assert len(nums) >= remain, "保留的数量不应超过 nums 的长度"
-
- k = len(nums) - remain
- queue = []
- for num in nums:
- while queue and queue[-1] < num and k:
- queue.pop()
- k -= 1
- queue.append(num)
- return queue[:remain]
-
- def maxNumber(self, nums1: List[int], nums2: List[int], k: int) -> List[int]:
- res = []
- for part_remain in range(k + 1):
- if part_remain <= len(nums1) and (k - part_remain) <= len(nums2):
- part1 = self.remove_k_digits(nums1, part_remain)
- part2 = self.remove_k_digits(nums2, k - part_remain)
-
- merge = self.merge_list(part1, part2)
- res.append(merge)
-
- return max(res)
-
-
-
-# runtime:192 ms
-# memory:17.6 MB
diff --git "a/leetcode/editor/cn/doc/submission/[322]\351\233\266\351\222\261\345\205\221\346\215\242382312971.txt" "b/leetcode/editor/cn/doc/submission/[322]\351\233\266\351\222\261\345\205\221\346\215\242382312971.txt"
deleted file mode 100644
index 695ca80f..00000000
--- "a/leetcode/editor/cn/doc/submission/[322]\351\233\266\351\222\261\345\205\221\346\215\242382312971.txt"
+++ /dev/null
@@ -1,34 +0,0 @@
-class Solution:
- def coinChange(self, coins: List[int], amount: int) -> int:
- self.memo = {}
- return self.dp(coins, amount)
-
- def dp(self, coins: List[int], amount: int):
- if amount == 0:
- return 0
- if amount < 0:
- return -1
- if amount in self.memo:
- return self.memo[amount]
-
- res = math.inf
- for coin in coins:
- # 计算子问题的结果
- sub_problem = self.dp(coins, amount - coin)
-
- # 无解,跳过
- if sub_problem == -1:
- continue
- # 子问题的方案中取最优解,并 + 1
- res = min(res, sub_problem + 1)
-
- if res == math.inf:
- self.memo[amount] = -1
- else:
- self.memo[amount] = res
- return self.memo[amount]
-
-
-
-# runtime:2576 ms
-# memory:26.2 MB
diff --git "a/leetcode/editor/cn/doc/submission/[322]\351\233\266\351\222\261\345\205\221\346\215\242382317782.txt" "b/leetcode/editor/cn/doc/submission/[322]\351\233\266\351\222\261\345\205\221\346\215\242382317782.txt"
deleted file mode 100644
index c2c841b3..00000000
--- "a/leetcode/editor/cn/doc/submission/[322]\351\233\266\351\222\261\345\205\221\346\215\242382317782.txt"
+++ /dev/null
@@ -1,19 +0,0 @@
-class Solution:
- def coinChange(self, coins: List[int], amount: int) -> int:
- dp = [amount + 1] * (amount + 1)
- dp[0] = 0
- for i in range(amount + 1):
- for coin in coins:
- # dp向量的限制
- if i - coin < 0:
- continue
- dp[i] = min(dp[i], 1 + dp[i - coin])
- if dp[amount] == amount + 1:
- return -1
- else:
- return dp[amount]
-
-
-
-# runtime:1516 ms
-# memory:15.3 MB
diff --git "a/leetcode/editor/cn/doc/submission/[429]N \345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206380493696.txt" "b/leetcode/editor/cn/doc/submission/[429]N \345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206380493696.txt"
deleted file mode 100644
index 1a4c1c20..00000000
--- "a/leetcode/editor/cn/doc/submission/[429]N \345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206380493696.txt"
+++ /dev/null
@@ -1,40 +0,0 @@
-"""
-# Definition for a Node.
-class Node:
- def __init__(self, val=None, children=None):
- self.val = val
- self.children = children
-"""
-
-
-class Solution:
- def levelOrder(self, root: 'Node') -> List[List[int]]:
- if not root:
- return []
-
- queue = []
- res = []
-
- queue.append(root)
- while len(queue) > 0:
- temp_res = []
- queue_length = len(queue)
- for i in range(queue_length):
- cur = queue.pop(0)
- for children in root.children:
- queue.append(children)
- temp_res.append(cur.val)
-
- res.append(temp_res)
- return res
-
-
-# runtime:N/A
-# memory:N/A
-# total_testcases:38
-# total_correct:0
-# input_formatted:[1,null,3,2,4,null,5,6]
-# expected_output:[[1],[3,2,4],[5,6]]
-# code_output:
-# runtime_error:
-# last_testcase:[1,null,3,2,4,null,5,6]
diff --git "a/leetcode/editor/cn/doc/submission/[429]N \345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206380493851.txt" "b/leetcode/editor/cn/doc/submission/[429]N \345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206380493851.txt"
deleted file mode 100644
index 57d46d4e..00000000
--- "a/leetcode/editor/cn/doc/submission/[429]N \345\217\211\346\240\221\347\232\204\345\261\202\345\272\217\351\201\215\345\216\206380493851.txt"
+++ /dev/null
@@ -1,28 +0,0 @@
-"""
-# Definition for a Node.
-class Node:
- def __init__(self, val=None, children=None):
- self.val = val
- self.children = children
-"""
-
-# 广度优先
-class Solution:
- def levelOrder(self, root: 'Node') -> List[List[int]]:
- if not root:
- return []
- queue = collections.deque([(root, 0)])
- res = []
- while queue:
- node, deep = queue.popleft()
- if len(res) > deep:
- res[deep].append(node.val)
- else:
- res.append([node.val])
- for n in node.children:
- queue.append((n, deep+1))
- return res
-
-
-# runtime:60 ms
-# memory:17 MB
diff --git "a/leetcode/editor/cn/doc/submission/[42]\346\216\245\351\233\250\346\260\264375416977.txt" "b/leetcode/editor/cn/doc/submission/[42]\346\216\245\351\233\250\346\260\264375416977.txt"
deleted file mode 100644
index e0321082..00000000
--- "a/leetcode/editor/cn/doc/submission/[42]\346\216\245\351\233\250\346\260\264375416977.txt"
+++ /dev/null
@@ -1,56 +0,0 @@
-class Solution:
- def trap_force(self, height: List[int]) -> int:
- """
- 对于每一列,考虑左边最高和右边最高列中,较低列 与 cur 的差:
- 1、较低的列 大于 cur 的高度,那么可以放下的水为较低列高度-cur高度
- 2、如果较低的列高度 与 cur 的高度一致或小于,那么放不下水。
- 耗时为 n^2, 看起来 ac 不了
- """
- water_count = 0
- # cur 表示当前位置
- for cur in range(1, len(height) - 1):
- left_height = max(height[:cur]) if cur > 0 else -1
- right_height = max(height[cur + 1:])
-
- # 左右墙中较低的那个
- low_height = min(left_height, right_height)
- if low_height > height[cur]:
- water_count += low_height - height[cur]
- return water_count
-
- def trap(self, height: List[int]) -> int:
- # 考虑没必要左右都穷举来计算
- n = len(height)
- left_height = [0] * n
- right_height = [0] * n
-
- # 用 2n 的时间,填满整个表
- for idx, column_height in enumerate(height):
- if idx == 0 or column_height > left_height[idx - 1]:
- left_height[idx] = column_height
- else:
- left_height[idx] = left_height[idx - 1]
-
- idx = n - 1
- while idx >= 0:
- column_height = height[idx]
- if idx == n - 1 or column_height > right_height[idx + 1]:
- right_height[idx] = column_height
- else:
- right_height[idx] = right_height[idx + 1]
- idx -= 1
-
- # 开始单独看每一列了
- water_count = 0
- # cur 表示当前位置
- for cur in range(1, len(height) - 1):
- # 左右墙中较低的那个
- low_height = min(left_height[cur], right_height[cur])
- if low_height > height[cur]:
- water_count += low_height - height[cur]
- return water_count
-
-
-
-# runtime:68 ms
-# memory:16.4 MB
diff --git "a/leetcode/editor/cn/doc/submission/[47]\345\205\250\346\216\222\345\210\227 II381174374.txt" "b/leetcode/editor/cn/doc/submission/[47]\345\205\250\346\216\222\345\210\227 II381174374.txt"
deleted file mode 100644
index ad3ba544..00000000
--- "a/leetcode/editor/cn/doc/submission/[47]\345\205\250\346\216\222\345\210\227 II381174374.txt"
+++ /dev/null
@@ -1,29 +0,0 @@
-class Solution:
- def __init__(self):
- self.res = []
-
- def permuteUnique(self, nums: List[int]) -> List[List[int]]:
- self.back_track(nums, [], [False] * len(nums))
- return self.res
-
- def back_track(self, nums, track_list, used_pos):
- if len(track_list) == len(nums):
- if track_list not in self.res:
- self.res.append(track_list.copy())
-
- for idx in range(len(nums)):
- if used_pos[idx]:
- continue
- # 进行选择
- track_list.append(nums[idx])
- used_pos[idx] = True
-
- self.back_track(nums, track_list, used_pos)
- # 取消选择
- del track_list[-1]
- used_pos[idx] = False
-
-
-
-# runtime:988 ms
-# memory:15.1 MB
diff --git "a/leetcode/editor/cn/doc/submission/[64]\346\234\200\345\260\217\350\267\257\345\276\204\345\222\214383608829.txt" "b/leetcode/editor/cn/doc/submission/[64]\346\234\200\345\260\217\350\267\257\345\276\204\345\222\214383608829.txt"
deleted file mode 100644
index 6134b71e..00000000
--- "a/leetcode/editor/cn/doc/submission/[64]\346\234\200\345\260\217\350\267\257\345\276\204\345\222\214383608829.txt"
+++ /dev/null
@@ -1,27 +0,0 @@
-class Solution:
- def minPathSum(self, grid: List[List[int]]) -> int:
- self.cache = {}
- return self.dp(grid, 0, 0, 0)
-
- def dp(self, grid, i, j, res):
- if (i, j) in self.cache:
- return self.cache[(i, j)]
-
- else: # base case
- if i == len(grid) - 1:
- return res + sum(grid[-1][j:])
- if j == len(grid[0]) - 1:
- for idx in range(i, len(grid)):
- res += grid[idx][-1]
- return res
- self.cache[(i, j)] = min(self.dp(grid, i + 1, j, res + grid[i][j]),
- self.dp(grid, i, j + 1, res + grid[i][j]))
- return self.cache[(i, j)]
-
-
-
-# total_testcases:61
-# total_correct:14
-# input_formatted:[[1,4,8,6,2,2,1,7],[4,7,3,1,4,5,5,1],[8,8,2,1,1,8,0,1],[8,9,2,9,8,0,8,9],[5,7,5,7,1,8,5,5],[7,0,9,4,5,6,5,6],[4,9,9,7,9,1,9,0]]
-# expected_output:47
-# code_output:52
diff --git "a/leetcode/editor/cn/doc/submission/[674]\346\234\200\351\225\277\350\277\236\347\273\255\351\200\222\345\242\236\345\272\217\345\210\227395034559.txt" "b/leetcode/editor/cn/doc/submission/[674]\346\234\200\351\225\277\350\277\236\347\273\255\351\200\222\345\242\236\345\272\217\345\210\227395034559.txt"
deleted file mode 100644
index 8e48280b..00000000
--- "a/leetcode/editor/cn/doc/submission/[674]\346\234\200\351\225\277\350\277\236\347\273\255\351\200\222\345\242\236\345\272\217\345\210\227395034559.txt"
+++ /dev/null
@@ -1,20 +0,0 @@
-class Solution:
- def findLengthOfLCIS(self, nums: List[int]) -> int:
- max_length = 1
-
- temp_length = 1
- for index, num in enumerate(nums):
- if index == 0:
- continue
- if num > nums[index - 1]:
- temp_length += 1
- else:
- temp_length = 1
-
- max_length = max(max_length, temp_length)
- return max_length
-
-
-
-# runtime:68 ms
-# memory:15.9 MB
diff --git "a/leetcode/editor/cn/doc/submission/[698]\345\210\222\345\210\206\344\270\272k\344\270\252\347\233\270\347\255\211\347\232\204\345\255\220\351\233\206381517596.txt" "b/leetcode/editor/cn/doc/submission/[698]\345\210\222\345\210\206\344\270\272k\344\270\252\347\233\270\347\255\211\347\232\204\345\255\220\351\233\206381517596.txt"
deleted file mode 100644
index 75cc277d..00000000
--- "a/leetcode/editor/cn/doc/submission/[698]\345\210\222\345\210\206\344\270\272k\344\270\252\347\233\270\347\255\211\347\232\204\345\255\220\351\233\206381517596.txt"
+++ /dev/null
@@ -1,36 +0,0 @@
-class Solution:
-
- def canPartitionKSubsets(self, nums: List[int], k: int) -> bool:
- target_num = sum(nums) / k
- return self.back_track(nums, 0, [[] for _ in range(k)], target_num)
-
- def back_track(self, nums, index, bucket, target_num):
- if index == len(nums):
- for sub_list in bucket:
- if target_num != sum(sub_list):
- return False
- return True
-
- for i in range(len(bucket)):
- # 做选择
- bucket[i].append(nums[index])
- if self.back_track(nums, index + 1, bucket, target_num):
- return True
-
- # 撤销选择
- bucket[i].pop(-1)
-
- return False
-
-
-
-# runtime:N/A
-# memory:N/A
-# total_testcases:162
-# total_correct:37
-# input_formatted:[3522,181,521,515,304,123,2512,312,922,407,146,1932,4037,2646,3871,269]
-5
-# expected_output:true
-# code_output:
-# runtime_error:
-# last_testcase:[3522,181,521,515,304,123,2512,312,922,407,146,1932,4037,2646,3871,269] 5
diff --git "a/leetcode/editor/cn/doc/submission/[698]\345\210\222\345\210\206\344\270\272k\344\270\252\347\233\270\347\255\211\347\232\204\345\255\220\351\233\206381622249.txt" "b/leetcode/editor/cn/doc/submission/[698]\345\210\222\345\210\206\344\270\272k\344\270\252\347\233\270\347\255\211\347\232\204\345\255\220\351\233\206381622249.txt"
deleted file mode 100644
index 981d8a65..00000000
--- "a/leetcode/editor/cn/doc/submission/[698]\345\210\222\345\210\206\344\270\272k\344\270\252\347\233\270\347\255\211\347\232\204\345\255\220\351\233\206381622249.txt"
+++ /dev/null
@@ -1,59 +0,0 @@
-class Solution:
- def __init__(self):
- self.state_res_cache = {}
-
- def canPartitionKSubsets(self, nums: List[int], k: int) -> bool:
- if k > len(nums):
- return False
-
- target_num = sum(nums) // k
- if sum(nums) != target_num * k:
- return False
-
- nums = sorted(nums, reverse=True)
- return self.back_track(k, nums, 0, 0, [False] * len(nums), target_num)
-
- def back_track(self, k, nums, start, bucket, used_pos, target_num):
- """
- :param k: 桶的数量
- :param nums: 原始数组
- :param start: 数组中开始的位置
- :param bucket: 当前桶的大小
- :param used_pos: 使用过的位置
- :param target_num: 目标数量
- :return:
- """
- if k == 0:
- # 所有的桶都被装满了
- return True
-
- state = tuple(used_pos)
-
- if bucket == target_num:
- res = self.back_track(k=k - 1, nums=nums, start=0, bucket=0, used_pos=used_pos, target_num=target_num)
- self.state_res_cache[state] = res
- return res
-
- if state in self.state_res_cache:
- return self.state_res_cache[state]
-
- for idx in range(start, len(nums)):
- if used_pos[idx]:
- # 已使用
- continue
- if nums[idx] + bucket > target_num:
- # 已装满
- continue
- bucket += nums[idx]
- used_pos[idx] = True
- if self.back_track(k, nums, idx + 1, bucket, used_pos, target_num):
- return True
- bucket -= nums[idx]
- used_pos[idx] = False
-
- return False
-
-
-
-# runtime:676 ms
-# memory:15.9 MB
diff --git "a/leetcode/editor/cn/doc/submission/[76]\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262377231230.txt" "b/leetcode/editor/cn/doc/submission/[76]\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262377231230.txt"
deleted file mode 100644
index d2a47030..00000000
--- "a/leetcode/editor/cn/doc/submission/[76]\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262377231230.txt"
+++ /dev/null
@@ -1,34 +0,0 @@
-class Solution:
- def check_contain(self, str1, str2):
- for c in str2:
- if c not in str1:
- return False
- return True
-
- def minWindow(self, s: str, t: str) -> str:
- if len(s) < len(t):
- return ""
-
- min_count = len(s) * 2
- min_res = ""
-
- for i in range(len(s) - len(t) + 1):
- for j in range(i + 1, len(s) + 1):
- possible_res = s[i:j]
- if self.check_contain(possible_res, t):
- if j - i < min_count:
- min_count = j - i
- min_res = possible_res
- # j 不需要再循环了
- break
-
- return min_res
-
-
-
-# total_testcases:267
-# total_correct:138
-# input_formatted:"aa"
-"aa"
-# expected_output:"aa"
-# code_output:"a"
diff --git "a/leetcode/editor/cn/doc/submission/[76]\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262384394217.txt" "b/leetcode/editor/cn/doc/submission/[76]\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262384394217.txt"
deleted file mode 100644
index 2d70a5ca..00000000
--- "a/leetcode/editor/cn/doc/submission/[76]\346\234\200\345\260\217\350\246\206\347\233\226\345\255\220\344\270\262384394217.txt"
+++ /dev/null
@@ -1,56 +0,0 @@
-class Solution:
-
- def minWindow(self, s: str, t: str) -> str:
- need_char_2_count = {}
- for char in t:
- if char not in need_char_2_count:
- need_char_2_count[char] = 1
- else:
- need_char_2_count[char] += 1
-
- left, right = 0, 0
- res = ""
- window = []
- window_char_2_count = {}
- valid = 0
- while right < len(s):
- window.append(s[right])
-
- # 更新窗口内的数据分布
- if s[right] in window_char_2_count:
- window_char_2_count[s[right]] += 1
- else:
- window_char_2_count[s[right]] = 1
-
- if s[right] in need_char_2_count and \
- window_char_2_count[s[right]] == need_char_2_count[s[right]]:
- valid += 1
-
- right += 1
- while valid == len(need_char_2_count):
- if res == "" or len(window) < len(res):
- res = "".join(window)
-
- # 更新窗口内的数据分布
- if s[left] in need_char_2_count and \
- window_char_2_count[s[left]] == need_char_2_count[s[left]]:
- valid -= 1
-
- window_char_2_count[s[left]] -= 1
- window.pop(0)
-
- left += 1
-
- return res
-
-
-
-# runtime:N/A
-# memory:N/A
-# total_testcases:267
-# total_correct:267
-# input_formatted:
-# expected_output:
-# code_output:
-# runtime_error:
-# last_testcase:
diff --git "a/leetcode/editor/cn/doc/submission/[870]\344\274\230\345\212\277\346\264\227\347\211\214387982501.txt" "b/leetcode/editor/cn/doc/submission/[870]\344\274\230\345\212\277\346\264\227\347\211\214387982501.txt"
deleted file mode 100644
index a2f52dc9..00000000
--- "a/leetcode/editor/cn/doc/submission/[870]\344\274\230\345\212\277\346\264\227\347\211\214387982501.txt"
+++ /dev/null
@@ -1,36 +0,0 @@
-class Solution:
- def advantageCount(self, nums1: List[int], nums2: List[int]) -> List[int]:
- # nums1 升序排列
- sorted_nums1 = sorted(nums1)
-
- # nums2 降顺排列
- nums2_idx_2_value = {idx: value for idx, value in enumerate(nums2)}
- nums2_queue = sorted(nums2_idx_2_value.items(), key=lambda x: -x[1])
-
- # left 是当前区间最小值, right 是当前区间最大值
- left, right = 0, len(nums1) - 1
- res = [0] * len(nums1)
-
- while len(nums2_queue) > 0:
- num2_idx, num2_value = nums2_queue.pop(0)
- if num2_value < sorted_nums1[right]:
- res[num2_idx] = sorted_nums1[right]
- right -= 1
- else:
- res[num2_idx] = sorted_nums1[left]
- left += 1
-
- return res
-
-
-
-# runtime:N/A
-# memory:N/A
-# total_testcases:67
-# total_correct:67
-# input_formatted:[86702,85171,6695,18860,47098,87045,90200,36576,45596,11849,10943,92101,63185,48171,79518,79330,42919,97595,62793,91935,54470,2444,56067,80336,12982,49866,52587,94811,368,2592,65363,81107,96640,29223,90412,77243,36600,69826,9213,65283,60572,19789,5556,78776,36223,88279,68877,65073,6668,94414,11004,88462,95092,64137,51899,35607,84032,72976,77284,65185,35858,44640,95616,93195,22812,29204,45500,85238,6044,53239,32115,98344,10267,65913,5111,27474,15078,98082,30186,25857,41526,88166,72185,5573,85448,70599,15393,37309,69696,62381,11723,17419,60953,12747,53860,29580,73323,87929,71340,34115,64041,73036,4265,23176,39978,5539,5457,85976,22063,29061,84660,254,17754,59328,18451,75412,14413,40052,98442,94682,63448,2520,67297,52271,98393,24948,41528,97486,34646,3013,55729,49080,70864,3830,54402,1085,79605,58735,82522,850,90185,38939,16296,60889,27159,96926,46434,22676,28614,50497,23041,7963,71262,74896,3480,41295,11958,49738,60903,60012,96572,45267,95190,13355,71452,76499,58846,61629,73132,20568,81310,97723,9336,11874,76183,36867,80212,88066,19932,59354,46981,13002,21225,75550,6201,10242,47158,33618,21491,99961,42560,73155,46072,29624,5167,90652,35620,22181,20552,17309,90865,84687,83914,59301,70731,59026,68990,51298,19607,1305,89749,50397,48444,81056,11747,69339,19718,26194,66266,36627,3747,77292,87735,62093,8485,52187,98489,51547,77379,88654,18846,70557,59927,92701,52042,42305,69415,52818,97993,91328,41173,97833,74940,45260,25755,38770,34413,93271,86928,55536,11749,20666,86418,37655,29494,27152,70097,48851,35066,92834,95156,92932,46405,11788,8191,90246,90227,15005,19193,33077,79725,35330,2815,65946,74342,73286,48430,14732,31736,11532,45352,20952,91241,48573,88562,74034,26027,10503,68062,250,66634,33985,57675,59266,65999,26575,87064,25881,18305,15053,28551,64963,11404,5375,66965,81397,72143,91855,59557,8096,92389,46444,20207,97041,4427,15433,90566,99993,42966,40543,59336,58882,19760,99845,49276,11377,21363,91140,64503,40066,61216,74306,21487,26571,58462,63431,42633,93334,97010,65291,98507,52025,10333,15149,52958,86949,13672,89624,13670,71592,82633,82135,4960,11115,6952,76851,24115,57165,21508,27213,33997,67038,10667,45415,76714,45136,57949,3387,87572,24107,76320,91063,84672,29457,63663,86571,39072,93286,77702,20819,53405,68077,24456,17474,19043,42366,71760,97077,73175,37593,11174,89181,53198,2596,51411,87541,34137,31979,53118,49764,47363,34269,82971,80755,55324,74665,40956,40259,5563,25721,79721,19318,30702,25195,50388,37206,40349,34004,80945,67461,34567,10168,72759,36445,66256,36106,90569,73573,80894,5496,66628,63347,71861,65963,3905,4563,79450,91187,52190,54642,83091,17934,30816,20491,36456,85851,20935,51478,15605,70388,39648,58362,94212,82970,40899,76944,37986,44400,44537,59099,62583,17872,37660,87440,42625,93899,38586,85883,89649,62541,53793,35237,91512,25532,22971,38594,74028,79228,36665,50018,36511,48428,22354,36138,49319,57957,47852,33590,14440,35154,43126,11717,38851,20196,65100,58357,546,48457,45011,81997,36484,42528,39203,18778,41344,5239,95174,7967,86388,87796,67193,84258,54183,768,26158,74343,78200,11341,25722,1465,76413,57348,35271,77229,66388,61267,2976,38254,51938,2240,34234,62429,85482,12777,87969,65994,78568,93786,64471,52470,35446,73366,11913,53332,82605,70868,15418,33293,15214,47080,17125,23716,32637,98530,41211,2027,87698,95107,6777,64970,16943,20370,85366,68110,16114,82283,7200,99720,13919,20004,4157,45414,79026,81362,59068,2703,84600,23397,6808,4755,30403,52431,23678,60450,5976,28272,15704,60352,37037,14574,35161,60075,19080,14860,74066,23701,52776,75758,13482,54409,87706,80803,29916,20996,1163,19157,14656,71197,15439,66836,83829,12851,32341,79002,84090,57425,65814,36218,67622,74225,23683,97464,38387,54452,61534,60397,43878,73072,5551,10759,5348,1362,31102,63287,25551,32208,26806,60448,50376,45161,61156,41253,53109,14305,33575,72858,11948,62017,86963,6840,97872,33026,79779,60964,46470,79966,56261,16323,56552,50131,10772,55251,36993,14947,93182,42736,98982,83237,10110,33637,74282,455,81372,47033,30952,45917,57601,21395,37246,30500,4505,55755,80468,75477,63712,97499,12644,38188,94322,12434,826,55985,20322,84205,62000,32100,64854,28581,43663,38541,97799,91945,1218,84381,12161,4433,41221,83090,9513,27299,77848,91479,34958,56585,66912,91055,85740,60686,76716,84162,43547,63902,3294,28690,94354,15367,36279,38776,28725,46885,18844,91883,80412,60178,81215,56080,14011,26205,92246,74763,84155,88607,35944,59745,72385,86383,57004,29467,67609,75062,82625,44095,35428,85248,53780,15143,95372,80788,66677,71177,91520,96781,84191,85949,79204,49769,19859,54978,56731,45563,79198,36343,59020,48794,65597,38429,34854,14045,47931,69151,27734,48270,10123,2593,94421,21622,88435,87204,64945,29064,48932,30178,99778,94883,49185,30900,9837,17363,56724,43220,22031,83161,50874,98678,12055,49931,55025,81172,66858,4632,92023,40163,99056,32243,58551,3827,36307,6052,50101,44609,80467,89830,13996,85610,97842,26725,64595,87276,82602,70574,36450,26990,86742,62911,31430,68917,6458,46171,90649,71360,18715,31498,99740,75804,61553,50766,79303,61318,281,31838,23128,80297,46130,74425,89214,44631,18376,80339,40260,56866,10916,12996,16637,98551,38300,76094,43132,49959,55748,68565,40328,32255,98429,63036,79793,41907,58990,74921,54968,88043,89141,88859,70126,64660,70673,787,6248,29797,4072,31106,58855,30310,56159,36937,54645,573,37901,51365,65371,24282,23955,73135,13614,21008,85367,99031,42329,67940,4994,68155,54628,8748,52891,79981,17851,88600,73588,32735,21901,63239,31653,59382,30379,46839,51070,73613,47083,32024,12829,61697,63094,70157,6334,19406,72334,82341,28718,75658,16356,68122,23661,67485,23950,12552,64347,622,21176,30189,19155,58608,69452,85871,96255,93115,54125,44802,28994,39577,1437,71711,93763,8863,62915,5023,57218,48276,42236,35634,40252,97883,83504,299,20860,62369,40930,6547,19535,29084,12932,26189,15261,51329,94079,90142,86349,74867,40258,94878,81232,21649,38754,52386,37371,83067,88419,93727,76749,20533,74812,39913,150,82079,11974,1452,75348,19585,56520,54912,11358,6975,56969,11541,12682,51985,55714,12810,62622,61018,76650,86176,61694,89291,96444,13105,7309,52447,2478,463,4159,1027,59308,51363,86351,33232,59866,15784,25651,93663,57410,12359,60219,83583,28947,70583,99143,72902,92791,21597,82698,62298,91052,7815,34584,72224,69867,78565,31399,8925,36733,80222,91096,92720,68359,31038,74297,14281,17478,70441,16804,61040,93895,62910,92414,39080,21444,35474,46679,20549,59125,2470,75454,93012,29730,19784,36361,8497,72028,86273,35752,94667,73382,98674,92703,72707,51683,44973,44035,6471,11177,81551,49532,75156,55554,74663,82695,32490,11259,14336,70011,99488,40955,92608,26100,69477,75994,51285,7735,86692,98946,72104,48655,86163,40888,32762,51272,16981,45553,54735,35472,81200,42487,31064,13963,98687,64101,12598,4986,87778,82129,19723,24783,19655,41339,73127,32951,87998,69667,69957,41590,47110,73971,3389,41872,45145,92239,10414,37694,67085,23679,63813,43227,84597,74808,68034,6619,19953,20238,26635,44154,67447,59084,526,28534,11020,2013,1092,5470,1773,81011,63969,14069,1610,45050,43072,60390,7501,44488,54211,31894,24551,1329,13393,31615,30935,72503,31755,89710,91327,62083,9058,85276,66279,20692,9731,9705,96170,34204,85017,63001,51744,95371,95617,75196,69815,72483,84168,80581,43821,94040,17140,31403,94535,87864,59880,40341,61562,27332,88795,51488,73810,82531,83195,53027,86923,59756,62695,18459,83959,77329,45221,83266,80310,74722,12375,7803,63208,40378,67869,36118,89613,47689,80987,44948,19530,67239,14634,28925,79124,41058,83002,47636,28224,66759,3644,12305,90630,18063,76331,6601,70006,1171,12449,54399,92867,65109,28063,96403,52649,94444,74860,21782,10115,63362,35082,58341,7339,35361,9720,25875,98236,18504,35358,5380,87602,20310,93298,28992,72494,74785,22988,53843,28737,64161,4425,18923,69291,36841,64589,69919,68710,58325,34855,81914,46799,54207,69126,61778,52351,59217,58847,16136,90607,24537,66249,108,68958,19012,90638,41318,2404,72450,30672,60657,95088,87322,57374,43897,29514,38671,38509,48911,9240,29096,67231,6616,61523,75637,39113,33397,61068,30080,18506,85593,14382,88777,51743,44306,33589,37376,43418,34966,80117,80087,12298,27369,64991,59179,26730,55935,25348,39330,12223,89695,44097,13539,21866,10164,96775,72099,6439,25033,54017,14762,29729,70785,78924,98125,75499,64985,26808,21232,93388,50098,95037,18037,45259,46809,95042,2230,5141,70339,80154,49504,71355,28317,7715,19302,81408,25134,98018,7686,23868,24986,60622,85045,84898,61607,97197,69857,32069,50335,2942,76485,10939,8584,12706,77598,65330,16700,78643,45864,82159,7597,5059,87381,4728,21053,69990,56054,9944,7655,97896,16939,54330,49241,84789,75407,31996,13865,70055,22760,48035,20128,10713,31107,24071,56275,14353,72772,630,47021,91834,16423,11671,34245,6989,7660,83901,17610,87910,93728,529,81744,8625,42631,91291,95943,81474,168,40613,80350,81533,63222,83133,69192,15559,37302,63707,52557,24679,82851,87415,77351,7525,62388,2228,91226,97260,40816,80282,60959,34533,66221,8335,692,46530,84883,47401,25492,8076,64921,92838,3726,48668,68613,69286,81989,81809,33191,34040,40091,9131,93743,84411,15794,20468,9388,17332,12082,45240,52153,57761,45317,94856,57509,69134,5421,40569,3994,66323,32276,99387,11764,12230,70551,2793,70140,14253,24828,62963,97625,76116,37294,28671,4412,92685,9846,54012,62419,14670,72642,5076,23393,65038,72111,74504,89479,35020,24268,16819,33094,78067,49236,18303,91165,17581,16775,75764,5839,40851,24822,35006,91364,94068,1109,82681,51364,18440,15593,63855,51721,79402,91426,90410,2418,76284,72249,55158,81596,51841,78395,51489,89967,52637,46993,29821,14668,77034,67884,93955,33338,52821,2556,53339,87262,95445,59987,33298,29035,76614,12003,68341,56697,90462,9060,11123,53799,94015,10434,2620,33998,31144,77078,19593,90657,58870,17133,46268,44950,44709,58004,3267,8002,22287,65300,26391,2548,82351,21087,22059,48624,69644,4168,85492,58776,43334,58811,59950,65699,70778,75770,81402,94370,26848,27127,2323,20575,45385,30440,69283,78982,77529,16064,50633,2197,29476,88550,4337,25834,74353,1747,1301,42213,85235,25283,46076,58924,48,64348,69017,95150,58709,87676,60331,3359,67891,55338,59,8966,79434,636,61468,58486,6948,10918,9457,2255,46387,60918,29150,27536,23416,99851,83491,76215,78871,77783,4054,9595,59804,16243,518,14879,76250,8941,47032,92907,84860,47255,77415,85599,35192,74611,27805,76801,82691,71450,84049,34611,25410,94763,72956,42372,48637,40402,38567,20200,99166,71813,76027,87512,98340,82029,27119,8020,16298,88310,29561,4323,40763,35871,46827,29277,47430,58297,44428,73171,57521,26275,89426,29499,32623,1009,89724,20781,40772,46242,6609,89050,57019,63910,40765,59332,34561,28699,48821,54661,87622,9834,63292,71512,89640,80796,94828,31492,50646,73599,71443,17011,86185,41718,35122,29188,63866,91284,26944,56230,33408,20462,78608,23460,22172,7777,17809,21608,20563,35759,59623,89266,93969,50768,80678,78086,58354,11552,99434,34331,81893,17426,97975,87948,23673,97498,85155,87861,37329,59487,62798,70185,84666,94493,41401,10119,53153,54726,91196,2692,17579,13254,9026,26650,43811,50715,24925,91410,73526,69995,57772,91439,49832,93323,86488,93990,33160,43125,55104,76349,22604,12813,8134,71766,9463,82347,31168,21804,46443,47375,60322,37980,17775,82366,56987,97305,97128,13070,17056,5595,65608,75849,99216,93160,17982,8817,59297,63801,22352,40171,14971,63111,67731,47062,57890,42920,25726,85826,7050,4879,20451,45245,40631,18224,40234,68221,73778,50462,64619,98319,51195,11306,10541,50948,63853,1863,97503,9699,45657,44614,69214,81779,40438,61476,1116,61109,4680,10719,70759,9378,82868,51449,82130,3803,44148,91341,22969,24804,7920,20895,55340,68192,36211,91645,72773,24194,36051,80682,290,90985,1093,42707,2182,51360,52763,89066,86233,83502,39007,39701,13465,38209,98130,22072,39499,86427,51331,29740,95599,41143,79700,69165,61233,48587,23098,20071,81201,6643,57542,50596,55823,38482,67799,48840,872,31477,1263,34152,78194,20461,54377,64695,34486,83993,6071,64723,1858,8726,39691,32700,89124,32824,25708,27543,40441,41856,36406,90301,2125,66701,97710,1005,76755,42546,26286,85743,55761,37739,93510,11501,8319,85924,27927,25898,98047,9369,37310,48065,74469,77429,79371,41637,91725,17003,95992,31584,20480,87449,37863,10118,33417,7198,12631,28749,19964,4043,72654,8215,27133,60426,5744,12611,2104,20258,69266,22325,73996,30259,23693,31075,41187,54566,43674,60165,31543,13974,51803,50220,79944,32810,39827,28683,92646,50087,49905,71283,65776,14401,28900,57809,44889,9818,36228,35641,62860,31412,59287,72234,70296,26260,37423,88122,75313,83843,68953,14672,638,69440,22251,66275,27590,65748,46116,61360,32328,93900,57544,18281,65793,20454,39135,81795,28880,80860,58066,28701,43898,46471,52216,91546,81148,61050,62310,5354,28431,45995,62021,2944,60819,86951,47854,50805,19374,58291,69488,39907,21389,10416,30327,91795,1977,74249,5245,95520,23467,6279,51483,10146,65324,41574,49115,36408,62817,47165,40016,34779,95052,44856,33201,29668,15623,31698,64618,39607,36755,39936,18344,8482,43396,90520,1821,69006,71819,18765,44168,12555,78105,40870,86827,16324,37215,74986,30316,86321,34343,29426,84341,64707,54828,69869,80541,30790,76718,44426,9604,99914,72258,43635,34851,30150,52064,3092,74649,62126,22129,33240,35830,53,38949,38165,47466,85496,67170,70474,51080,55394,69271,91428,81988,97906,6069,63974,44803,86289,99319,80764,7779,9789,72151,15881,11722,69694,9526,86070,93003,41936,69184,97053,92662,76754,6317,35813,100,70900,78237,84464,84226,94634,50336,77671,2131,71543,74307,59087,63764,13030,32794,34158,21493,90504,13663,79050,46374,44778,17788,39761,21149,86734,58308,19901,56049,77815,46254,66156,58636,95248,76699,9022,55040,97099,63408,79425,52905,93548,56754,27676,44441,64519,15357,72683,67790,28873,54931,77442,32181,33473,67827,15842,14692,91975,13684,66791,15769,36964,64392,9040,80444,70516,30157,83451,85849,90461,52711,40794,11150,66469,60867,85407,41950,7293,71666,92399,70464,22311,65368,9696,93715,16825,5711,76682,30397,15057,7400,99260,78360,37402,72279,56325,53803,34514,53662,84524,1889,51828,13016,7427,24694,37076,20854,93313,17466,10927,61058,52773,68382,9014,53645,79179,73860,59218,82281,34684,24254,62706,26448,93608,45991,1396,98431,75687,30460,7419,92762,74836,36585,58588,27500,57100,37467,61003,63787,57702,89381,50475,1012,32240,85659,22467,81206,489,87588,75568,14784,74399,33491,99405,44365,646,92707,61336,32610,3589,92767,50940,79255,95582,61134,36467,37533,53912,46589,12502,69122,3259,85727,83126,38815,9824,54400,23066,78934,86238,971,26023,33376,27041,65338,99138,62373,585,42948,93315,61600,56344,56422,36038,36338,4529,66431,59867,44362,79546,81827,23564,6638,27625,35926,89048,92894,3004,66601,73561,80585,94638,86639,53539,19774,41551,31454,89122,86594,14550,23240,18091,22805,40895,56111,71544,85001,27902,64737,6766,39225,83006,29901,18270,98321,40396,93758,95204,51929,79506,66647,60569,2187,38603,95039,7471,98794,62320,177,98854,62273,93380,21266,79606,34626,78780,91665,1356,88778,85178,5280,7102,52344,49447,25811,97019,42580,83031,55255,43866,14807,32135,43243,96627,41420,99481,53476,3361,19073,94297,96196,77541,48039,10475,80322,16408,68118,44665,17490,23022,53282,1031,82476,29090,50529,80274,9662,38904,62553,3952,97885,62029,50368,2302,35112,68205,21777,70792,8754,82414,1486,59615,52157,77530,27909,3305,36321,93999,17709,88501,24874,24672,64932,10809,34261,4441,45715,42510,15756,22104,14921,52270,11811,11429,89174,82647,52435,85691,33488,28920,40031,82068,95752,35072,42716,4671,32630,61982,84251,45012,2114,42001,84156,40604,6686,30366,76054,33856,92882,25253,67747,52220,66633,8185,94860,22685,19434,11716,89557,71481,5712,27036,51944,71485,51061,76086,20926,42120,80211,79827,23815,67059,1089,83358,11298,49117,40727,7529,47377,24904,41686,96064,18294,80170,90521,34309,99322,8578,19898,77646,42969,5932,95769,24258,85485,62092,69788,4745,33184,96617,52981,67518,7426,45039,7757,12921,66052,59940,75466,5209,22105,44370,84856,42599,41104,14391,46978,97411,69800,11282,88632,87565,10926,5465,97058,9954,98706,87387,58574,48997,45976,53043,96728,71742,22350,77875,46787,24247,96021,48313,58046,31955,16693,76527,22118,32014,66383,54204,77836,82080,39575,32219,48809,82585,86178,39697,37697,50748,52450,60554,42885,2318,72148,43115,72573,30783,23988,38020,6605,19828,45677,23820,27857,91953,76532,74300,53581,24526,47602,63864,84003,31290,87834,59135,46738,69168,84633,98404,2128,87504,61481,36599,69047,71684,46327,15405,27243,87699,10876,93854,1591,6188,76568,85097,25435,30955,94304,57972,54153,8937,87353,51842,99623,47897,65141,30284,65787,40379,93354,60997,65088,27420,29734,75278,1462,6815,87507,47511,54420,9488,96228,29751,52926,5074,46442,60894,39383,98714,14772,74158,8386,93630,68543,37609,73849,14979,66518,59606,27328,73891,59342,14508,16201,62752,60293,80927,21216,10314,78913,59464,58415,29209,4913,90570,86574,16384,95341,78726,64580,65536,92194,41603,25804,2946,95329,21553,30692,60692,48790,40358,89128,25343,94475,98529,17970,41411,54505,53193,88553,52581,361,40399,24600,47705,15692,82810,12356,79820,64928,10697,26541,30606,2465,69381,860,31142,40038,25078,92743,36292,50437,91012,34055,10949,36961,41897,4709,64702,19049,17799,48001,56547,4822,1338,68399,34423,18752,91215,68006,1757,90797,96190,58798,56808,71247,91025,15246,38705,6566,48269,12436,99768,93273,59133,84896,88821,28147,76872,42354,50375,43689,99935,44046,85304,29978,92478,89806,20849,61761,39239,74068,19517,85472,75785,71618,793,8653,19903,32234,1772,61650,44264,76548,41979,52352,60526,920,7523,23605,73486,65497,58112,92732,24903,14563,78926,49685,97968,96414,64875,38618,3570,86425,72274,13387,50625,85343,2494,67032,45477,58948,61964,10766,58069,73216,13556,61687,23015,6293,84431,63507,24037,59564,74003,79751,37899,35337,95963,84496,14287,21780,68168,41144,30805,97508,79071,5767,37252,12961,47637,91254,37216,44039,33065,86899,93505,53753,7919,78281,80863,38803,14868,93981,32746,68344,63102,34892,31873,27756,25850,17503,33416,19614,51269,93657,19492,72779,29438,50283,36203,62156,74197,49156,17735,6436,85325,27241,14765,70648,12511,90325,52480,91926,22114,80922,14646,97424,58147,99224,62633,38833,83996,12562,25346,97805,35000,80128,56618,6101,70664,16962,42149,88745,59042,11031,18733,72947,15308,15910,6055,66084,63171,34936,88240,74083,63468,29871,53631,86482,23033,23302,62905,92261,21320,33463,36466,3329,15101,63463,23669,92155,19571,55810,93426,57450,97666,59543,67102,68574,44289,73947,18119,33252,32272,10180,16273,12382,60701,17648,10275,31348,79585,51201,10897,10944,95820,91810,7069,49456,1259,10741,65796,33158,89445,90154,52769,33528,67540,96518,47287,33071,48283,77418,54197,43197,68146,77474,97634,88692,38150,25844,90220,60638,48246,45777,71210,37086,57919,2047,11860,52833,24924,41404,15335,48926,81790,4020,49027,11613,92906,7565,57645,40789,48567,74667,88548,71218,78715,4057,97313,96794,525,39671,36781,72564,25690,29685,25082,99468,38363,68782,49640,37469,80539,69962,57221,43390,51485,54574,25339,73556,58757,54915,96937,62069,81967,14114,18624,51845,91797,49262,28461,6977,9983,2474,49744,73157,28902,79582,10785,27634,78686,81351,13489,99841,45518,67663,32425,77761,51277,75874,52961,97188,53756,49094,86520,22549,44608,44667,32530,75084,73223,41710,79461,29129,72517,47348,95162,84797,30204,84942,37461,40433,17050,19108,47223,57099,34563,77014,95255,17482,76907,82825,69147,52771,71968,25926,72954,75487,82563,69351,64859,51367,19275,30342,52098,66471,40381,13814,88535,73114,26383,9733,94357,99077,23056,8761,94078,60151,58184,51504,42935,85931,64375,10020,89423,95227,62663,68668,25073,11101,82445,30187,8287,19884,39110,79076,12325,68845,84494,57052,7331,59091,16477,11837,49221,70268,21800,16980,57782,59144,78523,78662,66851,21321,52719,59939,67993,79105,30808,58369,19467,17896,51416,78515,16908,21242,68648,98622,59759,31829,55209,88842,35507,98643,15530,69174,40435,80640,29612,78752,1595,47928,42544,22265,29443,19979,18629,11520,81923,14992,41495,71604,8858,64593,23769,19852,29847,23493,4659,61859,67307,9027,29853,39837,33907,69247,13257,72077,53471,56572,3009,18402,26887,21009,55766,71761,32384,79846,2586,10026,54218,7410,15877,22069,26965,10781,13511,24103,38364,62399,58361,32981,28462,48186,13790,38196,96082,38306,14080,72299,50688,87213,24793,7526,8461,20779,71897,74865,16578,4873,4819,92483,54089,18833,42015,12724,31364,29320,98206,96637,59715,10227,47458,93604,44934,75786,53101,55008,18051,4056,54264,68746,49337,68549,25862,70592,83917,87405,1327,21679,2106,89523,80045,10241,93732,16287,46493,44741,93063,81777,18264,13109,31167,62201,56454,97927,84617,75936,79139,24360,79101,86803,91996,5649,482,68722,85957,23844,86634,24991,44384,74628,53955,92754,60716,32688,96179,13716,17854,41777,99363,42656,74415,52468,64670,76598,82114,48766,77997,70430,82175,66587,40176,21239,39937,14284,70639,25516,92664,35515,63329,6513,29378,49607,18515,56736,10495,55968,79625,44444,87108,64309,1998,14565,19457,16375,95513,7319,32375,28426,52620,10193,40652,49990,85262,33709,22170,40232,51176,82939,10891,52231,4764,19303,69656,9188,22421,95612,47567,50110,74339,90598,2922,53458,39678,35721,61048,45696,24985,62599,418,76382,88542,33345,1756,39642,42456,52167,76899,42496,61297,66914,32605,50501,3940,17972,51887,96657,89620,13334,83562,12050,12000,69669,3938,28163,95387,37230,49340,686,80748,78112,3231,77039,48552,14070,49605,92871,67760,47571,32721,26529,14231,46028,65424,58616,1355,49739,78301,56783,60055,21668,11772,51431,85108,45476,20507,69610,85569,54061,47530,36130,75984,56092,27718,96575,2515,97123,94045,39426,63328,5534,80283,99218,15774,34583,54194,58217,67198,66224,23574,88387,88668,47117,22859,56166,50103,50842,25817,48702,78352,86044,49347,4763,2986,92983,16202,32371,1409,13681,55121,44458,41038,80124,80650,94122,48036,99846,81545,76069,55399,88940,39509,65463,31954,37882,39849,23528,57300,98757,68515,994,49678,23595,63926,18541,17336,83319,97473,46932,63396,28528,16916,26674,77233,71554,88173,68476,75907,17040,34760,68046,71397,90982,61536,31744,54756,48320,93841,27645,20212,8520,35611,11952,11111,91225,54946,26276,90739,64166,27161,37334,93235,72329,84863,41825,24151,83159,82816,38774,78861,86924,49452,3151,95850,34294,94336,26477,85545,35260,89169,72435,50519,82717,94210,5516,73136,71963,77112,29447,19032,35915,36121,86635,22801,22310,45674,61565,32764,14795,7904,97426,11034,54222,31471,95379,74997,66597,29103,68394,21585,43808,19801,45200,86206,56070,35983,2716,34618,92175,35594,18815,22367,84700,10967,42662,4205,84366,8730,20262,8905,89980,55028,24009,4846,40995,84643,61089,15414,65039,17957,76966,93000,46649,91784,77523,72187,53325,71510,21127,96185,59304,83104,38024,31746,34075,20087,15981,50645,23983,95969,73091,72453,27534,11797,82361,72723,54545,60328,11802,93488,21634,62929,56140,5373,43483,64819,77052,27532,22629,97731,68319,28661,67693,51089,63451,21948,45486,48674,16015,44716,51473,89889,75330,22712,36113,55763,10738,16597,7511,4449,67804,14833,63415,69534,56940,80964,4021,90696,42571,87190,82817,67881,60972,56845,41094,1994,92166,75491,58772,78821,79486,57328,39535,16832,9848,88957,25379,46778,45196,53981,38730,49688,56701,68711,7297,33203,7505,15900,87292,96756,60064,82493,79181,11406,96127,13122,91326,63937,22972,21121,16964,31972,63069,7115,18406,24257,23908,57281,30459,76848,81225,77583,19651,77945,40718,59123,45568,46823,65596,57591,13209,84231,43896,58971,41752,81634,43386,84263,57888,13172,19230,34922,65795,1317,99773,95377,86954,53759,33763,24244,35080,52830,6168,25608,27864,2389,51116,4089,41057,94146,43262,27898,16100,16252,91005,71046,47277,20416,49252,37772,94645,58522,12937,23315,97230,39481,24606,62508,29108,97551,29479,83955,14584,49498,51861,11730,66501,42296,87639,90245,59017,53440,58031,69842,40874,85239,39180,64927,86534,77773,94134,70547,39434,93549,94461,24943,91724,45067,82527,46921,27855,9386,67056,37012,19081,47731,21882,87333,47895,65841,80875,23615,53510,92771,27367,99676,70433,76996,11865,4957,41036,43714,15211,25325,22536,45795,78835,13118,61396,50457,96934,21700,91585,53514,10721,89986,89565,91586,37932,74521,7530,77543,41452,95697,67333,66419,20488,5602,18809,52628,1866,23770,12228,74327,1806,49490,47058,44099,92224,59816,50821,25695,52037,31571,40387,67284,7805,14950,78933,95180,72855,43082,74838,78449,18393,28087,65652,26269,62127,80044,61056,44391,71976,37090,54395,67356,61690,87082,444,29518,65586,2155,38105,97120,65804,60371,10619,21930,22145,63981,22437,41265,8562,11986,13247,45421,67783,22742,59694,20748,95496,91966,7359,3688,24712,34381,53141,42111,37732,96486,1090,63318,77857,65421,61008,99118,36007,97808,52792,4008,66732,6488,64686,94276,38272,3049,7443,62221,31661,64833,13815,95365,25784,8637,7036,85173,58874,92047,12414,64382,31692,91884,62426,92556,46766,94839,685,10830,91662,40880,87206,58434,93930,50686,34610,12424,56876,47314,29099,25502,79167,36806,38571,29073,54305,1010,33628,63438,44413,44906,6135,39997,57616,68503,15317,41114,72193,49120,8847,7539,20255,86264,42653,58842,67442,12696,57950,40610,82937,96636,99532,29270,20157,57790,23573,92271,1017,23225,54230,52959,8184,17571,5550,98182,9873,7672,19399,44275,60710,1840,95031,5881,86846,22009,95739,5072,40210,88618,22881,30431,61321,82556,16330,54437,11668,30304,14776,86535,50033,5653,18384,83272,89490,17010,68302,78735,30673,57805,67975,71503,95326,74041,87830,63639,2579,73567,30469,55135,47600,15608,72566,69024,12784,21088,84876,14694,34641,91339,9801,15612,60669,87630,63140,22150,82755,64760,38936,37681,38698,10401,12636,90789,79049,32811,78121,89905,93963,44664,69497,54852,76158,43569,52317,45609,8348,6136,66756,44883,39633,84001,96619,1149,2908,42806,2513,1011,99561,77615,55949,79689,3170,43692,47205,36425,51705,36566,92050,97792,35743,51530,88389,85404,74513,89992,87571,76386,79054,53980,58605,80046,94111,49849,13375,48012,9253,24441,67440,30237,28976,81709,35410,8355,14097,89702,29271,65643,18933,57385,25816,69023,39631,79161,65982,60278,95798,25352,93056,12854,5347,96363,32773,58382,64184,99736,25963,15442,5982,65539,32595,48261,34078,38264,90119,50749,78566,99837,11231,88864,44633,51630,35214,39378,55670,26580,33599,90359,83325,68820,91830,95866,31137,58123,17118,14033,78079,16584,83169,37036,49277,14962,16853,76263,60962,80006,75665,32617,68282,59579,51129,7712,92221,26066,63890,86065,39412,34631,16732,88391,38682,75209,48279,64245,75460,96324,68413,63618,19706,43422,18956,21386,77251,46984,51239,2695,28154,87629,17161,62247,79552,98496,32999,49331,69837,90066,70103,88486,80142,52188,4038,42401,52070,75359,83494,1850,83120,43843,67793,48804,44034,5582,39319,87850,46765,3590,16595,82,26503,48013,50224,52618,71901,5590,64030,67429,55118,28514,78339,9754,39572,71691,25298,6581,63182,67418,37094,95098,55972,54869,58388,14633,4079,37287,11697,53708,28977,69953,84306,92196,24264,22648,49220,43587,73504,42630,80857,55077,9052,29981,62482,95601,66999,64878,37492,56687,4496,3233,55149,61196,25554,43375,73632,79681,17879,15831,22176,6155,83071,19914,48953,5747,99870,33866,4068,15154,81094,24094,93266,57822,7839,16336,90907,56375,73386,85383,38268,57539,80669,69235,65272,9295,57978,74240,43518,7408,60164,77227,86234,84917,68894,71311,48169,33475,92193,78695,17001,47594,92507,22672,52038,13516,44901,22882,64222,59032,1549,11581,40840,38687,43848,70584,40539,57564,6244,56329,51531,40721,45985,67533,2881,70949,51051,336,13424,91175,85841,55871,4442,41903,14288,80210,53773,17035,62848,73531,93205,43312,61316,60404,49684,91329,94233,2403,12232,20411,68106,92415,76595,49960,37969,18980,85779,27353,40606,44189,28051,62001,44959,94472,76390,6062,32853,49039,53412,44871,67498,86601,80526,71013,16998,65211,39482,73341,54253,18096,26372,78480,54813,21864,62778,9501,80063,16365,17222,9958,21256,72418,89817,76978,59738,70749,77594,30749,12549,86109,48146,41849,51535,53011,44443,84136,25048,80198,72263,69149,19266,78822,9535,78370,39188,82510,72315,48008,83866,39086,38681,62886,37634,15339,16975,93397,43643,85316,13755,35393,52375,37466,21787,81673,89411,54687,17653,1681,42171,55447,70890,46052,26838,13942,28073,37913,91738,56473,89902,18605,19020,2519,12067,42498,16421,45127,586,11571,98376,81026,89235,5044,78010,68367,96399,13290,63152,28515,24930,42788,62477,15139,5382,34496,72463,26185,26925,22696,42197,98212,5973,30901,25984,89301,94977,58970,85087,75932,34516,97647,98222,4533,18938,75232,42809,1690,56022,40046,48991,14335,41896,71886,49870,12296,68135,17757,87874,44409,19208,8056,23729,2839,67850,46776,86030,51968,13429,63686,60907,92110,57109,99944,93625,74314,36702,75347,40952,261,8829,5467,26912,52550,48864,78461,48467,43545,89946,16037,41308,87965,42402,70969,34712,83089,17095,26160,23655,43599,73922,9969,9309,6502,20989,97350,64078,94612,1537,60226,86856,6457,37034,25533,98323,81198,68171,10,3951,42080,40,40325,27850,33190,33724,96747,36036,9392,22244,9314,38741,65554,80967,77206,39862,39720,87654,54378,94801,62215,17321,44628,33776,53515,83519,10605,85680,77839,24408,4647,45887,45165,7576,43160,46755,42605,75831,69416,23563,67487,34608,8071,64622,93773,63715,32969,46678,8057,45909,51801,4327,72126,15462,36356,31057,92427,45378,60822,66445,87332,18588,93577,4839,37508,92085,70834,93632,6722,35868,30598,85264,36455,49920,73582,19360,25159,2304,52247,93256,50634,89483,3974,6986,89060,68309,29392,54444,28333,35527,45847,59498,88367,40572,96529,25282,30594,82026,85635,23567,20030,85314,42686,94424,1385,12218,71431,10814,93665,21968,8340,697,58387,81672,51032,89251,36073,9260,28588,66692,24011,24440,54060,52398,98120,31953,71774,26621,61033,8579,58399,94714,61662,49662,23412,49690,93940,92710,99762,32813,8560,80809,82956,87795,50703,4438,6461,93078,37874,80995,61392,52681,43558,20283,23612,69900,27352,42529,86886,57064,58106,63582,2663,89054,62078,72962,76491,51881,5237,82167,3077,68363,37442,43871,7020,26819,54478,73301,32783,66311,13664,74,53148,96389,82879,52295,93860,9239,86569,73129,56479,91681,73673,85993,25669,7332,43664,6822,66004,95091,90360,30931,89055,42315,47286,77427,27936,33978,67448,65303,60162,42504,39288,40724,54590,26588,26888,3545,55285,33129,62353,51819,14303,25255,46637,10490,86970,37520,39685,12901,35524,30249,84759,11751,52122,49054,74508,37005,71338,17211,84295,44639,66017,23682,31017,72823,18394,53643,68035,64484,86429,92257,68379,33757,68111,60755,8528,26049,67017,85392,68354,21323,22946,20406,69520,86377,18772,37556,15201,23743,58561,93832,60268,32029,84293,87813,12541,14155,9519,23721,74570,76842,83322,28094,31985,44013,91676,86716,29106,503,49657,82707,54838,4546,85202,10940,56619,2825,71243,95852,16659,34792,78492,84655,51518,86384,43104,60879,69048,71347,4992,68866,56249,67466,53249,81582,90242,92745,90986,82780,86199,55828,19101,65857,82927,12112,40588,53628,39763,70876,20682,17053,84196,34575,82833,69408,31165,16909,38457,40398,46871,87614,43369,42022,12357,9903,47495,47105,17696,30604,88082,7843,91207,62068,10270,5783,5799,67117,87065,32893,19746,96084,30211,75193,711,68220,51712,2450,13727,97845,75635,6143,42331,92439,22622,63016,98097,48256,85328,35530,91205,61948,34674,96346,81085,41306,30571,70645,87093,73606,84214,12104,78968,47489,13044,33905,59193,20756,46286,22546,53634,38836,46174,58005,76190,61961,3782,48816,58272,21012,22110,8338,49559,60691,30936,18183,78631,80774,61234,27995,6663,97214,30949,81603,15268,95176,29427,11674,89191,84839,82220,50299,63772,87585,4224,3898,27443,27704,24794,47101,11462,30139,81691,57630,98001,91852,35832,42500,60238,65177,51599,30088,11787,34970,49741,83194,92539,52845,25615,26546,36260,41439,40424,8555,40361,48297,71324,18663,61082,13418,66997,4203,25066,65637,66274,79592,81712,36884,86130,52889,69140,7807,8082,72269,17845,81193,29807,29049,25597,12650,70921,90618,52698,18804,58669,87669,89034,24008,24747,53287,26257,76433,51537,84391,51425,73046,2316,16538,13738,7832,20709,44297,91870,26024,47415,33996,29062,1145,98084,60612,55946,17465,74402,45353,6292,88702,89403,84138,1431,89177,59122,94794,93189,78721,17238,33722,61225,97281,26854,90749,11537,35382,73571,12072,41761,86707,26366,5583,73242,17041,28433,66288,60630,66010,55583,67635,17739,28400,51871,10546,13819,5834,33314,84035,19423,58603,8839,97818,19590,32263,96133,94270,40417,81497,10994,23093,58698,16572,94329,10808,46301,61447,33498,65887,77527,75670,44307,47068,951,56691,82591,43420,38609,23801,75383,50339,18873,10385,10989,74072,85379,29557,98508,15989,63703,99602,47069,22406,55183,28517,56238,26051,33396,82292,652,40676,97979,55281,37696,15177,18982,26595,92719,40070,3997,96421,10509,30894,33981,9890,27365,28151,17221,8090,96537,88776,5886,97513,93394,52294,91545,60085,79336,1506,17367,66641,44149,61221,32412,39066,94949,44872,63909,52835,5807,10073,816,30735,55762,82270,53734,1737,61521,87221,64428,3593,95030,89602,22854,3274,21805,41700,83036,50879,19497,70082,14875,70221,87521,28136,29297,93474,32189,24771,16329,11819,84877,65369,27039,61793,10370,13321,94298,79058,7276,88376,85698,90038,85359,21139,21170,34593,70224,96394,24413,86836,32336,31132,31090,99176,15767,7730,46803,97876,80944,45749,71407,26542,23483,78712,94039,18162,86141,43289,99435,19802,23043,16781,90485,36370,17235,55449,3606,16284,25490,89289,25360,52059,93546,42952,6541,64315,91591,68039,26153,47851,56907,56427,28985,11211,11369,27185,92673,51647,93914,61217,76989,23846,7413,9343,99742,81639,70671,77377,12593,33182,91669,97262,84916,20736,62976,23872,51980,65197,82278,98683,43589,24938,66147,96605,89470,71736,52488,62662,83941,11932,66626,39215,77369,10172,6196,88955,10251,83665,37196,87832,33852,33523,61028,51892,38931,20942,87526,68522,52123,8358,21259,38180,3450,78700,98601,12478,14794,23884,93420,76482,68483,64941,83212,55546,84694,42189,45520,10039,87391,48597,49383,50007,4135,36136,55084,53369,61581,2149,63780,66548,18207,95566,97300,7690,31280,96963,44274,77387,18823,56616,35380,1941,16666,19635,34688,54427,5486,56411,335,82369,98968,25717,99200,73468,19548,92177,81738,16605,72760,17772,79422,32091,15488,16127,19023,61314,3474,83475,67371,14539,68378,21065,24212,86333,22255,23568,71702,59581,2222,21678,69572,79885,10469,73239,6297,46892,20653,61456,48643,54018,96302,51494,98080,99462,51751,34642,18272,83889,24137,44454,70254,81009,11312,42960,56337,3825,60263,97259,44313,592,11297,70019,63230,71055,54520,98419,18721,93542,41948,27163,99133,61194,31552,27206,2252,30848,81286,83326,36050,61371,78840,28435,33352,74609,38338,36952,97627,31929,3924,75490,67062,11563,6007,21759,65407,40826,85288,24114,56712,97541,40097,56075,55625,45613,4617,77653,65908,30872,53946,34103,13119,28778,52676,68526,37503,55547,74581,42538,82321,71142,97758,51193,83547,46955,16704,40877,86431,13028,35899,99040,50696,57631,23945,44646,53318,324,71275,72285,14963,33584,99309,56253,57307,91678,65801,5243,74296,94097,92498,90049,48505,66244,74734,82805,66635,80862,24755,53894,96776,93853,13984,68606,7187,60956,6222,64014,93164,4519,48547,59162,49342,20980,45409,41180,11427,24676,29703,31008,11666,76691,34622,50000,84481,22378,38157,80710,93877,5648,42031,22364,49009,95680,41625,44879,39822,75593,76493,87842,51812,8318,73140,75832,15099,76707,61753,76227,46055,15331,88289,54690,85063,54652,34360,98179,10125,47207,34798,1565,18617,50927,59015,26134,30430,72733,45361,4547,70091,34263,15046,18536,35202,11521,79775,53445,31224,60429,98755,83148,44582,3434,83571,89896,96014,6342,21163,65740,90822,25058,94069,82471,34579,45675,48985,26660,42642,13161,2915,43416,71286,8636,74261,68518,41288,72805,30362,80249,85189,26972,71050,58514,61728,88775,45927,52084,65091,15490,74551,80856,98227,5200,64636,72877,78763,34210,93004,70937,61791,52235,42250,32560,31701,68449,35179,53005,75926,52855,81155,72118,60558,14931,25833,59294,81444,26701,65417,33859,6516,17129,95354,97540,3817,45863,43300,67952,41139,15451,79759,70504,17939,21430,34009,16460,45894,14813,59556,20024,74633,10868,52894,46402,42617,70291,66896,13459,5361,11227,79839,45873,24470,84705,31393,60824,87915,96977,450,71221,62239,44007,92296,13048,91621,42115,49593,60547,31006,84612,21161,97444,11496,45244,19664,66259,14611,1422,30466,19123,42010,84755,1923,98293,9802,75119,53817,43219,9717,75010,1732,48917,16744,824,11993,83347,83332,24270,10348,78221,26949,37407,84305,68389,96192,99692,58461,86062,42383,17742,25696,64467,18675,1867,54684,69079,69205,45062,1688,62113,60499,97071,5121,93737,15965,28155,24722,29508,59948,28332,24174,66055,68141,50365,21953,60640,88938,17787,13710,1295,93348,74905,88196,84649,44834,74552,58172,49676,62564,16490,78875,6394,70279,78996,42615,86926,45206,34873,81968,14396,19523,11524,26239,32088,16276,21348,69701,96169,28215,30536,32704,12358,85543,84455,45667,61802,9645,84975,57644,37828,20521,15176,97521,38470,35960,70709,96157,7762,86193,33474,71914,12016,76242,98195,21168,99353,17451,20375,37221,44812,80101,37003,30364,72167,3880,61790,92149,35015,41933,60779,82840,97253,6936,46918,22786,20914,45870,60446,99547,39043,33181,33711,3040,12691,77037,66715,956,8913,87684,54616,16412,89605,87826,54791,8553,75933,52967,31400,74061,15807,72357,59618,70112,74067,39492,32880,80393,81607,3177,56490,56859,25065,3835,56145,77770,19347,94460,94100,44642,18537,5195,26672,14976,72433,96811,33286,78940,94673,20025,11055,50949,37141,85037,99771,17335,28257,18164,62953,53988,97804,75382,44724,22509,15463,26963,56738,32661,66516,56236,44745,84844,42203,65614,69859,85157,55352,57464,38576,59018,80261,53537,35914,70666,36834,22494,65687,37535,99880,54015,36257,47029,29242,91614,21687,34174,11601,20684,65782,65159,22752,22918,90453,40504,50960,24317,84599,81081,46369,42643,60948,8494,98038,79997,33270,7095,70866,31617,73950,7062,54991,11574,93263,6740,66696,18740,51474,6379,29584,30269,50422,15066,15140,58452,75376,33717,23912,59120,46541,27507,15732,5,11167,62563,64526,85188,26785,43464,83873,68371,37999,2094,48473,77789,23741,79696,64765,14432,52174,14719,45148,71941,24012,95855,62955,28813,95459,70661,4039,67909,92049,22506,25099,29343,13596,64064,18882,63356,67611,97261,20405,36006,92960,60527,76519,37102,47271,27186,30563,31104,46007,96821,95256,91493,80458,39195,14264,22049,8467,91888,28416,68137,48126,76735,50389,73331,89020,84301,84706,7101,89844,75559,80247,38170,27684,62721,68478,93840,91964,64443,1427,63369,44654,8549,55237,85140,73513,67633,89906,41874,62468,90450,83553,29866,2340,14965,66347,51703,1120,8248,32692,69007,53455,50440,90386,73664,23,16810,27877,54170,84895,48272,16724,23177,25579,16198,50562,77606,293,22338,96567,66940,27814,96296,88752,78586,23614,45171,45381,339,54863,73358,49994,42323,70638,64129,94966,32325,12235,48368,50540,78919,79980,17941,67508,31963,65204,91778,75354,61825,3436,64559,76041,80275,95721,7151,40395,89219,75296,37594,4555,48941,33134,34388,14201,98456,51297,54508,34020,37768,76053,79268,45081,65017,17901,14333,60578,16097,35599,59527,59431,35443,49980,6664,44366,94191,43832,47417,38090,23987,25276,81793,85570,16648,95713,8515,39429,80377,65688,64628,80500,36470,57347,18245,88830,544,38570,34344,3158,68696,27057,30815,37824,25580,21586,76476,92896,37742,21532,15866,19170,25727,44912,56181,19970,11995,52143,16708,3225,60358,76933,17143,45474,86132,60080,86400,50716,26118,90525,71725,60503,86651,94318,7348,36825,97406,64367,73874,64004,85725,43919,82595,59502,25290,35029,3312,47891,96745,67521,84408,52357,29697,7656,44499,73213,47525,5056,25847,54315,88347,67374,97607,49345,58781,12027,33046,12164,56189,56875,26132,94745,33966,88103,7183,90774,35783,92842,29013,65611,88895,76090,73459,3989,50938,83275,30722,27637,79449,82077,5937,57377,45858,88530,53674,912,30820,40909,94018,80115,7816,26104,74561,2705,91974,62122,37016,69517,17477,38019,51028,97226,6673,49859,84730,86661,28393,63177,68649,96504,97054,70111,63445,27477,51404,88860,5424,18470,44754,72106,35064,61723,12284,95257,68676,62296,65624,38068,73402,4939,36567,85369,14556,73044,35478,19344,36594,6002,30331,35308,99504,1934,73767,59565,66829,122,43494,53334,49503,29372,39870,17320,65953,45924,46972,55744,75259,30514,22098,52076,4178,55650,15705,88851,62776,34544,92426,63198,72620,89129,29502,93317,43951,9546,491,4197,77919,40131,11988,52477,45915,26323,50046,1179,91686,82884,3820,1865,46568,4613,1226,3535,44611,92176,16539,11789,94337,56637,41811,13009,46929,90456,89660,42352,99688,72510,75834,41682,60095,62203,49478,40612,97166,47996,79693,94531,90593,13462,67789,92856,12809,71502,53088,7460,7874,71517,94917,75827,33585,77103,24803,16935,61760,50408,81661,85850,70945,9862,50409,9345,97037,4881,20056,56692,77025,48420,44767,57823,6119,8737,53250,49564,2965,27520,52362,33447,73873,64462,87269,64788,91438,85844,64287,90549,70335,92393,83443,2542,61635,24952,51418,56669,43660,24412,40032,62327,74053,23947,79662,60665,9857,64008,36721,20754,21660,29161,86128,23572,90493,7038,13123,83122,5154,35622,91922,21279,96463,93393,27669,57916,10200,84333,87821,93818,18719,42381,24246,99328,71027,39790,42253,56710,17219,59419,84978,2627,19879,25220,54797,70815,1735,53087,64986,57055,10484,52282,11426,65392,87447,7321,54079,81918,85384,26692,57568,66455,84141,60782,44290,22598,24521,50520,16548,24497,40294,79408,84021,89137,82730,96995,24102,82333,38786,23636,62962,4150,35651,76254,78563,29226,27560,78291,4935,89262,44555,49908,89098,95993,70186,88517,52454,2660,42648,62949,91188,4944,11293,79186,69913,38907,4364,66986,65079,90994,88539,34177,32615,13197,1026,21961,49321,94913,26317,67597,6538,42647,99849,61719,38568,57774,67384,97271,366,55078,19617,80039,93806,92604,95242,96815,83916,84283,55420,6384,28930,4284,35261,90310,43965,93346,41666,85493,16818,40773,73959,81506,60736,88152,98659,89378,86392,55647,35030,50881,98718,98076,214,94262,26731,57727,52068,17717,50808,94507,91627,33761,53124,17564,48289,58187,63139,17273,37866,2375,46583,32786,84630,98253,36336,97899,32037,33114,2645,86774,96671,25187,49937,90406,3939,48555,70455,93214,27729,76035,92390,91290,16905,74436,42086,58656,83486,43651,22478,42186,65671,88385,1955,8359,2892,10328,57403,29407,87949,35814,74685,60559,20740,41679,90291,51062,79155,49813,37132,93760,31990,49294,72447,63031,77843,60284,29852,72047,25714,27056,91138,33341,79706,37053,73587,18738,48580,75344,10150,88083,24872,8504,8456,27089,17864,24379,5938,72437,5940,1819,46332,40065,42166,45502,39659,15926,81718,14913,71889,56723,62279,32832,1686,37197,4561,44092,54692,19733,80095,19139,42450,51205,92203,85673,6889,59209,57187,64028,49918,95473,59173,89647,44590,69551,11586,28950,5984,37338,49941,17981,73472,26996,73735,72973,52274,73829,5489,74434,38032,46140,35491,5570,20059,87171,83524,61255,42033,64886,40306,79537,78340,36478,33804,37401,18559,7190,42378,16285,42802,61125,54064,86055,59259,81158,8260,44870,96581,27100,48894,59496,81998,21887,30344,62214,73807,34489,89995,48602,44568,2702,81499,1446,65730,3340,37425,39539,63899,96412,31676,67020,62604,10325,95210,92590,33222,5393,54873,84378,13902,9236,92653,17655,3280,19957,22877,11692,96678,26835,65761,53785,36988,7181,10419,3724,29259,23513,54336,54597,25333,4196,70889,38012,8112,86443,59181,67479,1539,62507,5343,11667,99871,68961,2401,81695,2771,55713,87822,80314,98410,28077,73988,72214,41818,40788,96450,35540,8279,12476,96736,18966,82559,33476,96920,14845,3363,24326,93801,35340,56063,28296,87952,43640,30411,90121,14706,54161,1767,27311,4139,37387,52393,4182,74426,55805,73861,50868,12714,93016,60455,34229,36640,32540,58716,37445,3501,48989,4036,16367,92686,85424,71868,23079,57707,9953,4227,65041,30446,20900,17651,17944,50694,43809,36633,64400,66198,87542,25766,65988,61516,30687,76240,38555,23428,78977,41353,14243,54577,6659,77923,51823,99312,82178,4927,89349,43577,35119,57005,65043,79601,91145,56326,13024,60724,5119,16494,73270,91875,58429,61264,70918,76369,38878,16620,27102,46667,27453,86268,57136,1169,13527,64437,20889,96470,55450,82654,49722,11001,58366,85815,49339,9931,31667,14855,71334,20681,27573,25337,13144,91696,94091,84879,87930,5387,43529,97036,36510,24545,78591,71847,18220,35218,30122,89639,6445,82480,36965,6776,94564,1560,66053,7344,57694,47610,16354,73398,39609,19790,71936,63552,14331,23378,83109,15990,53760,78895,34605,4171,50269,92744,10356,54745,18986,97765,21138,51264,18652,58792,43815,40501,77382,5109,50185,3876,15240,68775,55508,78142,51831,53229,84427,12629,78066,36883,18885,49636,95395,69371,98167,5922,27156,37862,45690,15991,75955,99321,95151,91814,26983,1622,15509,28334,95626,81411,42220,88817,33633,97553,52603,11719,6450,53790,27952,39464,47151,73533,6744,13211,41847,86414,44254,78645,24028,4621,97309,36734,9291,77955,49233,67336,41904,52353,19836,87075,26370,51091,75724,28025,34628,89357,47239,35694,77867,44431,49788,11367,93578,25985,79784,88073,67712,4035,58124,33299,18035,50990,78098,5816,77763,38660,24584,89839,74447,83655,53240,80923,75204,59490,18441,72629,66769,52252,79440,76960,99536,39153,74726,83312,65040,63243,40894,2999,52885,63608,33720,82247,76964,55784,68987,15011,58062,4827,99644,12397,30434,26042,32175,93101,50156,835,38479,53104,58723,32464,17521,53936,65346,73528,65440,89816,6994,59319,92619,7257,95017,81131,71848,89315,80131,7386,68089,74241,83366,33107,27565,80696,14926,85617,13826,4474,76178,99076,63285,70460,97475,29414,95070,44311,54845,41113,20156,67680,9550,84273,20460,41197,57954,77196,25807,45537,61007,79110,71642,23840,96526,77984,20294,30382,83581,57632,83892,338,29213,22440,59831,70729,27411,16632,30746,44198,64663,5474,20663,37161,13137,23371,78579,80157,80817,55266,71149,59011,98133,34986,65076,44859,4630,64230,1683,32377,21387,58141,58421,3205,21728,47823,24154,50650,56267,30938,738,11283,79029,9197,80711,25361,51920,69461,15546,94101,39058,85907,15895,441,91499,12226,29805,91916,73853,80280,88609,10700,89627,79374,61739,68009,96484,83082,3620,63728,73416,70307,46241,25653,63856,70087,35897,56730,11319,24769,6811,77912,63163,9577,54900,66048,13458,18871,7116,54359,65299,69948,48363,73436,100000,61063,4030,47606,82797,82032,89833,61118,96695,72787,17976,25853,80979,39547,72195,46866,36367,22887,91459,73480,95165,70738,50028,48921,54063,39157,56466,86818,11197,4050,76315,17535,5566,17549,33796,16902,20562,98317,53802,65349,16154,96265,42812,44994,67504,24347,87691,56197,26033,13746,37962,3712,23130,56481,85079,31781,65609,49249,2535,46504,31559,24593,40429,91794,57746,9776,57273,72386,68326,59111,71185,52913,67116,45830,92727,96838,83798,5038,80343,70941,38717,45635,16053,24298,10755,13704,68872,96635,60533,4953,13723,62845,77457,79650,69885,33054,43366,99105,48436,42041,85865,78028,37631,83551,52721,540,66346,61458,56679,76997,12863,66663,80332,9076,1700,9581,42547,45564,98225,8447,11414,10215,50348,27619,24185,7643,33674,72240,22931,9419,81204,97061,70680,51015,1954,19412,6697,73695,47587,45460,88584,42123,70210,70289,86487,36955,92503,36391,63117,25285,47802,68491,57505,67867,94244,20656,54127,31309,29877,52686,65320,22899,20675,88004,42163,3276,55126,59361,76935,87039,94884,38229,10696,19234,66869,34324,98930,84307,29045,94124,19659,28097,76052,15682,78195,97797,2335,67823,26089,28346,11950,76316,56889,45723,31466,45006,53407,89049,90349,97936,23377,66509,75107,94194,11973,60036,52595,3018,25976,37459,98605,74495,32288,38964,16588,37446,38856,65464,62668,89123,80243,51884,57612,92655,97450,26303,2913,28330,23488,27308,48538,7129,52279,59663,93566,60310,2007,90367,13373,82174,60984,27698,39294,87490,41102,28706,72124,21025,72945,30655,99429,74790,93943,7662,67128,31937,78390,98858,86532,6641,14472,12056,10345,4805,71921,49311,63960,69318,76011,84829,16608,8678,68957,83560,5772,41155,10693,61953,19359,53511,88133,11863,22275,61423,79460,69838,23181,95134,25407,61657,85797,73085,41080,786,17132,62802,18879,21641,38290,329,53072,98327,17039,85636,12874,98454,38548,98471,53326,27860,34249,71979,68537,36980,36748,39980,9616,47045,87810,12418,57898,32557,66699,44249,17447,41727,79923,96985,79813,44892,68993,41382,74788,43368,38614,10798,16565,97701,31765,31679,16394,32631,5717,16019,45890,11220,74778,15778,45226,55481,43439,67223,47678,17054,91757,17393,43149,39738,13980,21054,80304,1140,17319,74698,9601,40323,18510,13189,3472,19892,41079,25374,22986,98838,64668,91517,57430,69710,7337,18767,59668,15916,9209,60706,3161,18112,38403,84779,2527,64584,50240,54943,75302,62560,69128,6999,65974,50543,20557,66935,68223,3491,40518,10455,35385,69641,17124,2981,54581,60098,57500,29621,21659,57524,34805,36139,4804,92709,85525,2164,48946,6359,17317,41784,5601,57002,34383,74086,24101,49496,7290,42837,78621,82373,29008,29536,90898,39545,94900,53228,14716,94157,18518,79145,5703,88187,57825,74139,56806,60320,96801,7998,41188,61388,85546,48992,9628,92228,74140,33183,74953,1280,38884,92025,86247,14480,68859,19017,29185,21973,96299,52209,10221,41656,3683,32378,95514,20720,35386,13649,25908,66631,38569,67719,2989,11375,57533,56121,27794,37049,15033,56591,78746,55258,49421,70313,404,77180,85020,17341,6288,98042,95194,75001,91384,28949,34932,4915,60803,15815,92746,13170,32903,77332,93151,52907,22245,93051,16736,97973,44054,55574,13001,63418,61142,90269,39562,99202,98461,78129,9411,384,41097,22751,30067,94940,65876,84436,88227,50597,53230,68178,21789,19945,54370,59445,46142,84838,51471,85733,42785,20560,45034,62756,74289,17472,13057,38883,81940,41317,31997,15352,69194,91200,94882,27994,51182,50765,34120,42857,36479,16858,60478,86094,18542,401,25753,8595,99818,63803,39688,57485,34857,59571,37856,40014,75585,11217,98021,11255,77431,98160,27174,92558,87765,35693,46376,66788,66427,35657,72810,8687,81347,37840,87347,77592,54693,40472,58502,58525,89579,55475,19265,76822,81229,9690,23439,79946,77649,80192,94430,43077,50268,97988,19741,89568,47274,77491,28895,50327,82813,35466,81505,80422,20974,86681,4469,2398,54876,54248,73490,61069,48852,16922,12118,68735,86362,66116,78215,5436,75741,708,85512,31949,69229,62980,10412,26320,35934,16749,76681,56578,73247,51025,93375,3751,12490,81129,74449,114,20668,75569,44848,82943,61199,32835,27920,31484,77915,80501,34283,63922,99526,16110,73465,16224,57393,673,24641,21744,70679,32852,27535,62594,77690,16730,26893,55940,57856,88975,15130,28423,63464,64872,83643,27475,26408,97509,11267,82847,50485,80002,20075,94601,66039,21743,76017,51554,68604,30367,43163,20559,11070,16960,92615,76983,9753,27396,63277,91991,31312,88841,25406,52387,22248,5760,87087,90125,77531,41538,46139,87544,30839,28845,87590,15186,75369,35803,78682,55765,51417,12968,91612,20485,49671,70473,59021,3536,46125,68680,49922,1643,47120,93883,81913,94508,87825,79475,78378,67643,15026,30185,18476,93515,52972,95132,71904,10936,98482,77939,31854,95984,31252,76036,28046,830,14628,8151,78508,45174,4934,75915,50337,90656,33422,2562,87841,84475,87872,26523,95944,47141,52574,22334,21114,42513,92431,74672,15525,29712,68098,80239,73370,63186,35749,11545,35505,17159,22923,96239,4015,30562,25060,44445,69596,68535,91840,67986,96205,71840,93114,12181,58018,97200,67493,41313,22862,41250,12779,88111,62420,8257,51583,86136,17395,71777,65021,99701,72343,36828,75018,85066,71790,65329,73728,90510,54072,26140,69781,47673,91261,50974,87468,23304,83760,78969,33768,53697,73742,60001,81650,43162,16214,79845,35956,62959,55482,40509,92889,84377,82893,53554,79867,76073,86378,26665,89462,28463,5975,89165,54278,36971,13665,94790,7889,14658,34126,53319,91703,12538,17954,75312,45728,33963,38793,12159,74416,50795,81181,22562,86539,964,14484,24703,48471,14123,12612,32084,65700,63816,6268,38234,29441,87616,28061,48866,53917,26166,47707,26822,45977,75693,85594,10744,9315,14187,87103,71671,54297,4332,37575,24166,58584,4770,79660,35585,66295,69401,78069,79559,33239,32027,90459,49768,79807,93618,40263,91505,84132,89610,78345,7907,36886,12346,31729,43889,68888,11885,84588,2602,34076,1600,48889,82017,95523,12812,70024,4618,95836,28664,36651,51846,62385,37064,90339,75444,80557,74948,57457,5090,13964,63767,61412,57766,7674,73712,26974,14077,54358,69665,40994,30661,73823,90724,66466,22609,11225,91403,16957,4076,67058,89878,14426,88671,73520,13549,98464,84198,39867,69646,95384,31079,62383,8360,54855,76594,98827,64010,46881,23522,1058,7591,94271,19401,70493,66784,66457,72999,88430,3212,33105,60815,65542,38504,80910,47546,94698,22764,71489,31770,67480,44449,18614,42525,96876,57007,48051,86102,37548,89650,64769,86907,97719,39677,74152,60855,84094,27468,38666,28974,46364,40803,57039,11877,15777,20722,57662,21656,26015,21222,89330,42818,6036,55426,56589,72182,80300,62810,55932,48582,68172,26708,24053,37491,8720,23345,47853,28045,66247,6678,37458,86985,43307,21120,22091,2501,49419,18086,22081,47360,46816,97296,93775,91275,87336,18582,34920,23953,63593,94619,77270,29876,19826,73898,61510,1786,57063,59754,7058,10461,64952,51587,26521,45052,10473,81646,64214,78096,66040,71090,61195,12392,20812,5071,50419,56703,39634,41150,66928,1648,38101,46283,70833,62315,82515,2919,15511,2097,33593,83316,3047,10080,88293,38072,86703,80677,25569,49827,91853,807,91709,70154,71657,66126,93407,3320,34295,11888,75743,1981,8320,61755,57390,98680,6803,71147,17636,13812,38978,14852,74505,94992,93609,22278,15373,88762,91239,86997,78546,298,95189,74090,81520,43554,85604,57254,15933,86315,32435,40843,57979,53354,15224,11164,56292,49306,53857,83222,87180,65208,78228,43966,42414,45463,43776,90130,62591,89399,46692,83554,29664,44989,3720,868,9994,97801,90346,4958,26680,10438,65306,18863,79231,48380,21540,25632,5758,65388,12342,47065,29705,14442,93592,76626,69396,93705,72421,16047,67614,28898,98207,49736,13296,45839,28401,54834,61647,31610,76375,64496,15856,41484,64280,58755,85958,66772,11190,91155,67472,38213,71990,63833,63244,54477,2391,83370,40911,31959,40142,30869,81481,3896,56962,16147,85169,30611,92573,99390,3443,9293,32170,70846,29838,45268,74909,97211,27134,48115,56711,35445,63236,40271,62282,74142,54110,75144,12786,15936,52016,56657,15400,50628,79738,52674,82719,54618,8166,75948,3357,90871,16270,98646,57507,15972,16514,51302,16342,199,72341,40320,42357,74837,76565,32125,74494,93834,31295,28855,72031,79039,12071,61547,62568,86221,43765,30608,76403,95406,45113,46100,46035,67973,65284,91540,71944,50243,45270,78054,58164,17642,96500,80679,88229,4701,36301,92702,71110,42965,81627,11068,81561,58531,50603,4194,34614,32504,44059,53864,98238,58188,66478,59148,94799,15065,39156,60695,11582,36862,43935,77708,84692,46617,28229,19715,34392,91617,71735,61113,83802,4880,48120,92770,33073,37263,59998,92124,36142,73700,57608,44643,64159,90545,85261,59931,34201,49834,80813,85368,54429,36253,36034,93449,26683,89003,30845,15974,9272,95182,69584,29596,39164,59761,93099,20951,52302,96865,69571,46005,97174,98053,77578,55287,14466,89622,76695,83246,71059,80933,57241,86757,24432,5840,35456,83872,64062,82350,10773,76277,97264,42949,38414,79531,72108,7691,54721,51073,4771,78654,87954,7312,7466,59822,18781,1449,49571,19465,73423,65754,47285,81340,16457,19708,4528,42376,29212,94573,62545,66668,44779,68570,83387,22372,24499,29258,82238,24410,15946,73058,69116,43584,72797,52436,84532,91613,99715,72914,34437,69342,89509,88094,22517,36057,26728,4666,82673,76296,6308,87500,71476,28990,43101,20999,76105,95921,65089,51948,34523,23625,38834,58068,55817,2898,90458,84746,66277,72127,26700,68567,47320,97702,16885,67733,39445,81670,30340,97824,1890,93839,38800,37289,82475,81429,41780,29576,14806,5066,51111,96182,16191,51680,3506,5144,29246,58422,5313,639,1364,3050,49090,71937,56882,75865,17284,27123,86751,83834,13830,48614,19227,13524,58064,64754,98784,43516,75163,52383,90208,47951,68261,76746,8104,46246,60327,84111,51778,85763,88798,8728,24442,10516,60260,77519,24226,86053,33353,44359,51231,74954,63819,93509,71878,32041,67022,64592,2313,70069,50244,57311,39959,14902,99114,95669,7383,38149,44140,74190,73260,19402,95478,4884,63367,19573,72057,59386,14056,4405,15087,17707,70628,4809,6539,30023,16782,65870,43232,19351,20057,39926,55557,3468,37154,69435,63815,60729,58119,77283,50839,47232,7665,48902,70243,8244,23610,98635,34133,79011,36387,81922,53518,59189,18773,49656,25358,30299,354,85219,74834,55868,89692,94648,26048,63700,63959,15846,88793,43881,9713,19111,92346,9808,51268,85131,40067,49085,96282,74330,12970,40119,47601,30174,84110,16428,6825,21720,57459,62365,27663,34997,10649,17518,93789,42478,57161,84990,92700,81720,45905,28598,25583,56162,79621,90340,33652,15677,42184,38745,66118,44986,24104,49565,13076,8232,19639,80632,44156,52135,81214,59999,1651,52063,88054,49378,40364,69335,95360,88055,14799,6401,57731,87956,32716,99219,79553,82410,40174,90083,26020,86437,35906,20567,56281,18603,7204,9469,12710,55917,63610,36954,21123,12393,92595,1975,52877,79534,32781,20027,30647,40973,13770,2281,16655,64582,99747,66202,77539,31425,12767,10140,55075,44220,43005,3339,96704,10947,86079,68079,61240,20506,11238,26608,24528,30374,7032,58037,44381,78174,83769,26377,86798,93888,9318,6287,95527,56176,22844,33055,89841,64581,90808,46037,44726,14411,40085,32048,28187,42409,82852,66863,19955,99447,75283,17148,67438,51806,71496,72857,48025,58450,42339,81595,58779,8089,41629,6416,33823,39569,64761,93785,65217,220,58456,26259,23767,84062,41915,94649,25250,12578,17242,4311,44694,94989,70396,96272,50654,79882,75214,24289,61959,47087,57751,65821,7452,18944,76517,95056,47959,62804,85833,50130,57366,88010,69839,11145,20604,88868,48536,72135,47742,35820,71395,80593,89210,38124,76220,63746,15038,54306,237,17524,71071,89260,63738,64925,71064,58081,29349,31754,64492,89172,34349,44404,57031,45386,39747,550,3995,36410,67001,72130,89152,87611,38737,33664,33867,61877,73231,60947,31631,9124,48908,92416,46578,53531,24022,46760,8940,80196,47532,8039,59854,89039,11507,42959,9509,66023,35175,22947,21775,88079,92571,96982,80645,35387,420,41319,18940,62997,51986,50992,49541,66936,91082,81890,65911,72177,91753,73344,5101,46518,66485,42368,12814,21102,90830,68390,93476,750,27459,27741,70862,75862,75802,9046,36900,42448,35610,77056,31436,91174,60753,49315,28125,95522,58194,24390,72988,64279,5381,82441,63433,6409,87515,99887,19640,7346,40447,32797,33378,83965,96955,52947,79407,29439,48939,67240,35458,30116,86376,96482,92043,93782,4084,86737,54824,73508,78983,47013,94969,3532,40665,87857,34194,95671,30263,38089,65472,52335,26762,81044,26473,89385,7349,38651,92509,78225,4816,5311,13450,67277,2334,97122,34276,66188,35726,46842,85422,97735,16657,12975,27744,35193,75947,14746,17740,35480,79419,37290,62703,34369,42553,60854,57381,76693,43715,94058,3380,55752,90020,78110,77707,84757,69887,54028,88729,94382,23341,42698,37300,50492,81951,5823,28289,66931,87025,56081,57897,9815,84248,61574,58743,44541,10486,4636,91931,28373,69975,77814,88706,24895,14393,84236,13543,30630,14590,1882,14065,88455,56633,87183,32071,25127,30037,73993,99104,41812,68840,71329,3304,86667,61757,93575,96178,39420,84542,95591,74001,75131,58878,55213,29942,23144,21752,27073,33855,32897,8957,91861,38872,83720,5458,40579,61296,10760,7474,7117,14079,57653,32479,2442,58590,23603,86090,79733,54241,21573,40655,85867,70342,20123,12064,95630,79031,33974,12669,59742,16528,10244,96438,44043,1049,85640,21885,38622,42370,99755,54593,61884,29552,34846,65270,30792,3176,74439,94610,79655,19294,9091,36497,84903,84458,79939,57060,73387,17400,16600,81479,68265,91938,87743,4759,53593,96688,38049,73706,63950,29030,46528,56809,9701,55922,42765,63508,89379,86725,88659,65620,46118,96025,85973,59116,43195,53969,8893,49613,36261,89373,66393,59855,22180,10236,13717,83330,5637,88653,16137,25309,56449,64162,86249,66406,53201,18138,37616,64908,74182,20745,44472,77739,51627,53057,13036,83037,56118,77778,25656,8690,95409,82500,54530,49506,36966,77908,63917,81966,26652,12862,2784,96200,36559,64018,9086,32473,87179,65802,16559,34337,69153,97964,45049,2532,9017,5960,13988,5322,26295,87238,26085,98947,26223,51016,36726,62423,27005,154,91318,50186,26703,43818,76965,9863,85027,24382,90137,43240,22464,57256,38684,22301,69367,75615,43939,88437,78884,2284,56890,11964,98085,27230,36631,89658,63278,63338,8704,1319,69912,19598,14119,71787,63546,17150,98041,56126,38945,76100,70656,15714,63148,91620,45559,99787,55303,19307,21648,41839,75377,34849,50102,5667,17421,25819,78423,62297,26736,79608,55261,75419,70968,59404,21760,8380,44452,25248,72948,84105,74897,19778,52964,36800,64734,50390,11895,50576,33519,67238,69814,7837,27425,73633,26208,80038,70347,99158,12469,2889,50011,16513,58952,81470,31900,76782,55806,63606,95603,12622,98761,78071,32649,55776,36004,81498,56419,50629,41639,85334,97910,28380,63049,45904,13114,78651,46674,93156,90927,83678,36804,55662,77652,67595,50487,54027,82120,51366,61584,16726,42565,37591,79220,54328,44245,11553,17258,16760,30574,35384,11499,79064,70381,31034,96350,63425,67323,8951,72016,77218,46808,35939,8516,53787,53771,77394,40881,67653,8526,97187,34414,45274,58838,7065,27863,31448,57720,44730,24144,764,23907,81338,40345,68969,81447,21241,13490,28421,62447,68306,15073,25693,35891,21456,73257,91258,43413,91774,57492,73908,72599,18423,81845,78807,75036,50387,41189,54347,13582,36612,82253,8161,48695,6622,75191,26964,24973,26105,45792,99966,72146,472,17508,7373,83428,44218,47516,90090,52538,39257,7582,81987,73010,86137,2446,24802,4411,61500,87599,2452,21014,6869,86857,37774,69238,29565,6060,9888,17354,83705,80818,12909,92126,76258,46964,3122,32456,20971,43868,45900,22973,59572,30961,96408,99323,23451,51339,78459,62443,46610,38443,95294,83101,24993,65882,82941,26040,42794,29385,14419,88772,76163,46878,33414,53592,59436,7262,64682,73963,53208,28757,29533,76550,38519,73509,98271,41642,64304,94552,68803,62240,51204,60201,97609,80949,44962,77565,24346,64893,44280,56129,12,75885,82225,52161,80329,65375,17744,270,54345,33728,22182,5120,88881,31724,74928,52340,66598,7104,16155,35762,77492,2935,23273,98141,56539,63113,69463,55759,85346,46870,85002,26630,94963,75763,33933,71444,76524,4599,3043,17439,63888,43931,8451,89597,13360,2905,73899,64372,22155,80216,78300,38011,97866,16515,49615,94731,82113,8182,82928,36619,75482,90139,54609,863,41429,47714,76800,89100,26776,47999,14025,83047,71946,62117,90391,93915,41922,71111,38287,24553,95269,56884,70438,28194,46425,63155,67291,13241,25137,21990,62920,37825,1046,56239,83417,5351,36471,94056,74829,69329,6795,11016,17840,74206,4472,93150,40340,2777,68869,53608,47926,90709,16357,83522,78670,71020,85791,41073,58672,66336,91249,92458,20642,19244,71732,49624,21579,60058,72076,28656,88867,93684,65387,65898,80455,37219,38508,23352,83293,62130,11351,21857,39205,41466,86998,93466,81687,76045,51093,14743,57054,38959,3485,1546,13679,78902,13493,61253,19629,51746,37570,56108,76894,58953,34916,98384,23521,21307,82786,58564,74496,95264,71616,48595,82902,97865,90448,39123,82897,13311,27971,96063,2631,14495,86149,85760,87236,52473,12493,54803,39236,22898,50114,16157,80896,31488,7566,73049,50856,78276,18179,77340,30637,79500,39934,98889,66341,54511,66716,34921,61963,81983,53349,35310,3537,75890,37356,40562,60591,36851,4331,694,23136,73635,61960,9038,31687,11984,28024,29745,18044,98738,65009,99618,31341,34745,21308,22449,89772,92234,31185,8036,88030,80909,14751,68452,14881,84926,34277,2060,88846,41483,65274,59134,27576,17034,87725,72308,55984,50016,25826,78467,76411,7972,67148,32423,79038,3227,53873,76919,87780,63114,67538,718,90146,47684,34386,96710,50504,59651,2090,29629,61491,90431,59672,92797,11054,44922,42272,39272,3781,64208,63843,24573,75910,78872,94898,36355,86936,37448,57944,54539,90172,34833,88703,46395,33354,64244,75589,13786,42982,88077,67312,2050,26187,78222,10904,23534,57965,48683,75610,41986,38002,63304,68857,98035,20224,70267,61430,17030,19163,88411,66969,32275,21917,85653,31404,87358,82244,82708,97354,69331,38038,14268,6523,62779,64173,55814,72512,95093,99373,35975,86302,63241,58508,10199,33334,49395,4534,41758,78590,58782,79331,34755,3862,49548,6760,73426,8999,41275,11856,18547,98286,79941,72800,93714,81837,87407,4218,14057,31411,25888,11098,5528,13448,83061,15023,56460,79607,16713,97532,93427,14821,7888,65842,55973,9339,94925,59115,30643,33258,50945,3949,13454,2616,75721,1239,97793,64964,21572,48377,95606,36202,9608,50664,91988,49677,9984,41735,41946,15041,52748,91572,65297,20206,3042,69182,36304,37199,45555,32850,95435,60775,93560,57497,54491,77319,59988,98445,14021,81293,87793,6340,73962,11946,89104,98265,89343,41984,99078,37052,75913,77326,62442,9327,31239,97643,83363,7683,47263,86117,63533,43581,8934,20824,44532,82457,70595,1668,83783,40375,6713,21818,84497,26025,46804,84467,81735,51753,50601,86812,35836,84812,87350,49389,21561,24468,20432,90820,30341,32210,49102,31659,96516,77445,89834,55864,31050,39576,69003,4261,21530,17085,11301,75431,56255,81638,95244,93755,90759,38909,42461,7994,97384,32292,23698,69890,51735,65370,50846,28173,22785,88825,26381,85148,71289,90734,46693,60029,69664,7768,79875,95123,98191,76687,25525,86670,75652,71096,29610,17142,18050,75245,46476,58927,95215,87287,21964,8147,43906,95139,18275,93803,50333,71369,89327,33510,76745,40873,83292,84075,6725,12794,84420,51170,66980,19736,36418,36703,76496,16511,79887,78555,55669,25852,73920,25323,50292,788,42854,58249,93,57193,28811,74099,48336,43562,36271,1782,29810,91283,86409,62070,96160,85736,14299,71863,97436,16577,16652,77992,42903,82307,58202,43552,63343,93419,93184,86260,21565,24791,53929,45137,55410,45557,69645,70230,23747,62870,21069,39872,99627,70794,26774,93260,49709,73212,20368,26620,64926,34292,65922,64489,31234,90530,1014,20199,50769,42036,39040,30486,77829,76577,13654,66683,22616,37018,70359,77322,64047,5899,78486,76742,49064,10883,74541,43056,37636,27701,41151,44268,30989,27374,71490,45272,8979,49973,62770,79869,47789,96538,13933,9074,83980,96036,5876,89793,94730,77893,99258,24897,78020,59603,59787,42682,65295,99813,49293,41961,46689,4864,94897,90996,65213,12033,77202,24108,59082,95631,49967,17867,54680,74750,3447,96956,1570,47322,80555,71401,48739,92833,63269,99154,24184,91054,94144,63723,40636,54857,58256,67348,22061,60277,82323,63393,14895,32399,38063,55898,27674,39510,93223,76270,96562,98974,19343,89268,14433,65105,56879,14647,77506,26661,40090,14527,21767,16705,84679,25112,87338,29913,66050,24210,61822,12188,19494,67262,97213,63303,55145,99064,58287,97441,6925,36618,84947,64620,9594,30958,97820,37463,61542,73032,47265,8297,74141,14782,30501,74599,40133,67015,50877,84321,11431,51876,74702,7770,21403,24491,9441,17745,20315,21657,55657,85847,4916,68145,23068,28436,96588,9813,30134,50329,95580,61743,52237,46596,80976,3785,84960,68751,15028,37057,22414,74880,24653,25402,22076,40754,85218,73527,10642,29813,79100,56367,25472,37297,43196,95351,1759,89973,57205,10834,92959,51656,80295,15016,94987,9436,98251,49896,86852,92895,94952,74294,41638,8684,36433,83265,39261,96237,82882,88458,28060,69963,6324,82653,96822,17664,6896,1119,60116,70196,7176,52661,88011,2245,76170,42434,61428,8261,1213,15538,35563,3026,27030,76776,9401,47700,75334,83585,39002,64694,66527,65648,98603,95990,5050,4602,82371,4612,25429,18569,6701,37473,21689,36156,12193,71015,7385,38734,31595,17567,74936,6430,63143,27003,42690,87266,8294,570,62267,34231,7091,90072,20858,34860,60096,77303,67668,79289,75020,18875,72441,10860,39182,83043,27687,69747,78812,76949,87239,23298,29587,72888,48978,27838,92582,55029,60181,84372,12843,81972,87370,87673,6424,77357,90068,92753,55124,27317,50120,18922,95730,75534,40638,85731,48762,13513,83880,91259,19460,43767,98276,96663,44543,55878,26602,98571,81371,21227,13038,54561,12649,4790,31155,73204,51687,52140,28899,77584,65844,62788,98267,78629,47566,3258,62586,62878,98010,37846,4463,7368,71566,86776,97098,80302,17732,10058,29398,29082,58997,16454,54519,80048,23295,79785,65061,78293,82446,34407,30879,99810,98890,30833,21594,11660,32750,73954,48612,74211,79203,98369,99739,989,36784,64093,2841,42100,15062,89594,64138,5660,73744,45182,58655,12264,67528,9708,35185,92505,93398,17625,6158,45933,20390,6964,73951,97353,99802,12044,2194,5615,70696,45508,52158,70995,9949,58095,98379,38448,98521,47782,97433,61451,79414,95642,94208,89106,72651,79017,23739,87688,66344,61436,67094,84414,5547,15221,44542,98490,350,43283,68250,86860,32295,87628,11550,64866,58931,36504,55288,88183,38389,34162,48005,8522,37668,65111,54703,31665,46131,6556,71390,48327,24923,3856,38467,24515,32954,17545,62430,71260,77920,21951,51940,53757,10494,54090,19588,1842,29637,94641,99451,71192,31747,33644,89961,72878,67766,67532,72515,42321,60800,87911,15944,88569,97170,12820,42882,9651,53346,33266,21147,91563,24667,24117,35902,67754,64366,1407,20512,27973,18186,55842,30984,13324,97172,76343,84855,57679,19670,54523,18699,3106,71754,91920,93906,7877,67527,92827,81651,91755,84278,99529,26712,81826,46756,67787,39848,68228,47152,83119,25901,45503,96851,95427,17541,22524,65524,71791,33306,52599,29482,22810,77027,62862,88578,87873,88114,72141,93893,45649,73420,82932,18140,3805,96023,4277,93127,92303,59279,49104,17922,37605,16057,78138,16596,95928,27732,96507,67843,39537,84733,75857,44594,13604,89166,2863,7844,35785,14370,32180,34081,74049,39613,91693,21916,6110,3481,95149,51115,88882,32486,44699,75457,3283,18890,80404,24519,38057,69091,41938,76104,82606,68415,28138,23313,89464,39611,87436,19014,98162,33060,99084,82969,71081,14856,87991,476,38554,22257,47066,42784,4922,73342,32271,43502,47914,64276,44102,72511,6088,60332,98770,82801,6571,62109,87409,37211,49261,13195,15426,79350,79755,65633,73685,7229,32096,34092,27931,8452,39777,27678,24141,94597,71693,43349,61178,17950,62198,95378,41130,29335,28747,24027,26790,35766,18132,91229,23443,90970,6438,72955,7567,46101,14236,94159,53143,50745,20271,99283,67685,80201,79880,80717,68671,14470,43602,2046,49434,27240,47746,5679,23251,70385,89397,34291,9202,35617,3755,71215,83300,27129,54841,24576,81803,41415,60401,42395,76371,45632,16505,86059,1536,65601,5924,28392,10223,78045,70771,54516,32744,51315,89223,52897,85718,71267,58503,50393,78031,36796,49076,89661,98682,80487,17543,74536,73440,88981,22435,98685,86158,57956,51515,76115,40591,71563,78851,7937,42285,27414,72327,76040,29198,93377,47199,66870,93919,94881,22502,51654,41563,16487,10192,82170,1504,99157,91351,84437,57319,88928,11959,4607,20615,71955,91622,85583,98598,48653,13037,60712,55046,75564,80043,11479,41106,10311,16709,78439,40103,80517,25541,29653,10459,74055,46406,73234,90900,14687,68108,70810,82161,26765,71086,79635,95694,8488,4060,54156,24147,25914,32117,55102,4586,83405,51391,4543,71471,56887,8404,89807,69505,46622,29134,90586,87163,2538,96933,42735,83961,64328,29551,94749,76108,61909,70399,92352,43910,3085,25258,38810,20995,68578,46548,75972,18640,21587,89836,4329,37783,97181,69952,30893,53670,77635,56865,36921,84904,77124,63994,78078,97242,24666,25241,16344,30737,76810,64272,30627,5402,45560,42584,1324,18398,14899,25186,24187,85274,58829,43606,7286,31555,44455,3844,44199,95538,24320,62618,98122,50263,10470,47214,98510,73876,12087,48589,60869,90798,78156,21081,48284,75367,12830,94802,64333,69930,35172,23175,50414,97142,63354,6320,71377,43158,59621,4912,32549,68259,69254,96799,38484,41965,37632,542,98899,76781,72448,51492,53604,60508,46264,87514,46114,1287,36893,60906,21741,24157,76469,13948,94797,88184,31787,70176,44865,50516,82983,7379,44979,16126,71160,68475,10977,79991,11776,36116,19427,1230,97287,47726,64791,13488,95323,6278,56911,27031,51818,58921,72684,54352,42338,98923,55007,95696,1969,72519,3108,55032,35825,22792,76585,35008,87723,59137,33003,35350,61290,13765,41871,34961,68982,72282,70,64323,61418,19313,60258,3495,30356,26307,3631,85808,97326,94999,6397,48346,21770,45431,5941,89638,5623,43139,35062,47250,94894,79583,99667,1497,10581,38284,34711,67852,73976,64411,69316,21556,83839,97006,80908,99180,51720,58794,34815,53134,49158,95040,21838,7894,64717,44353,84657,99840,99999,43097,92712,31652,70472,5830,99115,44178,89393,16093,36933,80388,45033,49703,35788,94791,65826,48326,6258,70588,9587,2415,45818,15103,70174,62736,72434,37313,60256,32440,24398,82836,35408,25372,15410,29500,84123,14446,32242,65231,78275,34136,5621,3802,26598,67898,77581,52404,49037,61921,58459,67121,21920,74532,56017,71674,37921,42018,55335,57637,63142,35312,81908,32034,18204,7054,84786,40910,19557,54846,75840,93238,31084,96381,53320,96201,6047,90028,76283,73524,15319,93949,79620,27736,78117,13622,50161,61100,53434,53855,72846,88741,75074,36793,50898,72446,68230,90887,80437,65760,6542,31069,65513,35110,78927,60588,1456,62759,76095,81808,44824,54190,5956,95035,84495,74255,64793,28719,11947,15908,23974,15672,10914,34353,43805,91550,38071,88390,68479,48785,63965,42484,12443,91013,36644,29254,6831,30004,59424,22614,11595,7228,28792,92300,29995,99265,94621,79844,47432,66189,52081,531,84750,41503,47543,65835,71437,83569,80476,9459,15459,74889,80552,95006,31073,52261,13270,89485,59151,6125,21472,86514,92750,36762,88753,73365,95733,48123,98522,33018,44375,13050,49443,60982,46747,96988,53254,74148,4137,90286,44881,81178,53315,65398,72490,52345,77036,12864,36874,64922,61827,44661,35613,9042,27624,36498,21213,71062,28830,5040,76364,40761,80254,26532,33636,95692,25951,33372,55197,37667,41697,93198,46810,58944,43847,24222,27466,78002,15549,35588,45325,97619,87377,61682,14502,58235,84798,28907,40468,93923,60441,9435,91193,78614,84308,69261,51075,32718,78070,92217,39326,31799,46975,32717,535,84343,64482,73888,18198,50058,23709,96867,79498,41360,93766,93469,90843,83538,58840,45220,43853,53094,93187,73272,92522,72864,64045,52173,64962,59309,59548,67535,19624,8622,91775,54489,9057,99198,64752,85788,75808,48397,16763,32257,55905,49492,43639,84457,54777,90812,61107,81819,69278,499,33036,43244,18457,66746,18935,50360,66734,28241,98100,87846,94169,41042,55938,91899,41756,53035,90159,15281,38553,4665,72681,47484,7658,29541,86853,13169,35429,21022,30002,65823,60562,6260,42808,28499,87901,59291,59938,73644,18796,66390,58098,96441,51888,87390,25044,1966,11003,3619,30419,69678,42042,54759,65758,32708,15021,42343,92854,17796,58513,73945,47007,83908,15598,46190,30962,49639,22610,82789,5290,5574,12728,98056,61845,77092,68322,30008,86612,8316,10736,10892,10406,34051,60368,16534,78201,28,87397,14170,9410,76818,12366,47299,65148,29733,89671,96252,41855,61341,19707,67541,49775,45556,15658,39708,89909,17837,6154,90690,83947,28951,31801,62605,70787,10098,96848,35291,59631,87610,26164,44920,28038,38335,34279,9177,33415,95567,54294,87349,42626,5721,24807,72861,37106,44789,77380,41866,91593,79147,50489,73478,29770,28691,52469,8643,17244,21755,28781,74753,73349,61211,71441,36485,38630,71281,3882,49981,19628,57133,48418,65947,5099,86103,63007,35007,51395,95659,27497,14225,81568,63259,78433,52320,58904,35412,58926,26216,34782,22335,22828,23643,21368,84688,52512,9320,65095,61270,6348,2279,12878,98961,82743,99960,60643,62790,26619,72040,34166,43841,3398,10912,73887,42705,42866,21889,92133,31761,12542,98155,44719,8844,97438,66322,65567,86033,36582,71236,57781,9183,38923,60157,38868,46346,88813,9504,53173,14748,9178,59802,42819,47754,36277,289,71121,28882,98615,82843,21555,53161,9280,67213,49975,52134,75153,94733,64902,75049,55912,91427,32968,9005,68603,61464,87261,71361,34874,41060,21822,39417,93082,70605,86902,71364,91019,52129,37637,56611,86579,95456,74187,53373,42474,39520,85913,71799,91913,79403,34491,35562,17289,64128,11421,16451,39851,96155,25436,39798,72180,80882,46744,5796,27842,83791,53199,21252,78785,8558,88238,25617,47527,38242,26686,42534,18597,9285,90581,73640,30423,57481,15228,16965,59944,60291,99074,75604,15022,34685,54087,59153,8629,94842,37069,41765,33141,55615,62061,23465,63561,86271,38033,86127,57670,28083,15486,44549,78048,89377,68044,71378,11119,30744,66708,79617,56825,91748,49837,95195,41383,30180,53000,5481,88064,95458,23024,68499,48374,76050,26747,43359,90834,83869,75207,96494,83800,80457,63381,31743,26758,71427,748,21,32942,51270,62241,95623,96601,48185,41236,14135,98463,65502,67717,69797,27629,89956,65158,24325,12680,844,75257,12450,97268,68398,66585,29434,6690,62334,23642,51585,80970,79685,60346,77903,31378,63081,35942,15276,96706,64122,43025,41769,48870,7035,21300,18447,19911,889,24423,39398,7527,40590,52760,85179,67164,66210,17413,49984,80378,38146,91118,16425,360,62527,93477,25171,97744,68720,21591,51576,19745,48897,43629,55210,90976,16627,12993,28204,64450,83737,41255,41461,23750,83313,83862,17675,17080,3582,82423,30595,59905,50934,7354,99168,77966,66451,34962,59778,91598,39887,33746,4308,61900,11736,39052,36482,42602,30343,93599,14591,44722,78707,89862,62493,27817,73747,56537,90554,87018,37661,40690,10863,24434,4651,39977,86284,61668,21030,33747,98401,45535,86145,29983,70532,75783,20510,85345,55913,10686,42437,23740,600,36359,9128,85553,7879,54255,41707,21686,68784,14518,77301,54562,60225,29292,59829,86519,81207,73615,50357,51588,66730,29721,67399,43944,85466,96991,22298,68020,48093,64424,82960,72081,67772,74279,58765,70626,99108,81942,76648,96759,26329,94021,45552,83377,40577,71950,39655,85975,54036,67871,47133,19094,6395,5235,84452,49591,72188,23395,90008,32172,52474,51119,1626,5889,16582,18154,74558,76596,64518,2459,17574,8908,90672,21443,426,26407,17509,74727,41051,12009,17548,13249,11169,89533,69778,64865,95404,7019,20235,39345,64667,52834,32571,29900,1946,13669,37157,31662,99365,24941,49694,42106,37644,15975,3178,21730,80504,78531,73870,92396,84871,21765,99285,58474,97387,36358,24415,19091,55629,50714,47825,70706,38641,67203,32274,63957,95278,64460,3199,39221,45515,2264,54923,10878,14551,54201,626,45493,61130,88836,88198,36434,44281,29694,29423,88087,19300,44518,31800,66459,76762,17236,72752,66528,84363,40784,69973,82097,72502,26865,31067,64006,8963,57146,8987,10709,13103,76567,90403,50653,97033,25206,46784,72412,70976,93884,58621,6508,58276,90451,1617,12908,18018,62498,18231,61856,75195,75043,27118,2755,46626,42558,35148,75982,81406,54384,99082,78748,33631,37565,90256,64144,84997,9289,61539,70330,54116,55415,24178,30633,91914,36239,30988,94805,69492,13177,66543,68187,4835,21510,46607,24674,66473,58546,98645,81118,72806,55306,96220,2058,82404,26527,76807,45295,57180,26780,50535,86125,5504,59276,89175,30957,85253,69872,37682,72529,81522,99643,49025,25657,33578,16645,21238,3774,76710,44030,24228,9303,48451,61029,84184,52331,691,42480,46973,59432,85004,30111,96481,35681,85363,73657,94858,63972,52866,20333,20713,43695,95664,63733,60021,45358,12787,14020,84448,65019,37995,13899,83630,32974,34289,25758,86615,35266,71363,46353,62491,14394,95734,94624,38246,58771,12059,24040,83861,23234,78245,47855,14612,13217,38577,87939,3356,93889,41880,94816,58171,81621,14147,84720,20028,17297,92441,253,57351,16936,60543,63231,22922,24517,46635,63713,70440,98197,86506,46938,11332,76663,14764,84723,23342,83691,55295,15148,79936,11387,48707,95301,75554,40109,46262,57073,10045,62339,15924,88621,52041,30857,97526,93174,80799,93312,45357,10364,31864,66882,58339,85468,69755,42700,13674,36518,66146,84288,98308,93600,47053,44607,665,103,68406,377,63562,72646,13554,78382,32876,18995,4744,37509,32690,8762,37244,71253,14745,71881,6796,50817,53858,67559,83458,37296,51941,33262,26481,85152,70676,176,6873,15824,95967,81208,79316,30318,95541,90228,49927,72611,28549,82491,2219,44187,58766,38656,98126,84000,48335,50065,90679,94093,23167,82116,92123,77599,65806,3121,53459,31643,3350,62945,16968,22512,94427,7737,77237,47675,70748,15199,40357,9351,69389,5018,96153,315,35993,53842,87282,12031,4285,95922,30967,65891,87458,87203,74448,33423,22695,51282,93475,72312,78672,41973,3886,45691,39144,46720,96769,62244,48056,65924,78666,34465,75059,17266,38721,6950,17264,56696,90771,60354,64466,23272,19985,99989,87242,82917,66027,30881,62015,70043,83615,24365,46865,31248,93289,52984,67256,96592,41316,19728,78635,75792,55391,4037,14907,38235,64948,23728,63951,6700,769,39896,76058,90460,66995,67320,30377,93061,76181,51308,56018,39333,45430,11045,66453,11805,48880,45311,80914,87304,85126,3772,5126,84962,79238,95124,70367,11179,92297,12350,23512,22016,36372,226,302,93172,70957,79962,98788,67375,79413,42158,75810,83087,26837,99232,65873,93622,9943,55594,76344,53690,61206,9790,78120,42872,27130,32534,66016,93693,73838,87727,35263,40641,39213,16830,3640,19352,24795,7555,90613,98931,18202,65006,13808,94737,66223,40495,77548,90229,48038,7437,20702,27319,14964,46710,27607,9250,81161,5979,65288,37909,22578,9048,45992,56621,31891,1055,80528,65607,61552,54149,46566,46562,31684,21512,45845,99163,31993,62735,44121,77082,25095,88628,92453,99582,23761,91744,79174,57399,5625,60177,27803,79477,57962,84081,26071,66511,7352,66927,57020,73782,17862,23811,87885,83576,75506,66556,78357,95312,55074,14510,5063,34994,42410,74510,11270,68656,92491,11171,40380,83423,27918,85127,82537,88831,90197,50089,33340,83698,95507,13273,38391,32632,58334,12870,25839,15453,21039,89215,77338,66426,32697,39743,57851,50831,93363,90839,94168,46965,83564,72964,69111,25370,96906,47116,88341,54418,65106,79783,89077,39821,81051,81244,50841,32537,59447,50175,70888,80207,76775,13926,98546,13967,44415,28970,48857,2926,41502,97468,13348,70746,79283,85835,17565,74540,99530,77038,81152,41733,95355,76,88510,91804,33355,49126,80709,84113,99761,61983,15654,84726,83474,13861,37939,58494,62512,83088,25089,95428,77579,32546,16458,29912,77517,14805,88255,65357,68232,63025,38464,45119,63492,17274,80567,52039,41477,87114,81019,36894,92369,42666,34634,1245,34431,98208,82377,45318,72005,67845,89855,80259,6130,35357,79931,67916,46156,95715,89489,75963,62335,33426,14031,29252,37748,18821,38136,83456,26904,70777,8587,47387,68633,76652,51290,12208,92548,13638,1675,82426,79149,36579,34316,98098,76038,30277,84346,61006,44760,37737,46315,41372,3642,73098,19373,61503,20638,69951,9619,2278,61053,12753,38683,64194,12895,37292,31550,70241,9570,72116,23286,5846,57817,82354,52177,86689,58813,41450,58730,47309,79393,78074,8330,52656,54700,23369,29752,85295,33846,89155,84927,2767,91313,3331,60788,88081,36811,55365,83241,2952,51939,18946,36846,66833,60738,10771,49780,85199,70858,2901,28345,53086,96018,32161,87979,45668,71357,58908,7578,69946,74319,98848,39760,25142,3651,75171,58275,13066,59002,47311,60510,99924,21681,11530,69496,61131,89151,62901,90348,71257,87400,70211,95679,65932,21243,85470,66074,55618,63411,27044,38990,74669,94581,80587,428,23582,22229,46127,57991,78469,36861,36835,25522,39674,17723,28837,54176,3248,49359,89954,60231,52285,93073,49394,84383,88952,66024,20453,41779,37082,61952,57429,45670,99496,41191,85265,58535,80147,73521,15082,70877,30450,32965,24223,29269,66278,27594,10103,60431,59438,43342,10646,42342,25790,14774,35265,87248,21842,49714,2608,28957,53051,11883,11104,63047,2359,92198,19641,79956,37265,57886,38347,44680,57299,27219,78624,54411,99244,94372,23554,8881,98843,21926,41025,27829,17814,83415,85320,4970,34464,80901,27526,25814,87392,47456,55270,36652,21158,80498,26247,59460,72045,81216,8873,32917,86258,61334,85870,90240,77941,54920,52589,65612,57367,96070,34127,7630,12966,76979,16842,41493,61686,16740,93497,30266,59844,7517,57228,68438,48241,15120,40824,77723,68582,50277,99772,31437,73505,97017,6805,31002,56511,48373,91793,70765,71464,46360,87162,17087,44109,45138,85909,28113,37736,29123,34569,87714,7196,66777,72716,86995,93219,76492,77228,16926,84087,10961,14230,13619,53056,75570,10222,73241,5196,10508,90132,20878,44771,70436,75224,96992,17576,62522,7291,22488,45204,90877,28856,17756,31479,32709,88127,99568,69135,88221,82275,53689,99826,40216,36680,96431,89955,27060,5728,2765,42023,19678,46948,4731,94325,13642,9108,76713,27503,73456,37672,44300,75930,87184,55164,77764,9664,40600,80579,49191,78742,60985,43318,44113,79703,86179,62733,10632,75099,11317,46280,23336,15396,54647,95271,59154,25982,82466,57051,70034,72820,30201,11832,75475,37676,53044,88120,66512,88685,8010,29196,9039,48791,48566,95385,43923,39446,40815,66942,28413,5472,14108,59268,87566,29115,38137,40943,67226,4729,15614,10634,82761,8236,982,9374,48925,67706,21404,78158,55602,25707,54490,36025,95373,68271,36010,94095,16083,38867,52249,9544,31790,23976,86666,52942,39999,12667,9918,26464,23638,36144,76303,81442,31519,9203,95390,47372,80840,97299,8063,2875,17094,69043,5755,80578,70253,80163,65466,38533,65860,14521,27657,62872,76468,38367,3764,41101,25194,5731,6519,24651,67742,72694,70705,72449,5762,90252,22653,31686,69538,88969,53480,17714,119,2914,42232,16416,24250,73716,63263,96301,32167,88484,69118,13386,6400,42224,92623,34497,4140,20641,42497,6198,33148,29522,93201,56205,2209,96211,63924,44710,62217,11750,84371,18175,97830,33025,47064,30770,15365,95771,75415,95597,24873,70201,97294,15278,14987,98786,98724,64556,34843,12609,6770,56078,51188,83746,20065,49812,9012,12533,38731,82957,85361,48016,45253,88460,43435,50117,93096,20018,28979,32459,31970,17121,16347,74229,1814,29638,42087,49324,23280,85509,86063,62826,13520,85552,59049,20530,60406,18062,97388,71872,93124,43424,23164,66395,4863,27270,35733,51762,69107,43883,21108,50955,35113,57925,89033,75590,95147,47938,89826,91990,87870,72626,67927,53489,62807,18216,34536,77933,15806,72046,69189,25687,8290,58367,80279,84685,51,36146,4487,92263,33152,26644,50967,40703,69593,13968,71646,94554,14954,6812,37572,61672,74466,21426,53151,95225,91806,65602,81649,36558,81103,42743,49608,48356,99092,67947,18368,56936,68864,3934,39531,24575,95774,41157,81871,55095,29511,26149,32488,12915,34308,22664,90408,94199,24669,95229,29550,40261,22936,63238,14729,15607,650,85564,27297,76288,41363,72009,74488,56045,53487,30554,71240,25026,92941,35470,42709,94143,49411,2301,87692,14575,64729,43469,10909,27227,15304,95272,84673,35013,14206,44164,5146,48652,18578,55515,88422,77944,96870,98016,28843,76871,39061,38797,97404,36544,34377,30739,25734,97042,92676,34877,45621,45075,48514,19009,69965,57360,83479,24705,30899,18341,78615,58405,9626,43038,1731,63104,77738,78102,1839,30075,29265,5555,93651,11165,82051,13518,3859,71667,97318,37482,4206,45766,82418,13008,45505,23600,68042,81008,37598,95118,51026,79113,74045,64084,59627,66352,81297,84606,15192,32439,13325,93501,75766,11987,29370,25723,87159,33200,64177,45786,28422,47515,77416,30326,52456,96953,57222,99310,52723,93765,49350,70744,52827,63095,56143,55330,49245,22869,47624,35021,15966,18726,63671,35053,46228,53519,18415,45306,74731,91730,41326,48756,74811,54772,83509,31481,4378,89127,59678,77156,21035,39082,45112,63717,63323,53024,8709,52418,67578,39818,18709,81844,58860,49194,56918,5138,61075,94857,45407,48045,85290,96210,75069,19291,29497,45280,71877,57686,70830,93267,95568,37895,68162,2869,44791,67831,92795,80726,51506,96259,33329,23269,14416,97027,82546,7492,53717,68853,43127,64277,18315,6057,44788,56614,53302,4572,37875,24863,70511,34551,1887,86682,52047,72223,20320,31015,19537,80773,19761,36405,66895,37128,88345,15519,15753,3169,51396,79758,9644,70423,23939,51817,19471,87258,26359,96633,13378,67576,1034,38088,77171,89283,97655,78817,24533,17697,49979,1949,72991,95534,9328,49206,76334,54704,78562,53066,52991,77005,32719,1987,72320,40462,37433,18205,3032,44886,61022,29826,67800,45021,29887,484,92095,56024,178,76951,19698,21278,35001,41435,98829,73718,60395,87424,52702,23712,87520,59063,73081,80108,67551,8712,10247,58752,36824,21690,30925,17260,9811,8843,98065,85858,3328,30867,50044,3104,33023,80215,24033,68533,62090,43735,47733,38393,60593,76387,60232,56997,35325,53478,26584,97251,18055,35843,54558,41579,47765,97379,32496,75298,71661,25561,43130,93310,17462,19996,73095,93682,98144,56059,29016,20490,26322,55292,13235,19922,99642,24632,25658,72506,72536,56173,57137,24255,69307,10750,95100,25576,73785,17505,63479,38370,86394,18768,35876,24935,74293,5557,96427,2925,28198,99482,49167,56573,69844,12263,60413,41972,93687,59067,36270,15628,77960,79550,57835,9641,15857,5317,96792,60191,29365,18919,48018,79692,94293,75775,17091,98106,95873,6727,69896,69595,67581,36833,48449,26081,75719,442,83708,55233,97442,63776,47298,55086,87499,16883,87346,76635,61241,89644,85551,66185,22028,95491,4238,63682,49801,55731,62917,76858,20701,31380,53477,15951,56330,73638,73725,42767,81032,93713,63550,96341,59642,35186,44017,45896,33364,62961,21578,29137,21809,32005,85201,43982,28726,92142,76367,41416,28374,39541,69932,59009,45926,86051,54391,63086,91624,10347,37253,9907,78832,7544,45744,17239,238,82110,47901,26593,39873,78416,56984,43372,23157,82236,6702,50179,78917,21228,21343,87789,51136,42801,43623,93090,80572,83260,53904,65972,42168,47957,91177,46282,70986,14406,63870,14381,8033,86935,18594,42244,89923,49786,60097,2349,59807,6346,66452,16272,66961,16845,84002,88943,73661,88998,66102,46750,46713,6485,14217,36152,12521,33840,84460,23308,76129,20099,30421,21662,31822,1666,41428,81544,47677,67063,5977,36442,81142,25633,48031,56748,49833,20902,20429,13162,24262,51873,48456,42215,90896,64538,7562,26351,95755,78493,98373,44775,33784,92042,59060,73851,72869,99943,66215,44115,80597,84837,39841,11966,71225,2747,24384,36033,81428,62485,70571,88894,93711,99933,9597,74108,79261,5093,1508,57918,59104,45776,53789,21115,42600,5706,92682,34314,1402,25664,97065,95793,74401,45252,47616,12876,29473,61505,10615,82918,189,74710,9445,35420,27407,88344,24231,18791,56533,21263,1584,7725,93982,54567,28717,57587,64935,34275,65174,63893,83883,1265,61271,79893,60592,24890,76251,85177,72459,53535,72443,69874,39626,6881,34898,35692,90126,21843,45528,67893,41225,49215,43857,82584,88492,2193,40688,26305,31625,7654,42008,47302,41067,70529,43117,50129,45429,16299,67588,67455,56892,88856,66505,72908,88738,56153,11866,73569,75442,29862,36460,96718,32962,47832,68717,93516,85654,57192,22047,3041,51732,73019,28919,27413,35009,76571,94154,18535,56087,43205,41100,8962,29933,80628,10835,87680,65789,85099,28354,59942,56579,68752,27485,14882,62342,10930,40672,51043,55083,86608,22462,44579,88243,96841,60552,96711,69130,99648,87974,19907,27504,96569,51203,1006,73515,37061,55166,43636,12122,64434,25124,55608,32405,75024,33838,10886,9816,95787,46233,29630,23171,28095,9495,78487,69326,95828,43852,55509,84808,29130,80460,28279,69657,78250,87476,52293,65661,5058,25640,10307,69010,75019,59166,53828,97040,55137,87026,55089,62260,6949,81548,88769,88351,940,85906,66015,49558,33092,32438,5802,56638,97416,77373,61792,59888,77146,44837,10795,35872,1642,2718,62887,32414,28415,78233,75514,94423,35566,25294,68852,77957,28715,90950,76101,52916,63091,94451,85475,24389,58350,98228,40282,3662,78680,82905,39094,56015,25209,99175,88840,65069,68715,28057,81995,99581,78879,71675,49432,36255,3759,55243,51626,31871,50772,82700,75702,35383,35213,57981,55877,74135,28080,53353,24995,30014,18694,22796,83667,7881,42762,70175,47808,96076,9382,75656,43766,61568,36715,58022,45739,48205,23307,23105,90358,69333,83420,49174,48768,40972,7664,86412,59381,22236,41572,62079,88135,9021,60646,47548,95763,83271,90821,47050,37359,89469,48959,6421,19151,18309,63617,53777,57824,83251,13478,23822,89040,19488,20840,94574,60270,55308,14162,61138,29993,37662,98798,9719,93196,37393,60100,61780,57306,7821,85884,42699,2207,55346,31906,86084,48072,39623,86428,88816,49132,59660,12206,84318,7700,50984,8152,27326,36099,10844,2727,16062,98542,36464,2440,12247,46216,50775,60023,50035,46991,30646,94313,41853,25412,59379,72283,83555,20477,41462,49327,73475,40547,56090,32406,59869,27556,66604,70414,7841,52087,25550,8971,73941,78465,77631,91267,36199,60681,95297,98815,93668,77549,23911,71972,81933,34742,80175,28391,56417,81877,3057,20204,14756,829,44453,47221,80385,15213,84384,72352,2544,53808,7434,25883,91971,59094,83865,1801,80172,61862,61052,84834,50693,24877,38928,61666,42724,51602,34814,25830,91294,27070,32872,45963,54930,40833,33042,90932,34537,49410,49022,85432,17093,75255,79519,58559,25006,91827,56469,48551,8,27120,37940,23736,33545,32312,51340,34139,88032,79821,14755,37971,70475,51858,57426,36885,68878,9194,24203,35597,57124,19449,93817,92693,58057,52003,57997,69363,38917,41152,32627,54620,24655,56964,13709,71871,89997,75768,96976,77503,7884,27344,83437,93718,35493,23864,92577,69097,53661,78588,5835,59788,75977,56716,98992,31723,77759,45088,5221,56190,15818,21269,44602,79549,80880,56222,30913,63773,93944,27282,83960,1139,62051,99116,32176,5793,32501,49876,46733,84344,60437,59883,6767,26544,72330,65124,42312,12351,94012,55825,79356,67999,48086,80480,15873,51095,99889,17560,11449,63814,86446,59110,89459,53749,72704,42431,6499,30635,56294,43859,58974,51800,44931,21827,76324,74490,72663,34832,88138,73048,19507,65431,8533,43517,50267,71647,16812,14356,66537,68227,84303,65784,69956,22793,56521,45370,29388,16895,82393,73965,24341,95510,72554,45815,96852,17810,15413,18775,24260,54790,43950,29165,865,5686,25762,21997,83307,97972,11682,45641,95173,18512,68743,56870,27266,5959,48826,57862,1157,97108,95043,44223,93064,5095,92064,74957,31198,37977,53391,32711,78426,65138,74047,87149,81425,52568,3073,48603,62251,52073,2447,81231,91805,43774,978,56854,46951,57683,81332,29617,91595,13605,3554,85602,36107,90640,45578,10238,56465,66035,62572,72530,25300,71394,21807,83147,21181,62362,2423,93386,97750,93162,96090,37314,28459,81288,37240,47379,94495,2364,49143,61619,79659,10859,84552,49449,58577,94520,39524,77068,61947,56263,98299,41702,31913,76628,22211,66899,58929,23031,40957,10782,89402,74525,61399,53862,10749,40669,98416,14503,89352,54214,23133,34348,84101,47093,34557,48423,87558,96293,48302,93956,65256,18841,89989,6801,39436,53563,15464,66714,90475,5521,84337,41332,49362,31354,94123,71609,90204,83529,34531,97809,84562,43508,11711,90930,71351,16248,19569,68684,59813,69813,61041,743,36916,6076,80130,76370,2176,98081,46812,62813,67378,70415,69312,33675,79753,34403,22682,93805,67149,36191,72496,91838,41799,30834,34683,23654,61722,88143,2192,17348,23930,71641,47617,64993,28177,24450,1483,95785,74735,67672,96042,52968,35506,80185,55682,17861,81493,15766,5039,15853,97254,26385,9631,39325,50191,84629,6257,26233,23639,36362,47565,66653,5841,56356,55358,16028,48966,87554,19327,38183,16286,1198,46945,1156,99261,62048,73895,30612,17685,30483,20786,74029,15479,96193,77370,53140,4527,91960,19390,92644,66312,2057,6075,17102,27702,96358,98433,68246,44864,24463,99967,40388,30031,1223,30119,17743,51767,56266,79688,8621,32945,60148,28480,44497,1290,16041,23969,75887,82756,2499,99065,69217,90770,17226,4722,6183,93691,62361,20227,9707,84279,197,58389,35484,61151,41320,36548,78815,37065,17674,21640,46267,64297,5515,81366,75512,44412,41833,2876,46485,54354,16014,54438,10248,80,59228,47519,73667,32033,56223,42371,23165,62806,61054,54554,64678,60944,90114,66966,35235,41368,63336,7231,29107,20776,50618,48386,88595,44711,19215,59525,15054,53596,44051,2419,20783,47887,66681,36693,22426,18013,44721,73625,2475,20817,73723,28687,44593,92757,30007,23926,75174,56483,3464,61689,5999,72595,48645,60383,79442,29581,93102,84529,54676,66492,98949,86649,90946,45164,94795,41655,54875,26943,86290,18643,61879,85042,11138,57636,44163,77372,27242,6573,81615,43411,51834,80986,16611,68138,61725,34436,87167,25974,73209,54611,56486,96503,46211,75545,778,93325,651,10964,75265,67019,94607,90169,59977,64858,2469,66916,3315,84255,30732,63506,96197,99292,28680,26560,61265,64454,16240,71573,25477,6885,60625,53901,9337,4200,5588,88661,59991,47474,35845,29091,94819,3565,12468,44733,79948,96462,60004,3956,60912,79310,78863,57120,2233,75908,47395,88599,74324,61591,72189,92776,36385,18036,5363,95086,72577,17187,36400,9350,37431,19053,81812,23713,11029,37815,42065,3457,23688,22539,53607,65736,32707,96591,26167,15892,20782,7425,70478,36196,15369,18108,41406,99606,54334,67176,29239,22519,77451,96483,81810,94435,72822,83566,14994,82126,13075,37117,24757,48685,20290,55154,89478,5968,5944,52144,90138,72842,73764,1644,4631,40683,52102,60093,33430,29592,79728,12180,91296,63944,27401,96312,22308,82304,62053,81678,59877,98252,9375,23578,43285,87044,51321,62372,37773,61612,21151,83270,75112,68618,34469,31646,7244,72801,790,65583,25133,40879,11076,81308,46677,43995,63064,18230,30626,90051,89962,89701,16647,36757,55216,35016,2063,75895,3604,70950,30190,63740,36368,77987,6138,18862,90723,97537,26605,87070,97663,11321,65690,21976,19602,20222,85861,79128,72593,37098,19910,97826,39394,8239,49151,7745,63073,62376,71291,31388,3257,54958,49974,41543,48699,37078,90484,38455,17575,87672,9468,52054,54625,24950,71159,40712,49463,63749,27880,92096,83730,47916,73960,96771,76197,23928,80718,48475,61475,61144,5371,43534,67756,93920,42579,24698,75659,24357,51177,99947,89401,80826,16547,98696,60601,32588,1221,33544,39167,87559,32703,75189,65139,407,65550,15210,42657,99651,42457,93086,56853,72764,14435,52679,96899,25455,47382,58928,924,24487,18800,58278,15366,80146,99500,75921,6588,18583,59657,35639,75738,13088,49846,46588,5817,86499,32468,565,4497,93966,11685,47631,2124,86947,87997,5392,27660,95558,14688,45063,1520,98735,70118,16322,89779,98520,86024,68794,61374,61618,61515,62926,21965,54093,6575,43161,85059,4788,90851,34224,13683,94921,81399,76110,32676,80466,75414,54956,26019,87042,78625,61941,79742,58657,269,20932,53769,4222,51979,54048,70839,78131,28447,93222,35724,76202,83185,37320,84890,17065,25442,73530,45281,61624,98377,41381,2337,32203,71964,95797,97931,41940,87434,8025,42679,26693,57477,22573,38139,70079,49063,71246,1292,4502,41830,10851,91896,60734,73720,21042,29972,85222,2850,722,55988,4513,98826,2536,76217,13840,96356,95859,55096,90644,15007,47572,16207,16891,29661,23471,72402,49535,26397,94183,53896,44773,46612,91412,2363,53450,26461,85394,8393,33926,24490,99197,96565,26491,73481,60901,693,41304,20703,4133,63203,83966,49749,98013,30530,82981,1073,57294,2910,82199,26812,59163,71446,38312,10006,69260,85166,34507,70360,44477,43932,93321,67332,59253,96583,78694,81483,53967,92440,36114,48777,5900,85483,86192,38450,48662,92315,11460,91601,88646,83793,898,67700,5150,61759,71199,69823,58205,94225,71084,8356,59499,71073,66286,65352,72089,45998,1777,38778,7774,57531,71113,9797,44201,23690,26098,12269,32224,97393,13863,61774,56503,92307,57846,95860,79611,14395,82487,70459,47042,88199,72678,1781,99281,35224,96743,22495,41480,41954,21550,92972,41595,63752,76918,50595,16498,2160,97786,66554,88711,45442,92172,89587,2373,14275,7954,25935,60843,42495,82858,88582,46524,34732,15264,41082,59513,31297,29657,26970,82677,32324,39467,74879,65560,35815,89952,50649,60166,27682,32864,89355,85548,56977,14993,1973,94410,96343,51458,39449,73431,7503,10044,68706,65011,98973,30077,38127,18038,72010,60112,50498,56556,10540,47506,36969,23490,58400,54881,70587,60370,16016,16426,52917,43229,74366,42745,57765,49705,73449,27849,79410,79855,35275,97439,24844,13552,31112,59649,89988,15958,14803,91558,70545,65929,54636,74228,53829,34829,26669,48504,91323,39993,27498,49814,66849,12442,84635,17906,91473,49450,65414,98488,87128,63302,62143,98812,56668,3334,50086,71161,30567,37358,4588,45736,43870,78242,44629,82254,22173,9427,86723,8408,796,16332,94536,83734,54344,58375,81002,93680,11309,84466,68212,76961,51014,36286,74310,62630,99615,29488,25034,52765,65677,90160,51528,96968,10297,30876,41716,48387,99895,90801,23482,17130,1585,58665,91076,25582,23544,59341,19864,45160,16684,36508,92735,60723,27495,87844,57462,27911,85133,97550,60721,90157,72729,46460,97248,67458,83005,73746,63967,54351,83633,17223,88373,73244,74693,55456,52378,99865,57494,42760,37869,7132,28381,17189,44544,13591,892,40208,70354,25257,70094,90175,98455,59956,90457,2064,9904,23757,54961,26193,3586,95077,69319,85081,17550,46047,77794,99404,16507,65311,6035,89982,95219,21810,47834,12158,4290,56861,76450,42475,92435,48708,50104,86466,12638,78803,56127,67784,5437,9168,18992,93118,54710,23887,9355,88331,9159,24776,51860,14046,50232,75537,39297,1783,65910,12559,75624,28911,67995,49105,64711,40079,86469,90289,49825,76804,95203,79274,15729,63889,58859,31664,81865,25865,78827,54913,45142,82107,29055,41147,287,36597,30909,22249,22527,16919,66865,53289,76184,70395,96844,64954,94185,22039,51590,10066,59665,1188,76824,8573,3548,82807,52677,5326,8347,33845,12014,93980,12580,84822,94995,92184,68583,72963,95548,41340,52137,30521,4316,63736,18865,76373,30636,2500,59292,38967,8691,19098,13178,93301,88287,88796,25889,4694,24354,79115,73350,17956,45919,76432,23909,78444,61349,24621,66575,38499,87127,45875,714,89363,51578,9751,65265,64356,871,13244,5092,12130,24727,41573,98509,96203,25046,60286,91086,81667,40876,32955,71350,51436,93237,6582,79312,30191,95891,59220,68017,37518,6481,94569,24086,74966,41427,63788,2258,19037,6254,52957,7831,25166,88357,58372,31853,89744,32001,35710,73118,50293,9249,32502,91781,14278,38354,77614,34159,98124,97395,59240,99119,89975,61074,44691,6435,62757,92705,55811,99049,75591,84604,67636,47992,77236,8110,4844,12123,32247,15512,97358,38894,5995,29014,97667,834,47049,85028,29236,732,66859,74651,18623,71980,30691,88707,35073,54341,87301,75052,8755,59136,34244,98821,80956,22358,2286,32476,46400,39368,10668,80395,36012,22037,34147,81305,16328,79209,98935,74962,20140,79194,3842,86009,64426,18176,68896,82683,62850,24781,64026,14479,11480,98421,79873,64139,51952,67029,64995,77689,35437,91227,75566,46556,92444,88163,10290,23779,20364,52053,30159,41570,50561,76172,75428,89990,340,59062,99214,69209,37222,17227,5107,78318,43333,42129,80436,60852,19908,85029,94853,43007,33536,79743,2479,97918,59412,47725,37370,54288,23808,98030,45277,10585,10596,59830,25347,26809,12054,6813,47803,81250,30853,86473,56803,3039,4901,60639,64383,75645,81701,98023,40003,82294,77057,52121,14449,96404,48863,26697,63223,36664,74476,2787,3182,30472,20280,51430,72798,57993,11397,97405,36053,7976,21235,27128,69822,34577,53068,65344,38634,78343,27541,31116,24830,47578,49425,32139,66685,13436,68530,29520,3404,49587,91060,7467,91928,7234,47722,91047,52027,76575,2666,53269,23300,77019,32351,6129,52788,83617,17616,76945,51012,59212,40474,76232,19716,36209,59013,91514,29393,8267,18488,12283,65941,54957,23590,37368,39787,76244,90494,98415,24773,30871,20540,80235,14880,44533,23032,98570,85505,81042,90085,72580,59280,87118,61351,57530,46575,39248,4948,84510,78407,57643,97332,34288,61312,65331,11366,11248,21844,22964,63802,98173,98473,48084,56951,98594,47884,53220,9633,45805,74717,9208,25863,27764,67351,87086,80356,75573,9586,4242,3594,9405,90469,90955,85798,89074,96429,6026,79942,76930,62259,2498,32462,23448,64606,38026,22389,49520,59680,8850,36990,79027,70730,38240,93433,38808,75128,67561,33350,96281,97749,35535,11146,88873,7289,21935,84409,93215,81756,70397,6338,24006,65683,51564,71458,54485,94914,79737,87596,84422,1804,92683,27439,81427,2319,64247,44137,59783,46368,98032,25646,36439,52112,48476,28512,42347,50295,42902,65724,97920,58659,79406,80233,94103,58541,41296,9023,36922,90878,67227,60598,99469,22339,48087,91535,12474,40717,81420,50403,82401,34188,29563,86674,33901,41292,31200,41440,241,1278,91919,98089,36853,98960,96866,25510,13020,46292,49698,40528,6694,68074,4851,34032,18191,3410,9359,62780,26206,87653,47169,67321,98632,31902,44103,56195,93013,32198,79395,40839,40668,36163,90533,60660,75290,19212,47772,44081,93787,39795,4233,34246,67070,82550,72013,58964,25200,8679,14491,99195,42661,24236,54938,31634,73967,97496,24285,74878,80270,60074,54304,9575,9098,33038,8696,99879,63759,11672,80433,85047,92186,15408,60026,90007,45760,53774,89731,88488,23933,28621,44213,38118,10823,7759,68594,99316,93953,36981,1910,41001,49426,48117,90604,48741,19199,8220,13938,1277,18662,65339,55377,26120,57046,26842,12558,81325,39874,42257,29089,76306,60890,39711,70278,26870,34339,39365,36008,66309,24481,84353,82874,63077,21219,37671,3396,24155,38309,83070,82859,38625,66460,26191,13637,96858,91134,78696,5549,17308,87376,85266,74844,54431,4270,40192,58204,91360,63159,46813,26427,61071,64321,88690,58014,97978,75468,68672,4088,65592,18319,78837,23652,90619,10539,11929,40412,67052,63745,95843,7828,90329,50466,98596,81217,54877,54770,64232,33825,24906,92339,72728,72358,77762,96708,33703,25677,31383,61094,79661,28906,41581,57808,23441,64070,52914,780,27291,6311,22470,12979,52977,29274,24642,61943,53681,33368,35247,7701,75584,86335,52843,62738,35226,92813,33253,28917,60066,38847,85426,3260,94063,85352,63901,65140,84609,32036,3426,80406,83236,3738,68236,21407,12316,45186,18784,42530,1153,14037,99179,51307,93204,577,5426,36094,73867,18574,28804,89763,57001,99767,62846,33929,59566,55300,4999,73026,60546,30549,66166,78675,93556,46038,49177,44373,26251,84014,21375,10780,12740,71194,20553,86570,62816,78816,17657,230,97989,85978,61403,13881,22066,53030,37836,38492,88298,4456,35143,48848,46320,79678,35760,65354,49752,19159,22201,19533,64327,69428,45175,11643,61855,73641,95975,45771,45718,89546,58080,35652,34809,23403,65753,96016,42362,39016,46966,92330,83016,59501,52028,95784,97777,35489,15323,22974,413,93360,74219,38823,34979,64256,12160,4735,16351,53642,62745,88937,29453,7031,42282,40422,9406,13731,96055,75476,51636,14290,97626,35347,59034,21636,18445,29513,80496,26018,98487,67796,81121,66737,58630,50840,47603,17310,52713,89073,19290,14200,25362,82834,50559,28267,67882,92269,51786,71599,37799,92909,33362,78021,15230,96274,40347,40554,94852,32628,76721,82425,11463,1673,83020,38474,20543,96034,14096,1785,88432,49388,16661,25169,92536,77096,8892,66260,92182,87362,94498,35163,62772,96514,19169,51540,40226,36692,55621,35314,30051,61555,41215,59289,80178,30151,56233,23784,89090,14911,77540,36149,41773,57071,58901,43804,38190,36869,11097,94114,3113,60735,96347,60228,6447,32513,37625,43156,33170,85487,29465,21274,78151,46149,8662,37295,59452,10409,82251,89849,71271,12022,3449,40674,10705,63615,1715,81091,19861,93829,53372,82614,8666,36081,83666,86678,8777,80152,79603,67137,63229,17784,90344,22027,76047,53307,92405,8150,3603,19770,4226,44843,35027,2395,24704,93108,62504,33511,52324,91641,82726,63577,71265,48613,97137,80150,91154,12010,58856,30274,45419,83659,62652,56450,36520,55212,10839,12977,64374,77858,58876,46474,80747,17026,43745,25574,81223,3750,7538,40920,33581,28909,92635,54388,21592,53848,83231,33332,48499,53100,99862,51879,66029,77423,86099,78133,90852,53595,92033,15876,37820,87438,38195,53723,28294,37517,90791,15115,39276,18073,6432,38753,66342,31097,85890,26083,57350,1982,97531,14829,10071,73107,29880,70288,30653,86180,2961,53196,2872,355,43777,71234,87035,10163,22442,75676,32923,24956,23013,11291,61786,34243,16080,86338,10437,19977,80858,94820,13184,95628,43336,92606,71996,63628,67363,19966,90796,43880,57407,48607,5029,93299,60083,31478,34043,7938,14778,72080,23034,13986,82060,62838,14252,63573,68054,19321,11436,65696,64609,22140,89163,94827,63403,73451,85986,55385,144,83927,97372,96878,86922,85843,14511,53687,54262,55480,93027,23795,73938,6207,62433,61026,75782,62356,47962,21794,86939,53428,56117,56954,57160,38440,5007,15845,58591,15381,47552,53006,13012,54847,48542,59824,40922,61295,13308,20234,78557,95950,29667,58016,78435,93644,59760,96545,42479,55196,12625,69992,62187,40068,43023,79950,87856,18674,11721,75060,82583,92868,40684,57427,98161,9212,498,25218,46152,31223,72722,50278,2637,9298,46104,310,81015,53792,27697,50809,98444,89211,28418,81970,89254,98523,59815,61975,43433,66073,70413,88481,85573,71366,1097,6003,92540,5659,14578,91099,29433,38067,85995,58579,77897,70546,75300,34499,44810,57370,49766,18934,2376,6793,70453,94571,57901,84943,94778,80861,96779,25189,28765,80926,43875,61279,49708,48578,68482,40363,92883,20237,32658,31831,63361,12403,45567,16835,32178,84077,51477,28772,43785,50613,76207,6151,71501,75841,28231,98176,64420,95971,55954,44669,30676,16074,46307,67053,15267,39027,1754,85711,29861,22050,82008,57023,4448,89726,49570,65471,27916,5707,61621,14,56287,70421,35982,11775,45664,99320,66283,77780,75337,68538,35920,10746,47308,87106,21295,33542,16220,9668,33650,21064,22213,99378,53715,94474,81367,70408,46456,67704,68276,48155,31658,72121,8765,95847,61084,9045,33039,7964,91766,4087,11968,89193,98629,52904,20953,80978,76442,95001,54318,14441,85195,87012,21174,57728,87705,45504,77162,46025,3430,59874,54527,79485,53810,44294,9978,56414,68053,54986,22582,90660,30511,44416,54697,60372,65166,19074,95831,90271,54792,67914,2077,36397,94968,54286,87005,40611,90476,47806,96843,68936,35243,89088,60713,51332,63066,44406,97678,31618,68443,13464,63677,15081,49782,32185,98402,65121,71231,21251,56817,93053,70402,73511,31111,71129,56682,71943,51386,42114,64033,11380,26493,30865,60387,53794,66104,46183,87962,8851,55797,11908,67678,66567,29832,63771,80387,78853,69334,97620,88872,27318,78649,87540,6658,25655,72117,2607,7177,64441,82812,76917,77572,62370,32485,89042,63503,41675,14196,29997,73248,20455,60900,68609,12583,40628,86292,28633,2291,99697,98263,53714,50886,61880,44502,3166,5501,67604,25028,62290,19260,34425,27996,54952,38827,76739,92687,89796,97365,45029,35816,71416,49500,403,24392,84181,61985,31451,50731,36821,81259,45955,72841,65527,68291,6213,1523,61478,3314,31837,51261,77267,68292,9340,81511,71521,33386,19235,88691,1369,19969,47709,28702,74493,76401,75958,47623,68160,59879,36172,90235,19524,84063,76578,45051,79327,38324,99650,6195,20077,12486,35141,83888,39189,26601,18340,17925,3238,88101,68697,65080,43314,19799,78397,34901,89922,51371,39226,68747,77306,40008,53205,95651,80427,59183,45499,66028,2288,91209,88115,92715,71060,83852,70654,55996,28180,7614,15552,81316,12690,16424,65640,97950,59947,91608,37848,54126,45720,16213,21244,44282,62561,61409,23592,73316,75008,73594,22841,64802,56770,352,50668,53659,22876,73367,26918,68569,51164,10190,69216,15745,16734,30782,70191,64741,30944,65382,81750,66310,84332,21979,75162,77211,67192,70266,62311,4967,74098,98026,24074,34699,45166,56998,35221,18364,65067,28469,95233,25408,85614,87682,37558,19179,72680,23208,70880,19775,49674,48728,54067,80135,48439,18323,57346,31536,38755,73612,88718,83027,53328,26718,6289,2990,17627,40576,88744,42317,63688,78599,72513,80810,5786,42093,34992,85322,94703,51711,5950,57551,61944,25515,49916,89900,57717,24263,74946,26459,67763,12602,67046,45769,44191,25644,11352,71664,92944,61148,67122,54069,59362,16991,40189,32659,59033,45341,4373,70594,23708,6296,21856,5011,39192,67084,13029,42962,24964,38350,63246,52848,34217,44830,28137,77208,38873,41677,63315,62133,69548,24820,92729,31151,7412,45490,64197,58101,42720,95907,5344,25299,3091,77422,18177,41515,44130,93276,46732,28501,65500,76592,21342,75528,33390,18950,72338,19582,89924,86691,63076,5531,27166,62196,82464,57484,54239,97047,72898,5364,35249,14372,34255,40121,55224,74352,81196,73826,52260,69732,32586,94358,78257,68742,15452,83076,11657,12396,72105,61163,95953,54716,34256,67484,23191,23006,59734,77546,11435,55746,22668,60073,15731,50235,22192,73510,35262,92677,90374,63826,7893,69068,81535,7742,69482,19183,32229,8062,81446,54682,71909,38001,28635,89200,59547,4705,20456,31885,34443,15209,67865,27059,5745,99083,22784,14447,85408,30135,61902,55720,46339,22363,77152,14006,74345,46789,3354,68207,13944,62087,17461,22036,48446,57527,31700,42905,47017,39647,59086,55522,77694,20329,31293,99509,19931,35124,67585,38701,12147,99398,39318,4187,92479,23676,70552,28404,8303,90014,34517,62448,68008,27258,86248,40055,36539,19250,9769,14623,21505,50509,94433,47993,21616,53724,8148,42541,23139,41726,3008,61256,28791,72052,19817,68104,20201,77782,52683,42133,4289,29655,64403,89606,31009,30224,39354,4782,84023,33,63769,63919,61664,62685,97178,57394,19683,73193,9590,50070,96646,71665,85159,35088,41043,49268,33281,10556,55994,39508,28510,60362,42861,75263,62912,88652,37247,41176,44565,60474,76586,60134,88045,12974,1830,90113,98186,47883,51335,44619,78208,13256,99287,48958,66172,85035,48367,47691,98432,24134,42264,22271,75973,7546,63928,78253,93379,24076,87592,83989,30789,25378,13203,75365,78103,6860,74780,99501,50473,1996,41164,61466,98921,38899,86623,1640,23686,2880,46348,2174,30117,96485,55497,82187,76056,78475,43111,8466,93553,95677,58707,35957,16624,95498,56405,15229,33492,12904,74605,56714,73158,16119,39312,94748,73847,62481,69289,70975,45700,83602,10905,52983,59409,14477,84859,79057,16115,17690,68810,3486,55350,74816,67972,70800,31474,84312,8374,14364,62705,60288,13659,99799,73187,61317,41149,37259,42601,21991,89178,3255,63192,16112,15325,82309,93754,67801,80730,24761,78286,92591,47479,8814,79648,78085,54435,21628,79252,51097,92093,58725,84443,89531,38468,79464,97375,91588,28359,21055,43844,29765,47023,73934,45717,88295,72107,67216,1144,19576,39223,17433,4234,67268,4452,20328,17048,31289,45814,80962,81228,46889,41782,84893,7625,54698,27350,67803,23470,58787,4317,7948,61143,40917,42446,99981,52193,1178,59344,56157,19983,13851,96315,59661,57115,35365,19357,48712,19630,46532,42081,1722,96174,81374,39232,88948,29686,91415,4983,70684,42900,36282,20718,70518,19338,27387,19921,42328,94057,916,60255,20175,8880,17884,98492,21134,70687,15097,6148,483,80931,65155,33828,17004,23049,65533,52443,31063,65439,33843,13487,18318,32670,78400,67839,80872,16163,52030,59516,37567,85112,90419,92952,16912,28379,49414,63949,68892,48150,88637,19173,52299,32124,67835,88885,21821,46797,68677,15050,32015,81642,66160,17113,4251,47188,49530,67780,12471,5604,43913,97668,84208,75393,18052,22597,46779,3753,43604,12052,37153,759,12494,675,14374,3520,12630,56816,99550,10411,72294,74349,8597,65335,68431,46604,78770,44344,28961,65919,35196,62490,24106,93550,62089,4796,26779,74362,84842,76690,61450,27759,56500,48592,9736,31029,77849,81191,46319,57523,45382,76769,58861,29519,77317,53913,62698,45149,33506,94547,72880,63607,38239,33176,57239,81135,33339,23318,13617,96517,22555,32641,67197,70861,72968,9908,45705,36606,1880,16238,70901,28500,97206,68436,8402,27919,42433,10173,6468,44296,54442,29926,43565,21523,89226,48134,11506,6705,94826,23609,35286,17808,80365,55483,33027,70853,30694,48215,67864,42886,12385,78144,41617,15841,64710,44878,17853,50213,32988,71954,5571,53142,14524,62924,22649,43217,67744,5000,31055,52036,80389,10388,37651,16862,98382,85175,88188,51303,8859,87586,2458,43297,379,18688,52241,10548,32909,43296,50142,78080,43509,72328,40346,49525,18285,17931,94181,80745,80681,24560,24267,25786,57572,15653,83527,77668,31286,42912,22727,49223,15164,32354,62494,67290,76253,82049,90845,1285,75479,65571,83311,51069,57153,5819,86700,77232,1960,69030,72444,95292,31905,32726,62588,28693,10350,41537,78961,92542,70256,3678,40397,86822,70327,40414,73285,45019,8747,8980,37004,46525,27538,46066,20650,28798,36860,97392,27091,26496,50806,83176,9975,40650,74978,81688,87013,19549,16469,69680,17092,96634,74268,69228,4799,13328,86046,18555,7678,44850,42514,28568,41918,51984,83759,22171,63040,81784,6957,4055,27309,91770,26937,4674,48011,19048,23789,12026,76923,21820,80137,91017,35216,30546,69206,2974,89299,27337,28755,1653,99779,3746,94706,11237,8929,46707,3729,54026,32926,22043,38373,36543,58231,72849,89068,82553,11322,22864,4753,34905,55918,13163,41850,63623,59821,60086,55853,4248,94777,61192,73295,35809,92351,12944,18274,38647,88171,61437,89750,60087,4115,4164,92721,26037,65128,12138,87040,3913,90010,52692,35289,22591,67601,43703,11370,44394,43382,40522,89024,87840,86325,76880,56416,90043,17614,5933,13385,46565,1561,69652,10564,77589,25870,68286,8377,2710,52993,8035,53446,10143,89633,16785,80398,38166,44888,68000,2357,20784,85221,24847,30743,35577,46431,55375,32269,97903,62713,33557,62993,70391,30392,20671,15314,23919,93444,98677,52327,76368,64155,2795,76292,93490,7499,48834,71931,28362,45007,85961,35885,6426,78153,7335,18351,9956,79860,48277,56109,40154,29834,22044,12167,71780,78288,35808,50783,41426,71187,11880,54410,2379,11434,25511,54375,30683,65383,12846,10343,98128,14384,17160,52434,68335,35125,70581,99072,26741,56966,32481,73909,86348,9534,87317,79355,15699,1849,22441,27811,85532,23646,71555,50865,72744,40010,16575,27754,56073,32453,5518,93912,57609,55606,26262,81128,60752,47748,82639,80598,34847,72505,57842,15929,81960,64888,11511,62028,94219,5284,76898,63828,92140,69703,6930,25860,55858,92630,80515,88021,15663,87396,62629,16251,40743,25945,61285,71038,23151,2061,56557,45057,3857,40863,43399,89298,8048,92150,91811,55276,93230,12149,8472,92887,79715,42914,86654,14402,42549,83253,82728,9228,22340,63923,89505,14519,50009,41878,64683,10481,41161,91623,90341,14142,54780,9579,67721,57476,34660,98109,17633,52662,71359,77441,39984,2758,44226,5631,23903,62842,99360,82904,25025,84061,82364,71715,88525,28847,86653,91705,92026,66142,18553,6789,62174,61831,33331,61512,57341,42636,24789,19982,45008,58801,86036,48742,12498,9551,29548,53157,49420,15826,87730,18636,96391,50188,79314,29444,67620,91195,10000,16022,8250,12834,9512,76191,85355,58652,51433,7488,25815,46484,69607,48979,85784,65743,67278,60408,68660,74799,16312,60463,30508,75533,77958,49232,37364,53299,20295,92665,44503,57764,74454,98934,24427,47037,99256,64447,31053,46533,89548,93554,71821,8252,28245,8531,71626,94355,51847,6120,78808,27739,84480,8831,26992,80968,67515,48675,7996,71304,80001,78294,29546,32250,60649,23159,28109,74118,46468,62057,63911,6682,59716,44715,97249,97823,16443,58491,72087,11176,5010,95002,935,17695,63620,70667,18952,79694,99464,43800,48074,10628,71948,74408,22867,78768,75360,82503,14641,10214,18584,31335,23148,88192,51657,16050,90333,40945,12187,9507,89007,12018,35157,51852,77986,41586,49872,21879,75433,2698,21423,15819,10935,19971,91263,92197,61282,89026,30999,67069,12845,68070,38036,92321,66949,2236,44679,30903,8669,81745,46168,45157,13693,65975,86287,39241,76513,66321,67111,85820,58290,12007,7695,52354,26009,67684,83780,56374,64346,49361,31148,85240,80264,62853,93373,13813,17432,56252,41122,81982,99877,68983,64091,53915,88676,57291,10154,51098,64547,67980,34134,36513,26886,41177,57210,2929,23892,37176,56804,44924,11472,3675,73977,28779,80886,66521,37115,7714,25591,90746,67959,2980,90553,28735,89389,52169,28881,79644,74749,42781,99026,41823,92443,33521,84941,89286,23429,64359,93679,67542,68180,43567,32152,82328,50126,362,96791,55982,89784,87790,76876,58849,35391,94893,44905,92071,53495,44096,57974,93978,30993,23301,27948,66070,33993,90885,36371,61716,84508,48230,40531,89292,8043,33960,83410,34902,43684,82967,38081,63474,91395,86524,94559,86885,23494,94324,5723,41899,36186,39174,58774,36016,43231,47801,11316,2568,52946,42718,88384,17002,91732,12774,2472,64603,66470,7763,59398,98715,61096,48679,70229,21714,33156,67007,72469,63290,1050,40168,80990,47347,77800,22058,42291,31217,32680,4907,95543,66145,3053,39201,61569,16589,72035,86796,29369,54109,59374,32996,98368,98192,91137,34187,17349,40511,97458,59773,91112,9276,35140,99982,28887,97579,39640,71150,35084,94266,96442,1999,99996,55860,32297,66149,60043,38521,85613,81944,59889,38359,41496,33344,65022,58892,83219,37392,28201,71867,41002,85168,59955,26978,98884,85443,92125,6351,18830,72926,76357,80140,46869,87463,16061,84537,29002,24788,49113,79180,22268,54602,93762,97124,93784,34791,72468,17350,89851,99512,9075,59863,94121,65454,90000,61997,42727,91683,91172,90732,36352,90743,64361,28710,2618,52573,62037,97008,15691,76150,88396,44053,35608,93409,44945,69411,97158,26490,80708,38951,91108,73842,16570,40537,66326,62729,80998,19835,7280,54949,63476,39399,11897,66056,80246,42159,84964,15640,85751,64142,15770,46570,19891,56775,27236,83940,1023,50430,41605,42738,39602,45329,77482,9370,88368,43319,44471,84006,64611,57359,18653,94941,2477,17286,28410,67018,13084,78878,51668,47744,47159,13789,30073,98559,19221,37915,85634,2904,2204,21059,12401,54014,13542,90611,11872,83487,59648,93813,68690,45078,15872,48264,89944,13062,33906,51192,85878,6313,35745,76356,83827,39752,58903,37434,57062,6529,87165,75505,8801,96098,17669,19877,62336,11136,18358,23415,59349,53733,63189,4507,11835,72951,34189,57711,69830,97291,72041,51964,39290,16085,27233,35068,65987,21481,41555,65954,39878,79000,32582,41934,19124,7140,20096,28006,10874,10302,14314,27978,82417,51784,87659,49052,64412,23401,14439,79502,94470,23876,83525,1373,23994,5305,83620,40779,36932,90201,51223,72592,16222,77837,90442,63256,41807,96215,62042,73327,46218,86802,47966,45452,82163,92039,98465,14972,18819,35950,27412,42607,8219,92143,63757,30256,68774,99399,63701,43367,79814,2934,20528,62669,77742,90625,81098,6928,30779,19441,95471,56031,66717,6483,43391,47952,22239,89022,31087,67205,83468,47967,53178,50488,87783,60525,56780,31268,84550,14924,27462,93228,64293,20869,34216,21722,56324,20888,216,35732,46644,38839,98318,12372,33224,40523,78658,2362,3901,75231,8658,7483,44961,50514,97785,52308,5383,57467,20268,51305,93855,20665,85461,20717,77973,99238,6019,8473,75860,7696,497,67222,33794,68602,56448,28864,79059,42923,67033,29674,77873,83188,452,49600,27618,36375,19819,71299,4893,17520,80753,28126,3234,37487,46539,1721,22832,91141,11996,61833,16132,68066,10349,53585,22187,64648,72439,70692,56309,99622,54085,17908,96861,83102,13035,45215,10881,32849,4708,19547,73463,62184,45025,62497,32543,60897,78632,13108,60966,29280,26165,15504,59699,86023,52962,21982,72044,65429,41523,57373,75710,76724,8717,66218,56993,34940,97039,61675,94192,6164,32317,95426,72380,83127,58809,45920,18066,80397,92242,82599,41957,22878,32805,41065,76249,27484,42654,66544,82460,20047,73050,50354,48099,14573,56137,67241,76685,43302,63933,65504,59389,1951,35768,51686,18905,91652,82209,82044,17281,88794,72414,45546,75401,64740,14295,63160,95569,70143,7154,49950,97196,41759,32213,59107,30114,21406,62578,97285,54606,51343,40603,68498,29475,57850,2122,31163,15195,38353,84451,96367,18924,79205,76574,65362,69120,229,73507,59186,77795,39687,76394,44693,39953,44534,6774,48048,48414,60626,63598,94007,39350,84801,35931,50490,17841,36322,72091,33154,54041,41305,75203,16134,91353,2311,36691,67751,85421,87273,57715,26811,23816,77699,46725,4460,65548,74950,64350,76037,56290,84269,47333,95369,65055,86278,9279,15239,64389,80258,61257,39148,83657,67815,36268,31428,3969,73164,27558,4682,52171,13713,97954,88547,57487,71998,91513,91166,34850,88338,89247,18601,30057,15793,58790,39526,71399,44485,94376,80542,69059,12770,40285,87640,12952,27929,67142,89941,24998,62956,43011,82343,99883,19579,90468,99832,26088,65769,28565,61350,15678,77561,60696,96542,95438,42009,2251,19625,3558,51406,74234,63045,85381,76408,11527,73288,20803,76065,23552,4280,89205,29778,471,18500,5726,4255,39523,40127,24961,20991,35168,15245,40507,1802,80675,88833,49118,80516,15481,27221,71900,8225,33427,99807,21742,74435,83807,14185,30292,83804,66605,6230,62488,68981,41875,71179,52949,91742,5952,77185,67141,87893,46499,63127,1696,67646,85972,41746,8422,53050,3219,21684,13080,11782,34597,3494,26003,82666,73051,26321,15719,48310,92283,23351,88641,82875,90180,43157,37068,53202,73320,13747,83334,69063,47975,10577,80997,8302,30141,50261,70089,52120,51212,87383,90947,90972,84201,10454,65490,71232,56371,66417,58538,96935,66803,60497,75530,57795,71880,43909,27610,17558,18734,21709,11854,29618,13852,2405,63852,58963,30227,26897,66515,87660,91332,13420,64338,63387,12523,46136,26268,43676,94575,40457,96498,67016,84227,1547,67750,89835,66612,22117,24687,90738,69693,23798,81815,35388,70494,70580,13612,65970,82271,92636,50284,38947,15668,16881,39779,50251,44529,61344,54749,6082,48680,48967,40644,65470,56896,71174,5865,112,54681,56030,96641,68007,49792,18929,70820,28926,26664,99325,67667,67616,71045,89880,48259,77280,9649,14367,33685,83035,19589,15808,18797,41096,34715,44491,31523,84661,53191,95756,86369,6411,57714,21506,43981,26174,94533,16560,1264,54372,84963,4214,77971,12960,16766,40484,77591,58999,31169,99539,14227,89182,26358,82699,19577,43954,29804,98543,866,57859,2706,38224,17301,78358,66076,20306,26673,46742,73103,1947,40913,26846,28660,37223,27481,20679,65888,87275,12378,61626,45534,91564,6557,53427,47848,93066,51788,79666,40309,2516,11093,98998,84250,42052,65053,33566,11235,52127,29820,69406,98831,92113,24836,32887,90056,9600,81873,31760,73557,53297,1896,3897,67822,13696,62727,74888,46342,56256,85249,75456,28034,52774,33412,86877,3010,71258,65506,65628,8119,91453,3325,39813,60719,37630,13294,93081,31336,47906,45816,99716,38174,11365,84558,296,74670,84992,59213,64052,15174,23023,3144,20975,4210,71781,41536,5787,15855,72936,36390,59065,69880,44235,8646,78959,71438,37782,78163,94800,99391,51319,8686,99290,91911,95908,31716,12965,10376,8066,65549,78124,56125,28407,60193,38692,70479,81851,53525,24588,91609,52791,40022,84503,92046,89981,45056,4904,10207,96686,80811,34461,15334,56436,76723,88097,94059,64234,33738,53212,81692,6850,57463,64257,11300,22846,83184,22680,21365,67586,28467,24586,49878,15290,69493,17624,73197,74868,43600,52319,16247,12574,67645,71491,72551,85681,33788,5911,12407,36240,85977,40278,86318,61866,25896,48550,22279,3837,58530,41272,31878,58221,73299,45372,70646,90987,91571,50547,42755,73335,7545,4130,43443,44171,28785,40801,81018,76393,86632,83924,46356,81572,52545,96909,23479,49353,22834,61835,76055,24887,86627,83575,89593,79951,67331,43305,99719,41066,91268,10278,56286,30592,39491,55950,25764,13034,94496,88262,96165,36226,46906,46041,89777,21175,63517,11676,87594,15834,29702,90199,34679,92831,84818,41160,73254,7880,5673,54274,5163,39585,37249,35842,88056,94459,68956,82053,83361,94955,15899,56660,97739,75356,82279,49069,14941,44526,77525,96834,27285,53436,89848,31157,19693,80252,79904,19233,38463,74918,91423,37166,73837,21763,97832,52955,32758,82598,81357,2195,74673,73748,16509,54585,91238,61405,15912,7901,38694,13106,33313,58304,70609,23390,90277,10676,54531,84099,67140,468,53303,318,814,51942,22217,17996,99465,75223,44504,14148,53856,24460,42956,77275,15768,61703,15723,44331,29094,66750,5014,16950,24010,84444,16280,30381,80177,98424,33257,69455,66083,17251,87156,95375,12391,88880,93047,28369,79690,59511,8323,24299,52831,47557,86071,22048,17793,63541,58515,44947,32120,48175,16366,59482,80485,42871,18486,44419,69437,23478,21711,70161,167,13636,49706,36711,55656,25643,21223,99268,36267,95072,67655,91467,73763,39143,22232,85701,13795,79340,41019,71206,12198,42799,62881,85008,97913,20972,5666,8375,16465,74947,18516,46749,99209,1833,78805,84048,75938,79311,79957,81728,24522,46851,3094,98808,24188,55699,92888,92830,2572,69721,67606,51974,94509,97418,45169,83533,35936,91790,29102,64343,64410,68505,8692,34122,66294,46196,79081,85679,46201,40201,52629,95353,96273,31374,65409,64604,7679,66636,41826,30588,61898,26574,3654,86709,74216,21031,54203,68905,97961,21214,95142,78818,72983,4213,51379,81016,96604,79321,85699,6358,18610,90721,85542,24797,21234,91993,98597,49119,89076,28531,26413,60212,28484,17015,16055,97456,85804,21970,70429,12412,91483,95310,21941,74653,69170,26499,45971,2147,3364,29750,71764,45130,59540,63521,23519,71336,37220,32094,44405,8783,56544,88920,25728,91361,46954,75124,91077,11079,25625,11411,62932,70096,41029,19466,56246,73623,10400,878,38491,93894,6968,59814,37072,87227,56600,77473,74775,64418,93305,67042,38058,62371,75749,75581,5831,12196,82358,15959,65925,71049,79072,3084,8277,41506,82890,95889,69540,13510,91908,74369,1950,58407,10998,38601,26344,29471,78962,82773,61927,68026,61616,91961,28169,21359,79351,12394,94090,18336,98919,66599,52640,56046,99690,14350,82994,79042,89888,74168,96782,34274,9770,13045,73375,29111,93661,15801,43091,78552,63,47349,26331,95744,23511,41386,5569,90645,41118,39505,50641,74247,39903,73961,24854,13158,37691,51676,20731,59248,7018,64048,69650,12906,10573,93135,30309,78765,87172,80489,95835,68791,43829,995,86502,88807,42909,71831,15248,19627,57247,97519,32205,25161,83259,60519,63763,72641,46880,41852,21697,52995,53508,17373,3086,77398,24199,7989,28876,81567,44940,40602,33669,36931,8175,5187,79097,91472,48696,68210,3609,93030,6823,64311,31767,94930,6512,11334,79446,17170,53522,77621,47790,79146,77307,14220,64871,16568,46722,1311,64555,16071,15941,70509,45122,88211,8465,68170,76512,10447,13965,91826,50679,95200,40148,6267,51901,42265,72086,39543,29478,3838,42825,82231,14060,49212,52367,4559,49271,85286,5714,22374,18874,513,39808,44107,37212,70099,4299,12840,8095,75169,19738,38094,24372,22886,90176,46165,41087,68547,88197,84024,59081,69376,20730,38984,44963,20355,96096,25136,55573,96134,72892,96493,37051,75539,63839,38035,12319,18626,81415,32608,90787,54871,54936,70489,94261,44707,74538,79640,6470,12764,40649,56528,97095,17153,2413,29943,49702,6901,91712,8420,17271,18386,51112,82217,86413,30855,89521,4984,86010,75125,21614,24835,17382,55179,24021,80313,13563,21723,49687,72514,72737,23865,97492,2877,58654,86317,17098,19679,20532,19878,52712,55520,30017,90022,26222,72970,68400,65201,68191,62606,46259,53095,63716,96831,8325,61708,45730,48037,3917,26649,50793,77480,75273,82990,50352,26587,32106,67306,81515,80030,18252,20531,1298,43943,35146,66001,46153,6520,64742,17747,87131,47106,52326,66284,76763,70743,65807,72122,41069,44067,86835,32508,98448,63861,44434,23495,21704,72682,53380,29950,53993,25719,22390,89370,61673,23277,5640,45191,93885,93757,34298,42295,51536,91547,86398,21145,4195,70948,88598,15871,42757,26436,76938,12213,93400,75752,33147,42445,45898,51947,73800,29136,4156,19769,4419,82736,94823,61032,55232,38932,13415,8115,50286,77278,26668,47460,52668,13634,95978,77093,31772,87324,15251,71421,58033,99939,63531,15384,44494,14758,68959,79805,28119,53835,62500,44134,73389,94005,3345,15036,47294,49653,10513,80915,74977,78571,46302,15489,474,90471,13124,65264,28922,66444,74201,17984,62264,73765,99190,49201,53162,16913,15379,93623,13876,15852,7717,53517,42568,75225,52305,81385,52001,40076,23882,48858,17703,8352,97963,23556,85491,43564,25245,61984,12080,10658,40497,27224,81887,79568,98213,44025,20834,55465,90849,29650,48548,41423,65222,94006,23402,29469,78921,35423,16999,60443,54321,8229,34456,63667,24585,22783,6718,7326,62822,60611,34046,92309,97081,13526,28582,55,40733,67246,60860,91260,10283,64133,95105,44277,49533,31551,91135,842,85877,76425,26147,59753,28591,33556,16809,30335,601,96140,20938,95212,69004,87027,94934,55468,95620,54068,76297,78612,29930,1339,95954,43467,26057,52617,95161,84476,33939,89581,64029,25037,77337,373,89598,13127,59586,58002,73425,44380,64258,30719,73814,25607,43134,90005,95497,93634,44209,6225,93367,96925,70008,67702,83465,98658,61509,88362,79304,2966,67120,66293,6674,62536,67771,2909,58554,7135,90464,89010,54766,10025,85064,79575,64246,53167,57101,53444,26029,7067,39314,8635,62300,17629,55432,62161,84065,16174,17718,33753,73994,43701,23942,63334,20492,3963,20672,15763,80545,84055,80100,54445,83876,52313,27015,86454,96328,97897,19186,22848,72392,61157,49566,48916,78521,7969,1841,41254,75472,97831,71095,97160,74755,67739,61529,93749,95884,29044,1406,13372,57951,83821,93790,47178,61272,61532,89562,18418,18167,31531,43327,58914,26852,39120,51739,53333,7316,13685,22306,20296,42740,66300,68703,78880,23102,32891,31384,25713,19818,65619,7423,49403,84088,6186,12413,80905,73713,47077,90029,39091,96496,74841,99696,42299,60627,19248,53630,9654,28914,17390,1827,87270,58189,37045,46465,50140,33520,12155,18981,66022,72264,76123,58662,63975,72840,16918,92334,97704,89583,12024,52869,25800,20369,16530,97293,98651,67753,84153,5398,53561,63172,68471,70009,14258,62969,17730,21949,64545,82530,75287,3452,50465,17495,31360,65762,56789,88084,55749,10645,3734,66753,33639,32345,70371,41624,44880,13921,64433,51355,34155,17860,9333,89814,98512,93761,92165,77817,87657,47409,92157,46709,12547,43166,55723,74391,46590,85382,75547,65493,65476,50194,39402,68142,30898,91373,52000,15157,88714,1273,33125,91638,91246,3088,38989,87023,54380,9487,69742,60650,61176,34455,21226,46848,69460,67150,18611,23651,412,5024,84382,76887,33425,22318,75871,7993,67244,6565,18410,56386,94589,27440,55019,96307,43614,24812,69378,11191,65085,96311,74217,71953,32133,2032,97470,29411,55178,17023,64020,66700,17751,34799,48060,81268,58222,36232,93635,3986,95920,88134,56821,41835,77767,88308,82777,40162,96818,42879,10287,54298,85567,78604,14609,57112,2153,20744,42181,29176,98166,17288,91162,41384,55190,10778,17578,7977,64867,99812,67305,74675,79801,18342,69285,16427,19765,92251,36290,35333,42932,46884,25636,1148,58599,5578,83814,60483,51378,94161,86391,91293,56451,59799,71574,4287,45027,10240,24969,87769,61333,89645,50950,7409,38078,89304,52117,37311,22238,10262,54210,31071,6402,5319,69222,13625,65959,43734,62670,75612,45439,53877,43016,11207,86613,91858,47842,26150,11534,16549,58003,1650,20174,3761,57363,83327,71014,3719,34211,680,34185,1527,54849,36120,25221,45817,3971,29486,98527,42267,40520,57555,3860,62148,28261,84489,15327,83578,78456,46336,60946,13992,67778,6858,13509,48584,85213,70870,7210,67934,55157,14888,60216,86229,36774,13413,44996,57151,35019,77299,93486,16683,57066,4247,60338,98759,12099,20608,3223,56926,89743,41828,13388,25672,98494,35968,17890,6178,57251,9882,58076,28185,14270,15091,12374,87510,45585,60988,85348,81195,75503,61013,26148,26046,90590,5417,35138,17202,62378,93712,18213,72578,30081,35215,77409,98194,82368,69894,55133,53905,68795,59598,79123,64057,6012,45144,81480,86789,38761,77252,22084,64000,27313,53772,25709,40730,98079,22788,3752,18565,16643,39308,15579,95547,53688,14659,16262,58384,94632,39614,87968,166,70809,10786,40882,52369,40792,82706,81373,79170,69674,86297,78811,55965,24691,98564,25773,58035,67076,45865,133,10623,62811,40088,26374,43255,33327,6389,29949,89296,41755,46093,38587,81035,71376,4552,99791,39133,84870,45942,97512,71290,55412,23485,84439,92028,55599,84078,66088,66941,63056,91672,74266,27081,85402,61949,33730,22174,70843,31927,70663,90766,94506,843,37805,4951,75115,81063,36896,13818,80741,45982,44402,88215,46195,40751,63401,95145,70041,65226,56194,38200,87113,28377,60388,43858,14812,94910,93958,36901,62883,41988,67661,77641,2298,71739,37029,10718,72464,58391,59314,75172,41650,27636,58938,47752,28213,58109,80735,37746,33642,9722,14883,1577,1494,44509,35328,42494,81762,86911,65811,64887,68059,23841,22319,62723,29524,51482,9139,5864,14115,11803,29523,92973,29814,58905,81346,73005,60470,80120,56085,7397,30108,3911,54019,31298,1861,30171,34924,9695,36071,13640,4151,69704,74648,25524,59591,55302,37493,55976,75462,94268,51128,32522,50310,56643,15868,20211,43812,40233,47613,16656,41822,70299,22013,87817,31496,58266,11384,74312,67099,4457,92273,78503,31329,19283,10253,86353,19421,31458,91185,99824,79892,93232,45084,34179,44364,40050,28300,86806,31007,27290,73148,88371,72415,52227,95398,4278,53472,74712,6050,70249,59612,99366,96676,32244,8233,1133,68353,41509,66087,5874,78887,93850,38811,52498,18942,67701,3672,50883,57261,32977,24164,86107,10085,27891,17397,8545,12433,38743,67662,75824,68325,79744,94145,21372,86586,28910,47672,60498,40664,15309,46278,66646,8973,21950,6033,16456,27825,20699,50012,5699,70911,50555,11043,98673,24394,30908,81130,20644,56632,59252,41228,95410,82567,37285,9264,14208,12079,85650,240,89664,7,47900,81666,79391,51667,63110,52506,54208,30985,30462,45843,42336,46299,6444,30522,54589,19378,8195,65707,41693,8418,37779,44861,22199,80536,35973,95521,91334,99275,45179,47932,49897,65720,76941,97284,19783,1734,87170,60200,78315,84120,6842,79177,22479,28844,69220,37801,79723,28821,62125,99693,71022,44460,65895,95261,61116,82325,96290,59208,66722,84557,38799,89564,96249,12856,26170,77532,62832,8474,83899,18011,77904,1513,32407,94904,59528,87999,80953,68763,70365,36495,57783,46438,5053,63502,26078,49947,83073,3020,63035,45761,18256,9481,1381,79281,62690,29154,22024,25173,65215,79645,38706,52018,5454,5223,72930,94286,84192,80118,53844,31598,96262,69707,73547,47811,46498,46669,40678,18468,16541,63633,21347,86504,13735,90030,77312,96436,57286,17060,86451,68119,21588,75864,22646,65341,35211,44248,88603,93274,16165,32009,70134,79005,17443,86602,26948,93882,31362,2818,25890,89295,37817,36899,48343,68241,82168,75113,96365,94605,95220,66329,70931,56112,26975,26034,24464,2361,81848,49951,64337,91582,45432,24328,55110,23356,71982,2303,94734,73775,8364,54965,16108,39624,42710,20287,84924,70435,15947,19062,80607,4309,35060,35239,66222,75799,52691,27331,12090,54268,67593,40595,25030,35822,4063,97557,46477,28485,53062,90071,32521,36584,93017,62799,76993,91274,17483,40617,80344,52359,99298,32393,70916,52865,90850,59074,68540,47569,60768,2585,40238,81817,52733,80845,92783,68727,21498,60038,70260,38691,39063,84020,20192,12997,391,58955,63120,67318,66959,54598,63652,80402,18600,2566,69677,67050,46226,33909,78164,35228,36735,14804,97572,85412,55041,5761,24504,34330,16500,95537,35748,78957,32994,73839,28714,97629,16319,51646,30814,77640,62340,59793,16257,59318,39910,48650,82651,86478,15415,96551,88588,8421,69553,81037,3575,2979,38749,92639,60602,91927,86198,85083,28071,58333,82985,58455,88972,59288,48817,49184,27821,50957,35904,6649,35212,1016,37789,40494,87177,35637,92086,10866,58412,58075,14643,9721,23696,71352,25418,13400,62,6768,97690,11786,7956,92518,64397,25201,39337,45362,52700,21576,16363,89252,48545,3756,43076,73261,59637,62635,54747,25175,4693,7267,52139,99018,5004,11490,24100,63372,34701,37778,54229,11224,72165,6372,3709,4391,68128,8773,46584,90827,33091,43225,147,63240,13082,97939,97752,28396,32554,64903,50900,43362,66624,49125,28879,61524,26998,25995,38892,52500,61224,1459,4112,24283,522,88429,99694,63553,84098,77542,40339,78550,96765,71445,39580,82618,70109,22280,58133,39754,49682,14841,57389,69877,99952,43087,37142,10442,37241,92152,99397,27760,86657,91841,55885,5750,55141,30361,75971,7651,46042,68165,15656,34475,80838,97680,62636,69500,63554,87708,93362,2963,41647,55341,21701,990,63346,37319,50651,29418,75281,83485,86706,35780,49346,41478,91072,13199,55472,37955,26826,67406,89886,68646,86447,15223,29741,84223,95388,8540,33801,57048,34976,29251,22294,35236,49071,49750,89021,88499,9684,22594,83868,56513,12858,29593,17155,84501,13010,57840,35204,78823,57097,63490,89143,51048,184,74901,37665,37798,13224,66921,6253,87056,29781,91279,19961,15755,92481,75139,26011,17183,97944,77244,12963,13505,7702,75040,64188,8914,90764,39121,52694,78876,82431,37438,81110,19848,92048,50631,67357,28612,98746,82314,80474,18606,50265,69297,37539,75600,63920,64966,72416,98849,3119,45018,35890,58837,50918,8389,87635,96727,55374,94417,78205,70672,68934,86977,53509,82442,24220,61326,1587,56251,58142,1125,25770,11729,49048,26429,77880,45235,69851,44605,9174,77081,5231,12712,2686,46496,37725,91489,44083,61303,44538,87430,77204,80808,46359,40558,56672,69257,76814,81546,66669,3735,61665,78783,58663,94956,6971,29143,33547,16241,36414,46208,39073,70896,24416,98962,86366,5903,564,87774,95296,24808,91917,79769,60031,40092,82089,99959,51936,96304,58053,50037,37979,76378,54844,70781,81959,61916,56543,62858,13446,33337,44563,7507,4026,63840,47486,86054,222,10398,17372,63428,55175,91008,74263,88459,24640,23628,89192,4181,21567,25479,83621,55663,42876,96466,1359,30769,31948,69626,21610,38812,51969,96553,91803,65670,82995,70561,7066,46458,75243,98015,12271,64805,74403,84806,73059,6281,48557,65531,2052,77609,45793,58607,40125,69386,72775,31961,92547,44765,26412,72719,3663,23888,10087,65770,45402,34549,7207,1518,70977,42351,2263,53923,39062,51460,82828,22450,5276,29048,68287,55159,91495,32220,79117,83998,5389,4937,59840,60817,83269,35045,74370,12751,66796,17083,30708,82015,30510,64223,31560,77314,17988,91471,56304,31187,76753,31257,40887,83019,86745,66638,73076,77967,35592,49010,36102,53102,18359,83752,91448,78430,25903,96254,68902,81144,94709,28108,17662,87033,71400,12068,59826,47591,45922,95851,45198,31251,12540,65755,33621,30621,47019,79668,39026,26801,21582,85139,59191,3574,11360,43151,71082,77411,35723,34590,86222,24981,14567,32415,29145,20771,28439,33824,47619,57185,34061,69459,3433,86512,53941,59475,65920,39489,85630,57873,99900,93809,26684,24881,9100,85012,87092,49264,28594,78935,13825,59774,36812,53624,5292,35725,16855,6594,81792,2025,7798,48837,78701,44774,27323,54601,3302,52094,52862,75697,41012,64876,9942,39727,35126,28220,36877,71362,21179,27858,96384,31558,22492,82732,5419,73045,63849,62682,92642,31170,34538,2145,5510,80851,59995,52689,1044,68455,24975,8205,57778,82532,72771,51534,64666,47634,50049,48224,56403,56695,11841,87497,47338,32410,59635,99794,62895,44604,53548,87122,41877,67118,8871,35755,10617,71312,46850,48776,75106,4825,49966,57987,22388,73792,39673,3076,22944,72374,92569,8262,98506,78264,37707,26991,66974,83493,34453,87746,59729,47123,82100,76956,41923,66468,14154,6466,43917,11713,66020,553,83887,2730,18373,17776,82512,85700,98839,27458,25936,60810,48061,33540,11706,53679,31255,31575,75404,47217,90465,88757,42235,76087,46606,87996,34527,3327,45897,19895,13377,95618,51951,82521,45364,43061,29506,84703,33530,36251,29830,65767,92477,62839,81027,96109,38274,3920,24782,3592,6919,19596,35188,88433,49043,71413,43450,65176,85481,60532,6046,1203,89083,61763,85196,99589,2860,11935,71973,2095,49026,45383,36649,21925,89519,84809,3012,48092,24338,1350,20158,64967,33259,84996,97529,12600,5214,81234,26559,82128,3538,72746,35923,5213,16699,37715,72024,49351,54317,64669,72342,52726,55893,75066,95750,45987,32736,32592,35703,69414,2424,39218,29104,25645,67522,30060,22401,94117,40120,53133,20478,98067,27883,17127,17626,2103,63774,39122,7631,49275,79144,11513,97624,25077,35264,56996,65062,47266,89176,1738,48701,17455,20978,37740,41086,56400,77501,11059,12816,29554,83390,86066,8361,71577,38922,20410,37006,51323,43879,83786,8126,19277,74963,55277,49258,60482,71460,35074,73992,96580,7833,29409,84047,50090,66665,17618,90984,35492,52298,89131,25667,79808,58488,82495,24713,81120,72255,24762,31406,6385,87446,88217,19133,42878,11348,8413,65135,6015,82870,15588,2348,60965,82588,19268,68346,64803,51514,44997,75939,35590,71025,46462,67319,35290,82649,84906,52,50088,34271,50400,64274,99751,6755,29041,17594,23463,40152,72789,20012,26311,24388,25438,30182,87432,3412,83130,78581,69935,22267,93876,31732,36773,92508,55995,65528,28651,25013,24462,11253,26901,57011,88261,9791,85945,91768,74777,47919,49713,28043,10804,78684,1374,92482,12928,28249,2062,99907,6798,11594,41233,59559,5025,67936,35145,12871,75769,36092,35147,85146,70205,38009,28124,9430,80482,51596,1677,7350,32751,40063,2969,86254,73535,60835,14908,4336,59508,11195,78600,67303,73553,47138,18090,28284,44101,53219,61172,2433,45651,39228,94546,9850,63019,84388,19886,50942,51260,15749,96475,22607,70726,36700,99029,48585,36068,49903,94386,75817,67570,60996,49860,45679,16206,63648,16369,11816,57422,53957,24714,68454,89037,75886,14598,16686,97272,98565,79265,61204,6526,33020,11998,18540,83466,84576,87852,84316,24731,52400,10543,40759,53528,9992,85450,95893,53695,83214,81935,52276,28003,83221,31611,10153,32682,32820,32365,15823,57498,78495,78017,27471,12326,97369,13682,7867,24370,13903,71926,61210,72019,34929,21399,70053,51102,30662,69942,80666,13425,18525,31689,97869,35511,29603,7073,6173,72612,16522,68469,68463,87958,14549,8051,86194,50816,19092,37834,22617,94779,8171,68090,23389,39227,45642,88933,47792,54993,6381,37659,16378,17959,89237,68163,78567,95485,11403,95789,42427,93719,82453,68134,39850,80921,60485,56341,70315,32844,46065,71328,11258,80426,60836,88570,65613,95193,27082,32419,42660,8444,90262,22484,23364,42953,30686,93422,98430,80375,77496,62579,94477,84034,31879,6742,71205,86916,26212,40567,32256,71217,3795,51143,84487,98941,90938,58094,92082,70257,15566,97890,59043,60110,87562,70264,6917,60846,13246,86060,35381,26634,85362,68407,84215,66967,45086,34385,93941,92061,30018,55024,35647,7811,66331,1638,85585,34506,53364,70132,86971,88007,89608,30322,19153,84039,76070,93678,58227,97208,78118,50139,40057,1904,26451,25344,90430,64102,77490,43148,71802,85058,5945,33655,19759,3698,57034,95937,6772,3942,59717,84763,94982,14473,37906,87060,83144,73813,16472,36817,38855,10644,92035,33533,87922,76856,71469,4455,95416,69727,32450,51183,35421,54722,71530,14718,55416,9429,33234,34494,90561,73995,59131,37756,20714,92377,75027,52953,3425,10426,91987,11972,39970,8569,93552,22929,9700,12015,22365,43142,88651,54907,54963,14988,55619,749,37177,14809,21197,93673,41476,28984,29000,8028,64175,24208,9093,99269,21661,87767,59456,98995,27373,11192,89760,45076,77374,14832,76893,40790,98585,1184,43571,69563,35606,40371,24294,23575,79491,82382,39519,56366,32262,24695,79279,27483,33864,10259,74381,21823,24353,81123,4655,92268,58614,56447,66503,74278,60541,1888,60540,88526,30821,5189,97875,75580,79722,92370,27765,34340,71327,80769,64242,89158,48923,39321,71940,2677,34539,63952,15123,66036,13166,31811,49919,52775,78859,94415,94813,20925,85147,92428,25275,92964,70275,4587,37158,67878,6092,2959,86679,74872,92734,83141,90371,55772,80812,97789,34163,34856,52316,7697,23264,22087,65523,89436,84315,53812,70842,95868,57605,44743,72589,16192,681,19844,54800,99394,87216,5202,13896,20649,70428,30370,15411,78463,70032,92741,44653,98006,26467,9809,13793,84536,34822,38207,41841,83217,98245,9844,33231,86589,50407,30854,18526,16293,84131,90725,33284,99855,19840,11651,17252,20659,31565,8499,24790,51422,20967,85857,63766,63500,62106,14136,98540,20435,77844,7211,64342,48830,18562,29069,10166,59324,23311,56217,51059,44622,50619,35896,5858,78543,2358,61348,25357,84440,54260,56413,91607,36555,43953,89686,73757,27107,29272,28669,56415,86867,43827,73919,86685,44476,74338,26707,68980,62414,92538,66490,82059,39099,29455,29698,2561,11446,32639,5367,85765,34445,34421,99364,61294,13230,32320,70632,37947,49318,95211,31580,99681,38142,77634,341,15337,26267,24336,14319,30506,44232,18697,33627,59701,16007,24152,2837,95097,87280,35414,34410,15985,2690,37286,28972,10009,1926,93666,13214,35967,7193,56644,46999,59895,24455,85429,13407,63795,81394,12985,46391,21903,24281,63225,27097,85399,42595,98257,75967,32722,25367,52823,73754,21432,63548,70716,6951,10938,9852,8242,77488,85207,33597,29710,64643,33111,24334,47969,58871,53132,52277,21464,84128,86515,18321,31939,47421,57514,26556,65931,52854,9660,20241,42190,67329,26734,23724,70772,48616,85579,10212,86275,7415,76445,59841,28618,86445,48104,63206,26549,22830,11704,71590,69895,56750,96119,35132,37600,50757,73795,1376,35182,82794,15550,45242,18753,39166,12427,85750,72739,93295,84659,10899,24175,53344,90995,98850,57257,34457,84900,8525,74786,44347,89755,71721,71743,93025,46323,28966,33418,36064,35305,68019,86918,81892,35638,9010,68430,73169,97909,70016,79838,11186,86252,79111,36747,2560,80033,21362,13910,18299,89229,59234,87109,42028,35034,17063,90423,52350,60269,22911,88039,79125,17830,31942,28494,54168,87098,87760,80765,27368,6216,79652,91065,89758,39117,35659,12212,44982,24349,51749,14095,1066,80519,81047,43110,97543,94289,48808,46572,18083,35346,1898,38988,43772,99247,90202,97714,76246,59182,24047,93055,1701,64379,55611,1365,15172,66203,90184,93952,21210,59706,79729,87831,2490,84614,15402,6496,33320,99903,67293,44283,95817,90035,50418,2392,6241,53962,27889,32452,47504,27531,15144,5429,67025,97151,28742,33225,88642,23349,10276,89269,4410,76761,68675,79630,33273,13288,60252,65666,85313,5082,2296,83123,43145,89571,95610,35676,60513,43470,75527,64301,80255,27700,20279,3975,88791,94195,79152,53861,17678,90193,95506,20864,10010,36959,53870,69834,89125,64206,67876,53719,64291,86387,40471,32195,18273,47297,90769,18818,83627,39919,90073,46236,71673,95157,77736,39092,59677,37749,61520,1897,8240,52632,99569,46003,41996,47762,15986,31465,7175,39277,12200,87380,67358,32215,97641,91247,26773,77385,40047,39116,4787,12566,14461,84272,59659,25539,33577,40289,13810,80532,5252,58261,62766,23793,22460,26395,41813,35711,27985,59302,61820,33316,11770,93959,18334,51932,91970,224,50737,77921,62888,41635,89580,13780,32547,13305,32986,62346,42422,96793,56895,44333,60658,92976,86021,82233,29938,46063,27349,22772,28107,41906,10664,75012,37793,93224,66101,39,85523,74639,26955,17457,40126,78127,90711,66615,34964,68488,399,93089,77879,52034,59585,6490,72276,31912,633,39690,18881,45231,50445,28640,91688,57415,90288,6878,14338,60132,761,16407,95332,23504,66688,8324,63136,49278,43687,22333,53174,84825,56986,73089,41565,98266,74379,64207,33218,1678,4032,28150,14209,84415,46215,32677,44338,83021,39291,22611,8407,16063,9175,12360,89493,59059,18707,48321,7444,10601,75420,91998,11695,90637,32370,58168,8869,13955,72958,72622,18962,78501,63452,74154,77626,86116,14684,14273,4989,27455,93220,46480,38123,40811,66539,49008,92929,23523,78232,98226,81179,72429,78216,43224,6662,74768,94572,8479,16258,98720,66933,2694,67081,96028,81072,74077,64634,31455,8861,4714,48770,89067,90067,67282,11983,1187,1800,82155,69208,11181,23860,65112,87779,87530,64089,55299,20072,87755,1340,70917,29982,42693,4654,27903,89659,61166,42356,33171,92924,85198,61042,8681,47814,49686,61809,91619,78932,9892,64784,44466,91800,99382,96116,36061,68317,27375,58671,82144,19699,63331,7300,57517,33524,20113,71157,85647,83121,18993,41280,52536,19408,71010,96768,60666,38091,62835,81405,99611,96062,71019,97329,57491,47704,20758,33011,58273,93093,18764,71663,7402,54043,35498,10986,44031,85477,77833,5912,49575,96797,81315,16886,44272,64341,91821,60041,23927,88277,76955,95023,63039,55047,1952,61419,58331,98514,71784,39516,14455,71795,66710,53599,81224,62741,45832,89899,1962,4330,94307,26960,47662,66418,62907,39932,30147,80481,70633,85401,65871,38046,47971,11654,72929,13193,80697,72229,33721,76398,85292,49154,32160,37900,65702,50697,99805,38798,55644,63841,92689,22797,74640,4803,67762,32934,54338,56410,39635,17583,59129,36236,8443,98472,77917,40752,43984,84103,14349,8738,24920,74113,17224,8656,96142,76849,40017,63900,76638,77779,33440,64063,996,93252,68103,58832,47142,99134,95625,93261,77749,63008,77885,5286,40918,76132,52163,96340,20831,73925,35804,53707,2603,45540,58988,73649,74285,57726,42340,52415,70498,72507,30482,75157,43123,44755,6991,30418,78638,2295,56265,36347,32619,69759,71893,86732,63273,71629,7752,47963,31527,90435,60958,54779,16587,16070,12524,19894,85753,51566,31780,51211,35649,46897,16052,81593,56456,80463,83342,35849,91444,91630,55014,591,16162,84019,25577,97246,86002,44340,71924,47876,94945,4718,28306,89908,43513,31201,81083,95550,99578,14863,54206,85051,40128,97780,49658,52221,27517,77335,86393,43395,58499,97015,31681,21433,1828,98900,6540,19226,63075,9326,19662,59457,81830,32601,20159,29240,77715,2054,24616,50539,41929,33466,3599,64804,66642,13143,57885,73304,47635,57770,1240,47386,82305,84591,43543,17786,89442,98114,22789,92429,66226,42680,58102,6585,6111,67682,25262,66421,92984,62095,29811,31956,8614,59233,4080,49560,73022,84582,59728,18836,94868,6546,98695,79616,10802,94201,70051,39666,18912,56317,27380,8310,37264,32284,8114,77143,17306,71645,33407,84376,38547,56555,70925,41410,74805,38384,46817,78365,73890,95590,9814,29396,87600,95049,37710,22235,30420,91210,83723,27757,62096,28096,42910,87185,13192,42671,93157,91132,51099,72587,43947,20236,79476,87251,39107,99279,26515,12693,59421,79213,95243,59873,21154,89224,97221,4762,31304,46830,99293,24891,33434,59152,4127,99299,28315,2985,12095,33572,18927,45048,6300,87896,61785,6598,17146,90558,90720,51832,54124,26538,52105,12432,61274,99315,64530,98231,90416,23189,56037,11955,6577,30441,89116,75723,63032,25080,85357,19056,46078,19061,80771,40100,67505,14552,30143,24449,18513,22331,18713,69341,19484,20493,31958,13480,19601,62970,2307,73743,55582,92560,5741,83029,87749,39668,81740,18432,9156,42651,255,16374,89669,39939,19113,66875,46950,31945,60905,57323,33082,4894,50458,18670,28032,55661,14146,35602,53149,55605,49839,69630,51047,86640,34264,39826,4700,45883,37712,41419,53947,98328,757,37951,17686,31039,88500,79417,40884,20693,33860,10884,40354,22103,42983,44731,1063,27894,50471,13666,38985,61329,10544,47444,74708,96785,36719,46564,57353,47016,28399,81413,13997,43936,62792,28794,16639,17877,57606,59397,14313,77522,26986,19262,90602,35205,90436,52564,22670,26500,93506,69201,54886,587,52085,13820,79095,48309,14843,99271,43522,92146,84007,7818,12841,88540,93149,6834,46092,50054,52377,25528,15298,80440,12039,36458,9710,75319,53925,90773,37365,40149,54406,63249,19137,69705,99905,71098,93936,60214,38695,26314,59080,78229,80627,90496,99039,18482,58889,85629,10344,57268,97648,90441,31918,64785,24242,93537,73186,14355,28636,93696,29636,23195,34240,61988,22580,78527,93443,35501,70724,5468,32882,56161,48647,34802,64092,48122,81379,55129,67615,71971,28958,86693,20541,99495,90048,57996,70703,12940,18401,80699,73753,90345,31082,68576,23630,77601,91647,43501,99471,84052,4749,37928,87972,98034,20391,66209,1765,72695,18838,94929,28657,38007,42588,27083,22083,60180,33897,51220,95396,50370,47436,19103,17990,82234,1165,46569,93916,52607,94463,30408,94346,31018,37944,2036,6954,3338,31279,82934,68214,28536,57860,92961,26876,69746,44700,7513,6510,28871,59247,6655,77010,75716,49182,26059,96816,3109,40334,57992,25467,53709,8978,4165,92323,39109,20881,93212,86304,84547,58065,21319,11522,42188,20398,36178,97699,48440,57322,76275,68911,9237,95814,1995,3923,82582,95253,66838,64021,1479,57983,43324,91021,78476,797,47467,35028,70095,89150,24779,25035,90540,26273,57195,77648,29413,13089,58548,82516,91333,1656,57894,22840,44569,75494,79104,61061,63869,89282,32701,76604,56906,82409,44868,76257,65693,59305,10831,2761,96424,49033,9368,1552,62686,61655,25018,27278,38941,46573,24059,50507,99428,23358,35654,44447,31576,75626,14607,34594,56002,46534,15635,78950,45676,25145,67860,88992,87488,90909,4867,17501,76882,70755,56559,92448,32634,56459,73900,34957,40248,24946,65555,53975,589,91697,27622,74275,21517,18192,43434,86840,60814,65001,25313,40942,1939,47718,23407,38197,64715,80903,22209,94845,41587,27359,38345,85868,90974,8559,95757,24939,89311,55524,26096,15854,78007,26675,56686,26967,51240,88005,58552,69748,63996,86086,38279,38475,61112,96015,71318,95830,9259,17082,61746,59222,79357,73441,57857,97377,77711,55191,65406,19047,28815,77953,92787,36499,65108,96597,43975,39604,56913,32581,57184,50311,12709,96887,32975,66607,53907,69449,86959,79489,23314,23818,19583,16553,76347,62603,59265,30032,15361,94950,94071,95705,30972,79143,85746,91094,88257,92290,62145,81791,43803,12998,99743,35499,16808,3581,89197,96456,69438,48460,97085,85052,40679,43286,29247,78496,55485,16279,49376,17900,76421,78039,64892,40186,12492,78656,2455,7475,98517,15786,78413,58310,36309,99124,6829,3929,66871,90965,26356,10956,53252,36305,86157,53827,19345,81562,39692,97469,69886,95758,66842,47609,65110,97977,35502,85396,69568,87546,19660,79993,81587,11185,52178,8589,65058,87299,73131,73576,80027,10304,20483,7586,10165,50206,2113,58402,28398,38233,55004,45661,64845,88401,36728,45549,55162,40450,14487,4382,53111,48469,12939,39771,82349,10427,20883,10100,12759,9425,14493,81675,77334,74661,16773,99009,65526,15350,61830,43241,7825,94583,8731,40236,36285,79032,54898,87935,96374,12327,39707,85350,93683,91478,28959,89759,53177,83601,17887,13977,83284,91408,12398,50899,58248,91699,95418,29253,88466,8222,33892,5907,86906,85390,40020,12848,89804,62714,90826,7519,69044,92183,87851,12440,19455,11731,58563,74199,78975,5591,4594,55692,87741,70181,46705,53096,7766,29101,21206,1776,73168,44625,60575,80173,50729,55461,94965,6156,48544,44238,94231,3142,55902,78251,10392,38293,14599,75277,29574,20808,50055,13282,7823,69267,44933,75765,81723,79423,37689,78214,37510,7249,35473,63977,50698,36219,80086,29856,3489,92494,61311,45591,88552,20696,51274,74360,26309,40695,55463,85782,12253,72919,96624,9088,62181,28627,61471,61117,22409,66313,25578,54139,71655,26438,30188,84395,877,11216,54389,47369,42655,94009,23604,38184,27199,6493,7713,60188,81169,57226,1943,91721,1333,17985,52080,22541,43299,48659,11799,17537,29707,98970,18988,53337,30022,93759,89195,15883,13949,97288,50392,50302,91446,84118,58083,23506,22574,43952,64044,35829,52921,80638,81835,84253,58804,31042,24052,82416,92332,43274,95760,53432,19495,48347,99523,72603,77268,30283,33413,10807,14520,60464,49864,96892,37829,10511,2438,80345,48529,94070,42667,18306,19093,8146,28754,69308,25036,72244,78146,11842,69013,62654,4854,52475,4954,63453,26445,39138,16876,79716,6369,99174,75276,87854,26471,54421,32076,14867,30145,52911,90115,62666,30723,82877,72881,51594,86799,72291,63296,96679,59170,2184,40890,96896,97069,1304,12252,70308,19858,9856,44436,65822,16145,46890,82881,4356,87062,70701,37140,77608,76722,14088,1386,27441,26969,67444,45966,13958,73263,18681,82623,65574,37860,72101,5173,52654,17342,84434,81290,39439,55494,7166,61402,7133,4988,65467,85527,26553,59236,5756,33484,9476,26788,38732,41199,88404,79803,79916,80509,78623,47911,50993,5768,59031,14535,21164,46203,83357,53529,43476,87442,88410,83900,77718,23141,37917,38801,99233,7099,60424,49853,25451,10457,57625,40541,44403,23398,6059,14691,49555,88927,20631,92298,55107,61610,81029,96800,46432,1282,59187,33946,35403,50279,98636,32611,29311,71652,62548,64846,51439,38842,5608,29591,28376,93001,81932,33715,25808,51206,83267,6838,60299,89876,49017,11172,96527,62412,47012,77177,56076,17493,6179,48201,38028,59823,52420,62010,50823,15017,52384,6368,20988,74346,78782,12281,78262,45916,6947,75953,62587,48841,90551,77666,81825,68061,30763,97079,93565,41786,14531,87875,18100,89294,46103,15156,67969,13809,14329,80484,75627,8123,6191,88015,77819,72516,32915,66375,91465,63567,35032,88962,13087,15695,63995,15791,92357,10729,36316,35078,99117,93934,86948,68166,18556,23288,96853,57709,73601,88420,15468,28890,1544,156,50452,38747,55421,27435,35452,43094,46408,96665,46475,33984,7016,45247,35738,7563,23211,72966,27479,61593,92465,40033,41454,41657,49879,52107,80352,62009,89358,24733,54819,10014,18839,11468,86814,59207,36604,55181,72456,24685,3861,70697,18902,81590,88812,53804,88264,13051,7476,56726,29722,90259,56421,52665,82701,69569,72903,73578,30298,31179,67589,44162,89103,8395,65850,15736,12310,51855,50594,89156,76850,7806,5644,25991,80781,40043,86201,66767,19104,87495,71479,84331,60580,9762,88297,40708,20007,74316,94651,91004,37967,98691,8477,2558,43619,15505,10264,18858,57200,80582,75654,28775,27501,18071,2023,54940,57866,25327,22583,14581,60992,30215,57622,47256,2157,33351,73201,74818,6408,29060,53623,73116,54638,62018,98663,42972,17965,97791,99637,32103,98978,89827,54392,22749,55537,57733,93522,65279,2649,61950,26719,12260,11445,14930,85566,22141,88563,38794,15717,60825,68704,16271,39193,78833,50123,52049,63000,37019,92132,6517,32254,70456,14538,82320,51770,48412,8719,96393,24176,31226,68297,84571,69469,64339,25152,96984,64191,57411,57796,84349,62164,70764,39644,12613,78177,5310,22477,63498,36868,4890,77408,90705,89721,92055,29737,58710,10506,17528,25628,3848,61749,10970,58982,46137,52954,7733,67859,1580,72971,21125,57088,12722,4715,82482,68005,74484,1525,76975,99461,13367,40535,15788,63195,98538,65940,89635,58478,14707,69743,7588,41738,57276,82298,40618,72387,91266,26637,38921,12452,90535,72112,46298,82659,88960,17378,17414,32644,18589,901,84690,58419,2489,36569,63631,96251,51791,11912,21886,57231,6992,68521,22322,26552,79426,56260,74542,96319,63380,36474,94620,92890,2945,9678,91897,63258,63366,37478,85632,71670,9909,94932,84874,19050,30954,96840,91295,34692,99683,11452,69179,62094,39806,77816,60339,79382,7314,50247,76195,68736,67862,95775,47536,55364,17018,42880,15071,74979,42989,97871,9122,36722,92401,53933,43261,9072,74975,17193,96066,87489,46481,64440,58784,68081,53997,63571,74688,84426,54350,26789,29964,99113,34329,5770,26577,67880,27095,60427,57806,66443,24829,30852,37411,36936,95985,75070,50298,37168,71925,96767,67088,85245,49149,98561,86797,36437,24763,2216,15292,25975,71800,15832,79847,67656,9270,53105,31315,54282,35486,54536,54361,2824,83776,33223,76647,631,94263,12127,68986,67524,9756,93496,62313,41524,18002,51468,95216,60060,65087,22657,59089,89789,96599,37207,88672,83404,20673,2367,35689,94425,80278,38103,62333,45770,5879,54655,10726,33096,74524,28021,60507,14709,81930,54822,66273,44442,62554,76002,67339,9764,20274,27670,75090,10082,49727,15817,52419,40645,47249,328,22717,22195,97962,37607,71132,49851,12897,97484,53365,76012,7633,1039,88811,70689,55160,92848,60991,14199,14816,61218,80511,10620,77168,24073,71057,53943,51645,51990,88875,23399,9018,43622,42650,79831,85440,45802,77231,10389,37649,20554,1297,24013,2426,68075,32886,92528,81086,81145,99129,69741,27833,29695,52644,41521,42062,68045,14894,43146,21663,53822,32128,53713,23331,40596,89064,75123,54744,66058,34116,23507,48516,23386,74993,30078,73859,86347,88037,46968,51597,33500,56461,47780,38502,74017,36140,5597,92374,70312,27167,15862,75336,12293,37573,87921,23069,81526,66253,31390,32733,69472,7258,54868,89,85805,37234,40440,37640,72980,12565,31021,18857,64169,27519,46927,5727,76957,38927,91045,42284,74382,38804,32020,53953,54456,11221,91694,69849,19646,53120,80109,13776,28555,88742,47366,98740,90330,42986,83543,92469,53147,76805,35457,27527,64736,41672,64509,47164,41489,82568,3801,67575,29945,55405,97336,66408,7813,77245,71353,82009,44470,8481,97191,79861,60323,36049,47775,57696,79318,4677,19223,3670,24741,26489,27490,60215,18852,69765,65117,39004,22215,18987,16622,4440,5081,57648,80864,57496,63660,17768,96547,64524,80327,79695,56975,98400,51348,88783,49251,46115,18161,53008,72518,29525,63261,10734,80954,37488,7399,74355,91416,83151,24811,92398,25098,26330,30642,31509,91244,51105,95397,15982,18054,28816,60487,94300,98670,36678,84183,73458,85785,28829,54808,46122,75384,58430,61027,31589,8512,33455,62256,58203,78849,36500,33516,39327,63289,1334,83323,86743,45751,6579,95919,40778,79642,46312,53399,9864,55835,80328,37583,39315,98116,53806,67453,99793,52201,91910,27162,27362,85215,52569,28569,85563,19160,60809,30079,76286,84611,55035,4313,47088,51304,40352,55280,97836,72243,24997,6882,53845,84145,71176,48564,58327,46380,73653,41740,1932,29867,10250,88650,38446,36875,78710,59000,10606,60129,19800,15565,15879,57207,26678,51368,84424,90585,66282,53090,38327,48470,1051,41172,96766,31395,78183,75134,60556,98504,26997,85226,19572,11535,15983,25076,57665,99410,95844,49217,11564,57589,57094,73549,62220,55429,90997,54034,79760,7110,89293,8050,71706,89718,69100,94689,16805,56107,38849,33696,89482,86938,47499,61454,80514,43282,94688,44157,23029,83679,50097,32902,93572,1573,17507,36204,33169,17628,47810,64111,53126,25057,64396,89278,90794,87401,93171,16687,1714,52147,46079,63857,97733,56646,970,39384,2223,35058,24764,95526,12958,48189,885,57204,97577,33227,46603,53343,85738,65182,27351,5406,47469,29287,29515,26533,35582,42875,11487,6543,65321,21694,41685,66962,31529,37693,42420,42109,83573,12063,7456,65679,64776,17917,46288,61433,31935,4601,21545,1564,92311,50560,7241,92188,88194,68253,41322,16164,76245,43542,68792,49517,77555,95423,76921,64475,45774,8258,90671,92752,26287,91335,51513,51839,1138,60104,15093,19815,11299,45812,5891,91144,83742,75073,73222,44972,82946,67725,77214,88930,8088,91032,25000,68084,61083,3742,76272,55584,28842,21019,15430,8703,36089,13801,59779,36242,67782,22522,63087,93896,92115,54640,46987,74478,25626,51077,49274,90847,2508,85649,37188,92424,91825,85954,64627,94525,63450,69109,83614,62935,21351,66177,62467,86889,93629,17529,50590,68316,75398,66907,9219,20014,22663,92199,3335,66430,31282,85609,13364,91204,6871,75056,16076,99395,82940,61705,94031,9152,10688,36706,20535,76241,13945,63867,68497,56743,7510,19599,49385,19561,70658,28921,1036,21558,28054,43680,88870,77727,32958,67506,26898,63647,11560,97600,94849,9780,75998,82025,87718,88758,92958,18609,3895,3498,37147,45066,2386,958,20797,22473,79594,31020,62801,6428,85427,12496,13853,84965,33315,19107,26772,11337,18814,17572,63115,42925,59235,56384,88245,66433,5609,98747,49006,26624,84402,90178,10756,24153,68179,42754,84764,40793,20949,63584,35256,82767,83280,3120,17677,23957,40496,68687,58596,29333,54163,2416,60266,66901,95524,88415,31461,64040,33620,6507,93336,40479,60717,37416,56023,9674,49835,10535,99936,68584,96045,24495,52364,73446,63907,24934,12459,14352,69154,51445,87734,17237,71053,84112,24968,4874,3676,79598,92663,55789,12344,93413,93311,69846,39313,82246,22065,76726,80202,8507,57995,79925,23762,59035,39845,52433,77637,39649,45548,56829,36717,49742,45784,93780,33688,83152,28646,44151,22071,18572,21377,93746,77174,32793,8887,18554,72523,56131,2619,7186,8478,69293,24351,5560,74196,25130,11208,66953,22889,40689,42503,99493,13349,9540,56029,10041,47696,562,24960,25458,86331,87498,58980,17412,34270,10579,44456,66385,8187,17120,74894,93812,63424,4688,33159,34621,28106,77460,55733,52638,48905,5181,26813,10910,56639,58719,37348,11733,33629,9145,17494,2570,57905,3209,81080,78798,3967,78429,5921,77890,60458,77209,98805,6437,82020,11459,11036,3991,2883,93076,72777,27,34926,5378,93014,40135,48399,25961,39381,16066,96221,65626,93050,76084,66143,16826,20954,71903,9434,40601,79445,99248,38277,24375,57434,26817,22078,64165,14636,65322,11471,18593,56072,43521,62308,933,90311,49124,1709,36399,52915,37444,61261,18357,60373,68597,86211,38352,3475,66506,37007,91081,91579,36891,23004,63511,38796,19998,14318,69554,60636,35144,64306,61925,45833,41056,68856,59580,32049,92090,6628,93347,10424,25368,89147,79370,52770,99735,30172,93825,88447,15182,87247,59710,34140,31037,87960,75025,51685,99631,5930,39204,95187,39222,4606,48136,36354,99597,68472,59519,95579,54503,17943,93338,48952,67617,87829,30772,50971,85541,37559,50491,43408,22921,30495,73483,8775,56617,10213,70452,50236,75324,39803,97487,77266,19006,50517,11037,17151,70036,84209,79025,41178,45729,3627,47627,88765,94838,97811,62304,97048,38957,27617,17377,54051,84,57352,11612,29742,33165,68557,19388,50198,5743,94308,34620,52651,60160,98501,27705,31296,5829,96085,72098,10219,5742,82533,59567,93567,69635,15674,62257,30860,58074,95777,37360,5396,7736,59010,268,97075,48407,30112,80782,72042,48433,55578,74652,52479,58089,68169,48676,42442,36895,24944,57356,93281,3960,60774,36046,13485,40200,76873,92723,11212,32057,29882,86522,49857,48040,66712,34662,74784,66957,72384,8223,88364,49771,46441,84988,57159,27179,47342,85056,1136,64160,37868,14496,60344,67903,45180,75399,93540,98616,92410,58751,4936,59012,41987,62566,25506,77358,85502,35309,69288,80608,72128,59461,99153,60416,44561,34168,50019,8492,88444,57435,72882,51725,50459,86768,11315,96980,24065,24301,31663,66379,81509,1953,79452,71440,87690,3298,42508,28427,68641,91587,91171,12643,24675,65694,58443,78743,86152,63827,14168,3162,92012,39823,72975,75753,23580,13492,77118,87955,27181,51017,93290,72064,9403,73194,80331,49440,84172,88478,28751,41467,50639,29168,9677,96143,6845,43961,99109,25741,36764,67729,50318,31127,92122,89530,36888,73291,13799,2425,32953,38408,861,5655,89009,66855,79271,75598,35099,73428,79307,40550,60409,50800,95058,66845,530,2644,13655,33607,66781,43918,8539,88230,85963,98668,38595,51970,49509,72311,25181,8372,3125,123,97256,33605,19872,56532,54472,42931,51810,14202,44141,28438,65546,46542,5989,48656,52794,21528,18802,57201,22750,10562,91610,92094,12592,81088,80221,87671,28665,35955,33420,40977,74545,27145,76067,67977,29153,12371,92588,93455,79227,58626,51235,92378,67066,86481,22613,23839,72476,56886,47242,13798,68495,91466,99563,91956,47089,4758,98878,93123,80446,37180,19477,55873,86354,24044,96229,75970,16914,55195,3262,63544,12657,84638,98719,83595,810,73457,5635,80362,47977,618,6626,28541,88268,86834,97165,59449,92445,19958,45326,10361,57516,73707,14916,55313,38615,42440,53456,14117,30645,33861,15434,65744,95403,2102,96499,8551,11921,16178,15344,65044,10590,35322,64292,77748,63721,78787,96881,69720,48892,91554,61328,20630,83938,35336,85480,57816,21518,74624,76986,61978,54939,41958,94447,59141,63611,85474,43670,27789,17051,488,69719,87561,7041,88409,142,36369,59656,52932,40503,31490,70982,66679,5639,97297,42121,66637,18293,22328,9151,34907,69684,95440,82031,78073,45862,24417,74527,67008,30428,90684,18812,56382,82228,69723,95121,30921,57655,80317,26875,66632,73833,58687,45297,68889,35802,48250,75448,71726,74180,82033,27043,74128,29187,55571,60917,18739,6874,61817,983,73502,99844,23751,64650,67013,78119,2150,82436,87674,87651,8554,53703,67888,30987,23077,38013,11624,14811,50134,21603,96578,73975,88638,43836,29464,58793,54823,37751,44746,49473,64874,22320,10879,64281,10941,65438,1105,36461,81943,46923,63894,34845,98134,18106,84698,14300,42472,37702,7252,81190,8532,35994,1976,39207,43807,82524,49281,99963,45850,64835,82579,43426,65516,89366,37554,22963,31605,20164,41668,98301,30225,37974,76661,69583,61406,73717,89795,78239,92004,76991,5722,96643,87456,41713,50486,8828,32998,29034,34753,16533,30048,55512,8173,64088,34603,37396,11884,33220,97610,2888,33564,47201,42341,44266,41577,22993,54467,60714,51616,83077,52424,32747,47224,46770,25849,87532,8406,29986,74701,34991,99926,57284,13657,5628,28035,61865,77352,87900,10925,18212,82842,23435,27512,87289,15013,80723,94711,17250,72170,8601,86166,4192,99640,48692,57006,41648,8282,40702,98348,90247,50614,6511,65412,48017,73251,62341,52542,48140,52508,272,47399,95432,7436,46546,91337,85923,84429,44155,82227,19367,19099,1384,38186,32204,70400,27021,67136,57259,62099,69336,24295,22405,99001,5335,78494,81629,3332,21003,8856,84920,54555,33829,5612,40089,24692,40776,83255,19407,21707,90019,55598,65836,54011,11812,12633,86230,5803,20796,64810,17805,17605,4153,5192,3794,87707,13015,1505,53429,51160,31349,11914,61784,9157,27888,61049,89845,59390,94399,24626,14486,88259,57068,14140,53026,88942,2590,96406,38817,96218,39517,79388,36269,74081,38334,25742,68663,88482,96490,64946,87157,15474,50847,23186,94310,35354,6918,58328,84758,17057,83095,20537,97569,1965,96740,9077,49371,9413,20467,67381,85365,92490,25027,6215,96332,81613,58575,11250,42393,4094,67569,77950,15835,13187,7233,41330,73882,9097,65668,21150,94608,18042,30089,66705,62742,35106,79287,74450,28327,87605,11923,89465,15943,78952,12441,64899,99452,14194,30083,95918,26443,22525,28756,99680,13508,97922,69087,72721,36935,81432,29346,21865,28076,1927,20585,18766,80011,61874,44045,77086,36262,27605,83163,92846,40113,69321,57945,90421,95761,97615,20433,24082,48904,57600,40637,18989,44648,45764,93329,13886,95931,82213,31731,27463,68245,16452,1697,92945,77287,71520,40905,31593,78575,568,50308,12299,9836,32728,29375,20870,27013,64017,77558,59124,85419,36588,349,13608,16069,6121,24461,69908,17106,67002,74617,82190,17771,1357,1477,64080,15137,31750,58568,92254,58219,39742,4320,17061,16550,7773,76326,661,22436,20118,36263,34914,64494,91832,75909,78713,24433,51191,54934,23058,29315,13338,46952,40134,46516,38219,89248,37107,53729,97828,8810,70298,22101,29585,20104,47480,97112,81298,93492,94196,32437,74062,25970,39717,27925,4741,14532,55111,49902,84681,64969,46223,97025,89441,87555,29222,59056,60949,65287,22177,77463,83346,96344,6645,65436,93432,92430,98453,45053,12865,8437,51553,76534,73419,56898,10284,26517,21798,70442,9592,93022,49915,93079,39679,13647,52739,92368,19143,90686,89887,99971,80219,32845,86541,33442,23551,80891,43646,47809,62151,38133,92446,75571,7961,26671,95457,4479,32248,65340,29990,11173,20217,61108,90689,11357,31363,51824,34384,91759,56050,15069,23500,94807,1989,81106,10198,83747,78491,26889,57545,97686,43786,79515,21832,16692,22532,72161,26203,14576,22552,61287,85506,43621,73400,61974,34573,17486,27846,82006,46300,81484,27981,65267,28219,50676,22206,55660,3941,80411,96147,2859,6597,34099,95636,25681,99490,21144,18782,93811,81184,68944,913,72671,34807,7676,93741,38858,83464,35912,59159,92950,83182,84095,97274,62086,22151,25842,30295,5166,44116,55378,92737,26767,98867,78356,85019,2177,80822,69380,87138,26892,79352,34672,7270,73915,59835,99985,58322,34546,83606,47195,65710,70378,47397,34572,46453,421,31860,74895,57953,4073,15135,30015,5020,91788,45328,14272,46274,76487,93216,44705,68708,8561,84241,15700,55455,35625,58139,29225,10958,19851,31547,78659,69276,84873,99790,92855,82137,53927,23940,4514,99000,21496,96046,52222,79103,6983,60436,68153,96275,74822,39656,21987,84342,6899,56429,75691,87871,11642,14788,8018,15844,3017,58613,84974,43570,79405,75980,46651,52510,5176,38332,13897,78634,43999,83851,20445,907,9995,99349,50752,93280,79968,53312,93231,73836,32946,53665,52108,69541,256,68679,24216,73855,35916,7850,17391,5487,7329,4106,93585,73268,34336,6208,20119,30741,43310,25303,2069,54465,79211,30660,28826,37743,4188,57756,29080,95822,98748,97573,3823,42786,82370,80047,3244,15907,82194,82643,2635,77613,25649,52238,85190,8011,75608,52784,11362,56914,49270,33571,95903,52148,9281,25235,70120,70994,33113,46439,92084,97185,7395,67172,15648,19280,84715,29221,3855,67106,22469,6291,82481,10334,65328,86018,50953,95110,97338,43647,37617,14130,88924,73338,23199,7493,14326,26749,59771,77705,83884,78134,28329,61442,51082,38585,33645,94767,83733,74070,48523,19704,72465,53121,45135,51064,22538,28394,59827,66231,24198,34785,71632,21785,72375,745,70939,14901,90580,39810,51556,35362,73206,33881,33059,57876,31444,32618,33043,27473,80720,5896,85524,52809,42968,98403,6921,77809,56193,8401,33731,523,54867,62898,24192,8116,99126,13982,43406,5754,41190,2601,45465,96826,97958,5821,70952,35342,11368,12911,10018,95686,44829,4118,9186,47072,28929,53878,82920,76890,19468,4634,2591,88443,91963,35663,83145,76557,33748,26868,63251,479,71011,89623,54850,66338,48704,44135,63209,73055,2890,14039,50661,49214,33767,49209,58783,34391,55069,59384,60000,61622,92436,28325,74043,70390,83558,98519,64499,39553,85663,91492,84356,40715,92341,52548,85875,77241,15850,32536,51317,53732,49036,60204,94627,50567,37169,55427,63310,84880,9394,56020,42024,87161,36506,82955,13191,46736,24670,92817,4831,15828,94909,14050,67863,83794,16161,70910,36438,19436,82558,17663,44009,67105,89595,16444,39093,1421,92826,17454,54758,51820,59532,11645,58260,20610,15647,86609,97144,14498,13995,80596,53798,3184,75781,88921,31778,26073,27106,93255,47124,33992,66090,76407,2018,41532,58030,90399,41456,54366,47139,96072,23524,45125,77535,63525,69638,90573,46864,83038,66905,48236,79362,14708,43070,81816,16274,98649,18690,61531,85813,75876,87290,91048,10650,279,15187,719,30192,42245,13533,30579,38003,24148,86820,99789,72538,97888,20383,32724,28784,80205,83454,79988,7535,30120,72196,86993,28290,94454,88412,10504,43200,8271,244,91020,94215,11785,48153,14515,52703,72894,92910,14387,37400,13504,44696,24592,38129,32748,29678,22954,53135,4388,95796,87305,11353,41843,67276,7787,9804,38874,40682,68057,45154,32526,36816,41791,51252,15295,87522,18779,63516,67929,29675,6849,12211,73544,52766,86536,20613,91367,36220,24915,26522,8574,53316,79306,18999,18514,27301,67858,8563,90750,98587,44703,72261,59954,13907,51330,58271,47212,40581,7572,63009,81905,63286,29773,57349,547,11398,27967,12085,71539,28709,8911,27641,69163,5735,30036,48520,6441,13313,19938,69531,53586,36534,61382,42053,79918,84622,93903,84326,89771,35735,16006,82470,98398,74335,55687,94331,52799,75406,3251,44037,83431,70513,19674,94835,81013,27819,69444,15484,41349,85967,55328,13937,3128,79508,61896,1192,46616,61331,65725,65366,61492,98689,74269,9146,78341,56928,31680,17544,83878,66042,44623,8961,8541,93967,67161,19551,11206,10022,89761,99234,33033,19779,28344,32451,25389,89998,60092,97722,46176,33841,98163,47923,24839,99096,33318,71773,52044,89740,13858,44195,62933,86861,88803,46936,82896,86049,31570,8639,91636,22942,91539,57663,14191,28292,43448,95581,66124,32875,47324,70914,63217,48075,19028,23694,68213,30892,81716,82815,96912,50256,12780,12184,58618,76901,72839,42795,30090,86495,27595,38993,86607,38981,64241,93650,83335,93437,80360,1062,48718,72809,67314,68404,55153,55943,64213,1107,93464,82326,3980,28795,69824,15008,55926,32753,94135,40770,40624,18994,71136,93704,75473,43916,48180,47818,51147,25980,57416,82268,15804,88496,24112,73956,37983,68855,6604,74251,20639,49202,16619,47485,11604,22198,27406,39852,23760,38115,74393,26038,90782,97904,15456,44670,95223,98604,4439,26315,24619,98356,81644,98248,32895,98338,48956,95637,4175,65734,72749,89716,29855,52722,42200,13787,46110,94501,96439,82608,89911,35118,52720,25933,99945,76715,65579,35645,25279,27780,50906,582,22626,69256,1275,28567,62141,86896,22641,43003,74938,22407,54040,40861,20514,90636,96939,35114,76675,92058,63848,40256,45262,84953,92761,29302,44057,72863,33067,64938,21655,46112,416,83353,69775,90579,2268,19269,86256,569,58152,64507,19613,70987,17078,38116,721,48715,21643,98447,86416,86069,300,71398,32966,78311,54635,32654,7279,13226,6238,87877,83,99922,80200,9691,68601,31950,22704,1572,82440,9680,70238,58601,6756,73165,35687,54937,26924,84336,62648,14664,44203,54604,43446,1739,7333,57738,91391,2670,25414,8121,58484,22822,20733,50234,10849,97087,75576,91937,92077,13238,13134,77570,90377,79656,92200,29373,29164,20950,9854,54284,47663,15178,71381,28653,92803,7830,37208,45939,31065,21438,24035,35442,76510,73991,57915,82915,70704,62454,61046,16232,25605,56564,75095,17437,2320,44355,58351,32455,70066,60366,4011,45085,40418,62474,81010,61263,8124,4495,53411,36750,33512,98894,71342,49068,22227,82450,62825,4114,64569,88509,1712,7421,3919,25855,65815,37426,98671,85476,88857,95206,3580,15940,16929,72901,32599,24498,83399,81256,76971,58821,2443,89189,97330,49148,71105,19097,73828,98269,48455,42425,56035,37028,36436,99120,55230,66778,31176,99425,74173,68834,35448,79818,88088,71414,72891,3095,88602,45573,85672,71988,3972,23967,71256,29831,82622,32434,26109,66563,29202,81495,40766,72425,76719,97506,20259,22035,32121,39723,78111,51088,8331,75565,36737,69840,59176,89307,91954,71676,29746,973,30534,19675,74917,12467,47843,48833,47648,45584,36629,87382,39240,67673,41901,41263,39892,24933,30589,28891,65514,33653,60367,69300,80419,63915,83461,61197,77221,12582,47052,53658,32290,31669,10217,23763,2487,26213,45901,25558,969,39468,53638,78388,77991,49597,69928,88564,36480,70088,27000,40756,65685,21458,85101,83528,43488,49562,12884,75988,40985,372,66377,53849,85283,80513,25051,14752,49317,37965,56800,13261,79702,95280,66538,10538,23103,51728,51736,99864,9312,34332,92030,40598,28384,47146,12608,34182,74514,81962,19956,36009,38819,85282,73479,9267,45724,19001,7741,75126,40821,25307,16618,79394,55555,36624,67427,95032,55470,56342,27824,29864,41827,30105,95185,28600,23579,38210,88536,95833,8137,98802,27580,84046,5439,87973,48814,87158,75893,63754,15709,95994,25353,91401,58086,57469,73280,19433,7247,82830,8247,60690,10662,76549,30452,35500,91131,57593,29088,97050,6144,39037,63914,78542,13405,49438,31141,74410,90261,98855,55443,32051,10757,54102,96917,84421,78692,22015,25491,86489,10291,46656,6053,18466,80488,79564,62499,84637,54547,81359,18253,41749,99932,26277,44527,72712,66159,73390,15084,44690,53217,97908,36509,61000,16630,46608,55417,64625,50702,54159,66135,39876,91728,56174,89847,5234,54799,8454,32868,65747,91153,68819,43352,69661,93381,97485,50723,48895,30493,61133,99898,47501,79634,63022,99613,92857,12951,8034,80014,57081,68218,84368,63175,13053,47948,52908,17362,90835,80065,42505,32008,77315,98592,14171,50420,34582,15652,80250,20987,40737,21459,51286,97026,77744,72540,45035,66964,59481,8939,17464,98875,94592,60936,49320,54413,94540,62640,3022,32186,37981,71484,2488,65701,561,11954,24162,73546,90387,68182,46727,14840,55529,23271,28639,56418,74509,98031,60243,71339,77087,43039,58173,70240,44786,53248,8181,18730,13358,6567,20578,3391,92420,88739,91720,54337,19005,21260,64401,75154,54702,18047,13957,86590,6894,13374,7417,55347,30583,61851,38204,28072,10853,63982,79060,79717,40431,79836,6906,20655,6116,23132,7393,55392,7601,7866,13499,53492,9849,31518,13443,46178,29764,3714,76704,33666,13368,9380,48353,33967,34006,23057,97955,84352,76736,74988,82891,48493,53301,67180,51109,57528,50398,66982,29382,68011,26603,63726,86863,42833,10666,97394,21539,25586,27017,84902,19196,13466,49701,80256,75510,17822,61310,51403,5273,75946,87472,83349,52707,61511,57784,78299,75201,85236,79698,30288,48571,86862,91981,90541,53752,37398,86824,86430,50812,1488,93847,7227,47497,31711,77508,64850,90799,75041,257,58477,79079,16077,62747,49631,14619,2809,87359,91657,21080,1238,29772,22561,8919,2977,7810,12404,95069,32846,18968,61595,88643,6753,39329,83391,11202,52893,92092,6284,94609,36536,74999,47723,11732,19206,73574,50736,36809,28239,45393,93343,63196,81592,67514,13269,46967,22679,67175,31690,5385,51991,67681,49632,47693,85167,35206,16143,21819,78287,56183,17835,74658,3569,83511,55419,31089,99679,96369,1137,88397,19052,80706,64728,65428,33217,56527,15147,61956,44573,48627,39948,58137,54760,22297,49772,96894,27876,64549,54205,70506,62059,50667,4710,8289,4652,22813,68895,98183,27364,87548,52903,79927,55867,40818,57289,95224,70616,36155,71792,6134,11538,94055,15347,69071,82374,48843,71630,23916,10923,68311,62598,86527,22410,37972,37209,43496,17557,10672,72816,69911,48609,8926,70322,69210,21574,88774,50441,59752,7015,98282,91085,54187,94979,4307,12109,19512,99412,726,55632,4459,21473,45594,6660,72630,18817,96171,17315,39533,78375,42259,48207,20303,95127,29152,61545,19004,61229,79121,64828,54232,21907,14161,57900,5062,16907,97590,87904,77743,53273,25911,16479,3002,10954,83060,34212,39208,41873,37203,79001,28981,55803,78220,78248,11617,42311,52007,59340,35152,76962,9598,11663,70657,98311,67,76768,82391,3722,11568,57777,45055,13931,98362,26453,9853,95029,53281,60857,83084,44385,70213,98822,33989,43822,20129,22282,93954,57841,70263,23674,37429,79628,99796,32815,74728,21944,89527,47941,89783,81936,38167,44243,31156,12313,11349,63993,14214,58479,74809,73450,11148,49645,82616,92806,7121,96837,36675,30107,64656,1493,69697,45923,7387,87319,41908,73525,66991,50230,29588,69119,20582,45184,43794,22588,9805,63188,28285,33802,1769,44887,86088,76146,47283,78648,99137,76670,11474,52912,776,74052,52390,39036,8805,21040,40915,66186,67287,48105,48235,30050,90634,35037,25882,97567,75922,91368,56167,15498,40241,69639,53408,56645,36225,8459,72569,91079,33663,13307,77324,51096,77899,32675,86945,11529,4212,62871,26934,4597,8211,36407,85952,49305,73506,85824,42075,41471,75318,2083,67152,11963,63218,8965,21236,22577,15712,71448,76984,91007,31340,6666,23299,36882,75182,69327,20074,94599,88239,42242,21378,50340,9657,76259,12438,64675,71124,83972,93440,89203,36129,62869,66005,74523,89614,48915,52268,40980,4254,14026,8605,89929,63314,79427,57250,39339,37521,31916,5827,56920,1531,30600,85242,62615,3787,72109,23922,65686,94349,12704,5607,21910,50015,28460,83590,74477,44383,81059,75902,79934,42426,47026,74123,58277,32232,23147,57437,30886,86628,90307,78178,69740,64216,36554,59368,48332,63325,96644,48263,56762,82303,72411,97760,36275,27823,81437,86016,38733,65509,97640,44279,2984,56361,34196,57821,58435,87538,49292,89948,92837,46255,97847,47590,65399,91394,15676,54864,19714,49382,32565,27008,45037,13952,11400,37475,10996,35023,76702,21384,78207,35537,79166,23786,76528,15722,19194,85807,54360,50852,72290,68826,22966,9715,853,60318,27828,13626,48807,40519,26586,32947,43874,15168,33555,81904,36212,42403,86250,3215,43781,93844,73865,17452,10862,21006,17599,2931,3222,19856,91484,62227,35360,67933,45336,82696,60385,75181,94131,29098,13264,54033,69508,10088,83684,5277,73012,16665,86915,16294,83649,73600,13481,48482,96586,69106,81770,22415,44655,39219,38552,43112,445,94317,82496,76564,20045,38040,41445,86773,16502,68030,30738,48280,43121,20534,9366,83432,3156,30195,53003,98511,10095,44320,70816,36026,31696,93908,39556,29288,25029,88092,87724,69012,40614,59890,26355,18236,45824,36447,52971,86332,75513,62063,1208,64714,88372,87297,21287,32085,35580,72221,71005,68050,99687,61567,67696,22917,41373,35392,67279,92714,47455,9316,3351,32931,23362,36810,58320,39247,29791,18967,28156,59910,84608,42832,1620,60294,18310,65981,4800,90016,88034,12019,17857,24109,52666,90676,20774,99221,23070,72467,32737,98387,5584,28796,45501,89681,99858,46591,96536,1766,96260,76645,26388,44783,55886,6746,73181,77359,19962,63164,56549,89706,49787,1475,71714,71694,85453,36492,42768,20147,21436,27905,19933,5815,78065,82467,25559,94664,48441,72597,64061,46433,90681,57119,46158,62408,54903,63678,49356,36148,95071,88983,3885,33086,98216,88170,21908,43403,95670,38920,76751,26440,14043,44875,66658,85881,68595,3271,12866,57903,80257,84981,83075,58815,97886,20133,90823,47554,89825,74800,58087,40170,37723,57233,81862,65900,89979,52820,59897,80695,75042,40707,70202,65029,20877,6737,54250,92904,42719,46828,74857,31299,96677,60689,21683,1579,14940,77437,14424,22404,48950,43885,39480,10428,23727,80958,63335,58338,98450,66123,44078,12984,42493,8149,76903,96803,13135,2728,38711,63635,11497,61174,2760,33384,63461,17798,21519,85150,94962,63614,67966,75495,92514,92272,51935,99598,39442,51996,23549,27873,57872,97768,54407,81304,27201,89753,99274,51487,15094,31032,62518,23229,62306,23826,5526,96327,74042,6758,27491,19559,26531,1258,92843,10867,61769,33879,50312,14427,17079,54708,45811,75350,95653,35997,38620,62120,33395,43787,36669,80652,10124,86664,14734,18041,14344,28141,74075,68734,26159,11817,71309,18312,74851,78606,25868,37578,13718,49647,45367,83156,39922,42884,65003,79480,18093,59762,20476,63649,77356,62914,78040,50920,98969,57999,12936,48765,50924,82448,36820,71181,72785,78497,23422,50364,59702,25680,49436,40782,34258,7916,11106,67946,48151,92276,44992,34089,71294,32924,91921,71722,39987,33053,1476,4065,31247,29282,49730,64493,76654,80164,16887,66242,25304,84348,12860,36028,61015,10271,70405,19988,27511,75746,64775,56980,19798,10824,7324,97265,66411,94053,72423,26927,50502,97518,21070,66666,10403,15447,25748,89542,36960,70492,6295,85197,26095,83788,8977,7970,49032,33570,46238,46060,43210,34844,41213,77084,99584,66250,36489,39512,64698,635,93044,42684,5478,15634,55540,94783,1283,57084,99150,2679,72136,18416,66922,35901,25075,56601,77980,48208,63002,36815,47487,64508,1354,90756,50153,23067,10393,25143,8505,77537,91129,20291,397,92874,15465,56048,98242,23322,13286,16821,99653,61980,83110,5724,62437,25606,57664,60663,46330,98741,71070,11922,43292,71625,59914,85208,83079,66391,6210,72917,10815,30716,90265,53791,71607,59119,83202,34334,58303,2048,46062,51937,11422,52943,5410,20335,73583,19650,63984,84297,67923,61869,11394,48144,60500,56370,11771,26343,51446,39280,40451,41327,57383,11025,57893,8450,46627,82070,46094,40004,83754,99964,94964,91850,46141,23496,15236,39548,25108,38253,45265,56407,75698,94060,79196,24039,34616,70131,90815,19705,93243,35989,33398,36245,74618,14958,35782,57105,86005,54332,55613,17928,11762,69733,19993,32446,2040,81450,71214,76307,36104,73333,41291,64645,32740,48705,58170,27207,165,13150,85752,61361,539,71525,59978,76426,47440,92898,60599,11210,63956,63402,62278,86306,9066,60797,79757,1491,2639,28766,398,69379,1429,73195,46665,80570,43407,60698,61601,92593,33019,39638,25874,67220,93463,28301,50454,94238,14802,13043,40185,21651,92758,40268,29233,25390,26067,77468,36590,85376,34923,59514,4501,53078,86844,10669,96620,8509,93100,13117,77310,35135,63720,26884,11767,14337,31578,46868,55234,91370,58234,21439,67086,76049,99422,70358,99210,67097,53686,81707,37483,10035,24186,93529,83281,54542,51498,22927,43060,54302,30946,68123,74781,11780,9056,5069,76504,75262,31855,36109,26050,18706,75811,27472,90323,68273,21041,70320,23905,76354,98007,66586,63770,54672,44284,8997,43330,51835,43769,32982,27510,47997,34540,91871,44936,59711,99734,7356,13447,41345,99140,38830,70905,69565,93480,92301,31632,25623,79365,90026,35208,84714,26840,71989,22202,42382,42770,97154,81381,6733,56314,74363,32572,32745,49114,56957,6167,37126,17167,73415,22758,3376,62219,60648,28827,71320,89374,78187,3796,8052,25411,34087,42575,16182,1736,47743,63559,98503,19692,41728,22958,32573,68881,29113,33508,76022,25694,96908,50173,86156,2028,93414,41836,23627,794,20694,23847,13871,94710,38514,80330,52522,36168,46437,9470,96746,53322,35819,94975,16806,90221,25871,92749,61588,19453,53422,48993,60221,60034,38746,21316,55022,27281,16727,87357,3881,81504,77060,23824,5345,16060,17815,5262,7351,98628,80665,76154,9171,91544,34824,94653,63204,2896,50091,85271,98910,37427,49372,15184,24090,51916,5642,34668,62916,87882,2549,47958,89316,69273,33719,31532,81095,72266,31467,77758,90136,38328,3810,61152,59609,91689,76028,65739,21790,66317,3921,71594,62185,69706,47182,13891,22370,18422,95988,48736,85714,92052,9585,46657,91504,51999,43484,70563,63026,12179,79052,38727,16973,8326,7450,95449,65622,45753,43731,45014,59671,3725,12772,85839,65912,1425,65356,61062,575,66389,20397,3779,42412,23011,56545,34771,86894,27600,82063,3336,55291,67534,16455,52092,6852,73869,93631,7574,49332,82745,35251,57786,16283,74568,4230,4274,25581,29965,8259,40646,9840,23833,50008,47687,2497,40222,45134,42003,25213,21193,32021,44930,42485,85072,51392,66876,55519,68402,66477,66724,19114,12707,16123,53387,5624,19112,98075,66667,61818,48063,64474,55343,23052,33061,69633,70909,60430,76486,42389,63669,60386,4544,66690,69632,88137,64459,1606,15098,35908,93584,21106,33698,67232,28227,48271,10195,86908,92162,70434,88027,90380,17180,77386,86155,72873,68052,38690,94136,24942,81864,52807,21768,74559,90897,31394,13777,15250,68973,55355,13796,97425,80083,9957,52045,27593,21195,21605,77290,78995,52924,4619,83168,83438,67251,2417,68984,94626,21461,83586,67552,49949,23538,11203,49539,33827,63158,4111,36577,25724,49518,17902,80957,77855,96195,24097,31574,90086,46822,22274,73156,81954,29979,19051,38824,74813,2511,14363,44128,27382,54498,74395,41494,10565,36622,32916,90722,97846,23350,88897,78272,76942,62983,8960,42521,83974,20646,4295,10893,60399,2662,64189,59358,91069,42384,77135,2744,45636,52014,57929,98996,52118,17546,10888,84499,18763,66133,22845,14761,50094,87340,73396,22330,96037,13258,93744,42783,63135,93922,82004,34170,6093,67283,96051,34311,9872,47910,19563,84826,48684,1380,58176,10723,83469,97216,33196,27144,71846,99262,35778,74684,68811,55034,18325,14373,92376,77781,25391,35096,73347,39620,96690,90151,11189,88452,42067,51148,48443,12735,91133,56801,91212,46192,43284,20172,56857,35101,62678,81057,95109,52778,80825,33609,51927,81965,84862,19175,28800,39310,14580,26246,93254,2315,33452,75816,78535,84160,92181,19949,38758,71576,1685,77521,16111,42476,20843,94126,88622,33830,84979,98775,14949,45974,83997,16750,83946,18755,87670,55829,36475,8305,75256,40296,24536,67773,72129,92704,22855,29849,47592,35364,86154,96582,79270,65552,20382,80494,46980,74732,46609,34223,60321,26894,92032,17097,44845,38657,61305,36540,60351,4470,79377,64146,70714,58895,74719,85555,77419,4977,64856,20361,48878,41846,83303,35589,63992,79572,34550,57520,16475,69611,9870,66522,22483,88207,43601,46450,31695,75678,96654,69366,98904,93965,94374,68729,98280,95800,28451,38862,67068,71776,57563,96308,49135,70374,22694,61998,69430,79347,58010,80384,40787,51342,2309,45587,61738,91551,83359,30417,14000,36101,75681,45044,15329,34131,81573,60198,12561,80971,10074,39781,80082,18641,31303,21713,4903,65180,50776,30902,35740,57024,43538,63796,64534,97455,85,81426,43711,29709,26419,25003,44562,65273,7923,45983,29528,94625,70597,20125,58111,9652,15496,11228,45758,9271,93866,87697,63936,24306,8952,9141,16551,22703,19797,40800,1812,22776,37898,21111,35483,98316,18664,48525,6642,69873,81382,4564,40786,18580,90693,88687,42891,51909,79754,74480,82052,5153,2200,8989,1080,64236,26264,45645,43900,53684,82057,74519,97381,55382,82439,23082,32196,1121,81612,36704,80685,2185,43490,63668,10225,1382,92088,54157,73111,75916,88222,97162,30974,58332,15651,72598,62218,59078,42419,38599,46277,22547,63768,895,6621,91435,71825,34648,7108,71239,39766,66523,43741,61894,15589,67103,30978,53016,75952,54892,49074,85827,92091,30399,22175,52525,96177,53040,1979,98017,82405,85268,40933,56218,88966,91449,92638,22261,39757,15920,46318,48015,54226,44814,65874,60933,74691,51001,74163,29298,27391,32348,75734,97587,85309,72158,83385,34635,13502,74021,45738,10821,98411,79914,29066,72094,27117,38573,19089,86300,7341,54717,69590,17842,56150,12748,60343,94657,36325,26152,16148,46924,73840,41408,50677,7584,10639,30043,7256,61800,51730,18479,56115,55264,53869,36759,8193,4965,97126,70615,31149,49459,59703,23951,39079,63316,32873,68801,75833,33849,79674,83661,7147,69865,7123,4256,75522,24604,8484,73577,66731,62213,96600,62797,17722,96269,75965,26368,75515,90212,92555,86458,80601,36934,48726,43168,8144,33741,57292,70130,30281,32589,80272,7060,61153,81264,86305,37105,16871,65144,75111,40172,3155,12902,77998,28414,59887,95479,21007,55038,36870,57518,97462,85713,28915,37009,66105,38910,492,49946,72063,32382,89800,65269,87984,81713,68563,62270,32500,85299,15839,92229,90118,79302,83198,15776,90369,95363,68174,98292,33756,47367,40074,13560,72313,26717,20267,28865,51700,43041,14030,48691,47104,74463,92384,90979,70693,9200,56569,5611,22314,25386,10366,41239,68773,68206,35568,65137,27191,71815,26947,56877,14323,35517,16218,53368,27464,541,86528,11965,20529,96447,1472,91454,68421,18633,56595,60694,45938,88493,9599,50242,158,25587,47126,50478,30861,49568,66392,15061,69284,95731,89668,11926,46970,86064,16888,13055,30730,42907,42169,30216,81034,24248,75370,98452,5751,84955,19546,93675,83348,61603,68828,32738,40632,1253,68366,95160,37032,35319,30887,72360,54865,27984,17791,71054,61366,80430,79610,57252,79212,92067,80390,52330,73709,41333,90718,50122,38544,26557,35677,10279,33265,87136,51934,85983,53990,83951,32218,47290,62277,61731,28608,28684,41636,1159,78561,21082,45246,76269,14981,13176,11065,61474,78329,15469,22060,79778,88666,51179,20053,58966,72226,47230,9420,61347,34164,41413,66438,84905,99574,56832,39115,70115,5296,69067,61190,18897,48764,90833,8588,86851,27550,57021,91349,30012,73997,21650,76543,30410,86994,23074,8849,28207,26340,75844,26618,84204,96589,11528,6344,15927,19353,78947,25079,95747,29806,4645,82772,4993,36386,5716,72765,59932,95175,84619,54720,84785,33760,96996,50973,32074,38713,75484,50294,79797,7245,7694,24913,4240,26297,11846,30324,43216,94556,98428,23508,30705,70287,15693,59058,90112,35407,9917,61701,16129,73969,16985,80176,902,26514,35315,48732,9582,96607,8714,83044,80686,32331,48116,98693,34487,80183,35958,86126,9155,70265,83662,52697,10637,95488,47488,71508,716,53107,94922,8853,13831,68903,65389,54228,76692,68130,69945,8604,4850,1540,71683,67273,47385,9418,70895,92227,43688,78972,89918,40203,3966,44851,88934,18234,60892,47898,11281,32812,94744,55269,48006,97635,49945,99024,13545,33469,61355,21940,59868,79622,92034,17442,25487,94669,10505,70850,56005,89942,59981,9307,82317,73818,93141,81084,30162,9089,60433,75485,89553,45984,34493,22875,81992,71827,86050,17347,27049,95754,3612,69391,21229,1471,63048,84658,23059,92805,25,43067,14082,37795,49055,48901,74164,65167,47213,42826,34654,56358,56489,35136,55048,87466,10460,8631,76000,44606,52371,8468,22621,4667,19881,49644,98392,96305,28058,16381,42326,49134,28759,28548,19606,85726,19485,63093,3816,5088,50871,81333,87632,52598,51714,22576,71993,107,87865,21416,68659,85917,62900,82123,37266,51074,19575,35961,11089,31203,14407,86982,55880,96468,62978,5342,96083,59139,39601,4751,51604,47354,67075,22194,92614,67745,91231,55930,18480,7159,26999,7171,63297,27286,98824,78383,25836,96833,22537,95673,35632,41793,19643,66990,90394,49405,84164,16721,65075,51843,15427,18378,27897,47172,371,13695,10263,70769,69802,98832,64442,44060,60536,30268,13946,78725,82900,95596,87816,6990,92811,3560,33435,84665,42551,71076,57451,49743,94561,37191,96336,65658,78181,2557,94618,23885,39361,37171,16371,50989,61421,34108,60746,97578,75621,39773,47131,17725,18016,95198,73931,89937,70829,24908,6607,64885,57156,57168,28745,2377,46157,63556,87200,45511,32164,73101,36105,19195,37886,10206,4120,95987,88855,50125,3660,35279,63046,14362,15584,52909,35729,24160,55471,85626,82866,39869,70133,90409,48047,78374,57629,30858,1430,42771,28368,44010,90680,801,22949,68109,89725,4689,54510,17816,25774,29681,5917,94591,37652,40246,16151,87908,8400,74729,99388,55027,71462,92589,68303,12918,24466,29947,51389,52066,70542,79952,41566,77091,3163,42649,19204,55333,47608,85349,56003,48225,57337,82229,77806,72713,51486,39173,36845,92802,39022,55304,69758,77571,50042,28982,6692,45912,39172,53823,62011,45376,47915,4022,18534,78431,44858,2911,57401,63121,6410,99626,23778,51413,95201,4627,75102,83472,55345,88977,12222,57758,81257,27410,78477,49840,54371,65401,96241,16774,22871,52868,97478,22806,13361,99748,75327,51789,11590,9991,37996,40842,19668,45391,18672,14089,16849,70837,55919,68243,56484,50789,66164,52406,93403,77479,58523,55379,16049,97966,76397,75628,58660,51962,86165,82145,12136,94198,36348,94553,94179,71648,71967,1826,75005,65426,65397,43642,92010,89160,76456,90631,25535,56346,98886,55521,15440,50510,60353,34558,48066,75791,7516,92774,23943,79509,81686,20652,35840,45408,49553,2366,99149,62644,78819,16739,74815,97421,13850,81258,22800,32752,85200,74452,77657,79020,98359,67267,93104,13213,64720,6679,27366,1559,64841,9163,95586,72974,13047,56477,16263,40723,58810,8799,43555,61258,70250,3731,11640,87516,38231,97802,10129,37803,45427,30351,84704,43970,14400,24057,71380,78240,81703,64999,25675,31705,66424,51279,25012,22476,72417,27786,1868,7585,90281,25780,227,11899,16237,54951,21489,97101,85121,76214,96658,10805,3907,95834,54904,31792,62754,30619,24016,32881,59781,22113,19264,94272,27664,56831,84518,76225,61808,74571,25480,74604,73755,60241,6735,23901,72706,98814,4678,88926,47491,64478,14626,81588,64034,66621,85227,44270,60467,69457,44969,89940,45202,11129,88636,37447,58834,46706,66573,45116,31709,5696,18548,14255,72782,36117,55626,30615,63010,5794,91314,32524,96587,7225,62761,49465,7957,97301,54311,55016,99355,24620,53010,23060,94906,22719,34118,41432,68692,23114,45228,56509,53944,59047,49287,87384,60449,10826,8511,53170,44173,92347,63027,94768,92079,1660,73079,27454,22570,72753,43789,11892,63276,59594,29029,24825,99634,33214,89567,42367,33915,87371,20254,52427,29376,36596,89028,63309,27832,48789,46117,56852,94287,91869,23050,5254,17763,31263,89120,60131,43098,34870,53788,41824,15994,3665,95973,23881,81917,49285,16651,79206,8812,45369,94873,65726,23515,33380,59127,48641,89541,99183,99473,93502,64777,7042,64998,77350,69829,91958,72090,89432,37880,34959,15286,37143,79129,1408,79282,17606,16420,32004,34526,43991,18127,38080,46240,45254,70783,13322,44091,3288,55836,24921,90018,1937,35552,41183,3196,56247,11107,14517,64653,61276,76212,35893,97642,85517,21933,14409,17643,70651,63294,86081,34109,49307,44866,42751,2178,44836,32672,48990,6105,40053,2956,76954,84330,74326,20629,29989,1550,86523,1029,60718,52684,99557,79800,53999,28537,67401,31314,15987,94239,8734,28670,74507,2006,37816,10520,38527,47227,55844,56558,90802,76140,62535,93723,69816,14489,83401,22731,10797,63790,83682,35222,66299,27998,98953,97176,56142,95202,38781,61180,41542,89829,46040,44052,91932,75667,49720,65242,6465,37577,32847,39801,83676,47659,80518,97076,30513,29656,17794,41365,50922,54719,58830,61711,85520,92939,55467,96957,91578,88557,92989,63510,71004,78498,13700,12900,84161,31622,79297,16927,4990,11183,64528,87618,76236,22563,88612,7169,68290,55869,53818,95380,93543,84108,22647,6048,54113,19369,71036,60667,15208,40078,25958,69625,24535,48723,98631,84504,56834,41003,3309,43279,37088,61625,87824,48196,26345,97004,47763,58162,24677,17406,48141,23594,33531,29141,79090,20765,614,9199,17448,26283,43215,19925,55214,45699,9120,85454,14263,96784,34374,21180,28767,46517,95167,14780,20909,29700,55631,94808,94476,69275,32900,55091,53575,2800,73970,31758,8342,90747,39493,8857,56835,31184,99102,13431,6169,24170,3850,38843,17910,83406,29487,40298,72586,61857,95663,75951,59411,50020,45918,59776,52857,88502,35892,55635,87077,82861,72349,87897,89448,70090,67474,15742,687,45876,57317,80871,80238,99020,23297,50467,18365,14296,42658,89140,54941,14585,77805,28838,71492,33890,68285,9448,27247,40386,96057,44740,94567,91702,95939,73953,62232,66810,46514,78385,61727,70717,10463,99073,5193,3828,19612,27852,57854,42205,30518,85488,78359,95007,4950,48306,98417,73371,54778,69986,26857,70788,63042,36452,8837,43465,65347,95291,15948,18141,80821,84134,89576,98955,98600,80435,97049,38982,81513,37641,6913,3865,55298,49842,7148,32990,94160,90167,95746,68771,94864,36632,56069,27720,16983,2437,68893,831,48710,32145,58583,8005,41806,20542,11664,47176,66108,94361,24896,72397,15359,57745,40517,42406,9362,68374,43079,97880,40413,83158,32261,27431,20181,67687,89361,63706,41705,47362,69212,14906,92649,48743,53261,37608,67471,70284,82331,21665,6710,61179,31592,45947,16488,4798,94213,94385,55710,22736,23366,85141,16373,83913,50864,97169,96531,34100,72610,32002,90714,65655,22128,30826,85964,50226,30074,77918,93185,62233,37879,24928,11512,78626,49398,49279,1502,37666,24590,21183,79657,49633,91432,83439,48996,74863,72853,81039,57408,82744,95574,41663,59413,30575,46075,99708,97398,49046,66181,37645,96552,52514,83132,23797,16358,47318,8834,53569,21609,20648,6687,80644,60337,56302,29952,40439,91218,70444,26536,60531,84281,906,45290,9258,28540,4249,48054,46372,13570,37490,17918,28335,65178,75358,56212,13404,45852,90224,29924,3493,91222,73897,69494,61165,40620,1662,71870,5524,32646,59698,28605,10951,13096,43193,52312,58511,75594,40454,58157,70501,54576,96131,6552,38655,65171,94847,77772,71920,44293,69798,65731,40929,99470,83634,24324,4235,46775,17650,85039,99097,10790,24972,56623,33126,55664,11638,87046,23193,81857,53770,45103,66622,88425,36580,94092,7812,6599,56534,8933,69984,19754,24927,7401,8910,88834,2466,31884,33617,13155,83579,86237,52280,83171,3415,53556,68616,16860,86153,22394,21957,71966,16633,71581,29472,72581,26873,63693,51943,63637,20105,93947,12668,42539,92822,39744,23053,20654,94401,72405,42207,22041,59158,27345,22824,84805,9408,19490,87927,71085,55796,91930,34588,70885,59469,93820,92106,75548,59935,37968,98135,34687,36530,64390,69673,42963,80032,59454,50216,46751,56349,50443,81665,16966,93296,91164,86677,26535,61205,45813,13310,4383,75240,71266,51963,37619,97751,92694,3174,60363,92698,81410,77557,19222,84317,38125,58985,23648,56178,32898,93070,45485,83599,13455,25777,72757,36334,62681,32584,82237,55654,34529,39858,86503,93293,49153,8065,4623,53194,71026,47010,94814,90903,58667,35302,89179,10694,95130,70512,81133,20915,4928,37747,69302,45497,57123,38633,91034,56318,76905,29024,17261,8321,98639,53451,92724,10170,65237,86020,65599,63882,98094,11002,9746,78387,35394,1576,14616,91820,99348,81075,25180,28120,6818,86710,78246,11942,62567,61139,72336,84628,37162,71134,4732,74331,13449,98562,25566,86955,5295,44735,93169,27237,93448,11284,71023,80890,74361,99139,50023,5227,4946,53108,75211,62533,98541,72715,77790,43783,69515,12073,33209,49576,60428,79890,811,46877,23799,16789,62150,33910,14090,55172,25267,98957,80495,14973,17588,68234,22523,22253,63948,94685,25445,62191,70197,1938,37589,49914,34543,33623,36153,68358,66099,56677,31101,91580,46324,28547,75961,21142,44588,86177,56376,79593,78279,73029,6792,68657,73071,96888,88228,27523,33793,82689,48930,83530,9765,14049,89560,95650,45406,62868,12941,24130,95557,4143,34415,49934,59401,24477,15543,93094,58299,48315,78051,17,9591,34783,1682,58447,95879,73023,7587,15183,45042,46682,40279,86420,38397,46119,7180,84729,47611,13720,79131,95748,34146,70762,83226,59327,33172,56717,42846,51083,30823,19030,83501,32067,80149,78417,86721,3150,79094,35065,68068,42156,5132,33497,47154,66403,54254,18716,67580,92946,49011,96508,87615,13156,15500,91581,91948,49283,67928,25760,50887,92671,67468,78309,83177,24123,16395,44019,86516,8416,76287,91411,45111,19806,65027,348,32552,74887,44985,82027,11753,85584,42730,20830,81617,78573,19600,15701,62418,23550,38779,75642,53570,36756,19330,89313,67519,26324,91409,45530,26456,20331,21393,89854,13354,2993,22291,96857,3099,40999,65956,90576,82092,4604,96253,11850,50717,98897,47935,88511,33143,39772,33192,35612,42860,29510,77713,33451,38104,33319,18284,61055,20229,35996,65977,10679,7979,87105,143,40115,45128,7093,18142,75847,92566,30895,41614,91905,94511,70362,90215,84787,12949,54713,62253,9138,20957,84485,82156,56412,34379,79421,25182,83125,14701,19096,59984,50363,24213,44846,86847,26002,58867,57532,33124,1294,57173,75836,93536,75000,76141,1461,35739,31604,28277,42288,59534,9349,35601,54954,28678,21098,42335,42637,97204,7869,7160,29884,16113,65405,56133,37818,66072,55161,49155,8314,66051,71816,63938,42638,10992,41090,35054,38654,69039,40243,70352,39755,23735,20389,70556,5259,33311,90951,70004,23720,487,95027,18324,74547,33586,79173,73788,69902,87291,43268,78973,74689,61698,69313,62453,15353,38014,846,4169,57208,14610,31369,43532,22514,46206,37603,15799,42155,3405,42126,58615,72987,41335,44317,52090,15416,22896,97135,4987,25812,42271,3056,92789,97,36672,29682,35454,72784,78874,85228,99345,46086,42847,59491,81626,90648,12519,11335,49652,51499,59602,82378,87847,68919,12464,99823,23899,12791,25887,63068,11032,74209,22303,3915,16361,7378,47764,9462,93722,56818,52762,87433,5771,18045,99222,80125,53356,50741,11193,90867,51754,82205,72524,64046,89537,14141,40907,18497,53557,7852,1054,84124,75229,71763,70383,3648,85938,60479,22254,42477,23608,18949,86457,57245,41431,86946,89684,99866,92153,66678,22952,62939,61219,25630,73016,97570,66960,6067,30250,92053,63157,56665,60283,70966,52425,8300,94216,55244,32073,77063,88956,53467,11650,64621,86181,33470,14564,11071,75422,23583,42089,5225,58146,82497,15667,89375,98436,23624,53654,96108,87403,7596,45243,74600,28954,36337,41490,96610,57102,95924,11087,32126,65475,62919,11875,19505,63868,49965,41285,73362,55207,4802,33035,42564,61871,33819,67626,32156,38050,42807,96772,80229,50902,91186,46933,33707,76112,65059,34748,55228,20387,68850,49288,16003,37763,21560,27288,40122,80786,55944,74160,67392,97916,82050,24173,31188,77325,26296,59420,20657,46701,44292,30670,37685,7214,53875,2655,72011,18520,37436,20746,94854,15934,81115,87439,2900,46411,1845,33954,74117,25244,20021,89290,402,88053,17184,899,91815,11531,79019,21520,71273,92437,32498,49888,93445,42287,56707,16045,34247,59962,32313,90536,67390,60205,10720,7846,90077,50068,30033,14330,62847,71524,7164,14915,46913,382,96288,62097,18884,90758,28052,51168,58329,23005,25523,34813,37998,36384,93067,89735,48323,49996,91434,13758,25977,53494,13624,81132,56603,93429,60743,54599,36528,34776,50200,19565,96559,7673,60987,54343,16628,83801,20997,58470,75236,85205,64307,39009,2848,94170,69323,37790,81262,21598,56523,91464,40376,74238,4797,91893,46743,6993,20838,78513,4535,50372,4350,980,15744,71613,93459,51529,32265,52873,78389,81834,29794,25420,87210,47452,2235,18975,46930,56188,14003,57131,31491,95717,56517,42536,63947,93842,39805,45701,53931,11665,24871,81341,34160,76188,97127,89945,25805,91941,61362,97454,31776,81931,31545,81248,12146,80111,82392,13970,72560,39513,80780,38285,69582,36231,95421,17074,34710,57298,5118,14536,59311,73542,14429,33137,2569,8253,98950,35684,36995,14010,5463,26026,2445,90556,96543,94252,86189,76218,25682,10846,30395,70046,75335,809,74622,96724,41751,36192,31024,40530,10685,97289,79963,39024,33782,44522,52641,53292,40075,76779,68988,40966,51135,97581,11694,12290,6301,23100,27108,57562,28773,80648,36953,44165,90282,78799,72643,15129,73711,67481,84977,2797,48465,41170,47734,28589,70621,33893,48083,69977,65684,16289,34983,80616,96989,4754,84578,59185,44315,48300,1351,2854,53600,50606,70525,44217,36777,48445,41787,28803,82543,73643,48639,71826,22108,5685,43374,53171,31123,28453,57804,97063,63101,2314,13085,23838,10121,1655,29279,65856,72242,51900,31957,20873,60084,58397,71905,82249,56624,97681,49163,35604,62957,38296,78403,20428,5719,21710,31629,17863,93791,81838,71564,18928,76854,3353,57263,75991,10762,92255,28986,29776,10687,64597,99800,58573,99453,10101,95727,72208,9583,70056,12948,37904,69971,55780,77636,65468,99797,27930,2514,69382,73982,87907,67791,67389,82760,63630,10185,62728,26369,80161,4760,37421,32776,60644,8848,59901,49885,60035,99721,22587,53683,841,39496,32394,34401,35151,3168,91542,60884,89999,9206,38120,42394,65130,64501,87786,19129,80308,66065,59953,50321,33733,50447,64262,90647,54052,77709,80759,39658,75461,91537,40420,85787,42325,5585,58029,47426,21281,79699,52803,36135,68487,32489,87777,87519,96416,71855,43845,96986,94305,27791,76732,5064,17720,8740,17122,80093,72685,48204,91635,87650,83228,54556,45099,10665,88000,73469,20098,50813,12803,30458,41920,28491,32655,29848,35367,84206,32376,84520,58715,49289,10933,96632,3318,11659,39234,97383,70059,11641,78825,16302,92340,35047,58380,27461,19694,26207,44546,45798,37568,52407,29909,74754,62865,69546,2806,17099,74565,62573,54743,14038,75345,51958,35995,48610,30717,47970,82103,10002,28312,12604,90084,29915,82259,26507,72287,84446,48194,29760,11881,61124,38489,23995,39103,95089,46457,266,34404,4418,17379,85306,51785,24371,12029,96521,59796,61517,90203,17049,27280,90707,4699,1416,46049,18625,90596,38216,45550,79961,58079,42239,43784,52579,76649,2656,60802,53811,90438,4724,6234,42099,26510,13927,69794,3632,31727,83557,6848,19793,97278,79130,33806,11324,30368,86319,20757,83929,23859,33377,17719,39045,2658,71720,11967,74443,53034,57930,96755,64676,32804,29816,35522,98233,48879,43236,44977,79544,48965,76967,23142,29241,74218,78790,80654,34106,11295,12789,38616,72555,89334,47986,50399,93106,101,26563,58159,26282,44260,917,54104,40627,15541,64448,59576,35963,77391,41968,61202,9150,13839,9402,11980,17028,66884,38021,19141,15079,91161,81314,40795,62954,24292,80020,91792,52010,6883,84950,48868,76684,79266,45299,42572,43378,38676,12652,9627,37924,8145,56096,52505,78533,49737,48427,43994,59439,34999,95199,80348,52440,33028,6633,37628,42523,96849,39056,16615,88579,86871,82963,32293,82478,70585,76940,3206,81559,42346,21314,47215,93645,8366,18903,20897,87819,54134,43675,13121,19786,76936,6240,15407,6680,28868,68251,74929,5782,7872,77098,57098,33614,22188,15782,58922,7126,98215,33359,40384,71278,42777,73514,22757,34548,32216,7842,21993,76613,49066,51122,17641,61795,16217,51454,3768,12761,60145,77688,79920,95018,75820,26859,1130,65251,11419,49193,81608,7731,81417,63863,74230,21748,38411,71313,80429,29688,39764,79577,41127,8209,46818,43677,14425,28158,47736,56910,23601,50227,99361,44387,4075,28353,69947,49265,29007,65718,36409,48406,66061,8216,90515,68018,45026,48903,66533,74744,87513,73229,2473,38575,79596,99489,11547,35170,78899,47574,25877,8571,72482,44106,63108,83083,96402,37513,26116,6063,87007,86159,80305,8227,94112,47293,26092,49091,56901,13941,47944,32379,38340,90402,10690,52838,38788,34578,27548,78302,92980,12823,48290,3476,13872,28590,58426,68116,58819,6958,96099,89697,58265,53383,1533,17431,87731,71341,69158,7905,2613,77996,14537,13063,24974,80059,4291,75269,20161,86343,40446,92601,61043,5677,47870,89555,80231,96227,47226,1870,33579,85285,15551,74468,93638,4374,47783,49338,75458,14953,54617,92501,43153,99110,1103,79003,96136,90466,3673,18861,510,21157,2167,73482,98621,69348,88439,6972,34737,73927,31807,95054,10355,76260,42138,47581,3958,99649,13708,9251,50982,7362,28117,78182,79372,57641,74398,93175,80134,68929,68765,51076,6857,53762,64358,54265,15111,60934,52805,42557,86228,82809,87019,99342,12410,9313,24715,80287,81331,94512,45773,2668,38631,24356,16315,89932,32408,60770,21826,74489,40923,22212,69439,25555,48041,44308,53728,43360,64436,49343,45874,65227,35898,60688,66806,98091,11028,30144,10793,18498,32381,13219,38453,34011,33799,83503,87249,67899,66771,32529,18530,93804,43632,37964,49015,52610,98396,43653,63144,87329,25188,79503,84008,41359,90023,21089,69780,17649,74183,88740,74623,99193,92765,66374,24084,46210,40054,30359,16990,74224,73627,6277,2864,10055,98702,52128,65639,55203,71680,17199,72093,23742,40648,90888,23278,70063,40025,38903,77447,11688,32674,27011,6114,61044,16920,77559,13031,16072,91497,24129,36643,72528,80992,62795,41620,17052,22825,54810,21581,39265,60336,67165,78180,96752,28199,45395,11960,38534,65715,88377,68652,75529,16468,11478,78265,44515,9860,7407,90508,34007,79902,62188,25093,98925,88472,54972,62877,58054,97349,9245,40099,95126,61663,2283,71882,44695,1514,19781,41334,74930,48590,66848,28732,37494,91232,9248,32532,68607,280,68759,57604,93303,31493,94784,63784,10368,72236,82384,81925,55227,60412,301,47241,89670,63410,62691,65598,19201,48474,22721,4829,38728,219,90889,82795,71738,2789,46956,22683,29340,647,54773,61519,77023,84549,10374,37821,2089,10796,4626,590,36637,41040,90335,60257,9455,10534,37613,7590,71978,95759,12168,29403,89754,79921,49997,25584,29640,4128,6118,60976,61385,1135,47281,18148,95055,59688,97817,74479,71547,88689,39518,98202,83897,1195,60760,832,18845,40871,80052,58306,70169,96156,3025,43506,40854,1222,49754,53973,2354,76796,55390,84177,64745,83418,56536,273,23873,45487,74864,55971,19476,84861,10384,8872,77618,44849,95587,19863,17899,85257,1424,32914,69421,31910,55437,41978,78885,61411,51688,49810,22754,73230,98343,48424,42687,53989,26827,28663,78479,82867,94001,38659,21529,45698,77121,12231,68880,35231,56656,63681,52528,15320,79494,51882,54551,28712,27193,29935,70061,39419,88146,90042,29569,3504,75641,43099,63800,8097,99535,50260,98108,87153,25837,54073,58884,54137,97224,90990,42013,43345,4381,39260,30200,95912,66985,73740,77018,72791,41093,32131,93272,19645,9191,31183,15380,70497,42396,23672,23152,36967,2079,78213,1001,29092,44014,94631,96364,22901,35841,89766,4730,34535,15785,85267,79771,56388,38857,43927,50022,48437,23475,86148,64233,16792,88521,32855,62074,64215,70698,40796,22094,62867,80299,2551,65423,29391,17580,47706,63797,78185,36344,65494,43659,66369,91075,47794,68203,18265,86795,69298,97727,63644,21967,43370,813,55174,90313,80079,746,52790,35326,21045,47461,64959,5324,38636,82986,3840,44328,26757,51420,18170,73188,35250,55686,54626,72676,5005,64778,64510,5353,82536,29892,85389,56446,35626,72665,72576,89070,21361,42211,47738,3139,9897,28244,97229,45445,23254,14530,42248,83935,56248,15781,51218,53625,38565,93874,9929,71753,97134,25396,8878,86091,41990,28068,62140,53820,81536,77994,94115,88417,60163,95468,50483,54340,94978,9773,42883,32808,67054,51167,20908,47990,21085,48664,50829,78362,4686,26525,24768,50607,28647,6467,53520,3401,19753,51199,72774,29189,36620,67545,46691,28181,34542,16889,14723,78107,658,63023,19158,24899,62998,30648,34395,96313,65904,60584,69183,63563,45604,66738,32457,92986,77064,4225,80326,29322,76868,45867,2448,13971,92769,43813,21382,64731,12178,72061,54862,94726,42079,81724,38971,42640,39085,31204,8105,30445,45310,33068,21293,9389,52874,40123,47559,37454,42556,99788,6029,83413,76862,51337,65559,84015,26379,40586,48079,53089,53259,78997,15235,89818,45506,65853,20592,94617,88095,66889,68233,79840,947,22584,77510,8189,99194,91780,99479,19202,14699,53410,73684,18710,13401,29021,56132,13767,31926,61269,25969,81571,29583,59662,534,3798,77455,73570,60509,69423,71075,95724,19904,9447,6456,92202,14481,64749,27467,91907,27066,9716,64591,50427,32769,27447,90700,18557,4108,1623,86259,72251,74215,54142,11256,77172,55173,16674,10089,26647,79012,91482,57362,92628,58506,20520,14630,35828,99958,76785,92953,16196,49602,89728,59727,58863,62679,68999,32397,58865,4467,12757,19521,30409,5814,47955,14547,56718,94656,89770,85734,32047,58729,90375,46148,80184,25782,23891,96150,5808,31161,46836,93191,20526,13769,89532,89112,44863,40896,50604,19735,47408,56323,69853,38402,72727,27283,79768,69245,71586,5183,58346,86288,62431,34350,60347,86204,93776,16281,50170,68355,58571,28112,81141,1482,29166,69570,98070,3534,68041,17563,67555,74481,10257,8592,58292,40634,8265,64573,55150,39967,84724,51694,72461,91710,17631,39734,3982,27738,17262,82690,13168,68624,99540,14267,99401,24932,43017,92306,70953,90753,23629,6675,45365,73040,93456,27979,80449,61586,84984,58215,76672,37802,79247,44439,87331,44361,69223,64527,27675,71392,82154,50071,57050,81462,16194,32358,21061,37385,95186,64664,72831,40448,75745,18669,48688,99836,89364,57022,18676,88063,93359,98771,74694,76248,47371,19119,33779,96606,50506,21271,76563,84527,60573,52856,70586,92809,85992,8564,49755,75411,47604,86113,16777,35438,1182,98121,18702,81245,5847,32621,36041,82337,29430,65280,11562,56065,12614,38093,1630,76233,77747,39410,71371,98046,36477,71611,51756,35270,73090,32132,61684,82356,21524,88113,81,76460,5759,45747,26626,27750,27315,10479,89431,21783,47478,80392,29318,58720,65951,93857,42888,93287,38016,61770,42685,60629,59503,70780,65840,83305,37333,28210,1007,44708,27801,46185,17895,22160,63675,61807,49689,72661,94166,51896,38546,15027,83356,24980,24639,31135,65070,68001,21939,9925,36222,35817,37922,87464,64596,81092,84096,4592,2123,16205,38473,88416,44971,5448,78160,14312,68847,74372,58796,94319,60081,50885,27688,23910,39811,88025,9009,82315,96386,30709,93446,13298,26064,73283,73879,22391,89006,56873,38178,84417,74498,42095,62103,48570,31943,32884,24892,72847,14175,54198,5916,51151,77777,42407,35772,33342,64259,63887,7453,31359,35469,38256,34197,46634,5851,29837,60115,47357,60144,39470,93278,6940,97275,45108,96535,9562,82637,73604,87613,62753,61852,63756,52328,45030,31633,68185,26763,19973,60831,87740,86585,97616,52623,20282,51190,77853,23009,72095,60088,12154,91214,14763,49883,17590,7226,73373,67526,99438,5268,232,12105,86341,63537,58694,6779,80599,68942,75606,66130,9400,11600,16928,76621,21334,73364,36476,38423,21563,78669,74902,25575,89717,52511,53122,90276,89950,34587,75905,50124,9525,30750,35569,47849,86888,32580,28176,27211,80885,14791,78372,76441,51141,30066,8480,41070,66816,55636,51850,71166,51273,11919,42873,40891,69621,84357,82566,69564,49890,2610,76497,50845,51989,13842,45866,4110,57548,34359,24374,22852,14760,26611,83818,31965,99099,67236,83244,29956,21897,89970,26830,91400,72169,31908,56908,87339,94125,29194,89704,43062,5240,57672,95455,56620,30372,99225,16987,27740,62455,86759,75108,54830,74295,97182,2087,63927,65394,21606,383,16982,43559,78517,46135,19974,71593,76417,89435,24611,4163,50205,44464,41974,24983,66032,54959,37238,34555,58482,72023,10378,39676,31803,27837,14966,40344,38960,12420,37468,71109,2107,89556,78751,97236,10069,26687,79458,8188,8766,9365,70760,45151,74174,21858,78317,19838,87484,85560,15302,486,74465,46800,63513,83646,63226,41098,20677,38458,64483,10228,37775,46251,98164,83252,62484,9119,89742,56254,29200,82093,76024,58612,34402,35727,48044,19316,72324,34442,33075,32743,68714,43498,16043,31352,6942,81577,406,34060,6773,18920,22706,73579,9286,99559,77828,27572,89904,90411,66560,34500,68117,31206,25090,99934,22780,16153,98834,51475,31508,32802,77090,66030,84379,67450,37933,71519,80248,73063,30910,86578,80262,4231,67596,15601,54612,13243,61146,40245,15746,59749,25311,91170,53893,24480,95970,21246,22593,93950,48178,43779,80497,21499,21629,82101,16688,63491,50837,40573,15159,48633,63459,27601,60334,59798,61394,50060,44821,89241,91653,87316,48357,67737,40969,36986,16764,90848,77199,97184,81842,58134,18695,49798,50798,23748,19161,16631,4276,936,58973,95575,90315,49829,85021,31946,65057,9976,20880,45227,54755,57391,44776,79142,35679,23895,74619,36656,61507,4557,22734,31865,99057,28053,65260,67092,29173,73821,73319,58469,91116,83963,44516,59377,65566,92102,36671,202,6636,82486,85490,86556,28308,39371,77934,31076,86614,23210,26745,96184,74195,69173,95232,20948,98483,71332,22158,42300,63176,48334,35709,45141,96701,58060,47278,78755,46856,22856,88985,38162,9533,7784,31819,96997,4059,91234,30497,55961,59076,14251,88314,89303,12201,71422,81863,38130,70247,2622,75805,15234,48350,36708,73352,48970,97322,96726,39995,45394,69735,82720,5988,54837,15218,33918,73616,1919,64305,12189,21029,74344,42319,4161,53146,29036,8047,12348,90659,88241,49391,40343,84858,95,36501,37985,72834,60858,61765,40273,55595,7047,73781,43679,33501,4201,2421,91892,31647,99770,11978,12145,30279,90875,84180,83637,80061,92041,5935,19791,6937,89347,77673,48787,79431,88089,39370,28269,43445,43475,92277,83957,97364,47038,79411,44152,35700,44713,87028,21371,60833,42670,88149,70184,6903,48415,12828,33392,21747,42057,53009,76474,70020,47150,87268,37405,15885,1435,12910,58835,94859,92312,12475,23621,33950,65625,65786,60224,65116,76443,46247,70635,31977,69545,33684,52945,34190,25686,20704,57546,44928,93781,38128,79539,89846,23687,48100,78091,23966,46601,30969,74869,74432,83656,97720,44432,11821,48568,47433,13314,29719,49649,70500,50655,52464,21173,9428,18961,67837,16389,99677,87134,28544,11330,32148,26567,90763,34130,78774,7756,92324,75100,72144,19873,76479,16697,88893,67483,94539,85048,1070,72531,66092,6382,96621,60664,44652,81339,41895,20083,72850,37883,1028,93998,28356,5695,75592,92072,62885,49457,81089,52502,83422,65854,37629,54621,34602,52101,16075,15761,37435,58989,20388,38611,20179,5232,75408,82329,94348,12522,92342,4144,1930,48076,8309,91199,94708,18152,3925,15088,80981,43833,1096,53014,47920,27300,53329,54451,67416,14121,39490,79225,62374,98057,78981,14485,18974,89105,85104,7056,87097,588,10817,63874,38635,23645,22799,59924,77701,44668,84719,29081,39807,92739,59408,63818,5581,31769,19376,64332,92237,89873,92265,69394,51671,86780,64771,66190,17927,26484,70612,8344,51717,61415,81681,72487,37275,22650,84828,22395,79257,58336,55194,51853,98188,76556,65393,22637,9539,9484,25478,14801,50910,14211,3637,10067,3372,50863,52495,54888,11233,76459,42641,7145,87312,30629,86983,66670,89390,62892,72762,89994,9094,31923,68689,71155,50774,18223,92360,89434,16879,39817,63131,40366,95090,75438,9946,4490,14124,74795,5455,47998,30992,48623,67686,60621,33336,65460,60941,14386,19516,51159,82396,59933,99111,55955,45944,64735,72932,70947,64419,89805,75294,88369,42782,93652,99002,54783,57773,85544,61356,1331,43908,13824,31486,26346,91532,99156,80292,49871,20130,18811,94221,84028,29172,20063,774,80728,83052,44074,27116,43846,59882,76828,58945,88747,27022,29217,19174,80073,80089,2427,55278,14256,81610,46715,62750,99380,75660,11661,9559,63590,79764,56635,264,47418,6404,31342,88136,34394,56105,37601,38963,78778,33959,20723,34627,7023,57788,71272,62137,52031,51592,85098,76404,59667,85444,62597,63970,61842,98476,21402,62462,37680,55409,32511,64975,49763,16996,39020,47612,91789,87283,37850,31763,38667,96828,3349,76522,44662,27711,42359,15969,51608,51747,13335,34038,42241,77487,75713,94756,66934,67475,90425,12501,4747,1931,73435,42674,31630,3375,17892,48133,88023,86950,89047,57283,73966,96672,45284,10497,69057,89885,49431,45522,60586,36246,27478,41706,8922,44822,22459,75814,18017,60106,81980,47800,40329,50084,17875,32086,82211,28668,5136,10517,1312,48924,14320,7011,37854,65955,4345,32575,13940,28070,52392,13200,84732,29799,59423,90857,3611,66117,61320,66382,83383,40477,78188,93968,47551,2950,29119,25497,11053,18728,13632,72039,81832,12207,87104,85625,709,32302,88468,25197,73191,38718,80643,5503,37976,16414,44815,30210,67048,66360,63330,17345,56946,81478,80016,6414,12887,78236,1788,88123,46602,31951,43272,65580,73885,92530,14624,88889,45859,70602,67171,38082,84892,32570,446,16923,96132,90474,4866,58198,65482,93479,24996,77538,16208,55393,77914,32516,930,30725,89916,69077,5544,40081,35554,27006,17303,4610,69536,34945,6150,64607,92213,47596,37035,52875,24963,67658,62820,63099,56636,18395,66450,95709,86658,15760,17873,57899,59441,77256,63423,8078,79812,25332,16388,25538,70375,39700,46067,80613,88102,20778,28326,97412,15939,95364,17425,44744,63191,40868,15226,82312,42954,81831,77258,43189,51196,443,99923,44006,17607,57230,71885,83855,80315,4482,65396,63214,62653,10554,45172,99169,72638,22242,21954,33468,64916,29749,3437,72851,3165,31785,55945,99311,20857,19256,60140,2151,55673,75051,15502,16193,10104,71640,75493,14071,43978,85411,40041,75690,22697,46598,18389,21364,58602,64458,23613,43053,94333,87675,50221,36919,1143,87641,23972,84477,84275,10747,90003,16005,57938,68789,45344,49424,99415,58024,58284,41120,79726,21424,21333,46479,76463,29177,65615,19267,22915,99503,76968,53746,86604,21551,61679,74308,44423,96488,6070,56933,26653,35770,82634,12343,50116,35696,58910,10131,93200,37013,55724,34380,25621,18269,9266,62658,60377,28852,71681,16601,2503,49059,77059,31040,82742,26928,87745,31668,82749,51723,26176,26733,77905,24850,6247,34900,42243,73796,78569,92815,68767,96440,46084,26090,93594,52002,60312,59177,37103,67441,800,96502,48601,74529,49178,61504,91813,1727,50944,10312,32863,60832,86788,53438,6505,72004,54475,79903,69989,71709,24777,58864,69150,91628,15649,23956,57760,89907,35075,48148,91510,11784,46419,21002,52207,92260,90237,3519,2142,11466,49578,10112,5837,90097,31456,84886,46199,85374,25103,99068,51415,96737,28056,21604,73554,44360,56838,80716,47785,326,83669,2646,63355,79632,39095,5098,70796,96000,58649,52592,6562,42756,98268,38444,83164,28364,59347,3319,86119,14216,20726,795,23866,74631,13283,50880,38079,53584,52586,26915,40465,97894,17759,98439,8918,52423,74903,16489,432,84265,90428,5622,72686,43221,19207,37919,61266,39355,70067,92031,51581,90564,79383,76494,56215,50542,94184,10567,30321,25349,29757,74464,94438,64907,66718,41834,75686,51640,43820,77453,90096,26855,3210,53242,61986,63515,56258,24396,71375,91750,15980,37576,58289,51238,83227,52314,73759,60756,7377,22444,90398,25225,91569,35919,52089,74906,22916,60033,22482,6699,15952,76114,65403,46515,39608,58000,95583,20561,81540,81531,40196,71860,31507,41251,869,53311,71852,79930,50657,11862,96217,36108,13303,36927,1687,72802,8864,57801,469,14443,40532,27956,29835,71804,48050,93291,69466,36827,58666,9606,19902,31284,30557,24190,97980,51664,71672,51441,14244,97998,37067,58353,77892,74683,9207,78757,91857,44372,10194,95283,38383,64515,51313,44558,84697,56147,22739,37349,21537,78095,78410,56334,32973,51635,20209,81189,72575,47641,15610,57552,21412,12005,62002,49753,32979,62459,81001,73173,25340,81199,34124,91881,7854,78231,75055,25957,94253,98391,87181,22745,94341,64090,6996,13978,49164,56784,9694,87758,18505,55581,32626,14062,5301,88072,17737,31852,74680,68757,98924,14644,21272,81901,5281,6827,16402,21190,85259,1150,6962,52065,91822,62903,73271,25779,90527,29348,96703,10476,46883,18891,89121,86772,689,13544,60090,66691,20473,76947,76825,23219,17313,60761,3071,98709,91560,66747,35509,10148,46508,80486,80758,38724,53290,93065,71724,30680,66489,90507,9278,26123,25572,70514,54517,40151,32510,17652,20122,54441,37963,30093,83953,92875,99433,81849,56885,80251,68785,6799,73043,21072,61445,1035,97378,35769,58448,31794,86630,62989,25902,48014,94138,45158,58760,84921,49203,5508,31514,78,97244,74456,81271,69501,72916,15269,86910,8387,95166,81597,34868,83419,92076,96924,41442,91682,46895,85793,49310,18853,87212,11708,79589,3904,59196,61709,30499,53906,98833,56588,44852,3281,60276,15711,25789,70732,70262,19930,29868,45117,90040,76420,96123,64163,41720,53545,47845,25678,73355,39191,14542,2250,19464,26432,59755,95956,13784,10777,11737,6302,14839,77127,65682,67443,15586,82552,48900,79786,29321,16779,51769,64486,42104,73949,10984,87356,85624,12804,88099,96860,57924,54174,99830,32162,81894,61930,29542,59278,11022,76410,49634,51836,12782,94937,34943,75481,99004,36323,86990,54016,67625,90958,82551,93186,67156,31253,20515,16039,31060,81938,53800,79259,54891,63622,93270,79854,47862,76616,94947,18575,35321,62119,16033,98789,8888,85622,4566,73832,15734,78727,75363,82668,47112,23048,44750,4002,1414,46352,69038,69033,54463,65547,59167,98281,59168,16625,9620,380,92742,68762,87505,35629,24239,92191,60047,37515,11159,28625,6639,82991,71388,85191,54859,51447,81958,53540,72584,2574,38086,62405,3173,35352,48636,93349,35137,53023,71696,65832,96349,77158,74677,48869,7721,16635,94521,48392,38610,49152,96049,76861,85060,22385,37213,15110,26139,27383,83713,65165,99723,5441,8701,64183,38201,21890,81752,9879,28090,92821,138,23248,68550,52570,69303,88620,80067,9216,54135,38141,12634,67093,96342,21666,90006,24806,33216,56947,30058,41893,78857,12495,434,46894,43247,54674,13803,86245,1602,75215,53646,46145,50605,83042,68305,18279,84543,31391,54180,98095,81183,41703,17225,5700,76831,80523,56196,33051,48139,36532,56168,76700,29186,87663,63912,80943,28405,27516,48294,7800,87878,20874,88695,33961,93875,47044,28143,99558,43477,77768,40559,11514,13491,48156,14157,85050,79856,71719,43612,16863,9065,83521,75177,45836,7075,4525,89861,7071,42084,35285,35541,39258,9617,32507,70669,62116,36521,87119,95311,6500,75677,68150,98011,28282,84509,61443,2381,51797,56709,17533,48669,87048,76515,58529,9793,50616,82803,95333,44085,59902,63291,88726,90427,3129,84983,71330,36615,75759,12836,30113,81337,60896,21937,57396,31648,91233,85530,52780,35697,9109,17368,98435,46529,96397,42150,95819,66357,65404,44698,27187,4664,14933,3981,6676,99689,18282,42815,95004,93897,45005,49524,26950,38250,72478,78928,9160,57819,2092,83367,55425,78405,7955,40625,75186,68558,27273,97199,60259,7589,94760,34613,39618,26271,81276,48913,3482,61498,55700,95490,40179,3515,69368,26062,67301,32889,98914,50075,16646,9875,20931,45155,57560,89680,10439,43655,27141,64730,59476,4933,97315,55217,72078,10027,13860,30873,17108,81868,71056,79112,60247,19531,27188,78862,92148,69489,49116,76130,55915,11517,44508,27870,39363,30278,94234,39150,8632,93828,60046,6841,19984,12873,46275,42697,75599,91402,43541,50855,39178,38074,18558,77630,93639,95801,49062,31379,83577,48448,55491,9682,2564,96814,84653,6091,23252,28769,89540,88808,12339,18732,8246,64376,50824,97547,29395,13222,83296,87437,86077,85747,25923,64349,55496,68362,17859,99389,84887,30979,99658,96648,83532,39013,10056,32040,87785,12220,62349,12881,65703,46716,17913,91321,90024,51503,77449,64588,51595,49042,66113,13651,32583,98083,4774,68670,58424,50663,48824,93392,95046,47761,23129,55116,4358,72965,228,38054,30590,69196,98840,95762,83999,85373,43417,76546,54677,26313,37124,56491,65768,49809,83058,8806,40190,33937,48793,3509,13558,53233,64,50681,62893,13845,34501,62509,79533,40575,78199,79175,50061,43269,38829,19232,98810,75251,74824,33876,53914,70182,27895,76231,70981,98550,61645,23527,86643,23010,43842,50334,47004,63052,11339,96149,65535,79835,4865,15492,611,72393,33443,10838,1900,70466,80323,56355,20550,66983,74582,88172,79766,7885,34141,62354,9825,11824,43276,21895,52643,74891,73597,46102,27341,71808,4189,22833,10487,44725,86355,96659,47618,98783,77065,51997,42157,11823,61093,12971,54605,96375,22950,94613,70620,31147,81068,27813,92022,88815,60699,87536,39756,9906,57723,17920,41077,1968,19003,96104,82723,53203,84775,42988,32433,67994,22700,56970,16911,12277,74341,47524,94443,85690,78744,38308,36565,22490,94762,99112,28960,88446,34203,22371,14995,80983,41216,74543,16295,94273,71296,10731,18408,42002,62067,81403,5654,75975,57700,45426,33304,24622,97952,12355,35708,65307,97659,65809,59269,70033,46428,79436,74873,20309,79876,21004,99764,7548,99545,75129,15942,65289,92003,75328,40592,24818,78143,60544,38597,94596,50163,94043,52501,87987,32971,51213,89575,81941,70707,81180,22143,15438,97934,76689,82310,79378,78035,18219,19242,84453,95517,20676,86518,1575,24167,36184,47813,95940,14742,52460,82968,44166,99273,43090,47132,89113,63940,13576,8641,91829,35644,35551,31463,72305,36843,50891,74022,40181,28952,49746,98976,87237,54624,76870,83932,46891,71994,65669,33816,24373,93547,51634,58021,52973,36259,85499,31460,81434,89748,90309,84433,57414,96864,26039,54648,94729,55577,97914,20811,69105,26936,53572,35462,81763,43938,7624,37381,61756,55804,7518,75517,11673,11834,49756,63058,34680,18627,90173,25738,65449,94680,42810,78877,58540,47210,4876,67708,36210,35555,73802,28571,37993,70328,32950,82600,13363,45249,64104,41179,1641,81114,47671,84450,28437,49716,48081,37664,81813,96893,97179,49544,33518,95511,78971,41592,12012,149,56165,95743,97445,56518,98459,57557,46207,36426,1807,90053,94296,20377,95267,75198,96520,34965,314,19701,76351,86611,43188,80369,22865,51312,71499,48417,63718,87762,80937,93268,79556,67917,38152,823,97633,86133,31613,70113,52870,67826,24200,21835,81211,75092,64363,75305,79345,81685,2992,12425,2262,31172,13365,93927,42105,26770,35165,63118,57448,57143,1180,26561,96549,40353,25573,21184,25895,98367,80311,44468,26162,98936,26498,48165,12273,24864,8350,63979,43884,27557,42387,81342,59244,45124,99206,30864,93695,17044,58230,54660,83923,13453,79828,95125,18467,78753,12177,62422,53699,71876,50790,34666,2105,28570,97331,51545,33089,97742,37324,99396,71621,8967,79363,25803,90894,12546,35933,17994,82319,52015,91552,22208,29800,24399,63013,70535,8197,11957,85942,82179,65750,56797,46867,48125,83822,44671,10739,60282,69616,99242,68486,91562,48413,83702,22948,23293,12713,81326,60494,65054,60229,39893,68918,64746,77693,81469,71123,36976,19100,20100,60394,5792,47729,2571,71227,68193,59518,46793,43441,11763,91863,26169,19392,22381,8353,50449,52234,17241,14726,79222,2723,67010,44697,82752,51245,44951,54694,68865,16717,15553,19289,53736,16411,23088,2526,12675,28049,27370,97316,3146,73258,94867,58446,23689,10875,66230,28135,17820,89643,91070,27986,19263,48220,86207,26798,67812,30785,25350,20073,81070,57910,97250,88946,30767,12896,10547,1067,38953,97113,55840,55747,77371,17962,24977,45745,46415,30218,69522,54537,7049,92139,32775,15578,65689,594,97858,4642,54947,32838,17257,36022,57597,13732,29420,58051,65863,33070,13366,89225,54613,71088,92292,39006,54706,95172,47236,5543,66359,69265,17300,85682,94646,70958,42045,55336,10978,99253,13469,96875,44513,59025,96603,34387,33836,25968,33062,34191,9554,45547,13312,27417,7840,25383,43968,36365,70502,11718,77891,74961,71436,77922,35640,48000,13277,50811,29038,85005,51333,20865,74472,33955,67591,12239,24448,59763,73068,34357,98698,83059,74583,85289,96279,82862,44833,15595,97631,23773,34897,85990,27456,10379,97109,68466,73405,23829,86220,71487,54737,73034,12991,6462,21330,59515,72836,52937,56515,84674,97352,67834,55453,82338,67722,47904,52841,52996,99147,66,38560,77703,34448,39879,84150,33030,32562,61606,77413,260,32154,13351,99297,67743,98558,13689,80260,8752,71528,32673,83375,12148,75639,72674,57178,9839,72829,17638,19473,80267,34033,45616,2752,95649,13221,77339,10711,47784,30659,705,33153,19631,86456,70499,11868,2016,62827,41589,51811,52205,76982,11833,12453,65047,4141,74150,48164,3500,7925,24397,16091,3097,98883,96128,10408,56123,73663,88395,67723,30203,36537,63272,61557,5561,61912,63332,26509,44401,39703,39598,55702,25841,13383,71879,12573,21781,10779,74025,52982,97902,82069,40561,91736,40209,5188,21428,32940,19247,9198,43381,18064,44756,28319,14999,21052,43412,28498,55511,88160,69110,52291,23064,68152,79084,56678,90103,15114,82005,85816,70045,64270,68442,93236,17839,30129,85755,27856,95474,64800,12681,86790,25854,27104,56893,70533,16904,49933,65433,91900,52919,88244,79570,51053,24599,17912,5647,5156,24743,1288,21992,23842,3399,7520,6271,58493,63596,39776,38912,75549,16171,85372,86476,92314,53128,44592,16386,30822,70568,6736,56840,41075,8992,76092,7927,86784,30061,17656,40083,47125,26994,76322,32165,74960,43394,2237,68500,96862,23785,92696,22123,29897,58717,52744,65578,71348,79833,2933,28243,46641,80680,73752,6555,44718,30842,36303,8373,2086,72754,15865,54416,85901,38925,34718,4807,8620,64157,79663,79937,8618,58941,43615,50233,99420,43306,79724,39834,36266,17773,51237,52642,49458,58881,26871,47483,97535,36331,41539,72228,12913,80684,58658,5955,83476,12869,3064,61561,62730,63250,33381,86988,47886,72134,61051,26643,66930,69868,69485,31586,44841,77929,18006,21136,25530,38317,85531,93335,4973,47665,87509,121,4062,83616,56580,1534,93002,39460,2244,75326,88799,35258,28867,20142,922,66081,31344,458,66439,17165,98817,59004,34290,20015,28878,73235,16946,51243,22726,82230,44309,49679,90336,1901,1948,10450,42609,93018,91053,58436,91160,6583,32787,85559,95306,25192,85109,51825,94368,22953,99938,49460,3249,3167,45224,52067,55899,66987,18414,5075,72937,83681,97132,11326,57297,2845,24922,54169,25733,40937,120,2412,47903,83337,35698,6859,14017,92316,65149,92070,95882,38613,56319,33208,58925,49109,26710,66378,11483,27029,91123,89443,27913,2188,34272,86680,88854,57705,32118,85796,16497,27928,90751,72355,49007,99673,66358,6836,80241,70283,69353,94890,88596,31733,62661,98813,16141,99510,23810,18292,58748,24784,45899,40555,66890,1300,43620,83707,54908,70166,94772,11810,61923,22017,3217,13522,43459,79889,20184,35169,89207,13675,18005,12388,67470,99060,91024,40982,66739,13736,23183,61602,63295,43485,43052,75518,47078,74563,66157,1803,57325,58483,57618,33971,66211,16545,49828,182,13645,9588,55666,94895,27307,96284,61203,78034,48620,85439,93059,73250,32892,18724,188,43964,20600,8672,9561,24909,88471,45825,56982,80580,54424,36563,50570,50652,76179,86291,5981,64134,32799,61713,45673,77661,35178,26930,37670,30756,77841,75351,32941,21799,76999,36802,77425,9580,54600,90127,19278,6318,76922,76278,12515,81261,73998,67090,42308,75990,94541,86435,93158,46341,37877,57242,87417,49397,72687,44734,38961,36947,1284,49255,20031,30773,57921,72216,95277,34669,10542,14579,48886,61175,74144,68627,44448,29281,13005,96058,84814,83034,5554,78848,66320,50300,43084,51383,29961,88006,3518,58592,72318,82363,42444,5445,64357,9364,14459,83433,99278,97257,32841,81365,63006,90002,84580,9524,64704,1670,8475,37755,70886,97728,96683,77458,47654,52329,99431,81240,11388,72865,79919,32052,14259,83641,64226,34144,50587,43771,61231,61292,84878,56160,85775,89338,14864,9478,24136,43026,98985,30034,77361,29498,62617,23334,43530,25754,28861,28505,40212,19185,47995,91455,82188,30471,5902,39574,76422,17935,17203,32315,11359,62121,42896,25315,80662,72419,1978,3096,51079,38653,28561,89242,20300,89778,45838,46191,45003,64546,99123,21212,46258,2239,43218,94670,12930,1990,72905,35658,31562,9838,40111,58200,48187,19642,35355,37165,15238,88710,49537,78271,896,73558,71068,25756,19240,35929,47649,75920,76097,24492,23555,75270,54458,60236,8758,81800,53892,37198,30170,5285,91894,81419,37167,48364,91524,84867,68156,7612,10337,33718,74537,97646,99053,39158,14978,6077,84260,2462,84313,80107,20799,78809,49150,42792,65478,14501,22520,8710,29631,55672,37384,35400,22025,3440,56114,17797,24856,42469,6726,50770,84699,14818,58149,76175,14717,23812,19362,61237,42814,10765,21079,36381,91224,86884,50853,49454,73670,94344,14983,678,69550,27376,21836,41582,69581,77261,43700,95454,27488,10871,48381,32520,28430,23337,84287,33084,2842,21840,93319,90610,61969,98324,75301,32063,45461,75657,92864,82821,92667,4066,61262,31222,84602,82663,62098,40153,70611,7560,26981,52824,84194,42939,61667,10845,98544,56625,82849,88212,88683,80423,60888,15191,36663,70631,50756,56567,16,86327,30167,85799,33130,16098,73300,93933,43118,36740,4334,2265,78891,19532,65225,90332,97645,20544,13578,22134,3682,22839,20885,82513,16884,38461,15590,8521,71120,64446,94643,5372,68761,51977,24409,16817,23771,61136,81461,59610,46841,90803,33775,23042,89652,4158,3089,64877,286,20146,14444,46053,98602,77475,1925,97990,68879,62102,79230,67049,79376,17983,88848,60899,5925,96895,6900,7009,59521,33848,17387,18419,56921,70569,1619,22709,29598,75732,89925,77498,65271,66760,96509,6049,66343,56297,28310,69073,31585,21339,7459,2112,83107,99377,72413,33289,81236,3333,87547,76507,84323,71682,67499,90748,71951,15332,45219,92565,40274,42358,62840,69328,27762,76365,96309,25204,57984,14159,13923,91418,89227,73298,82088,63109,24098,85103,36586,34184,96122,85062,75443,31072,50903,40166,25598,51145,58747,13439,60421,11049,76925,10908,7802,52292,90547,433,91867,83170,82993,27506,76847,71751,30447,69390,61416,67564,86883,63456,20918,8617,96715,8132,20166,71429,18744,45187,73512,34426,74014,33656,27386,90149,28833,16020,91812,52162,94467,17617,46337,40848,39733,46175,69708,30258,95864,66241,30184,77040,51628,20637,77610,18886,88322,15241,31439,23537,83685,17670,70228,95293,94102,85224,51397,63378,59872,1379,41110,31734,21921,92609,28316,82935,52998,13069,66874,67847,66002,8920,48856,94067,4923,68800,29116,82160,75286,52970,86209,31129,77467,32043,20759,13939,23946,39448,25113,2917,63809,34490,28455,50660,86587,69055,18033,73693,34012,16641,36273,81658,38407,83704,31355,43780,50828,22019,82424,23127,91886,5106,21332,13276,27487,95810,68458,89046,21245,89043,98223,43063,47721,20708,66703,43942,38442,72212,4971,29054,11822,55514,53834,58254,26938,17551,28723,53180,71200,47374,87148,78665,12981,30444,59641,29531,79667,62863,17037,945,63376,87925,76285,21309,86359,58050,27941,27078,87426,82018,87524,74317,98879,30907,12233,47857,2409,20729,95999,66749,24852,64882,30166,73128,49807,13395,71268,97446,84079,88448,76019,43762,93208,38968,41889,39081,16021,39494,53883,20789,82686,72521,79551,96268,35705,17658,39295,92844,21632,42283,909,56071,52759,26405,44112,57272,54464,80713,88301,75275,32829,1984,98933,16181,7156,98873,7491,80869,63946,30650,2584,65553,99617,83183,21625,65581,9184,96373,10752,94429,49621,55114,94035,61249,22144,96419,40002,40449,30525,94019,30618,83162,14292,7891,69385,38897,60101,91995,53650,10683,35869,171,76811,88375,56004,82811,81804,8982,3691,49213,753,39495,23246,52801,55435,20438,9851,32211,98055,76720,24767,14213,73293,86747,51665,38215,8623,94824,49107,11166,8663,38056,19311,96558,93617,45291,48210,88284,55827,80410,46937,3295,2811,5125,19414,47924,33908,20742,30124,87146,74236,91605,65452,70153,36803,29386,38138,2632,35345,60341,26913,52515,51338,29803,28466,70047,7285,31397,48479,31350,97086,31833,83030,34890,34978,43796,39753,6824,87838,46180,57681,5027,48660,29898,87694,54136,16391,94391,41209,21815,67953,70622,86346,7792,38108,19803,69627,23745,29085,70038,10116,81993,37283,47243,75523,39305,90280,34165,89376,82814,54186,61537,62936,21182,58438,32151,71403,66255,52846,87648,25907,96164,50779,78860,99777,88988,38966,12084,36614,71151,59724,69037,48434,31322,57157,23542,68364,8891,70907,90646,4857,53263,14588,36562,3029,64572,68069,805,57206,86756,12367,97926,98927,85556,57829,93580,754,84176,90295,86696,80094,24494,99519,28681,40255,27798,90304,49494,74893,97884,38665,54914,62114,58258,76440,28424,21495,12692,90120,82429,18246,93411,76778,54032,59531,52239,38305,56393,99718,54301,53963,28018,88755,74284,64025,40069,82664,54569,70852,83603,51644,87091,17357,34653,40291,70793,48020,77930,36857,66827,8200,77499,18762,18328,419,15475,43904,21712,47739,13357,34808,81945,77607,70058,57884,14143,83992,24081,61720,69917,82019,23480,70023,1199,50826,39705,20835,50670,18185,5884,20738,16945,76031,18462,6420,54784,3200,46650,40437,70048,25666,70643,23965,98842,29248,92801,60808,78616,85163,7219,27540,42675,81221,25417,80372,5346,47055,15077,95159,98590,55959,76631,45201,97736,41095,90155,21441,88203,99655,48792,95051,82751,25553,78858,3955,28064,12258,61887,56765,50568,26750,64140,40633,27680,71223,60234,73493,54921,35487,99786,18136,40505,4656,21282,82655,45456,23075,36979,84320,72819,93725,11843,55580,24486,66334,87549,76953,10135,55826,20345,40001,1224,45880,25158,78730,74783,86285,69866,6963,36396,36490,59126,98836,96829,79496,59486,54860,6370,82878,81774,32105,42573,91189,55380,63978,44062,74646,18267,40229,49050,82692,6536,96216,18577,37184,64380,41397,19780,29128,50152,89868,37806,10872,98880,43914,46630,71211,85356,60804,79164,63254,68159,19522,41704,96060,11336,65342,6843,51718,52578,61099,14178,47950,63133,35630,57077,36112,57176,88699,159,27542,78800,7995,51280,64836,85588,73862,25540,98272,53579,81328,69,48458,97857,54552,70152,87215,69634,12715,67258,7860,77223,22639,29300,39451,82218,53961,67043,8067,57716,61390,35567,43626,81969,6910,41031,98302,89209,50127,22773,93470,41433,68875,45752,28099,15188,49198,28602,12703,49044,39077,52682,49200,7899,15527,48483,93126,32056,91874,28801,21721,15645,8159,17609,40327,60614,6415,10647,82375,55535,67402,54022,91976,30231,60744,55283,99458,8860,84760,60415,53938,30831,20596,79535,3743,6132,90925,51511,17770,69072,46182,76744,4778,75839,42134,87265,90104,56942,70239,15377,53606,8059,86334,40946,1315,23192,51781,985,77568,59735,34547,53283,33119,23051,68083,14285,48774,58465,49510,31373,46802,46853,48228,14262,39924,19,2816,11262,72271,60194,83990,44650,80181,23442,68433,59376,20697,96813,26803,9176,76498,27589,84432,5828,97970,12363,79082,46314,82071,19110,47715,35149,69734,39800,69542,34449,57647,62899,69863,69679,67720,26501,76673,31211,62471,71483,63499,23704,39278,91629,73683,76239,81395,85088,43159,38175,43698,44978,43444,18527,69305,29616,48579,28483,85549,72830,32277,44554,47140,7863,62549,98742,45068,5651,86622,90065,86868,41665,62413,35277,37920,35875,40101,83340,30391,13870,68610,46357,21854,29022,8385,89503,92756,43093,4517,66318,16464,94277,48622,2432,5869,73394,98499,95495,49992,84737,90153,83007,30121,56615,37757,7939,52272,45607,14739,60072,68453,97757,57404,26254,6614,82972,49098,59229,76892,46414,92631,94919,41246,7909,52376,41854,63128,48844,60392,56158,78084,47987,39196,73496,15060,42933,98375,83695,44174,2272,23944,97891,91256,67842,49790,77259,16567,98399,50396,23305,47464,98062,6380,3931,53994,23900,53995,26550,79578,60545,97528,70332,4506,7287,26290,2827,50474,21257,50164,68637,58850,2356,24002,22560,41602,93178,63942,27644,37884,84722,59951,28478,78731,35953,94872,1529,75227,90300,52543,85161,79253,39856,5634,7125,21725,12482,22507,48865,98767,91203,56526,85895,29387,65894,58393,13252,43337,68356,88717,82718,62918,72868,70541,85225,85377,51002,32695,69099,16149,29074,86373,36278,78443,31712,78029,23880,48874,14657,91180,94915,4126,45212,82074,5525,32754,4906,34996,21633,72639,425,19024,23649,76832,17290,86261,82832,50315,18082,82438,3181,15141,28175,12658,88947,29169,59238,32343,52170,96944,6754,19550,20898,67956,98871,60968,78801,53211,31932,65198,55542,42569,742,78432,27433,61076,49047,8896,62833,91278,86511,19757,76429,34671,53498,32273,60781,84396,23606,81260,53507,4608,99167,74589,81929,35217,24045,54884,14900,29753,48019,31331,31887,9007,13935,89253,56991,50508,73211,66152,16453,33002,25148,95904,11304,87582,14853,64330,63820,74226,69040,60223,26363,19880,64700,37399,48206,14103,6141,6367,81539,26265,31788,9786,85317,75879,55079,51046,27390,6276,73410,77430,38495,54020,12880,56561,23791,65712,15752,81991,26350,12701,5519,38276,33752,12698,82222,72675,63694,16542,55560,43560,62625,70721,11272,65846,21094,13719,37060,58754,2960,49547,14488,75380,73596,83931,18347,82769,64703,35485,31487,23626,97763,57275,88024,4938,35550,57255,50866,22324,1674,19474,4581,7878,94413,8742,83874,16187,51707,67144,30632,93748,29338,20417,22142,73794,48626,2372,7738,27324,22907,51284,76580,11469,98566,83057,79296,58978,64565,72003,66745,53012,4468,51301,60007,92305,46605,19068,56811,69976,98607,17833,62946,56891,4263,64911,8108,72562,87034,66672,48249,11768,9913,55538,96180,48976,37500,25788,99107,86957,95347,21396,54047,14583,66754,9373,13255,51127,99205,16540,3183,34752,81955,77667,67785,98137,82709,95786,41375,61278,41395,14475,9043,27200,97066,94623,24805,36794,99499,33411,44204,3369,93518,37403,40421,68614,40105,62977,57757,35539,44893,4273,95359,47560,81584,50691,11439,89414,89365,71788,39299,6039,49803,15032,63493,23543,5805,62854,84068,13299,58721,70828,49909,43069,60564,30863,16246,8091,78044,57040,45755,83546,23019,23380,27312,28793,91538,56296,19647,48216,87471,86588,86895,65432,81722,20136,76091,24452,4847,9572,27571,76308,49207,2805,49061,18283,37813,61893,76752,18130,56033,44566,27719,53025,31987,85882,92987,66407,84804,2796,12731,39825,56339,15689,75542,64067,76352,52624,33600,29004,26800,96407,88727,72296,12923,71507,7082,79573,66947,49762,58737,38357,40819,60926,16800,62172,28134,60741,77757,49590,47500,75082,75773,35018,21915,58364,33815,23509,72155,73816,16415,82302,78090,86697,13771,79159,41486,28973,8665,99710,73940,8111,87678,85778,98143,3406,12445,83979,34581,21063,33017,30791,43929,96763,74380,72960,8537,4883,17488,9480,51867,5400,67315,66873,29677,9317,48160,67883,37656,65556,58609,83639,22080,23143,67325,40093,82451,95909,85930,83911,81719,94545,25450,57543,46424,67431,74212,28818,24030,5206,89413,22458,47291,22545,46388,70098,42276,81823,73560,63690,70967,16668,33237,58883,77495,20054,61732,85818,97636,92597,95391,67709,33477,16510,15820,33049,16851,48078,85603,37516,89335,13763,60,92438,78676,68629,30966,74124,89683,71869,51359,15779,83871,51030,29660,51607,7405,6337,37534,68628,16158,23697,15259,99806,62302,68653,36159,31947,37839,78115,83242,68975,59666,70272,63407,34786,41338,59072,320,6969,51320,14392,90949,79627,96125,77194,68545,95328,66019,20558,34606,85825,41249,34559,41808,75254,18877,87560,68099,56661,42865,97152,64182,42614,46172,31215,96198,8612,15811,55907,53275,19994,38053,93006,57976,86740,97976,47629,98264,33797,14509,15528,31847,89787,50056,81611,4342,76840,37195,40157,64344,40355,72701,81458,12718,89239,83065,14325,65778,94381,69364,43901,73099,10117,18749,7609,6650,14629,95980,11285,1778,84644,43270,86698,94027,51121,92627,11464,73680,51874,37784,66062,24253,99054,70618,4711,8273,91925,77616,54816,99533,39049,99521,1375,95288,23535,56211,15840,74700,75981,55049,82142,33755,60005,47174,97781,79315,62458,40964,50609,83100,7760,76166,11143,17511,91980,63383,76729,80318,14898,79424,22556,75883,81455,62441,61676,43992,59562,78152,4211,52825,29785,77534,91071,59960,11084,82778,61247,70610,28192,48067,83645,63167,69029,94753,5987,99522,81303,25297,96913,29316,19554,34764,53267,20162,53129,60742,23410,32912,67849,34041,34834,99284,31798,90437,21726,86727,84100,82293,88722,78033,39751,65803,47414,88657,65230,46560,60904,33279,39217,5872,58323,29609,83297,5314,54843,40464,17538,77000,22439,56740,49999,49314,93881,21547,64587,59462,57515,44510,70198,35056,86196,16183,27052,63441,93729,91097,59820,13476,36948,17111,91706,22564,40409,47447,60350,44511,33980,30197,60195,98138,74383,235,8463,77977,11936,52437,46230,71284,33000,75432,97024,79153,4492,38881,27245,95505,43143,54263,64425,70624,30920,61189,55458,58731,92763,89013,12762,81182,82988,10885,23209,84146,5542,68967,78738,59022,31094,86543,21469,91366,14260,21983,25398,25568,22475,38832,51782,55634,82534,47945,69785,54432,87595,31809,54762,22967,87469,36887,6190,41708,80916,40280,85007,48972,52535,64231,88797,76771,17963,57215,91062,13706,95968,6103,28774,37039,80036,21095,22361,23857,40643,700,21360,32380,39029,47416,55017,53851,50797,33076,23146,17416,47034,99192,51334,30544,88291,86726,86089,87964,68968,88558,98412,67071,7253,90418,4275,26428,45823,43699,42068,75525,77341,2667,64924,36085,20599,35884,82757,10147,66271,8648,33777,25938,7105,34053,97339,44058,37074,24315,49020,65455,94743,62589,22074,38039,59001,52612,45625,51833,33494,75437,17540,29544,64243,87467,14158,38891,81985,57486,86080,36683,49710,88574,59096,72481,95135,98101,43436,42082,95995,97207,49501,14586,6412,43290,44505,63676,99286,15175,13627,79127,67028,21611,34226,43047,26600,28160,34135,58934,13456,46416,79217,57534,60402,81370,56912,70086,42260,36037,66131,42734,56091,25973,7902,99317,73776,62293,76023,76136,40736,48395,79624,18637,23794,54714,58497,8594,52660,8292,94202,24401,48945,46911,89317,45801,39285,26759,31672,14092,80060,77972,93646,65450,11218,68465,67344,99570,70775,89312,43401,48342,77663,18433,96477,43590,84915,94217,7644,95441,30353,42499,93937,91663,10204,31382,76313,87121,44371,33022,16712,55730,40040,65660,3623,57811,41298,57452,92957,18369,31372,28987,64696,83213,55779,30963,79810,66372,25691,77176,7174,6521,51353,96129,6203,44559,78792,43722,41910,248,36727,93284,26054,40709,31609,61892,50455,97606,38431,61493,25261,9675,87539,82013,29666,51593,7706,31561,14113,24615,23977,38870,33083,35405,17874,13743,87255,50523,75803,69687,93441,77719,57224,59494,68219,98903,30868,98374,71162,84463,76679,95303,77367,77404,7199,76039,74835,28869,53956,52519,95500,97841,58778,8438,53421,98019,88782,53911,74593,5856,42981,38278,38325,4117,49719,24369,43335,24405,60928,85406,45803,62400,22991,28875,66195,77883,83013,57540,89406,52355,36319,12588,24091,66540,72036,1019,17497,75120,70523,20043,1725,30260,21457,45781,69086,85732,52667,84482,56856,55593,19451,14421,51216,27180,25326,86892,34473,3497,94928,17519,57541,38469,30478,49986,73590,27482,5779,92380,98754,80003,81213,68519,46675,12616,17502,76383,64334,20933,61570,18888,59997,18735,49943,12597,83365,30713,94534,1122,35377,45132,68477,28964,19929,58711,18301,32625,19762,85153,8508,1992,81101,30158,20052,60778,42942,76674,98386,35012,66112,25425,16338,78269,27109,3812,91310,78810,6732,93307,6623,96626,31426,36154,62952,75366,81348,77902,5605,91515,33215,11690,6283,52410,90788,41715,75390,30956,6220,97317,2002,5878,28432,76483,74080,68418,86551,9632,17915,83716,9876,31940,66216,88178,53154,82169,1219,93778,45940,68772,7531,23677,11794,10758,69663,66643,66245,59852,92017,34251,47170,2464,60067,71164,49938,69576,97996,17339,41443,74130,86719,25050,81874,2530,85853,74440,85919,50602,5507,64074,90948,52361,96698,28603,78761,14558,14048,3460,28419,55005,98966,21757,55332,33805,97943,20636,69606,93605,9781,37440,24331,38763,11652,32638,7470,35656,51398,32957,34864,73715,64176,13737,8317,47660,36557,75436,99014,35581,8269,45708,5242,50026,48311,21769,47173,37075,20555,32147,36507,10965,36939,75450,15517,27178,13805,96425,39046,78053,9172,1659,86460,58463,53424,98309,33882,30850,10017,42223,42775,58082,90784,18870,49681,67386,16753,55934,28444,6846,88963,41554,9111,69346,36973,11050,83910,79248,1893,41745,25673,10836,92781,6764,39353,65,29888,97850,40265,95646,1793,19918,94285,68208,21527,42029,96595,3610,46126,8295,63313,28645,43729,1309,18092,67190,71686,26721,87647,76795,5159,99973,554,90883,88216,77179,37523,54887,74531,36095,7030,32285,83939,8897,5165,89063,92226,89072,49899,68802,11187,17166,96584,94615,48731,62649,61248,49867,71248,3853,5473,75884,2374,21169,55222,46186,4817,27983,54196,35390,67352,21719,38994,58558,56289,72572,66251,74705,89696,12428,25289,16242,32130,63100,90608,71384,95683,22152,36127,55348,16099,93248,8685,90548,5255,42964,77797,37449,63822,18385,6559,83973,48605,17604,36430,7165,48575,20651,79545,38294,58026,3114,82674,14132,804,12676,3038,72736,62749,40169,91719,67816,29874,70694,17881,81319,11999,30915,1903,63126,17055,73584,3478,92206,23014,59639,39503,92245,54150,87222,95660,69005,77629,85123,16755,15902,30727,18367,90487,14438,45213,73943,37929,65515,25711,86624,92014,94243,47584,55777,51856,26849,44714,59274,72652,75632,91281,43539,40187,97870,6923,17889,9740,78472,70742,316,85529,31281,40928,13961,94458,14589,26564,10465,90079,42683,75597,5980,43373,89089,73321,92605,93640,96376,54005,89337,83025,18085,47018,25990,26942,88968,39797,48080,80364,67931,10624,65788,63777,78061,94153,3063,76678,8932,54057,55707,36713,94986,25821,71012,61788,5401,47413,24271,8972,80413,62129,28939,55021,69892,10001,31917,51251,48832,11934,42957,49651,85244,35434,62052,46648,462,40856,11011,68838,92294,58972,82914,67328,5103,61715,9833,6172,66553,78130,6087,34968,3754,22920,55783,744,14464,73591,90327,61872,98830,78303,15716,15403,628,90863,40810,80993,96097,77346,21340,68910,94247,93498,46676,9255,24061,14696,19899,57673,92065,46427,15165,92253,57510,91026,60105,65160,36502,99416,51689,40476,45279,77575,33198,53807,53632,36019,55900,40481,66161,15338,13323,37160,67078,17318,81369,27950,24435,8995,23963,58983,22662,97474,47394,39573,1563,32512,54526,52197,85994,85465,83840,49767,8823,17356,45092,2294,61688,78993,52546,95254,82184,72332,59726,67237,85745,92872,50548,6106,72192,83149,22518,50214,36517,75509,62368,70719,4707,14700,69685,66415,13729,17158,18297,27900,74328,52099,12550,45804,47513,94500,15031,34178,88664,66687,42848,17844,55147,99528,36158,64286,70677,75434,21437,63837,89893,94587,96041,80351,70640,84354,19905,3624,13333,61064,31766,53449,21113,9115,18381,17415,46680,34887,63414,87010,53114,96263,4785,12528,91594,8846,67875,15532,27782,38112,20627,62913,42076,28740,32650,95304,1942,77968,6422,97715,31001,20823,69647,71987,41501,94687,52541,19365,47134,98336,2669,49370,49932,83210,12656,13330,19865,68796,70310,57212,29648,67107,67511,95266,44984,37541,29448,33242,25697,70300,61467,11392,20683,71895,82571,84932,84116,75633,1261,79021,35294,58822,91299,58414,2346,6637,37555,47956,30795,17460,8140,42603,96248,64659,89811,60786,47874,41945,97602,92295,49806,44202,23204,41844,773,58151,84702,83819,72623,79030,35941,10913,30384,21670,91611,64578,12827,60124,68186,634,92329,20205,94409,8566,18700,38041,77343,84555,9030,48088,31642,15355,86461,8938,1499,91949,95807,47411,33612,30055,48478,38292,50747,12738,17188,8683,79940,67181,35439,37163,1366,80226,72582,26384,98140,95178,15998,42088,75934,7089,17138,32395,44086,2126,43525,80559,79062,61307,92812,95627,19544,92832,95862,76677,32023,86967,13185,20038,23596,99301,64094,64944,95565,45959,72942,16346,39592,14790,4964,77860,59028,33690,70988,54313,95015,97183,39796,55257,89987,78316,28184,24841,85211,5738,88108,21642,81043,29690,25210,31133,89703,12078,56858,29003,99633,1764,63732,82407,44117,54035,65126,91388,17096,69337,53082,60737,8813,28190,47111,95551,78794,69970,9573,21137,7944,10178,19967,11152,91181,50761,41007,96471,31587,65915,127,96983,73476,37733,3466,67365,99580,91451,47964,43608,37257,12508,49606,1625,104,83877,83010,8061,43596,9273,18883,89456,20011,29428,38919,37327,11127,42332,82181,16150,34800,10128,44079,64520,14686,23607,97867,52069,49428,47378,42254,56943,48273,47350,14796,36185,80338,88902,42512,66831,52787,16268,11199,75950,3736,33615,55055,38430,90174,11373,89382,6837,38311,19085,43634,39860,65603,10317,11689,3011,12655,30897,97775,59913,96945,45893,77395,20114,15968,74626,57638,52149,73361,52584,68978,67735,65465,11815,36374,22204,40147,15639,75798,77470,60945,65194,93436,75722,24393,21724,9311,67229,47812,53954,19987,50923,53621,88982,45319,23194,68131,23238,72022,27189,30062,46188,6563,88566,15539,41788,72471,31413,24708,8376,29446,62600,68524,58028,22791,75170,48778,38025,14814,53922,36141,1985,26449,49439,99515,56074,32795,98072,64452,83442,18827,15554,71494,22281,73174,72885,54603,30715,8284,73172,45351,64750,25231,3203,40072,67987,73289,88407,57580,50835,74908,21302,86098,1909,12697,36465,97558,29706,19812,41390,87980,11064,44955,49796,83949,39059,51550,74175,10572,89012,96691,97419,71417,32629,30475,14412,90639,84605,92013,99659,30041,33537,45032,34447,74925,82646,42127,55325,90668,94,40374,8099,57986,67583,42927,61188,8517,42712,47781,35930,89107,66611,10359,65674,5943,90993,96812,1628,79251,39346,15392,46587,13304,4359,20572,40370,19924,3414,83850,27460,63083,88572,66920,77825,37819,65102,49045,55781,54848,38288,8328,76117,30199,9940,74302,83772,61843,67907,91309,99492,73924,67245,71999,45404,74002,5397,86807,46,52263,1997,48714,58585,89832,27092,65638,51208,75451,52675,70827,70077,41243,83207,17141,21784,17593,22424,49757,59886,25053,34167,69034,45464,78724,9417,7057,29534,39356,28047,22748,82796,53889,23699,42827,93095,51777,63987,42324,94825,69019,32653,21542,41916,7808,31719,38757,60935,8384,76464,90555,61301,5596,87009,66774,10566,62544,22137,64575,4371,87168,24249,81116,21600,47831,75315,33072,70480,47885,59780,41135,45831,2091,43133,58825,19236,21355,75175,10684,89092,19729,77580,28763,45964,54379,84889,53324,82048,51622,82109,39994,57549,76995,67364,8782,76636,28015,12847,28050,11944,76099,26151,76159,70974,3116,52022,7639,69233,12411,70029,9096,89506,48237,2051,87420,90499,55697,63543,18642,72179,10357,57445,30751,15000,19237,4575,49886,84140,34633,63557,85770,18184,13581,77943,23999,68511,25314,37769,43650,63327,30760,7775,64531,24075,59008,43322,79967,20089,38806,46723,9966,54118,50040,80802,13722,16526,33037,68985,40853,46988,1083,53958,8736,9921,537,71389,10456,86544,16823,59446,28048,42863,83397,71969,2885,53696,55716,14302,40485,4806,61777,33798,75797,32192,49476,29216,8713,48154,10155,62610,88839,21215,39332,52758,63284,451,75736,9688,41,38679,13410,34667,792,51765,82056,26224,84425,25338,6965,60711,18103,92141,24475,41021,21526,15113,90357,22543,84152,87398,57331,13677,50095,59797,10678,51480,15520,9711,70875,79910,43271,94207,99595,56894,55818,88573,81690,11457,57482,46908,58154,68666,92620,76173,19491,66536,96923,51740,53160,80208,47248,53874,11891,35430,58518,17688,83836,89572,43317,85705,928,30882,68760,54138,15467,65964,82165,45359,99403,37809,64180,8819,89722,41030,76803,64264,71532,96325,46624,17149,21201,99869,23518,94614,91848,87029,47839,71687,65156,83758,89707,25111,35882,3297,88414,37684,79132,50608,89801,35460,60548,98451,57836,47233,52490,3000,76521,47828,19125,47533,67302,60057,96176,59697,13585,28039,83094,79816,96735,2554,51758,12852,11329,24230,22553,86340,35666,90818,94188,16742,44720,89965,85115,427,67649,77785,40647,38986,63659,20305,34326,29796,72147,72893,38439,31219,46392,21845,93430,41370,87926,2699,85774,62317,45315,24734,99,83352,81022,44634,60579,54950,70325,45121,96077,27195,84154,32342,51056,47115,95609,80742,97476,12755,31011,76016,36411,19893,88182,85707,55569,45396,11095,58061,43410,90362,76030,21010,16947,57920,10111,31814,71759,1071,20598,86646,19869,58191,51385,75852,81840,67407,12988,72172,33962,90328,16738,59676,36723,62951,20327,49628,37537,69768,58267,83991,13412,66555,2786,2843,84327,80535,1104,3647,77134,84695,3555,74004,45615,87300,50229,29067,82021,43557,5466,25519,64918,64431,6459,6656,9061,9810,41041,47391,87130,47246,52399,37504,78551,39675,65901,39857,69123,46737,7136,47244,6064,21848,8534,18332,72298,62105,78661,22349,57227,42623,95346,47310,38828,56955,15917,11492,58998,26308,30566,59323,14250,88041,24421,99915,65834,33199,82615,26014,12617,30693,34242,14483,72190,40383,60715,49377,52521,73305,67368,48969,71135,66394,72985,43926,10975,20301,42306,48755,68372,82693,16873,38452,27047,78332,20228,40912,56948,90426,33006,34881,78540,74991,28716,97504,56706,4776,95549,41952,38813,43986,94705,29959,12539,36137,57676,74517,72995,87369,24549,19228,43012,44949,88060,31649,51022,63825,97583,6294,79895,95643,23992,38267,29699,6204,43645,2740,47702,9527,33010,24096,56653,64873,60596,1530,60574,39030,32296,56802,10381,23360,2461,23588,56122,40124,18390,15001,574,54809,94416,17777,30981,92851,81390,36525,59201,24376,23835,85898,74485,28822,48253,43462,40944,77981,86900,7657,17089,79453,93700,53350,18731,57045,78716,42174,62154,41276,14533,92288,52851,50695,45512,6797,26612,33251,11720,13506,35159,5282,3462,68121,19720,42488,9842,17174,21927,80639,79683,70722,82642,89212,448,20442,85830,9980,62091,34088,92692,62943,98478,59395,17848,36115,87876,59945,28252,36293,2737,12194,95315,13546,53982,11971,31150,90583,61126,38,65697,53582,63178,5671,79964,1442,18511,74102,99445,38084,92828,27564,14149,98063,1661,17577,24280,79732,87934,95989,22273,64727,22004,94065,90258,95858,65154,48752,74318,31134,62314,13895,2849,90455,92659,50689,64077,61011,66950,21863,16229,43638,67838,46260,34265,38644,24518,97007,67340,38155,15978,91458,96721,70470,86966,87416,75285,81306,80932,26953,73783,44797,2633,92018,85896,74534,63854,61585,38973,69400,19243,21122,50869,76224,73688,26711,4836,97938,22888,13557,18194,29484,19284,97755,99607,69578,99093,12783,73834,5964,94588,74858,6763,38330,85578,97748,95621,76985,56359,34596,68639,42906,50692,6600,57211,50704,57357,71308,39238,34781,43976,34604,55424,48432,65228,91947,68523,67411,7675,62660,77603,90343,67169,1664,64031,21837,32790,34733,19478,71965,88454,26214,54348,51639,7004,76537,16558,63976,3877,57590,36657,79348,97147,75551,56981,49495,54644,97371,52562,89963,47090,25447,29191,11778,22718,11839,31569,21344,62812,27690,49691,26524,14311,67866,90233,42518,14339,94295,79597,6525,97414,71596,80571,53470,29206,33505,27713,20508,37485,53496,82379,91389,15397,69193,28704,94570,2704,64335,90131,92270,74133,11861,31861,45229,26714,68016,64073,84217,24765,36328,10458,2719,6550,92926,1231,87256,85092,76271,70248,4522,1236,90181,93482,61128,87593,96540,82086,62160,35512,42103,37946,91325,95972,46144,45620,821,38289,72304,93153,72241,66080,84224,55939,76399,41105,87757,93583,12788,48977,51972,3087,717,64049,58049,70290,86195,37193,93207,18200,24500,52609,73602,70206,41441,89901,81209,72990,56471,14876,44462,75774,37217,74437,37119,34956,62318,22998,38017,73659,51956,85165,33069,22200,13748,16653,60240,72969,70784,31895,10306,75054,24168,47755,30706,69681,37226,9424,51451,72799,11433,27027,94267,89657,6515,34132,71305,55310,53837,8774,33007,17969,92901,55384,15922,37890,86510,64398,2722,71419,93938,599,78939,97334,83770,28385,76902,66911,33034,74473,33640,86837,77710,87995,20086,88917,10788,59467,60345,79368,44656,13744,98898,47209,79487,8936,37374,35907,69835,4366,93282,40806,39704,31138,37190,77910,85947,63429,50975,29822,7981,10858,85662,76531,97862,23991,66545,28834,60309,4475,46235,27585,12879,1419,82342,52124,27621,66569,97437,37624,41205,73586,48759,69967,60010,88076,13369,46073,55563,30953,44056,69152,25440,61908,74347,55406,90322,94817,68818,90306,35688,71918,68190,90082,57345,53152,24567,29970,33780,94577,10695,80139,98524,99882,88153,39161,18370,77022,24251,73021,137,18656,21032,55130,77253,72918,18420,53880,69795,4294,80566,57547,42947,60082,11901,60731,97589,56354,72939,97592,51496,48800,81669,14420,26121,67546,55834,89574,19425,52688,25043,81739,75582,68754,72319,61381,57522,27220,82301,60254,36837,87951,92656,65411,98988,99817,2146,25910,84235,376,38487,9446,71119,39469,75441,67844,92949,78732,51722,71568,73886,16694,16654,87700,43903,42470,21354,4393,69689,23862,56760,52086,36233,18680,55813,28513,69131,82022,88476,72000,20190,64673,42219,29065,83677,99711,88810,16339,98150,1535,65416,7201,93925,87218,68342,73736,95938,17201,7918,67599,50059,33133,38543,65026,47063,9671,10533,14946,16848,78706,47821,62007,35751,65151,42112,4102,30813,36224,30710,23717,93306,77569,81396,386,13577,29100,60605,24287,66904,30656,1918,579,27168,99548,61597,50479,9001,12859,67154,79258,65855,42228,88356,24629,60661,39888,54654,84783,72409,16439,92074,67664,50208,5184,75945,30070,47942,6392,76164,69241,27035,91269,19255,19105,58480,94516,25354,86441,79526,15322,96219,34253,47913,20800,73819,3138,18596,11493,86404,91441,5271,45878,65380,68357,32983,29763,98390,94988,59221,4305,82771,69757,32309,34284,45570,76219,9431,14371,17855,16816,23545,2225,3947,41459,12431,54975,24243,88976,51731,39028,41369,4461,99908,30369,22708,67872,18849,3927,500,47003,8732,28648,71552,28727,69981,96422,44762,98434,33604,83766,98613,99172,76466,6031,72602,98491,52382,12664,56848,36621,51862,36999,17206,92549,2524,91117,86368,94810,90513,36840,70924,64817,76823,94611,51893,34320,97397,73137,72631,48085,50137,52931,19496,97664,28913,73232,92523,64602,67813,55883,30519,33982,80051,12091,69585,72870,1101,76658,36744,1262,97737,12455,4633,14815,52471,65742,38707,48818,51897,33188,76619,47268,11277,14164,27901,98576,49166,17828,56308,74270,76264,16023,40096,17436,95930,83490,20256,9283,7206,41689,20767,46614,89408,75267,47918,14613,45819,95184,15206,48213,69199,71752,50796,79267,89002,23849,5705,49692,62796,4792,85459,8230,50513,56234,32559,32463,35014,21580,81418,44684,49407,26256,85829,63485,80546,76570,79386,35728,94330,70838,66481,25422,21644,31933,31718,76730,74170,46382,86845,29363,28638,98234,35234,12619,31153,49435,22138,39843,97759,45109,39710,93939,42192,58466,75993,72920,58797,85860,77845,9743,66356,16227,55794,92622,58238,82221,18973,94395,5681,65025,1944,29011,34031,39455,39216,7394,83462,90279,46969,75866,92433,20037,14557,43851,21248,48509,80626,8676,4500,96629,57444,97059,94343,96754,21233,35771,52727,64594,65257,19740,74146,10704,16353,21946,68798,58347,60747,95896,64542,74506,94002,15973,1986,87664,85646,42122,40846,59896,13220,77044,7581,21955,81309,47540,75072,34250,27555,61846,36052,7358,35257,12567,21001,10643,33400,83687,11555,93926,38643,10882,6184,40978,10717,92099,88890,55134,96903,11670,56321,26543,67101,77055,20828,16318,54376,41297,28823,41508,82484,65132,4370,53797,25872,14073,92107,21914,56379,51429,38483,80588,70189,78401,83945,97005,12534,88086,96449,54817,48867,85091,46138,95376,68058,53702,95614,99191,36021,6817,78986,45685,12135,80409,46628,22701,41556,60468,92884,28535,96780,35371,61922,71718,31019,35605,11044,16662,13822,2539,60830,55279,91105,6630,91856,68,52017,75747,99555,61413,5288,24424,86190,44377,23890,95133,84624,97677,42238,4367,93531,94792,26825,91101,41863,42386,42646,48227,18494,42507,34454,59433,83426,77946,78723,65015,68766,51552,94776,18461,52256,13859,65673,2640,43728,41131,36602,38773,15324,98548,46696,11245,94723,99927,43905,53295,28746,49072,32390,791,23499,3730,8826,68278,7583,16993,19697,47907,30375,87022,2350,88451,29257,26610,29652,49844,84725,33973,97467,21877,66163,1852,42999,85105,1441,13887,16898,39068,60218,61903,25387,16160,98045,93951,59795,84514,41050,31606,22790,76863,84907,91383,84577,1912,13836,28511,62268,85217,15903,21211,20403,24971,89808,49661,40809,11407,81875,75184,82947,35327,27147,43681,84171,83976,15792,29377,4024,57027,76221,75854,16094,74056,60183,5895,47334,85915,10478,62186,90805,38999,81329,89157,14682,57519,49826,15993,12525,76634,24092,88253,70530,61737,91390,30289,48929,13078,12219,99443,10727,60389,39880,88954,36724,68719,67187,23242,42943,62609,69805,46287,24362,99419,34985,86785,33682,18729,5565,21875,63317,63119,60668,69248,16581,88206,94190,38065,95929,14865,66773,37087,27452,52265,47816,57140,16359,16341,11151,32300,9970,53559,62855,66570,42128,19211,36998,4629,36923,88366,17216,13660,53388,80448,25660,4098,3307,581,74807,56185,92994,8493,30825,31414,44250,70245,52151,74635,50301,42204,59197,52224,45403,43298,87144,19314,34282,10728,26810,79156,41124,46213,97415,8388,71209,61853,22928,91237,13785,11853,30983,56917,58067,46396,42887,59396,56082,73658,38863,30272,99969,59560,1974,5204,36611,88305,27830,39209,85777,19743,51600,40662,86767,69516,60410,72284,34248,34,45424,68542,20474,86989,2168,19424,92001,69854,43649,24485,31513,9937,21475,59505,55684,49031,98008,81251,89685,21919,85294,79169,78820,20173,53347,85773,37704,44772,85395,34346,2260,42955,44523,12485,61459,86151,87503,69166,12210,99781,18454,94256,88442,40009,30616,40206,53952,39832,93043,16190,93316,19688,6352,64617,93460,400,27991,69594,20124,31261,50617,18110,46882,77220,47829,36133,61979,19542,28189,37200,41434,48820,45071,92511,29296,9353,84435,93849,13953,87360,75307,85061,56790,98753,71495,80506,9444,8609,50666,41033,94412,37476,60780,24955,42040,56170,94846,76758,21034,82611,39654,55771,62623,22343,70579,72033,23733,27955,43387,83925,14938,40160,52503,66785,94568,55698,61671,85980,19711,19885,45854,36609,6112,22010,32386,15277,26520,88236,26337,512,65123,45521,77961,51444,95361,29071,5618,44842,59005,22317,72181,10421,82619,66191,28103,87207,31826,2232,43662,77678,23187,84445,71634,35653,99531,66998,97637,70660,5152,83112,64050,32647,3454,39263,76558,4324,40867,83984,38668,88012,2995,87303,37941,97684,59399,35586,1252,88984,60725,93810,21888,63645,98088,13056,27614,4845,87412,72788,10210,26133,81176,39621,39242,42763,53063,24759,39615,9521,49487,1173,82953,85451,27806,85310,75101,42085,48369,14878,4125,26882,83725,76339,78038,90978,53291,60340,21449,84776,44295,27596,73030,88631,54133,6966,49604,13680,26211,28637,98337,61702,67738,19398,50746,61208,66782,14957,69654,16184,68780,38736,49480,34097,3141,89500,191,45020,75320,65293,30533,3093,20026,82676,32782,51643,55923,22978,43613,88273,78204,1081,21492,69417,12517,35076,92917,31026,33103,88665,69604,52639,38762,98589,99886,78438,62732,50916,99654,1568,75416,68067,56702,33263,83719,84277,10226,60137,4550,20710,58313,34910,66303,3507,49089,83450,63783,85332,30698,65827,18576,70733,40738,41323,10791,88852,78691,64541,31095,28825,95890,64181,61656,52627,61907,17812,13245,74861,56494,55476,35667,7727,34953,37960,25712,13164,60025,13081,54833,21451,21297,15318,62163,66151,96095,85735,63743,15960,21101,33402,7442,29431,4416,10197,63664,70376,96846,10869,58587,36505,32225,26616,53891,73820,37912,94449,44028,95674,58826,74682,42526,53294,31291,38816,18615,64744,59357,59720,58680,29969,85263,5923,4571,71598,4596,9363,83378,3740,58300,83467,51601,23290,78092,60246,70507,83368,76676,96130,79629,88247,9981,52141,45888,28666,86509,26353,32235,33437,10515,13033,30128,74114,63320,72322,7822,14465,43400,19416,28771,34002,7202,98819,30407,89496,38887,514,22565,21566,41389,2770,35199,39748,67451,36378,15773,5379,21861,16872,54307,99890,42043,55169,94905,15089,48528,9153,15090,77895,83609,34665,86549,96993,93688,74193,64708,71856,30146,79325,52882,48831,42333,77396,82564,74058,19176,80116,67215,55286,39331,96973,14827,78522,62557,19737,5572,59794,8906,43356,24279,4180,97084,6266,53622,3224,21277,39567,49868,75650,8081,10699,54245,66577,66495,62286,3383,71201,80290,32448,94896,15657,50343,3413,65249,17469,22022,39591,9748,1266,90350,86931,71853,37586,65903,31377,24754,81956,35761,66992,62773,2001,75882,35245,10444,12466,38703,62032,9613,27260,70871,9987,44104,38558,14728,32447,13329,56214,11112,91901,58692,14239,41795,36254,85449,67065,1185,82035,55460,9542,24215,94406,88313,4929,10078,15743,11438,93352,25703,10015,16478,55807,77097,46555,57278,41857,37804,92823,96922,99498,38933,6677,15858,23715,48541,11019,64996,50355,30470,77660,42845,81749,6757,25676,26579,4972,45073,29043,75035,48912,78087,12347,88219,78396,75516,9821,70813,43251,72895,73113,53036,42466,43891,67944,70364,57736,83563,76576,37686,16087,72543,56227,38172,95258,91909,9868,15121,45910,22615,22883,61417,86875,64832,41417,56093,75544,63221,67011,4003,54643,13077,58442,24772,65958,92327,71515,35287,65779,72944,67396,42604,45791,30923,39555,48229,46161,67895,9491,68330,47868,55085,84407,3368,75469,27910,11637,42011,94478,77071,85077,98952,60551,94205,32155,6506,26698,55735,97933,17062,8899,63268,61889,411,23557,56493,81869,59317,49230,72055,47711,17611,1363,63044,6323,54610,19420,62226,75751,2169,2626,11263,46377,48722,43281,56934,563,43710,97542,15798,50157,26869,33716,97149,38826,9099,55974,14587,82880,18322,12929,26645,14937,89234,27773,60624,33276,28918,13216,52879,54283,73408,68937,66330,54050,24438,94958,47130,53920,75160,4997,68640,42555,83001,32214,75261,2338,22455,31405,65939,32756,46350,55978,76057,10028,39311,6009,5708,27597,64164,52997,23112,30275,68979,26142,85307,17197,56228,69613,65119,51084,87976,46887,20193,76061,93716,96739,33654,60980,80225,59437,56576,56766,65864,3523,98172,74181,6592,40442,90577,51457,61037,89550,49144,94492,95103,75818,25067,52442,50861,87794,70146,42752,87938,99048,97491,27961,4570,74179,62403,82819,58032,2731,31126,6363,39974,77511,3596,63412,44748,31683,32356,6734,59616,52257,66270,80263,80228,95946,10748,96952,21092,94663,16266,20078,58264,25848,15555,82657,34227,63187,172,30169,68113,66704,92204,85273,85069,79344,61748,90954,26274,28171,71169,48799,43685,75297,15389,87950,96039,12332,449,69069,83570,2482,74048,73315,21380,3815,54031,9407,89272,2871,15457,13553,50706,11142,11132,91555,89008,33323,13571,26756,85586,29941,83372,81124,14842,29976,52606,80288,72115,1087,95687,52051,41643,36847,75205,37030,24307,43064,88756,64610,51258,88748,54764,32494,71945,2559,15316,36383,86890,50537,30505,86599,91470,42746,88580,40673,49296,94320,10530,8255,28278,96250,91769,74802,75674,56488,79092,90389,58155,80443,75954,10268,85010,41772,3034,15117,41879,2183,36024,76738,54097,94236,22085,117,84875,39459,26013,34420,32859,10382,39351,41633,93177,32492,9161,36351,36045,17673,9895,8218,56655,63432,93028,20067,34912,12824,44302,94920,44457,22499,90366,78226,91865,44620,6163,90872,49308,8750,20297,83600,7480,76234,95012,93376,24635,57449,58814,77412,93161,67797,78915,25270,99814,46244,9547,28623,71186,59611,5990,65203,49486,91615,75402,43824,38771,44437,86316,85330,56119,70064,44070,57740,50373,60501,62794,30336,12890,55254,82408,70770,99052,58073,46917,80617,49282,53213,65678,36200,43131,23267,79201,29659,75192,10848,36524,69789,10249,42399,21381,70600,82106,17660,81836,25476,86500,97724,56897,57312,41964,18235,96668,35661,46653,52416,88838,4368,62387,34302,50031,20597,57327,6453,88673,88829,10422,47129,61315,25512,82910,42944,67296,71003,94074,80432,46806,65944,77650,24319,79366,47644,13874,97539,32771,51063,12978,56881,11739,94809,66434,27658,79540,31541,6553,89746,6738,82386,82965,70894,19525,35366,72037,90661,24026,9101,18078,70318,84928,83635,63420,93985,81294,41231,22688,37410,91596,60767,1194,72604,43404,13477,59375,92587,52093,89993,6249,70537,39890,11554,20855,28406,98413,42193,11047,44995,91139,28313,69640,62510,28743,16013,28999,65983,30235,76777,86758,80934,1079,31054,66134,38319,98352,66970,51347,11201,9952,12621,40283,80852,81187,93699,30718,20395,96101,45554,15039,20426,63227,40769,24634,36799,33697,95502,70776,36770,40563,37729,3786,83350,44953,71505,67631,83309,12510,41219,20829,41267,7819,73356,67531,73078,87318,75030,70822,73104,65698,54234,26063,851,19866,52281,10391,19354,30400,69503,34939,45767,69643,66413,72923,86621,88627,91010,48938,92344,61848,57148,57963,96541,60364,50556,40548,89586,53280,76340,69603,43654,76514,67151,76020,77046,81952,14820,71184,1855,4093,86633,49513,3499,51675,44795,39672,17726,40319,1711,48716,7973,37557,73665,46753,46772,33975,77148,9290,54910,37728,52462,38386,93653,36412,56788,31821,99288,25604,68065,64054,31285,99629,83268,71410,50204,43083,92982,83647,41202,92632,84199,4978,12935,80815,50836,6627,91320,86873,53163,29925,6202,67160,82192,98892,32122,47496,79051,5211,22674,44363,98624,93660,20452,62312,44346,30063,23924,87444,41321,56828,8015,53767,423,23190,59066,98142,20601,75892,12048,34458,50591,22885,47795,95299,81313,53187,11809,43575,26694,62574,12337,51029,32959,69249,25366,72828,71139,56676,33847,82357,10237,21754,18374,15258,4925,86,70665,53425,7834,99656,73161,73287,28962,70884,91201,37121,24858,58668,25960,71558,75969,80610,60511,55204,86294,96534,61924,6153,5587,76815,48632,77786,29224,68144,91443,23134,25107,76465,40813,31909,81096,29575,72884,3145,47237,25086,21911,85940,26234,97827,71915,37953,86542,28507,50237,96684,39514,95869,53805,16780,41074,86417,80452,22216,5405,75877,9479,8694,70403,64590,9530,85212,27521,89194,40491,36902,81296,10674,83041,93802,4148,21912,38506,18031,18196,5330,24516,76799,23145,29058,14648,66893,388,3023,30230,17825,97652,21162,90390,58645,32282,84595,56739,52146,40335,84403,85388,9498,54394,46912,21336,77260,99983,36949,12744,87354,83797,47206,80510,80564,77205,71740,93983,47160,54252,30657,42054,98823,9665,35662,36317,26565,22434,54487,30682,47114,87021,17905,10889,3766,48781,25999,20640,85415,27716,37268,98357,72557,10354,73722,88997,54179,38144,11423,51512,69032,59171,61338,44015,63481,51375,65096,23090,28967,60702,56640,66176,79207,55892,25365,45356,26755,65610,66155,21325,76987,17154,84568,26548,69052,2422,96276,36183,84200,35905,27935,30137,72145,36289,2734,57,89325,14041,80306,36850,79299,85577,72946,38938,85416,43515,75778,86432,30960,22122,16392,53940,68962,1487,15296,59036,17434,31858,77154,1234,93240,44417,44341,68334,92943,43838,11311,9820,96570,40466,54835,60303,99277,93192,81136,74127,18549,59993,34396,65162,32870,55462,2594,59331,58566,32851,43609,98028,15420,89700,26771,94209,50378,34215,57680,262,98466,89109,21749,89057,38525,56472,14054,31480,88421,25397,70093,42533,55050,93049,63123,94692,32303,42793,91952,17344,74059,49529,32280,51055,43888,5291,62024,23434,62815,36549,97333,33233,14927,20352,25167,35795,72594,40557,12537,50036,99549,18736,5333,77774,46843,51957,46781,84017,52804,7791,16925,82759,7616,61065,14128,77500,65585,10061,88266,12276,51619,70855,32188,25070,29175,70608,89119,2310,89511,63280,17741,34625,84773,63252,96115,90109,20095,72139,77497,17277,71325,32742,49244,87150,86943,10578,23096,56345,35715,94042,77751,31670,49329,91541,2179,75424,18703,2540,60792,36718,7971,80041,83808,7553,82845,31660,81054,63072,45742,12954,67967,86433,31827,62450,49522,80396,41481,34728,27958,93564,42064,68837,5233,69450,30214,96824,90365,29846,1615,29547,86870,79126,30883,39836,92382,79184,70528,27661,57798,33725,19045,82889,78556,3737,74657,53393,87081,18532,13263,88258,52132,71713,68778,75427,698,17032,92535,68312,11902,46990,59391,40919,67124,22980,95302,32806,11153,91043,82125,1470,22909,51857,93858,28916,99079,25700,6310,46549,61508,8210,69171,46942,47292,93326,44071,22691,48190,3278,68248,46983,4041,70448,95964,7913,39670,77925,85510,5208,83580,51542,29149,42702,70979,83302,73150,50658,3834,51988,79708,73297,4239,27252,27777,52693,46780,89915,12460,64007,7575,52164,80691,43463,73621,61573,54725,75845,48740,18188,92796,4955,65623,9404,23598,73878,37388,14544,39682,94178,67186,98866,73589,42535,80053,91223,58831,73214,16383,95632,24540,27699,81528,38258,5298,74214,95877,67473,64123,9182,69944,59230,18122,35011,68420,54942,83093,69287,40549,7502,64544,76134,17924,60432,29046,19011,47640,68555,26401,83018,97410,82094,63449,85410,87535,92516,45305,52625,25214,81272,46748,49464,24724,13267,72262,21695,53983,38549,90737,71794,28445,86168,84401,75663,40746,95014,87575,78910,12170,50432,74222,39962,97430,70179,89380,21394,10083,4204,603,32,73313,37561,30149,1495,32651,45994,28428,91518,60126,42119,26336,1635,86618,62081,7710,86449,70072,53516,77269,7371,88866,30917,14968,30934,2108,50707,75471,88399,65326,73442,46762,14087,84394,21732,16917,98739,68071,63604,22259,9796,38845,35488,21923,95236,72535,68256,6518,30578,56722,59860,85319,81652,53084,47234,7704,44123,47547,5710,54193,538,84793,82157,83995,57747,12732,69552,65680,37991,81517,71033,9137,1233,49302,25085,11658,86123,56389,84359,63594,77784,65444,34909,42379,30797,73894,61453,84059,41902,94758,25240,56844,1412,57016,55711,96748,58181,71420,48379,69148,65594,84523,24552,97623,15976,27469,42970,22136,28783,50552,19154,8756,80831,87491,8510,17119,16249,1307,31231,44388,78512,35003,62720,75230,93092,40059,64568,22234,34647,56110,57369,88551,14741,77983,86830,24843,70819,78003,38321,76728,28655,65960,48137,44853,68611,89415,60459,6652,38882,58417,36472,6708,44492,36063,19042,92534,34095,53754,1567,26006,24385,96351,27264,91957,75006,49035,56548,37260,61379,93568,39833,35680,71300,2352,84493,10677,42987,91726,89545,55787,1507,19732,43474,86017,52284,14009,2866,99537,66850,82498,99552,17101,63679,61816,15585,28429,15544,2597,99816,45453,76607,5261,85616,60063,46861,59785,81500,58476,95442,28202,24018,14705,8487,16109,60155,50505,60019,69717,57042,51527,59479,97693,22581,68339,53499,41519,38751,35903,18813,78511,56779,3392,56312,49861,2657,63021,8771,47645,63526,53566,44276,43095,44410,52826,88144,64839,36496,39273,52554,71997,70555,8322,96760,99599,37942,89812,97800,92059,50085,8760,7114,42668,47225,65325,26480,60107,54557,22498,16418,11746,29886,39884,87096,3715,51859,86508,19472,31310,78457,49579,60297,92568,73666,70237,66948,215,84203,4292,76032,40247,38316,46794,78036,37524,25859,13206,2074,25627,80347,39905,19383,64195,6185,17785,54462,44651,41932,33207,31528,45422,66951,80576,64120,84911,59653,36707,54615,61938,58762,54999,52737,52918,89723,69426,15388,27502,44498,24601,86597,75373,15346,3379,30021,15829,11102,84291,54030,26820,51426,10338,88508,62495,25654,1718,91490,30406,58611,10526,46613,91895,38194,68015,64583,72539,98002,31375,84739,44780,27363,77556,28817,12295,68726,66566,81641,22628,31214,25791,11243,92066,5459,60748,41024,83587,99379,9920,28728,20009,13384,23413,85154,17234,94242,60942,2181,84752,18147,33162,9226,15247,66497,10346,34036,22858,58651,45028,73303,48365,38940,80064,88506,81696,24700,98214,11027,92185,62283,39155,93075,53959,86272,38956,54588,11219,6146,80461,98261,67057,39996,58853,72632,46537,35927,88428,11523,3634,81747,666,23772,20556,49874,28055,96291,34477,27598,12409,44262,49948,85739,5307,58700,40475,35373,56404,48024,28672,26715,4014,99899,90370,81104,99106,90179,44256,25509,95816,51925,40677,74739,91751,74782,33811,30443,4484,65800,3948,73376,7028,95911,42769,36217,32449,34478,75889,79906,37835,234,47339,40608,85528,72967,94312,67707,47200,16952,34433,43049,30889,28713,6862,98255,64042,87550,74071,68336,89543,85011,86882,37502,77383,87807,22051,50385,5657,63986,74855,57499,62301,2010,51149,77750,10680,92690,41507,34931,75173,67715,63572,65094,86035,67373,57537,16689,60730,88639,60656,1196,83572,48721,66435,6264,68634,13918,75183,75622,23491,58749,68964,53384,1141,38462,85460,3973,1438,58526,15847,43088,99457,1780,78677,30884,78323,49875,80676,17328,45416,79548,58408,53748,10522,20465,98086,70496,58676,40858,96091,93523,31533,23981,59019,84584,14321,99675,82501,18111,74444,68102,12857,28883,13021,16044,94579,45489,95408,60722,80471,14189,98298,80790,2651,31195,41402,68544,81599,50066,8796,36673,94998,91429,58911,31497,14109,88457,94606,76372,31898,15387,74389,36829,68939,58015,26478,72200,67976,82072,70482,1693,60070,89662,7345,20108,11871,4657,25731,19251,57083,84749,66199,37156,22602,2234,38996,74852,9371,15863,96946,80521,63149,17282,67155,90273,59006,80529,35909,10521,217,84197,81557,40960,40102,25989,93833,60044,77297,95059,58872,21788,91136,26235,67423,57970,67639,80373,32330,99069,61098,67377,86389,1604,53308,87041,35924,70078,88801,88916,4402,35085,59079,8178,6020,65667,58844,96106,9192,10656,78077,68139,22857,30059,4920,31808,41286,92373,20102,55960,83856,62784,56508,22837,48621,19299,63505,14959,47625,39340,41947,89285,72807,44998,40661,39128,60828,58773,27721,7718,37369,68630,7661,88677,81622,24637,37224,36165,32823,13985,18628,50182,6376,4407,42124,61407,52300,74394,68527,62252,13390,44900,66235,47589,93557,72871,73003,71907,26709,46947,19078,52430,17903,10545,83727,91904,21230,44098,70996,53704,11175,5430,7997,59894,2118,91839,90177,79959,55368,46197,90567,8486,51872,8697,89084,22778,91597,24453,7799,40885,25157,5613,61803,14044,11214,66984,42363,74252,31685,87736,37131,54374,48046,23663,99583,96212,83653,56338,33769,18400,29304,85519,96230,39504,74772,76972,20353,35043,75727,33041,62358,46452,10682,60530,63475,51965,29589,63549,14430,33493,61781,87095,7189,56767,39396,93103,37058,3890,66532,75683,73733,66682,6482,42728,81814,57044,85041,83204,46592,82569,64043,32482,76511,1791,14468,32550,14877,39921,47259,1704,15399,6464,91211,63165,40593,85809,4399,15412,20977,67346,92612,41600,73928,12905,69793,87066,72808,43563,59132,97549,41741,21613,25423,57931,35209,24876,23021,85678,55431,52259,41804,55182,390,90124,88303,80209,32212,30360,57116,34761,70293,65309,78525,11092,78953,32017,88759,39067,3549,80556,70314,3118,3153,34861,17595,5128,75166,99427,66196,49670,18021,88994,81900,41606,53841,98366,98230,21899,87944,50174,4458,62225,92947,92968,11961,26866,11851,57095,42984,30926,10911,65074,83062,73534,69392,23486,81501,3245,55167,56930,49777,9739,98572,55250,31817,71843,61659,73678,79686,44847,96352,79849,65618,49304,94972,60963,49023,93421,49002,97794,91088,70841,68745,74470,35718,72844,38979,34767,30165,38171,40351,36493,53246,42803,99994,22632,68827,33122,69413,58485,99370,2329,75531,60174,32555,87267,61376,41591,80126,17022,94099,45562,82240,80715,8430,58986,52532,22109,64039,76750,86659,67613,44787,77403,70419,55439,64812,317,24989,82344,66041,42101,49655,33210,74120,97584,29147,27960,85769,80017,52185,99067,49384,71669,63963,68350,79843,96476,86008,78685,72711,13629,49542,52417,9703,85281,51763,90601,67129,155,18722,53032,95530,60826,91618,56566,11325,93909,6707,56972,64821,15630,86236,81055,50480,48747,894,99486,17435,25384,72887,64371,18887,92921,53418,53175,26470,69682,94064,30328,69264,32907,79309,87321,3800,45457,50931,92355,96316,54364,77861,13976,32368,36538,54534,81850,1405,87717,63107,29097,41121,24745,25486,44251,19168,20313,21156,24296,17591,84851,29249,55376,11825,76612,6433,82066,65590,22189,96445,38859,61035,43907,84972,54665,23668,75999,60491,1418,72056,70183,84143,60708,37791,66832,63878,61275,85592,74008,97074,6209,94165,6242,18248,11209,18403,26128,24126,67322,74794,83978,85230,71183,12023,61863,33295,83143,36469,44644,31103,74253,91292,26479,33078,13929,52756,17987,83650,12867,8608,98096,90217,9305,19566,28352,12596,22135,34393,38846,70437,52529,89788,81453,16954,19725,91557,6285,99212,83757,61994,32338,63037,88299,63939,21312,24350,33878,68650,73831,9222,20813,5451,74630,7550,26799,81378,46043,85591,30745,6804,93499,6224,84885,62676,89245,74474,66183,35758,17671,16442,86825,57701,89794,77405,72096,74189,63486,62627,5155,1728,28007,71579,70195,21536,58770,1958,18227,2543,74945,66558,78106,87364,5791,21793,86669,86684,67255,39386,14232,49493,52556,3031,7947,65099,86826,72454,64813,40405,18997,45232,19508,43723,52409,69369,76891,37192,98785,53626,25939,84680,89714,72492,96802,22866,61207,18290,89949,20185,80703,30754,65142,57763,6056,16617,71562,5905,2581,1346,85723,30454,53900,31619,68788,32585,13697,42072,57948,48400,7642,7366,2831,67926,14561,65255,18190,84623,22448,23282,93468,10587,35702,20220,30753,35320,18856,61957,97173,87455,28509,88208,1717,83950,42492,55737,94650,45780,45789,11386,10410,7468,81689,54918,8445,61544,99632,84569,27630,4541,44124,45600,15107,26851,8283,28748,7709,80097,38381,51325,33693,21562,44389,7663,33919,21099,38378,90622,16715,86665,75669,31737,71810,29303,64470,39433,28314,14327,82694,37409,75038,17038,4734,52672,16992,54381,34686,5690,88913,31703,31429,90463,97774,57163,4266,39976,29201,37847,98232,5228,33699,26376,76186,66436,8203,55891,93984,31212,77017,79232,37070,36042,11500,25740,5256,97559,63375,23620,37104,50146,97276,33568,41805,1876,15048,28787,24555,88348,82919,31899,95036,44575,93396,95238,29988,46134,84016,28659,56963,77353,26266,3432,43326,82195,68592,81171,14476,97228,87220,86969,47668,50518,2399,29042,59205,80738,32635,20191,26782,91924,6322,40697,60697,12721,68871,10122,95085,1874,61651,3390,11951,24726,9612,15665,41701,84985,2172,65893,8415,79369,82075,89305,26143,80112,6243,76767,81821,31973,26237,47257,15170,67430,4466,93674,84040,92860,5386,11135,51577,99381,39904,95829,90364,59267,5873,40536,67497,40762,70803,86014,11662,14034,89978,74244,68769,67115,56659,30555,64514,33444,84438,77664,54583,88237,10840,53725,42574,85652,84761,55297,2729,24234,71264,13236,26581,81265,42175,78964,68333,98036,55136,77390,24431,30496,82186,78802,44968,27631,56869,48251,65617,49330,14150,64456,90432,8948,69315,2968,95411,98087,12454,6806,24055,14830,67496,27962,16068,49958,88346,35621,32347,42227,96660,21998,30776,71047,36647,44926,86711,9218,68446,50615,14348,23453,32713,12446,75843,54748,28870,15540,23597,28357,62237,32289,87395,11561,5946,93942,82261,66011,22,69960,50446,24865,32314,22443,99913,67125,31070,89115,22397,1915,23261,90712,72821,39360,82327,95681,59160,47039,90037,29895,27034,67632,79250,24595,46558,97193,3950,3243,69224,23044,56351,22992,29736,91111,68812,74715,68998,24221,50888,11855,73495,74221,96940,71545,30943,60683,37044,51052,59700,88837,71602,78274,36070,50554,64843,6391,61066,71122,48727,31140,1916,22418,75648,80641,44378,8904,89960,98528,33221,72038,50623,68235,57258,95074,84740,85792,49654,74643,42996,23477,83318,33499,80191,9571,17305,14896,31081,14943,82763,34169,97601,70074,94089,46198,20085,92171,64100,89208,36635,31888,69432,74971,77765,22093,50550,97407,95239,81751,5460,39565,42688,72345,62424,43520,45592,62207,24684,21774,28358,82039,14129,78327,6341,45440,53976,88520,41649,88218,72656,57656,32867,61235,22675,35164,96927,55863,79884,7720,68437,9112,53678,94222,92766,84286,28259,70225,46814,93320,15109,97561,45857,99962,73411,2483,80543,55043,68189,31230,67360,32226,67919,60745,30603,32418,95986,67671,58950,78297,88324,4355,8770,11160,8586,78019,99995,52844,76079,4392,95740,89715,4170,4473,259,36996,2053,3067,63599,26298,31553,95983,69725,9483,14819,82800,83155,19371,95448,60806,5848,49630,92764,2246,27632,73872,79191,68408,44411,88186,10491,42019,17103,82869,88400,94469,7153,28378,7917,4109,68383,2599,60447,11008,14750,80189,35985,93507,76792,78920,12259,5115,3115,9019,8739,69478,78596,57421,95584,77586,94214,28736,25705,97391,9738,60798,51042,14543,84835,25170,83434,70521,34623,55585,46089,65078,64551,16212,39408,50500,26722,94678,47448,26879,51278,23525,48769,85500,74089,65629,89926,23117,17942,41610,21005,29124,58148,2855,6731,46501,98711,15417,78224,2215,37366,27884,71697,95941,79654,89419,90817,4668,77876,23085,45727,56807,17938,20538,84841,6821,4548,25135,30276,18612,91460,77384,66830,8593,40460,25570,61611,99556,59593,55301,31762,32361,72142,7203,81203,80143,80900,72247,9923,30591,69651,27615,1761,52191,88735,28616,16571,94436,7778,43816,32144,18696,95902,17302,78750,25388,71140,5205,26487,12899,50047,82421,98204,53406,13913,82624,7668,59592,84728,96464,81266,9989,28518,88904,85939,38419,49841,62322,23218,19623,14559,77721,86819,59741,16747,8460,42330,81210,62575,49229,66447,56504,98863,43855,72379,58008,12766,89417,46786,47679,44418,16650,53739,1248,56992,97051,19296,20859,73453,81637,69511,96337,12919,23547,62647,94532,99641,13920,60442,70559,22818,70823,23003,79245,62947,73811,20064,55816,16878,94513,85132,52994,21830,50271,5530,67833,29870,60382,18094,40820,40061,8624,76149,6269,55739,62012,3900,64929,7222,38840,25228,35966,28924,42455,17995,16195,66797,29010,40231,83896,96267,37114,23449,53635,68004,10303,96443,24293,17269,83537,76409,86596,3054,55963,24206,33438,46232,33587,66031,77271,28395,98763,15707,82660,44105,43329,49128,60253,38697,966,90920,53868,57406,58943,77189,63591,92581,60757,29402,31741,51038,69464,36564,23376,44179,76415,59775,58001,49272,60456,45347,75754,78580,68202,96898,75284,87715,91944,73112,97617,77142,88919,1671,34948,47737,46686,19739,20240,44207,74767,68470,14024,86771,8024,88316,65488,41475,57762,11989,6100,88543,67563,87837,66877,82403,15904,72436,18360,65223,36404,98874,16265,96869,12683,68348,53547,16598,7087,91023,79501,45671,91040,71841,13906,95633,47771,55080,55708,65319,84042,10114,49586,49322,66654,70124,10906,28539,62717,54878,98177,1190,14910,26261,78263,11140,87887,87192,6405,74998,65437,51479,5766,46547,17327,61014,37033,34817,88679,88903,53755,60995,16623,39506,51281,38441,83488,63536,72008,54289,89425,94364,76330,14779,92550,52332,28159,68428,95309,92778,34689,25100,37243,31893,33710,37113,60396,92544,36556,699,11458,42961,1779,53908,41204,95443,56651,62774,99874,49485,3822,26421,98408,55809,23964,86792,84824,16671,40906,19210,81872,54099,59541,72326,44506,91502,30538,52181,76176,75455,2833,50196,8069,94931,86085,85934,93144,15311,49108,42226,62157,33267,30125,90497,96283,27774,22033,18998,12745,13445,22684,6854,92779,49700,68255,6833,24080,54662,6312,42039,97320,20376,16291,92264,51450,3438,96990,8379,79507,51875,47161,82359,57615,8138,13315,94855,62115,64253,46896,6832,99798,66144,27649,62076,73654,67711,83636,65665,75538,71775,39064,7025,48638,94034,64786,70292,33495,98644,2037,9985,66843,55998,47892,33317,19727,87014,11261,17293,16811,32613,88513,13583,65365,79433,38008,43258,32660,12098,51146,28597,80841,77854,45308,78740,36040,78261,73226,44908,18428,26583,8870,97471,81781,15928,41724,62927,95245,17355,90243,82243,92375,35565,64429,26690,47477,78869,46831,45935,25457,73617,32374,24265,67901,36288,93226,84968,43198,70804,77466,70167,36639,51057,209,39606,4584,57814,30131,36553,88026,98650,7040,30253,70162,82336,43492,42835,3456,69666,15047,66337,2388,77345,42994,68588,30415,91022,9887,83283,35134,85953,81999,47346,16679,19666,33496,34599,40224,63625,32158,49707,7192,29490,57113,74027,50933,24548,34479,77604,19364,58041,365,54049,95234,50276,70062,90658,49441,944,14379,94994,45375,8862,53183,61395,13555,31196,91355,93009,69605,57861,88567,62478,51582,81292,99331,29828,45633,64388,23382,96225,39235,80265,56960,29643,208,99759,94303,79200,96645,9125,86138,6533,71536,46486,99413,43222,22873,89036,94796,83492,82710,10981,68473,7605,12992,41599,76680,37021,20270,35241,13190,53534,17711,79794,9847,51673,97854,95554,34084,74762,84865,41815,79208,4736,99266,4053,3608,89663,45307,50249,38303,11389,25268,74411,89082,43331,80325,17516,11956,32648,70554,61824,87394,13497,18072,17640,44474,60335,51792,20505,65621,21969,41981,81468,59485,23083,96733,79673,91782,9758,79862,25392,29266,66304,24702,92629,42182,24172,35055,76201,43178,65238,22699,21894,75388,33762,67690,95064,55260,93130,98104,53512,77476,13,91126,83320,86108,52255,64261,59599,32339,90015,1489,5610,92147,96361,83128,40568,61981,25376,3718,3068,85342,88190,65557,57277,56172,53486,82835,72178,88381,28802,12066,40262,60017,73330,43379,56055,46202,53274,32477,24323,49461,51004,29973,63384,71367,49469,97225,26220,2218,63714,62675,23080,67820,89603,14595,22820,72876,31967,13042,25319,35556,50464,1607,28542,89693,25274,11024,80171,52549,87823,14974,91918,67716,10843,93996,71467,97164,61590,51126,69702,70373,83285,1594,63710,40423,64351,69767,17530,79387,20169,74602,52145,57848,49929,82658,14783,78704,31620,27599,27388,69533,52309,89387,74384,67415,75483,39425,92699,63138,35433,5216,41210,23091,25953,64651,1538,7608,73572,7514,32134,61594,26495,64136,22131,92353,71196,70786,32484,31078,42078,10968,99030,62601,57082,2221,11391,30427,50367,95217,94690,73488,23394,16459,46454,47,84254,20107,41148,30181,20732,17233,11486,19396,4353,70242,21685,2033,21959,85668,17953,18638,9800,59223,91277,75636,11420,34819,15409,4752,15351,99223,99354,79682,77348,16073,28235,17072,38916,86415,63724,53038,26783,90706,82235,83756,15888,45941,83890,39899,78404,66233,57815,72904,30859,81433,26101,79911,18048,35686,90767,66021,92825,24643,8743,48980,62124,57935,52935,42049,4624,84585,20219,20724,83086,3360,11609,33759,47655,84478,99128,91891,63388,94933,37717,14516,27584,76453,27980,43746,77355,55696,98656,85446,70471,89890,85948,887,85692,84747,39759,44215,47505,43890,99094,52457,42992,46989,58445,25125,48034,58521,53506,99970,44658,54533,32772,23622,92409,11755,29628,83718,20414,56216,76350,82204,47622,49910,98986,36432,95087,87243,97806,2671,83515,42622,22323,43797,60273,56,86308,8040,16435,2696,93401,86057,50287,1933,69555,75168,63234,15231,82334,59285,36032,4296,59801,1611,7000,18828,53237,70591,52985,77894,63616,73981,83455,688,69219,38782,68320,93264,55936,36213,21758,34778,16867,8590,66697,62581,89108,8985,45324,45470,69324,8092,15797,52472,26910,608,26005,65654,6603,52976,6147,73275,75924,17612,23178,58791,48948,97237,11453,20907,57571,16725,125,69195,55788,20365,6672,36788,25023,79482,92356,64035,28989,51575,71093,54788,87528,9505,85800,68332,8357,69843,42199,87038,93368,19332,10754,56689,74968,12819,94831,99071,7551,70204,12635,42411,4124,2226,3230,73548,52652,81139,62830,71171,29180,86134,55225,79517,52449,93275,53609,8207,31859,63105,95593,45114,58440,67699,63761,25114,55854,43457,34101,30449,89676,65150,7577,43107,29954,30494,92470,54798,16933,45261,47577,75057,30666,22223,99684,79664,42313,47749,65967,36634,63831,96405,50873,43452,17210,45024,32429,53675,22052,59114,38037,74129,11086,63551,69825,98959,6261,1191,53454,3684,81194,57977,23756,2380,81614,22620,36767,77363,58991,74741,12065,40834,98493,27360,6729,94700,94997,59552,60152,76841,6016,13113,27899,22644,82447,69861,88047,30355,67736,48244,34899,9555,79490,54842,84461,71133,54091,7892,79894,8135,10352,10399,87252,49550,37623,18798,79172,83498,72381,25140,96919,43719,67544,68842,49804,57419,84083,28441,77428,16915,41778,22258,57579,20775,16733,47340,68994,64690,81126,38485,64224,7785,75888,87545,82143,1875,27611,83324,21851,9795,13525,94323,40082,63443,47358,89508,13073,34658,28948,517,17346,96183,80361,19553,68764,69821,40760,7264,60280,58316,24729,76845,31385,12021,78976,66095,25998,33994,20312,38424,27155,27251,76355,55679,3117,29450,33283,69133,7761,91340,48798,27693,41544,8226,71806,67955,17384,71130,35792,87880,43895,32127,9878,94923,91011,7447,25557,52211,40686,56331,46997,96987,8610,28293,66711,3674,69845,74110,11308,21188,40318,34362,24696,10258,22230,32458,75685,85336,10351,50571,95839,2794,58091,42490,73422,39643,24001,15134,86816,68938,16813,86787,42519,59777,13909,48730,71235,11754,93750,14928,50733,24332,99013,34788,76877,58427,72163,26702,92063,58697,18704,20214,7418,42320,98690,45510,62460,49316,42,69818,93558,29843,67814,16669,5488,82067,6486,8064,83664,96974,51140,18805,44073,54657,19637,8868,84594,80416,77421,31768,18969,43089,72703,52363,84973,90868,1328,29293,85489,17280,78042,95146,76237,81398,32072,17164,80499,86550,50558,3427,31896,49021,80138,51381,77469,55689,211,25661,38052,24786,74204,58967,75252,79985,36003,39998,60732,90828,33382,32961,46045,33803,47330,1835,25437,2344,85832,6955,46582,21143,12034,45287,15482,23438,13983,25743,36230,73518,29756,2189,92472,27915,27002,49729,60465,67167,32442,53879,60967,48518,69074,44894,26704,87868,74839,9069,68262,14224,14190,8875,36169,62238,43018,47373,75353,29761,3137,48359,14621,18058,45663,70700,10322,50751,17263,77077,68268,45754,70028,21928,69966,54146,29727,96380,14826,51848,73489,52381,35356,20569,63719,82023,51005,6711,65350,19452,36603,80533,83987,98346,38715,5552,90981,17603,99753,98581,18538,46740,43763,32800,96465,59843,53076,16002,18602,44975,57343,92892,16765,17449,53091,93138,59973,11470,63370,48223,11765,17291,39900,77746,19270,56505,66783,19622,68725,9932,50850,85876,45428,29809,81946,84233,97813,23961,17936,6749,72154,17876,29747,46403,86606,72346,44796,27053,63447,70100,12833,99032,55319,75086,74313,67892,86690,80868,41674,30905,92553,14541,64038,2202,81327,61306,13661,78678,36481,31238,72553,50356,11684,94377,50290,72635,19730,95718,76974,71850,62626,83936,18197,62045,67857,98174,42314,52647,60943,16841,86423,1098,28674,91847,70030,14460,51265,95016,68750,153,22222,17027,47191,73563,88760,7508,91592,26362,1323,64939,7849,69009,98129,61354,96285,73845,28010,13531,7528,38064,43425,99873,41580,65890,20763,92422,26367,39588,70488,12086,78989,85204,5264,52755,69882,18717,51361,74826,41479,32499,71500,12141,56985,14361,71864,15548,41744,15698,57387,10245,94028,88700,30236,6503,60192,14904,49451,9397,2975,92835,84474,91631,28846,2471,41598,2604,44673,19282,36910,58873,80445,28200,93129,97043,52664,14800,13468,92899,24163,36151,26341,30257,5294,45637,8729,39023,30757,98614,81514,28574,48788,39424,96961,3277,52056,3048,39096,14002,13752,76102,46113,5593,10776,9564,37133,67067,68375,9024,81880,60139,22711,47985,32259,2886,58281,63190,54973,52601,29358,19941,27077,2276,32287,93045,4215,48890,96144,83548,29227,85183,4376,26065,84298,88343,80193,77846,70450,82725,21440,25610,88734,8419,26284,78483,59926,23163,84229,82360,13606,58761,24512,39139,34128,23086,321,30365,85908,41783,8789,22067,51328,31173,84190,94479,97335,49301,94717,93416,69724,99171,68029,62501,62514,58598,90106,22590,42820,22802,43332,80705,55843,26802,67587,62210,82290,57602,50241,6252,91015,33157,12246,75410,7827,62168,66173,9242,57316,48835,70539,28221,66535,16840,65662,69146,64677,8671,30305,83556,11042,43192,54641,24583,61771,65830,92192,74051,14059,72451,21554,9563,51448,36299,99426,86565,83097,64024,35052,74904,62731,48026,6390,12831,27287,95894,49141,69454,8106,49334,37099,52078,55567,66618,50843,97002,22817,6330,20198,21881,40578,31919,17679,82400,76500,90231,77161,28863,88935,5842,44552,10626,20886,68188,70398,22544,77016,8841,95063,85677,69998,60077,72373,21571,84686,76139,38853,79497,92118,26681,15070,33634,82921,72848,6780,20393,21254,88614,24538,54414,51978,23020,82461,91690,80917,94280,85297,74188,44946,96415,4464,99440,27038,27042,72660,84613,12980,18666,18353,72906,58917,46305,18225,64151,98736,25861,28953,29553,16746,61346,21171,5682,4132,35105,41868,59231,84845,71002,35991,1936,78930,70734,67821,86893,87031,97709,70752,76857,54916,52925,16690,81839,2360,83338,96401,79,74992,89475,80013,83531,22631,42344,86647,65146,79295,83453,98237,53693,5652,62417,39358,52333,76066,70642,31867,17171,2135,88589,31045,86490,60680,57506,37325,37612,90337,55208,94032,39599,41976,95119,65277,49993,72741,48338,2324,20678,78505,24437,53379,87367,34151,85697,13027,52754,58023,72633,23584,91243,67098,90597,3246,57309,29400,62928,49551,65345,75141,35108,60651,52338,57059,8029,65120,14110,64027,9886,87941,38249,38394,30758,49616,27294,72691,52343,64824,31539,90989,99252,60142,27588,3263,56541,90560,16784,37282,15476,15180,61102,1020,40986,37055,65218,34830,90318,57730,38902,23008,11260,92138,47508,76424,76051,2798,73850,78797,92322,73069,13130,49891,4996,29140,53698,28012,24358,5001,12590,58845,3284,63613,28896,94980,34200,89220,20061,53264,88281,94226,12792,73817,42766,73262,9107,19350,90314,55344,1094,94942,21958,50272,58586,23392,83688,96387,88001,43081,29337,22651,48986,59364,98525,88254,13092,50309,16788,55054,22677,62100,81334,91228,62176,72546,76096,96191,47204,45327,63255,45435,26987,75228,6174,94347,61137,62288,13668,2271,63585,8343,20160,77605,88440,80797,25266,9774,51459,99245,1271,21037,65717,35573,54053,33874,18113,17760,16532,17504,86330,68833,38232,68654,85869,46915,12249,46245,8527,52876,5094,81452,46367,61639,88022,53744,77964,88276,85888,57803,16949,12695,26144,72886,59961,74965,82085,97991,86255,14184,53669,41237,77282,48533,47598,55651,55247,93997,97382,87117,85301,94220,3937,30416,13877,28197,23344,4716,50081,42621,36897,77886,86474,20035,21852,83489,46133,10471,83314,52859,95453,1586,16316,21688,30799,5901,42165,24496,69600,95111,63436,8196,58954,27470,5332,43928,36749,4403,68741,54506,90039,30928,77826,65819,64984,41460,1647,1237,76688,48119,52246,71805,6126,53578,19446,26094,97608,33186,19320,76470,16844,58817,17832,64532,64612,43566,47316,27025,37225,50908,79852,24300,84565,66793,80493,48861,7384,90047,79338,21812,30065,19142,5145,79075,37675,3111,77864,95846,81895,37538,75536,72486,27451,84072,31307,45197,23423,15485,22489,79707,65318,42353,78534,40155,91029,7699,80029,80551,60003,4921,41949,62940,7141,13260,81878,49545,72473,10358,37767,76448,86263,20994,66363,70105,7898,15542,23215,27051,71902,9193,69035,16380,40663,19419,6745,20633,66482,28649,23444,30509,79066,89306,5185,33144,82376,29199,47727,15138,89552,31368,83483,42924,37363,890,3778,62016,37378,23081,27465,84782,13039,44089,70258,78278,91491,13775,72337,66066,33844,67949,22891,1716,134,93170,53974,194,80828,57225,19615,86941,99491,99021,21802,88321,96461,28196,83755,24261,90449,75242,44435,11976,62771,22453,71668,29015,81856,91142,62524,18209,15058,54065,17687,52738,85241,83085,79074,52156,65435,24686,18239,9274,42773,55001,70486,74866,59443,8165,39706,61389,22252,58712,37853,32877,57058,38574,15446,52992,95648,10896,92027,53705,6127,35714,82635,76943,5661,3371,34406,61078,64132,21956,82504,14254,51221,6712,82661,5302,69402,63404,884,882,19493,21797,84031,84959,12553,24746,4852,77101,78905,72693,54686,40829,80621,96744,32190,77009,88051,97849,59351,81679,97097,1621,47651,86713,97594,7882,4567,62592,98989,92233,57584,49240,9148,75044,32791,37606,16997,64114,25593,35862,27965,35807,51805,43033,54272,15681,95451,4395,11440,89159,61482,52394,64671,12838,31191,24878,70560,42404,61522,41548,44914,13287,52414,10397,39462,50050,84505,63357,92486,14099,87597,68149,91102,61987,93188,84831,59484,76533,23941,4486,88896,78999,50959,92466,7936,3386,16900,12855,13588,4801,17930,61469,66751,69659,447,92078,45980,99017,21011,24476,27968,18630,18404,29159,78014,17104,90111,4524,54225,5341,70135,41448,99034,21194,40164,20225,70903,38435,88181,57511,48411,47509,89589,41549,51697,6013,92419,63778,41939,79269,2191,63650,5217,59497,75260,49070,81159,45765,54320,75655,61465,66461,53045,28448,24879,37242,6979,73692,59730,77145,32387,89233,63865,94837,25493,36503,53924,58888,66821,63968,29211,94437,84544,53766,84566,86052,1743,20308,29571,87985,76267,23223,35678,90355,25942,17410,11544,34195,67602,2720,7814,14233,45908,12262,32322,1798,51921,72534,18350,43753,68056,15244,87205,29670,68457,67795,39300,34281,74608,8212,14138,54147,63162,6245,64282,49527,97319,29496,78100,66404,24209,84668,45193,77712,63835,5318,80194,97621,3703,96306,78101,1279,82065,22860,918,41998,13688,85055,43155,23432,31108,72407,60024,22850,83068,49145,65558,39287,27208,31232,41621,44536,38273,35150,52230,31110,17275,90171,37544,20250,74065,85823,85985,70270,14935,18229,5645,11992,81430,40024,90629,16707,36283,82185,32267,69592,42229,68713,69161,41126,13484,12435,20583,13041,16223,31715,83142,33576,88065,61167,43080,82892,7509,40998,66132,61633,12224,82887,60861,39990,90326,47438,91500,8000,45599,41723,79898,24048,38493,47717,2212,72227,82064,75607,59891,16594,35616,37284,3811,80754,75504,91380,8763,39237,5226,76044,27142,19777,87393,31991,15561,75303,94189,94162,57379,24756,95977,4895,30703,68032,21450,20911,57642,86513,36167,45712,20804,29501,22724,35596,81569,26001,97014,68970,24340,57118,89964,91450,44818,3403,93402,56647,32843,88334,82779,77526,43303,70519,46698,36646,74745,19952,41405,93314,92319,38688,96092,11526,12799,10446,70604,34842,76406,93024,98240,94402,20903,51464,17021,57471,5860,41604,48586,37745,4017,96172,68338,98737,30245,7789,2129,87890,87720,90407,51011,1542,31031,58212,57441,66350,67562,55933,81785,79010,16292,37844,7269,75692,46463,29183,6596,96231,15670,41015,87000,53656,33212,6263,96040,11807,19501,79618,6406,22116,53663,73279,81984,99033,52842,83870,89065,54782,99707,95702,79972,20981,8988,60619,76238,69062,60040,46451,195,16432,20176,73237,54632,25088,31840,19435,72391,35734,4683,82782,94681,4739,32579,2529,58156,85880,37125,94721,90532,83975,92423,18718,38269,14689,77850,16972,70566,34750,3814,85187,47197,16843,27137,8769,77293,22605,79333,12797,30965,89520,59335,25399,64386,42180,61120,86303,86781,62937,21463,10084,33991,45491,25750,22139,64130,68392,60576,10493,53116,97028,59851,13399,67592,55717,53832,92308,1834,77392,12807,58100,61472,15762,31085,44029,98963,94227,92510,75338,88008,59442,72750,95897,86694,59367,76952,28532,68263,61636,86139,91219,24506,7391,75094,15632,35583,84347,7464,98469,23744,27781,83749,52346,459,82768,74104,82629,59578,91737,5620,24827,13086,60790,87230,80296,95437,51606,61186,99051,71809,41226,74125,38844,39414,91713,98112,88491,65872,87385,91087,64806,2111,14012,15751,64294,41722,95041,17156,64439,11254,22042,89501,10233,30740,99182,60245,49822,74933,68450,27115,29692,68712,11570,13228,19095,36610,40883,12885,90415,39282,37471,94515,75430,64086,45806,27255,66809,14545,74923,18531,90880,89507,33048,78904,90761,41917,88708,16711,72726,99296,19913,12279,15950,58969,12586,33595,97713,49246,87129,21397,95138,35531,95825,27176,3416,42160,81020,97974,61339,58639,38958,7048,86491,31278,82038,90921,8580,74804,64119,87240,36208,61550,18181,7797,8198,39137,71728,76434,31815,75310,78528,53830,75944,84771,13564,91521,53251,66240,47193,1172,24444,13754,38421,29330,284,52403,89204,63260,92602,10171,64654,30778,78814,37679,6723,86584,35069,68716,98033,63446,76664,20807,30094,50638,67647,56782,58935,84515,11752,9035,676,1983,47933,93134,81773,59812,55590,20437,97517,40300,22746,54806,13932,14854,4577,29190,33894,77976,70791,92893,63945,81153,5440,52987,5399,99901,19039,45115,55473,30396,3101,50684,32092,20302,95336,27766,39401,29646,18383,23641,51924,51472,28144,94156,60304,36164,54785,88059,22624,96602,89164,76480,54084,63145,31793,57474,87905,92748,26919,60369,66178,1601,8599,42397,84652,97308,87090,10600,15045,80114,84122,21924,99306,82212,89720,48761,50848,23421,51275,21083,30388,5263,58011,92350,37254,52819,18102,44181,19567,13142,23384,1895,54794,37301,69841,27076,25174,12877,84970,88487,42183,21367,29784,95429,53401,41743,62994,72924,56051,34257,96067,8716,95044,86375,51262,56113,75725,20354,68685,30970,60187,44304,65757,63462,97612,43430,16120,11395,10630,70445,75815,86842,90305,28557,36574,3237,86399,94173,59893,70379,63687,81281,87174,70662,29759,10612,84479,53616,30796,52365,8986,13292,8655,97314,67832,26225,7449,75064,53216,46538,12137,41736,52229,66484,31174,88824,65498,25692,59542,19370,12959,86401,12889,75837,41560,29458,17637,31537,11653,22510,3700,41472,46819,67651,50522,47073,8735,90108,9798,33462,42091,8009,39011,18748,34763,57871,54213,17510,3488,71279,13733,97946,22468,93120,44032,77128,66792,31088,84708,21078,92600,31828,83138,52887,66557,40975,22432,11953,65364,74050,4252,32705,59465,76637,2127,31338,78703,53465,49360,89966,36181,29893,61313,94390,70534,20511,3530,91651,66057,49573,78636,69202,17209,47575,45856,54007,3180,47490,23897,10698,76560,91761,42897,24180,24534,76293,39136,96317,23473,86564,65214,54568,68493,85353,10077,31624,74340,78796,10648,2175,79679,46940,26457,92408,56209,80586,82265,27567,39296,32283,64692,26946,39362,42673,83140,17608,33245,52571,42926,98486,71354,43963,27726,89460,74709,94062,20848,12376,34758,78506,61976,46106,56032,96954,1455,71793,8186,59343,41491,37938,1118,60518,43817,89081,99338,74607,87719,93054,33543,97115,45644,69375,42527,74350,976,98022,95604,79547,47269,25795,48558,6706,28062,91989,23012,90956,55820,615,61150,78446,58117,83081,59584,48102,74207,25638,11783,95148,57122,11852,78842,22729,31892,88878,10654,31673,92281,20165,9241,8012,55146,27906,6265,89729,22827,44188,77047,83610,96877,25971,29397,84370,37731,84868,41894,16591,37698,41262,86748,97925,8427,38861,1168,54793,16236,34773,8792,41837,59976,27250,29263,84195,87154,55474,91183,34521,39718,76910,65161,53926,86909,38809,38380,97729,46384,34714,24580,12353,94003,52368,8886,59675,3626,4430,21317,51641,63065,59875,55140,18711,99863,66834,52705,7059,18109,28503,74951,15913,25685,99543,30461,18156,40392,66630,15771,727,64355,56343,91969,88545,44759,21434,3636,39770,45349,77074,61440,25484,14072,34700,99135,15522,77011,60405,75266,32939,66290,84484,70411,85684,30684,56613,69730,39982,71295,31525,82652,49051,3762,7127,34090,21270,65938,86566,61369,5079,28299,43185,48672,5490,26400,79380,26488,49172,38583,23231,1243,74094,25609,69527,42237,22079,81358,66579,20278,69370,45527,38480,12581,69744,46902,6531,20132,47364,27171,7172,7692,77838,62409,83496,56244,13620,41925,78289,75750,929,59918,9299,55488,46488,42894,5701,90537,72826,77129,94306,29517,71650,94684,97110,1439,89359,53257,76205,41982,97863,30393,66613,26219,90222,58805,6237,67383,50860,24623,99878,37336,17532,13740,8007,87388,81937,96145,25017,6629,29529,56061,29955,1498,59596,38759,2393,28546,27515,93851,43514,92780,461,16051,25650,66496,60975,53978,78490,98700,59242,56322,76338,15024,24034,69080,45207,27643,86572,34070,16518,3220,2721,5868,26676,32687,35650,65691,68381,82545,37653,148,12924,36428,37404,58006,87702,97947,38117,7463,89244,28178,2856,13223,24411,27001,17829,95729,98710,60153,7251,22465,49195,27878,89287,67055,22286,34967,75498,64480,62243,30064,66327,65916,47136,45023,92669,24617,25329,75463,15889,53710,3868,13914,13855,77008,86470,36688,69525,58843,43537,91731,6494,76419,75757,97348,57843,51405,9865,9926,84615,1347,26534,90041,50851,71535,69448,18483,43971,19013,63699,77801,39972,84650,9460,90904,4932,35225,46347,64798,7149,50758,28573,39930,23196,3247,16355,56398,91445,41137,12302,16607,49723,62712,17481,68021,53887,53190,91457,63891,90777,52202,47412,51567,8711,87250,18392,16473,28776,23250,67905,26591,86262,65852,65313,47031,99010,44324,45973,5749,59164,10295,89321,87753,99916,66837,39657,78114,4260,39735,70164,70208,71321,55327,49625,54488,31370,33787,78870,49854,77726,11405,64368,96662,80156,17254,23408,71888,66648,47633,40542,75987,65235,44603,42789,71934,57697,18613,74031,99600,74260,57466,79788,31334,74405,90209,72420,88290,54592,90264,54003,78353,84364,39767,47521,1500,54670,55289,42462,15063,9537,24859,770,49122,25537,24709,67938,32108,13392,39854,69676,82437,96962,10144,15125,75561,1176,13594,79278,17463,18208,73760,84013,7445,95113,82112,64852,30380,16677,49704,87071,98300,61904,60938,19748,78155,453,72199,90814,87055,46664,43582,84827,52701,35036,81227,99979,923,92697,11578,31702,7722,17559,25864,96574,35477,24418,74752,36941,78428,59597,19981,75904,7732,26396,55360,16874,14740,84753,71583,57868,58247,52828,7124,31989,58643,31720,17767,83360,23492,33441,53394,78468,42247,31805,52405,71812,78088,42830,72605,27381,3221,26270,35879,8394,15748,46393,53897,97082,79595,14055,80520,38087,39483,99376,63359,72710,2893,91658,524,36512,97310,72306,77070,33608,66593,27551,95262,84125,57440,4396,91235,97119,49505,78427,96079,92897,75828,18391,29031,11099,30265,51443,42268,47036,32518,92310,83351,27642,20780,35779,46269,29922,96523,2764,11994,16244,75014,62386,48596,74337,65358,51066,12117,32964,54763,15146,84057,68898,58045,17682,81630,8471,83429,12365,45956,80603,35627,88724,67853,23340,44319,506,50643,4361,95290,46974,70187,39944,52489,84133,74198,15833,49794,56130,52223,92598,37574,87284,21541,80316,70215,49474,90605,4123,10363,88532,65036,66976,49808,22132,45484,47953,58120,78847,32901,44828,70962,53285,61829,555,4420,49417,25215,11252,80889,94254,57870,82415,30347,56971,21801,69186,85054,71533,59629,85164,95141,38107,19087,64576,60834,93586,60275,96697,5124,94787,97092,42038,27231,74161,88096,28928,33424,13423,5091,33206,50325,80071,30539,47954,59881,97311,90695,14620,78769,54627,50546,51266,86992,71615,67317,59849,65544,94829,77769,43440,52795,68631,25256,22559,66508,75927,24838,42980,92412,2014,86083,77175,55681,74277,65631,71442,78958,57333,56923,61928,50450,3487,77254,28101,44896,27436,51408,8221,10745,47502,66862,6961,87728,75161,51358,12011,88165,15641,58210,27418,22169,5773,1859,65020,9449,97177,20178,95561,3710,29260,82906,43980,90810,78936,85250,27302,34831,39395,34772,68755,26903,375,34872,10663,40086,60173,15604,92513,96495,11715,35746,13098,66486,36005,54037,3978,68924,93848,69215,52459,40367,92387,703,4503,50728,82586,75045,82148,52611,85628,49243,42672,83690,15291,2567,80839,65495,93764,62136,99803,55454,20188,55370,59500,58524,87879,97477,47407,81604,8167,13427,92810,2867,51202,15287,96753,39097,11551,39885,82765,34655,76694,64172,90284,11052,19322,1443,69642,12267,36398,83478,97507,2587,50262,99294,42233,16321,63838,70543,13603,29940,59563,72059,28490,85124,37525,46522,95350,96652,62248,50379,1805,17376,54509,80110,98638,89819,45634,15867,59838,96931,80804,44429,80670,11644,56444,29235,89559,92484,48135,57538,62031,12387,71229,31789,81502,2714,60360,2370,83937,17584,82626,99564,86901,98800,29504,39815,18059,17506,95025,94628,23831,64435,23450,81861,55616,63971,67023,89678,88359,92891,86374,31880,63520,82603,96513,30620,12217,4465,35851,67900,68927,72982,69481,79777,308,76573,70990,98123,9104,1358,79514,79772,18238,97282,75118,73443,54059,3789,39746,62751,14674,64685,45597,39472,96738,92525,77587,96206,68120,75405,92902,59809,62332,35299,28596,45188,76311,97215,55098,43550,96631,70821,99142,87709,38214,60111,36459,13319,45004,8249,31259,60910,98547,45949,76121,13751,61883,92975,39957,2826,38592,83508,80772,9596,39610,93697,26334,13854,80174,85606,51163,29827,49683,49448,91421,64377,86629,40728,60791,40410,51254,12800,76884,91791,86560,71204,39853,81345,93724,22018,68361,54501,16791,27582,72867,75829,95508,42750,77859,6973,54006,93148,74223,89236,19509,66919,91843,60758,79329,48883,87,48113,8744,23703,47980,24275,68933,642,19334,35747,37881,42978,75004,16308,40621,35198,15064,87043,89154,70835,26008,34474,13928,28720,15713,9955,48628,67868,19520,46639,19543,69524,35061,44769,36972,77484,17748,53013,13285,88591,6762,78881,87627,60635,56083,39171,59451,25954,56206,80303,39927,65351,90506,51209,63216,5251,43109,57355,76853,98793,30358,27859,19673,10301,67571,17856,93541,47061,3541,98675,91248,73905,98027,2431,54393,85562,36907,84716,17712,99226,99369,34974,43176,44496,96385,59286,41646,74637,97660,68681,6474,297,51555,60391,43576,21761,91749,2774,6133,31318,69480,30685,28493,47335,24834,32228,24276,8706,74853,72164,4980,42869,33773,91386,9082,53416,17215,48994,13208,9884,63430,13205,58932,173,14681,78440,4099,20576,14181,61230,64464,25571,39292,80492,92231,4401,55857,6418,19950,35117,98437,57117,1913,22092,58960,2778,79138,36345,12599,58557,96139,36526,28337,59537,52798,50672,55398,80549,14847,72742,51435,54270,16142,70989,9221,59645,10196,73485,34444,83683,87603,86344,47008,879,55363,68351,49453,10339,43972,93040,53441,59199,42758,15116,93880,61996,36865,71516,96027,51981,57635,13646,35363,62272,79199,42995,9477,45666,311,44312,37692,41055,9529,13900,45322,45640,55927,17046,96593,36531,59568,47652,15219,24233,38589,85615,26670,36872,91568,77472,39969,21112,80512,29606,15487,51481,72600,44738,1844,89850,44042,49906,97241,45087,82111,11481,94967,96366,86961,64421,93827,85943,69237,65722,73652,32026,83544,69637,51973,67705,26086,92691,46017,93087,47981,89186,68884,3641,64087,6891,36056,23419,39083,7223,64988,58706,1478,6587,70806,75058,92209,14667,64037,79636,71873,78609,52196,15162,58739,55638,86731,92570,41994,54507,10555,88850,57216,23292,65014,52297,67567,37528,31495,69929,89404,43862,42164,34694,200,93610,15573,90913,31432,96428,51241,12907,93241,29157,3037,92956,53888,86224,68709,69451,37276,97342,85084,98320,51605,70303,49718,65266,11088,42856,68586,20246,93590,53737,56868,94927,30541,5523,72430,25802,79787,98797,16009,15074,39719,29307,64898,40696,12345,39387,82385,1957,20706,80672,88640,47048,92759,9475,61674,39415,22635,12726,12736,43713,81082,13486,56138,91066,58307,2609,61910,63324,58736,90502,44424,17016,63560,93225,46708,65604,37248,15557,18803,49165,27257,45707,30937,14690,3409,97596,58961,29731,77502,91962,68422,89320,49572,56535,20937,75387,8228,4917,68195,73077,16048,95998,17270,50909,23427,99122,737,54189,31505,25345,62671,68485,4298,42304,90472,66267,49567,47163,76601,60811,74386,33662,53676,63057,59061,69388,65880,45178,82285,70301,34803,81766,78943,47403,69373,39768,6131,32253,72843,93730,58467,24652,45405,87805,21130,91031,22153,13691,49183,32388,76929,90454,42915,95887,75143,44323,3484,40965,87517,62480,52881,34351,87085,49409,86552,29362,19083,437,5306,2492,644,36605,4447,417,37071,4889,79528,90091,43949,40360,84754,28302,1771,95000,95247,11110,54560,49563,68674,92081,86555,13356,57198,95619,37343,56250,39830,34367,74248,7237,70690,13599,85627,32561,72700,32944,60589,52483,56642,71923,70003,3563,11808,7682,3630,41884,1705,6251,23411,21286,87054,36938,60838,46046,70647,88195,55774,82620,29364,90134,1457,91358,10008,49900,43962,84011,3615,47389,6898,12182,2832,77533,52372,73120,81600,23104,69898,3490,61462,89775,10549,83701,59303,94118,97201,21331,76068,48670,48168,86186,92403,12938,60914,33328,56565,12108,74757,18941,94630,10420,97423,99672,44111,60784,97951,38885,11525,7921,12250,30572,34368,20992,90308,66208,98322,31013,24145,59143,38628,31745,29558,77222,90831,15493,75489,97852,62909,90905,22184,8428,38029,23618,40599,46012,27662,75850,97853,78937,52604,13284,92512,66993,41166,11465,94775,66787,15988,59652,94087,44479,12702,59333,26415,92517,16481,71854,66085,56476,20866,22130,76319,65885,97020,86244,33486,89656,24245,18124,53020,99300,73133,65798,68267,66428,61571,56781,83518,76909,50444,85903,35525,87644,23915,46219,28389,30712,28654,90730,93873,99700,28862,10036,39824,59912,71977,2523,11607,80972,41444,43129,23405,36018,93907,47103,18349,58125,43835,88843,53482,16536,9422,23017,95295,63417,46466,87981,52020,225,79626,83396,3377,59614,56888,45618,75116,91406,19597,46321,81212,95168,91305,42266,14422,68770,82245,81147,74111,58358,490,37978,18104,74024,90654,69745,74601,77083,90401,79068,75474,68971,72074,51033,87307,74915,4262,62992,1991,26338,80757,57912,4312,99036,10962,13402,26592,64300,34125,28240,29182,65492,73273,42139,93756,14205,99868,63029,58507,71970,12663,6162,21729,44954,42374,53271,51854,74941,49912,67074,128,46982,89240,16278,73697,98244,81320,99185,47984,48330,78381,68175,2201,69875,94926,79089,57858,5929,963,22429,81717,33558,73854,48360,4351,19504,24837,31849,43137,40675,41470,53348,57877,60977,93110,5774,70623,78674,26106,96453,46729,66219,62638,30097,32730,86110,45434,72472,21038,43460,6935,72191,57375,67911,74487,56658,23184,75917,73406,28777,40607,77132,48354,66805,6863,11927,42804,96579,89935,53885,5702,60597,53046,13345,74192,68222,79851,14347,80623,87120,69011,31337,75394,660,43814,73284,12651,69938,24744,94560,39992,61652,70233,46097,44816,21568,24446,1417,51773,41409,12002,56922,81285,87178,1634,50133,37414,55833,84210,12322,94204,18931,77147,71981,2711,83700,92476,41013,16836,92845,21834,16461,48984,19528,29937,99518,31791,4553,94526,30465,99652,2420,95849,48195,79646,67456,23861,8600,22981,61183,23875,81383,8086,817,28473,78361,6988,11985,88886,67554,27175,45710,75321,89588,95425,91480,9133,56507,60015,5278,19349,37245,7497,44692,27730,54029,88826,75332,63495,66258,3739,32194,39456,38295,55073,90544,63504,72591,25517,3587,88078,64533,35852,28255,99367,71428,70932,71857,99712,24311,47179,50304,440,26682,68790,61461,75919,81459,79078,9963,28111,17498,85194,82557,68698,52497,42145,31627,68874,96360,60202,60062,94033,5850,70295,97234,54460,26242,19868,98117,64204,81953,90916,51517,80849,2623,10976,73208,73701,12503,79107,48735,34960,53996,90768,11198,77731,61776,57074,69860,74033,29512,81335,97999,96357,24020,50726,98731,57049,90061,49352,31651,47446,1665,35786,49477,7689,44874,87598,3656,66743,17883,47014,76589,10138,20153,93655,31904,64106,12133,46577,32060,28022,93037,1463,62402,73404,79086,52518,91745,76447,56141,25104,11410,76046,20863,25317,84854,98388,51491,95629,99444,65462,40267,10586,4357,77,43136,43058,99850,37408,87569,97734,30479,41887,71319,85031,74927,58437,47473,95057,39838,43519,90195,38650,71771,51946,43074,5446,64505,83003,23198,10266,68839,98048,53613,29179,33324,21327,70970,15360,704,55002,15204,36448,18671,79505,66952,5730,94167,93878,82412,43120,74301,14749,27289,66462,47251,70104,38507,86484,84004,21155,28088,68691,59625,66945,41391,72060,70136,38318,25775,55192,49073,60136,52853,49795,47137,48927,54712,73033,80503,14638,80106,81386,91817,98811,1555,73952,83386,48295,3311,21418,53137,97501,84238,46010,98701,72692,80920,24792,27746,62584,41261,79762,80873,40830,26044,9458,14685,67382,50013,79748,56685,88085,99930,58099,24089,29669,66268,68492,20036,21569,49675,32416,4173,88592,28927,19070,49333,74664,24752,89765,38915,59014,85463,97451,69936,34719,82954,2044,36696,89803,99917,47593,73773,24502,47454,94311,24122,88256,87806,84788,5366,90074,34545,80879,92586,66868,2369,85535,52539,46837,22337,60248,40527,26787,52248,61563,71653,82411,71614,90218,83745,38572,43031,96118,81354,61717,55855,38871,33307,59369,74949,26423,44576,27265,32353,29767,36753,29146,53831,41757,35789,39065,32281,17240,31806,60419,78504,5414,57698,27048,886,18469,52021,12389,64826,97575,51207,16168,30573,85864,91885,75629,50825,97772,1752,79244,55329,76137,50965,60590,4813,89838,42310,14309,64255,67266,81097,45332,37397,20894,54296,89086,6032,6427,32116,67087,50722,53172,3453,50074,22161,58418,12763,76131,23619,35376,51442,6051,85358,50083,15100,18172,16942,30667,22847,5032,81921,23898,96882,48885,90825,5962,26989,97675,1723,5576,92611,9835,88516,61025,66857,80203,46469,22853,77590,70577,95430,21024,41238,38122,99833,5442,97141,87166,19510,9243,28472,72176,46237,78434,38241,4377,51287,45294,36914,72289,6425,54666,43308,25239,67970,59633,41993,29250,76385,14221,22347,89099,66578,61260,83934,99303,35233,15810,23691,36913,5877,64571,85068,98350,64574,73080,44183,95742,82679,89821,72278,35298,72550,57025,23065,54185,16211,1574,31666,59903,32888,62155,1940,40651,16850,35790,93879,63154,3154,68642,73881,13742,77024,67439,72508,97692,65097,82871,80490,29516,95153,54227,59689,496,5476,79430,11275,14714,96113,67079,35536,49418,23268,5961,24139,36871,43301,87835,11063,24484,42930,92997,51612,42669,24646,23207,22190,80584,84648,38151,99144,9566,49408,38410,22196,13893,3316,5627,51799,92159,66963,5477,68899,35252,88746,53701,62390,41171,30252,59692,42322,82216,21779,15629,69136,17323,24809,25600,84369,35176,11508,18371,23182,19519,14637,54727,54100,97018,799,58321,81916,67275,53571,46996,26433,70549,71182,77212,64331,79353,4743,90255,24214,54177,45412,67108,94264,73705,21932,50342,73464,62058,69424,33672,95666,53490,83823,69729,48200,21296,84579,67921,55011,87883,58673,53309,93574,70487,25453,33808,77462,87450,25129,71451,22667,10934,48318,7716,12243,7134,221,653,55064,59805,82570,83257,67096,59325,4508,67465,7152,36421,93328,56306,44145,59202,40489,27509,79384,87408,92963,75717,29665,99726,16934,81580,3003,77553,56820,58078,24004,62044,76093,51452,41719,35335,48928,54499,93521,91929,23458,86563,41762,89654,93917,24970,22589,97682,70944,61860,55200,35974,66174,80907,45869,34895,13864,75418,25236,21544,82091,62634,19116,77628,38494,14810,63340,35447,59312,89323,35874,1902,10395,24014,97088,24017,68705,63153,42562,9416,13528,73057,75167,43479,18665,3760,40427,76835,22285,6018,58475,27651,68294,55658,68112,49774,73516,12157,34520,31842,80707,2041,62328,34048,69270,83023,70083,98224,58520,44991,19487,65914,88877,72698,42154,14676,66170,29850,20620,96883,2862,92180,77717,84246,43414,66814,42619,66800,90609,22088,62696,33661,44159,95155,662,3370,42511,80622,26923,17569,76838,80721,79987,61444,57667,77909,60290,77414,32739,3957,10177,53909,10636,23602,60230,22327,32636,41676,8824,5684,79557,11920,57053,14075,84027,52307,22452,87341,51155,16401,10995,37235,67041,99666,5246,14203,46059,48963,53726,83514,59402,3431,73738,55837,45173,81255,71288,40482,85644,94862,64864,35881,26954,62084,28997,69015,33912,9637,27546,35300,54979,8800,74914,11933,34841,71961,8996,59264,70426,39951,8281,92363,37457,77602,93740,34744,27792,41247,89015,81014,84971,69760,85757,23632,75309,81004,43054,59687,90025,73955,77760,43849,2259,98686,78886,18474,80180,71633,69562,94732,88541,56278,97898,33924,6011,63555,61868,29627,52685,10181,92751,7205,1308,56301,75409,39230,43644,67168,6809,33670,97306,8827,30291,23949,23484,70567,99551,71717,62019,55874,33288,43825,63379,5533,40585,79367,43071,79360,29466,91440,93859,6161,55177,93694,1597,59102,73178,37056,81538,11743,25924,9167,34110,4926,27305,70805,51356,98588,36684,4363,21118,3270,56025,24550,54120,6782,70190,8715,39804,21392,12927,13837,77073,46509,46252,2665,25461,31699,10595,60678,5338,89259,49295,64219,55113,83928,84119,11510,13139,58893,5915,48322,78507,25153,80988,51995,2241,80649,23985,58192,48999,83624,17117,92881,97810,74773,49514,80367,5316,23843,36075,3317,65276,67327,83298,65305,77681,94465,11589,74854,82389,43934,79119,3540,21813,63605,16859,85275,13741,67414,15102,38280,64563,13802,80912,5926,70652,3190,68513,46399,89447,94939,73913,10145,20149,6282,15382,84280,91816,27815,23138,83339,18816,86582,19605,58263,40331,9013,63634,15372,5949,57330,33504,66370,6879,59346,53987,64536,16117,63219,11014,78918,10453,7157,18396,33285,13843,28643,72795,83189,58808,12647,50870,2547,29268,79364,71191,61400,27348,38578,36394,96189,13530,37935,79824,59739,72331,26163,79098,34835,33330,70392,87110,45821,47024,39664,20379,32329,33810,6006,71035,49618,31218,64060,60979,59184,31128,42281,26360,75117,11061,31415,37797,49711,71303,16506,35776,86718,67434,44809,82798,66776,80298,91124,52303,55564,98773,91767,45790,30138,90529,21096,84340,32927,55799,50346,4900,99725,88645,99178,52594,69456,68823,63670,99514,55549,61806,40566,67608,55101,11416,72803,98881,28859,36451,34705,93819,88585,90101,2749,35558,8168,18438,23754,32239,76304,57125,19837,75867,64691,58317,23731,80633,31443,96088,80122,2248,76912,66686,10133,27879,15576,82966,70928,69244,12047,84041,90800,39060,1605,53381,78598,15708,13904,80099,23243,38415,14704,95467,52615,4322,31774,27222,53886,26793,15212,48257,65881,45264,45778,41212,56932,43922,15724,85866,53277,55131,55199,45561,8983,2451,38766,21736,24113,31907,7254,47595,68991,53815,32022,95068,41046,67819,36360,89331,99986,97385,11828,18412,63758,45282,76281,49336,53158,47791,91194,42692,50794,22186,39087,71374,725,55265,27831,8045,94660,7367,26184,72001,11287,57324,51571,62456,92366,55407,29865,24845,6648,67968,63030,65837,75258,73805,49898,81177,66608,56207,44832,53378,36714,57960,53640,83103,40373,61335,14023,68014,96489,35716,27723,83033,36978,21057,66291,4471,31357,88944,84888,67004,48429,96167,14063,71482,25364,39844,78328,53125,97386,63264,8370,65035,29408,23239,17470,6099,72316,20350,43223,11639,42318,60172,17496,516,24142,11726,28578,61543,72780,75964,71198,96094,1440,78942,56182,17706,18777,76206,79492,55544,55342,78280,78984,70361,81113,76436,59180,98139,79478,56316,90633,20447,876,77524,39306,68047,39871,54715,86591,43364,37750,63390,30878,87208,82555,61844,93052,47015,7835,53479,8120,84836,69653,73983,16404,58714,10472,75234,73598,85741,41898,97511,37182,30092,96457,40301,17514,95137,54075,46021,33090,51561,23501,32357,19000,40699,47639,63480,35453,73474,98118,39819,32007,27937,47325,6926,60420,87612,59986,7081,62027,4208,17947,17749,58576,21097,79432,31171,81657,91357,90624,68728,53215,41022,42327,89275,13013,96053,91080,57455,80602,88634,38980,44407,76075,84696,37134,46840,71208,46345,28323,81624,41632,65805,9275,90488,64209,32749,93868,78094,81343,51598,95053,70824,46050,11278,32866,19328,73942,65221,38302,90926,38588,30273,74549,3323,44136,83905,79313,45846,54729,51586,72817,63804,41640,69772,39814,66565,16644,46129,1691,27310,32264,52730,27394,9830,5131,90967,30932,67294,86567,18524,12241,61327,59853,13152,51678,48218,26599,13639,77140,99289,84522,43683,96560,46111,7478,70424,39981,63836,46910,39762,15282,14653,36527,78097,31795,58580,44020,75497,86656,17632,91442,91331,90001,90249,66348,64472,48182,36091,38638,7547,52452,79511,2030,42046,97912,31410,77464,36329,99347,9302,85794,93783,63059,96214,52547,23002,46862,2285,59546,42230,32569,79905,99524,87797,65719,34827,66755,97560,71402,8670,61243,44450,10969,23347,51162,73182,74831,45759,83471,41005,93159,46225,14193,10524,1751,85758,61999,34717,48032,43257,51357,67350,6580,36863,86823,84645,4078,73414,81023,5836,84914,47720,65101,98259,33108,16352,18411,43553,68315,30206,25899,76083,46652,10113,36298,6554,39416,71866,87781,43598,81769,88587,85812,7238,2480,41511,1021,24678,71254,79197,88529,90518,69246,79323,71041,81173,80441,44196,56064,39283,64550,90275,1448,33936,23819,98896,4207,6194,4384,4723,21922,76757,5270,68851,50426,94375,39559,77665,3211,29350,59174,25499,87460,13280,21017,5538,11313,6698,77811,53776,85608,98732,14153,85801,30724,925,75439,89454,60475,77596,342,54629,75552,7281,15029,19249,36760,84247,54580,16102,68073,82978,35379,16790,35553,881,39344,51291,58939,28114,23266,50593,12648,9190,38914,19385,14849,2754,30843,73986,1281,51377,83588,81487,30142,18076,30198,85339,48591,53564,25631,38621,46928,26576,80724,1193,73494,71883,51908,30991,30515,9545,77954,89145,37462,99976,58088,84486,65792,87803,1068,20551,93166,94637,53764,41281,78249,5390,33550,94497,42554,80819,32731,26786,62073,61527,91573,53521,40823,3322,27322,75959,27778,26004,26554,64190,1838,95952,33349,83427,98972,55242,15725,65630,38449,26883,6479,24330,11163,151,95737,64012,11307,57220,5986,26333,50105,11015,16385,95888,59952,90754,72382,40706,25720,90841,43705,79504,395,57171,76144,30614,91038,30246,55617,40814,15893,90816,96238,81205,52577,83644,20660,27728,75653,25217,32899,87429,21776,66818,51642,31154,85158,16834,47144,62230,83629,1829,68092,55851,98926,62844,79790,48172,68451,40158,16372,80816,76981,88117,45256,74716,66302,86898,56530,58880,55249,69514,2745,93913,47656,54925,75202,46523,74374,48131,60027,88339,18660,3935,32533,82394,35798,17371,74711,41399,55259,43761,82688,3273,58250,71039,14167,68417,50533,67248,31396,74898,75711,19526,12017,65473,75068,71624,87537,60489,18028,26056,77940,11800,17017,28707,2088,87902,54355,40199,31677,98131,76243,58836,33246,44732,63349,30038,33204,26596,23363,28013,79864,91354,44891,34037,18770,20661,11686,61810,53341,66236,20441,62896,45001,60361,9558,19205,28275,52159,26183,67650,42398,74973,198,35389,79853,48426,46478,96434,15949,67021,98654,51522,49344,24707,66328,34123,11041,90054,97795,70280,82549,46123,88656,85855,55477,85621,51637,84322,1877,62837,24274,54761,98885,50250,36945,93322,15105,73672,79990,35497,49004,85006,93872,21337,23330,71115,97953,9843,17955,46002,77426,96854,94380,69712,44641,25041,21918,90961,30363,82577,86408,61283,18206,12481,30481,24482,4523,27169,23235,77862,89612,90162,23510,56673,69774,97168,87570,20680,32885,88809,35873,84712,49585,98505,66720,27143,51710,12270,16081,4167,92407,90253,19814,17195,85719,63124,56391,1447,60954,50804,94038,98185,88058,10377,53854,1945,80010,41937,38412,62580,71710,19016,57126,67657,25196,95503,26706,21074,73964,86410,35494,35706,11504,67638,80658,88,82383,81299,26328,6309,53168,2242,62651,58056,99881,6229,13894,52275,33625,31320,22316,17834,63224,98623,36170,76773,66257,28553,35618,67755,67607,86015,26995,85837,62245,91152,73066,66364,4777,51142,29301,6665,95358,5042,42991,57917,19162,19480,66861,11696,99016,43499,5845,51976,30733,152,15173,89452,85504,69943,17287,30888,27018,49904,94211,74262,45954,37367,92364,97153,22420,61787,1397,69636,5287,94629,27146,34794,7479,82119,72636,70286,73166,70219,11232,26512,9977,45239,48847,2394,67757,62643,11012,57036,57880,69614,76794,69359,31503,16590,15003,77109,98229,31178,40254,40589,85817,95144,84691,3849,45366,78980,92212,24508,33429,24846,36985,10997,87773,39699,34981,32956,51771,46859,51570,73645,65849,96612,91159,25224,53022,52593,25430,51551,95667,54004,57753,37501,95910,45065,15622,63806,98059,9771,32222,89517,90166,93279,87201,16531,24202,9636,36552,66664,62216,5562,14594,15501,66504,2133,83879,2822,23993,98394,83748,34713,9399,12623,2325,67335,58632,65921,34908,72493,94106,20716,4369,86987,57402,34422,37741,93163,26316,33613,91359,28033,86808,6548,40771,57852,61772,10300,57344,50003,36626,34995,31608,9714,43544,84374,96669,22640,96707,32597,18261,1022,28382,71933,63877,61222,52214,94961,92156,39769,87563,36731,62006,47153,38518,92044,12530,68481,4283,5360,4949,13110,62857,92007,7404,72574,46726,95481,78335,43633,1816,50285,40979,75541,95706,11503,20711,57267,78217,44784,37170,80700,83400,83820,24571,37422,62715,55706,44618,86041,39895,60154,25062,74451,93960,75492,67516,55722,35806,12004,27917,41230,91528,46730,6239,99620,64782,5763,46306,71755,73177,74625,62065,5194,67915,25501,83864,93491,39440,95447,87314,67109,54267,15603,8583,82979,26597,66695,38460,60595,12659,83815,93595,65024,70874,60274,20503,50611,84324,49003,60560,44840,55042,56011,97148,7284,69322,51019,22730,51409,4896,65125,8673,11620,54902,93408,17598,9723,78647,26648,36832,6189,59293,98024,36929,82241,50291,64869,25496,54290,98107,5665,77042,90991,93410,19927,63569,82775,81530,9376,44790,35990,13017,70851,87483,33135,81364,13159,61367,32083,35431,2076,65935,20459,36808,15257,7952,44376,60315,34612,60006,25652,18854,62534,3639,36849,44080,82203,71127,14369,81007,50582,77985,17694,55704,50347,45360,21329,29680,64762,76958,74200,47353,16483,89461,9034,28761,79697,80725,63483,76113,14618,67343,42911,17499,1296,28872,9828,38888,77021,74771,54578,38179,84676,12642,79749,3573,35353,68094,21366,43860,84142,37390,4432,75446,20545,12096,53881,62694,76203,1571,28858,83693,44514,69787,99854,25021,41891,22341,83943,95394,61649,61692,35669,24951,55436,88365,85351,65317,62665,73314,55925,4911,68368,1205,66908,95108,47544,9744,1967,98803,32483,95339,55513,29780,90445,16796,92019,16234,90911,2630,35834,67517,75728,89097,17886,94230,9067,49189,32266,669,72280,62170,10592,81971,48619,53598,80522,74231,92850,55252,91655,82215,93105,29739,99337,50461,56727,86061,27050,81166,25706,56582,62746,6721,31485,95942,6350,4840,29725,43167,93439,22713,18901,55226,38538,84492,75488,91879,34225,83146,20594,64980,79214,17702,92452,583,73545,39507,34617,57138,13154,70234,65292,77344,88712,53435,63565,71542,43201,73936,77410,17769,85436,1077,35301,23675,80553,77728,90969,11244,22383,76834,99506,96539,20687,70235,32319,81102,9787,30148,28474,76332,20197,39709,45064,72209,71962,43346,84292,30523,34157,43740,17480,85572,25264,24171,86976,16701,54646,27890,83988,64229,58468,90383,31445,67179,46446,66906,50764,51830,54066,24671,42187,69926,5012,6890,71453,31343,3996,848,96246,28733,37101,55144,95917,44066,45335,2280,14497,72372,49889,65759,61608,24738,87008,3528,51741,69599,84335,56016,88474,74503,20802,35781,77401,33185,58780,78173,90694,26766,26744,89463,56720,27800,74591,12237,31333,52006,78530,74431,70394,69084,16820,42012,74245,98847,87451,64316,9073,18424,75486,6943,25940,55586,21620,30948,91130,17006,61926,17314,82472,63691,64849,46311,70446,76583,79308,1269,49942,77302,9412,55790,91016,53207,78227,31347,44610,75079,92515,84230,57914,36175,16105,16250,62132,4328,50148,96742,97552,21051,48549,83799,40587,1758,55504,34836,92015,84833,97726,85086,34057,35744,93428,60895,64288,97639,99305,80642,60951,21376,91437,33885,56649,76705,34373,89062,60156,41048,89969,88495,82346,68194,64897,7512,29219,24377,57478,67629,81125,97935,56764,13272,69002,65884,53403,6602,21696,95321,77573,65367,4446,68947,48535,33459,25308,90735,18024,90963,51092,39947,60265,96089,24936,74959,81401,80574,33308,25381,8103,63683,18598,52636,99343,18189,71610,35977,88730,5048,1013,20001,29325,16847,50744,76063,44531,18117,90844,37677,89416,80123,47345,85223,11724,99087,76697,45217,24483,80952,59246,10692,94590,84843,3553,39973,54312,22503,88858,97967,37889,62139,27165,72390,49830,32577,95422,50351,26914,14265,4582,90378,92592,98132,7167,73519,93418,95444,8038,31468,97844,67740,51189,8245,36238,29782,87891,86991,27783,38510,82929,17916,92173,44108,58600,5857,90869,4360,53206,39983,68688,23768,6870,7988,65282,19811,17380,55033,33562,15659,25547,73067,71584,62590,94598,67724,21900,460,5336,85656,80568,54425,13343,69125,35406,4878,13071,45276,267,64081,10296,87839,37994,46085,31421,26250,98917,2779,33851,93143,30918,18286,24095,22231,3829,79102,66109,64674,54188,66562,61549,43280,19661,55830,95191,72796,79045,46695,20806,66713,98249,74000,30800,25603,16517,24758,87311,54081,42790,37785,27354,37859,23685,20574,79233,87253,69137,35717,82669,78718,82449,5179,30435,92578,44440,98979,95658,34518,5123,27016,2140,37450,54872,99731,39284,39487,6157,31998,3130,64687,82894,47788,99956,71301,50141,90211,78027,30426,75031,94658,94251,28223,16728,34818,89429,756,5049,49014,15568,57574,66892,29872,22376,38791,45143,26976,90182,87068,8767,24770,97588,37885,38896,81876,10340,69475,55639,51382,85089,55205,65518,40850,3388,16621,37137,47102,5238,89757,72201,32077,57791,91646,97302,34260,56745,83098,1341,36011,95780,90034,12383,83179,68643,44862,88949,47978,98325,23237,30806,56496,7158,77544,81435,25997,89866,96670,83962,45047,69668,6995,75391,55490,29019,97856,86028,51672,81254,80400,90716,87443,64917,42928,37330,5511,62834,33465,93946,37130,35954,14554,42385,98618,67334,68100,84428,47949,95381,5186,4769,13408,49067,73433,73732,88263,67252,54858,45436,32828,74666,67393,27094,74621,28836,65588,71557,13694,62118,12987,84182,86813,74259,94137,76783,73461,65705,1823,32321,68324,34286,28186,99023,66006,19722,3685,44334,71435,88121,21601,96168,97669,50178,74612,13756,41774,10016,91574,62758,31220,63392,50997,69884,45953,69801,70108,67405,86841,49231,93637,72590,78806,92492,83172,20589,44356,79565,60295,65663,49695,28931,68049,83795,12368,14053,71699,27088,8778,98153,87573,48308,54882,65480,70954,64373,5299,4362,98277,50189,13239,35094,17243,10948,62030,65966,69243,14036,6270,92190,64053,82535,51226,27549,63741,54563,52986,38841,13993,91625,26578,4717,68862,59140,12637,95700,75894,41240,41882,81741,3777,480,10527,57807,33814,97198,47889,63409,46734,94245,31936,40178,86111,11094,92108,80692,78424,6590,96842,7242,77896,33778,27904,49280,74877,10060,26547,46961,24668,96329,33783,82118,46615,82104,89451,90923,37317,20816,97290,74766,31650,78223,68003,42249,79976,31863,12672,22903,31682,59101,15271,49770,29999,88175,84167,36198,93140,14936,56462,61302,51776,21237,19057,54383,51490,34615,12569,36928,7652,34025,17399,64150,35269,33839,42759,9986,13519,96884,71514,31897,14693,9565,56288,73437,59300,61173,73741,59808,85122,2491,34882,7034,46455,34741,52551,35479,67254,70702,17547,62979,7007,52370,72006,92804,28130,80651,65046,38388,24911,8457,32112,86655,98956,63122,46774,21076,93535,89892,46295,24229,21680,15378,58628,18991,46757,26301,34911,5670,91363,76462,90892,98906,5028,8723,26177,49599,62805,41362,59684,99766,72776,72934,35800,19336,70218,14831,81355,85397,55066,12618,39778,89563,39050,79982,98610,54795,71534,45598,28084,74890,50132,33409,75396,4435,57624,15274,61363,16815,3081,72303,34452,20145,57158,59138,94755,64324,86793,41876,79004,20032,83623,71772,4772,34777,88970,66480,41531,34509,55106,43042,91336,24003,88979,53430,68279,820,87002,73852,29570,25919,32035,31453,53284,76582,42537,85442,35984,13240,3135,92543,3692,92965,31457,67890,33630,56628,70753,75684,53234,18808,15686,52513,42048,76333,2907,19197,60333,3576,7838,25904,70127,4152,43682,73492,61854,26775,40286,53224,51003,92161,59256,78717,14235,22678,45058,99750,46333,6828,22497,88716,34534,58237,5420,23107,52095,13838,52113,46785,20415,67449,32894,34356,34026,48964,65984,48021,28705,6895,67408,21884,4100,3397,28002,46567,61220,78582,23581,36940,85789,83054,71165,3926,33869,10955,86452,22428,68115,62904,44737,15838,98882,4085,34230,82578,76541,54428,93234,60042,9456,33880,37764,74064,21639,11583,99867,69016,83902,31535,71712,25118,28686,91735,35311,20177,5210,63600,78072,6443,86242,69754,51544,31510,19514,97347,86791,4877,77775,21902,43171,14376,14360,7677,86419,45638,23161,9658,16824,63281,11376,24725,4138,39033,68724,95011,10787,84884,92865,54200,85671,40564,44242,38693,79063,63576,81527,42221,99417,71679,61337,46658,42289,46597,85093,68507,42828,17359,41488,1980,88112,71459,93720,16026,20337,75371,37345,20777,86598,62285,78145,73424,51826,82073,57990,42369,95533,21258,58885,48634,54468,69462,6314,9982,72943,82899,19920,58177,74681,14614,22162,52523,8619,2525,55928,62829,64387,43988,81156,73086,88980,48546,867,89762,72778,97209,98825,1410,85016,39946,41158,3916,3903,85550,52516,28091,71251,19386,88320,78998,17689,32089,13397,74942,8234,55445,36858,41412,14785,71454,50889,23233,32645,47638,66828,36550,37800,68977,19644,55859,91168,29273,16303,88571,81464,24146,13474,23339,7221,41229,18867,9681,79776,90372,29711,50621,28580,97376,2119,68733,39411,88518,3668,85717,76169,71526,15558,14377,68489,76529,89025,62323,86345,64570,68133,47741,69587,48103,63705,33930,82485,83958,29127,53796,57479,60877,30624,27818,7083,9442,72295,64201,26125,97851,83673,75343,54541,91272,25409,50238,90854,67648,51521,73651,20700,98355,19965,98147,22568,57219,34774,1076,40635,74177,96224,92060,9934,68619,38168,77141,83218,79122,89398,8727,55792,29390,1342,88892,63041,42471,57382,8953,36991,6932,53064,3366,83277,98716,36570,57433,59241,2220,49502,79756,57288,35396,11826,72174,23170,31938,64504,50167,61227,38825,44160,85370,30314,54023,7375,56812,51998,87502,75511,87169,35100,90662,71261,74100,48703,31756,99661,67808,66371,5435,26007,38729,54901,99162,27753,16827,76603,78574,34698,65033,97545,35090,25316,66574,96512,51727,8581,68756,86227,30282,96522,93538,51500,60452,92392,16976,23404,90501,1161,53501,73385,96741,62680,80399,74030,3346,20239,40947,21391,21199,48618,965,10691,27262,75520,86766,77298,66182,95519,36856,3441,98727,41146,94302,15758,94821,85503,87800,78618,42517,18834,38134,60444,76310,45080,16557,12513,51526,85181,21280,18564,41248,78425,37703,56826,95263,37109,66880,60425,38714,81714,85702,46963,90866,7455,86891,38199,82898,97140,68647,77951,90744,27170,60522,29539,25704,88312,97489,9181,62200,10801,40997,77995,86025,62355,72794,16090,16422,73901,76829,10057,15171,49234,15765,73933,37973,66968,66361,37786,36308,31241,12684,26409,337,21735,59290,26896,67621,41517,85009,28495,85936,15514,36060,66094,99476,32011,26414,36844,70209,38417,64894,61735,8142,24618,70505,53226,26231,72938,92335,85046,89730,97307,95047,56219,20686,61448,31164,60476,24966,11867,4898,80870,53500,34709,67558,66214,3016,23874,83904,39991,34052,35805,18304,74093,85728,98180,88068,72792,31003,59295,49235,86829,29672,46899,65998,47890,43456,19843,39732,16959,28343,91837,55831,83694,5893,69526,57685,99669,98762,19348,14640,85137,18795,92120,870,8867,62571,1784,7074,62345,7958,29039,54216,47070,55916,95854,3473,6449,24032,5854,86717,29715,2788,37831,38400,73618,54512,5078,23169,67579,13806,40831,61325,96418,32123,35972,53691,59569,56792,70522,30512,99125,58956,8423,62602,68164,23925,70745,1000,57182,66694,5813,17076,52928,66175,42447,5777,68217,54990,88898,2,41167,65992,18039,28905,44967,5077,71386,6417,81919,7420,86337,47798,83642,16678,89173,73143,49957,17353,53781,93245,25616,21454,36234,556,98005,74996,81683,57130,58383,60955,68509,90957,60821,40570,27086,72021,11847,58738,45363,10937,22879,9508,90489,61799,56747,39032,77942,97698,85182,71635,22377,8741,81671,60587,46167,95405,60135,56120,48254,12934,11714,98593,55246,85308,24796,50760,45882,35372,6360,46728,60239,74309,66139,51815,67507,43893,57659,97773,72205,55176,48919,46291,20245,92216,80119,78320,27111,52929,15631,2654,40469,16004,422,16011,111,99187,27122,58416,42098,51476,22612,56958,58314,65334,90011,4232,15284,55448,25473,55248,63337,55026,86131,62461,88715,70217,97094,4044,43086,16944,38516,72793,7592,44026,17525,62619,19025,8363,65063,97937,72470,27742,14736,47827,71245,3062,6286,40284,69502,26980,7726,6259,2555,34213,63279,25929,81697,51120,71627,10136,5746,4154,17172,66891,33431,92493,54768,43230,94321,68863,41235,10065,70686,15803,83732,63439,41394,70973,29641,69387,65781,7680,43712,7853,50193,95906,91255,75216,81591,36864,71408,16186,44038,2638,1008,47556,42695,93023,25679,85660,58027,80353,47184,77117,58701,86239,52026,20359,84528,72307,52732,55422,28409,91704,88392,27033,80866,99217,70231,79765,32760,30930,13237,9347,28812,89333,87186,12674,88800,31186,1072,66107,67272,69876,97563,67131,27434,55240,14152,31016,82288,43773,7739,4648,5057,6922,92861,35753,31784,24422,34354,78639,68831,93180,74597,54895,39918,84670,67979,51613,13584,28768,96661,17144,5047,68661,26390,477,76547,61446,86202,90509,85834,36076,29717,91833,93636,92318,84405,8524,13753,40901,86336,14825,59624,59392,18673,4756,40029,40365,51399,6280,11355,67464,10160,18118,26117,58071,12216,83354,39220,62062,28965,3131,1415,74614,3134,30847,86339,42277,62616,12025,60563,30011,55653,92299,71957,62026,5197,62489,59378,39968,77823,25413,88067,5913,19632,3136,25876,91303,12891,39102,25243,55395,3418,14605,4000,16870,82257,62211,25468,25824,25193,47520,30412,85437,94133,46459,48112,59366,37562,55501,91316,4339,75237,95821,88853,73322,35048,39078,87211,97556,62343,64001,88922,58678,48850,45214,27009,36546,29953,62367,91377,77889,56204,35886,28019,67426,5674,10828,91128,21963,47562,88725,59718,49049,24406,53602,69211,52432,84483,12451,53826,28552,26310,85742,9080,2673,75122,48492,2972,75323,70649,52852,10042,36353,22210,26945,63666,22601,77776,64560,74136,1720,37054,33467,11707,82873,84994,98990,99605,39376,55628,79332,66297,84173,99572,83482,14991,11540,7826,46754,55847,58392,61577,59862,41768,7684,95690,36318,35787,55403,14042,80407,30664,63063,56842,72350,74707,94249,8346,70144,34467,87309,12972,38792,22893,9899,38451,4568,93483,17940,93797,80459,25482,11945,31243,59590,90105,32424,19459,1468,31324,72458,76976,59685,15898,47683,9880,28995,1516,58220,23540,14808,92371,6632,46857,50998,80770,62364,57735,30690,53442,40483,19026,20772,8724,15227,29829,18214,17420,4069,4081,93358,68562,30164,75400,47439,19181,40988,20298,55942,81164,88751,85981,49595,29545,80040,21913,24066,53092,29462,60170,9623,33085,30217,25562,79866,62782,90188,30704,24083,44723,80974,48594,50386,82095,24751,99702,81392,59974,62294,27327,52253,97591,8503,38147,73536,17295,73325,33180,95061,37419,55970,25156,17276,20496,34952,76644,45413,33146,49561,88901,53464,76579,67603,6319,85344,50725,81886,56077,58381,40310,36944,81645,6262,27284,70790,14418,84135,90571,75788,28688,75772,5164,53863,77075,4643,96059,88340,88784,23172,2484,4738,69728,20517,58055,35306,31325,78945,21753,46371,73634,80702,67998,64868,9395,97156,70708,50155,45350,69060,83173,95562,9718,47769,96338,56715,2920,55044,82452,70106,82511,15151,67971,79389,60171,39168,4483,68419,48543,29620,93511,23725,90486,36930,35067,80902,19147,54944,55241,30320,44420,7473,18647,33145,37499,18046,22618,99070,41510,66835,86720,8417,28675,34238,62291,9081,81910,95431,69258,22868,49077,58644,23333,67924,68360,89202,43065,45152,76509,33326,32531,43030,61559,92819,58093,91967,66086,13667,11118,90606,8476,11625,11213,81560,16261,80284,21674,34866,80276,53342,64989,30933,96732,23106,88929,19281,20747,25950,46625,18864,11128,73006,6089,20111,7705,57536,35210,97012,3290,20861,24007,26418,66958,20233,9605,507,78089,98389,75221,85277,39612,74486,37507,86738,25778,34010,82255,45631,3887,34918,68718,98958,21068,63003,2732,32411,14052,63524,43186,79842,82153,55966,42063,43212,68012,78698,50735,26447,49848,53184,57380,54996,86848,54594,95424,10877,44087,2468,54398,74758,32333,85438,77459,48349,24428,53560,50970,72488,90627,93131,55272,60983,87534,59320,30035,51890,17169,29184,47323,27559,40616,2021,50894,35742,17135,44882,34787,4091,33044,47537,77803,52152,66761,31000,10631,48881,69026,87923,41388,58767,52232,40783,30029,65635,10239,97779,20923,25185,60127,32142,43489,60179,73772,49299,65771,9930,13643,16410,64239,55572,93389,77656,20976,30856,91785,79007,955,14505,17311,13421,62744,29957,83238,8213,13892,52920,942,75535,54111,75397,54386,25885,37549,19117,67035,20358,41631,34650,92647,15010,60418,93739,62379,6187,57489,61699,6816,81846,66662,16543,19923,12113,92951,2299,30448,19503,92992,65441,70799,96981,61888,90879,68740,41053,64766,57150,962,88990,60924,38206,17512,54132,15638,54171,31180,74385,30846,10230,8169,70117,97730,79926,58034,45079,72431,71932,83015,82733,67660,78284,80767,55400,81828,24529,94085,41125,37000,60122,93493,17283,82799,81843,52900,34740,50673,60099,57952,64990,80731,42162,75563,87814,31258,88832,4812,7051,7876,77547,71114,85620,62165,54412,58471,16000,17779,95515,707,75246,15999,24894,11939,90382,83108,31052,41926,25441,22740,99619,32363,71168,15859,50361,38532,8745,62169,47450,24099,46389,15289,50043,41278,2614,67313,26537,19638,24992,14144,53209,10326,54945,74910,5919,73593,33938,1310,43702,58433,21589,57302,44921,55533,34322,22908,88130,29766,83286,53541,29634,26031,23640,2256,64863,43690,30152,81796,24273,50160,53331,7092,99639,18308,8557,13234,20728,97056,88737,43637,3977,96303,37418,29744,43423,24562,22596,31881,65538,84144,59982,571,7185,95656,15661,56502,7960,76885,19731,68701,63842,63193,60916,89570,29312,45301,233,20593,39538,11178,90292,39400,53155,60314,55758,45799,3198,72899,54607,25020,99037,1151,55609,22835,28477,18211,43511,39431,70913,7055,23459,20421,51698,12739,30432,17043,45525,65501,58565,49058,68231,50814,64764,30786,84294,3833,65372,14316,10294,50258,90363,13151,4875,29120,96007,11117,18570,37116,22296,25154,43213,61951,48107,79908,16767,33833,41064,69355,70203,77313,53666,34703,36598,38111,9256,52951,23923,44683,68809,11905,21294,68097,53951,89249,32515,64679,87712,10179,56006,5697,25177,57734,66629,15233,3124,3204,79979,71659,68808,79886,24760,17343,64444,50738,89271,6904,79093,80464,63460,25039,37236,87802,32602,95112,32310,23357,90443,36486,18020,13601,94483,54080,69513,79994,76009,60407,86246,20862,37093,11887,10413,63897,47135,66602,61775,11415,51729,19686,82848,93471,46361,2408,27393,63817,27683,92075,66581,47657,2353,90677,41691,75452,41348,16204,43865,18621,43165,77735,11441,80615,73676,96555,19136,27112,19257,23279,44396,75863,81012,25016,236,6608,27103,60417,53979,56597,11879,34112,95799,64757,42813,66138,61617,82724,78637,52811,54295,32079,20498,65337,64075,51865,5633,31922,50926,54695,87195,35863,74515,65127,79061,63350,12564,49161,40508,90413,548,94029,84459,11928,89183,29345,69506,33472,51804,87533,99173,87862,91125,96362,39262,25996,52172,29289,41186,67978,34946,1667,1212,8032,81635,69431,90876,30003,55838,26743,87551,95083,61404,2430,55526,26074,26957,7747,50195,94367,59906,44580,15145,76026,47301,26200,98664,18491,37346,18774,42821,10396,38602,3421,39397,19054,87801,7304,69218,9709,32038,67077,34370,22655,96321,29684,11444,28458,43355,11756,65695,39883,67749,18945,29934,77327,39437,34592,54083,65945,78795,97555,37010,29858,44146,50875,57454,93573,44519,92471,64972,3471,19312,72607,86122,69412,22493,3694,18258,63685,37274,24842,99430,22336,7734,36272,31563,85193,8530,85912,99220,22660,34505,22819,9165,35339,50079,72029,80269,10208,81867,87601,75465,53204,5888,63592,25102,26069,58670,75983,66680,5606,36551,68776,51175,88611,91864,78149,8177,14445,56671,5086,72931,37040,48370,58556,10901,26572,38456,77807,45610,88403,49901,4676,81391,43250,31417,47475,76542,45572,12700,70598,85935,3269,15560,91148,11597,64968,32082,64124,28132,24342,89318,78605,69924,30402,47753,28075,29332,14934,88272,82311,95021,49638,55499,39582,37379,35992,96068,31083,31407,67792,62781,7144,11432,41931,70324,88764,70129,26841,60220,95181,76109,97611,71156,15710,49588,7208,34649,22487,68082,4698,55076,78379,16476,3918,82822,71767,11009,57287,70720,96235,12645,2531,49380,77888,60514,96625,90244,80502,43732,99920,22486,12275,83785,42152,33691,83178,15112,97219,89872,14645,76359,5130,66097,49953,26422,23409,90584,49084,23850,22203,62890,1059,10557,69112,41739,10332,80939,4423,90635,21165,85674,64585,58301,41533,77165,31130,75280,55060,34971,56380,85447,36388,17523,9322,14851,24217,93581,999,20844,33549,78617,83906,57018,78063,56680,6010,47143,45797,93526,56229,86562,62192,30940,68807,37841,84270,13999,65659,29931,13621,81789,74220,40774,86625,33343,41594,44065,40687,68414,46905,16340,60974,42443,31637,31600,31302,14366,88033,34111,29063,28682,92905,23954,84770,26196,84767,93602,65512,40266,42590,42071,80084,52315,93183,54851,30026,96105,374,26916,22266,48255,4155,65728,32136,54362,25054,25055,96773,71807,79286,29568,71716,60233,58105,17728,15279,39749,94142,75417,46294,43075,85216,59965,12335,36206,67424,21989,24235,81324,70251,5041,88052,74101,1879,3888,53463,47331,71189,86937,41613,71748,29070,950,51000,76886,77988,89270,76162,66217,28969,14889,26458,87348,42723,72804,11602,48128,58036,50282,24718,3072,14523,21717,33758,25589,63183,66154,31177,57785,960,77704,66844,72363,95925,52258,42390,33290,90899,59536,48219,33853,13868,14120,75848,94985,13580,28963,2643,95886,66012,64535,61754,27268,45808,42460,79322,34273,48600,34361,13302,77949,18427,59365,65867,96208,7862,41513,74796,61495,80547,68321,3716,92648,87693,85445,90574,96777,28026,34206,77907,61429,61745,22863,53960,43316,88534,34071,15428,39444,60403,34747,84071,88629,40908,61864,52492,73762,60287,28412,42703,51314,37083,49218,52646,69304,43266,67886,70548,83117,37145,79162,53225,20223,31542,34065,74176,71906,4325,86905,20539,47370,41914,6232,87051,71551,94691,53052,50484,74387,14514,33774,55127,75646,672,36710,2615,32604,22283,88780,23354,42855,76006,82348,16124,32480,46417,6911,28940,42971,33272,63266,64790,6347,42273,858,81883,58690,92331,38895,31470,64394,86486,67047,68088,48285,93733,89472,54430,28897,54291,40136,75793,63257,18786,69530,93021,23809,50246,7440,46081,26210,93892,15340,44265,35576,81412,9008,4556,12826,76290,97892,55530,66232,28014,21630,80075,65333,33074,57340,29133,25670,54143,16663,8981,87474,46383,50314,80319,25765,82473,87812,36670,56264,1774,305,77733,80792,4134,32874,4576,23476,11264,96236,80563,91037,82562,97357,93677,52283,38075,51090,70576,44613,58143,89276,26732,83256,62748,95260,70572,36752,79275,62607,11705,86463,10405,7277,72925,7451,52269,40305,58802,28079,98845,63908,98203,93472,12729,71008,1299,54166,17634,8399,23310,43389,91147,17365,23270,99280,61323,70276,87815,41969,64912,42418,93308,64943,28028,36909,40311,98723,41499,51453,71531,37958,79420,73682,83909,93935,76806,37761,43350,11273,28238,63535,50854,87589,78273,96078,16626,10310,45046,97948,53813,7296,51276,51376,40968,6953,43034,58174,29437,5428,92931,86115,8546,57501,86942,98273,39323,86299,41193,22951,17621,85648,8315,14793,86101,36080,59258,59833,28037,41245,53610,3646,34023,17071,6646,56878,86323,43048,14229,92526,76833,71818,85987,62856,429,9799,16535,83500,16135,24929,75197,86980,25404,4538,36890,24111,21247,91994,22329,45580,1911,24819,23591,39307,36031,50833,15600,18551,48640,74239,8083,2332,48010,45891,28750,26463,35796,17358,52366,96032,90433,26238,22326,27875,97038,71506,97554,50472,64211,49227,79832,46150,99636,18115,93405,92674,45471,67758,43983,74974,28371,10827,73245,23232,82139,59488,41628,9685,13698,64523,85596,10550,90552,80199,31546,30349,70178,35848,181,83315,62439,38416,27539,94542,9029,60550,93717,33529,84662,29126,25796,67036,5546,64781,93527,68887,35174,60812,14733,51560,63918,86032,1733,91378,51523,67939,94077,33632,43328,77870,82989,37232,41867,68158,73334,69751,32044,93685,65511,46483,47149,48658,37618,97233,69232,54415,49519,8129,27575,12129,35646,21675,48296,37326,82678,63964,60873,30947,58833,45961,57038,84951,29132,76826,39244,80575,7506,56609,48149,11894,49747,29294,26319,27938,88191,60071,46001,34382,30828,57304,15108,76756,457,38765,48829,35399,45934,39894,59750,19340,20244,37328,20734,37888,14721,66726,46646,62843,44583,51663,29290,19429,57032,23553,89216,67250,33302,88698,16203,34066,11134,24817,17361,7184,9869,38236,9727,80281,77485,57395,20917,12334,18314,54811,10887,11289,47388,10501,31812,61059,18607,75114,29255,3505,97239,627,12470,26357,6683,42831,39477,46379,58145,49427,1251,46829,82456,86396,25618,42208,82610,40336,4199,29613,71001,71707,61514,8695,65245,50819,56084,25295,35528,17831,15303,15432,87863,15843,98865,46636,63589,63785,5404,20029,79085,4006,15273,79913,78168,19315,16462,45628,28133,99596,607,27695,56514,2115,72125,31099,27923,68269,76312,28336,36905,62513,3525,82454,76584,90187,33648,50416,15971,42097,5449,17733,49381,50410,292,33174,15190,37812,9624,46077,7723,54663,43029,42976,81973,43427,95501,75777,77651,53950,24465,51215,5117,34880,38522,30891,378,22224,38361,80162,18081,99502,41081,3600,16035,82628,16978,52849,94408,78593,47688,3285,86184,14177,7564,24309,1464,57661,26076,41309,35107,91030,71493,46600,66620,55947,69507,56327,97877,11412,44493,88667,42217,55559,30233,37990,1247,12307,5733,71131,74920,14118,50915,6769,27214,61259,38270,14478,69197,29743,2099,60102,54909,68813,78894,7086,51738,97031,52858,82226,32441,36977,13471,73203,63434,55879,30836,34826,19483,16714,42153,2534,66854,59574,62702,99006,38497,34707,91516,53232,60581,45643,72356,57141,26740,12053,92282,32081,23878,60820,34005,94283,16751,50656,88360,86733,1908,92349,52708,69490,42585,69114,6670,85748,34417,61284,19008,58877,70226,20867,5820,5158,25101,73192,56950,7650,71043,16660,97586,33927,41396,16267,76793,3435,90093,69670,9471,60189,83113,4902,74776,84129,48954,13496,53113,77362,90550,55132,20522,62171,44228,3689,21984,95286,47368,60535,46741,52576,52250,82518,48694,69756,45807,29793,12190,85110,54829,25736,5797,81899,94647,27953,43535,66706,12615,32548,31023,27650,64098,22714,61502,92527,19379,94524,98260,46495,17698,76820,41091,39920,64920,60671,71040,91677,83516,13847,41259,67045,52634,58619,63151,13376,86944,97697,25310,12083,42007,36529,29635,11147,36134,66025,84465,9354,38077,80359,38678,1624,19976,62173,96872,24737,30153,74518,10102,45800,85186,69777,67794,7617,99769,54408,48358,30287,94108,84573,13644,52491,54992,46349,16054,38802,91083,10024,32568,84538,46992,1378,91297,26112,88555,95913,15179,2829,87577,43930,52735,80631,32068,31398,40251,97277,1321,23373,99255,33287,50720,8266,3699,69537,83174,57443,55219,82395,55275,74522,30110,38472,67091,85329,70544,52533,46290,56198,98902,62968,91708,84587,3526,66766,7895,33098,38865,26872,10415,52895,36653,70570,41584,88531,46629,93681,45646,20363,43059,3512,69897,88226,50350,18489,27993,22491,62950,68553,74265,949,29410,25792,80794,73354,47805,13975,20912,38818,9225,37428,37332,45170,88789,16482,40659,47988,49159,34102,29178,72225,12156,84050,9360,50807,9079,88900,4422,80133,6180,17458,74038,60326,35965,19816,96808,52318,90059,59040,7026,70387,40898,17178,44970,23283,99942,71238,61002,96573,44225,43172,97839,55872,82687,28504,24937,4048,22096,66037,22884,42096,10048,93658,47909,37337,44200,45885,29946,34862,53627,79320,59856,47847,99997,70854,3539,939,44987,12075,26285,50919,48191,97089,83969,45208,98358,31301,49955,94679,93612,83696,31962,36342,24644,57657,35461,15574,45013,135,36468,75880,61918,96524,36043,51709,69176,99439,72748,34287,58937,10134,74840,80966,23205,34199,98948,50857,26000,7457,44303,9541,27666,9729,86001,28078,41935,8759,40827,85522,20232,27647,35986,36686,47974,35375,86442,10988,55659,80197,41870,5083,99957,25230,4220,80534,33573,72215,72856,183,40580,59204,33831,43902,47304,11596,30474,47462,71083,68695,42934,84249,93628,38027,97614,91067,76071,76641,53402,72030,25465,86557,94485,70338,44326,98730,26905,58044,66314,98449,20189,78230,4579,26984,57078,45255,17919,57906,13943,26197,30527,41737,7364,2198,38436,87733,36642,62529,32681,8879,37002,98861,2485,18544,91431,54812,6794,69317,10142,54261,8183,26135,90741,18552,56340,90943,53680,70139,62707,55906,21483,14104,91756,57969,28841,93611,38102,86755,8491,82083,91122,85458,23140,89920,25031,66114,62608,85237,72233,85057,58875,32097,54496,67403,19358,73253,74116,17186,19942,75145,69054,83040,5006,35730,27939,387,88280,59967,89016,55369,54781,25249,74122,41729,30045,29974,13597,84106,73236,74475,64463,61919,95792,29724,56225,4071,97987,85574,61632,46688,92285,43764,36276,75078,31728,32976,50620,6027,70956,22233,42898,31903,69558,86815,7481,38658,49266,56501,57526,9777,20984,53939,84816,91933,38893,10960,5580,26465,54292,15800,40875,59959,9062,65799,49549,62818,89582,18742,81805,89184,42613,4049,45159,98584,83289,10633,28059,83549,5096,74620,25918,47428,48121,97292,48983,88463,24093,90713,64586,7632,23125,56735,43291,49982,24523,99664,73439,76970,41860,19636,57678,5855,88009,15225,42218,3275,20818,8657,49635,89524,79024,18242,48143,7788,83216,12321,98258,67299,46436,75572,52150,77186,64649,59963,24613,36761,23980,24345,5236,74983,64145,36249,54967,5495,48503,23180,66499,96044,67861,93382,11096,68274,66465,27223,63274,51559,671,54658,56732,27476,70380,73689,64340,24693,8909,23817,72173,99628,41123,49740,24530,84053,23692,5853,55641,43264,1167,71949,19036,54077,52131,59380,87061,56262,48910,93111,84572,28475,40315,56683,92128,86169,15822,61752,31602,60445,67726,70425,83048,17255,37391,23990,13725,24509,9180,38648,29323,84516,51549,93770,48522,58606,21860,29125,24414,5116,15882,57029,35475,50391,45388,94888,56495,19926,38619,21482,21167,28367,9845,19443,64900,2700,21066,9164,29783,78646,74724,74250,46423,43170,29193,27586,9935,5275,71623,96100,58555,60603,60496,4860,6534,83648,82722,51018,41214,75644,18056,23737,25920,11338,37849,59106,79658,76977,48378,13026,67692,3300,69361,42592,53300,69807,34804,25242,10175,87479,29619,70393,61299,82002,11194,43105,65420,97687,27914,70319,14945,44902,94903,50099,28479,85944,58827,1201,20690,77105,65519,277,9589,39986,64495,5656,75346,48496,66264,29857,68254,30378,47482,68883,38377,75784,94907,5798,61658,16710,73074,23452,37663,78554,87352,34919,47240,51049,73724,5568,55188,14989,29229,66944,85478,87147,74875,24195,90971,40716,86172,4691,36779,67280,47465,41944,69429,27261,62692,77281,5070,13760,54928,15012,31047,99061,2496,55655,20408,47001,77931,13210,91169,89302,79221,46491,6615,47381,62726,59400,99972,35293,33421,5112,31777,93026,58578,82612,52493,61750,94830,86047,10638,76813,54121,25599,29923,97497,20396,97700,96557,39736,11925,78524,68748,61551,90316,38689,68091,95338,44212,22073,11903,37950,79680,15523,43737,68107,70906,21299,42465,90214,34756,74097,31272,28937,96795,58589,98870,15341,9064,21635,60794,90942,74414,60853,15169,67582,90651,72720,27496,31228,52806,94155,51495,80701,84894,17381,25324,87099,49907,52899,57475,64706,92097,9438,51153,84559,29059,67983,26761,12576,56688,41654,47352,15499,16955,14942,82528,87754,91143,42676,8256,50144,29532,33106,55875,87668,66819,13179,77974,597,6335,11543,88719,71385,15404,9543,41612,97295,40007,83000,11873,50530,58933,41546,58708,54480,5374,56047,82248,66590,98372,22809,36571,1371,46500,22665,37347,70558,14058,29798,69476,36591,44867,81633,34656,48464,24321,53838,44524,22270,62614,34769,3110,5867,66764,14246,49016,45834,90324,43006,31944,31818,5403,62391,41400,46019,3705,28086,16579,45756,33229,43861,59073,22218,61161,9997,80091,22183,13867,78256,65600,45965,51200,41571,481,49627,53903,24064,94759,76305,62894,42423,81550,57072,7670,64601,13318,25061,96371,45390,21478,48559,26255,26807,39637,76430,65395,99638,19677,65918,78689,44425,68060,8661,91264,67960,13994,46375,3264,49823,71927,19134,61330,17107,68423,6591,3140,15783,3713,57718,21868,68037,30422,15215,82191,60645,73438,29932,69855,12245,42509,91906,41169,13434,57155,70018,13567,48772,81065,44316,69662,80895,48394,7486,16569,22960,59861,53965,5171,74738,34325,98111,92853,74186,78150,66725,85024,62175,74769,60076,51878,35111,21737,25663,98371,49481,18159,67489,39784,83594,29788,32551,69420,95062,35791,64937,65453,20822,7659,17966,63989,45943,78141,88044,17803,25485,40293,48422,68930,55624,42486,87202,55267,57771,4146,45309,52965,56199,613,42694,58216,79343,89281,19888,98422,667,31361,92109,69921,56939,33127,68504,96035,51234,18592,26777,87761,26155,28983,98025,27727,8753,91762,79043,7903,11039,45538,51144,84610,96885,90776,19076,47393,69282,74576,54396,75956,30622,30524,5241,65813,53964,56927,31911,15458,74892,32179,55115,96638,89257,89628,73189,34035,9663,96377,36758,93142,92400,9220,54167,21738,28442,4573,56510,90691,77050,16961,73866,22427,38528,56135,3690,92021,44844,45002,48188,43108,94659,9454,27336,45298,45494,45826,33032,10383,23814,96950,7342,99480,98722,90795,84219,27205,7647,22425,37585,79235,35184,11518,82846,34585,67768,62986,82735,67502,16893,45988,70613,29663,85842,9433,75992,79522,20501,55093,60375,79521,20252,45146,28564,20251,2270,98497,69761,28222,68596,35888,81648,78873,64354,87966,39055,49415,89785,63619,18983,79932,7982,60740,85712,3961,71556,38768,51752,80050,58140,26705,84784,18971,1815,41731,31749,81127,54473,79639,65650,76802,57968,97435,8084,8947,31046,10903,78325,43046,93614,98684,32825,74422,97868,36838,29812,30597,46166,52526,47376,41355,98704,61875,9214,18446,13924,73687,73318,17933,27975,56213,73007,74428,61114,71796,53768,47218,87666,19317,17869,54622,50027,72237,637,42901,38556,80760,5022,68343,356,77724,6527,12606,75957,36320,94016,91889,63161,3126,55738,29023,44682,66064,90600,89879,68585,56763,55331,95414,11085,62347,44617,76473,35351,35794,63775,42817,74642,73170,50876,76439,79435,91110,15448,32553,69093,58404,4641,83523,44247,71733,96086,81000,21596,48801,72845,15880,64748,66549,64319,12883,70013,53029,40869,83779,39170,33195,70366,73388,80195,57621,23671,49323,10671,9331,59723,20070,43051,88438,408,9211,85687,48278,20579,45482,46265,90009,37610,57424,94419,15837,93041,56208,91487,45531,82930,59473,33305,73835,20167,59620,44,1391,56242,89931,79958,25769,4042,91027,59077,5928,47344,88779,91107,36573,50771,1200,8341,5329,68589,66179,20928,31796,81280,94373,85272,30413,52731,97940,62446,44438,6042,79865,24883,1177,84387,35547,46712,59859,10062,96805,44647,521,75087,8308,17932,43228,14757,56352,28020,33104,80674,67482,23644,88427,42713,82888,78179,39304,19310,49491,27685,32932,56353,75928,66265,22823,23803,92449,28452,97632,79834,91253,46413,36992,9642,22289,50564,43856,97366,44903,53413,37306,84802,67906,35194,20265,57594,27623,91902,62223,92337,51666,69783,3308,63194,97429,84170,58682,69763,78062,30123,62551,83605,27325,52262,85951,2406,14548,28217,21514,72297,53611,70141,93495,81283,64477,54880,75219,89058,16838,18851,49131,69982,8442,26227,64811,7928,80169,82648,87525,10670,20082,34466,98037,90528,67184,4493,41578,83709,91656,78344,2785,30025,22838,36274,73930,2166,40544,56437,5133,66071,89038,40299,53431,93587,85955,68870,14970,30721,90807,11017,77979,65253,124,63747,81855,53439,78298,63871,24211,43585,17552,63624,48049,14112,57248,28081,53317,57488,54325,95477,11580,28492,95314,41683,94503,72815,52445,68951,77051,11162,41049,24,63308,92040,12377,82352,58150,58641,18387,52814,74482,53801,22938,13947,14504,44838,94635,11290,84567,58019,28797,47838,15106,13317,43278,79398,2368,78548,43921,41664,4271,69888,2941,8544,63641,60839,67748,96458,38677,66546,13817,53553,17020,29077,36522,87094,43630,3241,97718,74842,52116,71424,61145,50362,38942,66399,5832,80462,51851,54224,40837,82381,52109,66476,16544,99928,31502,6564,36625,26907,38820,88270,51224,42021,67462,40808,38255,51994,6090,93341,14506,56406,48159,63655,19752,59016,86683,1189,64069,96975,53395,93532,31581,38428,51704,56336,84186,12888,48556,5948,97524,33956,66864,22557,33458,81979,18608,14074,34236,70713,53397,69301,41482,19506,95958,35542,30264,21849,97459,55185,82420,37022,66148,15772,62265,28724,74276,27340,81421,7569,25552,11236,95783,42620,21283,78330,81541,105,32937,51975,4511,38217,83810,6784,46027,33987,67937,96355,50273,30802,77871,48106,3229,11979,57660,13641,2084,96194,42454,63875,91009,28592,18155,29310,99357,25443,559,81360,95356,80690,84082,31704,24664,89767,54639,74037,64378,27437,74500,66354,57684,47620,95499,13371,53276,30551,409,94228,38720,59075,34801,94491,87485,87881,41678,27226,60061,82340,50371,19580,4930,9972,49858,29383,13766,62492,53932,37255,39965,34576,75317,93503,60632,79135,61526,44351,36237,59329,99392,84748,35167,29623,92733,63146,71207,52254,34659,99853,58282,58740,35628,12483,80479,47289,15567,39069,42292,91707,35837,32779,39452,89864,14474,33460,30371,11073,47893,61744,87642,31883,68298,60490,19556,87655,25622,81554,59693,91828,26060,37956,37185,17561,94740,57274,73668,47262,95128,95848,53253,87088,44899,60920,81368,28945,71007,43421,20632,13773,89672,14008,33807,59275,77438,59554,77388,75705,61677,74575,25751,61627,70349,45783,87892,11124,97022,87457,71983,83495,70040,76124,64285,12832,60271,22454,10365,5689,17059,65723,25382,21415,27110,86483,76194,93450,32606,87889,90070,27316,64171,98420,94780,91798,29560,90699,55215,18528,66204,40313,98807,97649,34751,17272,34056,54885,56880,54853,24554,49733,36797,87695,37149,47392,11505,90267,2414,59360,1680,89747,76630,4837,12114,10483,6551,30247,23775,39521,23472,33254,24381,74678,657,99594,93667,2861,11477,67110,11229,27023,64513,57271,41819,38227,40533,21401,92784,11977,79412,36294,15860,7389,83526,30213,9889,92475,48779,69465,33560,31500,59455,29883,10820,94464,27640,98039,15,66786,27246,45296,92326,48706,1134,27681,99978,99101,83211,95460,30223,49817,3240,94696,14781,14666,21966,54144,35775,32404,58413,8396,27372,92442,4791,38708,25894,74095,68432,98148,66813,97971,65248,48502,56291,2024,64051,69671,22243,8698,12917,14713,8928,38880,60400,72203,98361,2292,18727,33005,62743,74632,74132,31877,78671,33321,64992,45495,53099,27338,16658,32517,68868,99541,42286,84117,80807,93457,16364,70978,14769,85431,73106,30013,29996,48646,28328,10591,26173,18065,60117,75378,48661,65824,56666,39018,77551,5718,57787,40900,58196,81525,31971,56357,48486,19356,30771,91317,65917,38481,12151,4023,62942,81760,14222,19540,70681,27987,49160,14306,49995,53002,19033,16399,72277,34869,95661,8462,45860,73789,40872,46272,21806,89732,5447,36441,67478,80454,8075,34285,32970,8224,78041,47306,27358,18320,49983,68143,38748,51903,23001,80418,40242,35049,55316,84086,48497,14632,85291,37727,3557,46844,16822,5247,46771,66237,13049,25001,34468,67509,89246,59415,77123,42940,57065,21110,95741,51611,49422,12957,38642,20658,49664,27737,35614,12415,90492,17613,33291,20289,25223,58930,14126,35425,66644,85965,27604,1082,79301,24647,41588,56315,29018,98513,14279,79454,30699,41196,16146,47009,64732,86082,82427,75602,47471,39881,2205,95751,5564,13616,93154,10945,12626,60957,88250,23539,53007,28700,31848,86320,40862,64561,53876,66547,86577,50202,98688,88124,66763,93083,29379,4842,31356,56007,13083,4558,18677,19536,54453,7638,97490,98154,57578,37280,17278,38785,3197,99246,23746,44747,10234,68328,3103,73031,34693,49489,93221,74572,94879,2939,95607,29436,23372,74213,85405,12089,58058,80776,87487,5017,32487,97057,23989,4172,62464,83712,95284,89263,18316,60264,47476,19372,62655,30101,86754,36822,98983,17441,25116,10708,36100,93253,49171,78892,81431,36768,16496,24116,97346,36417,82631,48758,49717,99910,40694,64889,80573,97747,10327,2550,91286,44897,64797,36746,60829,11251,78371,69609,32149,49961,7875,24524,8776,86583,59393,27867,80834,239,17137,54046,29899,42439,87225,13250,61024,13883,42240,36195,84531,72455,30990,52540,95367,2573,52438,22894,97882,58213,91943,7411,44210,49508,51918,20332,25483,75979,77851,29047,67688,56799,98980,12861,5951,68448,11196,10255,68946,54484,60841,56713,60128,31194,34161,3019,91667,91056,31270,17190,95544,48635,52747,8809,8638,80729,36771,18260,61575,63860,37178,58228,72217,7600,34176,53639,32861,30520,88019,76327,24447,95324,74899,9383,677,48690,86096,35765,47585,18599,27808,71612,53266,51915,77582,94332,95476,35572,66768,74714,1809,2009,18431,54195,37514,75208,13100,33369,13623,9755,1616,56952,551,87173,31441,42841,6688,83131,98165,26655,22382,1388,16300,205,22970,4956,4177,84813,16722,15664,88749,53533,75502,70807,54115,82987,12035,77273,36912,27405,31256,79897,29415,44854,37480,72364,99822,32788,41905,65883,99408,96002,27776,49101,39393,52678,8840,71276,10832,7248,17369,79602,10108,33478,31928,10336,96432,46788,93136,38360,95865,92777,5942,87971,89972,68395,56487,79361,91298,50701,49219,16430,85619,63651,55058,24875,37014,4515,2830,12028,39106,72811,2110,81005,45575,8591,18331,15977,62197,99307,69096,44234,68846,67870,85514,70432,37588,74156,62996,7552,39309,45507,4375,50463,24125,57167,16520,98341,25879,38097,95540,18448,436,34306,81439,24780,82999,61236,63851,23802,93654,67770,87623,85665,90190,47680,22332,64579,97754,55990,42173,17991,26302,39014,33837,52395,40141,11475,26895,86215,28355,47642,38545,94701,44327,79529,57553,19442,18288,47751,50972,50827,69529,98480,63134,32509,89367,16797,85095,81547,91723,21734,7424,15547,30271,24291,22356,11969,81705,91382,14823,70865,15283,88109,64251,54634,37456,37683,23306,7649,12062,97245,57392,11038,90395,94396,87020,69608,22396,29786,79036,3893,84033,10854,24815,35115,76478,65905,32685,76865,22399,20946,80223,23918,21883,38976,93979,23536,4387,12505,80918,10531,58337,16880,95695,43190,52142,13293,73455,46351,57927,91637,52198,64016,88538,30049,58255,5331,84163,55119,61499,90736,33862,855,92235,52008,94187,25772,40095,76764,99783,43116,10394,83835,48030,51507,19626,92160,76125,72062,44663,65816,30550,68275,60880,90960,87710,90934,51761,70345,32993,580,72921,73167,19140,67400,23670,48896,6985,71241,9103,20292,34681,59570,47768,64942,28247,33863,27190,76770,65048,8424,16875,92876,29144,68151,95802,10811,17198,45957,16106,13138,45417,34725,30764,27921,21847,19015,16350,25151,33899,8538,76289,13711,94315,90397,22375,25966,99827,38202,72666,96173,96546,28092,32316,62657,66973,6037,42596,21974,74076,14081,71107,69833,5861,9679,79530,89319,69018,97919,99059,15394,57626,89035,45343,87543,11791,17487,47510,16398,53310,23253,76222,59316,81820,44553,56900,64227,72527,70655,88418,63656,75200,25286,24343,91643,98110,98857,70934,99203,91362,86006,30354,43226,61939,54691,93145,13301,90361,40348,3638,95171,19259,40521,16861,95856,66588,83921,13198,44088,14753,98409,77033,97782,55010,64406,27725,7978,51816,25613,72649,98066,78331,94119,17484,30507,7743,32596,74194,79929,98310,59846,49079,5021,70035,63629,86370,4498,80948,45925,55284,21141,37987,10375,51054,32761,87977,38095,57397,62108,65861,90268,24918,35093,11876,51813,98171,54357,1113,20316,16179,54776,46322,34562,29948,95965,22011,93372,69349,5218,95645,31438,23586,79108,20892,54382,66422,1825,60056,99358,33914,69190,81806,48665,86124,78258,70768,74846,58165,47336,95078,73631,59211,1343,55315,93702,97767,43759,23790,7886,22687,4974,39200,50135,14375,20218,62180,85920,57037,54162,48871,31010,80827,66989,6880,39954,35332,5970,70510,11593,72705,32732,21431,43248,9557,30044,67005,95654,51541,57737,71024,17517,45131,94223,89791,67652,9960,70859,57107,1227,27448,75063,84242,5801,54258,66559,31249,63351,91387,97679,62988,80746,2000,33900,87189,10038,41418,85537,32759,36415,45558,73153,43500,63202,43594,12362,67802,11249,82597,78004,96186,90479,95536,50100,87363,29353,65510,67610,9896,15444,43119,34485,92232,40798,33809,30161,76633,8410,50956,31483,67330,11982,49877,43181,50199,95322,1003,25840,31538,93891,26931,42524,26607,6339,65199,2101,99208,57104,91217,50405,62234,9883,97449,29057,22738,86328,83604,68644,72896,98250,59957,14967,17136,6586,17256,79599,82443,45031,56988,89167,72833,65391,35316,34638,5461,57554,79720,1496,25619,15118,77720,19963,18850,33818,78161,64250,97741,19254,23396,74287,70636,77901,96222,87894,54236,15727,72428,86087,71405,80477,64792,36086,65008,30262,4007,54754,86358,78235,37355,23752,44520,57830,56377,51885,64930,61937,86471,64554,35418,26729,7635,86593,76001,94886,49462,82617,56729,6331,69675,26278,31131,2343,8547,22292,36720,72625,72156,1436,73246,37735,26933,31115,72171,82716,31983,66807,58070,94453,94081,62204,53258,64115,51006,36373,76545,7263,25120,82621,19380,41371,78549,10404,31549,63465,27037,36066,47779,49971,31886,30300,2628,70754,19954,86736,54339,68447,90829,92594,57047,73978,66975,7330,6747,18436,38145,52520,67300,25941,39264,79587,33366,53986,10201,88398,70057,34652,115,30086,59225,79317,25009,41140,49238,94193,52871,61704,22990,40780,175,99406,57689,93962,93738,7294,94490,31924,22299,85666,80456,32879,2868,28123,31974,7573,23329,89616,73184,85113,11141,36315,39694,59417,26476,21189,44932,14094,44040,46805,30126,96891,65049,26188,40734,82682,30052,40223,96836,90317,69090,1562,17175,45107,50187,41474,15181,34181,50815,54329,67060,33205,63999,36403,99894,55452,72082,19272,21934,88633,46873,89011,43211,50939,73751,9465,59604,60176,7170,3342,61528,34259,96117,81833,1582,91842,53362,66693,3470,52218,88876,60008,77515,29006,32260,76335,56056,14014,11161,16638,48893,37916,22064,28912,99516,17592,20325,41301,12282,12408,11296,65147,67988,87988,3382,21962,60374,99921,75352,82196,63467,24624,46239,22781,42348,89809,68308,3824,7951,76581,68252,76180,33764,25588,24310,48611,52840,62700,28530,72541,64567,35833,74511,66060,56368,37339,83933,38018,51625,42005,37318,85631,54529,99990,32095,1669,6778,96819,91146,6876,56298,51757,9726,87288,7611,46795,90392,99015,95073,6814,69753,38275,18460,64884,4346,12268,10342,70899,13483,66698,78333,4661,4784,85341,54595,73397,37412,53200,76279,87404,78741,94751,80569,7924,85554,37893,27259,63547,58280,61298,18397,74629,16362,46834,19771,23774,11814,13278,13218,79924,57567,77433,29218,3650,86741,9485,26926,24582,89041,76623,71589,38437,17858,38977,38670,76740,38298,24868,80421,85806,88131,51154,69549,1817,15315,57213,63233,51614,9358,85571,18298,19972,57800,83559,37026,66234,70553,44753,92557,4886,50255,54518,31345,27969,12776,75121,59337,4450,16335,42424,2170,44076,30904,93247,48873,34400,21546,48317,75015,16393,53270,20573,27696,20486,2625,19430,76608,79804,52896,64613,38181,70173,41165,98515,45355,54787,34949,5971,32995,90790,15957,22811,82202,4453,5464,43495,97957,22246,1857,55065,52266,48481,46824,50045,25092,71513,92978,77686,45849,2227,61477,68313,45678,90616,55314,33546,74304,13559,74655,55293,78681,1235,64733,84554,82045,71078,620,81858,69056,68806,3891,89386,13844,88767,49642,10372,21452,30528,38623,51659,89894,64110,86770,28853,97401,94764,74990,44781,5229,69311,44354,99264,56905,48362,72410,33121,79326,55552,58533,55282,39127,26724,32785,52979,55492,25072,66988,59705,54974,28468,40129,18757,32770,91106,16209,75800,10732,27149,86371,82787,53567,88565,84639,82656,26751,96297,25498,72957,97566,13981,3188,45205,20943,80561,69384,25829,85144,6357,95370,41138,16552,70232,17665,34677,78442,32667,56458,74704,26017,49247,21298,25806,50181,75023,46900,95308,8644,83306,86223,37233,11494,83124,89346,47020,93005,9140,66757,58727,46507,6489,29936,89185,32918,30617,58163,49580,89912,97194,79300,17554,584,99385,28230,71252,29163,632,7740,33680,25178,62964,15730,45612,55253,24050,74912,99929,23150,86529,71910,63262,75,77397,31920,91120,59517,1775,24419,85380,13259,45851,8329,21715,1521,38438,62595,84882,85863,65642,4703,56284,51898,34408,81598,17758,32678,34629,26582,60705,80401,19853,1871,6480,68599,96505,99165,62765,78514,13406,10231,8251,20273,90781,81693,76216,81273,27409,82754,49237,29615,24649,87791,58958,51911,27853,26805,82959,60118,57190,30311,66789,40322,10507,22304,65672,94389,47074,6078,23324,40015,31862,62697,44126,18509,53390,17422,74356,65653,81045,40720,3577,48489,92499,58841,12532,4046,45693,64405,20372,94594,59422,81071,77072,87142,12390,89053,33383,16682,87465,28011,44983,90666,56221,7607,96069,27182,99784,31160,40036,18425,74368,1445,20293,81996,65115,61741,46473,24945,72998,23437,98407,43325,91982,68242,45150,44794,18097,58920,94172,87036,98443,73799,76620,79971,91522,71219,81353,6568,20049,367,5567,62967,10900,41644,95287,12143,21808,12678,52186,24507,45999,34889,48385,32391,44142,59165,88519,67543,3873,86295,30529,46511,67467,46429,57209,92520,69098,8970,62879,70797,58340,35826,97263,81552,87636,71762,59313,11831,37638,72495,11793,68439,76080,97644,52005,61132,14378,59071,28067,41776,68288,82289,60028,493,60285,25475,34202,57958,90806,44246,60469,27834,19397,77680,73065,91417,36084,83114,46209,68612,65131,17067,16783,18268,27653,57189,6366,81516,85802,62505,87233,89314,86974,71600,85605,30133,87365,50541,41142,65066,45889,91414,1018,36054,68836,97494,33268,66366,18343,11598,65483,1132,35369,96868,93465,22362,61920,46633,19261,73660,50683,58699,56433,48697,70644,32171,31068,15449,59650,186,64629,50395,39652,73984,80984,24886,61934,6043,23599,74539,96017,97390,31086,37305,40110,79457,33832,36462,40916,81771,33379,1466,38581,86648,64743,34050,12257,60679,95861,93633,35077,84025,42937,4963,64109,26781,36679,49186,48232,25986,88601,19845,7338,87264,31419,34837,46783,90988,68028,31262,89504,40878,13618,87867,38926,23637,15625,15375,14961,60521,63386,1618,79712,3706,81436,77856,46659,57418,76926,64931,22408,84169,67627,18014,16189,76656,15741,18160,53614,23375,27404,23978,34093,64525,35323,43020,87224,18756,48648,78519,43768,53884,37633,21593,26651,75647,73990,97835,15435,38742,83651,84640,18801,79069,34376,85303,25596,94288,54659,59923,15306,78485,18477,35971,89329,59418,55888,89273,91312,2342,89243,73989,5013,50438,26659,33949,64956,63883,72026,7005,98477,98247,52453,48197,99904,80664,29151,33877,50499,27886,38639,72734,64640,77834,45234,11013,73100,68441,62852,45074,99326,28566,20378,65892,71913,55366,24403,23016,58161,93029,64562,83264,43461,9341,5790,86240,1612,15133,47512,33357,33056,82714,83611,24318,19010,94432,65657,1831,73240,11081,77483,32929,10789,19126,66617,45532,20664,50476,61936,36904,42408,11182,77588,7912,95837,44766,11727,28225,29160,83671,91407,34207,5026,94724,48949,97180,90980,5034,75507,12986,20117,6752,40927,2606,14651,15890,79974,96929,46976,61425,95213,24800,32340,19874,62435,74636,18426,38222,26737,57035,38143,44990,86444,52013,86746,64203,54436,76830,80383,32217,83209,15326,10445,63210,46266,4253,21828,42234,40132,58114,97565,81542,20910,65224,44011,43595,96491,54671,88358,30658,9016,46074,5825,76423,27790,9698,95639,24015,91670,32491,10316,50349,33109,77808,5377,80660,41336,60628,14680,70964,57470,66564,23040,21107,54962,39160,52130,26839,70085,88424,48686,18302,16865,93425,26569,75838,7322,12990,2190,3954,31317,1399,45840,19834,45321,31199,87244,73200,10324,70927,47568,45102,39855,34825,37758,30100,98591,82134,90792,52751,43010,10568,95327,31205,47171,88606,48058,46326,64709,18859,65745,69347,24161,23045,8337,90937,14346,38349,51889,1746,65708,32807,44322,22913,80058,14870,78123,52714,44236,10261,44835,88658,49531,10502,88523,42729,20163,75385,68824,88533,20852,44024,89665,13326,32767,15002,62326,3836,63132,97443,70168,50341,70575,57089,26982,66603,20845,24984,83384,61397,97689,38173,14737,19681,14844,88141,2502,93364,5894,11906,33389,10622,9346,99402,54220,79324,22959,41284,25987,43937,26241,2983,40932,21988,2634,23387,60805,73523,97003,59529,23455,81482,82650,39089,15587,79872,23374,97321,95883,6023,44182,20444,92545,57174,95782,68814,47356,68786,99575,74774,81664,8820,26,7343,64842,59744,89971,97712,71317,87726,47632,39210,70578,96674,59937,25964,49488,47057,17727,81977,88483,82529,96455,40295,88002,4302,12577,26221,9988,48301,39243,89913,69292,13712,90356,70517,12796,83886,58560,50303,87898,63702,59226,94073,79823,15034,59069,10971,74373,34003,52952,44521,20112,25328,15996,75720,50895,27807,30862,91866,52960,61030,7446,64225,7282,12585,19044,78653,89422,87932,45809,1905,60940,75989,13336,55802,33532,21075,43085,65419,96734,7729,25563,66412,48534,19366,25642,97374,20484,38004,56426,77884,82924,41457,78592,86507,21044,24367,16564,79899,26202,83193,1166,34595,22535,31579,80611,85581,54883,23244,83824,47888,9028,29118,77654,30175,78447,96378,82711,7325,33610,17802,96257,25488,78349,34014,96719,81078,53573,88754,26178,8832,44125,19115,61915,74819,6343,25921,45519,87775,64002,54443,77947,78268,77670,31697,63247,47991,75695,65481,6145,86778,87913,79018,30401,24077,69914,58640,47927,42202,36110,41838,10053,76536,63929,39129,89951,17427,4653,44938,85375,25038,50980,83763,96568,14007,66007,38584,7088,68940,36147,81537,56439,79375,91488,94011,34600,90303,42413,74586,73379,19214,24227,85130,22996,56634,40064,91496,63137,7224,22086,54683,91302,99573,38807,96696,43778,68590,26566,32817,54707,98790,30504,17531,55649,14204,91684,96474,80088,69089,25109,7084,19854,51374,164,93824,73430,23948,92942,52781,18084,99043,54550,94754,69127,8060,84551,21647,80240,65314,57982,98816,63360,80565,39842,94543,87366,99063,19309,71269,66075,72978,5102,30241,93165,47750,11886,9113,4344,12520,2846,73018,16599,13242,17781,5669,51702,71890,6912,79096,53374,86135,75098,56769,36013,66098,55612,23766,38313,56381,19703,61281,2768,43252,85754,16988,64097,60617,2750,77239,90692,79734,47930,88701,19657,98575,90928,42428,11918,13417,5978,81906,57490,44463,6535,14219,46960,77963,66193,701,79216,11909,73797,3744,15675,59725,9110,99579,41688,95317,19653,1609,76657,89719,84221,89455,65540,91526,64432,51412,8718,3352,35142,5499,81241,64422,87078,10309,46497,95222,72066,56480,52800,48211,49239,2578,87858,45397,93484,28533,68216,71789,86526,20050,90853,68753,41913,3583,76998,34928,47758,40747,49053,10510,61546,67217,9503,81512,94766,58916,18222,46811,98170,20440,28001,64699,22057,80349,87716,95841,11813,69589,20790,49147,25614,31193,25359,63704,14661,13126,37080,11848,22666,50369,17429,68444,59051,66442,67806,65114,78321,54044,22471,77505,25529,78414,59371,22968,85260,14730,35482,18789,48097,2229,77993,74191,9522,96907,12126,72123,85311,12920,16491,79512,84189,60633,72825,5312,52322,10390,85540,20499,11000,51987,12395,98877,50038,37911,9584,96667,13701,8217,49325,9902,16984,28208,40757,33679,90667,44379,97711,62451,57928,46487,85117,20922,50635,52155,10593,74520,32238,91494,40167,46764,49512,20707,98568,40430,67488,18128,88995,20000,39568,61073,39454,52226,14540,21986,19700,93297,83414,10819,93597,43114,23316,53115,69964,32679,85982,42201,79978,14078,85638,64487,13827,79276,38672,48299,87063,4,20798,37498,34673,33012,77624,87899,71814,1481,85143,25851,50524,54240,49869,37354,23317,88018,80859,24958,42761,77687,13018,6807,57865,70005,58993,16038,57000,58492,61576,50145,12426,12405,53633,18866,25994,16799,63487,18976,18634,97189,32364,94291,69343,91754,97273,51693,11702,78699,34934,2208,53019,89621,82933,92243,9335,60398,19400,64539,55558,54831,60898,20034,91289,20062,15690,65056,10093,67044,20721,73815,22247,61009,34984,85243,63389,86118,95809,89655,81508,17145,18490,11677,71439,31288,37159,48539,95870,85324,64517,92798,7847,61286,55901,83844,74233,77166,27627,99448,55741,51557,21931,29087,880,27429,73581,6165,84980,53106,57706,24633,71255,6407,57400,56965,92668,86007,5045,39301,85247,30118,45,52481,11741,85669,90944,79576,75295,11103,25671,30880,39909,4766,60207,92230,31596,79614,71859,16139,55849,74332,36681,89481,47000,80739,11820,83225,9877,97807,38997,45516,50858,30255,42652,86687,12601,69922,69325,29491,49402,46535,48077,76698,61304,57975,73987,54461,87557,19106,4982,40302,87869,77378,29234,49751,67855,97052,86708,96770,22038,81154,44981,91777,62166,78307,19482,7215,51692,37262,57704,76472,39428,52655,29308,91190,42543,4783,3256,15076,68300,13411,9496,23660,16521,85538,77513,74798,67139,5321,19088,92678,93199,46672,81721,37788,92473,38005,30053,37417,8030,57863,99792,10086,99601,15220,47859,44049,35683,6403,12743,55411,39461,78734,2521,98932,79171,18747,79977,8046,33303,55620,44221,70199,975,24682,84179,43667,68229,32741,17654,62902,48599,95066,24314,70617,58136,51227,76523,91041,92362,92170,15531,97327,90351,83436,86379,69236,98479,89213,55068,6667,85899,58648,23830,14004,89231,63575,69299,82339,34389,2971,41930,85534,90832,2495,10051,6819,53123,70418,90628,49650,66923,72157,21727,79409,50892,15953,73916,1473,77126,36488,71749,97422,20519,19992,87637,43755,4811,19187,32114,31472,60787,13662,64399,40051,46430,70940,2528,7618,59112,66487,64848,24445,75825,34143,43321,72688,66596,52192,36131,17589,91740,74577,94765,18178,62395,38223,83668,96181,58661,30681,18346,5137,97340,29394,69512,48962,54724,24383,27124,46782,98468,43666,44069,49930,51510,89853,2580,77238,6214,44399,67777,97582,96807,61906,8336,5626,69510,55317,37688,13792,11484,69690,83589,8855,10610,98922,91626,26604,84766,85667,65298,96971,17622,53491,59425,90251,70915,95005,16185,57013,41748,88449,20135,45861,96845,28193,43385,83388,21067,41673,69274,33080,58197,65129,95122,73603,271,21043,79239,90765,57611,24976,77847,45380,64951,46893,39561,88213,71832,2903,5469,61615,74257,35413,67982,12336,87293,74544,88142,70811,86724,66367,9974,88883,75567,73042,98626,46080,81742,4574,45684,59298,47553,26633,45855,11239,63084,30559,55676,42059,36291,70629,50778,31844,51316,20502,46777,45619,30414,79983,45469,8204,5328,16758,30468,245,73310,31968,48825,97062,38486,62128,92634,8649,11745,95475,80704,66780,83706,33187,16508,82505,29644,7323,54244,67009,6931,24814,67942,19325,26292,40886,30942,98545,34235,11990,8514,7580,84999,82705,42634,33264,78296,16537,12150,66456,69622,83402,36785,36879,60311,98965,75779,97798,71017,20215,70779,31804,56062,48802,93442,79359,15075,91498,31152,65332,53934,97210,38593,68882,5650,53730,1695,51139,66801,73628,31740,66248,54280,27071,92219,27836,42899,95595,2173,21750,12364,87219,89162,4692,78006,63744,8026,81586,45346,56124,85335,86880,56519,56819,78319,52083,57722,19391,2273,42161,18174,99902,34440,25415,55712,58385,29966,91420,94666,32919,55105,50626,54273,11451,38343,532,33935,77518,35246,55322,23321,58084,18430,6336,41217,24402,24823,84360,91559,92214,33361,37887,73756,17923,41995,69819,36341,19841,17013,79767,86479,87441,10703,74843,5418,92552,90641,32669,8136,91343,26352,51750,69092,81263,75238,5283,15473,42582,70340,44144,3998,85043,62496,34438,10477,23617,20126,95285,34484,67963,64987,61630,60492,14342,68051,34858,13180,69495,73141,89134,64719,66467,37826,61654,6498,61819,68904,92496,19909,87335,50545,1851,40316,77730,68665,9344,19830,43384,35395,66915,24954,6192,38661,4028,43911,30830,7992,62873,52596,49956,20944,6218,40700,33740,5992,27004,87886,69442,47539,22422,54917,18463,59789,11356,68284,63601,56268,16431,5043,10059,66316,43174,3420,61200,52485,75085,76959,85974,470,88515,97460,46681,82419,78642,18826,31738,69731,73830,2533,76665,80026,15750,62542,52583,94538,92879,82766,3788,44118,97960,29735,58153,57799,92005,78610,15406,78148,91216,14083,1554,22744,25869,39478,65077,3728,49939,18455,74005,81476,39616,85737,12274,64317,45334,28307,60199,85762,86810,77486,39457,56040,45338,65425,72667,74184,11610,87916,47555,76734,81605,17364,92223,22829,47666,26053,10799,17585,53847,37315,30870,3385,57617,96681,46304,24380,44736,88162,12620,14269,70637,62276,31386,29336,38898,32715,52175,65196,46105,37331,87076,27706,48971,99668,3149,88049,6095,83416,2056,3,3226,2807,36126,22997,26218,21048,75631,12956,80847,58800,99565,66091,73771,18492,8365,911,6960,52860,41398,21985,92836,70844,13174,59468,21357,95996,19695,63638,65361,79811,5201,89569,3697,46934,2717,67034,32780,29245,56744,29456,33948,71249,83230,47864,70627,65962,44804,18131,2617,29313,14454,43524,79439,12043,1633,38390,15285,5809,20509,83534,85119,67922,69172,16745,40701,79264,77512,82463,64910,51715,89030,2675,73082,79830,96554,98427,6561,18501,55446,24169,95592,49479,51249,87721,6303,7236,92793,4385,31093,25163,27566,5199,74430,28631,42055,63673,24598,86775,76659,89344,54247,89056,32837,73580,910,59356,93467,72168,69933,97622,40159,16325,93258,84325,61441,2055,13091,57939,21595,59100,77054,6072,4848,45147,74172,85969,57423,42172,56850,42922,60866,62262,98846,88269,20155,65961,66500,80465,47086,41593,16963,46586,10532,6219,27933,67547,9891,52910,12925,95275,28027,23327,17479,34173,40035,23517,38539,95556,41242,67425,91934,81312,12051,90232,21557,2035,99831,55502,30526,89079,2137,25164,37214,92397,4149,41608,72501,76431,10980,85685,39908,47858,48033,73704,81757,55786,35880,14534,74885,32301,64266,4297,70017,62800,71529,81854,96613,8093,76591,39421,4061,50190,76712,5996,34933,76597,52704,29540,80928,508,22054,99442,5169,97674,49242,92840,29422,70565,8496,40049,15310,7868,28454,8552,81079,80023,95589,75596,85172,78538,29919,59271,53731,54367,61742,23038,44895,1084,59928,30442,30593,68240,10552,98533,85387,32299,88304,30971,13989,52240,62047,89797,18356,6785,19363,82082,19846,66141,46039,28487,83792,9549,95026,74882,98184,65976,74760,99371,78868,86763,79470,99302,72235,76927,50644,11735,92208,7163,67361,8668,40791,63043,99663,32065,29906,22307,46193,22419,27342,95235,59430,21086,10320,34409,12320,29918,57033,38983,83505,21033,49895,29357,71688,79455,36795,28127,77461,63859,86986,77567,80950,9656,20139,81186,777,60931,62760,67501,92249,61579,69709,34879,26738,61911,39960,44898,723,9819,12730,23309,81466,61533,53182,72403,19850,64701,33790,3711,47219,7926,33649,53763,56200,84707,17398,38608,56924,95878,12754,6231,25878,53644,22725,56086,28390,94116,47719,29808,60840,4272,50581,80609,65733,3892,94326,88989,27775,17667,81475,6703,91936,77217,118,21077,58324,31351,71518,42704,84304,87272,68908,94844,8194,38517,21410,87194,8915,66824,37620,79848,83215,58848,32822,80689,55354,6888,33611,99685,44345,97671,18979,23214,22269,71143,75617,32598,22926,40949,46409,66397,56627,69403,81579,4246,25162,36000,9915,64453,16116,61564,27648,6851,33213,90685,29158,60235,20546,1372,48199,91002,37079,74792,34470,68906,22540,68301,91198,32948,62236,76711,94785,44674,40205,62688,62190,86326,9084,5734,14838,8501,96379,52077,1741,77927,73337,69094,7454,83196,70955,83771,3402,69692,18517,79736,61455,83625,98586,90145,17681,56156,37038,54827,20366,57550,37635,67945,15288,2681,92248,85929,65240,41232,64822,31449,23589,76428,505,58915,86095,71343,16264,36545,22032,69575,80168,45411,24628,75065,4959,70216,88731,18485,18413,84175,80624,58768,82081,52478,55798,86794,8699,79483,14436,26312,62819,58190,64860,33515,17208,5663,87191,10625,8304,94861,27603,16403,3999,49170,13915,113,80483,29334,68086,98467,40027,87553,90257,64498,26638,98893,88393,33393,13229,11122,90250,43014,65869,86705,76074,5266,23855,98692,14675,5325,6030,35894,87313,34266,45216,90837,10107,89133,35268,44626,8288,70817,948,97362,88327,33322,76812,93239,55309,84721,3105,65469,28673,77788,34691,82945,12462,47404,81715,39070,51118,30560,15232,45577,41468,89371,4595,89000,50172,36983,10402,93250,45473,87386,46051,72401,22166,41725,40976,26075,17181,63824,75355,30424,21349,89130,51880,62274,81140,53720,27068,25761,1053,54649,69940,53169,56612,75340,77031,44369,1864,48729,52813,36487,41008,15049,11699,37316,74791,98254,28476,93582,5334,26291,73647,49123,51930,71894,31408,96277,92267,36541,77167,81736,93152,82397,21220,24816,28465,26654,90874,70739,31056,8101,29468,27912,27763,96120,68571,14383,36364,51402,77104,7930,43402,23902,80620,96469,45704,40726,69862,91348,34080,23099,20851,47863,43002,86475,34664,64491,87946,63895,46296,59834,21575,71230,58355,45871,15132,679,92617,80883,18157,4830,50168,71548,86817,74492,8483,2429,4995,80973,13147,59093,11759,55423,45659,64212,87418,12587,13265,99670,94697,35450,7161,83912,95915,85922,85513,11943,23338,75623,24543,11234,17473,78005,29873,88560,18915,94912,44597,77872,86395,14738,49855,39214,83956,75760,56690,30851,59044,28040,30389,14759,15536,25634,40198,50532,98611,14710,36968,48517,66440,3635,82997,73196,83440,65250,3693,30,46194,63540,71468,56587,24719,59310,67201,7320,97359,38398,22608,23153,93435,14513,50421,46070,18444,67183,9185,19527,83743,39486,61154,91018,56259,31671,15067,7856,80850,52110,22804,40954,45962,65090,71138,88630,84211,58311,58869,92575,55909,54548,87374,74069,74178,16546,26300,56903,15497,19209,41770,36001,69447,43958,63542,76618,23281,18655,22659,6454,17409,4341,4184,83224,88682,10902,83753,35784,82992,25494,49596,89372,8241,71426,99709,45603,2870,29748,74298,12030,53375,42583,50917,42974,31446,70015,7543,64360,48355,47228,49437,48838,99872,57845,23658,33021,42481,94668,67984,41927,24900,70856,86214,33110,81680,14642,53015,38640,55152,86903,31459,96029,34059,85879,32010,51798,22692,58637,60893,57290,2887,51691,56478,89468,63011,24750,10999,31381,35467,76706,38930,19191,5527,21218,26434,47940,12261,38850,51369,23063,41010,25684,90266,74406,95880,75249,12822,18007,14125,86764,24882,79242,79073,54071,70417,68621,9936,32304,81682,78595,48519,81038,23952,77516,56320,88311,5475,88042,61254,62357,86162,77300,33487,91700,16948,42581,51174,52746,663,33031,92967,95038,89362,47315,94186,77952,62851,56607,46031,84127,99132,87518,46858,45972,94505,31941,83056,16664,9515,15297,74299,71153,4051,71058,82604,18049,46170,49773,18585,63497,69915,58376,37066,34220,47934,87617,74730,55070,22178,64522,25199,52944,67920,74145,37512,14925,83393,6927,92117,11437,18659,32528,72832,86956,95935,15080,21324,29825,6844,50553,97717,20753,40963,32784,36616,11343,56570,36974,41119,39250,28168,5452,57285,1679,87411,34784,931,10551,55757,18169,63657,84413,14891,67954,42868,2937,41351,69987,93015,79224,75859,67896,55977,45542,89642,64861,40425,91844,26168,34208,98531,4258,38946,3970,39780,23359,74254,84107,36302,84054,48138,2781,12673,82330,69268,29714,51764,64923,84507,18521,43365,7422,71838,4518,49643,87683,2034,26263,13251,9117,44632,89228,84309,21021,82607,46489,38392,77443,4532,34941,92922,543,59118,99330,20603,80271,60272,59195,94030,43183,57855,86695,84091,11911,8994,16974,6981,82823,79684,40745,49365,44259,72662,68781,63729,65489,6934,40731,56192,39586,40290,29078,49393,86003,51624,67961,76950,31074,69088,12760,11100,9812,60378,96618,71560,52940,49516,26539,65780,82219,4931,88355,49374,14307,33485,16219,98721,43831,56700,439,74881,61187,80787,77053,49968,24821,83517,93353,84178,97270,21013,4365,87531,92287,46849,66826,94398,12805,60801,72354,30085,23028,17968,96047,35624,50932,93173,14787,89780,14399,66898,2158,95689,23806,26446,20523,94901,85539,11455,99432,38777,79237,24078,54192,71643,73176,39600,86282,34980,77364,81754,87425,48431,18936,84147,1370,45936,86744,36227,23406,45697,75142,2300,16593,75017,75028,59550,41000,43487,68043,26769,2506,51407,10149,17114,7974,48987,71425,72068,66552,74208,13444,84350,19231,77452,8163,34663,20380,79999,52267,45342,79099,95483,53453,4016,65632,12922,84517,98699,77163,42275,78113,33045,43945,22089,66727,76860,76655,32603,56401,41208,83632,85533,3671,44177,11712,87241,53747,53069,82818,59083,55531,54559,62309,36908,73903,4976,31978,58110,73020,13573,70333,80179,385,34871,69714,57687,282,71757,11382,94024,24407,49484,38243,39686,44229,99801,22681,55326,10498,49569,18143,46224,17668,50734,98856,10813,41184,58017,50025,44615,13160,84139,98064,62672,29326,68783,6617,45192,92873,36179,77402,307,33563,55523,6788,19513,58330,72032,89625,8976,59900,57959,66939,37957,97021,87187,12195,32334,27545,36881,79015,83304,43339,28295,16691,3643,49699,42665,95320,7522,65647,35455,19285,54123,98158,7010,21490,99585,55743,47778,73780,18296,94665,38066,14835,33771,91511,87351,92914,48052,94563,84174,90811,42977,40993,87836,88328,12733,49843,38536,72563,2277,6743,80612,5852,31678,74985,90538,99213,14397,65568,1872,37814,3330,36123,41256,84385,27347,95504,35548,24063,77115,41192,69722,71651,40177,70942,90210,92954,32814,86641,95945,32207,30517,35925,34632,50622,66981,13724,33916,9179,65909,87277,80898,6171,99686,42611,47192,3552,6396,73025,67948,2269,84361,94174,91039,88568,31721,58789,58857,98799,35057,83773,63482,80848,72017,31773,9861,98580,11266,43,83046,7363,26126,95094,38735,76348,45975,49732,27633,313,54440,37580,77100,89096,4131,75609,33952,21105,35609,63845,106,36918,26099,91533,9201,45401,91743,40453,18187,28642,78126,70601,68626,32332,47156,22002,79469,89596,45906,79154,90434,47796,23722,14100,60604,58824,67566,41154,22359,5019,76337,21698,33375,93371,32594,44525,52648,83243,49257,56394,475,99746,20110,22880,85287,59405,85473,66368,7540,4622,89284,43055,45467,11585,90511,65649,44939,95019,83263,55688,47756,72376,20719,55236,56432,54131,11083,78597,84849,38596,37138,22277,43998,39076,20195,68196,79226,57695,91430,24333,63413,55296,43760,97917,85018,14885,2923,27063,35818,56756,73911,23514,99896,16752,83640,2306,82509,55801,43202,21817,25810,95348,27075,86191,99456,6001,7043,79563,88987,25452,36943,15703,64787,92038,19805,84540,88286,32798,64156,44768,47534,75881,15535,69144,67623,8633,91654,41921,26032,33149,61972,17403,44175,50929,51437,53098,99678,59284,79070,17699,51253,45608,72953,76477,51574,11241,42416,61599,13540,3393,47011,63750,89180,52204,51072,1596,68913,26977,60365,26906,28807,12749,38163,68989,2575,40389,92354,22115,6669,29889,71461,83592,52380,968,65060,38900,14179,26939,20793,23121,55678,32865,31269,64722,30927,91091,43313,83278,46214,99508,38784,91876,1929,34209,94675,72537,49815,59509,77865,90491,2951,70825,96175,35503,75210,56753,74010,26642,30644,47899,91461,37251,92725,89618,39141,38372,35155,64642,61463,37455,5320,48166,78186,40583,19007,17761,6233,75447,713,13022,9003,96970,33371,51373,79580,57754,84289,82806,88132,55268,11328,50925,40658,6205,27844,12746,37700,87884,82507,71570,88252,47710,72489,51100,44860,87686,6054,92020,58193,40415,13432,95192,24361,75853,49103,38879,94514,57674,12119,31100,69397,99953,49081,46328,81896,95470,74013,85456,64658,29314,50180,35918,22511,129,69083,18650,60930,46146,14234,96577,69487,57106,50527,37335,15524,77959,96889,52160,7061,42881,80236,51463,79192,52537,86439,41354,1349,8068,82855,86276,29543,25462,32432,30095,96630,65973,88036,28667,7793,1181,43770,57342,17475,17109,71358,95638,32101,70212,24609,86559,41616,93384,80391,93147,94943,72002,73317,8807,77277,8044,8141,7801,95494,80035,30570,10563,37,34695,91823,78834,80946,83841,8611,76189,95914,12134,56146,17024,6094,97351,73803,68564,82087,92650,95853,60504,5485,37281,72556,71891,74553,72619,180,93901,39680,75553,73348,35584,9669,61250,43371,55092,91882,45656,58116,77336,65487,11910,95482,82286,16576,88223,49455,34028,40215,50911,90143,11740,64235,86403,94128,34754,22910,20342,93404,73401,87049,3132,8751,58569,86811,9132,819,6835,82675,3649,682,18145,76889,73937,63588,14635,88891,21350,94875,80012,72854,18741,63709,60130,78338,56746,60703,43616,73038,1360,89340,82581,90205,15582,25424,58239,89544,8780,56203,926,13097,8991,86762,70467,31511,79185,19031,15513,77732,57569,51362,58550,29602,16450,3458,11447,40725,47127,72025,76896,18088,64890,55433,71158,32291,78537,85749,12448,67006,48677,66994,14340,4885,88593,57412,57265,25302,5967,34525,17724,47646,68886,72570,38030,18900,14061,47712,74419,25858,14998,92903,21846,38299,54543,33087,70116,75349,40556,921,80470,25798,38401,8041,86783,98928,53236,65576,12742,95542,24469,14469,94530,92425,71654,25624,74438,76874,70071,86269,40249,83622,70244,22342,73552,98779,560,81445,45118,15918,83762,89001,26318,94713,17404,44286,91673,30072,81269,12886,1255,77080,53919,69330,18182,19610,70481,83063,48960,89601,13890,44649,27194,60652,88069,65175,12514,57436,20010,79168,85106,26161,69409,64697,14139,1484,845,62305,23886,64103,41527,95076,99341,73152,31845,78714,33750,53189,18745,33202,76187,77863,3516,17615,49029,28322,60891,51306,76088,28170,40188,87126,10013,71952,84682,25823,16802,68575,29928,19652,98040,94747,30720,11314,22595,14735,72981,54448,13426,21224,161,51300,92236,57318,87788,89388,50231,30798,90161,67925,28153,77286,43709,44185,14013,9432,25011,752,27099,37892,91001,97860,74671,26103,9334,68459,38626,91632,26462,1162,72658,41963,26689,18899,39928,19766,6610,39303,57971,88180,96699,90254,84266,11116,94260,45283,54369,92672,1024,70562,89891,17647,46595,73710,10211,9867,65942,43708,51638,11257,23433,19463,85495,57057,3748,11046,86144,90376,98987,20689,74264,2736,78175,60762,78277,16864,19713,14341,99151,6305,4190,32591,85433,33029,44469,1613,86996,87419,11361,37479,80749,18201,98020,60462,31139,46585,49805,18116,3585,70252,63307,16807,46863,74348,17162,62521,7613,31566,95313,90745,79438,23076,12254,74737,48975,54300,87608,40019,77263,72491,48849,1434,59539,41498,94938,24710,74982,73730,9792,44241,32221,95615,63322,47067,83775,56237,90290,6142,10070,70261,56761,37810,18139,92820,85298,27040,23155,35664,12531,77159,2741,62558,48771,95265,59936,48854,94109,93294,93355,78739,22572,74634,49863,36595,26441,15391,46718,13678,48561,17100,86360,19541,30576,12973,85125,52659,24036,32268,95196,85400,60567,22417,60317,78167,6393,54889,76544,84045,81138,48158,68173,78064,38598,82872,97073,15897,16719,19667,32306,68976,50832,18604,28609,66168,96247,53181,1183,13403,6017,88623,87909,18759,56179,11827,8626,40146,7213,77642,46690,5993,29601,72679,36608,50281,79858,9282,8838,38790,85082,83301,4142,35922,56152,44138,96999,66978,26080,10570,14005,84456,60594,98485,84392,87970,27253,61583,78000,32809,43990,48252,56455,76516,13690,77840,37581,47607,34303,44913,92559,22379,57725,91090,78772,40406,67445,25052,91191,27101,1061,84601,95559,80434,74550,44239,62287,32444,4029,13884,31783,36514,61489,21938,73445,82099,23262,42678,5918,64117,39603,2650,86462,41222,5598,50782,75708,22777,69544,63522,45782,31366,97235,74718,31639,58570,93451,7469,11137,99722,26236,74970,32401,51484,89737,37563,82076,69612,67765,84115,3477,63991,27787,68126,37546,29693,2402,42132,40744,82252,44481,36090,82300,37833,88154,9785,66888,70503,96242,66380,61783,95116,70727,58097,75878,73907,54285,12312,51808,4815,37822,64310,56708,33401,30398,65195,9473,47844,46645,17077,55498,21445,7433,28943,14873,61931,20404,9979,60637,90813,85941,47198,655,66897,52768,92145,9310,51156,81655,90092,2759,21290,3992,35103,60516,48510,51045,60610,89430,11559,58274,26831,61322,72015,24079,1847,47410,9928,77852,42644,58449,53192,94486,23173,38099,80766,65353,29174,78687,79735,47041,52114,15905,2518,92395,30580,88879,28146,4092,40950,48212,68337,80337,9650,78193,95857,88125,71190,42258,2967,86322,40961,46154,97447,63885,90591,97457,72231,77381,9625,50988,86616,5104,64758,78068,84080,39923,27945,89396,11113,61814,88405,60355,43854,14828,40671,86548,80761,9092,39114,79246,14711,85497,66881,39966,87080,12815,71685,78754,31277,70590,21981,31834,94870,83240,49667,71259,98196,14035,61483,64933,6693,32431,4565,22741,36346,73655,78536,1057,90612,71331,46334,74035,49430,86960,83160,6865,34975,61085,38131,69191,94889,39349,14410,53074,81565,90285,79571,17600,44777,35835,91393,66289,38805,26452,99517,22897,1403,41760,34524,22438,88910,31674,90470,2808,74364,15702,13550,33514,26506,33509,73434,80637,94345,73846,20006,20186,81119,95932,53097,73039,62646,55736,53247,38505,38211,2936,59097,61933,62552,9379,68027,11105,55591,45703,28677,42895,96664,30338,43253,77102,93831,14293,3797,77089,83915,7414,57134,5244,98193,82804,52487,18959,7498,25247,5934,28923,68552,36763,39074,29203,20092,62209,53651,37362,37536,1837,26880,34446,35707,19253,67828,54140,78909,36515,8570,48170,35801,77138,8100,55715,85768,93642,14457,94471,58696,80960,83881,95472,1112,98262,33588,87759,24926,26508,74528,94537,50322,40742,53340,4551,66742,92391,68915,76152,18807,7374,45748,70997,972,50921,46308,92009,10218,38427,5897,98818,86953,54000,41781,87152,41361,72422,43001,20548,82043,93399,12806,81033,78570,23424,13099,71387,88512,90588,72075,17700,20090,53195,26861,3894,740,25763,69847,9006,79256,42570,640,78911,73595,41290,3567,96902,24914,36333,64055,91566,70285,86573,91940,17042,99095,12255,93530,36128,68429,94550,57724,84367,3664,43611,62038,46331,67670,41900,89424,26335,21621,3424,4560,23257,90012,62199,96026,83520,40445,53447,37477,12605,16613,21455,47983,65385,39119,57671,78736,9516,91074,51620,40904,6200,82062,41099,2928,96161,36987,39159,66153,12292,32819,88507,75362,50882,64913,72872,59471,65456,36310,70369,77682,45061,57729,20647,98708,81274,79631,50730,3771,22548,29836,47877,70329,17783,24607,38371,5182,42520,2693,79649,36284,60495,99211,60357,20795,23968,73124,63727,33603,11761,55914,89449,24736,6304,57376,98307,78992,61796,49800,15680,15014,14834,66077,27712,15343,23089,41314,706,36243,3179,25783,86173,32869,94292,26243,26136,72301,47747,60523,30301,95824,65170,30835,44004,97907,34107,74202,1590,89677,3595,5641,27708,85229,34439,90918,53555,9822,27679,92519,58269,21841,86932,95335,38160,60329,55305,94086,93970,54528,46875,37267,52559,88649,66014,68184,41035,73017,23417,11567,79285,18964,19066,65704,47185,99992,90075,61460,74376,76341,96240,15655,42913,34566,26389,21207,89630,4969,78627,80005,9692,9106,19691,46807,74596,66187,96320,86438,81060,74427,17986,99231,49078,76489,47040,53819,62506,14334,59306,54587,57313,14456,63156,37738,51078,38047,71470,60923,29076,70893,78532,25745,8883,64295,29595,24069,95655,41223,74833,528,68560,41971,55756,77509,2938,52203,99383,68900,68943,68136,31636,61885,52321,42545,96390,40804,92381,19040,91692,46030,92934,3036,15650,24572,62814,25892,97399,96764,55889,46758,4719,93512,76490,56674,86104,9506,67683,38346,27019,32141,18914,12933,41609,67513,54948,73798,78697,96081,10774,72949,28583,42714,35673,59510,82124,73808,94394,78015,93742,65005,41133,27717,26666,55964,52597,17701,18243,46833,50184,62664,6537,49856,76329,23414,32913,66937,15684,12717,50203,97240,68211,76018,70653,54457,23650,38297,29929,4504,96152,55151,43209,88662,20180,18449,21869,36638,13832,20285,56392,22652,35648,63570,24366,39498,40844,9548,49222,19810,52605,48181,5720,22999,87389,48887,85471,29841,48884,52379,73791,69905,86617,78283,66345,98354,1899,76014,14639,72424,90757,27343,44798,6714,2397,69648,61251,17069,22197,51263,38445,39739,64647,36047,66229,49969,72286,6061,99372,52179,89648,51185,11223,41525,29359,26435,17047,24558,15633,2672,59098,24940,8746,61886,50907,82277,246,35938,32904,78292,24810,50763,73345,95795,6938,22787,22794,96124,36805,35850,55206,33385,51461,35867,31820,29594,15886,5368,12639,46325,27748,46798,82926,90260,95981,63426,84620,47869,73185,92998,68658,76145,4509,78883,51169,95840,97523,21617,45779,93626,36819,90785,54074,62565,63421,94327,93846,74736,17331,13389,81632,40487,3100,7429,66943,9749,26847,11917,68797,12060,74271,54983,56778,11271,11021,47498,20127,2141,33732,38760,35557,32430,9187,53083,79284,90917,89769,55962,75316,36848,44392,26348,34743,83689,89687,6887,69907,47735,64626,11890,42776,93559,42859,31921,64479,695,38465,68707,58092,75891,69046,84218,99674,18705,20374,64598,86881,14887,22722,30641,44916,13352,72359,85580,71028,56684,36160,36790,26068,31402,83672,82024,11603,14625,57867,37111,71472,52785,62809,89353,85910,34233,49349,87646,52176,98764,10169,63892,16084,46263,92274,42681,63906,54752,13300,67734,19608,44689,56516,91365,67369,19041,97252,78607,30794,15131,34848,55372,83805,63931,35481,21484,92551,86769,24068,35044,15615,95766,57321,23094,28145,47979,37716,87089,3846,14084,72309,83663,90478,58042,99090,30451,32474,62394,31757,79218,7765,14358,93924,51726,17218,61097,19428,9493,20891,47305,50675,24826,19794,69934,15454,56332,17485,9085,95114,61110,65384,74900,73892,54217,45655,11806,50413,32019,89395,31577,48540,73233,42116,34186,77489,26293,51971,7012,99729,65422,79687,42874,6916,66373,45418,25183,39731,60316,9782,78584,32061,85695,80985,99925,18250,45095,48775,68426,28456,12544,36215,74594,15122,67182,25207,5051,96519,61422,60313,31028,80186,1123,35631,9574,91779,78967,6748,37122,48416,33700,86013,63529,80098,97238,97981,10029,10280,70774,77878,74935,96073,51247,74246,54976,64108,65219,55037,85518,72194,66441,38212,43311,83341,30069,33673,36765,66213,48760,39877,34222,19395,56795,68598,51838,50468,49396,1432,47507,37876,45437,10298,17366,79837,13019,64369,56102,52217,38673,52310,12666,5927,16554,12406,12632,2840,52621,66822,21084,32159,8425,85730,33249,54151,12242,45091,52734,98852,95081,33280,50721,28904,20284,66589,39443,34607,69972,48709,93843,97016,71465,37474,71842,98102,23346,44421,69985,84621,74107,57677,13959,78082,61365,12568,80562,82632,27403,12171,90122,45606,98795,22133,71032,7120,80368,88048,24339,38006,20446,79273,48203,46128,2330,6034,53166,31209,71463,50962,34297,59250,85706,86380,12769,74134,19750,81656,8615,78889,6004,92726,52349,30761,18632,74400,8833,86879,44299,3272,61359,35240,2109,87410,77203,17921,19326,83421,98637,69309,53502,89118,50818,3579,18787,12771,25291,44574,56650,50511,3804,8513,70123,35574,86575,98405,60488,75375,98729,44512,75164,94151,87634,4340,49097,81041,21936,60655,5500,57947,58891,67113,20871,30849,81510,69580,33754,77331,11725,94411,52213,62861,70382,99276,20882,10120,74421,78633,4542,70050,2912,66867,60571,14271,2612,78369,43024,4310,51524,91534,63061,62469,9670,40924,67202,57076,23702,5253,92187,86329,18568,98423,45968,33822,72673,7131,83768,5617,74592,78965,91240,19847,7461,81911,18586,44129,98694,76157,43068,90953,69619,37291,77183,65312,55294,48348,43887,41991,89440,10182,17075,39975,36736,67379,5824,63067,34278,41112,72852,49779,48803,76605,81393,3708,98218,87016,45794,45300,66405,31420,60466,15252,82250,93994,86592,6593,33857,26061,31175,92654,55870,62316,69624,36312,84005,24645,65072,41063,53392,13503,78380,35046,89756,72484,42749,26739,41014,13011,48577,61486,63985,49075,20338,82474,4191,77869,56184,80844,4539,35741,7003,30352,63416,41485,73541,39929,10990,56430,41062,10216,36069,69200,77793,93747,71163,57565,81349,18519,97505,8291,76229,54894,57710,57310,41553,75508,74016,38540,24272,95641,27339,20399,90168,62740,27402,56116,61751,73343,5522,38399,38226,32087,86150,874,25972,61560,32963,78898,87567,92988,51967,49523,94504,74615,97949,94316,27212,30832,10651,48293,87047,98069,90902,97815,18985,93257,57748,28936,93929,73910,16101,75771,84756,94014,74315,19067,45544,343,69983,60845,64799,96080,12750,91150,11870,7858,50039,58229,64461,82121,98312,36792,44770,72246,30238,94974,99635,76381,18388,63886,48375,41407,18751,73538,14789,66675,93113,7230,96310,21133,65052,50954,52777,1663,39463,20253,55386,17440,32803,33309,40615,18061,68699,82542,41622,83333,38062,4012,96138,66839,94066,92541,24901,83329,17817,99752,8074,41558,26361,94279,41446,96949,60068,82525,90664,7848,82147,69185,77938,48649,28877,89221,16729,68215,52724,73159,25549,64199,35593,22895,42975,19808,19515,91078,78481,96395,78354,86833,8426,76230,29801,63494,27398,23241,90225,77842,81521,96758,659,52441,24197,58257,26486,88461,44216,35821,18977,96525,61661,29671,88426,44467,10932,84051,23505,47943,95096,83952,37643,24931,4326,61826,76866,65645,23320,70756,90804,28017,89694,28991,73227,5619,76538,28850,24706,80056,52822,81928,55751,22815,43527,38860,68384,61841,28908,73539,27563,38591,11679,15813,83064,68460,77285,88763,15085,45096,75616,77638,15301,44167,5603,145,49413,35496,34030,57853,14028,72406,91575,54385,11515,76298,91306,25508,84989,7021,50996,69750,68299,14417,50743,76034,37545,51713,64638,52749,7950,54242,85516,16586,45292,99554,86307,21328,70294,81157,95013,37373,24436,94558,19552,21876,92933,87278,66507,66136,16245,57012,31319,58072,71744,97651,37464,67674,97403,5172,68572,23464,61060,46845,96778,86663,23921,50941,46023,67476,5540,88105,80301,38225,46011,58207,64971,26853,45312,54723,61598,16327,39831,63966,61268,90481,23541,60381,29461,19609,54433,3079,24237,73902,96243,62428,31121,36340,64302,34838,91915,95452,90615,25594,98395,16331,99665,42559,40045,94818,43353,7216,67211,32960,78987,16583,34640,99906,95885,81050,55674,95065,42618,59784,66650,38158,99332,5359,60052,62389,68508,99181,72398,83362,24121,49577,32698,28604,82102,14174,75556,46205,77215,17418,58268,12386,16994,62208,43850,25793,33743,54042,82335,55142,16894,48111,87073,23353,60642,93489,74012,610,99695,1963,63530,15592,93062,38664,85435,92343,61992,20022,40393,93598,78641,71572,44285,52286,26204,32668,84276,80473,50411,54101,40953,94557,55987,23312,19807,65173,32270,67962,26540,74227,55103,87766,89774,78572,56485,81934,29907,47463,65281,94383,93202,11069,64085,58995,9292,54802,17752,89102,68462,72353,9673,40529,68960,31890,57576,13350,38203,93084,17073,36157,5108,1740,91000,58047,20961,34268,29267,55775,71497,2203,21672,89691,51533,25403,4908,21667,56538,46397,21093,87523,83247,74706,76111,63830,7753,94013,70149,26417,2545,64221,26696,89498,21772,44956,12038,93736,16776,53367,40609,79637,48391,64808,9262,91057,38208,62908,75976,58677,48617,64652,81490,77633,72232,19377,78001,66353,80129,42645,33526,74087,64107,82117,57849,10418,28955,54964,18199,5068,83273,50820,79819,17438,16173,77020,96396,90783,33301,62110,21275,27293,78679,37949,71504,8944,747,14051,85111,31041,15345,91660,8293,2835,89921,7052,82912,90032,85120,65564,14507,8804,94113,22226,49086,33925,69441,64395,87924,41652,37256,81939,97771,1503,13602,83291,10449,13615,46640,67089,70081,93357,59996,34085,33123,62041,41541,49816,41159,22851,23220,43671,88743,89682,20150,20080,79792,45251,81807,2682,80530,66225,13987,18074,28149,63913,99235,90966,93772,49985,19411,57364,751,43941,51296,41912,69988,55155,31656,33164,12545,25434,46316,81523,13514,2008,19018,64548,50526,91397,11542,92383,3696,66689,92747,4979,4862,12020,71141,36516,32098,91576,49637,98774,31424,52200,59575,90163,47472,36666,86253,82703,8803,72048,33454,45551,74638,35166,9919,30945,44023,46155,25732,6791,35976,63275,58241,44310,71823,63941,14932,83658,6085,6021,53984,6933,9415,76566,16748,71991,63088,69160,39794,54866,766,41473,70920,9494,69427,9377,65777,95805,58183,72911,72092,86352,45449,61940,81467,19021,74073,68048,49928,76103,16437,60720,52565,52575,17177,77198,87435,99951,18792,83435,25105,76167,21766,10689,60520,55489,77697,53821,13340,96005,76786,97743,98937,36132,26867,19887,35026,54922,95274,77471,13457,95900,65791,71072,6080,98549,74333,55495,40565,53245,15569,54482,10064,79781,4910,56180,5180,57651,20008,2253,94366,32612,99975,381,82239,58567,23120,47279,81151,68623,8429,36662,12287,79328,42908,25747,37001,25373,43892,82837,72542,84642,15591,66852,21374,86361,47261,984,21268,61215,14085,75413,58764,73671,81974,39105,45702,81822,61393,3066,79746,12349,32392,25254,2970,252,21942,86913,68424,10054,17762,26688,27710,30028,28104,27395,82824,76875,15398,94720,81964,10982,84772,80779,89031,59818,11864,61798,11120,39829,41134,84541,51572,29968,13370,35756,9121,68197,1924,98909,34690,20670,18027,24848,99948,92024,75136,28944,75861,7764,91059,22567,7990,61496,95672,1763,92995,66918,5780,85781,6877,84506,71875,51318,36695,7851,75453,73108,81311,19437,69058,43348,38110,68664,64303,25683,52696,18080,59736,84149,4768,89629,56408,23883,29405,74548,21379,85894,23468,72941,87473,27957,96013,4600,38496,97067,84807,84268,72321,87945,49024,9832,55510,60874,94866,3279,84256,82016,77669,41366,25068,77407,68581,14180,68411,12778,62397,8362,92348,33211,39098,21231,90347,17582,47982,85025,95898,3303,20920,2297,43480,46378,24568,60089,79136,40048,46763,86765,96446,70683,16301,37299,42209,14869,64725,44075,25518,196,13003,88470,71769,67951,38905,93627,43392,96911,99045,22154,50936,31080,18937,96916,87804,46231,71466,16349,68038,58545,75740,21104,83859,98820,9794,9063,76696,54750,99050,63998,72835,9461,5433,73610,50610,79745,8264,5536,75091,43234,91950,55012,8606,24849,50217,55770,58007,32921,41289,3899,3922,38490,98347,86129,62463,74871,87827,85180,13145,97502,77125,8199,27827,12069,1303,30296,71750,25400,20286,56154,69383,46317,76208,4975,95282,6974,51919,42027,61813,9044,61966,85385,30303,96564,47973,95028,83686,60109,81725,25514,15715,10186,9129,94585,43528,394,64449,40362,42824,47288,52941,64402,48491,49018,99834,14283,94494,5384,17245,7943,24867,24179,36244,27446,3232,65434,93576,69117,39847,77173,58246,58919,1672,31557,74185,52208,92679,98768,82465,87606,58734,57461,34498,10468,35419,27274,74644,58823,88905,67037,815,42246,26590,11829,31096,88728,29232,18481,71175,96501,4843,92911,15967,33292,87914,30383,16723,89255,20513,12962,82180,73265,47740,99727,16058,34149,78108,28234,67249,88408,89309,79473,45952,25149,78856,92564,29286,28162,50032,8550,71220,56042,81706,86498,30532,47100,99081,99946,71434,29507,86467,7313,6907,14695,37930,96762,8576,65906,16133,49783,12842,3542,23123,9284,50425,179,36807,42608,15342,8453,67398,39630,50417,75048,61782,68307,73429,95863,18472,76389,97695,85347,58683,9300,85192,75130,57892,56028,54094,36440,16856,51230,1894,62737,87263,44635,13880,27949,21814,21369,37505,1710,86385,91158,14332,53286,4696,14662,22005,51393,66026,67989,29237,71911,44036,62511,54767,37867,21503,11710,71457,16177,49341,70406,92367,16735,14569,89536,49583,27216,26111,27419,9817,91862,70593,24305,2411,73028,3469,53376,95252,30803,69115,90846,42309,48319,92164,80478,64831,66929,79472,46421,37832,42252,8830,47422,81755,8889,97630,71379,55108,74931,43267,40864,70826,75342,41607,47908,14663,82665,39698,9173,59709,72770,20041,33391,22167,30793,10152,89910,25056,45009,61670,19671,24851,46343,4437,78941,68468,54911,2847,45354,72601,31603,93415,50780,90910,35981,86170,60939,20617,83459,85498,35712,24189,92858,39184,81704,79995,40619,32691,26119,58705,84830,17980,61067,44012,89856,11700,53028,55273,4583,9390,97368,55442,45967,5908,96426,58534,97011,97218,60641,46204,7472,92877,22290,73380,32766,65875,20998,40941,27802,80085,20727,30569,79040,72442,61171,87298,74149,14404,87197,72984,55030,31914,818,89688,51603,74876,35685,18908,34364,22955,84709,61638,51928,20264,7162,44064,89917,19724,61628,47312,90578,15424,9635,30640,11962,10485,67694,97138,9638,53131,81786,49092,53197,71984,13658,71922,58403,8405,85710,15472,86914,29122,17979,65713,17430,29792,8354,16896,50382,20385,89161,79569,44944,74958,36776,50223,56100,53898,95241,65993,71698,68645,74645,79272,18822,54564,94582,92421,36842,19611,35071,45630,44578,97145,15721,88680,19558,59970,55815,21345,16131,9114,52348,50995,64830,75037,28753,72644,87228,81915,50248,39255,67207,45459,38901,38669,75595,10920,90490,82903,76366,77111,21583,86962,98652,81473,35948,1824,19213,2130,45077,69762,23777,88028,74267,35050,86760,74169,31433,27183,2964,38744,66798,83254,21718,21023,78394,86298,64965,2948,70873,62516,14282,38454,34651,16555,94378,48009,42577,68501,91727,46355,90952,70840,94488,66207,76388,92119,16971,20588,52033,3889,44855,99625,34894,75901,67159,39179,61905,69124,45660,8022,6374,10466,34192,35543,35039,44486,46033,85776,44556,3228,40817,23726,19297,80924,23532,33446,67310,20705,29083,5105,72466,79520,41270,62202,37439,37937,68516,91113,59786,60515,72732,84803,95393,61660,68373,59958,33399,44332,18123,67247,31645,42483,51171,55760,24124,39422,52728,33943,90983,10068,65377,28360,12309,6349,23097,45101,80531,66719,34105,5691,50637,44687,17515,1404,99243,5491,54815,88761,30819,92495,83374,72664,54319,68277,13925,77279,75735,29696,50834,92607,64416,12081,37210,77210,98044,52817,22995,34738,18960,28799,53758,85428,83262,45139,21485,6724,99086,8865,47406,95600,23466,12950,16311,9761,67199,87067,60847,50063,69539,60684,87624,66220,34338,41919,50115,78759,97522,92286,46520,63228,84969,5037,35097,16737,87235,34232,7013,50423,35998,54995,46270,22505,98211,35436,46552,65310,51322,16585,52055,36920,80878,26641,61414,45740,52789,17553,85856,31813,58962,87937,38864,52422,48265,70044,23456,43377,19403,78804,99351,30232,31311,96563,76414,9745,94158,98314,13346,65259,5315,92313,5811,81252,35838,84718,347,78166,74205,56463,86714,37351,69250,5789,14871,21549,94580,24378,40228,83596,11587,69138,5810,77226,51755,44941,78406,15796,26519,21425,60209,52482,42210,80740,75966,13040,72567,38662,29654,87701,36077,6476,21929,24304,68693,4794,88158,54434,63847,10441,71091,30196,40034,46791,13532,66494,87529,57177,90164,85989,12480,89933,95316,34398,67727,82936,204,67428,74956,8143,88504,31810,48388,55201,34552,35253,41266,89611,89554,27357,70751,76177,48398,47296,12036,91898,90477,96900,64267,12660,48934,16592,39782,50682,7298,77623,67530,23561,22795,9070,20955,49924,77563,65563,18590,60783,21612,43795,11066,17827,21301,49646,85724,80636,14245,69920,26617,53685,893,22127,50439,9724,70735,14817,66103,55861,20131,78762,48783,63973,99567,89336,12006,39713,10292,88098,82802,88380,99207,710,29902,95553,90226,99931,8781,51351,72317,21016,36030,92104,40835,38051,29299,43347,26072,13726,98975,69395,40845,32763,40767,20221,28237,73249,33574,84239,46935,3024,27758,67261,90241,72786,56270,85859,97472,25219,8133,44422,38520,21627,32107,95048,24348,99058,83261,39696,78342,47685,36982,12107,57834,93406,19301,79151,78824,16429,42468,32078,14990,14133,61724,45722,76072,5709,41684,42280,53460,88267,99487,62352,94603,30801,28182,24739,75429,67990,33405,68076,41034,40781,11632,35197,19871,98554,43694,78585,72699,1174,29050,26382,90568,92502,63812,31321,72131,97232,90642,49211,78838,21584,35797,58769,73868,2382,97527,12894,23986,36422,94480,96653,15461,69042,88733,10488,77120,61973,80795,12727,21135,52154,88911,94278,13500,35917,78749,91640,65952,92111,8907,7106,85576,10599,26828,97685,68737,38192,94037,1631,24120,41967,61449,41264,81727,83817,8518,27745,59941,30016,80524,42844,96685,56068,12106,78451,38218,93327,88768,36281,85885,77035,45316,13128,32593,11075,7636,10362,38252,51133,70596,40722,1928,21240,53538,83045,17192,9702,28956,65278,22763,78418,54483,6929,54141,16305,67879,24241,64896,83565,11448,60065,55323,4941,94360,88330,7465,54651,12646,40828,828,73326,914,23291,19069,57682,50297,47925,90931,87057,73395,44214,98697,28946,25081,48337,65927,52103,74803,23516,48527,24429,19502,1069,17755,15460,66872,77130,49609,9538,97448,98837,90678,89590,78482,48654,53404,72150,71368,80659,40713,99100,42144,5781,45072,37903,97923,35980,32168,80294,96020,99308,18496,97516,22368,88159,87421,44560,5122,41023,40060,24866,59261,60561,52588,92880,57191,39025,88576,26615,59972,80104,88974,68340,81006,70076,98971,72766,80777,65032,20084,5795,46095,53357,51649,57329,46838,6830,31323,56959,88577,66721,62739,37041,98168,19975,96146,11350,50588,30968,43924,68140,28387,88031,13521,17807,73311,55187,3645,89928,46962,48184,94812,58509,95528,38191,45509,16814,66059,44197,71433,28696,46257,36491,72394,69980,75822,72959,1548,24753,12875,86203,80009,28309,87738,81122,51950,17131,51548,13969,68700,25481,41092,78829,77936,66530,94880,52936,33657,80309,85536,47545,90595,55895,48797,83750,19426,10870,92240,68551,37495,69491,3373,48763,39047,97548,82054,54165,83858,52304,45545,93048,10243,55633,97930,69586,74578,29256,96435,88148,78688,45140,91764,49802,21116,57812,32352,38831,95246,34471,42889,99241,3157,27932,26818,57595,10293,89820,98913,43154,80371,74442,59553,88537,30736,70963,91345,95251,25937,13380,88335,49811,22619,42388,60114,13451,33921,57135,76346,39409,71912,21071,34708,67338,15602,38722,25460,86660,48329,79385,37420,5149,83295,30503,74460,87621,60091,3946,30376,29291,22500,81291,69082,58745,90915,18203,24156,68249,97510,23073,37988,45082,67413,87295,34305,48526,41977,42733,18144,87833,11781,18806,27136,49660,38645,2546,89187,73972,10141,14127,48484,49056,88624,25394,15616,31612,75282,66502,59832,48876,55967,87662,74573,3657,86952,67436,29726,68890,48447,5904,57752,66401,90396,78348,44909,70092,54540,51228,34328,32344,51525,11327,94487,50434,54454,74759,97452,85030,45743,80835,61092,26430,33968,64770,40455,76973,19413,18075,27755,60222,45536,83729,39245,95735,10742,39979,55245,11333,263,2384,44976,97599,53338,6206,69204,54390,37303,57056,17029,25419,35887,4795,75911,65200,14453,6383,18917,84114,5658,64665,87132,7195,71310,56830,52793,99148,15299,21400,16377,84406,51372,89258,84469,22904,79399,57314,56149,90542,39941,36216,81532,90543,77028,5804,9453,40452,90080,39430,24857,53071,32237,32258,80855,76934,36641,2664,85073,83774,29985,14615,77235,67628,47846,7259,99450,90614,96071,83345,18421,1853,63674,21462,72314,87402,30099,26716,95352,43438,80919,30020,29033,89029,55643,76475,44550,50359,77376,27335,323,73758,11940,3669,19883,85184,57966,51181,71486,45829,82362,3622,4250,46944,53673,8779,27378,72561,32696,30906,56094,40534,89591,30577,64131,1215,88307,40140,34915,70172,28361,3564,37046,30242,25799,20481,83274,2996,96936,49715,44929,18892,12685,40748,82477,69903,31294,4833,87379,95009,30951,24542,72027,1047,71335,19943,42290,15293,97915,84651,72383,35274,19019,2955,32984,22803,56568,86965,21850,31473,75688,17370,24067,45451,74952,78211,2763,43775,64490,80382,43618,67367,64003,7109,62768,68349,65210,85210,1060,80925,8890,54088,12301,73219,62722,45624,55397,54471,54546,38627,22534,86011,30714,70323,52631,84216,1204,86805,96717,15849,49216,74147,37796,35288,42136,55053,43864,50017,58724,68948,61955,51150,54905,71128,80007,59909,39124,77756,71550,27138,91729,73999,50630,53070,29903,70316,26156,86174,67713,79236,48906,54701,16786,65118,43493,44884,88494,26403,65268,185,84701,456,8529,54055,81477,14890,70863,49000,79604,33448,63211,19288,41989,26570,7634,61072,34821,99859,95305,67539,44222,73117,43579,83448,61858,4426,94139,83026,36687,12964,21824,15821,1030,49696,364,61490,88029,19939,96326,26836,5492,88788,49884,23039,97125,87478,10252,59029,4279,24902,48943,61077,27449,65172,46447,49693,16275,2576,89170,9130,38376,57282,49373,15901,32174,73061,22636,69049,92996,67996,44572,37807,46684,90838,9893,66673,36072,60662,37481,23611,54387,35844,98294,45069,28383,56442,78728,32978,56525,99991,86968,94639,92069,5060,94082,59255,30986,76555,69573,49521,66656,95115,74793,74018,23365,33969,72335,45822,98539,77224,53765,32818,64632,11346,64851,14345,67270,49208,67446,95722,88693,49137,14322,54281,48022,17185,18352,20969,57080,35427,13153,62222,42255,92252,28809,2611,25322,66376,96497,29215,88899,42459,75333,58293,50905,30212,14066,39104,28721,5147,79691,15825,67130,52670,28263,54924,82489,12419,48982,87145,74446,64290,93606,44577,65181,38726,76525,88781,94482,84534,30261,81994,51157,72186,61861,30752,70630,2144,95997,276,52878,15294,30071,2505,50,69372,61582,32360,25838,35200,20304,1197,84284,47628,48328,41115,38114,9361,25203,18872,41059,79133,77436,41356,3306,23284,2059,50943,58894,39406,65336,56719,52990,70946,32182,13512,75562,99839,72950,93570,64381,61946,77015,92130,46187,40704,32525,73372,35238,83970,85862,84794,53532,50010,56681,41711,41801,68541,26971,3793,20319,47282,99706,92266,45302,62824,59272,5052,24557,57003,92056,683,2949,37959,86434,66128,50005,21880,56279,70728,83135,65644,67714,76062,29231,78209,33079,90069,93856,2814,76458,17152,62393,54322,28324,44287,94728,57561,25331,12121,69958,52467,62486,45611,99414,26685,22599,9532,15537,77982,40026,75618,31824,48944,80273,47434,38320,91747,57085,74357,48202,32778,40191,85049,21488,3511,37744,28311,72708,59282,67194,65949,32000,49028,12300,58453,28634,28527,78708,1335,24110,62487,42135,85013,9687,38524,69736,37120,17259,61408,63333,81492,58898,62112,6448,20607,86402,61797,83591,29435,10919,50727,52902,86342,65402,31621,20423,46745,2510,74040,31554,60414,54172,7094,86972,94586,19997,86293,11904,2927,38323,85278,59878,78956,7897,85296,36062,75185,45868,91718,59582,61605,27626,14266,50896,53053,70965,57354,26129,40622,86175,63106,70891,13866,50719,56581,98726,63348,31714,51198,58374,87584,72211,94150,50803,2641,84404,52032,94335,48957,44224,4918,6193,79774,17334,4687,69978,87729,54497,36363,43955,88610,39528,28291,44782,23111,75395,30788,55767,94127,5003,73460,41699,13635,61223,78991,61718,75870,91058,93898,70165,93528,18313,46310,79859,77249,8630,47760,6083,42361,70872,57145,88959,16467,5683,76624,33052,6452,14744,48922,8955,97984,60292,58096,98495,51516,28739,26951,94241,31960,87748,48193,77990,45241,10260,10803,20527,57813,40270,47186,22480,32369,47745,46977,84669,55614,249,98712,81674,96232,83626,29401,63654,84228,83223,41268,82127,4750,79474,43704,48511,16382,95512,90587,42489,80667,15790,17975,9962,32367,87135,60517,97533,18012,52360,83424,60302,32792,59203,11485,7376,36701,52448,39392,6122,38835,20346,84751,98349,21791,38059,80376,54653,56348,10430,81175,18146,30922,49406,45450,78484,78285,49224,8202,50573,70155,89529,76042,13548,65241,98152,75974,68183,93591,25377,56737,7107,7536,2305,5678,41911,5327,55597,6227,48480,51913,95382,33047,61640,37560,21326,43235,90752,23256,4638,80447,11057,28440,74733,8431,99344,68391,56139,56524,4727,71511,20044,31233,82739,43128,93822,32445,77659,96774,78255,59453,84777,6781,71778,4897,63640,41714,51907,59372,58504,92293,32883,31850,51180,12627,20449,5337,2726,23788,81602,70147,94959,74987,72079,74574,3661,67786,77294,98728,99085,38154,95676,83847,596,58713,78460,11347,27976,6025,37237,42216,37322,48689,16667,25716,95343,92610,45266,16065,25371,87345,98012,25110,55353,14415,15385,60932,95095,12153,51745,24474,20138,90683,4421,36035,64391,10822,57911,37719,43985,9414,80938,9622,31726,29017,21705,29962,19896,3658,35230,69187,80791,6176,73037,53942,71009,15747,20842,8179,64178,11915,80320,97355,82853,88210,89384,73383,34795,19827,59472,49127,81787,81643,95466,47872,3588,13000,56675,77406,64071,94742,20963,46876,86494,32842,94757,73052,729,27907,2820,38344,72997,76520,29197,61681,59434,31706,578,98049,58593,606,74365,38704,44890,19586,37647,22431,28303,23982,81801,54417,1131,16326,65829,2782,23061,53048,4591,90575,77116,14027,15096,57378,97283,70971,7432,53443,8602,55652,84222,71097,21422,56794,29530,61340,36065,71423,6978,45686,88116,88549,18266,40705,76299,86686,7906,20384,85065,72608,48059,22446,30357,96294,3324,31427,14257,45060,35860,28676,69916,997,51701,49626,99313,9357,77354,19293,85501,15583,76265,13956,2733,85575,25238,63017,51573,57699,94672,59188,34828,93031,31526,88353,33120,24420,20826,53210,78866,11836,23719,5953,29984,331,49962,27499,37948,6065,78994,65997,97859,74292,53345,7485,83099,33093,83885,2249,35303,38405,63265,20893,8458,76266,76174,641,89117,77366,14067,59632,7751,94769,20669,73543,5676,91346,61047,15696,23370,49726,16485,68730,36197,50512,76437,63125,98942,45929,19562,30453,13846,44119,49034,89014,95250,66158,18,18173,32206,67027,82758,61643,6333,57279,58368,45323,92201,21000,1043,43996,1881,8254,31969,78865,43004,68247,19132,76318,24603,45094,6434,7111,75790,51519,84689,98009,6514,33004,36214,65103,81048,43869,9338,14884,52097,67114,45796,50394,83382,34682,78445,85822,50218,90824,12214,78907,6478,37709,67147,33647,58759,17620,71356,33009,10597,88497,42858,88193,91715,57789,58063,55897,73648,86078,27751,34171,80904,8286,3160,91633,79710,35378,42060,79998,7080,23115,26505,14631,7396,5308,81783,34390,17033,17813,80537,95682,73698,80693,19145,87334,35459,41619,65593,63568,5863,6008,49175,46297,97029,64870,44127,31091,27581,8506,5089,91109,42262,8708,97488,15685,81866,2289,75149,38331,51324,49978,39342,4389,24869,19410,49366,43466,78841,94110,95340,27715,52975,78864,20749,15529,39785,95024,73096,39886,42839,79796,91543,32032,91425,2598,64891,6864,40551,30436,20016,35964,58681,62656,89824,80072,2341,45970,40116,89898,98954,65064,76193,81137,91773,60739,65878,20841,5358,44390,2879,91338,97761,29769,32373,27371,75620,60168,24527,79459,23071,57669,79901,20698,75546,56622,4841,97343,79046,46574,21026,59530,74467,73447,25979,71585,27218,7173,94595,49603,3492,6315,40925,34416,94489,97337,22983,60376,64684,24721,79188,54256,3758,32774,27655,80155,67550,39175,83618,14105,55904,71117,78452,57874,65797,86147,15455,34716,10553,34810,94250,58704,36926,55903,612,18134,88721,55750,53549,8332,45314,8876,99724,40805,1920,88220,89860,71845,28831,57585,12994,10047,25318,50320,5966,89705,53694,68821,91714,55548,28968,62080,24957,43341,4300,97220,37340,94051,50077,93330,69700,76449,70125,19591,43987,17253,94877,22461,46920,50358,46792,57139,23970,87768,87320,34323,18019,44805,31623,68514,51130,57794,95845,65037,93119,65584,86280,54953,39501,14195,79747,72253,39529,11109,93615,15646,43665,6306,63807,6166,25866,64801,30176,85284,57262,19968,45877,84774,5408,44570,62841,95525,17914,3033,24503,66261,14725,74690,91666,31753,58259,41331,2371,40755,3411,86843,73462,82207,13951,1745,45488,92302,69561,19621,25074,22814,52980,96292,54303,91845,28280,20412,81694,98617,93010,54476,26199,70150,27771,98270,77006,81870,44540,92666,55220,3821,58226,58604,83660,4394,63597,60050,9231,92849,69365,73750,92574,82430,9874,43678,30587,38950,30634,22163,30766,76911,34441,97163,74814,35005,93709,1652,96910,63018,94177,8470,52934,13562,95871,65711,84500,57913,76963,31582,54233,68909,52938,51742,37648,39229,56151,53473,39902,19870,89874,74412,5219,58398,57955,39101,3818,29283,78247,80102,96749,30679,98766,41436,33112,52212,36088,22782,75381,93792,41732,22353,73392,33101,51589,96492,44752,22979,47664,74562,71372,75047,51696,1209,21388,23200,1770,37724,58572,33226,11246,96515,12152,68161,55808,34950,78052,58425,17710,4315,75372,16260,56440,77439,14969,91760,18087,50433,92262,89712,52671,64693,63872,15954,29344,51652,44120,3681,27014,59964,43747,39418,54893,92529,53552,81889,22295,73198,76606,13566,90939,90708,991,37437,34891,92506,84589,80668,2742,17542,41241,65577,27554,69169,97266,56749,73739,94141,77062,89802,77131,24297,96692,9568,59373,67598,84853,56378,45810,58968,46083,94255,28256,81317,68995,22586,61556,33923,86067,61878,20985,40312,32140,17337,92839,20248,22357,41859,54731,31869,41522,23131,40571,80798,77810,34119,4314,67324,3133,63298,8927,87912,85795,92218,88874,32910,19570,95767,12333,86465,59103,76627,40165,18878,71069,18880,33117,27533,28814,70463,64641,81457,41329,32111,74019,7068,30784,3808,75379,63028,50428,33976,84934,50053,19225,81300,37084,72565,86958,37100,14770,36648,63661,22125,30568,55539,28023,86920,28339,50862,41557,90099,6959,71756,97195,91548,80778,5127,70983,10440,80965,42279,75923,31109,76789,47570,5843,57303,99860,59352,76377,32191,87232,97111,78767,74088,48161,68673,58009,71314,22890,81323,51497,93438,81898,36014,23203,96965,27424,93333,17147,97325,14490,68876,25139,50893,35191,22034,21978,95169,21952,27172,16239,10512,85886,28626,78346,41234,35575,17467,13175,81841,16104,2331,97001,30229,4045,63488,66082,41909,24049,28341,36994,54160,40071,10281,35343,74458,17891,83967,78831,69021,59046,29356,89069,7599,34797,26485,11354,13248,2954,95698,84647,76013,70758,94246,40227,7627,10743,48110,88945,56231,81076,5250,55238,27361,17952,31066,10898,31934,93995,65232,41618,44869,20581,5577,81564,53597,79579,22743,42044,50799,97440,99019,80830,38943,50983,36951,64901,44677,17967,92563,86455,54039,23548,5443,95342,37353,78351,70305,12139,7495,27125,74587,53576,2769,53352,72119,39945,68638,2400,23863,83276,90147,74286,14182,85568,76418,76599,18720,97716,57749,56010,64608,65595,48108,3959,45881,11305,20965,26339,82704,16152,19065,30005,47109,91392,72498,77242,18409,86638,94397,91772,44082,93852,82838,86171,78055,59350,36823,22513,68467,11681,52325,11691,98235,28305,20940,25385,93823,85526,79883,9910,63879,604,97217,87123,13901,33081,27926,23166,64079,57194,24697,77191,87115,55128,69499,73359,36677,15627,7027,76731,62520,51256,28810,31245,67897,89592,49,43471,60473,87017,34591,40436,76200,89004,14654,83024,75304,98781,92386,20839,15735,74483,93339,92406,49181,65355,89799,17212,48786,57305,85252,21408,67412,31122,617,98552,78988,80590,72860,53779,97070,63299,83652,59545,71285,60886,15596,938,57179,1598,74453,29578,54098,86235,89837,56575,25330,12641,55408,98633,60094,18895,83919,89515,75575,80022,47947,8642,47856,26289,93209,43749,74036,74155,6545,85014,81616,72440,81242,14649,4793,17766,13463,93288,16433,29683,63055,62704,33580,2838,12278,55705,44808,80408,26146,27024,85848,11402,53825,93902,74026,98210,21811,34252,18939,10097,56594,51894,15878,38886,83857,34228,4185,16125,71270,34720,16932,62532,33986,81375,6939,87888,53077,6455,99885,69858,38314,59463,60306,44904,94850,70747,93262,76452,93890,53546,13879,88967,20805,139,22433,93768,39725,93808,32389,50838,58348,95334,84441,77004,88932,15812,35519,44827,64906,15305,69281,70603,5139,26171,63205,52923,15471,43050,95101,19130,77347,2858,71202,83765,59664,24024,72783,99893,33235,8874,14528,79763,23368,62612,3214,74258,76007,86644,92447,6739,18337,68080,80646,61789,54002,20249,28762,47196,86838,85838,21470,73452,22264,95962,81524,99754,36685,36924,23577,24965,39163,39619,35545,23753,58107,41385,13125,8949,27970,21892,20401,73677,43233,93887,89943,95298,19165,62432,21502,98809,72073,92456,61678,67492,16012,54521,21654,87704,91280,56390,17838,77766,23853,66047,58957,76703,15930,97658,83069,36878,67145,83288,62762,40182,9763,74699,96622,32046,15217,80756,37905,94788,14197,2821,26279,94616,22720,54106,44484,38426,45425,43138,24680,23062,79189,21773,5297,48409,29704,30707,96003,39917,97072,97721,85246,31265,37258,89300,96921,96979,93977,48438,65104,90302,67083,5427,99984,53004,98657,62242,92280,28975,64414,84521,46098,213,49534,19684,70985,22861,46090,58528,51246,39789,29971,52591,53031,48537,26201,19889,17780,65045,62628,57739,79739,18237,39152,70972,40237,58356,41168,66349,51895,65986,28165,61758,39661,78990,60981,83574,65709,73932,8162,45945,16512,1790,85494,28617,68416,93992,71765,41569,17139,94008,5303,99538,69065,51904,79006,44000,78441,77745,70641,43309,17597,4293,39176,82284,93332,13231,52373,72462,57502,28808,80057,11649,3355,62569,65838,93588,58444,90129,39162,88233,64167,72340,3993,33271,2648,3321,40540,22403,88093,75614,83985,73786,15189,25489,86712,45979,30267,64220,27804,42532,494,63755,52429,98115,94237,23634,9912,19382,40281,32417,67902,74764,54346,39783,24344,15030,53185,60138,16877,6041,15042,74907,77804,52718,76518,84781,42997,45433,43791,41465,30502,7771,71824,41020,26217,26829,65818,82747,35921,31202,92000,25886,48371,17734,21015,20896,98306,36194,11769,96019,88865,80439,76611,85790,84995,46426,58428,37794,43106,21153,55856,74847,69181,68885,6584,67640,13610,31764,28464,48114,45106,63811,73340,45732,33269,39447,89534,84447,28697,63440,28835,55924,54013,22070,78830,25785,43057,77216,11279,36150,35426,86546,57980,19058,64772,69377,78290,52476,59007,67162,6691,80887,66661,771,8785,20324,43323,32505,83430,51669,56104,979,28142,37701,46169,34502,98859,33507,12248,4670,37204,8049,82224,7178,77611,1398,14602,26387,8275,1964,78660,67265,8058,22756,64947,67809,15356,44048,46666,26248,76787,48719,45571,84084,84319,94916,88996,61168,1316,61580,52999,59767,72072,18616,35793,35156,41088,32840,81732,82863,85914,87274,46271,87959,20624,56626,51295,30838,29795,88128,45443,51684,94431,39359,41324,59708,86642,67912,48029,55357,78172,56310,32294,52439,26962,51010,527,22508,67523,37250,86367,17951,39651,60795,17424,3282,31014,3344,63983,4838,37646,783,90941,48530,58253,17446,7579,36335,93074,57646,62502,97580,84187,61990,8334,49367,12661,33247,61034,29470,57769,46121,45481,64883,70883,99038,80853,10604,13281,53977,62195,55307,15480,99829,60524,17871,23913,83376,29329,84575,86357,24547,50647,98441,20619,13204,65765,30553,66954,46561,20469,13132,80103,78252,83484,1566,16803,54739,69108,12527,96112,64352,96480,45339,21468,40394,84631,3083,24038,33403,47107,51795,15330,20482,3216,58750,2148,94140,897,54513,18259,15787,85075,88354,85988,30437,20472,38962,70991,1086,55921,10812,207,56851,85772,89027,54614,4605,65545,80527,68841,25983,43447,4082,28425,68318,63391,53255,44465,94046,87254,66684,6107,18563,92866,20815,44357,77911,21313,42627,24359,59865,76727,389,35471,54742,56945,15937,44764,28806,35546,65732,53620,19960,25446,21091,64721,21047,27272,36427,44567,64738,5438,89679,55371,10091,73880,48333,51138,99455,60150,50034,91273,81025,1885,33942,25905,61184,86561,64543,68686,99744,81778,56186,61357,71216,62064,67370,58224,94281,73056,33702,15055,56482,8616,8016,30251,47400,29352,99897,54619,34704,73985,24443,57338,12579,71474,39316,98246,49850,71874,23400,16636,54728,15037,51172,3252,7265,31114,13869,96598,68201,24689,87024,29361,98339,99760,44530,75858,97764,3442,87453,16390,8006,72395,58490,19900,24730,18215,91404,41011,37705,26347,79465,93485,75199,7008,20525,61095,10864,50384,62008,9170,28226,27524,15006,6886,39404,47573,45762,76924,90886,86296,13586,45163,24266,15754,28152,91763,34676,81799,58703,90623,88388,82594,46410,55622,15253,84274,28157,70454,81247,37112,55290,99560,72362,9615,26137,26180,91182,33490,94636,3616,25948,55640,16771,73575,50680,76488,33911,71108,51565,45293,36989,8008,4887,14390,41928,38135,87763,91100,50952,56994,25930,56373,95598,69617,66955,83994,68738,28758,13014,86283,69404,34399,50324,71406,17850,72132,20005,71333,8682,28069,89345,66614,60053,70180,67781,91104,16612,48217,35177,50624,88958,96110,30628,62539,63760,64121,30695,94017,64881,96478,46594,55013,43027,7353,15104,4742,62734,45719,37352,49557,46220,35722,23487,71862,60913,52504,17826,18443,45448,60751,27714,169,77424,58043,40849,59410,96437,8956,84735,82428,27228,67234,76416,62235,50867,66752,78159,26746,40444,9304,72568,64780,50699,58620,68401,99497,85170,49697,69239,23274,60631,53667,76446,93139,43199,61876,98198,18943,37081,89674,47051,73690,20247,94282,85641,20470,13032,72731,99186,55122,2803,51759,21390,38738,3945,32465,29885,88490,8339,14261,19717,54365,76946,88156,75322,69623,36190,67178,67728,20906,1509,34371,67572,22214,62005,7991,60330,53971,32050,72616,80182,96947,22934,90895,23758,16675,89983,52347,83039,37527,45543,53738,86999,18533,34789,71074,62410,41451,71242,42066,43556,56759,64116,90731,65169,74138,6946,35089,25801,22945,92179,41764,41694,83245,60528,73399,15158,12094,44925,59946,7626,13589,9855,74556,46939,76317,62401,13538,11629,62246,12850,15018,49940,10576,3826,65012,76819,65641,33953,75668,21315,79354,7873,27203,11425,41206,20794,84243,83813,96409,98772,91319,30193,81947,93109,42030,48487,17676,20471,16979,4578,45576,14116,73779,8403,3326,11265,38355,30294,63400,94832,11605,2011,16255,79158,44500,48450,68593,92660,72763,82001,65692,75235,49598,70311,43096,44601,35853,94652,31583,7966,12628,97597,9610,28893,81380,13274,43593,18195,30625,6775,51827,41942,1025,44343,16846,22355,22095,53657,61501,43912,30350,9083,56095,83735,98136,34021,68945,93385,78408,11779,88164,99333,70449,3448,6612,11795,54368,60453,3070,48773,85918,10701,65907,23247,17880,13072,83477,84259,97696,6081,23562,80619,92930,54970,43315,28619,71782,55361,8054,91092,4136,84881,16130,5033,40785,473,29053,90617,1699,64299,82907,684,56365,5498,91463,24473,52580,44041,69453,5769,88473,45016,20261,65896,52927,12725,65343,38723,4417,59690,72532,91634,19518,3286,44659,23979,20602,93227,30103,41883,91422,86887,36607,99088,1175,5450,84553,21352,12308,35523,46909,65243,31657,405,36162,17231,57831,77272,80897,31735,47060,7022,95749,18898,19584,19719,58464,56443,73266,70052,57582,30207,21028,95330,16103,33064,80070,36813,39952,37584,38769,75293,32209,65616,11023,19035,89288,69352,60279,83506,24219,33128,37008,38604,19946,49412,59322,42294,44002,13912,11840,50583,32016,63658,38787,33008,59748,86975,22053,92579,31588,33834,21310,13167,84338,35691,16470,13875,43540,25959,47667,4832,4121,79532,35695,38301,353,94428,67218,33168,64326,6915,29911,65851,70346,90687,30140,64823,67292,64143,7272,59803,27839,42737,44367,30811,87246,77655,26695,65418,6321,9965,2882,47245,7908,44517,82950,23546,91252,57909,14673,6159,90352,88300,31274,65081,62785,30748,91509,23666,12251,25271,63692,30742,33173,75478,80752,7603,43574,30297,47313,14277,7273,54769,34418,44397,55691,88074,99756,30240,62275,33248,9737,98705,7361,42364,56271,18529,66333,79456,66384,65220,62182,84930,82036,30480,41742,74967,39942,8700,34067,91649,10031,19245,45250,5931,62823,60185,54403,57767,99513,44206,79137,88477,89350,90312,95129,41583,73608,18876,59561,74166,26141,33274,42706,29824,42194,57654,9759,98516,7610,95826,36830,5812,22874,37878,56693,95208,3695,59765,63753,59504,52650,5822,84158,84815,11631,26122,71000,62472,42744,3965,45478,98351,64202,19384,92258,7968,65980,61488,15153,99604,62324,35642,39328,95177,46000,42515,89139,12379,22762,31501,61695,96628,93517,51132,88847,74103,40112,67024,73015,49248,18458,73151,2642,85256,7984,45444,63405,94549,69658,51772,35102,77304,23018,89786,52872,59232,55550,88271,33014,47317,36189,53580,95688,4491,73328,24143,3784,43512,593,56606,25978,54814,41045,42345,40330,52287,67679,56457,31594,18657,70860,82380,7541,51618,88925,77246,95075,67157,23160,68096,34702,81647,36044,50724,21322,85128,84811,50048,90962,97078,46229,44386,88823,10660,84913,7688,35033,48812,78613,76161,99400,64095,13922,62438,51959,68283,35839,94407,24150,71705,7935,43716,40512,71213,97370,93361,61967,47046,1241,35153,99646,24612,55189,19086,34001,30531,82345,80743,99042,1216,48147,68296,26639,84234,51085,89617,64066,63215,95164,89232,30561,23635,99704,69280,56498,48245,77197,45156,10929,30208,37394,9472,59003,91503,50599,11683,69422,15275,39484,30542,65028,60477,68721,13772,70326,52509,78411,84262,96585,14923,87895,37626,99407,65971,45948,45695,3566,47145,22496,84165,23481,91307,18686,49375,70993,74976,22600,65107,13841,56274,20814,86521,61226,91955,17220,7750,20504,26364,57420,61740,88224,18868,23326,16471,97525,34219,44660,35861,77149,73000,58633,66735,89491,51288,52342,82790,76683,12444,45601,82784,86537,29951,6014,48454,88061,53176,78409,92979,55920,32461,59219,11,84430,64260,55532,73221,60872,28524,50565,1450,5493,75558,76928,598,71734,46661,18067,93745,53351,62060,25500,81986,6908,56497,25916,53214,55414,2049,89741,90189,93796,38789,36241,72596,74119,85643,81948,39684,29600,31856,93203,51623,40161,2725,22147,12491,86075,61890,93242,27861,7598,79538,93794,89250,81073,33705,95183,59307,35514,78931,79672,85618,4335,65991,64751,32197,69434,69234,67286,84207,13593,94677,34553,69786,3602,92532,8164,86212,9319,92584,85688,10157,7490,25471,62144,45398,68376,67698,9552,37526,58121,82901,60615,96075,52463,25234,13416,6902,90594,20272,87685,69162,11633,37734,79120,21202,17818,95484,45303,43358,95067,55957,26679,89626,62329,25925,15945,58103,85756,97819,27812,42151,21702,85214,82523,1345,4244,49176,4443,69143,73559,71935,70573,89433,63695,56864,77164,56512,55223,22774,65212,1115,17325,90906,48678,42772,7836,23958,85486,20430,60862,10046,32478,56464,4010,3310,63454,42635,19389,83654,19361,18120,8378,96334,48935,50712,94944,5509,89634,12101,98744,64013,77320,16910,32137,14431,37753,99291,27254,59444,12694,77207,40062,92616,4849,61228,58987,75496,61164,61345,62763,86492,46702,32497,3187,54310,41817,3871,90088,5844,63595,40080,99375,62889,19680,47561,3930,47118,68702,85720,5969,27689,4009,41842,92955,83539,65794,93387,53574,80874,6759,31416,86314,13112,67675,49641,81758,56273,69484,76969,20837,82177,8664,57570,75578,42550,57658,66454,55975,88057,61535,1158,99098,47035,88581,87799,58138,15009,66238,55143,28287,13342,60002,13101,82613,74334,49013,29815,41564,94584,68105,46503,76992,59810,66140,4952,62271,77695,57741,38629,9154,61431,23343,9826,58169,66365,15720,14101,37273,64827,52740,54095,82007,97613,89439,99809,11648,54740,34069,14131,13515,98,41829,94655,32620,66448,12125,53493,29155,8811,11488,75248,5502,78844,2390,62107,72897,64879,14603,15609,84675,52786,70491,79488,43840,60553,47492,71811,53400,94519,10714,94694,3773,52079,95079,77672,51520,77831,55983,57942,33373,61020,51161,41771,92404,56021,96423,25306,63339,52783,2709,78219,7558,29774,6620,93795,20735,35181,88296,47549,98648,13882,4810,41790,43915,27851,24840,66979,47177,44621,44016,61897,64759,33792,30307,29779,39712,5788,78547,72709,32202,31482,12512,15491,48853,98573,44672,72054,39579,61506,63566,41667,47882,10764,19676,57556,5087,92711,4105,35227,6522,82589,77798,74054,32816,48815,96417,55193,18456,14210,67353,79451,99257,56931,23906,72361,67677,58746,30973,48554,13972,50493,34142,16226,66169,20966,85067,57933,95349,33513,81282,84745,8301,40545,64633,91880,74157,87001,37970,36903,34816,12488,9233,52012,54466,67798,43455,83837,80158,61087,6177,51502,90500,70236,39057,69221,57922,51299,13728,42069,81772,78075,5985,3584,76530,51648,17230,37927,7557,66425,48846,26393,46401,3852,45930,42415,48231,2154,38043,78305,31092,66878,73277,1873,51868,19937,9235,6945,59979,39134,93249,48767,39347,98043,26450,33835,64393,29597,98425,87963,99657,3194,88129,3524,62179,53840,37811,66794,12926,83598,83944,37377,8959,56452,88670,82098,38434,39140,45960,52839,48226,37187,55986,95576,18079,7336,63435,37699,81660,67553,36906,62050,99974,67119,99591,44147,8077,68377,36660,29051,27028,54269,54896,90559,78391,86730,43343,43733,1860,3597,12437,53159,79922,12677,7315,67000,93870,34515,3195,40825,94727,9090,6909,8647,69764,47799,28993,86804,54237,14703,18957,97463,49778,35690,3870,71783,92137,32003,44184,10953,63896,44252,95738,56909,97574,59732,10387,86311,23931,21338,131,89190,20695,8993,77937,88814,15336,85149,66860,38096,53750,73125,65505,40324,73974,49629,58130,50627,39906,13960,24426,41766,174,1526,39366,41044,46925,65859,21358,88361,63997,3127,39251,41315,63539,34113,9750,11533,56546,9973,48501,73130,76900,72657,40553,84462,15869,52989,99160,48089,5055,55993,89914,71884,24132,94299,12584,15757,14226,44960,9169,2321,66623,5974,68950,90236,15364,60568,67228,54129,55956,12205,7392,88200,84634,34589,39369,31292,552,79588,97100,25906,19857,16029,12227,41447,21816,63471,70710,1117,42365,13979,6139,42979,10641,51110,62546,76438,76667,26070,3910,79499,87214,70999,89277,79429,61169,8707,31976,20605,12947,39190,26411,55373,26940,4625,4145,65152,27665,88931,8815,5548,84925,65360,8296,22221,51041,88785,39859,24451,46904,42360,65275,53636,17205,3984,67362,74810,75949,24661,28885,12821,47423,83607,37894,62131,18348,75222,58343,1065,38876,44033,85258,85979,62517,82435,89354,10191,26468,50912,55440,54994,87475,66180,3107,41201,69881,24953,88485,49507,40934,31435,36103,99553,2509,91589,4968,32298,86356,75794,52988,41881,21476,18379,81698,16857,9387,51960,39021,26764,5300,96847,56235,66463,33800,85107,6790,63954,71729,39267,14186,26985,15861,28741,90780,80982,88469,30106,44528,51031,80037,1100,30596,46313,27415,91375,75526,86231,29109,50759,44122,49758,27656,8984,89148,97030,40847,62667,27868,89093,98940,3723,62987,24181,46815,84539,39629,33456,29658,29264,60750,97965,47319,34988,10559,7484,7303,75978,42430,49611,45911,27784,67460,35549,28110,40250,21516,86688,9766,51349,7076,99472,69850,26791,24740,92485,2853,6299,35081,1649,78923,29167,25321,77122,51117,2987,54586,57985,47097,88978,46363,30102,78308,74686,81975,17556,5692,78912,72014,91173,80077,60319,28386,92708,5394,63489,88202,37861,82541,44702,42178,38675,9466,82010,34483,54856,24596,11818,11878,27591,21740,51344,91376,82672,88918,94094,83380,18894,39048,64953,18439,97571,66115,60203,13807,27306,88805,93975,19824,70193,21645,45993,98791,89136,60250,76878,74392,55999,47128,93524,63352,99621,65877,61104,4660,96353,52657,17299,45989,39053,3291,20106,90110,88050,81134,32054,5293,33789,32827,10621,41153,62269,98414,25737,24559,18649,78377,96750,10005,64960,30425,81321,69041,58858,98460,24225,82590,60728,80550,54492,35764,84488,54164,96639,88394,63478,87229,90334,59450,3287,16225,7085,90719,15733,12479,83229,30804,84358,21356,47774,16480,80066,49168,36174,36699,11184,87527,50968,64807,70277,67825,98964,46544,51233,56026,1854,53712,64977,41200,33243,57691,80661,95033,33665,75649,84067,93921,98667,7232,68922,65575,20591,91051,53221,77400,84563,92459,84109,96783,17736,19500,12402,10609,53278,82214,72007,59493,39628,3807,65229,73220,81185,3293,63580,62897,90078,62396,32906,50580,65153,5513,67769,56098,58527,43388,54890,859,35636,98752,78368,59383,70688,79542,26041,50981,77813,96166,28251,54275,65508,60609,52750,14720,93116,3727,34352,44382,10274,62699,21288,17194,84663,12563,18581,38247,48562,96561,27480,16798,44571,18685,80846,52401,89238,60032,9,86580,82502,12801,79879,96855,90563,79714,49759,90117,70980,6681,9667,7542,10855,30306,51456,7521,86761,15961,66655,30665,34073,36791,2891,6469,36419,32928,73378,35374,98304,24862,16956,75016,4526,8414,2435,55020,52757,34366,92661,915,71193,88352,58912,92554,11798,34727,46543,92129,37857,22994,80475,84683,68858,20116,94023,68124,81170,19995,61370,30582,93206,38488,13673,6005,61648,96506,26175,21140,47220,94674,17765,76602,319,95794,59270,65937,20820,99968,69557,43696,73622,68992,47121,15516,92633,62710,51690,43717,3408,50482,91923,5395,62859,59326,46309,33358,69157,22924,37532,87764,32633,61213,28866,56560,72239,67112,58128,32064,24165,96788,24269,43405,72480,40385,94899,93210,31925,34117,81879,11340,77446,11424,50072,33979,52673,65928,32053,24514,46531,1646,12197,81062,72084,72915,9531,88688,67877,30809,10584,56813,97055,96093,48681,46571,24105,30332,72302,40326,84029,72533,12752,75180,25725,11170,38780,84058,31250,10950,40239,77187,10369,12969,93193,12461,92790,78412,81853,61838,3866,20571,6316,34721,85206,18307,16852,55694,45763,95170,57296,25069,87423,89474,3147,12120,94301,73190,76008,34429,19456,65443,50330,12289,76569,81519,3296,11857,15510,6576,76098,79567,14777,13774,94622,4074,96510,26281,13565,65646,64336,82041,67061,61238,43631,53741,80614,88546,71638,24556,28824,20269,49083,43008,9647,82964,70122,88225,283,8795,9788,42739,47605,28730,38044,66606,87494,75809,13414,91374,72222,72427,63038,84009,9054,77012,53335,16017,696,1395,49286,77729,51748,56553,98438,69695,74874,82792,63850,37375,47437,35244,71393,68914,13905,19438,76643,47690,42593,63904,77444,86753,70881,60237,37522,98181,48096,28443,41516,75806,7112,78949,25909,22392,63070,4635,35010,64713,23680,46731,64815,10105,2563,28457,67568,23796,99527,61954,77155,2783,16937,16986,96942,93800,22501,79915,11149,24860,85116,3732,7001,10733,5178,91600,23684,731,7487,70857,84212,47168,52278,4282,14984,53918,71708,78189,74533,7197,14298,76358,58816,55719,39544,58396,60673,6509,30781,59458,24579,33439,4070,89492,49300,47767,98676,80892,93283,49894,48973,40506,44751,68237,83239,31332,43819,19144,36413,24511,40137,8238,57837,24587,39031,99705,8489,41367,21867,762,66649,24391,87679,90968,10452,93707,59090,10220,36366,58753,40812,58319,17870,82641,30068,19772,63129,28236,53542,43182,97247,59085,17644,11205,24870,66049,10993,97093,26093,73532,40931,78526,35857,16306,23440,62348,21018,87750,41083,11026,67718,73027,52699,2031,46096,71786,25428,75703,1289,8235,86406,13475,73929,53948,5757,20091,32933,98090,12790,89609,47162,14176,53505,32157,50147,78254,88991,50928,35133,52296,45662,79479,44451,94746,78786,81443,40478,48780,75583,8027,61691,40288,66449,61968,97994,55575,6096,23348,10246,21829,87315,24088,22430,26511,56995,38795,68928,9993,45617,65532,50632,2290,81767,5838,14482,76948,60978,57967,3051,62808,65902,11323,87141,8125,33995,97585,50563,46618,37614,26416,50383,28606,18247,83674,93708,91050,37239,10616,14242,79643,37092,73121,38379,37270,21417,79907,12463,28496,27796,90388,90891,19082,11374,76671,1064,3005,38551,88475,36067,87030,6160,79342,87058,36852,50239,40802,48882,15687,84166,7130,29366,90998,9000,20990,96830,18375,67349,45903,40857,49791,69766,59555,64983,83816,54112,69479,19916,64739,7693,33539,31462,90087,4052,56435,8237,77321,6028,92462,28340,3985,33875,80980,61434,83201,13104,33151,2918,62523,37654,32372,92794,33745,29001,15358,57878,5350,41862,39132,47526,5698,54191,51733,44727,58862,61726,13973,87373,92220,19458,60048,30827,77514,53700,6839,68600,98569,77318,87155,58539,40426,84302,89895,65442,71344,43478,96943,71938,14872,7999,15136,87508,33166,14857,70984,87296,48657,51219,72588,96234,84625,44150,85686,81149,9569,26856,60460,11896,25273,14606,29495,21203,74137,19592,30463,50453,98383,13494,3090,2026,41520,29720,42628,80069,33310,89438,27544,49313,39933,15563,39367,52613,57964,28089,45015,72637,92100,15155,47867,10032,73417,3799,8596,71226,37183,23332,14405,7044,41258,87310,45223,21682,96647,24029,69446,80214,31213,52011,58732,59613,81093,88705,27672,20051,38632,39891,3867,58635,34221,68579,64614,95270,70741,72162,39550,5494,33734,27652,27020,20243,1556,69523,48091,34852,55896,28233,69629,26656,57114,24801,51427,70246,79711,49680,10429,50844,39729,69468,97703,39001,38369,68244,36265,30302,76361,89044,80663,73228,37151,90094,76321,70468,91983,50374,8455,48176,46029,21999,74243,44551,17383,43578,40321,22020,78139,95509,72206,43043,62040,27943,61160,35254,76642,14837,1088,12102,50210,77144,74323,39669,31339,56742,3617,95082,62003,37642,77029,22975,15521,11558,50211,3976,48531,73087,70350,40342,12989,93643,41357,38503,72281,49121,96680,28304,61079,61021,79955,33502,37472,77389,53417,79215,190,6175,78347,6560,97356,47793,39423,61696,25405,58689,75272,62303,76737,23026,53164,26760,82538,90862,18907,97227,42764,94517,42522,62138,55451,69294,79857,33712,15874,32694,13422,72615,82272,57712,29963,15642,85819,96859,41006,79243,32163,98470,30285,11158,55487,44489,76085,92625,48127,88062,38237,84819,7441,54145,31229,3707,72018,84355,75851,82913,20266,61182,86800,61823,54108,59520,41037,55059,62085,16754,21706,79193,63089,77085,68425,40180,86106,73409,45844,68758,46638,27148,12795,58245,88694,54571,95228,47960,67730,64783,80312,29208,25915,68040,6375,12076,12209,7122,5833,66513,13630,41785,7804,93383,82256,2772,66885,57743,27703,61039,17937,41084,59743,83308,35307,28320,33433,82398,72160,84512,95804,9055,77262,47025,35259,29412,67435,23222,65191,8519,3765,80814,33325,15374,70049,41983,9033,52614,40855,29012,38612,28041,83449,38965,54449,27977,85887,29114,42349,27080,98363,2998,16253,36730,7029,40967,82388,69779,48888,96030,17800,5725,4480,53902,29052,67807,57087,19034,363,75013,95318,71172,11599,54733,17716,29424,8916,53323,54199,48512,4429,53296,41392,84535,22642,99477,70465,87480,47155,39989,99919,9323,79536,73675,91398,10583,71100,62958,81553,11303,25191,54353,59216,74471,58501,50515,14451,13930,67560,86068,67774,31835,57818,78471,82931,28729,52836,84225,67454,21370,15836,22957,95838,61554,28722,99177,20060,29905,83096,37760,86978,59194,94953,48631,10423,9195,44717,43354,59707,83703,20103,84513,65082,51173,4940,79116,95901,98630,19813,21977,3253,22753,81344,38365,30602,42941,23502,30168,65562,38193,1818,28082,78398,88309,61779,23997,15597,20418,78922,9643,83321,40797,29626,36787,63955,26952,16200,53049,11573,203,67991,61714,20450,75931,8808,34068,79428,3395,82592,93155,40473,62849,80763,72325,56733,56849,79041,60908,69360,96137,38498,56409,99775,65446,3962,89852,86979,90063,7570,77255,80218,35865,36751,2453,68177,3159,60108,53727,34884,52106,90446,82141,35281,58432,39465,46184,66856,16056,2020,61548,22530,49592,52215,53543,87461,20667,15577,35508,27988,99733,16254,59679,96789,85038,94440,57217,47396,68125,44350,27096,6365,56057,85251,41500,36682,48262,28074,19470,89111,71080,27225,70042,71656,94275,73646,11371,37497,99421,95934,39044,20311,49433,73308,6098,29284,10712,36613,56839,51114,941,76988,62034,15160,37139,68952,96890,54287,27276,50112,27215,25560,1744,27613,86040,8113,19978,85959,27055,20068,92210,34735,41535,45377,78009,95957,41414,1469,49136,89144,42118,18824,42073,82040,45257,72288,55637,16256,96687,31275,42303,38838,82885,41181,12040,68380,17163,11473,57833,75002,45083,39750,31328,79841,47275,87667,96694,278,50640,42405,84044,37569,60484,9871,18829,32252,73491,33387,98780,61343,13306,19029,69832,78901,53672,67846,3979,76235,68891,98385,82353,83186,23738,22515,11536,38286,10715,88909,309,74321,89857,69939,57820,76457,58206,93431,10837,63457,18909,85771,734,49387,14389,44077,4962,64022,2441,67520,85269,56787,98500,26326,49515,5100,71188,8816,8935,78023,77691,73957,27752,92105,73024,26518,9518,53558,79973,51670,41596,96102,65239,41792,18932,41794,45986,69918,53330,54493,80253,16082,71662,6362,34619,15401,43748,52244,29908,2075,81668,80190,57460,66137,3428,49728,96410,24861,82455,75325,40407,3193,76506,5431,57599,4259,19696,89736,75292,10957,61592,5559,90673,59169,82951,47056,93344,86530,2748,72718,61209,5391,63587,8208,82576,82785,85174,2689,43194,5920,44008,59448,56531,42780,65034,13715,53742,24683,42017,89745,47614,75464,97267,66541,39596,94518,28009,76766,46358,46069,59206,30959,48243,90467,18232,60700,82865,64488,31839,1344,17721,53112,22179,13419,35864,45647,95060,40852,81628,19121,84646,6984,53469,34237,49188,26420,61252,72365,32857,81556,84944,2715,35750,37298,25448,19409,52210,11634,35318,24183,21796,75524,86216,10806,99940,76843,34049,58996,9489,51187,91992,34077,33457,61680,73470,93735,82367,69738,69198,97408,96271,77999,57732,79870,15494,81684,55165,10537,48494,76788,86878,22658,37277,64661,90013,55211,85508,60051,50755,35655,974,97576,63586,21177,76082,58543,83550,7079,93167,60161,7934,63365,65092,43397,23335,47661,35591,58038,70457,852,47994,10161,29319,65899,16977,98029,63207,90582,7428,29295,30455,66571,80049,90675,66034,62884,94822,31423,59406,13714,41529,39154,46285,23149,65845,67391,86929,11378,60251,45183,61646,15594,37843,27256,42047,62295,89667,1336,82640,8073,49497,31889,69295,88383,4406,75935,59600,64099,70331,90882,1553,42083,61158,22099,61293,39336,57086,57896,31832,76897,71603,65848,18030,14015,66729,46820,79960,36446,40207,42037,56012,35774,40173,15740,92215,56052,98145,39925,88479,20792,49472,16159,62135,41975,81737,2317,42578,25548,243,87506,52616,4319,22451,79740,86031,35883,83787,28271,84684,43863,96874,38987,92151,89869,64249,85233,28470,24907,68512,53795,595,89052,46162,75701,39570,14697,74091,7790,75109,56772,38251,43066,55587,8276,27177,55401,32558,55785,1627,30545,69979,66736,39728,45022,80837,3348,42137,6325,66956,64469,71118,54998,27997,53524,33990,51653,76004,68925,54181,55221,96333,84987,29823,99352,26179,45706,54356,16313,23807,10702,48281,46381,50551,90206,13600,12323,27012,59157,87226,44190,51775,28516,20612,22698,94722,37597,62022,5632,40629,43610,23101,51766,27303,89903,14032,15086,2045,91197,78128,91371,40935,3455,69955,71411,65721,13551,65889,89427,71051,40493,85904,54249,77647,62693,67347,17821,41364,50154,15864,75577,34083,34878,16869,46768,23027,77219,7268,73727,49765,57008,93861,4947,21132,46354,616,36876,4740,54718,24128,55478,13428,49197,41798,38542,47902,58684,34254,4869,7039,74429,58902,56128,56395,4343,66913,17527,69051,76262,57096,31875,78419,72452,73008,26993,34863,75796,2738,92730,43669,51793,70370,9706,63962,73306,32935,93835,23938,95634,66167,44398,37961,39741,40456,98326,68768,51914,91701,69910,9938,76809,33922,10127,81981,90033,98804,83279,66069,90516,33713,80750,21673,32039,70114,36330,49312,11830,502,57826,89279,62585,45225,46217,66740,2171,65868,60349,15728,38783,90319,13381,13232,71723,8280,43454,13547,3884,1111,87140,8523,92358,34175,52939,37870,15477,27854,61159,3400,39125,10063,17672,63173,31986,72210,2328,20216,34435,30844,87107,81882,29493,6802,24630,91565,80913,60871,35937,89514,19046,63509,22423,54874,91599,2012,27767,32801,95624,32991,51917,68587,77308,11592,44742,11709,57779,71541,20982,52339,12124,77192,90557,27646,79291,98938,21119,60875,11247,27279,50762,73636,74787,80991,44957,89369,88766,33260,90526,80842,62205,87245,25710,29072,77094,2214,67741,13331,22914,28502,10800,90148,71125,12705,44110,43035,6364,24386,28129,30912,21859,99418,99795,81238,21103,10159,60289,60324,95974,17453,66909,15618,36350,53890,82593,7533,5413,13472,92365,96280,38906,9332,51152,11007,16795,39374,46946,21762,68257,28941,90565,32563,39375,75761,94704,3933,17811,55505,39271,32566,63080,26824,59892,40217,96261,85783,69213,83412,89831,29192,67366,48937,36314,95662,89711,23179,24531,2287,83460,37146,42350,22671,42918,70879,57237,99485,49146,37181,96616,42222,28188,99765,24493,15624,47208,94041,83317,70936,66938,8180,92413,18149,2647,21159,31440,24690,79761,95585,63097,36125,77821,38404,44061,18361,45682,81891,51966,95701,49970,16768,27848,32427,97756,50002,65030,40860,51044,88370,94048,90517,20760,88179,27154,97861,40470,44047,37110,96787,86652,18848,77114,14836,87139,6730,26815,57666,71595,84935,61479,50569,50177,15925,25699,83731,85364,58439,31242,76846,92657,96033,91603,56335,14403,88147,45709,26797,13353,28933,75061,69296,16259,56423,25466,43882,94951,32233,55418,77454,81249,43357,63765,12607,44169,91695,87792,95716,57614,22654,78788,92859,80629,90183,54276,64605,43208,91103,19823,14562,91379,97790,10963,15395,4702,64269,16309,55997,73013,83875,14669,46687,85811,46057,55596,81356,11774,97825,41810,32848,54678,35773,78925,88790,7191,13275,82731,20500,49169,53033,46623,65252,43037,86390,54980,67759,52663,38476,70699,19917,39695,69871,99730,27508,51289,21619,82197,14582,18683,50665,20088,53179,50598,71588,47181,21056,304,14939,98532,15362,58887,28446,50001,79219,12489,82011,1032,17385,96938,98534,98457,21559,81589,57149,45038,88177,13023,12045,27072,44964,86143,17116,25269,99741,13962,58390,80505,96043,75875,5890,53605,60059,68815,94924,351,77956,32143,51910,5230,93964,70789,621,78060,54591,53809,92500,76294,99423,77178,83092,35129,62576,18377,60308,60529,19180,47961,19276,24561,67026,30919,21855,49468,34214,64058,78104,66887,75712,56155,58918,77182,56177,55561,42297,99196,36519,8585,50549,23489,52645,52695,39286,1411,16702,3790,62874,74554,12311,56874,98733,94020,45828,75179,24459,33781,2940,87643,32055,29342,12272,49041,77639,44807,13433,35130,20,81036,53562,72344,74359,39865,63200,76610,77190,49112,37272,7606,74009,8087,46847,39722,70031,62263,80592,22040,6855,69820,31401,60434,23135,31442,75733,51009,94473,49789,6717,49444,49326,89450,55589,69075,76653,57142,93077,76869,84148,77417,35284,95249,81188,62366,26108,952,18029,8021,41670,60300,22798,76646,73054,90207,4237,36698,93046,20402,62985,58510,66902,97304,36256,306,22481,42074,74797,48671,44480,43100,43273,94736,6647,61747,6875,21891,81046,15019,32366,83473,3932,56953,81174,88350,50678,25146,41832,61891,18678,35526,5715,68804,26845,92814,43588,30874,10767,81270,65751,68816,90643,81619,83812,61683,62299,38015,89168,27192,35095,52635,60175,97969,39474,45879,34082,46759,4593,59686,97286,35682,62206,66033,84069,27785,89267,51131,9230,32454,11569,59969,18972,43586,45167,89699,6574,28116,48275,98641,8567,89752,36122,66707,10761,60971,87399,79379,86183,53305,13320,25278,46985,70025,6606,81852,50536,94442,67624,34906,89339,90592,19393,18499,37842,89604,51661,51891,31061,79975,85999,48644,6578,55887,68167,23828,92338,71770,76888,36778,6223,30866,99494,10167,91519,59339,85321,99474,66977,93395,55516,34345,80004,66332,69085,54926,98518,37714,17789,87732,37506,87137,67337,40257,52199,12354,73467,26472,25856,22769,92504,32475,84416,57067,69443,69095,80420,11687,32042,41505,23531,98661,3261,33616,89091,10156,94544,27064,73681,76669,25595,50253,82306,27314,46502,12662,19216,11930,56350,8085,25818,24656,97816,59712,70818,23813,16144,60210,60915,47621,29309,59601,91324,52301,61090,11680,75133,78169,94600,33983,21853,65323,79493,71644,76839,62071,39532,39665,31516,7292,58744,4090,75083,42035,6058,60709,34609,94152,7024,70531,16561,18008,25002,74564,55444,4853,25064,77722,84093,40225,22398,4236,59440,4589,39224,60411,78450,95665,18068,35409,13764,43249,75996,89085,72351,15508,60325,73948,51428,66402,32318,3006,82172,91405,47514,90914,43187,53664,38257,36423,85015,62476,53895,54977,56630,1512,2266,68777,11728,33913,5175,4672,3374,1389,66319,92900,91584,49162,84070,18151,80989,85185,57103,47096,86750,2735,81307,26792,33704,75638,62066,76280,79676,42742,72767,8645,9775,55876,52761,68347,22102,30490,67134,40408,63050,78402,28286,51401,66972,76916,66517,7641,20761,69518,87578,67132,76797,44763,91831,72202,34746,20137,93461,40214,61764,74606,12111,75009,42722,57583,24987,97654,34574,71851,79468,36207,74567,84743,60618,10492,64994,93366,38073,96187,73968,87820,21261,15581,6123,58487,12324,90859,13061,6355,48366,35282,49574,78733,83597,84677,18363,30484,63220,344,93814,66524,87994,91746,25900,73568,43504,22228,37150,51655,38422,31540,78966,27421,9735,39212,49845,62519,82573,78628,39864,71916,22351,5135,93091,99534,98333,36956,63406,91095,10580,46660,89078,78355,83692,25087,53745,42691,4103,7278,6477,75795,10321,2687,66846,20773,84948,66525,46846,87496,26973,95588,1541,1394,10582,10931,80096,80237,45089,92788,55337,38070,45627,65529,13165,19742,21285,3527,66339,22625,98841,4086,91064,76252,14173,60653,9948,57937,45410,59975,782,80074,70010,73339,24056,11294,28695,17909,87917,981,27964,53355,1808,87811,81162,20339,95573,1519,30387,42451,39551,6866,44624,30807,84574,96761,26877,2517,2791,79381,85430,69272,64409,50280,10917,23870,23054,9639,44192,63642,58702,45236,42196,7096,39364,13094,60506,2762,84502,34554,15205,14064,3701,52715,17750,72477,73084,26455,47270,12688,85657,3605,82977,42117,54178,35504,59638,79294,46109,78206,75587,95728,43948,69739,52837,30205,67420,27820,50109,61706,20827,75941,93545,12303,81780,31118,1,83781,86167,29611,91973,46506,20587,44911,16903,22603,98619,14627,83136,47267,78529,86934,33785,11114,98303,24025,57009,27113,71758,25659,52706,56540,69856,38382,48898,39875,62934,70524,34121,77234,70142,44172,14715,10983,32686,83175,43432,56425,83398,42391,54246,28971,77545,90589,85721,32908,80293,83894,79444,56383,94393,11893,61596,21511,58979,136,87633,62033,97373,92432,32556,65016,95383,6236,22961,31254,48822,1750,65627,17865,81631,39185,67873,25265,37227,84778,50176,44587,7302,41789,15313,35201,49712,46160,57508,67997,76033,78729,55958,54751,53778,63873,46472,31876,50317,6684,7945,47238,19203,17715,84285,82876,76148,88915,21898,46553,50456,96009,32938,94182,62999,72648,71523,68024,2152,86076,56241,73243,64312,18502,83129,39427,84899,66464,41107,96682,26113,25880,38649,91230,46036,28242,89646,72083,28216,75574,46521,9224,36176,51370,73060,56629,87355,8930,19146,97983,64105,41438,56277,91644,56467,48425,39450,90572,43073,86241,29920,64210,43078,23007,36463,88080,52082,54316,6544,64481,39388,25505,47343,17946,85094,12756,51217,392,46512,51679,55607,88583,22836,58223,23664,83907,25688,62375,55534,54765,95461,36962,63794,63071,56191,58786,32943,25825,55951,63881,73413,51250,68941,15443,20875,84949,90482,63399,84410,59904,35979,51222,14601,36946,34765,75586,54699,47850,18240,42316,20109,73774,70075,68013,55484,70725,44186,80028,67491,41009,88104,51779,46159,18771,13266,93659,24681,64413,30841,84193,18990,35441,90055,91849,50344,9393,84922,32286,70757,64639,10952,78499,50118,26778,96024,18645,43839,48248,15896,17973,93197,74627,96266,90729,56904,32535,68955,43383,85623,67619,51923,29582,32693,89222,84526,77926,37218,87072,91972,83282,63168,73629,33889,56776,47866,9648,55235,95154,42664,58733,75906,52956,11760,40777,8790,96295,67308,16337,52653,92862,78963,67191,98061,67385,23936,43122,98806,27966,89061,91691,74078,51863,23381,70582,31520,91501,90786,76551,39479,72166,82508,59792,59628,91213,2751,7327,48233,18799,1211,69269,80800,12381,13613,69354,11997,35370,25456,55396,15425,62724,18831,68996,21020,28471,61057,63444,27583,40486,26439,83447,45010,76481,12504,99835,57453,9367,91315,15809,64796,90293,85340,59806,30319,68539,80291,99393,24610,98093,67133,43956,75962,26327,51013,46200,34150,65290,83833,63358,41890,88201,34886,37278,34000,37050,39034,35329,17456,65774,78326,23249,87477,81040,46922,45203,52630,54656,68873,65772,72197,73138,86858,37553,46132,40459,56402,32826,77932,41299,91529,46746,9352,95699,43304,15606,20148,60870,76717,27612,86553,10946,45785,49882,71578,64252,89405,70163,82572,99204,77700,26469,37011,97514,92818,34865,3465,11845,93686,78024,12110,20884,48955,10810,31693,87413,87125,62547,19935,9760,94163,7914,81448,33277,29718,9728,58851,31266,86925,29093,49204,6066,71537,6398,26814,95578,66254,30668,8502,54675,83895,72368,50316,19304,19906,60472,7561,47896,98256,82138,17971,52829,18679,55434,59634,93350,32436,58199,8327,24364,78266,20628,47300,69927,73473,95745,47175,15643,59338,53484,31494,70138,56036,47630,83926,62719,85378,17045,8409,45517,89146,43736,64623,26699,73871,7621,68295,62193,52236,20487,42212,23851,26157,19581,84232,86093,50859,62767,95813,87848,44917,21631,37852,10724,95401,69535,63267,21090,19229,81109,72088,83964,59146,88697,51568,9409,44627,56990,13821,22575,46821,46761,75361,39522,21500,54730,47647,59630,58594,16924,1129,15894,26380,4349,12132,9655,38106,3171,21185,78366,75872,25281,68954,14276,18760,27735,61540,39646,92178,10558,76495,89709,67549,13535,65327,44055,56915,51787,42452,64365,74409,49584,38132,77181,57623,24058,6613,31572,51214,33483,69225,28254,6377,25668,45590,15203,31591,22943,80732,10589,48345,14294,83741,77562,19940,21509,6651,41310,29559,43750,63762,54955,37059,28560,93988,80245,78198,87689,72367,3702,69180,93277,44408,43191,19454,40488,48404,18263,8312,63739,76881,86850,78171,22732,16629,39971,40546,36258,20616,8434,89087,54221,42721,47542,83028,60206,69167,91531,28265,84548,63098,6787,63305,32113,52426,64113,25526,72267,34098,85558,22402,52772,69374,9134,88040,11566,98888,15816,80042,54771,92841,46519,70930,49470,30487,95842,34859,50313,45374,58647,81926,54544,57620,49540,77835,5898,18746,83181,51008,69251,62360,29032,8383,27692,56752,59088,56843,20413,65752,31930,17058,65764,61426,19279,80911,55438,9204,41328,37451,92361,22012,52530,72497,74821,40005,45714,37718,35713,28558,56103,92716,19959,40390,10890,4096,545,10043,64862,37650,24308,43206,6451,18163,69101,98627,71044,94562,27694,22075,58906,55848,68635,22690,4183,74743,98381,59916,97562,80213,39889,10417,1454,66674,49328,33464,74922,63199,59587,38261,21453,48663,87368,65664,45313,65263,98279,75220,98583,16436,90901,93251,47837,83721,7946,63988,29632,42014,57994,37992,13781,70101,87609,41712,37695,87696,52115,40195,44325,73822,44586,79293,8613,97895,75268,19220,57439,96576,84954,5506,79141,87361,14722,72293,63725,9611,76790,33940,43727,51877,14111,83567,13572,59713,13574,85926,63730,43246,13828,8382,76300,64940,40404,66038,82973,82839,40735,22933,71837,59414,22412,65400,11498,14304,77832,94049,48238,68867,21217,45669,43265,48157,54469,53366,88675,24581,97879,47222,62974,26843,26646,40902,19620,38652,72549,9767,88275,89407,55953,19368,84257,34039,69591,67166,89412,57253,28662,16670,22300,46711,84240,59884,51186,47189,72670,6473,40084,5030,36111,62325,79770,14022,26657,72606,89265,23852,91680,92521,5031,26392,7006,18300,56949,90992,88205,19418,39660,99909,44581,90975,22001,42732,82684,90219,64237,4658,78043,61929,92461,50792,78314,61989,20634,20400,15617,4516,27074,29633,74106,88070,22831,57633,80076,63786,48382,7749,40768,54103,37902,77276,88464,36098,26640,11628,16831,21409,67271,37127,12128,59858,63282,96372,18450,77685,97409,82506,58977,74530,92993,88306,4765,91089,45285,1592,83863,62650,47599,65727,65408,17513,72769,81859,5954,25612,4033,48477,65083,58629,52753,41424,47326,81168,24578,54235,82685,47550,35415,40202,95531,44176,95207,84419,61010,92114,25893,1578,59224,75823,54202,40775,75150,20230,67490,57744,61977,60961,64465,82561,37511,54056,39177,41458,91796,80354,42689,39391,58627,47976,59922,80961,26720,2224,65207,97222,98285,24673,58233,22977,65098,85557,59353,47076,50705,5630,74721,51388,6998,43293,247,34954,61115,52251,33312,78784,89526,49761,79989,83619,1532,77593,58549,84386,96966,69784,65812,92134,80469,25202,93931,56823,84329,15887,27872,73517,36676,23323,91984,94420,47588,88827,48872,15764,81117,37787,83395,13575,8381,3875,25702,86312,50830,47804,77824,23188,80286,76629,46554,11204,81456,91486,57243,51796,73809,35959,10614,47830,6497,55009,3065,51103,26492,42864,17179,90058,70255,4615,54155,80234,15004,11090,48452,55351,29452,81730,62149,93974,59055,63242,45788,23782,53321,71052,46221,46694,57197,72445,53992,27184,57559,251,84533,48891,64415,79590,70447,72348,27733,14192,69142,97427,39008,19177,57246,2138,94044,59782,89636,41028,69340,97202,60868,50165,47881,71567,44999,87978,39792,48042,33347,31964,55812,33964,8945,49142,66437,88720,91739,50991,48749,88450,7698,42594,19948,11495,82974,98397,4101,28375,20457,39828,3625,88209,57332,23202,88467,30009,1142,69901,78836,74751,73225,16562,65427,2460,21548,31564,37808,63112,95635,74390,48027,50708,76374,78979,81284,87855,70935,29503,5376,30130,19339,82544,5272,90562,8974,48098,45054,78306,9659,44305,79850,77674,10386,47658,38952,9277,73726,85767,77916,54152,33928,3268,44153,99842,30333,68510,72067,8990,97745,73466,78203,46490,24594,83809,53336,53293,91276,26864,12328,78030,8757,11622,49291,68204,66924,49972,16042,32564,33275,82132,79795,12340,39334,28599,44430,35368,67974,28253,18362,68662,15830,96532,37827,19184,78059,92225,89768,16503,26900,71779,28525,806,73841,97929,39373,48303,15683,92706,39181,24207,62875,25444,10525,59296,81606,82671,35564,21590,93692,47427,57607,34927,67659,49673,57473,85694,22569,84261,42877,67163,28450,33643,11080,38161,20182,84671,38582,27438,42561,77069,92799,18417,10655,71274,44022,9922,11215,7620,58693,20904,45185,57703,90192,88647,53968,65817,20151,16995,24566,81235,59109,45746,93671,26036,13136,6892,61497,55592,44942,76412,76908,93194,53692,5482,80653,8500,91860,87579,26816,56571,7887,56272,72138,22761,34450,75826,38339,52901,67767,14897,40584,83891,70712,50585,68966,836,28520,36766,42092,91350,69817,37708,87903,41695,17782,13878,70356,4067,21050,20611,11413,74441,93620,26145,58597,67817,62769,11858,83408,28128,48734,47732,3052,42077,46335,24312,19461,98331,74692,47441,89561,4721,51352,7347,1268,10500,38526,78711,13316,15348,73353,97480,7500,92073,81003,73674,9829,26181,83074,29207,52886,31675,99454,50108,3902,24479,1337,92971,28889,71575,84310,59095,81897,58544,62659,63397,11516,79234,94510,71587,90287,10075,98284,4899,82000,49781,47766,44170,36997,45539,18970,96967,53660,77684,625,86558,76859,39898,27135,27592,56399,12116,1742,12297,34019,63665,33817,22779,86650,45168,64712,71887,73592,92670,51034,59989,27150,97171,97924,85872,3847,29262,95331,15370,87677,83234,27098,93928,44831,73630,80141,41343,10331,98660,89698,37945,74461,4820,18407,18015,51849,98557,5939,14858,81726,48698,1400,20547,34430,98200,41814,5190,33178,2852,50477,92562,48435,8768,34129,27010,82753,95366,1639,25421,96452,97035,36533,77076,64476,64329,14450,85279,23585,65828,88544,40597,54092,75021,674,1599,78954,85780,29121,42225,96300,60764,72273,93607,93698,16376,51432,29768,48240,15263,53591,74109,39317,57235,16743,29818,28246,75306,54277,18355,68617,39075,54689,12163,13398,77333,79448,84043,22529,70723,53079,58040,96368,56300,23110,53949,5545,88828,8263,66362,3014,36235,28522,80062,96723,54209,68199,35017,96348,36826,39198,40513,54709,65004,79033,84264,65186,41207,14297,99121,87501,23996,98556,79080,54422,83137,71703,77552,41350,51035,56836,905,69203,30964,9342,1322,71747,80775,74613,71302,99409,23108,5073,78367,25474,45653,46903,44616,79675,84560,68154,85675,64794,91583,99911,60423,92394,94719,45387,77481,78908,5870,4530,82854,39799,61,73259,76400,33138,53526,77528,20392,55630,72520,6783,57017,37095,73163,37395,59911,70766,27320,53513,19444,64015,6528,20330,55727,98426,37918,35757,19305,39352,47361,43580,89792,92205,57998,40156,25744,24893,24182,21716,96960,12839,34280,47965,10675,39390,30829,84664,96001,84472,27304,88323,44596,14792,45848,54515,43140,71737,63141,10380,80784,44131,99888,50306,29762,88406,21646,49665,50572,68225,54789,89071,63751,17824,63472,20357,71233,99152,48828,41687,95197,94892,56169,45650,75053,56967,69350,48630,57199,54933,61631,13470,39111,17248,81278,42140,93771,44675,61106,75699,90223,68087,59128,92045,30473,47541,46026,95916,66045,33873,69231,7602,16199,97776,93561,63527,38198,30177,58312,2454,19758,78093,70107,9609,56053,6704,67073,2895,87931,23221,98071,25123,60379,33189,68224,60438,68281,68147,17602,903,39525,69070,50166,46907,26349,13479,78489,45583,61653,97034,22579,32129,13804,35139,47420,83512,25431,15043,16685,42449,13888,20386,96061,67031,2894,82636,34820,14593,66111,83206,4855,36560,43707,68393,7439,16499,71066,18545,988,49475,94935,27747,16941,36593,55734,94798,4891,20081,18287,57372,97205,21745,16696,89332,19298,33551,83777,62880,33139,34580,94403,24749,64857,170,5222,21267,17536,55894,18847,98578,23631,10640,73252,94522,80285,57721,71822,83463,15242,54736,98217,10174,61185,99459,44263,55603,30498,87294,59899,82996,81100,59227,50612,12202,85053,63201,36280,35701,15666,86485,46032,8307,98335,97060,65843,93458,82316,45129,19690,58653,77900,50323,37027,71974,38477,58262,65286,97400,45741,24005,91602,10907,86933,41658,92651,79292,48062,5148,35533,41132,19337,74305,85911,43473,90422,93213,47529,77061,64298,46886,56602,3607,53222,6353,96731,69848,77740,70469,20321,75165,36957,6040,5207,68854,47921,3172,56175,73768,57170,28543,63834,69994,50481,87986,12983,47419,1332,21552,46898,87375,1485,93351,67309,30768,1583,79178,1293,54404,63583,8004,95221,57301,80544,93656,23087,92970,23122,31237,24742,48463,86097,70026,31376,67557,80341,80025,25363,22100,81885,34299,24732,96430,34730,35468,75425,16230,34867,18769,29481,26636,66096,83736,42929,79262,25356,11669,15644,97932,91717,24043,27442,50305,72824,72910,23119,57973,54008,62194,41163,56088,31739,27847,97982,9967,13686,12165,17126,48750,7622,70070,61277,72102,16676,34419,78640,27577,36661,33957,31105,43837,94983,76384,90045,72292,8835,17005,45990,10816,43668,69683,84832,12931,77948,90599,12654,17445,23391,87568,59871,97420,87620,56786,68532,51178,59994,21341,21126,19217,32640,63130,81099,96873,11155,62965,6495,10514,35521,39298,89930,76247,1810,31786,9697,75105,72738,42334,53839,39186,36818,59315,26551,45787,7645,21187,85956,53504,31022,3813,7063,39000,79802,72254,81746,39791,65763,22107,32409,67600,12477,93525,95961,34942,53448,79481,65808,56333,11627,45498,65651,3680,74457,85925,34811,50777,72526,74143,78855,30096,3770,69699,58132,56224,11200,5444,7767,37669,9523,17790,5203,68270,56282,75423,49130,25342,93648,74687,33481,44952,92537,69808,30896,40193,64445,9053,69790,47716,72432,643,62434,88465,8172,66280,48472,67281,20930,87133,44329,17296,76559,96052,19989,95955,22531,78234,65989,93008,82952,84593,70458,95362,60693,44271,44701,33370,46289,97344,68148,48951,70650,56883,13004,92168,39151,65520,66572,2339,76784,56810,54419,17885,10235,52582,39497,42293,49445,24060,92920,78845,47383,80068,629,10106,67257,60687,20231,8464,53235,66790,70801,50801,81465,12976,62465,85398,46835,69433,59607,98563,40657,19498,58122,25176,66917,19341,43718,80080,53243,94993,91567,3741,2753,6086,49139,74499,23781,40104,75672,19999,11268,62406,87306,16122,56751,14797,53358,36789,47095,60549,93060,20495,11924,56079,47359,18010,63015,41449,78162,45913,10770,31327,76904,73679,62620,10784,5002,54738,77692,82150,84389,39653,20020,63632,96623,62972,7155,34722,42840,25172,94120,25141,56937,7477,54929,85138,61794,97848,43720,34568,10076,35824,81409,39816,55112,73083,94171,79401,43607,56369,34853,91356,91485,21486,16794,25846,1267,57832,57183,27032,72339,67965,69471,74171,17090,10769,78116,24905,37186,90107,61324,30599,36659,66932,11656,31120,22892,27296,19751,21972,63103,95560,466,18758,14016,56641,96810,22045,65934,71322,61480,62147,4179,369,76666,88169,71323,53850,90884,30548,73484,21205,65050,72268,69828,31035,56941,24910,99424,50401,79701,69139,55821,84823,54650,4520,80618,47166,26908,34480,50435,96,88161,21833,47777,65145,71527,40893,99577,59024,19710,51829,44681,44739,92768,88597,12665,53314,3358,57504,4264,4321,22156,25117,81491,52412,48947,52864,70317,91262,42482,61958,98099,22550,27132,81400,7250,52560,43946,58975,60570,5355,38969,80415,55052,63442,17977,99892,9607,74944,86538,93246,28615,16078,1433,89059,54985,98707,48961,72935,35041,41545,99362,18507,21731,45605,41747,19511,17444,13759,40150,80867,59070,86496,1972,85220,16772,22284,30346,93265,15984,40138,22400,70192,78466,58115,66396,6696,48242,4485,24831,91481,27797,47231,95402,42870,60384,18053,79014,40711,83540,35359,34770,41347,25147,59583,55117,11363,96388,27090,60677,45036,13115,67417,4679,29040,39935,42663,48372,30649,4991,87967,73884,35059,90697,76360,33348,2015,21607,62922,62930,89075,82738,39627,94022,21893,8921,12499,98364,864,47538,68615,50979,71829,94551,79106,25155,16890,15870,92736,25355,65926,43834,49111,99027,75937,82774,75029,77752,59769,50259,65943,32153,50642,16527,84397,31005,65729,46016,82274,35123,20755,32012,27210,71,98058,4861,81423,27795,13268,21289,29162,71277,29787,92782,27422,72883,20924,84616,8311,61965,65738,21943,72724,37123,27881,26821,78777,48859,43793,59790,21664,69771,59658,32413,56562,20463,76147,91093,7669,12571,20134,73856,66627,60986,94274,72404,10360,82721,87330,28848,50636,28886,201,87751,59161,54082,14047,82152,68620,6987,42070,30317,98537,84982,6847,52563,31857,50577,77450,48307,16769,18327,78564,62777,98997,8582,76168,68352,57493,69567,40403,40337,70695,62020,15328,19148,31635,65879,40432,45735,7220,90755,85323,76639,57468,9511,8298,83968,35911,41561,22673,48383,73332,1002,78135,41653,53655,45446,92163,10464,193,52499,60539,73770,2238,45059,11626,11077,1004,83670,52933,47681,71077,31145,26629,19555,20120,35416,30994,4424,52243,43603,50914,1210,8176,26890,21346,95753,21264,54553,50884,37350,49210,22411,19947,97778,48682,68559,40983,163,38092,96162,48118,38310,89959,77311,34913,54572,96806,62177,81295,25943,9520,69891,78136,22029,58243,38822,96594,55701,49594,31452,72940,16523,218,79969,97769,15040,37269,68226,86735,14163,5594,12775,2828,22097,78852,60851,89280,88090,95022,24288,99384,99848,50788,75011,18737,1543,74588,31752,44876,85085,43415,67012,59150,68901,38022,52745,94356,56902,69066,31846,76379,40838,88648,187,67341,10187,58788,52074,1108,33300,30136,28613,34378,73238,70274,66301,88964,21420,33140,97834,85891,57091,88709,84632,21479,94991,13998,3299,30584,61541,2691,61023,20618,70451,27709,89985,12811,36074,31568,64716,92969,8001,89466,64325,33635,28321,23879,58302,12653,87859,53523,78437,35248,37097,86468,40039,43549,53648,47329,22656,9421,44139,56956,58777,11844,50584,44001,92990,10972,73979,15270,25629,35672,46825,4536,19118,34013,60149,61016,88214,9330,44339,96004,28622,47059,92688,38764,58420,30155,55099,47580,13006,74242,1074,44988,89863,42176,12610,27444,77157,56360,23711,21405,81384,29027,20066,50849,8607,10052,605,66308,28562,79056,47841,93292,47724,71606,26304,38564,43288,78364,3745,88660,61767,87176,51961,40714,6654,64082,74367,71620,45105,93042,46412,97900,70158,81404,33887,36079,90270,48312,7534,75521,67848,32169,23462,48095,9015,35444,38680,83411,77698,18954,26752,69991,9143,17693,4352,21411,96839,6868,32527,2991,96835,35449,97479,36382,26325,26929,96722,46279,35777,91476,7728,77477,4892,63514,91836,56699,22149,81363,20750,94936,4047,3831,66272,98287,39485,28131,72499,1524,93068,44823,3055,50069,40087,45043,23447,14862,40656,36535,52717,2504,16448,59483,84946,15059,29181,96460,53361,2766,10443,35187,70515,88151,29992,78022,11168,5084,49087,16839,56584,63062,89953,59558,63528,45853,36326,86146,47075,58691,59507,58218,82746,67885,88174,41244,64615,49190,59130,59416,21303,71844,24119,42834,99941,72922,14773,64322,11549,94258,97105,19422,5537,18193,43801,7900,58371,67874,1603,95240,79035,35945,29367,71432,43979,64314,55782,48811,88965,36287,11454,71509,64855,18003,66046,97483,70904,22309,36668,62582,38177,46888,94771,70659,43752,12773,96065,16216,11584,26935,5957,8037,80370,32541,79612,68396,25946,83842,96330,17312,80606,59850,65301,58537,56089,13702,55551,74659,23934,34094,37202,1091,22937,47522,21429,46448,59178,36581,64127,8659,98370,85090,76572,65188,5411,29833,12288,64278,81494,3422,39617,5748,64529,80333,76268,25928,29573,27668,80589,30623,35870,83014,80994,31567,27947,82387,39745,37604,61123,55852,64385,39911,28318,25246,42798,291,53527,79992,99875,4404,46373,9831,32985,99937,89842,43204,56431,6967,22606,63092,51068,11623,49976,45737,73875,88524,26609,61873,5274,65113,48500,21870,75997,59949,61191,18043,242,54584,98872,73550,30837,4040,30654,72377,27635,19867,977,60844,5859,99062,61707,57577,59117,86026,52245,60990,84498,95657,35160,25956,55087,19604,70269,87574,26545,65810,80673,89394,91674,70084,2685,85642,34154,71892,85766,38992,26920,61091,87003,11072,58807,52421,1654,39632,39405,4481,22003,5739,15673,62960,99250,3015,91868,38740,40732,83726,12570,36248,12456,56771,3069,57847,84393,75050,11546,11342,65496,1387,43754,64646,75271,26623,45222,68064,18478,77504,35595,6326,46879,59048,87581,59147,95464,16716,1501,86517,92457,85255,856,89444,80268,57780,4821,20635,75071,86121,53615,89708,15193,35754,55695,99236,59037,43533,56202,47989,19071,5883,12103,92127,50810,88235,74420,18060,52233,40130,88644,29754,80151,34363,44685,30293,58118,42805,94555,19306,3791,5629,23836,14570,66400,65858,55100,26663,44806,5737,36059,90522,74616,97203,39017,89764,96154,66127,37386,71727,43788,8836,1110,40350,22121,72992,56577,56929,30091,40303,50685,69036,62975,82554,55753,21447,62258,20850,53671,66287,52486,50586,79346,70849,21691,71637,4521,65957,64126,50742,27620,45884,91250,9426,52619,45946,40400,59142,82670,16348,839,41559,37129,63603,18040,27518,8014,45090,46510,49991,75942,85658,16215,30652,62673,33898,75780,27606,23454,37382,6084,32110,76816,2274,3419,40235,29477,53565,54231,73115,56226,2116,93190,67666,656,33445,93957,80148,28449,18329,6386,23529,91752,63932,16828,77107,72152,93390,37529,18573,42516,95532,30394,41346,85810,25040,28628,7239,78147,72070,13442,93340,35635,69799,36636,44194,90621,74884,77619,72300,87448,50219,86672,6327,14919,67264,32725,70420,21623,43648,87943,67503,648,38944,50183,80801,46826,4268,1748,62046,70110,602,79970,42026,33583,56136,92051,34519,92256,29230,74825,9051,75718,8118,54105,63737,90626,68731,14747,33871,67395,51293,93487,8946,34925,49416,65018,15533,10751,82183,67345,31530,71307,81558,77088,49748,10974,53882,73002,88586,464,97129,45480,66429,9118,26917,66609,87658,74417,36741,59113,61840,32576,93579,84864,99251,40865,66212,75995,6387,95034,59930,95947,70711,22723,81802,36453,33772,86699,19122,66879,88888,40197,80727,56983,1787,23759,82171,67100,90908,39963,96258,54238,40740,5416,4775,77585,30558,42270,40605,42796,31836,85337,70736,8174,32831,85905,9297,62828,31691,66584,81454,49944,27058,31825,29025,69001,53363,68568,54331,10618,93845,78076,57768,77448,81017,73812,62183,89512,34657,6685,46464,49760,77818,73064,96054,26110,94499,21131,33821,7975,45725,40275,86869,47759,14572,70309,7306,21474,80019,57229,29328,79195,97104,55690,15963,3953,87428,29095,47085,87431,46916,94200,95337,17836,1325,81950,69803,59523,19308,74756,49526,45420,39589,47820,25647,13707,84847,34198,54966,84339,28679,5309,29214,31207,75077,66529,74695,75089,31981,85589,37380,5015,21373,56586,4914,81663,11576,31227,21871,68022,97694,86603,78267,8998,67676,9730,67775,15564,36435,48053,50201,12825,47826,38189,9162,80656,91978,57121,41141,25277,41540,17849,34024,45622,25504,87323,96675,1164,82494,88071,95644,0,82108,8650,20058,99304,52767,77248,20927,6941,837,8797,3845,80472,52402,68127,15534,19672,33527,63060,7100,7646,89274,31027,42274,66779,557,87328,5636,62621,58763,28105,49030,50150,33538,20674,22905,83235,34706,80380,45093,32403,15202,20171,8369,47113,77787,5258,54349,47770,48442,80722,45713,30456,65766,34172,99025,33951,2583,87928,78560,54342,86450,64655,38600,43743,98127,76552,91035,38501,82210,88939,65831,92345,28161,37865,84365,59407,29327,13966,78058,78334,81219,33066,71447,46914,35518,1636,76107,37770,70992,78312,70368,4540,9742,84267,97855,42191,42090,30696,12097,68931,11575,38230,53145,14310,54010,73094,43691,21873,71477,71203,92626,35348,26502,27248,63609,45248,86161,17587,70484,47939,93603,41568,98853,62146,82322,86120,36058,78683,39605,40480,31830,66110,12670,31246,90498,82925,94000,81416,69467,33872,9497,55031,72740,70462,98828,58498,39202,11630,80159,4390,17843,35670,47043,29755,51336,75869,17128,65023,68916,8333,55646,98313,3467,67697,46056,21460,28978,91819,17265,23498,52072,56652,85831,28934,64154,29442,58309,2813,93569,4789,16953,8598,38291,38685,31276,36592,49140,95770,82540,26021,94876,41821,75929,47457,12572,78897,73217,50495,77195,76396,28100,14712,62789,99662,98458,65413,95419,56305,34044,31313,20343,7783,66398,19734,96729,19687,45040,34532,70377,28538,32231,56097,68822,43497,33660,53256,56163,16731,91192,33179,82517,23714,29645,33228,98003,85611,99843,84491,17847,26881,39502,2552,1993,79949,70951,5994,73626,74082,55952,54522,6558,89256,19744,3653,73857,99282,67752,3208,41004,97662,42612,83513,72634,67841,14698,36561,80888,51465,72627,44591,66475,53814,83150,72153,51953,87828,20367,62231,86274,76760,3572,90717,89865,28760,73471,44877,24138,20595,62043,63179,69470,32031,53612,32177,91372,68327,49818,60777,60566,8094,7594,39413,79290,54679,37989,24917,39206,44114,34937,54685,59857,38031,70306,94887,95827,5304,85417,54401,67957,90945,58897,44352,57413,44749,53577,16756,27809,98291,52225,67326,71992,58279,51414,80671,69078,69769,28828,26968,84561,27385,86100,11062,23653,82266,71101,81226,74303,90368,92878,95102,51931,62677,53568,946,97864,67836,28786,68779,25375,77288,72457,4241,55367,71282,83232,90017,98119,75671,12699,43239,74770,47861,55003,83545,76780,97881,41514,41089,8055,9050,61452,15044,84546,53866,88663,63301,9247,20621,10451,58195,33238,47786,20524,56220,23036,12893,93751,73290,20973,25198,41162,14956,68445,85651,50078,35207,51677,84958,7755,77627,91468,52195,20362,20536,91758,71817,69831,5713,15083,26862,25019,30651,99314,84530,5668,93911,99259,83250,58634,94976,4160,13889,29567,15237,26988,2743,59870,80289,58288,28508,92585,84618,66651,11269,69188,81978,38513,63033,20263,80577,72272,88242,87742,63166,63496,78896,5142,48738,84693,29445,64497,8964,82433,63170,48401,7382,97102,56824,75643,31210,8845,37288,7334,48352,35411,19689,75742,36658,33118,45218,8392,35913,40560,2537,12199,3531,99228,61721,92925,91977,5161,30457,6371,18382,92915,57358,18271,54184,53588,10019,25665,28857,18639,51501,83299,66078,51244,58500,9757,78386,17661,21186,2712,53419,50538,85968,32059,87656,20962,87942,37838,43277,32523,81301,49528,80687,42563,67221,8206,38972,34293,58411,55675,24541,52219,43419,4614,83200,2802,16419,85897,17878,48744,40184,11938,80357,63344,79791,1352,76196,46620,14604,6635,62973,81731,83233,65376,47027,36911,11074,79240,53743,28266,37762,88619,38889,1608,93370,68403,19055,53415,72218,78050,31992,86421,96700,45233,73691,30996,40369,95867,52465,92411,14892,13207,6045,16958,1217,767,65996,55566,11456,73912,38837,11345,21117,81811,65134,78970,58625,69207,73806,21945,70845,66200,58085,16314,60016,91369,3496,61147,77349,36547,16304,8903,62104,53272,18233,74926,45937,30485,74424,75846,82308,96339,41966,21803,83568,25813,83055,83364,77566,62350,30877,31823,65716,4444,56592,29139,10489,56973,49865,76427,83764,81463,53629,16616,25794,44427,65773,80736,31305,3123,62971,56768,20340,66514,75664,47674,80594,89101,69053,41851,40458,22321,28938,91549,46249,74740,80683,51954,33671,73611,58052,59321,7218,13461,48073,94452,29068,63473,18651,9968,24238,77725,4872,9482,16086,37722,5849,32187,49267,18543,39320,82980,28789,94502,80244,74585,18906,3461,98778,28298,95465,1206,2676,11941,48569,17866,13916,48462,97175,85708,90669,56362,57075,30780,73154,48507,20373,25232,67536,90964,46919,15272,41260,78793,1127,68963,89815,22168,70102,51629,97116,87454,85587,68573,65458,15163,33230,62425,43641,84710,84060,3841,38329,56522,27743,50030,34342,97136,35810,78839,18561,75241,25150,33419,13046,26667,99616,18032,77560,65486,28066,94576,53081,30489,47190,92418,33886,54870,24591,65485,52680,72149,22146,30024,25967,48209,42542,30308,21564,52978,27799,33479,29171,57456,89199,16837,60211,48003,54879,85852,35313,32119,90663,90919,34896,86547,36917,18023,51734,44612,2196,88246,55910,86568,10659,87920,91809,82793,17217,86397,7209,72370,68531,93181,73702,95045,45623,9827,28342,14596,26726,77048,96590,94466,39385,42639,30039,88155,80793,3202,40144,59145,92912,67556,16474,21764,27084,18996,48737,39112,22542,1152,44993,81902,4713,5177,18794,36087,32422,55576,24701,93337,29869,22055,74668,67224,52057,80153,31614,16695,46435,1589,22737,57240,36568,84056,61836,23827,22571,83457,64364,13611,28903,36124,91220,41145,16833,96571,57828,41858,97901,86210,99671,17294,65534,18311,94833,39407,78056,13829,45441,78244,2019,81702,294,31283,10090,5497,74913,32710,63779,81534,88118,60457,50169,59674,1042,60925,2932,19702,34510,98567,56968,67477,92643,57529,68554,59842,28685,97564,85846,22237,54932,15620,85071,63792,28388,67419,59605,32383,53530,73264,83638,43363,88822,74074,72071,60348,14198,34696,64152,99334,52969,64914,98574,11467,66474,81578,26442,4549,10096,85003,59466,19499,15128,14702,64816,47787,59617,29713,42056,85452,67342,90062,93826,77677,10657,99520,51242,2810,95710,74418,42531,3189,37372,32193,36143,25592,25084,13898,79087,75127,2481,15422,83153,46008,48583,76353,41128,13052,37389,92773,38725,41861,14308,75104,97146,49379,49057,37261,1862,82399,24256,88635,55334,19912,31273,8900,40428,6853,74162,66340,29276,2953,43449,98113,29839,89522,24316,19475,87737,19594,55404,30491,63053,90842,95765,68494,49138,66201,25227,59837,95726,51394,28698,52136,59355,45097,12280,62948,53262,17958,89032,58542,2139,45176,75213,36296,28731,57649,54757,58295,15575,43790,98502,78282,31640,16343,80166,88617,80204,86350,4545,82627,35579,1353,2005,53437,69993,48390,58209,64308,17084,16757,39005,58379,99918,29556,33737,94434,99035,94806,79817,35947,71498,33294,27157,87940,45626,80054,8568,9768,61001,93672,7922,59770,95413,90655,71280,60659,83790,76895,53018,88869,72628,32706,13537,51579,43724,94725,4640,40244,14920,87164,95281,4611,47865,59626,47701,1956,15483,18869,33626,69672,63799,68272,162,36250,2988,60014,77001,55123,69175,17926,19855,50228,19763,430,44342,47147,63090,43886,23917,45733,41487,22585,40000,75291,49964,87591,75856,53930,58951,96392,21465,83425,46926,60301,66886,41269,73503,81699,22220,64345,51905,11288,73522,23255,82702,5983,70200,63696,34560,7524,2085,55109,26632,39571,16698,60785,38646,9964,87784,89391,8802,1789,85033,55387,32466,11060,22474,30747,14671,39549,16495,72366,20768,18930,31162,85232,48221,99188,17619,90400,33683,42034,22984,28884,50525,78243,22807,2186,12172,69164,98380,1244,17396,71116,23871,8023,97657,63925,60307,83197,30087,44800,76010,14018,58806,48305,20334,61380,62613,22826,25216,80881,39270,31870,53816,94841,78867,73858,85331,7137,78650,19331,1078,68310,46724,733,69931,90710,18001,82028,16140,74516,40308,79176,9741,28403,1762,97538,98713,95926,57438,99336,71473,87175,75137,75132,50377,4413,53722,48055,21073,46344,96472,97312,88971,65457,52863,55604,71031,46329,49399,15262,76005,96010,11242,76282,18648,23700,47272,23201,57244,3381,71608,27093,668,39802,12849,9618,33904,27908,34963,87074,27087,97707,30824,18560,88941,70404,9234,45126,90238,46022,17623,80604,87053,7746,8950,49554,46147,88608,65461,55668,2565,88363,7438,50254,38447,70121,36177,13628,3819,90688,33638,58890,23361,48942,72474,15915,94105,35866,31489,87583,758,89713,62637,23328,79400,3687,78583,37596,27547,74007,27528,31782,27330,48998,96323,87406,27061,39438,17555,99199,71346,60158,79134,49355,89882,29148,16277,98241,44446,56542,75776,10627,40499,65785,22755,47002,30774,25590,26753,25288,34424,63288,96798,81058,60262,81927,28397,79334,78270,34412,41195,71349,55754,39931,75274,11738,98579,34042,27514,55824,64096,64829,55693,6920,49923,847,40018,73047,16556,61768,90665,52892,67072,39693,20055,7515,90929,96915,27840,74828,14134,57417,64537,30492,65084,19479,45123,76709,65897,13653,44143,9492,789,6429,86364,49179,10652,56232,56667,30759,67064,55769,86034,5212,93300,89480,75679,3266,9348,55428,53389,22345,63501,49196,5947,92057,5357,54494,54481,86831,2156,78705,30315,86012,67950,17904,15931,92981,67354,75835,2003,50946,63326,98681,73918,12215,41032,31521,36457,30677,95231,28703,27026,67463,25648,92402,29958,95345,91985,28820,77184,75730,11409,29028,39051,50062,46668,11399,35534,58025,58472,2507,80768,29527,15052,74459,63078,76076,17064,21471,26513,81067,81440,43625,93032,46943,95325,57015,36324,96213,78720,40204,50897,1106,97843,38948,79945,16931,17568,13149,72100,31353,14731,80806,43045,37997,58135,72547,74371,65315,57889,11572,8157,64217,30325,29691,17945,72558,87744,81069,55081,27494,4681,30006,83394,97023,78888,66519,46420,9614,40114,2621,83898,19618,71636,93520,43730,39566,36376,13579,97605,38523,65790,41943,5456,19587,4434,74112,95010,63793,30228,46563,67811,1326,21448,87711,48234,94786,5909,62577,39912,78448,85026,53085,44349,65969,54775,64919,2958,31159,27972,21733,92718,94874,46006,72907,76759,3028,87665,69320,44873,9123,22445,78462,48693,91687,85966,25932,20494,86930,61352,52496,36572,28420,34630,13438,40502,70007,14357,66491,30726,73454,44205,52764,94946,68506,73384,3289,13141,67452,58335,84912,90299,52709,48532,74032,88302,6137,10265,82740,41279,77962,38010,86232,35559,55381,48931,4005,59800,67710,88999,34411,93417,71103,1729,92241,900,94871,47558,99566,93865,45932,28042,62550,6472,69906,19167,88923,60538,54474,23072,12497,20945,10880,30280,22638,29549,56058,609,94010,85280,1795,69141,73501,95602,5352,95152,1458,96901,64135,16610,3098,84656,25184,30082,5339,25222,54570,38821,96533,2899,8270,94804,78488,89188,41312,20458,67548,55800,93057,99838,70526,42778,36645,85096,6463,76223,17713,12314,92388,16793,7340,35560,71146,17764,69332,99861,10079,35171,13233,53409,57196,7648,11364,16566,2029,55072,83845,47669,1383,78016,52389,31515,95678,8884,10681,83811,35603,98612,80548,46671,15368,59772,76827,18754,18280,35304,98220,39964,17204,16307,53103,83389,38169,13849,52061,39740,73093,12679,6741,1637,4726,18034,98219,63082,87681,89751,45496,69028,22768,66285,74291,23162,31271,49913,85960,37792,31077,77812,12624,44630,8788,56499,21304,69950,93218,29980,14944,96056,12093,73914,41198,13676,20856,60121,15875,7571,27295,73487,15142,23154,67689,76323,29131,6307,56043,38814,42567,44003,44180,70021,97032,7929,69615,5535,10272,53080,87199,55349,40926,97361,65675,48711,55941,1249,69358,53414,71553,45895,7064,40841,87259,75374,71803,48524,31221,54582,10852,31607,21637,16320,1246,93034,16440,89823,82131,20046,35349,13196,74883,42589,57573,31012,7653,53497,34678,81797,27578,18618,73745,96914,83983,17298,12013,29205,28839,57513,93948,69528,60848,13856,73145,69628,22962,30348,6750,41203,80655,23095,74210,43260,29399,36801,5936,85467,85118,27885,94342,91668,65202,17401,1614,75046,22068,87818,25891,56938,6595,41721,438,1730,64768,82406,88655,61387,4318,66926,23260,89991,77045,31952,66808,41403,87626,48152,2906,11777,89080,69045,2071,13146,54175,53386,23092,4288,99610,38433,14568,71522,67887,80386,70416,62995,61005,33958,14247,81064,42373,18009,73863,12384,44918,95487,14317,14768,46445,36389,72245,33686,63627,38756,99436,77058,19292,26833,63477,77741,4338,95788,26410,56608,96159,94957,52043,18105,56492,63579,78882,70357,23000,65950,25981,91127,10202,63653,97157,79561,66775,91163,29842,50986,90704,38924,30054,30488,25119,96188,69597,46418,97530,61712,36097,86092,21413,90452,95812,70831,31931,79541,95446,25449,26082,36393,84654,43503,99080,78420,89871,35273,19534,74396,94971,36295,34327,62537,56066,33751,83778,76539,8131,13394,88787,25749,20208,39269,60356,50739,71730,48805,55671,35859,87182,9329,80634,5638,22930,90861,80688,49199,26454,36180,92613,27940,42148,61804,38076,99329,5415,36431,69997,3839,68200,49442,64240,12720,58481,22716,41076,40958,81105,34027,55570,86073,2757,47445,47819,3704,35699,31597,66239,50073,1891,96689,18619,76920,61378,59477,96614,90726,44261,1726,20825,61244,702,29425,39578,44704,19785,74274,90740,53144,12798,21311,12162,76765,30290,85507,62261,30929,63523,30202,55778,25917,64566,7182,68974,32664,3362,82012,53461,96451,55186,465,986,91525,4306,94578,37837,87739,41300,44240,40525,31260,13749,36589,86786,10109,13782,27707,84511,66416,16501,9265,89218,93423,79996,69102,47254,25097,35538,28832,83409,24665,59053,11698,69121,78422,72996,11125,78392,51271,90060,9324,77213,64997,49392,97691,68412,38478,58610,63235,57270,83920,88046,46593,45258,16197,40500,13991,16640,83853,18595,39714,18429,18210,88559,78516,60435,83613,17929,86809,48813,48940,5267,63880,16868,41763,73412,31655,2093,79815,15243,81361,94462,85209,16604,59588,82413,28711,56860,55645,97959,10305,48339,58489,2065,67104,26091,73011,45680,19862,86973,29371,18099,37542,67943,572,96107,32723,19990,3201,11383,42548,93519,93551,29642,63734,81049,16854,37174,64457,17402,90393,65013,76864,40719,86782,10518,33197,48173,80554,75250,60793,30330,94339,31043,86704,67854,13750,96823,33482,42107,20625,52815,74610,96467,46440,59533,44637,51955,46642,56008,4924,17019,28183,87326,59239,54504,94259,53017,47108,85676,78099,50947,52883,38260,48933,89322,8866,51326,27871,93122,86675,79651,51410,67288,15265,40992,45237,55600,75842,92080,96850,37726,34459,58695,86472,8885,2267,70540,78502,83205,63662,57070,64408,30076,64218,79067,73009,91167,61762,60850,37312,61280,96318,74886,63212,60799,4219,2873,43536,32871,99170,30405,85893,40574,6074,89535,79741,51165,1813,28587,78324,37024,29904,4814,31158,68323,95808,82916,76931,99460,78577,76402,59595,18723,70943,82046,73088,71250,47247,59971,49622,45263,9901,25543,72725,46087,35435,92717,31524,63935,47091,61410,20580,56704,9676,66542,71370,83105,57941,68525,1041,2308,95492,4064,90439,99374,822,85420,16370,22705,99542,58180,88528,55677,12400,67584,52687,18761,10519,67230,11869,10740,57465,18217,32671,93867,64141,9672,85645,17774,56243,60674,60927,52752,61993,91413,44257,79965,6976,34768,94248,88325,53937,49552,70897,21249,76505,25091,33261,25746,29474,66325,27492,55911,50143,46467,48515,11804,93721,85661,44068,69618,98555,26272,18057,43925,79437,14918,62938,57388,96530,95711,84590,30675,90089,77465,97766,3365,93726,42261,72751,72260,33449,19059,3561,5887,64779,59845,48796,75093,29075,52075,15445,98290,58127,26922,47327,56596,20821,47119,59828,44826,22120,1632,25601,49499,72219,51864,22528,2773,26154,43103,35004,14922,23156,70998,67669,59495,78192,15200,61832,39897,72389,50264,11379,8433,27384,82667,53037,5423,20277,99592,86501,84598,8345,81662,17526,64624,71382,20622,20323,62123,46189,91675,72184,765,34661,31264,57295,13131,20427,76508,54119,47451,20276,75178,75110,85600,82923,8536,58512,65258,21291,51790,67135,46959,27946,64404,84188,8667,50353,44269,83118,26138,52658,28218,72378,68536,20847,63876,18661,49040,63934,46068,36742,89410,87556,98360,81677,79670,98725,76883,42696,55667,76156,86531,99987,14354,73004,33177,54293,57755,98905,54984,9924,13835,81087,56773,21971,11611,54021,68605,30689,2312,82645,13721,57603,70297,98156,14914,52040,4451,33561,23124,89782,70795,42851,2600,25757,11616,17329,76461,7865,25121,52264,16345,71021,25565,93454,92174,16233,10768,12238,25010,285,2327,29921,51094,6956,26860,21960,16609,92852,9269,67537,26058,76632,72758,79441,71391,10040,43032,81990,46461,7703,16088,73784,97389,93544,48070,36694,71102,25312,10763,84362,80525,26280,38156,65833,97546,78191,50503,18855,92250,23869,62556,70882,2407,22521,12595,97255,72204,29647,67695,76392,92385,63748,39194,47879,78453,84012,43092,19634,92596,95966,46366,80105,93649,16602,52391,5168,75709,86912,85612,87607,17066,62596,265,10598,69812,41078,35513,3502,27197,39432,81761,27160,6524,81253,75813,840,44158,43361,46054,71896,89566,1645,64511,8902,46398,63684,70461,90514,10341,85231,74455,20425,7365,20979,27691,6328,73432,12142,71985,22566,53021,98536,5784,83310,86381,28577,88616,80507,85932,97814,58646,55680,28118,10011,19164,1706,50904,25701,65569,58211,8603,66820,41924,65187,69027,60885,53721,87843,59427,66089,17573,26012,33374,58454,19820,64564,79390,78473,65570,76325,82844,97009,16951,91979,92533,52484,57368,77820,88750,6104,67510,68561,65068,40098,37582,5614,66228,88912,99201,24778,22940,82176,9603,22645,52669,21771,4166,21638,53061,74995,47564,32949,69904,99562,6905,13816,44958,4882,31166,87961,73269,64880,71582,66043,25211,9490,49847,33559,56758,24627,78464,14822,64599,78238,38000,44885,37952,76502,63024,69543,83049,1124,68093,58536,2073,83190,89877,12995,47686,47183,90297,78747,22843,34775,2275,54805,74725,38048,18691,35229,27069,80335,29360,64637,19375,63147,69716,75368,31476,5425,32138,2884,29649,36002,57926,70145,58401,78813,80712,54070,89477,92195,47730,29480,90100,86045,87772,22185,71930,28363,86313,13102,90095,82490,24355,63844,7824,62530,4409,20770,57472,25015,38126,93991,55171,34511,50521,31915,22630,41378,83446,39639,992,88150,16906,68370,90733,1242,25083,51467,40219,89297,51346,7489,11796,34317,35295,43628,13440,24638,87947,57575,8446,66120,62416,7168,34312,66386,24070,48183,91300,49368,13534,97139,82856,83608,3074,798,51400,91698,82601,77617,65445,3242,87604,24204,6611,54839,87776,74584,54538,88274,17411,3906,75226,54076,12077,4013,58642,49404,99714,20921,63373,28764,4107,61525,2210,69226,25432,43661,17173,2957,34528,68805,19246,61081,24046,53466,46621,29651,97653,96649,89974,93774,20013,24994,22733,93807,79462,4348,40139,14766,72735,59619,48069,61088,48845,48667,59731,73721,96382,13778,58812,83355,29384,86927,90239,96008,27768,833,40921,95892,4217,77456,74748,33920,70304,92336,2243,2042,95823,79566,14775,99356,1515,48361,62407,66324,25952,65010,30586,71412,20351,18622,15827,27954,2746,86637,60502,93137,46957,64455,43627,40042,49581,8192,47597,40117,76171,96050,19756,13609,59155,18743,29844,17249,10594,61935,95462,21676,67208,6856,19832,26209,82729,64283,94387,19481,55865,40044,80145,17428,74696,21708,58965,92800,71830,75767,89958,42058,94026,95158,53601,4129,88613,64384,36705,54906,74832,99164,58624,38531,13093,38337,60249,34729,23894,94129,64502,9998,31995,81518,41463,29492,93473,72053,94781,71409,11091,36575,7629,49988,56867,6661,75651,38418,88075,44706,70194,11615,8490,72989,35561,64011,97417,68932,20144,81387,67637,3347,44475,79513,52306,4380,52966,2326,763,86874,1256,58547,53462,32307,22416,90893,12872,70337,73218,36247,10499,42377,36542,6102,85933,47757,14886,22919,49471,40011,60608,20662,17778,80929,67981,78652,72049,24919,27271,9517,79705,6715,76160,69532,4304,23732,80899,61149,60623,79013,49831,16172,35242,30337,48754,9306,88110,45581,35232,77520,35520,80605,39071,39587,89516,45921,41018,46545,63074,34018,94054,15891,20434,44335,22369,33601,72768,36096,77136,20934,37776,39458,30313,30950,23446,22191,82857,65825,72460,92938,51462,28140,7959,35910,65216,42829,15619,87217,61913,74084,70065,16741,83711,17476,29404,49672,35404,68095,21671,10613,98275,84097,43009,67206,12430,99815,12285,13917,64353,17191,24159,54960,24723,1114,34015,81729,55665,20168,88445,67080,37465,9308,36311,30697,4945,84765,89206,98595,44044,38686,81743,54786,65205,27505,25781,14526,16334,4746,1694,6329,13762,18452,70691,40526,68198,94671,68529,46769,33115,13262,50964,86729,40653,9087,79091,69081,62284,55148,24085,61821,87771,34885,21494,47084,60670,92467,80805,33677,83106,61613,64318,70431,77906,53485,36732,98345,96087,60616,68848,61038,33602,3598,75812,89738,43652,21525,87015,47187,84961,73035,73281,2724,19063,55506,27321,4301,62229,91301,93452,40538,28121,44757,45466,29341,74560,73607,85151,41156,61736,17570,65051,75288,82105,57864,21792,11916,73585,3423,27639,52608,50171,41374,43568,68548,63564,32184,66150,33363,73729,4095,77612,62764,61239,37519,51650,62178,69577,14207,21419,70495,63518,73699,47157,67209,94770,23469,34598,26735,25768,54502,3451,41662,68793,90524,66815,90682,79008,55170,85464,35736,75155,62436,57110,23570,6361,49659,36297,9301,72579,98868,67397,95300,74720,34022,64032,25776,97753,7744,20764,83697,39377,25546,6290,90331,90123,4216,62526,98769,51814,61530,92497,50119,68832,99046,66616,64644,58160,32506,76668,47871,22413,36055,66531,76126,2780,13095,46212,75555,13339,48751,81074,1760,60009,43275,93356,1692,88686,2680,63306,7556,55051,23845,57503,53865,18434,54130,58981,46654,87975,32683,12192,20143,44093,9752,72717,88871,62056,91265,93233,1428,75386,52690,19219,91734,20876,4871,95881,19560,48132,88292,71373,25369,56721,51615,42916,84891,19190,42502,84102,74497,58286,94908,95218,46550,62570,36252,30154,34793,32350,53503,40030,8390,95143,736,3082,7666,15780,98945,77478,33884,61111,2916,36444,52922,54801,49100,80451,61012,62142,31573,44027,18837,52906,10710,75217,19355,40218,95480,7299,91799,93596,27416,23185,92275,22987,77295,53921,69602,2068,13074,10841,72388,31725,73,39861,23276,94448,85100,5586,35317,40213,1474,65746,63079,85991,50687,39961,28085,75968,77095,17999,3292,31748,85457,47807,56925,66748,59643,50781,9036,6024,10856,10007,54271,42179,89308,66799,31181,11606,69177,883,32099,18126,8640,74288,99263,80625,63558,2132,56441,60147,19022,65775,48508,89126,68085,53039,13671,29605,73199,5680,55507,49225,43242,15637,33932,35183,59480,95790,95564,53093,94843,72238,24720,48266,72012,55062,9450,97482,29355,43744,58473,34875,30220,92135,2902,54266,45689,7246,95529,7855,18442,28408,79954,21504,16221,12719,33356,8674,94352,28347,70000,90856,58270,98608,79615,8031,66841,62377,23867,59257,49721,4223,27400,92016,56210,50958,83017,64982,95773,85338,16046,5265,93830,50406,88185,85889,28297,41271,80789,35719,94693,85455,37781,51108,27793,40023,73346,33765,28486,32539,99804,89310,13633,68556,26124,7623,74121,72,59251,24062,97997,77328,88100,33999,30995,40836,4229,5778,57361,32236,55441,89476,39253,42711,55198,89666,66762,98869,5693,6250,84791,83830,77714,74105,27602,89418,22456,13848,45582,35970,76774,91851,31330,9630,30678,90298,95539,94566,80714,63578,87422,65936,27105,72655,32311,38244,85434,66640,99856,78906,30010,32093,5687,68260,3463,8722,18098,40314,56919,13067,55839,26172,70933,51380,34780,78622,22902,4598,77536,77913,8677,76122,69889,14754,59243,48239,92317,90165,38515,83050,56038,48145,21265,13396,85521,9621,7266,22393,29142,93374,47833,46082,59054,72669,77683,82499,61578,16001,6569,47670,60583,99184,22157,98734,67904,23418,20033,50159,31136,25007,89549,99047,31797,25564,55773,43751,24990,94098,14929,22912,77827,81903,1558,44729,66817,45589,88382,50326,16866,9905,42800,22225,38663,80783,69279,89689,8825,8117,89631,90405,79263,31236,30019,65381,61291,51255,59057,15222,41380,62088,1186,7119,46018,83134,47260,75081,35846,34267,96928,92847,55256,71540,39281,22346,4494,74535,73827,8306,46619,10151,10794,93589,38848,69104,94891,14555,73714,22633,51719,38752,14467,34508,71689,79467,55036,48298,20584,53899,94954,8439,72913,30046,67618,97708,87652,70767,2121,72113,74566,9528,21693,84952,8070,30115,15260,32643,2661,4585,31628,19238,10850,85709,32102,84852,92238,79150,96011,53073,97544,22315,60069,45278,2206,30404,81277,23258,9593,51107,39564,71639,91178,2629,24133,91424,85327,10574,63943,86801,62384,36093,50674,39441,66925,77110,9971,96074,65521,20226,62036,54324,62398,20516,40108,81708,52334,18948,66900,83258,43429,12560,94803,7403,82133,75744,97705,85729,24570,39259,74969,56833,82151,28264,27638,56554,62159,66758,8130,40077,67932,55088,25534,7142,55318,78644,3265,41425,7311,47328,48598,15506,24478,59526,28029,95400,42130,40183,68843,35571,27579,88605,22205,97604,58185,73144,45331,56705,93904,70798,59655,86182,66420,73917,67212,4834,88204,46931,43826,53711,79600,20853,40333,39382,87102,51658,99763,45389,3775,49893,44358,4257,8689,10037,9047,51232,60909,78122,48287,75630,19882,91469,93088,7933,77169,26022,83445,25320,3250,94353,55045,39275,45384,47576,3792,93664,4919,2428,28481,80657,25106,77365,60555,89884,32642,9031,70353,48565,6378,54327,80975,95226,91157,54009,11082,38348,57719,24439,59898,13140,7820,63394,74235,62725,4569,80694,83381,17105,72972,88806,54667,63364,22380,27377,64196,82827,13297,80018,70259,70014,14975,51037,12266,52466,86448,65589,75206,75003,60771,41136,52716,32249,40753,38248,73804,29449,16681,85683,70718,50901,5600,79305,28624,63020,82042,7896,5432,3717,97068,78184,908,66883,48914,51101,63574,6423,25520,8651,86533,48842,37164,80719,86056,33428,89494,27770,20443,85409,27772,4905,96256,10023,63722,52534,74557,7271,59921,96354,83180,75426,31759,39594,12689,58664,7782,92807,16379,48260,90424,26804,31240,11931,72333,50057,55125,88845,67082,927,52096,18372,17601,69145,51716,47894,6108,61867,45153,56899,65374,41575,91577,59038,39019,19486,2378,40107,87511,59908,8917,69954,41061,94197,95268,56041,24657,64915,2652,28191,99630,1313,95905,60919,80113,61558,88337,92480,29156,79669,52950,17324,56474,26182,84296,47092,9372,51682,13337,75807,90936,59210,46735,23571,15266,43263,82488,32765,21626,42946,17961,93071,38719,71383,45271,68176,41174,17630,29917,74647,33895,25351,25787,95691,14622,95237,32980,48384,987,64814,80230,28860,61609,53327,49880,61485,24313,41626,56468,58496,51837,53188,50209,2792,31882,66262,53130,84967,34888,23319,53304,42862,77257,36859,22014,64254,16970,52850,44487,60022,78047,28644,21027,49601,60480,98912,16759,51387,55981,56663,26378,90052,71037,21947,9071,70422,50872,16829,18464,88704,22126,6492,91462,78337,20769,28366,41103,11614,96693,36739,33708,60440,43180,46009,17492,29417,52206,80969,19218,62224,74590,20042,12898,66306,62280,72668,91765,70273,76609,29020,96479,7794,90809,81957,26748,45872,52111,5422,4695,18289,12001,20810,76021,85655,7328,17907,64275,50266,55388,9217,5365,91433,40866,90674,47442,12591,63612,99811,18278,14166,47071,53991,1420,40443,50966,2165,73843,87079,7776,81625,66269,50740,77755,17247,7532,4489,90321,52060,47523,95417,4113,3021,25527,21250,64557,35422,80591,19273,56774,12439,40377,46407,57203,18168,25843,69357,28980,7537,10474,36,3143,25913,40951,20623,95876,69000,82355,41970,99359,37627,39511,25004,2577,31694,92131,92359,96135,49935,73276,31197,78938,66568,66013,45472,22082,8842,4786,73360,47284,84473,80431,18750,56283,89114,78157,8019,21160,38034,86464,38466,43624,60765,15025,7381,10915,87032,1676,44839,116,85639,17352,32622,37344,954,33088,53398,31190,6475,45687,6618,73183,23216,58852,13079,63293,22623,52810,92936,43442,20916,77550,19842,47694,97921,36729,64909,6140,44459,59737,435,81322,45654,8231,60883,85840,28770,97258,34512,26404,20475,6446,29285,64168,49400,18465,38228,34903,17997,91801,47252,88713,78948,31267,73179,46513,8565,19682,70410,16770,7559,37279,13529,48314,7431,70550,38535,82831,88234,33820,60672,9025,89453,64950,94761,11907,93753,84157,87445,93993,89858,38550,39938,91508,80000,94441,61834,45978,99586,62966,94088,21692,64289,73904,3301,18785,55742,26230,88773,70685,10373,37406,34358,99612,25042,43124,55168,37308,97090,94084,22447,91115,30429,18133,13065,14903,71597,38395,73014,71695,62014,91997,34492,65163,32018,64170,44291,83744,41985,69156,2659,66093,97787,19319,73215,72426,21624,49303,92098,76501,47695,13595,97995,92863,73703,97829,98378,32834,66243,14040,86876,82263,75762,90046,42061,72879,57386,98526,65042,49936,69688,16368,5616,62153,26516,5036,13473,91270,58305,84957,62321,10608,10183,825,25752,56999,83561,35120,65247,29275,7724,3543,43203,40307,64795,43957,62711,62944,59426,18399,62411,72559,66100,59622,85413,41848,42867,78758,67437,41802,39343,10523,4779,56725,73946,2801,3776,76380,57175,89976,17683,77866,55553,7845,47650,66122,3235,56598,16387,46719,8627,74569,53119,50006,79065,44927,11442,2739,18810,81759,3721,86715,98907,10737,70675,76118,52323,50442,53382,14893,64773,50092,59535,1935,14571,72133,25292,94456,71701,91604,65985,38362,13212,65065,55321,95818,55610,46551,82037,23558,19792,65749,78081,23667,56944,27628,53150,4603,72961,9223,77305,26010,39357,34114,29509,66728,2261,33116,81976,92985,85129,16882,84018,69969,21739,24608,414,81090,64630,396,36424,41224,7780,92962,25689,49259,533,35344,2921,76590,27263,79806,23530,75819,38918,3254,69356,83715,84423,34058,904,39145,70282,32104,87482,20479,25897,48819,59192,92624,30516,57172,56805,5260,81330,41227,55980,17307,1707,59263,42355,43102,16269,67003,39252,45683,97155,75673,58104,30911,84092,29859,28563,2143,71224,96656,54259,3236,99161,61812,14492,21522,83751,20394,71580,7301,74579,93453,40175,19075,1698,66165,73973,37975,54279,80955,28554,43510,45586,63382,24884,12551,40013,80595,32878,14448,5806,45000,97133,14240,5080,11033,55937,13823,32911,4609,54158,88820,7857,5558,20419,59478,62457,78667,77265,44330,73146,26375,24982,59214,65093,96550,55623,71834,96411,29944,55518,21872,37085,95084,18921,93481,58562,85318,6589,54107,62866,67127,12506,92222,95319,89822,28179,9257,30755,41257,36187,1719,22256,70887,8156,14458,45455,36205,76748,25280,93647,73162,99732,20017,63371,48376,68502,86219,70589,3439,43605,23174,69399,14665,12817,93989,34624,79109,58879,44820,73418,4675,25252,55969,75329,27761,30132,7448,39010,29708,78295,55728,58298,10635,85302,78955,58126,32662,37031,27826,65193,65605,37470,35190,75918,49297,59646,63470,89947,60342,40962,83116,31358,40691,19335,18135,96820,19876,90170,7932,1811,23765,68920,59589,13541,30980,10467,93961,18913,23975,28734,26030,35398,17792,19271,9321,35598,86839,29521,39542,67525,18978,69598,47698,95276,80132,64228,63916,72977,70670,17491,97840,46632,20872,84130,34072,75704,97096,13768,64313,12853,92304,71063,71365,97536,53784,98777,37592,19768,27816,26399,34503,20213,71619,89585,98169,84470,72504,85946,52524,41960,5529,16606,20791,86270,83328,58942,66804,68923,16405,85598,14771,38772,10673,85136,4372,56039,35532,20121,75868,48713,60481,25845,1254,39118,68682,67253,67146,63858,3445,56269,38159,53117,44090,57280,50470,48109,37590,3546,49284,75912,31049,9037,18165,89383,83379,16413,78210,62925,7595,65430,6073,91151,83582,53306,74845,50111,52126,52446,8764,81267,43491,38696,69025,36166,97413,27686,40297,9210,4415,23973,33742,1377,30607,86921,79053,81700,63697,25014,90098,79047,32755,90158,15795,30765,61214,6720,7090,44461,16492,27749,84796,80737,13171,64512,55464,2436,70898,1015,18121,47276,75389,32166,91036,18825,52561,77645,81620,41552,22240,3864,65978,73294,79938,46273,17705,22250,97143,2982,12291,26371,26742,96204,89957,47453,78322,61641,31447,61141,93211,3628,22551,54608,79048,13054,99441,36754,19432,15938,6570,7754,1959,21839,60994,95386,25179,57881,43472,37361,27139,59330,80865,72689,61730,12306,6897,275,49187,99146,69306,32355,12741,26589,82402,32013,5579,65783,5885,78125,45958,79613,69407,15349,41325,59249,11734,15429,55791,10921,67574,17801,5269,43969,78974,77099,69556,40832,93447,88436,70802,91285,90384,97732,99005,55163,42890,48002,18475,35272,60952,28819,38866,26909,22062,56101,66550,45731,75067,60676,82737,37484,7504,95811,25005,13064,8958,56014,26425,83012,4269,93534,54459,29625,32609,17964,27530,65522,99437,19152,39335,56000,31146,91507,91344,32607,2775,69509,16235,68517,81794,49060,57442,57895,80227,88282,30183,69483,77802,65591,88441,19747,83789,60881,1286,31866,27355,74092,84151,3763,43481,68063,35002,27561,21909,54058,53775,9578,2819,82313,39473,3517,32972,23804,24149,35587,97878,79986,33404,26016,80698,26228,41422,89437,14289,28694,19833,15515,77898,62452,57934,96751,1228,73642,92641,96031,21036,57405,6504,61140,90234,20154,97992,53782,75289,36690,34300,15386,84525,501,10353,44792,89870,76913,60030,68440,33015,44337,57598,24735,7295,35831,56044,63422,38954,19064,29535,25336,18471,98289,56670,60542,95815,95420,72874,6719,97341,8349,40391,47615,92112,55992,23436,10431,7118,41311,20960,23659,57713,55486,94752,15300,71292,56871,934,11975,29716,4637,60103,26386,44857,67788,59260,72837,8398,95469,82911,39681,41185,8017,59917,7217,11040,89828,25272,73123,74281,28206,97670,17562,50041,11443,41518,94718,80024,92918,72522,27959,51543,75661,29562,57238,24539,78578,26878,13990,46557,98406,2282,25828,19324,70485,21305,90836,66744,45565,93972,80930,41534,27882,64438,84717,66610,60577,34636,47703,19323,22386,82146,33193,59506,64248,16504,14029,13289,11048,61045,7077,17804,19150,26891,36449,15354,55745,14980,3186,41302,64362,95493,11381,9704,88480,58345,83249,13291,51563,67992,17993,15956,146,10894,44094,78132,83782,7496,61122,5914,45468,504,19171,55180,89051,38991,53928,50412,99239,3059,67529,79671,57339,11882,9661,55082,14086,22728,14380,27333,86919,73142,71745,31722,63345,83373,78619,13227,49110,43974,1629,14560,2067,91156,40984,7128,6861,55721,60133,19329,58582,27428,91006,78520,66409,51438,42624,97402,59156,84993,84910,30439,74747,99828,86676,4147,31418,25585,87587,75080,14471,1593,28579,56328,85305,44193,99012,84073,15562,51229,19654,19286,49482,79392,62864,40230,17374,41892,47517,82173,78773,99145,8798,5998,32519,36015,71396,36029,73309,5065,96264,99955,16036,33241,83444,21383,80438,19764,45931,619,71828,77002,46107,51660,73041,16762,80381,66840,98582,60796,30581,45569,96163,55356,7380,50784,20002,67242,25071,77139,49663,84299,26562,16525,76867,11385,14600,75903,8954,26585,33333,46995,2322,29622,65378,22516,54832,77965,86422,64056,5910,12447,22305,86620,29723,43798,78212,68835,74063,17708,54818,88723,33988,79909,53371,16899,45230,1330,91786,14137,92434,46631,27131,88849,62906,82164,59299,33947,72747,35116,54025,739,7033,84454,6771,33569,65948,72509,38238,89446,96958,17081,90027,78587,29331,47840,75239,27229,36193,62543,49917,81659,32400,82580,78893,93670,87493,58457,89675,45681,73893,59695,55862,15127,55881,98146,38245,13631,31499,69559,60196,91872,72613,10611,45513,29566,50544,88554,19462,20691,92645,65209,23227,67935,73296,81496,44233,33706,60704,2456,20152,98864,80220,24663,86038,61031,65995,61899,42587,50669,24023,71126,13857,23503,82680,34145,12315,18708,39737,60039,61473,94773,14592,2605,9020,95546,44935,53244,25439,60045,12191,55312,86854,74131,86855,295,75244,71768,11051,64724,37135,6217,12640,81275,5753,8705,37966,86554,43742,82434,66119,60451,43693,88696,42731,35811,34451,19200,19387,30222,13592,32327,52600,32335,16030,86265,69076,60267,23265,91650,6689,56299,13687,68655,79463,36775,60989,85937,45524,6212,84908,70022,19381,39846,82061,64973,75731,33565,20725,23776,97942,28550,78673,24400,77026,84202,91322,8543,68678,40552,77716,84252,78843,891,24240,65606,24544,51610,55541,73906,89939,78399,51584,25296,94468,71404,54219,75247,87787,49556,94484,33367,44980,29879,83922,7671,99608,24041,11619,3928,14948,6079,61372,17566,99713,67605,48572,94865,76808,10132,17068,47295,36017,51020,59363,15470,50802,75613,90840,12946,58899,92487,83893,12554,61364,75675,64904,79163,60749,57802,37293,24853,67894,87196,48588,70867,67889,53377,39142,75187,50366,24193,37323,53065,83115,58728,90447,40292,82267,64662,74934,27529,62039,45195,54223,22366,33541,54514,53587,24688,80428,64553,60227,96757,88342,20381,78737,11744,6068,92695,6982,51844,78393,3613,75787,59385,52396,99544,53972,96233,56961,34639,3164,33619,59966,17680,30209,13954,41869,61420,46949,89342,95535,15775,25867,18345,48124,86386,15020,28102,56989,92681,19405,61837,86964,27569,90728,40094,34086,85704,16210,62292,3075,65261,98205,87372,75159,23787,42506,71065,64961,44819,53426,39820,39039,79799,75364,29687,6751,62380,95131,71316,7871,75034,50245,58236,58505,35255,36654,72647,25433,1451,64774,29505,79822,87470,81503,77106,41816,38890,93365,48625,18550,67565,40959,45045,28122,98915,95608,87414,58799,78775,98944,1392,75532,89528,12912,30552,17746,71960,16787,71692,87069,76165,30613,69686,24031,49005,45523,15249,9560,74377,41845,46386,43806,15423,9666,69344,19417,48745,59768,29662,35189,17012,4193,33095,39916,17729,73562,32757,2396,4690,19539,80342,98243,29914,99136,6980,27587,41218,2247,33471,84300,46024,98221,99820,19131,66723,94712,45348,35510,32349,29526,37048,35051,38471,98330,21192,8285,10189,31450,84449,66619,7708,47493,29351,28250,79466,26127,87782,14566,18684,79874,14522,83165,51469,54989,30565,1260,53139,18790,18896,92379,4909,84022,44557,49926,10286,55023,8542,99525,21276,38562,44395,51633,46004,19712,31225,25767,25165,58820,71263,54024,93676,67298,84570,4818,58854,34318,23037,25063,41992,50402,72933,93767,41641,75755,49511,30543,83867,39100,49821,25992,7072,81389,39554,4512,32362,36725,1551,42950,38995,61127,33517,42392,62427,99774,75480,2082,34917,1232,13692,69310,51225,79558,6826,515,55090,42436,47264,735,31626,55184,64688,59387,26306,41717,30109,35877,54323,41885,75943,82096,10432,67311,47380,10603,72624,54212,37430,54426,86859,71975,78509,35098,5067,95104,6109,11556,20183,63245,15962,8155,42753,33489,28874,86440,21196,69870,9841,27513,34601,87989,49952,76261,14169,99912,70892,9041,51983,88792,13498,44018,781,11286,24302,45595,9556,16529,61487,69718,83369,12175,3060,17279,55139,70409,74445,57480,91939,41455,13800,79555,48389,18089,13430,45399,50138,60020,81776,64718,56827,76640,62836,69811,86497,38935,97838,84711,60876,53001,35570,89936,31367,57988,53853,85070,17684,41111,45951,50106,4397,41660,45330,75188,66206,81108,44919,63519,53740,49536,47253,59915,3869,58679,59198,87798,10099,2355,58158,61135,17868,21060,74354,81653,40037,23431,6246,57610,11701,44132,35086,58252,30056,36712,89473,48082,35331,19890,20936,92,57432,75729,82770,3655,78594,2857,11390,8784,20788,3578,59105,48981,62473,83903,70740,41953,71306,29891,57093,53420,71170,94309,12361,32241,41274,10184,10462,7681,72986,19128,87462,81829,96151,76622,39625,90031,79447,79554,86218,66192,77874,73292,52029,14529,80031,26232,26956,26131,66770,76106,88265,33432,4454,78745,87564,57108,19897,25233,19002,73102,71865,81575,15739,20170,35544,45533,85696,35417,5972,60190,8535,36950,23825,90698,32587,40626,55832,25032,93777,44368,37441,34739,28780,9238,21146,48860,93710,66488,85403,27196,43673,81566,57169,77754,79160,50451,84945,39863,45017,94175,85393,53360,67158,1318,91399,25380,55094,46673,6345,29732,89502,58992,78916,87271,78668,31062,26932,9068,29086,29987,40304,38934,18339,91271,65348,53067,20606,24636,84137,50785,42973,65820,62941,48498,55740,2493,82047,6709,50935,37602,98999,43583,53370,26899,17340,71092,61246,75726,66067,75140,23212,33972,3988,69474,60807,32201,49173,32665,24654,18101,42951,87257,741,87722,8882,56363,9467,37205,39645,23920,62255,49623,58370,97106,96345,69620,45210,90701,18180,26406,20349,49911,36855,68577,16441,10575,97107,82783,80941,34301,73734,21255,93097,25416,4281,74283,75689,60837,36839,98751,27841,95923,12140,70160,80092,12945,49668,35935,20968,30173,15979,58622,97396,74015,40028,15390,61086,63735,53617,58839,34571,126,99576,15383,12330,93838,31208,34463,79023,90775,39943,26444,27158,33795,31287,85845,77696,56475,47936,59245,19578,92068,94774,62611,78779,18631,36866,44758,36709,17394,86187,43872,34482,41182,1160,17989,40938,29170,95979,93905,58294,28575,96223,67410,51699,63898,92089,55642,69923,16400,18025,83803,1906,43409,91311,62152,6128,20901,37673,4737,59522,56610,73761,62337,22373,74937,35516,28402,67030,33016,86372,77877,17898,22262,18843,60960,8675,24798,56814,54439,8688,81388,76395,57431,59175,29854,61375,43152,3343,18698,92991,38109,42823,5174,32398,27334,30221,6944,76733,81788,1657,4034,54500,2588,32025,46852,32246,97103,85874,20626,86043,96608,38205,57627,41437,5412,7283,81441,16310,7781,89984,25049,24232,8368,41567,76309,65499,33131,49082,75603,9232,34734,77342,50404,40277,75986,74375,40681,15706,51259,92006,6800,48453,77393,9384,76467,16801,47030,1569,44063,18571,65968,49226,79713,27944,38336,67260,50014,4478,96964,50994,274,98887,8313,45098,32075,18793,18335,28840,79727,55057,58144,27445,16446,64153,13148,33057,37615,63884,467,46020,74916,89539,26627,8654,95008,69290,5732,7360,90102,76798,35962,71958,61901,14368,60186,97638,1883,16524,75579,21398,97363,1749,46276,77030,23520,71660,44478,67612,46901,49348,94203,86424,4858,93133,91664,78350,83784,99411,44598,60123,63342,43013,93641,94960,53060,9059,80453,56106,42125,3218,9947,7987,46071,44595,8274,91854,80823,78083,27865,41129,6199,86140,3686,4704,33854,69155,62307,14249,46293,43726,35083,89149,95415,25464,39955,45345,94061,22164,77734,47875,48836,99998,35578,21062,72690,29347,90036,838,69255,49745,90194,43022,90653,68264,66252,70227,16018,21129,86662,74972,12536,70668,15679,68435,46662,35969,9734,98776,44728,15124,90503,29419,60143,98315,19568,80996,14452,80836,98239,90999,54669,50319,28338,79933,48733,76043,75299,33870,78771,28620,42375,2624,88126,54446,30270,49357,62716,53783,12423,75662,61377,92572,98862,66298,79947,1724,43940,37658,11773,79984,62158,16360,46243,81768,24127,38259,78109,60305,76182,37543,75601,29701,46256,70344,57775,82090,69132,16563,25674,27866,79337,24135,41831,98105,21531,38710,14683,77625,51166,59839,19809,51081,39466,8822,48974,76274,43656,33941,91716,76593,51821,79223,39211,89110,1214,14982,57129,94633,70869,36327,25160,38709,84799,42540,52358,29261,58818,58359,36623,34045,59334,64974,4083,34460,25927,65484,16008,8278,12529,39131,48177,54981,58039,8391,39108,27209,1423,67376,21221,33175,73105,55948,94418,13648,59190,34724,42701,15280,16095,54565,55503,67188,77201,57446,75279,66580,23245,69398,49797,14977,65676,82741,45688,87552,47822,74413,58214,4209,34989,87160,65862,59719,41342,56593,35040,92036,46704,90144,91436,27570,31534,85722,44100,53998,18453,38042,1095,32495,39054,29860,5764,81289,20737,14172,23984,8852,92460,26723,22272,9136,53966,22090,49887,88993,75440,81765,83930,86673,42610,60242,45652,72862,18251,40582,63532,70341,22023,94702,68434,69770,96796,11144,56734,53298,79798,74322,97683,80160,14215,94529,81798,84244,4245,47682,65681,50913,91642,27329,97874,94457,70355,87845,38406,11018,80762,18276,98977,44314,25334,99066,29790,72818,58285,88326,8942,76617,95571,58090,97837,7275,44321,17285,13779,66903,50976,9263,34637,72653,12037,79586,61300,26568,33136,34310,258,28016,30243,87953,17978,95982,86904,76003,6038,49358,60296,62555,96827,26079,96199,28601,99785,99463,89690,71326,13730,42110,63781,3514,85902,77066,33934,27845,12687,64949,35042,64068,95803,6149,90779,39322,25495,94365,88514,25662,92731,77737,74817,97534,46340,27198,19782,77434,19448,13598,6197,95273,7435,56438,97784,50162,94075,90546,12737,52461,53945,8153,73256,66498,29910,95412,66811,9634,77003,95707,23848,80843,47402,61729,96111,16634,29460,40667,68683,52058,21677,91352,64895,42566,7758,31469,68002,48324,84066,60726,63184,24196,23821,77323,21618,82948,37830,4176,68622,89201,58984,7667,23213,76662,77935,23047,5646,28519,89261,26526,17196,83796,78946,55562,42256,50424,40073,38085,94869,98342,65565,72928,29851,81601,42853,29777,78558,61589,11900,38164,64847,44072,34935,5453,78978,81197,63096,66414,65451,55568,33606,83009,84030,72952,96126,96270,30239,48057,79953,25115,7786,94973,33256,25934,43320,32150,32337,56240,59696,63731,60512,57293,2713,42177,10205,72994,71456,82198,46700,9772,75700,8351,57320,76345,73848,27079,66063,90141,39721,4685,20958,86849,76204,93342,52948,22207,27659,48101,88961,42597,50754,58553,4859,17691,35465,99852,57759,17960,50082,88260,79719,64763,6298,12955,68331,52180,424,35024,84399,91287,22935,86459,206,95552,97000,32173,38624,47697,85135,61470,91536,31300,57030,29673,32712,49106,72043,4757,32308,12070,30671,29975,85386,40989,20741,81024,48179,82260,1413,72875,29758,96959,9196,95611,10094,50732,60208,48402,92247,65706,53041,3550,99270,99007,71016,30127,4243,18658,92463,56796,91648,79574,20436,75308,64296,64616,66823,79202,52558,10137,51906,61815,35987,59394,18249,22985,34397,57844,28892,60856,74742,51695,39901,8901,68387,33522,41696,81924,71293,77493,57827,45579,23078,3843,28851,90230,18508,27450,10435,72813,28506,13173,70715,22008,91044,130,99965,43144,48593,56846,79083,20194,10482,70412,50381,85032,96359,1207,42108,3446,9095,43867,20489,22006,38459,81230,60125,94294,73620,69410,37925,29676,53718,94362,87645,85234,74679,5162,81424,24224,92722,11678,61734,75640,48995,75357,20743,5775,72756,92561,58519,35070,47194,9858,82136,83078,3027,29738,62923,96103,23263,71228,70343,66003,62054,76015,56741,91084,20939,66129,39950,21905,66825,8412,47094,84076,23046,3046,16921,55884,35490,57326,84586,76142,37897,74823,57869,18069,39868,48757,14324,24404,81061,779,59848,85023,88106,5694,41775,19603,90248,84026,30914,55793,36379,10130,81961,30787,48396,86213,64407,17596,1401,73307,15726,78336,4616,67380,56863,67913,21124,34955,51866,7179,95106,81636,78218,98077,58352,51434,22263,21208,41453,56506,91570,5434,24201,79809,63626,32600,26858,96886,89486,51922,69262,85916,99698,67761,83139,65537,47583,78170,3061,81222,31182,41753,96904,15621,4122,16096,66227,71104,96713,28744,67433,87860,29317,74984,31843,79891,90294,19564,932,53475,69899,9381,68209,21543,73935,67214,69314,34405,24563,91381,54987,72020,63458,36300,40276,8733,20899,72761,10030,79241,9002,64756,69159,26504,41800,33250,27007,99609,51283,68520,41692,8122,15992,21501,49133,96433,78012,43828,95563,23474,47229,65190,59669,27974,85102,39088,8498,73363,41026,97461,17070,33296,75873,66281,17948,28576,68072,19986,23877,58410,5592,77399,67654,32836,63905,22939,65206,42659,43959,25884,6442,35424,32420,76852,74580,78037,21786,76025,42838,39149,82479,7942,95895,99159,36523,51681,81449,28273,81734,48909,43960,11647,30728,98981,16573,7212,21533,27217,26966,86309,70068,75619,74351,16718,60606,53536,56862,31464,88014,20431,34062,16167,43657,23109,61170,67177,32062,90760,16092,558,90429,99003,21435,43344,24898,94180,44585,31409,21204,42998,51662,27992,15802,68739,92158,15932,98051,82922,88319,75097,9747,56974,28098,14500,23084,72252,23783,91149,20101,64271,62674,22288,13409,18587,59733,37982,720,56574,53227,44907,78202,34355,34096,78553,54734,72114,79560,43458,30312,44288,89781,53110,3571,38153,20210,89619,96918,43920,19072,40194,69711,42006,15495,74203,34462,1052,35855,86728,22554,67732,72250,27249,7097,70476,24387,61427,25544,8170,99318,53706,37674,70148,82162,32542,30339,32714,92603,25542,52590,57144,9011,79055,33503,82713,94284,98440,44915,39724,18842,24880,13783,94269,5512,87770,96038,74273,92869,15436,93020,3533,97911,74595,19394,3185,60823,89351,69393,10966,12543,70619,11618,52183,93779,95668,71986,85142,32493,96141,57162,52880,98060,68907,98679,42131,91553,69883,42576,65737,11133,25503,23792,79888,88139,1306,57458,888,62189,36395,31044,69909,47563,94439,772,45892,73278,24158,93072,19077,14183,10319,64263,74862,61828,50024,52884,30226,17246,95205,47365,42278,70214,69519,23559,79896,65503,23695,34428,59943,15466,90128,24051,70520,12758,69579,60557,71559,40914,46721,48162,69796,86493,3207,30433,73377,30219,69061,76376,99295,88771,19090,87325,19102,67495,28630,95434,93146,14068,32278,28139,27574,63312,12765,71908,9990,52088,96863,44937,6255,70606,44482,52555,68744,37845,55362,51104,4354,57041,28268,54899,20079,24472,60707,49065,3667,11408,9784,16180,22821,29590,82860,63538,41421,62528,64158,10285,66625,48875,65157,10753,35,31999,66276,4267,73619,5826,30537,50578,6124,13025,96786,19788,19755,92567,43672,71287,83154,1988,9244,92792,80379,47878,76059,93494,29845,1917,45768,40058,2486,34556,73564,60461,63232,42849,3879,34938,34522,45969,58225,42985,25212,71415,99339,58795,98851,8702,15964,18926,97380,28031,87747,56599,17911,91527,15884,29389,3851,48581,54001,28044,1792,74462,37173,36963,10829,51509,50380,33535,18701,76391,7931,51197,4646,26258,85997,48720,6634,39581,26558,9325,98000,65735,5479,41690,84872,52035,42993,4662,24532,20833,89551,333,15995,20187,9261,21996,64853,92675,97150,49096,7274,96314,74378,53058,83331,20887,97046,55430,77330,38307,22159,74151,43351,70119,96905,86872,84817,76342,74676,89547,90081,78313,50029,9683,4025,72890,49099,27067,28658,76276,70922,64023,28365,94369,42708,48028,76562,1856,91783,67295,70490,58208,98297,89577,70538,27616,6820,23569,18820,81618,20688,65741,3175,79704,85921,81920,82886,92189,96712,5471,23385,14237,19084,52963,3908,66520,56420,11621,2878,59262,92454,80078,8214,38396,19648,90373,58166,99757,57923,63643,24659,75900,30818,11006,71929,65316,84918,95806,43044,15997,52816,94164,41865,35127,83724,91887,70902,27277,50534,5664,41277,70961,89135,36697,48810,65304,80217,98662,70483,12516,34840,51310,9391,39786,79358,54333,74023,37639,53423,69405,29305,11274,65410,19767,89510,28998,55841,85414,6644,64268,98801,98577,35600,46854,8158,92455,58315,77771,74388,90742,8072,53910,30924,32860,22770,56550,33099,16603,43993,41047,37706,35158,87756,72525,11588,98278,55718,36578,50700,34064,82574,41623,10722,3510,39233,69338,47424,96245,77662,79404,91903,70847,72230,45392,5818,92652,79341,86197,3001,56755,89196,97118,66645,93837,30179,73267,63368,74237,30610,10425,70912,50331,35949,9486,93244,11450,92488,24327,13194,19936,43164,11838,95572,53836,50659,34488,66305,60119,59577,82764,2213,45639,91049,8894,26437,43810,46181,29960,58360,12115,82788,65965,83740,79260,84185,72614,65530,68025,63903,28854,62082,57236,23932,70012,56201,24564,97665,99475,95772,70363,88140,93309,73766,18523,82318,2589,93217,8895,82273,33714,27525,16040,82462,12329,15068,78025,65236,17168,65262,82944,14848,85703,87853,15911,70039,48459,70073,47216,64485,3968,47518,54363,68385,79418,32821,36380,66351,58326,91475,79928,38069,1832,36716,24662,10979,51040,27426,82149,59277,12058,1390,86225,48490,95117,29306,43207,86821,62075,1225,5035,68289,28214,48167,89881,48007,57188,9287,91257,88887,60380,55039,41194,56791,90922,21615,14238,39471,51086,54796,49873,35952,16079,9514,43113,29789,41750,85716,53594,81350,60184,17974,18916,73566,23025,78702,24284,50158,99089,89927,58342,69445,40594,34790,37341,74856,35031,60585,56434,51058,64065,97167,38121,5279,24962,5520,60999,71678,6256,71956,88590,11608,99467,26475,52861,40006,96289,63621,81377,84412,53871,5054,43015,97432,18840,53589,16989,51294,90044,38283,40490,88332,21756,223,7707,80540,75403,81775,82297,4697,98209,57588,346,12234,1797,87327,97783,16761,4824,47258,28996,55466,19822,52166,67126,33668,54479,20586,57152,95289,74290,85582,21538,15718,33335,46796,33681,85633,88379,66068,83846,25229,38869,64083,13652,55339,33100,99230,21191,90278,67830,17123,45593,97345,52062,87281,65634,22766,70848,42726,31641,12352,92372,96709,7458,10229,65168,3112,23633,39774,77420,62786,80450,42797,46034,64148,18095,82030,72993,58722,18218,84991,39812,10924,73444,39866,90523,66894,724,19831,64149,74703,38409,63711,42195,62531,94642,10158,38750,43184,29421,69864,2199,32471,2231,35731,90156,97045,2790,15167,81471,10254,82390,57596,33931,88527,231,39015,74713,94240,52411,59050,9689,73282,13332,46492,92244,75830,96226,72175,74994,56364,23858,35402,11539,97466,46643,93132,66582,36377,42893,51137,19669,97688,21385,58451,64705,63353,88884,32469,22526,36027,943,94750,36454,88091,35296,48268,32768,84727,94080,10561,25459,37194,2385,14160,61309,92087,29802,1426,5097,77868,36161,18380,65714,26052,98068,34993,74801,14577,19538,59388,51065,78850,70508,16445,73694,51886,70908,65866,79157,89457,43507,23388,91824,74662,36745,61801,81239,83612,61017,85561,98782,14525,30609,43482,86281,57581,61995,25556,49612,51267,15611,49019,86540,25545,14106,65459,15441,94834,10367,51021,50136,19333,10496,51466,68409,1460,59039,34723,79917,97941,97803,88020,60505,92755,93593,14798,24337,52050,61401,87580,25237,22627,67634,80167,30564,47836,54821,919,21284,9439,20577,77296,12100,41504,10825,80733,94735,74761,64957,22702,87308,3080,41497,76743,82596,4445,34193,68897,4808,70960,86595,30047,91452,3629,42438,13202,98092,27292,27153,42147,13703,75146,78929,66671,12892,61101,80959,22466,55579,98835,94707,94235,49619,65373,15166,72545,34138,55320,50528,56847,56662,91098,66410,79077,23168,17819,42051,70634,58946,63012,94400,13797,19656,25251,19445,58178,74980,99229,96609,20890,38023,54423,38512,9629,93117,35104,20439,22686,45286,55648,93462,68329,77067,89968,63930,27202,49538,58186,10629,49309,65244,70926,89488,38271,32590,88017,25873,82734,94036,28894,54732,58785,73609,39246,61319,76120,45835,78630,23718,88973,13060,11156,25620,19182,83192,50197,50767,70750,44208,63374,94404,31113,91606,4019,71928,87919,6491,19685,40287,27232,39560,16166,74932,92029,88232,76980,80558,45189,18654,15376,43505,8042,89400,24520,39289,50121,89471,34796,11565,95357,72310,48410,26047,14909,95959,57619,21306,69547,46058,3666,59573,75756,20003,82034,4868,62249,32833,50448,64118,96809,22260,83191,27269,94314,46248,75634,82958,23226,64185,61391,9294,74423,20275,60865,18070,34513,17417,85044,1753,54,58131,31512,13739,23367,35219,74746,89138,22463,50786,71042,32663,70348,15805,98672,18354,88285,77193,53647,47579,43295,65474,2836,73477,39199,42301,82662,17408,41393,23230,41547,97985,1075,54935,40434,74697,78458,17267,90483,72866,96978,66472,51257,60759,33236,78559,18984,26244,30775,760,82287,86984,67764,41645,98951,2947,99717,49290,67359,54096,67630,61733,3521,46494,80560,33525,62515,5289,92154,18692,27722,73391,43551,45750,65551,88804,86600,41352,73329,70923,95516,2817,52796,57692,80425,62444,73092,7243,8243,88786,645,5160,72275,94715,81336,60682,75694,98446,27397,89776,30674,13536,82468,3444,431,21746,3148,88669,40338,2387,10735,60613,67039,6728,81549,41669,53590,67779,99587,79527,39988,76915,8931,75096,32200,10987,89538,97481,14767,66847,55413,3503,90977,39324,17025,10653,61945,1522,80321,73403,54549,15194,74789,69178,51631,5752,61484,41585,73149,9779,70919,45133,8548,65285,71195,33786,30840,55271,81052,46177,4431,66171,15450,89324,44801,52091,74939,10092,60647,52451,78846,58344,59681,67930,77753,45775,98481,28148,73656,19404,77007,28611,18473,75445,21521,57334,25287,63004,78049,79443,38530,62470,56605,58758,67918,17823,34029,45492,84821,85693,59751,6914,72140,98665,35038,5170,40021,30777,27356,36738,99127,66263,11693,36975,59746,13734,41109,68723,94840,17304,95594,76155,94379,91304,42892,12716,78914,94388,3749,36854,25922,48604,86671,8749,47699,31117,62404,93085,20832,46120,60493,45694,68036,14315,73980,96832,72838,93038,20360,77792,12417,40903,88770,2098,46860,11240,11703,59990,56978,70938,85689,16156,19198,1040,11970,17450,60013,28607,4477,72743,37934,5675,62134,49390,4286,82883,25024,99131,77882,54447,58386,41287,9806,45566,93514,11276,59045,82078,74060,44535,38557,30329,44811,9440,37073,85333,29056,30812,64174,94359,83392,43877,24602,11889,77791,72120,48403,88678,8628,40948,68055,75500,87918,84159,28559,6549,40897,6653,13271,98994,45716,82444,38432,22148,41797,34341,28585,62250,41611,802,74433,87151,78663,41956,26961,80442,76821,68912,69458,32578,94350,86048,6761,77796,18166,11417,85040,73053,16317,31244,61155,49363,20913,576,1126,63689,14388,67908,67573,77494,70137,67644,54038,2683,39882,90338,91308,75706,66551,10922,81246,16290,86363,9653,32359,19156,9898,45907,40211,67210,46739,94422,38590,77153,27121,24912,63581,36628,67500,89005,79495,16031,96879,92450,20983,53551,38775,6097,31841,9296,10126,10330,35063,67051,12818,45902,69836,2070,60878,94885,8190,97738,18776,18158,25305,11742,75588,5046,8854,8469,3757,88732,82282,71152,34375,73662,9499,42774,90135,57232,37271,82200,89217,23379,49838,17666,82003,23889,12723,9437,70151,78018,91121,84742,40764,84736,73324,30547,63602,73825,93125,54919,99340,76444,13757,73637,12370,8080,76064,22241,77969,68972,28005,38322,51883,1270,12603,92474,59992,7317,27835,93971,79523,14291,53483,88906,77658,58828,13441,98743,98054,90881,9646,59722,81881,23998,55389,78603,23497,23960,33297,10436,72065,93689,95389,72677,58994,23705,4590,83806,44584,43725,95991,96897,72696,71449,8660,77291,21480,52194,38140,4488,29608,58201,63823,28260,68101,89977,91616,94384,38060,52133,3767,88413,27769,79943,61604,49253,53641,51390,71480,16720,57652,35334,39915,89518,76540,24988,8107,44255,17008,30810,6487,34726,13885,64198,88336,44638,2897,97223,79647,48725,69776,14917,77240,77887,85637,46048,20762,10602,14437,89607,967,21152,80403,1367,48325,55979,13788,42251,4462,41601,61805,53396,71345,87302,78176,1528,22710,85270,49735,59149,56453,64540,14727,85928,25797,81585,48004,78455,43214,44539,52168,10607,14996,34731,28228,51674,78197,17375,77274,87188,74603,97661,21778,30663,97796,370,29451,74085,7398,64726,15196,73769,21209,85836,73499,24766,26662,31434,96941,76932,38333,38220,7748,84418,99954,85354,35495,7983,4644,58365,79633,59052,60882,27843,77978,98199,2004,32952,56648,29135,30601,36313,549,29037,19928,81583,67225,62449,97243,45981,75138,41294,55725,90864,20420,17392,31590,76435,8436,92278,21427,7870,82841,73139,17882,49785,76362,16409,95640,28283,37179,79037,28349,87459,47211,86112,83208,46370,88402,28610,20023,20371,79373,39084,51912,38702,11655,43150,41671,93412,75459,62641,99327,26226,45526,79562,62466,63311,13811,51470,79118,8721,76151,43376,41659,80854,88575,91968,24395,24546,50093,1147,82565,38265,57875,68157,24979,76939,76855,25454,67594,60167,38351,43000,11344,61881,56013,31708,66583,37721,98484,42904,43973,14462,90064,85962,12465,6413,58517,85595,53649,54804,33736,17388,75421,89230,75076,664,58742,74159,56027,24569,25639,84400,78190,57092,72110,84769,40642,40991,43989,85293,63395,17471,4823,96948,87661,47435,80127,567,8556,49725,33694,50275,12265,88522,82961,29599,12473,20566,52552,98796,65233,91818,65234,11859,13120,33917,89810,90133,14107,93035,7637,15503,54746,68921,97603,33360,34670,79416,19980,86631,39231,66479,80363,75737,73062,27562,58012,22775,1511,25962,16614,16067,97520,22030,8787,26102,31599,20202,84583,6532,99011,58623,53985,52898,92464,37571,69879,51123,57234,33394,81160,72889,78690,32227,82208,27392,65189,68496,27654,2347,20326,82432,23730,73073,23656,99825,72859,23224,25208,23937,43799,46385,53916,45209,31,40240,56171,4673,83203,84037,70564,91722,17646,37229,56841,83481,67173,75339,59764,49582,59200,44298,43591,60929,62077,56785,38282,17586,71222,36119,56134,16228,89458,79277,63341,31901,73500,61766,46663,36420,31975,42990,59757,71298,10323,78589,51236,7143,22932,22661,42400,15789,25463,74830,24716,13225,76048,41116,55359,72812,50773,72137,84314,17112,2707,76561,74126,11509,65572,61494,35195,52336,27046,71801,11792,66946,84213,34766,47307,93945,9510,4781,33842,64789,50711,79415,70439,25096,96566,59549,14955,3964,33594,74555,29380,40118,80491,80090,7628,98920,2217,8272,24252,40685,34296,72369,52189,20941,29079,37621,54128,98353,35812,73381,18646,88157,83499,857,27887,3341,91251,10371,51538,30098,18539,29679,63466,23197,212,38500,97130,31030,50878,56976,1846,52356,4761,99130,88119,45734,46874,69020,90076,94206,9576,55457,1961,9941,32385,49776,31422,51569,63300,35401,59281,82548,13791,69749,5340,7796,89094,67387,97821,93752,92279,70351,27869,50128,55479,46526,93601,36617,83403,30163,75789,37611,50212,51384,68799,55556,94815,4649,4202,82630,29775,62392,62755,33453,85469,93058,78013,42463,87011,80081,31004,78544,3614,5662,70782,90320,72399,16706,5575,20093,1033,73421,84490,94836,79912,66660,66741,51292,84940,91590,50429,93886,8495,95450,19665,61620,89513,18953,47459,89584,84626,61917,99988,26198,35440,9894,18620,51311,98050,26365,84901,79182,92468,64019,23113,30030,25715,8128,16282,15636,99227,49260,43738,83004,72585,99254,26474,48274,84607,56563,97190,19616,51423,30734,56551,85664,25912,56529,35737,6970,59847,59683,51539,64753,73336,21653,76314,89328,90519,47692,74011,76725,19991,38929,23665,39003,75032,87625,47235,42938,9859,12032,20964,78764,95791,30916,6226,52527,7188,73749,51421,72650,60921,23914,38055,9778,7318,2636,95693,5191,75611,46994,17405,99776,12169,45614,85462,57650,25635,24471,25611,80893,55500,26902,90890,3601,53583,45454,20076,68817,56837,48968,89938,27389,64936,7017,12518,63990,84519,37871,26727,63270,34321,87752,32503,43486,85803,89392,81594,71704,42850,89264,82820,31098,9423,62624,71418,75714,875,11130,19166,54455,71917,33013,36429,25949,48286,57797,93269,2708,67174,59714,78719,81376,54154,624,72438,33553,43259,72097,59041,20787,28942,68345,71030,84328,57061,81486,52741,31504,53735,4998,90650,96511,1048,31326,13936,8449,36443,2595,92658,2674,88681,46971,20685,83714,99272,24799,65507,73939,50289,52888,55018,51558,71538,13068,43977,77435,5409,69959,33945,35180,12380,95712,37118,57483,32223,17888,56311,33902,5862,67219,39662,34998,68732,89739,31189,13295,89409,69277,29374,83849,23383,51591,7255,61614,9032,36188,2512,32936,7370,41809,19120,51508,12548,89651,61811,96548,2078,40056,99267,71605,54148,87983,7864,24352,71836,12046,99449,41379,71137,83371,68410,62632,76256,21178,60281,20407,69418,99075,10560,48839,98157,3591,9474,38221,93112,55239,67196,4554,91042,56604,60654,84929,690,89883,31616,73119,47531,64076,91288,38712,56034,58907,71658,48341,43028,52736,47937,75152,97788,2180,18114,26622,77620,15333,94640,49881,18925,24454,61435,46703,52444,82909,34153,13834,61193,53055,5800,2066,42921,98647,99483,49129,85597,50436,82526,15255,78890,67840,84792,67285,40492,54705,51807,83187,79709,60950,74779,303,13569,22119,24650,18687,77160,35928,28482,27267,36416,15759,45199,28331,80935,8098,23425,34432,69698,92002,39293,64273,66853,51780,71315,96420,98474,72755,81422,67824,59215,37424,21353,86114,23526,55229,1878,4712,98929,1361,69726,71565,41627,55845,84468,71478,16967,50710,16434,41337,84931,42050,63174,95407,18435,72552,88249,67263,80277,48393,73824,37413,92808,16059,9536,32684,23623,3679,75557,69014,86188,14617,14655,87234,96202,50750,63961,42004,15814,84840,10072,26921,32279,91771,478,48560,97360,77309,48920,10003,2678,78241,43380,65847,57902,28209,48340,53313,77113,21466,38341,1884,80417,73686,9939,67235,96642,91474,51945,24916,68669,65246,37754,33695,74848,6893,99603,27922,43706,25730,14428,61162,32545,46505,3621,30975,94699,65192,59283,94340,43019,53652,82962,63484,88013,334,10991,57090,82206,94107,24218,90702,15526,97280,48629,67138,49610,67388,25045,50709,39527,37690,53970,79335,83066,23217,65491,54820,7568,39839,76405,81146,79730,93669,83294,52228,14866,84923,79829,32567,75470,49250,42967,82727,83831,99215,20970,88434,69968,41634,17949,2038,3809,21975,69008,88951,91776,94334,45820,85601,94338,42441,26354,40220,79022,40758,34972,61308,45181,36898,26107,52311,76651,26240,9142,94481,10407,72265,84738,85892,19773,79339,18714,92417,32514,20307,86940,13561,30639,65886,49228,51562,6997,73312,58775,48673,64451,71546,95344,71959,83510,46227,36970,10277,95570,54405,18951,64320,47817,54668,13908,31771,48466,87286,32470,19776,2553,39584,33727,98653,8299,14960,83825,25536,12173,91951,81907,76210,18965,56313,93836,55850,12236,56428,62876,49205,62440,55063,24711,17014,15556,66432,69691,12916,29432,68632,26229,88908,519,71919,12144,28788,52385,23780,46015,15580,88503,26863,62475,29890,56855,60827,84126,6182,99782,87452,16138,33278,43437,64558,28211,80414,47028,10049,28203,52413,19860,24329,63419,59470,39590,93910,3769,47006,56276,61242,73070,50288,25470,18955,60993,12594,76153,50460,98004,85670,29579,46699,14650,87576,95605,28782,80188,98151,82514,84471,4303,29840,23296,62266,55218,4650,74020,47468,12500,97044,58395,96383,7829,85854,2457,37855,43686,37872,34987,5729,55061,72900,97598,43036,10282,12131,51902,77049,91245,68181,22193,76554,64840,57260,52867,29195,41754,33726,5369,23749,50951,86832,74280,71820,83722,72645,86866,79731,31431,3417,53231,37531,84762,9996,38563,32230,17998,14414,73205,29572,47429,71180,16449,3874,21906,97656,46941,43245,33282,99847,45041,60600,37910,20409,312,73448,88505,55311,7430,65071,52797,13157,44545,55383,47321,74311,38674,28350,67422,410,57558,1099,42791,40739,69804,28629,63034,71006,47355,56654,27963,86645,39372,61432,17534,73224,47582,35951,26055,51621,81609,27408,359,7883,85076,44278,77247,57512,70763,34313,14463,59907,88936,92785,92728,14986,28556,50257,24577,24488,79280,32702,10034,70878,57127,25567,18788,7138,31387,85873,81912,48292,89356,52455,98642,76302,41071,39379,75821,36082,18244,19574,79868,96596,37096,78985,83739,17322,94863,47653,88329,45886,71244,66592,32146,79396,47946,26594,73134,53265,21825,79780,54373,35087,70334,8432,3568,55685,43340,53223,93036,51060,60813,29614,66795,67204,35878,35203,53619,63545,94741,7372,95685,18262,82638,77043,29538,93862,35763,48198,99511,91711,41054,63150,56470,58296,26097,32734,27731,19178,76791,88861,44336,48827,40467,16778,73926,70832,16034,33723,37443,39302,95976,82587,39249,12903,77200,34104,33883,18241,43873,23228,57525,27862,42429,46179,85759,68388,6867,82296,59027,7002,26424,8003,43756,54122,31548,64506,37926,84810,82520,93500,79484,19060,57166,4001,30234,86029,327,72259,26850,89420,47425,74407,59403,26691,38529,24513,23576,53433,37759,42269,33970,96880,43021,2467,97740,46655,73255,26394,96331,13794,93815,55138,48795,38119,54114,58741,73555,45757,5349,70177,90858,90196,20317,21335,9268,35619,68239,89153,9254,6501,29105,52847,83860,31544,67195,15662,94130,43573,68464,77928,44712,4628,8969,415,47405,96413,59885,83053,27173,45462,50977,97905,67409,96871,97887,44507,92928,85998,79190,45340,67355,45648,9078,19595,47503,65386,34307,92618,73551,39835,84010,28652,37017,26628,70836,33596,36984,26398,94025,77622,46365,73790,46559,94351,78576,98295,56664,141,18503,48068,66659,83497,87198,75680,93324,79935,36020,74397,46064,33687,15419,66910,8154,73122,36201,61232,94548,7941,31522,33591,60973,60859,61342,95163,71601,93039,35704,77432,51949,53618,30084,70271,53186,64423,76119,37730,14248,13090,17639,88016,37765,33903,14274,32058,9500,39187,24832,9951,56019,36264,38605,40411,93504,43523,63051,65541,64059,39380,38852,78828,97324,67123,60037,73708,3529,4780,75739,63283,11331,41959,72609,89653,35035,23657,13309,44490,74079,73097,71833,5589,18333,86436,98967,44589,76198,12369,99484,47815,22348,34643,83011,13501,93229,36769,60582,83971,38100,96556,44005,26530,20115,98609,56245,86243,30638,31775,19849,66493,5740,61914,5736,39641,86626,393,95960,18125,71029,37657,90420,40981,86739,94695,57640,8575,67856,65979,79609,53054,43287,99808,22842,55726,49256,89198,16649,31688,4400,75925,60733,58240,82942,15660,22956,5016,86324,50307,72621,38580,71617,35847,13467,23935,28689,9911,31371,24774,36306,53653,81555,1220,1037,12174,30977,38083,75715,55908,38281,91807,46151,39488,8975,51024,94661,18226,65007,80055,54397,11067,54696,87084,20314,74232,75501,20929,13590,78518,59108,26460,90414,93793,91999,5356,14952,93863,67457,38559,86505,62991,64009,74660,16703,51580,73889,55764,42435,63054,48282,39403,93259,55156,27537,51768,80144,5370,91561,90860,4097,25531,60970,66125,91965,37954,44910,41886,73147,1490,13656,87992,89484,95020,12166,12061,24885,12240,21477,94848,21652,30941,48576,84909,1907,49429,12338,80355,35999,27235,42231,28248,22765,80206,51532,19829,99749,87687,36483,76226,32699,12244,17897,5906,78601,23929,64417,92760,27982,13507,75605,16484,43830,28167,91202,38187,23764,11757,22312,43757,42741,33063,61373,95555,77597,34990,47005,12953,30688,2159,27486,91073,95518,82469,37486,30982,20836,42606,2136,33244,97500,17176,92116,3832,88176,59758,25047,98305,64125,90933,32858,50787,41072,87427,5009,77013,39183,62055,19633,40514,51505,97083,66765,94789,58913,89813,84064,93701,49543,93816,46670,33161,64834,94996,68474,93331,64147,79471,1274,16118,93918,48192,5672,88844,22872,20422,7098,35280,61383,25729,41941,72702,87231,63512,51783,91184,20643,23303,58674,49466,69631,84334,93304,58866,29998,89132,70389,19658,30997,5514,65390,38955,19804,50648,39165,3239,34812,20609,24660,51050,26677,38511,961,95214,47835,60902,62538,57887,49001,7078,89142,12318,42094,10783,33977,39636,12256,60565,27244,54524,55565,64820,90440,61710,63271,68405,91456,26035,92913,97650,19342,76535,76937,70002,10033,99249,54861,50080,25469,43823,42598,37321,7953,79114,62701,89018,5085,39558,48513,72198,65517,1229,90385,40461,69362,31051,69064,82115,58886,15185,46124,15694,19709,65308,69806,40264,48806,63810,24748,49354,41307,27062,24019,48485,57079,75151,74167,32199,82575,9356,1820,325,59172,59644,13699,28497,98475,80405,23647,56793,6810,70773,48918,9127,98620,99614,57315,61103,61693,19726,23587,59492,49925,90632,94523,32925,57214,93391,44348,26192,87713,35660,91912,29005,23566,87982,23893,66595,55263,34063,81888,34697,38425,14724,58108,57810,69560,38911,43141,58129,34982,87378,34372,78854,96705,46580,36630,16170,91,61070,82949,51794,39595,1045,6356,90140,47047,56307,82458,60789,31601,52802,52725,82365,69242,95874,84220,11489,9602,92333,17326,96951,32854,57634,20069,94148,99738,51992,66246,91477,73302,51345,40012,80187,18783,37931,82459,20203,38537,15626,10985,19749,76836,47917,75147,25771,66355,25205,50067,12507,84937,37089,21049,71858,99891,31988,36587,84780,54897,16930,48291,36401,34365,96673,66802,9725,67153,46579,36889,34893,97192,32346,82975,26959,38854,80307,28632,71106,8102,49819,61847,63385,87990,50052,35397,76615,63821,86200,33058,74955,11548,31389,76772,37687,35025,43179,53751,21602,28030,77644,7604,4077,88907,86105,34749,79878,6152,86865,67469,18566,8877,71178,90191,7150,26658,87111,29463,34823,2434,99091,15254,53457,49157,73160,65930,41651,37896,68258,37777,80374,83631,66534,52290,42302,21994,18911,84564,50999,52507,81733,21831,91206,36083,357,6354,62101,157,23616,19951,76600,4031,25835,99950,58726,16447,77676,84713,14151,27942,90272,38358,91506,18022,4018,97428,55989,29894,95080,1588,25094,93508,79034,34930,61181,75026,3191,46599,11428,34904,74850,31713,51071,74320,72396,54086,21534,38607,18689,23832,79288,59817,83675,536,4333,83220,1848,92546,6181,34969,93571,86042,91808,27924,72347,5532,11635,45726,73109,95714,34304,43294,32574,54243,50051,5407,30701,69252,6872,96473,84768,96930,6765,89368,50274,74404,31392,22707,66702,94981,26294,40630,37496,73737,84869,40750,10528,4186,99368,54054,12294,70188,42836,15935,48553,34883,87933,76128,60393,37864,64657,33766,78474,10792,27608,16466,41999,31308,93821,5362,50328,60849,76077,46536,79210,93788,28411,88674,30345,94455,63253,18437,86426,73944,46173,44678,37175,96448,41730,5248,58900,77137,88802,49892,19915,5704,48094,40498,2684,33729,60454,56385,95279,62984,42852,15599,24717,63197,57164,60816,38937,90057,85971,40666,52585,92136,59359,81233,85156,84976,40729,56295,51802,95392,13362,45665,97161,11005,45333,90534,9004,26979,95768,84375,24303,32830,49669,9396,2834,34183,78541,48174,454,55067,71731,50149,36915,14786,92829,98283,40971,69601,45288,13188,45190,2096,25931,75696,96932,3677,51926,31048,16107,37136,99819,65865,37025,61080,29994,47431,68651,46303,80832,73731,5140,40940,89019,15955,33791,4981,32251,95899,14423,9553,29689,52341,39552,8440,25059,37357,110,76081,54982,39563,16188,42464,69752,65183,92599,78791,22870,14212,72069,67964,41252,83032,19192,32443,46773,20424,4828,10209,25827,94218,17704,86277,90703,41562,9914,47797,75212,34736,49852,60011,69588,36601,48700,78620,20141,57750,52071,47905,72051,27346,17731,88594,28752,566,33097,8577,40317,35283,80136,35895,49088,25513,22849,37383,1320,24949,80751,5129,54299,78789,33365,84104,3045,35292,60969,81909,14359,45289,36145,99949,65656,81031,35223,94232,17268,61685,35091,160,11058,57010,3854,22472,75103,89727,15035,80358,77595,21292,45162,26823,98073,16024,17207,41512,93179,42501,78760,6924,36772,17213,26832,70443,24597,98634,36689,91959,91221,71237,76914,65561,50225,23896,61991,9229,94654,90342,44393,98750,48405,29896,5882,42822,20986,32896,75022,83738,83022,99758,59608,94132,56372,50791,64112,70536,85371,89599,66008,84245,27065,91236,17738,4221,44495,98758,16121,37599,70477,93285,67259,46088,17489,62359,51023,30160,69925,75331,25138,26115,11126,1155,72544,9126,88423,90417,28115,37015,92011,5958,80936,95399,55601,99728,94426,42958,2383,28523,13107,6,99884,92207,67985,35131,91878,10273,28274,82762,70336,70060,32777,38262,18107,9693,55846,47099,87993,48421,72672,35529,58377,48608,98984,95647,21751,42000,71048,48862,30390,69713,45438,60937,52544,83593,70386,93976,485,84545,30194,4669,23430,2081,24467,47728,9783,59968,16940,80008,46284,91208,7260,57639,38061,45711,45104,9881,35674,49998,62483,5599,54741,22106,99857,19619,7494,2522,86208,23285,64767,12793,57336,3914,56144,71061,75075,97706,42170,15321,29416,93369,38637,3522,59983,79044,9686,89525,26466,54631,71942,55703,44636,41283,39985,3192,23126,21599,56590,22026,40416,60054,89095,30001,32066,25190,36650,29110,90505,50574,72697,1250,46998,67243,1689,87337,1914,79718,92489,90539,82998,45574,52104,60197,73540,7711,45458,86897,62319,93562,78900,45827,11991,97495,54525,47202,46717,74115,30385,56397,51134,88168,19038,57264,77632,31216,69937,33132,54573,76503,63672,47280,45337,84678,66591,61273,95259,3990,67289,89348,12317,42298,90213,87143,25602,82976,4733,22021,84311,95948,76138,25698,45475,55819,20801,74325,96714,75033,46832,47203,30605,58182,55627,76273,97328,39341,90778,90870,1921,15507,40990,90670,1154,22925,24277,730,2701,19919,20959,86605,65296,99041,39726,83826,32624,4386,90772,61332,27522,18257,62338,55795,64265,40463,11078,22715,23662,89615,26555,55525,89573,21467,30976,65447,30244,77316,31506,4408,43899,35940,83986,92259,19172,15919,15545,60217,46986,62023,22989,38185,90819,1517,6631,3551,210,37453,72257,82295,67316,79641,47167,89867,44374,18495,20956,62415,14188,80266,5776,76879,42748,57371,14398,30373,37415,74674,91447,75985,48488,78046,99588,82324,53268,4436,3508,93619,67746,56293,7240,72500,11758,85996,78709,91890,19796,53544,32997,44600,18221,95723,47968,31036,8968,70222,43792,10050,81243,42843,23565,83452,92908,62035,50987,41469,49820,27430,57014,6572,14228,69574,81529,57904,71785,20048,76660,62775,46222,69660,84667,19109,16089,41576,99103,74806,49862,48574,98296,59538,1348,81543,96994,2823,89497,41630,69566,23355,53786,77170,32030,96730,63363,59673,80833,42473,24648,55866,33548,68484,10433,99821,94984,16288,95577,96148,39038,52779,94363,854,81654,52428,4856,12686,43561,49648,75148,862,25401,63832,37984,17894,93069,29026,34148,7355,52046,20466,85391,63958,71677,82750,803,32421,68023,77830,85074,54532,12487,57026,75311,39146,46422,22735,53761,57447,5991,45529,11131,89017,78260,66594,19787,83982,57365,65254,42025,80324,56979,55517,90444,20497,37823,36831,82055,64193,93318,7685,49273,29577,45273,755,511,44231,29489,60685,77440,41955,81053,61019,10335,4748,4414,68849,50662,98666,25641,64473,51309,80232,65143,43531,35946,28790,97928,17009,85590,82938,73958,60244,18947,15152,86257,91347,84820,60620,14677,52019,35079,6884,78960,17806,65359,80977,92713,65184,65587,26958,5388,99571,86981,89859,31717,9049,95188,7357,89934,90873,93033,77822,52743,60359,12484,4773,41282,72220,5880,93080,14408,62593,53852,53474,18137,63862,12373,18484,52004,11372,22941,55709,71154,52531,21100,13761,10021,50415,16438,61623,81963,83441,70401,93168,96006,41303,5143,70812,61105,52458,33436,59064,65415,41888,92974,4119,81485,94176,7859,88167,11482,39663,37155,20766,70678,99466,34434,69893,57202,14434,96856,4198,44599,37780,57776,82982,26114,31192,18150,34476,50207,2072,79750,40253,25965,2865,95136,36039,10857,48666,73793,8898,63829,23856,11230,90021,32789,30027,21669,67372,62072,98991,7965,68546,1799,18832,39530,45588,85970,67958,29368,18910,25993,82748,43967,33624,79028,76213,53668,15669,23681,97672,50557,70625,26844,46261,30334,62254,32689,54623,75707,63213,77799,85326,50021,26426,19241,29485,44211,60772,36357,76185,39716,90296,92284,81753,39035,51341,11222,57613,93302,19239,55543,23206,28901,85134,73696,7103,33461,6228,25739,63789,18338,37858,79016,93539,58431,69103,75540,76143,32245,54117,28708,32666,95708,38566,21166,47082,95433,1510,41430,48043,84986,93011,99876,60534,96012,76029,19663,42417,93769,32905,81202,30998,46801,94405,69031,36229,78304,37228,57742,75233,12186,86610,9945,7070,98655,83680,9451,2697,92738,34079,20336,62891,4720,20299,31235,86000,22689,2463,30762,52052,44050,60298,35463,83832,80785,86072,13279,98288,7462,31710,24574,42467,99977,80963,95439,59691,7045,37752,19431,50937,18317,58675,94527,14343,17036,10308,93128,82850,13705,23593,96825,51424,785,42491,1314,79863,34565,52165,98911,71099,77924,67269,48071,29429,12837,81676,75898,76209,45602,82189,29977,5151,5113,73110,7911,95179,89467,98190,74656,2100,93345,61669,46482,34564,7146,99350,12734,26252,35173,76708,31982,65086,77554,55071,59811,42214,61700,72745,35854,60146,30875,86407,32614,90715,61384,19721,34504,7416,31517,88386,1038,1467,37530,87619,95209,97367,41175,92919,84800,21253,67642,51809,75176,77600,132,81472,35615,67421,45238,53846,42432,57186,20809,41681,77041,46281,38113,90381,1393,52782,66009,30104,81884,30477,33865,41492,46979,77230,45672,57883,34947,827,26186,61518,9105,14912,16297,27951,64427,17423,30386,78611,85425,87638,88251,64238,3337,92977,50096,79319,3030,17007,77188,72058,87849,46683,37489,7037,42715,80340,80600,96615,6115,74641,62162,50076,99346,22767,88283,53935,49446,74329,15198,42725,15056,87649,4162,60439,70159,50713,64905,3943,95776,6373,27054,24177,66044,94602,77250,75940,53867,11010,45400,24565,2653,10569,34675,44273,52930,38579,29991,90,70171,23294,4961,5963,14093,74654,34530,2812,48506,17316,6000,28650,68114,87006,50332,43040,7235,40710,71144,43256,69419,32183,91986,92824,71173,60634,45692,69022,98178,87809,68844,34570,15572,34335,15072,61634,7549,77150,79397,28849,16680,33868,16892,95778,34156,15970,57592,95613,14512,25008,14019,56285,20785,19649,37566,13452,3078,62709,89428,22387,69791,78826,15688,44501,57269,78602,67200,35665,18693,85950,69425,83166,77574,72408,66510,15914,82232,51617,109,57838,11139,45177,99386,77706,64976,75519,45371,22007,24775,14850,97212,60763,33582,76553,34644,80635,61386,83051,41376,68365,66709,83336,2039,64934,22056,83584,8652,92937,26299,43617,6484,11801,82609,87808,57693,19149,97770,49614,14098,90912,28351,6399,30939,71212,60486,82644,78259,90050,74964,10818,24605,4985,76060,33641,48023,66315,92169,18918,87260,17753,23971,57961,58363,32396,51125,64825,38606,89045,42616,33150,22384,76747,42779,84641,90793,87285,9803,23959,13587,74989,83761,88561,26796,34180,42629,3384,96611,63469,28692,39279,37304,1444,22077,77564,95781,86917,58638,71839,53218,37713,54495,11188,68860,26573,81640,24042,54335,10203,14859,15518,82258,36942,50566,30042,25947,47081,28489,11280,50296,2162,19825,45996,11180,83552,11949,82299,82808,85360,61398,73537,75896,8793,72248,8912,57535,19489,32402,39274,27493,97013,68480,71569,41767,57154,35451,41039,72034,15923,18893,29112,19545,15478,98189,88615,4966,83918,84790,3367,45304,46685,45110,69259,94782,82781,27085,26834,98329,76127,83344,11310,16406,68304,28521,3007,48408,55000,70682,12835,88456,48855,59345,99335,13058,91061,47273,14874,99590,73801,48521,25132,12868,59920,90620,72659,14846,72909,40106,23707,70674,41661,86828,67829,83728,61895,61572,26483,69941,75435,33622,29138,61457,44433,35671,14328,34241,58756,53452,25022,33676,39956,23236,1836,96278,8818,90404,15613,70808,48267,34074,74849,4942,6221,85300,56303,23734,90531,79298,98553,63980,88819,7719,38413,97893,52242,74546,26190,47713,47341,48258,88862,97515,16486,50004,36798,93624,85078,43238,56698,37091,25144,6657,57111,38356,18682,11302,91242,8201,29243,83157,72371,4639,41117,24589,70814,32796,25393,29875,85423,88914,58048,34973,96244,51869,21535,68749,25735,51870,16417,70427,61289,34319,87101,92935,89499,96459,46527,9246,83628,49263,14280,28526,4767,2851,74859,39169,59524,36674,13862,85145,89798,495,49666,22000,81507,6274,1702,96528,73210,67486,29354,77079,91873,9215,33163,81150,95120,34472,63321,1170,74501,40859,41273,43428,45194,60607,28288,12229,35267,25637,41108,84036,19469,40419,95832,12008,65179,29324,35276,31124,3313,53359,62990,37047,51158,23533,63680,2293,57069,32922,1886,82140,64747,75194,27874,18153,25263,41820,40639,40670,99055,23805,93869,32070,84085,58868,44084,60159,85786,49731,43933,62562,52397,97114,87703,18077,32090,46953,98860,61962,25126,5892,48877,44473,8634,9732,43175,5505,80015,5462,56872,54535,43451,23457,73650,27896,28174,1922,11790,75899,71741,13129,11320,77970,69240,44227,64600,71148,50963,31966,5008,49824,85034,36786,28370,47351,88863,32326,32006,45070,74981,25395,40524,13873,80877,35220,66106,1202,79591,33858,3547,14001,96335,86279,4826,88278,49386,82201,98703,57398,17214,18405,83287,39788,41803,58458,78756,97186,5765,30540,94644,39622,14494,93973,52566,84734,94528,45721,89600,11981,72207,42143,38767,33739,82697,62013,7046,51737,29927,7910,95436,332,55588,93019,32428,6113,73624,99780,32920,38374,654,19295,12472,64635,8924,34047,23834,58406,68386,48748,94990,3394,50270,17086,25820,17645,16396,59985,7940,330,75218,36814,73393,62684,66458,42198,8013,49987,87059,78903,9443,77989,44133,9900,1128,43468,94257,39012,67394,94265,36339,73896,66079,62445,27989,24501,62111,81451,94918,65582,13253,61637,40623,51822,51609,51087,89996,52602,93690,64179,60079,22900,50592,54308,20752,57946,6272,5323,68591,30711,44666,90940,95725,52048,95486,6625,32656,36958,20260,33050,83981,71995,11396,52374,57132,47449,18667,86777,40372,86749,84795,49467,31742,31707,54486,57989,82264,45950,89641,41796,62639,21148,84848,63169,80021,48651,72730,12421,98717,87343,1843,11502,74096,78376,28262,57028,81623,24978,26795,78478,11591,24072,15256,37873,69949,37189,42141,64979,56164,55402,26528,81077,22669,80224,10842,21198,95230,95489,96209,81748,22693,72618,71488,97091,96650,71898,85160,94902,47922,65002,43169,60818,79510,50600,98749,20905,93731,21446,10833,92816,37923,32930,32080,20448,45423,78421,53468,56583,10536,11748,90512,82829,96817,80906,17333,73357,12882,87100,58909,86205,67233,32839,18712,37460,2161,25759,50969,29440,63377,5483,75543,18026,19821,19944,9866,4347,62921,85900,40892,43546,3213,97822,13186,7369,39765,36048,62981,63427,44219,16673,13181,45120,71797,2257,27045,81570,33406,12176,34762,63846,58349,42206,10716,92328,70001,98939,35464,96716,39041,29009,55732,27779,11646,93478,59766,84741,88288,32460,99737,24889,70302,52289,9147,29555,58650,45658,38998,7615,58077,509,2924,28258,88431,98535,12914,52729,37172,50575,35338,18522,13382,89632,63636,83854,63085,15126,18366,27298,18958,65990,95949,7861,47398,33155,8139,67851,80951,17459,27238,1302,23445,28172,53075,66733,59551,76133,12509,39775,50753,14597,89897,14499,99647,79826,95652,14997,31874,68667,8680,12221,20614,53859,94593,24967,60998,75801,62228,84271,64200,62167,86779,73605,45914,20570,29381,22634,67432,53165,35943,16580,68132,28888,45928,57147,37062,86636,73614,68926,28093,11292,76295,18228,91946,1892,80242,55822,70054,48344,2043,56815,54575,33813,25832,39476,58,51248,99008,4531,37891,25128,59512,18295,81847,26288,86365,39268,28372,21414,10329,849,12671,68829,62351,83536,26084,3559,3909,92916,97159,82776,19934,53138,26402,26625,24489,63116,17468,21874,19027,53385,96804,20318,57409,62344,76228,44825,712,19440,12802,18326,37564,4725,59747,40382,1796,49921,65477,5875,38368,75264,27275,83542,53127,92786,3407,21318,33646,68293,84038,5114,84857,61004,23755,88248,38739,48461,19079,30729,80947,99044,83699,3058,26631,71835,4580,10725,48563,60769,29244,52009,88374,41840,15571,35668,24205,55493,58976,51327,39536,42263,12422,98606,74044,51760,13183,88317,74272,26253,43572,58242,85022,91877,22219,79516,68636,68861,29278,73368,18171,91003,66381,30000,5224,40936,69810,8079,36743,81488,92062,44318,47929,79088,41341,31365,31868,56099,86405,73923,40889,68965,1708,11519,92103,88315,68397,33850,48288,70959,72085,39583,52024,89171,81220,43173,31346,19450,90274,81066,35162,13341,27810,62525,39546,86164,81563,75560,36078,93098,55528,44253,74057,98498,94446,55015,71649,33346,84581,63437,7593,82483,63808,3872,31851,95704,27489,17795,48495,82895,91419,82791,60754,11056,11766,57940,27609,50107,99141,52408,75748,10176,91685,66657,87193,53682,17500,45629,27822,17522,41220,42453,95764,89840,17846,92037,54045,75449,64981,22816,78057,69809,93176,14091,19415,47972,79677,86004,92289,85764,63319,69715,75855,87906,46108,21172,10529,937,81460,33410,68129,66483,71079,63180,85547,78363,48316,96969,12092,73126,9288,27552,59121,77119,63248,23837,66162,57882,42677,91556,34427,61970,83535,58175,94052,47384,96702,83882,85484,56798,71094,73529,44301,76994,3936,25955,76199,92923,57043,96287,73427,16463,99505,89734,67512,50338,28164,98876,46449,48899,39126,17389,13059,63782,21795,57128,64284,17386,2799,11898,57586,2120,97956,82166,94229,83008,85744,67095,92531,37023,67941,44923,57428,72781,93864,85036,59654,12203,18291,71947,39090,34347,39557,10288,48351,6419,60842,55262,24833,37042,80366,40807,38385,70156,86411,71561,91802,32862,80999,34091,88294,55929,64577,98052,22302,44965,60864,55469,26087,27239,11393,40516,36332,28212,79782,82826,62683,27204,10315,64187,50822,2022,48907,98908,4684,73207,42787,44686,20242,99546,16032,37943,92680,77577,84866,15906,61882,59640,12185,18487,71798,62882,5249,36392,96114,42102,10139,96022,78384,79148,60766,6716,29459,67459,88038,13182,12967,55931,64500,18904,64681,33552,94738,18255,95545,69737,7640,16901,49784,7687,81574,92008,31638,77264,32028,54988,18591,57907,42016,38970,70607,92684,39809,83407,58059,16333,83767,46872,25226,68787,88453,44813,65302,31872,37144,94739,87124,20715,43135,39689,95374,65448,19135,69878,57908,69230,17635,28065,74153,21878,9452,3806,72400,62212,65525,5257,18004,46714,33744,27724,48222,71167,85565,70080,2476,87209,49364,6275,75467,82908,96998,40332,4004,34333,59023,33219,57879,45841,65122,25301,81489,70170,33450,81111,11675,623,13650,520,40749,56728,39683,2254,96400,55097,88035,71622,35643,47824,84121,66054,33812,22906,31816,69827,33735,11121,59092,37020,86752,40515,60078,94445,86453,74870,40680,94290,11226,42113,45837,78539,44657,13911,35432,79165,40799,28545,98418,33701,54579,41980,56916,47443,19439,23723,10313,3562,32987,62025,56280,2336,98895,27399,82332,62289,17292,83710,7014,53716,98332,98149,72790,59876,92083,25822,51933,97746,36494,72256,36173,76363,17330,92772,48687,23325,94147,46250,77360,90263,18780,91846,53488,62642,65933,66600,46958,998,18579,2844,95732,78310,91741,55768,3618,48130,31143,33554,7817,62787,22504,44548,99189,54637,24510,43254,49095,89341,34759,59254,40741,80647,57335,58581,42421,99980,17893,91787,85315,91396,41016,64672,66292,63014,80820,42811,14218,98078,66335,59428,61198,94716,14679,5134,4537,32657,97889,20518,58936,37766,17000,97080,54825,26784,68490,40970,68078,47708,95368,3633,90152,52517,52138,45997,28276,21442,66423,98760,41997,86701,33896,43237,80744,30438,25293,63708,8572,44761,9189,79524,96322,66121,775,34645,44799,13116,87631,24631,26494,36349,64755,33102,80346,66205,34757,26713,33167,63921,55545,8160,59544,7619,80876,18254,78436,715,75314,4476,8411,52388,76455,77679,60141,90480,33944,61932,87279,90727,21570,16176,95872,68456,52710,86310,74046,1869,95140,41387,43597,98745,47912,58394,4116,84290,14102,32323,39730,19529,42458,29604,71455,71549,13379,99593,93563,25944,64978,65573,44974,57708,17351,42632,67691,37914,69253,34205,33659,92291,43782,57668,44161,91179,1703,12042,55274,25260,4058,34495,73369,33965,25426,70372,30476,31316,23800,39914,38420,83111,67703,10188,28195,12204,81165,82715,78470,66307,12457,61942,24625,75682,13934,37043,47122,92580,32472,67040,31654,63398,35121,64838,21128,52119,88189,13347,70761,76817,65133,60169,56822,3863,59704,81818,37936,12041,90116,86074,50718,63805,48304,98993,89637,288,33888,20347,3479,78196,84850,41709,54257,64818,74650,98560,60922,15197,39715,36880,62281,98014,9959,90762,55991,52553,46234,81949,76328,58495,65294,33678,17182,52572,74765,39540,88950,87223,30890,84603,60213,34017,80538,94970,76741,13201,45269,4398,7915,35297,46790,94072,51632,23904,56387,75914,66018,5215,51067,40660,59030,78510,86545,49369,74358,62049,95307,82984,94047,86864,72814,84933,192,46013,49093,51354,14824,25988,97628,24824,88684,41358,57792,58617,70407,82539,93706,36221,74512,49977,66576,21896,79249,37771,50579,34951,48642,10942,18330,69504,14678,95099,5688,74598,24430,94450,92966,6431,85607,79881,48064,25427,95719,93007,23055,45100,10661,12286,37550,62631,37711,51039,49836,91068,38908,52494,92886,53833,66387,5785,13607,80942,30535,34218,74723,50431,7809,8772,7986,86619,2211,58686,91119,14861,79525,16175,17088,49012,58947,61036,67014,97676,76454,80824,48717,22965,99745,91028,45320,97323,73274,52974,12183,20344,12535,37201,54309,34008,9961,68266,98792,58923,92621,48823,49734,69113,8448,35128,97269,86058,38716,37678,21513,47390,12708,32652,44676,1453,67274,17360,49799,71591,45483,84089,20947,24118,62821,92211,62931,33749,18889,84390,43393,82280,5480,7388,54836,31779,48988,56347,60776,98640,47481,84744,93734,91033,41550,31751,71475,31059,49483,81021,49963,98074,34034,20565,51194,81143,83080,84627,46143,90935,14553,43658,2449,62687,88378,98625,7305,96286,34541,19346,53824,87481,80394,42146,78500,72270,98918,20094,76471,81318,33651,68949,76451,72159,21699,39515,97986,19839,88604,34876,39940,75666,24054,53872,68238,24505,11418,12416,54753,51840,22592,56445,1480,51706,28988,49793,53279,68830,52100,64689,91342,83942,80165,48746,20919,33567,94686,85479,69649,13344,30731,39793,41293,42945,82422,12942,60887,87116,79773,83248,18644,85441,76844,12088,23854,42586,31730,68935,39949,83838,78454,52023,60537,98274,55683,22165,59429,84936,6440,33480,55459,61971,87957,62783,44414,12711,61177,24335,54673,20341,6211,59682,15851,24999,47470,18668,57384,82262,92583,9227,81576,39197,74006,58283,50985,14652,44564,50890,12429,18546,34839,42020,32856,78137,40692,28805,81438,45379,44258,63742,71631,97303,76526,91046,73777,64955,24614,46855,86301,4706,77507,97121,17338,24191,35278,16231,37622,85715,92167,90283,69263,53238,41530,96048,9102,13568,48090,26332,47586,25131,94371,3544,17228,14156,85000,4663,61288,29967,41017,85080,37587,84998,89790,51651,37547,68033,91659,68461,98787,87486,33142,76837,41377,49180,58244,2582,79140,98844,140,43147,39435,5643,35324,12785,67665,16027,20040,55006,24259,51546,82058,29228,53677,31994,93986,40368,54078,87050,57943,11401,68369,58718,14145,60863,75392,13215,51774,75158,41085,24525,46611,86477,96487,56001,46338,29483,4428,8397,88953,67641,40359,26130,74820,73787,26885,15371,71034,53481,22457,2345,20590,14660,96655,72050,30885,81287,88318,16969,3483,15737,56631,9807,94392,41864,83541,42816,26614,76255,73407,49298,86217,85511,94104,56694,31984,92740,35900,76587,92325,12225,14985,69996,36473,46099,27990,78664,27126,93987,62718,24457,53136,65136,15671,53550,54969,25341,83343,11476,35675,46014,79581,26043,84556,56935,67494,37108,64837,72714,54854,54664,87344,28166,48936,13745,81167,19127,38375,93616,84592,29,84074,70027,8821,53059,93424,90150,42142,46061,58013,93613,71145,73202,59740,76336,86480,20645,62708,80884,46576,58020,13833,83507,69655,26195,23259,99446,98462,51419,66526,24290,54807,52890,20288,12458,33388,83480,56257,34944,39650,69129,71430,86160,8794,1368,22976,31475,63698,1970,95933,53260,91330,97812,93107,40510,97673,12808,36780,48606,33598,24699,79623,44645,70929,24458,34315,63455,41698,50113,21262,44943,43338,7980,24947,92320,36023,70037,41068,40356,76701,97945,47054,57495,26941,70737,35633,21200,2351,61587,83717,27151,8441,1272,75190,92576,97493,26606,99155,54215,81764,3878,23823,46253,46697,70281,60018,40693,71939,95927,21421,49724,80583,38315,30040,6460,76211,45447,50690,24363,44547,67590,83167,62791,2163,23289,78032,45479,2134,10448,25507,33255,73001,61368,67185,95050,92451,61513,2439,1684,41680,47643,5220,8268,24286,28641,39597,36182,51027,11937,81028,33658,6332,61566,99478,96972,36667,58940,28232,59825,90473,36836,957,28008,15909,52622,89843,66184,10012,90353,54062,88835,42307,3556,76301,63005,62559,99237,61839,61353,1658,27671,52288,50978,37152,94050,54251,69498,69227,91661,99240,82158,68608,53047,43398,47494,27934,17110,6022,82242,58595,14301,7985,7406,67304,76135,15848,49954,49620,59934,53042,58896,97131,94224,48753,28932,44966,58949,9502,14385,85114,75253,10861,15095,99660,97762,52832,51124,5198,66000,88818,18835,79653,52184,6671,39338,28738,12768,14122,64958,88625,90959,76686,76089,12074,1492,53156,16128,84345,82864,12057,10775,23118,47535,74919,50961,50930,87866,80424,26028,58423,34481,15207,44688,97231,64844,60261,43758,11430,16897,29771,36783,8435,66194,62803,36583,14165,85814,40939,90924,77289,37552,32729,67910,58251,17157,39840,94676,13327,54927,35978,38098,20348,13950,47022,93621,43592,47337,812,1276,89919,67818,49192,39667,29238,97064,19224,38975,29454,17539,6530,12781,94662,30585,28529,93798,8109,33040,37595,38045,81030,11491,40401,49038,47079,82492,88003,50064,58959,71337,66652,68997,97568,78951,28004,61644,54826,11108,64005,50252,32967,91114,3780,79871,59929,40640,72827,70321,83948,33534,94004,21995,14351,58179,10707,16493,96158,40996,39348,51455,44237,96207,86581,33891,81710,89487,7795,77108,68694,53288,73497,48129,47676,60120,93434,31802,32616,95720,94851,80630,60422,49617,43431,25335,46647,89733,89773,48331,71067,98901,48214,68625,88498,6235,35476,81192,90354,54633,47776,73180,13359,50589,19252,1291,91282,55890,44785,62331,784,51440,83828,25831,25168,30464,79619,25718,9712,98201,82193,29586,20019,39593,72479,97465,58631,84398,8923,15421,99624,64468,14286,93513,90216,14223,41027,77032,808,34586,3783,12844,10706,29406,94911,99682,26874,70614,16169,62645,37579,78011,1557,79229,73498,9205,10730,93932,75007,21273,26215,9158,62689,22485,84442,57891,46044,16642,40822,86037,55120,56187,11557,72323,30254,9252,5997,23560,61201,21058,24322,97279,88489,27568,87083,26794,73883,61773,54326,21497,86722,21046,14608,65543,10224,79009,68031,89875,73864,15119,88626,10571,32720,79349,92637,11030,37307,46163,28593,17115,78693,36402,84956,72927,72583,59925,9916,63953,55056,92940,88145,45211,7308,4104,21577,29117,89360,85254,52182,37452,8786,72979,83199,34054,65923,33001,11154,76078,65164,46540,46390,7554,46752,19795,55202,20564,83977,86576,91859,39256,20868,28595,74491,73565,69345,65756,88556,3912,48142,61119,30467,6624,77368,74039,22747,10873,9385,42380,85828,64205,73639,95622,66561,20879,69792,12575,7139,76291,7310,8943,24813,10289,88231,2333,60113,89495,32727,37851,77225,20712,84846,52808,37231,16010,95951,15697,59435,88986,24888,58318,99645,1794,24000,28434,52742,27140,78140,25521,70220,102,97298,27379,9144,98334,4620,98891,10895,9950,28281,78373,60675,78165,2978,26077,51724,73075,9166,77133,2365,64521,48468,5541,45772,28036,28205,21109,44483,26497,98765,40221,58409,72183,70128,3733,47180,91671,38699,59459,23706,45541,79789,79254,58232,22111,12304,63646,62479,58460,87004,43739,19189,86266,96725,47873,50345,3459,4888,36892,32992,99507,35623,65839,90855,95875,61358,20097,48247,4027,28586,54971,7261,5871,1257,80121,97618,3883,38700,88107,26045,16938,42032,2017,13111,64516,23137,88333,84731,10299,47303,16519,66971,80940,22558,72640,17031,64370,49989,74943,16516,92999,22124,93533,21658,10973,48782,18567,59647,46164,73351,82560,58378,42167,78766,40654,52812,23158,2962,41962,78154,93378,69773,9927,44244,49335,87052,2997,61849,95779,36873,59348,80508,23420,14951,38561,50494,12341,33024,79187,69782,25809,18000,11461,31058,1768,48784,81407,25259,22808,15431,17407,56424,29878,34262,98187,7194,78545,49401,52633,96370,26342,61850,92870,93799,49269,10959,62540,33592,38304,98669,71087,74911,7949,65379,12556,27553,29537,64192,21507,21904,3378,80334,80034,58441,2080,35988,9999,4379,47528,99691,49546,51493,19287,59864,7053,29817,68534,69974,51113,18725,21980,43697,23116,83470,81302,61424,86286,46404,93871,3987,322,75960,55882,94076,26482,31125,35767,33770,57566,81782,84636,10865,83848,66296,32305,17692,15051,17659,64430,97593,27164,38182,4510,22360,85515,87492,18635,69050,10480,38176,10928,44021,89421,60471,4174,81860,6273,5061,79543,84919,72617,15363,64072,77375,56757,22643,72912,84966,5484,97431,29881,3983,67404,38875,65000,59819,3102,7890,22046,59237,92524,71899,75341,2930,89326,20751,37907,67810,11318,7482,92054,57932,97117,14365,28572,10081,52125,17229,67805,68528,53241,28000,27667,64552,96121,6640,61212,83290,50222,97453,51007,98916,37148,57688,22293,12943,41951,32538,99324,92927,39254,68427,40145,22112,56777,71746,69521,31644,23426,27892,10847,57223,81218,37540,54173,53637,30817,18963,82712,86142,68314,19188,81414,11577,59474,58532,79638,47773,95684,22771,60911,16397,35856,23461,34239,43548,62421,91014,26911,24787,47626,39958,670,86019,42936,44230,13460,19138,69961,59721,90186,89558,36925,86267,27788,96790,96651,28270,82372,98756,12049,1102,41615,3659,96298,22344,82269,58803,81581,56009,13437,1146,13007,42552,57690,29607,39758,18129,85418,57308,17200,26373,26613,94096,91733,87037,79877,73877,57181,39453,49254,41734,67776,13133,96398,61870,74502,44793,24140,55527,82276,34806,24278,58685,72213,31033,32109,60727,67189,11035,9567,30669,85927,16672,29819,10004,71849,94948,27427,35889,82014,38617,66866,29220,91679,5110,98365,1822,82182,26754,59919,2804,14241,49423,12589,61538,38366,46394,92144,19274,20846,98103,23035,76990,76192,80734,35092,33826,83954,9933,95003,82547,44817,69852,43997,86022,25122,61642,62382,94683,20257,97725,85761,92948,45373,14905,83072,7390,84938,31025,99022,3035,58688,4870,37551,62363,3652,28417,74924,78415,74256,84282,93703,26245,84351,61245,33692,40698,72103,15161,3513,78781,54450,31980,53603,51184,31119,94083,89673,71690,58373,72571,15216,33689,10162,87112,57628,54840,66197,82519,75039,51350,27677,24658,96454,26431,97434,1713,42185,9149,40974,77576,6117,82084,4562,50496,47148,90198,43721,82291,81352,73719,27114,77881,71297,73921,8053,58516,42337,24368,68280,32544,59273,38877,59670,51036,36655,78026,42747,24959,3944,72548,33667,29639,15570,10256,39147,43802,88349,72475,32426,28488,69436,86039,95703,79183,55231,18493,66676,93662,1755,13391,21703,98599,38342,94604,59489,9640,74526,82122,10318,3152,23030,40269,48419,90973,81163,28348,37077,63534,30286,35799,62004,37063,85162,22533,35720,8725,37432,12331,35932,358,78655,25284,17134,67143,26768,62503,9135,86382,20993,66446,38263,48724,71112,2943,73669,24728,3044,78008,17852,79752,36171,5157,95936,57936,28584,82223,62982,9464,2756,52337,35823,9116,61121,86525,44267,66812,15015,40143,50192,6388,7307,12999,34016,70223,91385,51106,39389,10269,69999,91835,51993,43894,98943,32045,27432,30248,52273,27423,65636,1545,60182,57249,49589,67577,81112,42591,84939,60049,76484,86027,23710,2874,51210,19258,7288,96720,54630,59980,91176,88736,76588,35341,45275,77675,71628,1581,81711,73374,59370,85176,69473,75088,90379,40987,4228,93121,33194,29728,3429,65479,7769,59836,79825,8367,17232,43177,36782,46581,64036,98159,39475,4943,31306,75897,32989,91639,27893,57793,97873,13435,62330,42842,43526,63237,1056,54997,94793,95675,29939,54314,2973,27999,2117,29210,14546,41597,61439,34977,41052,69486,31556,959,24087,87936,50469,78722,78657,23275,873,76625,54688,649,74336,96666,38148,91942,63181,51708,35827,71089,37342,11157,62831,70527,45514,14076,74827,71018,7962,59636,99703,29564,77975,64631,63798,20039,7113,19447,99699,16025,85821,61129,5517,21515,993,90603,56396,75135,45842,37720,86251,92640,68010,59791,92775,77151,43453,47860,30556,27673,58113,84380,81824,64186,84897,5965,60773,89023,50215,54711,24425,24785,9823,29339,35109,30156,38974,47332,79584,76906,19875,92121,35022,22982,22276,2541,2688,46767,39534,48615,30323,42717,22313,51982,20281,15307,85312,39042,9398,81237,48163,80829,27234,32890,38266,43876,94328,70207,78944,70384,11636,57266,98175,5866,37908,15150,84373,9885,94565,94149,57839,41464,73844,21862,2994,50151,24855,23962,90495,20739,12557,30700,65031,84596,10232,46091,13523,8127,27457,11579,91530,50531,87342,72485,7772,5553,6170,39266,17992,71700,99028,91523,13517,29863,42917,81279,38326,18277,50671,92885,66996,64680,90004,953,10588,4499,95736,47880,86226,22759,39500,79900,54596,40272,20464,54182,345,58167,95463,32467,96544,93555,16574,2410,64809,728,28935,8791,1971,74165,12399,6786,84237,54774,56060,66639,8693,75625,8371,85203,61438,23287,56148,30631,46362,15921,26249,63791,86668,39702,13495,20356,79665,39130,52626,2776,15312,68580,45368,24131,52567,68825,12526,85984,68566,3858,38913,71571,15092,89578,15738,77643]
-[39926,37304,41721,39711,26358,23525,35957,95903,79974,46931,19444,72311,22789,95654,81641,92672,73806,39386,98296,37802,64929,59667,27728,71479,74936,55086,23297,5334,47379,4062,98122,84483,73224,19537,17731,9597,93086,20402,16263,14326,61160,31401,71942,33657,34133,47612,40992,14969,8076,20573,81693,38127,3761,64815,34595,83609,72226,49163,94406,97165,27831,55404,88742,93072,42120,41744,8918,62151,76033,64300,75336,95871,4378,19876,38682,31449,58598,90348,98984,67746,43512,8332,50711,33251,96491,52893,2692,2948,28792,41125,91463,95186,39470,64092,38751,44561,56777,90438,40807,87748,6527,60003,84397,93361,97279,6565,62824,69508,77662,74404,15392,51449,65540,34066,1619,50582,55351,15853,50274,94971,15182,16279,93330,45470,37152,87623,73034,64838,66966,71595,59510,35882,26362,52646,59778,62128,11933,82969,84213,76769,35672,48441,61009,43546,58358,43293,27600,34382,71820,91618,82564,73230,10860,41516,45161,46351,45977,70712,74162,14340,20700,512,76093,33912,8334,87167,84996,87738,65457,75293,57749,38427,32296,65674,83456,71260,41623,68404,66957,73581,57973,98175,6231,41237,33214,27956,22862,39775,71416,6122,88895,12171,66055,74859,19401,93153,55529,64264,2009,78471,5321,14258,42957,74520,17906,16669,3871,23164,64740,24795,85892,68273,39598,72667,17960,95128,62377,1082,18421,17881,43220,76311,60356,22681,48826,55643,26715,196,97955,29151,18495,58027,4986,39012,23817,86863,26076,79747,22360,40318,41485,67616,6773,2929,77515,35845,52448,36874,69827,53041,74370,95298,76162,90175,45001,80793,99443,88192,68250,9199,46647,87537,86725,52935,63744,15837,81530,34823,84499,5870,77322,20776,63608,9715,92855,83319,10335,170,48687,3911,94766,25988,2479,90235,11250,85649,80863,32039,71515,64296,76012,68983,19106,90051,79497,95647,75968,99311,17203,30724,32793,43352,30416,28546,1433,93942,60036,30813,46443,1766,17156,43574,91122,95120,11245,76879,84378,67073,44316,8972,34145,35323,51120,28742,86032,82710,49732,64776,26213,93718,3586,74083,98964,7409,95598,63756,95330,71503,42633,70809,97465,83700,40803,89911,18409,41991,67393,86015,37640,35890,74300,58299,71736,72234,16068,24667,86835,92125,95420,78492,2651,1484,76118,50590,6423,10706,95009,33514,93011,83585,20163,39623,52966,15526,76237,83085,4699,13513,92734,4984,30912,17470,93524,31960,54177,27380,18002,84418,42232,33645,21246,21245,71887,67738,52765,24729,43720,76941,6158,79373,21599,26129,93546,48672,2386,16200,92179,93928,71952,78593,47103,57184,11969,96988,8754,76232,11661,14787,32562,23477,92989,22752,58055,5869,5638,38486,34352,13830,14502,3036,9762,73153,75766,13525,94070,60454,68523,8091,9426,78037,51669,65158,51379,11221,32351,7751,79746,29019,4449,39646,39141,19988,10039,23768,59700,46092,2310,44243,70558,23757,73745,70623,31669,59980,26819,73737,31441,15430,57798,45941,70307,23589,69976,70667,86605,29036,33062,68749,88290,3464,19163,72564,2938,19047,3930,16627,30013,63067,52637,1197,18483,97900,46386,64086,2442,9234,84568,78252,29153,29173,91931,76652,5015,29921,87614,91473,5465,53403,35874,94150,63817,57365,62856,89104,37033,67401,6199,98048,62922,11876,7217,95732,72432,58224,57519,81024,64253,14129,85334,5823,88213,32742,93653,74142,90729,90889,87700,18316,13755,27310,13330,75667,27497,47656,22587,90593,12455,71361,19136,5598,35886,7067,49000,32374,29362,72685,95305,46762,58433,24129,16667,1099,44961,31006,43994,85025,35735,32188,47552,6778,37220,49217,13229,67192,93945,80037,51734,29813,48502,52865,75698,4832,20613,48034,2982,21739,19684,22874,55638,37480,66175,19386,12416,12726,81852,24404,9123,50773,62644,46960,55079,83275,1457,60766,15695,74606,24422,33716,32181,48121,19327,17610,34199,13379,10368,14262,55602,16157,54161,67691,22249,18968,66630,99837,48524,44713,97464,54786,26885,51144,35718,94934,31253,53305,68901,58841,83087,64889,79302,65125,97098,82329,31142,9191,41038,65326,68010,77045,25004,84459,14280,86246,40646,54589,71860,89910,64276,7226,43458,74749,13647,83863,62473,57175,11738,67143,87936,96721,55530,91323,21111,80890,19720,81131,74565,33542,62433,85944,21628,36611,87460,76327,96833,71476,95930,76526,91148,28845,70802,26639,21406,45071,60221,41006,20557,20158,9880,70614,37039,55863,61719,69280,83064,5373,40063,71926,52132,6383,74464,19352,65276,46241,59957,92733,12871,93872,34752,42,28290,68953,71496,63280,15151,94744,24363,80997,72,40325,14793,79533,32099,83574,12001,91206,2952,77160,14942,95162,11143,95230,30521,97902,38820,1551,36567,10438,22465,43917,41186,90496,7209,68618,91082,29392,29523,39052,50303,39524,87395,38426,47533,46144,44511,18000,84854,81922,44751,23090,22959,71629,73621,92198,60116,37893,44388,211,93794,81081,39083,3908,11855,80869,2151,57656,45550,58668,43064,4998,63621,88732,33303,59542,96409,20666,69548,56837,15957,68124,91142,58573,31059,13462,84520,10277,37538,50802,78309,82891,53192,14592,30887,22255,57615,54723,51804,35473,94152,12296,83895,78528,92839,18773,6194,82320,35160,50769,42144,19910,86533,94148,12509,52613,61115,88858,90182,3772,12997,82173,49470,76292,71094,84780,42604,32635,60084,28805,63282,11968,65632,15232,5447,31753,43214,13331,40117,428,13000,52963,90054,75442,51746,48359,97260,62479,32172,82625,92851,30633,60994,2502,519,33500,99263,50760,66073,97926,16762,54715,49319,62803,28340,65473,12229,16477,68568,51137,69331,32397,58054,49197,19820,59561,40630,28052,66921,91498,59907,84610,28954,11547,76758,50378,33996,82091,7224,79508,16514,27766,37472,38296,60415,91355,83207,81234,3171,75682,95087,26438,34085,29674,34262,64343,99994,37785,71369,24898,88087,91114,45835,56583,58941,14689,13973,26646,74009,34837,55898,13407,16751,35693,57063,82930,92271,27953,43043,56041,70561,74938,41585,98219,51074,76113,43603,8357,23583,27387,91551,9338,64128,67739,90166,51896,11794,50755,94180,44549,21122,25336,30985,44102,28148,39726,61166,21130,18300,20965,59590,68928,46712,21,1841,23461,71780,88282,57600,11481,77913,22334,78201,65438,50742,96093,17698,37791,53277,27533,24298,25907,27920,87723,41333,96948,7914,27065,4455,67330,84195,9209,37360,96115,38982,53838,35052,35508,96841,63387,29636,7484,37008,43097,67000,3512,13640,89466,33339,71781,14602,87694,71570,92123,87683,88187,68991,72676,4675,89739,58867,45615,18831,9263,38661,10737,79196,45279,14400,2099,40274,52019,89527,12712,52267,59251,39998,50814,90549,48025,96593,22108,67378,28207,59601,23927,4631,44501,60844,52309,98903,83990,2167,62657,24610,4106,95145,73503,25372,41286,31720,53447,79539,70441,16311,62557,36208,15176,20411,76551,15942,89575,51558,38752,75060,76315,64808,72189,64002,5852,93307,8226,13148,40015,33,24304,78957,24077,19374,22050,98608,78054,81056,73575,60966,66748,26331,92425,83529,90301,51004,64068,41465,70646,96664,51420,18403,75631,83451,47660,59175,86189,25230,63048,80688,91564,29288,77496,24625,30534,94170,1067,77708,22652,87601,64741,62354,40045,78922,29549,68193,26910,86439,43516,4576,5440,89873,9361,89318,18576,95566,72167,96749,18201,25492,84116,91844,89933,72893,18216,42966,7665,95355,17732,29500,33078,85487,93686,81172,60463,44984,41558,46852,3410,51315,82952,39459,20455,18934,85941,36554,4172,65072,93938,61425,17127,22279,15989,28154,18596,98473,80547,69801,48867,50038,42277,81307,71431,69194,38439,19714,79469,69625,18418,24386,23211,10923,57130,15195,14426,4495,58473,62747,24861,9430,7816,54370,7779,91710,78726,73267,83777,34939,99561,83928,3323,94980,7547,47001,16582,99706,12084,76150,6731,93875,45369,18648,52884,88577,43729,70115,23934,35965,57633,6763,87299,97487,1340,72984,69162,32582,71620,35638,95155,58214,23278,47189,17370,35997,58425,89551,86031,24863,69768,273,10342,67732,2269,68944,20806,78883,96490,34198,80678,54577,7652,10426,51870,9422,30065,21974,60067,94318,28993,40484,81787,75749,4382,32268,26204,15350,93485,12243,89671,41007,24748,48287,5769,75842,7804,11953,14487,73263,41366,97741,91591,34163,1037,46534,98441,53217,16673,71523,13383,53089,35004,57504,20236,44736,86395,34893,84310,23345,74827,62591,27481,73134,73985,87405,47123,58048,31119,4177,39767,72829,9207,17313,52148,26075,38406,60955,87504,91624,51559,21211,97117,17076,3302,90177,14443,23452,57685,94137,9675,50932,74989,65823,86088,83962,59197,93734,96373,72661,7125,45348,76161,77838,67876,58571,16120,45564,41804,67878,55716,40237,2378,88530,40278,84939,43363,40079,58417,17575,77213,37010,66931,90595,65029,17736,42420,54537,68394,38723,92449,59674,46274,15848,55128,50124,15527,94568,40831,16208,89542,53897,9423,18473,22351,95781,29467,88051,74324,33584,92107,50460,61133,36036,4401,61783,85965,6607,55075,74447,407,27658,61784,7016,23484,83266,15486,4155,1656,71575,78199,86278,5482,92870,82326,66018,94923,35580,43725,7979,82175,61479,84515,1911,33462,66214,78257,96533,31605,60230,5054,38544,89376,89281,39746,76330,8945,32424,48693,9938,39615,26942,1019,66700,9529,91562,63449,11694,84869,16849,3883,84730,52365,4895,20293,59346,82599,19282,81089,26073,70508,28078,57176,75582,59815,38920,60708,81919,87718,26497,61470,4897,45072,34316,6593,10450,3968,2532,23578,67320,88606,74190,39045,62024,89327,14020,6896,73661,51813,52093,80183,74368,57018,8975,83629,48808,99121,20464,3305,22479,36749,51142,91343,69632,1111,14413,55758,14503,14000,47928,25593,42450,76085,83488,55748,61516,89992,95400,53046,3140,64106,13958,90293,50886,88719,86143,49674,86817,29022,47808,30363,78574,89922,36917,52345,759,17003,14711,78173,66155,89609,25881,79237,41656,57103,18298,32733,82594,90043,23043,55395,48761,15246,40616,16481,22804,82185,80208,8619,1346,49697,46320,40257,29931,35108,6802,47061,31914,20330,43934,49159,24223,53386,93488,57292,21026,23167,97790,67421,27691,88104,78503,22307,5525,46051,91673,90055,71338,81642,11979,17895,88724,30551,49891,33482,63174,83987,35492,23782,10707,11575,55259,58623,23130,23570,67095,39423,83719,58780,88212,58565,93535,25796,85369,90063,99741,56731,12266,65533,81936,57684,5691,55252,33626,19233,15516,95402,23567,57884,45576,18708,8824,73830,40535,43952,81315,95929,53782,49856,1771,44620,3240,80268,26342,79759,12838,13769,82760,66120,41279,31280,63414,111,89312,34196,63389,56740,40199,42003,23050,83825,91329,79002,12118,27089,18855,36009,69415,63585,90660,14584,70983,89885,7290,28465,50685,15952,62983,67839,68732,34639,95321,89903,26146,64774,18426,86784,38192,38690,64126,45721,60912,81686,40309,30554,95266,8822,83233,79420,49778,27943,6641,86876,62816,51985,39702,26423,13863,32844,32814,37189,90984,96228,54748,51703,55500,65056,33844,24621,33076,99040,22059,70588,58441,65962,66907,2246,38905,22357,11272,43230,70804,38244,27591,74690,46406,19275,23623,39528,34805,55123,42864,9947,45796,58640,64216,28125,32441,42099,62872,56728,77277,79169,85737,75753,44801,18358,23799,11957,98379,28811,53990,20218,12331,72638,66208,63252,91883,74762,46197,40955,510,37486,17912,70992,11025,50572,12101,57652,59835,37400,14250,28068,8425,29937,30377,50156,79206,46553,52713,80754,78538,38762,68626,78200,8433,37009,32550,92819,64657,37471,55115,81465,51065,58276,172,59203,96684,60106,13433,22762,20401,71921,12040,8342,37643,76848,46273,71384,53670,82284,13473,76640,65142,6691,5806,53889,67934,83153,62927,29364,84964,71275,11798,2356,34132,14840,92792,43048,44672,49287,67273,6983,66530,45764,78819,70070,83459,98498,39392,63727,66747,79701,35635,24141,2536,97032,75440,62798,8821,9557,18686,55060,24669,9987,41024,5910,93101,60126,8393,76657,69821,36312,23457,36038,99936,68562,14390,31419,1495,94118,57040,16553,13756,60372,74341,79063,47551,6608,67992,38993,57832,89864,41668,95454,15242,88121,67727,11234,33164,90685,67238,50976,58259,2683,8102,34940,32490,58525,67922,13502,14794,58926,77299,76010,18075,82816,23235,66625,80900,98338,69920,2197,36523,1899,51647,91221,20713,79947,72713,66347,35865,93959,62399,13117,1189,10791,71484,17673,13335,31923,77734,92780,99701,20431,17329,5591,35924,17064,29861,51808,25755,53937,87721,91423,81476,90871,66285,68162,15450,7425,19586,749,65133,90259,24238,38010,3735,45936,84205,36740,95365,26580,54890,49123,26369,64075,48271,92105,2340,7643,60197,21496,21202,84463,58429,31718,4344,12803,51362,8852,11368,9523,77644,86454,26591,34474,30699,94518,90406,47760,63523,3384,96380,83282,21101,16094,45349,75560,88779,13619,45441,81725,25801,21482,75833,20716,94445,13237,45961,113,36780,48974,81728,37868,42007,54033,44905,9588,21344,65187,53728,60031,75844,97919,15440,94441,60775,37226,86620,3595,69048,80212,36113,25308,11602,84232,21840,83659,2367,38155,95632,4800,21053,5857,33066,35990,21150,3000,42337,5639,19535,78521,86492,47717,10724,11643,86213,55027,37543,25081,80485,68526,39578,53349,21837,49753,74359,34708,500,11581,78668,4508,10591,84702,98863,96430,64462,13733,52407,88744,38660,36356,29570,73244,87215,65311,85863,7922,72395,82803,64540,16113,14468,87202,259,12359,21640,54802,15614,18988,56843,87638,99521,68054,89796,48682,73963,62247,19334,75087,34919,27914,43891,83789,3454,25324,46433,94975,34614,38771,52050,49740,28485,6452,41399,16426,72996,70402,13476,79705,93264,66920,61542,88371,53856,17430,48730,7436,82029,80844,84138,74178,96741,56499,26921,74136,53133,27106,16415,2242,54245,27514,50199,7500,59274,44061,91049,95568,24507,22174,90405,75106,99346,88506,59348,71221,73853,57898,72581,91864,43093,35139,3515,69063,10756,97670,11075,92335,48598,50506,23524,69377,81442,26456,80229,54363,10479,11919,94844,84908,8487,76407,61441,6258,50661,96138,1362,41134,42839,39522,16656,85998,35014,82508,39771,13434,24560,76193,83524,15621,48800,19040,3655,35394,51954,74197,69289,89708,62947,71365,19604,28497,73701,47865,16625,39881,39941,99484,45125,87673,46393,10218,91749,6751,86274,84764,19852,8371,87832,74649,40522,70914,56486,7184,82202,17544,85929,42568,75577,39661,20255,89236,49201,68684,16335,15543,52086,61592,8983,6717,73777,70628,49448,15042,76898,8766,15871,30987,40526,22909,84585,91777,13542,14975,36305,47422,23041,48390,81895,51797,40363,99610,8971,62240,48868,27540,45517,77157,62458,10339,11430,25136,37485,67374,23180,90873,89211,69836,50381,42109,68707,78272,71517,79397,999,38935,56758,38610,36051,77027,78598,43348,31695,96051,43436,18450,2601,51865,53992,96851,58225,39234,49591,88495,49680,26164,14561,65554,63480,1867,27810,14292,76283,58540,16206,61670,81713,85736,13665,53755,61314,88739,70194,95102,61239,72508,40500,51862,5308,60240,55884,7027,56727,27085,4432,33891,8197,31737,63831,21281,7188,1898,93779,8320,8954,6163,21293,15714,46394,31367,53837,15063,43861,58820,87989,59091,19534,9302,24852,49908,51124,96522,89561,62823,82769,91587,66050,79153,1201,66225,77961,16432,70896,49019,53635,52240,66477,65786,87560,35464,47595,33945,9346,42141,51661,27772,64402,47114,95666,68417,34210,21835,76264,83748,24585,98073,30205,50075,99197,95224,28963,98683,16441,38195,13398,97536,27098,68589,48914,21093,19790,43317,58437,81842,83642,48379,51364,20079,24319,53160,77304,75490,75245,92545,60313,80548,12558,24492,75113,8381,34294,40178,75383,77762,60337,53742,14515,57324,14063,9237,46749,97854,28311,33588,83441,88948,55728,8653,16254,19779,89194,29575,61249,90237,87132,61494,64728,45043,38766,53466,82491,20757,40173,90648,32258,89483,64074,28668,11848,42617,35611,26844,94845,23595,51041,60193,63574,53629,89019,38417,805,75505,34786,68605,12018,53534,65070,72242,92096,73930,72789,12945,45792,56366,6712,27821,32859,94456,55143,58171,65636,54431,10382,62126,63943,40165,42158,48047,23156,3385,45437,32466,60704,14213,83606,15478,63171,50517,65342,52087,88413,5271,4078,48250,23495,17105,47092,28715,90437,56244,99710,3297,46108,51268,3674,64884,40073,27466,21135,96383,64401,22087,88954,1989,148,33403,26143,55810,86049,22487,70470,88788,61096,11378,58190,21330,67067,15861,88979,56083,66595,27325,73492,72803,20853,90295,76142,97146,25573,27243,12861,94223,35468,16418,71185,94838,19345,29428,57784,8691,86012,92299,88190,87355,29065,4004,96032,40169,74523,44910,87193,40436,4877,60263,55291,2366,85543,60866,5550,92109,24906,86123,63689,29380,72957,64541,36836,21252,61034,39338,44014,24889,79670,29788,38303,38907,74072,70160,22468,94007,97444,51303,59497,22641,56678,65670,35045,54310,18211,71613,65681,88700,19413,47198,50961,44821,93930,26716,71169,65851,62528,16795,35892,25928,77199,41229,76069,19527,51590,16648,44816,72846,14750,5108,48126,91301,93652,19109,48689,64988,18315,60965,43058,25315,13276,84903,40050,95497,11062,3422,3191,89517,9443,97044,98511,83505,22067,42409,92151,40650,73052,41488,13601,66456,65220,33848,26935,51181,91703,40185,44579,13281,28164,13528,36034,75691,74259,97130,40464,50388,70668,59653,74486,86427,74915,60478,11518,99725,62589,23317,39719,86117,83620,22036,55719,22634,23848,79372,97299,10781,23405,27280,44660,40125,66207,32167,71990,86106,83136,21813,35797,8928,7357,87008,96508,17514,64595,25001,68947,94561,47136,91219,45785,22915,77749,56586,88983,806,60185,92737,65434,9242,14259,56551,95011,59169,15846,17842,23604,82305,98760,62888,60748,13360,63058,40414,4182,12095,79540,13453,94607,59981,7310,54424,61872,20750,12363,66194,70573,41459,22409,35719,88630,19811,28933,18689,2424,78431,70798,65972,83741,99033,3487,86534,18168,27344,79061,28704,36998,34246,98839,26810,47441,63259,92980,43143,8066,24521,90267,47912,58506,56441,77340,68287,31255,56900,16822,16918,67168,94560,14171,59350,80453,87859,1335,79352,60930,95730,71642,82544,12798,83669,32771,60895,59975,86447,5546,92994,4954,32819,20264,2645,3269,41450,14455,47862,32015,4525,78372,49235,61065,91740,83690,91184,87598,61468,63557,58111,74018,55286,18524,87053,100000,76853,28227,60747,82416,30903,97457,81246,30930,62074,83976,64564,17345,89532,40883,20824,40449,20657,60869,85314,16236,54124,13460,35495,65954,30428,7212,7247,34883,71871,42704,17952,34082,25734,88513,64238,81954,29559,25307,37987,65550,46904,32958,21106,77955,95816,5147,81040,17251,68093,50610,7679,78852,32217,79744,20036,97633,61639,88803,27158,85380,92836,57541,6174,10153,78707,7052,32838,34131,22963,48456,90536,46555,11343,36341,43044,92770,98702,62621,89163,83633,71159,43876,95628,79996,45117,65694,18190,63762,52889,64895,1148,5738,84538,87585,51215,21411,53997,4277,20743,73175,57346,37575,23158,52583,52222,44201,90861,65127,44380,61277,36398,40259,80523,18375,72102,39647,70794,1761,47109,42725,89836,27409,78888,60323,44899,55784,81996,45189,29545,73514,85341,27911,67725,53732,20104,88278,35750,69655,91934,59970,91716,59328,39724,95361,77231,85414,82628,19190,9930,24175,78203,38364,30277,75549,38812,47299,81237,20689,91,51187,65037,51093,71454,32239,95100,6042,71560,76985,28719,85905,21110,81626,88457,30652,74673,50348,69008,620,90156,75979,62474,25186,24587,74532,21988,58184,69427,91672,66507,31457,22542,51219,32530,69528,27312,45471,67417,39818,15976,29758,18009,43687,13116,77746,84892,36948,8798,52185,37648,804,92918,71581,1325,3555,49606,34004,10754,54857,82099,45854,44886,59265,66780,78752,39135,26726,96326,34481,64062,75043,19270,99743,12014,33124,37365,17735,97008,37848,53572,72593,87886,34461,30247,38348,13343,13583,69919,71937,3533,69972,39279,96012,37113,12135,71688,97041,61678,10094,81541,6271,45832,16868,74396,79288,26041,3647,8466,24712,35397,9292,16661,35142,93266,33839,13260,38988,51440,80915,91763,99957,75559,50341,94670,93965,63795,20955,2647,57200,27722,12334,86313,70176,51121,99207,64874,37035,10405,16131,51285,4019,29206,12556,6005,32079,65890,33971,95646,66610,77679,52058,18432,47653,62745,91850,90336,67482,6454,25248,72289,70863,98686,35810,36646,70939,7443,26171,45485,26441,10282,662,9728,28944,26838,85077,9195,55505,69384,27104,37176,67009,22502,13100,20061,66098,53774,33212,24396,95437,95874,34396,84508,54460,28686,41994,84431,63101,20484,59090,23408,48467,34355,15519,44686,67251,69383,11558,22111,75335,24547,41736,18839,52152,45064,36541,34463,93815,87554,3630,88136,11537,83754,55083,36741,23888,26408,99144,31780,29554,92395,52245,60130,73956,78121,88511,89050,86795,94719,69022,41831,75683,84162,11390,55803,29227,19112,93784,60146,16728,82928,37190,47032,18646,23252,39855,21121,52938,93624,7238,57570,62042,73832,97305,58470,18880,92454,34569,57853,41416,49187,75732,52665,28086,73706,37730,85384,60552,28515,49575,32002,52700,26669,96325,23281,90890,80785,28098,16161,33635,39997,48358,56966,97203,54909,98733,36641,91488,39551,5575,75056,87386,87701,13365,41476,93639,5489,91589,42134,38215,40246,5379,71686,46177,93694,31245,24308,88279,64415,95594,55207,85145,89071,32233,89772,74585,99091,93626,14408,13421,10384,94371,54669,88166,66599,47448,56915,62010,20037,1974,55833,13649,80879,54067,35307,43427,63315,55446,11802,71831,32484,73203,61180,2580,47940,44691,52337,92064,37454,57816,96438,45918,32651,82480,76681,84186,21415,36580,34565,36439,79103,25321,52862,93792,63684,90687,56309,32250,31582,34740,5743,76972,87745,33740,57581,14402,89964,21244,90840,2383,92176,40495,77053,81134,21928,31413,11004,66389,44256,65462,30976,66467,28927,22885,17695,4907,34923,12024,55260,61944,62535,93283,14104,18672,95579,40060,65531,96531,13610,76244,26528,95679,30589,40882,61881,13491,52994,47788,65467,28026,47658,82258,57767,15414,20836,31561,28478,72095,75921,27833,55925,30690,57955,36215,80903,53227,80378,48994,57395,34010,45619,30984,27888,79311,12546,68825,34956,73300,12760,3848,6743,58656,22559,2785,69901,49405,29511,51636,28606,78416,28627,94451,20343,79486,85798,72298,33638,49124,79665,87722,22618,37306,17932,57734,48773,23383,88668,50633,47718,21657,5741,76064,12954,95795,93246,49835,49635,81583,5920,23590,52145,6652,94136,31729,63984,86342,18270,12750,10894,946,72962,3967,75347,69567,47727,15451,95896,58835,12189,89348,95403,27882,63424,65695,31563,59095,10459,61721,42318,4269,69756,43017,85640,54427,25566,16077,17820,69550,3308,12869,68756,74024,8886,61664,40417,77806,58005,3277,85377,49360,28190,99601,18665,73613,12538,694,74833,69538,76110,70335,67524,10890,11128,73914,61665,76304,62166,15912,10121,21997,24912,92644,53135,97198,77133,10128,9581,11090,12628,67305,22574,36772,90860,770,86104,73646,10411,15446,28067,31999,7809,52487,83226,94038,90394,50794,60613,56013,19069,28107,39120,65934,29612,92901,58878,60475,98131,84616,27434,75249,41992,85142,49437,92611,10926,76494,84271,54533,62774,48989,39951,77904,71444,76125,60486,37182,50491,51045,90737,4562,68154,35837,16356,48163,98729,1061,45092,79916,58532,21491,75561,61499,5669,86183,49291,3325,88970,45272,43555,94770,78523,51732,14219,96276,48851,81831,45487,25550,42927,84376,10512,5650,67123,48472,34369,1630,23024,55567,62997,13490,35639,43367,34107,69226,96235,1850,12427,16269,62083,1859,63002,25214,20247,32791,67164,9462,52249,1882,8823,56069,32226,46639,2254,51655,90643,23843,78007,76146,8245,50589,66123,58104,25224,49278,56750,8043,12550,47601,24645,27225,98808,2551,36632,59414,50135,35215,92324,42430,76981,43661,98858,31480,10417,19299,68210,32027,63780,35128,42753,50306,70632,74013,70747,39313,49924,67362,79099,41199,9073,48884,25029,63825,5247,49295,32000,63434,19834,54216,46267,35776,747,61866,89651,46507,29714,4666,83996,43003,42916,294,16156,7728,7846,63277,91102,2323,35733,35847,81149,85523,82685,1341,31998,34416,60492,39295,3899,80834,49827,73831,69761,25489,21730,31137,82529,48156,46900,85983,86506,46968,37659,78548,52693,25930,21575,72384,34321,38342,88207,39684,49283,79319,37200,49429,87951,42071,47392,67399,50214,29383,19214,88464,17348,49817,46087,97577,22845,40621,3973,60147,88685,50105,50110,98072,59635,98945,44988,59416,25155,39376,50972,13326,50318,79837,93402,58674,74511,17297,90447,87078,34437,19321,18140,82075,56554,14411,42027,66298,43179,12675,23564,10671,95066,43151,89717,28913,74648,23384,71481,2450,44950,72707,82154,72672,92492,72027,92554,94207,16327,26279,93645,15006,46470,9943,71386,80321,53608,41220,50538,48103,26920,94995,18601,30983,2542,34761,69477,77412,67972,69746,11084,37626,6682,90663,28469,17973,17055,8123,89247,94678,98416,97631,67951,66051,90850,58501,83760,39918,4670,73676,52475,71628,20855,11406,47503,80886,45891,52442,48809,44793,4561,45980,86931,18859,72401,96472,84544,30946,91604,71419,94146,38261,88343,19913,30874,138,31272,19827,21388,50920,38488,33533,93047,86140,53348,86337,23426,58489,55021,12711,85045,88515,85605,69870,22757,99336,30024,2339,56517,81599,97504,4290,52625,42185,71935,64818,63426,69391,46740,25446,40498,77949,14110,54094,8385,91783,79023,92280,90485,50622,12150,18058,46998,78754,60598,82585,31975,56160,62725,6010,35780,31591,17740,1006,83993,7923,91613,41100,33595,86691,38674,16842,90227,96098,82554,47920,56946,40916,79298,20150,27954,1838,31538,81240,82566,7050,31992,28178,77574,20730,61589,40909,6541,29002,42537,56177,58469,68311,11107,58091,36468,27505,2451,52604,91759,37676,85474,21562,84493,1415,93396,27029,64782,79598,83259,80235,42941,12052,82436,33993,97865,76987,90033,32352,82397,92783,59811,1541,25972,11874,18825,14560,11395,50905,28821,24346,44241,60752,15615,67689,36300,11471,36851,20305,4214,374,60149,76349,36080,56532,48345,27013,44537,13066,49915,5983,47296,78758,30866,27526,70130,41832,48037,7398,69631,16833,96199,58563,12998,95267,34905,39713,92478,49035,79387,98164,84340,58865,6817,87825,27046,12672,40519,78191,3019,35509,89955,68248,67630,47077,91980,96838,82597,86732,52882,27157,12394,81965,80875,4808,51271,51103,5572,31577,35084,98418,88596,80748,28151,77429,40074,87643,79768,3468,11345,51600,61334,22275,7889,26468,91578,77606,29860,12831,35727,96697,83009,45104,22914,41967,72902,50493,91185,81998,23811,50721,36734,14831,60266,17798,96139,45177,32053,93909,69455,9404,76518,88631,52139,96788,34120,6266,74315,53169,28292,10718,89324,68191,21372,98092,45490,80436,95374,511,89470,54151,10329,41865,73214,35126,40159,46033,23847,97078,50258,42256,14504,90286,12190,13045,45819,12793,75620,1941,83773,20787,94436,9370,98439,55955,21125,37169,9410,70776,69260,21910,21153,10210,14729,8558,40163,88088,66235,32140,11018,80320,33580,90112,64799,84781,18736,21001,26436,23661,23328,54758,56346,67287,9994,93100,71300,40569,58592,94988,21751,27353,7597,34398,6330,85234,81027,90146,46190,62278,18318,1651,60117,3747,6798,40523,96213,23982,89223,64947,35942,74868,64066,87842,67653,7456,3803,8250,40989,55592,86713,89235,55290,85053,54053,63665,82129,64883,26065,26475,81405,67866,48691,24666,85949,54554,18378,52676,6781,78632,39638,77370,60656,73309,63511,57411,4474,79840,18144,24413,37175,95947,76975,75654,87467,29688,90841,64350,95766,20773,22168,55582,4027,4119,69272,3854,13983,34507,47450,20670,60534,52726,338,64506,79924,65669,3711,32392,2092,27178,45420,62232,4363,57675,28899,16510,81546,42306,3491,62861,22216,6159,95253,55139,51176,2027,47951,70163,16296,95657,30224,13641,10957,23585,71032,18309,52214,52585,83827,26207,46779,5146,40381,68361,45372,42553,44543,91157,2518,74813,81285,75376,76692,36059,55305,69788,30594,64398,29779,98269,87178,44152,37766,95110,34749,48728,44457,71857,77461,36478,88163,20791,52833,77137,75131,11708,8024,36104,19245,54956,3639,68486,48170,84889,42196,88412,52514,44759,94747,44883,6233,17050,46254,89144,70105,14896,39477,10375,79191,50031,60984,45856,48101,1254,91614,56957,24152,48036,30318,28975,57609,86450,18602,65252,48494,61055,5219,87464,87824,10298,2956,3364,64298,39882,95828,57136,46874,85355,18869,81539,13395,35535,91050,91877,93262,95676,16141,29654,30190,35851,41178,60921,27489,23132,45994,9125,34075,20854,3538,79109,75484,52983,2824,84019,30743,96463,60682,9596,66386,1531,34759,18671,19162,82824,92316,83057,37154,83696,30405,75005,26425,27203,71452,26761,79017,82366,43272,99754,74590,56141,83188,66821,96398,82365,43239,73016,30019,2799,20485,7431,78573,58270,16501,23496,62482,74657,78812,4204,24911,67147,96997,92718,48136,5766,23146,45150,87775,96335,64159,27637,30526,64186,43902,74742,65661,75495,89679,92420,40005,28060,5060,19089,50510,36067,36119,78354,39025,79492,73057,45158,87066,35039,65827,4017,29050,91999,43231,59390,25284,21067,57936,75969,84566,43483,4002,81368,10160,72881,54201,79708,32432,30322,70362,88637,44391,1464,80445,39541,95269,38092,78470,81015,51868,17142,9593,73827,98466,9719,1054,31865,29208,71826,84882,81645,2325,83071,16981,57186,38005,45011,23686,72974,40020,81440,7056,42622,51900,67375,30451,10096,62262,62406,15172,72967,98405,45774,39186,13791,36511,34903,57240,43055,9458,18322,29387,27824,1732,44003,43146,90927,12644,14311,6391,97551,89471,50524,57241,83685,19638,17216,7795,10658,78973,22333,49951,86060,2997,92724,28429,44646,63734,165,89016,13015,72503,32674,97071,2574,82878,21812,62137,86092,55583,44863,38165,59583,55445,83816,67209,81516,32800,43232,30508,19711,43494,17360,79471,47324,19459,84112,38011,44439,63229,67190,28791,85266,47924,75105,18908,78221,70246,5488,49414,39115,35712,11382,37212,61941,75362,17877,26458,94013,42846,77797,93270,53146,22260,68932,71895,87913,5879,26483,80089,7006,96845,70524,24807,41872,31070,39049,68926,32049,72179,31769,77579,69958,6449,82484,26890,48574,65040,65123,23469,92177,19088,69238,45414,10846,13662,8506,55707,26224,13328,92231,18134,85091,44354,98869,97618,72483,89474,89357,39449,66831,7358,42267,19297,23400,89130,76832,98690,4928,83477,30817,38111,21195,65894,91973,5922,5541,6468,73366,68229,89088,77166,11649,16478,73992,56874,20491,98674,2398,83952,93055,81103,74849,30133,38785,90732,52493,99752,89601,46178,56981,66336,46000,63388,37679,15774,10786,90123,15325,69725,66703,46248,39539,93902,33522,36126,81581,38916,51526,3330,67861,80930,56663,61686,97637,5375,28852,3178,99760,59773,3618,47370,37918,51860,2547,2351,23004,71564,9631,60860,75462,66259,39486,29377,35326,50254,44658,9895,46695,49076,28152,96024,95645,54579,71162,17319,25488,87838,14696,25086,94772,71870,52164,76030,61787,23654,28710,22599,64903,36555,51080,41571,39833,42775,51416,62121,49183,93967,32139,43252,66915,18804,57319,6531,20506,9326,72406,72453,46956,52944,69816,20952,49354,56650,56056,70857,40457,45577,70333,33333,33669,66469,73399,78833,57022,73257,612,15693,16011,48307,61102,26240,19260,74386,81750,18237,55162,35551,67836,70008,31927,134,3168,93293,16657,68775,73528,19752,48147,48929,92469,78423,62759,88920,39505,2472,38533,97883,85534,57616,15541,58773,69940,80388,90942,85483,38496,17135,9559,82806,58096,86742,69461,55222,35157,59035,77908,24810,80152,2695,86070,32518,76147,37484,48270,76579,80822,37211,45627,93805,89437,71703,37353,26148,70512,9871,31726,91158,10947,891,19748,18484,24179,52221,95003,1848,23673,21303,45165,15386,45141,33414,78645,19941,93087,76044,38592,38634,69936,49092,68423,50179,65217,32334,31213,79481,4974,55412,18800,4335,11684,16189,25095,40205,61883,8391,73417,55193,26508,86705,46543,36349,65844,99714,88805,93986,75633,57702,14511,74199,70493,93667,36441,5954,31355,1090,92683,66430,97860,25740,47341,68075,87815,50083,75443,24024,90976,3047,2163,16073,35482,90212,2791,75918,27768,5895,68619,83584,97956,22240,92307,66810,41750,63312,26482,4659,35972,33659,96456,29199,29229,50653,34141,65203,49594,18024,37733,30268,28309,65470,34858,31899,23726,76081,98053,6553,95624,48216,60529,12721,18034,88037,70425,60347,8604,90956,54769,24468,1927,29820,17516,91112,96536,13228,1681,76612,2832,64412,53401,62737,36110,45299,10187,69847,48272,94639,21339,11238,48890,53178,81535,94992,51953,86141,23187,36850,73218,54718,97996,24880,77985,89970,82032,69931,93005,23829,55410,96058,52837,92023,68228,79734,27084,5288,36077,42643,40153,21740,8044,59303,83724,70313,21962,59430,96250,48188,24783,14709,2301,25592,58872,48299,78276,91868,69224,46971,73517,2626,96512,59762,1694,56848,23828,82562,66902,71747,10915,55856,26197,54782,3118,30264,64474,3324,15261,50308,13771,87624,89607,91593,50682,76920,61520,35434,16571,98477,96830,961,43703,2714,36383,18464,28324,22014,18919,71480,85251,38653,57872,47863,21479,34221,17183,42191,6322,24338,6495,29429,93157,84171,39787,7864,55893,14112,26517,80986,2776,64557,13675,80616,99575,98942,23189,70909,80761,80023,62593,19925,4610,65768,8729,33302,93571,20580,87357,87925,82371,64125,67356,95517,65955,31909,54935,38307,76902,5126,97884,85548,96407,21758,91351,35645,80251,48249,64500,94876,27548,13621,25342,71675,90487,20794,18599,90692,68998,85690,92266,94016,58704,20148,16003,73940,90646,12995,33895,77405,87591,18513,2969,57271,8932,21323,17166,62777,86655,93482,21967,16670,8871,22195,68640,26451,75388,48281,95191,75436,57705,18494,63459,23767,84825,51341,82613,88716,83317,37952,85824,10038,62604,74925,7352,836,53336,46153,68752,34184,16779,26393,13696,6055,95031,89774,82386,40580,26415,21870,29094,81651,49746,61958,50943,35029,13561,85050,65468,94577,74020,53113,88872,17506,63529,10508,89897,68776,70767,67318,88183,88504,19909,78892,15644,84826,14240,78606,67715,82056,21719,69155,2549,46975,95578,86554,85733,32384,43184,33835,25983,57223,33492,44426,55296,31329,48968,51503,35186,59988,55333,65772,78814,74646,67449,86025,98192,48557,78624,10992,45196,98008,40099,66911,92829,93701,42155,12078,97868,86053,243,91903,19038,96338,55952,22354,11756,18860,61503,51057,40593,79123,78294,75510,79948,24837,12302,22795,89786,79283,40603,27892,32506,46901,4929,89381,81033,80332,57792,64219,66291,71188,68205,77478,30999,15602,58614,12935,83102,9225,39285,56246,40924,61067,81618,18100,56932,24434,29679,74340,85845,77737,7270,78615,71264,94573,84018,15216,69717,70217,37162,89234,94232,74932,85574,89017,31762,4005,95678,6141,77057,99238,27603,1393,52101,34936,27873,72805,61920,89785,3311,42253,96630,47655,41877,18701,48085,72469,40481,53326,794,316,36869,96744,37233,81349,78146,21593,78899,87926,21027,22471,99891,4114,38110,76219,77615,26973,49165,83513,90900,38476,51859,70044,56406,97092,62962,94819,51990,77327,81063,11935,7936,70979,20472,53117,5008,31205,56555,87415,76026,92850,97154,71596,34453,99697,79790,17463,12738,84591,39372,59001,85680,70513,70038,49889,58243,59642,89345,38740,61736,34315,17491,56637,49919,14317,23523,44558,26972,61307,62280,4553,46547,36687,73679,34257,73165,593,28966,45286,86951,38579,96281,33922,34176,69288,94376,97500,18256,61247,38490,59845,78160,63213,6704,19861,85072,56325,59833,44004,44248,94727,46943,42085,92579,8234,17758,99828,14215,46210,84476,94847,18873,65442,51477,3885,2746,42404,96860,20137,31885,75658,8135,50052,2654,93302,43435,27200,92833,98398,41338,9153,92753,45495,99029,22192,94190,34768,70279,73620,88940,56026,77674,56872,82070,55323,79338,6637,16286,79001,31108,99009,78045,73836,78551,47674,47361,94782,80234,39487,32082,67041,95557,1130,79037,80481,74525,58694,44922,62008,37429,11892,8445,10851,39273,15013,29839,36159,6213,27786,57697,13440,61455,70544,91685,80993,89839,33308,22790,46862,53225,57154,50200,27687,67026,45666,47875,71474,27316,41514,46656,32425,99019,65058,35919,41164,75676,91338,21212,61319,33674,27964,92977,22295,35446,49640,97530,82182,53959,38284,87646,40132,82313,37895,30965,55847,9681,84894,2636,1211,77167,24031,92856,16313,46155,16903,12892,9826,50531,51478,81333,29117,83004,7272,73625,96404,28720,52504,36114,90181,40732,44220,89980,43374,3990,38629,84386,70311,45473,93464,31711,92037,93742,11705,5217,9487,47187,29323,63352,52673,58959,25314,98117,95538,13429,69565,34973,35158,33458,29274,47267,85062,40581,18037,28102,678,46840,90239,7303,98891,80499,38531,21951,24877,26160,75185,33795,51617,88288,37024,49557,71880,59730,8089,75237,18814,10369,7003,30370,29574,7007,68067,33388,76341,92049,44703,34976,46421,14446,67569,70784,1815,62647,42879,68237,81900,79546,51154,74373,6269,18676,73286,5107,95558,74243,54382,62425,93238,2902,52895,85196,99550,35678,88033,32772,30254,42360,13600,88579,72206,40347,90930,7079,15405,38977,10989,81754,17777,59469,8920,67410,88467,61733,84588,74485,97723,94108,86539,70170,75308,59481,60533,25079,31443,1326,65913,89987,1004,71255,42251,84000,97469,21585,87118,35767,70981,4166,38694,35248,59711,39280,85206,27615,69059,50438,51552,24878,93706,69126,47657,96884,72959,3855,21706,56010,26493,73198,20448,93951,28928,74928,37972,81111,8121,79879,45757,99604,21050,10056,51895,41480,30990,12211,46988,97632,8782,82703,92448,54939,81801,14377,57597,97131,27244,63681,77023,17902,40545,47918,91586,9869,87469,37769,48306,38696,45096,50238,28181,50490,26519,31259,5928,14305,56734,66458,80796,329,21697,59374,59054,12022,34007,8662,13057,93122,16835,51079,58053,55729,95653,35017,73193,26568,8170,93435,55038,2200,68634,9835,10983,75213,82604,66094,74923,66946,83649,57591,95371,55513,2350,20384,34084,54135,42938,72584,11295,39618,25958,78084,88619,63371,77597,32947,86434,5616,47134,34650,91742,90397,39728,83216,41955,82768,90324,16978,26384,97407,42242,14875,98110,44725,24816,23044,12506,96396,41196,68235,82315,80998,90183,10027,92489,13002,38641,46735,37126,45329,11447,7759,12673,15553,10358,65186,17217,14646,20807,73306,60306,67592,30290,21545,8669,76767,62971,74988,36369,82276,79612,5265,24534,54652,43818,9894,41775,81022,76929,86041,35801,53803,50228,87330,58650,75573,13953,43992,47836,29782,56557,24614,35842,44849,66776,4250,94022,12281,57564,93211,84207,96556,86406,19977,57199,31553,22747,83,24108,23588,52929,97049,60983,80828,47504,25848,7042,93948,7332,61097,3477,58181,9544,90421,88073,85803,7576,93023,66992,7793,47426,25794,57743,22180,31346,13974,6426,61980,8637,41844,93503,38252,51635,35820,69506,16344,16387,47318,20095,74376,89482,78467,83092,90161,40395,8465,61056,88270,12295,37451,23251,77656,23552,68201,38593,70595,59844,98910,41905,79113,14277,92457,97350,90813,16632,91008,89827,28995,5818,17975,30635,90937,62787,44656,14638,25764,17391,42017,61869,38898,97207,2474,98794,92773,718,48794,50005,88411,51760,65143,98076,76531,31478,44120,6995,95229,71899,15351,21882,89595,37492,9856,36647,94135,25986,13439,57508,86497,93908,53592,51547,76864,14996,86988,94321,27357,7494,42490,25975,55245,21025,75624,23854,38914,55546,4336,94651,46575,87150,17894,77183,99460,36050,53161,25832,12213,71978,578,7632,75242,63023,89492,25606,6766,63044,78778,25196,45223,52306,32630,14099,80372,6207,61667,88039,13301,42383,79683,92302,50923,80143,6721,42379,29703,7236,77052,18761,2638,33163,7739,55146,32967,9180,67986,45417,20363,79950,84071,80449,65321,22038,52668,21579,34104,69955,15340,78792,5042,82339,55599,72113,77180,43970,18026,97283,47415,7817,50211,81818,13944,70874,32510,61649,13400,84495,71141,88728,19058,24857,11331,6187,92088,33680,15470,42891,49837,20002,5144,33359,56203,46599,63989,53641,88842,86181,31325,71163,85079,66865,22220,27094,19595,28447,38639,90012,88689,96785,55917,92551,51567,28946,82476,54937,9371,53330,10254,61578,34702,8879,33581,2724,33804,67938,15910,37405,32377,49710,20512,63018,43137,19533,52774,83820,84925,96874,76109,16530,48835,68591,7119,5200,94760,65317,74015,686,42911,92062,64859,5417,34634,20801,85158,41892,45965,71796,4665,93941,16624,19991,78210,31681,9030,66306,27559,77535,76552,20488,36303,3378,43461,21801,56434,37795,46452,25617,56842,41815,48531,67121,64475,7887,85714,38681,1750,22007,97719,75714,91058,25807,83447,66263,18857,48027,61172,72573,65003,42344,67577,98700,27927,50001,76143,75431,84645,52516,91652,96665,71456,58536,61983,51220,74663,54141,72331,97669,60212,10816,10795,27592,6985,71411,21288,94405,17015,89377,51882,61896,51621,19932,50453,15921,23505,62138,66508,7853,88552,38605,54514,61284,4599,52695,53907,64252,14397,90341,84506,3916,51196,87436,12273,9449,50593,88174,65912,93473,59916,57879,91217,75463,36955,90192,12469,44876,93766,50675,95432,59606,90724,79623,78717,49075,1289,75772,57769,40053,98548,54040,26569,20398,85528,5777,61846,95344,40019,41697,65747,9478,86576,48400,47873,95352,50044,88928,9783,73680,36984,93252,83228,34583,82607,41243,16852,493,14974,2133,62979,67668,63572,75195,7548,66719,22519,88014,49274,31439,39807,90938,79081,92224,7490,53746,48449,60977,37758,55209,90544,23929,80880,3834,57851,42946,29510,91476,585,91583,65456,3979,86122,95949,61332,4219,57208,1762,44845,99099,90531,67054,47256,44431,46488,73059,44486,68092,73903,60809,29460,58364,9525,85900,95307,42076,92182,39777,89458,39888,1586,39911,60121,96826,95480,53070,95466,85211,22353,38953,48461,94365,15397,27921,63095,70074,30452,94769,89140,96209,41996,98886,51267,39256,4340,60958,50551,62851,40362,2630,6259,77401,63173,33889,24827,28896,49742,63532,43542,94051,59235,22,83735,97552,47538,31450,33757,93092,13644,46419,95058,11323,33843,37265,65834,95235,40427,38152,28878,48799,49064,65446,78560,42701,32623,69418,94053,76035,66222,83956,32467,65153,47728,94624,56760,36202,93028,82438,68512,26876,69480,24043,3077,76881,53683,75548,45294,40138,80067,13680,74873,69122,6595,67055,7578,92525,34815,99383,65117,29108,42905,9048,71398,15940,37501,5095,13592,28697,86026,4999,19174,28609,95889,33351,46826,42930,7732,1990,51357,59385,92887,43439,5472,3192,38382,91306,77717,30284,72913,1267,23803,61605,91198,19271,92757,3176,79738,32038,19936,19197,89114,20004,16012,32983,39328,99422,51130,64012,20995,29001,65476,53600,31077,81047,22408,15231,39516,14989,72236,25060,27375,543,93556,3693,2754,66656,64272,93107,69814,53218,60685,36636,45356,91995,80013,49149,60883,26448,87131,7348,70647,8747,69277,6250,53313,3971,16274,90679,42596,91085,31749,27376,54615,68979,76310,7620,53965,77663,88060,84364,30136,3558,5087,62582,81896,59093,34955,39934,63954,75432,57560,62270,65051,15896,43998,28011,23085,10634,81939,58756,97196,67066,46195,36410,48002,64955,37562,32342,76250,48079,37720,68778,94173,52128,5033,73942,16135,52918,34360,6609,92595,7492,3677,89459,70211,89292,9045,50521,4526,15492,21653,89765,5549,41599,9295,21696,98589,50138,8305,32666,24307,69164,77667,39755,91367,92347,34938,11112,62248,57820,5118,17474,69170,83472,60709,72493,45449,27668,81140,12815,56211,23723,99244,14660,13263,14282,95500,82863,85444,29135,48055,22907,53120,66899,14605,65991,56568,53441,34408,68958,51903,34937,83031,21068,80908,69472,14730,2716,1186,66635,65519,88302,26752,46558,20875,70943,93809,68302,61275,29633,73411,16504,72235,18643,66184,79148,84344,82229,57961,92392,22097,84182,38468,99120,58337,81058,32512,17254,73842,62476,88782,54487,16893,93344,57391,31040,45631,99795,54843,5173,54950,6934,73954,70927,12079,92657,83168,63258,82984,68373,3157,83217,46605,74257,19287,86681,77298,13585,10406,42230,28860,81580,45000,54467,88754,13241,85829,84884,39829,75606,24886,43897,24381,6186,51248,13405,14268,56236,37044,29226,72435,68853,77657,11780,19077,36431,38616,73337,19323,23517,10810,44150,82867,54938,49407,76251,93022,53954,75124,90571,34157,44436,81059,53906,67327,75931,58355,21695,56679,36599,46583,4848,87763,98762,79876,91047,22080,7022,56796,54617,97814,80566,53700,38051,97272,19577,3692,74558,47413,78238,52161,36331,28058,35232,53928,42786,38255,68910,90015,7568,11878,29677,16844,97789,98931,29866,44270,11376,71193,33938,46742,57882,20872,20298,67919,80630,13110,48845,23424,26437,87071,8900,48538,36057,69325,55180,77783,85524,58625,57380,17674,73,83073,67244,74878,41378,53575,26449,14712,56873,52171,66404,72809,76402,15384,84045,3478,49099,98326,50974,29812,21549,90801,60962,62360,67506,65951,95043,64381,25892,47548,249,88124,80482,10946,83310,57477,29355,66860,65841,12286,88653,13734,42322,56861,21860,96328,82750,64299,21825,87263,43383,26978,941,71263,92468,21363,80878,71664,86862,66817,89092,35496,38646,47982,84230,85243,45695,91920,702,78687,19273,73501,7376,77553,69653,13901,8718,94393,33442,93721,33299,65335,75028,69719,79365,33102,65771,44956,8213,70134,38608,94609,28779,73606,31842,68572,23653,32426,45135,76884,99006,65862,91443,47019,24443,35806,20432,4839,12549,52183,86548,85580,31079,1633,58608,54889,35247,45078,77554,38495,40696,94536,29234,81483,16398,50213,36177,45250,52022,90698,69103,47876,41837,61929,18515,92699,96969,35998,90924,65923,13578,51385,2464,4858,60989,25207,20111,81272,94411,8053,3482,53055,32665,23779,25479,59598,46102,39898,89773,98851,66223,13133,58297,99307,61340,20710,85174,52520,10503,62710,23417,28370,20684,61414,9269,77123,89207,71755,27231,65469,86302,20862,23885,98240,70116,78430,16686,42728,43971,59240,66962,44384,31616,34529,6539,2081,5940,74897,82201,61969,82729,87616,68877,87864,75219,45034,93771,48194,40660,63554,99045,24418,6635,16448,63997,37487,71784,38141,67837,89089,96128,29539,64729,58140,95137,8048,93530,48451,87182,58498,49829,61916,64804,45228,95823,48032,53141,5205,22251,46052,19914,62172,42032,69060,75616,87437,30961,60995,45185,78773,8255,75572,99870,65857,84541,54240,94672,46839,49751,16045,77372,46736,12685,49518,1828,6849,99293,67452,23728,4307,42828,82294,98361,96572,13025,17487,44434,48990,91179,60070,76658,92789,37017,55331,63798,15508,97159,55961,55365,45665,42914,20745,45733,66025,87924,95728,64318,80599,78853,37106,96864,89335,89780,23620,22145,32423,34912,51272,81402,70129,6589,99875,54290,81839,46629,74775,60041,2941,64055,59318,54253,35674,35481,96374,44694,95089,82200,53234,31644,98750,86267,24318,34868,31072,66914,67335,50626,28661,61858,26623,56125,25987,27516,5712,15953,81847,95393,2360,75209,43592,5105,45541,42585,90060,75194,54102,12534,79894,5672,70198,60461,48674,86799,43321,43128,27635,8711,10905,12574,76210,41819,43631,62437,12787,69439,10310,57479,36867,69051,17816,97754,14301,63221,93848,77067,14022,76106,31939,26523,94120,84274,67602,88237,28641,58199,21603,97525,89396,52513,32387,30786,98149,48432,90391,21550,52051,27925,36437,95722,19153,22286,25133,57533,64445,85261,32437,3201,6183,56587,78625,23894,79419,55268,10390,62113,94284,48212,70893,8075,72314,65756,74984,65799,7403,29107,932,61253,35249,50007,67437,31486,73158,24685,97345,61235,65068,70141,49071,92351,22582,69891,27294,24799,37291,7381,71681,19183,7964,90149,85405,34074,40587,63588,68304,56319,90013,9911,62595,33805,42119,67247,84513,18644,60528,47535,95214,32545,63136,98613,32641,498,49394,31981,65665,12112,30000,54407,7268,14493,71204,1995,49758,59491,50361,39160,21327,83716,19155,67927,1699,83268,64228,26850,3986,1493,28016,85767,89464,61317,65979,33682,53900,70796,47509,64373,71459,37544,58524,67949,14364,38343,22611,64530,90073,19371,34964,21070,50233,6841,77819,67113,18404,53303,97573,47976,6154,22369,6980,55059,1582,35642,62419,60179,36279,9902,20908,85740,65221,67597,23765,69721,52967,77474,92521,55349,74768,47737,78461,16872,50823,40991,42512,86627,68440,85262,59476,55271,55578,28289,19584,97850,128,33561,76253,14600,96008,73127,45744,90906,66135,45145,96933,73416,55362,76127,27866,52609,31373,40266,39202,64865,8777,33870,81094,50383,2622,6084,20042,63884,13288,68086,14964,35701,19111,87656,34676,46566,12380,92510,33091,20126,469,58966,96066,600,63227,15616,99899,61354,16145,8978,94471,61082,84725,11439,76422,23900,45571,46843,17247,26606,56894,10516,82654,48559,69323,53304,20521,15680,81574,43189,32547,90104,1951,88347,93783,12233,15499,3083,63076,7606,88182,44531,98312,59459,41601,17712,40969,28363,24139,57647,36953,29603,11359,37461,14889,8208,88452,52346,54128,68232,84770,58861,76005,12553,7442,22154,77861,44745,74972,84698,60381,33987,42853,62064,97393,78456,84642,18485,15647,37051,66793,59333,21749,41503,80103,27554,67431,56563,87480,57496,87314,97339,45758,41954,63972,9684,14126,66369,68384,46333,79410,96783,25530,12851,16962,45020,97713,62140,67116,41752,22884,20751,8492,20304,4731,77224,26648,19255,21429,57032,45716,62898,14579,59985,59361,60566,15569,89243,99492,3541,15236,51681,12438,93222,97162,87397,60014,1338,66032,22167,36716,59182,7237,80323,32254,7088,27643,65331,19141,41385,5395,26894,64164,71341,34092,56908,71521,59617,57572,5576,77532,82719,88933,46885,82549,2227,80944,60373,44343,71544,90491,70764,24564,24902,45027,63416,19983,22933,4400,12388,84388,74783,241,73377,6134,99321,30365,49392,52027,44701,94866,35903,89668,6543,35266,19614,72265,19099,43196,20284,25454,17296,73378,95665,79761,36505,68786,57085,77892,80508,29424,15062,53601,76820,80203,12822,51774,51469,14993,76429,28906,85556,54780,25173,94906,97391,89792,40296,48300,51152,45768,71947,24452,77631,74512,18329,32028,77413,90442,8919,49585,8997,77920,9860,51955,79735,52956,64526,41431,18668,95023,47942,83958,45748,31617,24371,66665,63199,43599,25461,14867,711,18054,46630,87529,61318,7412,24262,51803,10663,69417,94758,88649,50719,83582,58521,85128,76046,71392,98823,19466,21565,75804,27016,87843,19216,23214,19207,63822,48876,11009,6126,6242,83027,9959,18923,71905,93284,58741,18183,66304,50714,12878,63263,59541,24335,28824,42315,318,47351,85040,41190,47645,83922,41103,61577,73259,65136,87249,3045,37290,26608,26980,26234,99930,82064,28739,21981,34853,8639,36171,38714,29871,98039,95965,20851,58060,52739,2801,58265,86768,92186,80111,67089,64677,6782,84543,32209,80951,72971,13967,77021,28578,55948,27319,97537,67851,69028,76655,51317,68795,270,28501,47174,62463,11519,6591,75015,31560,298,34719,52477,84372,57337,15872,78069,32637,43794,35262,2,71335,64958,46438,80536,44601,77285,21770,55739,27919,11183,72373,9508,3426,52743,55597,7299,16914,87949,27175,18,55255,882,47126,29592,13977,16328,83969,33998,98971,35766,58348,26101,58931,69825,75679,28082,61597,76362,10711,12383,29453,51607,36504,65610,77821,41181,55049,85203,87122,25768,87762,90675,65444,47164,8999,82789,27580,39752,1369,39051,52899,16052,51225,52471,74118,7313,82527,46863,52794,71215,73809,52173,43756,58487,57185,58229,63726,93048,95564,69596,23139,70849,27088,81312,54629,93425,82777,55941,58011,86676,25396,2263,90272,10275,35092,22344,4517,93981,30709,97743,15088,55740,70201,37401,71125,4590,93895,56289,33550,80422,65659,10609,6692,98228,92831,54325,42443,19785,16282,61600,58427,55348,44292,45986,17054,54416,28055,95693,23548,79260,33915,79516,85567,33179,69748,57729,2444,86067,48903,90322,14227,85679,76411,70374,3411,19201,48325,98145,64587,28987,51683,68396,2685,19997,45689,99838,45322,54388,80819,2336,68837,91697,76870,44268,21374,97048,33313,40082,51642,78928,84649,48698,6894,20204,80947,50050,40370,40946,58638,90556,26125,12761,4717,83779,89545,55125,75214,26792,16018,59739,36060,89018,79228,79098,18259,83821,62491,68896,54656,24662,22339,6311,55029,62913,76629,53583,81279,65404,89076,80373,57148,60491,46426,84637,86678,23012,83295,72545,6129,65778,19743,66451,34986,49857,28235,13091,44739,60281,4678,93119,6923,92460,71292,30010,12633,19414,42831,11179,67271,47228,53022,41145,15627,214,73088,60243,37168,24227,44568,22451,95719,60719,47810,86330,72774,95553,2715,67956,40333,15388,33063,37874,89308,46832,29152,14904,48807,67069,50917,13197,56140,97751,93778,45780,3568,26700,32008,48344,47959,7114,51151,89954,76221,47255,49046,78817,30005,25438,29000,27870,10048,1738,51951,74494,17013,93364,40335,73083,97639,4191,40236,15819,74688,81827,22739,7701,17579,32321,22760,67440,21590,46986,78355,33642,3215,20072,87969,56218,59947,41217,56753,49290,44638,32589,15099,33178,23347,18735,35297,40694,92252,76372,2992,10565,95759,10785,99208,57326,5214,44787,22660,54344,43854,6663,61507,86846,33937,41400,91936,24489,1812,78602,79392,11269,24948,76793,17327,54140,4040,83763,6642,76608,3354,93641,95664,57690,21790,51631,91369,6252,37991,98205,92846,5487,77008,88345,33425,17774,31958,75374,77701,24692,19486,47056,24732,88362,57406,37134,28228,28089,53817,50194,38834,229,73917,24085,17728,1087,20469,4849,98754,17196,45140,42530,22335,57210,96747,3363,40383,59543,75518,66655,52830,94177,91194,59133,56797,85917,97933,53756,34897,54490,91778,60316,64508,37070,7223,26609,97802,72589,9977,50328,82550,47367,59971,70509,52920,70840,79567,28133,81309,86760,15072,55061,90291,48278,70828,16925,5175,5491,53845,97589,76953,83495,730,50218,55808,58094,66548,39395,81735,97799,77159,92523,52854,57297,19253,86575,1928,63014,93309,42619,76745,33897,79804,54341,34454,10067,35208,8806,15528,21972,70460,31830,80642,87776,29283,4358,83343,48554,38151,33537,43900,39167,9978,24755,21945,8501,75556,95635,47411,51485,97470,57234,88843,71383,18477,11315,19003,68771,5988,71443,35872,67547,99602,75233,233,39884,86872,15744,66968,89986,35422,59742,10695,49584,70268,63445,76794,31679,41377,37982,10142,53107,65795,91663,68867,96372,16639,54710,78607,66981,10981,79997,58051,44749,52423,49743,15258,67849,31620,24113,91307,975,41686,99128,89507,62668,28382,80981,20336,66526,57168,59984,76358,463,5721,77124,12120,60346,31036,35197,87474,91415,44008,76399,50750,35975,52577,57863,62897,63482,80722,1297,1982,4649,23147,22778,6212,39914,32646,92729,69081,34462,91303,26984,95389,59471,89501,76779,4685,44323,74801,56774,43259,9452,22944,41454,58744,34108,59198,94856,53074,30632,12969,71042,25809,49826,84713,71644,51068,44341,5083,92285,33057,69640,31982,84313,60558,2583,61526,90949,75957,66671,24728,69960,84785,79736,18826,83531,43281,33365,59944,93455,19229,94341,74632,13157,56142,86137,65280,60773,53996,59040,20375,3279,35366,26946,8345,25238,86978,54009,37380,35239,15836,50475,28170,37065,25077,25254,3319,82228,25221,63400,84572,67394,51581,34721,14458,16973,92862,7161,77796,83756,12354,69300,59702,72028,76090,90003,96809,12603,91856,18996,10509,24471,56005,65100,47643,48853,81427,93467,72333,53115,74005,78222,61110,42721,33959,83590,94115,40425,97720,71049,90229,82306,90258,56546,8152,5528,88304,56194,27241,4266,18864,89823,30733,84057,10525,71672,74996,71148,72595,37645,45815,8247,94653,13889,38584,73015,25036,11003,76521,77155,92404,68214,97400,45338,99129,67323,67543,30850,72800,60855,7457,6089,24703,44420,60650,59609,41367,30097,85237,6560,11958,14136,35756,54927,1391,91413,29021,9501,27624,67801,6165,49728,28502,73454,45636,52529,16110,66348,93512,97700,48334,15829,1038,83173,33968,76259,40387,5564,20621,78567,72927,63300,42628,4550,65412,75193,7085,78652,12431,97226,36826,12891,86018,20835,20496,88571,95441,92787,34063,97963,10985,18176,5633,2963,40703,9512,35976,21998,86063,69562,93403,36537,37675,30262,9497,49865,36056,84927,87246,8276,69306,1412,48750,75387,23390,65901,23891,2462,21722,10760,991,9543,52946,93030,80198,95197,14621,60761,55142,84578,48181,45932,37772,5307,6848,75313,7916,91504,20340,10248,89415,55544,86034,21583,25719,86363,60772,50924,42293,88570,50704,49311,9066,16384,20640,12163,13880,78542,10046,46167,52488,12430,49218,15101,74346,45522,45179,54958,44245,68709,25178,52102,66384,7338,64494,78985,57999,78941,71471,1581,81082,185,75091,52675,90854,88574,12592,99190,59358,19043,50423,42342,28981,34052,62481,3315,36738,74305,4054,4626,30906,70055,83481,39803,6287,63064,94520,10911,44510,65845,51119,24649,96087,61959,52076,86777,45212,77233,81001,89224,55421,40511,63422,94558,57836,9679,66919,32058,88501,63887,57429,76492,77329,59603,60367,33808,46669,36433,10013,41573,22961,77325,37936,87827,44882,82260,89225,32923,20803,46417,94294,99603,20969,65718,69817,98912,14704,59660,80404,36490,46164,59066,601,35289,10558,85065,57067,57538,41747,29936,29558,55726,41169,22654,2643,26298,70288,42101,48650,15849,44719,51752,32406,9461,20476,23413,20541,81014,21949,30336,7904,12225,31702,35887,33013,38552,45486,92563,19866,82474,68787,97847,86585,9574,65754,92268,15037,20212,82347,13701,78305,65147,62019,14953,38237,56487,70615,72506,78420,54763,36901,94625,63746,95595,97035,37693,79167,32705,19634,94165,48920,28389,53971,16280,46456,66739,5885,5043,96618,80690,95765,78023,51098,58046,94627,159,17591,96300,79203,98734,33811,24561,32897,53885,32312,11116,30237,50167,73682,89837,93980,54469,30971,3257,69181,92138,90555,23076,62537,70996,28631,36798,14682,18957,52810,39620,66360,81269,84012,33420,57894,44770,9437,16484,33752,80091,48348,48137,34071,87107,88276,59311,46171,93239,8807,69793,39433,13816,63731,81946,31673,3289,73070,18046,36429,92561,82021,36558,99690,28657,92147,33687,22235,276,4712,25105,60547,21271,12127,40572,19786,24846,62455,25729,27530,84422,87986,28738,68050,97320,72460,18584,90768,58991,895,80491,73352,59882,6185,49789,94251,91089,30601,71966,49851,9944,50414,86995,75161,41406,36621,9859,17409,10164,11264,49286,51901,37074,51295,37742,81659,84870,55478,55768,76542,46619,37743,86745,74718,72187,77003,11348,9386,64690,73663,36520,72877,10815,40823,29950,91489,99026,5178,311,2728,98993,99624,13799,32349,93975,96937,64907,41033,91976,91872,37002,19877,59212,31797,80009,22867,6049,7076,20987,65867,28505,88251,24923,12612,50112,22139,58942,87816,67051,52631,10054,5652,77112,83992,57888,10643,13094,50309,45675,70973,19912,41171,97966,58492,99607,39127,13269,96659,6367,30543,18815,72185,32238,52295,1914,5905,63471,21927,25382,23748,91655,25707,1665,16381,53483,94810,53243,46043,54659,59831,9184,72100,92075,9569,52496,49607,13835,30259,23086,90424,38556,11370,39302,40468,48543,38396,86607,51282,48251,14313,14015,80219,64254,14985,65163,85317,79936,28111,42692,90049,47457,10388,11294,24655,19982,44948,40147,15568,80775,91848,8367,71712,74459,11673,71438,95870,48769,60163,64363,99418,10003,86869,33030,29524,38428,85297,61012,79043,14453,26996,8547,94389,78830,63509,29767,71765,31876,79305,61404,82530,21759,25303,40123,90630,80691,71680,99927,98362,6292,39132,48129,12444,9711,98753,19494,11168,77978,46308,58180,40897,23587,64967,60725,79529,99982,79513,905,64224,11791,59611,79872,38665,53810,45784,3791,22273,56186,235,57214,94542,16552,41756,34763,29033,16928,69376,78894,13410,55118,4108,18225,93326,75612,52557,41461,86609,1653,28832,29039,16828,41393,62954,69014,94196,89537,79620,8165,56287,20280,22217,55601,76289,63316,61497,21950,14175,36724,12239,15479,87288,43863,24132,74958,99356,54010,34871,63250,91657,50376,20811,23785,34537,75061,36372,13314,31936,92612,44933,6871,90025,1448,19845,88790,33831,58515,9088,95112,48405,79491,67337,7399,12621,85857,39457,98864,14752,71955,69087,59214,81350,85555,11868,39292,35623,65804,64784,86461,1727,62411,41280,2364,37011,81957,98899,48257,71904,50265,58168,51694,41545,64743,15538,9907,34009,65974,5457,61619,49093,17581,32560,11407,92621,43707,68379,55340,42695,53300,54667,20426,49178,5801,57799,32030,15048,80444,96397,40922,84857,71381,15938,69169,68143,22135,24661,67858,7900,79393,89812,37754,70264,44182,19529,17821,79320,11512,26031,90826,77813,35514,68058,47887,12393,74770,11024,80912,39359,61788,54601,38798,72061,18517,73089,17747,15339,2484,29216,27,11745,47329,52937,94248,94010,8182,99905,23933,65180,16950,83828,91359,74905,94368,61713,59817,2790,82377,80653,64736,35661,21301,76122,31138,92557,26154,87198,45418,20016,8122,84276,42492,8551,67492,34317,63165,39584,57134,26043,64603,26282,73394,94009,6484,65245,34098,20258,36430,88011,94166,20930,73593,56062,60394,67433,79057,14174,70833,53494,26444,16915,60522,16370,82790,28968,80529,50186,99877,98892,7912,7319,66982,48469,89002,52670,33395,30339,55443,20142,72533,47213,54633,23209,61797,97458,304,64368,46545,76049,50055,47636,73750,70492,35571,40444,73254,31879,33141,11301,37770,88009,65683,1051,66409,84316,84385,52163,39411,245,67384,36232,90220,50807,47378,63385,17330,55612,44101,63593,90703,63864,98224,11474,53024,20802,57367,67988,17797,88841,10117,98113,98310,8404,97954,27102,5551,18575,51509,72445,92546,21447,50042,9758,34401,27823,17372,24946,69907,4915,60740,53203,4356,9014,27812,52722,6602,32754,28508,8569,7516,41654,35214,80807,66959,52106,66196,11187,3890,35293,82772,28653,69800,43343,9568,15777,54230,97219,99073,24401,17772,74090,72262,88090,43683,64991,5239,44307,6343,4330,4453,69454,53278,87665,2838,88690,39727,38403,99114,31003,44189,62098,15284,90356,80048,71885,52614,11108,5786,64843,65654,72056,82851,80366,21311,29713,89509,77411,54465,16101,38302,85374,21292,60659,26461,54821,1447,75502,1814,11718,49249,3122,9488,54845,48418,12785,72697,73915,83384,34372,56944,86709,41014,75455,9717,20296,4857,29920,81745,67316,73491,5538,92471,43106,39782,4209,38764,35728,83497,21306,45059,6354,37158,31027,37691,77642,9573,59413,76213,19665,73382,13392,63052,62991,56907,14776,48324,7592,7983,73108,99956,81770,59729,92909,6152,38813,93191,24429,58860,63356,30572,4726,77989,88991,40244,92089,31490,71085,10047,20226,89340,16133,85653,19199,36361,40573,47886,18258,73839,87801,31494,88734,36907,23516,82388,72080,29607,99577,74563,57723,60423,8559,79927,14180,71080,89690,31377,8921,1245,37331,1324,59015,65526,38128,71478,69259,30539,52661,41419,51236,54236,64453,69129,1835,25391,23950,22436,52318,89912,98661,13567,8323,60937,99174,19810,17937,24377,34802,66542,85569,14642,9837,16941,58240,81043,80744,63375,95983,9379,21553,28223,70039,11857,22461,14320,36924,30751,12200,63283,5242,16518,12888,35349,2388,94945,18118,53634,57218,77127,82409,61024,28580,34259,28864,48529,12554,7318,49212,62640,78004,59681,51522,23795,99287,73468,39105,42180,62752,61923,65282,16283,62891,17153,44392,50018,91541,36810,87401,34820,96230,92555,83215,24210,64069,17227,47180,70005,78477,96014,32917,71137,5725,81270,82153,99090,87264,91840,19621,37732,43286,76815,38355,33882,90916,64529,45848,28079,47207,81434,52200,56386,45282,71090,36911,66557,36391,77900,4851,1053,30279,25271,5179,52653,93102,96571,10931,42632,48733,8068,84953,36699,34658,60210,95603,36866,76944,39563,15315,2588,64472,15739,86838,44275,87817,23131,99479,38053,58716,82143,88587,26878,67964,15010,76701,61693,54787,34505,78157,62499,93726,66320,77302,48729,80788,85507,18828,17886,79925,88020,27798,22520,27822,91735,37350,97045,28331,84430,87025,92158,66828,97608,79547,41803,58949,10621,60786,26018,62799,15291,71771,8801,31744,39811,51276,23693,37546,82727,39220,77898,49230,23082,12321,9340,72781,52490,71725,13403,90263,25302,97413,5267,1438,90385,77396,87242,12863,29873,16798,64070,56057,99297,46690,54694,42771,29707,72717,97840,49130,59460,65546,86903,61716,39568,61835,5773,84453,20066,25277,3429,87615,68819,12551,5177,44217,35939,31525,96022,25678,88475,41297,57449,24391,68285,75350,87609,92857,70046,52760,61296,71973,41672,32212,9281,5588,86368,16063,44542,57418,42956,87486,33137,48203,81894,40339,65152,80885,15155,94274,72198,10669,2505,58059,19777,53759,85398,14841,65414,45659,28908,7095,99115,83890,79823,43873,82771,71553,20213,47647,70061,34503,58422,90475,42307,90515,22126,26830,2829,97084,12817,95824,69835,19117,52377,72207,44257,54721,15025,46006,54383,22758,42872,43459,85224,67846,96340,96455,29105,2817,33845,68894,77403,7227,48411,31370,47526,27961,58857,69874,31808,14269,95059,56991,26256,88757,27531,46205,78995,15993,85715,38004,6897,16557,86244,71489,39450,63005,73163,99940,85215,63189,70367,3853,2405,49861,58363,360,94143,52264,92071,4223,2393,77695,4254,69157,60570,64634,58449,53505,49350,16766,24172,34789,57043,91028,13904,82856,94997,336,30431,8421,31501,45360,70759,80824,26225,15045,59752,32170,25835,83623,92303,54008,53402,54525,34675,96823,10108,73287,47416,12204,63561,91244,37381,21414,9131,19673,30095,73397,37588,63159,80826,59655,61139,26344,49466,14157,75197,51298,8707,70697,69072,32572,14763,64017,15164,6234,33297,88206,50146,98202,45379,70718,51305,58987,57390,36843,45462,22454,39123,26696,17473,92076,83694,49229,86212,19830,476,2862,34531,26274,38226,15329,18069,21057,8622,79273,26021,10043,38824,40208,4015,96922,26223,56114,8040,87964,49474,50797,15840,16032,4262,23810,965,39214,74108,41278,6686,10259,50649,90380,59343,9252,40708,82383,54473,4165,72410,46050,6758,22066,25335,76406,46017,82193,61434,85589,66491,64707,42470,29723,99047,41874,36449,60408,85484,91814,92796,91696,96498,10517,95757,79998,79243,43294,76764,63317,31772,11897,26238,73843,42830,70624,93929,67104,33460,80792,80751,2748,59964,74577,64466,9163,72211,58223,7512,37528,99746,47263,82997,44944,69893,45624,53067,22338,14943,9005,12166,49823,47273,6799,26500,45556,51867,58247,17160,42770,10000,49671,45084,73041,1153,23833,11735,63772,38370,62325,66805,97782,64824,18802,57037,45067,43726,63109,48629,80045,40686,93412,4429,61947,76775,74961,76999,92606,54596,46833,80435,51728,6092,72361,55560,5470,56513,46544,5367,29129,22109,37812,10181,23160,46263,90712,19471,23433,73559,12044,83645,66107,46070,45896,33540,63936,32891,53790,2030,65357,9585,32906,16223,86239,53972,73600,32362,1822,44827,37950,91530,33451,72792,23335,42192,28587,25073,51811,24790,17423,20453,52860,74000,71549,64064,96047,19554,76882,6397,981,14920,63495,94056,88319,57889,63782,77690,63885,28831,98812,79756,35347,66905,45192,43426,57072,9279,29777,87993,2331,86641,68508,46072,563,39212,98415,4192,45818,10919,15548,77934,76572,94084,66500,9787,84033,92895,67929,36241,71060,12669,44140,9721,38362,65273,38587,74580,50032,58992,97671,71806,55754,70386,40718,41042,41785,23597,43397,57340,69900,61449,84798,55464,22738,29485,10657,85018,44540,44587,17845,5199,60439,3066,53884,91348,611,54062,14735,95820,4041,83867,1988,41593,87806,78370,55640,64750,41733,63547,28251,7910,87084,38921,37767,32903,677,76635,94525,46760,69449,94905,72465,27757,54597,33677,71969,67742,53269,69186,35753,60756,72430,20113,74127,60032,24656,27868,51880,31828,21247,82683,21062,52697,82080,70511,24925,43190,78223,42897,83638,22604,37388,49488,62539,32719,87606,82225,70434,56834,22423,65043,21431,85573,35327,84072,89186,11752,68025,45867,71566,93183,4341,31460,7617,8082,20219,26201,87567,19263,68020,68692,92765,67224,36021,75602,44134,73603,59826,52418,42466,57044,70325,54065,72632,65137,84414,63343,62429,54511,1778,15959,92464,14412,86256,11016,42004,60591,80056,69615,38447,34713,40263,45735,82115,29308,10308,66445,84160,61252,88002,90125,80781,51968,33747,43547,1439,85284,87086,64862,4361,89650,79125,16574,98225,11005,60369,89034,38673,17856,16336,68687,4853,16119,92942,87544,77885,59972,79941,65709,4492,22725,39575,29350,75849,56182,13019,41094,5459,7485,45174,41557,29267,80746,20294,99772,5226,11276,10221,11320,12837,66877,13963,4724,47570,91535,31906,94140,54741,66843,31236,24779,79745,85137,66686,15320,30925,38457,81540,78422,4593,3563,71330,23217,94888,25049,10452,40281,40611,47298,25019,44401,9108,94059,75701,4126,90068,37495,90419,35,66133,77100,78357,35592,19006,89297,52078,62180,88084,41644,81345,59881,63953,95907,7687,19076,45894,92596,18972,62185,77730,21113,2620,81548,16,68183,97521,18288,53449,89842,71678,33271,51053,58331,43117,76731,46732,45129,57118,4859,272,89145,52547,20507,14266,77237,92270,9542,59371,17577,70004,72079,56795,72001,73549,96723,5064,88322,17824,88705,18975,14764,71024,78021,74202,18703,5825,3457,69666,73376,64060,75889,82254,41331,79813,34183,73310,38372,38465,26195,48268,25715,47067,91836,32717,70372,71568,14102,52192,45126,93496,92431,72014,51965,76982,54878,84563,88408,20328,16015,99897,30118,32617,47843,98746,4940,95596,8854,35169,69965,65703,82457,12889,94582,95817,80015,56655,53766,86999,87323,22314,76452,13230,21787,17947,24317,79906,72024,70807,76828,76391,60187,63789,39533,67207,7060,92398,51175,74223,41765,64361,54655,57003,86791,78010,13255,61570,26433,20266,81860,80200,70716,15296,12655,9802,27011,56531,33828,30587,39859,87462,85208,1320,67977,19254,74069,88487,80856,45317,37259,93099,23140,67903,8360,62355,63527,7371,34725,59675,33028,70713,35781,95468,94594,24820,94608,80701,65686,78796,72905,57333,85102,20454,78198,26560,65616,73135,60336,82868,10347,5387,43930,15159,97433,86124,84421,99504,92015,91108,74311,43228,38887,48786,44824,16171,33286,74390,95426,12789,49754,42789,65817,25640,83881,5386,90764,24055,29757,56004,98596,1065,32388,79900,24456,27425,8937,54461,57773,67441,12238,96134,25171,81687,53421,41663,72686,21016,66772,65157,49005,21959,72393,17377,80661,42014,76874,23015,50941,89143,47039,14498,87566,93515,41359,13195,11623,49070,12929,63866,79789,78913,83155,79476,54155,50537,42758,53697,85480,93811,89204,46029,56542,62746,85132,18593,68268,18226,13170,3130,12753,47554,46410,39923,98587,28333,5590,61326,68537,49481,47980,97340,86646,58277,73716,67083,83393,97090,75322,49300,15939,81823,33881,66129,41296,52399,41689,39910,23502,9130,24356,78279,36944,57283,77116,71236,13651,80519,8079,22101,80660,39304,32180,17245,21726,50165,85281,17385,94186,48158,37943,81878,99779,38961,38107,48591,21088,87009,31785,1748,21443,36081,67022,28448,24428,75506,41521,36387,7174,87736,30683,29878,73125,95806,14195,29257,48283,72477,70592,99769,55642,18611,49435,50222,29786,57556,11678,58559,62735,31230,20641,78764,81874,679,76397,83280,19376,56569,48276,33282,94891,35106,10319,33304,50800,10670,51233,87921,83508,62299,21711,8394,66472,91768,7207,9945,75369,5335,82736,69641,50598,25534,92974,84251,30951,16067,46218,18370,29535,63240,53647,89547,97365,34045,67454,402,55073,70526,64460,77998,61621,63531,2793,59501,95185,75550,67357,65830,68297,89567,94040,51238,37709,93893,44480,78734,76456,58896,53420,55626,43068,11510,17295,64437,65026,54928,28212,36514,79295,33278,8428,28189,423,71046,31153,85272,81338,8830,7870,12619,30515,37849,56479,64328,93518,1568,22976,54986,48771,91386,59593,37343,23108,84629,51212,88635,38032,5323,72811,65678,25008,60800,70820,55042,18771,46160,43112,89099,39415,88301,45227,89242,67865,92900,83053,70138,43029,96905,26239,3237,83882,60833,50944,99488,38625,29092,45055,8993,9343,75036,39471,59375,74077,36761,43832,91052,13466,58601,1889,7973,43062,37527,23207,99528,33930,72939,53361,59650,87625,38132,50894,15007,8781,25684,35742,26524,75805,37978,25304,1458,41835,52580,31491,44463,29540,52368,12483,75845,14614,20763,65361,61251,26270,65242,47050,89667,63418,38332,29101,4228,57857,17672,29900,88098,27860,50122,39889,21412,93215,5439,93068,12575,38672,24887,65309,76495,18516,17621,85800,79434,57427,4910,65700,39489,58781,39633,11679,52626,64310,52563,80327,64720,93076,61304,32475,69823,1520,24190,7139,61185,1184,70902,27632,58664,11429,87271,47335,52795,36650,62700,32652,54279,59224,30645,38637,86116,96686,31304,44427,63660,65842,45935,65302,83810,26971,10701,98300,20073,23325,11477,25065,12941,84947,80029,1871,39784,97435,64048,62025,73589,28193,89452,90785,21210,11826,46061,88597,54545,81219,72736,64325,30713,18400,84321,84937,77764,29856,17562,15218,36082,22821,48634,35414,92030,70852,10471,29507,59781,93046,26295,46502,71123,6974,97115,80295,83390,85566,85354,87617,26476,61811,94000,74941,66346,6976,12277,28984,46316,31258,9767,8611,96078,67682,43194,46948,97982,28147,97177,61911,61561,76867,80765,72569,82318,72622,19284,57981,32116,45407,80959,58636,94508,64672,74573,61222,18564,12582,34439,72415,74672,13209,36033,85230,91722,53124,54196,22905,97031,35595,22975,67237,35561,87041,40588,2139,87803,43434,38504,16151,50981,86981,73596,61810,79907,11229,23304,42648,20276,92913,23048,52084,27607,955,53549,29326,17159,12470,11729,27361,14059,7501,95536,38706,32699,79874,49067,71262,79244,91874,6891,42494,12209,14573,15044,84792,64031,28589,51777,99862,17462,37729,7356,61997,9691,30552,13618,41833,14576,46150,57318,81612,1078,92474,823,36796,33861,54249,9648,37249,50878,35467,3068,33455,85094,58630,42204,93209,776,87671,64514,20662,11148,49768,97093,31727,86084,69237,99782,16472,25737,32724,99674,80528,66760,15177,80804,90195,49996,14117,26801,59320,4306,82572,94882,35421,6300,34546,49374,42710,22402,85422,5366,66537,7975,18603,36070,45224,75483,14488,79568,41666,87284,52253,2284,6893,8668,80818,25249,69638,64923,26257,19186,3138,92339,43880,76395,63925,9276,81408,89594,94407,90615,49641,95232,56314,82915,45752,84272,64913,26319,10009,43724,99461,63103,34667,73813,43080,37749,2673,49468,11327,6235,17867,12649,871,22640,31229,76734,87975,82445,81162,37093,85492,75080,29040,44902,12537,17118,547,92337,61453,60952,71421,47168,4504,16769,78147,35850,23878,98517,13916,56588,78679,38565,74707,95144,52424,90846,57839,16513,32106,22198,59255,75955,52208,35980,86543,53411,25736,71056,37664,10871,51462,74715,67749,5016,67908,83915,30668,29840,46668,55568,88115,81943,55934,67612,61712,25334,27991,34302,28618,8827,98536,37860,26429,61426,29459,79835,95969,9829,38484,18633,47673,50290,91081,52455,35122,80629,83556,91167,20099,86009,63440,37573,61551,48347,4051,41544,60915,57950,31434,86794,32997,85570,88273,76535,50368,35085,54444,25175,89230,52714,14879,54516,49203,86636,74875,34630,10638,176,79723,39788,13176,4852,64758,61064,34105,36461,10717,40018,68916,78231,83195,48264,50291,32812,53308,21771,28022,67554,40412,62740,96260,90510,11375,96495,68680,62674,6100,85764,16446,27644,73265,70200,44363,28547,66682,98265,59595,48351,83224,32957,13267,82735,58873,26870,67460,85194,37289,61636,6937,56206,4374,12996,54138,22433,28996,14620,1811,67754,25888,55987,87231,31073,43999,92566,2426,56058,67671,57578,53688,73157,1804,8422,20155,426,15667,28327,2238,39129,16776,9122,93066,73707,57088,49040,19891,9249,37457,44283,347,98928,69668,2373,54266,31474,4462,48601,73568,50854,10196,69969,46247,54646,12733,59614,34239,84919,42413,17909,49152,9264,55161,50658,47813,13121,4466,33671,87559,38499,99825,51793,48618,7305,79272,29486,35380,74331,32730,26791,56629,24240,59869,70245,94544,62004,47316,22041,32445,44995,43175,50599,95807,86310,35245,8181,70034,73519,52869,61058,98077,72218,10665,49367,10304,61698,29557,3490,2935,80393,48534,95088,62316,64337,48995,74216,83157,23557,33665,93606,24469,52165,31594,17510,69349,72362,85689,34255,44163,76352,53332,79054,11834,84455,19689,3574,67419,19309,53432,68134,25859,67758,96720,97680,89866,13279,87304,49694,35308,75378,65946,90386,11045,36680,46170,50784,17090,60101,48011,8689,89359,80662,32498,57725,21598,30667,9201,28233,7475,72336,43065,54930,97432,68019,22381,16650,86003,42863,5775,89317,95262,12155,42747,14821,17482,82774,57349,65044,44600,65537,65965,18650,44364,19306,54200,28490,89311,25959,87538,47074,40081,60176,37550,80476,43249,57060,36167,91714,58853,37780,79798,48789,68022,89675,57050,35679,99682,80934,94460,83940,68500,37686,2044,60805,52362,48796,75588,28401,91496,56540,60496,12151,53936,14054,31368,95105,46624,86370,53939,93705,24171,51419,99506,58236,74196,50003,41732,77016,13840,54707,79797,43455,75027,98369,13924,91946,6283,26426,41621,55504,12087,77510,60469,75545,35453,20886,52170,54905,69127,96542,24167,33484,60433,99587,39351,14860,92951,10416,15747,72347,82166,49713,3671,81543,25896,93576,71445,82357,58023,19057,67269,28113,54772,49058,67582,29501,94679,76242,45905,76230,61634,15681,57421,51394,96595,42903,21675,2936,9653,65530,33992,99043,60177,14168,21985,70694,61579,3818,4331,78882,97140,20327,69386,22941,7279,64231,94487,15327,77247,37973,32443,86056,68418,96671,70653,17841,26512,32750,67662,22203,34122,79764,79681,28027,85396,26867,74043,48381,26480,50193,33160,58513,76138,11823,96786,9625,85301,66837,51984,95922,87290,37745,96832,34013,5820,15036,86180,80561,84926,61419,20320,6516,24265,48787,68769,40242,99895,19482,59168,99172,92336,45989,79015,13234,20001,61741,43444,60295,89178,92306,49450,365,27430,79111,85838,70103,13572,12034,56017,34,21058,3063,27354,59786,75881,17443,89270,80628,42869,35168,19726,27235,72223,5903,35210,54837,99641,38814,63129,52335,90623,49144,9296,83104,66912,63493,41388,8413,69908,68582,19725,36285,84390,22160,84192,61074,10223,99859,17038,34207,63211,55965,69467,10485,3465,52406,19581,66565,16392,23919,16931,39543,8906,27755,90315,37890,23613,63461,35918,95670,25264,71100,79535,27206,97984,73110,38521,62475,18642,38539,98095,54992,57864,98965,39168,50871,99058,6497,59256,34778,38384,64119,62342,56378,44777,83511,51848,94197,15370,32675,71363,94596,56722,10419,42388,67539,40093,13411,18913,4953,70494,84766,52991,2623,31372,69608,8576,25040,34086,53172,32403,33756,27238,93885,63799,68882,25583,65760,6241,42764,99465,82337,5243,15784,5667,16297,60203,72248,57713,31732,88034,96675,47315,97683,20863,77192,88297,94853,76899,55762,54910,37018,27053,68272,5932,42260,57622,94633,99440,32281,95832,42169,38173,57745,6660,94425,23356,30178,14783,21638,71739,65763,47310,26296,91921,14459,84667,16551,75122,19235,20509,13543,52952,13667,86501,71932,24122,92069,55698,15934,205,82920,94801,51787,58198,63714,68620,95316,79078,63339,46011,48824,87024,81389,24115,97519,47512,33509,9877,55405,422,31956,43049,31452,43238,13427,74717,98484,59322,81051,29967,46490,20043,46479,63882,2878,87015,89714,53922,45321,98920,81757,48899,29035,2773,31652,96815,19546,60472,78344,31894,14726,20291,62358,51430,16621,68657,33067,70216,64522,29281,39098,84631,12064,56322,80901,79229,19042,82971,78055,20770,23907,55433,4310,15179,70207,91009,16364,15599,34865,40100,20631,75728,17938,93737,81289,16054,95453,87337,89846,72616,7729,1831,11611,46514,77318,77114,63517,34479,33893,39236,18302,74729,13871,36721,77997,81332,46440,37442,1132,42495,2178,89580,65710,93891,89821,49164,96487,80686,99368,85922,85005,48654,71124,42114,54993,26460,41413,33929,69956,57105,24424,48659,39270,38374,35395,47363,1305,40815,1490,97992,32893,27078,37608,349,24008,17776,74276,12591,77042,93808,20197,18175,15472,91335,21492,67665,82170,12700,90056,50717,49561,93250,5942,56878,75034,3061,59908,28249,14121,27513,91754,84135,17363,36194,57886,99593,43705,95312,8539,34845,47245,49930,71014,84709,98253,98853,75177,66519,48745,63085,96894,80666,20916,23331,17051,82622,91166,43790,39303,96996,10100,97034,45933,19454,85909,68403,2435,64605,8156,24847,69692,82614,79210,97096,39717,22387,98107,68258,8469,22484,65464,65785,69594,72606,44115,3681,62606,43370,55463,36743,57770,87971,32804,48050,12406,34215,12105,71433,53611,70539,79688,4156,13728,79639,55723,83845,2391,99295,62369,9498,63736,80204,56187,94360,25420,3888,90230,93095,98009,13847,67526,27474,7502,30306,92342,96858,85854,14836,19836,76102,67757,18350,55506,33632,41104,82287,81999,78659,80894,83056,32712,51232,57293,67985,62383,54634,62347,61910,56085,77229,58766,63568,20762,34946,3050,44047,83693,71824,92629,76485,46243,3975,73852,75206,67236,42473,66794,75006,4188,29287,22473,85953,44577,5925,63249,89418,43451,38717,2530,77084,58273,60186,88078,88243,1220,8725,69705,77724,84818,92413,59937,28372,92167,64738,91508,83565,60677,57677,75393,22531,64844,14853,72932,42641,58381,95697,61681,11354,14807,36118,36388,18552,86038,98323,32552,20880,25866,5203,5277,17186,82717,56919,97375,99085,64226,18032,65312,72338,40567,90501,48120,35101,67505,77422,83812,78107,10548,44068,7138,83238,68722,86669,48971,62067,81987,58854,26057,31742,29197,41932,99629,74076,5232,5727,70923,80609,17741,53338,95651,79920,48726,97591,24976,36266,90358,39172,29436,66153,38419,95531,10007,74364,92193,79673,13617,6651,10696,43829,632,42766,99360,87185,99774,79385,83771,85612,60601,13420,34486,50771,38590,57590,52827,14422,99692,79863,13582,88731,68558,53001,44738,40671,24153,53792,43300,64877,72203,53462,97906,56543,50277,89653,56272,49719,89170,12131,39887,82720,6694,42915,22936,24463,61463,36728,71671,482,80773,82163,10574,84502,49876,23915,43428,56299,28588,16601,76414,92188,26323,49704,28008,42326,43305,50120,7094,51273,68069,50579,77400,7344,14661,26321,71734,71634,99279,11635,15756,45254,58408,16786,44271,56381,77608,60807,5587,87054,3029,28782,43591,78956,57815,84244,84457,15444,57596,20206,65731,16775,29887,79282,27039,23025,59302,97593,14243,58714,47016,78867,95486,40762,31160,92059,57300,13732,52369,12417,54213,76454,55798,16168,78071,69005,3285,21428,72099,79216,72210,17836,76583,44191,19780,75152,7388,57216,65707,82933,7855,83140,31317,59928,62239,61513,25844,66217,86976,47356,94111,41187,50525,32133,6474,31890,4,60850,50296,28540,2160,91941,13200,51686,15012,23313,30474,88950,64872,10359,14566,70542,93993,10458,52843,3928,64513,66668,96415,92483,86693,88340,95268,26818,12228,68522,68541,33900,3816,10057,13511,67895,11391,16074,87732,55866,46825,23270,43304,92950,60765,16584,27027,26959,76281,82353,53428,57525,76231,55574,42900,81777,78628,41760,6277,27767,11784,85956,57115,15409,47022,84335,71246,56800,57169,46996,91381,95623,74838,49,19133,36091,83324,69677,54836,21270,75103,47147,69234,2106,79033,14386,48063,13235,15365,32970,68448,80480,85074,73639,27485,67462,82722,36879,68811,22389,75919,26770,94024,87607,15482,9676,10297,76752,2953,32942,57760,45242,34442,73289,1985,83608,54913,3424,69413,40559,1599,68014,87291,60080,9641,89813,80267,81451,67158,97383,98275,26637,36608,6336,10467,64681,82964,8461,29106,17528,82852,4977,10357,35848,72421,33613,89600,7730,46287,45467,50141,91866,41678,84367,2961,85826,71794,2600,12197,42038,67741,8597,30418,66004,94312,77406,16986,37102,5172,85914,56611,19617,4127,76361,10148,34930,82236,41633,37139,34654,95452,4961,37231,34135,29911,39876,22956,36905,15387,88566,75638,94015,88965,87692,76491,8270,25863,37737,74522,25000,87703,20508,15998,93963,78935,38891,69703,15457,83250,43336,87218,1072,74239,28210,90197,20268,28680,96191,48703,20885,23017,69570,96028,3845,78650,3223,35569,82575,8814,48586,26884,90656,88433,42783,26630,41575,63494,42577,19841,31706,62801,2664,2781,36248,81797,37188,48061,89969,10975,40044,95183,71800,94871,2579,49745,95769,57456,52999,56902,37370,90602,6393,24485,18837,93602,65168,24619,24977,40796,64137,84630,42991,70340,20461,32427,46134,82608,52927,5677,31597,99751,60700,23388,93115,76383,51643,69007,4778,63938,62717,21104,89614,19611,25648,85652,91191,1319,6959,36211,40865,86061,84986,77824,57724,7008,51482,28871,61183,73467,17495,31021,70248,29567,2255,4656,97890,22480,21282,35105,47827,36654,47290,49420,61532,38480,31067,44403,39964,90287,38044,50319,73572,70054,73055,16353,45097,4836,89664,87276,4368,89998,19075,66661,88825,67718,42877,62548,91889,56152,47401,49023,17945,15368,42933,12962,67304,8883,78821,58454,58068,56898,53506,1258,93761,70220,22070,16675,59789,23447,27322,17081,969,5404,52410,42140,58690,22759,13436,56427,34519,36318,28557,2875,95815,56893,17044,95845,37601,31263,77619,12340,18234,72431,60550,59872,30517,44131,27364,30788,37135,86011,43174,27208,59634,43746,90946,97739,76060,55189,84377,64515,22997,36245,10622,76203,11174,3217,83772,31115,93363,54054,78743,43481,32141,74919,59640,75151,34374,99111,56317,41648,3295,9744,29896,66672,91326,8556,19476,98739,62901,21964,70243,26156,93868,737,26690,5569,13105,18257,2304,41720,19502,14777,55302,31005,9309,28037,44325,15609,43057,48421,52835,71912,90494,43051,98267,76610,73082,79528,66408,50909,94599,54311,7418,534,67234,11161,46531,74273,90061,84391,67596,46787,4765,20665,22414,49433,65055,25203,16276,8694,73023,56012,91792,1636,42881,97808,47786,36531,89498,41320,56197,87105,86416,99644,8273,37826,98634,31633,60689,2132,26345,77226,13038,54765,83682,7885,12637,86696,3391,93610,44799,72642,46079,9459,4528,23698,27670,47254,1110,18088,39074,20032,25569,88854,31323,36548,50182,70397,93545,67336,17453,66954,19410,11113,60872,40871,72833,29611,3082,39479,46186,40364,24,13712,72920,54675,54437,47447,91374,32559,2172,63754,19808,50266,88717,75568,59041,65801,20244,17569,36718,89289,7280,33918,5830,48241,12600,82206,75096,87140,90629,85847,70829,84301,73755,75492,43237,67556,9955,1693,69859,20950,71313,84868,1187,99397,93257,52732,79280,78714,64335,47430,64798,70291,88321,2665,45762,93773,57197,89794,52678,50313,52472,6182,27671,62877,52740,20937,74880,71868,70202,30998,13389,59160,61795,62122,36816,80989,77598,5295,92645,84809,39789,44931,35582,92074,93240,39171,68340,98451,59155,40066,39264,27245,13125,40864,28128,84929,32959,46773,83132,65453,37088,43858,58974,30947,65493,70019,45981,90706,86959,62790,67003,32830,12265,55903,12774,94506,13483,9273,4259,47346,16027,59596,55527,77531,64099,57171,99831,55900,48398,31092,19061,4507,73137,57887,97855,12821,98252,56365,74620,3514,56108,23820,63053,3620,51002,27748,32199,85356,56766,44559,60517,14025,97838,72646,17490,92725,60604,15857,7146,57358,39828,73987,41189,26219,39591,85190,23638,24194,29147,47952,64689,14374,69840,69593,99717,16471,86890,17132,33337,88445,41551,78788,22347,20810,95956,20667,53622,6074,80933,44833,9471,56167,99457,18690,70754,52942,49969,27193,84343,78101,5503,96038,97710,96822,50767,36980,1116,98512,61278,40101,68581,84736,21031,82711,127,41262,31314,17193,8086,29390,38220,51815,30780,82001,40367,47289,41626,3927,33192,43848,89294,93305,42018,11982,2060,41126,75914,13128,15456,9102,26222,95335,50451,61906,24400,28523,94530,60691,30911,44449,19458,38505,16457,37122,39987,11941,96387,66827,55902,62643,45285,86984,96226,41726,92145,45532,87878,15481,69093,90908,19375,43698,62804,86658,95440,48627,81814,9883,30860,16535,63918,56275,13784,86211,26072,72340,57342,31788,54430,83533,76964,21742,36873,61816,58586,46127,62209,67016,21478,92250,6335,57585,77284,82112,43916,39385,26849,46246,6378,29328,61152,15904,391,55369,67363,87495,18330,10315,90089,62608,65114,27732,19144,9049,31404,96492,25410,35524,35770,8596,43874,2439,15301,33059,70436,65503,24941,93628,17995,96737,10688,46835,35497,4780,55371,30872,60668,45469,63186,433,36083,48510,51265,82795,37491,82781,11554,7702,77186,53507,86919,97072,53110,75646,45991,72427,36882,56279,29892,83130,7589,23215,12028,80851,68984,61292,90158,55280,21307,82162,53353,53580,14805,61623,26380,96777,79767,25493,66210,44683,28701,15322,26548,97828,79180,94777,67343,60576,93844,66486,26823,39254,5426,76121,36737,54740,53703,56156,33739,74617,92440,86022,6671,43523,90704,74398,47365,60137,30706,13807,96927,50359,24455,99122,18027,26988,10567,53550,92685,4497,13763,29667,48646,99400,7609,38799,84319,18981,9317,28326,65648,55306,81971,76787,57455,39004,19602,15178,44411,82763,89934,1012,54471,42088,89635,4611,74253,12247,16528,81341,91994,74317,58050,70150,19107,55579,88374,45538,74944,24088,96617,12092,49081,54725,60741,60304,72827,50852,19367,89336,21318,73000,16598,65587,76713,95551,52704,61569,79663,10409,15674,80301,96386,62132,81173,82177,63513,73141,71010,9761,49911,32126,81734,55087,40104,53903,70674,98258,88711,16761,80965,5473,88977,89015,26590,79841,56723,34167,50051,28180,59025,43457,90079,9830,2402,78291,18419,13306,68282,40279,2131,47399,20098,86734,38063,74772,4657,62770,11909,75097,22678,13487,81610,21691,32290,87069,62263,50261,22723,95204,57748,42949,49913,43922,97690,93189,57846,36073,28688,34564,80991,5324,41657,88549,11551,37386,77972,18268,30251,51321,55556,75042,72590,76589,52691,87548,25052,43501,33383,96359,94696,72768,22569,8449,41735,33311,12274,60341,62454,92262,56631,16555,55077,60512,57430,99261,80687,28891,56716,93220,36715,68110,77185,2019,27932,30838,14760,28639,38760,1785,72972,62404,41650,19439,55272,38334,86957,18008,73169,64458,56461,76498,16084,78693,19856,92872,80071,41411,10065,44705,91993,95731,65542,39455,24636,82501,58430,67048,525,81552,61976,1909,79366,18538,79065,96652,29294,22571,78741,63605,5115,99578,97442,18845,14357,67037,25652,91737,42845,47502,38699,47279,95079,60889,9098,76209,37880,25112,72756,25206,73612,57030,28126,41281,18778,92131,23078,37554,18851,98593,45491,1127,50119,5608,72557,71790,69286,16500,12259,92256,6865,92495,65287,13129,58249,77973,14686,29098,54492,30283,30353,59065,35343,26365,88522,52234,80073,16765,6012,16371,71789,86928,25929,29809,80996,53704,72979,2778,83133,82425,10145,64390,18632,32960,40785,8097,23404,14648,42442,1480,16108,51463,75287,80563,7507,43721,49277,17211,52640,94316,22824,68387,29691,96461,40976,40371,25782,86005,48593,24891,93372,42776,83208,4089,35375,13779,43833,36238,88157,64436,23977,5865,80588,65008,34034,4190,29251,48499,57824,86495,9973,27093,10588,10173,96835,52931,98641,25231,86920,76781,99683,96814,95090,70102,88978,84432,31084,19145,84370,67472,14128,92921,23284,274,15146,67398,86048,84254,49219,68062,95980,14947,81887,56421,90021,53639,14681,85923,6306,54814,78338,71295,69592,63851,34983,59545,56617,1046,71327,67621,53444,30209,76792,85439,66824,42844,93566,15053,96018,48327,88852,19218,43777,52898,36130,81760,74740,4911,54842,84754,2901,70655,21066,94751,72109,32540,24893,19320,22616,25351,25682,59664,20628,24522,17846,401,32195,49226,60571,25897,94372,18528,6574,12572,69693,41166,89939,7849,91574,71106,30201,61763,93625,82885,20405,34359,16923,29155,3831,86630,64534,67150,23882,73531,11487,9444,40697,57478,93117,96081,36880,94043,12690,51556,64407,80742,50151,75764,232,54805,11905,41142,98242,9020,49854,19520,28108,60399,76728,31807,32908,41245,84752,11492,1834,90746,94748,31773,28030,53382,97175,23479,13929,52153,88095,43395,87767,83265,34769,18900,68872,39282,58937,4287,23774,62607,93746,5233,2611,28633,16262,4605,45827,30332,73384,58070,44309,79200,22287,63758,45134,89610,51663,97967,66273,31741,42715,51654,51613,76486,80472,66861,67397,27234,65988,30828,26395,59651,24568,97308,17857,23679,2943,26032,94398,41215,6263,82838,53886,48013,48154,9844,70732,58613,62648,85813,58954,29458,70897,98141,49726,18998,22946,60071,40787,97905,73102,94428,27958,10519,30819,30386,16361,98308,87536,82179,40973,61080,33368,76813,58588,72204,31167,2396,99388,33924,61078,3567,26596,66344,10258,67562,80524,80074,19847,8515,69589,17123,35736,48383,63330,97704,54404,89388,77944,48596,39595,56482,49858,98579,24751,53072,32673,52747,23028,93687,92641,78224,53249,42860,25453,68557,46562,33513,48248,688,89923,49451,16399,85106,82743,56270,90819,39114,94093,86528,34821,16001,9261,39336,35457,28721,18777,97410,59841,5377,25350,45997,83587,72808,76128,56262,25425,8327,74907,1994,73782,62324,13850,29319,8751,3753,6977,19202,38160,87966,31088,76956,75670,86407,41088,42372,15412,39809,91388,56506,18849,44659,13568,5343,18621,55999,92597,92580,68218,30046,296,2523,90601,54086,2712,30411,5975,59344,67491,98170,87592,55821,72654,35125,47609,5824,88494,26845,72130,44172,46424,11948,65998,70152,62365,44123,58717,25067,13339,6509,63285,3686,66303,46404,16109,16927,61217,86654,51612,65073,43138,26939,10897,27423,93034,19044,69203,62254,82328,88462,64580,30815,92968,85126,42875,16684,47094,21936,24458,37683,52261,52378,11928,97292,18563,186,34213,45204,70877,32853,96477,66889,78031,65250,87151,86328,91853,13886,26826,65740,92676,4615,87496,34344,20935,69451,81956,26394,74467,32160,64931,16699,22396,25431,61718,16698,658,34180,18638,33175,29729,87865,4245,63403,35148,81327,68515,56256,32303,19475,6200,80133,68946,52075,9627,55457,65568,86430,9331,45810,81771,50504,99071,75626,37651,98732,82705,47506,75520,31880,95472,90206,12521,25780,16808,9647,31275,7221,23282,22696,49347,83455,47910,63006,23969,96817,25201,80621,99516,66654,20881,66042,30162,87774,14492,53588,11564,19918,62158,83290,66918,62641,56548,29800,65848,80610,20841,74741,50766,15529,71488,99970,27026,97106,71280,54050,99538,73898,16679,46725,1605,57173,17807,93426,18512,33100,98464,23319,19583,64423,38903,89373,16319,87207,61320,47709,22319,74504,70637,10782,80126,44721,89395,63985,60393,94179,50495,870,34625,60322,80107,40212,21966,58886,65875,74235,28590,54326,29320,8605,7974,34254,53968,44038,67755,4160,67632,38397,54463,26360,51423,20656,40908,92220,78599,22321,40046,50439,85624,35363,67,26575,1704,40107,23027,99416,95126,268,37369,5360,56335,18624,77148,16486,7987,30025,88547,27347,49188,49531,8671,37047,33114,40902,73724,18223,24870,75078,35555,75669,42289,78669,42301,64215,72527,56831,68574,82496,16946,90154,17689,61258,2825,4314,30320,74831,89090,10652,84906,91258,34110,94288,82850,19317,96166,5670,43430,48578,7921,53626,68663,84529,68734,98927,47622,51765,38450,38438,50700,65859,77106,65365,10979,83247,83058,95261,96801,65345,57897,16805,93514,51174,93631,77343,33072,53363,59158,47834,33317,41969,75434,78836,48007,55103,23196,64457,87875,29822,36858,97692,18178,54636,44585,59400,54829,49587,26058,24527,55056,73974,415,9117,54789,49060,88855,25122,17117,35172,42763,93312,69145,46790,25509,18941,68223,77864,65155,36225,59195,57291,64249,12784,74476,52028,8392,42821,38089,90431,13372,50256,14304,7906,89153,28666,11650,72040,20945,73176,58891,44836,82380,41687,59336,31624,2307,21530,18260,17265,97213,71079,9816,79565,12421,15854,14160,55082,38066,12890,61761,29150,61469,25398,23100,66033,56411,60145,52248,93698,18186,24195,11204,71706,57501,66853,61062,46616,9024,83768,1662,87658,23883,38578,62779,69697,62402,76104,81521,81994,96308,5923,79690,56752,70598,83733,22771,51835,87194,93214,32840,79637,15290,65586,6028,50347,23430,55878,14303,89548,9104,50229,99855,3438,206,81719,5155,75059,77336,64560,83919,72358,4647,43692,56921,10129,19761,62285,80345,5936,25716,31752,44305,75525,89828,36217,19640,8744,31189,12126,10496,4377,9000,69949,36451,71801,73430,89435,20675,67928,33599,30740,97886,53868,34226,61128,89133,71344,9893,9527,32125,72485,4273,42565,83985,85903,78484,52997,71793,20711,63409,50160,47883,34797,10289,380,47705,91189,5260,97661,62850,36962,31821,16818,80509,67516,10341,62188,76595,60026,1231,41786,72305,78226,62045,94931,39705,4704,90477,95190,65969,38052,57557,12501,83624,46075,33728,15561,59989,995,60743,63578,45754,59407,38483,5556,84623,36142,99395,41554,72114,36380,14383,22325,79888,65007,46850,69233,70461,66541,40632,48602,83293,6512,3759,8797,23473,17574,55428,23542,59381,52756,36384,70609,23092,17192,32365,80724,87807,15324,62234,53598,54315,1140,75407,83782,91679,56928,1972,35709,48583,5065,73990,11626,2128,35435,41705,1207,70555,91292,88985,77070,46967,41479,31170,55657,8523,76918,3805,68179,24698,67328,61767,31426,7427,29702,33647,44423,54233,85096,64305,12769,20349,64652,18697,70990,74027,81841,53789,60737,62279,61942,31051,70633,10323,71829,65080,65774,35253,2080,23628,50768,77361,25527,83292,60859,57255,51493,8438,4076,29882,19208,92361,41880,37779,34559,98212,7614,66250,82145,1062,56638,73820,4890,11608,35369,94082,56473,52736,77458,28099,38233,92607,21240,56192,53985,80840,22429,93458,44028,15466,73785,35048,43747,10083,15550,91987,95196,35794,94865,20600,3661,18305,37090,59319,33773,31922,81126,95018,98817,56576,88558,70017,74066,77049,12530,3088,38248,62781,51770,39703,42002,24743,75334,60361,78915,64940,65495,8003,69243,34913,70682,14823,74755,92907,25076,57877,13115,50624,16166,30769,30355,81336,98384,51849,15228,40740,27752,94158,23957,46123,91153,59300,26198,68045,90250,89252,4730,53739,98193,37038,93611,68492,3712,95752,13265,93193,99229,99611,90843,97237,66510,72832,41929,41083,93174,82023,15632,44417,7763,55373,24446,47071,59582,98281,48581,44965,12707,16693,9274,50939,78225,67666,92403,50828,68363,39913,96613,37246,66399,66000,37208,63404,86338,89915,15523,40035,26990,14276,43448,89829,44349,19627,90778,82708,38212,8282,25951,56157,60666,33464,76860,4812,36904,67674,92916,54120,82134,77546,44321,30993,8762,76196,34387,8642,68080,68996,32577,79220,56672,94851,45392,51171,16599,77273,50192,90257,83974,21128,11663,97764,74440,83260,78835,21586,18696,13921,34779,1805,91051,6795,42910,83957,3413,31951,23468,16332,61847,29246,20173,39796,42006,44583,23117,34022,78967,85462,45236,94873,46859,92658,15064,84405,29024,87316,92035,29991,50660,96853,61157,13770,47859,87938,53351,73243,39827,92619,24505,63430,34496,92019,74438,27627,75476,30535,38662,19258,36196,8953,41048,89453,46917,15665,9594,78785,97685,66568,92368,25543,62702,77272,51353,51731,85425,51054,2159,47795,70431,15210,6226,55374,71165,58792,94827,56805,80370,82787,14537,42942,65052,4994,47014,89632,2823,82821,58500,22075,89913,80450,81310,68176,65560,18053,31979,97326,41568,19332,95928,86905,80774,76360,67756,29806,67541,67461,79563,63652,76617,78680,46792,55149,70286,87200,93573,91661,10705,76198,95794,25938,13960,89491,76814,76716,81474,82849,28493,81906,59785,65257,33130,59891,12846,28279,46731,93325,36512,98857,85664,21477,57861,34773,90255,73406,36863,88146,63891,18459,62765,97437,26467,85076,77501,46272,79646,19948,40344,58064,79959,45023,89103,9632,65485,60834,22394,31228,76665,33761,3202,61200,11363,45365,94182,27279,94683,11566,76132,46603,71889,33424,13077,44679,69510,64571,17068,96180,92762,72609,84793,21871,73749,17485,38731,3751,48500,82000,87273,63591,75394,32229,91784,15787,93974,93381,79161,88890,68833,84603,40446,31877,49729,3125,97763,20779,90981,60225,55098,48077,81576,36674,36586,99375,63552,580,78229,50741,73811,78904,43007,87952,66836,45586,96821,67057,35300,34875,45520,53689,97662,68748,33138,58652,96938,19832,98239,77394,91161,8257,94452,27885,99134,2846,5871,60799,7021,67412,87470,36117,40827,57111,25876,96200,23788,60096,98832,83375,82405,42642,66337,1069,53979,10749,73979,55658,22730,60425,4708,42666,42262,53680,99196,18511,63974,26532,61191,39095,13132,3461,57670,12918,39700,49147,53556,28318,22110,21610,25843,63946,68835,10063,98688,51906,40676,29180,67558,58344,91769,69214,37373,84909,25657,53841,99830,32650,59577,96608,29253,32599,20959,55731,65367,47998,6962,73727,44743,63311,94911,16740,91873,40933,85808,64144,19140,75565,77665,14518,15608,20583,96426,56665,93057,29395,33242,71879,38809,76220,98597,33249,30305,26068,15357,83803,84080,26403,75723,34665,70534,4876,46922,89571,74975,38327,65664,23963,63896,54888,12401,20389,27901,48038,3190,92983,10243,21257,54172,16443,72521,21664,49402,62217,60538,5228,88275,30747,60817,934,63112,65595,9034,69968,16732,36402,68451,69597,44927,31795,14384,88644,46692,70728,2004,25222,65617,24314,83449,76504,21856,45504,61460,75466,3652,26549,38885,34339,40810,27665,56285,49679,36809,15851,68024,31225,78437,60758,42621,94265,53212,90948,88365,37379,51709,1107,69585,40172,63135,42380,65286,71708,3666,44274,33306,55865,10360,91178,37681,78264,66659,39440,5096,58798,44447,73984,15628,5301,1576,44236,54082,52138,81829,75763,2986,3699,83576,11698,38401,35241,37983,78386,86090,22929,9746,44573,37261,25977,67354,57345,49668,9600,86065,40222,84697,54945,73370,27486,70296,4894,97054,99698,98906,78390,51286,8373,40818,40666,89658,55735,20229,11748,75843,58136,35724,74335,18121,61293,29668,41154,29448,91534,59925,61815,59098,58401,62961,8071,45255,41989,32823,19739,77980,67916,73814,90603,32638,47139,48439,38862,46270,17108,84744,70133,8378,24881,83032,6112,86845,32979,99627,55885,48955,49275,89874,70945,12552,75479,61914,94541,64757,45478,2112,25632,78740,3001,20418,2679,5227,80913,36187,98662,79055,28912,97918,64705,9301,60420,31074,38096,48811,34091,1998,81399,97616,44665,86671,99245,47708,98914,5149,98558,1241,12177,84711,43415,29403,6060,66733,30407,20196,12847,74205,52484,66413,50107,19817,70666,30935,90208,30316,22530,49323,86496,50689,81112,78034,93355,68157,66027,57634,23212,88672,94949,39668,70635,31952,48182,5073,73285,67614,25795,78647,47970,15886,78244,76533,41692,21836,61405,81587,63384,86477,65293,99525,867,24853,90707,72579,42871,45014,9591,2883,67272,61388,21440,98583,8651,19226,1316,66584,78739,58761,19464,16412,46022,21075,6803,4709,26060,91675,75721,10553,46225,58063,15423,83169,79190,91491,91668,78786,28338,50217,89379,90169,40665,45383,62760,53230,63811,23450,17999,48356,70626,27263,68955,11721,16071,20274,37822,27923,29318,18501,68930,42931,91607,43522,97853,29690,87156,34724,55980,95246,81608,82606,4252,32044,25643,27523,25710,35193,12011,94611,29374,39892,91170,62250,14478,33012,52397,59502,25465,40146,29240,25974,89709,22797,87191,51798,95245,13638,48005,90135,52211,40816,30468,22065,61389,49089,65481,8293,19616,58883,51397,37021,84666,41620,5939,67959,95270,46965,18946,61931,70761,78618,86079,27372,72039,86568,38058,8791,671,70751,9060,39163,80155,12578,24277,12323,39164,5284,37827,22895,15051,59396,69110,36324,89465,75129,68362,96360,96668,4519,89845,56205,10343,68215,97638,92571,69066,5946,57412,73505,57141,97655,17104,1840,29969,52020,60681,84954,93285,36787,9693,89342,87766,26795,85613,20182,75493,41887,73452,84024,9206,26786,93299,56890,85321,13073,90669,87852,57569,20319,20593,30698,45850,92647,17665,49265,48244,37238,71508,52175,47132,1101,33943,89454,81893,47241,79640,33205,57937,84523,74348,66593,30071,69094,55181,27317,45409,18774,8717,70520,78265,81593,40759,83046,80677,84482,37821,3682,61106,57227,99883,21390,50270,35654,89280,38663,46478,28613,14812,73217,41548,68016,7435,64708,84149,62609,99631,77389,81507,74449,2753,88228,13443,84139,58073,84863,43513,35953,45802,33751,86703,7514,99286,86476,41539,37571,63407,11842,81304,38768,31144,55153,40811,30090,27997,82127,65204,18014,29400,31565,86442,82312,9703,86881,82110,10674,81460,65426,8732,85186,76928,84361,43875,98234,11937,3471,78335,33459,26862,83436,19462,40390,58376,43764,29138,82038,96960,31164,13186,29385,72249,36,96863,23030,92582,54618,56813,88844,7787,46753,80936,71653,79606,15544,15171,10396,58071,27617,5785,76783,63720,45555,59722,4184,45643,83183,41137,39014,11760,77632,9749,13242,63712,99635,53522,24465,45220,88576,24690,66961,68840,43100,5764,87509,58208,77487,36213,79329,58547,19525,59670,6398,35653,42269,24642,50483,70227,91561,76590,97275,44998,5665,31618,53923,29569,31969,65265,85732,30064,44762,47682,33525,854,32764,21694,12262,38394,60206,21766,52812,37203,87933,39133,17252,43982,50360,4607,80233,82486,89361,6079,13839,45225,3167,90271,11313,21191,79597,42082,79265,70610,12413,21473,35339,99109,54990,15024,83813,43023,10050,95132,80813,60688,80496,76342,13598,4329,26325,39064,74879,49377,82633,14162,44775,1736,87163,59341,21283,6740,14581,20317,33892,50838,55166,77694,69348,29088,6410,52262,59003,53779,61250,52682,67581,59345,29934,45274,26773,30868,14622,6267,76907,73142,31163,81663,10454,95326,34636,74092,63231,54162,1561,88125,98486,33433,66718,19717,18447,93265,14090,60150,41213,12902,85303,95548,57261,35863,93469,56330,19801,85173,13126,89584,42564,37089,91408,84756,54157,6827,93728,18289,29026,64861,54871,72227,70950,59314,49637,84433,26029,94139,89188,18025,7837,12309,91794,95567,62412,94268,53596,12586,14811,10732,48918,69373,34517,94128,49873,98627,91411,24817,69529,97018,40910,99793,24080,58849,89702,54955,11263,72991,30210,21791,10838,13607,31446,16912,57461,26066,44806,48678,96931,75558,17260,38676,42639,34809,48938,42868,76339,48980,10059,90573,20176,79710,7404,18467,41834,93161,12836,36304,92364,44334,69830,83037,68462,19013,27246,96729,63722,13643,32165,57036,76900,58930,53290,37346,61824,12826,91363,42094,20462,70322,86500,17032,40747,96564,161,73210,89190,61116,9017,80940,494,14679,44308,32179,37390,62785,74537,96368,35477,21009,66926,81244,38632,55976,9300,17111,54350,84219,77871,78590,89994,97912,71676,49831,7098,82611,40483,30328,25078,3596,14978,26020,18192,34261,60596,40006,39018,87028,19392,47931,59170,52391,99032,20077,41642,71382,25996,45431,94416,29051,20686,24284,79257,11778,9181,11195,22844,2315,27719,83939,45016,48847,27633,90511,52329,76915,98896,32515,98741,17448,10991,83745,79132,53167,16244,76750,20443,94432,86047,31658,71869,46959,17529,3710,12429,85437,29126,4485,38146,25504,54851,2696,7178,65769,44567,7867,97911,46361,75133,78791,70334,98657,71138,75886,19850,29005,15555,24896,42163,13917,53139,82934,72330,40812,58369,55409,66421,35578,43337,37712,67544,45554,66650,87318,16041,69047,84898,2989,11042,59234,61768,56364,11993,19086,21570,89612,37591,87042,75501,49373,89056,87201,17560,48201,19762,41531,31041,72279,11026,50813,629,32583,64235,16288,20105,21827,75862,83146,90359,33985,60931,11641,70648,28364,30785,50978,2454,18740,60016,76973,77009,84990,15433,53521,60840,47667,82190,31001,8025,67803,59871,68425,33085,76986,75796,24487,56339,32892,45900,2461,30725,15971,23283,58379,86665,40458,13456,88546,42886,25582,55920,96746,70128,33415,53597,17956,13169,59484,53038,25520,63304,43978,53324,28335,80259,73173,46905,69403,35378,13898,35768,72855,16427,26359,14687,73154,36665,87751,35331,32715,47364,58733,54770,59500,99171,91350,74757,58148,47693,56599,51515,51033,25597,29748,28306,62090,27061,36753,92497,82845,74903,31891,36005,27014,71349,11556,89619,1516,25537,45534,92982,93470,80743,91739,18083,3008,70898,62866,9888,29164,36620,97110,43812,27799,97311,3896,9864,81538,66518,96709,59737,40722,81228,45618,22326,94455,83424,87678,228,15789,67035,2751,24491,57883,2086,40223,52080,94588,36027,72947,19943,34179,4613,91924,98870,67309,7818,27012,52088,79325,81769,83933,4295,11458,16226,55122,24924,22431,37196,77380,40735,98884,54886,63120,17966,89957,41374,26398,65975,53335,4951,35609,50730,81973,55289,400,57779,88726,44075,41513,78716,20235,87371,36739,58758,86185,50953,57986,90214,39501,12842,76293,72123,47293,64173,67638,926,64635,87649,39272,9785,47186,14948,98841,95727,40256,223,74693,3244,652,43529,93513,97601,60554,51662,22131,76079,85883,74914,80606,80110,93360,72975,88307,87719,92661,69812,94704,63470,47423,75241,42008,22865,40675,822,12458,66987,4650,87307,90403,60447,25828,97403,49293,53836,97989,89531,70459,17910,9465,8294,36473,79664,617,75141,94595,32357,65249,45218,62179,92456,69287,873,16897,36544,11614,70043,60042,91460,20326,33167,57902,58859,24439,32607,45837,30371,76500,73194,30141,69572,38856,9058,38122,93313,76022,50578,82953,22773,70679,7261,65380,80419,91124,40763,50765,23422,13702,16760,44103,85904,41985,77700,55607,14910,11964,57808,40301,28997,93659,2764,95877,23464,2762,94840,37641,88849,83201,96722,60841,43866,34054,8775,8684,56573,9792,22607,50860,74817,1705,99061,73912,17670,52354,96057,19313,48254,83340,29213,17955,11035,6647,5796,69409,96353,48071,5113,99,17648,12735,64146,50748,57924,31853,16807,29079,50428,92576,55381,24664,11479,70703,74683,3353,27813,26633,4773,39561,94989,70022,16452,94915,28390,45049,55927,53173,31157,34343,82923,71230,18255,34859,95071,39290,94424,57822,67963,24148,15131,10110,66618,73527,26621,42274,69228,8092,56426,61176,27145,75820,38816,46798,81656,89879,12026,87262,30225,20524,88706,5790,69496,68002,4622,72370,3696,50349,12614,94313,67553,77585,88072,88802,89195,75834,10787,5730,42327,1530,18193,34166,88083,64209,43959,64083,66935,58384,6450,9053,34482,5627,24644,21226,53827,30218,31310,10902,12642,25762,54084,76450,69307,83599,95056,27058,16810,67733,17804,90542,15058,24166,46461,79659,93563,83865,9299,76247,33523,2837,84876,81086,3754,63446,50666,32618,78898,98564,53676,64626,55107,77118,28644,50884,96026,3162,34484,96155,82066,83738,73633,56470,87440,58251,38265,16565,4454,29754,73395,97066,88309,56329,91481,21264,50129,65498,48377,66501,62494,24018,34626,92054,6656,27529,30119,19976,45095,83553,66163,53482,35784,81968,83823,48242,50072,25624,62274,85821,27886,76653,9149,72424,71598,73928,78322,43069,23862,90205,79986,59647,24756,48106,15185,91938,96676,83554,93053,13976,3116,85406,27817,48542,68136,85280,15071,75906,49142,16659,59310,77774,47540,36676,25676,10527,71033,7668,39362,51687,28877,31735,59466,45773,97944,93118,65231,38997,32879,68570,31322,99387,95165,962,63134,42820,82518,47759,72300,11443,32713,63662,40578,81731,48078,58615,13679,28287,14206,50351,68602,43188,97104,68766,75367,63698,49464,85034,31135,80772,75648,9892,16178,96506,36381,96223,86114,14122,51359,55899,68682,33911,80470,20185,37227,10088,7368,63472,17781,42034,39237,30049,82505,30885,69644,58953,82687,73700,16837,51996,23387,3079,3694,71729,49428,90945,88400,27903,87360,48054,34331,89974,41401,42408,83066,81992,76666,48901,13441,96683,43121,9933,32280,92243,67897,33051,80713,65226,8268,68670,44215,23669,93450,18415,14065,23635,2020,65994,12046,34100,47817,40378,67391,75269,97665,90762,54413,89079,64901,81116,23547,3263,54699,21037,6919,54309,45499,48610,91376,32395,92418,67105,15863,63116,19266,44361,32231,29626,8606,19881,1275,59566,28439,44949,81291,1017,79354,90503,85472,9850,89183,22864,38311,75312,23353,58973,95285,93322,39195,18571,85856,15203,23178,48940,38859,67659,34530,61101,88683,42259,11545,76177,87782,27834,63498,97153,68844,15234,78982,45109,29987,12951,49838,85816,45621,97477,40853,51690,30486,17916,70000,36287,55764,96575,1199,88154,74840,96680,17412,55156,99678,60200,54538,1022,24524,47354,28230,79399,15299,59049,840,77082,85859,93857,32732,59009,42599,13689,27974,48096,88053,12198,16575,8168,69986,67130,81982,66627,44017,28431,18383,66898,93486,55114,5798,66159,38928,30933,34111,3389,93950,47068,97466,55580,63667,52429,59875,64682,91453,59409,27307,36340,29543,38729,66434,90186,60782,88158,36028,62238,50446,83965,29236,3380,73955,91816,35333,62896,15596,58283,65181,56941,48875,2617,26825,74210,44477,24559,51584,65079,95571,30625,66925,43005,37650,45730,37161,59097,35243,37981,93135,45313,17469,57735,9221,21612,24920,57474,93158,45574,9656,42893,63890,66956,78120,33443,5350,76983,10266,85811,97373,69791,39409,18775,54435,15038,84972,41508,77105,25613,56781,34575,78614,3582,75996,21046,52612,22983,40251,59585,92439,80120,70084,50608,24648,50865,69426,67834,28640,62731,79599,58185,79731,45712,70373,73343,11847,34332,21020,62129,28380,55437,54767,82936,60276,30928,17775,95406,39039,13524,66045,40531,18276,94478,28381,4514,51708,86989,62173,79208,8991,890,45512,13570,3137,98280,4279,78756,67627,44602,74008,69783,23332,50434,56374,17224,93877,50148,13154,2688,2882,94012,13752,47325,17534,40437,76876,73152,79865,20130,56493,29186,73583,18911,51727,78361,47436,12230,16400,5041,6216,62054,4753,62051,41052,30639,20922,43096,40724,92518,71617,68047,28293,65981,98574,32444,34571,98504,88116,21596,27581,18722,37634,1734,57932,36035,30158,78955,53695,29292,15252,59184,50054,1950,8224,5536,96843,73694,96807,57076,98325,1485,99726,60385,69452,70071,6208,4066,67404,46304,76645,78297,5162,21587,24608,7260,82400,67010,59164,73279,85501,32405,9670,899,31530,44682,99958,77770,78346,51593,16413,97346,92898,22400,73248,78044,47828,60513,52911,86112,47894,5389,22846,65766,17112,66521,30511,59291,6632,95349,5558,72231,64575,58439,57370,62472,67695,92407,10632,48043,96344,41635,2750,35576,40175,89278,68949,69317,72025,74001,65398,47603,37717,16302,2204,399,3991,62791,96647,16948,57736,12665,85417,6750,99327,44670,49252,70327,18816,70406,93471,293,45633,43180,40631,38133,26338,26096,62012,38863,87044,21760,66571,41285,81967,20725,6590,13947,84113,15579,21336,16831,34827,8659,47892,28959,87706,99041,22043,53899,30656,46897,29747,28074,86113,54900,40357,92112,21745,50357,38415,23266,10849,95882,75902,48118,19091,55897,37357,58969,96562,61699,95912,97582,57516,82707,88150,2152,40030,25644,76807,15102,84410,33475,45906,61644,19381,24556,15082,91030,65089,27015,84759,90931,46450,23664,22896,61762,53920,77756,3587,99788,88892,26005,65886,54585,87123,56571,95210,88823,98742,14832,90784,65787,85675,46397,60615,99508,48928,83557,70169,7988,97901,22610,73085,74218,17596,13535,13979,52548,72625,13550,7551,5208,55100,45591,45454,15619,12069,22898,95879,73066,90310,72219,17146,12989,27411,70360,83780,85539,74630,12973,10202,43468,44666,6749,14850,78205,34664,72397,55686,70737,77376,83849,99719,92384,73730,62676,39019,76788,61484,54246,23746,42635,650,21778,84085,74365,99695,46744,86882,96086,76074,68369,98689,45432,24739,86893,78342,4099,95016,85610,53567,99108,8832,46939,34629,2970,23649,56023,34057,67891,9643,35270,90611,24295,23058,6203,29212,32882,76598,11152,12705,71702,61672,34988,32378,67483,23334,24270,6139,54142,56818,63153,47968,70772,35051,77832,20728,5293,40264,46442,77946,66343,49185,96643,61695,26689,40118,24417,6599,11580,49611,36472,21615,44326,23624,27355,17637,68461,12327,61428,70496,39155,35947,86935,14158,75541,57640,99821,35937,47451,3959,39364,24867,31517,33073,13876,14510,76445,58463,83252,28671,63441,14130,49063,57852,89366,90390,89321,61373,26168,87388,85408,35715,75557,2682,19128,82270,4321,76827,2341,67974,38041,31197,31781,67774,75447,61794,84761,86851,60657,61474,60072,20510,77524,2239,26741,92716,99656,87514,23718,47698,75140,69343,5982,90363,88887,82941,92928,40049,13789,36528,25967,80503,27611,16864,91588,14713,7321,60715,96753,59524,66680,97112,90584,44285,61270,30803,68419,8869,35669,42968,40988,57082,47498,10563,90202,50335,8471,49627,3462,31299,83118,66742,72626,85467,24626,79960,77583,38984,4157,52651,51863,18349,34345,91136,21382,99833,60035,84856,6236,82525,9531,46886,21378,65692,57336,18241,42866,95868,74816,51827,23627,48255,82595,47895,78990,50776,33849,17417,14150,2219,24064,42819,61375,18527,85238,39136,46161,43355,38728,49801,70645,32472,8107,57885,45080,89572,16204,70978,2501,32364,56134,37,92365,37344,99048,20523,91079,4042,61501,63491,67050,44490,13465,18244,84828,25685,95108,31898,25709,92696,15786,17903,57701,55311,49560,50843,11494,96878,43299,87972,30918,40249,29003,74424,15752,91700,89393,70677,12729,748,19545,96925,4091,48267,8346,14470,46858,57140,10119,13107,25802,76321,62948,8860,76476,80068,24276,7069,95933,26452,17358,54520,19393,48092,87326,9538,83361,38759,7131,40940,97757,32911,58663,24537,8924,91462,22680,73207,50677,66069,33606,4885,23660,71105,9077,66268,60829,87038,88873,1832,32267,42392,33068,40280,14167,25141,45637,91977,50725,29835,11989,34687,99571,59382,83164,96731,64864,38187,77767,74232,5998,52751,58312,69012,48931,20998,49417,62751,43533,31469,63222,1121,53095,68912,63765,54672,25126,15688,50448,11202,32723,15972,41334,69762,92329,44765,68843,17323,57699,79400,60941,90023,89940,55979,55615,16246,41467,95476,51967,35485,91701,36493,23651,73481,10959,22112,19164,15379,18308,93878,49477,18354,37049,48879,46632,81531,67319,81362,87270,80202,53171,22000,72286,65711,33577,30675,2928,4948,12276,92098,30033,59714,58263,7554,96259,37796,23787,71963,47547,220,87265,81759,29336,94621,5520,29829,84489,98981,2110,79307,50486,19388,54402,67676,81950,51281,82431,64439,89049,9680,74152,97402,5653,2888,43089,56572,11774,25923,87481,35226,84302,27558,9162,77442,30806,62656,35985,15314,99783,95111,79651,91646,15224,59196,45453,97366,23555,89756,35684,55199,53541,25156,64000,95615,842,40577,94575,12031,12845,93116,17540,50399,28990,892,89259,88778,23315,34932,94669,22406,10475,84753,5828,76156,41346,5969,73726,25333,68801,10167,67185,95875,8233,85910,38260,34493,49863,34225,18725,18294,34784,49473,86250,53657,81454,17586,86546,1382,97572,53143,37567,58828,82748,52885,57871,32883,23646,11991,57720,70014,93379,21687,88436,37797,38697,49659,77901,67029,79398,63514,2038,45861,48419,34928,85476,57153,16579,56721,77220,39240,59140,93278,70125,28620,29015,65802,72783,24908,29815,90030,34181,43647,31252,85002,74738,55759,52480,50078,23688,98601,22343,93114,42884,46538,6681,68828,19241,26241,8344,77265,12731,67485,1554,72950,26084,6436,31940,5249,58864,87893,5464,90625,84325,10922,47020,82394,87384,69545,34898,92013,8153,12284,23639,14365,28062,74697,16830,26106,32760,33704,46966,94370,54832,28920,72965,57680,46018,79131,25634,22853,99350,85361,72796,60863,94133,3909,23949,92227,19919,73630,38581,49816,83001,62448,26905,65189,13102,1336,56934,87999,15055,67169,95992,68876,57212,56129,27149,12844,33263,95495,12219,48166,6868,55563,49119,38525,70656,53964,33841,53311,58415,70951,55415,77915,64492,94138,9763,14736,41683,66147,16373,77875,14775,73318,32447,92115,25408,3498,1209,62665,91314,34669,43819,17640,25885,70257,57555,83017,64261,93050,44756,56124,52361,88285,91954,15992,13993,7468,53069,35218,18498,50216,74586,70388,63453,87760,38339,47143,53231,75109,13146,40084,10286,44376,28804,78241,12111,99062,38757,36725,2032,98461,30361,76624,81889,75702,46872,61628,51821,19289,86529,68121,52705,40547,71068,16613,16160,91169,28191,3023,57046,32269,80361,91339,11189,80762,77541,95340,1613,984,25500,47360,30109,3,88106,54178,50757,20030,14067,31284,7035,56904,68545,39953,2210,44704,70145,56101,44597,99781,936,84669,34395,19305,36228,87453,42790,91203,19582,18397,1272,70618,88001,75880,39682,24380,84880,61562,2186,31790,8004,91860,84887,94329,87392,19122,62880,17742,77469,51587,35891,95244,49310,85331,4251,69151,12635,85409,73936,21162,18181,14884,54880,91787,74003,94717,78119,6087,64632,11890,14788,88305,8513,40240,10986,25253,38683,1938,16904,70239,43478,72294,87300,26157,27496,42948,89706,27933,50301,11351,64833,12517,5787,42659,55357,90115,53938,92480,2289,54013,31757,61178,70576,91834,28506,28135,64775,96350,66675,11573,15401,19167,61129,24028,89068,5859,18362,35075,13253,80334,42035,1858,53686,75777,61329,7879,5854,44822,15710,7400,1962,64287,67997,23203,97728,26123,97851,49368,6771,55147,68165,77988,20592,31601,23840,85148,29512,17717,19896,65354,21489,32448,99536,41652,9968,87222,8683,70339,61457,71802,91046,95881,32794,14792,29610,86305,4354,51480,53552,60457,12012,72090,94834,9282,65006,82128,14894,41867,64773,79722,46882,77879,34070,92472,1920,29863,25733,33724,80846,22536,26960,30837,59129,43391,20816,63717,22018,51911,84984,9246,1959,53156,72998,44202,13303,48896,4360,48342,30609,65450,82950,43465,76960,67983,42867,32526,37568,61155,49799,94067,77691,9807,78887,52246,10637,95135,14307,27419,7148,73380,64499,6931,63778,71031,23432,63606,85958,75020,1487,31918,98244,93528,30393,91175,23530,84208,74540,51426,53131,34510,38936,48722,21368,9664,37071,5215,55223,17494,43087,59618,87466,98528,32408,68327,97088,83577,5029,11559,41820,53533,27033,36183,46280,95760,10697,21652,3517,21843,49085,42457,78643,68056,90039,22185,32101,74946,98014,41846,20968,29009,62919,94937,23344,23010,53362,28056,21000,70790,99374,51603,42817,42209,74087,67799,34987,19870,82088,93797,5298,52815,48759,43637,42431,51377,72880,92438,85184,10759,77525,94400,7511,18976,38391,85626,13813,78591,46754,48265,47321,9502,46944,14541,79933,44835,96818,96625,56351,86131,3617,73393,96285,68146,5867,58317,85650,27445,55604,80614,44057,77826,83448,74209,38884,42519,18623,43235,66777,54357,29184,90091,32492,28264,86279,46751,37560,7463,7798,89985,89149,50557,65839,14691,95091,24255,731,92539,5248,73553,92748,10249,73426,47680,84716,22839,86371,23823,45949,1526,72462,73964,77077,42188,27790,63947,32981,97682,19903,84066,59803,28406,70247,70180,53830,68382,18277,33742,80279,18974,13831,18351,56070,96603,14388,22990,80570,36989,25055,76671,42229,47758,41249,53978,44404,80031,99939,13790,13936,71740,42477,17702,96258,65855,47154,59870,85082,49141,13201,41858,7899,79899,95523,63177,19867,62175,18068,64871,38182,11586,53852,90130,4635,37473,73867,94831,26992,51164,25150,59166,11930,86308,86977,73316,53797,55379,87569,10332,539,52758,17520,62493,75357,92090,87203,10064,34456,48415,28793,19898,24922,32246,64880,35814,33197,42546,8451,61216,75781,28598,17651,83501,17601,84599,84636,72484,31667,59628,48231,52457,64809,97056,57922,84782,6857,99429,91949,60403,94358,56121,97298,8698,13556,82917,55826,88826,85387,73073,66802,53880,53020,75910,49812,70845,95796,29695,92865,36476,81316,29143,8174,97468,35843,75100,31522,92514,13088,79411,16362,36101,90360,4869,82019,378,32899,90689,30381,3503,84739,51822,30530,21535,8246,31131,45743,58274,14134,84993,9119,30177,47613,653,77789,60330,99918,88028,343,23340,25213,24551,79846,44209,16312,39995,66331,25642,85329,8455,75338,3619,86810,71506,76425,80877,69390,92543,62812,32013,44132,15140,34732,10958,44755,53835,41253,481,40213,23612,44340,99362,15116,55519,41149,71097,72839,25021,95535,46463,49707,21465,88863,58971,28237,19379,60138,50133,45170,6457,19966,54534,48247,11803,56399,89358,36166,65298,47986,22159,46709,7640,43470,71838,43392,41908,96054,90636,19986,69108,67142,73030,91600,43581,15097,34935,64274,11224,9842,28379,9114,95149,13089,28623,17941,96897,70853,47664,33428,21052,85976,86105,51301,90530,58490,49222,55387,34663,17922,26968,70156,40771,65460,73433,19550,7848,81464,79215,29268,39790,36503,83539,11955,88331,92322,97431,77639,88915,55547,18275,30533,14144,43406,41123,42255,44495,86347,36297,55205,84557,57328,65579,39617,93583,62960,30276,15584,60205,96173,85862,76679,62241,48944,6719,12985,28160,70261,41101,89408,83369,52009,48651,5355,3199,3665,7179,78042,85786,47106,91341,46989,19838,77869,95039,11162,67480,59117,17009,13848,64553,78138,79022,15783,53839,90790,11076,48692,58394,74926,562,54330,23326,61089,5094,77194,92126,6816,51802,76601,1839,8253,24459,56274,96502,42117,97607,25516,74441,50928,48438,57921,2357,97581,78511,2137,80035,47373,12168,35737,50925,97384,14965,92444,80177,4328,6215,93690,1152,4468,88554,89135,58052,33108,32529,68133,89937,5648,38375,25305,22716,17280,20203,6101,53014,37616,65082,23216,98625,41242,85055,22840,18469,14038,25956,55996,49279,85670,54190,40110,91116,59621,97832,88209,19644,75173,16576,29968,897,65893,95605,44141,72448,96141,8017,513,14702,40530,20726,39496,10075,27690,22511,45858,74791,69521,43041,7240,74297,40855,10150,79829,23800,43991,43602,48374,47568,17507,75158,9107,57289,21716,24782,89731,48735,61246,30191,10262,35927,65027,29933,5574,75191,67053,59600,42992,4496,51927,3141,49621,5185,43192,73160,3270,56306,25033,69855,94295,28256,63672,96798,60,65001,12128,24034,88043,91818,6690,56380,96942,57928,17691,86898,39844,13540,47371,68528,66803,63823,16470,95199,69309,93154,92589,44520,37708,49708,27849,31682,89875,45416,9441,31978,22073,70088,81281,59858,29789,50547,99408,30334,70085,49125,76324,46609,85231,7458,4351,30248,12613,58543,27555,60885,25984,97011,53323,63158,83841,74484,58833,78035,37599,36164,53510,64666,51333,43279,23599,97353,88738,85641,59304,6594,49003,36172,74470,34872,62381,6562,27025,15090,27734,25861,19855,97002,90032,70574,67639,79395,45652,8412,30357,6107,66005,89993,92406,49675,78496,34772,56342,1744,46657,96558,60148,93912,3074,6197,37722,7372,16358,71493,74964,84980,6960,73883,21789,6826,91802,59607,92741,74930,21485,65436,8090,26514,86556,88618,76698,53468,33132,8440,40467,80028,88007,54623,32010,44581,42338,30088,22297,63187,89445,59526,91958,15893,34476,92720,26102,70221,83328,72546,30476,46539,67216,15313,33836,15488,76063,18627,69992,32421,18115,93419,39435,1824,61863,10498,88342,67863,75318,28516,54389,32043,68943,49181,82783,59487,5816,70290,68433,36477,1434,58787,50366,9418,22452,62438,27209,55320,34392,23105,13061,99192,66058,64391,46567,72288,46154,12093,2230,70822,92331,27969,45086,90965,83381,25010,33947,95074,82419,21968,64097,66814,28218,2603,53801,48263,3913,70358,58876,9387,2814,53652,42503,4238,54300,34130,15648,88052,56761,76802,63193,19244,30843,59791,72911,30223,21717,2079,61197,48350,68353,82373,70041,76829,50271,42569,49140,50499,23586,67212,87059,51135,71346,94502,97057,81447,7273,95543,15205,39730,13104,99054,55622,44629,17332,7556,59449,1351,894,57673,76558,40315,89914,61642,39683,62906,96941,58137,95073,93413,15141,62580,32386,14718,66693,28942,17744,7469,86121,82537,76439,3365,42201,83013,77671,84143,78827,94057,99310,57696,98843,23896,54588,19463,53246,9857,28865,62050,77894,17658,62099,19294,80876,28850,36847,82801,46537,13874,76153,47513,56359,74702,69924,98182,85603,44912,58095,10188,13283,3264,71404,3993,11725,82620,50778,68643,88573,32065,86992,10486,68270,58125,439,87677,23771,44122,75360,61676,25374,8109,61416,14882,97327,27447,72724,37605,89676,41914,75915,59380,78579,49780,57304,43283,10635,86208,65376,61384,61125,58877,46875,26515,41300,7704,34846,46363,751,97016,19750,93287,70095,62345,41084,61188,22679,7107,9813,84704,1949,76842,53967,91747,24865,53096,28989,50549,73895,9862,8188,72922,30659,14643,15262,42294,19791,57531,77107,22705,90668,71649,86408,53073,55232,66463,61656,92935,19161,37407,70903,98522,87590,10526,34459,30249,11994,61825,54952,15691,76415,9503,59109,69453,74181,87506,88532,25415,446,46601,46071,24884,6825,67748,4202,14165,74410,74599,96406,1365,64687,68063,85151,45570,12566,50147,73772,43034,1589,73688,45180,69988,35954,98959,81311,96176,33022,91288,4658,69220,19908,22277,15937,45879,40568,85464,28109,96031,81755,77035,99427,61415,36062,44837,38,39250,6175,28677,74274,69978,71542,94835,67187,17607,50234,96488,51472,1479,90787,53270,76165,71249,50196,52119,85899,28159,24682,52116,18999,80836,34818,9918,12617,38645,21013,16746,96648,40962,78086,91137,11125,15485,38978,97445,17729,1544,16089,95837,49432,30338,58080,11887,73792,29932,54091,41826,83088,83065,14878,77364,18862,66868,48371,39929,22068,34432,37558,54969,64383,7177,64073,29225,85623,92493,78925,81655,83100,9451,82423,35494,96334,39084,98562,25473,14859,55685,27342,46158,52297,72784,14613,32056,94965,82512,1118,98176,26361,42998,62943,76262,30017,78218,35275,17230,91525,50809,20827,1198,81872,24815,69552,63163,23942,95989,61728,78605,67045,19803,74906,67658,65497,81361,63603,9858,17545,95942,31177,69146,25625,82291,34231,4181,88681,5282,99425,95661,83710,48193,96689,55552,3601,9621,18035,68227,60767,69380,21441,54743,88418,4991,5837,29031,17110,17477,67764,70499,40659,71277,27000,52071,11535,59138,34684,65653,41586,28626,29978,45507,40887,94473,34985,88639,37695,24015,46398,90187,80135,68542,81834,79249,25288,87856,90994,20954,774,88657,79226,92160,35827,98542,42597,57259,88780,28781,55682,48238,35876,43136,10068,21280,55628,37092,73180,47973,2561,34429,29855,82686,27461,84718,39981,17969,57751,35373,51156,38942,86651,90269,16324,57948,58751,95620,11662,78167,78271,15761,15133,97360,48455,19987,47484,48579,69662,5597,76176,98134,30805,7797,34720,24353,21180,87219,87479,85258,74963,67135,47386,97866,37177,71243,75279,11622,89046,8088,51368,87792,86622,76077,45475,43831,89693,93445,89574,66642,15355,10620,55319,42219,88840,97567,60256,44603,45324,15382,80459,51623,72322,51390,87443,73673,58654,94477,14309,79444,92376,97547,77791,69160,23306,44962,50071,21656,16321,82487,52720,4383,23393,18930,64546,22999,96274,20239,85642,29211,66319,75134,84142,9708,77994,82424,7995,1308,97510,15639,37171,10813,44853,31309,41060,55233,76529,47659,5193,17915,61265,29793,61483,97151,33504,45668,53364,81821,14905,4196,86789,38067,23133,64857,62110,50518,50249,58497,85221,86771,84643,47850,95753,45010,28818,72627,37887,94340,87039,73551,6333,71231,68100,27657,51330,98330,48857,40681,52777,33980,64701,34563,68784,85497,99065,61000,74111,57688,99617,36165,56055,7714,96582,21506,72360,72180,50651,2898,56812,15162,74063,92727,83751,93540,52191,90399,71648,75168,7476,65246,32073,11638,89301,26687,78732,33401,13203,74088,59627,67651,661,30093,69616,35745,68189,32121,83541,39547,20333,55170,45970,71730,84934,11423,54372,76180,66473,18619,96546,66079,81678,37197,14746,96597,20812,1141,99480,15979,85957,30422,84394,11509,1174,48837,56051,14155,1552,63926,9415,88134,27715,14286,35880,21975,86109,69542,35930,46842,8561,34027,34673,44320,41330,89309,35353,71572,73592,42558,83615,20690,29716,74650,16278,39721,12203,11408,33370,99447,81129,81294,19066,390,22348,93406,97463,21419,64850,31089,27041,88450,6239,95856,82661,33461,11495,78099,26750,25962,91643,16153,93128,36390,6764,68126,87880,21006,1947,1105,38082,1807,25531,82542,68411,39291,17521,44582,88225,89598,53932,40358,95343,31060,7324,24746,86610,83461,71297,58844,53955,86752,41261,38361,80984,36717,5947,36886,5101,12370,92848,10568,37559,19349,30255,12234,69664,56612,41379,4068,81854,79162,27272,44331,59963,46142,32767,80564,33280,89830,80150,39454,30364,54345,60736,33362,37229,5709,10076,24604,57290,13903,48215,22984,17979,6571,4795,87628,21055,997,13703,43074,88441,60939,56993,59018,60448,99934,29341,1555,29814,42785,6830,6350,95748,70960,83314,23680,41044,87991,59715,25137,27155,66787,19770,60327,45723,71516,21024,16029,68534,50805,82833,94073,63319,36458,34602,6569,39852,76256,92095,24839,69637,36497,40837,88756,40993,36378,52915,39044,59552,55388,53563,2126,42797,5461,61594,68102,88617,7176,93280,56326,6604,42308,65815,81795,58736,79042,34526,70143,42072,75537,54035,47368,74819,14142,72181,4696,87240,12252,114,23467,49929,91070,46447,61527,4075,19483,68267,54784,39525,10365,24871,32714,24402,62957,49439,82303,47027,51128,83331,94211,74176,13313,34266,4236,82106,90525,7634,47171,47774,22590,63669,85611,16744,83680,88358,10743,7881,58676,2500,10466,63301,85093,33397,49539,10199,24412,9137,35502,35063,55624,80601,71434,45667,14531,72923,33837,22091,50377,32302,34926,12611,78893,31342,47250,49460,93994,68845,28629,50795,48335,76036,35346,57953,86491,80405,53503,38899,39849,31502,27081,19326,86343,51155,23481,70516,33587,12788,52652,9831,48528,27645,9804,12654,14607,16680,1142,50469,25135,33822,76939,60413,36086,83015,97168,42415,44442,35641,63582,97278,51264,43380,90951,97507,61117,94646,53293,9100,99481,37621,79527,72005,34645,1185,94255,6727,33598,89872,89947,99093,89645,17056,84227,1971,75746,74684,16991,23103,89540,20912,53919,71821,92435,31800,40320,75838,66396,14699,29692,46607,54464,78555,13950,82674,37095,2235,5211,92371,11967,69894,45962,29296,36519,13809,23051,44087,48192,3685,23955,82846,5696,53369,96547,95142,39891,81629,66624,54916,61789,61143,32412,3785,7831,60364,55195,5411,75187,5100,62661,35714,6956,24713,63810,8677,70631,27392,9677,25114,9520,49030,45385,29114,87898,57595,29587,88590,39698,76834,17556,5540,32271,19370,5004,30988,23689,14081,75755,2950,95652,49574,56077,86744,23845,39332,96071,69566,2939,31852,35499,63748,80169,9061,37155,19070,33447,63981,52201,84108,33074,90807,80416,78249,42464,85313,46648,94381,35316,65910,8311,75712,24048,10666,92178,91259,38214,47888,2382,17927,90426,35790,44729,8731,41728,59559,18891,2218,51778,50569,16987,31919,46734,93292,39467,50911,55946,7653,70830,4071,56423,56389,12911,22270,59694,5122,82178,50118,3183,10835,81537,14925,82269,12737,46100,47135,143,71212,6822,6836,89665,92531,74454,66085,49457,43563,88328,13412,40642,44056,53302,76805,94920,20846,31094,19878,90757,76576,75835,69301,62177,82704,23593,8502,82314,38948,64917,10172,19702,37411,95701,73195,75782,79498,70817,45690,90527,20878,8384,31665,89538,20939,19765,79913,22481,65992,68135,99391,82761,35744,74662,29131,21481,36603,84724,2436,20709,22841,10808,42026,77078,10260,77552,3547,82519,57825,41391,66943,56232,54099,59012,5921,31013,88469,1683,21686,86918,62085,3808,10178,14026,53181,10977,30718,6807,22917,8194,59599,22932,77087,20815,90374,89728,31202,89495,16812,79331,97970,55706,91695,44095,40348,16899,63364,83916,48948,94671,57026,64076,978,79448,58266,31076,47745,95508,49628,53752,11385,32298,69864,33321,81167,49166,48604,92738,23442,7451,69780,79748,59531,96362,29398,8128,63043,4865,12810,42330,43817,47950,66977,60416,64694,37437,75516,76018,43989,92239,15887,78971,80988,66765,9686,3749,64911,29850,8554,72020,73788,60768,37941,86971,48850,74793,69153,14598,1642,54339,18901,26691,82746,51056,12722,13934,28337,25720,22391,4298,32164,74957,90219,83190,9668,36335,24500,9453,82410,67494,78657,14096,38746,17301,69732,50330,89173,76175,23541,84677,43462,77420,49718,7441,52460,24368,57521,72348,49828,94687,83145,66858,71116,44514,17508,31379,3724,27730,83302,49264,66720,30896,99002,17783,14543,52057,20216,22798,62547,63017,38084,16823,49581,64295,26634,87661,40936,61372,92810,43472,73580,7526,95895,74898,63198,95770,89368,60119,78424,69845,18457,313,45972,44119,46687,29494,11965,9268,34970,79715,63486,62517,98935,31900,42528,40733,59646,44980,15017,47935,75681,57385,61182,39088,64317,95612,12094,27410,68398,38874,88390,94686,81773,71314,13289,80848,38185,74597,57041,62921,67823,36366,57992,71211,34090,40080,80238,21960,3998,56973,33155,24514,33572,70018,41160,11582,59774,80161,94434,88189,86490,42904,45540,65471,39384,90327,6501,68269,32718,10685,9522,91220,83900,77761,53137,69393,65792,3726,84028,45063,90620,215,50187,17555,14700,95428,28132,73282,22688,48609,79490,39122,26186,23441,33423,64371,99095,36063,6045,8180,59682,71497,66738,90992,39635,39040,70355,62761,5428,79934,87681,35179,63928,50132,24161,32548,56871,64771,56170,34606,60521,41058,50079,51975,29979,18679,36332,17195,63268,89449,97137,17620,15049,6630,25584,48401,27647,93290,90329,84253,67885,78489,76157,7624,16304,79136,65439,9057,92386,3004,99846,4274,10885,3225,64699,48960,11604,44059,66904,26925,33640,49285,58161,93582,32913,24543,77745,70719,98002,72196,85469,74133,7705,45561,54411,56039,23575,31698,12928,74781,39795,90821,80763,42206,42012,99396,54356,9298,36049,13624,10367,51639,77491,59248,70799,34961,40471,46936,44005,45038,51363,55152,11241,60972,74458,43744,22558,76616,68645,68412,47162,63868,3658,97036,80341,58628,3316,52331,25294,55569,86115,75321,17511,37181,57163,40956,77257,36193,4996,68018,25675,98245,75319,6219,67415,3600,35188,80926,18985,36852,58090,82456,97882,55471,41355,37000,12839,64185,90980,94068,31435,2977,14590,26570,7255,64052,21867,26251,18078,6020,57800,99860,96875,69367,71373,73656,68642,22553,44091,41468,22223,50780,21319,56468,79940,50433,21668,58789,4124,12779,30673,25925,36645,89859,5704,12668,90695,92216,73349,95866,70827,75337,53958,19456,64418,74137,45888,30824,68973,77130,8897,44667,40984,63942,52066,18939,87562,17063,94181,42799,56959,64839,75857,42197,94191,71134,87136,58994,36299,1279,1872,77811,28413,80731,98810,35922,13881,95046,69927,48842,65752,46717,35968,23719,96433,99168,38308,5513,4827,4582,18806,67288,19675,69231,39576,32578,14220,56435,88670,93375,31984,33877,15891,51310,1842,36157,27331,73509,58972,41023,64302,50616,95619,96429,65431,15984,42736,31214,19895,72577,52109,76888,31755,43486,15306,16036,24271,88967,55448,94869,94168,41952,41458,90897,53882,97083,5881,57757,43915,5269,26586,42406,21816,17634,5637,56879,63479,95597,98262,33972,14513,92680,11838,77581,80339,3267,25234,3983,58238,81091,16231,29196,65310,52398,71462,73407,23730,65032,50264,83007,75302,28665,39394,96352,57972,74626,78178,50325,74692,75542,63081,81873,86257,78012,3779,44918,14361,65780,62944,62327,11644,54960,78104,27384,17612,89431,50102,60136,12587,45013,21893,88629,15522,56331,22576,75798,32174,83028,77085,52326,74472,84705,2735,71052,96107,19314,35116,22662,41086,5285,90816,18373,25811,24067,95445,47672,19252,96923,17977,80055,92481,94545,98426,29259,11282,32004,39886,59472,50395,42317,33092,40386,77578,82995,86852,40038,26014,3248,34860,98309,52244,119,78360,59816,33697,62304,97943,26712,77217,7264,18608,46795,94464,19818,19842,2657,80625,99865,77147,92722,24508,18504,68711,9683,32173,53767,77747,50712,33776,3425,70078,19524,6843,1213,39460,49299,86396,75489,98005,81250,44368,67137,95053,20382,531,47468,30459,94951,55099,37128,68689,21659,83197,83569,43932,88659,5319,34194,34296,21703,15219,88811,58432,75001,25852,64349,10655,60048,48580,94848,1608,59602,94049,98885,93208,98125,77261,25263,6002,91786,63055,71696,49776,27385,5174,41902,77310,95859,41806,16688,60474,65144,8818,92217,84008,73637,30789,49133,45641,60818,94978,16490,55747,25330,93793,25526,88320,41566,49321,76976,11693,61016,96980,14076,40532,61273,34703,56492,77058,3484,8222,55089,22965,33446,99810,33010,49078,18586,36055,38344,62315,35287,2467,7976,12866,41148,92332,13348,90070,96287,28468,5442,37396,85283,20256,82503,40308,86701,865,65459,71872,66616,24949,98174,33291,62005,86997,57737,30729,62410,35725,75997,55904,80591,61691,26906,68934,78415,61960,35723,40277,73270,71180,20958,21938,638,91254,49297,42133,73888,37883,17001,31518,80076,20601,67508,52121,52859,13842,62839,70067,52485,45368,80057,21418,67306,79141,32784,61379,8776,35994,86385,47947,28544,56857,57602,86176,60196,12039,91532,2578,20949,23790,90777,36088,10668,14221,42237,31586,16434,61039,42168,17792,92330,35100,43985,86885,72479,33453,74418,57605,25621,80447,91635,51656,59904,79293,41922,10499,23659,10122,22453,14369,21056,93763,69906,5181,97937,38442,36710,47785,48015,1084,54966,60402,63057,7487,99816,1466,95348,50061,90634,4217,94822,44527,71407,49345,60546,73448,31107,4547,9406,84134,60473,80395,14808,24293,94697,87285,98826,17643,81213,4080,48818,84051,84177,53480,79860,62092,80712,89518,32780,42424,56682,39275,29676,51664,20926,79230,12856,81908,14612,62457,32534,56282,34775,72613,42311,79047,52989,40543,36446,47582,54501,41637,44526,42649,48675,98254,45269,31937,81346,16622,74763,57121,3823,65212,80550,17092,20040,35720,93476,14585,84349,63147,85068,6879,68079,34688,82078,60202,21011,15924,51294,82044,92667,66723,2169,65807,55882,92358,19872,16242,92223,80527,64016,39268,89326,61950,71849,97412,81504,79559,26731,24961,14248,67100,4772,87552,46716,59864,68112,13685,86975,5693,31731,52856,45952,47678,23576,49338,32214,79276,82780,30372,48886,10490,37971,74345,71191,37863,58988,83011,43169,65811,89362,36928,46924,15118,7959,43806,39602,53341,51891,73638,90923,65652,98304,68203,79995,99304,90120,89433,67443,37084,62594,3221,61995,56153,33223,37100,51451,80131,16655,8672,56759,42873,9128,82864,80353,20928,20003,76112,81748,75182,60495,3489,71309,49107,41766,59751,33535,63901,66424,44993,48762,4161,5444,32914,51500,10051,36573,34978,7535,18884,63380,3519,17834,60198,46684,55011,30325,13674,77943,82016,37597,24198,16445,12207,56876,15175,2672,73875,73246,94846,53892,62037,87144,75978,87932,68847,53101,9055,74892,62970,9357,62337,97721,24792,78857,34103,61917,71591,58648,91361,60195,61844,99835,11988,57764,31352,72540,14138,53684,9260,78942,89007,15278,34509,10366,29412,21897,58106,52250,68430,19105,50999,79971,23377,48965,65824,62775,16634,46675,96732,78662,58076,99811,84760,79703,88817,92575,66771,16522,86051,41546,2913,37819,60813,26721,41448,86423,91127,80428,10771,75441,22873,93901,33372,95841,11782,65639,25636,69962,14949,51976,53140,62882,92678,16040,94559,38501,46823,24029,98255,57715,36617,83338,99842,21805,85503,18135,3222,6815,70235,15620,61161,77947,32168,60375,13097,59616,11697,80364,8206,90827,68989,84975,17605,45903,55683,95189,87680,41853,73671,30835,15592,375,54527,13862,1695,34306,77645,40939,52512,68148,96696,17233,42368,43114,50070,53371,26474,45897,6528,26386,26922,63597,5758,49938,82832,11022,77544,12405,63202,41855,23280,35622,11962,87687,92775,69340,27172,21814,10334,70331,76904,64627,14483,87306,58686,62636,61031,61843,83023,20062,89010,63335,39000,64679,84151,2240,76116,22395,50057,63538,16251,9853,39267,54217,72137,80914,77296,373,30195,51378,86394,98492,73960,73598,13165,70215,63916,3924,96402,8627,50631,2708,68415,88868,20383,20685,46257,50637,20572,30337,4419,79852,46688,28789,37871,42016,76319,734,30499,23809,35826,95398,10407,28145,5706,54445,79457,41749,98078,24347,66535,753,41314,62439,64456,88613,12568,74611,73731,59121,74644,7588,30636,45985,58260,17882,99549,28450,57453,56593,13764,39631,59666,56245,63382,36819,22777,92156,26995,60088,48493,38074,68094,56824,88353,99351,82815,99814,64405,89719,41390,56700,66138,77867,94466,71632,54267,57013,40190,76581,70948,66354,86243,1932,16972,12964,42053,34610,93224,548,12867,83348,18813,41452,61756,59698,57080,41842,56019,29857,87209,76470,55006,58519,96331,84693,78186,2236,95464,14271,82904,17597,39498,39656,48979,24854,87085,35034,63861,61909,28050,65474,22656,66406,31855,53391,99302,93516,84680,53424,12220,41289,31481,65062,83052,39103,96682,57077,29157,98123,67406,98616,71866,36589,81080,85588,82268,82699,7087,5728,12579,81078,50951,66487,59493,81646,56104,98388,17905,94754,50544,19857,53516,85245,55031,24062,46551,28682,79679,39932,4964,48854,74622,58735,6377,40410,47125,87608,88709,59940,71492,64825,47402,14685,77891,22894,78761,71135,65973,8650,13574,17340,27876,89008,35579,33353,40793,23436,43901,55742,87668,63466,99022,62453,58665,61287,12515,84273,42421,57762,37935,46642,9985,95333,76534,20470,30520,38448,99209,34297,86319,37257,83635,95958,74689,62088,85743,44865,24910,24116,4586,93777,47580,17488,99230,60030,33470,25567,71627,26481,39284,48521,11220,70229,86990,75175,15559,24774,78961,87206,31903,34470,73031,39680,42765,84524,48366,7284,78533,84181,75452,12595,6351,84129,32353,4296,31815,78965,98013,14097,46772,70480,53208,85872,60376,89148,80968,25538,42784,55368,32363,4010,63068,37842,68982,86344,38810,33982,79377,28480,87064,48460,79825,59048,37831,24392,12482,1790,45427,60949,34764,66735,81444,50297,7677,91447,37609,76332,67994,25174,200,19899,32626,88216,46132,29408,98672,87387,18191,67804,34874,77374,15715,23666,90121,49820,31331,38744,99709,58862,7666,40036,5402,83312,66522,71120,73001,72572,56710,353,55151,71150,58557,33958,3212,18172,23238,78326,27983,2599,82033,79423,9235,44073,22746,66638,45630,64426,8682,61070,22927,49244,34508,72228,67064,83806,75300,86178,52021,1507,57797,45237,61886,74057,84022,96072,99985,43739,95738,27753,1000,80000,46706,55536,41603,14540,99060,21407,17825,61595,12884,31468,86751,88149,75192,59373,18470,66264,99475,84922,44179,48613,98821,43943,98632,21736,20277,57497,41384,69815,13858,51240,13286,53941,44920,8944,30977,38522,75942,84326,84327,9103,34616,59516,35384,29222,8436,30968,57266,52499,95559,90243,2985,16600,19082,88214,36598,6095,26107,25883,66216,22890,53179,73991,68957,23094,61026,24056,21956,98727,49027,12445,30509,3704,65852,40585,42499,73441,99301,52598,81299,81938,73266,69617,91516,37778,5711,20906,81767,84945,77303,79595,51425,28727,91851,99269,22003,60437,48297,24947,27928,93241,60122,70098,76382,67875,39586,7590,74722,19272,40670,72097,60530,81481,64306,50008,94004,58816,33216,58938,39592,97012,69009,5494,41763,20780,1509,40669,60246,3738,47,26180,53340,63699,4406,5296,6904,13577,89848,53640,72250,72175,56749,35437,89489,4121,89979,17858,91529,26561,53725,38471,42440,70060,93745,27006,34480,38423,25910,93310,8909,82466,28168,32042,42581,3280,59306,82241,27583,50097,76871,22359,88693,95798,72009,6044,10288,58269,66737,34850,8429,87101,13246,48003,53698,59802,13622,20562,96928,35159,66102,57152,77000,32645,40476,68190,89817,32202,87974,54219,94161,81375,52129,89782,48355,16044,17863,83121,92387,38541,81544,73487,20373,7478,70266,42985,3757,14674,28219,65765,54005,67468,36351,99801,64937,59513,16115,83597,56917,706,82737,40692,92886,82197,60641,4243,20772,11121,54268,45111,98978,56582,76966,54600,18878,84943,37508,58815,90092,33538,34967,29504,29738,85488,21144,55906,72434,46459,58494,27418,41942,37790,72865,29148,67716,70739,4845,48902,70497,65897,79415,11875,35498,12342,93289,98086,4044,95504,27462,59873,47156,86759,85703,94842,30899,875,96975,89946,26654,9875,27003,92679,94215,25270,38467,70262,97953,1180,67918,72037,68638,39808,93617,90497,52932,26246,67166,30602,49535,39466,9904,51059,56311,89808,71795,9496,35008,62533,6268,59406,82401,66167,9603,66773,90134,85343,45611,67787,75570,79453,1446,13957,10087,73595,40612,15650,62103,18411,42214,87049,19348,90210,3714,78603,66438,90896,78310,99590,14013,22215,36370,65419,17383,92298,98998,3387,86762,11867,38667,64342,61563,86635,59194,48453,11133,10742,35037,44297,53228,81147,77592,32505,19360,87141,71559,20041,21380,60976,50833,67256,85357,79404,29993,42624,43506,41357,41805,59554,26309,96961,97969,74732,2663,34220,19181,81083,60055,94950,52036,86327,47866,17121,10893,56252,4981,56609,41495,89710,36253,1992,4813,14862,8386,65952,35442,69558,75950,74730,76222,12835,14654,85835,94516,4443,17733,2610,66185,74760,2506,19236,90763,91299,34613,43221,28486,61658,73801,51826,52945,12532,40462,27321,88179,14347,27820,29531,6029,49356,20673,38967,7265,5737,88295,43275,93039,39653,29304,58232,48031,59710,29924,13660,61410,1686,84539,69557,84905,88274,25354,12249,53033,70280,55435,20141,40770,31029,15288,41857,75598,30856,97200,50793,59569,13111,36841,6850,79172,15841,44193,99796,80733,45662,25672,64770,80479,94374,17182,75402,29359,89769,22859,48859,91520,68431,8336,18811,15168,69913,27150,37393,92163,4796,9082,78765,69578,81109,82047,67162,62764,88234,73095,59313,42395,29303,3241,35732,49332,15790,67250,35030,66555,57172,62023,23268,29091,6470,66253,56875,11416,93589,94320,9505,58385,76774,48169,34279,64269,64362,12067,88589,24736,28529,6404,39416,95350,44967,72402,12333,31168,90517,46506,21149,65050,57826,7229,15834,64767,57356,83978,22373,35113,42064,21845,84723,83018,91597,53051,83930,42009,75423,41940,14744,29237,61659,60565,18856,38188,93907,79780,23998,12449,68181,13964,51512,33713,47724,51888,9219,64852,13419,98181,2973,73354,99333,32538,8867,84504,49031,49180,78585,97976,15240,85820,63009,68547,9741,97513,11085,35041,82942,65332,60620,93182,35130,26772,64981,54489,26545,30895,51751,17704,94603,87255,61141,1875,47300,77720,66876,40502,1451,55094,35367,19325,4939,78365,55737,96392,23911,67511,80011,35196,24231,14956,48233,4881,12584,59387,82324,56372,93754,49034,51139,26828,47090,66279,31902,72537,4513,2292,54481,29831,90471,1545,39622,25611,22518,90580,12523,9874,5771,60739,99385,53805,76047,41288,42125,76151,37359,93829,73902,69970,41538,75130,60489,69766,47283,25158,58009,12519,1154,77081,68815,62934,29645,72458,4231,7712,64497,91417,37015,6172,66688,89282,27724,77822,86444,45889,78079,55234,388,37547,86960,84607,74387,30315,3139,88834,39497,56850,88971,34889,38402,24955,17951,87662,93348,32092,40321,59550,86532,89222,53189,43899,39925,51998,1569,8811,53025,85182,75608,37207,71751,21139,60406,33582,42370,97925,57843,30730,3623,48588,6568,38815,15163,22053,63680,1357,34377,83842,11740,70974,57035,40647,46573,54764,36639,97262,4442,51443,35931,55111,64220,67722,38224,99126,15900,60242,54295,21911,93194,96332,91239,62522,56224,89221,27551,64157,24349,28918,94194,68585,91526,56922,12598,87128,35161,19301,43,19959,65882,24300,3589,85860,1344,73146,52439,64655,59137,20986,10738,51795,8485,68886,58072,38866,29232,99583,483,40723,1257,42557,91257,87805,52291,14628,57939,3810,21672,44345,33499,8661,86242,37037,99151,30834,12322,83407,23307,27550,1673,21383,23226,82352,7557,98421,74612,90731,95660,31148,53720,10019,26824,30524,71037,52459,52314,20414,99688,22061,94078,62818,30367,4645,54042,96954,5492,60963,4059,63775,83876,33441,52807,4100,15113,72352,49352,16411,63031,24253,76885,96252,83098,16936,84152,87441,62613,14108,54058,13244,61240,25385,54561,19854,69785,99044,28483,9915,2432,5255,37079,27827,24829,12058,64237,26889,11367,22782,55715,94706,49346,15772,37731,78230,38998,89209,84406,17818,50528,13151,73118,5451,18890,35663,56786,69711,11767,89640,20567,55693,10182,9193,3146,95606,70501,68293,56962,58434,82234,16096,52556,72269,86376,20911,5088,52390,15711,67853,1856,63797,7481,87877,51705,56916,15676,46621,7960,1710,77582,26695,95051,25129,99167,35362,66040,29791,50103,87929,93871,30514,13450,87837,55081,66256,60466,8872,50024,22902,91810,5668,32367,16871,94003,64578,53163,99646,37133,92470,54904,24597,69896,15690,31547,54685,44614,71259,23357,46789,15810,6403,36759,92451,33345,67366,73587,5357,31692,85995,87788,32952,99381,1323,85520,60824,73076,27167,10232,64290,13657,77246,53028,19947,72078,78638,80192,76680,59399,2061,84249,89078,71268,23622,45798,69429,37337,13470,26534,50690,62708,39572,8511,54303,4499,82571,1056,36219,37151,58768,3435,38242,79818,41933,11344,73573,4531,30938,70376,56859,32157,54137,64088,13918,55886,38170,43656,48640,3675,40838,35110,6103,35692,38124,5893,92677,35659,55792,85111,1068,22403,11706,65753,63995,41828,13182,44445,34008,24716,59772,49653,51415,6031,27616,30604,48098,89621,3393,81353,17994,35265,56086,56000,17939,4241,59734,64025,85088,64145,17207,33790,40901,36583,50562,8989,83674,65927,82706,52003,79656,39366,53446,11262,49039,61735,5045,1290,36640,35706,37969,41671,95418,37798,68584,56292,45793,81076,91024,46568,77881,2273,63353,98982,43373,5258,14534,14749,56704,10001,82096,54610,9655,49121,36491,34811,60953,30409,20857,57492,8067,44891,12706,78240,45622,71027,49443,23991,81868,53175,50077,65717,12306,35664,87274,9189,7838,22121,23299,20860,56230,83997,80193,28221,2458,26035,48274,53068,91100,81489,41622,52123,27274,9727,72863,62599,50881,91455,97182,72550,63907,65603,6491,83296,66203,5103,98337,33920,48492,62623,76108,17787,49480,13143,48319,96770,37723,33418,63205,6693,85307,42181,15552,91003,44534,40713,98177,35636,43558,86144,35695,97712,74808,91955,8705,61295,61042,75536,64943,84434,62281,94453,50937,79409,28076,53166,34357,74166,18681,18503,20966,85393,9378,57122,87142,48426,67565,46266,19436,69075,60788,21317,20007,2567,68138,51211,37662,11372,43713,60964,55769,57207,20087,4975,71670,27945,71752,95187,57329,74316,88505,78944,59207,41396,45281,54584,19168,16366,79784,28416,48556,58409,5403,19369,42044,35932,28300,11970,26098,11715,16355,39756,44794,9960,96307,94892,26659,61347,66788,51501,91014,89805,11069,94987,26949,88000,10676,59949,37927,55230,59921,94973,1271,81185,15033,68224,23648,18597,52321,76155,80136,35170,62001,27217,53204,14617,3919,43163,13109,85446,69327,24826,25744,18482,90199,58443,41185,85746,47424,59965,75649,93077,94737,15403,4288,88917,34056,20220,51644,49875,28986,18274,83532,1176,65813,73591,83545,89705,74436,4459,32485,29451,10307,77777,93113,73319,23194,15980,98302,66669,61986,22362,17566,3676,38443,54645,16520,70888,25918,11302,81301,626,49657,2158,70825,81042,33782,56400,60509,30074,83972,7517,64945,60724,28354,80340,19630,64169,960,23275,27306,71915,46366,50406,68609,46697,86953,82217,51529,4436,98429,67844,35465,74038,87642,36411,44708,92297,43314,77732,58824,69586,75785,65594,99326,53215,82765,99277,29481,29452,81780,95396,35176,82148,51029,71288,69853,56634,19384,99184,48310,3904,85654,33547,25403,90529,61814,44637,18097,97875,15490,5963,35328,43942,76296,48277,73344,84992,23497,46518,17585,63408,82745,50560,20191,74639,77794,61581,68992,16662,18720,73934,21698,71030,34908,64717,27629,90857,41885,30369,21081,50329,44212,13515,33880,25325,57330,38298,75651,1033,79339,32327,91471,49942,43463,53888,34792,66691,24331,72897,1368,96435,36042,55829,98355,17904,77753,5259,78161,37806,33698,89175,33336,43401,79919,72323,48522,39991,45578,23914,36829,82174,6834,26464,43360,7773,68427,44675,55281,92530,76998,52188,44841,50735,97282,67435,88022,62069,88336,43600,12159,93185,4038,65201,33031,30567,15130,66783,42919,45163,10896,78155,1011,67408,9256,95988,76917,87515,29669,47954,84381,49741,35989,29102,38395,39875,17021,42343,65950,15899,64752,88628,89105,32927,24613,55711,3765,10998,76830,46685,64078,32009,67084,95076,10276,75904,28437,84474,49982,47519,6726,93228,70020,25544,7872,98091,36702,60363,27612,84915,97957,67179,12461,37160,83595,61857,49959,46289,74535,78572,95864,11639,16000,10913,2188,41617,67792,47831,25290,80156,98759,55710,65631,36669,61135,80522,58632,66302,16066,24723,65781,72500,92993,71943,84525,59558,73863,83412,86004,38437,46767,38367,90594,76688,45106,47347,33121,57431,29210,66600,49171,40472,22942,97218,18353,7615,32615,3615,90935,36765,59624,27395,51887,19001,33266,47930,76294,79380,65385,89444,80261,17690,11548,21032,39718,20830,46352,48044,5495,81845,74508,27115,99014,48210,5348,71650,29010,588,73897,32366,38902,17765,71767,99454,7663,92393,3626,51468,67061,52699,56940,80052,86586,1682,94939,60671,58960,39174,72127,96468,63965,62276,93067,94036,69862,21529,4966,96984,35408,21469,827,50892,89982,55425,6881,61142,23863,68830,98080,7851,16901,89747,61156,3024,6179,56556,33872,39993,38910,65689,80285,27838,52141,20394,90278,1291,93439,62204,1853,79886,72723,63278,49772,98809,36959,67459,74776,40844,34555,43638,99148,58074,61758,9394,43813,94972,12091,99243,83891,34971,39431,4150,3472,42702,84339,8737,19188,11308,66881,81824,12360,49094,76656,93702,91214,78275,1205,55263,16193,13891,13177,51783,45058,50464,94823,76806,34497,80683,73485,87400,96735,66502,2332,28786,42601,27872,79564,94857,57658,41643,83758,63687,30282,87511,6503,50139,93634,91719,22565,29190,55944,40971,9897,79954,19408,97180,61367,4893,68377,43429,75519,45423,26595,366,53381,33431,9852,23279,60669,99911,4430,72718,75517,99231,21143,97678,65977,55191,49681,51150,94483,20388,76437,86764,63239,6611,191,7722,81221,29306,29389,1042,96167,78144,89949,23073,61709,31627,4201,73236,16543,16075,28764,84592,84843,97053,94583,46362,33261,50845,72081,10170,62117,78769,28511,57091,75491,9768,71615,94221,3527,50210,77982,26799,30239,31761,20164,19247,17893,20339,98478,20932,47278,38889,61165,2397,44138,82450,11612,40566,41931,61153,14908,99112,36951,66272,35235,94647,25466,6592,86595,54368,61257,31722,10062,44100,109,57315,66890,43651,79342,9454,11515,62029,1018,84562,34760,24354,59860,12730,80329,53850,74119,75975,89995,28184,58907,15855,71929,37928,20334,98901,17827,69523,45153,72069,9051,28034,39023,53267,62477,61475,35280,42070,33860,87424,73238,32829,87257,39458,53297,8032,6091,70443,32857,8225,84657,11404,26306,28039,65492,40728,34000,56175,26896,51591,52279,84851,94116,6855,38304,31181,94401,51666,85954,60397,28925,4867,61312,54844,25933,2145,20156,61438,41030,60481,95751,27096,97401,90688,39880,85312,27268,36875,29273,84290,27008,71472,42324,32944,24470,58,717,50470,88781,78984,34115,83765,74189,12816,34901,21746,78439,96563,74295,48479,97231,24092,40799,15243,505,90378,40842,66070,37752,77784,94317,94959,28,28359,7814,33864,62817,47891,13737,82116,41118,50260,35909,58646,82171,43224,70302,92569,41260,35314,77308,65233,28836,83677,56992,31338,41276,66277,99363,80346,6812,67736,12782,11843,72623,1133,12407,97215,27543,81683,88997,71356,28855,43938,82514,89306,60167,52802,33034,80980,81635,59792,61261,93752,81107,82164,1194,60238,79824,11651,95849,21470,77152,33814,58795,41183,94580,7692,3755,93685,60822,17152,75189,36131,73174,76675,84264,67664,54700,3456,77395,81857,67157,49240,10139,32407,28562,42677,37324,80985,91441,78541,356,30642,56099,69883,42325,34471,29568,82908,41349,38745,40716,31344,53814,64598,3832,16459,91309,58206,31260,72405,48893,42959,71994,71322,45197,996,44848,78800,42629,5611,58596,84039,45597,52030,88238,29655,20281,85878,11387,81260,84976,14275,814,90972,46454,29178,92312,58738,21797,8678,67371,53373,20316,52654,79160,84598,64365,6451,676,18103,23835,19390,93990,72186,48870,6024,8228,44474,52277,84777,87458,80069,73508,52769,30433,15311,75697,49794,22144,62307,387,43330,54396,66885,8594,20039,49586,82648,49194,87376,49324,17168,94491,40340,75742,44324,24044,27802,55888,71762,41836,33024,94217,21217,32245,13723,65196,71746,52792,496,76300,40780,80149,91988,74610,7852,3470,14232,52627,78744,56456,82470,17208,83948,54209,79010,56923,87829,53999,75451,94555,57066,30855,72745,57120,34076,9236,5358,52880,23678,93008,65597,29572,12236,84932,81085,99902,33984,21105,28048,32322,8820,32152,63105,13076,26501,45973,88866,53379,95869,23174,14533,55501,40384,4418,14824,30123,68251,96577,18091,66266,66727,97157,29643,88763,59537,65325,48224,87533,35463,16960,76455,61480,97317,56897,29407,95251,75757,66296,28301,19081,68967,55991,57663,41614,91912,82369,93876,8742,37338,99815,86886,60451,86171,252,90488,21163,71961,69892,30185,20514,72377,33858,23630,57490,97811,97329,4169,54989,19771,38178,18382,52735,38994,50743,43433,97526,38163,90140,32103,80697,63535,1618,19267,31845,86462,13422,39188,43608,7832,32057,14198,27421,32885,36123,94089,11820,35884,60825,16539,73758,95302,73851,94935,5530,76053,30655,224,69634,93042,69188,88357,14204,44655,98713,42186,90302,66517,17019,86814,97143,11248,75647,63228,61830,22233,62301,33120,27717,58177,97688,27324,45050,63254,35257,81702,30880,48200,51517,9551,77569,19951,70755,58253,96695,39532,34485,45483,14911,1679,5422,15509,79512,40847,2687,69298,3648,17878,63611,98952,91560,64531,86901,57549,73483,86522,60777,48205,34693,75473,64612,90864,16995,69062,57016,44565,84916,37098,9634,12924,67776,55376,17860,21901,10774,68587,56494,98046,12080,84334,19892,15353,7001,86,29630,13914,57161,90618,88369,79593,95456,93892,3792,11668,39769,26462,96532,68364,67819,95228,72019,93904,25181,19596,68623,72446,72313,18537,94756,24364,66784,88335,7078,88643,16616,67806,16789,98382,31204,24994,79007,27504,35926,98638,72691,66219,368,20018,67329,8947,31540,65039,81423,60418,90357,37986,25600,52446,79557,83830,59756,60898,24830,18640,63423,81123,98681,54148,69583,87224,27299,51255,44796,17600,32920,25056,61057,38194,77390,68575,86220,77670,20879,52059,62995,92534,76178,85907,86699,94279,42019,95499,26587,84995,82744,78062,21209,30901,20413,56912,28225,28893,39679,7819,78491,96312,72780,48016,68386,73346,40032,97576,10281,91344,40972,71502,21753,11451,30047,7030,9308,28766,23369,84155,70256,40494,29720,38000,24800,47383,59827,26701,61130,37803,91922,6356,73229,38691,43414,9150,65263,7327,80928,91718,42203,60446,49706,21463,89159,1216,74395,59026,18916,266,87197,36574,78646,50314,44258,61433,65122,99616,99379,98590,64175,21538,71366,28173,69400,31542,92931,30871,82350,31854,26758,99165,78763,38688,53981,93498,6257,43140,37671,69135,77026,11400,60353,44332,56913,91022,94050,59478,1844,76614,55129,13290,38288,84368,3156,72282,59403,73438,11931,29884,77202,65691,34705,58460,97111,117,65569,45203,83579,57788,17653,3177,72478,72157,35385,8172,3553,30439,45674,36878,6986,89712,33312,11280,30138,8395,47158,61283,43466,74101,33122,90519,94720,90782,8700,75967,48298,2744,6429,85410,75314,42750,11476,85056,36671,76068,48568,96369,85984,77269,6572,53493,18064,63443,1317,97160,62845,40513,58335,7682,71618,24860,49514,99642,92882,31888,58389,80572,73857,11987,67771,99967,68436,35433,22088,37118,66323,75859,14719,29204,40359,8632,56748,11498,79304,37330,50255,29741,41093,1467,80349,3571,56059,70361,18866,51922,90254,14207,43340,81969,39704,46481,79133,18610,8028,43877,11491,45771,6434,92956,82835,60480,44506,43070,79135,89185,84874,6229,1102,38638,238,67448,98974,61323,56455,30164,48332,32820,19417,88153,19396,45081,12609,49004,55662,84214,86300,40583,34173,7465,55197,5448,40496,28773,58496,26142,32390,25297,34148,17335,61091,5705,51575,33029,59139,47065,38686,1874,63983,28561,94238,66383,74901,37448,75278,1963,79771,31866,66594,48992,99453,89590,64894,37080,70584,21884,74839,30250,30955,43584,73529,84763,20295,52846,68347,61328,70924,20,98830,79697,43145,21750,68249,27250,102,50676,2120,59991,80389,88161,91321,77587,11927,72467,67946,84817,65520,63320,49800,36001,60298,91888,3440,89460,258,41361,18680,47353,87797,11865,57598,23705,91405,43770,43823,27018,70760,11068,54812,29563,83309,8904,65120,88202,29053,36092,31364,15812,86142,61054,67488,7162,20299,56333,73009,29742,72414,1208,24618,59823,49193,50770,54590,9900,62682,96145,96758,71155,61957,64233,85365,83711,75351,59504,39032,15300,30841,89229,72958,31655,17504,14410,31528,7144,48872,41618,66439,10017,8005,50253,48081,74328,85047,58242,49418,37173,37692,25993,83869,17961,99182,60234,77289,85622,96010,45362,62508,74375,1880,6114,32317,81892,9291,5719,91320,9329,40375,94267,5462,42906,37934,19642,66572,68286,62565,35264,64207,43767,60597,95528,67228,78620,74281,53281,89519,15260,67677,40369,5380,12693,43165,55914,83473,14959,4057,4073,61121,73220,75358,8006,29378,43743,74208,2111,15268,99275,51874,90929,99857,60318,86384,52605,8979,81758,83681,14694,31925,80976,78028,65451,54951,59115,19718,43357,68754,41319,31747,40316,83428,59966,13354,73132,50640,20983,28114,24918,83110,32113,70439,54605,46040,98575,81674,62168,38643,48658,85061,27469,60023,97732,22775,68245,24536,39050,81533,79107,86245,90715,27490,87654,87322,54252,87472,22432,43306,74557,69365,69902,99623,61982,8505,74788,6164,64860,97725,61765,17188,39354,29902,25050,25903,73227,33975,31334,3951,42684,31025,2734,55727,89755,72824,91034,17837,84088,51030,74955,82986,7218,6938,3814,37201,87114,71096,87328,96150,14626,39154,50288,7935,14594,43268,4357,37325,7928,23478,558,56265,15254,1773,68452,36174,5139,2369,30870,80672,38270,77037,68494,55586,17351,77219,29573,34570,42441,13270,19032,72131,87780,17576,43456,15150,63331,92282,20059,15293,86186,44663,10500,42769,37979,67469,58298,17843,2195,21497,90048,64957,1912,91188,47238,44792,97199,19404,74852,87810,93796,2002,90103,67655,33824,26278,56604,41602,90429,68405,3866,28116,78994,90561,1366,43556,9217,61084,68078,82994,84297,17619,94797,17936,37142,37488,90699,69797,46464,83887,83689,16268,37839,88250,9275,22229,28632,93846,56419,13684,60183,4641,11361,70997,93568,29239,55035,49701,72859,12667,69709,27143,44116,63267,16821,25777,1924,6547,25470,79080,55208,63093,78117,81988,6946,56662,6932,86985,9473,45562,42046,87735,51542,4846,2262,76990,12625,25572,1716,72892,47306,93178,53787,16435,59630,21635,99645,27350,72779,57144,39529,15591,25522,93181,85760,42435,5052,9695,15913,93847,46625,97772,19288,51830,3441,11691,74786,5074,18978,60355,32611,94048,18405,5184,61211,34854,75787,40596,43987,6097,37323,6314,82504,60105,4109,28268,36629,90018,57243,21523,34682,52289,18453,53943,37924,19135,89522,99626,68555,60004,88021,59825,72989,77197,35000,269,66945,82139,10870,32918,46828,90093,87796,37602,63521,71940,55093,14393,96919,89996,67766,52176,80051,11420,57489,31430,39821,26243,82753,10556,77088,83176,9156,42540,91598,13861,30833,37387,23264,74959,79685,44870,25893,69590,95447,74754,70663,6887,41386,40068,88785,62686,98465,15400,88383,76438,69353,15881,71891,60502,67197,79578,19921,99979,62206,87047,82136,38030,26487,58793,85842,7681,73889,12153,91967,35398,32473,78837,98922,60511,1010,20645,21215,72275,78683,96610,97190,29605,26887,84691,8544,22193,82742,86066,83405,51993,29918,79625,57070,72701,44185,57031,13022,5680,29919,43601,9482,13742,36393,66578,63571,22551,57334,40884,70378,4701,54406,37711,58634,55836,80464,6477,14051,17264,41896,94781,90652,72511,63873,83785,27792,23161,97978,21741,81071,82161,30028,23069,25902,36090,26967,96272,74547,61430,34293,94693,66324,68497,1546,29618,65461,94833,76586,21381,25170,32801,5596,7803,94465,50867,49386,21448,41567,57448,15245,96584,83596,14955,86301,94314,97097,63638,68484,67594,11255,57094,85445,19343,94537,83885,16079,48615,9463,49455,32070,34338,13173,41003,18607,4756,16322,53268,13739,11203,16834,58647,31078,52908,2575,37028,39061,52988,92944,85395,46379,88482,55674,82018,36708,14778,77168,71238,82167,8533,46610,96516,86596,29719,42637,40443,70479,28123,3882,25995,12952,35141,74481,17221,7297,59006,19592,52142,64640,65013,43345,13215,83055,12841,35662,56350,16690,6448,45788,10831,39982,7259,21117,68172,45592,89674,25971,98301,6744,5069,96125,12212,46430,74382,99580,83968,58377,50045,37470,3070,45123,99412,90505,37930,58351,71657,39452,73151,85067,20961,30653,38469,1540,6988,83099,48848,72258,92006,33981,73784,41197,32758,84048,57074,357,13683,67298,23462,63951,74555,11392,23999,6991,20505,47567,46227,44359,64033,50056,66768,17043,96609,65463,96778,84291,26172,40790,96036,30897,37183,74682,21034,47642,12399,10104,49184,58120,99924,57335,25839,78115,98491,2670,32287,88986,73924,22385,98474,83619,57584,58081,77102,36892,84109,32458,55041,44151,1902,83480,92118,40556,1857,17246,17281,78681,21353,23761,41047,87691,49127,33434,44901,30967,65840,83365,62205,14039,7337,93608,42212,9615,62391,22204,52133,21734,75058,86287,56067,288,90376,71199,84059,60793,95829,32452,37263,61535,99512,6302,16715,8209,92063,91195,76309,64311,66349,80600,15930,94218,18675,16408,21712,12310,48403,80228,11073,84209,26145,72641,74392,46307,75528,62228,37195,48042,49155,41653,11753,53085,28332,83671,56032,75699,47438,19368,43612,27970,58870,84473,25367,77482,46369,53109,94183,21274,58970,55535,33381,28014,68041,51544,83059,46912,72960,53263,1635,5622,43276,2257,40289,54488,58466,84416,79914,22903,79332,17548,16545,17197,85477,58894,52986,41634,77339,96702,34608,8888,89385,78172,86029,81053,16854,32031,9822,19434,88477,37392,75065,12626,7498,61771,96277,94788,56249,35459,36551,93019,80102,98237,42859,39343,4980,24704,12426,54197,62871,87321,26746,20243,85136,16152,37901,75831,31234,71721,99149,77108,96755,1498,95939,12015,43828,25649,84957,63059,38995,82728,22508,91475,5326,3874,53565,18737,11350,94090,6359,44311,8771,26982,2546,44923,97187,88885,74987,7407,43984,15348,80381,79856,32622,55380,32855,58837,55783,18509,69305,30907,5656,72874,93969,19237,47119,29681,82567,91557,51178,51755,27807,15247,95591,11863,13425,39315,30536,33181,99077,20369,20826,6874,11467,61199,54085,80659,47703,56910,32184,43085,99775,5352,47721,4021,75234,97873,41793,89481,27830,23631,57856,5617,44015,2514,59077,29529,67821,72817,73281,55370,59052,71075,61473,40861,12119,82443,21512,16848,80622,22115,13735,55515,4759,38043,64730,65512,9828,86096,10682,74745,24660,33079,25430,26284,55541,8012,91897,19059,83815,26913,69805,5577,12381,98124,92880,98414,36960,17542,81165,39176,22578,5707,48292,7438,13959,1202,42469,99118,44433,94423,99493,66633,77752,30261,20702,16375,74309,29368,88531,69374,65363,25273,4843,94912,16002,49369,1032,27584,94307,78211,91913,13007,50408,61999,75901,45239,82327,23330,10847,31444,49773,82037,10370,84233,27108,39070,3369,74924,20964,98805,60755,92899,38779,79390,6906,46256,84246,23159,68288,45340,46793,22995,36223,12648,35043,52339,24804,43964,99996,6657,91424,68909,68592,69308,32149,19940,82588,80634,55442,64270,10763,76510,90719,23966,75497,57150,82690,10140,1386,82757,87093,83483,94956,27339,70929,84559,44576,2223,6108,35189,40875,98020,46099,10570,71400,18487,95184,56607,92283,2353,96400,80070,39604,37617,74604,76057,21568,19354,19953,29765,34140,53578,94598,92975,5849,7543,34171,99785,1960,48832,40028,97760,35123,99732,37260,30596,40601,82002,45493,21063,66139,32747,84487,92026,73720,7231,50472,71359,33210,38845,40215,65061,71836,10132,53385,9709,20804,65160,25457,20590,79428,91608,81348,98604,27401,35761,32090,21850,66099,43050,85052,61108,36125,51117,68006,23560,69755,83734,33033,8318,43911,2233,48724,15575,14930,96599,16970,93943,92697,9142,32213,18590,13495,29097,89520,51009,23808,99736,12368,55564,40557,51596,2865,55335,13522,19929,80411,89927,71830,51354,70306,91334,54004,60079,79727,21574,85939,8552,17543,31292,37418,86972,21542,87002,21965,55949,39990,66580,42504,81571,64374,63693,81191,46103,96196,12564,57438,77034,89835,13804,99328,64007,67883,43182,18076,95313,12698,51836,44483,52620,69568,42173,7821,93730,25317,97255,60442,41233,9530,54126,1119,86717,28094,99498,90805,56006,10804,30839,6880,76331,33380,72850,681,91331,16635,69077,35162,44773,96861,95743,19633,56522,14073,12786,32953,1115,42588,46836,93664,55484,4272,36797,99529,65278,62669,79576,76663,54982,90004,67478,32451,2059,13955,79158,34819,34828,23545,99720,95113,34813,6177,74628,10825,22689,77228,90323,78553,99841,94515,73504,82985,89115,32574,94986,8548,84222,65177,58203,68207,10042,89963,63141,9450,90188,29271,99999,4180,27229,63421,23491,6198,95608,9836,53831,33127,23314,82404,82510,19639,60487,25750,64490,88152,95925,57127,81168,88942,85741,99249,76130,20257,29954,52511,45580,54609,1416,30477,1044,32105,44113,86867,92204,47117,85081,92798,60560,82782,81004,89758,20979,97737,95379,78918,96322,37777,22858,33047,37539,92996,56183,4775,11997,12285,50889,1689,69759,54879,21499,31136,18698,85553,18784,444,1145,27975,26723,32639,70438,66101,33624,15520,26583,34877,40891,4559,81212,38223,41849,35506,7325,36927,13805,64629,72575,60174,92739,60730,67465,16771,78341,37157,97416,33887,9068,55046,3507,69248,22768,36943,55752,10844,71241,60018,22340,66037,89647,30020,73387,44634,90749,7522,63659,89825,21061,46145,49756,51475,17801,31710,85473,84822,18702,78697,42297,1717,9896,71637,31254,1753,73789,8733,58366,58285,81267,21631,6722,14281,37513,94147,9549,62875,53154,45746,94981,58922,66852,44362,14337,57860,8382,45465,95784,92763,90662,85166,11426,54254,8307,86786,73865,21042,81553,16057,6016,34605,32048,16961,31366,20225,93258,79864,5481,72041,4987,17633,32067,71413,32108,70463,89919,29656,57181,80316,25594,76126,60904,94121,36249,93672,56687,26382,58627,29443,72936,78298,6573,24281,36392,75039,41998,55065,30692,58279,21365,95715,62917,13311,99064,64637,54792,40717,68622,33045,89617,66689,66400,81914,76854,76025,54903,41915,19060,56600,66567,46723,58483,28610,17272,10423,50726,75706,9997,13628,38460,28964,56210,38159,90834,78655,73628,96655,70730,71858,49202,12487,58133,63694,31754,42733,86563,45438,81794,76890,57295,43027,56538,96220,86188,50505,93700,78129,23005,58760,19930,16050,8518,43570,69161,97245,87311,3341,46346,91828,39753,39736,42855,81682,33246,28392,90822,90966,58682,79655,95045,61652,6933,24525,44959,10402,983,88545,61345,22860,68546,81245,83256,23993,27449,24928,57369,52628,79474,8802,86912,63148,90651,2194,82639,65211,82666,32720,48810,13159,52799,36575,87048,89353,46622,69880,12096,31151,14055,95014,75575,57809,58352,30406,37716,91798,10715,12708,64792,97534,28885,83899,51205,46300,55911,15950,99998,48294,53079,76691,32937,46536,11854,60058,49920,8423,66049,77020,95243,66029,3736,30525,97812,71623,69749,1294,79709,48747,2470,35562,98635,75199,16385,68890,53185,23940,75784,36859,25846,26,26626,76875,67315,10836,57472,53615,23889,51011,744,42378,74943,35412,95776,4402,68247,62999,89316,74220,99152,97224,39289,92045,38420,66082,2937,83329,25579,6170,60283,80317,77495,89157,50662,80443,66871,11787,77852,19342,99490,6910,70278,36931,37303,19518,72108,7466,94169,15225,88949,31447,28194,24637,95835,29221,71336,27137,381,97592,47057,64127,64766,47473,9980,16118,38972,844,81808,28248,9477,95920,84211,72836,8701,15901,33227,91929,30333,80357,33298,80849,2171,17393,31942,19286,67444,20223,56202,21040,56739,2534,39478,82911,91563,67008,10691,91605,75296,55749,40455,55389,46476,39930,59514,77912,19944,24919,59769,33873,55559,85721,37761,54422,9953,64946,13153,82042,17052,92820,8996,67372,2517,85242,89150,57592,34950,61140,2757,31081,437,69456,657,79052,32206,61792,43754,74509,96133,55246,20829,71610,85347,30622,73981,15858,68131,24806,17763,20410,37600,18591,38574,20907,52270,97259,33807,11160,87103,64081,28481,84791,19905,53559,28919,69033,48871,48316,17706,84695,33095,79878,12357,91801,90744,97586,28441,67194,18461,40105,59420,70308,83159,97524,53610,31200,55109,26170,42228,92999,58764,78022,66841,2427,50737,53337,25673,67678,74128,33921,8497,37318,18113,20365,9565,32805,84226,87574,37144,31402,7676,76286,91717,21663,79985,49376,65806,8800,18381,55352,59136,24451,92317,89918,71021,79177,98367,13555,22793,10569,18525,66311,85394,54908,22161,74843,61785,30794,53078,6006,28703,69716,72763,50638,90027,25,71770,45753,47704,86306,27861,75580,49179,37873,3071,31020,22345,39156,9606,66667,45729,47066,82131,61174,27894,57277,56118,87088,85766,14526,22202,79310,73345,52958,31371,37281,92187,75379,462,64718,69582,24702,25819,22069,22105,99255,93584,38337,60158,44742,12646,66181,52156,63834,4439,36112,92047,81263,87811,76856,1486,33644,39091,9993,2766,7170,23762,67214,70144,31302,20549,55134,80927,75054,87244,25102,11357,37955,56826,27301,76747,39590,55558,58691,53417,29470,69016,30981,44013,33651,42275,9115,74495,41202,3981,52530,15580,63045,26739,32986,88429,80425,62142,41021,71442,66295,81488,5369,20786,1833,36777,48561,76959,39915,6120,85007,27313,62814,72946,72901,5061,79989,23970,38564,1851,9202,88737,24209,43545,78524,84103,3597,44470,92080,85590,58062,76765,42097,33038,34353,40766,74866,71234,24745,80487,85691,61939,91547,37061,47975,49872,35183,99786,8447,11576,33252,8770,79456,64589,10930,77542,53414,20647,56595,7561,13849,3846,47633,5192,43793,93134,96315,38700,90325,49399,85529,12361,34607,150,53694,51123,95387,3254,82296,58014,56472,22136,69850,44544,86350,99609,79068,33043,90460,29984,98162,17810,54848,28087,59099,15359,417,81850,12021,57124,29588,3662,91236,45273,77931,7723,77164,84924,51382,56260,88656,73226,78547,83141,70185,44661,1567,63845,26513,78939,17641,50759,91543,89941,67845,52382,31429,11216,95694,68082,8113,35958,52849,27362,30708,97221,85259,40986,55201,98776,55341,87188,29675,62192,16951,69484,55158,8084,86758,79562,33850,92816,41259,81706,96109,66893,62758,49452,45278,45162,39949,9775,2908,69274,98206,91617,65561,75715,83498,72555,73948,13828,12622,86283,41850,52663,74183,26511,11704,93089,94736,84741,11317,99722,38022,71501,71936,82108,40835,16397,50832,44489,63589,99204,83893,44496,49113,41935,67108,94345,67947,92947,25560,55625,71534,30505,3748,10257,54540,66068,90739,14289,73420,98726,38966,36350,90215,67486,71827,44133,73036,43957,36273,19532,9866,16602,80098,98432,60113,16197,44281,23804,31508,35533,55778,49509,68160,50096,26400,49344,63819,168,99557,98194,70527,35532,47967,20591,26409,30595,25992,29272,89210,17992,6496,30068,65132,52032,54385,3970,74103,95336,36837,6059,69273,41347,81752,27295,32929,70726,94346,77381,66490,4997,73063,59452,82935,739,72968,80504,70289,36150,70428,6249,93297,80787,74319,45240,45725,38294,729,18902,44926,75186,99861,44246,64525,93961,10179,67474,78760,30132,90745,49082,54100,72924,1712,51389,43846,44026,92180,35604,537,59347,59876,77610,17722,21886,46932,26607,16874,54981,51648,95562,96631,76637,65825,37753,73950,22642,48437,15138,77873,71302,16380,85119,63302,61650,67888,94157,59286,83437,50789,98220,92583,18005,25535,53453,95616,20977,62152,40121,56639,32968,42566,81046,88008,84625,22011,96302,67074,95290,54428,36348,44187,4592,62776,8475,8788,19893,23088,93620,9899,47796,34290,57305,14508,78436,27955,57914,80396,92964,42478,53350,45911,45304,27236,5051,39873,66532,94657,69482,57611,42759,59857,27518,41619,42174,29360,46330,55806,91300,57665,87489,54961,48792,78389,9909,67457,28285,78490,6940,88175,39200,98496,39081,76654,84323,11536,42437,55629,84183,35286,63442,37466,18262,75642,46215,15988,33743,76625,69192,72284,14731,24801,51334,27763,5795,6248,3055,56939,89061,38494,84086,62574,50627,58791,45589,2806,96579,4540,30052,95982,64293,65430,66443,84445,43629,45634,14371,43296,67737,50811,71641,81595,56575,42545,87433,94726,87223,60535,48497,27148,36047,54583,54466,58720,8114,49670,64813,61752,3006,66985,452,40504,45191,68294,85161,98394,70448,55321,91297,52042,84845,14865,44478,55825,34275,11593,15805,38651,27042,4725,61547,24578,72139,70292,56899,7275,64059,32022,42858,65796,963,23824,36343,74469,28564,11078,4322,9750,89831,13893,60124,37525,58943,34420,24118,60917,6738,66937,28504,26272,64882,34078,51101,63813,52481,32815,74450,56462,20270,23474,43487,37143,91019,87196,7244,54247,21355,65730,37968,18986,35619,70299,602,37854,82693,87497,57646,98521,78661,63883,75480,46994,66060,4587,65726,68743,61970,14494,23372,16238,90831,7893,20075,40143,69479,72952,66221,85014,97977,71239,1741,18741,6430,47618,68647,93090,22979,83234,16894,56356,81726,91959,878,49866,66017,79961,46166,86161,53272,85527,48831,57542,85604,76927,53527,54450,6479,88608,20837,924,64744,69741,34193,28231,20022,28778,20034,25867,54257,57096,65016,46525,45984,34490,3758,16756,58173,29737,47983,65191,92682,61355,98720,36782,59146,30198,858,16257,16409,17663,67700,96645,9905,63342,6443,74669,56095,22442,42132,74406,36635,74567,31417,15733,69807,81413,35868,46382,55614,61164,10651,29454,82132,98900,89118,40270,33241,59019,703,51127,89791,7538,39624,38852,86419,22612,81187,89804,95582,43789,13119,8173,15530,75211,438,4681,36364,16033,19851,3611,88559,94319,51456,77013,99329,25131,57202,65641,56773,47700,95163,83128,71278,97389,94993,38354,19758,64822,29188,4549,51280,54074,94387,9092,47434,28577,94029,71448,26469,95663,27512,66778,37294,82665,76508,95667,92843,37799,14876,85421,39082,87030,53976,98778,15717,35324,76075,15393,53149,4235,7706,76634,27931,11386,56666,94707,3481,63273,89718,26551,21930,7293,93858,54063,60219,97003,17346,63648,40743,88565,72813,35147,76465,76950,1360,42166,71380,80181,8330,62904,25973,22719,26087,82944,56377,11278,82830,48633,76325,74922,8463,79530,55894,49318,31844,33655,94858,64596,69107,28568,93201,35804,26902,37699,42800,63391,89760,95122,72209,35686,86757,23953,24325,63709,97844,80382,92707,56489,47915,26783,97874,80725,7387,36888,23606,67403,10541,46634,70834,13527,61302,98737,71532,23939,23681,28585,20680,66480,51332,8753,5363,60610,1672,53743,95237,39531,63264,28676,55738,32355,76544,39899,37178,75275,28120,2892,22721,39715,17847,60676,30721,40822,92008,59326,25877,56239,32948,92405,11483,45300,54227,42829,69842,23482,89237,67241,69445,58643,16979,92655,1414,6966,33221,14988,37817,58291,1337,66554,43315,5412,29764,34350,91398,17440,19126,61867,67606,64429,33398,81901,81624,14066,44018,69034,60180,83725,15684,43682,67744,87978,4924,30614,68606,37474,11260,25711,74708,11904,36775,6530,2684,45434,28336,13231,7675,77179,26852,25979,1609,50864,75761,4343,485,26181,99531,63723,20417,31495,38614,74451,14238,91612,77513,77503,29564,14722,87834,83736,25212,70571,99887,52079,94635,92477,98006,13548,98358,67360,62532,95289,66403,15954,67570,51919,67775,78981,12196,56420,27036,17501,43409,22355,96161,70414,81354,3581,25623,75449,79248,22030,48936,86888,75627,32051,28612,33734,4802,69806,41308,9752,98079,17547,94521,44051,36970,24572,2570,26113,47209,93906,42456,38473,27934,37435,74380,60419,77117,83283,78277,34644,38722,5524,41312,39223,63178,22022,41708,39099,64980,85724,87510,57409,52789,78400,58767,88199,65119,29321,66465,37606,55002,16024,45942,90622,65557,64827,78746,99763,83251,99386,32219,53418,18438,18052,20177,65369,40040,21233,14366,77878,6270,23534,24296,59724,68015,57392,11236,4050,91269,29413,86861,51269,62514,10487,24539,4143,2465,95236,1818,90067,67660,9402,6264,59378,69295,55860,83670,94796,97825,20839,32841,3103,76527,15046,19950,60424,20107,27758,50131,78451,17553,30294,7137,89863,76790,10376,42405,24042,17368,43186,12466,40814,64467,86027,58216,37333,2694,85479,88118,38169,23763,49604,27842,40507,18056,77094,12448,99187,40129,77375,64532,30484,70859,71738,40590,28488,82335,81913,42399,25298,10311,25487,98845,80367,43292,78979,68613,98455,15305,59067,89363,36910,99183,93235,3557,21248,51560,99592,10882,81432,11516,37148,68708,66909,40792,27538,86828,17850,45993,619,44370,6046,60407,36747,99406,1375,28299,79561,12858,55178,91436,25197,41526,26254,19676,74983,36545,37072,26598,93888,77208,14049,46726,52077,71305,98154,14163,91159,15424,10395,48767,11833,21597,61800,27202,46290,70487,81993,24060,98529,57707,67780,13144,31806,3844,74874,72107,49597,36794,39564,1419,8804,99509,82949,51031,80418,46483,34295,6374,20221,21022,35861,35519,73341,91472,39919,32257,98696,36261,42154,54853,77548,43356,38181,52140,55588,3078,39834,32156,23826,14471,7211,77714,65904,37512,12264,73885,67841,65643,74344,12454,40802,82866,47035,41198,79224,57728,75176,72645,76948,97649,33369,78324,860,45640,9848,62211,82670,28670,50477,84076,52412,92092,20842,11484,18756,53630,91981,84505,96635,18661,41722,68988,81426,15542,51355,33856,95156,85706,77830,50565,92173,72342,78960,77834,38569,30957,64385,74480,90102,90084,34841,70803,70621,45226,26642,31704,19426,63074,87633,57510,99004,84796,9413,34428,58067,56838,29057,72359,53829,1645,76446,52677,2241,70001,47590,4698,74219,48636,15884,62198,94205,89154,79262,24178,6121,7432,15611,12299,18718,53602,80739,50815,37153,60326,13444,67373,67351,13693,79201,58313,85533,40351,33341,55012,89457,73389,87808,39348,68646,43997,38656,4627,6321,89319,12870,63682,31216,78779,70091,39221,90582,77144,69405,63260,33194,60600,88989,53328,63071,17533,65797,36363,81934,48436,38886,59283,12137,4573,21436,33573,57911,58165,38013,89818,39121,86540,64619,70583,92168,78790,61303,687,31143,88360,17130,91352,70585,22118,15132,89944,71414,19389,10336,51812,46983,21079,46708,17461,33643,66401,58619,82105,26593,96654,31091,20650,66227,71633,90299,55005,83372,70664,7847,5234,66468,64816,72858,73184,53134,93120,55700,45207,54337,99176,52839,38299,26037,76441,16143,18443,38039,74543,23259,95329,69534,44578,39667,75730,86704,81564,74035,64565,80850,21903,58294,83904,11014,75738,70351,97630,23381,79146,17759,3228,3864,8519,42417,63702,86234,3444,43540,20727,89556,10309,93835,64939,27782,36811,15588,3922,69929,18507,85700,34696,4801,7755,40054,15039,46887,98413,95749,96847,91105,15057,42693,7414,28424,74433,76638,45557,54298,45148,47113,16633,70687,87507,89699,72864,42738,66117,52284,90306,83464,6251,7757,88829,68736,24211,30970,71389,6864,36160,68170,99755,44599,52746,43056,49254,76218,90456,86844,2646,79574,84428,14563,2253,4642,56654,45156,89419,23687,77433,13149,97439,21329,66130,23901,57362,65292,32402,65660,10097,11882,91691,79234,61490,23373,40076,65341,55293,51799,71086,72188,82970,60229,71514,74505,4422,45019,76134,36822,48204,18231,45333,83566,79029,67160,71792,86309,46592,58616,62153,48727,80932,42362,64780,7898,71569,72472,43870,72044,18711,40711,46091,99675,50764,92937,85403,61572,77910,9138,89325,4088,19445,41109,55375,61149,76778,87769,14997,12624,46999,34643,16056,63027,78557,28047,70,85506,93073,86694,38274,41062,67144,76755,76826,90113,40131,56771,4435,11786,17057,67249,20446,97872,87994,14892,10597,52467,94450,54221,80673,2856,26061,70254,32621,84148,56776,56173,80072,51506,48711,34201,76808,21727,46935,99733,54800,70590,79794,2243,10078,2274,64915,33949,79118,72535,48229,35336,33667,26628,79,55793,59712,12507,94131,63787,62940,40684,24970,36428,574,44493,82045,13040,83747,32154,98463,93785,83227,87826,21484,27549,62351,54328,58609,38266,30423,82560,55462,64663,51018,55022,89959,75741,19127,4990,79751,37199,84477,72153,83090,26478,75645,25864,11111,69695,36235,78583,53519,85978,61587,32727,16531,82418,35484,51256,30012,50772,90911,69912,33830,76969,10557,36337,42741,54007,57873,54796,94382,50059,22089,67650,3106,70725,56802,23665,39573,92691,22221,62356,84243,9439,83389,23253,38858,92153,33557,19448,71038,50691,35294,82677,28723,50281,16155,43654,85296,52006,58414,96859,33762,35413,69173,14810,80795,63618,75453,35194,29103,32285,22094,10435,48024,85761,12148,61647,24519,81916,80580,55525,52403,95346,22261,42823,22370,56675,136,59919,40078,88479,55566,28183,64992,26442,667,70231,19649,78284,97263,13857,96646,86566,31393,40183,9484,37964,98443,85440,31812,51403,64581,56037,29124,21868,99649,60664,95658,41592,46527,73552,64869,22165,67802,91412,67033,12907,80730,72073,34335,17502,41594,46851,25718,98276,82346,53286,4866,7121,1968,83079,60315,65344,15336,63286,8215,80870,95140,69346,11792,38295,88647,53931,85318,31576,67935,31454,45782,21799,84540,68807,14475,3723,93027,52428,50964,97565,83953,94062,39100,17572,55034,44351,62893,19489,13044,21838,69296,18376,14886,33932,11870,87019,47534,88523,50963,85891,56832,54753,82827,62486,92808,13114,77521,34253,48329,9319,66095,9031,7828,49447,50421,49533,30448,88241,82990,38990,12182,92777,73092,57228,70692,46646,98238,41973,25578,99759,25767,32166,42052,73711,28646,57905,11267,29869,9786,90090,95391,25837,87904,93424,31810,8192,56181,85704,8636,11873,13549,86715,84715,8660,97155,78709,49498,60429,79585,43441,74804,50763,33590,64639,65415,66850,98097,83871,48987,66746,3334,58399,42389,79340,92614,58597,19142,84308,87099,85601,13090,72752,63915,15533,26093,2037,46509,18203,61895,70348,64450,67892,55482,24486,28432,6051,91524,34691,45644,28307,42590,22495,92237,605,48392,47042,10868,32311,40380,48833,26105,82086,20195,77817,40776,78015,352,29914,72438,54674,16261,49603,86857,60784,22060,21922,24037,73550,75341,77446,39010,14973,76886,94896,79110,70042,56592,41608,94619,65447,15075,29068,92078,28453,8849,12072,60302,72140,47764,15658,61077,38952,33703,7408,44395,93319,32040,10441,72929,88417,82050,80902,20442,5359,10952,11522,53883,37705,70477,31278,70528,94094,37085,93989,84311,91426,36094,65340,26427,66280,11634,49315,37840,94472,96282,87984,12725,15434,97606,18625,18062,28583,82311,42954,40097,49349,98442,68525,45229,70075,63663,83186,50248,53568,37864,31235,48805,20497,14556,31709,46946,29434,15194,55858,23521,84201,33763,42623,8663,62519,39837,2123,52506,87644,45927,68450,61037,98104,16780,92050,61025,11338,85426,29498,78041,91042,72413,32734,34242,62350,467,41509,4983,14809,11119,54214,99723,3556,29832,79089,38106,7136,56038,95792,61442,71203,36707,69165,39358,44464,55135,30130,33559,12216,66791,79077,63083,42729,7566,85147,92228,85840,32843,94803,48704,10436,15933,21444,3298,67631,5788,28736,95768,13424,68874,74135,12879,75156,6220,83527,93429,26705,33148,96535,27672,60027,94278,67091,21518,8368,8284,31636,80845,3688,89513,7062,67869,43167,9065,22318,85470,80483,85709,79330,44177,80351,79749,18533,42231,54785,25708,99662,52558,80420,2807,44714,89581,75630,70808,57821,84547,70717,27750,36374,84255,82814,35983,28348,1496,22048,13472,13888,5840,40239,20843,5300,16078,13371,17946,64606,91847,94807,12293,86558,77769,27867,76869,59268,16177,75225,71115,11040,67471,13218,29929,69984,78975,30741,42767,90143,95242,6188,74627,71396,12435,38148,23990,92040,90006,20492,1806,80626,55398,75330,52269,17914,68186,6439,63348,39710,45946,45394,47029,62507,83335,75792,46253,57704,74548,10583,32071,36135,72854,82855,80663,92289,76166,31700,34577,62289,82574,57294,7997,76427,46982,59663,103,88793,79935,54232,1236,52600,88936,33869,87145,97336,80842,30792,93340,84439,30586,34683,99976,95485,95248,86397,5880,95810,49947,51222,99503,17897,25924,72447,5292,85974,75983,86373,57071,54051,37635,69290,44657,48642,20452,36020,8262,38523,20925,32836,38470,27440,88220,33672,39699,13834,21475,65327,98890,79308,1702,50890,45083,26957,47955,51741,89334,91126,59284,30235,14562,69598,86601,14424,95574,23511,77485,10136,11521,47060,62955,36985,36483,93509,27539,33857,99274,76184,56950,83029,75148,55632,76695,46804,59247,87168,9099,95876,1355,64036,50331,70359,87862,63641,61582,90830,64417,62892,52711,67538,17970,56661,23045,526,82791,15008,72524,75837,30644,46234,87195,70146,22601,42731,57906,16132,51923,15991,72094,83450,55447,29846,51916,10875,34929,6056,5437,25452,55843,29476,32336,10473,81685,94863,96963,76541,45684,49309,82609,82213,13062,59191,42452,45544,91389,92496,54158,87372,70188,20672,71925,28198,9992,81763,34383,63881,11571,81424,7532,99478,10713,97689,75004,49910,70151,92290,49018,72815,91951,12140,85227,83998,81505,27769,65030,49401,34679,75008,49002,27718,55950,60345,97885,88364,10325,15539,25602,12147,79887,74734,72862,41150,49200,68036,80495,65154,86378,15468,17100,52319,81636,9778,58147,56483,58538,6105,27664,23456,95306,98960,32242,9764,33526,28215,47779,12881,12267,45594,61394,31820,85153,93856,27865,27896,12174,41645,63046,1248,71691,32117,61324,71554,57002,6672,10719,42369,75046,8100,86482,93405,17595,78530,59749,16158,20211,17921,42594,90779,75198,81037,16176,42222,68821,5911,87403,79213,20847,7715,2064,61873,22047,77757,8339,19955,80702,54143,73812,66862,74591,37345,10217,43972,54202,42447,35206,18471,56143,6265,42309,412,27189,90721,99850,17286,84461,98156,1680,52866,38416,71609,46090,35077,26640,9929,96104,38251,54523,5565,44016,19996,88848,33691,12899,74521,77260,59894,4740,19727,55958,63490,80343,81737,95614,4034,62699,38595,87422,74934,77153,99840,67102,54536,21548,42713,58553,95258,91638,71519,50093,87699,55214,77344,61439,15801,23262,38777,19340,50668,36754,43624,11627,10273,61008,35779,93494,48167,83880,31007,87115,92150,37998,26428,25990,46556,68698,79466,52505,70409,22082,79875,74213,79289,85752,90142,37682,36097,17864,3021,40157,88896,20518,36310,63444,32945,11709,19889,62744,20761,3821,51483,36507,81410,64700,12316,94597,16239,30030,21234,22458,70669,33736,12004,45924,25144,30736,41307,8298,7667,54858,39652,66226,4477,26119,74549,57158,84032,57995,76776,82581,79156,87001,83298,88616,30183,62221,6741,78270,65297,16454,44819,27650,82817,40460,19198,9976,31281,28428,1825,71071,69045,26135,84891,36254,7596,75854,69106,32335,17136,63351,24819,54,11135,25927,48468,91709,70429,51886,92708,565,20285,3460,21109,53808,12425,17102,24183,51088,68153,20012,47211,25656,97781,95075,46480,58413,24873,29072,11136,18797,96620,32975,41964,70182,33692,15360,80814,75934,39408,62929,66811,69911,68911,20202,33778,61148,71181,43623,32624,16487,38622,27284,1749,31779,62506,48907,71759,60017,98317,5908,40602,26994,51085,84933,3189,63940,88425,39375,46759,68569,56149,28150,47467,33723,78868,9690,58155,20971,85934,48234,71588,97767,33950,59553,30879,71427,23706,50489,32862,58680,57126,81775,3987,2709,19666,86173,58398,57604,82259,70137,2521,32634,93978,59530,42533,4039,65253,56603,31728,98168,53870,46883,10443,52252,21895,21690,663,5463,47152,69266,46053,25524,12630,70622,62018,96346,40226,88540,85685,90031,42390,42712,99252,30166,5456,6832,99947,13776,13801,44239,88458,91171,85456,33146,5735,43236,51678,45647,78175,8930,31838,43425,95143,8722,41751,64742,39912,27233,35946,34795,36127,8803,53498,68307,41613,10185,16785,21089,82211,48664,21278,37363,95966,42943,52136,38434,54716,3580,57971,97378,72985,63454,80163,29307,87742,62729,38264,97813,76530,83630,96165,13108,46130,26083,85762,51380,50803,99534,51761,49871,98872,92585,24979,91107,16937,29249,37903,56767,84819,75353,50081,60503,49013,77281,97390,27981,36143,35713,51131,50447,27329,6863,93416,65034,19031,21876,50540,23830,6950,5702,86523,66891,81502,62732,71408,80641,10994,377,87348,10829,50126,89314,60584,74531,4275,26804,21232,50612,13292,17185,998,80679,14597,38867,48138,12832,76836,63850,11034,14263,18398,14132,30490,88584,45280,62501,33712,47216,59033,23528,75458,53479,56814,50885,61827,66758,97459,51671,41005,9747,33113,47830,10020,65356,99638,9567,31261,84904,2769,21170,6584,67278,43510,31289,33753,13910,1452,97228,6492,35080,9541,34522,18018,8968,57530,99670,52768,68753,22123,45032,45138,70303,74258,86320,17563,21207,24323,78828,92535,192,11712,82082,59880,16855,53988,4481,42726,33283,12953,33170,89806,20758,16191,99352,95993,99384,98151,39890,99789,54885,31174,65702,70139,86135,65748,12065,15267,62490,87411,53653,82895,41159,88824,31638,41519,63733,36153,73986,92643,14231,57371,15495,63114,70435,8000,10141,87106,89059,96050,50710,88821,14152,79534,44843,73507,28185,30098,28732,86331,4819,92512,62291,84490,33765,68197,41177,92695,72851,87435,77128,48084,77498,10045,50648,49242,57608,43206,92847,39967,21190,40350,3830,30711,3340,75315,3901,37714,79662,83774,5014,84202,55528,17703,32469,13196,21008,78596,59408,34367,10169,42396,31607,98893,96004,230,55909,52172,26266,4697,70154,15978,35268,34443,16272,91470,29401,54301,6058,91708,13390,74867,10,87720,10869,69379,74173,84989,90661,45907,39636,50345,79207,13928,64849,50739,68604,76738,12312,70932,15125,70037,4617,73427,86551,917,76823,39823,20097,29348,24447,52621,4543,85577,31086,40869,26357,9819,92321,64649,38099,62102,80083,45880,48709,79741,18636,46259,46785,81093,16194,62697,98346,361,95083,56459,51726,93461,89375,96525,95154,86584,10495,64204,36210,82874,53776,26709,75012,20420,79782,23300,22501,35360,71095,18846,67729,46815,88510,26815,24691,18714,28157,20800,27598,45722,64239,70415,92890,11543,90459,33110,50239,8138,40426,17022,63450,91906,47023,67734,92400,7563,59100,55163,24879,15817,74444,31384,20715,52144,43301,18339,71225,52426,81589,93414,21947,11805,54595,14795,87275,51395,97621,40182,97612,6068,79558,99472,11157,14519,12240,52024,18861,5750,19505,60950,59032,84187,64256,60816,2008,63476,93141,8644,55936,37117,154,95893,53783,75767,20897,50597,77539,57054,62556,84961,5789,70260,9795,41214,60751,14225,69031,94514,24474,81406,78014,54574,75144,49497,49608,65351,26729,75759,7477,63501,18687,19,86956,58333,23985,69619,44165,69745,55968,45664,44867,71979,12269,17138,24252,82825,59536,10518,49922,22021,15726,71699,77489,73713,93024,69652,61232,81848,785,79004,58233,11326,40089,18840,95325,5318,25018,56290,16944,73075,54429,14624,4379,19753,89073,63079,12992,38534,62035,34890,89005,76099,1057,93952,11192,99365,63369,44699,34341,53200,75478,61801,40552,59086,84821,99066,64986,6499,70750,6385,65020,55192,77545,49305,98344,41037,83753,97648,20866,64590,23120,52476,17483,1868,14237,97099,73097,22331,50724,18705,69407,88081,97123,70398,62161,85951,93497,14957,90264,44589,90145,3941,25741,14343,99884,96915,77677,4299,49259,67762,47471,58904,59779,15630,93054,95002,26704,46125,40817,88395,34433,55092,77499,90954,37288,82652,32557,10806,49932,19831,80368,76092,20898,31745,55454,83692,48617,98678,314,45560,97205,68666,38126,45267,45057,80835,94613,87075,5659,91272,93129,77453,16025,87820,37279,51580,75799,80127,3247,65968,36424,11923,86747,58993,34427,50106,73317,19759,14946,42281,99721,22868,46012,50401,74367,53715,2845,82321,2509,65745,51871,40685,68343,22994,98030,45971,75354,51434,37836,34229,63131,75243,8555,19329,4920,57007,24580,18208,2835,42509,17616,2209,82960,6065,47095,51020,97761,81407,34445,6696,51926,46200,46472,7471,2146,29158,39962,5601,43046,97797,14314,2379,36898,32659,7415,99704,19952,21086,77172,45808,1436,66750,12701,32657,90413,72951,26940,80492,86613,37988,26348,96899,27677,69020,32033,22510,67141,92141,99869,77948,12834,92267,34699,92199,31470,56030,11507,97952,79575,70353,17215,88377,69105,63879,17234,91265,43557,24579,16926,75433,79826,58021,69740,32664,83218,54149,32282,1862,25042,89511,45865,55766,22731,12516,20636,2177,10644,91233,54915,96581,86052,87958,37775,48491,8484,57360,9436,42793,16631,66670,82840,63534,54925,53628,2302,29099,63182,97249,35143,18099,13991,5915,88326,80881,55982,15435,13199,1678,31600,66822,14846,647,46611,84075,58962,71946,66681,45605,29367,26865,36790,82180,99929,81676,53431,78476,83589,25107,50041,61993,4923,83746,93635,27759,19098,29203,99758,58813,27977,11629,27390,97749,9470,96313,83357,46380,22113,54359,80798,70619,16293,18207,58057,18283,34542,36855,52993,43119,90313,49292,92272,32017,98208,85617,65850,2563,95673,82979,5544,62637,34047,15213,55406,65605,3572,55145,84435,94688,5509,41743,85430,24165,44662,7926,75622,79171,33646,50010,26997,44448,23979,31687,54823,66192,58416,38433,16994,18858,89139,30767,15795,77804,99227,1900,29192,94654,9961,4390,37757,96084,55449,61309,18748,89199,10664,74605,87648,91392,68552,92639,19353,74061,54069,5063,94260,64121,75893,88975,17279,84570,85291,63503,83892,55465,42377,89588,62756,85924,5822,81297,3796,91207,54189,56240,13240,84357,6542,35236,6559,35928,79473,62344,32295,24715,56784,57927,32525,51945,73627,20093,46298,17727,135,63437,36286,40919,91407,18297,72650,15068,87383,41990,82133,66104,46063,3774,3227,85552,94315,43708,7673,68274,47644,48564,5280,6776,18912,73490,18834,39955,45950,29975,14116,23053,66165,17045,42103,71622,13534,69003,59014,8200,93525,49519,73775,14476,35819,54224,91642,19837,91599,14341,11601,30073,74327,16046,98303,85471,80147,34444,8901,52555,66202,34234,63036,77986,69973,83021,86348,28367,86390,2065,63324,63224,79258,74277,16586,7413,41226,63362,71074,86062,76320,54351,12887,16219,5647,86690,45975,75736,98248,74198,86792,36705,97303,31249,60884,99445,82061,30179,20467,59342,28093,41956,42580,9335,83038,7154,66639,38338,48839,51193,65124,28360,47696,72856,80465,80262,16542,96292,73921,65261,54073,92482,23602,42193,74735,73819,9882,31350,89387,31056,53367,30581,40579,75201,6299,88730,72644,21279,12972,79274,55440,27470,82165,64695,86848,53368,1940,44644,66520,29366,23329,70341,56725,54418,48284,13507,11115,86475,21322,11851,1274,59174,7245,80892,29943,25831,54285,10918,61620,37406,23155,60975,362,68004,79684,9318,78188,86614,13034,1210,5891,46207,96990,41491,90837,94614,62933,47800,30403,76557,28520,20823,12781,45061,19372,58893,39560,7767,22301,30478,14316,19907,99220,76149,38291,78419,78425,56373,57765,68961,51159,28110,63019,85985,64176,16255,25306,75355,74361,66261,69218,71832,53977,9851,83932,9226,26616,86711,57679,51299,35146,85044,76368,2655,30575,9466,78163,94710,43889,47454,92353,64749,9431,63063,95830,2585,26565,8473,1512,49792,9916,21560,81428,3656,70007,85608,36896,39013,3381,21340,9841,66690,95012,10156,35691,48754,20994,25982,58769,4779,9218,81699,80241,62078,42347,2418,93448,84721,89968,56033,198,76909,81568,82282,74711,22549,50204,42843,61350,85719,28843,47034,46465,56147,34153,58989,14961,4456,4070,79517,39239,66341,2084,47670,4176,81989,90545,63256,5944,58252,46356,63345,64399,95686,96424,58882,90917,63634,69630,98806,40141,19472,92218,70068,56425,68264,13833,28325,90448,25588,98060,27737,52728,76190,33883,204,88205,43728,54052,20865,71397,95858,95699,40142,33630,65566,21551,24680,42538,49716,78383,13194,63737,87724,96298,50353,81050,54899,90572,96958,61015,15372,84064,74146,59102,82739,22280,18224,91437,4016,68933,46991,16524,85655,6073,18770,44444,19564,9243,35559,63226,8343,64597,34734,49247,25072,17223,71996,25860,59223,13053,9694,31997,75174,49544,24793,51670,38232,72110,23411,35382,28936,4444,44402,38425,49080,98437,4452,53193,52336,19024,19541,72272,591,97516,32672,28038,27475,48986,74434,97836,76895,75202,22692,6814,97387,23756,31613,40422,93708,47742,80423,53191,77363,28214,74918,8844,22691,69886,4502,75850,39464,96288,7090,90726,32573,93557,23476,36694,80455,10793,64973,97995,76951,42700,85200,45159,71072,39117,80784,12389,65319,27055,78644,81095,92416,93096,22916,88519,62520,53010,79521,3427,85407,55485,70532,42412,35687,94484,68,50903,60606,13625,63889,34394,78575,83886,79459,15922,23533,86774,11233,5671,11140,80137,13055,33450,72516,78920,55883,1303,25981,54738,25455,38765,83632,4111,73482,53690,49330,90266,69633,50844,42960,86091,8117,974,67350,62147,77479,97861,84860,1722,49731,2498,20188,38095,97040,56185,12801,55537,35027,2556,99873,94162,88810,58687,18160,90974,29995,86945,68037,14734,5967,59171,88339,84802,32078,97167,26857,29999,46698,21833,32938,72253,51367,1743,93731,57410,60933,64424,73111,17935,46777,58396,37531,22224,64984,8,87565,70773,92866,17397,90050,95514,40628,97768,30547,34334,98523,62959,44575,5153,61,41517,27484,73245,42500,3144,38647,11218,71823,24600,75531,87010,30077,43551,89267,56443,57700,46810,29357,77909,34185,84062,97646,32036,65060,78293,9078,58539,84468,89072,46593,68854,71540,56107,65699,56641,36817,77307,58709,12500,89819,73604,34751,18887,53040,24389,60400,99955,34997,18843,96420,34712,29422,906,6615,56956,14223,10462,77456,84223,54274,91813,43126,4570,65856,80500,47971,34384,10542,47199,86323,5578,95611,86164,27383,15994,74771,76687,60021,32153,71867,53034,52647,88870,99340,59800,51441,20563,11324,43657,29256,57327,90107,26909,20579,45345,12395,23039,17243,15850,27862,86193,47079,78934,83708,10531,91699,40912,37404,6472,4257,73729,88893,62633,48740,58667,31573,4971,58387,99175,57529,17993,74225,60427,42137,88478,1917,17035,68506,94159,94511,76124,81861,6928,8789,59462,80716,49821,34869,34281,6525,98842,42086,8507,90343,13913,18870,27160,75591,43931,83434,33554,17255,26879,53244,74797,42936,64551,29327,84893,63809,70049,33494,5059,88208,42924,53661,61391,82403,15093,96736,27855,71403,54116,85429,66663,38314,98626,98540,67245,9706,60814,46059,13937,57139,92086,6113,2410,8665,27988,51534,11539,24464,47624,83715,56212,39456,74810,96469,61036,9341,8108,52454,67047,62900,47496,79632,70550,41881,4248,85399,7145,65961,19970,64393,81730,79769,51518,63570,21875,21356,22589,52569,27765,30597,24081,16368,36144,39732,31421,42748,1571,12852,64928,86535,24427,86553,1135,40265,36008,45937,62592,18332,72834,5050,19378,31348,89530,85300,17039,31096,52974,71851,96159,94193,77668,32128,16053,73585,54079,79579,45460,12056,59220,82396,99251,6361,28905,59275,31353,59492,24441,680,35127,78333,47841,16883,87058,71733,8516,99409,81959,50819,80122,29731,68761,13413,69559,80975,84899,56235,11015,14933,27054,99764,21519,17493,56762,88316,99612,66213,44382,73565,74455,16841,6514,2342,79884,96192,87391,87863,77235,31589,56882,59495,4903,253,29796,14156,88664,48639,65629,98003,16059,68871,18751,25101,27545,59186,53042,83134,8427,71927,89060,16038,56720,6754,9614,6025,74587,65722,8143,68510,40319,99314,57219,79821,15908,9834,98758,50263,81205,75744,3695,76568,98085,84685,12894,27912,71812,98665,20849,31763,84565,44422,62466,54108,5466,54485,96862,23869,263,99966,38078,86401,4744,26645,83801,49400,68252,59852,30830,32642,25188,48458,79424,55458,38875,9983,65627,21670,337,7434,69563,99659,88407,10522,96366,61932,63522,69082,1511,82109,51302,74403,50098,53747,52655,73325,82085,7758,53307,45987,95918,72617,70554,37589,1060,11050,88025,41370,22622,94919,35060,7647,99235,47017,13273,83297,12829,49961,77573,16187,38216,90958,90893,90678,60102,15338,75659,39836,69564,50857,21788,97745,30950,81150,18396,49895,97185,60648,22172,42805,51348,11155,1223,15610,58128,35993,40789,44623,56699,57783,72884,62006,56061,41221,98923,69918,1441,8372,69118,52509,41769,39946,17365,42920,90947,37258,98793,86685,82068,19100,61032,44196,42832,3253,27508,86933,76762,49430,15489,9966,83305,66660,55104,16299,85051,72324,19787,33041,54650,84281,26629,499,83274,40021,48258,18589,41740,16853,17963,37086,68496,30766,23851,13864,26684,32523,88976,49784,12805,26496,57258,5522,86952,87390,54288,7984,43010,36543,45169,50698,52497,41344,11592,53512,40888,71267,42069,72574,21609,34477,8610,31291,85726,22420,7461,568,82204,98571,99474,27454,96333,48131,15532,92838,23973,26085,42484,81625,46359,36006,71877,17694,32068,20260,78373,59287,99260,27837,15804,38871,88703,39669,64968,3226,31990,77215,7595,51696,41291,82239,43290,12474,37879,74435,2972,52594,39594,84380,81650,18478,18490,55786,83124,81143,44881,57092,82095,18647,24516,34594,18616,73938,36784,73511,46111,16898,69869,59837,99874,44432,98246,64747,42304,20080,59780,26985,22649,61740,2055,58750,72594,77353,12610,54816,18798,45704,597,51495,35097,98999,2066,35317,64527,18569,26755,4747,43265,22940,91062,99007,82610,39791,87420,92702,39231,22098,31537,17531,14779,43443,96640,64685,25872,16646,29749,59080,13652,78321,56259,40253,22802,38279,80698,59305,36252,34373,97312,55117,58702,96102,41995,57990,23368,11211,60135,90702,42696,67751,61607,54614,91649,31425,93176,15011,95957,66878,44315,60696,52029,48094,58881,25783,89644,82889,47637,9093,52376,24768,58212,70179,54641,14444,67129,60661,66679,36236,36940,75294,22517,71975,58311,23245,6654,8124,21255,2593,87147,85815,7808,49567,12965,76967,58826,88526,54539,32089,83802,225,87104,60870,26352,96314,62767,19626,63287,65948,4718,97580,39383,56854,95575,69770,27535,81045,69975,4491,26670,78691,34062,11139,1300,93294,86929,63567,53714,80633,50914,54168,94812,90256,62484,85112,50065,46806,39693,5553,11056,12576,67894,44280,13018,2437,10600,13768,7608,94990,16615,83731,27494,20028,97596,82069,63668,16880,30510,97126,69446,3236,434,29100,60002,54698,68920,11440,13523,29179,46952,82218,36395,60992,38038,69872,42189,60497,45201,7286,67031,9546,17680,5396,19807,99337,33913,20493,87172,67220,85730,91045,53365,16294,34102,61040,38259,45893,30628,50701,71944,58471,48465,36618,88764,85684,5082,11038,49052,50169,64267,2455,66806,21533,5628,8958,78517,45824,58004,22493,22653,97579,12253,1809,86014,3375,49578,99136,15926,76271,26540,50515,31028,10796,3654,35351,66470,77200,14423,73502,17376,22707,59266,24476,48151,39896,46080,63485,27296,65755,22500,77069,82297,91660,90952,82546,7700,77765,70048,41016,85306,19590,29847,30083,24061,96892,45448,50541,44779,15741,19629,4132,11514,99331,9759,97063,37308,14257,12966,88906,90878,30108,44718,14261,27282,77527,50960,96265,19729,38062,40,13637,92948,64614,4662,87802,82378,98658,44188,28358,31961,85123,99812,40474,7545,82982,40477,12919,11019,51453,40820,8477,73959,77061,29508,98709,24279,20167,64879,2406,13609,93499,64032,60526,38606,18700,22410,57433,55105,6328,46434,13464,42090,29245,28188,62417,86677,33374,9446,96035,34968,89410,61107,32278,14113,70795,95050,87449,36295,62689,84952,39786,86499,83120,51817,2557,90635,81672,56614,41376,83732,856,69979,5902,28955,9870,43820,71133,96993,57838,72055,14431,70916,96974,15184,60531,75793,17436,78033,77414,48145,14018,58788,82301,88138,82810,11771,68495,75325,25830,72050,8780,6326,1070,64364,49568,47059,10514,3053,51320,43416,31009,84347,85108,6658,98646,987,88880,95688,76430,131,27992,30184,79862,51062,72764,91396,62809,9817,91099,732,80919,32189,86236,88953,82472,77637,9781,43170,54847,78825,5561,6394,74445,25064,92500,67864,54139,27797,61750,25377,70641,74289,54548,41773,52413,44084,49513,41552,56229,48749,44450,98717,6401,39559,89853,53778,4052,2794,96555,11749,8055,86653,82561,59444,18017,93251,3833,61603,41057,36596,65986,56954,88704,87741,89249,94117,33673,7637,7464,23918,44653,56060,93021,1583,44064,24576,74414,66314,40282,69643,69177,42818,24672,12999,9385,7379,23959,86755,33597,62015,42357,85162,74579,69763,94985,58612,32751,37465,80130,63291,46613,54712,30739,17446,80694,47043,68391,4604,89151,10386,21544,78841,8504,92799,14852,42425,83432,51336,34661,4614,77249,49841,36560,98813,49860,63519,62469,52205,39198,67342,35396,8137,53221,35180,34211,38253,62141,9564,39785,29473,74448,81393,6664,92032,88266,91281,31489,33806,38927,19251,96557,20074,52897,46332,39333,99221,11450,71589,97849,31500,69125,36151,40564,89578,59615,30070,43278,82655,9663,10619,81255,87211,53464,1796,90673,79591,2206,9135,68651,45625,28566,58602,69079,52237,37297,6189,93786,81054,42888,25096,34298,27335,70993,81802,58846,86083,68171,4164,61799,33435,48883,22645,15729,14833,25054,36748,1691,66022,811,43666,48457,35389,45287,56579,76197,94074,16768,34464,43862,91020,63288,20537,47304,16192,2621,59862,36161,22577,73951,66398,65339,11531,53314,79650,37517,98348,46822,71959,99035,54824,92957,84350,90558,5183,95590,95754,84328,53825,32799,12758,71436,45598,15577,42121,26292,2043,3650,73202,52570,20551,20525,90885,78673,84478,26668,27857,29028,47640,77853,8584,41899,90568,39868,81747,85006,26193,34447,40057,68981,3731,36102,4372,22241,35647,95254,40009,10095,60722,27064,7618,52571,97069,75117,57944,49236,81859,62881,73821,73204,67295,36506,3628,46974,8593,86803,66466,22012,25365,9705,10480,51525,54984,26099,31928,45801,99278,94713,590,61675,38073,97857,17861,30143,42754,32263,49329,25706,451,23143,98222,71769,80949,76444,80639,80401,14048,89691,39513,22242,63104,87639,8369,6680,90407,65216,65150,67609,6102,26989,21679,74286,75932,76816,82232,58762,47036,17067,91226,75474,95376,63298,58292,42550,1089,80726,7061,90211,91711,87252,43420,9265,16952,81490,62048,5414,92491,75543,19045,32504,50655,89440,76930,51782,33556,63713,50636,72931,97001,68444,26177,12355,17699,87208,43742,96439,99489,72134,42148,71886,39658,49974,46715,48812,33568,66807,64881,85378,94200,61377,67338,2303,33094,15773,85489,57506,9204,42972,45699,63433,72452,21984,90541,39689,45314,49886,31935,79834,13708,46188,8933,31829,11240,11886,90653,21900,40849,7444,98074,27986,71992,73061,31475,30684,16566,20262,95138,76268,39255,57753,14522,11703,29730,58013,56732,46039,70991,69232,63289,30664,7840,75346,26074,55954,67702,53530,61456,77536,53908,3110,80583,72562,90009,62846,33017,55067,82834,28785,79011,96130,75226,57766,20755,96049,19677,36522,78245,2104,21309,4695,40704,45930,15697,8847,12950,32318,30287,32487,9039,15111,75062,64549,522,69163,76996,88812,94929,54907,84768,61604,2752,90367,16163,25301,61882,47889,48399,70931,59417,83016,55301,9782,22978,31019,69355,53486,82637,51679,81572,47596,10025,6341,67138,86776,76584,4585,74349,18071,55617,40859,25085,56714,1240,22957,9164,85504,35787,39157,57155,29959,13042,18213,29639,57934,36069,89738,17519,63248,73255,20116,10492,77365,3573,79636,13800,62378,17366,71091,78166,90150,86555,28261,69701,58324,68239,47573,26388,73848,75007,6742,51831,45701,94649,63271,77384,11563,62370,84050,90521,45167,5526,34701,58580,89248,92903,80099,48828,86547,26698,84778,42335,53529,11347,80167,9358,36031,31146,83593,97406,89156,45045,88176,41273,13340,40841,61618,25381,20808,35209,26390,84554,43452,47916,30920,79536,11883,16725,85630,92004,88835,63520,62832,68230,17418,69627,44161,42591,36539,93760,29119,14043,87439,13611,16511,4018,69358,85794,31054,88003,90621,12875,7513,70982,63290,62996,22843,71776,51606,83868,83800,80866,7565,17940,13035,13106,33361,11002,44286,4033,42465,24733,84452,10247,24770,57147,91602,9407,98201,521,95601,25059,44929,13615,37339,1172,61859,883,50014,8499,17306,50235,19574,43509,57874,61934,93249,74695,81609,96471,18123,19052,22031,11711,99949,55420,46869,79416,2129,17170,22054,62210,97709,43108,4171,64360,23033,72917,13124,68420,27142,36199,75370,63484,83373,66774,34722,97124,7066,99731,52242,68573,59968,47987,93870,62225,9095,36987,8096,60109,92906,93137,27706,39542,90164,6201,97017,71304,1029,19265,24518,76054,28471,73350,26212,68321,35305,69663,16517,65480,22426,85884,84362,54425,34994,69849,28270,62199,50645,5585,77686,68125,19478,33300,4793,46211,4408,28033,78656,39527,53496,47033,85595,73681,17458,18932,72306,92432,79600,75031,74908,23394,19269,40311,53083,48571,62371,70036,78677,81323,94894,3703,63643,34251,5140,2317,38046,94500,59453,1765,50842,72497,65832,97994,7999,33620,38069,83726,34385,97443,21908,45085,49062,50358,48253,19775,15463,89276,66883,3640,90463,20128,35448,5354,15001,13725,2147,33948,75215,97343,63637,56989,52293,7593,15534,96405,53344,35759,53669,37076,98453,9612,55983,30809,13457,26745,67205,85028,52724,9419,95225,21133,68400,94922,41583,51570,96699,36524,46365,78703,44604,26536,71883,82493,9393,80087,53129,7312,83425,26090,64432,37719,26128,12634,39021,93834,20351,13926,33604,81404,93082,85021,1891,41382,4475,27182,15909,15669,89304,72416,17116,32396,75099,90320,66745,90705,11028,3211,18667,10220,75120,67046,61566,58330,60253,84614,79938,5543,82046,9350,1784,52683,75584,27825,99468,31712,7913,54918,90769,16710,62487,6685,54098,29302,27161,88988,71718,49426,81224,2797,8189,47410,32941,27929,61862,46466,4098,49224,93814,80619,15186,63397,70444,57475,19491,31129,90587,30269,76056,69430,84467,25082,3689,22046,7285,62534,50136,21430,65190,36400,44730,71732,73312,73894,3906,51566,77842,85602,89688,49484,497,62538,51733,81387,6900,41421,22515,1637,91943,68428,98878,19116,61019,99401,1536,77432,76466,79126,14278,15059,21772,71207,94793,62395,62684,832,18087,50452,18235,369,97841,51072,45525,65275,35219,87454,36108,67786,28991,19589,82224,62691,5720,55907,59818,69629,92723,33731,51466,59930,766,50736,69200,45472,29278,62586,19860,34794,30529,35640,16300,7013,20232,24670,22513,1757,79168,21637,15169,49673,65658,54068,84454,75381,76270,83254,21097,12886,85916,66367,87061,80649,55231,7883,3636,88489,74489,38033,23434,29746,99502,42407,23591,29375,52955,4334,73741,25775,93317,23267,32521,41073,19542,47193,4723,17830,72926,87704,32625,62984,529,55175,82026,33191,30256,22328,94780,39337,63536,58755,36750,79182,74809,6935,22226,30723,4634,91505,97429,99776,44528,95227,94505,8759,96600,87409,18630,95064,38511,98335,84175,47984,33530,81602,2247,30313,94467,33565,39939,90193,93976,70627,37911,71440,52619,11762,46628,69591,15935,39871,58010,77586,39664,88715,96743,6631,33485,63828,91068,83530,52432,33503,37027,57540,50595,2305,92117,78947,87492,47528,68459,84054,71308,94816,84968,88904,35200,15732,11746,55287,16783,43150,88710,41004,85660,78959,15100,60010,3467,31399,88820,64545,83478,27100,20732,30192,32684,46467,19659,23608,91075,75511,8848,14233,56982,32834,14786,780,79923,20200,67583,77888,97867,2698,66307,8726,38177,40508,60727,46314,22714,99289,65929,31545,94362,52095,11605,32558,75231,95711,64353,93385,36961,14403,51191,78686,11657,80247,63794,68951,37046,29410,21946,28769,43716,22169,73922,40405,26877,92463,34844,41888,42664,68810,4936,42080,20310,17061,49098,56640,22032,82271,4063,82819,32966,20617,17161,25293,92939,42021,94799,32748,60015,64051,40693,56261,71988,83175,25269,43655,43199,56135,49979,79831,34109,79013,22861,97214,99928,11286,14068,69388,80278,25590,7736,61059,33161,81628,65208,94243,27796,18333,79480,20669,19405,16658,82872,21511,35668,22427,74677,46310,44374,68852,35020,29712,95271,86458,20795,70749,20315,96105,35605,39637,89865,88735,37146,59851,8813,88862,41641,829,57298,15547,24435,51775,85607,78842,16623,67559,30829,17283,87896,12071,24753,58130,9280,28434,72673,52385,158,31959,14086,16460,80115,14434,48496,54472,39697,83931,28615,50398,30356,96973,92818,4898,60556,67301,70686,67219,75623,78976,54020,24848,43421,49695,43940,33426,58747,37912,40664,39691,40434,53251,65656,50644,6148,58771,63750,13951,3741,30289,40243,42644,15028,10446,9536,71007,71669,98102,28559,72011,51246,58552,90770,51309,35371,96116,58590,80216,80987,63860,67317,95442,57403,94175,73476,9587,60651,721,72337,46945,33319,47874,18414,60785,46665,19510,82582,23206,70738,55708,94519,35096,88982,56549,28826,55438,28543,1120,78038,60922,5958,54433,72885,62443,47594,79716,24885,91438,24570,10284,16881,86836,82359,62135,27878,51000,29018,71455,37965,14089,81498,90495,52281,32218,78702,33023,54259,11922,68851,54703,47777,38197,82210,21970,4320,94626,78088,24187,32182,16061,25480,44795,91553,41427,2067,71196,73228,28874,72353,40518,67884,30438,36071,43431,51809,91368,66186,59410,78745,79969,78884,92410,24601,14342,52611,88200,31411,37632,65584,30278,88076,382,43211,63644,38363,93014,15749,41627,17499,77906,32686,45778,21941,41611,53153,72193,70317,58455,73728,81673,31247,8021,15570,76267,96766,58622,8133,77741,75164,8988,49175,50424,51641,11628,7540,80125,93035,94805,81069,22924,42479,24688,53855,48565,37340,69476,4140,77591,28983,54386,27270,75936,61435,51410,8424,82616,40880,15892,53891,7302,67961,32332,63216,29038,46057,80287,39298,67699,63500,61612,58745,54275,44979,4506,45811,45373,19961,77505,81261,80590,29909,86293,56267,28384,15894,78932,18954,95599,39425,45505,19927,4683,75456,2459,38570,80654,52996,9440,65199,56113,98757,32702,46118,30134,22194,88327,12762,46827,75496,79949,91665,46388,88830,1182,4431,95629,56537,72016,90538,2707,33551,47051,16870,7430,48943,94178,42056,54705,46056,13788,18707,84275,14738,40113,144,15999,39316,43895,71533,7915,64618,97798,57818,87423,81899,98747,83271,11785,13793,35549,71270,37533,74554,95506,23102,95035,1307,55543,5800,39802,15844,80970,91319,98623,25521,23349,79657,46468,38532,8478,92740,55989,92137,67230,49633,67654,98930,33196,78609,21932,1675,23145,30228,44976,78083,39225,97973,7908,38326,54225,32910,42562,64118,8708,49342,88874,54670,55044,15686,78479,63072,21701,86618,61899,35238,62190,65161,71916,52443,33006,11637,4976,52414,4105,37653,17715,36011,54877,68633,68390,46235,46425,4117,27278,72512,89860,51788,43258,44192,14701,60999,65429,96576,56429,96341,75368,11617,87603,17427,70242,78405,31963,29650,22815,21181,39434,6636,48768,23360,10839,1724,93180,90604,86108,67906,88772,52103,66505,86944,8456,62627,42000,70393,9665,83792,90833,40727,78183,39587,80477,38347,57363,37581,79905,50856,91222,95038,10468,8654,83718,92437,41351,93399,6520,62489,72706,53416,48309,81178,93338,184,6703,91571,75228,58980,53021,22057,74363,72064,65185,8316,46929,42870,64952,55315,11114,40594,99143,1301,8126,2737,45694,27476,17073,85887,55926,98217,31349,67458,95672,52342,91869,60545,22968,6954,70489,65788,35805,25360,88864,91002,45002,30067,65322,15629,22441,44859,34611,98444,57450,71839,51958,80092,26643,23294,44687,55313,28985,81764,91750,98050,59512,70450,45718,85765,54276,77809,63964,56458,65514,63253,80490,60223,89560,78566,67420,89928,50564,79134,83174,95152,55215,49822,78366,44458,31,20547,32361,13054,16491,6082,82545,30456,56584,49699,62385,61545,51427,60572,26895,29620,75271,50779,28046,31549,31448,27940,99030,99084,50176,63084,81452,44952,27510,67874,23584,14992,33356,89761,5322,91933,2540,70495,80269,14387,83385,98345,77044,69252,96291,92698,44085,33610,21178,22698,23734,18551,76744,79904,22687,81175,17181,34168,29034,79520,11671,58456,75236,54822,11222,69873,37364,15668,1594,63598,32147,77511,36986,52130,27273,37479,68169,36778,22715,62664,9626,47869,79946,58666,39612,68919,24477,58457,34116,75066,36408,71209,50402,12344,50339,67673,64856,18355,21103,57712,88256,51588,51393,68517,87653,4623,1877,46204,9808,13797,33866,58827,3537,27848,98612,86093,70203,25499,73597,14032,38333,58407,92279,8331,58550,64478,60398,88198,26293,54724,98260,41768,2704,44414,8476,30791,4838,27428,19628,43037,91011,75110,63923,76080,42994,33323,45468,84567,31599,83926,66260,88859,80220,33014,92917,98447,42951,98150,84511,100,87367,47381,41466,17805,95714,94114,60342,31580,31954,87473,8783,7233,24808,90449,51511,92795,39288,98084,29661,7053,43775,88047,84500,61755,29542,39645,43082,68454,48552,79881,9890,92000,79667,25659,18994,97731,570,8060,87166,14741,45583,74425,2558,97005,4483,62413,99372,46313,27871,75111,62,84600,40108,8615,30793,62086,34299,42978,53202,5195,82226,25328,20286,78063,35721,14338,33055,39059,45917,22899,82847,97244,66254,87023,24182,28057,20466,88542,12492,78588,99305,17503,47425,55026,26843,49106,290,96888,90124,99767,94339,10089,76379,88091,37841,41192,58215,10727,85022,25615,69339,62022,12199,70676,925,65121,66613,33741,4428,71406,98044,83243,51084,55241,10478,63333,58637,53183,64788,73599,38273,91956,27122,86883,63651,12872,96007,21990,33549,67607,24239,69983,66157,86111,54936,6344,99055,85969,6813,15645,83991,21943,19700,8420,66110,78184,18874,93940,98297,9932,15807,92938,67515,90042,37462,66021,2176,24798,91971,60561,12132,60013,9200,77970,15330,10470,84292,12792,21225,79972,11799,57534,43135,55675,24840,86761,42314,12195,33783,20790,78387,87785,54096,41674,76593,55339,4224,13653,14994,49845,58342,27377,33268,69120,21453,19661,35455,40777,94126,6366,32644,24410,66887,38808,4115,50673,63656,94620,36269,22474,32900,47334,23124,48414,74388,98204,91752,18556,8680,10267,34403,92284,96114,8419,21142,17862,96389,58731,81708,39731,28628,98327,76032,31506,86724,73410,56683,52754,4460,16873,25393,28487,4113,3520,28915,23857,5651,98396,59929,26740,90098,60562,20996,20894,46569,35163,26011,18328,7790,87587,58710,70746,7215,7355,98402,29127,51963,79218,67807,39974,90638,73047,92572,24483,1073,18132,58058,29906,94470,11428,87883,49103,24549,86209,6140,6930,30121,80670,64806,59226,17745,78316,72251,17349,5281,10942,2141,30080,63073,39161,84260,7626,49690,69611,64579,42397,29279,57178,66224,47025,22619,68301,67943,1810,11861,71353,46371,94264,71011,64554,32849,37765,47261,42305,74995,73949,87731,71179,53057,47878,98114,32757,480,86878,76170,26317,7097,31841,32786,61060,1045,879,36952,36376,41463,49115,35682,72519,49327,96642,6057,30197,40913,73873,64535,25476,86046,67059,63626,2675,48139,79677,11464,59415,87885,82857,32610,59678,90794,16139,92984,19560,40416,83855,81236,74635,21582,70936,1996,91762,98705,98318,75365,32385,68514,3962,3917,63130,32563,69861,89643,62191,54859,50968,37744,10824,75088,74589,33709,20532,67642,53532,73525,89024,39042,26993,55827,24020,94442,94813,74290,14072,65343,70416,71422,82663,65887,32297,92087,56862,24803,27938,6873,65200,98371,73314,37701,9974,50641,1222,41287,95826,94637,86448,21524,62393,67905,73043,64995,96653,10656,20481,62642,96496,42501,52384,16677,45127,45288,61171,80306,39007,56690,31515,91628,88416,9886,20820,52871,95217,80303,32571,91324,97948,85926,70684,11468,70126,66560,2119,96627,88255,18019,1358,89592,28442,99393,86272,27851,78906,62973,32987,94334,7189,94164,94214,81679,416,90693,5955,11314,13630,25702,5289,71695,15264,19337,78719,69650,89131,22337,66308,65995,11055,89844,19972,10978,91402,3812,96377,38652,74379,81445,34441,81048,25362,9155,43946,34957,93244,2637,2440,44136,62091,92559,23834,92892,90895,34311,40233,17471,17106,91410,66949,68632,31970,16252,23677,82630,94457,50987,61964,39299,5793,13906,48641,44000,66540,35577,75779,27883,16130,89978,63846,67962,54860,15525,62631,33318,88557,32614,50476,4825,65749,6618,51067,71298,9266,54750,79922,72082,64853,98315,51757,68477,20323,62762,49554,63166,28343,67567,21099,97484,82446,16562,88341,22966,84991,82022,88398,81690,6345,98023,48153,64567,6649,16889,98833,52797,90694,43816,80400,60701,50496,33688,46821,18489,18202,10841,49881,51138,8905,84458,15879,58851,56905,7583,11783,74615,38832,32765,88695,11020,72047,56464,63912,98349,89215,44838,85921,59853,83664,72876,67880,28275,85481,97020,25032,60046,84533,65982,72861,92911,75386,28870,99879,5268,67692,83818,35246,21148,85332,22446,19391,80040,45737,46764,37129,67118,34256,84498,28752,48485,58122,72773,61568,70700,5906,91521,51847,89869,37222,64934,32847,15763,16243,74909,19492,75586,69977,56567,52113,17400,33676,68804,92875,65625,16175,43621,26858,52549,33768,93696,44418,95121,26650,46776,19683,92556,55851,23125,5443,4366,24213,37225,35386,85648,10291,39462,72295,96425,45479,95539,85513,31824,7112,60258,67111,16396,67960,77559,5238,61205,66057,88419,56367,64483,36585,27985,14928,69304,97448,69679,15398,36053,50087,63913,20215,44040,23656,2591,19915,30820,71464,85739,77397,57343,43577,40368,29042,21566,92786,37869,42525,49026,59993,24207,59434,24930,66617,74374,18439,28747,71547,15480,92550,57204,42947,22019,17333,88755,72119,48001,46738,93968,31767,20048,17646,74242,91086,56036,68349,16861,94413,33209,62783,32491,30343,93711,14052,93922,19027,23421,61046,57653,86552,13539,14655,22557,26559,49301,79341,44649,68714,23805,39600,47646,13571,53132,45601,37740,93354,86815,52011,15483,43763,85918,73150,4930,384,18649,92344,19221,78394,7833,56430,43319,10720,37696,64821,41404,59359,45506,42743,84941,50629,46940,55634,34914,96970,30765,87961,38850,42742,80191,87669,17266,87977,83439,30703,56807,40072,41794,70191,3894,74269,56355,68975,18792,53283,13250,62577,49271,50922,84203,25498,65871,21971,99413,80562,75869,567,22447,58548,50967,64257,79956,98691,79594,29109,37283,33483,78142,17386,64163,38860,18993,95047,82914,5740,54711,12400,19967,51624,67348,36121,50422,2951,67275,74811,2094,22029,20548,53100,72699,74564,38783,45271,2381,42630,64359,41077,80578,51417,78840,5962,87026,8875,20125,73602,47683,24292,60383,77509,64198,46866,17206,71104,86222,40303,85674,98374,95549,63790,50009,32868,31038,24430,26777,16532,68209,6666,60271,93097,19274,48541,18928,19552,98043,22093,43568,17481,2932,43334,51344,58086,88832,33005,15996,7294,88193,34754,51625,798,16234,94241,44989,79040,9995,25717,7529,27326,33641,25880,46202,56772,30479,92221,49077,1638,95744,80468,57849,95118,86941,67693,49569,94377,69647,32354,89273,12010,25817,55159,622,74619,98803,18812,22684,83351,69928,13972,10613,31241,71218,84133,39707,77693,3972,49091,95353,7195,85744,46201,93869,61259,51258,67913,36576,63094,22464,83184,15760,80809,80179,88401,56231,9027,66293,71009,27522,13606,35417,91799,91910,47453,7183,18313,12208,50391,33826,34263,65589,20852,52229,67011,68937,69458,84111,50546,62946,69225,97395,17489,7644,56266,95913,64604,86215,11138,90179,51738,54057,28138,50498,56238,77377,9008,49700,25495,27976,77075,51083,36936,22076,67203,77907,57554,3745,3238,96929,17754,1886,82012,3548,30516,53853,22765,64906,52817,62375,46128,85710,95450,57265,33903,31684,13648,74962,69139,36029,36230,1865,51182,73973,22437,55085,14212,84346,16674,89098,94765,16134,49489,15803,43497,97430,90879,99849,97563,31227,52716,90024,71087,58484,54529,88277,42719,73278,30424,88287,7192,77462,820,39216,13717,26505,56190,31739,98381,57401,66553,93421,98807,9743,8910,16796,44968,82137,29406,26420,28101,67784,83804,61918,68147,31427,84811,61868,52891,4215,56145,43378,19062,46585,23703,99348,74802,4362,46721,76523,89630,13512,19503,25243,41685,88588,60087,84248,57514,23093,98354,61044,56809,40608,11766,63970,83605,664,25313,25163,41911,47944,32256,37747,42448,65237,10800,7731,5876,76020,27571,36321,7555,12833,8210,60797,7034,88791,67925,68985,61627,50188,90709,15765,36270,46920,53902,67726,18506,29254,74937,26374,21894,42160,36532,87973,48964,12742,44946,16233,51851,71352,89263,95358,53322,68060,51293,91790,83947,51049,47911,81435,4438,60059,75,21272,15029,32034,52435,34855,49648,95690,9949,33567,40607,3401,16731,30825,6276,95839,94042,95991,4640,48802,24220,56415,25505,96515,11940,49207,93217,37243,34050,94622,72966,16004,29632,7445,36828,98642,36661,81340,22833,84783,26620,94716,23355,89833,75200,25840,93365,77843,97987,47934,86594,60312,25691,11081,18532,15019,69837,6273,30233,84832,20094,11449,26397,81671,88847,50722,54690,34723,12716,11710,65267,38510,54156,65505,11609,59391,12053,94743,32770,44916,3475,87253,72910,97897,64285,45497,26790,77859,3945,74292,41304,38057,51609,10807,97823,90418,79446,23554,44157,67154,37564,96793,41247,33810,56001,31188,20550,26522,40629,16882,81446,1564,69326,29913,15343,31396,68030,67400,82008,46206,59687,19429,13879,38093,28809,35825,29425,67189,11365,15868,42967,19724,16554,31588,28744,89568,41723,37068,49227,22986,56082,77616,15888,25437,7562,21509,13697,9666,13461,45494,74621,34942,12385,15373,60449,35274,91409,29361,23831,49387,56514,96612,99371,57536,65790,97368,2767,93824,86674,21193,68366,86927,85104,62916,70326,94330,50522,35649,9511,32662,17235,70617,9054,13569,84336,91537,67040,10331,26953,62895,40528,49620,51914,95587,7660,1270,18189,34319,84875,38937,44170,60638,58436,24245,52524,90252,19740,87007,3709,55383,42153,38183,35560,67344,75224,8738,13139,36375,87635,21651,3644,31343,5521,66118,29214,2798,14331,10768,33986,45296,96869,6279,98127,4152,17671,1396,81727,48240,55940,94675,11825,25387,46620,97786,94263,18463,41702,39842,26531,26176,4733,64195,24674,75735,63233,34208,83347,87125,86483,34330,54037,45882,85264,22923,82063,74681,70831,59123,14667,59151,49246,23007,23531,23168,25507,50367,7873,2816,89438,35002,78408,43059,27542,66131,70678,56505,82794,88490,63507,52162,64611,36368,21100,61688,91315,49388,20605,52436,51956,76855,97672,1986,68090,29733,71621,73746,68150,58458,60947,97629,6852,98991,22430,48446,35536,9332,53644,71083,43642,93638,86858,11185,25694,9553,52117,44934,35261,7196,49475,89883,68426,82688,80586,15793,32697,91115,24403,84569,9144,36631,4303,18344,48840,92070,85099,52510,5150,59578,11728,53016,96824,21395,59349,2321,83492,50709,45054,97697,22735,61992,58671,78443,82499,9563,96489,16736,27906,11768,92690,8442,11781,99925,46590,14416,20479,88332,24844,64307,62671,59128,37444,45626,84398,59983,15066,66559,41170,41447,17014,65746,50713,79470,38846,52158,39676,36180,79092,66137,31047,87232,66781,67873,43886,77785,21476,41081,40515,25631,98370,96121,88107,52254,93918,96774,51933,73893,51438,75734,38825,8361,78766,74571,25140,75084,98324,40658,10549,49406,94569,53760,42321,92891,37816,97681,83920,9967,54114,89655,2560,23801,14092,62602,87809,72591,43291,68723,33846,87072,57916,78475,53419,42620,58510,64044,35135,41862,19072,39243,35227,15106,62925,23134,97863,75692,93837,4806,3642,58403,68435,60431,44135,22379,30593,79088,94811,17438,47790,30066,1282,48295,85898,27610,56535,99455,91514,39835,42560,81125,5990,95959,30115,98992,65101,3392,33816,28822,61576,97729,44094,26619,60460,78700,94534,32886,85385,11885,41144,69684,65911,45128,95240,92320,75276,53543,60334,71548,61560,15103,94660,72201,54014,71283,3033,86914,95684,63361,8635,43944,95892,98692,58951,29614,55709,78839,75655,74193,10081,79885,54962,79375,21761,6984,77319,84729,62677,16136,75652,50497,33332,30746,74109,29247,78280,83639,47602,54483,47218,10834,4096,20386,42854,65031,77459,86412,47265,60695,73609,43490,28939,62576,95626,21459,51597,945,17889,89753,26891,46242,94829,87551,77795,99799,75072,42714,3961,59131,1897,92673,7520,52917,87985,41064,40914,90016,73058,64791,3942,67944,78993,31394,3522,36158,60686,59736,80158,66514,47839,97809,62252,10788,95383,76919,97068,51513,83519,92973,30744,17644,17954,4036,13011,70892,7927,69116,50646,16235,52755,98714,16498,84241,10263,13396,19763,71768,76152,73026,84627,41696,59445,69724,57509,53738,18304,25746,88598,13761,83408,61757,19694,98353,12756,83602,17350,26599,53194,10826,69943,62848,20941,67014,4754,51107,10642,21793,8387,14848,5554,98787,42459,86504,52498,68271,35460,63678,64977,27916,49053,58488,98417,59241,87739,11659,51413,41200,98357,35542,29922,81055,15631,18369,15191,74188,80942,50275,96064,71284,73039,89000,94403,28636,8414,69124,56228,35445,54944,25035,87120,46985,81510,85521,54819,79817,63992,30773,31905,21989,95851,12974,92212,58357,63584,91133,18822,4065,64174,98445,32143,19121,4875,95783,15413,84813,8686,23827,33440,55850,62553,77673,30541,92184,90645,41188,23550,75605,26002,84425,42561,15699,3794,94820,26062,72010,94830,27210,87571,23057,34223,68021,30307,25421,89416,62478,79175,57465,86260,80533,82804,19873,68211,74149,77719,93404,36322,29420,83834,4768,41523,35042,1829,65764,73855,27770,48174,95758,63060,19942,5552,29971,27227,94410,71266,17048,18410,89307,95203,56630,21030,73301,92817,21654,28061,20999,54194,52104,67107,50230,62628,51905,98213,62829,80226,83567,58551,34523,68767,8864,24285,81517,2260,1450,84259,61935,4007,96055,18475,84408,50374,56793,47407,65244,2503,80764,19195,69246,23874,56533,40144,95717,72491,70816,84204,59707,71127,83242,97481,47946,74141,59822,58105,87828,95721,26589,26162,35011,28187,12073,11223,52464,1548,43960,2644,29907,73032,50479,75908,11944,43393,60044,54090,80827,71460,22751,70856,58812,10264,24711,78,71098,58913,31440,71146,32224,51234,31544,51937,86840,1403,71463,52073,2377,14580,94429,41234,76105,13256,70811,81373,2666,22196,3042,49618,15220,39193,15142,47921,58657,58459,53846,72463,90375,89502,15208,33656,31298,51188,17460,4831,88964,21455,83225,38149,50554,98319,4790,59539,5661,3442,289,93751,48852,62561,42890,70577,69168,55795,14312,83246,84844,66274,65402,13668,61669,70963,58976,11534,1893,18990,51172,32544,96909,9926,8035,39766,13404,21982,99315,3009,40198,90170,7070,18060,44710,89179,83512,19154,82263,24734,44854,20972,66716,55479,58388,78189,80720,651,89121,50853,79981,29343,70540,39654,75023,65593,72105,74360,38436,82374,74815,51989,34426,95797,42548,48643,69055,80567,86203,58307,45663,30122,97945,24204,11237,12298,21779,27661,48133,23556,80656,55070,83276,84119,20377,3963,9906,15461,68551,53765,88086,76592,13821,70843,35376,25954,28548,99907,93916,60575,87593,75181,79718,85631,62675,90019,22803,14615,10052,63022,91595,97806,26153,31316,48220,29517,33004,48373,9056,47439,20307,69436,97125,20746,29725,16359,59281,61094,5641,10640,89066,46180,72919,49541,44240,47195,13068,1212,28258,97341,42939,98792,6037,15421,15217,74488,66364,83573,24991,34746,34089,11540,50788,70832,26206,14672,94642,29447,4024,17053,33506,31531,32648,36405,3161,34032,12484,35036,26071,84683,59884,77942,16750,80925,61625,50587,70780,75836,23338,90592,55345,67155,13943,55282,76841,44804,58003,3873,64098,41878,94299,5699,27840,25756,57959,43700,19734,67782,11339,68164,63026,50882,62963,11714,87214,58845,7963,54220,82730,99826,1306,35091,3115,32824,11432,61454,61363,40307,23398,17434,45518,88931,70613,23274,79069,31187,23931,64925,8103,30040,52386,23741,88040,49353,66839,12585,25058,17782,28106,78164,45847,20946,67282,19328,52300,48888,83403,77917,35823,28211,26543,60635,66649,96416,81933,30188,14898,98897,85043,32863,26837,10809,54115,64547,88384,77225,94677,12066,7429,88261,31977,18063,20240,54779,97029,83112,75210,36212,17007,6853,75094,4595,20774,26860,46995,35487,13514,55975,32264,59441,77089,42631,90936,76933,46208,51929,47028,12975,23508,82382,3536,69378,89494,66440,49652,32315,99153,75416,7263,20818,1772,52056,57682,4962,4410,80348,44505,55534,27060,7378,35830,30114,70533,40048,54087,77005,66080,85010,61181,59900,7173,89652,78343,68905,52965,35644,60054,10845,30159,398,99920,73619,20119,42612,58718,52388,84288,63939,95618,25826,11713,75905,97684,86580,66382,43320,27754,13870,26432,81157,25950,17853,40755,58940,3075,27524,92164,4995,54272,47948,64268,15283,70837,62634,60935,65532,66278,35299,25369,8074,52350,39520,4616,83135,76226,39864,98503,97418,65818,11478,42543,89849,20825,28091,7703,64255,323,98493,87733,19333,25047,2917,57404,12192,23170,19995,67783,14330,39402,41770,78379,87333,74060,23333,78910,76490,7878,28698,27553,3728,1690,73933,92175,84612,89051,11182,62718,54620,73976,20821,76428,69674,2205,54250,96543,44048,2193,59878,9865,52417,25532,87035,20138,89271,55966,1500,98,76812,44155,60716,67464,89663,14733,32273,26904,15367,17476,32773,38459,99067,72986,6339,87588,79105,84920,87830,87997,62715,95490,88792,81437,9009,73965,89233,83457,58935,20604,38161,79367,49927,50317,72030,6804,19322,8199,64480,42934,50246,36485,64964,52491,74608,38331,29175,81643,5006,48608,70515,34388,33529,23035,56102,90901,58621,7019,94348,12473,30582,90684,18399,38281,38166,3506,45336,56241,16663,96545,30126,77454,54018,7822,77705,60131,28722,96271,37347,91731,36386,45883,91659,24882,83444,86466,26290,13504,65111,9334,80211,99256,26048,11739,58049,7952,78861,86765,84447,28085,52330,31835,39826,27052,23566,97936,35174,21373,74310,6196,74747,21707,30170,40738,58423,68904,49215,90074,88268,36815,65264,20559,29547,77659,56002,88876,31179,91513,54159,3560,22190,39274,96573,74164,68635,20171,49766,38289,94572,26899,45974,9333,70980,68831,84338,54390,34512,68026,28658,50219,93343,41541,63090,10427,49553,8349,37782,63212,47337,88127,8950,70600,59575,14178,81700,40126,14362,12480,32198,14909,87539,80174,47115,24111,7989,27733,57794,23906,90997,48262,25955,96916,67598,74714,15618,49025,21809,50063,58325,72725,23348,72596,15079,6770,53631,48739,31816,79630,90710,44251,59527,3811,96520,3902,99953,77896,21237,33016,86281,94750,72868,47138,70589,55734,23739,90282,2527,94695,67215,54289,56895,74790,57563,34248,1361,58440,50363,13037,12957,23573,25948,72367,24473,69023,13162,91183,58855,23743,75068,73768,45422,63462,62923,97030,75873,80895,40292,70356,11688,88471,14659,38848,12660,20429,12883,50267,8321,50121,72737,51339,70792,66204,9076,85832,66834,41337,68064,23277,44043,97331,98570,7323,79427,43844,83255,98578,87468,74437,30443,68579,39733,29358,29262,99562,8093,26603,22879,81715,32339,76246,68453,12068,14771,66701,82331,49907,65420,51823,24074,68011,24705,78811,62237,76225,73703,57441,74552,42074,21996,95065,29514,83144,33508,15776,24811,29548,75401,47449,15020,54820,96123,9481,80160,81201,7349,18709,22938,69330,62435,31483,52311,86507,95439,18486,20731,51776,44538,95042,57709,45261,55332,4921,89251,61282,44709,62863,99059,49576,40520,58354,66598,87619,1444,24591,93306,9245,26516,20123,24181,63863,85338,87315,20178,90870,8141,80336,83409,25477,25946,59108,70208,5005,207,76067,986,101,46420,45509,26417,21747,79478,6027,21391,38414,14002,88974,70122,90481,66362,19399,43771,46183,94246,19839,90318,94493,66008,19730,96453,6,62390,38503,38847,94504,91225,47761,75280,62910,31243,80273,57193,44482,39276,96089,68470,93130,66481,83278,78874,37861,41433,7382,81983,43618,50017,79235,80829,36357,8265,98393,23412,88962,14800,82925,53273,45305,14354,30712,18040,6700,55947,15289,12747,23449,89523,45821,73999,61731,95713,66741,78768,28743,3198,72334,10474,97837,89461,99373,21584,25397,34527,92207,12775,96871,90453,57338,2022,33969,12766,53220,57969,98449,84011,25371,61050,97887,1779,27696,86924,20974,99542,59610,98967,91550,45797,39311,49348,65937,66345,67467,93407,11583,78009,86778,85644,13317,77161,20698,69947,76782,34095,74594,86333,3921,56477,16480,58909,88529,78613,28848,96039,85270,40965,89356,37707,24845,23880,36234,13762,13695,9637,58985,55015,65843,49465,22425,89916,59945,13445,21569,99809,89988,47120,43295,66903,42472,55439,76260,52169,1253,99499,9607,14145,35152,76931,62164,91322,11008,54367,96391,15692,82261,98533,35792,17172,37026,38932,51148,38167,76199,74251,39840,64811,84427,51071,84212,29503,26554,55659,27197,16653,93263,28353,29838,34810,90221,20648,59104,56286,36409,9545,27144,53397,29930,63334,62452,23234,27678,55774,1026,86326,92717,32922,64410,54410,15391,84068,62800,88314,7004,44645,67953,99125,56027,33965,33327,38944,39463,9285,10521,57891,68757,21689,12745,77865,45851,80180,79861,64378,97972,74911,8902,14334,20463,40967,96245,79621,25292,64696,92822,71226,96979,72526,57733,54801,25512,22598,41017,49619,22505,90863,66848,24900,81622,48900,8129,23230,35952,23641,22188,44813,26932,84687,77314,9658,16419,787,14538,89952,48097,56619,36026,15174,71429,43411,21285,96154,19295,77369,47380,5497,80962,84696,79810,815,56926,74231,14583,49757,3287,62212,91538,34267,34586,6732,31996,37441,48820,16339,22733,46094,35746,81371,15781,87573,43450,22962,19575,15670,22140,17381,18521,48827,62672,63854,5874,81190,43553,65677,26294,51050,85952,86510,13558,59411,82219,7534,39079,42802,44127,39927,27564,25841,70109,71461,88120,94449,37245,87394,55981,80862,80365,91935,50334,91152,44070,29826,54256,73817,22455,59649,16568,29168,60959,18568,86098,65676,16449,82242,39966,56315,73144,22103,239,51736,16247,91554,51428,95604,75382,70722,51800,67133,47166,1388,21806,51418,22566,69485,92255,73148,260,26965,26829,5135,30714,85146,27736,71500,78286,77696,48669,52364,86219,89300,82077,47685,64095,34873,24013,10714,9238,27253,66026,29218,33786,67277,48540,35969,95458,4482,82578,75457,15253,21434,66030,65236,44171,17338,82220,8786,79712,65604,98399,59932,41997,85023,96327,43535,45062,77156,8697,88551,46387,20576,34502,30853,38703,99984,31093,94219,41504,6124,71415,45033,74473,40039,52494,45629,36066,19632,72162,59362,72243,55249,77507,18634,80624,39765,34633,27369,67546,56308,58884,10928,31297,73205,36124,79706,63691,96752,90430,82636,39148,49436,61327,65256,56709,61985,63979,47270,10566,55845,62844,88838,61387,3559,35430,24778,88428,59767,1798,29345,25226,49612,80595,77452,45429,79315,29490,88740,67075,74568,2586,92066,87205,9742,95223,29801,16039,99317,35136,723,52441,88627,74224,46834,75373,81331,29710,60506,97290,51519,15661,59369,242,67426,11039,53259,1646,5618,57167,36412,49116,33190,27407,37506,7041,59979,62673,17980,86782,14496,7664,77562,33098,76630,15775,41811,83520,8634,97480,3100,45852,46345,45100,66835,44358,54869,66524,49613,52320,68855,84216,61546,32178,68234,10165,86420,76039,1408,43561,26952,14838,15613,27393,59141,64344,51931,28141,91004,78869,58477,4783,70174,55725,93,81208,92017,6293,94302,82432,38876,38079,78856,3164,40651,19397,11853,81925,56268,46148,50170,23650,82991,53000,22822,33419,65071,82101,27636,84644,94187,18301,38115,79641,37646,70942,58346,14546,41767,17891,79854,27692,795,16494,59024,9713,80391,60371,56396,73445,74705,83114,29743,34765,38100,95006,62201,99581,87347,72325,82040,16317,40898,15660,53677,36992,91196,44144,74856,49893,46576,84624,86628,76211,62525,24532,19769,44042,72748,21611,81930,83187,59,66730,30994,34603,73779,39357,4854,23515,81477,914,20649,73780,84985,30919,30558,85271,6895,55572,74872,76480,39674,38452,40194,83728,73533,28213,1492,41909,21019,49056,25533,56369,31832,9036,5071,4026,90877,40037,87840,44106,22638,14861,608,66407,60410,2287,22099,64162,16610,2885,60553,83571,56408,45813,84184,42975,53356,89026,10348,58485,71791,10449,96808,236,48993,31686,78550,3953,66789,86152,76257,99771,57281,17795,27337,34562,87494,14751,62876,45727,70860,66020,63857,2999,20782,42481,62308,70171,71511,41824,5002,38088,18161,47091,97450,51160,39443,89455,84007,5427,41993,27979,36854,92681,23487,50060,32220,26680,16754,85993,9514,74184,22272,31857,47081,46004,23219,23006,29475,13098,45734,53781,2511,55426,68007,3886,33792,82653,40179,2124,54371,65353,98781,28741,22770,55861,62244,74787,97,4842,25663,95414,28304,4023,97388,8046,56948,49636,89767,97033,46505,49833,67619,59679,79291,54448,6548,84907,61536,16954,81287,11235,69395,12390,74515,82669,38231,67820,27338,3431,3936,13867,78736,7569,32495,3452,14550,39125,645,72136,15214,60275,85722,56703,31611,40561,7598,5419,12242,21614,70369,92436,14302,93236,38500,52980,3690,44032,66231,10628,50570,3338,90681,25339,36004,62706,33489,89480,87190,21370,7194,79195,34083,16975,54867,20434,48341,30627,92301,96126,63852,81800,49735,38969,97520,43958,94306,35447,41224,12540,5878,94353,80194,27804,78000,23138,26147,68509,92101,49391,58296,16544,78822,47610,5400,62030,1170,49853,71223,28303,27703,89697,50474,39970,98103,4763,79921,36656,37725,18127,19319,99008,22372,85701,96323,48012,1668,88242,19010,76801,15126,93269,6062,2036,54123,74678,79952,21393,50294,84197,97238,45181,86292,95040,7033,2344,76729,42352,51141,40626,32649,22820,85928,14791,43092,799,47725,46633,91364,62992,34465,57142,95034,14857,63959,10270,97201,62998,23435,52422,82389,40413,58290,660,64858,65205,7550,87581,52325,37997,36272,2477,68246,21126,44810,47355,83367,76620,60208,21456,98577,95070,27546,71557,75526,91766,76214,98569,71661,64646,56512,95978,30461,82731,10101,43695,30169,76004,98790,16887,48361,47133,75139,77576,94942,49806,30556,31313,44811,62630,14506,83122,29170,96748,54273,82364,93937,35516,71114,5583,63612,36095,17429,57727,90441,55468,92122,55224,22056,44724,90944,66193,38550,38036,89473,28430,24217,28100,16250,99137,87931,11134,79468,81363,36195,9492,78929,87744,68907,64214,88759,19290,92029,97833,55639,68586,40981,53741,15587,65888,52067,95021,62902,46019,18261,59083,46916,6788,29317,57355,3621,46686,42051,46615,98907,42932,67200,78462,71922,48213,95767,77181,71630,46115,87490,38210,56589,65209,97951,38727,28718,38502,11585,27213,77918,80463,63878,5012,95166,95220,48984,52004,81620,87526,77575,85789,80308,20737,22829,71953,77030,65758,65103,6907,74698,1945,34824,18247,46198,61506,53216,57858,35601,73920,60239,22579,39217,3999,80853,47706,51577,53867,87181,61839,30199,299,99162,47981,11788,89822,91616,11773,76205,89217,91165,96099,58257,95483,61137,56446,38300,16093,20882,65690,70219,88142,69086,81677,45115,24759,59760,11499,62465,4803,22987,85170,27405,51716,43965,41869,57446,43653,21124,11330,34552,8169,17026,58301,89976,55669,36397,91434,8267,18424,95890,29169,70021,1570,53399,89011,37426,92421,45526,33003,62145,86285,5164,81890,37356,29885,12776,53484,95407,52420,61066,86986,21134,38356,7440,15249,97172,19816,95438,82158,75581,53832,70695,26013,91923,88688,38105,1401,80883,91732,47456,57052,86147,8179,86392,80038,92604,54026,58282,31881,75953,27031,17974,88888,76711,5163,54921,36413,25436,72365,24267,90292,42225,19819,6392,79839,97895,91262,15198,89055,56484,15190,89615,71874,1400,79802,67687,80929,1535,19004,35244,21263,43635,73054,78169,59771,56657,17768,30427,19452,38026,62841,74991,79464,55787,87100,83982,65465,82642,15712,61834,57237,26457,96587,98200,84556,29161,26022,41,77195,60956,90457,32531,91880,42902,1109,76216,48369,57903,10184,20599,58669,44628,77704,3645,29891,65922,285,74578,23825,66938,69222,84686,60998,21807,3346,99886,66252,35933,9382,52206,25781,72032,61912,18474,54739,54192,80486,2335,39307,94509,41039,83435,64441,96829,86332,839,11591,35228,4463,37332,45572,50906,19451,48723,42130,93720,29017,67447,45213,16314,884,19793,42834,46574,49966,95740,79024,24761,40127,18366,1167,84545,7480,35995,24777,18022,55401,99554,98424,94481,86263,83171,29783,44333,96762,85516,41231,23507,59470,65673,69765,65808,50427,71164,19906,40501,63123,11122,14680,37962,23399,1328,13488,76024,72017,82034,81247,35278,38056,54661,95593,76139,19826,91676,36597,22225,26566,23181,73668,26762,32580,27269,53764,36594,42427,39355,81470,68300,27532,93569,8590,65088,9584,11800,34174,42278,74562,22177,50729,2729,59777,31533,6884,83510,87329,20282,85172,42287,54188,66867,9337,62287,42015,74314,21261,54380,5283,83475,72482,35722,62611,37417,43204,45620,82249,68941,16863,37881,30147,21198,82017,22931,22303,29217,77440,58038,84026,44353,85485,15767,74285,4794,41639,38692,53531,21571,94682,45697,20170,50507,91035,24894,73723,62797,26163,21621,54097,84806,77563,91835,93316,97960,23485,1268,17242,97949,69322,63373,35867,54352,39810,54642,9062,60236,76359,92427,7884,52692,53105,20035,478,2828,27420,20031,23685,3649,11425,99476,37191,84352,73735,51235,78214,92972,79635,76387,33331,43159,48431,33898,40661,44238,91084,63318,79666,24850,50762,58069,45154,68549,82412,93676,71177,51106,67188,33099,47169,41852,76409,68402,48667,88973,52411,9674,84356,40638,66615,45270,70976,29689,46347,60477,94870,44200,26647,20850,88918,48935,61348,69038,44041,70063,50385,3163,35822,25185,12328,37003,80671,83321,30797,98620,55933,74104,50990,31697,63325,75310,58287,46139,39138,25585,86966,99589,46884,78029,37105,75758,68571,98329,27493,9914,67769,2705,78006,52328,86282,75929,44146,39368,2605,48684,54640,49661,91706,19425,89365,46745,96552,82289,73305,3151,82103,45415,82147,5390,10404,81241,54024,1903,49186,39191,52572,22970,70763,94967,6796,59959,84131,78448,30979,25478,29973,97280,32088,99948,40767,37674,60133,60541,81206,31318,14427,45393,34847,29044,57683,25442,69930,58102,72396,22947,57910,13593,18090,54503,36311,39041,92355,77603,42135,74921,8755,94814,20909,33746,73783,15556,10493,49500,45632,97499,80307,26660,85490,81881,87235,28267,77256,77490,10584,12076,11177,27185,65222,41966,24588,84210,48977,41515,57721,12275,76677,30865,37023,72749,33681,57565,29146,70946,17559,98264,25554,17298,7147,38971,69916,93074,6402,98526,57339,26030,90026,39180,1435,77121,21343,84694,83074,28482,18352,97446,30591,32746,91917,86172,64004,56651,99591,58230,45795,26376,74268,97411,94236,75828,25240,66365,31002,17248,94079,31296,82317,48719,72852,33352,27897,33481,52829,15022,24137,98314,4134,87800,26730,44173,88692,65347,67557,15321,98018,47305,5490,5884,82945,82207,58418,92338,12488,19283,93511,90904,19805,24769,86859,87953,65776,48064,33158,14727,54210,65197,77140,27649,33406,94763,11742,80030,2098,77142,29581,55767,3683,9013,73584,59850,33090,8876,90727,83769,23625,72754,20630,26026,82448,29187,97656,45260,54942,91863,95573,52820,85328,89746,95153,85742,96914,53984,52043,30898,48942,33189,72714,17802,50501,55514,79463,51897,6043,89100,89082,28725,66757,69580,24998,67826,27760,66448,12567,22673,28470,50539,21624,58380,247,89158,65373,91277,70563,69011,96266,69444,58662,96475,1922,45351,6614,8183,66709,64202,17587,94310,86139,44046,51296,65195,61557,80142,65284,95202,97999,92927,93554,14542,44107,49033,49878,2225,62564,93004,37944,32234,12796,98979,13296,2979,67624,6650,57160,25754,45920,16550,28242,67797,40415,71206,94123,11079,48164,75411,81518,53475,2042,87675,73643,9320,51685,16363,88080,69178,3306,78843,27781,88897,38612,39314,51551,39814,91132,69532,51319,39858,30674,66351,51356,79733,37985,95478,53455,178,81738,13305,74059,17201,24096,59267,38621,31675,24693,31030,17709,67898,77651,27593,74820,99300,50205,66180,13517,66158,31766,25862,85175,75030,17650,33107,49195,4870,93143,38064,26915,64440,70332,43839,23594,6752,73199,71089,81697,4609,16965,75821,26383,54680,21616,78777,89797,18960,94032,80497,38323,11271,30317,56867,66183,60215,70662,84486,54105,33171,81805,32976,97696,52393,16907,53372,85143,72531,28019,30760,32453,77431,54405,42361,88103,85066,51578,88856,90610,66425,91053,45982,52527,16100,62831,90248,40726,88794,49238,15517,54457,47191,31436,99822,80255,22361,55864,73119,579,40923,59282,62389,35191,1298,87937,33448,86077,26216,45698,31265,23793,85127,90311,79038,25601,34993,78078,57695,25770,89338,58595,91878,50664,46149,85705,1372,26443,67540,75832,69215,67909,47444,87956,52778,59028,93311,28351,18384,82859,81412,59783,87618,13368,28394,73363,49012,92618,16450,38557,92637,67542,82909,19279,63615,10444,76471,45859,65338,17492,16637,46191,3007,88291,70271,62036,84342,4118,53706,46658,64422,65139,34631,71722,8893,50369,72066,46915,30291,8817,89187,74247,42979,33952,93190,51329,91425,48519,41405,41563,54349,28284,34455,22304,64232,92703,39165,53656,15974,90523,93917,58093,18420,27726,36222,54771,60310,73717,58748,13559,40517,7071,13722,41353,80187,19223,74294,20976,19865,3437,13164,34308,65012,50184,68226,22740,61443,91658,332,55225,62662,76201,70966,76937,88123,54375,16140,28693,32459,25015,174,14029,89742,67899,20136,41135,5304,52091,41754,31608,12143,11066,885,36849,45682,86340,70097,42928,28172,70568,22921,91061,96044,10440,3152,80021,80452,14900,45677,24017,95457,29269,58450,25106,22086,55777,6104,5056,78885,67532,63646,18430,3214,25895,79713,88368,88815,77529,9213,24254,59101,18145,84096,52949,29875,20092,90480,79316,5040,88694,15272,71119,66566,32766,24856,15149,72400,47461,99574,45955,50821,63657,63266,73911,67950,51730,7340,46084,8715,6238,26594,47978,47792,96978,1885,66950,79889,29808,28373,47604,29058,757,28252,85935,40059,58200,62810,37412,38120,86345,43390,16537,34064,51112,75438,55785,57213,22090,43950,15916,31464,78026,47544,95643,92504,61949,7470,50220,83152,94099,37565,48895,7753,28974,29133,65789,91712,98655,18119,86382,49167,49308,70490,5776,88947,97774,9845,9003,92328,24617,24594,14154,31155,10976,11043,94991,78501,79067,6860,82183,46718,73521,38558,64935,72141,85774,23806,89206,18379,74163,6837,86667,7656,74175,69263,7533,45604,73699,6965,64184,20015,17926,30630,21907,68265,73311,2896,22137,10650,24671,57710,30662,74823,20179,75775,79555,35254,77218,80333,62230,61371,96211,13212,10392,21851,68130,69249,84827,98592,64338,25266,3361,38310,14370,19430,85204,53917,22595,3187,38763,90741,2842,91694,41147,86581,17789,34495,83205,71639,36043,4621,43408,51032,59323,18323,5453,52126,42964,85519,92319,76295,9148,44820,20449,15077,10633,79501,38626,76114,17734,55188,62313,45901,52659,14804,69574,41779,16953,87583,28059,91690,81815,98647,34106,73362,55303,41703,79251,9101,54985,7047,40091,78733,98797,1074,89417,43951,58639,24261,11261,23849,10734,99558,69320,30665,9784,98472,31408,8072,69530,47661,4237,62251,18285,28731,44219,34276,94632,73188,51223,10970,27141,33679,19618,38201,13039,65105,75345,57201,19650,40133,91131,44860,72161,10586,64617,46678,24802,96906,80646,4972,60815,22977,5811,95894,75733,59421,93261,45247,97258,43616,72843,4830,9610,66152,18310,24747,26737,97261,26405,4213,45025,96421,33256,36894,70338,7210,79762,26334,65206,93903,55702,12710,12106,23115,72529,82362,70953,41201,26056,16540,35429,18496,81271,31162,68538,11676,50004,75414,47433,64965,69399,29194,27500,61266,65270,442,70316,61630,53087,77876,65919,37595,16389,151,26307,85372,29104,58832,73221,61063,6364,58711,50733,65019,54255,66997,40475,62028,75663,52962,95901,6347,83752,10974,93709,43571,99239,50883,89972,23581,4061,70456,22163,21043,29659,47766,46763,59934,31664,99978,53196,56009,77771,2954,47783,80705,28758,91858,14881,39224,97597,99824,86942,49596,62084,97216,20354,27399,7317,74407,72794,35418,71600,80843,64266,8914,68888,10716,24099,70432,13013,65544,93987,48505,4367,48275,73642,58370,25204,35828,40051,62076,67579,18137,51231,46390,23054,59210,838,45732,98867,51700,66121,17167,40086,14294,56488,69686,7645,70597,95944,36995,62786,67285,96947,68516,74475,42213,70281,13185,19156,60384,62573,23492,71520,55499,97010,13432,78368,44547,7903,67502,11995,87241,87629,93882,95103,68048,61696,21738,88449,29285,31095,24744,60910,8582,24297,47096,50751,11560,9330,80888,60291,65441,16128,72541,11837,82215,20029,26259,76818,26017,87364,20131,76248,12827,85451,84601,39502,12347,44461,95878,96626,99778,70709,24986,12424,44088,59713,42887,91942,55842,3857,64369,20618,47617,73391,83852,66591,42175,60033,99545,40958,61818,44472,93605,5344,47649,2184,47153,64762,65445,93527,43679,37421,32935,95848,62931,36993,49890,45253,15847,70851,91208,61584,29023,40219,31237,82300,54308,47972,9579,67265,88195,21483,21004,42527,53809,2910,43941,72310,53798,16581,70961,15689,27893,7080,80587,70155,32122,72420,53037,22490,86170,30963,99748,85220,38150,19310,72093,31874,23197,38040,56689,83643,31321,2763,76189,61285,19956,93382,38087,26769,23201,98446,36627,6458,25383,17150,1322,15636,81768,28474,86517,13227,42444,54626,94085,24405,35572,74112,49245,54362,17373,79407,60094,79720,82459,48339,6228,31892,91632,61591,77841,7187,64114,48018,4304,41211,43908,81528,82962,10412,87305,93303,88454,10138,69392,38827,71974,35337,10230,13012,80918,63697,23647,64994,29342,60738,3978,38718,53279,1574,97039,5188,51322,61289,51210,2667,97643,67571,78348,34217,73044,23237,51810,38094,21748,16614,3184,27180,74260,15635,28069,47470,93874,16980,94101,64286,8693,83418,41581,36786,66556,71310,77248,21073,45705,17524,24883,71631,62512,2548,9494,20403,91365,14756,44539,90218,73216,49493,29992,49365,46604,83521,90957,41540,52601,37317,75222,93841,71811,70769,6644,34378,91234,34430,23172,12409,3843,42901,17292,23870,56088,39651,23905,20406,53788,30615,38585,55288,41707,78105,45676,32232,72822,97623,56393,13576,54122,4426,41375,89250,38934,29191,97009,14500,80545,81169,54335,66476,25825,74250,17236,24201,38245,18827,62066,88148,41525,72687,45728,29599,71043,52579,78897,8641,26045,98055,26714,25515,68615,78626,60821,89868,71067,66863,21304,95577,42091,36243,24291,44129,76040,92073,79353,27978,18491,14895,44338,34489,18357,73473,50189,89606,85286,98656,99792,73464,44313,60286,32479,19561,22134,62728,24990,8628,27460,5023,10010,98555,47707,4159,54336,77104,37549,13845,94201,37906,52973,36134,99262,90884,5460,83364,18531,2187,31973,14839,23213,75317,73168,52203,94517,25211,99449,10285,47313,31783,82680,26080,73498,44071,33183,85499,77126,43879,81130,22783,34619,65899,37872,1532,89816,37515,24631,72499,25326,61629,3067,11674,1028,93203,65428,64107,41106,51340,30565,97240,91603,43681,6473,72636,22143,44253,67698,7603,35871,66028,48595,11869,91211,9685,22877,62763,95897,2598,90484,78969,93598,87849,52844,29076,15255,40158,19014,3320,79742,97129,45147,66182,14350,53795,21326,42782,13545,72669,77858,50262,3900,88959,5678,72999,5663,99259,78908,47122,26948,27675,18084,91154,25856,15724,29876,54742,87582,41444,14083,79049,52826,61203,92311,57930,99864,6552,51012,59446,6435,40261,51421,7690,24765,95556,75751,20682,84626,14184,6478,64411,81376,77810,42334,49478,5371,98994,28817,62319,98802,82427,12608,5212,53542,79488,61022,33563,34016,97765,59425,57194,47711,41072,3182,7159,78411,44896,96464,7230,22887,6440,39373,77309,76893,16578,80860,95013,72328,95680,51594,38318,88747,96570,29207,60162,3081,53315,49174,80806,88992,50796,1292,74609,38249,22717,19296,68747,40428,77623,64473,55631,39515,73469,92257,71058,37832,5090,59124,773,87294,84307,54296,33863,40892,27051,71402,62352,38017,51532,40804,33623,98186,70989,64138,79091,27297,90396,85544,14489,73191,54630,19068,20796,71717,67747,80780,41502,37553,27422,39606,31358,76574,23265,79538,41512,1418,94860,75218,35288,48445,12859,16318,96812,49176,78406,83235,31564,4389,50310,48014,39009,16466,59795,88642,40391,84153,6218,52981,51023,49214,91743,76493,65621,10176,50225,58585,17790,92615,11665,99909,54417,44707,81675,53343,51729,48756,4167,2156,61615,86148,68553,23061,87332,10940,69784,36807,6517,1277,11475,32940,67217,83543,58606,4359,74154,74569,20047,20664,51973,81176,89662,29566,37690,41700,58522,79371,46441,79072,55548,92148,50240,78460,13321,81386,68313,6034,46168,46659,74524,18417,61519,79523,93674,58144,79868,64562,7750,44366,59901,73822,74356,65881,76770,44322,80221,23713,87698,11352,50754,67848,27651,83454,67243,7896,92359,1128,5290,49949,20564,99540,33061,24616,38618,4425,86643,59639,53288,49963,34798,81559,50417,76522,52733,39745,5036,35991,7639,86341,88499,58545,94948,26682,22743,9740,7472,61397,35134,31883,88624,11158,67879,32777,31412,57068,91385,5372,19026,59931,38239,25701,53091,64960,69425,58779,13604,54709,46129,72598,59179,71782,30686,94836,45166,7426,25007,23797,69670,93195,88879,47406,99535,6606,41520,5332,81268,25833,2576,52816,41772,53474,52371,62428,73330,87369,43733,70549,21197,56942,66258,59571,44467,17654,7333,82905,56015,28724,5167,49532,39393,77022,63502,22593,58210,10883,51331,47905,7985,40854,12433,42708,68726,1598,67984,96144,96091,39763,78285,6993,26161,66174,7311,71684,21059,58977,7367,90345,30096,23059,6202,12561,6734,31069,67814,54658,14637,30212,92452,59027,21071,45513,32501,8409,536,62722,11565,48337,86813,45844,68812,18620,19756,69101,29751,48111,7625,42167,90111,41713,37516,13454,19821,49162,46368,45172,55008,45849,63937,1768,32305,75327,55344,967,8825,86695,67710,49206,93926,75866,67828,10672,24294,98359,44441,69982,52969,97509,37145,32331,78783,67886,86682,47990,86101,70861,37756,89624,82516,82119,25265,98874,21613,45040,51759,50581,15493,42073,4982,76844,57435,20468,12411,53724,64703,94357,94839,95015,66265,13435,91702,99338,66896,82126,4868,59725,295,47734,5660,93931,7391,64065,32054,60602,72166,50516,18915,25014,99747,75166,26445,60083,88669,74452,26841,3892,38002,1252,13687,32129,53523,35156,56165,59995,6156,2102,55330,33820,32533,12041,53415,99872,70880,15535,13087,37172,71774,49408,46066,62223,55498,67765,16814,73457,95069,7423,27249,12565,40041,4661,88263,87563,41843,56988,20988,13554,53975,91121,27747,38724,79256,55004,80012,36534,34289,1221,38753,16549,91065,47013,43241,38506,18456,97701,949,22708,40313,16485,81318,46990,57286,13939,57083,28007,25283,1787,58110,37891,97089,27875,43445,5180,23210,55346,5131,39230,98598,77169,93972,60279,93491,16660,14627,53436,19403,40177,19433,66544,51850,56263,54070,70028,32370,90101,9619,90165,43303,70806,22171,18131,60128,27941,15788,12984,84509,35181,13780,78289,2433,1370,18573,17573,91773,59718,16595,90647,90520,43260,20561,33914,95125,14421,83655,98581,99919,88388,27394,62335,76144,395,77367,74559,66013,3976,64481,75546,67392,87727,81305,1421,89512,81506,75212,96483,22459,76212,27374,13047,12169,34498,14306,59085,27588,38842,26710,27785,54075,92021,52089,75472,99281,76284,89042,93833,18604,68057,89177,11716,65116,9248,90559,87087,92235,59219,5573,75583,28763,65820,67427,13981,75323,63374,38021,71379,81002,86159,76164,70957,26211,94960,98731,8934,32337,3603,93999,2487,22291,82632,9598,10115,31196,56676,10214,97337,98305,34834,12771,51370,84877,22720,22712,82467,24517,93049,44945,24641,99056,88046,48741,2270,72145,35859,87340,52532,67628,26053,85830,61023,81549,35171,32988,8574,83737,65057,66933,23789,39204,48473,87339,80101,73250,56782,24582,44621,5649,24436,90492,9823,32507,32007,55908,47802,14164,74721,30953,19490,96262,29625,25827,27660,82252,97740,27811,48652,62807,34799,39261,48190,27487,73005,85392,94936,23988,53294,71551,68742,54164,31504,2559,91401,71881,41930,76719,84580,96820,72440,76926,15287,82926,28839,6823,74668,77115,15465,54855,41096,99494,19474,53623,80434,47480,125,35629,47275,59782,68447,9365,27662,69944,47772,25851,71704,21151,45702,57648,29798,80791,11319,23350,49717,7375,75922,23065,29013,28103,24286,21154,10077,74254,78128,71487,74342,56016,50514,29893,83721,40345,69871,51200,36590,51013,46655,52083,44137,57396,46816,77716,95525,49157,222,33487,93704,86907,97762,79929,93644,52232,85103,56633,44142,49438,98425,84465,44643,12272,74974,30417,60837,96907,48463,4112,69654,87129,68789,95369,85753,76924,81944,18502,61041,20465,43748,43552,80710,24899,8916,13145,71428,11529,3056,63844,72008,50436,1215,97415,20199,64223,50858,63499,52052,92060,41776,23987,36712,66636,55606,26324,95303,80024,90294,43410,14479,98767,43011,74280,406,60632,49977,51345,60658,88470,32809,87076,72092,89909,30155,14572,36538,23946,95037,45188,20663,19707,10728,40551,80909,23984,8470,73906,30060,95408,77346,33658,8306,75366,94092,82460,89981,47219,86126,36606,76578,28638,77609,71685,47235,86224,66061,96009,92135,25443,93521,12504,76978,85512,55673,6600,71928,12778,21919,67198,43564,55220,58103,7998,5555,33663,67785,44314,1607,20544,41446,94984,69824,54101,40672,46399,51384,17636,87651,97497,64563,32433,10371,56497,81746,93802,23220,43774,38805,17831,42438,54598,23605,56078,82081,41407,81607,2349,16456,10939,37522,65728,55297,95448,28395,8656,79204,70594,77713,71920,14418,45904,92210,5609,66766,92885,63549,42093,32964,83093,21541,79376,51488,11259,32104,50088,39480,25816,26510,94837,46891,17638,89101,6131,73065,8623,50324,75961,14351,70232,67310,40317,53205,15706,20017,53515,6400,66734,29495,99325,98924,17707,40170,27205,98420,27839,93757,8317,90810,55127,9803,40736,88814,36789,30189,41840,72199,55307,52526,75544,85198,56073,40352,70015,25316,97250,30814,71893,84382,3148,48905,41216,60652,88292,10887,75102,95239,53312,2183,43316,41424,94698,8881,40360,52630,67805,92987,7560,64120,63395,98701,55717,73786,32225,47819,51116,58629,21804,53236,2761,16424,12531,44446,67156,70752,80446,50159,1650,98153,68485,2736,24053,68325,44273,94868,86179,95086,8785,69267,28904,75973,40553,83980,74837,19138,84462,83332,80265,62080,57610,61515,64559,54745,35811,767,4221,26191,436,43761,75943,74298,55068,83355,90201,58368,63,84788,34989,36017,6746,36552,5327,21045,83482,59338,7278,12187,99140,82966,69219,31875,47730,90999,94459,90148,48279,82678,47927,50605,33627,54975,88655,79108,36800,62658,81420,28957,19165,95215,13493,26151,45221,88662,15411,76451,49645,76697,72296,89950,90040,98397,9121,75282,16225,33617,76159,1259,3368,37838,78688,26747,87006,91533,69852,29756,13049,33693,8565,44781,4403,78569,4919,21729,80520,87726,74385,73339,48619,79692,99618,49444,659,26250,14454,77979,58807,55030,7328,67364,23667,7820,57532,67165,95238,70835,71200,84309,31158,53995,96195,23016,43760,42483,27457,23609,31374,90734,24895,8018,40951,575,9313,49441,64346,7084,76333,67517,55257,25215,32818,64084,52587,73240,49761,19409,9046,78534,32919,14960,18695,43453,23123,43039,55770,41709,61478,72256,85135,97362,71316,47699,14253,14827,34347,52608,65175,82498,96219,20565,61436,7351,78878,5244,21662,47688,99787,22365,7446,99669,41265,74877,76760,69714,88308,12372,187,63218,72052,71245,15944,93719,86875,78863,9779,70167,61119,46413,15963,34870,58182,22142,79505,28728,73733,93517,96011,91983,51630,87102,34043,13179,42976,11398,66228,11932,59548,46951,79479,83955,35815,50457,74312,86626,84286,5458,55203,95723,83706,27109,27286,30772,7043,40931,11230,39296,85080,37847,1086,49684,77154,61694,59332,70698,40832,8101,82420,45110,43398,31049,43233,7844,70570,44556,58561,83138,77447,47856,8258,87947,62546,92417,72660,78047,41203,74079,75486,64819,35094,36133,74334,89442,72793,86880,32598,85152,98889,88760,93655,13152,92370,3112,46268,25296,92083,93855,34492,59960,69495,72176,67252,6943,24838,67574,29759,48950,31410,11049,55730,65141,79695,25223,76730,17594,63149,4644,72694,8235,76821,11394,83701,57196,52787,57374,7769,75220,70474,58383,51424,58061,3839,70867,87256,19124,37361,63802,78556,6294,51949,21935,92300,32014,13968,55679,27373,53394,27771,38872,41255,9854,58611,5202,38351,78278,44605,95304,34438,24700,81484,59770,95299,85432,31145,47397,98501,33818,24569,11029,1453,27935,35066,98083,72277,8411,36240,39427,45068,93221,68719,26771,65262,11007,61508,30846,25257,93345,53862,41339,87289,10872,22383,63932,57101,88682,32270,57782,85814,89241,88919,70605,90820,28105,15960,231,83219,65145,6411,71044,61417,71529,89456,81421,4239,1047,32806,92154,72630,21680,46824,7393,550,94415,89205,68471,25345,54576,7805,14673,4447,77959,53735,25376,93804,78058,21176,77589,96111,13945,88065,20869,86729,90053,88999,37953,83426,17549,98376,2359,25778,55408,98311,57691,59289,28451,74952,19859,48141,31571,18704,21765,65083,91997,84440,75041,46501,25812,92039,1050,45823,52216,90439,37774,79360,35999,62298,20210,66683,89906,99421,93301,60542,42170,76034,20522,26258,74016,13171,24299,42534,68013,64447,3303,7474,66171,38811,80456,43606,24499,92484,24540,47460,37642,77242,30607,48922,83516,93733,58474,63777,45866,18182,24944,28446,22919,9304,69156,54282,11647,30777,43741,77475,43438,21918,20873,94898,77971,10168,25633,75052,88017,14169,12977,98316,68661,86036,81784,21743,90416,34039,86963,93630,41848,96100,35540,18529,13299,47012,62231,48587,47055,44288,44126,30352,46641,29946,38689,19960,71145,25879,5537,49770,49899,48932,89891,11173,73166,84848,43098,99322,90178,8899,66001,45579,19213,85773,82212,35365,20924,42616,36116,866,30234,43270,7411,49767,55733,68654,53823,55168,67555,73131,94567,69648,2731,83306,99890,31385,86210,13724,93691,2161,49111,2087,4811,55655,7024,84836,7850,12599,82043,96175,28754,9982,74241,75288,90483,92726,27775,56787,37336,91484,92356,6415,93160,88707,49589,79388,54957,67635,88771,20639,85248,10005,30131,71237,30978,24630,50462,48195,13806,22434,67270,94926,13310,12244,96023,31554,71846,86184,15358,86138,49617,97771,7839,80612,44357,2150,624,5690,69313,84257,34203,81638,94921,35633,71705,67720,59746,264,68813,54136,80034,68857,91302,84438,25061,89790,52395,73952,52062,81990,59301,72178,85853,54458,26389,13659,92041,90751,44914,94379,28383,89884,34260,21980,35381,26903,2525,64484,12477,48302,26322,13325,52189,18721,27560,82646,61586,83805,44609,48196,89022,32376,75123,3565,59654,98040,40534,37808,55436,75600,92930,164,9228,86146,3419,89559,60194,93142,33874,25087,75089,98818,31609,9733,53876,98139,1468,43503,66410,58916,19547,13777,9812,11303,16374,48214,77814,95987,4899,30646,18425,96215,19984,53329,79115,3513,98825,58932,33355,85375,56698,83039,74767,35462,95674,89925,95662,63980,58349,41414,99133,16935,34421,75818,56673,8977,20430,68891,46457,22547,84314,46689,56146,82092,52779,53334,97550,53865,50745,15015,79775,28801,57739,65488,71035,98199,23812,17546,19871,69505,56402,85030,16999,45857,8638,54484,17322,75671,23895,87987,11164,90402,97473,63204,88069,49903,27220,17716,34200,21194,53736,22023,52805,39390,4312,60311,30346,81627,4632,56481,33574,61821,94676,888,34825,9306,42328,44033,67817,16464,69980,61884,47269,78232,92586,78165,74847,9022,35040,18762,5621,70660,31725,18779,74065,6898,54332,66244,20868,44939,99667,45853,14062,67622,91278,45669,24030,97073,37284,84881,89337,81732,85436,13056,63631,11672,26924,34073,53614,12376,24460,72266,82718,85315,92056,12382,38035,11734,68834,33670,43865,86796,10818,56136,77122,50621,92367,71655,5863,30150,47908,42381,95546,21187,94513,37125,26956,7486,44504,66374,1892,36651,57104,33391,95976,13187,74616,68697,90137,48863,49884,79752,6023,51439,38475,45567,68728,45706,38211,63294,48998,85792,76913,15410,43172,90546,26778,97508,18001,95902,17134,98052,30531,1113,74187,79300,60567,82360,51959,86265,74336,73048,98988,84318,85992,71194,16468,13775,83877,81883,37273,74490,96986,75435,19742,40925,51640,8295,25484,17793,94914,12402,94523,89109,18885,26875,13492,31584,27942,3003,60712,23232,40419,2803,96318,1238,6168,28771,34478,48817,98650,58116,8624,64386,57970,8300,79181,31456,89193,26114,97021,39580,66626,41960,41510,66579,81352,2584,38369,69678,28533,25898,64143,58724,45864,40273,46694,76380,62131,36662,26991,94258,80810,84464,45760,93988,18466,95068,86435,73854,70649,83443,79062,51791,25725,99922,78363,2003,11109,61361,95404,88930,45119,60482,7055,22322,61708,46788,70404,91596,68145,55481,27458,37678,29518,59939,96792,14199,55312,63168,58056,53710,83496,4255,95158,71989,73849,3409,5581,35149,85210,3764,28310,57296,64309,58109,5418,46953,25191,35583,89877,72987,52638,33204,86349,52786,82811,65151,47739,48721,44648,39841,32926,74997,3530,73187,83486,7108,76507,69569,44500,39203,7708,86232,59505,91232,26693,76891,95952,14461,15734,82121,87667,89479,50502,89589,15197,972,36600,83925,77588,91885,25622,46888,14657,2543,45992,28862,1411,88889,45603,24163,39189,66731,78781,79166,88438,54454,65129,61349,41961,58658,49543,99082,81398,29899,83966,53821,65770,19828,44296,92623,22028,94105,26335,21595,4484,85940,55875,74560,48934,39720,11099,25127,60277,51576,30952,15199,97889,75874,93492,2441,37091,43026,642,68629,2271,74674,83525,12114,34059,41528,64676,20159,21857,5512,35704,44294,68445,84104,948,68610,67613,13856,34700,38174,48237,58933,98572,77236,49069,84234,55890,88097,81385,45315,36466,81704,16210,11730,20273,1611,79951,11247,95317,15043,58651,65104,610,34037,62038,24274,90387,29185,65578,38781,17865,14474,47282,86739,33852,7955,48829,21944,63824,16763,10227,19989,71815,50535,49134,22368,96448,8855,76355,7235,41026,97132,38837,7918,17537,51122,42215,27133,77465,44766,97268,85350,50392,84833,75032,73760,42699,359,68529,63826,62802,15275,38287,64024,33219,24981,77914,17303,22051,7630,35050,19558,53071,79437,95509,15625,82841,55066,73090,92837,96284,25808,98221,99267,90168,46249,49270,54817,50991,78313,24384,51040,64573,23752,75415,54774,2149,24785,65452,43476,60857,47614,86746,92506,53987,42303,8290,23445,49980,29651,31649,44272,70734,18963,11328,86294,38879,36546,93075,15070,8467,7696,51832,33153,25605,23794,44225,96027,75391,74902,14578,62105,48442,80032,40834,26764,23142,81324,9432,59353,27910,82623,53108,87508,84258,25922,67595,53316,19175,98644,10327,61979,5531,73060,40688,37990,53620,64680,49940,61836,92226,42129,39712,98121,95208,69917,57625,98707,24931,23402,25027,7743,1226,66927,96127,30758,68690,82253,4488,98495,81756,99997,26088,19536,99342,99551,73037,67942,36881,76997,48227,93079,40610,75720,55896,70476,77739,57320,97075,35616,66078,60749,4464,47767,67159,60633,66872,36610,17718,48495,27620,87522,89286,75238,99959,87421,50437,48526,15107,322,45765,44216,87135,32274,86484,2755,59051,70396,86329,89809,98735,92139,35018,34096,32993,13136,62447,45101,77187,77846,14399,39259,309,59011,98251,23633,5753,61961,25209,27017,69660,12993,78417,91246,47997,30275,33449,1655,40878,14389,27211,65005,55326,84055,54522,43313,97394,6540,93202,1494,53905,27298,38548,62431,25416,28002,74761,14182,36755,48236,93790,2545,9633,59454,9192,54558,88701,64200,56452,77222,22496,38142,68354,251,40225,94887,48159,39022,41675,61602,5802,40346,66952,14843,65791,91317,26046,94336,87729,45614,18738,5842,65814,92573,15511,32228,31798,5314,85118,2568,92498,41838,95272,11205,89861,56969,92446,56925,23111,60654,44723,22230,60129,32721,33104,8894,39754,83790,93799,62072,4663,12563,44788,60235,62181,62235,24742,18530,63100,7063,95572,12694,84449,63566,1525,54399,46961,51924,5347,37592,42885,22690,12734,43648,73756,36557,45367,78635,66142,68371,76103,37507,42363,43519,24230,55277,54242,20445,65956,28576,81088,78493,25772,74825,12529,42730,22772,31242,84526,93398,36229,86205,30485,8439,65928,33518,68625,22092,56340,8130,1404,91261,39244,38083,96375,19110,10250,78377,21427,91400,31602,69236,3250,90637,44846,19744,1295,73051,25596,52416,33662,66276,66402,91884,71132,85779,34879,17273,6041,84755,84078,14982,27511,79176,54482,93820,45099,65609,73049,83362,60580,22766,4457,32094,78064,91678,92476,12218,34801,44803,37366,51091,18248,23064,95850,75227,98274,19420,38577,23295,52975,51218,41194,52636,62256,57741,81298,29082,33664,40903,11021,55253,29541,10699,1942,99214,72486,39441,13704,6070,73096,27517,75070,58549,60009,17849,79090,94864,4246,19285,68518,10246,33320,55571,46670,12384,70222,7277,26562,43384,26912,7274,98955,83467,1888,70933,75538,69434,82399,71147,63724,898,12616,92564,88265,99155,85416,74278,71171,84841,13519,9642,84107,13010,99485,79327,4809,45573,25119,85448,20747,76643,32131,24134,15671,16308,94364,20919,95117,94081,69474,64759,15120,53017,87902,62739,52987,78909,15685,49382,77678,43104,84060,5826,30778,55266,16315,57009,11194,78227,49170,44208,11462,90384,34534,775,34272,11098,82104,17452,8543,81280,3996,21783,23089,66726,97575,9729,76742,22293,71360,9210,16114,8490,95563,61221,92116,62215,80714,49390,77383,71744,44754,49314,99813,4886,42658,49424,12828,70411,53471,41891,6475,68703,16453,2046,88354,94902,11880,95431,54660,34540,47124,5430,1980,9151,95315,19180,32414,31125,28131,91021,23459,76596,10907,92363,90087,73651,24615,73647,38904,86021,23287,61943,43843,62864,18150,4448,40775,74045,41001,2899,84773,28012,9004,79082,76761,23288,96321,58306,99316,78722,80574,78162,91268,11489,7558,2795,74758,77818,21269,86896,31103,3722,72216,62136,24982,88232,60464,75690,91721,51391,32261,36999,19568,81523,56219,97405,53440,87074,7171,85586,48983,66428,94501,15898,82240,977,71638,92263,90432,93483,75909,46113,23231,68974,57785,1644,90967,17497,58642,7182,86078,79687,71741,64079,48555,20577,29233,42682,60726,74863,89095,31707,83793,44698,84239,70413,42981,84122,2431,9352,87301,76849,73677,46460,93839,1519,61043,41163,77113,1482,27351,30888,61447,17016,96662,97734,48048,55877,43582,63128,41240,15883,96067,88777,47237,9169,15623,17199,88729,49333,58486,25066,39396,73321,22245,1641,10155,47650,26509,96921,92245,92540,97532,5716,89302,13329,96142,10933,68310,11677,17767,41746,42791,78621,41569,4785,21620,55173,43107,40095,58160,76539,98307,64130,18043,12631,12308,17282,85141,78103,44890,39660,99765,67794,38228,1926,12356,48923,77727,88298,16329,74384,29964,45862,91982,35511,5160,17435,45093,54513,62261,31098,87557,21546,54797,66148,45742,4716,66743,32700,29687,10575,46683,52767,66172,37510,88508,86387,63966,55039,72551,74353,75217,86930,81225,80924,91404,15833,77423,21937,2347,70801,51076,61104,72776,70842,34310,64372,84912,32985,63950,70688,39838,87175,78720,15122,19513,1255,76449,49752,16741,45836,25878,15256,73303,56601,78082,59450,79157,82100,83196,20146,88857,16215,78933,82557,70447,63688,76650,75018,86664,28584,53443,68594,93105,41759,31989,85866,358,86516,7648,9185,61472,10850,9820,13987,60074,51136,9774,48776,88784,710,46073,1770,15211,91342,89493,32275,82176,29867,96043,42391,66951,68457,50831,7877,37764,54076,82586,74138,45595,92001,22960,60540,26563,43956,76137,33009,57480,7599,56836,8403,5926,78651,648,89343,24901,52933,33745,25589,86156,75933,10996,35680,37896,22133,36474,54320,81202,32494,9887,26848,84029,49104,64189,19735,37321,79992,51335,88650,42889,80800,58944,71539,88240,34042,57256,65458,11984,45341,48326,51442,81670,71020,14415,60434,35352,50697,48911,24958,68242,51497,85537,46437,25386,29717,1894,68168,59517,88984,62077,26641,68744,7439,50632,88386,47146,81243,8340,81751,44312,70771,5961,87180,48653,56858,5066,408,84673,27713,21085,34920,36681,41131,73114,86339,90425,15135,39530,87728,60954,53219,81555,77428,59612,69004,10783,6739,70658,52562,82492,39857,63435,66350,76280,3073,61352,76989,14218,37500,98163,71518,49760,10590,82142,69412,91927,86254,57491,91130,59522,34412,26919,65967,46532,99681,28514,35357,3884,15298,41936,78072,93748,61684,44460,8252,73208,34747,14577,62421,19643,15181,71647,50242,75727,16425,47140,14552,22411,75601,43996,25618,43440,56150,50799,98028,64129,46159,22785,16804,19615,6119,25873,50076,22176,77605,59273,97493,75958,49190,23696,41423,17604,40983,85804,61158,11830,69794,44484,7483,17220,62920,40542,59686,98916,14419,10175,4516,21129,69752,15985,85771,79412,38108,53223,61357,55473,48162,4636,71190,92473,47308,65015,46529,2211,34379,47846,19257,45021,71505,65521,25562,29472,45511,56713,5102,54917,82391,5413,38747,58336,85913,41950,94462,83212,87266,26708,39473,28663,94292,41157,93207,63629,99715,67352,47687,95160,33829,45396,98545,21863,28888,86010,16672,74222,59874,39743,61194,78396,84886,24942,11806,58825,38031,51979,3197,31575,5117,37217,48376,93954,65555,25920,53633,56741,52596,88923,45257,76457,68583,89354,29047,21873,83568,72882,43532,14938,86561,97490,96305,26079,40761,19460,90791,4558,86656,18520,22120,81207,70606,33106,50511,49646,70420,13792,63398,18833,83558,77080,38272,85150,38831,14851,20300,13393,98559,10107,79117,56418,34391,37933,50532,40195,91370,15332,2143,25699,6998,58322,81459,61849,46349,73074,24125,34999,17238,45149,43543,59084,51548,82555,70685,54692,38836,35821,7132,65238,42842,78369,70123,72281,55254,12030,35133,68846,13131,15601,9427,89165,43758,5943,40024,24283,73751,69989,52912,90835,34587,39534,6924,63870,52694,94107,45450,95107,92547,60662,24408,77492,8896,55322,49021,57059,76809,59230,75485,66016,35556,43536,81866,21780,3260,15521,29513,26392,79618,77640,94351,4501,75689,64835,61465,12925,78170,33018,95096,94510,8841,71082,7938,79883,50901,18390,16421,60078,28807,93395,26733,28153,91621,11305,17523,45988,9583,68043,63464,34472,23055,77564,3356,16845,40756,1794,72404,51157,21784,36813,91200,36588,36444,82659,49472,12684,96393,99469,45268,1929,2784,23026,73099,20708,30844,54111,53207,93673,36334,84617,81582,58359,2103,23346,68220,25947,69354,72053,55816,17800,28847,86198,89367,6153,44783,47638,50108,47111,76,73931,35089,39845,68137,68406,7996,66170,1020,27602,17571,89122,37219,68091,12542,21619,65368,99867,1471,32379,51619,91160,11151,73072,8363,3005,39549,4345,33139,24188,56931,65864,54046,47212,45198,70276,76673,77967,68149,82509,78562,54973,28088,1002,27169,86162,34800,8681,52894,20511,20181,52025,63469,5469,84298,67211,45696,99164,6064,21242,9083,58528,5225,47631,88168,13008,36592,25942,84172,62523,39655,76712,97489,43033,27994,85894,77800,53306,15065,84358,51960,99537,34604,96551,43155,46895,79494,16383,63004,95222,34170,33832,10649,64265,59096,28272,81597,76045,21164,42551,98403,83446,71070,43477,39774,91266,85525,47396,69772,49678,91358,66585,10934,20301,52591,85673,25626,20023,47026,39474,89637,84853,24760,51360,58192,53514,62958,47743,49097,93601,49777,52280,68798,32481,98299,98183,91454,17219,46831,57015,992,80358,28203,69671,89197,36313,98937,50166,75514,73033,2774,25849,35493,36842,55800,89037,98697,36346,43407,35708,50783,70711,89132,12099,10125,9891,14514,71256,35738,13258,24395,28339,99038,14523,74291,20471,11631,79147,25148,15754,8840,34287,37349,68476,31075,38778,50836,65917,51351,73018,36840,67791,60987,28097,43222,54312,1584,39979,27281,16759,87149,65833,48232,98951,17304,40167,28965,3762,71491,15215,39678,17773,71482,25551,91974,77323,36804,44143,10954,94122,81151,91677,76633,51007,29578,40682,19467,28879,48328,35129,36509,3367,65650,24788,8859,57790,17991,80837,27904,447,91060,45245,84047,57045,55939,3416,9139,58189,1397,72171,38789,76707,62011,99161,53289,61263,59701,40356,6017,57393,9187,11947,30754,41661,70090,56738,16349,14567,56316,44790,93150,52715,84988,6927,57780,89990,24943,10413,23759,11943,36377,65941,6380,40160,81615,78545,54331,67490,98532,46414,69747,29464,90761,34327,86399,98770,16098,54262,48861,27746,7082,58673,86307,81586,82961,2565,13474,34677,175,30245,5068,30669,45277,78916,62187,5034,64787,91445,2224,15229,99195,12330,56250,98962,816,36209,41570,25176,79071,60159,50652,44844,73143,26006,92058,69848,29805,32596,50206,80571,88005,92181,95412,94877,19312,47165,57862,21161,53545,93366,16499,88289,82531,81248,98056,2742,28330,25576,45770,41412,63392,43928,45233,67173,55169,87427,28319,29608,31897,6371,8532,16777,63941,75389,62721,14069,42282,35878,7204,5959,60034,15491,49006,27174,28650,79085,91340,51365,69041,43215,96436,60880,85433,55036,10708,49456,85911,2311,37612,8740,45439,13900,52689,10582,46220,97562,70383,83684,76003,61766,27218,43826,80159,73515,62625,40634,97538,38530,53579,64638,82439,47639,68044,44654,78008,76263,70740,34449,37976,95808,28694,58869,10593,52734,95773,41753,44574,99414,73532,72343,12620,40848,67324,44232,16092,43052,94097,19131,29325,94375,32132,7582,14439,8116,21273,26618,94325,89299,85097,58183,35984,77056,93431,75540,1151,45310,29471,93819,64924,35518,79202,77993,92709,58955,88877,53650,63056,18072,3105,91978,67498,93268,54559,2874,53925,85683,26950,55358,16111,40342,89291,40970,36950,48148,83048,66327,28246,31008,22882,43665,32909,29701,41562,41755,37295,2168,70114,53426,88089,54868,19210,51204,84359,73753,87187,79793,87121,93427,81231,49416,10118,54112,42199,45713,28001,5898,66989,29804,35007,95260,12740,68650,46653,82775,15652,69795,50016,19382,49366,88404,65963,97325,26958,33384,58424,74264,83445,84228,18157,56375,96782,95057,40148,63313,97095,47598,20090,24282,24214,55672,60452,31641,21905,38922,55037,10653,13552,37866,73434,31024,22800,29162,53159,62226,2291,4569,53893,45446,87679,70915,11191,24488,73091,64384,9041,36141,24146,26929,32248,55990,89771,39381,39432,32692,5924,17425,486,1588,7917,34469,76094,81431,53712,82657,12141,97628,4146,14019,88749,44513,83562,25070,41340,12232,75146,41904,59473,79573,53625,9776,46535,52685,34313,11141,16806,282,88605,50069,66894,92537,62096,35230,81265,13479,46444,78666,23695,71841,42520,10615,84496,8232,38878,44034,92919,66751,14241,60389,35665,98600,68783,23453,30208,92236,60569,2050,52118,97718,52373,33592,54338,64982,14186,82805,30753,91867,3756,333,97191,23642,12743,98693,10840,54673,39110,49632,9447,85870,19256,31306,44488,68576,52961,98905,23380,506,87351,7304,97067,74685,9562,84379,58604,90499,51883,32124,40920,90518,31777,70304,862,68127,2886,46846,21354,66168,18205,48171,72450,47676,2293,53400,552,3094,53901,43245,81970,22034,72381,61640,9580,65432,25686,93349,91688,16857,46791,83833,89414,39883,3721,19625,89352,49208,12533,65626,97738,46026,95319,19442,740,38679,51454,60876,77466,51257,76600,47532,91576,53254,79221,35284,52684,36768,25603,89582,12108,4992,7473,21298,97938,50979,64820,33309,98829,97256,82469,99105,22349,86259,62907,2401,64807,17509,39706,24151,45440,89484,46436,20654,62981,59187,56091,85828,16772,73761,69963,39278,21297,70582,54093,38880,29479,48712,92234,81882,4872,56702,70177,91905,30304,63735,77788,69691,91925,21002,36147,8810,41139,97758,78770,9310,31198,10208,24442,3104,43572,41392,61437,15906,15546,83901,17451,58569,2049,43489,48503,39071,87784,20644,18910,39585,41612,83702,32420,63999,25542,28425,2358,24757,11120,66582,60165,29962,56816,8564,77680,15281,79845,33785,8272,48150,41576,18886,55988,85515,8568,52607,31363,35304,30043,63235,18835,69128,50804,18653,23844,94809,22463,99843,3358,36542,75994,58520,2140,3025,65423,60182,32788,91291,23204,85725,56911,33188,38609,61432,86615,93453,4153,11092,32461,25464,3087,90162,58314,40010,58683,1855,94281,705,70244,59951,35881,55284,690,47349,88330,70300,48696,11775,83776,97046,94102,43422,1688,62483,83429,32142,11911,81077,9348,22375,95095,70377,96544,25390,542,69279,77738,81366,74638,51111,84534,22025,19887,62229,9981,5812,39757,10862,37482,14463,14464,10152,72561,12920,96367,6021,63506,47960,26749,75554,56674,87455,15964,50575,68328,70318,77627,57384,4738,7497,38987,66998,68763,30657,85465,5221,59597,17225,19656,58903,6320,21683,68725,70059,21450,64616,9509,61369,36251,5291,86357,4440,29576,68969,24445,96157,65314,79303,14574,72683,53360,15452,86720,4847,16716,20556,3403,80910,84900,1556,97518,72390,55511,53896,30497,1481,90953,34743,70519,46088,8750,18995,94096,21917,44928,3347,22006,84595,29067,19093,11835,40700,46038,66694,19964,752,25103,63525,34326,48732,31630,34739,16347,25358,78810,8458,13347,71175,75250,81396,64154,17308,64354,11446,24750,28549,20989,29045,75045,46513,45500,75621,90988,90528,93982,75265,91289,63089,22624,77715,43670,52468,52666,19196,92910,59021,47239,11750,50576,16764,9672,60612,81972,53035,74313,44255,17615,12059,82656,851,59824,31631,90772,17525,74107,54434,24079,66420,35962,55226,11417,78048,85085,8058,80085,96690,89427,80502,33082,48219,79430,90401,41597,84242,58149,62616,30631,26558,13069,34685,43507,21048,53454,25654,58537,82221,64688,62521,85989,64471,67591,59499,88113,59105,62724,15606,62296,80005,43784,61878,38247,50896,88725,92562,71,50027,36218,62683,44214,19916,63383,31222,49241,26340,46857,2740,72912,67882,40490,75074,45531,30738,55119,50667,1398,80693,51254,20903,810,6160,94634,20889,4505,5886,29961,72666,6407,98550,22856,76345,14707,80286,84609,66065,23011,88271,56737,88376,82031,21348,27520,47214,789,95696,11453,38733,39169,72735,1097,78890,47387,36191,61833,7199,81941,28554,27019,13222,2722,59685,8592,53122,43369,22667,52719,63155,67455,38780,23379,60006,26402,75566,54521,48577,94328,75716,76394,6851,72806,98184,9798,79386,5216,5353,71102,37637,36120,27413,71555,61841,60039,90722,47868,95411,27429,70522,49985,52656,19189,7410,90440,2512,37275,28851,80097,10433,89070,73823,25312,19610,3804,43344,58172,66375,33008,160,89136,71743,27684,98911,17958,32565,4721,32083,58695,90960,66325,90086,93033,46110,10755,51991,4493,82205,68842,430,55495,79267,42033,40538,5703,19446,1539,68065,42331,47823,21302,37596,70294,61552,82888,18252,62597,33048,39183,97315,98285,7437,15825,47652,98100,22945,72085,90420,77430,76991,44879,81233,57759,19799,46972,48546,90008,24512,17096,23947,52906,68817,19170,81457,50333,93200,66230,69494,10747,21145,23692,58920,90659,33177,74095,36290,69939,3516,65067,72366,10242,39976,27192,45330,54228,71894,35426,61280,54064,86457,49153,1410,4263,15683,75677,35070,32881,10624,6386,69475,25379,32568,77189,64577,97830,20275,71184,11900,61940,21204,92711,48676,84312,88684,52479,36979,1946,59549,67484,19697,66132,68598,41408,17091,10853,46626,48897,58661,27114,16791,78421,81836,67706,36333,41777,17918,15441,55186,14609,3852,21072,94396,44375,80309,16626,74074,9940,20771,78435,53044,29365,80719,33050,87580,14990,94605,83287,28021,58806,13774,24683,74970,24385,19158,61573,48168,19593,3492,72101,59738,80454,56376,96143,83570,38129,65392,99021,4705,97243,675,79031,85235,5755,3209,7890,7203,11832,56475,78671,33168,76532,83320,28969,12365,53617,28122,7957,53970,17662,75221,73943,83607,85757,43267,69751,57049,46391,18682,1036,92686,70836,26140,74266,69138,11290,41710,79281,69468,96462,72797,18606,95703,79582,4271,10211,78091,14710,23489,79140,91378,26095,25414,5441,61663,55608,91416,88221,96194,45661,825,64284,1055,69676,46138,18947,37299,50198,74123,58518,61144,81211,95872,404,26229,78098,31615,65644,6526,67625,96070,49936,44647,2093,474,48953,56756,95430,38458,24835,14114,27345,48206,69502,39609,40459,24326,35407,11690,48102,633,18547,90581,52618,67161,73748,44183,56184,98081,87292,5579,29821,99407,51744,98724,83924,91911,13163,84132,52922,39687,20422,78403,83761,9640,4305,47979,21467,49223,60005,86175,26836,62734,7065,13469,43634,91650,83126,89124,9084,62516,58512,35552,46750,3616,31550,84749,39952,71451,59568,76078,85059,66545,45568,77874,51245,53509,33262,57235,9515,4398,65288,8077,96578,35660,92488,35795,13815,41943,36513,83150,92632,70315,3129,98152,93934,27327,61169,41866,58468,44533,2372,24315,77415,69189,14525,37897,66763,6319,21349,91390,14818,17124,87169,17012,10886,87407,22127,67560,47358,12662,96987,94759,27579,72750,47204,93614,13277,50090,6665,63091,82341,38950,2423,36666,69092,76546,24004,30135,1718,26675,79785,95609,51701,78699,40959,93196,70941,58321,27902,10599,26622,20180,48362,89293,80467,43757,7246,30072,48364,69345,88493,82035,50663,63386,53826,93970,75108,1783,61489,15860,90414,78233,5935,26931,64781,42250,80543,94202,50,75976,34001,30244,99390,34411,73170,77844,49926,73571,75459,17310,39407,5957,36521,62170,3817,16878,40152,8239,98470,29537,53395,28222,8508,66454,70603,47797,48429,29487,79724,70471,54806,23163,36912,87707,6917,28519,58097,24866,53843,27780,52402,32063,49101,28858,74576,68438,96106,17331,41489,54080,33690,57099,246,67359,72976,24821,27776,34186,36677,61086,21773,20499,32120,41738,1079,51699,58653,96567,70866,23632,63279,81409,8835,41984,8479,16668,70908,31691,6975,77706,94386,18980,37837,14547,12653,42618,98428,78848,14095,70591,19431,95677,40673,78193,32509,50949,4883,42139,92065,48781,35689,11377,45108,70002,90872,69954,90920,17085,38543,64832,81179,57205,3651,90598,38282,48183,843,74551,68120,80540,77952,58696,34282,75628,37138,30042,46814,30321,97769,40161,90686,55273,12088,80727,66154,32604,83618,45898,36139,69987,24708,20781,11150,88861,30204,10447,34532,93740,3529,86645,61100,4162,45826,87331,68318,53456,84101,34019,68281,30580,19623,32018,83660,76208,84120,56046,93457,83654,78710,89564,81885,42030,96898,26674,32869,77836,86769,93166,93475,25788,12110,60314,94106,9010,98977,34711,80557,97233,22035,98652,31083,19307,67911,65942,17705,60144,35431,1286,67208,36462,49808,24328,92693,78469,20237,31099,77849,37391,7448,64912,49734,22269,14251,45074,99514,27674,87605,27290,85834,77847,83107,97494,4308,29116,82285,89618,83720,6701,95803,10803,62312,4486,76417,95055,94206,60981,57550,49158,61817,89703,10533,98499,93487,88980,4807,25693,38630,64142,95698,96394,75143,58591,90289,3838,76061,14319,607,57747,69006,34638,48982,67868,32255,92651,79808,64122,62207,48303,41712,57547,91403,78845,72297,92869,77722,28940,43038,36714,15641,82651,64211,69483,92835,15951,26027,98876,71777,79259,24234,79443,91789,54564,60603,54509,23941,89563,27784,54914,84930,34812,41371,78060,66176,24176,70661,13337,93633,81443,86868,95972,16538,51470,92853,92653,39570,23879,8779,39153,62555,2078,56098,41251,50407,42039,90213,90198,97026,84331,10608,69187,62982,70560,45210,42118,37563,86072,39764,48430,53282,41080,36487,86587,96971,82692,60980,11517,5685,53691,61487,26537,38492,19654,72935,69953,35651,53497,78676,56162,17059,44199,55756,29988,71561,97805,27403,78808,31165,90316,1931,87055,74004,77742,72106,302,27503,93580,78131,26866,28932,4674,99893,26297,12016,29163,59039,53584,55414,63761,81198,4189,15967,97451,97920,13613,79019,90554,88796,91310,83546,63070,39342,56029,25091,92601,80175,61167,386,88713,47898,62590,46412,89573,45921,69199,13350,80995,5783,94958,16214,3750,71728,16921,72433,75662,63599,12661,85759,82843,47420,98282,2983,29394,39235,12130,24622,4565,5078,38329,34099,56726,29915,21513,569,61874,63933,48801,34899,42610,89330,47832,67610,88712,83008,61533,53658,50037,5809,89841,55736,53940,20162,30945,6523,48314,70465,69601,3775,1249,87637,29938,97183,25278,66685,43160,32438,23446,33524,67685,29966,80182,52501,84794,77330,58152,5452,83339,35405,72560,25714,25916,71783,96839,9970,36889,9141,29382,93613,17204,23697,41532,10455,45916,50449,70986,82278,63650,90498,94271,68850,35425,65454,27181,16824,16879,39863,31863,25167,38319,92144,47075,41417,89155,52039,13380,24731,23144,65794,41999,60120,40857,76029,63701,96473,2063,6645,20940,13,26734,76963,57467,97100,98363,18656,21721,84089,22039,56711,94231,22901,54926,3925,75731,18897,11369,89881,60387,10794,31751,84126,66405,7581,19645,70249,50149,53721,69826,94342,33994,94383,35607,11736,72449,99851,43471,72374,19118,68141,91568,38668,47623,70535,19555,47632,5688,57436,21939,95507,80494,29293,39597,19585,89991,69080,99264,6695,60707,74323,35541,30273,61368,87040,48864,77417,27199,35083,31407,33157,91656,52181,45593,53499,81578,27659,38143,83616,11630,25246,33668,93165,92061,31437,45539,92524,32286,4014,11570,76188,821,22591,39196,75057,53737,57623,38912,46728,14828,53049,33725,25655,34187,13093,37180,74712,48022,58241,63601,70611,30061,27585,78402,54756,72309,29423,24555,50816,75229,27198,90409,91664,30776,96565,98214,96701,50734,80006,84322,64222,40600,3795,73687,77203,54599,62827,72509,18543,89901,40227,20172,91653,85330,78958,98209,28460,93960,86672,58502,51284,59625,28902,70079,8757,68295,15005,72777,3159,80462,7329,7876,96781,48282,44588,21792,91544,42043,8878,43311,84542,83523,39535,84389,23258,72994,35334,60217,35606,11683,67588,53914,80525,1701,23736,94083,71026,95470,61534,29533,64193,4276,31893,90909,65378,25553,38380,81830,85008,8514,824,81935,71651,4240,94069,1413,19063,67521,60583,19108,59455,12545,35491,3608,37728,4479,37127,57515,42387,91634,17149,53491,64538,43821,1160,63098,68693,71713,99079,65735,66886,9211,76202,92505,72163,90677,71640,94208,25169,77214,64131,96866,30308,30942,78070,20785,91420,18460,54366,26220,13925,5882,6013,71507,47690,69481,13287,75617,46873,67227,80512,6789,32592,13773,18783,97277,14006,74799,48073,61531,46384,58734,94904,85864,65964,66504,86253,65657,77850,93145,63197,35566,49762,11456,80077,85404,54204,56409,46162,24333,99487,62768,23352,98433,89824,8531,32660,28900,73769,74249,60762,60061,89656,50758,48464,60227,17517,60948,48924,81807,69253,13448,27117,78401,70813,24431,89384,70016,27264,60849,26367,21864,73408,47611,46329,30618,21259,19511,271,73540,81985,17407,44690,7754,77119,40485,74933,27363,27495,58047,41122,52137,97780,59555,41691,3383,29370,85000,74185,7811,28286,51633,25154,69037,44832,62808,10999,89096,91686,87844,3245,15238,94792,76696,57209,54865,98115,51402,14644,97715,14919,84650,80608,55171,1293,80794,17359,68818,35120,75668,6416,48877,93946,43639,18499,61890,31270,72878,48573,90613,12464,74759,61567,532,21314,95914,73871,94230,25791,79321,41070,30487,19782,69422,3288,6554,46930,26236,94855,88389,11642,40893,64389,47522,36922,30236,45885,72614,39566,66188,55995,80264,76615,28259,73439,56320,19597,84269,31458,28020,42880,31569,32825,26166,40287,38028,95631,40620,79154,46016,32781,85236,23490,86410,90118,65940,61808,41389,76528,18790,84879,44953,91251,3646,72170,76623,82230,55206,31274,15487,14690,90284,92529,7122,40420,51016,63921,48378,1640,32567,69207,1740,20529,97181,56079,70132,15418,38474,46766,8550,27186,27801,50307,79020,46640,74492,44764,27828,34787,95712,16985,52632,98119,62124,20187,82932,43053,99170,38524,65620,23916,7940,23386,92526,79137,18553,14891,86787,55300,64686,74527,82123,93595,33340,87935,32785,79334,57841,46306,36824,58421,29653,448,73578,57774,76901,88233,3213,14465,47879,22563,66039,67902,80556,83844,74031,1726,67326,36106,36893,6244,52919,46533,27204,80594,89669,30241,39341,20612,83613,33279,51583,4922,81774,12597,26044,57599,57288,97523,90473,82946,83908,76911,4810,38516,75067,6549,87365,95036,60919,97742,4131,89505,98976,32696,92146,36947,6261,83667,77621,77404,34981,41507,77924,14866,25048,19361,6963,7353,3605,84158,13137,22200,42971,4777,52196,88929,78559,85554,28121,63121,86542,60024,39036,54624,93703,7200,62575,73611,91771,87160,78358,93329,91916,46439,42522,22393,66662,68994,58099,58917,89625,57273,1789,48471,68292,74085,9286,18949,65269,77736,61276,60435,89938,14230,44598,33517,65507,76276,57776,13167,46213,46496,29431,11318,15475,86723,99284,47591,23926,76585,95427,96189,46045,93279,60551,57451,66800,56659,38325,81392,96917,39177,76736,53123,64155,11409,16495,21405,8743,2805,13873,51717,91371,67042,82726,3609,35885,90493,5475,19500,5836,12471,76604,70240,3802,5450,70101,66492,7256,98434,90379,30542,26983,92157,6679,10203,2537,42184,91449,28476,66729,38603,91141,29134,27898,43212,52469,15114,72848,6518,7037,97316,58280,8815,72054,15426,9435,31471,29393,79405,39900,11131,49515,63649,27289,71948,88396,55713,48997,18666,31634,2170,3997,91902,22268,60544,85875,40889,89777,32350,67980,90128,34876,70029,8929,87313,95294,45703,52068,73414,8453,2830,38435,51290,59838,19652,76777,88783,83323,83662,30670,77960,86947,18561,48873,64455,82823,77540,24244,40623,49599,61076,41839,61027,45029,62976,17030,59354,78156,87143,72703,66218,86923,11274,89226,623,1200,35547,60075,12396,74614,76290,4598,91360,89240,41061,81066,46405,92082,61968,66093,53026,24647,28735,59464,69731,97880,62286,25804,60791,84700,17828,29577,91969,56007,95392,96606,46579,79439,47145,93526,78154,25228,48512,13909,78426,80377,71345,34974,34342,20433,65254,47405,50877,32114,37750,66378,77234,73847,53672,12751,82714,63284,40433,36498,72702,88010,62134,83241,30563,83423,32549,29055,8739,81032,68437,1973,63232,94659,95493,73360,8310,96566,16620,28208,92998,33737,28854,66248,43783,33750,41821,62667,90569,61071,43166,93091,78327,51550,57157,70736,55901,96588,9168,50921,33338,7992,43883,51014,5875,74501,54512,65349,6964,51763,29295,61395,28158,99853,19507,2648,69250,71395,6913,4555,79990,60699,76621,99392,40927,38055,70384,43607,36467,6899,16245,89775,83117,91795,10510,84550,86163,47161,83026,57904,83288,83005,19760,1260,65337,32775,77698,86637,75044,99089,39294,85837,67257,58419,99600,78032,56933,42667,69210,12348,55010,59135,86404,34744,75356,28962,846,96855,91440,44194,82231,9921,96255,41588,88913,90189,94458,31011,78122,97964,68820,85970,9678,3944,79225,55962,23097,72628,39317,61953,14753,13594,76833,74947,19193,34381,58739,60568,33392,48714,2296,88439,15427,97664,81273,60905,38588,92823,79944,53820,48621,86241,56792,85041,81886,66195,71332,79227,65091,54307,32314,61126,27336,65113,78455,30904,61209,87359,74706,77011,61380,81742,19261,69428,83883,82619,97932,6001,96885,30613,72953,13798,36582,47515,57866,85988,11961,75841,69158,84419,95054,24073,30727,87366,43643,58008,52658,63065,82543,98725,35082,77902,3031,12350,3632,52065,70891,64312,23414,91558,943,17788,88743,55018,19709,868,16403,9070,33322,34618,47702,10241,80246,25025,53388,84384,75412,9645,32069,53525,12983,76392,14762,98621,61159,17155,13362,79652,49791,37164,49364,51179,28700,78075,68389,14516,42113,34121,78148,29836,72364,79355,54293,89214,6278,56084,58339,35436,88348,19778,98586,25093,51047,71182,48000,57268,68796,48207,73145,85181,82603,58783,95234,51658,88666,10830,80300,70011,29662,56594,23614,24628,69435,37630,58995,65714,98969,62163,25022,11142,41483,93058,19277,12051,52573,95691,24813,76685,35531,46949,14616,81740,90369,1162,81110,15839,94304,47771,12903,33591,91393,52445,4889,97652,5991,16273,97545,49048,84299,66370,24058,93369,35854,88424,4978,49660,66115,73453,36137,32343,38546,84546,10775,34646,7014,41959,31678,96712,37123,13257,71370,31392,32503,83345,28823,23753,85226,62146,17120,73396,56161,83535,55133,3099,34681,39429,26110,76846,93232,44210,59483,48823,64593,26418,58794,99904,49404,18629,59253,57263,43822,86743,30507,57901,95995,32744,85696,67299,330,2071,4249,58919,96663,17328,79828,61893,22382,97535,45295,27365,94762,83179,91172,86668,3131,19897,52534,56845,33112,38685,51082,13605,67907,57275,57980,67377,68216,18925,57470,77629,35710,7746,87594,90755,66561,84951,88334,51312,67796,39589,49361,30661,91176,29598,93618,49449,25766,68066,23923,96201,46493,59692,34925,91182,79008,77872,25198,46104,2485,19900,89287,17582,12812,82712,99354,2627,89730,85273,29833,15316,61286,50215,19563,32587,56605,81694,59178,46581,44502,26396,89430,35013,7339,31552,27455,12581,29617,5674,98819,72146,18877,70418,84834,58031,55013,57017,95296,89257,46652,17253,26003,66573,46746,7322,25581,27067,25511,99417,92111,48228,76559,66317,97085,24506,21762,32669,78950,27128,88337,71536,62497,23980,88808,88367,80604,48119,73304,66612,64278,87895,6737,39776,13028,39986,36785,59920,87089,9147,66533,84399,17302,38320,70770,76458,96268,7586,79214,16827,30432,1597,22152,3783,43263,14396,52629,5297,96745,64203,95177,79495,4205,89882,28040,5151,42367,61051,20546,69487,37859,85177,20736,59020,64394,42625,96537,88541,81822,84082,4049,23221,94741,55868,16473,99818,42811,68254,86692,45875,8583,1359,70907,7301,43350,15653,79192,43544,71272,97482,49168,74011,54668,66629,44760,62688,47586,69,55235,53242,21501,85348,39324,16847,93936,9661,47712,40229,5158,15453,80576,86388,48612,59262,77416,66339,26302,94492,79866,63015,55095,71709,65826,19846,41426,63623,29562,25026,85383,98970,89386,71331,37256,15564,52394,41542,12748,98698,46848,61924,34896,11872,33649,42652,58624,38725,32924,67103,14780,90723,62585,98067,3923,40488,7720,82662,79145,69245,20778,43269,28491,13658,14217,81329,19530,30079,98721,8917,1339,27247,7698,85688,76852,16173,65903,20424,831,11814,25258,57493,53933,98663,11727,19102,19540,84034,52256,84670,92247,77556,99083,87013,23098,40709,22492,55329,96015,20408,56596,74428,52358,17256,50114,82541,5049,47082,5431,78486,98436,46958,41948,70565,63275,46085,3366,94233,33941,1430,95908,14135,5294,57693,11687,23199,75364,43071,46868,54174,2329,4174,77953,3040,61635,30784,15476,19658,42792,42223,51411,54924,32759,4544,80062,78870,87060,66870,54041,13071,1711,33162,57005,93133,3265,63478,91187,63402,83641,93320,58150,98042,49848,39374,20956,29628,72928,49487,92369,85889,87079,45312,59010,35711,4365,32613,10932,99446,95180,90557,90798,14187,95176,39344,56248,57979,40643,13544,79522,16629,15396,55945,8080,43120,77584,9342,27915,17968,24663,49268,29762,69303,84015,36419,72425,27996,95529,68206,73357,58928,3179,17129,94433,40929,9753,66342,37882,33827,33411,16126,87450,83631,81766,38048,56892,77930,91210,29270,76859,89871,17515,31771,6195,44763,96681,36188,94225,53210,841,86472,66749,40186,20248,54072,51444,36719,18129,76340,75116,70885,95134,51502,56117,83648,57107,92394,50382,47390,70862,82996,90116,81691,69465,56003,90869,83544,91091,95950,85536,76520,32984,49698,11899,16433,55076,52343,54987,8431,86473,57187,8287,28749,31870,39879,81039,93863,68443,16843,60216,4637,9297,5011,85295,99470,55667,72657,27066,4797,36622,12895,12450,84277,41748,8545,26289,7202,71205,75204,58327,16144,38190,62730,809,73672,39619,56610,5519,53027,22329,72412,47710,22081,7051,56447,4067,86773,51452,23964,68407,58503,74528,65614,37489,90427,98837,50806,19576,20566,99661,2650,1659,83750,81684,12314,92967,69878,73829,41470,9799,25949,94270,53705,88939,73624,50716,28328,29167,70267,1533,71423,18360,23684,3746,73458,98800,70639,68114,64006,33088,81320,7377,74546,2202,11836,19501,93373,52430,27869,93127,6612,94239,14945,13130,54478,72468,6845,64464,77984,18749,62649,39442,85966,98129,15603,21421,93184,15404,63126,4421,26050,63237,84847,14087,24611,34069,62322,27537,95342,21439,14070,927,28675,278,20169,34012,42449,21532,88677,50988,4392,85896,52729,21847,9739,93753,58288,19607,79406,15439,50738,88262,43377,72640,76988,16742,39281,33346,59641,66901,13894,53296,2404,60037,63138,33174,58560,70349,6075,20884,14008,27951,32454,84621,36502,12468,88422,1345,70346,97051,26233,36175,83942,68668,44907,6780,95708,21543,87239,41859,61837,50171,91579,61223,985,93315,16541,21289,91620,6947,87003,61876,21290,79174,96336,86043,15342,77295,52568,73288,26463,70457,57437,79396,81499,42837,32210,83713,33936,60660,27187,20615,61903,74828,6063,64502,27998,94512,36633,32476,67418,36774,27639,71737,40760,41630,4011,27557,13844,1108,27378,21819,47838,98972,62306,5715,54569,92811,83538,409,57164,14379,77622,25773,69503,17682,82209,33817,33439,8483,72615,18670,47733,16228,69515,29830,34058,54507,10420,20209,1908,4093,78096,30401,8460,3271,46796,24633,83097,34808,57983,24833,61219,16058,28645,47560,31659,8472,67477,85639,38345,84808,8560,88444,15637,5245,33797,86262,41309,64600,75641,60589,96759,30519,89500,23519,91826,71607,73686,33456,45575,67852,60173,66238,39158,92292,68081,32446,69787,49909,8157,95785,24416,54963,13627,72534,84633,50340,96370,9571,88359,80689,87368,81021,43626,4030,77291,28005,28866,45307,50429,29,8915,57132,72244,93275,25774,26440,6794,44640,40950,67675,66969,29324,3010,96794,62133,23580,90589,93590,40022,73320,88013,3576,48670,72631,15035,59130,81229,94728,70269,77518,32197,26728,92402,95301,95201,80950,31921,12007,67924,32223,59298,32398,80597,66236,29761,88524,47385,78052,67092,86946,37649,66657,72471,28232,42244,93622,45660,70066,34268,15537,50718,3544,99863,79757,35921,9958,25348,5664,19211,4589,95104,91639,66322,53375,88816,9345,96264,97783,18904,49545,14635,34592,65299,325,48312,41372,98849,90105,89062,21498,66498,7813,69858,71168,75292,43580,40826,23409,75871,90020,21039,55600,59757,94924,23760,57217,11737,7770,6342,3119,33471,7005,90998,35812,40863,9126,55084,10686,47735,67043,24421,24989,69180,40769,59509,44530,90666,25116,88437,68628,79102,18937,6616,47804,12569,22892,96306,5956,41225,42554,9171,98375,69665,99735,3705,91032,99666,5104,50519,19937,20344,68032,76722,71970,69406,28539,37282,91849,45173,83054,76751,98250,21376,85124,22991,18903,99805,61555,97917,47149,84409,16597,80755,38732,97862,75270,95970,12651,35749,63028,99878,44154,37877,82430,53561,71357,51292,3717,47957,90361,51277,85558,28009,4912,84810,45202,87934,57583,78600,96466,37186,77006,81809,73874,20312,60192,6844,82054,66631,44651,53878,47429,52041,18407,84020,51692,52381,84632,12897,27577,97620,89888,10854,91630,18984,19862,18020,66849,14954,2221,48372,41560,6360,17900,24105,12170,82227,38963,10920,53662,66241,35527,53260,2052,26356,2412,56097,27119,17175,83611,15496,87493,31985,37327,11655,43842,14457,99749,69104,48570,64715,28798,41140,1243,34866,76163,35452,29696,29816,94080,88595,54016,20526,94615,60871,89213,50583,88430,34232,53291,81356,35144,17269,30450,74168,22475,25407,84555,75114,2633,42161,86068,9140,65696,97663,82146,69612,45855,64039,68936,57135,48288,31035,8808,85947,59745,71254,4902,20008,71602,8524,33596,81955,227,74953,18188,84689,55176,38398,27960,23031,32001,35677,38371,93510,10900,74796,31650,9611,91950,1311,60832,99320,18791,7000,4988,79048,53769,14438,43792,84765,73905,49622,55603,52623,85531,69776,1563,14177,94485,60309,98728,93519,37382,96912,19879,48124,60582,76517,82673,77855,52566,77835,55922,56025,78151,67049,35979,74765,18807,23020,66240,7252,22020,8612,29145,58956,67300,85646,71763,40452,61485,28130,10751,60360,90670,47909,21796,96873,3835,38895,2033,55790,32951,23233,96385,5433,81561,5320,37456,8271,28979,30425,35771,45466,99914,32371,62203,45779,58790,60438,98118,69150,27323,59740,74040,70745,2053,82395,34533,70552,52285,38754,96414,39187,15679,221,24144,9081,56438,17267,45956,22694,95277,8061,15277,60846,8591,8134,83650,12697,83614,80257,92744,74,2841,64301,98057,64748,46093,852,52482,6117,64468,45559,24142,8670,30491,56685,71804,59294,51035,65289,50015,86788,40881,59996,49096,53934,22162,62926,71208,17617,53331,65328,20848,37007,4472,11101,35627,9460,16560,7018,36673,82902,74140,12936,45869,4445,86453,37631,84417,40221,22212,33172,15828,73422,2207,51186,26104,26226,27705,71513,31341,8713,59017,540,75421,41000,73421,96913,96619,80682,75055,8969,79955,24409,89743,56747,10032,25038,26757,38677,31671,64866,77062,64644,31451,64630,43885,43229,92719,79791,67887,45912,14890,43168,81200,66736,69247,15743,10489,16083,87749,46025,51825,62511,52503,82770,5977,69221,79219,73542,84960,99500,36122,64242,35970,62424,42036,44010,5410,74850,29957,202,52709,48547,84174,71323,48626,31738,55870,15034,2881,42833,40343,61300,91682,75504,82286,8049,16976,77712,6500,29637,40772,45003,49655,88160,85885,55400,20458,92499,57462,75448,26215,68299,92051,1491,29528,62513,21035,41244,91430,9734,74637,88203,95233,49083,22252,70919,75911,56394,11265,18147,61875,29770,73262,71213,75063,38675,75539,47635,90664,55618,63092,74097,20460,70575,79583,17457,62058,99595,1622,69362,96033,5917,79009,83826,20352,78235,49516,92009,85776,65685,53953,18251,37078,36065,89127,48536,26341,12514,90903,50350,5973,98648,85288,12562,47697,31823,56688,38218,31052,19931,8758,68023,9233,42356,99606,53165,62749,72949,36766,21385,39521,32483,91245,63139,63752,99882,21757,1697,12580,81258,37120,9537,61539,3041,55213,18522,12157,372,66326,85358,87004,94031,3064,48660,97223,63766,6513,68198,45258,70949,35216,70926,53849,43548,29311,33180,28070,53377,66770,67127,90052,83398,83666,13778,89434,42654,17176,57933,38285,38213,52723,74028,14536,54978,56064,15751,68986,32373,44007,17526,24063,30502,33571,32416,60307,63783,94522,11358,65202,83840,10889,6083,99398,63162,59167,43084,3274,1233,61382,10554,43981,6969,59551,99866,66972,58784,59494,47281,57698,81862,72973,43424,70032,49355,94974,55969,7621,10820,48318,13238,75604,70894,55986,77244,30018,56935,76503,10074,54979,33714,64003,6298,23674,17875,89390,36994,47465,17896,11198,1634,69910,19519,86509,67140,88987,1937,96454,71285,49280,40423,35688,90307,76066,91298,26797,62174,9429,92308,18894,83625,57352,68519,43081,74402,81736,69140,89265,77726,26907,89349,32081,16138,75064,55761,54706,24425,14267,10677,61558,53811,96805,69285,8598,37607,43113,91162,5877,49687,29130,7309,46446,75806,689,16172,47871,21216,31496,95241,27359,95033,85178,12946,39878,4123,52914,15443,73008,19523,54185,62073,71222,2912,24562,95429,55179,63674,34922,55043,22179,8098,14705,30434,29379,77911,96001,53013,2531,49495,18892,74858,16021,40180,1384,89899,91375,24069,13481,27740,86233,77889,6580,24269,86443,38854,98412,43652,83033,86661,73450,11980,79975,58801,25355,16829,94253,1024,1001,37833,55017,34375,87910,74636,38312,93356,32915,47545,22754,43701,28859,43521,69091,7812,61826,73923,75737,10114,28684,15193,50074,34622,1791,6992,36967,44224,59427,42296,72757,84653,8850,97800,41127,63625,40489,2903,3249,1775,77201,47626,63336,37857,34717,22603,40210,63432,75898,37434,29089,54840,21182,35671,65847,47452,19692,35626,88236,16974,71140,63096,88926,63456,14999,23018,5739,61938,43482,31789,11871,89552,23850,30915,30258,2990,31787,87787,72386,35748,15148,67533,98229,20833,15673,44252,20733,23721,696,20089,98695,44381,89138,41409,83799,20957,61186,70366,2597,62743,6085,85116,95580,21923,35696,10364,56354,57543,67587,18030,37449,68481,90395,28635,20168,2772,88758,7099,0,62397,84671,89579,65805,43484,85212,64425,15702,5841,24329,97428,76265,91466,20337,86273,29171,12369,32021,57432,91464,15104,15709,32341,53232,87613,33910,41380,63230,11567,46184,40406,61809,48657,27527,35765,3095,49888,12874,80752,37835,46861,19239,14716,17479,85179,32865,13327,56273,340,40341,30810,61337,37666,26834,92333,43598,91615,83116,23362,62526,85581,28341,86560,99205,29465,3278,62524,87943,29790,26183,53392,96310,71022,92592,51667,212,58925,60089,50812,31058,84354,32325,98963,51261,28083,27918,25343,23162,54283,39832,30532,8390,35800,8831,14557,40825,45458,50594,9793,55451,93179,49461,36853,87037,89503,26111,87177,85304,28417,86100,78529,33402,86033,96232,66818,79193,28257,22883,48088,88112,37069,10602,69990,79255,26182,244,71201,69350,81825,80790,11130,30997,33111,25432,3822,31840,86943,76000,91073,49022,11921,38529,4905,17631,58115,42156,17770,32237,45381,39055,33200,7186,56284,54183,87295,76031,39361,35963,65506,88882,60265,17806,83714,50157,96519,41403,83350,90907,59626,8527,94437,20444,50715,81472,82338,96918,41238,70962,26494,62009,92169,90928,34927,87393,171,69442,32323,90388,83853,57488,20014,53005,98788,5236,99426,34637,69994,18683,81142,63745,93750,96021,24206,78097,93500,36684,65433,25259,55285,29983,51977,22974,34990,7829,18107,97826,27569,38412,83127,48649,45094,72408,12802,15792,49723,49972,13521,38919,85216,3789,59723,87110,18029,24797,96517,7633,7801,46554,7571,8618,81087,67183,45211,33207,17964,97300,86468,57368,43530,69923,47440,29551,52098,85069,60893,90082,38974,1126,72007,71388,80573,44548,86469,38508,32527,92638,70629,95746,8154,41610,73926,1720,26001,67923,36414,8719,62905,44044,67076,85959,43749,47097,42172,425,18164,41402,15376,60891,87850,43610,80676,61738,49511,2858,59458,70422,78795,14363,64631,93081,80953,62414,65523,34593,76006,34067,31246,10401,31834,23151,97619,91432,6908,35109,94908,52800,7786,73658,61954,77990,14214,59676,21704,79532,4087,30902,97531,68780,76275,24437,48926,3134,67221,31132,8325,93544,25142,33575,10680,48127,92859,20013,96559,11816,99344,55889,3149,41432,86035,52603,15023,35936,63035,73381,5644,65130,30782,21861,5927,1654,99228,2833,92541,32276,39770,58641,291,92620,20005,87556,81958,82624,39819,35841,30113,17218,9840,41079,62271,701,12877,92602,18245,73239,43181,64289,1620,684,9474,67818,31805,11306,90411,18907,84582,39287,50440,22529,41025,4584,38528,85637,83401,18449,56803,18505,74014,59475,27232,11594,56530,33944,40862,5145,61951,36023,54110,63487,23448,78473,10627,16428,95231,94946,74795,51447,49941,87535,94277,28945,58020,17,81844,123,95924,62654,81567,88640,58186,27666,46794,60390,54757,97294,91804,70601,29263,32026,50694,48140,90270,45650,459,39518,64539,93229,31182,98411,33070,88036,67131,28525,64969,81136,10995,57796,75112,77748,92694,11106,1905,82113,52178,28825,80889,34325,44409,49156,1999,23610,12948,58899,72662,738,9825,11569,99218,96229,73103,60795,81695,54491,91648,22823,62515,3343,93111,70209,85457,71876,23391,58083,48086,85095,1919,20888,82408,96534,67656,85912,38283,42812,17714,38430,25460,76961,96849,65803,74352,73440,59645,56133,60563,72169,15664,15956,24259,60340,23558,91539,73618,47665,20584,48770,3653,52396,19548,21993,35620,30230,36568,30091,15454,89323,8150,64461,88061,93140,97192,16447,67332,17626,38695,61262,66708,38386,83452,92232,45736,80750,42980,16253,74030,24221,3388,10234,627,77851,58633,94732,89288,71531,46638,91305,51185,46487,88180,95985,26883,88498,68636,75180,84284,21915,6586,59855,2180,8022,74999,21808,75892,49676,75935,43045,39031,94680,35643,58447,97284,18435,50774,71143,36438,48239,43633,77992,50848,63792,36099,47274,89870,69167,92079,21168,54028,81480,13690,91837,27163,2571,58927,34247,20435,68449,4774,57756,79335,83542,76502,29282,48751,25262,2085,75289,93260,16346,31180,88381,76845,2964,33193,85400,6396,31033,91395,39213,6756,47936,88006,55587,8600,99154,50509,1139,88851,87855,50607,74917,95178,77348,53962,46146,56465,70587,32653,80603,84758,87153,48115,47045,89208,80050,42102,96217,17628,20279,75750,27386,56884,45424,89081,77572,89341,87500,8240,85599,52187,87714,71417,82203,50534,56822,17384,22831,34694,35480,9952,55009,71197,72267,43254,33791,74182,21490,3679,834,33465,29591,10560,22787,54095,72006,54679,75348,69112,97946,67240,82264,67993,94593,47159,27266,50573,39504,60156,19053,87777,72568,21776,23877,49663,37948,57272,21752,56971,5701,76278,79966,23568,52167,4267,49832,13597,60678,33144,74474,53861,77672,81977,59632,96943,1587,35444,96985,98664,88956,96257,55746,78879,58295,46778,53407,95834,74588,17362,88580,91536,54861,33862,75868,71247,51750,29981,30219,44175,10268,94235,22801,41235,69991,42243,62703,9244,10764,6524,13312,93198,83490,66294,25742,37815,37992,66437,24687,77125,17334,62245,32677,2190,23112,27999,6309,49693,87097,39493,53445,33543,33375,8243,63137,90276,99932,75535,13486,86485,115,52590,7326,60490,3312,68648,31004,90083,23074,84507,88745,21995,89134,12772,36933,8655,49117,88867,59902,18065,63935,99377,94591,89030,14651,66605,67847,49145,83203,53682,93849,94098,45118,7672,9464,89917,20622,80100,10789,41219,65697,9134,9700,77684,12329,32428,87317,61745,81981,68103,28581,9570,49748,39421,18326,75171,92010,57580,87696,94883,77297,84873,70826,29466,43028,60250,24101,69271,47333,48099,95287,15612,37425,4965,310,62218,30939,54186,33463,54649,59442,37576,84081,73570,19693,66960,58567,90225,21236,39017,15292,36260,27333,4233,84063,27832,71807,73161,92202,35877,98106,53127,69952,94480,89228,83322,31568,58635,98941,60395,93781,5206,84001,32601,17002,13048,46563,91428,51446,15571,92341,28054,7395,55483,98745,14045,6714,45968,92345,87228,71303,62258,8251,23354,88952,61683,73935,38267,82307,10636,86512,78478,76443,69061,19224,5979,81668,83967,28260,55688,87380,96886,279,93899,29644,82027,2031,190,72332,99961,77530,63310,44888,92760,10240,22042,61739,24012,57463,14834,93743,19733,96214,23358,47388,26299,3349,56291,92240,62349,5778,74956,83921,91502,5031,14148,47752,85117,11219,20970,39232,108,21258,91362,39546,89322,79569,37537,36482,78629,51877,29732,76560,88614,56839,95984,90970,83536,10579,15873,68730,98093,70988,13715,26253,83151,85024,68856,84035,13291,65816,9928,43566,72684,65066,77191,31185,1845,60527,93947,14,66539,15782,25149,75047,52107,46520,61853,8398,33325,26576,85193,38234,57457,70947,53257,50177,5518,90392,10750,2719,74296,76179,74998,96950,91252,63610,30763,13565,57484,32052,87940,73977,47945,53569,48113,85114,75717,5567,6254,29305,18745,86446,81254,69828,19514,35047,36938,35223,33865,11401,95502,21786,39150,78708,96256,87410,35416,19406,98816,91890,43697,24952,13819,59075,6453,30893,94899,9403,91573,9469,54107,68291,7924,57090,94933,70672,8230,82003,48511,66290,17664,13678,32835,56729,36494,82246,13501,59814,82837,29561,85937,93277,27453,10581,58426,10098,32956,24737,80904,58659,15233,67520,90428,3359,19029,63176,18169,38180,52602,69000,42263,17892,11051,66166,94589,12351,20166,4230,14845,90786,98722,54651,76726,71372,34612,60555,29613,33622,99868,43205,18290,43349,24089,79675,22497,45005,31994,48393,67501,29739,42152,66724,82169,39989,58406,43893,46228,1966,367,69183,71240,97816,2041,77681,64212,13075,49798,93447,34501,65010,94715,51063,72653,33666,85795,7619,61005,7389,19242,72451,16617,96757,83637,44237,67709,86201,21855,14520,30545,63452,9381,51595,84516,93025,51749,43587,5605,90172,21466,22718,64904,43009,43834,39627,27984,14723,57787,74207,29594,14986,37130,70314,58997,57239,46769,94305,59206,3876,95401,4532,78046,38599,51819,68005,85294,68849,26738,29585,2355,2250,59231,41537,73805,25724,17316,60155,28751,98144,9321,92380,57982,30800,86860,12423,18534,43103,62353,56909,89942,25318,79358,52008,23603,74835,72982,80123,24375,97848,57754,6313,9351,75912,61322,18158,13589,64761,45334,18567,3960,64724,44726,14991,37843,88311,44735,87534,58698,59883,5392,45137,93648,37579,16643,96614,58566,5630,47857,44197,90088,47929,73841,1304,75092,7777,78399,32241,60213,61580,32833,70659,13391,87484,88222,87091,54798,45463,32749,2867,15280,83563,70742,39614,61392,31022,73582,79510,61864,78380,24120,60288,98888,99734,13367,11891,15897,78181,92515,64510,64485,66036,53023,29874,53748,39119,74089,441,24567,10564,79296,94203,34364,41986,35185,56523,89268,18003,18759,25653,96989,89403,18250,79194,48490,62733,97000,54954,97064,74526,11511,92085,65240,31492,90977,13895,37523,89129,45710,90774,37052,31642,90001,46321,74032,14035,64725,33357,68140,51602,92790,12418,66100,12109,3210,29353,16042,56431,62838,63624,49154,20076,315,90444,4450,66832,11127,88550,82957,70579,80430,51546,32020,7707,2876,11047,69299,98339,76215,2994,33562,488,30039,91707,85615,16720,61244,73056,99036,59696,72576,68180,10532,69341,51113,16188,57375,68240,27123,99119,92170,81903,87250,90174,3614,35335,90543,71048,8337,66934,20594,31628,80242,30444,96224,50466,80955,3135,54265,79596,931,62570,84604,52832,42066,6791,24913,26617,5931,93881,43914,47101,94818,61822,75824,42757,9368,87756,53151,50520,5971,20661,4490,64345,41496,4301,61498,45039,75471,49650,41336,32778,94392,50183,81290,20699,42761,31406,10944,91110,52934,88562,43904,73546,47902,21832,80854,35777,9097,75853,52576,24033,19243,166,97251,56302,41082,36700,45565,43480,58026,19347,71825,45998,3850,78829,17213,31473,22079,66452,42923,69587,44636,50973,88196,63764,63270,74378,18876,615,36571,14209,96977,65501,54379,96754,89052,84017,79503,55342,56937,69974,4879,32554,73908,93353,958,52230,51066,51569,99530,11086,30742,40943,74900,43772,59398,80275,73432,91785,8799,2652,38102,48417,43921,55801,33611,28146,47584,21102,77643,24228,74302,39514,56819,44885,72049,50273,75532,17484,30702,41090,70412,36111,68488,69696,37520,40250,69728,75534,31208,11972,994,7623,27330,52074,63355,30271,84553,75564,97517,92666,15166,80935,85482,56918,27795,24399,37192,85016,4799,96447,3627,79121,65021,66335,23754,49431,99462,73524,20329,91366,59388,69706,37276,59192,22104,78678,81163,2642,24509,28171,90283,14837,24954,68416,95685,33267,76186,51697,81469,94237,28571,13004,69497,14611,41008,10965,9421,85728,83422,4047,90185,95255,84424,34230,13251,55078,27947,73299,48849,46143,78113,35857,692,91229,99131,51915,36330,87546,36595,78751,2480,3474,66588,80607,1661,67730,87090,74979,99399,11632,97703,18693,13085,63842,42762,42691,91501,81832,8033,53926,26370,26208,67303,51541,73937,54922,31648,50482,22608,89003,39238,94132,81122,61364,71069,32904,43525,68395,39723,1957,4669,55204,5365,557,62363,94087,9931,6890,25850,30909,77759,30752,22992,61840,5803,755,72674,69687,49476,59750,63636,58508,33496,47994,45940,15074,31327,71092,93226,97209,66242,4415,54193,84351,97142,69809,24566,1066,89391,69032,35666,64675,49815,95617,42312,65515,51324,11789,70168,93401,1523,95092,97965,27701,11147,47756,59050,23154,66932,44204,34188,41034,89951,46396,71470,9472,26459,12908,51538,87111,91247,38802,25728,21829,14742,18582,71878,92594,8095,29482,27562,79163,26805,3947,55772,93437,91387,50568,29976,48688,84748,53195,16708,95146,420,85692,95569,81603,75098,2631,96497,33976,48656,12074,73631,95745,24189,65417,76995,39253,69937,89905,1652,13342,98290,2015,27566,80565,28415,41015,34617,2834,72098,60233,94269,67643,84079,6118,80549,98531,55276,94291,41718,11915,20606,3687,80305,17405,4110,89245,54946,8417,37916,97025,41910,84,99018,46237,36730,30222,38101,60292,81929,95862,53310,95779,12605,59288,76101,78375,57781,82590,93619,42024,11707,41322,49396,28472,77410,64790,90667,68073,67078,44089,13749,36280,66090,95341,23121,61861,13820,29818,39137,31462,6858,16010,12934,80973,17268,34788,26347,86311,93717,75860,68432,6009,73721,72003,73237,82273,79833,25282,94435,97116,13248,77439,93131,31526,64168,83221,76994,49566,72995,7635,23407,62530,57813,76957,79980,51677,31896,147,63420,84950,15323,3552,41937,81867,22148,87021,58036,52671,41957,20151,35760,47317,2998,77786,14902,11541,11379,26155,35332,14678,48427,68590,48707,40400,57587,89472,83679,38383,43524,3982,54892,78696,41830,24054,80409,41976,41816,61706,18436,53606,40558,2940,61972,18747,21540,95961,65232,32873,44878,7941,27049,20637,51404,32602,51673,22613,59008,3002,99903,56886,69070,90352,63894,82963,44052,54263,9194,4545,99987,25829,5148,37319,24454,69524,18500,42147,85822,63751,71847,52662,91467,23913,80493,44826,14629,63272,6534,10237,64582,78611,9071,91057,11163,57280,44974,32933,13933,15507,23370,47181,35987,27215,64659,84672,3093,81135,68200,25329,21250,18125,44823,24592,15986,61467,50950,61339,57686,93845,38940,3400,84722,34117,2840,71017,63181,76974,80157,66924,29384,24727,7,87381,6588,94587,60928,2931,46199,64045,33131,68900,73186,11452,92646,28494,86652,36296,1616,91871,31610,41882,46428,77886,39106,90304,78067,30492,7248,19422,88105,85122,71692,31748,65920,27043,24482,84304,85107,39247,46820,79449,35488,24858,73400,7350,3950,31818,71157,83814,77728,28567,58278,98037,31683,6792,85945,73510,58372,71543,36909,84564,52294,587,49421,4959,16249,32803,2300,720,95586,44516,70370,51039,65229,35835,1916,34770,11841,60073,14663,6629,81425,40331,21277,68308,68790,43191,56076,96876,89525,97974,51969,34891,57137,48637,2319,46028,82528,37248,64878,85305,34202,56288,93411,12221,5381,30124,7354,80644,82913,49811,91168,41212,12194,73773,60153,60501,83281,51514,23636,30157,91274,14918,25392,9707,49326,89450,63350,52370,92459,80129,4031,28563,35731,74082,22064,8073,2693,29780,4393,87911,92094,38461,8274,35568,84512,18282,35545,7289,29699,82788,88164,92378,86753,42645,48198,4776,54119,90773,2403,26868,33772,47231,68027,98736,88819,82713,57386,92966,15018,59688,46054,26842,40260,49764,84237,77149,30144,74643,43094,98401,61622,73586,34301,52492,79461,93693,72444,76819,47525,42650,63196,75563,54653,6109,30922,12161,63394,56093,49363,48134,42899,19308,21123,36969,18717,98032,13001,78753,82877,29940,53060,81532,27913,45616,93328,38956,8457,15622,51934,32896,58757,72060,15540,83344,43209,51108,88853,61702,63376,62529,1150,64642,76460,62938,53256,85681,86440,16417,9089,8643,13247,76181,47553,88171,63381,6395,42694,62318,47481,43573,26820,9863,98706,30437,63600,96776,2045,92844,27473,19646,75375,50387,65565,52258,60918,40895,18540,71418,37741,71088,8521,67686,94734,27777,16703,36731,89219,91827,94702,17375,74764,68733,89783,78695,57786,45234,88333,26100,14265,84387,80104,32148,46105,72225,54813,79170,19461,66358,68370,5808,37993,29381,27990,7782,1027,27162,23470,34143,55074,14447,42482,48246,9556,52431,4892,55429,45990,87226,82402,88807,32585,2659,923,59418,36457,15895,63508,44249,5007,85345,80249,9479,26699,75913,97287,57221,60713,52227,30852,26610,53487,698,11384,36495,786,69799,82721,22701,50659,19400,9412,90080,97904,83970,70446,73040,56031,63732,96182,4376,83560,48975,69843,44741,88932,17454,57535,83231,86864,34917,39565,66251,10163,33925,83824,77259,41665,11831,82893,15117,33046,19648,90114,28239,87134,36988,35154,95280,38413,87051,62159,96450,42124,27262,46377,82956,92929,60226,73622,99832,28288,8542,81550,98599,6445,48041,17209,42336,36480,17880,91090,76172,16905,70062,62040,72075,48815,72956,66429,19840,97928,7874,26377,53616,29439,72128,19071,27408,19825,77601,15638,42516,8620,25911,21342,44612,31387,53586,44855,14507,78466,99834,18416,25865,7258,55366,79973,1663,2515,60774,6469,64520,23269,93304,66581,76071,42128,93913,91083,19875,63117,38290,87248,92754,33342,19249,99916,39897,17337,97297,36533,78820,2596,85379,95702,42241,42400,16260,17948,16341,78504,11893,59068,62139,47722,68759,13280,6634,62109,4185,72730,94798,46733,59755,83147,75022,40599,56968,72126,72993,4633,85459,36760,491,73659,34556,55876,22119,6583,15578,555,50190,63969,57524,75977,80969,33037,71326,70844,80897,83628,29012,21114,69044,42826,70706,88130,75273,64710,21214,91507,21710,80105,23549,40013,21607,34550,86409,94638,58915,26938,99608,89320,25891,40624,39149,79566,72428,95682,29657,61248,9177,21060,85084,35774,86657,25661,24046,50086,27267,9216,87446,98840,55804,54856,59110,93548,98266,27480,57166,85694,89108,28458,20184,6384,58151,62405,49384,23569,76683,98639,72241,24205,36876,1181,64165,4667,495,17876,93020,80371,41067,30666,99272,70917,10036,14346,34737,94507,74400,32972,50574,22371,16069,8613,17276,81257,11801,44394,15936,4009,96738,74023,40025,98469,10166,58958,76723,84558,85168,29750,54109,69656,65883,97698,20915,36838,32581,35024,21844,41987,77707,84095,44429,21767,96940,83775,86679,55148,62282,16572,3428,71084,66494,45398,29371,27808,907,81100,82071,50790,14036,14353,27300,32041,66003,51201,56692,38957,38029,45510,77502,65947,37455,74405,20883,89057,94184,52525,97076,17649,30394,44557,79165,24546,82812,40555,23727,90151,77820,63558,29461,73494,66797,9224,15604,71862,27370,11533,12615,8377,43852,98786,22857,36825,34305,72321,17036,41059,84043,93593,85781,35889,96162,2486,17599,93085,92610,28499,44267,37376,20044,61727,71073,84665,46173,13738,82144,71108,61396,14737,3797,35513,24365,92745,89858,13931,4289,20020,7570,20516,64333,87045,38611,59652,26453,30808,14260,5136,57252,83109,6115,94850,64656,50876,49189,47784,18013,30092,38857,77725,11506,43130,60640,40069,76065,96972,56361,54369,28329,8562,62339,44752,97892,76467,78206,69064,36276,90990,91465,73774,58123,6098,60694,1064,58326,99522,44291,6783,2228,60697,71093,17079,5858,17907,75400,86785,10606,46707,61777,32513,51133,48779,82675,44109,73093,63042,62681,56868,14247,75138,25915,87430,72802,70789,1380,89820,72847,6916,65489,94296,4861,94494,20117,1280,11258,89116,27308,3218,15682,34817,44702,49836,73994,70744,71612,82245,55807,57726,71757,5257,26869,48211,88801,33715,47301,94944,77165,32110,17688,69433,19192,51535,23865,77968,18821,97447,97265,90117,385,55048,25757,85293,64140,50370,96728,10630,2786,10908,78192,85223,55741,79026,72532,89683,56131,19731,23619,29870,79617,8292,81235,910,37570,86248,6243,30200,70855,83836,64763,59379,40438,98341,21674,2900,85793,65076,96237,34285,23002,28849,80325,54734,74973,63839,21118,15026,76768,78713,54722,24136,15675,5819,78141,5502,60564,60462,42164,18669,65828,51494,23192,49231,28391,50873,51308,51375,25886,55923,28699,71466,46650,59563,86970,8291,37116,52543,89443,83723,50178,81875,42497,14467,99011,33080,28762,95954,15144,58222,99308,81500,31612,38446,31869,59689,40945,1760,43242,33292,68861,46979,29763,38756,29640,58823,34597,85844,79489,94226,43924,28841,47956,96355,75470,73762,10758,82233,54701,99241,54270,34149,99931,39404,86505,18574,11454,81812,99169,7791,34852,9760,53090,34878,51784,36432,11763,7651,37919,63113,26504,66062,71546,51058,50747,63296,38881,72610,71112,94110,16232,92807,88019,14944,6352,22298,10598,92527,69443,76015,44130,81429,18184,52811,77604,96030,32837,99486,22320,50529,25552,88652,58375,22509,49564,80939,37031,3788,47437,93537,21457,28166,88753,27608,80554,8459,20109,59451,37322,17737,81778,78506,73213,83548,22699,59061,78133,22004,15202,18015,88660,73322,80041,32436,76073,49885,98847,54555,64668,87338,92588,33025,19728,50670,21515,95354,94725,81888,27090,72320,41725,35229,50650,38909,75887,92277,62104,28597,38297,46048,42663,53911,42217,4630,3132,11275,66754,49570,11470,68639,19886,29556,10618,46491,44740,746,10739,29115,45139,29457,9369,89740,78393,60663,78907,76669,89477,46005,20555,33126,76482,58863,61255,21852,12961,21471,13416,89960,96528,4142,57485,22958,58934,97834,43727,3943,87525,41294,73862,61029,98711,12991,71437,21408,51251,26303,37793,63786,36736,46704,69368,99648,78903,45251,36460,77301,28412,89486,86731,21173,30193,30214,1461,61271,2034,82983,64588,47384,15069,32047,9016,54304,94528,78061,9722,31398,96650,34003,40128,84044,59973,6444,29880,23374,39621,7661,80937,79317,34518,86965,73149,11080,68791,5197,91330,43250,17189,21720,37292,27366,26454,8313,11239,35400,60220,19143,38381,95029,16534,89715,38721,36752,73392,17639,10300,19613,62849,55994,60776,36767,28574,49877,39229,94172,86937,52948,22449,20864,4247,37280,30924,22732,19315,81394,716,35207,21684,84250,54896,16851,42774,93386,87346,11669,8688,22949,82097,66813,94709,16082,88126,48718,38743,78049,56754,97752,3372,67781,26248,23003,38926,14668,51824,98333,38399,32690,29597,94289,71535,79859,21913,82028,67743,18829,74912,56519,60702,42856,30720,17885,13401,77345,99784,65622,85441,73342,46546,39503,58732,15098,15600,86486,20887,97735,49537,1392,78571,43125,94745,19264,5873,79743,36163,49552,5760,50642,10225,64160,18888,79518,88380,52048,61418,4433,74106,8846,12089,34807,66119,67390,33744,35729,70363,83336,18116,50571,49879,84865,45645,28043,47477,50693,1943,97570,49946,81648,90381,5021,51010,65978,19544,88981,11653,26962,64446,8553,36224,69185,52301,10195,92617,98926,48551,16461,74399,88869,46258,49335,43376,4862,90466,67276,85763,63544,90758,52863,71668,9367,47566,49874,37271,36394,10084,63008,54526,30884,42898,92374,74465,28903,94648,85131,21991,93064,48135,35458,88654,47599,20624,70210,26893,86277,96890,31756,26149,34573,7716,80284,20543,60440,71778,26353,54825,1763,46880,15505,81184,6176,61406,48110,71319,63360,88680,16825,78577,3872,78111,46903,93205,39781,26853,48999,96427,51484,89623,53777,73556,85362,17447,54179,87230,93440,7826,49830,62272,27648,47763,20025,86557,10159,94380,39209,14273,86346,93739,99070,44265,2252,57226,42157,4353,84647,61311,1309,22659,60260,92401,18933,39902,16782,78410,69642,25963,8866,56783,15250,4158,69269,89657,41698,24233,93560,39963,86166,91582,65134,74670,55912,6633,78404,70878,26126,70968,42439,33150,4748,77054,24701,84789,85083,85980,98094,24076,14649,45834,94272,96592,10061,51374,98372,38514,66511,96910,28673,23141,55141,12049,66980,65880,94859,45807,68601,81070,17971,22926,88538,91640,52290,97653,39593,67020,66164,28266,90612,25689,86204,1528,69875,70237,77782,42248,65036,36626,85509,35401,56963,92052,1251,70707,78886,32289,79897,81317,30823,18694,38225,99268,63528,81493,2677,4904,90829,22948,74078,26185,45079,45602,26330,9692,22665,94925,88151,58077,88211,70723,26651,73353,78749,85522,56686,3370,13208,50492,66054,78705,6952,85412,13859,97677,70204,97695,68421,77120,46232,95809,89047,8016,31109,25646,56936,17981,66916,33812,15567,65383,55997,71198,33142,55880,45909,77419,12055,88472,35340,99945,37580,16467,42068,40424,6872,32522,31239,7994,68257,42463,19637,88224,31256,11584,24119,46324,37053,3535,90002,84804,70729,62480,56684,3194,20960,29843,52451,88049,3208,2283,53339,86853,22415,66092,92649,92269,80964,72224,60057,59070,44229,70838,1579,1462,5948,60301,42722,79285,65877,58272,29998,44079,27859,77320,53946,33928,82559,69575,93391,92241,26133,9023,33358,69543,94448,18706,19359,12857,68652,53873,37030,95747,37384,7697,27170,68883,68662,67281,51081,792,48535,54898,72059,25563,74929,53118,78866,83063,5138,42339,25229,95960,2026,54152,91894,85791,64987,29897,97359,89398,62835,38121,72597,85311,3242,86850,45724,47495,59062,42683,5,54414,383,22848,38790,40234,46595,5838,11654,50732,25753,23577,69600,55497,63899,35858,74120,83979,12258,63132,64197,73870,10721,75802,58819,52878,43892,29335,28532,15870,20371,5072,22799,61505,2528,59057,13868,39972,49711,74814,48783,52615,14688,38080,12979,42921,97707,33719,23228,3251,54129,89411,21914,50354,45363,32827,91963,21699,12593,4120,51347,9179,62361,23320,82322,6303,36407,23056,20805,61477,75475,83352,20792,81391,93242,74442,78236,39582,26052,83843,60303,95381,78130,74487,91581,47523,37920,80681,4737,74700,13586,61626,84787,47572,44164,69154,48625,82938,16664,86602,13872,77957,70650,84678,14553,40216,83468,50488,58902,84746,96079,99954,51328,20568,34892,27634,33683,93059,73678,83000,98404,40934,14766,53802,80075,85240,33044,65698,17151,37141,65223,7856,68256,44851,75794,76903,50686,12145,85687,27836,5062,32636,12180,69397,75422,69573,90608,53651,80314,37585,58963,62842,58258,15109,34895,4729,1009,12121,96348,43325,92215,97879,69113,68906,91511,44610,59691,71051,66097,28846,10079,35698,10099,6535,21933,44346,50153,17908,84400,33908,24082,46540,3964,32670,13988,73983,32186,14380,62587,58808,43723,13213,47999,9710,63106,956,83060,33516,88414,98780,41295,38025,29266,50957,29446,57985,84775,19115,69726,1979,74337,30658,47747,80831,39569,4684,89616,73062,97478,90591,1395,42346,78639,54392,87523,30908,3124,15770,62284,5953,32185,85125,93177,20124,26188,64769,74910,88828,16393,39185,76317,12173,98031,65084,13193,82208,83588,28072,81951,22981,19496,52798,52940,35741,27519,50696,6797,78094,24490,12325,46147,86938,26649,98519,40372,42614,51149,13635,45178,41254,21462,54378,21878,67862,90597,84692,76789,42108,32410,77437,3476,24497,57949,84144,7776,51227,2490,38263,30075,60753,74530,30640,81097,37111,81189,86767,20744,80064,6022,62075,52053,1751,95763,82894,33654,97824,38801,53773,86994,37834,3439,44552,31509,84261,70638,76587,14631,55636,94790,29925,24824,82535,11283,43583,46663,39544,29706,19522,67402,24005,47203,74676,13694,65898,81525,90522,87634,89999,4000,12885,28294,8873,30426,26466,14963,65483,38321,21065,68966,19104,31061,35734,32136,70887,11675,51075,87819,27391,73770,46427,83561,51952,89516,57893,64089,64091,30691,88188,70454,80094,23792,18746,54766,2859,5805,57195,77551,54768,13631,95106,26886,63630,60112,61336,17404,30400,93897,53785,32227,34943,78554,75500,28759,43021,45047,42571,28496,42814,2872,96179,45535,97722,61301,16580,254,44992,65701,18442,19551,80699,96896,79030,22935,81360,41117,14676,21641,64517,37156,79728,23066,52808,30482,77243,43386,76461,78851,16815,35501,45951,14912,70782,99643,85946,48074,60626,39517,97348,91886,91353,61782,7775,59038,28603,24360,76795,26928,94824,15536,62614,25616,75154,63363,40640,26796,47093,85011,129,32797,65999,55757,15095,78757,76699,96401,4260,33576,98380,3625,69501,89298,28498,86573,49912,33615,44148,82513,95375,71271,21606,12063,92067,56111,56755,13915,99087,43740,74010,19473,61030,49921,72182,16224,99802,15429,40598,75494,2873,62813,47244,3532,10229,71799,39794,89678,94475,26490,56718,13366,25368,61325,76597,22274,9006,75952,18652,49496,14967,92605,74570,94551,64245,8721,52764,69659,74282,22980,4461,88751,19455,52648,84536,31121,64793,72232,54049,69753,95735,34536,8630,1863,70364,56221,21889,38782,79560,44964,72830,23860,30771,54754,72214,75150,10891,65384,28534,34291,10723,51980,98289,93788,80431,23518,41362,2419,60262,41132,41298,97270,48388,55960,35237,15335,89802,43868,53102,78570,58100,41268,88459,68550,34238,60168,24109,90853,68922,86266,78723,4856,81400,11645,32822,63993,72765,7104,468,25051,68925,88355,48910,21205,63169,73307,47943,86130,76916,39665,37818,48030,7970,39555,10956,8264,66373,40753,95936,34241,80407,81222,25900,77799,51948,24433,54395,89238,61021,67708,52565,6466,9846,42045,7841,36294,98409,60847,15987,30812,35895,57051,93007,26082,1687,16701,84036,10667,92821,87247,60125,82398,27288,13484,32400,76459,84681,87983,16702,30559,79750,46598,35290,73351,22310,9996,49686,81358,3561,99158,30454,77468,40505,74818,81227,78978,96724,66432,93581,19149,4612,74746,8263,67248,40900,86206,85508,63555,48447,54294,872,45612,14098,96060,60624,12682,10393,91556,91023,63010,31672,99696,45673,83313,30270,78464,97705,91829,96434,6810,68155,30319,62883,715,22313,12749,91018,3301,39740,73280,93408,87622,83404,24250,35454,4735,40450,62321,66387,43217,98101,75992,23777,1747,56048,9157,18230,533,65320,70644,97417,64523,71597,57224,71656,68964,4878,75814,42806,88878,52964,28856,75653,40808,81177,95905,38540,85199,87251,99724,82149,77051,59327,99199,82927,73012,53921,2826,50746,35584,20132,27437,67996,39801,41398,7972,14695,53957,94643,70620,28321,50955,33225,27791,83006,47196,83739,10349,34015,91601,57761,7096,65750,54530,28678,47842,20724,1422,33222,87161,37915,57039,32404,33821,1204,79003,85942,18726,87487,24673,74158,4001,11546,40294,22934,50947,21862,96363,2077,18006,5780,15995,71121,67512,72538,16284,24542,39246,5340,52635,28174,29074,82900,49931,15394,50849,1508,7142,10878,99980,52120,71449,84651,30787,90508,72678,70051,9399,94155,32725,40731,8985,13480,17467,63704,56808,49781,76940,93944,88145,48385,18983,45939,42037,43912,79711,95943,75264,17950,68691,65721,64633,79548,9649,14888,97726,99728,56478,13946,72656,57649,74830,93853,29652,67867,292,33215,41343,87545,42657,91687,7243,92133,43686,30480,25743,64323,52125,64021,18249,24149,68960,53727,57325,50614,20186,94301,42471,50197,59081,63309,44213,23683,16875,32259,7835,34856,86726,79245,13673,29802,9688,40168,7175,56618,36152,48017,88539,2482,96290,74780,42332,70482,9389,12107,58811,42190,6048,71425,34652,36320,77941,96658,50934,19504,26987,50415,77932,82332,66156,33149,4032,11562,11298,99076,17028,17655,93044,38877,11888,18967,2848,42226,72470,98395,66955,833,86451,58465,95515,81003,41680,38407,55765,49925,40765,58810,18348,53618,22262,19969,13204,3782,69114,58746,83847,93932,26355,54876,94574,65868,49849,81869,65905,450,91213,13935,57941,26410,97842,87432,46954,49577,94495,21005,34065,50915,89253,9919,84150,60082,83912,14697,76537,99180,16103,89044,47251,29333,1371,70562,52438,6308,34513,24933,41462,76388,34041,51785,5099,8341,4148,66796,1577,97549,66643,64831,97050,62852,89428,10430,95842,57285,74664,16896,13358,57180,88661,61925,44045,45842,55822,34309,13138,63020,82978,73644,74887,47272,1808,93570,66930,29215,70531,74976,80260,91379,99596,30301,91156,26263,22592,99836,80338,14255,28555,29648,66096,76796,9011,52184,93883,59193,46559,345,42116,62988,75121,10821,47246,51807,50002,18992,3932,13123,4960,44633,71583,47331,33847,88548,64420,34156,71785,99389,86425,13099,30,8816,25088,22512,66286,12689,64936,56964,27334,79945,18566,38392,89907,60494,74493,75025,99988,32539,10861,750,43947,25418,3638,63124,98169,20784,39956,60504,88108,74896,46182,43559,6921,92924,87382,98624,74861,12387,37739,57439,64179,11600,64240,20306,40379,12926,52462,78441,79253,84469,51213,58715,99791,12632,59503,70159,76011,49592,93831,23601,6769,35273,77270,90825,97246,15257,53155,70766,46163,8790,51021,1,54911,49944,2327,98475,71248,95687,34026,54432,16713,26086,50144,74042,48780,41365,57814,92879,46673,16665,89855,17413,37385,27982,35302,82196,93420,63815,62021,51828,70320,96959,61673,93597,55054,77641,92357,46528,17147,85302,24059,89504,56281,46328,54547,55516,50601,15572,94332,50935,83308,23148,64282,30660,78378,35544,92007,78137,96493,13221,88722,96666,84640,42852,9364,96132,73463,60763,29865,70189,59474,87543,2922,68088,84974,57307,16476,11524,12814,58582,82627,4300,81631,93806,80288,98602,2770,87693,36257,13083,94854,83010,16277,29354,92249,73086,31104,66211,24235,24398,84443,47941,93151,88372,5261,30700,97714,82644,58558,41493,4552,1206,83237,36501,87320,20019,18899,67325,40373,59958,56880,21432,61593,94546,43405,89890,53404,52310,79435,84710,77046,95720,73907,49255,18401,75891,97792,43857,98462,8275,17307,79799,72489,97006,12122,62543,8512,43088,75009,39936,55267,82429,57499,22629,52351,89045,57348,79231,35648,39722,82869,78438,85880,68478,72988,26228,98360,53744,80584,74113,41267,13399,91139,18955,89023,23091,38485,56951,85750,24313,58689,28315,24123,81557,43736,95484,75882,83105,91555,85532,12378,8579,62567,15633,25044,1819,27221,59127,78767,79661,23425,59161,59520,5109,23406,85843,82965,31507,70758,27112,52458,63281,44318,7216,54480,78759,68746,29837,61020,2425,88776,88718,45026,54497,10746,33696,41457,61978,55256,82214,72944,84978,31677,40031,37689,55668,1374,9595,21446,43896,2389,50130,29664,64414,82452,37427,30483,24565,13072,188,95473,72522,14445,23579,93175,67657,51930,58527,48243,99471,53833,41471,13082,80658,49991,69071,56204,54934,77848,23175,47194,64691,58323,43488,60734,43338,79726,38353,39571,45910,22737,60081,34816,86428,65162,29483,3266,73098,48076,97990,24972,78374,52090,31980,31414,44789,84757,63365,91733,34151,17498,55828,79977,47860,54625,44606,16201,76254,16065,81584,31085,43077,5718,55538,96309,90393,82393,95802,8115,91104,54994,8939,62224,32111,74466,66574,17844,36345,66283,20676,60069,56764,76453,32517,34756,69698,18070,48434,40879,26081,90914,63188,14003,95397,60441,48221,16365,89898,15334,84660,20000,66513,40751,70442,85154,17361,99839,39369,84589,58188,66705,77779,25216,97930,30561,75726,13027,618,74884,86379,62444,15319,62052,443,27536,69100,41847,12559,70178,24121,80413,44618,62558,51006,49934,4074,89147,38913,97309,66495,99003,29242,9001,74256,58712,28643,7422,508,82349,48825,95479,71810,58191,25932,97055,48916,24336,70218,64280,92925,28973,84013,32380,27195,4567,60488,19641,43364,37300,90014,73365,42883,50830,3331,15902,82691,97178,94722,51134,644,70925,38027,40262,43611,7482,16692,74053,79150,51766,674,38042,43694,46264,64392,634,2201,86591,26287,71907,19657,79686,56790,1407,58511,26007,62694,81194,46526,32200,64340,41173,92295,35023,11819,75082,78001,89795,60358,63763,41945,15091,75268,88789,71864,77139,95212,59087,56510,26273,30941,59843,32338,31360,15200,22545,14344,96410,63685,62189,24316,8992,99452,62420,82340,8191,30086,73667,5009,828,83156,34483,29411,83540,24593,19228,9654,61723,47939,43154,72369,20783,86766,96561,70523,3784,46221,15843,26010,89496,32151,34468,47276,66984,24589,97543,91312,34561,72772,69500,97027,20207,19067,15865,41814,75941,64993,84944,25806,31662,52776,90867,92624,15558,24973,15462,6171,24218,2756,64648,59849,32594,83610,56444,24993,286,10293,39005,12639,35240,49538,2000,45120,15383,83273,59312,64552,6761,91016,68101,77926,22138,64817,44700,9755,6912,25732,34549,13767,56856,28399,46294,28407,61401,7038,67890,48795,93681,50822,67266,26719,59252,72015,12960,32921,98615,50426,51982,53636,70166,93032,15701,71173,56217,77593,37496,31764,21310,62167,5949,26033,48576,14877,34340,44112,8038,4417,99718,70581,56293,7792,49014,77625,96756,63047,75126,99236,24722,24268,14201,53824,96103,60065,28634,51005,7657,80414,54012,50606,90812,16794,87216,8845,25901,8201,71552,13377,96279,78066,64576,40589,29069,77775,39451,28278,60357,91540,7343,32222,96772,86107,20009,67432,45814,69933,53029,76577,75035,50826,43810,77638,68884,1800,3502,15830,88891,48620,67388,85925,36791,22954,81811,34094,30949,57517,19173,11544,72118,59912,31622,43871,47809,90000,29078,89382,54180,13155,22548,77472,14987,64042,23691,40235,95633,72925,77655,37894,81792,65094,47418,20214,45209,49642,62865,14481,16081,16503,26194,31221,1034,19225,40493,57613,86503,59690,87946,27709,14604,87716,79183,20101,93543,14732,69202,47084,67611,18715,33427,77109,22925,28206,32612,95649,52581,46240,96053,75705,47185,97615,61118,72778,85285,86922,13563,42127,44277,97254,35372,2860,81007,43688,73558,13855,83622,14452,73972,60882,73335,98784,31668,29982,37534,40636,3969,94739,11759,2280,89212,93247,67413,37661,10049,92208,61554,84581,68049,81218,28281,46255,59149,86042,99817,48029,2577,37680,16877,13614,61195,27843,49442,48869,42058,43781,25356,96946,5742,22627,68111,41925,74834,52902,89102,19276,84100,67645,14847,93352,20540,32763,1217,63796,47197,55553,27599,25110,17084,2122,12825,18238,91295,84532,52489,5606,77683,52775,23732,791,38951,74049,14517,2566,41182,75190,88323,72746,91038,20356,33689,29889,41827,69342,64153,44104,70553,96507,50226,44722,98158,4529,50321,8480,74891,64846,4648,48803,27749,68938,37787,22953,59159,57865,66205,5084,47277,84130,20082,287,15279,19920,88366,70093,80777,41949,99564,13370,53540,42514,72086,94529,47000,53409,62418,28660,37884,76984,59726,42403,3111,93591,39526,26000,42279,19605,28526,95800,3663,44981,80776,39245,68792,27341,40941,42953,38292,59211,74377,87043,5772,51530,800,96846,56552,80066,20890,49549,82618,67822,23514,73710,27652,67881,73385,13180,9188,88324,10316,36846,36396,41141,14224,21592,33978,53099,13202,65251,59720,35321,13356,25384,30055,2199,32294,73554,71457,39438,12723,26530,49990,46055,57507,34046,15073,79590,85783,32439,23488,58329,87561,27727,47775,79073,32811,93735,7531,17089,50327,10587,9824,71723,42723,98636,87444,52730,29728,95501,36566,7417,91275,36872,35699,74167,62155,41561,45262,58141,34205,46383,27129,31976,47398,70890,76194,79462,53607,44958,36693,26200,97587,88473,97164,19240,39968,35298,19278,62033,13211,57387,64785,34832,20871,59092,79370,90445,16886,57389,84084,62233,66658,10604,66833,5684,30732,31220,90147,18519,77408,70224,19804,51913,38365,64583,27863,70602,79772,24926,76943,95060,63054,99889,22435,55183,22306,46364,37844,66873,78281,89648,52105,55258,73763,21315,79445,86571,91518,38882,3494,6329,27343,66622,62311,63829,59424,25275,83206,21866,449,74981,68376,94160,64754,34068,5010,39111,83291,95855,82485,19890,51373,74050,30467,58156,71677,76312,62065,87861,82809,32244,55522,53158,19704,99178,89840,87036,22476,25267,52055,20739,57471,65916,5000,37419,43024,91765,9815,80768,13118,98136,49664,35461,19395,21848,80484,66318,2471,14703,57398,27212,50163,44011,21853,99565,83644,22989,42711,40075,76356,36420,45309,29945,65719,85169,621,74774,72588,18541,10675,88423,8889,8374,17739,35570,61429,52033,22893,48668,38277,24945,23471,73722,66232,3825,91893,63840,50316,25370,71960,51743,69056,53875,32308,99896,34144,82256,35598,53081,51780,34389,23014,85352,77366,78234,58777,92366,98834,65093,6877,91822,52855,33412,91788,61898,29555,17920,17069,5425,54654,4037,37684,72921,56520,73698,81509,66953,49146,44260,77766,73892,68194,29344,45761,32756,81239,91744,89704,5091,17766,34195,47141,56436,98482,67646,32856,79898,21184,51173,39139,79669,14074,17989,57730,45082,74073,17403,89832,78962,14460,36510,83572,15799,82428,21872,47215,78595,96101,46114,2513,16730,32876,14485,6578,81274,77209,52212,36685,3500,67125,79477,73122,38562,57420,82881,8020,73373,55334,66462,26539,93776,65285,58600,53969,31736,90776,51537,85632,48409,25440,3450,81997,49658,14724,33607,84252,28250,31912,63716,56883,99995,34615,98932,90368,57539,50372,19946,31915,1774,64148,68978,1232,99046,91235,61666,47585,31147,91228,34947,56353,47985,56645,84958,54496,3860,25468,53128,1071,58221,554,72790,68712,44669,26385,82130,55422,24557,12763,26028,57229,98943,53847,56251,31574,89555,3730,56103,98860,21387,54948,80042,12255,45581,42794,99173,47459,5607,85833,6809,9901,14907,48963,90400,72801,72786,67017,77098,79441,21438,39301,85213,21977,28617,3443,16516,735,64454,48397,97220,77332,50084,79572,98915,14596,9143,78865,7031,26159,41168,6246,69053,57089,41071,55493,97898,4244,93642,47726,29538,54508,30649,50620,71131,51637,76274,98247,96607,31231,29046,47559,59488,97467,59842,81210,9586,11599,74939,6550,59071,3540,64518,24484,97328,27646,86833,33432,98798,51283,35707,54436,81891,46336,59683,12853,84087,96924,86351,60060,55185,62655,78860,65606,1915,99319,6346,69649,2475,79425,66801,73235,18742,78140,4767,83047,74206,83598,94447,56403,58708,1797,81614,96358,24968,97603,45655,63616,29008,1178,19722,4938,72810,75700,80117,36115,41031,98173,90279,31623,68072,2889,20361,38517,20419,30886,85717,26892,50191,41108,14683,2520,11217,59200,62451,74990,63000,2616,93038,91817,863,36227,77801,72692,52998,86470,61214,12987,88068,34370,45235,13822,45457,98595,58114,45447,12146,73372,14936,26873,72842,93187,38330,55791,95226,75675,42669,9535,25075,69576,79484,17290,84799,91429,31995,79610,28075,1559,82477,63960,18185,16641,12186,9090,40544,59216,35054,70285,53786,41099,78011,95492,80874,11246,37970,88351,79233,64938,99808,72665,57672,95689,34356,82593,92701,20085,49958,91138,73340,60294,60819,42935,6922,2083,53274,22456,24366,90342,68177,93443,12440,82526,72651,51069,66390,29132,25125,85359,18872,24959,71571,22781,20760,16154,63542,55106,13706,25665,53796,19882,68603,98917,47884,63007,42419,43208,67979,76418,72035,5508,3058,82151,75155,94154,35117,25062,31219,61431,56119,94552,41677,2925,85229,44451,71837,76378,81652,40027,2851,81817,87077,28827,70693,74036,66309,51199,11946,85031,32870,17184,95094,74514,20318,70250,25557,53674,57156,37814,71835,7830,43676,97651,43111,75856,50282,81644,91636,87771,14819,22390,65427,34887,87428,65228,88798,84365,25444,79186,75925,71863,44971,22009,59150,46193,9669,49266,4949,73333,6461,83929,6502,55824,63801,34995,67871,30671,7267,49038,69555,59334,44329,13245,98235,32795,8566,74084,35775,92634,60637,13243,5370,78093,76619,51313,27482,14588,43825,7133,4913,17513,2226,8302,45492,57019,58644,20473,28240,26054,33265,62966,27265,93522,65527,49267,98510,94337,81006,25180,34902,43309,81456,49712,23337,26304,93051,33552,86621,90690,59074,51961,34596,90482,9769,616,99544,99505,42042,15731,87887,30129,52741,64273,13058,78518,56903,54044,21291,35897,26597,24888,3352,65724,464,38962,70670,90309,75172,91531,94439,50484,49016,46925,5799,20720,47352,90296,47768,18334,60519,49759,87981,6949,46623,3195,14328,86498,173,69704,71003,92055,68863,51431,91128,79034,76008,9118,13588,27005,60853,55676,30877,35955,57190,70193,75038,98556,66361,29445,44083,65743,92893,87373,78003,3612,6730,13508,63575,53359,51455,67534,16005,10294,23675,21424,2448,40998,82251,92205,43015,15554,87892,36465,34380,74694,82461,47015,89083,61517,26638,26685,54319,83067,78937,67954,90552,34733,94438,65355,29054,74417,59428,78627,65425,94938,86359,52356,66372,28819,82157,86405,59401,86174,65624,13074,55132,96660,30827,5646,47720,61120,26187,84114,31345,59662,72775,53574,13181,70350,74854,48778,85183,78367,10690,52870,71062,9622,10174,41970,62061,37354,46140,40529,81242,92346,89383,48662,38981,53398,73901,55977,5434,52096,93791,66923,65931,81010,73655,74439,96944,90547,90340,86639,42081,46214,714,53093,67719,74894,61038,24098,83377,21167,61889,97314,31166,44615,51745,51605,79314,56391,73413,65548,36200,71909,13663,91729,18929,74752,21774,75980,2191,84583,30344,68859,33931,82243,94060,87857,62695,87558,20457,59576,21010,65619,43496,65908,89752,73106,42526,91461,75867,67226,16323,66297,91823,5797,66201,24301,81855,66563,68885,44456,57269,91215,1284,81871,64326,91347,48785,56407,98990,24980,19553,53998,15304,69284,8106,69834,65734,79506,5077,31843,45044,53295,54794,83515,85755,44098,63347,91418,89876,89328,31809,11362,71509,4935,41111,26025,97750,52824,64900,22637,90470,85109,46636,22084,75877,38698,83080,29774,88634,36107,57260,22742,3770,743,7765,99533,68559,73845,74055,37540,69744,52707,60499,9534,24243,7515,74421,17822,99247,96698,93505,77382,47627,26611,18871,13912,96296,17609,25513,49009,59232,15259,49243,49114,95339,48178,91831,2074,65849,52005,24699,43534,14677,86642,98000,30288,5972,69329,49573,7266,69950,9609,17550,29041,37329,72659,3196,37383,88077,60680,33616,92072,637,25037,41923,43731,96356,30014,25887,17677,92941,49120,77494,52978,21049,81880,10506,56042,76371,75635,44778,6507,44880,52150,59638,3026,92025,73826,70586,73980,46947,50665,58678,74321,99921,88993,15721,93549,13699,70731,28155,88720,98694,6532,18924,40176,55820,86589,8418,97047,69420,11858,19036,17883,90446,51981,23072,28799,37124,98516,92779,39895,21986,6417,37677,68001,48087,82198,26431,20660,37420,2314,20877,75079,40204,40714,98580,63622,42276,62293,54717,16196,25798,48057,49294,48738,7892,70805,553,88026,12976,68758,86398,55164,89880,80119,70777,22218,93564,82943,14897,11999,87399,81515,66355,12271,26785,86798,64868,66444,31585,22095,56127,89626,76922,35292,3592,22377,4079,88226,65024,90865,69730,22910,69681,51856,60625,52474,83995,64893,339,97133,61598,95772,57373,53327,50945,11206,65165,79250,35338,47877,37721,39430,1514,90144,33176,3706,22290,44966,56476,74595,81960,57544,67537,75900,41688,63859,75428,59898,81698,37103,4906,69971,90961,47793,95700,15188,83743,64507,74308,25935,68117,76390,5287,39182,92806,72548,85634,80760,19018,22392,68765,69718,96178,10044,60778,61556,3593,5476,30795,38958,74381,30436,67681,51022,40047,72270,86020,70488,20809,23617,66562,32508,37582,21642,72246,19234,42578,26627,17839,88673,9255,74784,68465,78059,17154,39759,14188,84902,8885,76992,92675,21881,97139,17143,61146,55024,35295,18583,69519,62748,30069,98975,58254,39447,11620,38497,66019,2541,44227,74613,33473,18926,63633,22244,77837,59007,53111,72708,79318,73996,78306,92955,1442,39089,51491,38573,88041,21287,31910,63220,45925,90110,50553,98387,69372,79822,20133,77292,83621,81813,44453,44894,43161,86973,65958,35177,77250,10209,52276,95278,18918,1918,42988,72155,95584,48516,89886,9363,15678,49647,23463,5855,69680,56591,25637,70121,24084,76187,20069,56271,20489,70952,18102,67312,1657,64921,99586,56620,38317,2488,86710,29373,1114,80555,77371,4958,21516,94171,29615,52360,27059,37073,36442,3594,55664,15827,99240,87157,28924,44697,44877,91098,51768,21559,43565,55517,87674,67349,30578,96602,70506,68607,4503,97877,68781,94408,52495,53064,93456,8712,25820,99798,14030,30696,84816,67842,66482,41890,44174,72770,28461,66048,95926,82808,35021,50279,77280,98138,81637,85697,72938,44006,88012,83770,36903,1428,66126,99188,99933,26203,38710,6191,37081,88257,22886,36347,5952,97332,54269,16908,52,37545,84675,29819,30015,874,16070,30980,49528,99063,18664,38642,51126,42236,84480,67450,36072,72680,78636,49288,3948,51070,10461,40114,95364,27063,92433,91143,17710,27787,38444,91960,2422,87286,46719,36525,15757,96452,86616,8388,14539,80596,72825,45193,82734,94308,99753,60645,33097,86998,26139,86017,38286,87686,10561,23989,45319,98502,32735,92294,45957,31546,16993,65294,54893,86422,24548,15002,43541,94631,44550,76682,68533,83872,17250,88607,41474,33233,26732,1866,83315,72087,62156,10941,45609,87897,63025,40565,8727,489,15823,64764,53621,82053,81199,2214,25978,80280,14441,27183,83417,14675,15687,31621,86417,90326,31080,41436,64486,19587,97931,84366,4145,14007,61321,28796,21127,788,54947,39862,97385,4608,94843,68123,13691,89684,81782,45430,60599,12404,4933,87789,16489,45215,20372,12970,69646,2222,70567,11088,35348,49916,96299,11213,2497,62408,41670,87491,61891,91779,1670,13634,37114,87768,35900,26260,37305,10927,68330,61530,93873,55210,265,90921,59142,88352,49623,28530,32928,73560,23553,38955,4373,60285,3051,32324,69073,1389,56480,33245,61090,65684,46485,72528,89900,75636,24725,37309,18363,91843,5781,41875,12720,47837,76947,50384,91842,35364,59325,22243,8772,55805,59961,32502,85782,66074,62047,2879,94109,3510,32430,53983,27171,12671,2967,20049,29064,25660,75926,28772,85582,2870,44009,88602,85823,37824,10551,96403,10215,29313,31037,75430,64501,14906,58343,79991,5171,81485,77338,87138,62394,34018,33884,70654,6420,81953,81963,41951,34079,64732,93758,31590,88775,6379,76945,76741,62440,44963,64498,7845,56949,17923,40252,11033,75513,53252,72601,10457,45781,37768,17726,51680,41053,98313,16174,94903,23351,61564,35342,88592,94804,96202,29715,35824,15997,62660,50245,29595,61488,67405,65352,22761,36434,31126,5351,38451,32871,60836,65424,45845,77188,97624,59188,87261,72276,50442,72149,83831,45391,74453,77040,5897,82521,34224,54677,35255,72578,24219,44169,41982,74262,85453,48286,31943,27126,27166,39741,85667,42112,31488,53002,69002,78444,95818,29125,87773,90085,1190,33798,44022,16469,85625,72906,75988,62709,18095,3072,53642,75372,5499,13357,3847,22388,60409,37932,307,8062,25540,66978,87283,71720,46326,34458,51242,75399,18423,99210,57621,63814,81753,72398,17380,59806,60099,48104,76386,7880,59177,11132,27563,61045,10797,6835,41204,50036,65732,57840,84838,8161,26822,13573,17270,97324,90372,876,94061,94963,34911,84069,11973,12917,78304,67497,12505,48222,48681,56368,49211,78891,54702,92746,41506,78081,77965,12210,45400,67246,71674,3348,96549,8242,14143,76301,10133,62071,26782,16958,62692,54563,78737,5860,5168,10418,66392,38118,90808,20057,66512,53719,63460,99507,5315,85036,81479,68017,66698,45931,36991,12164,41046,38991,94540,67395,85658,52515,13285,61448,91626,39378,74701,89929,9247,91791,85994,8163,17570,72983,97998,94417,86974,88375,93454,46664,21266,8563,40784,56974,938,21054,53989,98687,87604,26268,52160,13705,63505,93585,25547,12923,57238,23195,45953,16687,50861,3713,8011,19437,86389,61509,8312,85961,98654,67680,34087,96451,91452,8865,3166,19488,12485,67376,42266,1606,65025,50201,3096,43986,12757,96902,80272,52236,98342,78392,94862,72494,87324,87124,25779,70900,64914,39906,3583,20065,56821,82865,33601,66620,85517,27318,72239,3281,23832,31796,29059,46407,56075,21359,59337,62550,91241,46024,51028,10463,42950,96172,9673,2686,30206,50441,2927,32753,19346,98748,22460,30969,45726,28291,57405,73835,85827,97147,82262,39714,99969,29037,8764,31837,9154,96045,12263,67368,59258,10962,70092,46223,126,44067,54277,44336,50895,41778,98143,83808,93832,53913,70636,27356,14242,36711,21223,19114,1936,93828,46360,75498,88886,74883,64339,44443,26553,72681,53576,81314,36061,73179,17275,73327,44532,267,27625,13899,12345,28182,36762,90973,9409,37652,85049,63328,44913,49250,56693,61383,51504,85950,52985,69997,17025,67703,19662,5986,74686,66140,8595,42709,30651,22044,66149,68563,96633,9375,79359,35318,92542,60653,73189,41121,76674,42258,29298,96718,33117,31063,5384,95560,47130,96002,87630,45017,93210,30560,48291,19373,35899,15842,63219,30715,80302,63358,37137,90377,61880,30685,63869,6944,73868,29854,41739,32369,92233,71281,250,31432,20764,33787,29086,7134,24199,96691,38788,60618,5235,61274,15378,76556,89558,36968,7164,57459,59588,22231,62605,93939,53589,18523,66397,66385,49807,12520,47543,35917,5698,48661,16316,55403,73164,4227,52288,67222,67428,76857,25406,42740,78498,52857,76892,36500,70921,43549,32313,15309,26999,47348,66528,35175,96710,32262,83905,2175,43554,54582,33838,18965,35035,12472,33295,83084,72383,16124,40683,72934,58131,80263,12963,86044,60214,16127,1879,18480,96611,24014,90506,69700,93248,98822,72437,43193,82937,93919,96075,16016,88186,51725,6765,12222,25285,64281,96016,91681,33257,40527,45243,13346,47182,79222,96474,60804,74726,86894,64990,85382,47556,3521,72423,84093,68167,29958,71424,47359,64496,60794,3578,21334,68442,18242,18526,58531,12490,78237,65172,83652,27847,60812,38894,82532,85591,61052,5273,7093,973,53627,34020,28226,34172,26214,83172,56450,74131,22650,12117,5934,51414,65575,74888,10631,18609,14521,91590,80585,98591,79693,75324,20503,26502,36871,12636,76883,2639,58154,10445,80356,43855,51467,84549,15154,40768,40162,4762,85165,33232,81974,82958,16739,4060,19336,60237,64194,61703,14650,90585,48679,87345,43287,9106,69084,69688,1827,43354,71385,33400,12178,85063,19526,88678,16379,4618,67177,42319,6431,46876,59290,93867,33648,84460,66497,81816,87162,45122,47309,80789,25759,34413,80692,5435,725,61614,92945,32782,70977,65167,93094,40248,38077,83453,15270,12465,68770,47630,39846,37094,48860,56851,21655,11176,59259,14477,37367,70076,93041,1733,9160,79587,90583,71128,93167,37850,42485,1529,4149,26471,60996,57251,43219,73117,89004,91218,56080,71342,80893,34284,47833,42583,67013,32457,14392,70403,50969,46781,80974,55063,20208,5511,27465,16809,71845,37811,24841,20997,50596,66602,12335,12291,22600,64192,6892,6702,69460,656,63675,35596,91522,13741,33429,46185,5407,6137,86479,43811,57191,82039,78274,21795,87794,38784,1649,27793,70148,88818,9732,41829,728,3606,50208,81563,99637,73562,23742,71530,30172,14571,2649,89956,54313,34803,29248,8534,6312,61679,14381,42350,95561,28709,5223,16801,89867,16220,38602,36601,77232,71050,39490,64610,65307,11287,93136,70791,42563,67987,65146,98954,12830,51316,59994,14325,61002,95462,91611,49989,16159,66767,99942,24503,44262,60742,65608,96198,44031,60248,43805,53039,87327,73537,82987,53355,69462,68367,33211,80185,89642,82999,39309,25139,80369,6310,66895,79549,9428,42302,60284,39523,54998,11815,58124,3402,51097,98159,51038,73846,49199,97462,65822,20693,97733,81495,48533,87995,35224,41315,87761,5751,5165,63994,12008,48488,98507,461,28202,36517,65516,49651,40868,66124,59297,70756,45528,74067,84371,67513,95345,2469,3231,40189,33109,2747,63865,37926,44327,84883,2229,50128,43079,46,53285,21238,91173,5985,77205,4498,59903,98187,61422,53451,11747,12353,77570,20674,25614,2916,54321,9442,58584,62819,35683,3408,73648,28910,29794,57382,98334,58207,64177,93714,2906,78330,29680,60914,60045,47587,79691,85452,98946,5987,81858,7958,16678,71908,55480,91240,42476,71025,29859,85943,54849,61341,87575,83646,3376,43394,69039,70252,9383,76440,2478,88787,25612,86165,53555,19772,48273,64647,43936,84701,32667,97491,8277,21888,76735,80061,1537,3931,73579,81012,54398,12362,52599,77150,64662,68959,94550,40627,15467,34776,75216,14671,41180,89162,82355,8430,98452,74869,18535,52531,76038,59794,37654,91054,98630,51920,68305,59366,15431,8256,74457,36323,28594,93245,56199,1263,65271,22597,50250,14246,58578,80847,96585,62584,13869,61981,66411,73872,64112,37713,61234,34137,64948,18562,52771,9042,12536,57434,21580,7392,6116,69903,35923,1195,78582,47963,30495,29685,9287,58730,1356,76756,61446,99094,36456,26688,65305,84576,90479,68987,11041,28305,83334,53731,43500,94385,67717,7961,83036,33685,87713,92963,54895,18138,17539,82540,34093,55242,71941,2333,22482,62368,76357,68710,44266,63192,44517,27023,87353,60894,93062,91456,96485,96163,93169,21084,14815,95742,9262,99160,89535,261,33203,60354,16774,43032,80020,72315,82376,67510,21709,16055,27228,56938,8065,79384,83603,21890,84475,22697,86608,85545,89305,46666,58196,12692,38888,86132,94996,63051,61343,72769,48725,8951,73470,57482,49995,89028,75569,42944,35938,95971,93962,99212,93787,6094,98553,97730,1884,91542,7737,18729,27756,27468,6546,29848,30117,7152,91356,44206,27251,78946,96789,36856,60396,84411,11000,21337,88071,20610,88632,42547,69294,30648,59264,47142,2494,38014,76837,72903,3292,36763,89611,67334,94953,8186,27509,59112,40026,36735,90963,21185,85495,33634,77017,59927,74483,92669,84266,20735,1746,71945,42182,57929,69293,78612,89770,3394,19664,36418,29144,10253,29111,21468,65048,18769,57114,9064,12097,14060,41711,50580,54666,6678,34678,21602,65090,84140,83083,26802,32299,70013,12054,22264,55924,62986,34150,89420,8407,39812,13905,48173,10318,56020,5993,3220,29586,78793,29631,5231,93362,97859,99254,70206,43669,96019,53535,40323,85967,92174,6628,35058,85423,45928,56338,86182,13814,67705,3076,2635,37703,26419,10127,17888,52097,16589,21953,73522,70064,83551,18585,22040,44825,30292,52316,79696,98195,25261,97158,87982,50162,58982,9971,47840,50116,48480,74330,48797,26702,3097,28236,49375,19926,96813,45164,54612,49051,77923,84849,11936,71608,78359,21188,30864,1497,89189,18462,12854,27138,70112,7745,19543,88736,2138,69123,16285,27070,28972,6162,36688,20677,57058,49131,51260,85187,4154,50043,21883,72727,53819,36459,73234,52114,99248,1390,91150,44198,54744,51241,33096,20064,22709,22753,83469,11103,47173,17422,97330,43030,97927,88015,69216,51262,38061,17011,40987,40306,48322,57381,17832,76475,43359,16148,80461,89908,84935,75947,72034,96147,72385,79185,92804,63556,99657,3539,97266,74848,50326,90334,54897,18036,38453,42746,42807,21678,21976,826,64959,18875,7396,73068,17751,5770,65573,19863,59103,51562,38979,76200,18882,90330,49747,58847,65798,45584,30340,52780,48917,90959,94409,26572,49964,55915,57423,85333,63145,57657,42245,79609,5995,41953,14093,68039,79847,45745,28271,69868,19844,87108,48049,46495,81810,53960,75487,22125,98075,80771,63596,16697,95024,6670,65574,47917,66676,19357,92812,97941,20597,56507,95263,52641,55150,65047,40486,67940,75333,84706,50989,59879,29478,14318,30181,64836,46879,94768,72812,95552,25763,86456,74642,11393,42579,40974,81803,44864,63982,36834,33789,54081,37888,67353,25799,28051,70910,15227,88898,87690,38422,7219,22561,38408,18204,53138,78020,80081,41704,72058,82981,4524,14149,28952,66136,16292,77095,14632,12486,85702,82884,72700,52031,80441,63247,24345,87431,3992,10799,14133,98232,45455,64544,28702,76554,7897,18273,75765,4327,93553,92794,50419,81665,36587,61743,99436,46222,35313,4533,39673,46403,56539,30619,28757,84294,94547,82910,38571,70284,51758,80347,43881,82048,72766,26318,87547,52674,29264,56318,66897,76824,93442,31116,85666,38640,58197,16102,75085,43636,47988,36664,39252,96174,12235,89290,32084,79725,94212,95885,42626,47893,27402,69948,34206,76403,26199,15698,24526,35187,68706,7891,44580,14835,28347,55992,16405,85865,98996,71924,61948,6193,5759,3296,1684,16095,2812,37398,39692,4469,31276,79440,52389,58900,26414,91796,22366,67361,18128,93798,57097,70024,7169,51767,86218,55390,3017,93643,31656,36584,2529,64080,63033,1703,98001,17598,48380,93979,64469,22503,16612,37805,35599,88399,63243,942,27499,8986,20608,67381,31626,57415,3233,44492,57915,87632,85780,70612,70485,72439,32590,44399,28521,19303,73291,25220,32851,83581,21364,56580,67991,69416,13743,8826,40819,31287,22213,29877,36658,30398,13005,55978,29083,6905,82903,42732,42613,46565,50244,39069,21338,4575,4946,83249,70270,29683,8646,55633,32482,44158,67573,29052,51724,87872,4370,28433,36549,10540,79857,4841,83651,81357,26859,10873,13217,48606,99633,97170,4537,44768,27304,21454,53638,21138,84166,63086,8667,69278,25957,51015,65099,50252,69922,22741,48862,47675,99613,58965,28115,34165,8482,98868,16906,65938,23701,2676,14582,76693,29890,50552,93983,81370,88804,46343,34348,22832,10337,46662,56621,69669,84191,75756,23260,16676,1984,97344,95718,4746,2127,66917,24126,66076,92120,24036,33819,77845,71006,33894,13875,31102,24581,98423,79801,80695,6875,66270,16325,34886,61010,33430,91919,306,41293,55314,92288,35956,31175,70336,54191,36103,18549,63808,77950,41116,22985,55943,56109,84147,4761,15021,26320,91304,10460,26305,23247,19037,39271,92211,22550,47820,14880,13278,23720,54560,8231,23229,4787,70938,61963,37939,81025,17486,26412,57848,38246,2173,45670,12942,90922,17748,7521,52453,17088,29200,68156,80254,94656,80593,85376,21007,82118,58570,39398,93825,41241,35098,5333,51306,72978,60720,3564,32709,30101,30063,79827,60228,81164,58986,44228,16910,48052,97914,93259,41916,11027,86247,20088,92264,95360,70546,92119,685,71865,93336,31868,52742,31793,16051,93933,7044,79143,48260,62314,68238,92517,71053,28112,80189,49232,88900,47052,54284,75707,28385,30031,45131,19311,47330,52225,43850,78931,28003,20289,51917,94006,45656,63738,44184,10224,3798,90512,79313,2286,68159,55838,12777,98061,13841,39894,53056,83160,43491,83131,58802,3224,60255,84522,58082,95131,87020,10812,516,39662,21220,38134,85254,95863,89622,58493,49809,39948,66713,97979,75309,43148,27007,79279,45130,17949,61974,83759,12573,78623,79943,31527,45276,63405,50983,31012,83903,67549,530,91901,67110,5726,38034,91145,28689,26455,70392,77227,87287,45098,45386,30493,20798,19176,81278,70475,63029,4706,77652,18284,61689,40725,38070,25821,16963,8190,36630,85241,26744,24479,85244,98815,41129,44099,68312,599,78453,6619,83913,40409,83612,12289,4216,10595,99898,59148,26121,84049,60532,78832,52063,84977,58482,1904,62003,76800,28473,30399,61769,94250,57758,88894,51090,9873,48176,7450,48844,64664,14297,75076,52198,67663,54834,39400,63003,89694,57476,60923,40211,77048,51942,49782,2720,76676,96670,19041,72909,63308,82186,69685,80384,23858,4413,49615,54815,32251,83089,60913,31097,4863,67423,51796,29671,81223,14816,67466,82277,8756,2400,4020,59272,89120,27214,77014,85500,20531,81288,33710,19800,51027,53991,80887,20938,35564,96357,14373,49928,18394,70881,7385,52247,50731,31045,38923,15838,15285,99965,586,28624,31733,46032,98855,50082,28361,68046,11917,48841,66427,73657,60422,3935,62400,27242,40839,56695,5563,58737,18434,85033,83722,96347,86722,8045,94242,97013,3342,85381,80166,84655,26941,81182,6759,29488,91947,83420,20056,74129,4399,25160,5471,62044,14715,8949,69551,15282,44731,93394,64147,81351,90711,15078,94791,13596,66010,77626,50092,27735,75962,67280,87791,81115,26333,93508,8432,67279,1954,57458,91216,2014,89168,58000,55929,45817,58721,78217,3059,86190,90017,22102,19064,54459,94655,73455,58175,55327,88998,19706,8319,98109,2783,10149,96239,94103,67124,62833,72156,33726,7074,76613,13794,67223,86604,57257,19206,6536,96526,98066,43788,82947,67416,75281,28374,77145,27125,86967,92136,64719,19427,94176,21047,26144,20321,47102,58568,65148,11625,73837,88294,48132,73518,9372,41927,4601,15720,96069,36572,89553,8279,42573,19647,97888,42365,35073,31294,96185,12746,2153,15295,67514,83634,4679,78784,48125,34551,83211,61855,40797,22147,71512,59242,48962,48904,6699,90880,34405,37781,44299,70955,18377,33840,97289,28938,10515,77929,64840,72152,4346,149,28837,64751,86089,80506,40896,26847,23838,22207,89685,60543,8960,80729,80082,88035,46909,41492,24197,74468,84619,40218,32372,3412,6806,66621,44278,57332,79903,53834,67545,77436,1821,27586,31647,4397,41435,50656,14101,67575,94749,14021,96158,95576,5976,55003,43218,81137,39087,95927,7151,8171,42410,54839,8356,46818,96301,62002,23909,75253,25427,12090,40560,5342,853,4028,43508,48225,1664,81722,85797,8015,39388,12412,17478,55071,87471,32346,36644,24513,68718,93579,81152,89856,63016,92068,98866,37159,58350,71658,54684,52979,36132,23359,90718,59073,11087,8685,78025,41175,81326,64953,76473,58785,50320,96190,98614,74753,41248,99497,30774,66353,73684,9723,40911,11117,47242,45366,5888,34716,66597,88260,37206,64388,60988,88155,72023,57108,55336,1993,17464,70484,30770,39511,15948,2407,71968,35996,11373,72441,97993,12123,4602,34640,23537,58034,60272,951,15524,18281,23498,40809,67931,69682,86081,11053,50533,20634,56976,68624,7825,60066,21413,87377,83601,93732,29776,75870,63781,19829,44303,27397,30496,45515,86754,70757,29828,21521,29807,72721,32902,50862,66089,1196,34849,53872,83672,64352,64172,43859,74161,2007,55651,5478,21887,89439,3286,99216,18803,52984,98524,20205,43152,64920,47621,95332,38171,57777,74293,31232,12085,22438,26124,87621,62183,95168,90057,46431,74052,25712,29602,50625,63307,90817,58923,85991,3329,573,89339,71753,80170,33134,22816,56106,46691,29441,74174,86638,81666,11744,93905,33330,34642,76423,87916,62956,79356,9112,80039,12860,66234,15402,87876,77833,25571,71601,14747,86207,96052,91093,60779,6674,10544,63661,92864,46743,33854,65329,23887,49087,31529,70410,22210,13147,50530,11093,43213,19166,75803,35567,46429,65953,54207,34035,40017,54451,83911,9697,22444,19377,3725,90228,10353,27022,46617,96935,60886,29062,19330,44390,17162,7659,73850,31734,34848,93654,63553,89031,40778,69193,18847,63457,49601,15067,52542,32916,27414,15764,77792,5039,42496,14139,43210,93502,45194,14107,2489,48406,36168,86119,69533,46203,42202,7206,25092,94324,62859,1504,79084,9903,45923,37788,72618,13418,41460,87903,51487,10330,1895,97440,72559,49935,77682,77825,88500,24324,88185,39751,63931,44987,59432,20586,63793,47791,79807,75512,99981,33486,6467,76835,76599,27826,16983,37341,56072,16802,21963,94418,97355,88059,54291,36975,98898,22457,69402,56798,76562,427,26644,10949,74857,47539,74007,24583,12341,67644,57100,58362,66257,26787,53080,78332,1873,93840,80911,68735,48545,31328,81897,91493,83988,83586,73019,74675,46002,92832,91780,44037,52327,4280,96734,21639,9646,7406,42107,75547,72970,41730,45406,92591,63390,88507,38954,53643,53476,19231,46219,41078,90983,86322,7604,10394,2443,49631,95257,8773,75959,39030,57061,18154,67262,93966,82638,34880,84236,22811,65872,81712,24361,97881,80553,96991,50786,94005,11797,35055,59856,41438,44771,18944,25199,14264,61671,73530,78260,92354,5142,56770,72473,52400,7025,3824,64488,62885,97271,8244,79027,60897,10387,42329,96459,32943,11589,93001,11926,49446,15223,6785,91180,44039,93775,18187,12922,42227,42474,63191,80214,24341,92273,44069,12246,99630,94044,39263,24145,13999,77558,40990,4728,59022,35971,88101,98087,53390,81640,71324,18764,38405,12717,56044,456,96206,47762,22546,65775,26218,24752,8965,11526,29682,87527,45182,19017,58517,22567,59863,66395,2345,45354,72072,51270,95821,1041,28096,15531,65300,48560,6369,2987,46107,10955,61854,65409,79350,13810,34692,45489,61136,8301,27623,90364,39406,26864,84850,81508,18950,22588,28134,33490,27415,70868,28527,36002,4672,30936,8795,18431,24094,22842,12728,55998,44419,73634,83360,96638,16722,72252,76168,68976,12307,64829,37228,22669,5966,99819,14708,15576,42418,84728,24917,8675,91080,88244,7925,67341,28808,8557,18943,47377,89351,24686,470,40997,15655,47431,43753,65559,51400,28199,79978,65022,44893,84306,42176,32980,5686,84994,27074,41946,12142,6301,89432,1449,2614,4232,60631,34390,51104,80475,64178,68641,88219,13721,96767,51852,42716,72371,31532,47328,17395,414,95444,53648,33349,73021,42436,18111,42224,53701,87358,55576,44909,9765,3268,69607,23286,79976,81060,76582,69504,15981,86463,39181,17866,86763,35118,849,1080,44195,1782,40894,4710,93436,72031,6078,26813,89478,20127,46937,73886,4473,89303,10802,48933,59448,9773,1667,9229,98939,5374,73891,27502,67877,64876,55262,43905,39853,23735,3204,67507,36098,5446,68469,81011,88865,39047,50337,15821,51614,43387,21685,36274,94431,30894,63340,32738,97004,40954,76487,25713,93274,44522,89902,2780,16683,92528,25800,69090,10571,34402,55621,44678,81879,14414,10534,96891,31455,83395,7346,40953,17194,44921,82475,84940,45805,91509,96222,66006,3447,45206,46700,83832,71910,68255,91294,77620,1093,85089,42510,92265,41054,56866,31046,43980,12184,3684,57274,18105,13079,42848,28117,60184,74456,18317,19578,99636,95734,70003,35563,23293,80575,3069,96152,95638,21926,62928,19620,21601,38454,21394,97022,61645,28312,58174,75879,71232,37034,64230,22540,96241,85810,99527,10703,44895,60723,36908,44903,52473,54967,25217,51158,8359,36492,6106,96795,16604,49458,49341,19123,55467,43144,14915,41176,15276,10736,69710,45436,26751,51429,24496,9528,93695,28867,1250,67634,37855,87220,58179,47765,70551,98557,35005,84348,92343,27731,1758,84561,38849,66125,59950,83003,351,54866,17341,13971,95847,14979,71486,21647,33853,55551,67204,92538,53325,24236,31476,62295,64713,18243,24070,90713,73962,34668,80551,75812,40885,17291,62698,74777,45892,65924,82951,46285,60097,94581,41395,2866,80060,80355,18518,90398,5391,29673,83442,89807,20058,62310,18476,60614,68504,64760,20348,55304,16085,46727,7213,39567,76050,66576,20633,30807,43609,63467,89091,51899,25378,13236,21961,18391,74443,60169,24200,25046,79021,21874,82818,95565,89700,15407,13503,94075,67024,61680,43750,25556,96739,17815,1459,25943,89333,89284,68008,34915,49225,49370,51723,26652,35529,81277,72144,12570,68342,28558,92134,51599,66549,57750,80770,5037,29532,26316,24420,48172,40071,42961,81020,53806,44677,50322,58442,57835,3851,61187,53973,43297,38449,56999,36803,62127,67495,35410,19182,41477,26718,55444,88723,56370,48404,4138,45121,4045,15911,43975,89754,55391,72658,69195,79545,4732,99103,80736,95846,88800,42535,36788,31583,16307,17978,18038,72190,90136,77831,47516,97109,78774,27131,81853,23733,36087,93661,88442,34178,6706,96076,89111,64009,56043,11699,69431,35839,59732,90412,14855,98112,65567,61227,34249,17058,80516,91512,47307,62060,49897,58472,98676,93578,93084,23292,48892,20975,44978,56509,17288,70748,47965,86097,93665,89613,6184,85997,6648,97566,81710,57443,55318,87879,3272,70467,36914,45445,51878,82898,37104,56742,2062,72173,90950,55919,31836,15882,6755,90783,2499,79619,81976,86157,68560,62953,11166,43935,6147,58765,16989,99298,86625,82649,3436,18631,64568,63843,44898,44689,55839,24950,80916,84717,61905,39131,39681,15192,31217,45966,42681,51406,81952,39016,48891,67593,83431,16343,86954,70922,45691,88671,28652,64218,24771,39616,69754,76240,96733,6181,63604,65925,47787,63705,19784,43273,15512,94618,80362,59591,33775,62726,41631,18220,60590,97397,56191,65350,43288,29704,77537,10194,17379,36745,65983,66300,38983,50820,76804,68359,91238,50792,83076,93139,12364,72254,39015,90995,89264,39365,81907,16303,10157,13030,70430,16527,97691,36977,38807,17311,27596,90793,29261,904,58129,31062,47340,19090,91190,40524,53894,64355,77483,52199,62017,43807,61907,39476,91926,90876,72738,48501,39783,55596,80517,18200,33600,85734,79851,98844,83082,88349,56024,86508,13654,66503,45519,27578,31987,30112,97441,47736,97845,33639,94828,97267,38229,88045,62340,49883,38075,78136,93003,43799,28244,23902,72637,32535,98684,80318,57408,97856,19603,10616,10881,97986,46408,2399,77781,63640,98831,9801,60365,72539,93864,1203,10863,37771,99215,77457,16439,70009,34574,25944,11656,96208,22900,70337,94422,68253,96867,94486,46046,42909,11455,4755,24212,68104,77449,58088,51195,61210,49923,56498,86936,88765,98875,47083,10888,82954,46492,17899,541,5121,64357,21630,16104,70104,23876,4527,62755,17354,11557,24306,77854,13224,69863,30761,44711,29888,6901,33404,26529,89734,79792,65976,45031,40795,12006,3445,65486,6818,76133,47268,59106,60161,32798,24393,52842,74125,16867,82011,90478,72890,56200,14061,50022,33495,40680,85277,80741,79983,61170,36518,73732,37583,40874,88094,88440,63728,92633,96787,36068,32293,6683,66199,77731,17378,72742,8903,75998,35211,29177,92453,32118,49151,93671,598,22651,10877,75571,32691,32737,78648,18180,71343,55627,60157,2809,38045,48412,37066,33510,35069,55184,86502,8211,89893,32609,41102,34292,31661,3829,5313,77421,73425,52578,35782,90548,62380,29474,73192,63893,72518,91164,78780,68188,18536,65422,95642,24796,87082,64433,86756,5025,86550,96538,26624,43646,37963,52907,83874,7530,53465,24710,48199,53678,82732,42589,93755,6653,59023,26267,90436,61648,9991,94234,38205,54518,66460,46109,96541,99650,23634,2958,8416,54361,41383,73020,10251,91651,51910,93389,77497,77823,24634,63920,63013,72729,94174,57372,71735,31860,94356,18081,28064,68963,99110,39734,6979,77676,49598,56561,58887,77594,51652,93538,334,79988,10198,93390,2285,57109,47150,39553,55121,11210,17700,59896,85287,42394,76158,28746,94293,87334,91029,10453,78202,33399,56578,56627,51073,9652,87221,72117,93282,30847,39179,36032,94708,57419,97585,53144,67615,67489,6687,26900,13853,47798,29414,23645,51561,99020,50611,34906,85435,43308,78731,10899,77812,53264,16076,64476,78799,62492,56189,51857,57021,9604,71993,61006,36553,72845,35543,56708,25536,33694,64262,96514,89392,78578,49795,91199,80718,82967,75299,61989,2658,78152,87948,87278,18199,96637,57523,6625,1502,5312,60417,42744,55450,32688,68665,87254,22024,27239,13471,80758,66031,69179,26366,86223,52315,61631,59938,24523,53804,10380,29415,75326,73718,97351,43418,86381,75205,91377,87589,69441,81028,43977,17180,63742,42238,70699,3193,49209,19103,13962,22062,36964,36046,79917,31203,89485,23670,96432,89174,25353,10103,97753,24273,73242,34766,50870,73284,989,23375,2395,91821,85731,95706,53383,14619,73752,32059,808,96388,9400,86465,33774,19415,15624,82006,19773,44627,62297,24006,49440,58775,13639,62334,78948,1218,95311,83458,87245,36291,76169,38701,60848,98047,87920,77444,15594,94018,3861,10424,95610,88280,70525,86649,50527,17289,70675,52624,73683,69466,36529,63848,79472,43872,83846,38627,9794,56855,68808,68434,68429,31901,58921,49976,74338,73513,94247,41812,95124,54606,72036,2760,40083,44244,76980,20385,43659,28857,57503,66329,73171,33417,43909,82191,89106,67535,69191,1138,3840,59239,28220,34049,42584,84708,37236,30388,38911,305,36454,2634,77976,68408,81104,94,11334,96249,28283,29951,86459,36781,7691,80581,50946,47826,58830,9250,62184,85540,93015,51086,22791,97371,84005,14799,54176,23046,41341,33519,36013,63971,83204,49562,55453,76019,69134,95941,80292,37087,15354,33528,52035,78630,67175,39983,79284,8882,9879,48280,4104,96118,46469,93254,10389,72350,94549,26399,93550,81419,72747,14939,18446,96513,82848,24135,23236,56511,90657,88110,81619,6307,26585,544,63172,11613,68319,13802,98541,50289,12526,34376,87186,29849,53457,48108,27201,54906,89570,3813,57314,59002,54400,14640,35764,84622,12736,65218,1352,13489,36902,64890,94742,92260,95465,87740,16183,97145,92784,39649,40649,47991,13135,58699,94740,39921,72260,1869,69275,13070,42142,29277,45919,13803,18010,66381,27240,41274,53442,78803,43702,13907,47719,2416,60092,13885,63909,35076,71614,65479,50992,70753,11383,50994,10014,69511,28362,72543,61420,64236,58371,67082,34218,79374,61937,85772,31768,14929,27416,59731,88651,72942,49371,55251,98287,54943,46667,39006,65525,37240,50548,96371,95288,64810,39908,2625,27605,51376,87184,64442,13698,62903,93559,41283,40154,36489,4090,3780,61967,20487,38684,42824,23227,79431,24083,21222,13551,44632,68895,28308,14079,62267,8911,11472,8704,19515,35515,42986,61206,19137,43517,20063,19350,40155,51946,5516,35565,86150,92736,43590,38795,45569,37014,23367,47514,3057,24154,64183,69213,78352,4557,97657,95007,46341,62032,88503,79607,73025,88881,12261,17976,50841,42755,31445,19598,5220,73495,48655,45378,50338,98719,42211,62899,70671,28124,71153,83502,79500,84154,50040,24987,95655,64314,57133,30677,78268,21978,22477,95887,86612,93609,34655,72753,20192,88696,49649,18793,7573,44635,21564,29883,70774,38770,37312,69492,86562,13499,88963,68208,47872,36758,97909,79832,20060,26811,40451,47062,23038,15105,40304,15286,39666,33735,74899,91654,62794,81575,90730,97274,12494,37900,17356,18033,92379,22908,92487,11273,85682,49334,2553,18045,80605,88128,78364,91345,53352,64105,56960,33187,1596,68889,19402,75695,77506,96569,16142,39634,84296,14899,78619,49803,63530,76910,34885,83909,74432,49955,56717,37083,86949,34214,63768,13927,46122,53237,28280,57407,94273,37984,68968,74201,76141,10255,52953,86432,81422,78787,12337,2348,98659,62911,33272,53478,83178,32107,22027,91264,4691,86167,92389,58365,44437,9751,12223,9362,44693,55487,50971,44692,66963,96186,78859,77760,26276,66529,26346,76878,69133,79074,83270,23289,8774,5432,39978,35510,55295,92002,62059,95422,8054,32842,8964,78966,8696,26450,32006,67790,5397,34904,34969,86364,23910,6096,8907,60890,80952,70818,56383,22971,56412,64096,71377,99025,89680,91482,27024,9513,46612,76545,28887,19822,40487,59917,74826,92742,12003,25458,38498,67768,67969,33230,3234,47805,13219,82754,22323,65049,45791,39334,80001,95328,24876,16803,61459,66011,55392,10997,70135,86716,33015,25818,96825,62720,39371,78176,60432,43127,25997,28177,92102,14336,25703,7059,52784,65933,97674,18437,28794,66696,53526,10482,79592,45563,97777,86530,45402,5161,55072,63586,34791,44063,63378,3910,16112,29061,4760,32656,24828,1409,83509,76499,81161,76235,27618,18539,15796,27680,18730,63587,62879,47494,6275,29085,169,36779,61575,20103,95998,29437,30267,6519,46649,14009,29405,42062,708,36216,81522,22580,14235,21650,53233,10912,98272,28734,88170,56997,73403,13259,5067,47285,36941,50207,76564,81036,90078,50834,11137,77066,47815,61528,84528,18306,36185,35406,13373,32171,9946,38758,56148,819,63203,45136,96177,91952,23503,45389,29289,72329,11444,71933,26492,97699,31639,59180,98588,37097,96945,84531,60608,49892,75607,65225,46702,14159,13406,37013,51166,61500,26067,24754,2815,77580,90133,13216,42218,82342,91932,76027,98919,29773,74862,61543,26927,14202,85299,63110,97588,20428,25620,30035,81623,21213,27707,11596,17817,65642,97506,50047,71985,10085,32816,66499,36655,59237,88114,19710,41660,82141,42001,40293,66697,96037,18331,7564,3531,69876,63856,14758,40622,3049,99428,83471,43090,52143,92091,1347,50181,97108,95695,59233,54854,33833,44406,48866,81156,52012,39867,31758,61393,63550,79075,34628,65846,27436,37977,35374,17390,62332,32743,29942,77015,37498,49263,74153,72943,78296,54733,89036,68741,42320,92567,86085,44983,29619,7771,21012,28201,79290,28368,22271,68173,20902,11064,88822,49894,44379,91854,16816,24501,54752,75966,53696,16924,65033,62020,23418,6295,40800,91015,42283,14813,85708,4539,51884,36609,38280,12986,61281,26564,57938,39749,28510,47372,43678,24940,98010,17475,45238,3624,92340,75013,94373,41264,21858,7359,62741,50067,68098,27881,34840,97988,89510,24957,14822,46571,35667,57010,60616,32236,57612,8935,13553,22248,58360,60319,38196,31382,53654,68716,57545,86074,3937,89146,62727,16942,44668,68809,10189,73449,79910,89729,69985,60585,97079,13262,80095,74284,23881,72151,29684,67233,22247,38060,83683,34506,1158,68306,78488,80558,45320,22173,2421,70113,63497,17565,55837,50657,38748,55361,2911,7453,9560,32196,43346,12017,82844,47040,42288,19792,77534,20596,41871,92590,60732,81864,4203,18830,20638,8735,60729,12027,66483,23428,65035,45945,37422,3501,4769,60091,41729,6982,54971,37566,26557,42822,63322,71469,50049,99270,16793,5658,65987,72233,48072,38410,64950,32123,51864,26694,80363,91087,32931,405,97852,85087,60936,7842,19484,96553,23780,28681,697,45009,75995,78302,66108,50753,67396,57402,35831,75461,66146,16519,30882,60581,98105,98295,24337,62111,33531,97454,81382,61492,63645,40938,57717,57344,74510,83069,10852,69338,72889,28790,83552,96110,11175,12744,77391,4597,30606,13709,81560,46083,21769,55905,18685,35205,73167,36934,91373,4956,72215,23200,40408,12596,17611,75162,22794,48616,39465,1764,87962,7843,17819,89904,97225,54334,51165,18166,47031,76868,85881,25855,83848,7616,88092,41715,82552,54446,6290,86467,68704,6050,28814,69013,57249,39350,8657,32190,44233,49667,29553,80197,47208,81705,9360,97166,42970,48894,39377,90771,63635,81155,13602,92936,10162,76772,7781,13161,29646,80236,42739,43766,4850,90579,78565,59511,82879,52538,69935,89666,30076,58786,64190,85968,64123,69581,78395,46037,93523,92291,35743,28711,83025,74372,26091,59307,97014,15802,63579,51263,90882,28195,86783,40174,38666,68956,81096,87189,56817,94144,19764,66879,1562,64899,98679,43732,68348,7783,90338,90288,88067,80299,59079,32463,79426,68352,19738,86830,99403,32409,34324,91580,31629,30931,93707,96780,70175,30280,8178,33608,22543,36570,31541,98852,10374,34566,70879,82766,43118,83795,10530,57086,74545,84010,57123,36535,57483,83244,31595,44732,67331,94420,59042,79830,69344,87645,35486,4628,26713,35470,25187,18092,17148,26544,92,85975,11846,51805,5582,20814,1379,75188,28630,95813,73946,72403,42640,34729,48644,6958,93688,84998,92636,98925,45421,25664,41156,88679,1332,7160,82701,97174,36832,1826,32606,34467,77033,22199,73447,1224,4058,28565,98956,96509,27778,12544,52610,71002,90241,16591,53624,42143,44335,4690,68468,55918,84938,35078,40305,84146,81912,52606,98947,80078,90486,24444,29477,50851,71064,17593,45443,77661,8081,90461,59953,41807,75810,21147,8059,43620,49580,93276,46416,49398,87259,26681,24675,95390,48553,95362,132,99276,52110,96831,36643,92815,96688,30562,6994,5252,92445,52867,79858,34931,91209,72259,74046,24242,42050,2820,46409,62323,80664,50304,37032,7553,3310,27002,31312,84733,49902,5028,27080,37062,33876,45623,81262,88056,66112,70117,89958,6724,62936,86192,55124,94884,61955,40806,76739,17173,31933,62257,7761,68954,34219,38202,93112,66441,42876,80532,91283,5695,4210,83676,53949,34031,42787,20515,12780,44616,4932,60331,93159,38555,86393,12714,76204,84099,48477,81527,18977,52783,10546,81799,55753,84731,87743,56337,90096,47443,80406,97434,87530,3147,82333,77282,22384,15084,33570,56092,29049,30442,85502,94414,11123,57110,46758,80643,23439,49721,25373,76506,7631,3133,64027,81395,95318,92408,45275,17466,50503,84180,83342,82584,74629,69111,62653,27887,411,35404,693,98766,37519,68472,83402,17983,70445,99756,18444,32722,80948,60710,71013,61994,18867,68561,70192,45521,92565,40448,29552,5382,99102,1958,29852,24340,70846,29530,97574,79139,16727,8001,22996,45012,97803,63708,94020,72554,67731,91397,1405,28608,34963,75464,86103,3449,15027,73212,28273,62560,709,24057,26945,59005,91545,15659,14901,88691,79159,50175,87584,51893,85751,59395,88583,32706,58852,25853,96540,21366,3113,90351,89025,95446,78251,91399,85225,1685,59955,72635,92778,31369,31666,16536,72245,43004,49988,16729,66128,43266,77568,21276,80706,51450,90752,58679,3207,12893,68822,94216,49381,68290,2306,17535,41919,27619,68089,2721,7969,22380,57827,91758,66313,39940,3300,91637,921,69517,76962,32845,65174,42674,54570,3397,34154,16342,28162,73046,63039,38184,80906,64542,88658,95962,53104,14462,49960,74766,89172,77650,9063,74737,23324,6033,73138,10072,91186,12915,99532,10938,39965,15501,34329,95351,79721,32954,13796,42680,13271,80865,17114,31389,56670,92450,99766,10832,54662,6437,37109,11681,3729,32291,79849,24694,20052,5098,13308,44842,17029,98306,83371,27332,51092,4375,43919,30892,81041,81920,47814,85986,10778,30350,77557,54919,91548,43475,11299,7316,57752,50053,9347,78776,46984,13375,66790,84745,47723,59250,49503,22710,89892,195,47518,48919,95133,25961,60007,14549,32145,33650,73209,41649,36757,91097,42291,42029,8967,17622,41227,71659,6957,2368,15880,8995,33675,40245,41143,80891,89569,12175,22851,84441,78266,153,72696,42636,81325,96117,78134,73004,52081,55460,77032,72495,96136,49169,15814,95736,25109,26375,54544,6262,94730,74655,56827,46752,56660,47751,54131,40570,86647,34222,33053,14448,36769,11023,98561,58888,42171,86418,64482,75359,60940,70147,12840,78601,24681,5018,42341,39954,8444,35065,72785,93108,37399,43797,4941,10559,98448,29622,51247,92034,17930,34975,64320,64019,37247,49136,93765,52307,74728,4286,55611,68676,77138,27400,45763,77829,8769,23501,6317,72255,8105,4085,67422,54799,72091,29066,43765,9254,94482,72278,29032,3120,67171,53162,91641,33997,62862,50523,89745,24679,80982,24246,40794,90339,54510,21891,84658,64654,47855,1183,26354,94610,96376,18149,87912,95005,91948,72319,37518,94849,5529,94778,15654,11149,82343,24025,40355,56120,11996,70596,13753,2089,1423,50089,29663,5398,25205,48702,74792,42055,91500,8843,58948,36244,69229,5376,17277,83337,78287,14885,33436,98116,36475,57828,78750,93747,11214,19259,32536,16390,64085,86169,45112,98497,1188,13882,92609,20149,90560,78698,81783,84090,65737,25599,25250,66707,22058,59271,74044,4947,3252,26578,24100,26679,41791,21231,26676,82084,50933,82156,90404,47949,68866,760,2788,45142,43890,51861,35341,13239,94077,75885,96423,46224,26411,87915,79763,53150,26775,87795,4128,34697,97285,52010,59797,21239,6601,59705,8370,48584,18041,4578,57246,53582,80106,6643,96615,85787,85363,18395,23715,7048,96934,78747,85019,79911,60690,14185,78158,49536,28200,16179,61996,53887,97934,28810,43185,32776,79702,9397,73222,22849,94156,93163,52134,52757,26406,37214,31361,77206,54442,96090,88850,22010,94290,69959,14940,69152,59238,10773,74846,86127,24935,82007,40510,75589,17020,85191,54032,15506,18280,98065,24718,11658,90064,9186,20768,18732,3868,14285,33421,68799,89800,75053,19191,23974,61813,39933,11336,19125,64537,86590,67001,25824,50362,13206,71019,37889,76405,84676,28479,41971,14028,5143,3229,33578,52347,5506,34836,75021,25002,41368,6801,73742,17676,60967,55441,89557,1549,97604,93387,46677,51250,32468,57112,93216,83860,4013,89184,45783,49629,38755,38843,2808,27950,60881,23291,98390,11225,20705,82184,75609,59144,31330,46003,98940,90072,5483,37001,19609,67620,55047,67176,61193,35025,60470,32072,55377,23783,10252,40791,57027,2313,59000,27498,96962,23246,16652,97382,84016,54515,52533,7011,32016,27352,24241,19432,59229,52348,46674,55654,29709,60961,33527,35221,82102,7901,80539,39817,95827,30390,99820,50952,76472,56889,24138,90233,21802,87930,25451,50125,70518,60744,40334,29110,54421,77450,28024,17312,53284,25445,7198,73650,43227,38020,45404,85449,26051,55219,78051,53546,75965,61725,46681,88325,52593,69030,67253,41484,39499,30449,59620,97103,82298,14436,11881,55646,90365,34228,92932,74081,94367,86231,71149,65372,3448,74339,56852,63978,93323,71956,23655,94712,77692,19008,5904,81649,53646,3525,61109,71665,22633,92422,54498,14692,57870,83493,35528,42295,27880,95141,6285,99579,47695,53780,30152,38489,83907,70787,80243,50913,77176,24787,37170,94189,76140,26874,2749,11956,7539,75644,47157,98871,35853,74634,75258,29300,46233,14433,40276,75285,64029,43937,31786,21155,24049,88350,25219,87835,64932,97542,12257,99757,44593,91041,16790,28596,31224,27669,73759,33143,62336,46034,54691,16671,14842,55984,42220,32762,18868,65900,74157,30616,17998,90290,6003,42165,92954,3678,22186,40397,40312,69010,68195,72629,40284,20006,87213,77360,39124,62386,75149,81106,15498,25299,84878,52567,16352,55852,43197,85799,88675,16218,46993,2001,40361,61381,66769,11793,52061,1643,59834,27909,21826,47579,11243,80518,96880,36899,41979,62678,16799,88638,12125,37706,78864,64999,18155,4864,95592,69526,61550,10070,22826,26261,70819,97483,3154,45707,92981,82083,12640,54001,71931,36203,21756,78936,8094,91446,89759,90468,49462,89672,43257,19922,51762,43216,79783,47490,2618,70905,16838,87730,92465,89847,88409,45306,91205,70277,42216,36971,48515,20129,13046,95836,77493,3989,96207,59699,48819,10060,17972,502,82381,24493,64037,86870,44571,46608,88162,60063,15885,81441,5657,39494,30811,14639,2496,5134,49017,54340,8833,66941,89181,27048,78653,54287,69172,20722,34524,84369,88591,21179,27173,21859,19363,31512,60524,2492,16271,7295,1573,27641,3570,66531,98226,28971,57666,36696,24038,95764,69603,27572,72585,85171,48558,51252,30910,70272,85073,24215,87277,51714,98364,5423,33119,4144,84196,57626,13997,86908,78665,54212,62265,12475,55773,49625,93465,93741,38864,51938,22937,79414,54506,44036,86979,42586,43961,69942,16256,12038,38431,10274,71282,99556,43040,71673,22063,94167,59285,95997,77182,25395,35944,75970,95522,89733,4409,45184,45654,99441,31950,42606,81739,38959,62540,40376,95498,63234,64077,30757,97335,72933,44454,81721,69522,70721,80749,7181,83791,83081,74631,11685,29520,19119,72602,77240,80717,24775,27895,14981,59431,74719,48647,58620,82547,89737,8585,11527,15297,4855,78980,76571,96548,12301,55509,7185,32616,58817,49257,4722,79124,14375,63594,74326,68231,68945,61760,40291,44847,37660,8027,93374,17374,36704,39260,53492,70233,94872,40115,17037,92501,58085,73541,97869,81558,84897,25761,76606,13626,31244,27621,97903,58019,64082,18970,67550,48051,12009,86849,42544,56388,6918,15809,64124,75619,22342,52686,38930,27854,8087,39037,10683,82689,6039,74904,93862,62860,18645,6086,66547,79958,53007,78526,3373,33040,79519,93656,35074,56624,46305,13670,16587,76366,11588,52879,93334,89239,90799,83727,15657,66105,13538,47744,2054,46519,36319,35419,36672,41191,53321,79347,65879,85551,39626,99234,95786,2602,28726,46730,45350,53675,64438,30913,61245,10333,63827,77288,63977,49469,60951,95264,55126,56433,81128,94968,32575,82892,14903,59633,4022,18555,23855,99790,75944,24969,74654,7674,31365,6996,33064,83303,26192,40952,51646,26137,1269,73944,35009,14034,97617,8147,30410,35440,3415,80458,41228,83139,86632,61807,40302,72074,41120,43809,10391,52552,37185,46582,35428,16105,7126,65500,81197,15797,54528,54015,80544,59637,10943,83839,64854,11095,48939,80399,16217,47088,72307,65440,99410,81347,59173,58530,63632,564,5250,9405,24374,97449,46078,45144,14406,47853,74769,55411,36353,34704,92568,86993,72869,94199,15920,88875,13426,98133,66995,43025,75132,88405,45342,72828,83019,44525,78844,46515,24862,96707,57359,25805,17701,32663,47648,74785,55722,42993,73100,67795,34005,51459,90231,15735,78952,95443,74544,98278,49205,91861,10876,97511,23592,83125,54479,74500,70293,54354,91770,50028,54486,68375,58303,87478,9007,24749,62041,96041,13065,33902,83864,57956,67321,40678,79012,55140,30469,55108,25069,97686,96953,86519,78902,85879,13103,89423,83341,31133,86895,6710,66570,60683,31172,46135,10740,79164,72915,76266,24114,40637,58697,52034,81743,9986,5198,61638,23224,62600,55244,75771,16190,78301,25124,18023,45840,28951,71291,71898,7253,11960,65915,43738,86670,10641,15244,76285,630,5019,59892,11493,16839,87502,8602,11457,13036,92423,73555,61124,28733,71690,67789,47993,33270,3283,49948,97899,6206,18598,17062,22973,24635,34953,48966,28484,21286,78964,49968,77010,8468,52904,77805,18221,41742,93501,46927,12397,48680,49422,23410,57500,46395,63837,25671,71156,67088,86812,27835,66958,70419,67346,65207,59443,8489,7978,95435,56559,10379,32393,18380,36556,37286,72237,2968,24533,66496,4652,22807,60878,89526,80270,59189,5899,13509,45806,89967,20845,97291,57619,95977,83897,6587,17271,26872,70186,45347,85256,78594,86039,1475,79613,8118,43423,74513,92391,17779,67522,41272,2592,99569,57399,61458,64848,34572,57594,16169,29202,2962,1836,97061,29334,8621,85342,33813,17752,58996,1742,70616,38019,12339,96760,99700,52848,14378,9433,20723,47989,21196,47408,57464,89378,10012,59295,55399,69781,47854,86487,24558,33868,87655,77882,81487,28621,18472,36423,94086,75674,84867,75016,43012,11480,41162,59036,70468,29351,79676,68482,26601,86452,75800,48370,74048,45934,71293,1707,49502,6316,24629,9714,33231,8692,7760,78996,27176,1165,18613,17239,67856,58507,14115,83959,98936,52304,50869,21693,64698,55841,7373,28084,71458,49281,10594,39869,67670,4715,79760,18587,37241,91627,21785,19465,17771,51052,55459,30663,88773,38238,18799,67580,79238,2326,88310,51536,91005,51682,65268,16957,70652,4624,83547,85120,23755,13409,14031,85906,28898,49638,39481,71273,83166,83387,3463,94930,27360,91027,38441,1967,34965,65387,64303,41640,35402,28489,76051,93772,75420,25291,48631,66315,36974,60862,63988,6945,44515,51572,34731,22300,19033,8083,81293,30281,2758,7931,85727,7276,18488,67314,35119,52016,57740,63905,56823,41499,38340,26329,30048,25797,54011,85576,1978,19562,3579,86095,88122,56553,31889,37938,73614,77177,87909,48816,76706,9026,79915,94527,70564,18343,21633,44570,56820,48009,31688,35855,27099,10625,14332,48978,54003,31791,38931,87463,55724,36417,8837,45874,50020,75593,5517,65739,12241,98718,97958,32895,80252,35483,37951,89014,50874,3766,17811,21800,37428,46517,67193,59296,33287,46376,1083,55687,85424,56198,77193,82490,12901,70959,87685,30089,25409,74156,57505,39353,37807,82629,83035,4789,39326,50161,39356,66446,16752,91811,3994,54875,91000,66829,60050,15341,67528,5364,6143,65255,27891,41422,33032,48330,16784,20347,59861,34053,25449,62853,22222,9417,32347,41518,34407,81828,81249,54415,90650,2434,31487,65449,70847,83794,42348,38861,68832,75329,95613,51224,26807,9657,19083,88762,11405,86240,37851,86365,77607,86804,75297,23899,15876,57644,97801,60012,66423,34024,36957,51695,41823,77341,25063,15694,68731,91231,80342,40002,93647,3126,8765,7180,90839,63161,16525,51773,19681,67425,7228,48082,4394,47047,84014,36488,41646,42195,83963,54104,73767,81975,13324,79867,60299,98459,96636,65266,68952,56276,22904,33011,48710,29007,29666,21677,74151,26174,68544,9601,18958,62498,73691,96669,35258,82237,98488,86564,79895,18152,98582,10135,80173,81923,87229,60865,48585,89850,84136,33479,25400,14300,25295,83165,73388,81849,556,62068,79050,66947,38560,95886,47821,34599,7766,40187,70086,77392,85278,41010,44078,80065,11156,31606,32741,55745,9271,56247,26933,19000,60879,80896,3379,91204,142,47974,89744,90941,36723,96205,82682,33410,26351,80168,51720,88131,75596,87697,47118,77807,83888,86740,6054,40968,75603,96131,71646,13233,40749,7629,65996,32595,48045,25157,24657,58481,45976,31740,41352,68115,24310,14625,99323,95777,38130,60282,40961,34714,25447,87109,20517,97120,26808,95460,2609,1440,11817,64786,5127,37727,57819,48882,73547,18214,80811,66488,38941,59058,71117,56463,87416,33793,41043,40052,54113,9839,64313,69314,73258,94266,46660,18361,62388,6387,993,31397,57128,21618,18622,34349,39820,23486,74426,87709,64288,27966,58725,28664,16619,37611,10543,50749,50847,79877,15725,66391,60254,77001,33363,64109,91092,51898,18393,56178,51094,43502,27277,38975,88038,58218,54949,25913,84663,62277,58809,40667,4095,28988,58098,24448,78053,36481,22998,67724,62056,87176,64910,65115,64297,67697,6210,97007,85579,74660,51616,49258,63655,85825,29947,88600,5081,86471,96270,77935,59293,76082,90126,46942,9555,83376,26525,5044,72505,20222,29496,21044,51387,93462,14456,50418,72084,81145,64814,76258,44684,36937,35894,91349,80266,84229,73765,22796,19588,20478,86913,778,20439,41301,44226,99181,59257,20695,6622,65637,7939,67904,23996,64161,25099,62442,52085,49914,2569,51872,64158,31794,7102,84042,52990,91671,49325,30396,19746,46250,96343,54292,94889,32542,70282,4693,34966,50910,74430,69866,76970,49358,67267,64601,96428,49507,88167,4309,83661,12002,99226,30916,41040,4968,59245,54575,22256,34910,31251,27613,54678,27097,16618,94694,82548,86588,24226,89692,24423,61236,41658,59716,15878,16248,48443,78663,33049,36201,53952,42467,39102,30059,57057,53061,65599,58084,40644,33060,74680,97436,40701,43588,71036,44858,45331,27676,86352,28229,67032,1489,53472,92127,55154,42083,87457,14529,7091,30445,55872,54002,14451,15965,30253,87907,33917,1035,21931,189,38393,91970,13661,24553,92129,26184,5965,89659,62087,43927,6388,19747,26615,49479,4591,79402,76373,32060,81013,95098,94895,39805,58727,73538,74267,91738,60525,46784,82612,76968,10722,41897,53477,95300,11934,7315,97650,28961,79299,55490,8842,16984,34328,68077,29817,79275,72240,18728,48788,92140,40757,78951,64765,35456,35934,56502,38349,99031,24654,43830,21527,51221,41018,97134,80560,11094,42249,23772,98651,4285,63897,55155,79773,96661,24440,3702,75920,3158,89254,56457,77860,84157,59034,2894,36129,53909,35283,99141,76718,30682,83289,16570,10177,49624,67201,847,29338,24266,31657,84970,28692,31112,71619,4639,22096,73548,65836,65301,43785,17725,91382,94343,11616,37215,61730,90423,96740,4081,69046,99376,7495,28637,47996,89448,69767,87963,23067,11856,11929,92803,17004,27698,3914,1094,91815,45915,73035,60493,57317,81482,65496,60911,81153,92988,23976,79570,65490,36698,91478,8149,87117,11555,17258,6567,88556,18359,48790,79059,59775,54594,51287,41774,86805,16718,96685,40463,96113,83460,2264,51626,47829,36776,75352,14785,62162,54761,94127,63190,61732,30457,20752,20943,24191,83878,85391,78195,51651,36805,48107,80053,1700,68372,34862,86879,50880,29243,82055,91077,1124,52470,13584,90462,60706,91256,99963,54089,56214,70779,21015,99106,12606,27850,18126,53058,63569,2891,42105,87498,89539,84720,22289,48632,66422,89682,93723,1219,49654,56466,15119,66994,36516,29480,9241,84712,75050,47966,69478,76072,54175,78123,12303,79394,78263,60902,67623,56896,8526,19479,10659,38117,26291,59120,25735,58895,57165,46334,41659,52761,98506,24550,92314,80199,83549,64316,31715,604,37610,18413,68219,20070,79379,44932,51659,91549,26378,13877,11412,26998,18945,4805,97119,44475,48090,21782,61192,69584,15768,20748,33274,43129,65241,7032,50801,58889,13485,95169,77135,95072,85990,62242,606,46293,80469,33653,80640,49987,93065,88665,98513,57143,13948,11633,26205,3423,32144,69606,38390,68151,80417,7980,60392,79266,1501,78057,85035,15056,68923,72734,91285,81101,89627,49471,772,70142,56801,98340,11701,78816,97322,55577,9575,18104,21115,73705,71367,46271,80109,61856,77221,7433,60907,74192,85676,93861,22516,30956,50615,5186,4470,71012,33438,77839,76434,70077,36301,96639,42653,58066,26888,86269,4405,18782,37174,81067,2365,46194,73941,12496,12283,30415,91909,60241,35250,49395,61798,70864,65406,67723,46914,24639,65751,92027,32307,77634,99258,15722,28713,3508,30869,62366,35505,41939,65323,42646,27130,19569,53490,69897,23385,99456,62822,43339,28935,67333,61471,21332,11939,59496,33467,58374,44435,70504,7103,87032,90874,2713,9307,89126,62840,43671,78288,34147,98547,52177,52818,27889,63425,96621,63963,94557,75981,48677,58476,24971,40206,50959,69337,16695,64716,72112,76850,49173,43538,69371,46756,80231,86221,19262,82152,90642,53637,44178,26605,6151,35301,21189,37311,43644,56825,79364,48941,59680,42286,75291,10035,70530,44186,37853,25210,74659,84429,26736,39672,99345,1801,29755,19152,68336,31320,27442,46209,24643,29963,4242,26015,60579,84895,72327,3807,66012,55212,85475,98862,5270,69786,78514,72418,29977,3629,62968,51792,60191,3453,87343,99892,97625,61927,98637,59355,64380,12499,59623,89751,97081,78500,55101,18227,3028,14544,88766,98633,78087,10833,67999,11001,27032,12245,3787,65645,83691,14641,43773,44405,79964,92654,89399,7250,8119,76573,47847,75930,7711,45484,71818,50158,46770,41886,56768,42423,20421,44242,78016,74965,41013,53157,84268,23740,91998,22187,31117,80830,2717,86698,63080,59809,20360,45006,1795,61196,68931,22835,1261,40657,67065,11096,75303,15124,44424,45678,2268,503,62581,90451,54470,13316,65712,62243,99552,78209,43329,3180,12420,13349,30549,56352,89006,25289,86515,71202,9582,65219,43366,59697,91567,3875,31018,20201,35026,81344,4261,62811,99191,69025,1631,59397,69516,9420,17887,25635,3499,46097,99332,60305,56174,69357,16062,25889,93577,40217,21636,13531,39562,93588,64054,31376,79014,78682,51498,58024,87126,51051,37908,56336,73197,28456,28466,30335,33979,14935,72502,18743,28420,22422,20896,94795,97610,31113,55928,37823,76420,31195,92663,17414,59383,26401,77710,42874,3660,82390,94065,69255,24312,86082,91625,31750,1256,58202,41596,12215,15794,27948,74383,20194,9699,89550,96324,53863,8913,23744,81455,15856,38737,21284,85598,98070,1939,51399,36339,23618,93332,66269,76041,62939,22744,99001,63012,90858,92033,24224,8202,57198,17339,16770,17678,12524,42813,71039,18194,7950,7954,5765,88172,6080,73338,87155,69387,74214,74789,40641,15031,38680,33201,11606,64348,89487,87928,34882,1647,21461,1247,76299,64188,91833,52762,39008,98191,26571,52943,76934,10488,29972,19383,54663,79100,71577,48130,5835,10022,1149,38493,25115,68713,85635,20392,28427,72454,31039,40549,75864,31240,51999,71805,37557,21401,86549,23361,55466,12604,49357,2771,57678,23366,73696,93715,19355,16788,60790,51854,14077,4572,3243,40139,43685,78540,35594,91900,17070,12305,69404,71998,80568,78917,3698,49818,38576,47344,43072,81948,19934,95049,92486,64053,77709,73466,15866,67696,87063,45070,1075,97102,16482,66376,72293,91332,58843,16382,16184,40867,90132,32821,13986,78290,15380,80820,97236,39469,41342,5832,55721,78398,71526,21357,68595,58685,83627,73569,51524,72197,87483,40407,78926,5762,49736,47414,25402,28921,54147,30501,33019,6460,91372,92121,86819,58341,74806,48706,66044,14484,7638,16008,43882,61946,18635,75747,18657,97991,34657,11974,25152,75119,61208,99913,22850,84170,25904,86932,15201,56881,55594,33625,73879,70424,45536,952,33288,99200,35427,28524,77543,28344,39086,33730,96992,45219,5844,21183,18112,22583,76426,73594,99501,12713,9939,69264,42788,82709,41647,60942,3398,70999,7967,40873,52037,38131,85848,49320,10011,82295,69043,99794,36578,99349,77484,95395,39097,21146,49765,63489,26760,85594,45964,96957,84597,55595,20734,65063,75724,28165,87754,86217,57151,28137,38047,39865,59152,77086,44398,9124,68990,94361,48289,91584,34304,66111,25017,78706,2723,60835,66113,472,2048,44555,19316,35906,35799,700,92327,71041,44050,74169,1147,14826,2980,22292,77983,58234,30598,10969,6240,72339,33084,43715,39629,76575,25241,57011,93155,80530,77611,88774,29075,8148,50111,71923,30688,54902,74886,84620,26658,70106,67231,80088,50977,84003,83002,96644,60536,36173,48683,6563,25363,14864,78986,53734,83061,40921,10143,13191,43527,21896,41360,73290,69856,46302,17169,31651,60932,89784,12643,8269,59016,67788,58405,45979,92849,52437,39151,44211,82759,96040,34835,36683,69915,51253,32098,58345,98419,68338,67641,82973,59808,62544,46797,33842,21815,18044,93759,90507,70724,234,27704,42075,27047,28784,34466,45205,60711,30707,57660,12279,63770,24249,74824,76670,19911,96080,30295,53187,14352,79383,40398,36691,99926,28573,81461,47497,1792,27762,22648,73715,29340,7421,7369,14601,20368,80387,81884,65547,14140,43479,35585,43860,50639,69614,74739,42608,93898,73295,85584,68132,35929,52507,79912,20574,27908,95101,13676,91040,18346,47044,74401,83042,3155,15877,87968,58006,41810,33940,81653,83729,32728,80224,48804,13980,16916,94875,97997,1590,85428,96641,55776,80801,49973,67965,95052,24927,46117,89196,31442,63642,28234,58431,94257,67339,34365,98365,4350,78877,133,94630,17603,23188,91477,56168,18049,37179,48708,36265,40322,17697,38960,20122,52544,9069,27700,62288,33371,59889,94533,96216,11366,74940,72896,33951,71364,51297,13520,36919,76021,89723,78108,50336,53224,14825,30617,96478,72048,19939,58703,7860,45297,20153,22052,24809,91992,46782,8517,60780,16031,13817,52456,41889,50720,41442,13759,4083,62219,88296,37958,40805,80977,76017,81158,69411,42252,77658,31804,74756,35902,21561,34881,48146,76318,11903,22655,96244,11918,85662,77146,89889,6767,84862,63303,93616,56811,42841,6493,52727,18408,29397,9950,88958,36939,38711,91074,572,49105,46060,11037,16723,61228,53560,15945,71174,90332,52968,50039,5405,784,63710,70087,27852,71897,91123,16611,80613,38168,96521,559,15875,80201,51533,56227,56416,42922,53198,83964,2277,77956,18452,99541,20861,38896,46013,44776,713,40150,85768,47521,88516,95822,48039,72818,49855,17769,11954,46010,38830,56237,61466,37702,99027,58159,95534,8570,94322,30016,85614,83937,21658,69057,74731,14395,45524,88927,35271,59339,43223,42386,63412,87158,61641,43207,10961,71078,93393,4103,82065,40255,69423,96025,52947,45868,70099,44021,93603,11184,41511,46041,88535,38455,98180,45833,16753,98286,92143,18905,88178,52750,14252,68908,22870,74882,72918,77018,42300,46510,51721,771,92840,99807,28800,7143,10924,27073,12043,33764,83686,37526,91619,88996,48375,25068,78728,25428,30312,13134,72356,15563,42895,25340,74002,41500,37494,64229,64435,96750,40329,85075,6093,72271,77204,8219,70072,81902,85413,93884,98230,72621,35632,85466,49843,25731,4332,17829,70486,56307,81838,21732,71227,53524,21352,98172,8443,20477,94994,57589,33089,68950,43673,51715,56035,33871,8943,5527,59605,38964,61095,88910,14119,51372,53275,70387,60436,18780,91036,78849,96705,81433,54333,78027,96293,44301,99973,50965,24995,51691,29123,88909,62687,52763,92689,79093,13562,69820,92860,62914,2919,77561,66740,6419,78468,1759,16507,55695,13826,75927,91908,72388,49998,88191,61272,38693,78938,26264,42373,69052,24607,38989,8946,38145,61541,98675,4349,72744,33957,73890,51604,49410,62578,85645,97161,44295,92093,95198,59733,94113,48313,30110,63816,43124,97558,76436,94570,193,62596,72853,6504,43246,85070,97037,23419,98487,68540,76062,62942,49510,86235,86317,20616,68688,80394,35252,85790,64592,59299,56332,78303,75445,76923,50829,43798,71475,92761,90644,4178,21384,35950,77630,85593,46009,21158,23500,78056,1246,12629,67345,6291,98427,64072,70089,4395,43013,75826,83043,95216,93423,17314,85902,67563,75594,33316,21567,17408,53182,4711,69078,36469,85366,42996,65524,69382,61427,43187,33314,39063,14527,91725,63676,73523,28342,66310,19421,99713,38741,17749,26312,33695,86524,15442,71477,93188,69336,34857,67365,34528,54504,92222,69921,36591,72160,61540,27271,7504,73607,23546,45610,51620,50473,54038,57023,1737,81744,23917,75778,9704,16229,75274,76070,57655,47287,63236,38366,32500,27856,86160,99050,64329,56432,61213,90022,87860,80058,76479,36186,58239,27477,94378,57638,98565,48906,5176,13223,49095,8326,68721,47226,87310,1876,89097,47597,63996,64570,49692,64962,52500,29565,18098,19823,15108,28313,3013,26117,85657,2208,49492,9811,88636,67728,30242,63337,28139,36526,47669,59886,59351,76799,54019,52220,59056,33825,82580,25098,88839,5317,321,95150,42240,12641,63225,5278,85460,34048,92106,2914,71432,26327,33156,13150,65381,94222,912,81416,2216,91380,14125,71592,73909,11597,39218,97419,3870,14495,89757,99652,19669,9288,20701,70815,70187,58289,96810,27682,60264,928,99309,45048,95888,66864,36140,89596,93716,18605,86489,45922,47104,74727,98769,90533,18151,26727,35573,2641,35694,70500,68507,25838,72132,77253,91181,42493,44024,52082,27079,53749,4564,29736,91276,53247,52405,90847,39959,14873,33631,51214,81991,55274,39318,97184,28073,46136,49065,3826,39310,29181,45687,26387,46729,61608,11894,36839,18570,11061,50168,47175,91904,22875,86445,52821,23745,41802,77283,66604,86961,64116,5960,50058,55857,3091,67810,63911,37025,18163,67690,31886,12732,81448,32912,51966,75481,24086,99568,73776,12695,9532,65891,14011,23263,72728,86822,68660,13510,89347,10086,83119,48459,41799,46849,87550,13178,77443,31625,43968,91819,90037,86686,87389,79252,78564,46809,46561,90697,42531,40975,90915,68455,88623,59893,57466,37020,28365,60679,27794,7505,93490,62089,80501,39583,54619,37975,52151,54777,86415,46890,15928,92732,40432,52461,78988,99566,74431,11925,26552,71103,59176,18881,2091,62362,91296,16959,84966,92053,69599,18765,92022,24027,25541,64753,55218,33273,89603,90011,24781,240,85788,61351,99430,28730,22045,74415,98190,44339,58599,9881,631,15791,15416,69473,97821,2674,13141,70124,60426,36581,29904,93212,16080,61294,46008,44350,72172,19571,75899,93607,32655,23529,67773,29589,4386,11200,34320,15917,32831,85713,43307,99113,63299,94955,68695,43976,95322,89608,52296,39066,9445,78485,88534,17588,8626,14610,25300,98004,66215,98082,36093,32471,48855,43327,28192,97775,27412,57984,8546,23841,30881,13506,29519,90756,92978,81804,3732,30966,23127,46174,48033,71997,77241,66087,86684,17352,69683,14782,33186,84037,69865,21268,45731,64403,38992,67481,40813,83386,39904,23559,56,64263,83106,97380,73861,5610,90750,1287,39601,46856,17126,76131,25874,33165,79323,4084,51388,50223,89724,85371,37077,4927,69396,71447,48424,5594,52698,50672,51974,57650,35755,80650,1131,77916,19884,10040,50926,65865,20589,95860,75396,39426,70793,34933,53898,83304,24762,91859,99518,52115,66973,73739,38800,62977,14781,37394,32991,69132,11577,12618,54999,28605,28081,24963,67932,75003,47654,99142,9927,10092,95940,18889,54873,23152,93985,69310,18557,646,2299,31161,50918,4333,40480,79361,74226,49970,53298,37453,85669,73277,64136,18292,44498,36105,8405,78818,43403,97212,78730,26839,74130,38761,4689,84041,44734,65671,35220,48117,69628,84127,4824,62200,79765,33934,85526,77868,58464,14327,35303,5851,13852,52379,37960,71682,24646,140,57917,40396,62935,52380,33385,98605,31972,35028,98673,68940,93699,48069,64376,62626,8702,36613,355,64279,28538,72798,42207,64826,63976,64243,60698,10766,9067,72930,1463,94636,28943,78998,2604,83811,97660,56445,85852,9589,35068,43446,27368,55194,14856,45395,30327,80799,55248,8540,23415,48663,36024,52265,77787,96283,13261,58045,75611,32486,19653,69291,42358,21885,32752,30570,85434,4750,30202,38076,42896,80734,48080,33407,70381,6753,69854,2516,1991,20475,37784,61774,83945,77987,28619,52001,79638,54316,45,48317,18341,80188,18246,57654,35344,34288,90641,29113,79820,60946,89961,26280,76700,54226,89441,78797,92225,65936,51710,26138,63670,9576,97169,72409,84971,7678,33802,49102,22734,52936,49967,13599,45390,60823,23775,22399,54280,50671,71152,52910,33705,5829,31562,26788,25790,87308,41604,4751,47861,52582,82334,39792,60062,1706,32708,35581,44535,13908,64735,65821,27595,93663,78558,2926,31156,31130,47010,33334,35423,4151,39033,58587,49565,12432,34728,51180,99660,13207,11849,72552,52588,53358,39935,78174,61493,30973,56677,41152,49090,85901,79672,82160,31105,58677,75239,34814,91433,14254,61685,6014,58126,81898,6018,85585,34884,85346,55584,56180,8217,66809,78502,3185,94419,57454,86578,69804,50152,82482,93910,80239,19450,36983,979,87344,58373,25875,47628,73442,70158,88553,97702,74596,26175,27949,49705,64304,91284,45060,16479,94359,2266,9667,1625,85265,92990,85360,58480,45501,36255,96013,88901,7747,45786,54502,99923,83960,4416,32710,12764,18110,9116,39916,99686,87179,29768,71853,73013,37210,96280,69438,11724,83300,60076,2374,69240,40145,8450,3035,39905,17635,32272,92648,12873,1315,82323,41800,47127,76749,38946,36358,64855,56034,15766,71884,4069,2768,5020,15165,6408,3849,10238,53374,4568,33788,34460,16028,7111,9990,22424,38933,99335,68324,93821,58001,33511,94579,38156,90539,12098,35355,66450,7785,76641,23116,67752,92705,86559,47881,37876,44696,44166,32961,80225,1745,81034,49302,22625,13581,53006,78522,29944,65528,84801,16185,30044,43778,22282,12183,36686,63367,80086,41009,96458,18546,31724,25041,41822,26489,77409,32470,19904,80322,56626,84137,61264,15389,28838,39938,95182,2318,44747,62249,98958,41873,69001,12029,38715,95085,99451,92278,51684,65688,8299,75640,62114,69604,58293,38509,90676,99543,10403,41270,69493,39830,97024,35747,30038,12179,73273,139,7650,73367,59157,50035,64669,1907,59790,19130,77754,51564,30473,69015,55097,39588,80337,69089,65078,31856,98509,13714,60607,72688,19418,96920,94969,65000,54881,21723,10539,75254,96197,56694,47137,45756,99910,2554,31867,92785,32704,25337,36956,87610,56052,12000,78187,65651,75255,13808,71715,49572,10352,47811,28071,78921,52502,32593,51881,95489,53450,61358,5361,50344,45863,64022,582,64768,92323,26855,15221,76512,46292,38445,97584,68439,410,72326,82462,85861,48349,74822,44469,97222,73689,32221,95279,7579,61611,31498,61633,18428,55699,76346,70354,37264,14501,8589,85322,54991,75875,65549,24258,3107,3304,93958,24776,87540,59089,36128,29198,62467,88955,55895,15092,50827,23992,47932,30194,19766,31311,94076,39688,21377,89080,30196,8819,72857,50257,98021,81605,3420,30489,36727,59922,98385,37980,78631,53485,39773,4660,76714,63183,35808,2453,45195,2981,41918,99854,49351,42247,33042,15704,34843,99080,20914,21410,78095,7968,52478,49590,43586,87541,68865,81579,64319,50623,90373,56847,12442,55456,67068,36379,57250,83647,30464,19457,17720,91715,4420,98494,72148,91119,55,6505,72213,95211,62357,15137,25424,63314,14356,50500,8176,52404,58462,95935,11144,51300,8868,4381,11807,41302,84329,62197,21321,41549,523,95291,96092,90159,17210,8648,2035,46837,21203,62063,5210,63496,83049,87752,14535,14551,28907,75637,44156,21925,8145,31273,85867,26202,46064,99123,49737,83918,16037,76636,4629,54462,50305,73993,4566,17325,72704,31422,39265,9701,93144,91515,67825,26227,81776,11574,50025,19979,28238,6150,46747,96711,16116,30719,12555,17174,65472,11012,24196,65932,41478,49656,77321,78089,59482,47913,55040,64170,15923,92020,96482,40824,22763,44413,14717,97676,2136,61553,50115,13940,85562,70839,93186,97878,5085,35272,72303,24369,48958,80704,93291,92509,80526,5918,6247,15009,15845,31423,71719,97590,75385,56349,5729,15750,35730,42675,29433,24965,9495,26109,41317,87894,93098,23302,36562,90106,11353,27685,35319,18479,68052,52392,41087,44942,11845,97528,38567,17428,92310,5682,88137,487,83397,46682,16638,78748,23009,71687,15158,76096,96378,7384,39248,79322,50707,8664,58626,37040,15127,22952,2947,43755,36226,354,6987,9074,87056,9392,65478,3954,64556,88884,34354,85370,30962,48746,90346,47400,52831,95032,12981,53433,55684,69149,44817,81377,70238,5401,5560,13632,84659,73479,74641,58605,80222,69884,90696,37397,60484,8760,50618,4638,4006,56066,80352,70958,85849,55813,58245,39020,22748,16291,2850,1136,53030,1956,65723,71813,6438,7155,48764,77549,14050,12683,320,92352,104,13656,79333,30354,82660,97342,56508,71412,28393,28080,55677,13537,28884,73347,43285,56054,20325,84803,51739,99876,81118,10662,51987,99944,26577,99280,19085,7307,1578,94616,41792,29785,65810,21892,93331,93995,93377,19858,37746,71528,47058,31335,76684,17294,18713,68898,29093,20362,14335,25183,74203,60139,75993,41934,54160,75033,82351,51458,32864,74656,90881,35557,92922,81174,48530,63349,11720,20859,57182,54688,22671,17823,10301,43492,57087,96673,62485,8164,57006,54493,24763,87280,2429,83311,5894,67184,39806,61218,57222,73998,21764,78875,7699,41907,66449,14409,42489,90577,15318,29901,49797,24449,97554,61538,45508,48701,38024,73050,2134,14450,77951,3891,12319,57731,19573,45190,27604,28421,33466,27118,81322,73704,61330,34949,98765,85269,92747,87408,53214,76462,81030,52813,30848,33290,80084,2819,90716,26955,9328,37954,77936,23083,97766,37967,67126,60232,66299,79152,42679,33545,98779,95252,45809,12134,93838,38623,2732,7291,74927,43449,41394,79511,51099,86899,62227,72389,6768,15545,97599,38582,37253,77373,79668,70884,60514,34670,78649,4646,66653,34662,85015,69109,24758,64103,55221,96999,25558,64726,95778,21367,63447,66506,42781,5224,61751,49296,25815,10477,71626,99806,36037,68097,23539,17554,57708,68915,91483,35907,68241,95602,83973,20303,74913,55869,65539,28241,48765,35798,83285,82755,42749,67745,64117,56745,31851,43417,46680,95955,89283,75230,24574,31556,64709,35941,91825,1648,18269,53152,79815,91918,49900,80294,7017,64888,5887,39519,34548,32939,30395,65318,96320,92230,5810,54343,73080,23562,2118,21341,2564,50224,11636,37307,36966,8794,97479,46552,34314,5562,52415,30296,62545,49527,33799,63049,75115,65455,57093,11795,29122,76831,22498,25256,87062,29497,21041,17762,81826,79615,94767,76088,17285,42567,82998,18159,23644,29301,90987,37945,86818,96598,24288,26094,57793,25639,90975,14757,64134,11726,44287,62007,3820,89779,40492,49204,34588,89896,70640,62772,51943,13942,19690,18744,63871,39742,79351,47205,41290,1628,12446,37584,58162,94746,18240,97059,73567,1780,41032,19084,76664,21534,29949,63740,27044,60982,57220,8452,2725,62884,5299,87970,59586,49415,45587,79496,93600,86958,93713,58132,39166,66732,92953,40890,87945,78712,93818,60899,23574,22311,72643,70368,54567,22544,2012,77,72212,58901,55652,31557,33963,92103,14118,18542,31663,74145,98256,9033,82919,21254,30383,12020,29159,65693,60140,28167,3940,95755,87113,49042,92976,29121,93148,180,63769,704,30768,67667,41195,92813,6338,13249,48433,34080,61360,72908,51358,75680,58281,22239,27035,52312,33755,30840,72677,53751,35251,42882,1934,28204,70466,33301,52257,21909,74498,77523,49724,79452,12172,85250,82968,47202,76536,77083,30309,35032,54477,3173,41305,85447,16682,11664,49383,26179,85877,44791,64976,95981,55609,77743,16091,48898,3946,22499,31201,71235,92411,25151,98069,66316,6225,56545,79485,38925,9072,2671,28978,70604,62754,63184,2174,39024,46761,57417,37622,38527,8749,61001,78412,38385,56570,84407,47234,56877,58655,50942,89400,2328,77685,12398,40584,74844,52766,13595,68848,8956,15728,66798,76100,97288,82563,62554,7929,55854,91406,82120,3360,17455,84628,53032,72487,73719,93842,79803,48713,13298,77647,47374,94454,33281,32488,92905,72639,20157,33878,41364,88972,56598,95173,87867,65895,9660,6061,3697,86909,69450,6382,38536,69131,56201,59119,62847,44355,97556,77335,1692,89920,61421,17305,41965,90308,71290,13220,69035,80657,18559,54550,55477,82135,43495,30203,940,96171,24097,64555,69419,60874,7933,26809,38580,19443,209,39028,39159,79930,49997,72523,88612,94901,86820,6840,46348,16488,85121,80245,37202,14844,546,19212,34991,38158,2279,77312,48408,15798,27653,32597,53354,30154,75678,13666,326,17259,74931,41440,86314,98120,92276,36007,14512,64291,84890,66114,20619,87531,83148,59998,72914,76791,64038,7605,53262,9,59423,10646,66623,99777,41456,61734,45523,68658,6324,61877,48423,49284,40103,35044,8288,18374,5070,19767,89451,21229,39412,62650,24379,38472,42798,58017,46606,98585,95900,82871,85324,19365,93227,82372,76037,25545,16402,58618,27159,84790,1342,22685,26479,54531,36547,73665,46297,53250,65,46453,40828,85561,45871,59518,26286,91683,37043,7452,98485,84423,27695,28691,16097,25546,87512,38389,34399,84959,60268,63677,16521,5833,22265,58039,49750,28314,64723,76563,47350,37320,4380,61511,12658,67815,36178,49666,58007,26381,30470,55217,30050,1878,63835,8575,55198,89741,57931,3887,1318,58890,78311,78254,76448,40440,57558,75081,52303,38049,11769,33480,74071,96504,6579,45075,95986,39134,86336,77577,76896,80237,65896,16465,13710,74098,67648,73260,22872,98223,44491,39709,82014,60523,32183,93267,96061,10322,22779,8354,68999,96384,77334,73101,53581,76227,57954,99273,62154,58444,15129,32564,34119,86874,51239,98468,54923,71731,22830,26535,30905,58544,65902,97910,27673,6757,49529,77399,35260,62670,32779,89094,12589,97423,99104,33289,57468,59053,16442,30161,84747,58028,95710,38598,84337,89117,22955,52939,15503,56196,79239,55116,96769,67939,73326,396,66607,23225,58237,47200,72530,46165,36179,41655,2681,32177,30246,47923,71399,20948,91986,45767,7363,50635,56844,76223,15560,38154,40388,72165,96883,87553,29265,85874,92108,91633,43933,76238,75384,31817,88492,91025,26042,52643,89788,64247,19172,73896,50346,64370,50454,46881,17808,45077,93106,31066,163,36022,70559,22555,61700,64615,67429,98454,66038,1048,39472,10004,14932,90370,2267,70433,47541,30041,72346,18853,18838,55649,13811,41662,37614,85180,68588,22525,94064,78273,80448,33721,53292,12456,88497,74661,19985,1550,52903,50684,38793,55789,75745,89789,16289,51632,19380,72838,56835,42270,9456,50030,81711,89687,41572,12900,72422,85587,68887,89834,49340,86648,59533,22609,54169,95425,6390,15515,30943,25143,93088,51197,16734,76873,31521,2739,97318,72525,2166,70213,66187,73069,88129,43752,46711,8315,60164,17444,23096,65598,95814,48386,97654,46278,51034,1524,65411,49044,66993,38477,43437,92350,50283,11610,26851,25419,62097,10767,29718,29258,46082,93956,1852,45042,57918,81232,8364,88159,21547,81286,6040,74841,70681,81471,76288,82413,84067,18101,66815,97548,95281,1881,63366,64667,65009,30358,94623,66715,60974,53145,726,8185,40043,4535,39483,62027,68505,48093,54403,22156,14321,92349,14874,724,11776,59677,97787,930,2468,2552,36561,11228,39029,3086,74237,51318,40058,50203,72341,80315,80374,92415,43019,84165,75590,85105,82279,93367,43381,45325,39360,64670,52836,94066,14937,65054,44279,52372,12346,29593,89670,25364,34948,40710,39112,73477,95250,35966,83070,26897,5568,53612,31884,90160,59812,21098,34450,120,63620,78834,67778,47867,16451,65529,43718,84206,69394,30494,584,22767,31932,63543,74160,81915,47217,77969,99290,7909,73359,22585,93744,54071,98022,43022,30836,92767,98036,62450,13865,2945,93109,66245,48537,29139,92372,29201,11486,26677,99116,5455,29868,80134,17040,26012,63948,86911,55959,70053,37235,86570,33027,86866,23191,53075,97916,38352,41153,27004,25638,10354,93430,3101,67500,74462,49213,48915,50931,83917,69083,27224,38636,22539,54281,81044,32087,75991,63175,33275,4311,22367,66014,55491,69819,42292,59910,71040,54127,7794,60428,28042,59631,27597,11167,22237,43324,29182,48343,81369,37250,20658,26592,89707,51627,53119,8763,62300,64419,95761,41609,97626,69981,45298,85807,94287,89202,66363,91899,76307,39943,54077,13836,99423,19338,39104,99139,91570,37902,11615,90260,79122,4606,62328,94689,38883,49160,85936,71110,51689,68458,182,80812,8328,6808,16758,25945,51521,97870,51048,17424,58848,3172,16891,17324,95488,58390,84065,41533,97105,56574,66874,88434,96634,28917,44055,21563,24237,44347,18455,77275,432,67809,48023,15925,88509,98157,80627,37759,5768,68083,15326,40856,22299,74080,38617,20234,45751,34162,18760,54920,13174,27819,10964,36653,92876,1354,54408,3635,70253,20100,39419,24068,7287,88496,97595,76412,10146,63930,99150,43979,83559,99266,23769,68346,87890,29550,90943,51192,99088,3114,54793,64796,82696,12256,75894,55190,48208,99303,98594,69201,92772,32187,68745,98196,56471,32243,51629,32790,37293,84648,43255,93810,17884,52521,22026,75945,16048,84823,30995,91007,38018,56536,39648,44081,37914,65248,25003,11896,18422,99711,57867,29499,10673,38658,5692,40353,76548,2215,21082,37237,12478,65971,15422,35875,71257,74666,65612,97306,52180,9314,3142,70883,666,57576,82266,89533,16202,13437,56769,82500,47376,64970,36075,51349,46374,90986,93347,71126,61344,72154,913,56223,80899,87917,79336,89346,16558,49602,39401,49494,61374,9861,6720,62696,83809,44554,31223,99935,91096,75306,61224,16149,69085,65939,30430,60978,19304,30634,68997,85249,34831,52560,14181,8690,96063,8166,16567,17761,91391,74369,5328,9483,12077,2259,27702,7537,69737,91106,39690,65393,87813,48413,51243,91830,77174,11291,11777,56280,58438,86825,54901,14817,27389,12768,97197,12082,70035,78546,28687,5336,96622,59546,23912,42574,5406,45870,85071,56751,82344,7100,17433,24050,81791,54229,94878,69905,90955,36162,68924,58772,73675,44230,20917,39793,29647,90738,57978,58382,50835,21531,15086,93415,24552,62632,18641,13304,57912,45384,61610,30107,71453,8353,11349,17760,53059,91337,18577,25005,78999,31354,98165,6733,33264,79199,67196,63329,58194,52708,3282,36746,19516,8966,87631,8752,9311,12800,71378,70503,29787,29095,83154,71504,12201,8437,38794,28889,36949,94326,31184,96467,43962,62057,33151,26004,48525,97452,78050,66692,48435,30550,29634,76305,90408,23165,22524,28422,73375,22315,57601,56220,63590,38839,62216,59659,6869,24229,16977,30420,59556,22485,90249,86906,22635,86478,10415,71468,3080,36958,61820,35864,84392,62000,17724,16840,52450,57795,88048,59515,20718,6071,84395,17630,21940,65198,76410,11180,53084,30465,74343,93295,8541,7549,70824,24684,7135,66485,64885,12035,51962,88338,52522,24158,83044,95636,84574,99431,96926,7073,76905,73626,56453,90224,5603,52753,71900,37783,71063,13397,38278,790,15145,14854,36756,56789,48972,33521,46671,41056,5547,41854,8617,91490,48384,3895,94714,37163,62273,71306,88699,61796,43910,5501,83279,67629,74148,90097,29241,71311,49796,82752,72280,23049,28593,92896,28934,8609,26328,67439,11124,36148,35646,65779,18962,23437,57526,56410,11312,30085,82861,49956,44695,82379,5057,3720,49397,86299,31380,48614,33116,65970,22267,7683,82281,35690,87414,31034,97367,54170,84220,82073,61207,77207,34979,47069,19968,58749,53438,19894,96319,29290,70391,76343,59978,61122,81192,16007,85620,83688,32629,6688,33779,41695,68317,49055,79292,83699,15677,13336,15438,91457,71229,52883,2582,9391,93823,49665,20991,92152,60471,57119,68410,44622,312,77258,60370,12715,32,92429,55264,40821,66417,53280,23893,62651,44641,95681,74461,74890,13843,56115,90490,42655,62106,4325,5399,58261,61747,65184,11741,25700,72411,43597,67242,7991,67518,15966,55503,52341,94880,14405,20459,74582,91384,11866,8537,70057,63747,82565,65482,21437,65596,83440,81049,9227,19412,2522,27686,9220,7717,58892,98368,59433,50513,30643,70708,55796,93018,6155,67968,79032,12181,28161,27708,13952,75789,28775,41085,89732,77427,20643,82668,63327,67358,6566,72442,92309,42200,22769,91140,36870,67735,64512,94014,72436,90665,58316,8175,95588,35010,11723,18727,82989,85858,37886,33159,20504,95704,25510,23596,35817,64620,51237,55052,48305,78180,71855,30311,46192,93532,1729,95512,42371,32288,82299,80044,31497,19660,10726,74288,29928,91487,73859,50756,73499,90217,90964,54449,79653,8078,39085,22943,10414,85665,14768,25309,89576,59805,10798,79482,53775,32739,99689,97211,9475,41841,80994,34457,81720,96082,237,29250,30142,94366,33350,58392,45143,46489,25172,58338,12594,35986,16348,69017,24812,60391,91109,52374,26036,99992,39874,69996,90566,75011,74271,33173,72363,94446,22736,23109,3893,86295,77798,51573,81029,24000,41350,61704,92949,64487,70328,62551,33896,5992,40516,27075,1312,8039,48638,79987,1144,4008,61491,33123,98643,36799,64954,32093,70689,70920,44624,26078,34192,66312,90280,37209,63791,41547,9810,3880,34698,90614,68175,7292,72222,58706,77938,9965,50703,62382,1329,29016,11689,87370,51869,58952,22483,92428,35466,37736,81367,26803,18286,38986,12227,5129,6972,78269,98054,33544,50231,57129,17684,7397,61298,26827,92503,85205,65989,40870,59796,45831,2392,83873,29426,60510,8957,64916,82589,58728,18016,11598,51492,12185,7827,36703,58885,30163,45263,87612,80359,81547,30176,17848,79442,69796,57577,45183,37334,80118,88485,34686,38262,9486,71545,92149,86842,58713,7741,62346,30345,33991,52197,35310,28409,54972,36659,9325,42078,32671,3898,65635,49563,98944,79698,28535,43690,65169,25108,70514,65028,86800,18233,62118,55469,86969,89064,99707,84471,70788,39379,41681,19499,63427,88245,59269,1601,68673,5592,44310,36362,18371,41796,95668,99703,94476,43178,69829,94881,69742,78092,42310,62874,51461,28840,1935,80113,69723,73081,2710,80638,12217,37572,37801,43856,76173,98243,80335,96286,6786,40595,13727,57354,988,75938,82658,11402,6961,94665,76135,30989,52923,80637,79892,11754,90236,50810,70478,63788,49962,11070,7158,63961,61588,32519,72195,74885,87682,98653,6008,54251,32091,1595,64258,38901,52483,29853,16997,1591,45884,85564,38140,56853,31566,72997,84740,3374,33801,36181,15415,99960,45838,68480,31941,66160,29590,77517,14941,16609,7686,10601,78445,74354,47482,57486,46955,25658,46301,40606,78738,42150,12933,29797,42689,39639,87165,36844,86623,75523,88032,15859,41587,59436,5191,2290,13172,39696,83101,38172,48665,68413,33967,20269,46860,97959,88229,38840,94035,53112,32729,28616,8036,79778,45387,39643,4814,40336,39058,6281,81591,32411,28142,5700,55432,21346,90640,88698,7366,6929,56544,50723,3793,70642,77508,44850,16331,50295,19797,62618,80859,47160,31282,97756,48008,78850,21775,79454,56828,67018,31262,65984,10801,2975,18961,7072,67081,59743,7508,818,29894,83411,95812,74275,33536,27045,41808,84396,61190,81529,79349,26122,4025,60115,80978,62941,46921,922,85209,8309,84295,73489,76763,46902,35296,81604,96510,32429,22129,44479,40877,50298,61544,71951,92871,53815,85310,43802,3776,66964,20753,56341,88018,92750,6762,99526,49917,65914,61068,70197,3669,57400,54644,32977,11341,7612,69636,16733,44344,82283,14047,77379,62317,53784,24677,24575,10752,38207,43402,49459,47190,30094,1364,98649,90452,41577,7362,22527,2244,55402,49813,42592,4536,54732,61310,57810,15345,48363,81139,63548,51436,33954,77351,91290,18979,44584,95891,5190,55938,2827,66088,54206,32415,89040,61075,35796,73094,44639,85693,19080,59340,92630,65494,86237,63619,80344,82159,36308,29744,55937,52852,46358,77538,36352,73038,18335,20482,49198,63274,6617,18254,63683,58701,92826,97189,88030,94335,25939,71930,42468,24022,20108,45073,52353,94808,85267,21379,90803,75872,62470,49412,94764,38624,51879,15707,87568,95909,43372,47107,30446,60549,89633,15147,22350,79628,25486,15874,20190,15719,91805,48261,95775,62169,27930,3165,73995,7868,84535,50859,59763,62095,32394,98854,49126,70426,86324,79631,91841,65046,38250,30573,68296,43326,98294,21199,81372,64408,2697,71320,15395,34945,603,22523,73488,94045,14962,63411,47320,89021,95370,8050,80319,26944,9806,7982,61486,5120,78637,72083,80474,5724,89389,28352,46560,90163,36436,16180,25252,18239,20947,84613,90806,67347,44720,78991,52744,70401,69779,58033,28780,83034,69951,91629,87596,75170,25776,90856,16230,45967,58193,45028,9777,6667,32745,7040,80014,58871,10984,64558,41430,9222,40116,28462,14105,64674,39249,37045,93233,23341,35358,55416,12493,5159,64187,41981,34750,96446,8308,9354,60801,75311,60820,34029,56785,29346,13067,92659,40935,46049,47243,58042,59924,45938,94787,74945,86094,7654,24480,14802,33885,29349,3084,45948,75825,60421,83419,65511,29939,84484,25057,54608,35778,17590,63975,5584,39107,76241,54376,66988,93801,30926,16865,93358,9196,77649,43751,47738,94027,87836,14684,20655,84106,81204,45720,34473,91572,5571,4945,50293,10596,44149,14665,55620,8728,85247,43560,8645,7600,1117,52574,86000,11434,45346,87772,5124,38346,88165,64645,22564,7129,63565,78247,9087,45442,3673,31846,88806,91242,98828,58134,58135,54039,9232,5017,51275,58754,31257,9086,10130,92642,36564,72916,80,33771,27900,54456,91585,96246,78474,50463,70096,41926,50687,86917,21033,37688,37700,51095,95474,96518,85647,77239,89125,41924,81790,48673,96672,23536,26821,97239,49313,93206,96693,79345,66041,29142,25677,74037,6745,96486,73079,96295,61776,80080,81966,82223,69276,59759,55802,8714,93026,812,52749,99439,11054,70785,10972,7525,40506,7086,20345,50863,14595,53573,11048,16437,17024,57711,7092,92627,8069,35705,28247,21493,87549,78463,53199,50352,34516,94397,31603,18938,94731,74029,17042,7541,81216,80383,29658,95541,73787,55910,99597,79096,2640,78495,23429,31106,19447,19631,1085,14554,29310,28031,12512,89695,88476,8746,28376,33101,11764,99265,27151,69335,1666,27492,84332,12422,7046,78388,27435,41963,88317,31878,65064,72670,16006,41091,80680,37830,3915,21325,15582,74180,98968,25999,29858,74200,2097,67957,51592,49233,19129,49725,65607,93953,43684,92728,33452,89123,33823,92730,14245,35095,81302,91212,45355,85769,5026,92084,49148,40201,89793,61548,66200,33294,4676,92943,8042,7467,83767,48338,21316,64489,44717,21904,40586,61083,15094,34038,16309,78983,54360,31765,70875,57056,12607,89244,39550,84105,37909,7871,88945,26604,86153,59227,32608,95648,77290,45943,37431,45755,6132,39283,31183,24309,50380,84300,20588,11465,75083,918,20143,43815,14323,75949,62026,40677,41900,22253,61952,73864,3333,38705,81238,99225,97241,33732,67779,81283,65926,6925,32783,99242,57603,82392,31551,81681,77905,12479,96234,1177,48731,67835,76732,47319,99179,10648,45408,37112,24735,76435,60251,75071,50808,9390,66975,950,99069,40012,2013,97804,11914,71773,8266,72285,13516,194,42555,13142,3657,67146,67599,88111,69065,66525,39143,55605,22418,35115,71541,73130,41051,70972,76243,29534,23198,97363,42600,94662,57946,20051,23668,26363,19506,37548,668,78118,60211,43256,17060,78923,35478,41690,8142,17080,84492,5938,14658,4571,6620,85327,46389,85498,65615,84573,20391,49463,55016,41717,81928,59221,67637,99584,62878,84442,93949,78515,84404,45246,88569,14606,44564,10678,435,45175,70814,69283,41036,52193,76851,12913,29965,71844,95001,71585,70696,26798,38368,66122,92756,16213,4979,13352,1925,20688,8355,27679,98352,59728,50471,84278,19034,36860,58999,23875,88004,8297,70634,52344,51077,75780,19978,40541,77441,471,32085,24091,5861,10002,28345,77921,28882,44613,16515,97817,6180,95324,7361,18678,6362,45958,15566,88925,19407,3321,86255,21715,16636,29316,38222,83272,64182,81214,51816,88871,44110,28737,24599,85749,73190,66086,61444,78880,22836,90207,26189,55014,50879,51169,66007,16227,763,61113,66271,78539,78775,85718,346,41292,21666,81439,66377,93789,69932,8329,76946,4441,45759,29286,54092,66996,4137,96,28770,11976,52251,77768,23321,62985,82592,33612,33269,66965,27431,41282,15666,83229,37633,48912,54455,16170,11215,84270,12914,60280,72129,47053,21957,11695,4097,55549,6564,33198,34781,77617,83363,79871,50556,9322,13080,76862,15361,58821,67937,90071,44425,17928,43375,33699,54611,44328,83041,12434,28169,74536,11682,20578,64113,40247,88813,363,52359,79739,22869,37878,43162,29399,23136,98298,91846,76977,85962,95459,8981,11289,32201,26424,6967,34158,14358,72501,30174,2362,73649,35530,453,99000,39739,54342,23241,55859,26977,1314,78190,60290,46067,24373,62031,18628,35112,64071,97985,40977,36360,10120,30299,70312,9448,62464,33202,57428,88223,13032,3145,85064,60468,96236,60103,32566,48235,61402,72021,62826,58906,43271,28683,94917,99382,18497,6030,27237,37230,85004,82507,23773,9127,77007,16767,41764,75754,72121,90472,26249,99138,1723,43020,92042,29638,90993,44973,84579,93342,36445,59636,56344,81138,57520,12443,83984,7789,67859,72387,63463,39054,24032,86841,36942,34030,93296,43691,41354,71059,256,59122,84188,3090,76084,17441,36682,50609,28065,43464,83555,66134,21206,29493,90631,24112,27654,13043,42285,49210,59363,77315,94538,39370,19679,44608,55247,72758,65110,51457,72608,36448,9516,50585,39349,92315,26034,43696,32326,15030,7331,13744,62213,65397,23690,59331,76501,56310,54603,18074,29727,4265,92424,1030,25668,64892,1432,14272,79301,92776,33409,27879,46768,45502,30637,49079,8111,80473,32086,50026,33497,53174,82089,84837,42602,20456,81117,90607,13494,25727,23582,32061,53713,28216,34422,47260,4943,62795,99880,1383,14575,54759,96882,77293,44160,55817,52241,69254,45474,55069,82005,36921,66275,49882,34674,70149,66366,23311,32605,65077,16934,75444,55575,60278,58386,57253,58523,32253,2957,61888,13748,36447,56269,60244,89895,33036,44802,41332,60296,44378,91270,57113,89689,83658,54195,61233,72732,85723,47128,66999,39035,64459,97693,73461,65545,31461,83214,1175,97304,8366,56870,62115,16310,87385,53619,7857,78968,37656,36634,55502,12588,21688,39659,51089,73358,20110,37375,40231,29980,88379,63021,59564,27739,20681,11898,152,83951,62171,77733,34002,55974,24016,63455,34312,80248,17158,94775,34159,70934,49844,86110,87647,75104,62792,59744,6498,26506,68927,17131,37446,46065,58211,29096,50142,81038,47588,28438,96900,54693,60929,49540,77388,74893,61714,17402,27714,79634,39644,23944,87599,8441,9136,96289,44153,32158,77723,72302,3952,803,11765,12165,41236,22906,37846,84267,59534,83938,6280,35064,9183,76291,49614,58275,10283,90371,56405,82702,72124,18750,55788,58660,99233,54323,40563,76678,58774,48766,78895,33684,77776,62079,66596,58908,35870,41055,87243,27254,43518,32619,58912,84962,24208,10645,89736,71485,33546,49010,93434,50647,73932,26097,31774,62294,66762,6646,80635,67090,51873,23951,28507,40258,86087,42480,28163,92475,63755,18153,88016,32348,35087,16475,33315,17659,32998,62572,2711,72992,79970,95286,16968,45187,93410,22405,14088,31872,16919,67688,47295,8952,97831,82195,68105,86075,27459,34710,15377,32946,89798,93725,44915,48143,55202,6669,57310,9712,80230,10555,24140,28901,10200,31043,76955,80121,44797,22570,68128,81786,31048,20978,12104,4914,14983,21402,27968,18545,18219,893,46580,25575,63759,40739,42952,59528,94427,33926,61225,15449,24721,95127,21023,80858,72264,1156,58404,21494,93392,22764,21665,82802,90502,77550,48259,73465,48425,96445,10906,61596,97369,33379,37624,96872,10614,28802,84185,79633,41790,64010,73022,29193,14662,42146,79531,1521,33069,97810,95477,52982,74482,52072,89119,94275,29923,14027,42835,53518,30701,63180,88921,34600,23837,6069,6716,8741,6847,69437,6399,71788,94761,89983,38572,2741,93996,73709,89815,85999,66986,9521,87133,35898,70507,50543,23119,35846,94729,39605,46635,69778,1377,14012,78376,40963,74039,97163,1129,59199,95963,10762,81276,34118,47046,65183,91845,12070,39428,10592,96457,61215,47266,52913,71315,29189,85282,37108,78300,84481,45337,79853,53255,87447,9339,4538,35860,75614,45428,69527,59952,96511,26364,41706,65838,59107,23079,59404,32934,2510,13021,12032,14037,4195,78831,86354,90058,39330,23343,20687,80797,66712,91944,61305,62338,62062,8207,80708,87923,92800,60634,1427,4937,58121,74409,60132,84061,50272,95309,520,20415,57659,86527,27576,57414,30347,36496,67914,80154,52926,93422,87452,93164,52785,52644,35199,17017,38716,24653,41161,22643,30120,73887,71714,74779,96656,37058,35195,79114,25670,6357,88831,3259,18067,7416,91421,199,85873,16724,72969,42760,38597,93017,1059,90836,70502,71250,8862,14754,6544,97727,31100,97815,70298,83170,90725,27642,51932,20603,83333,19691,39729,75277,35012,47885,58555,48389,49662,95505,46276,3395,99010,10226,89673,1883,55165,33239,31693,54027,44263,39468,41345,62195,50062,91017,30412,72104,18959,68329,80403,156,65435,71405,53422,7694,34233,99968,76463,43786,54420,44020,25146,85038,27111,8652,58645,75924,23699,39205,77735,34152,77945,75037,23013,27640,3733,28705,65647,44352,43134,27095,98525,93409,14921,78019,30429,5634,26343,94298,9805,35548,59094,12287,91667,91704,10363,45816,4973,35392,62624,95151,80513,38464,84982,42925,61362,85222,92409,1021,5968,48623,52770,55873,48607,79629,94185,41944,67854,88648,63143,24596,48123,33324,1977,68899,65518,17046,1091,46281,77347,50982,5714,18167,73526,19470,88488,66646,80291,93827,8649,75790,42235,14075,38720,10528,67840,1425,52976,64100,13533,40283,51997,87417,39391,39146,94779,36190,68279,78563,7109,29456,98814,23423,69702,96444,10945,72886,2056,77136,45960,93231,81696,90038,78043,98279,26507,75743,85176,76709,17746,11986,66859,43173,6081,10757,47651,27939,89541,19344,70569,5889,48970,47964,71911,40536,20067,24916,94962,22602,38767,79337,36920,35809,83416,58092,57868,41256,13954,12048,59143,21645,80331,5662,51986,72840,44383,26221,45553,77101,64431,24598,84305,21077,23643,24397,99679,96361,82764,73274,11579,83301,50113,41208,70297,24358,23202,6920,1112,52886,89636,10950,65407,53495,68116,35490,33237,28894,19159,64979,10429,13681,30959,82887,82194,84403,67025,3585,10422,55053,66744,54729,27741,1350,26600,87627,27556,18758,9800,30421,13364,79467,69926,31703,84820,34578,64151,25514,58879,22494,85565,44954,41615,6675,88215,28816,5916,99483,98137,7113,56207,30137,3455,67152,29609,88397,92749,93507,99411,7345,88361,28833,60038,6981,87375,16721,41864,34182,90875,78307,10090,71766,42937,6831,47562,30146,97042,99380,14401,11513,78617,83374,65564,94204,38601,6413,27552,96411,21119,72004,6862,34448,50898,57084,66725,42095,11731,24780,84605,35803,61803,18817,3534,57627,79805,54737,89973,6867,17723,62468,53502,51894,37012,38970,69026,53840,27314,44545,78552,85514,5388,50241,2555,81551,13633,21051,15371,93780,52925,73324,29698,79816,22363,85214,32301,35099,72872,2473,42752,68479,55932,93357,13995,76136,89803,9510,7772,1847,59435,40947,3451,35500,73929,32514,66856,4494,73402,84117,72870,65854,13754,28405,11466,46265,48734,17786,74982,31141,18909,3469,92334,71896,13319,65065,29784,53222,71967,68029,53591,68738,78106,80390,41895,18818,93955,68357,52851,3404,25518,46112,64636,65214,68686,42772,45775,27890,38203,24730,28941,28455,69297,55696,88527,20278,7509,33474,56525,11949,93561,74967,89039,75203,14917,32434,13376,80311,528,18493,88795,96674,18639,59888,27427,69262,16913,52645,82434,95973,54808,96657,47962,74798,9080,97107,96465,59047,88235,7799,93826,92508,26784,58541,23864,4554,12571,14603,21474,54593,37402,6211,59489,492,2613,90540,65194,17468,46172,47271,68217,57008,90891,44862,43894,5907,71008,55610,9616,37463,30756,86592,34738,93171,87429,51044,75128,74070,41074,37059,33754,2855,69554,14789,37460,79550,51486,87881,38357,77316,21558,78077,17557,44190,56518,90797,42541,6800,83230,712,30779,71525,29708,42861,17177,29560,54305,72174,56047,77212,25433,71527,13378,41369,36663,18768,24102,10837,68806,21156,5999,54066,30463,67618,17692,15983,76513,81565,67019,64321,54134,75184,18688,86611,2073,97023,17608,98629,60798,50966,33955,54083,14548,92771,896,28976,4107,24764,87419,30537,48752,2678,88382,29176,4130,87442,33541,53667,48068,8998,52108,2452,84871,37187,94055,24603,14109,64324,19848,20542,79999,29635,12375,8198,84571,37267,80003,18388,39057,23493,67115,97141,26743,65716,32095,8104,7607,155,47252,54394,82247,67060,13205,32109,1381,6999,4784,24026,88064,63876,65736,79717,64779,70165,93121,95923,81306,27917,38559,19222,48004,85164,73017,67915,45035,5505,43923,2792,48666,67912,58693,36806,57842,50080,4873,57850,65583,71636,97476,70557,34653,87518,57460,87758,7764,60927,82384,66178,82886,27050,84635,20530,82076,3637,90918,13564,56254,54468,31171,54055,62663,92731,31431,42505,5477,72894,88132,6511,95683,31057,63102,40064,57562,6214,27190,98671,57528,74429,23971,21416,54639,31831,90824,21308,89989,76316,54241,88063,99467,3108,98756,72761,18660,92253,93071,27946,42031,89943,51206,60906,99941,57909,71214,58979,81688,58176,2148,76627,1969,55324,96706,45452,11680,24875,64421,19814,69206,68456,36559,22605,98178,10520,63150,77600,38792,33472,50259,28560,94394,68333,141,84969,10909,24009,71187,54145,3781,72417,8010,16162,96893,44385,3542,2810,34520,70899,21942,32266,93935,86200,82465,11469,31907,86125,44462,3483,49403,12100,7865,45160,49981,78871,3934,71662,52616,14858,17320,47167,46614,26116,26861,64704,70417,14759,30029,65188,65059,22219,63077,64628,25868,45639,75450,98438,11488,66976,62723,39901,48498,8573,98827,35673,25629,53980,57573,93380,56887,73771,26255,53050,59905,30471,85012,82304,74017,49559,5539,7083,95519,18228,55871,18296,32627,76398,84641,54505,40374,52217,42779,46291,7130,76481,72739,25380,88074,33413,41356,15349,82057,54211,69925,59866,80016,58562,56865,84485,70472,41115,34584,8699,59405,65889,57988,50455,36316,92979,63276,32839,6432,64974,46151,86271,61112,38479,47112,39162,69190,54803,50899,24150,68700,490,77664,18612,76609,54327,10904,53604,56011,69058,13740,12408,92213,27467,63880,83294,62552,59867,7058,73662,10037,38535,19768,22146,12940,26049,8629,97975,32813,36667,56065,40109,2447,93110,46522,36220,2275,60629,59813,51060,68392,92814,37355,34783,98622,34177,76171,95953,65324,45344,22888,796,84320,13711,34358,73971,86823,66527,94578,11607,22470,85661,40207,91985,10753,11692,75017,97425,25276,6990,35618,96715,89852,19651,58227,18089,43706,73162,57706,7118,99702,4509,66991,77991,34851,37828,56945,56775,93599,35201,11169,81658,90010,17812,31324,26759,62821,6318,97647,28647,94240,26724,31303,81910,21449,83220,61936,88385,61496,35114,71490,9948,48937,97819,21520,20152,41114,81019,58255,79246,46175,17851,54643,49802,60986,3734,97269,19998,87939,32541,84167,84194,24554,89409,80645,56647,64524,68187,57245,73754,81062,75267,3554,36259,97152,20789,167,6204,99078,19901,57117,24932,56233,12959,69885,14382,88109,61819,77262,81590,46911,87014,89231,81334,18922,37362,34515,72038,95524,51668,76690,48720,37655,34659,98456,68870,70033,11333,33243,50420,28509,15929,454,39197,36041,78353,22116,77071,80232,16211,86582,12152,29356,9517,56264,58170,51481,42151,12876,18848,19798,49043,47870,50412,39096,31826,51496,35610,63715,57106,99433,36642,53213,21578,34907,92014,64,97381,62579,86321,63399,23928,40937,57078,95020,28398,79128,66455,16884,86128,89067,371,75592,46400,94256,44975,48605,86793,85274,35574,58226,5626,72046,79869,44508,60047,85468,61956,62101,94037,77937,84530,85419,21842,72026,80943,50837,94684,88344,59215,28023,84772,66052,16630,67086,81343,35439,28127,81749,50930,31333,89421,20766,62148,17299,16817,94001,72709,13014,14977,58967,47845,76217,15590,69690,79018,90633,43332,67120,52190,70823,92656,39080,66550,49616,68332,61707,50445,12795,67551,69995,55993,11411,27346,19570,8880,74068,71625,50202,72898,2955,87225,78584,56643,83068,10948,73027,37358,32401,51853,97640,96624,81403,8221,36463,21673,63956,49336,25448,95511,66287,33087,67855,35291,55781,77438,23852,73323,84596,77255,99685,28556,66855,60731,69802,32955,98090,4594,83902,33145,99694,48410,64851,35912,68702,54964,51970,35670,54184,20253,38707,68970,69223,77793,15173,26235,26115,92908,31362,82896,99729,61643,75169,64248,81876,92881,95640,39308,61522,76249,49073,7518,10235,14593,19194,75049,79926,7296,4603,11431,46076,44935,73947,95467,12379,21920,54045,60368,83392,77324,10231,29974,70234,75406,2491,37710,79602,91146,4208,7449,53241,98440,3309,99517,41977,53745,39798,44866,10494,18699,4168,33594,48539,39747,62430,25121,98909,29670,45216,10980,83024,91519,91163,28834,73251,8761,66786,47259,15742,1310,30037,72062,12349,78039,64692,23866,81545,19737,47483,52791,37439,93452,71833,30026,66942,87577,74502,20046,83494,40617,9989,73869,23322,77263,25680,63617,37314,84807,911,73252,62937,57188,80324,4414,42123,56327,19469,82222,71340,3760,13838,68841,16026,72379,24697,34487,46737,53702,22428,2887,59236,20623,85113,63393,33258,72795,29314,82107,35388,36978,76547,75247,29329,64061,35739,81718,65247,10158,19200,10126,82959,97924,75848,24157,42187,42536,40310,33794,86426,3524,39323,95386,80108,39327,77286,18710,26976,80696,41988,91059,54632,22346,80685,77925,77245,43925,81592,51279,83707,25190,98291,64949,99282,41636,60745,64996,61690,27877,4423,27292,46047,20112,21420,73147,98185,964,53858,67945,27124,26800,17101,77933,28551,79447,59394,17072,76408,14016,57632,23153,88217,46124,53844,52660,73534,17668,74550,57170,60578,11505,6659,97370,32417,10245,11126,71195,21839,56953,10207,45046,50840,29332,55138,20324,21347,55240,17439,62049,95542,18966,87620,97533,13645,5218,33800,19712,64259,65873,21224,89058,58315,91117,50997,53864,15153,19009,89402,5003,3170,20450,10326,46701,74117,75380,89086,89422,93080,27729,75232,11916,4918,16885,49453,75956,54708,54261,99364,55562,81330,4844,12439,33780,70181,84858,14298,76733,55985,56303,527,21017,1623,99848,72741,98410,39043,22327,38109,48321,74419,23663,20367,12547,9165,80176,19815,56901,12013,27396,91499,22674,2821,54713,37555,69096,97675,5989,83673,31395,85337,58535,69782,80437,13294,17426,87831,61851,23671,47600,38890,11473,63210,35443,98088,22439,79577,45537,68678,19187,47412,23813,76993,70548,37194,8494,63066,20629,52772,6978,38791,75160,20707,11618,64057,7394,45846,95491,70343,30717,72051,94604,79343,16306,69536,1793,23626,76766,89528,86714,76602,93680,37762,63144,42668,16888,92867,51114,78543,24992,4742,66247,63483,8536,57179,59461,69147,53271,29985,50588,12932,13026,79277,59088,1600,61331,23770,79104,30802,53822,59162,83129,82433,83504,22538,43498,6272,30576,71995,91940,95656,27567,8787,26271,36823,52688,71587,87210,40430,89182,14437,92159,15052,4385,16955,91336,77504,28388,26288,89515,72788,53197,60605,86268,19965,80786,909,59573,73087,25577,33056,47607,781,77512,30710,33182,74942,93646,29735,83906,39977,79242,1193,8961,21660,16017,80008,9550,26308,90509,12982,91026,93575,68977,54535,13682,98538,27655,43413,43460,79584,24071,45790,62398,30992,61376,19171,68298,12392,75136,10183,42705,69713,81009,70858,37413,78900,17144,65192,1948,80957,45214,62387,90034,24937,4141,74778,77522,74724,49228,80408,97498,23572,35612,24573,31776,37378,58032,49786,37005,33444,97923,90173,51278,86821,23997,1169,13274,64591,44685,77252,87600,66515,34579,95017,74134,81785,89646,32235,75000,21992,28545,90514,16778,44093,40746,37467,67857,69470,79095,94088,78345,22419,216,59848,66484,49714,51025,54222,54153,70735,86593,83378,29795,57445,9999,25980,50902,96227,4077,15362,87212,28418,48589,65112,71004,84450,61988,30726,44377,49427,81647,30326,4427,16129,35740,24494,4579,24390,27805,9590,90109,45037,29468,94664,77963,67038,95082,65053,61930,82375,42672,42100,13998,14004,80253,8193,52690,21823,91039,48296,11523,21671,72515,15419,30734,75599,3806,3700,32211,31123,28276,57719,36579,6223,77646,19732,26975,45065,86191,60359,34753,27764,62403,94562,42414,24090,54730,25074,30413,34718,62509,49548,3318,36638,52308,51527,27452,14100,22072,54884,7726,43780,55692,14770,24327,74743,55110,19157,68511,51189,63238,78242,6463,35049,69302,38200,14137,24168,39387,48416,51553,89272,98026,4116,12590,88702,73695,25721,58309,14203,60379,16205,95265,53238,96983,6481,65812,35086,35523,32465,80140,7575,97485,31944,73690,45503,24051,96908,89074,56422,22805,9025,91177,41138,20927,93722,57279,8984,7993,78139,88934,39985,21262,63833,44947,40023,2897,75739,16592,89599,34124,75343,43617,27937,52649,30330,66414,29352,87858,7288,30629,27120,78589,2189,10603,11071,33905,77815,36198,88480,32375,76949,34125,25771,48838,61315,5445,90119,87657,32419,73840,81300,75075,37415,43511,38098,69733,62416,59480,12280,9284,81466,75529,53718,52357,3607,65534,2923,61802,71016,13827,27146,44494,66820,301,78953,27256,26542,38659,58534,52299,72299,24001,77131,70710,42850,26435,16696,9771,61971,42254,73904,31152,27681,30167,82093,99737,16458,49847,27077,98957,30932,34742,13669,49850,95028,92662,8281,44428,70423,51713,42149,95600,64801,42020,56063,94421,94961,13369,91757,41876,1426,11666,97286,45533,66755,87650,66393,82497,55177,20788,90780,84575,69143,44938,2524,36268,63024,98099,29583,60171,44407,39319,92275,81779,66948,12809,35603,75499,91439,6425,5754,99292,78499,38829,51806,26766,73215,10465,20642,9231,2680,3255,5201,70985,61440,20614,11640,91891,71111,51649,56715,8446,65306,97820,68053,13016,43711,47323,20114,48532,96088,86964,92099,4821,34044,64930,28387,82940,63115,39942,58799,51554,96799,73496,32413,40238,82506,74968,69119,47041,12670,38561,21821,69498,59412,52901,38191,1944,40203,7156,7364,30588,41582,33140,35033,17719,38316,45496,55174,36713,20313,8358,99438,39540,23738,73329,51978,78943,59832,78919,5791,29112,62449,33478,11603,80330,76129,2308,31861,9507,53009,90775,44772,48402,35916,54023,42778,22263,90184,57935,74155,32418,63545,89246,69851,41809,25751,55855,87050,48504,57943,84231,97622,16107,6598,69881,93854,3878,97296,10279,94841,88645,60052,75552,76145,61892,23611,94800,15464,67044,99712,44569,25517,5420,45715,38336,5053,27561,11279,87988,88406,62588,56984,52340,41716,6838,30523,49880,22786,30731,50405,87505,43298,40042,32695,35503,3897,2811,55532,76825,93138,26232,107,17371,62379,27379,26806,99708,86865,99901,42603,27926,6689,39208,5673,16266,30440,25969,15958,23276,7934,72217,50284,26277,25218,41486,57303,61786,58526,61655,79580,90789,88572,90991,34127,84805,77170,16410,53077,793,8026,635,55382,6376,70190,79294,53679,9554,5027,19419,73071,23040,8927,59389,48422,26655,50904,40077,65541,93370,20480,33927,15016,57618,82558,5030,46068,17996,23776,95461,15890,42092,24571,78196,15718,94019,65860,25132,95436,94430,50410,75713,38873,74019,12154,63087,19531,54846,145,50285,65291,81926,30385,59915,56139,24039,35390,19945,86514,43073,25153,34142,12191,24260,90410,53693,25674,51834,61852,71216,13300,61651,80766,44367,57442,11501,14767,17222,90814,80442,85029,99687,4278,77254,7641,31523,68381,72194,75861,12647,69867,78838,97614,21313,54647,7953,34286,48592,17833,62569,74618,54542,89924,16420,58451,77002,88610,99424,47634,34977,92608,85869,75574,94940,99658,11281,10491,59508,37735,18197,24627,57053,50431,431,91450,42598,12819,47151,92635,6232,21294,82741,68794,46238,41798,15331,32556,60380,84664,49339,11538,85671,84235,66412,88313,26209,64756,38313,61138,72945,70230,95081,53828,16034,42374,17034,61220,2017,84393,22157,92969,34346,19512,26832,47899,64887,26301,38359,87602,44930,56736,63338,25161,9605,12818,81296,60123,89412,52040,46997,12452,34235,66064,20876,86697,57444,59368,65405,78440,21735,39893,73645,49303,75990,3613,82354,42385,8322,35377,44365,21854,65646,32999,40193,72844,41958,54546,73590,84918,32306,61081,92124,31802,56565,22330,61049,78337,87821,61179,17855,78185,52957,40748,76192,25134,27072,78135,10372,13293,73398,21676,89749,9780,5839,78694,91193,65580,83879,91698,11810,53226,33602,86312,52179,28649,74935,28674,43485,85578,81707,63580,52271,88247,41600,21028,57225,67263,78815,13557,40326,42475,44284,43578,67436,35212,23943,11852,30303,37598,36720,83232,35282,95276,61279,98155,9984,67380,10410,26077,10434,25274,85349,49749,59519,40980,19246,61722,654,66338,73390,49262,68360,47131,26979,71299,83020,87670,5814,60350,62505,183,19438,72570,67148,75888,63892,74217,69457,85720,3790,67955,52219,37440,27293,51100,94124,3377,9434,77055,4179,46095,96998,2924,61162,17589,37165,21324,84646,43719,65017,22814,42532,44180,1228,86962,64933,69833,21399,89750,98527,87319,22827,14442,93836,219,91862,91223,91063,69212,73415,43903,49610,90978,54977,19185,87786,55167,14391,75301,35945,62143,95388,64101,89166,48715,64334,56345,66169,50558,33376,91961,65628,13787,75107,68530,1823,12939,23239,23107,61919,41146,77808,81264,67407,26533,74333,17872,45477,19101,48315,94999,35849,99653,308,93335,36831,4355,47284,62343,2775,68316,7330,63370,28911,67302,39957,31194,51940,44430,90982,32852,21728,66611,45087,80990,20817,93376,52564,98645,29760,48476,49986,53707,22644,46703,42595,17321,89380,81295,50916,77565,73807,71441,44857,38023,79882,43531,364,60926,53458,74603,31293,62780,46973,27135,93668,36997,27226,39641,66150,49859,3313,41045,94039,90701,55531,69938,35441,13295,88024,56215,90962,30605,79901,40872,2974,63419,57952,92958,79754,87804,18964,92985,59741,45683,8167,32216,40029,54322,91964,11097,5655,16969,71107,30996,16585,38230,54807,70995,55521,17082,60320,32555,86808,56049,91953,61184,53229,93911,19579,99402,68108,86750,75788,96632,68995,5749,53452,75657,96790,90624,41605,78331,58391,91907,11733,42990,17944,93384,59587,91120,94072,37335,67753,59923,29621,24303,6373,48671,24707,36426,45008,82980,20501,17198,12156,88599,83977,92196,22150,51618,59648,57624,20921,1040,86806,25389,96964,68869,45114,15949,25793,21243,87448,88902,63251,25053,53935,10015,39958,28875,68074,30341,42345,65421,18148,58897,84618,27191,70665,24504,36732,1166,74845,37667,16125,5013,7149,24706,75907,17097,41124,83550,66575,69024,66262,56295,20341,32204,51146,20527,85686,36404,46462,55292,92455,94701,20721,23021,67476,19022,9855,86298,69333,43347,39556,94028,72647,87476,48035,16216,88468,71219,86659,27258,84401,95409,33184,17750,82860,69790,98068,26158,42670,52954,49787,61687,58978,65296,43280,75395,31326,38135,13505,73632,551,12528,47258,69130,79589,95750,31862,15294,93627,44642,72867,10023,4136,63465,25310,16295,97077,35202,87845,99163,31065,55243,77790,70625,16492,52049,86847,3588,39413,35399,73744,52650,56172,19667,81932,35151,73336,24767,2082,13612,95385,14329,79240,77981,33469,56371,45410,28872,15800,10971,23249,60920,12270,73206,69758,54607,89878,82553,38655,93636,99420,18731,1266,60539,50586,54532,2854,37551,545,93168,63368,81132,71913,6286,98386,16137,20245,34269,82415,29955,14995,28495,87312,17077,67604,17890,11770,91227,92442,93890,69360,33738,42384,35093,23621,77274,30221,73078,28263,41373,70599,6953,76866,6793,71498,33305,84742,91280,12755,56301,10770,5892,68677,79422,55650,46279,89053,73794,5984,47577,24541,91125,91333,48067,57364,95771,94030,95873,5362,54874,68284,38400,56110,65959,17262,16106,41783,68875,66418,94054,55916,40830,98350,67434,75819,67812,12313,77317,56581,7127,60170,59793,12467,81468,93063,80615,68368,63847,32647,94488,39322,31945,13994,73913,54297,29455,90781,23897,13309,28129,60453,68422,98422,82779,22238,81554,93451,98210,41868,80648,33505,68501,19869,20395,25193,38628,92874,68880,5338,41607,5831,98343,67293,65552,40742,82489,29886,43177,21360,34648,69159,40845,25338,13345,84654,27432,28922,42126,27478,55475,95284,13731,55542,14636,98610,30679,69069,31578,68260,23873,4072,50975,71758,19291,26881,47546,28659,47419,30862,35387,18655,20982,84955,26854,83421,50012,91820,85308,38305,8426,90337,30100,59386,78482,49024,47731,85927,70157,42773,86008,46252,84330,94347,75425,78640,25823,19160,60873,74230,1708,23925,59987,20646,55418,40788,80592,7735,95487,97555,1157,89369,10154,72599,79155,79326,49393,71109,59801,4908,77407,59788,21504,78802,76515,92462,74357,13086,89764,46969,32329,47782,49068,34806,85323,23815,70265,99203,83936,9174,94395,28552,44471,88272,16165,74391,3744,6144,935,97456,94786,33707,77060,1755,36818,27614,43672,26546,30687,56669,64404,59926,1580,42401,50872,90626,27001,29043,17669,28760,36450,47755,9476,80833,67030,81979,27971,57546,70701,45551,23722,13451,26473,54474,52592,30566,21589,44594,77073,62834,99676,38404,66637,34337,71558,62186,99222,61308,30414,81052,38968,83943,35608,62990,57975,32826,25147,59429,84948,41481,51266,15344,27087,31930,21487,49643,45290,51448,71772,76880,3977,71130,6349,13783,27995,89977,37638,15835,55496,47007,25559,80195,44455,14435,60861,58491,29778,40618,87688,50669,10611,88603,50397,96417,42084,76350,56652,6989,24173,3668,6260,64367,60830,44396,43131,20910,69540,85189,47754,46841,47155,2069,47937,28909,30759,2117,91043,84163,90537,39053,69811,13692,5230,93043,22469,35802,15347,53857,18982,27116,66453,45302,34790,4727,42751,89965,59486,49689,46870,67058,64046,99404,2726,7314,38059,19094,48290,39444,23080,31803,39389,82948,26265,21902,2934,77884,71055,60622,63581,44438,32878,89370,54235,65081,66371,56243,13985,859,5602,86276,89778,45693,6735,93378,13184,85368,45311,39937,22305,52970,25404,97065,36435,71077,99318,20611,20990,11196,48821,69027,11414,47375,36827,16305,7251,89476,70937,75840,30929,78987,52819,36205,8674,33454,92959,91286,2324,24222,67284,67838,23451,69890,6441,78689,71358,95644,1159,92854,28881,41625,3707,16691,8973,5866,34589,34227,57803,54419,9884,82523,81840,47510,38633,5533,90152,95788,28947,12081,97194,78690,60332,54260,30022,15447,52669,77173,15562,429,26368,54983,94443,40001,57149,68424,61617,8362,38001,1417,48744,48407,23257,85090,28209,91316,51327,15716,23052,3610,34918,7685,65316,61793,88363,21528,8131,86730,27140,91968,78487,61412,35911,81621,45419,15672,75304,2028,41879,70733,63853,47825,42661,35964,51908,75417,69424,2446,93679,72567,55951,43969,13671,96297,32963,36861,11595,14291,8695,45231,86226,24110,42809,27601,69211,2130,43948,36926,45200,90066,42351,98483,64739,6209,75307,93800,98016,98059,29516,80256,98628,92461,37668,67052,99615,9468,3273,85876,63429,57900,65164,76897,57440,86683,99693,65733,43787,71605,43302,40473,62617,82517,41667,86955,73506,8496,9849,10865,1715,81639,6358,10777,88373,49378,91751,13846,2155,14234,83045,75424,56209,24984,2921,32499,76594,10744,75261,76279,32995,38738,15471,43983,89587,14693,66009,52213,32134,9636,97210,73475,65906,69694,47009,60207,85020,43277,62253,73791,27816,31139,4739,72230,80582,66564,73014,16209,2481,26173,76233,32877,28914,34055,95910,66792,16594,69832,64902,32075,21818,96261,6820,97070,1299,51754,38065,59557,98392,9110,62495,51508,71579,94650,4817,30948,40230,39140,78873,58529,74307,42690,52559,92548,65283,80917,76432,68263,37856,85806,27107,1095,1553,42676,65909,96797,66034,45686,77899,21952,69042,78116,393,93768,93816,48189,73588,22107,2072,97642,69141,75223,35449,95357,5919,41089,42453,21898,54078,66586,39694,31913,85695,7386,46007,33507,93417,83954,88156,70683,58284,98035,31685,49322,36795,29665,79729,6323,98566,9425,4770,31356,29421,23652,17187,4963,74667,50323,88903,34514,3219,25587,37244,68779,54278,8922,61346,85275,76042,96278,97942,24192,46679,83264,86577,25931,13664,88943,26926,20844,50006,94151,81741,68715,10201,80402,69513,99146,43918,208,38704,48572,63910,9698,66189,50962,58461,3327,39988,52861,80738,17683,42727,37110,34680,62974,66684,59589,25792,40843,52263,16996,69514,20246,53585,84682,88293,1846,83240,52782,33136,9539,21744,40003,8767,52553,52840,46089,742,59082,55023,42162,41335,94311,15032,27194,94585,1696,98058,97788,88622,19924,71430,73725,12193,79401,23802,54144,44712,22541,1527,44917,29571,21136,92631,27779,21018,56799,47701,98166,92259,64056,65680,98273,69142,43262,75946,6494,98515,38015,78351,42079,71972,94052,19868,61724,52434,45996,1626,22443,51203,47108,17675,10572,8241,91134,43649,2904,23520,27438,85290,60022,14797,66888,48058,71873,16222,24362,5733,95077,19572,19385,63146,12947,27441,67313,71166,11329,46926,33498,89394,43341,74393,73968,45283,2918,87413,84420,23222,9327,94276,74725,75903,10843,39877,3430,98918,95297,89285,57146,35992,13431,85801,86362,90743,47806,83330,16561,20055,79542,72429,98216,83788,55581,57687,32808,87576,52334,89490,63344,51432,5697,5194,90081,60969,85745,55971,24495,30265,4823,14216,42257,53874,36530,10147,79819,97846,21141,72955,72392,68862,37232,56613,83318,12441,60325,21265,67525,22939,28176,82316,71578,15852,14473,78544,94970,30293,13384,93149,41210,18572,97939,21369,21157,91806,25166,40254,49086,19019,53729,40338,41381,51568,41741,23938,14849,76154,72698,12158,65618,42815,24726,21705,754,68921,75858,71296,2346,10748,88957,10134,36169,75718,61378,76525,79236,18299,19668,38526,77047,64746,81186,68339,59185,39002,39233,52100,70786,11908,7172,75488,31305,95844,10501,66695,48454,16258,4625,59356,84560,25233,56163,44674,60673,58603,90720,17988,48179,17711,80669,30087,54974,13496,23285,78228,89766,72476,67704,46392,57138,12326,55417,26794,95471,61654,10113,96623,34980,76705,85621,24909,16430,22722,96311,28066,99442,3752,11966,77702,70543,90298,46980,93880,34735,68474,43101,56977,94979,25242,61053,29004,81632,59116,8861,8289,21731,24289,51983,53553,9214,11403,19559,89810,23336,15399,36170,71786,22276,72142,81962,45648,37898,9170,82596,3417,8146,88544,84829,76672,16265,40181,73797,93474,33770,78826,96342,88117,48109,3261,69244,34123,82468,31268,9190,67578,82924,40575,78362,25506,72711,97541,33888,84333,57694,98431,38258,73437,16357,9629,18651,11442,36256,40512,69166,99306,43047,57614,35138,14141,41174,14568,12906,78432,82013,15183,80703,32872,26661,53685,93830,83981,16423,69736,18406,6230,70964,6418,92286,79908,60925,80410,4771,94874,74236,82454,24612,83466,46482,90465,66191,96233,18734,21375,70344,55196,33476,98560,85802,99458,52790,50487,49810,85979,226,5736,90855,14869,20189,39947,34525,49669,27688,77962,71808,8448,479,84437,75971,89585,52825,79984,62422,11884,82807,10305,77064,89201,71574,36670,11978,91523,84517,51209,59118,25564,29627,58340,70984,85454,67296,84501,53930,1171,91327,1473,63753,85729,2116,18012,73566,14279,47977,83534,9113,23339,48686,87164,51565,51843,80709,90321,57498,25985,23571,83819,89762,17041,67496,76785,98377,59865,7780,58719,4822,90274,89107,37603,22755,9608,94644,75403,22197,85809,44676,84521,78385,11010,46855,14191,44025,46845,69251,93069,90672,67770,24290,25966,15889,9936,80510,55283,69964,66145,90176,17606,86839,84494,40540,45036,15458,60887,87005,51288,41105,88846,96951,44607,71317,51789,34504,28143,65762,25940,47427,75948,93031,44524,44125,95115,91767,19148,25260,94563,16836,86334,3011,98752,86249,79417,19686,78532,59764,44162,30748,51711,93640,94897,5229,7191,20399,30104,98017,44911,59622,69447,72710,7054,24426,97319,86252,11590,85851,31570,3599,74870,80700,90838,12813,90204,1455,40752,82051,56547,71814,36722,30286,81606,93400,24720,47466,58990,937,49216,23095,78497,51820,21955,11381,72378,84375,98029,51489,42428,40960,64693,63041,43505,24047,50221,29895,90733,81378,57998,43613,87980,73781,24177,88466,15,38719,47740,57582,40582,11463,90035,82796,27845,69205,67941,40706,8259,90905,3336,7710,79645,57593,86837,97564,54762,67811,53345,8203,46588,39599,36359,4548,9957,44937,80128,36293,46910,78002,48440,51742,15265,52045,20390,61390,18481,31042,49534,87402,39312,72587,47549,45530,96248,6305,92043,30187,55423,63207,82723,29769,16932,71350,49555,67572,59370,91494,15779,32888,73795,23032,86374,55113,20620,89768,54810,56413,54932,75427,2944,42926,14966,86229,79418,20575,29823,91606,60500,57,73219,30883,20598,48628,40702,61772,71538,40328,33396,42280,89141,61370,39860,46344,38243,11812,86228,17500,84931,31920,54181,23709,50236,97568,7778,98887,25627,29810,2869,41522,64358,3643,93449,31847,54835,21557,76376,31917,12371,13463,70050,8434,76740,44892,42023,85563,66722,36154,89894,33364,68793,47536,92616,45435,37809,56081,26491,11288,8503,40662,9278,23662,47542,47593,16497,90809,6968,7802,32359,63533,38424,99632,86541,33208,15551,23310,26070,34114,27967,37403,28542,94774,52421,59364,97074,53890,51950,83012,98011,53558,19874,78213,82015,35471,21152,91957,66756,84963,77890,49824,80132,57347,44829,82831,75251,39613,23908,90433,35345,48603,73478,13866,25745,3856,30220,30243,71144,33206,48059,54377,88378,45308,20719,65866,86513,13268,77590,97408,80579,71861,47778,31332,91887,19178,96169,2125,50702,18458,51291,79346,60515,86086,98535,28269,86567,76865,93225,43628,54381,67833,75989,98710,21625,47086,86511,4101,10819,24985,36619,89169,45599,98203,42376,87905,7585,71689,32032,34727,89364,51037,673,60718,7341,69099,40609,46987,35951,87499,23186,39144,32162,15473,25331,3955,6490,68166,50584,46992,24278,12366,76754,92684,92383,56028,15703,58163,76255,18514,37218,29469,93866,24147,31778,46978,40994,90796,19169,90742,44997,75972,25548,62680,35961,64250,71903,68649,76002,11975,94391,24966,84762,41028,52523,78813,29084,3575,79035,55237,88486,18808,52259,57055,37561,35981,82756,83413,36830,54476,30153,40652,80735,25011,44840,92584,29811,12292,78315,30722,35370,15649,72826,741,90912,36415,91224,40070,10116,98051,87451,78447,21810,41490,65466,89426,97301,64875,88181,79263,78718,957,90564,86831,14623,7106,54891,90434,5645,69734,24890,49132,8085,97094,48354,20198,44049,79544,38554,53148,89654,27936,94785,57397,9059,56501,61574,47326,87438,42111,13423,36309,81209,44440,66666,26518,58018,76686,61828,13700,27874,51499,47264,59213,20832,51947,98908,48245,25043,87765,5152,70251,24370,67369,82060,22181,26582,77895,99614,44940,81723,47933,96242,76353,30557,96294,96761,81630,25595,27456,78945,50371,57925,9847,35597,69839,97113,84751,7101,27711,84083,98554,77024,62333,5599,26103,41275,14893,47620,54056,71748,32194,51408,60944,79509,60721,83884,67763,55967,71803,17157,20741,4173,3466,31290,2025,12205,27547,65921,27905,30323,21218,29502,18004,7902,58858,10483,21934,70205,95080,95044,38726,69319,23118,93083,60414,75916,35507,45076,6409,73446,23506,53094,34538,50389,67174,74238,44300,65334,41494,5933,23023,7499,10507,67793,97645,64040,76839,59936,63406,68129,24974,59134,40744,51543,96330,43042,43419,33218,56500,10385,3345,27426,72177,71976,14172,86071,6296,62736,23342,73261,76540,1273,60792,17145,42198,6673,75587,29926,87998,91870,19917,92652,84861,52874,78798,23892,35411,57361,24595,37577,14748,67978,23396,41789,97354,19007,9526,70081,80281,66552,74248,75477,67274,83859,59463,97893,90565,36895,9519,95026,28926,58554,6748,40674,21626,21865,63217,95867,77031,13575,68739,11568,20287,26059,33260,86926,62967,92769,18752,38973,75597,25628,35948,31190,81566,21140,96550,26484,58453,15932,20054,40272,68334,33539,18143,47417,25503,59217,16022,1981,33605,85888,83764,64828,72695,36602,34351,21398,89566,37738,95008,28350,39778,58143,40454,62915,31543,89499,23948,37574,35893,44319,45244,36389,31339,45066,13547,39286,78727,49775,49061,9818,6157,12318,92206,52535,23816,84279,12419,36935,84025,46015,49965,59820,67021,58752,2831,65388,89521,8151,32025,56343,1276,25936,28503,42426,45488,65477,36342,95675,13579,98771,79937,90532,82767,96848,21358,26217,36000,90740,9908,84121,55681,21464,64712,49588,56096,72291,4326,27809,51657,40886,21230,96317,68596,72649,58981,89677,16345,69076,90065,61720,85397,50212,10879,24311,11652,98772,31964,7671,56454,18883,43054,65491,13623,69760,64221,6135,79680,34197,54980,36278,14934,21700,27257,54988,51875,49143,27285,23106,50680,42734,81120,52047,91354,55545,89277,79368,14042,89931,5722,12033,81166,77306,92665,90129,20358,86360,80124,28651,84053,51361,97503,96768,61966,49177,48699,65592,21452,45425,94463,38050,77158,87350,57989,6729,88961,3109,51433,87959,54760,51665,39971,36689,46001,43963,36096,8640,6128,28602,94210,83189,65215,99950,65128,67167,25964,59377,72344,96765,58178,85232,54106,18781,88714,76474,49906,40394,3405,55489,3659,75797,55058,53461,37445,94886,38635,71005,28475,38613,58742,14355,59594,8397,78604,66936,32774,68460,31535,70380,40499,66143,95503,27841,4489,4828,87899,80112,11461,45091,96085,79642,37239,37532,31082,87485,58579,40034,1566,42061,90600,91144,68322,70283,42355,4258,71510,48175,23126,93629,88483,55832,17278,19028,40625,53427,75048,39262,30475,78349,47253,82749,37234,29752,38456,1237,41928,23205,89424,67772,18805,91753,33512,9809,18832,13620,8007,18440,66704,58834,84774,40712,85546,28477,81833,40267,68085,18844,16087,56829,4446,65041,6948,87073,71586,17190,70408,44221,3877,82330,31513,16945,93230,12739,76887,81380,50180,88946,98877,51474,39574,67800,74529,43203,88284,2361,42687,23958,79438,16707,99908,9558,64586,96193,17986,16569,25020,17445,66538,32029,42838,50435,86569,92715,52433,27406,36246,16644,46802,39761,93045,9878,58305,48695,76550,32658,54697,67414,53564,21096,75073,46295,86719,44096,75613,60505,14053,48822,53342,24450,43594,61661,48774,90415,73275,68860,98458,20635,56128,3048,31983,53076,36612,60957,42673,86634,19509,46245,62909,96704,63468,76516,8057,14430,89544,93234,75521,36344,15748,17326,79890,60458,32203,53699,65706,43504,97188,19715,65667,78846,12315,72191,20692,18253,49933,85831,45186,77999,82024,21846,75515,99691,56313,79297,91066,60557,30373,58850,89975,7862,24052,99202,22693,77350,30171,74086,48185,2113,37658,70345,84779,30755,10709,331,58248,45899,31871,66024,24350,27899,92189,55372,37867,10855,33585,26169,95650,56707,30036,39175,52305,26407,592,82025,95451,53423,30408,86289,46950,84021,26812,60909,12124,24348,80872,43768,61452,47404,47201,78480,20272,99086,74195,93973,7455,7709,23561,2232,22164,31519,52828,59069,61413,65366,30654,68000,10523,21435,62867,43176,91809,92382,60000,37870,65224,65863,32996,3307,84004,33553,45358,72159,33343,58445,10437,96591,55033,87119,51228,3737,17410,93029,21916,86707,17415,52960,73313,95793,39928,2295,39686,59967,3771,41266,84983,38786,63576,55653,91072,64206,9956,40354,93009,89971,92258,51183,58831,86900,26391,32546,79432,30873,13911,75328,93604,3956,28403,82124,81921,55393,25323,96129,9240,72492,43499,30695,47210,71355,28156,10350,38818,78292,80546,99201,57064,45264,44001,45151,30599,1557,54453,5779,36479,8051,81365,43243,84466,52207,42340,2192,40979,55570,49994,94261,110,4655,5589,42028,38114,93243,31993,35090,87204,14913,41579,24907,83994,73272,54621,46602,2182,93822,67843,5262,1739,92625,20227,24010,2212,54452,83396,56164,84735,42098,3322,69844,5467,83786,54755,26538,92971,4694,90247,94913,26310,58228,76086,92713,54804,92016,11950,9305,37416,61462,7591,44080,45999,25752,98435,56226,89035,71604,77387,9922,32681,84771,24892,23972,14924,95378,39258,96303,11813,92246,18454,68345,61701,68038,15248,48114,37301,22702,50798,72841,25508,11011,32146,38119,28745,41250,86474,82030,68802,46196,24678,33796,90127,71590,25322,95782,95790,71698,65588,50985,74100,45176,43704,44541,12770,38947,3509,26118,2942,64063,64156,87434,95171,41701,7015,11436,66103,93957,5804,83778,64050,27164,24545,41271,91149,11304,33021,38116,97307,88922,39800,75553,52419,56347,39003,46661,82854,56324,90513,4888,31416,83870,31405,34774,18914,44306,6489,28783,99405,32046,22078,48889,29596,50247,47485,29419,30128,39640,38139,77025,41974,43926,72125,64733,49128,9731,43353,66702,39011,59854,43006,47529,50613,90553,54031,55278,96108,10191,51615,74159,54021,65634,35974,61697,79601,6446,64519,33238,41578,54439,2796,59521,47224,68785,56697,66333,8809,84373,71233,76644,89295,2800,95063,34796,87374,8195,18795,15867,90894,35140,72547,66628,2589,59277,18385,13095,72229,99096,58079,3740,14669,26720,69998,74252,88254,7028,20769,2733,33942,14472,89027,42611,68720,92479,76413,7552,25481,38481,41903,81397,95221,12791,30238,71186,77922,22033,53011,86827,34237,75964,7824,63030,2449,13529,2114,62462,40008,22568,86987,33758,44812,52868,5994,82422,4985,64427,59941,98259,8248,59422,53554,65359,33154,17406,48391,27367,21295,65809,70720,97242,73003,64150,36315,95193,88938,58318,50846,16929,4129,76889,36771,79261,73431,67669,33962,5723,67255,31676,90753,68617,63107,577,66651,22646,75262,38350,70848,79016,17687,46521,44650,97420,51995,7971,74860,86887,73283,62034,48981,71901,32769,59190,95123,3486,55130,3480,78805,22114,67007,47492,37410,41263,11700,76649,47629,96524,64905,33253,7232,89945,90246,44289,21508,80821,80438,72787,80460,29056,81870,36706,62119,45375,43907,66340,63436,79507,63952,29463,87757,37481,83040,85279,52718,41029,99081,14820,76337,96046,83213,37940,24475,33052,40332,71450,55554,99034,84190,77012,73536,6638,66913,73670,53318,76123,52054,63986,36946,57028,54391,7424,35615,51653,18171,19113,68503,73211,33405,40966,67004,53004,2088,71183,9964,81473,10451,54628,86736,47555,83946,24174,69895,36857,23904,89262,38007,75863,93565,85373,75567,45388,1173,86779,48021,72000,95366,18267,13402,18295,13284,87976,75768,25394,82667,14599,91263,44076,81313,59567,42638,90606,17661,16719,27544,3284,6442,98677,75183,3974,94711,64008,15626,6711,39152,80426,96955,48544,83465,15961,95964,29322,39973,17925,46077,60896,75257,16493,90240,89514,2261,70850,51249,63821,61018,39090,67975,72071,24256,75928,94964,7123,87068,60593,28861,5747,23936,77090,25647,52788,47389,48320,78654,4719,10790,18786,90333,38227,77669,56225,92536,99515,63396,22376,83277,17852,20822,91328,96713,79939,77184,43735,96480,12336,71176,30504,5748,19812,25688,57967,39854,58205,56234,33335,5356,80823,92574,57631,27844,20595,21921,59899,64772,91724,733,7282,27663,11253,38217,88461,11448,92664,24939,69658,58509,5566,84872,62766,19435,29141,96881,40537,12025,34134,74272,80636,51465,42940,55619,69282,22535,4782,3186,65640,14200,16917,39484,86802,5311,96719,19723,48985,66606,69626,97908,76148,75822,20381,58467,23676,98284,92325,25272,30263,50494,90996,4944,87378,13225,10605,3200,97247,73126,54664,95946,98207,49289,92494,54125,49008,6510,91996,35658,25645,17522,55670,37628,59671,98128,33935,66761,96523,67777,14425,20904,80961,33347,22889,24658,48470,96153,16735,12,56144,24383,18796,54443,50459,53659,4574,57574,79694,70040,32974,42261,49122,32460,40633,75634,93586,46120,86154,78429,16237,38235,10953,28813,99042,105,36848,21083,85535,23543,23532,43105,85819,90069,94885,27092,58395,44168,12129,85289,97835,63477,97746,89054,73669,85600,81986,16711,74751,32887,36675,47314,29697,23981,18776,42803,98989,47488,48590,54243,85948,79730,77977,64244,81102,88306,92828,2857,94909,38328,75272,89032,75729,74412,64909,80867,38085,42913,9029,85568,19835,56888,58475,77460,28654,31708,93594,12290,51412,90979,81781,42984,91069,66380,85908,28045,98567,5038,69432,70781,34264,90766,64058,31288,74800,78855,95639,85039,65679,28513,85,73053,61423,99434,16998,31916,54556,62081,46027,38713,61790,54499,36258,15157,75167,31822,31463,11356,31118,65720,81660,95545,20050,82773,71917,10345,26127,84602,95415,5843,97281,84240,30125,84217,39062,6245,7029,83326,71158,97822,783,78295,67239,43132,71467,90047,44706,83479,18215,77300,59665,24367,29027,67990,73115,84092,70691,91048,87652,41757,51936,51510,97374,16651,38341,76347,26499,22891,80999,86145,46284,32102,3153,65957,47773,90599,4967,6941,54239,51837,32137,10698,80559,63261,59565,30004,77613,41428,47078,11346,76588,98283,71076,38209,81762,6861,37278,88914,61748,5717,14755,91764,80478,11186,90209,81381,47464,7602,93147,20967,63518,47024,54203,87712,4053,89469,57606,33307,62932,97980,38487,116,68212,88075,12548,75454,65149,19023,15973,35475,86599,15931,30921,45747,12765,12300,14497,91044,70255,99829,26422,91566,24915,78465,14630,80090,23937,2162,56300,61616,63973,27404,20427,78334,55294,96149,9182,67603,15014,33373,60630,99524,69750,25758,26816,60839,85486,25164,21632,5474,34451,91594,25845,24535,56658,15204,68466,52841,80873,45352,22352,12338,15366,96267,25970,45692,60667,42059,70274,25705,70714,42706,59748,86673,42178,92960,25697,63474,62750,8578,4786,33000,23522,7749,18615,59943,48209,71986,73692,81835,27815,59668,23565,44798,15226,60628,94245,73714,39352,68868,82325,16689,93623,22661,71694,19745,54182,44360,32631,20228,59376,1313,84265,64966,53916,22993,15927,60665,68554,52149,70451,86738,98751,41564,41598,11743,42233,62782,31493,87901,93327,13477,12944,44473,85972,90180,48742,68491,53253,80043,95791,83583,16422,80148,36399,1817,54695,46381,28999,5141,87482,16964,87303,63609,17871,27712,28672,77463,16856,66056,80882,27103,79809,8220,27689,93255,10408,33859,88578,97913,14652,52283,12453,66851,18209,394,31319,63133,29238,82716,77802,44985,95413,63415,56130,59365,11809,20308,10355,10623,97793,1913,2669,62603,59836,6551,16583,75040,83894,96500,74948,68879,77326,91147,68055,11906,12650,94771,24724,10700,25482,81729,55394,55396,38193,70517,78896,46724,43562,36877,15824,52127,9942,21525,86288,35793,90216,16757,95419,94213,17791,56179,30139,79800,30737,26753,74832,719,42416,39306,67712,31418,28714,62423,31873,54747,30389,62236,94531,42768,83476,2265,47311,95394,47455,65885,90828,49864,93479,66066,57845,87127,21445,71066,74075,67824,15723,3777,19680,45090,40546,60586,19802,99217,86689,82828,71779,3549,29312,51764,46799,76639,10236,48226,88769,83838,94303,4781,29228,33633,41363,86076,370,68788,8351,5580,95659,93529,71987,87325,72907,40978,93539,75298,18550,36945,41076,90504,33701,58167,22658,34822,19999,85572,3739,13059,3355,93314,49582,95219,44512,37959,10317,52226,88346,44630,26613,56972,14084,42433,43110,32537,24072,68463,37672,37075,78537,63949,63934,96879,66083,71749,23077,17780,40930,32096,82267,50984,83564,90076,26141,38275,31801,18956,46286,69699,58108,45069,68244,60655,60796,79962,11293,319,30455,99952,65513,20632,77190,39101,38596,31218,51992,11297,86531,4835,20400,64653,82515,98995,1472,99107,64133,40562,82785,52349,17642,10324,85559,12754,7140,93170,3046,60714,33081,11422,37048,284,16203,44887,49522,37255,71563,16523,62108,35190,27506,30603,4788,95130,96441,66967,17315,95022,67163,17241,45328,5498,4318,10689,94402,94576,56646,91088,44715,15975,39340,11804,4510,16748,98007,44293,22491,75618,57628,73181,36925,73800,95934,20813,98147,53261,82370,41326,29834,85895,74194,83663,55665,55913,76369,49887,62610,36382,60181,72419,54553,35836,24406,17803,98549,46645,77357,39748,21472,69789,75774,40783,1730,8283,38687,56053,20263,64706,94354,8587,27944,42432,35022,23818,66173,2991,18560,29309,76553,44757,79896,50993,63962,16221,56914,95975,19302,65437,20174,45361,72116,4620,82,37424,75786,16982,70704,47394,56321,65004,64845,88058,31110,43234,72740,49957,80922,94100,5675,82020,88741,16704,28517,6142,11827,74566,58504,28322,14192,66939,7546,96840,70301,80721,32828,76469,69054,83656,11118,67917,25555,18659,46780,87942,32925,67151,98796,99159,44203,19843,22749,65556,68705,95167,57876,77059,24897,91575,64135,43640,74110,71556,58304,80979,28607,64711,76628,67636,643,67451,17870,34436,55694,56360,79487,31467,6389,47581,47403,26024,25237,72394,12374,65108,42524,62445,89344,89577,44030,92191,56804,96231,57383,48053,75650,58308,91113,8002,2653,22478,59030,75847,70287,44972,24186,48814,25687,67893,92447,36016,90171,27398,71573,68489,29898,72719,63874,26040,45714,84981,93002,86718,63306,41205,92375,72954,60692,22209,8303,33213,44086,78446,95259,90347,13050,77803,4500,96020,22049,32191,97495,66357,94548,61092,46720,48155,93991,87336,24023,48697,29154,80838,90859,17527,76659,15946,29772,76786,73298,17982,9954,72807,38387,49269,75533,64812,77476,65243,84189,44999,49992,1163,61353,69321,51645,71701,12103,60476,10137,91010,49411,96763,73256,40102,303,86574,43801,51892,41222,88194,83687,50825,56996,43717,95854,74147,86151,30362,10745,92558,46317,87236,90262,63927,34736,25650,27501,74687,87031,36040,78112,11360,29432,60636,29600,52554,1088,63807,2075,57681,9499,58929,42808,38817,97546,22560,55250,56428,57203,13969,7496,95380,46511,56566,11667,89649,8019,40330,89113,87152,48956,70593,98227,21983,90674,28404,31614,28298,89425,41223,25023,72496,51490,71643,47641,12391,3015,56735,6787,83379,67117,72620,6304,82762,34400,49434,79838,971,88568,2371,53,89093,80905,26882,39630,88899,11270,37604,98611,20900,22504,57942,61737,50011,12457,67430,28136,92640,28253,70904,34040,76648,26069,23371,56045,87725,90251,18841,87847,83149,56328,47592,36089,6971,54776,52892,2370,7193,3230,18386,80617,11859,4317,69389,18093,31383,63050,59532,96120,81772,57553,20819,49380,10988,6462,16943,95974,14147,22401,9975,89075,21588,7283,52210,94663,55427,42556,73844,68535,90811,79719,78674,79413,8706,92254,7611,30858,62738,902,20217,18011,23128,76338,78512,80507,90550,4743,68084,5421,70987,36887,15390,82733,35888,3865,80466,55656,48230,18173,13232,54552,81613,80424,17666,60973,38189,41624,50465,96604,98215,42908,8778,27417,14111,5761,7360,55050,17103,22416,86433,30960,60098,73328,37499,49110,45476,66461,65277,61476,61973,96816,20626,53015,45248,51307,66447,5166,92599,79554,44955,6255,45256,17967,99037,48149,56885,23751,38806,15054,5246,24184,39027,69727,9726,1953,17911,6173,72316,46423,84446,22623,58332,96539,58145,62157,40112,25641,85335,94784,4926,60693,29781,10216,71809,17898,60068,4291,62571,28842,53655,76335,49918,83695,27965,16645,5792,38335,53045,92894,50101,34647,35263,4934,96936,27305,83822,20249,98576,66880,47662,20519,54306,69605,99394,66321,2029,63812,97600,61069,28522,58924,32994,67816,34081,24640,17625,23029,13518,47476,14863,53851,63438,80972,24676,41092,85656,21458,94046,76484,17685,68942,42559,91666,85890,80290,34785,12311,96470,12811,22533,31186,43514,66944,27803,35586,40786,76007,5429,87532,63200,95621,70324,9868,5378,42507,65166,31694,30466,45672,81556,76773,79306,39048,12214,83359,46970,68397,71287,44900,59887,27287,15115,49730,99271,7990,26196,16275,31593,97706,57270,89001,20653,40721,28255,53942,52202,41420,64379,81144,95833,66332,22489,61424,87192,4324,8486,75344,82698,69622,23034,44264,49467,39173,51064,53538,23047,69421,25749,37524,31953,67473,94724,26372,41884,61845,96184,69463,20571,57977,77451,37804,24388,88966,29912,43878,92845,23190,13884,45628,80036,25726,18266,10464,24339,28541,69440,88443,2701,97173,23796,85618,22813,75664,3396,13760,56474,75127,76058,13020,64477,7937,25311,30051,80217,64102,83506,34924,21404,7947,54883,77313,57968,68536,35061,30378,47249,43605,99496,50443,53927,74420,43595,30227,27340,38016,61237,12036,55963,81596,14420,31955,92660,16666,56358,28873,59111,71635,60040,77862,90389,99299,50791,40275,88625,60892,17416,18971,16013,72633,9356,29388,41437,18997,7740,67470,8571,25009,54173,3206,28600,59276,84245,30397,47248,473,55533,60051,20033,38906,97759,53807,20241,80184,85699,63904,58320,85326,30021,64802,81717,58759,12019,79571,72380,22594,13430,66830,98775,82536,84917,29824,39760,50785,84374,94879,14398,81573,68275,20024,38915,86712,13275,57231,60104,73557,9885,15494,90344,20370,95209,85336,96390,87753,60252,78102,78735,17317,5763,23248,57847,87016,87717,8064,1385,70365,57806,13183,83269,28006,92458,97540,67463,30528,79836,11044,53460,34839,71603,82150,72536,11553,90939,33026,764,36845,26485,98373,39420,46411,8155,61134,81193,84638,41920,66356,6639,79627,88674,82345,85960,7081,53357,16890,17137,33988,39226,69764,89713,595,58961,17997,37469,57896,26120,69049,58157,53147,54587,19594,50154,78036,71962,34273,30324,19624,19398,63346,6274,60388,64683,76393,91782,25917,2234,4752,40850,24544,80313,9578,28205,32360,4668,46549,92934,20230,561,22124,27184,84734,19751,14197,49542,87349,13818,58753,59222,3143,63729,97156,2905,60831,27030,79436,7342,97248,2100,41328,47087,37468,66106,30781,5901,14166,87705,95093,67206,41020,2294,69381,96605,84586,46577,82671,7684,1639,39657,60465,12988,87154,66282,82072,73429,68892,13029,19219,41098,89255,72351,62652,15769,33586,71294,64035,45769,81141,96887,18592,55964,93889,13282,78219,73910,31169,60854,81806,46765,73953,94390,37274,17163,37619,39856,95338,38268,2142,76055,50425,92388,23193,45680,14998,49020,39108,24264,67475,2871,34023,68326,36136,47605,36751,72287,89413,26190,64171,19449,65985,14001,80960,77352,55325,60348,31250,96694,32003,90910,34833,61114,19678,609,36138,16378,42912,37956,73182,59982,91972,23607,83075,37063,58087,44943,56040,9411,79421,699,64803,40209,40698,20581,66721,81068,59819,93013,24665,49328,40957,6325,91118,62182,36868,77063,5204,23962,56068,17580,64975,20440,6088,30854,20895,90028,7201,57311,33718,99977,57664,11065,70309,44746,11212,49904,96819,36288,92385,19087,69507,64396,71387,85246,8734,46331,32861,45015,63179,78253,10109,37535,2493,75284,76091,64199,98640,49763,99628,46106,9038,81384,49579,34446,23084,85156,52026,85344,70056,69486,27773,26986,35988,34767,93324,6000,76727,22302,71971,28015,81438,99012,85129,97208,59321,2976,99246,41694,13449,47732,11808,60333,3060,86429,56138,70110,46693,35424,23961,26064,53761,8980,8676,29927,72507,16290,36990,30211,58672,18719,93061,51177,65553,2573,16123,40745,5937,30391,81072,96995,20145,96802,44499,74422,23397,12797,27105,50172,35368,17401,5681,13051,64465,39293,86040,62854,18117,28092,40668,9396,22881,72368,33999,25683,73881,96218,4884,90588,81339,79537,44924,54036,50948,62685,40421,81017,54215,57284,38162,96725,83325,80350,3065,30991,18691,30672,16496,44250,63820,90382,20697,74889,57997,66641,49491,33326,34649,68543,26947,74025,41316,24272,78308,83167,15771,97711,66281,43202,71101,86948,56961,37541,46923,29071,56169,2993,24650,59766,85915,31433,68699,62666,34250,85351,39257,55354,26934,65666,58670,14310,97818,84027,63127,1076,44551,43412,78667,69265,54578,58201,45266,33661,69539,63451,73966,47002,46074,4035,35204,23672,35379,72312,40136,82111,61313,2743,72200,94867,69571,82829,91197,74583,43014,53730,63743,20160,74229,50209,72819,33075,29315,46962,6297,61269,93650,21924,76759,76228,58400,87990,60257,99435,2727,36996,31149,65997,3098,61154,39211,55589,53142,87793,73472,47336,66812,30231,89887,68755,24432,59574,42718,17538,26969,74350,75095,39215,45052,67701,58127,85955,95931,4046,59280,75639,42089,61537,55228,30689,6406,49550,97404,2445,55921,99974,6623,8908,59352,76488,94532,23114,85133,24169,58814,74993,21948,94590,31026,18218,47206,93998,8625,70319,28463,38466,42521,91855,60979,52146,6707,28787,96708,13498,89200,59562,38418,32328,39851,85530,1802,67973,51858,31962,51845,84835,84946,58842,56632,41184,7859,87398,52046,74204,82440,12943,66534,10006,87146,64005,51350,71697,56577,9725,76385,56558,16401,275,80963,91797,90099,16869,66289,25159,71167,42582,40297,75719,51660,34112,67389,41209,54940,16860,47511,80139,52773,59914,15663,13591,1731,17164,53871,79116,39920,41901,85756,37149,6284,85817,4411,49999,20535,86526,20271,36814,53088,70184,74006,80386,69531,55144,71716,78481,9028,43244,48450,23454,11549,99983,68070,37511,84842,6533,23540,56705,85963,77919,94323,95533,47926,87778,43289,77653,87396,82921,16787,6581,3039,53463,8052,15504,86284,91308,95951,85855,86318,55663,73302,10848,64205,10692,69198,74773,22312,1669,77648,89,26765,70342,52224,65793,71354,42840,27483,25991,95010,28028,84514,4580,99097,29505,40491,86536,32569,22211,68826,33284,57447,73225,12930,47006,69715,24834,85201,98033,95109,74709,84161,55385,19232,82257,82411,6427,10428,4364,51608,60609,70969,37029,77039,8745,56541,95181,94957,20404,3631,38869,2863,17389,74263,76336,53570,87465,87011,32252,63413,75937,60028,75429,27388,42359,54355,1698,30917,89932,27358,79101,40327,94700,87798,78536,93632,52017,73697,86403,4471,34998,58516,6447,69610,35285,22421,10431,85155,94489,28423,97667,94071,37907,52890,63255,61613,95811,68972,8205,23185,44261,96834,27261,99594,25411,94947,40773,52465,79524,34216,31071,25247,16267,74842,73617,98514,51043,73200,71958,67153,94192,23822,77216,50919,87702,6166,70473,1961,37409,85026,46819,10272,41113,28690,34598,95865,34921,9737,20874,91510,96889,90680,1429,57426,53098,24248,66974,18763,32344,9988,91006,52737,8829,44969,68109,98332,43575,63323,15737,71118,86741,30032,6370,48083,11441,23296,17518,91745,82556,29073,25662,15266,70869,6414,77514,57859,92519,55187,1367,23149,98761,7905,1321,66179,78259,40554,53031,75165,70455,37792,83503,47089,24035,13192,34404,51422,46618,58209,57469,52147,23932,41684,87868,92781,18931,26974,29960,30213,78328,60783,25529,21021,11251,8380,37931,4476,50251,33867,65281,34972,12676,69771,69777,22440,86877,61770,82062,93533,61464,94954,56952,27260,73778,34061,71329,59906,83391,84415,68331,70607,69877,73793,71210,85672,81005,70566,35062,25024,30380,51153,82292,11910,33394,47227,14432,53346,84537,71368,76660,47487,19147,55678,2615,15469,9037,41065,90524,95932,50403,17075,77477,61267,56927,49939,8435,43368,11686,53201,5636,70025,83014,58577,92883,877,93865,12696,45543,73332,25998,20570,95527,28464,10239,34414,31266,14322,10916,3716,65892,5022,91346,36064,95967,10990,88139,45750,63481,75694,63998,58874,52951,91793,297,35016,46239,52909,40268,42131,48191,99647,39628,57548,203,67523,87676,35415,37497,29515,18810,50708,25168,35844,66678,26108,1373,40232,59547,9624,22750,41797,81074,99015,86367,79025,33001,63401,61177,50956,1229,97293,10066,46415,73493,68566,82348,86129,49047,34189,20767,9373,52853,26963,21074,19682,37697,39339,24624,56527,99888,51230,85386,88448,68178,66416,39145,11188,89508,71964,10197,98328,49007,45152,49221,97358,55200,14161,60595,96479,21912,39737,44619,80753,17023,76737,62778,53413,31267,88239,13566,63164,79678,5980,21312,25200,83284,5970,87818,53842,90892,19674,93896,32850,20539,62828,71888,52575,17693,54387,57804,30704,29546,35203,56625,70491,61103,19788,36074,14283,15656,76877,91414,89033,61316,66647,41795,1007,23087,66457,2428,91975,47608,99780,64989,33961,21554,43973,85538,57661,3326,64149,75332,9748,97414,52333,54426,88911,71301,71683,25412,63379,21095,16832,40918,46933,33310,87884,3958,64797,80196,48026,35908,85638,16350,91479,79247,59560,49504,72013,63573,69018,35504,10265,55120,40479,64971,61926,40429,49984,59829,5408,35896,94794,54047,56979,99224,12687,25704,93281,42488,60249,42997,78109,34660,38538,79254,19781,87302,33720,76667,70762,93256,74980,881,96119,11532,49702,84784,79097,85932,2390,96966,12037,5535,44897,61017,34361,99599,7281,21495,968,66229,424,39201,61842,34300,82041,96408,11129,72582,39506,96304,77279,42847,78177,18510,9145,50342,44373,68782,64650,58574,21768,77996,7627,54719,41734,97512,33118,74607,42159,640,1077,44830,87067,51505,63245,24225,21627,23438,54146,57895,43164,50566,31014,34155,47479,41075,39094,35279,88446,30272,25280,82473,21555,23458,36464,1558,62542,24185,9457,10547,52721,28980,11670,22417,31391,78114,6348,16298,40655,49276,75811,72464,16301,57844,61657,81703,30186,96269,42973,24999,70405,57993,13428,92381,11284,39799,95157,91807,34715,34190,79130,28844,52664,1975,21300,51622,54995,74124,46189,61230,63195,50232,64505,91896,46338,40851,6145,87475,59132,14559,56550,44809,28880,40122,98921,71666,72103,28435,59704,36206,99744,86449,52809,25225,15302,48813,90898,13188,71761,20378,30590,33366,39424,71764,61168,16395,81124,15565,6926,99750,99353,12677,13786,16773,29842,18307,83307,66478,97356,58576,96329,52550,89065,24128,26686,83537,25882,8254,47286,21822,20652,91442,58012,58402,85818,40754,90467,3044,98292,73077,4686,75244,83223,11424,72679,99739,62376,52752,11397,90888,99768,82172,56958,46853,40928,49057,11942,30914,3362,28262,56018,26793,23427,53062,68283,81937,47445,10694,65178,11165,1725,58542,73539,87057,66015,41257,22189,84732,73139,62629,56712,53248,73178,72866,93273,80756,39227,43442,30548,13824,2394,70394,27127,20423,54591,20536,58264,27924,10772,37316,96930,56849,17567,9258,23994,12061,69966,23702,21646,67261,51846,73798,62788,51405,59977,1505,95356,51571,52540,50818,69115,45658,48648,57830,28366,2288,66590,57000,3680,20091,37726,22201,78314,9917,74691,55474,64789,98321,8891,71756,14555,58675,15187,765,40576,53793,64548,63201,10091,23177,89799,25760,31938,35973,38897,24466,68225,87919,98799,64023,22636,51781,96903,40065,9377,56451,23256,32480,42894,15646,43342,47003,56560,12659,21249,98071,87579,56985,32792,46187,12503,9091,10212,88646,26416,83856,4391,14205,35977,81846,56132,75665,344,68059,24130,33700,74320,64863,77287,55229,97273,58353,84198,76603,54358,8784,82451,57817,64225,74058,75135,61231,90578,24843,26707,43884,80186,60025,49950,41112,53396,79151,36484,14914,37913,22404,20288,13546,37923,53319,80289,3842,78261,53605,74679,10925,38153,87,53511,13650,72273,98973,68441,18109,8912,69464,18663,63431,56521,78804,49196,23786,7895,30207,41165,78592,85253,30571,2237,58286,30226,81282,56257,59154,99068,39872,57357,2430,45646,19755,71787,4094,9770,95581,37776,35489,64800,76570,28025,62949,91135,71028,77500,31424,43335,55413,80046,43887,13766,32138,12916,58302,23312,60985,63321,44147,61823,31269,75595,76784,77359,54166,52215,21581,40982,38702,99572,33229,60901,49182,10069,67096,78040,20934,13254,23853,49771,157,31947,51003,92238,14728,70449,87095,13719,30574,38009,84587,88686,63108,24741,53929,79850,95516,84383,65086,31934,6842,26898,50692,33390,48520,5845,44904,49304,30001,3562,64470,29579,27565,9312,19671,15970,99370,56384,98768,47914,46503,69838,82876,77210,77268,98883,43853,28144,57958,25357,55007,49054,49234,20717,35242,17095,17228,28642,62820,14449,16533,88845,24997,89013,57302,45881,18198,83657,70608,6624,86155,76704,62460,86544,43133,94011,11063,35071,82634,61495,11951,16749,56681,54440,6902,77074,50485,54423,12373,24905,9572,7506,445,90139,22847,64491,52551,89110,37450,76326,71524,83580,14790,23273,33354,70778,62193,40288,19754,2581,16706,45252,43312,30940,66940,62598,44818,80421,82907,20513,67684,20558,85668,75579,84859,19741,82672,8223,12115,34491,20331,69311,82715,99347,71999,42542,99770,49738,71663,21159,22776,65935,4211,48301,23712,88057,43474,44546,9754,65443,37167,17924,79106,5345,26526,69137,87874,6066,56585,73740,79045,39507,14803,49050,53211,33886,78729,628,92897,30577,69712,97947,87379,11772,75467,71258,53188,84472,52793,66198,42697,74651,71983,59292,42892,16820,27448,5274,6522,11154,4086,29369,5848,98089,47491,15585,66652,87755,71562,8616,54393,23965,88727,27864,65558,99576,73308,19963,55239,40648,53086,66990,36884,92603,60508,96168,64727,24668,65290,12511,87870,84888,1454,86834,10302,50299,45397,51756,11072,43432,23856,8162,65861,10432,15170,60516,12462,47852,762,19205,18558,28579,25496,25914,31233,41473,52352,75855,3433,78317,84179,57636,12414,21460,84864,75890,10710,98530,61400,37578,1901,56105,90044,84831,19928,12083,13210,54167,93812,74736,21400,10573,17347,49512,53673,63069,15753,40399,22324,99894,96247,42136,33555,58905,54475,77368,4313,28863,58984,25899,78912,34959,61243,18206,25870,17421,55131,96204,37371,73435,3664,75019,23544,7510,5534,23068,54218,87363,39975,55814,85390,49943,40000,97421,22205,70797,23365,88708,25890,24332,5689,60993,57951,66075,52233,54373,64132,46226,37942,48122,118,94553,69491,31510,37372,22378,61682,83410,90157,18278,90848,19517,69408,63627,280,73997,26663,48333,42523,74301,60810,37022,5368,56680,51017,63546,28601,74132,12862,45481,22317,67409,51216,45461,53671,67652,20393,30705,8204,46637,98712,64585,48630,81008,8730,96059,33226,41825,51337,78005,61998,58164,10681,33629,6123,57233,77230,99198,8120,69375,83091,63690,89279,75960,8212,56414,58310,79051,13883,50604,19713,19366,40521,10524,2804,58998,10780,35103,19549,36660,59709,67445,19622,51902,59717,92419,7888,65487,52959,7045,36052,36923,53947,73462,566,3117,18096,65259,51314,20944,4175,99283,90526,93480,74584,94461,99716,25490,32037,67714,42865,95787,34992,16755,55853,80647,58918,38575,80415,10161,73803,80855,86910,46844,10765,24659,55555,47729,22526,14299,8577,99804,7459,24975,17449,20679,93923,65391,15212,38938,64495,5595,18007,27464,5635,44744,21514,44782,79056,93770,70118,94352,78381,36821,30252,30314,22880,27606,67901,96616,65715,30890,51838,30799,24577,64341,99343,98249,13175,67761,25349,2703,35910,81542,34544,6555,97148,26337,5557,1843,28806,11083,71439,70545,66826,88521,14950,38908,15736,73294,34424,28053,66583,48483,26055,34535,78391,2105,94566,45456,45983,62679,53733,85748,43967,33515,93350,50409,45651,7572,36976,75688,21552,66359,32169,17755,74054,61965,87159,72304,6610,26556,75090,46774,62693,57247,12086,85619,35311,96932,90551,77162,52887,42703,13707,48858,21906,95544,59316,60430,42963,62364,13323,49852,14120,62796,49783,45364,93472,43824,51019,60594,67136,47475,91559,37140,9618,56929,10213,5746,88315,62930,67536,12498,58075,25565,10967,68616,90366,17318,31988,57812,65944,36054,24041,81217,64463,46651,2384,62989,36416,2011,16377,90804,71409,96837,84726,32455,72045,55892,980,27136,99053,74951,71473,58043,49945,95641,58818,56995,41329,90226,37131,61229,98481,62716,14922,6455,71977,68113,91155,82539,6936,19619,50850,62266,38421,94628,58947,91201,15518,89638,78914,79083,68106,769,9650,11089,33904,47849,7628,61705,65085,61915,2843,45339,32992,36801,83430,43331,43622,54495,7308,93657,57487,9736,14466,4122,43078,85707,38735,82049,92674,58412,82488,47054,48365,71652,17214,22581,82972,42434,10545,53594,19177,99917,55057,42298,96056,59426,30621,68737,55862,50416,21634,39335,35763,13965,33234,80569,7734,33054,75851,8158,85046,9735,2946,65858,51971,81598,48830,60806,84593,48217,27570,84639,82449,59544,32543,62053,16182,779,54299,77772,32680,59029,48395,64678,24159,88299,1098,47530,58015,87944,23707,83517,75740,277,98811,26653,69471,92028,18139,65672,43035,86856,35173,85192,24164,92613,40191,53879,64956,56920,22149,99101,51061,97776,84456,39453,35438,28436,88420,5264,39509,51918,8509,94757,25016,48353,48105,42179,90203,57248,421,36044,75795,30472,44468,86721,51343,22628,22556,82890,12664,20290,41894,80589,40011,35883,68674,36929,41782,69624,71265,36891,84703,3701,8304,37348,36569,31390,21192,67383,14080,56864,78256,35256,65782,4197,77151,19885,61549,9111,32435,71274,18337,43949,71742,91237,40645,53717,97361,47571,99803,52452,57511,77171,458,80611,58410,72682,65572,83316,53757,14509,59261,9738,93052,6483,14010,55953,99900,79241,8112,98520,42271,89725,31381,10538,32654,13060,66847,10018,22871,75522,83817,4193,12497,53961,41327,94783,30592,84914,23000,99419,66846,79953,49715,19566,27922,2895,65613,89192,72964,30387,93493,76306,17140,91746,57306,50600,71289,72689,57034,16564,45289,42962,98850,27056,59063,30376,90362,39222,20314,53948,99291,48694,4560,22863,89854,61984,86480,38929,39750,57513,45709,9599,98773,98983,34434,71410,68797,48382,21371,46557,42827,14288,57907,91013,3918,67633,20856,78168,13033,74794,16388,31635,26579,25857,90617,60293,20486,31968,42549,9203,34996,57276,40461,44523,33564,77480,33923,57771,79870,77464,34160,9294,13832,93504,18820,59706,89350,25413,70395,15816,17083,33035,82591,30215,31643,22756,1330,11542,22727,4542,75405,68773,17953,20238,95733,13351,13052,34567,67896,32755,31176,91689,75377,16971,13854,9223,84451,52014,27082,73961,83427,87666,56733,29582,14796,76661,84115,23327,83181,94388,8023,61668,61072,86335,7009,85871,5132,78664,12799,15317,97668,39219,3504,99193,20609,39545,33244,37475,31465,65713,91723,27121,7383,44507,8324,11895,76519,53501,7115,51698,25690,99194,54022,36264,48062,4871,22682,1572,62384,66255,10951,4220,41595,79880,85032,73116,60970,59787,9178,89838,28371,67442,87081,51941,39077,39816,46401,42221,92743,33071,88518,28868,58681,71426,53945,8603,69957,38772,84855,80178,82534,10340,47192,80162,48737,2880,85217,35628,85402,74653,14360,41761,29417,92553,81226,40062,90818,782,64275,11758,33235,74479,38773,79942,6315,57278,71919,13361,87871,19468,93710,99378,87516,90735,40592,60274,17901,30975,77141,7796,82600,67767,34623,43404,42115,56022,29864,31400,36085,6529,99852,83077,75725,7738,10687,36302,25361,10398,79737,82643,75418,69808,9951,98782,81453,97150,74116,11060,83528,73512,38271,29604,38631,72961,36508,26706,82090,56664,69803,25574,35038,5593,52094,88392,32628,31207,75951,48755,87954,49954,45359,55157,70994,13772,79795,24609,92758,63001,86770,53613,52131,59909,92214,94932,13526,51163,4316,7536,62178,65725,47919,47220,54572,41321,29299,64351,48394,56363,54447,99951,8955,39663,5125,9197,797,50413,33614,24953,76195,18324,56298,73743,64327,18448,59695,5339,15381,41443,7222,3496,92852,10660,73520,87034,22077,86650,71834,18565,76174,44337,37618,8333,71348,8736,25071,64347,61850,75940,99334,89660,39399,2847,81401,76538,45890,52159,40944,93813,74971,98603,47178,49362,8237,80923,4837,14765,5133,54088,47303,47188,22336,27259,49520,2765,95725,39922,12136,98881,95373,59324,41758,15583,16745,48184,87851,73653,59868,98619,42022,5309,80620,47561,59948,7951,88403,46152,45403,26918,22016,37115,82098,26244,51747,91468,86619,8498,28929,91979,11172,76224,68380,86855,16047,63867,43906,67568,18338,96379,11017,94890,18141,71817,45542,55367,90815,33259,23223,55591,82479,51842,65042,57641,98518,24602,81761,3497,26914,26541,47291,19021,64745,54198,20534,15406,26581,56998,85098,89329,46116,85134,50461,970,86080,7197,17109,4673,81414,42393,96503,93562,5046,28685,25192,8493,12921,86521,79232,31128,67552,24066,36275,39199,14745,40597,33760,81534,17191,21112,14714,861,43615,49409,61902,12956,89446,14486,17396,99016,43779,63326,23975,53287,49993,96771,81411,46236,10058,96994,70295,7894,56213,77567,28828,33387,16647,51610,7815,26023,89401,37665,26231,80782,2706,26779,50243,18850,24530,12752,97333,26776,68099,86133,14339,14226,82463,78963,54638,77773,26742,20765,41505,90455,66047,39994,30861,74803,7932,96806,9628,10351,35621,73605,34500,43264,36982,97962,91669,25028,37613,18319,5914,53547,19528,90682,19796,10589,47938,82310,22285,48160,6459,29140,80711,80138,81154,78876,37663,3150,56304,37147,47953,45249,82974,75118,36453,16705,6471,13333,48878,24461,62043,33520,58829,25834,44276,85320,74671,13475,24964,54029,50936,45413,5620,53003,74355,86871,29825,60787,65966,7945,22852,15780,88143,1244,10296,30875,99520,99605,31926,63473,57125,40478,98934,38893,38644,79842,10290,22614,58838,39269,55550,68669,43663,41449,84699,28886,80839,17141,97829,40691,17456,54704,68893,44181,51207,47770,44105,12848,95,75884,73268,84070,9376,32464,55704,72860,82883,54749,85455,77175,46838,99005,8410,39397,79740,56305,25434,22071,78561,29775,78132,91273,25268,43323,34435,8608,88463,327,46899,44595,71390,45588,845,67889,1677,51383,31721,27743,37639,24531,58911,55476,10814,25810,31581,50938,19685,12188,38306,38670,34624,88768,20984,91012,50634,86925,65837,49505,58770,78597,41731,9724,10880,63804,65171,84280,57976,80310,89171,79786,68196,10269,54592,97253,30062,70027,30900,73635,92721,64087,94753,9898,81562,28750,58564,15060,55647,86873,17257,85550,33990,4692,87957,33974,62309,67813,44114,55265,93388,62326,17578,42455,25459,33250,49015,60760,76287,88581,7636,14743,7800,47677,24351,83463,70911,63154,641,41482,9491,87521,48165,64886,95979,22668,317,98789,16117,45822,37620,73608,41151,7190,9272,54788,77866,84997,69846,51036,7002,25909,41818,9796,90007,25502,58950,86921,32260,80244,58361,97028,83299,25570,46137,36536,28729,90627,54781,21172,11296,80429,76076,39130,38301,85427,11528,67694,27525,37096,72407,94733,33637,57829,17420,74114,49137,41497,20918,50683,92502,55359,42316,91898,59761,40619,51479,58868,83258,28410,61356,23081,49517,53562,45719,63757,40679,1767,11552,10303,24170,27196,58866,64011,37514,57262,6167,19184,85353,92805,31031,44626,92171,62836,18082,5055,82336,43365,11624,56495,33386,47615,21556,34318,30891,96096,87335,55660,58244,46370,14189,17367,76097,20081,52195,98980,97302,81661,12495,33566,26300,96651,64479,59830,36354,12527,16940,84124,6412,16019,55590,19293,48967,46696,63142,71321,91427,75576,23535,29584,65336,29879,28604,24481,4671,35403,91726,17369,99672,87406,43585,88050,74881,51,50678,17943,20545,98660,77740,31053,9548,78692,35451,29183,55641,57001,47851,52508,7262,59999,14706,45376,75829,65878,74303,64922,21256,64594,1923,8877,85777,4082,65346,66910,76273,12463,72600,72391,11497,77198,16930,81253,68003,51401,24302,14429,8895,24203,91451,59249,19774,42575,85478,10963,1896,90331,57586,71253,45529,36271,87183,14236,32588,24818,96811,71654,87258,97634,88421,41917,85886,57913,85560,99639,98573,16547,43837,35758,92791,32787,27907,78472,67971,38649,23465,42272,55714,57651,22234,66752,46676,73128,76906,14256,93213,49059,19411,9613,80668,62742,50866,7374,51140,44834,22711,68051,1534,53389,99990,3092,7447,68816,65364,4125,77328,44767,28528,35104,16506,4551,10356,27884,18716,3256,7806,53956,96412,70140,501,18789,15333,25097,58856,92577,79614,93992,80153,80747,73825,78782,20147,5559,30349,68838,42048,864,89069,28265,64067,65535,59538,7454,96730,43358,5679,39839,11257,46591,98045,57607,48056,75142,1754,86980,28992,94244,38012,49100,75371,98848,40737,61749,23714,28797,17647,65582,2282,26470,5157,44982,27443,81127,32874,48599,91248,81611,44562,67661,81917,31743,73969,93684,58029,92104,48930,59798,69623,22792,54517,23814,68276,79286,9336,76043,8572,38086,6289,44465,75704,44748,71724,81918,29275,35072,58839,31670,9821,73816,25926,3032,28295,86826,79931,23301,78580,92522,68163,94025,69707,36515,581,7544,68827,81654,98148,55705,94125,86194,11013,45613,85431,55585,97501,51259,40033,1143,65333,6779,17505,89269,48909,37423,34793,40571,29722,91984,1283,52228,46141,29205,18427,5032,94227,20963,53668,11193,69171,33621,17624,19813,85627,19981,38518,89722,60245,37050,72382,57038,12535,66825,46813,29081,53708,43712,18451,55867,46894,32119,63679,34277,66928,84911,50227,93531,87747,70800,76708,81669,24831,11110,75398,66804,87098,76894,26313,49508,89554,95323,79041,78428,18614,7594,12868,16072,58262,8887,87233,98804,14151,78013,33065,43075,14670,1242,22676,17965,5449,51396,34580,889,67948,32576,19227,6760,45717,87260,25375,22288,19281,81600,61832,81170,85037,47170,30608,10190,86045,78325,10866,87914,44831,99177,19608,44269,93727,61606,27745,20261,20096,22703,14698,62302,8495,76565,53467,54237,13851,6090,58692,41441,87112,49251,89597,26016,80144,67870,29449,77354,42462,21120,12437,80675,89711,60178,91094,26371,22675,73833,93649,99847,23129,46101,87695,17232,31279,77305,49971,28777,50897,61048,47463,29174,82650,51794,30764,42486,20407,87282,37755,69899,44800,62305,12688,682,51611,64919,71018,76497,84942,19318,68751,65649,11421,50396,47232,48523,46086,24372,29851,90605,95172,62620,45133,89721,63803,71902,73561,17115,59315,8338,36835,86631,66728,43454,33977,31811,57791,76016,20242,72375,6577,22183,72283,41679,15455,62130,41230,85057,39126,50699,59580,70421,52702,61014,94645,39861,11199,38949,73925,96828,54199,37905,96073,6882,29209,3291,71220,73544,36306,65176,51779,13388,55540,71325,98865,22037,79552,8285,39367,40774,23884,48095,59059,57996,47692,90297,36616,52801,12377,73856,23978,24156,33224,40171,54187,23444,59859,73545,41325,86441,59357,1469,3299,92552,2526,54631,43993,38147,29953,58158,15589,84824,21817,40456,82551,1930,3014,38774,87425,70918,61175,47294,76757,1333,52759,65410,78299,52194,18548,26717,85100,66854,73371,26550,20520,62773,92933,73315,51598,50085,40876,31848,68878,55353,23868,25128,58231,90155,1023,48549,34270,51925,38664,93534,52155,4970,71760,15831,3763,58428,64196,66464,68087,86270,7742,25227,79796,33628,94153,71892,82483,67128,97453,22606,68567,91748,36298,71939,47391,44873,72799,45004,62441,24344,76374,24563,69773,95334,50450,52806,66330,18177,34113,34033,9671,41218,96796,31572,57069,55771,92430,30821,84656,89372,3188,96381,45124,33125,34368,42138,69351,51371,14428,78954,62978,40829,86028,54258,4133,70437,41439,45222,25730,57073,87640,88491,29905,59529,84006,51909,94535,19423,67322,76442,47686,15239,30816,68764,72611,81196,56780,74143,30986,727,85977,51118,27113,63156,60991,26735,29641,96857,57718,94852,55000,72715,23510,63439,71727,7577,95801,5341,37414,41387,84293,73231,23042,52924,18086,82602,73790,93675,42183,75468,66059,84615,23254,23598,4563,9766,1735,76098,71882,17551,51046,9208,86275,12324,2198,56112,13530,31859,4253,3518,70107,55690,77612,53866,62912,91485,50195,25630,22448,82676,66162,37019,83193,15346,93724,73486,65382,60672,20380,35469,20302,82839,95292,88312,49331,76083,80146,34689,93774,94564,55507,69909,88567,2594,6456,3020,30569,34916,70069,78847,13189,55561,41565,51790,62116,87456,35225,81633,68009,6486,55671,61729,54132,92581,67355,4688,26901,17618,39495,11889,22151,43619,92516,70352,37389,19567,86572,64213,29165,60019,23179,85239,70065,59064,61897,65853,68152,92248,60247,30859,34553,82577,31536,8793,36014,7836,58213,52877,88907,73271,42502,39558,46315,86118,36307,77887,11482,37647,88533,19994,86353,65239,66546,64721,35751,52002,28518,43589,53437,21166,14064,69315,38545,15312,96449,86598,46212,41628,82751,58479,78642,16281,76618,56074,2278,32161,82442,72063,93555,23271,67995,16320,12525,39382,20942,507,93478,91253,44828,17113,97611,61105,26614,49108,85207,7214,27667,65408,27028,33964,66922,47781,97514,40654,57987,36605,59828,27252,5945,76746,52092,13890,65536,70483,32077,67063,35056,9040,13394,53469,33907,18581,56171,3390,77266,20437,65156,10811,81364,24789,3351,93506,94426,1970,43351,20267,78762,7567,96273,93418,52182,40915,24864,67626,90708,2070,88415,66177,56258,5154,9979,18311,38322,25344,10529,27693,64234,22175,34258,27761,12855,15189,11860,46474,2338,9303,91776,22254,86024,3459,82621,35167,82681,74322,52858,93879,19699,1776,84866,19151,80398,43953,81519,18626,3235,18723,44459,25332,15303,21979,86666,49337,9044,736,62566,24515,48806,51702,74047,75656,15139,76375,41527,60592,9788,65193,44869,3357,74122,887,97372,10377,79328,64898,39924,39536,11178,31226,55887,87572,91592,37184,98738,87137,75813,30106,93146,89216,27349,3641,86177,25100,22855,22672,32854,74733,49804,39822,76979,25695,62952,48019,13381,10859,121,32497,95205,58684,31770,4833,39073,14798,45895,17784,60209,12990,97522,68772,65517,88564,51801,41097,1752,8607,87237,89048,94349,14916,21644,6476,9998,64842,92396,50817,75363,34656,45685,94699,87578,20135,68280,29841,34620,93156,75530,30889,17274,13781,2051,89112,73045,44673,28591,81569,179,80779,26498,94252,95938,6372,2508,7205,53993,56691,26486,79173,48563,14211,58107,30027,31567,5169,21841,21505,92920,4348,71875,74366,86358,97392,47144,93460,37213,77196,49785,43579,28876,73471,17738,11307,85048,75246,91151,35539,89543,27590,13468,28355,80489,75703,62583,90567,47292,22521,63739,46096,82797,5745,48336,48513,77129,38125,71129,85770,33855,60802,79094,82873,48645,21811,7693,79968,52466,36764,17249,71251,99962,13541,47011,2971,35079,23766,77223,24914,10102,27446,90989,89851,69136,61173,25869,8216,11,16593,5119,43515,68929,39190,98904,72733,95899,31839,94691,7320,57242,41550,12824,42995,41574,43091,9659,48006,24851,52447,87595,97195,69579,70882,73412,14868,25469,91730,35479,36900,91774,78525,62855,34952,7519,20951,76724,52517,97234,6327,30678,6353,27068,82899,65038,86280,99827,55025,98322,7823,68119,90317,35832,40719,66714,71015,16462,86579,63540,22918,25429,94145,50286,83353,22700,96727,20494,23466,18433,41737,2115,40096,19809,16605,69029,84040,93371,74287,70481,34958,37704,61838,7858,33328,61901,79648,85115,48582,74121,90576,78143,70073,77356,55565,88620,37395,62255,79460,99511,64643,88264,20175,67087,12577,57802,70578,69097,39685,5196,74115,50592,32716,39076,75208,26314,92467,19935,78194,31645,35554,40135,17010,62107,80715,13438,57571,44393,93851,76908,16330,691,82481,460,50117,88951,89488,15274,77163,84684,43667,42508,65831,60908,39931,13387,55712,40271,80931,6684,5116,58002,9270,18662,99437,3332,8029,74389,12522,84355,71142,9602,95840,94606,86230,34021,99800,19902,60218,71328,84661,18595,12904,28077,392,63428,24719,65095,99588,41027,24387,32382,48777,10729,90563,83709,26275,78017,47716,12850,73456,50467,61711,39917,54286,28883,26667,84009,48368,9592,83349,19612,60362,46449,67989,95804,37813,10731,76191,4229,4043,85987,16150,31653,23184,8396,61778,10321,20742,18879,45638,82916,80360,21661,95283,13459,87853,55378,48834,830,35788,99473,17835,21228,30102,44839,77134,78974,33652,95179,57020,31705,32591,84814,94755,17263,95917,5302,81374,25989,39347,24855,68740,37899,81520,35354,21171,47297,22364,84221,86708,74240,3123,49546,82417,18920,50480,1235,68464,47221,10105,8942,73064,56379,80392,44805,4891,43664,51161,84145,66493,2144,1092,3246,77614,60498,77974,50705,4792,78794,46594,34591,66677,47500,70407,3590,17261,12674,87992,397,56635,72990,38377,65400,82308,9716,95482,1860,24343,88201,73474,7662,30331,43836,71047,50150,90754,74270,79499,22876,1721,86968,53209,15977,25013,7488,10730,98288,55091,45830,98277,66869,26908,72634,32789,49041,50404,13720,65655,31459,89332,46964,88177,84402,35575,93056,22184,84353,52589,86520,68599,92426,57264,92185,78414,31646,5266,16920,68532,97641,99288,4407,20071,81716,5687,79918,2779,64834,6839,10497,13686,44994,31351,54941,38440,99024,42607,85698,26665,30034,41269,76261,35420,97747,89811,57098,86617,10448,46312,8063,27609,47666,27040,90122,78065,27589,7946,19351,96029,45772,14024,98383,99186,67387,94983,10550,44872,27302,79270,54635,60675,13823,44769,91055,47741,32520,95164,74279,88231,38844,99680,54154,31505,57962,64665,68527,70047,16394,13112,32694,57494,25722,55835,64658,9398,42982,32949,44304,44097,67225,45291,56485,36954,44481,88593,76780,39579,34780,66587,56208,22153,24143,75666,15919,683,30006,72002,49530,46385,42518,2844,1617,40196,34204,19933,32176,25784,16685,52679,61744,46455,74325,672,73356,72592,55720,41651,90574,87519,35769,70226,97708,57236,65562,60329,72504,67002,80651,27491,32292,10361,75093,53528,93683,37262,27744,97398,10822,81788,74534,81511,98723,91760,91394,13446,52872,88184,93172,20359,88055,16529,52440,50654,30867,78090,6718,60020,10244,83062,64443,15634,75773,67080,85418,71938,7049,69620,76182,86902,65394,403,16009,38787,93459,27989,74994,99028,47679,35838,32345,64702,57722,57312,88102,34748,58217,68483,69657,64566,73293,11696,89220,36915,61212,37994,40349,23750,52804,65096,82363,2387,66284,45828,7680,2959,18895,84178,91129,41453,6332,83829,81359,6004,52204,19880,47098,66388,78413,26339,61409,45056,37760,40241,78807,33491,12023,88044,39675,46713,35726,85309,73297,26871,86843,53106,41472,64041,16747,67098,39847,39207,67589,35901,29060,80857,99665,11619,68374,20659,24472,87362,34762,99937,63664,12702,26970,90275,18819,22008,48444,55356,12113,11389,8520,89639,94112,93199,31154,6110,48946,20121,17133,93621,419,89962,53772,4163,44121,37586,8974,56791,80841,81292,21227,74411,68548,72481,32399,53054,29223,49720,777,34842,68355,92992,13041,48945,47225,30488,30148,36284,8529,97257,82792,24772,28149,2108,23101,19204,48951,64428,63492,22341,61147,97569,23075,84412,80027,70913,50563,62144,59613,51722,66753,47342,20254,90747,85167,61238,54831,21219,49901,34582,62320,20118,26964,8177,95526,59895,65260,38003,88023,8666,27222,80304,78911,25669,12332,91623,1955,47428,93558,67438,31858,40197,46311,70263,81119,23431,4714,95996,13344,15759,55434,46402,45405,36577,10684,21573,18028,76277,52672,56815,90138,28445,47824,69095,41921,35904,15662,35602,92194,10111,63741,85494,21296,90823,97839,80022,45800,13158,24528,43447,76421,54017,73364,8030,55488,37715,18654,99745,26697,73269,1465,81016,95067,97128,77470,41095,42065,59657,94163,46484,31701,62793,85438,34954,57880,22206,9353,3778,81927,88827,40533,50311,88575,17394,85897,43153,84324,50674,28296,88601,1830,61398,82367,45335,57926,36207,75762,649,6883,50123,95625,88969,90355,66866,27972,99946,5263,32440,96382,707,1191,92735,36250,95883,51323,26671,16502,71446,99519,48976,18617,32551,33851,57899,3526,62459,18327,55518,37910,14094,94658,70357,14071,82426,63836,69448,1402,47030,35330,45007,49558,91497,15087,5048,90232,44875,67970,81689,14558,17205,89936,51437,28036,9075,20027,16064,68383,6903,37205,58300,75419,59877,52687,45843,15160,52044,96243,59204,70111,79774,40539,2021,47780,35949,75815,76329,45878,92914,57452,35521,15363,71819,40663,36338,79369,4588,99668,70162,86733,47848,89698,27188,33255,74969,94982,13385,27463,80759,19663,60118,2632,74716,19078,80552,807,14127,84738,58546,84363,65097,42054,25666,27086,40550,31010,11963,40604,78510,20451,75508,59523,45370,44728,21423,61342,62972,78520,58583,28454,53053,30506,45265,61518,18050,62806,89355,54665,17561,3022,79044,68475,46261,12428,56840,44861,51866,53520,83103,75446,77827,66983,5614,46335,15273,83162,67456,31719,4297,88667,38491,78197,29745,4396,21433,15474,81904,64942,71339,99432,46957,32193,96677,29220,38709,86824,69722,67181,33875,72690,56564,6596,24478,20738,59572,3957,37067,21828,83182,36604,73276,83095,92570,44234,67259,695,81099,45171,57742,56724,91546,29916,55573,16440,46435,31827,93093,25619,34366,57940,39297,49683,13922,84470,68513,8099,14293,62094,4534,76935,31792,40605,59918,95097,98961,85633,78675,46714,25319,22398,30982,83862,19990,63875,55616,93886,54364,66536,83263,283,24529,15041,40781,7089,33722,9052,7689,62987,27622,58968,758,93000,74051,4048,66,8710,91865,72963,16455,17459,36233,34867,4654,11938,41664,1348,83858,21320,61885,90285,60090,29506,38221,30384,63654,13920,72604,50375,91966,43966,98347,48304,73640,70944,77402,63209,69361,36897,36422,6723,71848,4342,80655,58575,21929,26038,32640,78454,61806,8716,52292,46181,15209,54121,10053,32163,52286,42354,79212,50411,50824,67382,16546,26178,76971,73172,31759,54736,28655,64641,16813,87611,45323,18174,55384,9506,25194,40653,17592,94134,8136,91458,23710,22788,26573,34060,20292,7479,30923,76381,81035,93860,46829,66509,47223,44247,89583,60588,43693,54438,80116,81379,62070,17838,74227,24695,19783,53488,36726,76167,12686,24921,14407,43371,39512,22928,70865,96077,87823,8278,12719,901,43795,16406,71852,43614,93489,41133,34265,40782,90319,21608,56534,23272,67926,32477,25976,75896,23513,39813,54912,28930,27980,17240,26009,88451,66419,34322,12358,11824,23071,38900,18578,65014,33220,57282,32884,5846,84448,54826,21798,50364,53557,23389,8383,27638,2217,28667,94612,4925,39848,89198,79893,14033,11660,28408,86816,69645,91101,39346,22017,43016,24263,26703,4056,24784,62815,84002,9267,28196,64755,30546,95041,6136,63900,24859,78721,67713,44019,20749,8580,5782,86940,41469,90899,78622,93428,30298,35913,64139,94602,53470,83192,70572,41136,31991,53114,80432,88027,65630,10585,26150,45944,63562,47100,90844,85549,62645,84176,50508,23240,89641,85547,52537,74710,27152,85747,35862,37949,36744,20011,33717,58435,18124,73563,93660,84125,73574,98135,14773,98457,52584,44348,68717,37476,41397,56656,97352,65313,91741,45913,32678,62372,112,60518,18356,29219,55520,3719,60199,82358,49261,12415,62690,77004,82464,1008,90883,1513,26789,4840,25494,85233,83989,73884,84225,64382,60382,95194,1816,46808,37269,75153,34431,62830,58796,47753,68612,69613,21831,80958,58219,86728,89997,12133,94703,69720,51935,99232,11839,58169,74633,14739,85003,68800,71318,57746,54997,94571,94130,3881,72762,62426,38776,88786,62705,34283,76348,75331,63919,71057,12149,16404,77877,80151,34621,30937,15903,2135,90059,77132,64795,22617,64997,73355,34707,52278,88746,94412,47880,21591,54165,80832,15962,26840,5732,22106,79704,8748,69967,24106,9913,68593,23903,6422,30342,16086,71584,93764,90305,25519,10761,2352,45978,57267,26664,54870,17541,33103,50013,9934,72089,31192,76511,30728,40269,71611,37734,24078,990,9438,42662,57692,63208,55848,35153,44671,46169,99185,11252,37917,11755,45776,37310,69174,39092,98680,93977,61407,70536,75024,53536,60960,43493,76477,19441,39577,64624,51162,82004,86402,37036,51928,82495,11374,5254,17756,99444,41762,88318,49385,66908,86225,26574,4315,80054,73747,77903,50900,46262,54238,48223,65602,36192,73424,77473,10792,55846,91078,99906,52586,80514,41050,77880,70323,17686,94815,22208,92031,66209,4183,59847,25908,95739,44868,74139,21669,16819,21029,88836,89814,97598,40124,60154,90268,67860,98320,91662,24983,69067,52930,61759,7718,40801,49825,39345,3337,61812,38892,30392,38566,74228,538,2456,71401,25842,29799,69257,98351,11983,10779,37763,13302,24904,30697,1106,14324,19298,69175,13750,73818,12938,7869,37166,38164,80783,335,49556,95359,90728,72652,55931,31286,60643,32511,73957,90795,15123,89748,29376,80209,15161,50444,69068,83975,30796,70876,23218,97770,34164,77763,17237,79525,35409,1103,82862,62704,51740,52977,76952,37493,86688,76631,72565,79674,46299,75482,68971,87459,58078,80868,41947,37272,96476,97636,30260,3819,60945,8647,92712,97357,41068,64599,2852,67254,75196,62446,64260,80004,14170,4147,80049,84973,54818,96006,68556,93567,2024,71483,69635,83678,52383,15982,49609,97539,71750,35785,34829,20893,29025,18987,74506,27573,30790,67122,28662,9109,10186,54953,75320,62436,85775,70161,75014,57081,31472,60189,95904,99294,4518,71984,43399,16956,36808,88093,75684,40295,5853,71582,24003,27962,73159,98902,84815,70956,12627,73804,28349,83383,40164,97796,96187,52681,84156,58334,9620,42570,40149,30232,52639,53317,90886,78516,49790,45051,92012,89801,42720,93173,15445,32817,83697,83675,51346,31466,43469,52186,26336,17099,97264,45480,94718,65623,7669,28323,42446,63215,28175,3667,58378,74478,44065,15310,66023,50868,96337,8415,87520,535,55261,27534,98034,6914,10937,87967,45433,50268,77238,24045,22015,68243,2949,25485,61908,18321,8549,89726,6819,57945,71745,51921,62292,65475,69499,23700,62510,57919,40614,1234,29623,50109,35019,81108,94209,89203,53387,98880,73736,7306,68031,5275,18842,4458,33093,58347,29087,36930,97613,77486,74021,60114,38081,2380,37789,95019,94832,96764,35537,19557,3290,57668,96679,29462,57775,73975,82079,42445,46928,28788,92962,17987,59201,57732,41580,36972,41589,62868,29235,15222,50280,95282,82155,50891,16992,64208,97062,65234,11342,74347,47280,33619,27541,42515,959,16416,74221,96687,13956,81180,15432,67617,75404,47507,518,10280,95518,54329,56765,74851,52696,18271,27575,53649,84812,43800,31514,15573,32381,65138,1052,70538,72556,51988,91071,3670,74836,59962,66077,7012,42299,59986,25184,91357,23637,36328,97252,40418,96263,49192,48624,42974,38276,99560,93339,68762,63265,33890,11445,22812,73124,37996,28452,20086,88070,89720,2343,95724,65876,6169,21078,98024,59055,38708,95475,7986,47995,88329,78433,47749,35522,7943,22774,38463,16826,99991,98218,42958,6355,97217,12820,34782,31248,93736,99450,61306,35634,76858,83730,72076,96003,17018,89534,18142,31122,53116,6856,47442,62415,5075,59974,89953,8400,14591,2154,65106,34962,32175,80769,51102,39738,45787,15947,65773,11952,58397,74966,66249,96868,57350,47835,51125,41501,65135,86421,16023,74255,25352,60938,45711,75002,11508,41883,7064,30229,31967,96982,33534,17743,92038,46486,74647,51704,66799,35259,3328,49722,82437,30008,85571,16990,86064,3598,47576,6256,52166,63987,23455,29409,86238,6915,39610,30058,26781,37636,56166,29694,52680,81,93040,19980,67202,36593,38835,60479,5276,85054,76689,26332,65360,52561,7503,49526,4577,53043,3018,31477,54318,48509,53950,262,87636,19292,67707,63849,80732,61780,75235,18291,92313,66474,47176,21969,67930,21425,55492,33166,18367,15207,89921,96827,12139,84128,88066,84679,53412,3407,47472,32023,57855,21014,32796,46811,24162,98479,24794,21422,16603,38478,82511,12679,90902,30103,55317,22227,8464,52876,38219,81863,99448,39068,41893,51001,30584,58016,22055,35124,11818,30379,94399,43734,29063,52634,78407,96836,57875,23135,46231,8009,32894,64034,29276,92704,67590,65522,12896,23363,88960,22729,55238,96148,26092,22897,20224,80861,42041,68917,54000,71228,76433,19938,67290,53186,18031,21169,52298,59525,51398,51392,63011,72648,96095,86537,2040,58044,90222,99943,69270,49571,59629,80282,31895,69509,15597,93927,64227,55526,50073,60838,86099,6621,5643,72517,60445,94918,94119,5640,84317,61365,11460,63718,98505,75687,35277,63241,68814,99075,62951,32890,70912,14349,1227,1445,59372,12980,4820,82302,45653,27348,48566,58778,81321,92714,36314,54811,41239,65098,3815,2702,35587,85636,40699,2330,59218,37458,17031,87822,29721,81023,99124,73516,6570,99491,61831,78207,28000,23600,9253,56648,56622,13168,83370,68323,80954,16694,70136,59643,7528,81667,73133,83923,47501,43929,62202,99296,63613,31534,6821,83742,22620,39436,74413,26722,61099,10733,83526,9215,58478,37615,92511,84584,41455,89218,82189,75408,75409,30849,96726,60537,77688,5794,32633,50478,42615,93070,92190,76236,50526,6331,88621,15417,26136,6076,59244,48010,60968,42804,69544,80757,5076,12898,90851,14295,70131,41524,3062,903,94468,96345,84173,20139,13837,81692,80213,14440,24019,14524,2213,28357,23861,73764,17027,76702,46570,10502,53097,3128,14666,87891,40106,39944,10895,94286,30458,16207,81467,86706,55956,57566,42402,42110,4200,35182,60261,38965,7365,94543,27177,91111,46375,11433,60270,51818,8614,43835,64434,95530,93010,11504,35067,82447,49709,2376,71374,28104,37368,96097,92011,72164,21869,1014,63061,68597,60485,94600,28575,95147,43709,73877,880,31957,44852,72268,65159,33879,30831,25083,54683,64998,79811,26326,75145,7695,1005,19806,57869,4745,54163,93678,41110,3828,26245,11578,30716,41207,85931,48622,61297,14183,77624,53170,73866,56496,2839,58729,21174,53794,39065,24160,96068,94705,22626,28536,96716,7110,28449,69798,47715,93481,70775,9833,53800,2096,74427,67191,10192,58119,70971,70906,46494,80297,37477,59113,83050,73007,16431,91647,45700,32207,97176,54117,20026,92827,4135,13532,33706,15905,30512,20793,34695,6889,33058,88426,84846,75397,43000,33501,75460,76009,78711,98146,72755,63658,63902,46451,65377,19217,75783,34830,13113,59044,68236,848,37132,37099,9912,32584,46282,86633,40615,16714,42264,4451,84527,98895,76843,97561,42049,34894,54118,86982,84769,71307,62432,90100,48396,24956,52007,34838,17178,17353,77689,26477,35306,20759,56090,97232,84750,61204,73334,29337,70199,81195,5834,1983,72586,94497,68277,94327,14569,45679,6556,56978,13307,63292,20283,15820,99513,217,28755,80531,96251,36883,58875,61609,26666,56193,62341,13006,47018,14041,28179,38749,32050,23316,60769,55879,82784,48266,24651,53052,80921,86772,34419,86897,76810,89463,48569,31911,81418,43791,19074,90238,76365,30453,64493,44298,95916,66619,72566,37989,12790,17764,70458,78616,4734,19721,66301,21724,26089,27858,63293,96212,53190,51311,27814,83267,12294,98543,77856,84074,93612,17613,30145,85518,29629,2699,6713,97080,23819,72456,18314,39725,1615,80674,69490,45199,68122,20754,79928,86424,12709,61781,75283,40852,67286,53121,21539,26692,61779,97559,19248,31295,7834,22128,10026,76119,28032,28707,86136,79616,83591,1331,37374,57313,81335,91882,36443,84218,54234,64283,51688,51520,75999,5241,18047,2629,54365,30217,82199,74812,55661,76282,36440,70743,60297,41817,45635,44951,79127,96850,98835,58256,60308,33834,62771,64444,7241,97091,42572,49978,26152,46251,82929,10261,59956,60759,25422,61879,28378,8874,50356,12489,32711,59330,36385,11829,26063,67199,91271,88210,91930,2539,47037,43737,94554,55160,59485,45908,84690,6015,71965,2535,45030,98774,82939,28346,59013,68768,93318,18580,31347,87279,41941,23704,66759,328,12304,32230,47072,39492,10400,29705,98096,83949,12583,72722,42816,59840,64528,22825,95310,3232,6870,34423,21536,43995,59821,35791,18195,86829,20498,17093,29090,38826,90760,64049,84058,96122,42917,31674,26112,17645,67976,85339,75439,44027,45548,37505,89084,86455,60705,85219,78970,47616,38103,19049,33558,60548,83807,96221,36648,21392,71828,9935,22358,89468,98838,30612,83518,59946,67112,81337,52332,65571,18217,66489,4736,80852,16369,55750,86437,77445,7020,5847,63886,92841,81073,146,28013,64430,64217,18061,4520,30842,10034,31420,4682,57834,47229,71061,74992,8184,92520,91552,40695,14046,1230,55088,87238,36289,23967,43310,91250,46938,67379,63785,56357,33532,68774,51957,1987,76160,16577,92507,95417,23062,21594,92868,39422,70108,10073,76580,87839,64018,99699,12042,1517,46497,5237,11779,257,32155,65102,34036,76344,5615,77519,82640,81714,36176,20233,51585,44145,23104,22988,3523,36649,98132,22170,35164,92003,47257,62268,51055,2460,97121,69577,29029,41938,47421,12282,79979,31908,13902,46445,70275,12167,59246,61975,99463,50727,47569,36678,38750,33382,8926,10867,71822,83898,69518,25111,92670,49109,92532,2220,54208,57301,1100,30274,64873,37064,93915,30003,23778,11702,80577,3205,32965,82290,50980,28553,31050,80652,93662,25104,4521,74602,77471,67229,7420,36281,41553,50019,80223,49983,77111,4218,92166,26911,33477,596,2047,47799,9359,58607,1043,23945,98716,9814,17627,86059,21091,11924,7886,85805,35512,13941,72067,91435,83199,99972,87199,22683,33759,80047,5974,96784,83415,59205,18387,57183,75801,82836,24938,35624,79844,12994,80825,8500,62150,83191,14587,24929,27020,25748,48996,40905,10328,31340,12601,53008,20144,36637,75339,43109,42513,44761,12602,22670,31215,19134,55338,39903,31301,46963,75260,56863,43769,23615,96494,46296,15408,26863,60573,55310,59072,45607,38432,36204,57366,50775,32316,25785,92768,59799,36486,20021,14482,14586,93767,2978,81856,4384,6111,87354,5850,84283,49139,53513,4791,54613,43171,8376,2334,28320,71000,73185,3867,77571,67527,95554,56154,59183,59165,61624,40635,7254,36890,92162,55743,63097,22780,62392,348,70330,87955,89628,56490,26814,2544,8898,60127,43095,95363,1910,15943,88227,6558,41487,3493,26625,76646,70690,60300,5710,3175,28890,88520,88860,18940,99145,48060,63062,34303,60971,21488,70259,4369,42647,43627,98489,16060,63357,53239,69241,18051,39537,55840,49869,86481,67268,70006,64015,82052,91569,81765,61922,59703,17917,18579,15822,39241,49644,1476,93197,75101,41155,29700,37315,27275,73369,65230,59335,45642,71269,48880,54833,90534,95547,9323,20696,60204,92858,43864,33603,93204,40140,9015,13672,77393,44035,12865,36079,56602,9566,71594,10228,62635,67640,59076,88465,46755,98763,64395,7762,22214,9146,86775,51170,93520,68498,95607,34072,83400,11310,10511,65075,92997,91448,28369,89497,99357,62890,51026,83783,37556,64166,26373,9401,40088,64336,33147,54676,3863,23113,44029,64503,68621,19095,81160,90759,73196,61411,82778,25359,53168,73808,30518,26748,48508,38104,33228,73419,24832,83470,68233,77863,25871,22584,34280,96583,17200,91287,37629,27993,16351,49129,7075,2005,18898,37724,82955,61632,98407,52282,45969,67036,33133,71393,63564,1134,4556,41002,60160,29917,4653,54412,91962,60858,64090,99051,82786,57189,6885,44986,30045,4467,40111,47489,65884,63539,23629,14976,73629,20252,56608,56671,44167,42005,11981,83514,11209,61726,77654,88249,53125,32442,36668,51601,19776,7225,30750,56644,3054,62196,44518,63800,11030,79076,11322,95789,18948,20560,46230,49037,55510,63185,80010,79475,4194,14971,99742,60770,201,70273,32383,73418,41673,34129,20625,45887,64271,59570,43567,1547,29020,62093,49256,32930,45608,63194,91577,57991,47517,65800,68760,58593,74497,15040,57321,88517,613,65687,71679,32115,67647,2058,16563,78581,30310,42323,92802,57379,64651,59156,53771,30676,13897,83592,50577,72720,34240,62503,2984,37542,83202,79382,61977,14647,95853,65069,94198,67566,44397,79144,38324,10987,96094,23563,81942,98666,49029,60190,12237,33702,12403,1394,50066,18852,88586,73927,62359,97915,9129,94524,25045,59608,17171,41324,35630,83757,94363,29391,55350,2915,42609,6521,68524,46030,6007,23821,84795,15143,30116,38803,5209,30498,49282,93843,53692,19016,35789,82168,3602,14372,14927,74720,49253,18969,54790,36247,94539,32066,40705,93541,52622,50855,83594,96395,60077,55874,68829,73104,86251,26672,58112,16354,6363,32456,50140,22158,4387,62964,30300,74507,43389,46786,41629,65258,77618,41232,17913,47961,20797,46372,75878,40220,24791,23183,73120,16866,18345,38376,25182,71252,70930,72354,86854,8399,13677,83051,52642,42539,23995,92952,22951,82067,76252,78030,24007,95175,26923,14333,71054,67446,62246,78725,99127,83113,5548,5128,47332,86291,65611,67056,83368,79982,89274,25491,41787,5303,57703,40715,18785,11181,41978,78494,27630,61385,5951,58946,76489,16509,22920,39363,36155,25598,43248,85298,3546,756,35553,19453,34452,14725,59043,69040,86892,16556,85159,15484,84097,37552,37464,90654,67370,69469,68577,27818,80283,21718,58118,26831,38796,5950,74416,17229,53164,99655,38917,47105,87269,86411,60338,67829,35914,4264,56606,38008,85163,16700,41284,25787,60289,51674,37530,85920,84910,85812,22818,50458,34212,70657,47339,64602,38945,79624,1343,85628,90985,23682,26588,93484,95384,49814,69366,74723,89620,63152,26768,18039,22695,97505,36865,53593,48748,94058,21064,62837,56526,20981,19300,30002,19538,18055,51904,72022,83108,83668,16876,71034,44521,63749,82385,14106,9212,43939,79066,31782,52916,65585,89787,88676,9050,24376,61871,34333,50094,45464,24590,76364,88582,63125,95188,24107,16333,18788,43990,85738,10206,93677,60483,80898,94667,68262,14806,52710,19794,61646,97716,87267,27783,92242,19203,74034,95948,37216,48550,33560,80018,47343,64961,62980,13003,82280,11413,55020,94220,76798,17472,73738,45102,8990,42077,61123,95774,97807,74645,74517,28492,93547,94300,63563,68182,4677,24133,96042,30544,56970,7966,94943,75157,84289,28748,21879,19556,23037,20161,42717,5978,39695,90852,31386,10024,32932,26167,82494,8970,12162,69621,26981,39797,51115,50104,31090,96775,79198,38591,9924,69334,32698,60108,52539,68358,96844,4703,1565,15237,10204,88770,49551,10856,83096,63628,56667,40192,34244,32247,91056,51226,6561,58594,88905,3160,68174,35967,32603,55424,39093,30216,6828,80538,98861,27091,39001,17564,4860,51471,54150,61715,13363,57966,7977,60085,93321,20553,76822,50021,96238,16726,40764,18122,79605,52174,67411,56719,43123,60411,96170,99740,74212,97144,42429,87918,59440,74062,33946,33901,67039,77251,72068,91631,43322,87542,73136,27568,70935,84979,40061,37590,74246,95990,61583,78074,58356,93103,6846,9969,95308,2231,54519,8034,78267,80093,56312,32358,66795,26774,48791,31308,22639,85846,34511,73577,57473,24689,106,64047,29230,19705,48594,86391,23401,28740,12268,665,54324,6655,84949,97602,68881,85964,58328,94002,15047,19795,59747,79184,29803,69356,70329,93152,59540,84123,86016,3604,71023,11371,7157,74234,19039,86644,73374,35752,5632,18079,77828,71420,39500,27697,98913,4523,50695,60093,36197,26636,63725,4212,73241,67608,85185,12880,78549,81877,11355,18085,28017,39329,27963,49600,40214,61585,88924,21510,8260,29580,2068,57965,90244,36623,58250,8931,24868,12251,17667,76912,70741,37852,73497,82010,67015,59490,49343,25921,6222,908,28049,53854,24511,45617,80667,40985,29862,4352,79932,12663,91267,82626,36425,52324,91812,68644,61482,8853,2272,31524,75711,70998,43722,86296,75286,2960,49672,76001,48635,63151,12678,43596,81536,57805,72345,59004,95449,34128,80864,76351,45444,67561,46323,3862,6811,73641,82583,83123,21175,39716,17047,93125,71170,95999,6227,8538,67920,41682,13096,57807,59465,27179,92048,58146,79223,52781,96939,9079,9159,28572,99510,43156,79766,28982,19992,68980,27153,53320,56158,78905,3511,84168,70440,35165,98606,94141,73024,26632,49525,43803,93762,23807,2023,92318,99598,43396,58776,96183,77516,93397,86214,14146,97755,59254,11998,83286,77928,22122,78250,29404,38547,15513,36615,78100,33784,90887,71286,69537,48969,53539,68033,34014,5532,46805,61202,92203,16596,99466,32579,72257,15448,90700,21733,19150,17087,31453,17202,95630,47395,65401,18836,28537,20387,18347,65576,1604,86675,52070,75256,63214,85463,43714,10576,86073,4909,52238,15696,6661,6138,79086,34138,46550,82975,41128,61660,47812,86493,59393,45959,21576,95377,37287,6676,74748,16474,38206,90590,86030,46710,52266,31277,21076,29994,5815,47671,9630,5170,4225,72192,62858,67832,6421,20447,817,27656,30099,73233,61111,8227,92986,16122,94479,87298,99938,48486,77488,1349,89041,33039,43083,2476,64014,17984,47177,37921,22666,24773,47382,58204,54687,70873,96151,28500,63512,63719,95273,56779,24874,44302,30553,25113,21361,8724,87342,9283,83462,87227,5110,57145,13758,18042,46817,11171,68608,87234,40098,40866,84800,87848,47262,82122,92219,21003,25609,76753,93272,64294,68679,60649,53459,94033,95331,761,42454,64608,12623,22554,39448,69347,10313,72743,64978,28440,71391,30419,28795,97474,25435,1952,42983,44254,28916,1214,65418,54060,18637,87906,68681,54231,98948,53723,10472,62331,18287,36317,90616,94721,26230,4834,30266,73247,22486,36048,25462,40798,81121,85252,63903,2853,21622,99211,54838,39969,84830,23019,54637,40445,31986,47435,32240,31946,86286,5964,93658,43388,41861,21451,84091,60520,88062,80983,27156,25080,18554,79058,45168,89602,4581,32687,96560,1122,45516,92797,81018,22284,12910,38360,10973,65633,47327,514,67998,90476,56744,3399,31438,84094,62908,44421,90265,51855,46373,56460,2417,24467,7269,80218,13272,26349,95161,48763,76668,10784,6130,56392,46156,38293,61933,16043,69318,57716,45657,77633,4207,21036,24786,70768,49547,76334,58740,59579,8687,81388,76626,53384,23867,42145,8013,44259,29231,20412,47474,32019,14801,51972,25965,24330,32127,76059,22534,86600,69887,29522,38520,22528,98749,68142,97426,42918,6365,32356,49682,55718,46907,30460,89085,58840,7810,12652,18320,39999,87517,1168,42825,58763,46913,79149,20353,16895,10562,78889,24605,60621,67499,59060,33983,86780,66808,29990,12912,21830,7866,62857,92544,77097,76803,53036,21824,65638,91879,61504,8389,10016,42239,58246,75748,43674,62220,41591,32024,65235,23764,45766,45926,162,81230,40137,12410,42349,74245,13747,8963,96956,46757,10607,30182,98500,98846,53410,6777,25803,9035,83950,29284,48798,20729,89405,5001,1799,6178,54616,12160,78505,99553,29642,47312,91761,49191,11990,96156,97101,37995,71700,74394,34139,34888,48100,77019,48357,44592,98685,29070,24967,85092,1376,93432,15811,85257,58153,65170,15502,8834,78215,61717,13338,23711,29693,33909,86227,65413,68521,16088,75982,96164,9105,80707,32570,63895,34671,90245,55269,84247,55407,54727,89020,19424,49691,57890,62757,26754,40734,36039,88099,88837,4339,36327,45155,3495,57579,28595,1460,59997,35773,1192,31690,32097,37277,50970,96146,74704,87626,58499,97687,9198,37904,39843,36679,65543,13587,21713,22278,88281,16654,95716,53812,5058,69860,70371,67264,31337,31271,51672,76647,28224,35703,55051,36401,96365,62601,81947,23150,46023,34709,43102,25475,3382,38186,49755,98682,87750,85930,84786,80271,96364,62784,17287,44330,54872,10378,83327,20342,31730,99986,25747,38855,94652,9910,54731,63560,43061,32643,10864,28708,35517,61333,11325,24342,36406,40134,59604,75551,37055,56869,89043,71161,33393,84594,32867,21649,31499,47110,94355,19703,88994,19428,38429,31971,29255,97138,51147,38176,18733,24510,63991,5089,70462,97043,12297,60808,26495,38411,82250,48420,89593,30023,17660,44128,8159,5757,50545,64714,9152,26350,24520,2107,2309,35474,49454,92412,25417,22632,46044,93271,8286,68903,560,20068,47713,52850,4950,66190,90868,9832,98161,84967,98546,34541,11459,18893,70375,13825,515,68637,57669,53177,70630,44410,61860,95843,56448,47589,63458,87012,27450,82568,61900,74805,37718,15061,54348,57908,1264,81709,64451,76591,6784,95537,36182,10008,13064,77099,12317,18951,60647,82601,66875,89164,16800,886,55881,33199,15643,6192,77555,60443,15642,20538,90422,71816,35613,68858,31717,99495,46327,69818,68096,41676,73459,13990,63967,95669,72605,61150,17602,25847,58271,33002,72184,11907,50287,4882,99993,56623,13166,19698,85893,77596,42025,37057,17934,72158,85606,2907,28457,25604,17799,53753,60619,63957,23099,67585,11207,67850,52231,87524,16548,3933,60222,48518,24275,28582,49486,76185,87341,51523,96413,10617,9374,9355,86356,58898,39992,93997,30647,50603,57801,48091,59209,75349,61088,34632,51445,68600,91915,4029,10901,74593,99189,61451,67093,89604,72399,16902,48784,6508,66603,93162,60339,89776,52814,40656,72042,99858,86375,15307,49819,27725,78801,35166,39206,25177,49379,56417,68344,46722,63774,5813,90671,43158,86488,19030,74099,54374,28282,90253,43200,65509,47458,63111,13655,52486,91459,71172,8892,44408,55486,83854,36906,40574,98041,38269,15581,72376,74102,65395,23420,43183,59308,53994,83210,59145,99559,47393,80451,50617,74652,36184,93308,12543,37041,49634,65600,79312,74624,2519,68531,72668,28095,2572,87217,64941,52375,27433,99654,23526,38851,85461,35702,31965,6854,51650,11561,71045,49685,75026,29048,6099,45088,58065,11828,99871,9651,97230,17128,87426,19120,4619,46878,79682,54965,72603,57042,55935,28695,10123,24321,92759,84776,15740,62502,77455,77276,17629,3314,91279,6790,23063,79197,25854,88453,33502,33277,97086,60374,42208,92513,69184,69841,75469,76404,99100,18824,72873,28895,21389,57377,61201,78212,24805,7907,70236,46705,73451,38853,87297,56947,60343,16121,33953,35697,40403,20554,56094,51129,49975,11862,67679,58589,96965,72426,96751,11292,2538,50559,35829,61011,98391,71160,966,53609,4901,71840,50628,32192,66840,86158,17450,69398,52896,37825,76313,58220,96418,46976,52013,97679,38838,77628,58037,46775,57738,44758,31016,25769,12057,60507,14040,31068,22838,79654,94806,19498,7026,84200,44092,26039,51574,47906,5545,71081,7719,7724,95148,66479,85973,49727,8851,68399,65918,16642,51190,31485,88133,76298,23729,57394,37644,78531,82931,88604,54244,30156,75696,98257,80618,66459,38373,90767,9173,19957,55028,45411,68656,64697,69934,17584,48187,44664,97784,95880,72513,8139,74978,56986,2718,55644,41464,62659,62014,95337,12657,22507,28334,50386,96253,28400,9756,48952,19853,65315,91255,43240,33727,57079,3715,14774,80802,45303,85597,71950,13081,93914,74471,69148,70173,77178,30538,54059,40904,17364,74477,72043,52409,51563,2789,86460,31388,65374,52408,63773,38804,48760,45482,79649,29649,40466,38650,5496,70680,13009,60053,17656,34406,88502,7854,46337,77566,29881,23008,27424,79753,63559,72220,80397,90800,43668,63515,10827,40860,51555,4371,91103,18156,35322,84719,92600,67071,37119,20193,76416,36802,92113,15738,1709,29396,5864,4139,68902,46523,11159,88721,17388,44786,1632,78243,61928,67453,46277,41179,50095,78427,86891,78633,915,31238,28317,47691,3414,78701,83115,68499,73989,13860,76505,91736,45041,76914,49733,83158,97427,40741,64110,76314,10935,57537,2466,29711,77954,16939,6515,57322,2861,20985,28459,67034,11067,43526,17496,38604,80205,78329,90328,5394,35137,93803,99912,79714,6282,22834,35361,22374,25145,60049,13120,79129,24457,22677,8940,88561,94091,57662,71567,60151,28614,81995,25549,11244,65092,80274,16988,34169,31032,56071,69520,15134,9937,30360,91031,54689,79138,67649,47750,68335,45825,75295,37925,66151,50591,13984,69857,94802,73882,5079,47148,29418,57964,26130,18677,69774,80227,19250,39491,72837,87503,70427,27320,27134,66844,47663,13332,99738,61870,73652,15167,44412,33378,56176,97571,51366,68061,4337,18372,82988,61692,15425,45914,69553,77092,80938,87080,48387,71693,73734,69370,5996,63944,40314,21275,7165,50393,14545,9547,82694,41158,92200,94668,14870,24320,98609,14769,37006,17552,7401,14229,38870,86196,35131,4294,80907,24117,44591,24103,36156,86811,62367,31150,5035,48908,68388,68118,46217,84169,51386,43528,45902,74460,30641,25244,65399,24960,23171,37121,2039,77520,69176,20490,15428,19362,57024,11388,9414,41348,84046,31716,67952,86606,62046,39034,46340,28041,81909,52900,44785,30447,37751,45596,98140,92397,44625,81494,86950,33579,33377,54248,66334,48311,99975,27062,78149,55461,98331,46309,78684,55763,23747,45451,75883,49688,29827,48075,85195,39482,47748,40447,81105,93300,50567,55064,49316,24021,47794,98450,64918,77264,41310,73757,50379,59263,95805,11100,37748,54864,38388,70119,63922,81662,44652,32135,59309,34101,71242,60674,30801,47531,24606,41011,62427,2121,31211,21643,53770,68671,91644,75770,22784,76496,41863,55431,12931,95030,42756,95405,81945,94338,16463,92692,80145,32950,63504,99330,95000,62969,15640,69888,48758,24131,98715,88246,48157,48575,3421,86303,66892,28622,9166,83239,38775,594,98537,13970,18492,31539,19485,30878,45954,95295,79381,45316,57518,40720,98198,85388,81114,75125,1769,88937,75390,51244,74211,92628,57376,53681,13978,86372,73121,92598,13266,87641,88173,54863,85415,60324,92183,33360,51369,68490,15826,34025,19011,42398,11364,95762,71859,25822,835,74496,86264,85712,42634,34397,84928,14784,14193,33240,484,51628,54894,61601,78126,38583,68034,98783,53012,76797,78527,25523,17796,69256,27628,7120,84488,43031,78658,7587,30832,5485,93689,1302,20691,52363,9493,24766,71537,15617,78434,53722,52275,17165,14228,4651,89735,10741,57378,89313,9790,19601,5251,48360,75503,40404,42010,51198,61502,7882,5484,29363,1353,44889,20355,61073,53918,6149,45566,20694,56008,12502,13101,83961,45377,38006,73945,42460,96901,79000,13408,66906,89549,50269,42205,86790,32284,21500,83835,25195,59419,52597,62496,77072,89948,43002,41555,23784,3386,9489,1964,47288,75852,34777,61913,87501,17231,68414,7727,51772,46303,589,83078,9682,54976,5416,2738,86058,34175,10320,54223,30623,64180,79005,15369,83262,93850,38136,12955,31598,19364,27987,62894,16792,96140,58804,86400,88141,38821,30775,95799,22514,29252,19046,27037,55001,64985,29845,73232,90802,39768,45024,49248,15713,83500,6662,67101,35754,45546,98406,77267,31604,58495,89029,45412,20165,23309,75178,5047,57974,94229,36282,72183,60856,36403,81949,70082,72510,76549,57575,18272,32150,19215,34690,11520,81924,81594,41699,95207,25937,77635,30583,8836,44054,66970,99057,5385,85316,51208,70172,57642,64561,88626,35150,24093,63929,19888,24696,93552,6973,85784,23935,40441,97968,60107,8923,44108,32866,50761,71710,54728,48562,99971,54006,76710,38519,43840,21235,47858,80190,43955,16049,39670,24193,83866,5253,19580,35003,67149,55055,18210,68409,36084,19497,76419,8890,65295,61753,88594,80276,60646,72168,28765,90691,9617,32368,7721,82912,1965,60867,12727,15230,98950,28377,34557,88393,77271,26856,74519,5629,90108,30007,71949,22552,89966,22828,32683,19012,22837,91325,10106,72895,41780,36692,3988,72490,94821,30302,63099,21186,78930,65663,86781,61571,93921,66144,63647,54573,4512,70382,14367,46739,69512,27742,11032,79079,54852,92861,61132,213,22615,39510,38553,69739,46918,32936,74105,51194,70310,13478,87833,44990,8041,85442,47183,20376,23898,97377,57014,56283,92362,3262,49011,98777,636,74397,84056,12386,54783,67210,10112,68667,7257,80354,10222,97438,64387,7768,65210,42529,33247,80941,36709,15460,51839,20973,48705,79006,48700,6677,41638,78872,39445,40932,35873,91914,18658,53082,19339,1543,7220,50023,30084,44509,13745,7748,3859,65874,36652,74094,77331,2179,50276,31087,53687,88536,96981,35818,99313,50555,38769,25786,7242,5912,23842,2297,41788,65023,97179,54929,64152,51042,64722,86134,78670,81491,34539,10504,57637,28753,22964,24232,35982,46807,9963,69904,79647,20322,11717,87171,72544,21362,34581,87900,11503,64413,9085,4412,34006,43920,62563,60934,72731,77096,51217,84341,88259,70195,23173,45498,32632,62194,75069,67601,69769,23956,66779,76717,23725,88286,21480,68564,80505,13982,19048,53986,5486,64927,84215,55957,48611,55523,85996,51586,87000,22266,17530,99459,55337,57012,56155,68076,51964,90029,41252,20552,1063,77426,55811,83698,3929,22621,72759,55182,34726,59437,36189,47508,51994,4957,55809,81215,97058,576,37483,38241,32848,52018,48197,34601,1327,95048,919,19688,69204,9176,93132,51944,38734,11438,41475,86597,82272,72135,41813,61804,29489,75585,3293,90792,63841,40055,42366,47486,42688,61805,76872,84224,24352,95852,21648,70975,10610,57617,97922,51840,8567,59392,70727,46322,87715,24251,51110,39331,5316,87846,15758,54882,85160,99367,25189,52366,52706,29224,80172,78204,43086,16892,58556,60328,31307,47822,35472,30348,63269,90300,25123,41311,99856,94673,41049,97594,53517,39109,92626,42660,35383,1474,91937,96034,74895,76543,2966,3275,66884,77547,42040,81501,8858,53758,62160,27101,5784,83703,65668,16588,79046,25858,38841,48517,18264,12978,34558,14469,94893,90443,29910,31210,69098,62714,33919,63488,9289,52803,35267,5507,2164,98271,87083,75410,23836,69088,5623,45232,23403,2483,32962,39475,52731,2864,76632,86019,65074,31212,59754,77660,48489,98859,3545,21667,77398,70389,95192,95195,19097,85716,92668,31482,99620,15136,19833,2619,40188,9500,94331,63776,65362,25765,40470,66687,70385,34547,76377,36109,87888,32740,71435,18146,93596,61007,68071,60404,90632,9730,92902,89462,8987,86050,99477,30527,46504,79362,95838,6970,80471,40151,95707,24823,32846,82813,10397,57643,48452,35675,88697,20775,81319,82635,47184,72372,79963,24714,20627,25497,79622,15271,84923,53434,40402,78704,33236,99482,92348,11435,83261,29606,36003,62646,28090,99582,27952,11427,669,83797,95494,89160,62622,39228,62373,43745,35359,73379,65274,36019,19073,15832,23460,9047,13359,14287,66601,63639,45558,81577,62374,92441,88941,53176,52154,85511,94586,37529,93651,60100,20953,36325,18445,48988,77378,28550,42313,87033,51719,66717,46941,47537,49839,28803,52427,68337,69882,23157,60642,56159,92024,38924,58367,7493,38868,96440,48482,32524,88512,79967,82605,44487,59976,88968,34941,90190,63206,83617,76478,74332,87711,96354,9689,15907,1849,85982,83253,27207,90925,67831,98764,25471,94021,32304,18212,20834,9925,57323,73916,62701,69227,48152,30681,39417,34410,10537,801,3434,69385,79348,57629,77278,41119,5604,38257,90153,30650,19539,28656,6709,93666,26835,51634,69036,77425,15941,67519,26019,49524,51769,30783,33973,91067,68158,82631,40392,96000,35320,60467,90417,40016,54735,95410,53065,71890,84141,60043,71957,25366,42737,43385,36695,7334,40224,1542,17399,67340,62222,40166,53665,9175,74950,16900,72292,62753,70954,37054,69609,28611,47409,97235,96596,78997,38112,84256,39581,56439,89227,78483,7756,55691,81585,74855,85042,130,85609,10124,62016,78068,16909,48066,40482,4102,67584,43261,18794,18801,89696,63692,5890,12680,39642,43849,81680,68266,97347,20084,92443,27276,92046,50064,23364,63246,67564,57095,66645,53632,35281,62527,6053,75578,2165,79053,98669,40087,99098,76938,26472,11052,88387,59228,17826,98130,38671,28923,73880,73112,2813,75954,1786,72317,50365,81733,16444,70967,12718,96967,99573,51105,36729,86983,69618,76514,97605,40846,85659,26439,64246,3258,19973,93078,20607,45018,93006,23922,72443,26602,93964,23717,90335,22572,90281,72937,81220,11502,90658,99621,56503,73766,34499,97694,57062,60826,14565,77526,78258,11337,34252,85389,7875,29450,85841,98986,62873,10144,44400,63830,48836,4186,60670,76095,84611,74640,3799,43710,54726,94674,8535,26817,5279,36918,41313,60728,65767,22130,55613,79179,59384,19132,70153,52260,27439,92764,59753,98179,89701,51589,85677,8462,30857,59584,61288,39116,87790,84936,4284,96083,76048,58319,89009,95061,55834,60843,43776,80808,31882,34475,11058,65484,73838,67297,9639,74572,85130,19056,47076,84479,96499,65279,42268,53473,90748,61848,99213,37452,70965,48161,99361,5415,45799,78350,29172,1499,93756,63262,11822,43838,4596,49239,40758,48793,18389,60943,11971,81090,32901,9424,67503,87908,77964,67079,57254,83850,51096,56401,50619,89781,47897,74592,68261,91318,4012,95372,73480,71495,81284,46126,88484,33007,46893,23924,18468,71565,24415,37657,47578,33468,62120,86054,99359,61033,65835,17432,95585,48020,26662,90194,61590,62615,40996,14570,58035,35329,43382,57316,11254,93016,30522,75361,75984,56385,93218,45022,48089,44159,64837,70537,35192,82533,48352,93351,42849,3012,59942,60811,55818,82875,7057,44,14740,60851,389,22117,51557,14530,66711,3181,49482,38985,22817,97136,12102,89605,34278,75987,81940,20905,19005,36292,94384,43018,9662,88253,30168,52112,37504,75808,31949,7861,9745,11587,73958,27806,40469,37351,50998,11418,56841,25894,35762,83236,91517,83626,16966,33686,23395,20828,64533,69661,14222,56628,34960,94692,29948,52873,19481,53425,1179,55637,99358,10171,76087,87092,44566,9867,80602,91800,46244,48856,11311,17049,72147,99673,90862,84303,74265,80059,67493,53066,14417,27699,10914,39603,3127,37328,37432,42777,8314,11300,41771,80328,8838,47322,34028,75769,9257,73860,91192,63354,63257,10929,82679,69898,17033,1610,78823,38542,2354,8214,91293,60684,59163,73383,80250,37685,88431,31746,88935,40056,60444,31713,69602,23303,96791,41107,68161,62125,11285,20115,93441,28419,50744,92923,11104,58805,4515,61746,10344,15085,55689,21681,53645,79324,11227,73423,79644,34494,17065,42735,29986,31924,87272,92036,72115,92766,28297,33749,11821,66426,32761,60175,37673,86807,40385,44497,91945,70241,54541,87281,60231,85711,93769,14931,57671,5187,66543,31178,95919,1478,65131,29120,1420,43808,2101,98231,35269,20038,62434,57744,46542,78789,26132,52528,32130,78080,82244,73878,88096,6047,92287,26683,1506,41323,32064,14190,71217,94752,32971,67005,78323,27291,21397,47575,91728,19079,43851,3691,72671,38669,64584,14359,2802,62259,43139,64607,98015,26242,91419,66842,30435,76611,46530,19923,98476,30798,9293,47681,87065,25245,80920,99049,177,80033,51638,39708,19958,13795,57878,69738,24104,84444,54602,86297,47247,22005,26237,60287,25084,2258,58649,44906,66569,67308,71593,80002,77076,31775,23440,27587,34666,91313,7580,68213,57963,38137,3727,6052,92842,47558,90261,80375,66206,2624,98098,85796,96210,89191,43116,28956,17794,37974,97276,63855,73967,91756,92824,61163,41975,85583,26930,93346,47714,84285,39128,93925,41606,35943,26917,94998,92490,17437,53537,59644,55137,60172,20585,82435,65179,3276,850,59656,89374,56860,54681,66785,72018,46783,83784,29544,90968,48913,66002,20140,41983,87965,22191,59727,55666,64094,68095,51342,95861,8588,95709,31559,57552,7942,72457,82274,7774,23137,59438,80598,58142,12075,42411,63673,89371,22166,3432,95756,95540,92774,2607,19096,83185,90934,6951,62504,51912,96203,68611,36149,10639,30818,1629,96481,72077,22866,51549,97488,30081,80534,33678,74713,51876,82800,98933,75846,68192,39996,67307,28512,65662,49862,4437,44356,5480,80665,65126,32707,23244,12206,95455,56334,44082,39870,26547,74665,53963,58505,23920,69588,42506,40324,99039,87356,83653,96484,82738,1575,25994,73810,34051,14196,97583,58936,44389,23122,181,92755,34386,51184,60903,73105,59360,26269,53966,80293,30078,66436,80326,88537,1125,27683,22283,46176,89586,9277,7491,29491,35107,28756,7390,99677,78587,72804,44563,64896,72208,30165,47550,41035,2375,37042,55452,95780,83857,30585,53951,13322,96399,56122,36690,47757,43569,70556,96692,11920,16287,86023,63908,18588,17300,13156,23708,79779,53816,93495,34576,92788,82664,82897,248,73264,35526,12968,25089,90036,48128,32661,74362,56636,22100,7402,98049,1870,79211,44369,72904,56100,18767,79965,68672,64377,97019,60110,45459,93572,77362,13297,77751,22074,25320,90191,30054,70651,95915,34161,52274,49626,21350,10312,16199,35840,53508,78660,31555,98189,74261,97659,33569,41845,1239,64737,20936,80515,99844,49072,25905,85086,9485,88144,10021,59046,46031,95634,47903,33152,16949,76269,30954,55279,56021,38712,49490,82870,1777,22308,15269,98882,10233,29137,98171,34011,81657,39026,47689,218,62638,3339,51145,14772,22259,20251,63721,54048,33933,34641,31378,38123,84503,73799,15337,23499,36563,85505,10469,24836,9827,46981,93574,44996,85596,92390,45549,68107,92863,45318,7010,42106,25953,3869,11309,34209,17000,77294,64805,28426,21999,67967,10383,32062,86386,92192,73084,12447,98703,49696,44485,81092,30127,94149,23921,20265,8365,32012,35915,2777,16259,28245,31520,65870,72150,97864,77897,22686,35222,27165,90788,26656,90094,55102,4887,39850,5731,31484,14315,10055,58743,33711,34243,43001,82275,40202,91727,37521,11530,28029,49834,2415,13966,2590,44117,18973,48954,10033,16573,7649,99727,20831,29740,27471,99072,49744,56222,68683,24124,43762,15459,91311,18673,46121,10858,48218,57413,47338,35178,67827,44124,80632,4055,48481,89565,97717,9552,90314,75137,7428,30513,53309,65761,56362,67386,32689,43147,99567,31403,9504,5631,60733,10647,68805,45873,23724,86258,3966,72791,35637,90933,97544,43036,75708,94142,37150,46157,20259,29430,73664,65869,10828,96062,48202,23182,37056,4064,67872,18114,58975,43867,97724,6997,8631,69547,84287,4880,33115,42989,23318,96773,19565,92706,41616,37436,26503,124,71099,88633,504,31285,34672,25528,94773,2996,52745,52905,62707,69941,98233,98142,9490,28044,67672,87746,81496,50185,39194,80816,95637,29006,97527,21803,26311,72096,44925,85839,72760,76206,13500,79264,2690,49088,86916,19864,67740,41898,69332,6253,78442,6506,26635,35001,35155,41358,70970,94469,38138,90570,60412,66640,45995,64734,96742,22232,79070,89926,22083,97461,46889,93037,79957,79389,6557,23960,18392,71934,60828,60746,39242,72981,78262,17840,57131,38607,79755,62260,61710,84345,3995,9002,7911,4434,52444,22575,83861,52595,857,66197,43282,48065,72941,13975,99640,95825,82087,43149,25401,15374,3903,11959,72122,2322,76720,72070,19655,10373,11485,87854,20332,58910,59031,13887,88394,81497,72301,38620,1288,62176,9718,43333,5331,5817,455,88169,35676,26165,44476,17071,90095,90141,5454,57244,18196,18162,58117,89152,10278,50887,36145,83762,2057,82356,8249,48843,10966,50958,89404,19749,30105,43157,17696,74179,30610,68351,30382,44919,10898,61521,71139,92995,29616,77038,78076,77211,26446,81475,10484,37270,20120,56965,8488,37204,56994,11145,64251,53664,78972,14153,28197,75791,91064,42498,55397,15352,76642,28949,3926,86202,48040,93104,46473,75776,78715,18854,97794,54696,92130,11105,59804,81031,30638,76322,38379,61226,95200,22728,78507,46541,21958,40411,19054,94404,10338,74423,5093,60352,90932,73535,24538,77927,53791,35309,89275,66979,76743,36336,95206,24462,97460,77385,2457,68539,41012,10712,82406,89407,21201,3335,70012,66267,99074,59592,18508,48340,62789,24978,21351,47769,51579,57567,9467,63838,62870,97929,5896,95622,74920,75693,81798,81796,64867,46871,72823,76207,69945,57481,13452,6878,23483,99539,31479,27716,76932,86438,33767,72940,26936,13785,34951,9941,90045,1997,10702,13932,40014,85268,60735,3718,36625,10769,73702,23512,86037,5883,24407,29136,94344,36262,33437,49001,10776,44231,10679,50143,57960,39178,18772,56746,11437,73348,97122,87783,69914,73296,23308,67487,73155,63695,43201,71711,99052,94735,5436,50400,60064,76245,95114,21820,6036,76715,64574,14564,39945,54809,10936,35783,86216,68803,43680,9635,88,49036,17652,47900,35432,83380,30173,66648,1719,47520,15549,31760,72693,32035,87148,81789,80728,76569,94228,53378,4804,39485,53180,34826,3016,78806,28274,36025,2320,60366,3052,10536,52921,67072,64416,52338,76921,22141,73900,46021,869,51531,93463,20495,72875,84030,95399,97396,55430,81462,32810,85140,21623,69328,94640,92991,59669,95898,59447,16181,86660,15514,40007,65577,45552,50787,66644,20899,56616,10476,8218,99585,81820,90586,49905,60001,22630,78989,15206,47882,9838,39907,56975,7150,47063,60559,74233,68204,32277,81084,54586,62965,26421,54566,17854,80767,38589,79776,37285,65757,75316,59479,30680,97227,18823,73815,10629,11057,96137,49220,24378,6725,12491,29753,13382,32685,49112,31850,9577,81061,38309,57502,82059,2628,37937,62290,18429,67180,48346,95831,12260,43888,94723,53904,44416,82538,69525,69708,614,40442,33916,11232,37016,26631,70841,4815,69316,12958,5086,80277,94928,22386,81450,22002,85138,56323,29166,67099,52060,49028,48293,34758,72474,99548,96877,67027,6545,1431,66046,50995,70940,62712,86583,14394,16737,58187,94690,69230,36833,11840,67509,17879,2316,9696,86680,69792,76052,56810,97791,86464,9384,57033,91928,79363,22967,5346,51202,81256,74358,95367,14645,47116,25608,68278,39508,85971,18066,35198,83851,43537,44342,89930,722,78459,37627,87361,57789,80165,45886,35111,35081,57920,18544,23169,82387,64673,28717,35233,26210,96590,84102,10921,28010,55630,94617,16483,10513,37800,3841,8982,67958,22586,11102,80007,53548,14244,54264,28892,85149,80210,18057,51167,61189,92587,46229,36981,92081,25912,32450,32858,6077,56277,34861,41206,44970,31548,11208,36913,50728,12459,48028,52822,74553,97313,32478,36820,4931,41912,87352,83346,18906,30011,70529,27721,3294,83399,37438,79732,49423,35978,1146,38157,71667,62112,62348,78992,77103,16198,4664,98126,98236,16090,20714,13355,85367,33956,41559,39277,90383,54933,53136,25202,52667,86663,80017,67213,26567,69182,87477,47563,47818,99881,54565,63510,38037,39113,57512,28411,79357,17929,31134,69889,56294,39078,98064,87889,6939,83717,57230,86377,74304,40365,61004,74541,41451,32875,68042,93012,53266,85778,21069,86304,65087,35006,1837,31209,43662,41277,73543,40707,13024,38822,75252,48921,38980,3550,52838,38654,24202,49045,37342,88197,64452,1265,75179,2730,7153,28937,98985,36427,41063,14952,65590,80488,98167,29678,67145,21503,51844,96800,79787,46803,75709,8962,98785,42707,73564,32802,17813,55512,87927,69209,27076,78772,39405,86199,77697,14385,8474,30053,23886,24502,81601,7380,21177,79515,57495,20183,96803,1788,44991,83474,58939,26262,55455,68777,88752,21714,82235,69743,92114,67750,69489,42177,59278,59457,16376,92940,78073,25739,47801,18865,65784,82441,88456,77857,69689,62456,35631,12773,9772,67424,21702,16797,36916,94008,65403,73107,1781,84199,10842,81701,26678,46654,94526,36742,64609,3418,44560,6424,2933,59969,8375,31637,62825,51675,86055,5900,24738,68356,15700,5856,35786,37698,61268,84436,39625,87139,72290,67936,57837,78127,17066,65829,65538,1477,17632,67094,93749,90354,99285,33086,6072,59468,11146,5913,31023,12699,44716,95218,73253,6405,91528,79993,82992,17614,69879,65118,93438,40377,67933,25467,99797,70212,79814,73858,2185,87052,76607,46877,92261,72563,38090,3837,91803,5612,19025,94966,49307,87869,88563,76120,60142,7642,72767,64375,91824,96700,93900,25934,11031,60141,53092,87555,84262,98551,94503,39380,56151,22537,64897,21396,94285,62165,6368,27853,79217,85144,23859,13092,65783,1592,9518,73834,55799,12823,27738,50432,55045,5713,5310,5666,55782,40120,42517,78110,41784,73610,81308,69735,43362,59885,36455,84767,40401,40184,57308,59658,87672,39046,56516,92825,97773,11396,47803,18754,81492,78179,30863,46508,68578,36076,16709,47222,94047,63700,45812,13455,26846,24382,39824,62149,22911,72542,32969,40435,85157,81843,18077,30111,58964,30481,62639,44139,24247,33185,60456,5189,53544,67260,17919,30180,81266,98708,54030,88609,7542,2256,95274,23694,42013,1164,93712,90628,44176,63760,55815,40907,341,30149,31813,92434,21737,47922,25327,62993,45545,64621,31359,62719,22316,74853,46042,66084,32055,413,72274,88269,97127,40431,23968,56597,80063,4741,34418,88615,68839,39072,83889,29952,73978,50046,31825,14274,86749,53848,83489,82977,92889,42265,98270,17713,80376,43400,91037,3577,36263,28648,18809,2203,95170,52425,90765,94023,15121,75823,49953,61773,15510,32112,57232,91645,26134,86832,2877,93126,80778,22356,53750,2249,36237,61445,41418,59243,13447,89763,3566,78182,48874,60377,27038,51008,98366,6697,40591,73796,66471,25094,33618,92793,36527,25423,97891,53869,34440,53709,27315,43550,75722,75259,69757,33195,84031,34136,45688,8709,12045,24411,57422,97118,33344,84896,91492,96017,85202,78409,78824,68631,83209,84688,74744,8110,2251,87873,89506,52302,76367,56387,79604,45146,79855,73674,66072,46260,54441,76401,37326,83245,64511,34934,15356,51939,63914,49583,24934,9259,5862,26008,13497,24257,27132,83163,97736,22913,25235,75086,13414,86991,14871,63583,17309,12508,23509,77699,95084,33135,59735,28853,45740,3938,17778,32249,96422,69414,63607,65741,6334,9349,13642,38739,3858,18952,63888,84674,13122,72318,19331,43869,73113,61085,57559,63945,14091,8796,34706,42999,97060,32989,68664,90714,18692,73802,23250,35717,97455,13896,86662,62559,87950,6125,58722,38071,54271,37430,25738,98755,52000,22397,8350,82822,99619,36045,59402,46353,79526,53347,86889,94262,66091,87017,5182,55635,19716,20053,47345,2608,82918,86007,38204,98938,31723,98400,73368,27957,60611,46587,20366,42945,20409,1921,91495,74516,77448,74696,21426,9480,83487,21299,94941,20502,64400,99730,24216,48,8530,92244,63118,73576,82453,92946,40779,60459,85292,45777,33276,31300,19636,98563,84901,74041,32333,21328,98668,50278,84491,4487,94104,79551,85981,17336,20045,51540,42087,5256,94629,64926,11332,46342,12510,31428,88248,43099,3038,86934,28386,96856,79269,66664,2507,77840,35589,59839,72571,70030,52928,4707,54130,48775,79060,71660,62711,37004,54746,47302,41693,7965,10725,59045,75895,70643,38236,47606,36733,92110,64397,11410,34543,58268,47844,14505,63537,79777,8070,82471,31904,32693,87781,11912,39607,48367,855,51907,65011,91469,62713,97843,42576,89843,55844,14017,82695,33129,99250,89258,31864,5642,75077,14980,47925,57029,33389,58166,35450,19883,46471,68864,30694,8812,92128,37509,30804,29844,54604,29297,81065,99339,2248,7622,15705,76328,21386,99355,21954,63703,68675,4829,95481,6582,20740,4989,39147,46597,53818,57351,73500,4404,56788,57763,81978,18594,23416,58195,21267,18263,62039,76234,75752,35231,39909,43122,76925,70871,61524,87812,71333,80079,75248,5207,45582,96678,62275,281,20441,66838,2849,86525,98740,1488,8941,21600,31101,25568,80745,41972,79408,34274,82573,24127,15364,40949,62488,32076,41303,92752,11268,10346,14720,67109,90242,47048,92209,40130,24453,2006,14830,57630,68202,91781,48716,85678,8839,63917,30240,6575,35015,84038,5479,34371,41167,16606,80439,47179,44596,84852,1262,63968,4226,67218,75897,86006,57892,64661,43796,84282,53130,2868,19708,69235,97229,74093,22246,10219,7105,55751,7460,90450,54671,20425,99989,40453,31833,59535,31415,28414,65738,74215,82187,10287,60134,98987,67232,76014,3121,88474,88995,72459,4388,59890,59456,46524,96240,95275,66352,14056,21403,79689,37478,49595,37957,19230,63614,2787,6597,59181,34017,56255,8031,88140,95583,72663,46631,45371,70214,71371,80380,38091,57287,34236,78255,99023,25884,83257,42745,57299,89063,73616,14179,64509,6224,45741,43604,16338,13023,79178,34323,83366,98801,72138,16947,55508,6340,99017,55645,80815,44681,32496,27248,37858,42862,98607,86629,6011,69775,90655,62269,37503,80427,68935,5222,15915,99157,48685,61399,88100,52725,18757,72771,80623,75839,59768,27479,81057,71798,88687,81905,29726,36015,9380,66782,5619,22706,13713,35315,52796,77467,14829,69546,36792,80215,32431,61987,10421,70872,99845,88204,96181,63516,33777,82074,78940,3030,66614,4700,50048,91230,13417,63592,9416,23208,78150,54627,32703,10180,74172,37786,71954,99885,36471,17753,89077,92466,13989,90167,8454,98019,23475,20678,1003,37892,77744,52717,91991,55355,39557,56253,16712,63377,35716,49483,23036,91857,50000,80971,19696,58610,16846,77816,95423,13751,16241,549,19387,57551,82725,79658,83194,13442,66516,53895,63088,32011,74986,6859,52701,99523,27110,95416,22969,92304,79611,77755,30851,22631,41246,16020,71136,49937,23731,80171,36239,36100,76725,97961,12704,12681,27083,18279,15808,19358,80945,13318,8144,53380,41425,66067,71906,74299,5929,69281,85493,54314,34568,47478,42194,18340,21777,18336,67289,53859,83914,11648,73460,74533,85592,77093,33128,90866,75923,46014,49840,34755,47172,33020,72831,68222,7117,77041,13949,50907,28829,12882,66523,90005,21708,60166,42057,74625,59765,97295,94927,18402,25399,96124,10456,13996,60864,78610,1515,94738,74306,25031,88370,91503,8673,14210,65591,9172,80537,83578,37193,88435,55227,66328,32279,81463,67529,43630,84590,71843,46627,39192,61991,54959,83094,65819,13341,33660,79278,78927,49677,75625,82697,67966,76942,23001,71376,24988,69673,13608,39548,21080,83604,49066,65140,49499,82976,76863,84238,91674,8581,71151,79502,52847,97921,13812,34521,73436,1658,65682,31579,2018,29521,62100,36365,4955,90832,30082,6698,46355,76303,29660,79556,54025,91076,74703,92809,75240,87046,67910,65370,1016,5112,77028,67106,59810,52950,82216,74408,24305,71276,83983,66161,58688,37669,57676,40382,33348,4766,95570,83161,51435,8347,11006,73693,96717,59270,50091,34097,13315,31784,31660,25388,65109,30693,93124,96649,33809,62518,2909,49630,63551,10295,78239,670,97971,28897,31124,85420,35655,53018,38819,32422,95921,95737,42801,10968,53910,37794,84360,625,71178,98188,83766,83999,95911,75917,72143,20078,43641,10661,21577,14528,24095,69324,46771,33593,93852,9094,4478,14078,85401,43632,46319,41719,11380,63602,12202,20335,90639,83394,74012,28599,46919,72033,46867,67235,56491,1713,23839,87586,56778,96968,45089,65601,85754,53754,4522,78724,82901,34545,98966,72888,54205,81793,71312,50740,69651,34191,9455,23798,54397,39671,57994,74876,55386,67504,6866,12518,90717,84497,68962,49506,51814,48597,37302,16922,57714,38513,83200,21251,10381,85882,23443,64210,80542,64448,64366,11985,16743,38648,41745,57833,47064,91989,26434,54571,78085,73129,72948,90469,75986,59114,64671,57309,78586,20683,58022,30964,15914,86197,8132,96574,51718,2893,83022,12783,15128,95627,40858,8127,73824,2691,71337,28402,52536,32493,54996,82569,23986,18412,48269,35852,53982,74026,68315,81171,47080,45789,78336,53577,11500,52545,37623,46801,20083,17293,15180,7370,71029,24419,6668,74699,88761,79909,94254,71754,12352,2413,14345,6640,5438,29903,78457,82502,41669,73177,47668,7784,87799,71065,36773,22982,55343,88585,9757,17568,55328,72065,31887,88611,2281,18364,97114,21692,44884,11153,79504,20010,92100,81430,81570,2995,98108,28931,78771,31375,26966,4749,29372,45841,72247,17442,53448,14618,1728,16512,44774,47163,82799,47366,7239,92161,35681,99369,28970,89935,64983,49272,81514,79553,64043,68630,2181,6375,67283,49898,16640,22257,46269,6433,21994,24498,14124,96854,29149,61408,72120,73401,71726,6603,54970,53603,48947,29339,67077,52845,8196,6337,14103,10362,79188,21137,90913,66674,14633,36277,63244,6708,68836,72712,55172,4170,78312,83971,62843,18048,45929,7128,87737,11761,51078,6886,11059,18059,32553,4222,46977,3965,42955,37266,23472,87488,3584,13252,52823,25679,6217,16738,81146,86380,31336,92687,40465,21682,39779,16014,38586,20920,74538,2438,38378,11316,90969,63305,37221,19220,29601,56216,1820,46584,79603,83388,89038,27788,78977,29989,77481,97038,517,96065,71991,76771,72821,89524,94333,80385,28592,73011,36078,30944,5752,67921,72820,36628,12060,17480,29526,25346,30500,15586,46699,23930,63140,61921,96351,43539,27631,87418,88767,35550,24155,28679,8261,59897,82880,15003,28118,2782,9687,32265,23305,66379,64543,38097,6911,57947,92965,82293,7752,7300,93859,57388,40689,63295,61990,96601,74329,8720,4199,31516,12741,71279,7077,17086,77780,33960,81203,3827,77602,76400,92377,64409,16933,3768,85758,80412,65448,43520,88809,7956,64944,3528,20154,71394,1049,56395,7788,34245,53912,1456,82125,99915,18755,9324,36540,19993,27959,70058,32682,17419,3371,52546,13320,55831,53481,4268,56590,49135,89467,45326,21200,68341,74064,22878,17933,56980,64569,34864,15241,29330,947,74171,2298,56983,37966,71550,49032,23781,97635,81911,68185,50164,47085,78809,33445,2822,55298,96530,79699,96501,30462,4916,32668,78755,48514,68385,87513,31819,19974,60378,56050,61145,42096,27309,92414,82906,37082,58101,74191,7347,45241,44733,47684,50390,8586,98012,13214,11722,14480,15862,34651,91680,53258,52972,38254,92399,85319,7981,23871,74518,86195,47907,98111,95671,10481,11992,85060,26281,4874,74581,33296,81984,78320,96952,41498,84548,59439,7949,31931,51274,35121,15089,68467,82798,68993,26833,68068,81188,11646,28140,29030,34363,28696,35325,60827,67683,94350,18724,8768,53881,88252,72202,1334,39762,44590,26527,73660,80740,80164,55794,67062,14044,85110,55112,36963,68289,7163,32340,78382,59990,28761,20436,75963,16186,20569,77975,57047,28375,8599,75685,20582,52881,59078,4816,5510,31191,95589,88560,40092,64308,61742,53430,25034,4900,4283,95004,45947,28119,4323,29331,86904,76370,51476,13482,15745,99253,57522,57568,97334,28776,64521,19600,57635,84510,64167,79187,75163,59846,18787,76566,73386,89406,21345,32309,53711,80206,78949,54648,61098,32807,12807,19324,47619,38657,52322,75865,7524,40290,89629,39300,29997,22466,14968,80141,51024,32474,20250,30366,1225,72624,16607,38256,14984,30735,324,35925,60639,16681,42795,99415,45794,11864,7124,26951,33815,91705,89716,32731,7166,35088,85933,92077,24740,23242,74542,94685,18935,55680,79843,91965,92305,25232,76107,87597,1278,54557,94041,18106,35590,68614,5024,33285,1522,86565,72012,41193,65107,9638,93433,20891,59208,1123,55470,91610,71599,43195,53740,29956,81064,60344,86361,16858,3786,90736,81181,85629,9408,69261,22462,31511,14589,98408,90535,52992,26961,98617,85276,23070,5683,94369,62886,26725,53566,32074,78862,12224,18293,42210,72879,89984,82255,75507,35617,5542,12927,85735,79465,71980,1660,86687,49521,58411,96568,66699,61653,47357,61028,48308,66109,47369,78397,70901,75710,70505,57159,82407,92782,49260,56440,28812,92751,50893,59992,96437,47776,10399,27451,9623,37060,61290,89436,55236,88663,52239,88119,18265,55557,24414,25341,79707,85411,27255,94499,83837,47493,69810,72549,4292,81415,11335,64356,37377,12226,50875,67132,83438,28569,21725,86149,41415,97052,45332,87979,55539,8805,77595,65704,17957,49805,6705,97627,22704,24620,81183,94440,82858,73982,87663,82820,93738,63170,40525,40299,13757,83705,80967,35869,3239,73654,197,14951,33408,87660,74491,97171,86187,51786,79812,89256,3743,60095,85836,35312,38939,32701,9524,69021,56806,56089,43076,92970,11732,8037,32319,25287,15651,92961,53663,43699,23846,66971,23494,11902,53429,43063,15156,37252,66116,40964,46378,54562,10028,12864,11399,70094,26763,82758,67195,73636,1585,17122,4187,30611,55363,34585,90849,27507,42965,55780,72607,79788,98197,13264,4092,15308,47129,95327,24287,56833,50996,93341,52387,96275,77424,72849,99634,87841,81486,13063,23890,25279,51707,62805,68028,26612,75632,74499,89429,88460,12460,20350,90312,98062,39961,50394,99762,50481,61256,31654,93592,73029,11945,69363,18133,98997,62541,13746,5872,68627,46812,73988,60781,34627,3939,77435,3920,42284,33766,19020,75830,95994,45514,75147,72088,43318,29525,79087,50355,39075,66706,31619,66243,86369,71981,92710,49172,72883,38358,2504,69144,44077,25165,76811,83086,71351,11340,64292,54347,79039,66246,37502,62055,28443,6146,48548,92142,64026,13190,42047,15864,16505,21221,39170,81098,66220,27071,62619,61198,27311,51304,47564,40393,67808,90919,12248,83796,23060,6627,95159,68350,66431,122,90458,53048,64504,2836,59933,59758,86069,30822,41429,2533,48256,6485,8936,70453,24709,51539,89137,69312,56943,21537,36885,70765,32005,43974,42461,34271,29260,28774,25607,83248,47807,73615,12176,20474,67182,57854,26430,51381,25039,3473,35031,10205,53265,46512,81524,86355,48046,81837,3136,6428,41019,73404,19002,2759,74091,92533,69292,24586,47240,87296,39142,41022,60623,2818,59279,7234,70541,72891,74977,53500,15806,68221,78171,35833,35525,13938,37862,44066,95513,47469,30626,69217,50173,75615,37352,33899,60617,42104,34336,22281,50099,85450,8296,62549,78458,97795,53915,63122,57102,89826,57192,69364,47362,28467,14249,37694,36283,87528,44553,26247,70026,27371,21131,43251,38823,52038,6824,51735,40298,20528,10535,35600,99366,8125,17398,46477,954,74658,54353,88303,61338,40942,56404,86431,13646,48177,18465,9021,45708,72899,28716,39414,89862,63524,25919,81275,22407,939,56924,47432,655,29771,27710,81159,77418,81383,29734,63767,99823,18917,3985,84193,23504,89591,1933,19092,82117,90223,39780,95555,88748,457,3169,48180,35534,94017,8828,61887,65330,60771,24872,12278,23737,11249,7962,8884,67170,22001,66442,7168,33077,29442,52617,63877,93682,11226,89161,21526,25405,48927,67119,54841,92873,86797,26780,4942,64613,85009,350,94297,32586,82724,93894,72480,1756,97907,47446,95496,58514,70870,53763,34984,4530,58572,32532,28004,64111,35959,59506,23551,953,74463,48478,3317,86603,60267,76838,68035,79493,4764,26880,20931,96911,73183,72308,75673,92005,8994,26767,99156,69410,97135,96976,99257,59776,28767,64332,24632,3505,15420,84077,29970,42851,97871,20231,11719,45284,29444,41714,11419,38619,81961,88300,29280,46133,97876,14058,1813,20992,48475,27846,43913,88528,61131,46288,96628,9876,80992,6032,44586,85001,65510,18229,47746,27216,66237,88543,36355,82776,39,13560,70464,55216,20892,62208,79514,32100,98552,51407,24359,6728,21094,74503,37298,46098,83740,44415,33966,11877,89681,19035,42122,5156,66710,39210,20396,29402,54775,82455,24584,21617,65379,41536,71624,37268,36421,25347,30568,65563,32736,92326,45426,74033,93924,40833,48717,7584,85651,70854,25696,79660,70895,61403,93536,98879,35546,41130,37625,47233,56515,46216,59719,7688,42491,85139,25789,92926,56649,97471,28356,67114,82192,62918,46357,21253,85542,45157,52633,10093,15815,36614,56524,42987,78347,28815,46578,55930,53974,20913,70400,93637,51464,68320,12254,52111,55062,82368,78319,65499,48949,10704,89232,69401,94592,13961,6026,31357,38600,72558,19015,84743,33248,32679,73444,50940,64315,52367,31055,7863,61865,41860,46830,94601,93795,85491,99563,83507,57048,48961,96048,72900,39305,49049,29118,19687,40286,64572,99013,80096,59954,27021,15818,86915,81449,42011,86545,45872,10884,90500,71375,18618,49788,52168,17119,56297,76464,9920,26488,21208,41851,36018,42929,94789,76308,71224,10256,43576,58581,46498,60888,50034,88085,62945,41299,85510,25208,62950,24652,40439,73970,27328,79994,46458,36371,72355,16911,15955,19179,29291,56846,43328,72349,40285,28977,63806,56653,10082,68378,28869,43689,80805,12476,50630,66233,20867,34077,94907,42382,86290,91383,64847,12005,50134,48116,42333,96529,42246,81026,7039,54302,94910,21880,96160,3949,10612,48507,13736,18989,73109,84707,61559,50927,1538,31587,70023,45399,55830,90273,94661,67711,53551,9797,40548,27219,50456,33416,57116,35538,17873,39735,76748,59807,80298,8522,59037,77758,78742,22472,22724,50681,83406,43645,10577,63653,11757,5393,63898,34554,43650,60803,79119,75159,39701,71580,11231,41434,87779,20134,72335,49769,82587,99546,916,91832,9239,96594,36770,40067,639,56442,70045,18136,28035,53405,25255,87684,74096,63341,57174,76389,28531,33422,99219,83143,67311,18684,77043,45343,49425,68520,53504,26520,920,56390,44223,46906,51352,64331,50706,17814,12557,49739,55090,21165,29509,78340,96703,8056,29996,33748,7271,41801,5827,66845,45649,30056,36452,44023,6538,27626,3742,19599,52941,76468,51325,38828,70783,20102,90619,31592,8187,85218,39677,88258,30503,33488,33329,66212,73140,93383,66592,40497,1603,51545,53019,77533,75816,59913,75876,31849,25692,99324,15762,49419,5114,66634,89261,9972,15437,98378,98704,84606,64622,47901,42375,83433,14082,36793,49774,78858,17757,80817,6772,80312,74283,17465,78508,42878,33636,15778,22647,97323,93551,76555,89260,26673,78641,28586,61674,6774,39552,66929,32080,15595,54751,72675,933,27139,63779,74916,28820,6464,8335,32462,17985,18936,60852,7489,52157,79458,76483,3350,71244,40300,96589,18342,84110,93444,24394,25138,39885,51132,48323,91422,74871,18712,88135,86702,46350,17990,65744,48973,88990,38240,14296,42656,29080,2606,94309,22085,13782,56504,50986,64030,67292,61461,86518,13923,9315,34609,44874,29935,63990,33708,31640,66551,82579,36965,73712,31111,57772,83944,32449,44317,85868,2587,50373,45590,11790,33781,22412,76703,97778,4896,42273,47004,85101,45380,18927,4969,92560,17679,84426,97981,36607,89128,10626,26657,95884,52518,91260,25239,44617,54622,78449,15000,12804,76363,45860,64783,10805,59125,55973,19146,67134,74623,85458,82645,9395,55019,31015,23376,30876,12808,21973,25539,9872,13353,61829,22467,47969,70469,17357,4643,10306,66558,57667,837,93615,72619,72466,49868,77940,90196,71122,900,27034,53126,52317,42796,62303,64550,42724,12849,29672,40119,11082,95433,98490,31689,32676,24180,72111,36624,58448,21038,6019,73623,45671,32832,6805,56296,18120,70390,13415,69352,31114,79028,81616,76183,48957,10910,69369,10817,74985,46564,81328,1976,22806,13374,41069,91474,4198,10993,2196,47694,50782,509,440,78216,22663,75672,16508,49639,91684,91202,35558,1363,69488,25586,46318,58782,87764,7655,49084,52122,27010,4256,15605,66288,1161,29766,39184,79271,98791,70889,60750,36329,99237,25236,83787,94641,55703,81355,54524,71499,35184,16340,49779,45132,95434,61335,56696,49298,71154,3551,93123,16212,12539,68473,90303,92132,15436,73002,98293,97529,11751,2090,95119,49161,25179,87070,10735,477,56116,37490,87564,11266,97983,12767,19209,76958,41066,58139,97321,1861,71842,50468,25525,32208,74446,30140,46748,78246,40730,64191,97422,18179,86261,87445,90516,56397,73939,31799,73828,30057,93920,45327,57425,46339,73409,84965,29347,37408,83484,57211,63032,15990,35102,14491,7670,93971,50068,63075,11879,84956,95741,47958,57162,69999,39744,65581,64777,60273,98670,17074,67830,81458,3912,75562,56382,60754,41584,52209,54682,77068,95469,98268,61637,33609,19493,12231,3085,19055,81390,50302,95510,53184,56242,77434,44536,60990,22810,90940,56706,44372,92904,91480,87309,72580,43253,4319,27594,73006,94952,50781,10030,84913,73156,53240,13919,92281,63160,8160,62283,59367,25426,54043,53599,15785,67097,48144,37443,43284,90575,92044,90131,67900,2612,6133,97349,83935,59147,61079,16859,10505,18942,4600,78283,55494,35625,17411,62407,63666,48142,5586,7116,75817,25286,99671,18130,91713,71465,90562,81980,23872,2662,12288,80631,6833,91775,6613,1612,91852,87659,7725,69258,63157,54862,89686,52272,95945,68139,56123,70580,24040,8047,43226,92878,40840,42353,34745,83522,82922,67530,83798,60386,80114,68365,18674,72887,37773,418,80296,70547,25591,87814,1676,98744,67600,69535,5708,25960,55744,74600,17583,30620,2420,20533,9366,2668,87996,12451,19487,13017,39866,17431,30257,81148,33803,21517,20777,40750,72057,3672,48252,66063,1518,92877,23538,32860,4818,97658,61894,69268,82309,90845,93368,97204,61791,82138,91174,88427,18170,50237,46081,49485,47625,80258,78901,98544,96629,64330,91670,976,45804,98820,19416,21572,54494,82036,53245,65570,72514,89167,10031,30375,17244,21241,98795,81252,57881,2408,43660,60259,83910,19440,44371,77958,59172,33970,1803,25117,54581,39067,74865,23616,37810,55701,41727,94280,57957,64660,52235,95726,97553,69813,10292,2076,3034,25698,52703,24936,27488,75290,92229,60587,66609,35276,31199,45357,96225,31206,85340,46275,40514,81417,92830,66673,43361,81259,69822,16334,65389,26711,46448,51087,92650,24280,15110,70031,68918,38198,86996,44737,1285,63696,14123,38563,71645,36012,58797,1013,16811,60111,79403,74954,90,94916,13629,4757,34863,92057,19508,1437,67605,768,22309,28570,86001,64963,18303,88267,82361,45839,73601,22178,55308,7807,43060,39056,33906,39554,24814,5774,31503,58089,15755,83941,4583,83414,97202,83485,63730,78519,29244,63359,67172,22236,25906,98263,36932,52401,61087,79806,46069,56087,47462,7249,1104,93807,35879,9843,13636,34088,11197,44529,66239,97399,9012,62461,99622,96904,29536,14176,19480,31680,95347,92155,61529,78024,61242,90200,61962,86168,18080,21899,76509,97666,21522,61047,54778,1510,34560,5123,78576,94224,69459,16391,31596,60056,4993,93237,88283,32159,29941,89310,30151,19719,31714,30402,74056,14131,60455,14348,7930,29195,92097,25580,46896,97364,67531,56757,28254,78509,72726,21849,74601,64104,99684,93587,27574,92201,90489,14270,50430,37865,5500,72261,25610,91892,58138,45803,65304,52323,12937,54686,7527,7613,24002,16146,2745,46741,19701,88912,74750,60877,10131,37198,52273,466,98873,57331,76013,59693,53666,35652,77358,66081,39984,76396,7167,95320,34909,76721,30972,38833,35356,27303,72221,87708,76089,3488,28768,60916,83755,50292,62994,37929,52888,57215,93253,51460,90842,25968,37946,63372,88555,72455,24842,64623,97193,51168,17212,48736,89296,79450,96316,82647,52069,77065,34415,70196,42698,79429,10857,72461,99547,6127,74371,98471,33169,31966,46475,1602,69208,74318,66071,95213,15375,39461,1015,94129,62889,68897,16407,17730,17107,35834,79541,63037,81133,75010,91243,30934,88079,29386,85850,35685,27789,99223,22296,38999,16035,37593,86102,97609,49896,95521,38730,10071,77778,7744,81588,95062,47527,5349,7610,2337,2109,33733,96443,59317,20838,65777,91431,75509,94259,80026,64001,76111,68401,54549,93817,73484,52738,25118,45527,20933,64093,12843,3446,3980,64972,61386,91001,97424,90353,36499,26404,51676,59784,86414,37254,56990,4480,67085,44118,18953,16264,9316,3905,27973,59708,3485,5981,63805,21333,39538,55472,31696,63297,8856,3801,11190,76694,44386,42857,48331,1671,94474,15050,63707,60717,42651,58533,32726,46548,255,84921,43274,25463,49445,39118,19394,1058,62869,79873,23323,95857,98025,2016,54384,7559,78513,5767,23,47816,46179,46572,70812,77750,43730,48959,56930,77966,6288,58983,72716,20106,64322,70510,88750,91506,15076,29128,17179,55309,6161,50679,41968,61241,91895,69831,61003,65308,95129,5106,64778,71494,49237,47505,90077,75809,58707,45681,19824,57645,81617,35145,81865,6482,1674,13829,44814,66816,42511,96895,58235,34409,14634,56278,38537,90649,7068,1887,26131,76936,32620,20704,85643,44053,18365,97472,76622,1560,68727,20799,20668,98063,99092,63038,82576,39446,24717,66764,55593,39325,94195,70702,75643,52748,77528,46500,63924,10903,20993,37107,4424,71001,99166,32205,5734,17558,45829,84519,71854,14970,53877,69667,53799,39611,8236,65993,54103,74126,43945,25030,27381,80541,63448,46854,16164,50155,67576,88054,25281,64449,53439,43804,91609,98261,82793,43066,13127,89176,49846,74807,80207,17226,44941,73201,78339,20901,84608,56437,84098,53103,53366,19477,77599,93288,17008,77560,46418,1424,30297,9290,22573,46325,8703,5909,5600,14290,39321,77333,55316,36221,24962,96112,81931,12703,82288,38315,54720,79189,49389,65173,57923,2890,40836,15081,81724,24322,44815,24623,38409,65960,46119,54409,15574,73331,54317,44572,66857,73918,75305,80019,91875,20397,32330,82740,51409,50912,22413,7919,6626,73708,43141,56348,66435,3216,56528,48846,36697,47499,40899,96580,81513,30564,22950,57004,94556,87461,17657,12436,83382,50777,83198,32889,84315,8870,26916,56906,19238,25651,67385,22332,60152,99625,9540,48567,92165,61061,36010,33083,90609,81819,85616,34730,38568,60086,30374,16717,51338,70379,93466,28302,24638,61366,74351,75426,65272,69946,28397,76817,85197,6465,82598,60321,33589,60405,23640,76297,8352,75342,50127,40156,53235,98460,53716,82700,64794,96586,38072,42422,46062,90349,81303,20706,86057,21442,69121,95256,54034,62214,21755,26954,64406,14608,68939,1025,40389,91095,39608,50145,15598,33729,15328,74574,65386,42969,52541,17942,77143,76447,15918,46586,35905,18236,49523,54580,70521,37687,29077,28712,44218,98539,14761,92915,15813,12909,1864,25813,94034,46643,8229,73443,6888,88525,85058,53299,53813,4282,51326,1387,75029,31044,80723,76117,30624,51516,70810,67294,49118,94584,83744,70228,81634,15112,5424,10552,11170,30745,81342,90474,47236,12481,48466,41041,58723,18073,66394,68184,54133,50174,20483,16337,59477,77079,7141,52015,62123,22745,55623,78248,5329,71362,87268,71576,30359,27720,63595,17382,30329,73666,64277,50839,31017,26756,69074,40639,68965,76567,79543,63858,42810,88082,36812,5493,77729,42063,90683,38736,71707,80025,47230,13031,27057,19341,84999,54551,56195,65504,83704,17342,72498,34741,22930,18222,82747,38144,70083,20374,13878,38175,14239,29872,58452,3479,96527,7462,66043,9889,54061,14023,24849,13386,40613,82522,60351,4003,50536,37433,16147,1281,68655,46283,77721,97379,83030,67760,56743,67070,26379,37296,34307,72871,5515,90062,16030,77939,56794,44784,76323,39758,95368,35588,78145,69050,80240,88883,83875,76840,20438,79626,11496,55823,32310,25130,79205,48428,28186,57768,55524,65930,69197,15083,1137,95293,35656,75524,13765,91839,62568,14308,91622,64201,89397,71113,78371,45230,1627,74170,63862,52313,82140,30958,53590,35520,29427,91720,94817,21107,38865,44871,80884,62769,24065,58041,69196,61512,66577,55942,33217,76302,85013,92912,86801,35650,39320,10151,62082,91881,35393,48881,40090,12144,21502,14926,24869,77636,84662,39772,48782,53393,44111,38996,48112,14284,82181,80737,36326,60008,8528,58822,84052,92373,48887,79608,40503,78125,78634,10874,13688,63082,32045,15497,60574,66900,98836,66823,92622,91990,9702,71797,17006,32898,18021,80511,32982,93468,39251,65675,25483,80966,93887,15251,53408,83137,95174,52268,30175,80803,20712,37447,8008,54401,66433,97748,34417,3767,69556,16270,72664,16414,33548,44631,88833,33457,14376,48484,5383,33989,12541,4917,50550,87130,376,29014,67028,31558,37947,82421,19635,73067,71616,60764,58113,93542,23658,88402,95937,62401,23954,75610,43759,76651,37670,1890,64115,1503,91772,3984,86700,8601,84552,88916,52223,22182,72488,93286,27283,51748,27521,32283,26447,94825,94666,95550,60900,41318,15080,43473,44807,55299,17344,51829,52864,4687,5130,74829,75661,19356,97935,8723,21834,9923,86325,72475,51693,56469,64625,22808,475,42487,61127,26937,68948,56467,18165,10425,81075,94565,85188,4234,51841,56449,61254,40995,3889,21877,25439,49703,52064,17532,10080,79287,70673,1081,9251,51582,20357,76229,18094,41445,71982,72751,62562,62264,3344,35856,83358,6876,82641,61662,87404,56137,6605,88031,25681,72553,77666,63784,97206,66368,94681,80535,77995,39038,58705,41906,96667,88356,22132,47021,25836,10314,9158,92197,36231,47574,8402,69549,61151,35593,2495,68493,72263,79891,82853,21409,2562,60029,16436,5213,8792,61599,84839,34362,13140,32389,21305,98480,37569,88410,78608,89661,15235,31173,3769,55849,26283,29156,3569,13160,80440,2660,48772,77050,85364,22228,58880,8280,60450,13467,97940,44688,88455,29792,77883,48743,89012,98953,91282,60143,83927,99761,23952,45401,16781,56424,70225,51885,70183,38549,97492,65980,79758,3907,14532,18896,65045,87664,23527,46898,96460,46864,50300,76028,18600,60317,81503,30974,89142,96135,64013,8863,30160,62536,5325,72814,36373,5676,16240,95520,802,34982,63078,2656,59935,98743,42552,69239,52875,51473,70120,82444,68729,92296,88391,32768,11977,33995,84727,28706,19268,82094,43814,58025,68653,19335,11077,51753,43142,10693,44957,50752,5409,15263,22532,3634,97149,53276,18368,36470,97950,83222,97578,36973,47049,12949,42451,39831,85260,94095,33493,68696,36862,14085,45053,54850,85575,99341,1155,6715,60924,99206,22819,44960,97082,12971,35132,93984,55598,13729,72835,28316,11242,7298,79848,40228,16438,91755,28950,56642,71347,91249,90041,76023,83111,90454,90435,95314,31140,26555,76561,97486,35700,14972,9533,28948,44074,2363,79268,46908,98949,11091,7646,59619,75807,70305,83636,96554,65390,2920,83575,38551,37223,90926,58957,16590,10442,37961,95692,44466,52099,4758,54346,13930,82684,14887,97779,61013,84987,5868,19606,52355,8633,88908,3622,20703,87689,32600,55275,63167,59126,50561,99555,27829,50888,97644,49413,64870,24903,82842,30009,91939,64908,77091,70821,93333,53370,17721,91838,68724,30351,90075,23716,87022,12047,63034,31974,29527,79671,24822,13078,74177,14208,83499,14958,69561,55136,20870,22250,39825,94496,39950,87759,2385,93036,15607,4281,19757,91033,96870,37875,64108,59721,92888,1378,61525,21331,51528,44856,21781,4302,52023,68502,97502,73042,56701,9133,45292,38976,59684,12138,57353,51229,71522,37885,84023,40337,39815,43677,36565,35591,99132,94249,45749,98568,25941,88641,9720,65945,72238,89475,81851,41980,85557,82570,19672,49842,88147,17387,8679,31127,20500,98856,19736,97560,7948,982,44680,52243,2414,35614,55891,3591,46035,4952,37101,68487,23261,67006,4465,45113,76662,54714,95078,43225,12724,46892,44611,6488,65705,37820,26465,16099,98824,4798,64841,83934,5930,22809,8140,6585,58914,16649,54773,22155,2010,82238,96005,30404,80871,47896,77893,37829,65348,46600,61260,53406,16967,28994,10578,5514,78685,21132,94188,92593,95247,45739,30749,44002,9018,98389,28830,21629,27582,745,4826,44205,86735,65508,75263,92578,5337,33367,82114,68694,11074,69639,9230,67721,67586,45116,99664,5305,34393,48991,59153,85938,13892,3043,29624,83177,96419,97409,54657,82248,46020,28967,79643,87922,74821,13226,21260,98730,45293,63906,92293,13458,19962,60703,46432,61523,91527,70715,13718,57755,13334,51143,33254,63706,92884,97338,60627,44780,39060,40690,32300,86939,50137,51771,45259,66035,15004,45877,29160,38054,75207,44282,17623,17094,68012,43954,22258,82524,83142,8014,40200,20651,26047,69117,63223,21604,17125,87173,2409,59507,98430,17959,96074,1399,91808,47524,19949,96804,78568,29440,58030,68823,1906,63671,81251,43115,67139,67479,16386,62887,99117,64951,55819,5624,26285,45353,20379,14656,38943,12759,98618,38797,22488,70705,7419,51289,69672,9791,69560,34126,53944,91876,6942,1096,78418,40509,17681,92834,52712,70080,61481,43198,9043,44290,6747,47864,94976,79483,12806,15593,95099,54968,61035,17355,38179,29416,43841,78384,47789,22596,58945,19495,24011,29686,35350,37922,97894,49138,84159,45963,3543,76861,41913,8658,65990,24825,38918,19954,76272,8348,98929,76424,57778,47565,76965,17708,45103,53489,78159,60997,16862,27230,15746,80946,3836,82826,73010,3458,98467,68565,32880,58726,61754,42686,84073,3089,37242,77342,95139,70127,5941,8510,79036,87710,56562,13580,5694,41870,18108,41724,33583,71856,31120,40999,55972,3174,78153,75437,85228,18232,4702,78282,48757,73292,48925,30579,95424,22912,16526,35813,42627,53301,9789,62409,35476,48527,42977,19280,3773,48285,42678,17868,7601,50512,64731,26521,44727,11550,35046,47099,68913,18312,571,65502,52124,43847,40948,17874,64536,61299,31929,14664,93697,35234,97087,67548,5523,57065,99705,1593,89331,7208,6955,59329,25501,19975,2245,11277,35757,87174,12967,15477,85919,5756,86436,94490,49372,50343,20346,31948,10439,11490,2463,40906,22664,87960,26584,74556,73876,45382,31409,2095,83180,80379,88797,96339,25723,27774,35960,14872,81079,5097,20311,46499,5240,17859,4511,89562,27694,3027,86538,96865,71918,5137,21754,98584,51712,49605,44090,68309,3879,70100,6736,12905,76605,52449,7023,64028,12560,14404,34900,52834,53587,1406,59673,13084,11844,35935,50029,69019,44222,5272,79455,68659,37224,70052,25952,38678,55032,57588,39596,97827,78881,13716,12116,48506,72029,65943,16850,46131,42780,70452,79378,63475,8948,3102,6537,81000,43008,5468,51507,60845,84668,37313,83640,38742,6205,63818,93692,66608,210,99773,98894,88799,44058,69359,11256,87866,12320,23298,97186,3406,43782,88029,41632,66589,56763,60868,78924,19591,25667,65949,1483,65002,1614,27751,71775,48865,63410,9205,59225,86002,13726,15385,29484,26413,4720,71261,9962,5504,93359,62975,19139,19065,20923,44235,58420,71192,57831,379,67798,27223,62329,96442,92360,58631,49593,99147,66053,60224,12666,48186,22657,87027,33293,58803,14490,23480,79391,88733,929,87570,83896,8959,6221,70928,56730,41530,15869,86383,82058,55360,48690,99570,4541,31283,18863,90277,72205,23983,37999,64823,57075,9344,50542,44062,4338,19789,78018,8925,80498,63958,89727,44387,59672,79344,12513,46847,91734,29011,20858,34771,77029,61677,99464,79581,95729,92700,4347,94776,90596,19050,75629,80956,65303,4270,27009,7733,87018,55419,89634,65416,89857,74949,32516,23176,22922,1621,24334,79142,22013,10823,95027,8401,98631,86315,13730,49501,45208,45547,71334,32391,37136,17785,32990,48885,41306,19051,53768,75392,18441,42458,33105,93669,10580,70223,34590,47890,99964,77675,61291,66415,51706,6035,13536,91692,38462,84797,90971,48462,60789,96254,34757,61093,20671,75660,43379,35816,38113,72816,27382,88447,69541,21092,25472,57689,53571,84164,97015,30845,76954,89631,44519,67186,11796,39410,68259,55755,94444,81436,65708,53860,84263,49312,86737,43625,46036,98336,21335,25012,27472,43827,85496,43988,55697,64684,74144,14883,6576,7336,40366,84413,17869,21116,37594,43845,52995,62471,69595,35213,48753,53435,16167,87096,22522,63711,39437,84714,85443,20416,67258,24355,85785,52519,27168,30540,77703,54931,71914,66882,28960,13603,13616,64516,85078,86727,72612,62330,23382,10193,34635,30826,41172,60349,63577,58446,41258,88514,72133,45820,41529,16326,73428,95532,34488,11415,12050,57416,9120,45217,67982,61904,19849,4293,2661,36657,43467,38512,9161,63417,11850,94063,63541,83354,41962,46644,26315,18766,42665,40729,2700,95819,41410,45876,62396,84518,89529,60577,23378,54500,55347,16360,39439,8238,19695,2930,87882,89536,32973,11572,75266,50688,5744,94498,88481,42234,94026,6038,95705,20297,58040,44750,15096,36864,16429,36146,89360,1296,64181,68446,47121,28277,2157,23392,74864,35657,60201,59467,9132,93670,19521,37845,78318,9388,81526,74960,15969,87116,61775,86494,79209,3633,9167,68393,85017,20962,5654,65375,21794,11901,36550,70258,20840,75051,22726,27723,342,46058,71189,61450,3037,65907,25441,62924,77718,82458,24996,2276,95968,21507,37251,97515,45738,27147,11321,14814,72977,17078,77355,44012,75827,94861,57177,36783,72357,8408,51890,35391,97496,56830,8938,6909,25456,7335,52971,86640,85325,28018,60401,75686,85263,15557,89087,77337,64891,14368,70399,9032,46800,10299,35059,6190,61565,41781,26943,85027,20756,67023,60687,55760,53762,13992,36214,92018,39650,63119,74575,98027,7920,68199,62531,87293,43247,55364,44207,78535,11811,5330,35920,29908,66819,68314,67291,49306,60875,15196,583,14653,6237,46516,64020,14499,55797,11036,86884,23110,42593,32905,69675,77349,97475,50908,53047,16938,74782,68873,72520,73685,33939,75527,79064,75413,62500,45606,4206,49870,12250,55270,97557,65729,95421,74022,20309,59202,5306,55970,14057,45600,49952,52218,56668,55812,59661,96714,12656,35217,94900,2988,44808,96949,66141,81664,68040,84118,28958,17392,38482,36367,39418,44503,82615,97310,78450,36242,20602,40917,21108,98241,30927,16628,16195,39632,96431,60188,32215,4680,50954,86013,57424,55779,68914,38507,47904,16372,6067,48474,17512,10041,52287,82414,64830,76384,87029,38615,25814,79309,14194,54171,66475,54828,43593,14721,524,35866,82882,23255,28998,43898,38199,32561,40687,83665,31159,46422,65358,28063,49867,48487,50643,68824,56987,70498,22854,46596,75760,96842,53726,52657,93729,84634,50602,29435,17284,92485,67367,2550,1854,61514,92172,39980,37587,95906,86366,57025,45301,39960,77110,30285,22445,43675,93298,87412,30441,6480,82265,32978,64241,30762,68580,17931,88218,50100,57620,25561,28835,94826,97376,24357,75985,48600,55775,67759,97896,5286,84652,44753,47073,49793,69102,86809,75939,54887,59498,20364,93223,813,60757,83072,80433,79112,79451,97386,20338,42587,98534,85541,13198,35057,45105,14173,28396,82520,17343,44936,70321,79700,1443,42364,9644,65371,21605,37536,56188,76115,31000,32489,92251,58800,57674,33769,7523,22450,68303,4546,11621,53333,50315,25120,38594,31315,92195,36701,23243,16559,18921,3203,49074,44977,15708,70886,73123,47557,73405,78124,85663,80521,21090,44060,70347,95463,66127,55732,73249,81964,77036,9019,73223,62612,74165,86120,46865,70164,18991,41590,27154,25162,98211,89546,74598,36267,31264,57823,38208,44452,12343,69993,5092,27515,56967,56529,76847,42067,95382,56955,73899,7944,36030,8491,17139,90046,59260,98356,18753,93060,10960,50929,38515,10271,86748,37459,30600,96779,91486,64141,21160,20980,68685,22562,73919,83356,23749,22294,47008,49150,12638,50312,2411,53063,63872,41556,54795,15968,32320,35940,88042,8406,42671,54568,96349,84840,72705,20929,78452,65018,72655,79433,87770,58700,17098,41534,61945,67981,12645,49273,43067,72782,80457,1039,31193,42060,93446,95116,12367,81113,45374,29438,50033,137,66775,52255,25450,61510,23166,49359,12794,77687,8379,82478,72583,65227,2884,63526,19670,86624,46589,81512,2595,90234,93782,68750,44072,14005,90464,53376,58836,84885,465,8525,47005,74539,87941,32528,57206,944,71606,72980,78356,57561,17809,83491,18325,27069,22506,83600,67012,80684,92688,8857,5625,12062,60644,57639,89447,98508,84551,59581,46367,66632,26252,40094,21763,15727,69242,21486,25251,93192,41535,68144,84577,8976,58267,34804,83712,47583,69729,47070,19971,99130,6381,47992,73028,2689,16367,42290,78220,25006,94282,79588,24087,91693,28953,45585,75555,21987,96505,29724,88230,31632,57341,23758,56126,92274,34944,29492,97785,56014,21417,53660,6487,28217,7405,2965,28625,47038,56891,300,31814,89180,27444,77386,55211,97673,28444,11525,10029,17005,30368,94977,27528,88944,14014,95025,8481,63955,51109,32907,7658,40926,17536,36058,74150,79770,99135,60011,51889,23290,63771,1031,46672,28243,7713,75974,34425,5080,83986,1714,52135,74186,34146,57811,5807,24075,58617,54827,17962,7574,96188,15152,7036,51833,5821,76354,59911,78672,38068,48448,21087,79586,24951,91444,46354,65551,27800,55648,23791,1470,63332,95249,11046,61764,84737,79120,85255,65182,65759,61359,75340,76524,66292,39403,40004,5570,74561,60335,5997,71850,57527,56615,82009,53206,65396,99651,1624,55096,60269,77711,22972,42836,94283,39488,9096,48070,23657,12691,90350,97858,35053,95136,83749,42605,6829,68701,35807,79781,16608,51737,78208,41856,13590,11201,93477,98160,60842,98667,79902,5613,24438,86316,3800,10654,77870,63832,82617,53595,87734,83781,42907,9561,92801,41543,73361,97744,20587,81478,28669,10982,93219,45107,87170,76239,10917,40085,98699,91565,92549,54543,56398,66305,98038,74244,96852,99663,31064,89315,44908,58393,30555,62013,89266,55080,99312,3708,93337,18739,52463,92671,53924,6775,42685,86413,65727,78854,88432,2312,54830,65742,22713,15730,69961,77311,46934,70010,15500,23022,82319,67178,54791,75465,10892,50332,39804,76431,3809,25090,39266,35772,43658,49317,63686,82188,87094,65213,63040,11913,25474,4713,5111,31699,63242,14923]
-# expected_output:
-# code_output:
-# runtime_error:
-# last_testcase:[86702,85171,6695,18860,47098,87045,90200,36576,45596,11849,10943,92101,63185,48171,79518,79330,42919,97595,62793,91935,54470,2444,56067,80336,12982,49866,52587,94811,368,2592,65363,81107,96640,29223,90412,77243,36600,69826,9213,65283,60572,19789,5556,78776,36223,88279,68877,65073,6668,94414,11004,88462,95092,64137,51899,35607,84032,72976,77284,65185,35858,44640,95616,93195,22812,29204,45500,85238,6044,53239,32115,98344,10267,65913,5111,27474,15078,98082,30186,25857,41526,88166,72185,5573,85448,70599,15393,37309,69696,62381,11723,17419,60953,12747,53860,29580,73323,87929,71340,34115,64041,73036,4265,23176,39978,5539,5457,85976,22063,29061,84660,254,17754,59328,18451,75412,14413,40052,98442,94682,63448,2520,67297,52271,98393,24948,41528,97486,34646,3013,55729,49080,70864,3830,54402,1085,79605,58735,82522,850,90185,38939,16296,60889,27159,96926,46434,22676,28614,50497,23041,7963,71262,74896,3480,41295,11958,49738,60903,60012,96572,45267,95190,13355,71452,76499,58846,61629,73132,20568,81310,97723,9336,11874,76183,36867,80212,88066,19932,59354,46981,13002,21225,75550,6201,10242,47158,33618,21491,99961,42560,73155,46072,29624,5167,90652,35620,22181,20552,17309,90865,84687,83914,59301,70731,59026,68990,51298,19607,1305,89749,50397,48444,81056,11747,69339,19718,26194,66266,36627,3747,77292,87735,62093,8485,52187,98489,51547,77379,88654,18846,70557,59927,92701,52042,42305,69415,52818,97993,91328,41173,97833,74940,45260,25755,38770,34413,93271,86928,55536,11749,20666,86418,37655,29494,27152,70097,48851,35066,92834,95156,92932,46405,11788,8191,90246,90227,15005,19193,33077,79725,35330,2815,65946,74342,73286,48430,14732,31736,11532,45352,20952,91241,48573,88562,74034,26027,10503,68062,250,66634,33985,57675,59266,65999,26575,87064,25881,18305,15053,28551,64963,11404,5375,66965,81397,72143,91855,59557,8096,92389,46444,20207,97041,4427,15433,90566,99993,42966,40543,59336,58882,19760,99845,49276,11377,21363,91140,64503,40066,61216,74306,21487,26571,58462,63431,42633,93334,97010,65291,98507,52025,10333,15149,52958,86949,13672,89624,13670,71592,82633,82135,4960,11115,6952,76851,24115,57165,21508,27213,33997,67038,10667,45415,76714,45136,57949,3387,87572,24107,76320,91063,84672,29457,63663,86571,39072,93286,77702,20819,53405,68077,24456,17474,19043,42366,71760,97077,73175,37593,11174,89181,53198,2596,51411,87541,34137,31979,53118,49764,47363,34269,82971,80755,55324,74665,40956,40259,5563,25721,79721,19318,30702,25195,50388,37206,40349,34004,80945,67461,34567,10168,72759,36445,66256,36106,90569,73573,80894,5496,66628,63347,71861,65963,3905,4563,79450,91187,52190,54642,83091,17934,30816,20491,36456,85851,20935,51478,15605,70388,39648,58362,94212,82970,40899,76944,37986,44400,44537,59099,62583,17872,37660,87440,42625,93899,38586,85883,89649,62541,53793,35237,91512,25532,22971,38594,74028,79228,36665,50018,36511,48428,22354,36138,49319,57957,47852,33590,14440,35154,43126,11717,38851,20196,65100,58357,546,48457,45011,81997,36484,42528,39203,18778,41344,5239,95174,7967,86388,87796,67193,84258,54183,768,26158,74343,78200,11341,25722,1465,76413,57348,35271,77229,66388,61267,2976,38254,51938,2240,34234,62429,85482,12777,87969,65994,78568,93786,64471,52470,35446,73366,11913,53332,82605,70868,15418,33293,15214,47080,17125,23716,32637,98530,41211,2027,87698,95107,6777,64970,16943,20370,85366,68110,16114,82283,7200,99720,13919,20004,4157,45414,79026,81362,59068,2703,84600,23397,6808,4755,30403,52431,23678,60450,5976,28272,15704,60352,37037,14574,35161,60075,19080,14860,74066,23701,52776,75758,13482,54409,87706,80803,29916,20996,1163,19157,14656,71197,15439,66836,83829,12851,32341,79002,84090,57425,65814,36218,67622,74225,23683,97464,38387,54452,61534,60397,43878,73072,5551,10759,5348,1362,31102,63287,25551,32208,26806,60448,50376,45161,61156,41253,53109,14305,33575,72858,11948,62017,86963,6840,97872,33026,79779,60964,46470,79966,56261,16323,56552,50131,10772,55251,36993,14947,93182,42736,98982,83237,10110,33637,74282,455,81372,47033,30952,45917,57601,21395,37246,30500,4505,55755,80468,75477,63712,97499,12644,38188,94322,12434,826,55985,20322,84205,62000,32100,64854,28581,43663,38541,97799,91945,1218,84381,12161,4433,41221,83090,9513,27299,77848,91479,34958,56585,66912,91055,85740,60686,76716,84162,43547,63902,3294,28690,94354,15367,36279,38776,28725,46885,18844,91883,80412,60178,81215,56080,14011,26205,92246,74763,84155,88607,35944,59745,72385,86383,57004,29467,67609,75062,82625,44095,35428,85248,53780,15143,95372,80788,66677,71177,91520,96781,84191,85949,79204,49769,19859,54978,56731,45563,79198,36343,59020,48794,65597,38429,34854,14045,47931,69151,27734,48270,10123,2593,94421,21622,88435,87204,64945,29064,48932,30178,99778,94883,49185,30900,9837,17363,56724,43220,22031,83161,50874,98678,12055,49931,55025,81172,66858,4632,92023,40163,99056,32243,58551,3827,36307,6052,50101,44609,80467,89830,13996,85610,97842,26725,64595,87276,82602,70574,36450,26990,86742,62911,31430,68917,6458,46171,90649,71360,18715,31498,99740,75804,61553,50766,79303,61318,281,31838,23128,80297,46130,74425,89214,44631,18376,80339,40260,56866,10916,12996,16637,98551,38300,76094,43132,49959,55748,68565,40328,32255,98429,63036,79793,41907,58990,74921,54968,88043,89141,88859,70126,64660,70673,787,6248,29797,4072,31106,58855,30310,56159,36937,54645,573,37901,51365,65371,24282,23955,73135,13614,21008,85367,99031,42329,67940,4994,68155,54628,8748,52891,79981,17851,88600,73588,32735,21901,63239,31653,59382,30379,46839,51070,73613,47083,32024,12829,61697,63094,70157,6334,19406,72334,82341,28718,75658,16356,68122,23661,67485,23950,12552,64347,622,21176,30189,19155,58608,69452,85871,96255,93115,54125,44802,28994,39577,1437,71711,93763,8863,62915,5023,57218,48276,42236,35634,40252,97883,83504,299,20860,62369,40930,6547,19535,29084,12932,26189,15261,51329,94079,90142,86349,74867,40258,94878,81232,21649,38754,52386,37371,83067,88419,93727,76749,20533,74812,39913,150,82079,11974,1452,75348,19585,56520,54912,11358,6975,56969,11541,12682,51985,55714,12810,62622,61018,76650,86176,61694,89291,96444,13105,7309,52447,2478,463,4159,1027,59308,51363,86351,33232,59866,15784,25651,93663,57410,12359,60219,83583,28947,70583,99143,72902,92791,21597,82698,62298,91052,7815,34584,72224,69867,78565,31399,8925,36733,80222,91096,92720,68359,31038,74297,14281,17478,70441,16804,61040,93895,62910,92414,39080,21444,35474,46679,20549,59125,2470,75454,93012,29730,19784,36361,8497,72028,86273,35752,94667,73382,98674,92703,72707,51683,44973,44035,6471,11177,81551,49532,75156,55554,74663,82695,32490,11259,14336,70011,99488,40955,92608,26100,69477,75994,51285,7735,86692,98946,72104,48655,86163,40888,32762,51272,16981,45553,54735,35472,81200,42487,31064,13963,98687,64101,12598,4986,87778,82129,19723,24783,19655,41339,73127,32951,87998,69667,69957,41590,47110,73971,3389,41872,45145,92239,10414,37694,67085,23679,63813,43227,84597,74808,68034,6619,19953,20238,26635,44154,67447,59084,526,28534,11020,2013,1092,5470,1773,81011,63969,14069,1610,45050,43072,60390,7501,44488,54211,31894,24551,1329,13393,31615,30935,72503,31755,89710,91327,62083,9058,85276,66279,20692,9731,9705,96170,34204,85017,63001,51744,95371,95617,75196,69815,72483,84168,80581,43821,94040,17140,31403,94535,87864,59880,40341,61562,27332,88795,51488,73810,82531,83195,53027,86923,59756,62695,18459,83959,77329,45221,83266,80310,74722,12375,7803,63208,40378,67869,36118,89613,47689,80987,44948,19530,67239,14634,28925,79124,41058,83002,47636,28224,66759,3644,12305,90630,18063,76331,6601,70006,1171,12449,54399,92867,65109,28063,96403,52649,94444,74860,21782,10115,63362,35082,58341,7339,35361,9720,25875,98236,18504,35358,5380,87602,20310,93298,28992,72494,74785,22988,53843,28737,64161,4425,18923,69291,36841,64589,69919,68710,58325,34855,81914,46799,54207,69126,61778,52351,59217,58847,16136,90607,24537,66249,108,68958,19012,90638,41318,2404,72450,30672,60657,95088,87322,57374,43897,29514,38671,38509,48911,9240,29096,67231,6616,61523,75637,39113,33397,61068,30080,18506,85593,14382,88777,51743,44306,33589,37376,43418,34966,80117,80087,12298,27369,64991,59179,26730,55935,25348,39330,12223,89695,44097,13539,21866,10164,96775,72099,6439,25033,54017,14762,29729,70785,78924,98125,75499,64985,26808,21232,93388,50098,95037,18037,45259,46809,95042,2230,5141,70339,80154,49504,71355,28317,7715,19302,81408,25134,98018,7686,23868,24986,60622,85045,84898,61607,97197,69857,32069,50335,2942,76485,10939,8584,12706,77598,65330,16700,78643,45864,82159,7597,5059,87381,4728,21053,69990,56054,9944,7655,97896,16939,54330,49241,84789,75407,31996,13865,70055,22760,48035,20128,10713,31107,24071,56275,14353,72772,630,47021,91834,16423,11671,34245,6989,7660,83901,17610,87910,93728,529,81744,8625,42631,91291,95943,81474,168,40613,80350,81533,63222,83133,69192,15559,37302,63707,52557,24679,82851,87415,77351,7525,62388,2228,91226,97260,40816,80282,60959,34533,66221,8335,692,46530,84883,47401,25492,8076,64921,92838,3726,48668,68613,69286,81989,81809,33191,34040,40091,9131,93743,84411,15794,20468,9388,17332,12082,45240,52153,57761,45317,94856,57509,69134,5421,40569,3994,66323,32276,99387,11764,12230,70551,2793,70140,14253,24828,62963,97625,76116,37294,28671,4412,92685,9846,54012,62419,14670,72642,5076,23393,65038,72111,74504,89479,35020,24268,16819,33094,78067,49236,18303,91165,17581,16775,75764,5839,40851,24822,35006,91364,94068,1109,82681,51364,18440,15593,63855,51721,79402,91426,90410,2418,76284,72249,55158,81596,51841,78395,51489,89967,52637,46993,29821,14668,77034,67884,93955,33338,52821,2556,53339,87262,95445,59987,33298,29035,76614,12003,68341,56697,90462,9060,11123,53799,94015,10434,2620,33998,31144,77078,19593,90657,58870,17133,46268,44950,44709,58004,3267,8002,22287,65300,26391,2548,82351,21087,22059,48624,69644,4168,85492,58776,43334,58811,59950,65699,70778,75770,81402,94370,26848,27127,2323,20575,45385,30440,69283,78982,77529,16064,50633,2197,29476,88550,4337,25834,74353,1747,1301,42213,85235,25283,46076,58924,48,64348,69017,95150,58709,87676,60331,3359,67891,55338,59,8966,79434,636,61468,58486,6948,10918,9457,2255,46387,60918,29150,27536,23416,99851,83491,76215,78871,77783,4054,9595,59804,16243,518,14879,76250,8941,47032,92907,84860,47255,77415,85599,35192,74611,27805,76801,82691,71450,84049,34611,25410,94763,72956,42372,48637,40402,38567,20200,99166,71813,76027,87512,98340,82029,27119,8020,16298,88310,29561,4323,40763,35871,46827,29277,47430,58297,44428,73171,57521,26275,89426,29499,32623,1009,89724,20781,40772,46242,6609,89050,57019,63910,40765,59332,34561,28699,48821,54661,87622,9834,63292,71512,89640,80796,94828,31492,50646,73599,71443,17011,86185,41718,35122,29188,63866,91284,26944,56230,33408,20462,78608,23460,22172,7777,17809,21608,20563,35759,59623,89266,93969,50768,80678,78086,58354,11552,99434,34331,81893,17426,97975,87948,23673,97498,85155,87861,37329,59487,62798,70185,84666,94493,41401,10119,53153,54726,91196,2692,17579,13254,9026,26650,43811,50715,24925,91410,73526,69995,57772,91439,49832,93323,86488,93990,33160,43125,55104,76349,22604,12813,8134,71766,9463,82347,31168,21804,46443,47375,60322,37980,17775,82366,56987,97305,97128,13070,17056,5595,65608,75849,99216,93160,17982,8817,59297,63801,22352,40171,14971,63111,67731,47062,57890,42920,25726,85826,7050,4879,20451,45245,40631,18224,40234,68221,73778,50462,64619,98319,51195,11306,10541,50948,63853,1863,97503,9699,45657,44614,69214,81779,40438,61476,1116,61109,4680,10719,70759,9378,82868,51449,82130,3803,44148,91341,22969,24804,7920,20895,55340,68192,36211,91645,72773,24194,36051,80682,290,90985,1093,42707,2182,51360,52763,89066,86233,83502,39007,39701,13465,38209,98130,22072,39499,86427,51331,29740,95599,41143,79700,69165,61233,48587,23098,20071,81201,6643,57542,50596,55823,38482,67799,48840,872,31477,1263,34152,78194,20461,54377,64695,34486,83993,6071,64723,1858,8726,39691,32700,89124,32824,25708,27543,40441,41856,36406,90301,2125,66701,97710,1005,76755,42546,26286,85743,55761,37739,93510,11501,8319,85924,27927,25898,98047,9369,37310,48065,74469,77429,79371,41637,91725,17003,95992,31584,20480,87449,37863,10118,33417,7198,12631,28749,19964,4043,72654,8215,27133,60426,5744,12611,2104,20258,69266,22325,73996,30259,23693,31075,41187,54566,43674,60165,31543,13974,51803,50220,79944,32810,39827,28683,92646,50087,49905,71283,65776,14401,28900,57809,44889,9818,36228,35641,62860,31412,59287,72234,70296,26260,37423,88122,75313,83843,68953,14672,638,69440,22251,66275,27590,65748,46116,61360,32328,93900,57544,18281,65793,20454,39135,81795,28880,80860,58066,28701,43898,46471,52216,91546,81148,61050,62310,5354,28431,45995,62021,2944,60819,86951,47854,50805,19374,58291,69488,39907,21389,10416,30327,91795,1977,74249,5245,95520,23467,6279,51483,10146,65324,41574,49115,36408,62817,47165,40016,34779,95052,44856,33201,29668,15623,31698,64618,39607,36755,39936,18344,8482,43396,90520,1821,69006,71819,18765,44168,12555,78105,40870,86827,16324,37215,74986,30316,86321,34343,29426,84341,64707,54828,69869,80541,30790,76718,44426,9604,99914,72258,43635,34851,30150,52064,3092,74649,62126,22129,33240,35830,53,38949,38165,47466,85496,67170,70474,51080,55394,69271,91428,81988,97906,6069,63974,44803,86289,99319,80764,7779,9789,72151,15881,11722,69694,9526,86070,93003,41936,69184,97053,92662,76754,6317,35813,100,70900,78237,84464,84226,94634,50336,77671,2131,71543,74307,59087,63764,13030,32794,34158,21493,90504,13663,79050,46374,44778,17788,39761,21149,86734,58308,19901,56049,77815,46254,66156,58636,95248,76699,9022,55040,97099,63408,79425,52905,93548,56754,27676,44441,64519,15357,72683,67790,28873,54931,77442,32181,33473,67827,15842,14692,91975,13684,66791,15769,36964,64392,9040,80444,70516,30157,83451,85849,90461,52711,40794,11150,66469,60867,85407,41950,7293,71666,92399,70464,22311,65368,9696,93715,16825,5711,76682,30397,15057,7400,99260,78360,37402,72279,56325,53803,34514,53662,84524,1889,51828,13016,7427,24694,37076,20854,93313,17466,10927,61058,52773,68382,9014,53645,79179,73860,59218,82281,34684,24254,62706,26448,93608,45991,1396,98431,75687,30460,7419,92762,74836,36585,58588,27500,57100,37467,61003,63787,57702,89381,50475,1012,32240,85659,22467,81206,489,87588,75568,14784,74399,33491,99405,44365,646,92707,61336,32610,3589,92767,50940,79255,95582,61134,36467,37533,53912,46589,12502,69122,3259,85727,83126,38815,9824,54400,23066,78934,86238,971,26023,33376,27041,65338,99138,62373,585,42948,93315,61600,56344,56422,36038,36338,4529,66431,59867,44362,79546,81827,23564,6638,27625,35926,89048,92894,3004,66601,73561,80585,94638,86639,53539,19774,41551,31454,89122,86594,14550,23240,18091,22805,40895,56111,71544,85001,27902,64737,6766,39225,83006,29901,18270,98321,40396,93758,95204,51929,79506,66647,60569,2187,38603,95039,7471,98794,62320,177,98854,62273,93380,21266,79606,34626,78780,91665,1356,88778,85178,5280,7102,52344,49447,25811,97019,42580,83031,55255,43866,14807,32135,43243,96627,41420,99481,53476,3361,19073,94297,96196,77541,48039,10475,80322,16408,68118,44665,17490,23022,53282,1031,82476,29090,50529,80274,9662,38904,62553,3952,97885,62029,50368,2302,35112,68205,21777,70792,8754,82414,1486,59615,52157,77530,27909,3305,36321,93999,17709,88501,24874,24672,64932,10809,34261,4441,45715,42510,15756,22104,14921,52270,11811,11429,89174,82647,52435,85691,33488,28920,40031,82068,95752,35072,42716,4671,32630,61982,84251,45012,2114,42001,84156,40604,6686,30366,76054,33856,92882,25253,67747,52220,66633,8185,94860,22685,19434,11716,89557,71481,5712,27036,51944,71485,51061,76086,20926,42120,80211,79827,23815,67059,1089,83358,11298,49117,40727,7529,47377,24904,41686,96064,18294,80170,90521,34309,99322,8578,19898,77646,42969,5932,95769,24258,85485,62092,69788,4745,33184,96617,52981,67518,7426,45039,7757,12921,66052,59940,75466,5209,22105,44370,84856,42599,41104,14391,46978,97411,69800,11282,88632,87565,10926,5465,97058,9954,98706,87387,58574,48997,45976,53043,96728,71742,22350,77875,46787,24247,96021,48313,58046,31955,16693,76527,22118,32014,66383,54204,77836,82080,39575,32219,48809,82585,86178,39697,37697,50748,52450,60554,42885,2318,72148,43115,72573,30783,23988,38020,6605,19828,45677,23820,27857,91953,76532,74300,53581,24526,47602,63864,84003,31290,87834,59135,46738,69168,84633,98404,2128,87504,61481,36599,69047,71684,46327,15405,27243,87699,10876,93854,1591,6188,76568,85097,25435,30955,94304,57972,54153,8937,87353,51842,99623,47897,65141,30284,65787,40379,93354,60997,65088,27420,29734,75278,1462,6815,87507,47511,54420,9488,96228,29751,52926,5074,46442,60894,39383,98714,14772,74158,8386,93630,68543,37609,73849,14979,66518,59606,27328,73891,59342,14508,16201,62752,60293,80927,21216,10314,78913,59464,58415,29209,4913,90570,86574,16384,95341,78726,64580,65536,92194,41603,25804,2946,95329,21553,30692,60692,48790,40358,89128,25343,94475,98529,17970,41411,54505,53193,88553,52581,361,40399,24600,47705,15692,82810,12356,79820,64928,10697,26541,30606,2465,69381,860,31142,40038,25078,92743,36292,50437,91012,34055,10949,36961,41897,4709,64702,19049,17799,48001,56547,4822,1338,68399,34423,18752,91215,68006,1757,90797,96190,58798,56808,71247,91025,15246,38705,6566,48269,12436,99768,93273,59133,84896,88821,28147,76872,42354,50375,43689,99935,44046,85304,29978,92478,89806,20849,61761,39239,74068,19517,85472,75785,71618,793,8653,19903,32234,1772,61650,44264,76548,41979,52352,60526,920,7523,23605,73486,65497,58112,92732,24903,14563,78926,49685,97968,96414,64875,38618,3570,86425,72274,13387,50625,85343,2494,67032,45477,58948,61964,10766,58069,73216,13556,61687,23015,6293,84431,63507,24037,59564,74003,79751,37899,35337,95963,84496,14287,21780,68168,41144,30805,97508,79071,5767,37252,12961,47637,91254,37216,44039,33065,86899,93505,53753,7919,78281,80863,38803,14868,93981,32746,68344,63102,34892,31873,27756,25850,17503,33416,19614,51269,93657,19492,72779,29438,50283,36203,62156,74197,49156,17735,6436,85325,27241,14765,70648,12511,90325,52480,91926,22114,80922,14646,97424,58147,99224,62633,38833,83996,12562,25346,97805,35000,80128,56618,6101,70664,16962,42149,88745,59042,11031,18733,72947,15308,15910,6055,66084,63171,34936,88240,74083,63468,29871,53631,86482,23033,23302,62905,92261,21320,33463,36466,3329,15101,63463,23669,92155,19571,55810,93426,57450,97666,59543,67102,68574,44289,73947,18119,33252,32272,10180,16273,12382,60701,17648,10275,31348,79585,51201,10897,10944,95820,91810,7069,49456,1259,10741,65796,33158,89445,90154,52769,33528,67540,96518,47287,33071,48283,77418,54197,43197,68146,77474,97634,88692,38150,25844,90220,60638,48246,45777,71210,37086,57919,2047,11860,52833,24924,41404,15335,48926,81790,4020,49027,11613,92906,7565,57645,40789,48567,74667,88548,71218,78715,4057,97313,96794,525,39671,36781,72564,25690,29685,25082,99468,38363,68782,49640,37469,80539,69962,57221,43390,51485,54574,25339,73556,58757,54915,96937,62069,81967,14114,18624,51845,91797,49262,28461,6977,9983,2474,49744,73157,28902,79582,10785,27634,78686,81351,13489,99841,45518,67663,32425,77761,51277,75874,52961,97188,53756,49094,86520,22549,44608,44667,32530,75084,73223,41710,79461,29129,72517,47348,95162,84797,30204,84942,37461,40433,17050,19108,47223,57099,34563,77014,95255,17482,76907,82825,69147,52771,71968,25926,72954,75487,82563,69351,64859,51367,19275,30342,52098,66471,40381,13814,88535,73114,26383,9733,94357,99077,23056,8761,94078,60151,58184,51504,42935,85931,64375,10020,89423,95227,62663,68668,25073,11101,82445,30187,8287,19884,39110,79076,12325,68845,84494,57052,7331,59091,16477,11837,49221,70268,21800,16980,57782,59144,78523,78662,66851,21321,52719,59939,67993,79105,30808,58369,19467,17896,51416,78515,16908,21242,68648,98622,59759,31829,55209,88842,35507,98643,15530,69174,40435,80640,29612,78752,1595,47928,42544,22265,29443,19979,18629,11520,81923,14992,41495,71604,8858,64593,23769,19852,29847,23493,4659,61859,67307,9027,29853,39837,33907,69247,13257,72077,53471,56572,3009,18402,26887,21009,55766,71761,32384,79846,2586,10026,54218,7410,15877,22069,26965,10781,13511,24103,38364,62399,58361,32981,28462,48186,13790,38196,96082,38306,14080,72299,50688,87213,24793,7526,8461,20779,71897,74865,16578,4873,4819,92483,54089,18833,42015,12724,31364,29320,98206,96637,59715,10227,47458,93604,44934,75786,53101,55008,18051,4056,54264,68746,49337,68549,25862,70592,83917,87405,1327,21679,2106,89523,80045,10241,93732,16287,46493,44741,93063,81777,18264,13109,31167,62201,56454,97927,84617,75936,79139,24360,79101,86803,91996,5649,482,68722,85957,23844,86634,24991,44384,74628,53955,92754,60716,32688,96179,13716,17854,41777,99363,42656,74415,52468,64670,76598,82114,48766,77997,70430,82175,66587,40176,21239,39937,14284,70639,25516,92664,35515,63329,6513,29378,49607,18515,56736,10495,55968,79625,44444,87108,64309,1998,14565,19457,16375,95513,7319,32375,28426,52620,10193,40652,49990,85262,33709,22170,40232,51176,82939,10891,52231,4764,19303,69656,9188,22421,95612,47567,50110,74339,90598,2922,53458,39678,35721,61048,45696,24985,62599,418,76382,88542,33345,1756,39642,42456,52167,76899,42496,61297,66914,32605,50501,3940,17972,51887,96657,89620,13334,83562,12050,12000,69669,3938,28163,95387,37230,49340,686,80748,78112,3231,77039,48552,14070,49605,92871,67760,47571,32721,26529,14231,46028,65424,58616,1355,49739,78301,56783,60055,21668,11772,51431,85108,45476,20507,69610,85569,54061,47530,36130,75984,56092,27718,96575,2515,97123,94045,39426,63328,5534,80283,99218,15774,34583,54194,58217,67198,66224,23574,88387,88668,47117,22859,56166,50103,50842,25817,48702,78352,86044,49347,4763,2986,92983,16202,32371,1409,13681,55121,44458,41038,80124,80650,94122,48036,99846,81545,76069,55399,88940,39509,65463,31954,37882,39849,23528,57300,98757,68515,994,49678,23595,63926,18541,17336,83319,97473,46932,63396,28528,16916,26674,77233,71554,88173,68476,75907,17040,34760,68046,71397,90982,61536,31744,54756,48320,93841,27645,20212,8520,35611,11952,11111,91225,54946,26276,90739,64166,27161,37334,93235,72329,84863,41825,24151,83159,82816,38774,78861,86924,49452,3151,95850,34294,94336,26477,85545,35260,89169,72435,50519,82717,94210,5516,73136,71963,77112,29447,19032,35915,36121,86635,22801,22310,45674,61565,32764,14795,7904,97426,11034,54222,31471,95379,74997,66597,29103,68394,21585,43808,19801,45200,86206,56070,35983,2716,34618,92175,35594,18815,22367,84700,10967,42662,4205,84366,8730,20262,8905,89980,55028,24009,4846,40995,84643,61089,15414,65039,17957,76966,93000,46649,91784,77523,72187,53325,71510,21127,96185,59304,83104,38024,31746,34075,20087,15981,50645,23983,95969,73091,72453,27534,11797,82361,72723,54545,60328,11802,93488,21634,62929,56140,5373,43483,64819,77052,27532,22629,97731,68319,28661,67693,51089,63451,21948,45486,48674,16015,44716,51473,89889,75330,22712,36113,55763,10738,16597,7511,4449,67804,14833,63415,69534,56940,80964,4021,90696,42571,87190,82817,67881,60972,56845,41094,1994,92166,75491,58772,78821,79486,57328,39535,16832,9848,88957,25379,46778,45196,53981,38730,49688,56701,68711,7297,33203,7505,15900,87292,96756,60064,82493,79181,11406,96127,13122,91326,63937,22972,21121,16964,31972,63069,7115,18406,24257,23908,57281,30459,76848,81225,77583,19651,77945,40718,59123,45568,46823,65596,57591,13209,84231,43896,58971,41752,81634,43386,84263,57888,13172,19230,34922,65795,1317,99773,95377,86954,53759,33763,24244,35080,52830,6168,25608,27864,2389,51116,4089,41057,94146,43262,27898,16100,16252,91005,71046,47277,20416,49252,37772,94645,58522,12937,23315,97230,39481,24606,62508,29108,97551,29479,83955,14584,49498,51861,11730,66501,42296,87639,90245,59017,53440,58031,69842,40874,85239,39180,64927,86534,77773,94134,70547,39434,93549,94461,24943,91724,45067,82527,46921,27855,9386,67056,37012,19081,47731,21882,87333,47895,65841,80875,23615,53510,92771,27367,99676,70433,76996,11865,4957,41036,43714,15211,25325,22536,45795,78835,13118,61396,50457,96934,21700,91585,53514,10721,89986,89565,91586,37932,74521,7530,77543,41452,95697,67333,66419,20488,5602,18809,52628,1866,23770,12228,74327,1806,49490,47058,44099,92224,59816,50821,25695,52037,31571,40387,67284,7805,14950,78933,95180,72855,43082,74838,78449,18393,28087,65652,26269,62127,80044,61056,44391,71976,37090,54395,67356,61690,87082,444,29518,65586,2155,38105,97120,65804,60371,10619,21930,22145,63981,22437,41265,8562,11986,13247,45421,67783,22742,59694,20748,95496,91966,7359,3688,24712,34381,53141,42111,37732,96486,1090,63318,77857,65421,61008,99118,36007,97808,52792,4008,66732,6488,64686,94276,38272,3049,7443,62221,31661,64833,13815,95365,25784,8637,7036,85173,58874,92047,12414,64382,31692,91884,62426,92556,46766,94839,685,10830,91662,40880,87206,58434,93930,50686,34610,12424,56876,47314,29099,25502,79167,36806,38571,29073,54305,1010,33628,63438,44413,44906,6135,39997,57616,68503,15317,41114,72193,49120,8847,7539,20255,86264,42653,58842,67442,12696,57950,40610,82937,96636,99532,29270,20157,57790,23573,92271,1017,23225,54230,52959,8184,17571,5550,98182,9873,7672,19399,44275,60710,1840,95031,5881,86846,22009,95739,5072,40210,88618,22881,30431,61321,82556,16330,54437,11668,30304,14776,86535,50033,5653,18384,83272,89490,17010,68302,78735,30673,57805,67975,71503,95326,74041,87830,63639,2579,73567,30469,55135,47600,15608,72566,69024,12784,21088,84876,14694,34641,91339,9801,15612,60669,87630,63140,22150,82755,64760,38936,37681,38698,10401,12636,90789,79049,32811,78121,89905,93963,44664,69497,54852,76158,43569,52317,45609,8348,6136,66756,44883,39633,84001,96619,1149,2908,42806,2513,1011,99561,77615,55949,79689,3170,43692,47205,36425,51705,36566,92050,97792,35743,51530,88389,85404,74513,89992,87571,76386,79054,53980,58605,80046,94111,49849,13375,48012,9253,24441,67440,30237,28976,81709,35410,8355,14097,89702,29271,65643,18933,57385,25816,69023,39631,79161,65982,60278,95798,25352,93056,12854,5347,96363,32773,58382,64184,99736,25963,15442,5982,65539,32595,48261,34078,38264,90119,50749,78566,99837,11231,88864,44633,51630,35214,39378,55670,26580,33599,90359,83325,68820,91830,95866,31137,58123,17118,14033,78079,16584,83169,37036,49277,14962,16853,76263,60962,80006,75665,32617,68282,59579,51129,7712,92221,26066,63890,86065,39412,34631,16732,88391,38682,75209,48279,64245,75460,96324,68413,63618,19706,43422,18956,21386,77251,46984,51239,2695,28154,87629,17161,62247,79552,98496,32999,49331,69837,90066,70103,88486,80142,52188,4038,42401,52070,75359,83494,1850,83120,43843,67793,48804,44034,5582,39319,87850,46765,3590,16595,82,26503,48013,50224,52618,71901,5590,64030,67429,55118,28514,78339,9754,39572,71691,25298,6581,63182,67418,37094,95098,55972,54869,58388,14633,4079,37287,11697,53708,28977,69953,84306,92196,24264,22648,49220,43587,73504,42630,80857,55077,9052,29981,62482,95601,66999,64878,37492,56687,4496,3233,55149,61196,25554,43375,73632,79681,17879,15831,22176,6155,83071,19914,48953,5747,99870,33866,4068,15154,81094,24094,93266,57822,7839,16336,90907,56375,73386,85383,38268,57539,80669,69235,65272,9295,57978,74240,43518,7408,60164,77227,86234,84917,68894,71311,48169,33475,92193,78695,17001,47594,92507,22672,52038,13516,44901,22882,64222,59032,1549,11581,40840,38687,43848,70584,40539,57564,6244,56329,51531,40721,45985,67533,2881,70949,51051,336,13424,91175,85841,55871,4442,41903,14288,80210,53773,17035,62848,73531,93205,43312,61316,60404,49684,91329,94233,2403,12232,20411,68106,92415,76595,49960,37969,18980,85779,27353,40606,44189,28051,62001,44959,94472,76390,6062,32853,49039,53412,44871,67498,86601,80526,71013,16998,65211,39482,73341,54253,18096,26372,78480,54813,21864,62778,9501,80063,16365,17222,9958,21256,72418,89817,76978,59738,70749,77594,30749,12549,86109,48146,41849,51535,53011,44443,84136,25048,80198,72263,69149,19266,78822,9535,78370,39188,82510,72315,48008,83866,39086,38681,62886,37634,15339,16975,93397,43643,85316,13755,35393,52375,37466,21787,81673,89411,54687,17653,1681,42171,55447,70890,46052,26838,13942,28073,37913,91738,56473,89902,18605,19020,2519,12067,42498,16421,45127,586,11571,98376,81026,89235,5044,78010,68367,96399,13290,63152,28515,24930,42788,62477,15139,5382,34496,72463,26185,26925,22696,42197,98212,5973,30901,25984,89301,94977,58970,85087,75932,34516,97647,98222,4533,18938,75232,42809,1690,56022,40046,48991,14335,41896,71886,49870,12296,68135,17757,87874,44409,19208,8056,23729,2839,67850,46776,86030,51968,13429,63686,60907,92110,57109,99944,93625,74314,36702,75347,40952,261,8829,5467,26912,52550,48864,78461,48467,43545,89946,16037,41308,87965,42402,70969,34712,83089,17095,26160,23655,43599,73922,9969,9309,6502,20989,97350,64078,94612,1537,60226,86856,6457,37034,25533,98323,81198,68171,10,3951,42080,40,40325,27850,33190,33724,96747,36036,9392,22244,9314,38741,65554,80967,77206,39862,39720,87654,54378,94801,62215,17321,44628,33776,53515,83519,10605,85680,77839,24408,4647,45887,45165,7576,43160,46755,42605,75831,69416,23563,67487,34608,8071,64622,93773,63715,32969,46678,8057,45909,51801,4327,72126,15462,36356,31057,92427,45378,60822,66445,87332,18588,93577,4839,37508,92085,70834,93632,6722,35868,30598,85264,36455,49920,73582,19360,25159,2304,52247,93256,50634,89483,3974,6986,89060,68309,29392,54444,28333,35527,45847,59498,88367,40572,96529,25282,30594,82026,85635,23567,20030,85314,42686,94424,1385,12218,71431,10814,93665,21968,8340,697,58387,81672,51032,89251,36073,9260,28588,66692,24011,24440,54060,52398,98120,31953,71774,26621,61033,8579,58399,94714,61662,49662,23412,49690,93940,92710,99762,32813,8560,80809,82956,87795,50703,4438,6461,93078,37874,80995,61392,52681,43558,20283,23612,69900,27352,42529,86886,57064,58106,63582,2663,89054,62078,72962,76491,51881,5237,82167,3077,68363,37442,43871,7020,26819,54478,73301,32783,66311,13664,74,53148,96389,82879,52295,93860,9239,86569,73129,56479,91681,73673,85993,25669,7332,43664,6822,66004,95091,90360,30931,89055,42315,47286,77427,27936,33978,67448,65303,60162,42504,39288,40724,54590,26588,26888,3545,55285,33129,62353,51819,14303,25255,46637,10490,86970,37520,39685,12901,35524,30249,84759,11751,52122,49054,74508,37005,71338,17211,84295,44639,66017,23682,31017,72823,18394,53643,68035,64484,86429,92257,68379,33757,68111,60755,8528,26049,67017,85392,68354,21323,22946,20406,69520,86377,18772,37556,15201,23743,58561,93832,60268,32029,84293,87813,12541,14155,9519,23721,74570,76842,83322,28094,31985,44013,91676,86716,29106,503,49657,82707,54838,4546,85202,10940,56619,2825,71243,95852,16659,34792,78492,84655,51518,86384,43104,60879,69048,71347,4992,68866,56249,67466,53249,81582,90242,92745,90986,82780,86199,55828,19101,65857,82927,12112,40588,53628,39763,70876,20682,17053,84196,34575,82833,69408,31165,16909,38457,40398,46871,87614,43369,42022,12357,9903,47495,47105,17696,30604,88082,7843,91207,62068,10270,5783,5799,67117,87065,32893,19746,96084,30211,75193,711,68220,51712,2450,13727,97845,75635,6143,42331,92439,22622,63016,98097,48256,85328,35530,91205,61948,34674,96346,81085,41306,30571,70645,87093,73606,84214,12104,78968,47489,13044,33905,59193,20756,46286,22546,53634,38836,46174,58005,76190,61961,3782,48816,58272,21012,22110,8338,49559,60691,30936,18183,78631,80774,61234,27995,6663,97214,30949,81603,15268,95176,29427,11674,89191,84839,82220,50299,63772,87585,4224,3898,27443,27704,24794,47101,11462,30139,81691,57630,98001,91852,35832,42500,60238,65177,51599,30088,11787,34970,49741,83194,92539,52845,25615,26546,36260,41439,40424,8555,40361,48297,71324,18663,61082,13418,66997,4203,25066,65637,66274,79592,81712,36884,86130,52889,69140,7807,8082,72269,17845,81193,29807,29049,25597,12650,70921,90618,52698,18804,58669,87669,89034,24008,24747,53287,26257,76433,51537,84391,51425,73046,2316,16538,13738,7832,20709,44297,91870,26024,47415,33996,29062,1145,98084,60612,55946,17465,74402,45353,6292,88702,89403,84138,1431,89177,59122,94794,93189,78721,17238,33722,61225,97281,26854,90749,11537,35382,73571,12072,41761,86707,26366,5583,73242,17041,28433,66288,60630,66010,55583,67635,17739,28400,51871,10546,13819,5834,33314,84035,19423,58603,8839,97818,19590,32263,96133,94270,40417,81497,10994,23093,58698,16572,94329,10808,46301,61447,33498,65887,77527,75670,44307,47068,951,56691,82591,43420,38609,23801,75383,50339,18873,10385,10989,74072,85379,29557,98508,15989,63703,99602,47069,22406,55183,28517,56238,26051,33396,82292,652,40676,97979,55281,37696,15177,18982,26595,92719,40070,3997,96421,10509,30894,33981,9890,27365,28151,17221,8090,96537,88776,5886,97513,93394,52294,91545,60085,79336,1506,17367,66641,44149,61221,32412,39066,94949,44872,63909,52835,5807,10073,816,30735,55762,82270,53734,1737,61521,87221,64428,3593,95030,89602,22854,3274,21805,41700,83036,50879,19497,70082,14875,70221,87521,28136,29297,93474,32189,24771,16329,11819,84877,65369,27039,61793,10370,13321,94298,79058,7276,88376,85698,90038,85359,21139,21170,34593,70224,96394,24413,86836,32336,31132,31090,99176,15767,7730,46803,97876,80944,45749,71407,26542,23483,78712,94039,18162,86141,43289,99435,19802,23043,16781,90485,36370,17235,55449,3606,16284,25490,89289,25360,52059,93546,42952,6541,64315,91591,68039,26153,47851,56907,56427,28985,11211,11369,27185,92673,51647,93914,61217,76989,23846,7413,9343,99742,81639,70671,77377,12593,33182,91669,97262,84916,20736,62976,23872,51980,65197,82278,98683,43589,24938,66147,96605,89470,71736,52488,62662,83941,11932,66626,39215,77369,10172,6196,88955,10251,83665,37196,87832,33852,33523,61028,51892,38931,20942,87526,68522,52123,8358,21259,38180,3450,78700,98601,12478,14794,23884,93420,76482,68483,64941,83212,55546,84694,42189,45520,10039,87391,48597,49383,50007,4135,36136,55084,53369,61581,2149,63780,66548,18207,95566,97300,7690,31280,96963,44274,77387,18823,56616,35380,1941,16666,19635,34688,54427,5486,56411,335,82369,98968,25717,99200,73468,19548,92177,81738,16605,72760,17772,79422,32091,15488,16127,19023,61314,3474,83475,67371,14539,68378,21065,24212,86333,22255,23568,71702,59581,2222,21678,69572,79885,10469,73239,6297,46892,20653,61456,48643,54018,96302,51494,98080,99462,51751,34642,18272,83889,24137,44454,70254,81009,11312,42960,56337,3825,60263,97259,44313,592,11297,70019,63230,71055,54520,98419,18721,93542,41948,27163,99133,61194,31552,27206,2252,30848,81286,83326,36050,61371,78840,28435,33352,74609,38338,36952,97627,31929,3924,75490,67062,11563,6007,21759,65407,40826,85288,24114,56712,97541,40097,56075,55625,45613,4617,77653,65908,30872,53946,34103,13119,28778,52676,68526,37503,55547,74581,42538,82321,71142,97758,51193,83547,46955,16704,40877,86431,13028,35899,99040,50696,57631,23945,44646,53318,324,71275,72285,14963,33584,99309,56253,57307,91678,65801,5243,74296,94097,92498,90049,48505,66244,74734,82805,66635,80862,24755,53894,96776,93853,13984,68606,7187,60956,6222,64014,93164,4519,48547,59162,49342,20980,45409,41180,11427,24676,29703,31008,11666,76691,34622,50000,84481,22378,38157,80710,93877,5648,42031,22364,49009,95680,41625,44879,39822,75593,76493,87842,51812,8318,73140,75832,15099,76707,61753,76227,46055,15331,88289,54690,85063,54652,34360,98179,10125,47207,34798,1565,18617,50927,59015,26134,30430,72733,45361,4547,70091,34263,15046,18536,35202,11521,79775,53445,31224,60429,98755,83148,44582,3434,83571,89896,96014,6342,21163,65740,90822,25058,94069,82471,34579,45675,48985,26660,42642,13161,2915,43416,71286,8636,74261,68518,41288,72805,30362,80249,85189,26972,71050,58514,61728,88775,45927,52084,65091,15490,74551,80856,98227,5200,64636,72877,78763,34210,93004,70937,61791,52235,42250,32560,31701,68449,35179,53005,75926,52855,81155,72118,60558,14931,25833,59294,81444,26701,65417,33859,6516,17129,95354,97540,3817,45863,43300,67952,41139,15451,79759,70504,17939,21430,34009,16460,45894,14813,59556,20024,74633,10868,52894,46402,42617,70291,66896,13459,5361,11227,79839,45873,24470,84705,31393,60824,87915,96977,450,71221,62239,44007,92296,13048,91621,42115,49593,60547,31006,84612,21161,97444,11496,45244,19664,66259,14611,1422,30466,19123,42010,84755,1923,98293,9802,75119,53817,43219,9717,75010,1732,48917,16744,824,11993,83347,83332,24270,10348,78221,26949,37407,84305,68389,96192,99692,58461,86062,42383,17742,25696,64467,18675,1867,54684,69079,69205,45062,1688,62113,60499,97071,5121,93737,15965,28155,24722,29508,59948,28332,24174,66055,68141,50365,21953,60640,88938,17787,13710,1295,93348,74905,88196,84649,44834,74552,58172,49676,62564,16490,78875,6394,70279,78996,42615,86926,45206,34873,81968,14396,19523,11524,26239,32088,16276,21348,69701,96169,28215,30536,32704,12358,85543,84455,45667,61802,9645,84975,57644,37828,20521,15176,97521,38470,35960,70709,96157,7762,86193,33474,71914,12016,76242,98195,21168,99353,17451,20375,37221,44812,80101,37003,30364,72167,3880,61790,92149,35015,41933,60779,82840,97253,6936,46918,22786,20914,45870,60446,99547,39043,33181,33711,3040,12691,77037,66715,956,8913,87684,54616,16412,89605,87826,54791,8553,75933,52967,31400,74061,15807,72357,59618,70112,74067,39492,32880,80393,81607,3177,56490,56859,25065,3835,56145,77770,19347,94460,94100,44642,18537,5195,26672,14976,72433,96811,33286,78940,94673,20025,11055,50949,37141,85037,99771,17335,28257,18164,62953,53988,97804,75382,44724,22509,15463,26963,56738,32661,66516,56236,44745,84844,42203,65614,69859,85157,55352,57464,38576,59018,80261,53537,35914,70666,36834,22494,65687,37535,99880,54015,36257,47029,29242,91614,21687,34174,11601,20684,65782,65159,22752,22918,90453,40504,50960,24317,84599,81081,46369,42643,60948,8494,98038,79997,33270,7095,70866,31617,73950,7062,54991,11574,93263,6740,66696,18740,51474,6379,29584,30269,50422,15066,15140,58452,75376,33717,23912,59120,46541,27507,15732,5,11167,62563,64526,85188,26785,43464,83873,68371,37999,2094,48473,77789,23741,79696,64765,14432,52174,14719,45148,71941,24012,95855,62955,28813,95459,70661,4039,67909,92049,22506,25099,29343,13596,64064,18882,63356,67611,97261,20405,36006,92960,60527,76519,37102,47271,27186,30563,31104,46007,96821,95256,91493,80458,39195,14264,22049,8467,91888,28416,68137,48126,76735,50389,73331,89020,84301,84706,7101,89844,75559,80247,38170,27684,62721,68478,93840,91964,64443,1427,63369,44654,8549,55237,85140,73513,67633,89906,41874,62468,90450,83553,29866,2340,14965,66347,51703,1120,8248,32692,69007,53455,50440,90386,73664,23,16810,27877,54170,84895,48272,16724,23177,25579,16198,50562,77606,293,22338,96567,66940,27814,96296,88752,78586,23614,45171,45381,339,54863,73358,49994,42323,70638,64129,94966,32325,12235,48368,50540,78919,79980,17941,67508,31963,65204,91778,75354,61825,3436,64559,76041,80275,95721,7151,40395,89219,75296,37594,4555,48941,33134,34388,14201,98456,51297,54508,34020,37768,76053,79268,45081,65017,17901,14333,60578,16097,35599,59527,59431,35443,49980,6664,44366,94191,43832,47417,38090,23987,25276,81793,85570,16648,95713,8515,39429,80377,65688,64628,80500,36470,57347,18245,88830,544,38570,34344,3158,68696,27057,30815,37824,25580,21586,76476,92896,37742,21532,15866,19170,25727,44912,56181,19970,11995,52143,16708,3225,60358,76933,17143,45474,86132,60080,86400,50716,26118,90525,71725,60503,86651,94318,7348,36825,97406,64367,73874,64004,85725,43919,82595,59502,25290,35029,3312,47891,96745,67521,84408,52357,29697,7656,44499,73213,47525,5056,25847,54315,88347,67374,97607,49345,58781,12027,33046,12164,56189,56875,26132,94745,33966,88103,7183,90774,35783,92842,29013,65611,88895,76090,73459,3989,50938,83275,30722,27637,79449,82077,5937,57377,45858,88530,53674,912,30820,40909,94018,80115,7816,26104,74561,2705,91974,62122,37016,69517,17477,38019,51028,97226,6673,49859,84730,86661,28393,63177,68649,96504,97054,70111,63445,27477,51404,88860,5424,18470,44754,72106,35064,61723,12284,95257,68676,62296,65624,38068,73402,4939,36567,85369,14556,73044,35478,19344,36594,6002,30331,35308,99504,1934,73767,59565,66829,122,43494,53334,49503,29372,39870,17320,65953,45924,46972,55744,75259,30514,22098,52076,4178,55650,15705,88851,62776,34544,92426,63198,72620,89129,29502,93317,43951,9546,491,4197,77919,40131,11988,52477,45915,26323,50046,1179,91686,82884,3820,1865,46568,4613,1226,3535,44611,92176,16539,11789,94337,56637,41811,13009,46929,90456,89660,42352,99688,72510,75834,41682,60095,62203,49478,40612,97166,47996,79693,94531,90593,13462,67789,92856,12809,71502,53088,7460,7874,71517,94917,75827,33585,77103,24803,16935,61760,50408,81661,85850,70945,9862,50409,9345,97037,4881,20056,56692,77025,48420,44767,57823,6119,8737,53250,49564,2965,27520,52362,33447,73873,64462,87269,64788,91438,85844,64287,90549,70335,92393,83443,2542,61635,24952,51418,56669,43660,24412,40032,62327,74053,23947,79662,60665,9857,64008,36721,20754,21660,29161,86128,23572,90493,7038,13123,83122,5154,35622,91922,21279,96463,93393,27669,57916,10200,84333,87821,93818,18719,42381,24246,99328,71027,39790,42253,56710,17219,59419,84978,2627,19879,25220,54797,70815,1735,53087,64986,57055,10484,52282,11426,65392,87447,7321,54079,81918,85384,26692,57568,66455,84141,60782,44290,22598,24521,50520,16548,24497,40294,79408,84021,89137,82730,96995,24102,82333,38786,23636,62962,4150,35651,76254,78563,29226,27560,78291,4935,89262,44555,49908,89098,95993,70186,88517,52454,2660,42648,62949,91188,4944,11293,79186,69913,38907,4364,66986,65079,90994,88539,34177,32615,13197,1026,21961,49321,94913,26317,67597,6538,42647,99849,61719,38568,57774,67384,97271,366,55078,19617,80039,93806,92604,95242,96815,83916,84283,55420,6384,28930,4284,35261,90310,43965,93346,41666,85493,16818,40773,73959,81506,60736,88152,98659,89378,86392,55647,35030,50881,98718,98076,214,94262,26731,57727,52068,17717,50808,94507,91627,33761,53124,17564,48289,58187,63139,17273,37866,2375,46583,32786,84630,98253,36336,97899,32037,33114,2645,86774,96671,25187,49937,90406,3939,48555,70455,93214,27729,76035,92390,91290,16905,74436,42086,58656,83486,43651,22478,42186,65671,88385,1955,8359,2892,10328,57403,29407,87949,35814,74685,60559,20740,41679,90291,51062,79155,49813,37132,93760,31990,49294,72447,63031,77843,60284,29852,72047,25714,27056,91138,33341,79706,37053,73587,18738,48580,75344,10150,88083,24872,8504,8456,27089,17864,24379,5938,72437,5940,1819,46332,40065,42166,45502,39659,15926,81718,14913,71889,56723,62279,32832,1686,37197,4561,44092,54692,19733,80095,19139,42450,51205,92203,85673,6889,59209,57187,64028,49918,95473,59173,89647,44590,69551,11586,28950,5984,37338,49941,17981,73472,26996,73735,72973,52274,73829,5489,74434,38032,46140,35491,5570,20059,87171,83524,61255,42033,64886,40306,79537,78340,36478,33804,37401,18559,7190,42378,16285,42802,61125,54064,86055,59259,81158,8260,44870,96581,27100,48894,59496,81998,21887,30344,62214,73807,34489,89995,48602,44568,2702,81499,1446,65730,3340,37425,39539,63899,96412,31676,67020,62604,10325,95210,92590,33222,5393,54873,84378,13902,9236,92653,17655,3280,19957,22877,11692,96678,26835,65761,53785,36988,7181,10419,3724,29259,23513,54336,54597,25333,4196,70889,38012,8112,86443,59181,67479,1539,62507,5343,11667,99871,68961,2401,81695,2771,55713,87822,80314,98410,28077,73988,72214,41818,40788,96450,35540,8279,12476,96736,18966,82559,33476,96920,14845,3363,24326,93801,35340,56063,28296,87952,43640,30411,90121,14706,54161,1767,27311,4139,37387,52393,4182,74426,55805,73861,50868,12714,93016,60455,34229,36640,32540,58716,37445,3501,48989,4036,16367,92686,85424,71868,23079,57707,9953,4227,65041,30446,20900,17651,17944,50694,43809,36633,64400,66198,87542,25766,65988,61516,30687,76240,38555,23428,78977,41353,14243,54577,6659,77923,51823,99312,82178,4927,89349,43577,35119,57005,65043,79601,91145,56326,13024,60724,5119,16494,73270,91875,58429,61264,70918,76369,38878,16620,27102,46667,27453,86268,57136,1169,13527,64437,20889,96470,55450,82654,49722,11001,58366,85815,49339,9931,31667,14855,71334,20681,27573,25337,13144,91696,94091,84879,87930,5387,43529,97036,36510,24545,78591,71847,18220,35218,30122,89639,6445,82480,36965,6776,94564,1560,66053,7344,57694,47610,16354,73398,39609,19790,71936,63552,14331,23378,83109,15990,53760,78895,34605,4171,50269,92744,10356,54745,18986,97765,21138,51264,18652,58792,43815,40501,77382,5109,50185,3876,15240,68775,55508,78142,51831,53229,84427,12629,78066,36883,18885,49636,95395,69371,98167,5922,27156,37862,45690,15991,75955,99321,95151,91814,26983,1622,15509,28334,95626,81411,42220,88817,33633,97553,52603,11719,6450,53790,27952,39464,47151,73533,6744,13211,41847,86414,44254,78645,24028,4621,97309,36734,9291,77955,49233,67336,41904,52353,19836,87075,26370,51091,75724,28025,34628,89357,47239,35694,77867,44431,49788,11367,93578,25985,79784,88073,67712,4035,58124,33299,18035,50990,78098,5816,77763,38660,24584,89839,74447,83655,53240,80923,75204,59490,18441,72629,66769,52252,79440,76960,99536,39153,74726,83312,65040,63243,40894,2999,52885,63608,33720,82247,76964,55784,68987,15011,58062,4827,99644,12397,30434,26042,32175,93101,50156,835,38479,53104,58723,32464,17521,53936,65346,73528,65440,89816,6994,59319,92619,7257,95017,81131,71848,89315,80131,7386,68089,74241,83366,33107,27565,80696,14926,85617,13826,4474,76178,99076,63285,70460,97475,29414,95070,44311,54845,41113,20156,67680,9550,84273,20460,41197,57954,77196,25807,45537,61007,79110,71642,23840,96526,77984,20294,30382,83581,57632,83892,338,29213,22440,59831,70729,27411,16632,30746,44198,64663,5474,20663,37161,13137,23371,78579,80157,80817,55266,71149,59011,98133,34986,65076,44859,4630,64230,1683,32377,21387,58141,58421,3205,21728,47823,24154,50650,56267,30938,738,11283,79029,9197,80711,25361,51920,69461,15546,94101,39058,85907,15895,441,91499,12226,29805,91916,73853,80280,88609,10700,89627,79374,61739,68009,96484,83082,3620,63728,73416,70307,46241,25653,63856,70087,35897,56730,11319,24769,6811,77912,63163,9577,54900,66048,13458,18871,7116,54359,65299,69948,48363,73436,100000,61063,4030,47606,82797,82032,89833,61118,96695,72787,17976,25853,80979,39547,72195,46866,36367,22887,91459,73480,95165,70738,50028,48921,54063,39157,56466,86818,11197,4050,76315,17535,5566,17549,33796,16902,20562,98317,53802,65349,16154,96265,42812,44994,67504,24347,87691,56197,26033,13746,37962,3712,23130,56481,85079,31781,65609,49249,2535,46504,31559,24593,40429,91794,57746,9776,57273,72386,68326,59111,71185,52913,67116,45830,92727,96838,83798,5038,80343,70941,38717,45635,16053,24298,10755,13704,68872,96635,60533,4953,13723,62845,77457,79650,69885,33054,43366,99105,48436,42041,85865,78028,37631,83551,52721,540,66346,61458,56679,76997,12863,66663,80332,9076,1700,9581,42547,45564,98225,8447,11414,10215,50348,27619,24185,7643,33674,72240,22931,9419,81204,97061,70680,51015,1954,19412,6697,73695,47587,45460,88584,42123,70210,70289,86487,36955,92503,36391,63117,25285,47802,68491,57505,67867,94244,20656,54127,31309,29877,52686,65320,22899,20675,88004,42163,3276,55126,59361,76935,87039,94884,38229,10696,19234,66869,34324,98930,84307,29045,94124,19659,28097,76052,15682,78195,97797,2335,67823,26089,28346,11950,76316,56889,45723,31466,45006,53407,89049,90349,97936,23377,66509,75107,94194,11973,60036,52595,3018,25976,37459,98605,74495,32288,38964,16588,37446,38856,65464,62668,89123,80243,51884,57612,92655,97450,26303,2913,28330,23488,27308,48538,7129,52279,59663,93566,60310,2007,90367,13373,82174,60984,27698,39294,87490,41102,28706,72124,21025,72945,30655,99429,74790,93943,7662,67128,31937,78390,98858,86532,6641,14472,12056,10345,4805,71921,49311,63960,69318,76011,84829,16608,8678,68957,83560,5772,41155,10693,61953,19359,53511,88133,11863,22275,61423,79460,69838,23181,95134,25407,61657,85797,73085,41080,786,17132,62802,18879,21641,38290,329,53072,98327,17039,85636,12874,98454,38548,98471,53326,27860,34249,71979,68537,36980,36748,39980,9616,47045,87810,12418,57898,32557,66699,44249,17447,41727,79923,96985,79813,44892,68993,41382,74788,43368,38614,10798,16565,97701,31765,31679,16394,32631,5717,16019,45890,11220,74778,15778,45226,55481,43439,67223,47678,17054,91757,17393,43149,39738,13980,21054,80304,1140,17319,74698,9601,40323,18510,13189,3472,19892,41079,25374,22986,98838,64668,91517,57430,69710,7337,18767,59668,15916,9209,60706,3161,18112,38403,84779,2527,64584,50240,54943,75302,62560,69128,6999,65974,50543,20557,66935,68223,3491,40518,10455,35385,69641,17124,2981,54581,60098,57500,29621,21659,57524,34805,36139,4804,92709,85525,2164,48946,6359,17317,41784,5601,57002,34383,74086,24101,49496,7290,42837,78621,82373,29008,29536,90898,39545,94900,53228,14716,94157,18518,79145,5703,88187,57825,74139,56806,60320,96801,7998,41188,61388,85546,48992,9628,92228,74140,33183,74953,1280,38884,92025,86247,14480,68859,19017,29185,21973,96299,52209,10221,41656,3683,32378,95514,20720,35386,13649,25908,66631,38569,67719,2989,11375,57533,56121,27794,37049,15033,56591,78746,55258,49421,70313,404,77180,85020,17341,6288,98042,95194,75001,91384,28949,34932,4915,60803,15815,92746,13170,32903,77332,93151,52907,22245,93051,16736,97973,44054,55574,13001,63418,61142,90269,39562,99202,98461,78129,9411,384,41097,22751,30067,94940,65876,84436,88227,50597,53230,68178,21789,19945,54370,59445,46142,84838,51471,85733,42785,20560,45034,62756,74289,17472,13057,38883,81940,41317,31997,15352,69194,91200,94882,27994,51182,50765,34120,42857,36479,16858,60478,86094,18542,401,25753,8595,99818,63803,39688,57485,34857,59571,37856,40014,75585,11217,98021,11255,77431,98160,27174,92558,87765,35693,46376,66788,66427,35657,72810,8687,81347,37840,87347,77592,54693,40472,58502,58525,89579,55475,19265,76822,81229,9690,23439,79946,77649,80192,94430,43077,50268,97988,19741,89568,47274,77491,28895,50327,82813,35466,81505,80422,20974,86681,4469,2398,54876,54248,73490,61069,48852,16922,12118,68735,86362,66116,78215,5436,75741,708,85512,31949,69229,62980,10412,26320,35934,16749,76681,56578,73247,51025,93375,3751,12490,81129,74449,114,20668,75569,44848,82943,61199,32835,27920,31484,77915,80501,34283,63922,99526,16110,73465,16224,57393,673,24641,21744,70679,32852,27535,62594,77690,16730,26893,55940,57856,88975,15130,28423,63464,64872,83643,27475,26408,97509,11267,82847,50485,80002,20075,94601,66039,21743,76017,51554,68604,30367,43163,20559,11070,16960,92615,76983,9753,27396,63277,91991,31312,88841,25406,52387,22248,5760,87087,90125,77531,41538,46139,87544,30839,28845,87590,15186,75369,35803,78682,55765,51417,12968,91612,20485,49671,70473,59021,3536,46125,68680,49922,1643,47120,93883,81913,94508,87825,79475,78378,67643,15026,30185,18476,93515,52972,95132,71904,10936,98482,77939,31854,95984,31252,76036,28046,830,14628,8151,78508,45174,4934,75915,50337,90656,33422,2562,87841,84475,87872,26523,95944,47141,52574,22334,21114,42513,92431,74672,15525,29712,68098,80239,73370,63186,35749,11545,35505,17159,22923,96239,4015,30562,25060,44445,69596,68535,91840,67986,96205,71840,93114,12181,58018,97200,67493,41313,22862,41250,12779,88111,62420,8257,51583,86136,17395,71777,65021,99701,72343,36828,75018,85066,71790,65329,73728,90510,54072,26140,69781,47673,91261,50974,87468,23304,83760,78969,33768,53697,73742,60001,81650,43162,16214,79845,35956,62959,55482,40509,92889,84377,82893,53554,79867,76073,86378,26665,89462,28463,5975,89165,54278,36971,13665,94790,7889,14658,34126,53319,91703,12538,17954,75312,45728,33963,38793,12159,74416,50795,81181,22562,86539,964,14484,24703,48471,14123,12612,32084,65700,63816,6268,38234,29441,87616,28061,48866,53917,26166,47707,26822,45977,75693,85594,10744,9315,14187,87103,71671,54297,4332,37575,24166,58584,4770,79660,35585,66295,69401,78069,79559,33239,32027,90459,49768,79807,93618,40263,91505,84132,89610,78345,7907,36886,12346,31729,43889,68888,11885,84588,2602,34076,1600,48889,82017,95523,12812,70024,4618,95836,28664,36651,51846,62385,37064,90339,75444,80557,74948,57457,5090,13964,63767,61412,57766,7674,73712,26974,14077,54358,69665,40994,30661,73823,90724,66466,22609,11225,91403,16957,4076,67058,89878,14426,88671,73520,13549,98464,84198,39867,69646,95384,31079,62383,8360,54855,76594,98827,64010,46881,23522,1058,7591,94271,19401,70493,66784,66457,72999,88430,3212,33105,60815,65542,38504,80910,47546,94698,22764,71489,31770,67480,44449,18614,42525,96876,57007,48051,86102,37548,89650,64769,86907,97719,39677,74152,60855,84094,27468,38666,28974,46364,40803,57039,11877,15777,20722,57662,21656,26015,21222,89330,42818,6036,55426,56589,72182,80300,62810,55932,48582,68172,26708,24053,37491,8720,23345,47853,28045,66247,6678,37458,86985,43307,21120,22091,2501,49419,18086,22081,47360,46816,97296,93775,91275,87336,18582,34920,23953,63593,94619,77270,29876,19826,73898,61510,1786,57063,59754,7058,10461,64952,51587,26521,45052,10473,81646,64214,78096,66040,71090,61195,12392,20812,5071,50419,56703,39634,41150,66928,1648,38101,46283,70833,62315,82515,2919,15511,2097,33593,83316,3047,10080,88293,38072,86703,80677,25569,49827,91853,807,91709,70154,71657,66126,93407,3320,34295,11888,75743,1981,8320,61755,57390,98680,6803,71147,17636,13812,38978,14852,74505,94992,93609,22278,15373,88762,91239,86997,78546,298,95189,74090,81520,43554,85604,57254,15933,86315,32435,40843,57979,53354,15224,11164,56292,49306,53857,83222,87180,65208,78228,43966,42414,45463,43776,90130,62591,89399,46692,83554,29664,44989,3720,868,9994,97801,90346,4958,26680,10438,65306,18863,79231,48380,21540,25632,5758,65388,12342,47065,29705,14442,93592,76626,69396,93705,72421,16047,67614,28898,98207,49736,13296,45839,28401,54834,61647,31610,76375,64496,15856,41484,64280,58755,85958,66772,11190,91155,67472,38213,71990,63833,63244,54477,2391,83370,40911,31959,40142,30869,81481,3896,56962,16147,85169,30611,92573,99390,3443,9293,32170,70846,29838,45268,74909,97211,27134,48115,56711,35445,63236,40271,62282,74142,54110,75144,12786,15936,52016,56657,15400,50628,79738,52674,82719,54618,8166,75948,3357,90871,16270,98646,57507,15972,16514,51302,16342,199,72341,40320,42357,74837,76565,32125,74494,93834,31295,28855,72031,79039,12071,61547,62568,86221,43765,30608,76403,95406,45113,46100,46035,67973,65284,91540,71944,50243,45270,78054,58164,17642,96500,80679,88229,4701,36301,92702,71110,42965,81627,11068,81561,58531,50603,4194,34614,32504,44059,53864,98238,58188,66478,59148,94799,15065,39156,60695,11582,36862,43935,77708,84692,46617,28229,19715,34392,91617,71735,61113,83802,4880,48120,92770,33073,37263,59998,92124,36142,73700,57608,44643,64159,90545,85261,59931,34201,49834,80813,85368,54429,36253,36034,93449,26683,89003,30845,15974,9272,95182,69584,29596,39164,59761,93099,20951,52302,96865,69571,46005,97174,98053,77578,55287,14466,89622,76695,83246,71059,80933,57241,86757,24432,5840,35456,83872,64062,82350,10773,76277,97264,42949,38414,79531,72108,7691,54721,51073,4771,78654,87954,7312,7466,59822,18781,1449,49571,19465,73423,65754,47285,81340,16457,19708,4528,42376,29212,94573,62545,66668,44779,68570,83387,22372,24499,29258,82238,24410,15946,73058,69116,43584,72797,52436,84532,91613,99715,72914,34437,69342,89509,88094,22517,36057,26728,4666,82673,76296,6308,87500,71476,28990,43101,20999,76105,95921,65089,51948,34523,23625,38834,58068,55817,2898,90458,84746,66277,72127,26700,68567,47320,97702,16885,67733,39445,81670,30340,97824,1890,93839,38800,37289,82475,81429,41780,29576,14806,5066,51111,96182,16191,51680,3506,5144,29246,58422,5313,639,1364,3050,49090,71937,56882,75865,17284,27123,86751,83834,13830,48614,19227,13524,58064,64754,98784,43516,75163,52383,90208,47951,68261,76746,8104,46246,60327,84111,51778,85763,88798,8728,24442,10516,60260,77519,24226,86053,33353,44359,51231,74954,63819,93509,71878,32041,67022,64592,2313,70069,50244,57311,39959,14902,99114,95669,7383,38149,44140,74190,73260,19402,95478,4884,63367,19573,72057,59386,14056,4405,15087,17707,70628,4809,6539,30023,16782,65870,43232,19351,20057,39926,55557,3468,37154,69435,63815,60729,58119,77283,50839,47232,7665,48902,70243,8244,23610,98635,34133,79011,36387,81922,53518,59189,18773,49656,25358,30299,354,85219,74834,55868,89692,94648,26048,63700,63959,15846,88793,43881,9713,19111,92346,9808,51268,85131,40067,49085,96282,74330,12970,40119,47601,30174,84110,16428,6825,21720,57459,62365,27663,34997,10649,17518,93789,42478,57161,84990,92700,81720,45905,28598,25583,56162,79621,90340,33652,15677,42184,38745,66118,44986,24104,49565,13076,8232,19639,80632,44156,52135,81214,59999,1651,52063,88054,49378,40364,69335,95360,88055,14799,6401,57731,87956,32716,99219,79553,82410,40174,90083,26020,86437,35906,20567,56281,18603,7204,9469,12710,55917,63610,36954,21123,12393,92595,1975,52877,79534,32781,20027,30647,40973,13770,2281,16655,64582,99747,66202,77539,31425,12767,10140,55075,44220,43005,3339,96704,10947,86079,68079,61240,20506,11238,26608,24528,30374,7032,58037,44381,78174,83769,26377,86798,93888,9318,6287,95527,56176,22844,33055,89841,64581,90808,46037,44726,14411,40085,32048,28187,42409,82852,66863,19955,99447,75283,17148,67438,51806,71496,72857,48025,58450,42339,81595,58779,8089,41629,6416,33823,39569,64761,93785,65217,220,58456,26259,23767,84062,41915,94649,25250,12578,17242,4311,44694,94989,70396,96272,50654,79882,75214,24289,61959,47087,57751,65821,7452,18944,76517,95056,47959,62804,85833,50130,57366,88010,69839,11145,20604,88868,48536,72135,47742,35820,71395,80593,89210,38124,76220,63746,15038,54306,237,17524,71071,89260,63738,64925,71064,58081,29349,31754,64492,89172,34349,44404,57031,45386,39747,550,3995,36410,67001,72130,89152,87611,38737,33664,33867,61877,73231,60947,31631,9124,48908,92416,46578,53531,24022,46760,8940,80196,47532,8039,59854,89039,11507,42959,9509,66023,35175,22947,21775,88079,92571,96982,80645,35387,420,41319,18940,62997,51986,50992,49541,66936,91082,81890,65911,72177,91753,73344,5101,46518,66485,42368,12814,21102,90830,68390,93476,750,27459,27741,70862,75862,75802,9046,36900,42448,35610,77056,31436,91174,60753,49315,28125,95522,58194,24390,72988,64279,5381,82441,63433,6409,87515,99887,19640,7346,40447,32797,33378,83965,96955,52947,79407,29439,48939,67240,35458,30116,86376,96482,92043,93782,4084,86737,54824,73508,78983,47013,94969,3532,40665,87857,34194,95671,30263,38089,65472,52335,26762,81044,26473,89385,7349,38651,92509,78225,4816,5311,13450,67277,2334,97122,34276,66188,35726,46842,85422,97735,16657,12975,27744,35193,75947,14746,17740,35480,79419,37290,62703,34369,42553,60854,57381,76693,43715,94058,3380,55752,90020,78110,77707,84757,69887,54028,88729,94382,23341,42698,37300,50492,81951,5823,28289,66931,87025,56081,57897,9815,84248,61574,58743,44541,10486,4636,91931,28373,69975,77814,88706,24895,14393,84236,13543,30630,14590,1882,14065,88455,56633,87183,32071,25127,30037,73993,99104,41812,68840,71329,3304,86667,61757,93575,96178,39420,84542,95591,74001,75131,58878,55213,29942,23144,21752,27073,33855,32897,8957,91861,38872,83720,5458,40579,61296,10760,7474,7117,14079,57653,32479,2442,58590,23603,86090,79733,54241,21573,40655,85867,70342,20123,12064,95630,79031,33974,12669,59742,16528,10244,96438,44043,1049,85640,21885,38622,42370,99755,54593,61884,29552,34846,65270,30792,3176,74439,94610,79655,19294,9091,36497,84903,84458,79939,57060,73387,17400,16600,81479,68265,91938,87743,4759,53593,96688,38049,73706,63950,29030,46528,56809,9701,55922,42765,63508,89379,86725,88659,65620,46118,96025,85973,59116,43195,53969,8893,49613,36261,89373,66393,59855,22180,10236,13717,83330,5637,88653,16137,25309,56449,64162,86249,66406,53201,18138,37616,64908,74182,20745,44472,77739,51627,53057,13036,83037,56118,77778,25656,8690,95409,82500,54530,49506,36966,77908,63917,81966,26652,12862,2784,96200,36559,64018,9086,32473,87179,65802,16559,34337,69153,97964,45049,2532,9017,5960,13988,5322,26295,87238,26085,98947,26223,51016,36726,62423,27005,154,91318,50186,26703,43818,76965,9863,85027,24382,90137,43240,22464,57256,38684,22301,69367,75615,43939,88437,78884,2284,56890,11964,98085,27230,36631,89658,63278,63338,8704,1319,69912,19598,14119,71787,63546,17150,98041,56126,38945,76100,70656,15714,63148,91620,45559,99787,55303,19307,21648,41839,75377,34849,50102,5667,17421,25819,78423,62297,26736,79608,55261,75419,70968,59404,21760,8380,44452,25248,72948,84105,74897,19778,52964,36800,64734,50390,11895,50576,33519,67238,69814,7837,27425,73633,26208,80038,70347,99158,12469,2889,50011,16513,58952,81470,31900,76782,55806,63606,95603,12622,98761,78071,32649,55776,36004,81498,56419,50629,41639,85334,97910,28380,63049,45904,13114,78651,46674,93156,90927,83678,36804,55662,77652,67595,50487,54027,82120,51366,61584,16726,42565,37591,79220,54328,44245,11553,17258,16760,30574,35384,11499,79064,70381,31034,96350,63425,67323,8951,72016,77218,46808,35939,8516,53787,53771,77394,40881,67653,8526,97187,34414,45274,58838,7065,27863,31448,57720,44730,24144,764,23907,81338,40345,68969,81447,21241,13490,28421,62447,68306,15073,25693,35891,21456,73257,91258,43413,91774,57492,73908,72599,18423,81845,78807,75036,50387,41189,54347,13582,36612,82253,8161,48695,6622,75191,26964,24973,26105,45792,99966,72146,472,17508,7373,83428,44218,47516,90090,52538,39257,7582,81987,73010,86137,2446,24802,4411,61500,87599,2452,21014,6869,86857,37774,69238,29565,6060,9888,17354,83705,80818,12909,92126,76258,46964,3122,32456,20971,43868,45900,22973,59572,30961,96408,99323,23451,51339,78459,62443,46610,38443,95294,83101,24993,65882,82941,26040,42794,29385,14419,88772,76163,46878,33414,53592,59436,7262,64682,73963,53208,28757,29533,76550,38519,73509,98271,41642,64304,94552,68803,62240,51204,60201,97609,80949,44962,77565,24346,64893,44280,56129,12,75885,82225,52161,80329,65375,17744,270,54345,33728,22182,5120,88881,31724,74928,52340,66598,7104,16155,35762,77492,2935,23273,98141,56539,63113,69463,55759,85346,46870,85002,26630,94963,75763,33933,71444,76524,4599,3043,17439,63888,43931,8451,89597,13360,2905,73899,64372,22155,80216,78300,38011,97866,16515,49615,94731,82113,8182,82928,36619,75482,90139,54609,863,41429,47714,76800,89100,26776,47999,14025,83047,71946,62117,90391,93915,41922,71111,38287,24553,95269,56884,70438,28194,46425,63155,67291,13241,25137,21990,62920,37825,1046,56239,83417,5351,36471,94056,74829,69329,6795,11016,17840,74206,4472,93150,40340,2777,68869,53608,47926,90709,16357,83522,78670,71020,85791,41073,58672,66336,91249,92458,20642,19244,71732,49624,21579,60058,72076,28656,88867,93684,65387,65898,80455,37219,38508,23352,83293,62130,11351,21857,39205,41466,86998,93466,81687,76045,51093,14743,57054,38959,3485,1546,13679,78902,13493,61253,19629,51746,37570,56108,76894,58953,34916,98384,23521,21307,82786,58564,74496,95264,71616,48595,82902,97865,90448,39123,82897,13311,27971,96063,2631,14495,86149,85760,87236,52473,12493,54803,39236,22898,50114,16157,80896,31488,7566,73049,50856,78276,18179,77340,30637,79500,39934,98889,66341,54511,66716,34921,61963,81983,53349,35310,3537,75890,37356,40562,60591,36851,4331,694,23136,73635,61960,9038,31687,11984,28024,29745,18044,98738,65009,99618,31341,34745,21308,22449,89772,92234,31185,8036,88030,80909,14751,68452,14881,84926,34277,2060,88846,41483,65274,59134,27576,17034,87725,72308,55984,50016,25826,78467,76411,7972,67148,32423,79038,3227,53873,76919,87780,63114,67538,718,90146,47684,34386,96710,50504,59651,2090,29629,61491,90431,59672,92797,11054,44922,42272,39272,3781,64208,63843,24573,75910,78872,94898,36355,86936,37448,57944,54539,90172,34833,88703,46395,33354,64244,75589,13786,42982,88077,67312,2050,26187,78222,10904,23534,57965,48683,75610,41986,38002,63304,68857,98035,20224,70267,61430,17030,19163,88411,66969,32275,21917,85653,31404,87358,82244,82708,97354,69331,38038,14268,6523,62779,64173,55814,72512,95093,99373,35975,86302,63241,58508,10199,33334,49395,4534,41758,78590,58782,79331,34755,3862,49548,6760,73426,8999,41275,11856,18547,98286,79941,72800,93714,81837,87407,4218,14057,31411,25888,11098,5528,13448,83061,15023,56460,79607,16713,97532,93427,14821,7888,65842,55973,9339,94925,59115,30643,33258,50945,3949,13454,2616,75721,1239,97793,64964,21572,48377,95606,36202,9608,50664,91988,49677,9984,41735,41946,15041,52748,91572,65297,20206,3042,69182,36304,37199,45555,32850,95435,60775,93560,57497,54491,77319,59988,98445,14021,81293,87793,6340,73962,11946,89104,98265,89343,41984,99078,37052,75913,77326,62442,9327,31239,97643,83363,7683,47263,86117,63533,43581,8934,20824,44532,82457,70595,1668,83783,40375,6713,21818,84497,26025,46804,84467,81735,51753,50601,86812,35836,84812,87350,49389,21561,24468,20432,90820,30341,32210,49102,31659,96516,77445,89834,55864,31050,39576,69003,4261,21530,17085,11301,75431,56255,81638,95244,93755,90759,38909,42461,7994,97384,32292,23698,69890,51735,65370,50846,28173,22785,88825,26381,85148,71289,90734,46693,60029,69664,7768,79875,95123,98191,76687,25525,86670,75652,71096,29610,17142,18050,75245,46476,58927,95215,87287,21964,8147,43906,95139,18275,93803,50333,71369,89327,33510,76745,40873,83292,84075,6725,12794,84420,51170,66980,19736,36418,36703,76496,16511,79887,78555,55669,25852,73920,25323,50292,788,42854,58249,93,57193,28811,74099,48336,43562,36271,1782,29810,91283,86409,62070,96160,85736,14299,71863,97436,16577,16652,77992,42903,82307,58202,43552,63343,93419,93184,86260,21565,24791,53929,45137,55410,45557,69645,70230,23747,62870,21069,39872,99627,70794,26774,93260,49709,73212,20368,26620,64926,34292,65922,64489,31234,90530,1014,20199,50769,42036,39040,30486,77829,76577,13654,66683,22616,37018,70359,77322,64047,5899,78486,76742,49064,10883,74541,43056,37636,27701,41151,44268,30989,27374,71490,45272,8979,49973,62770,79869,47789,96538,13933,9074,83980,96036,5876,89793,94730,77893,99258,24897,78020,59603,59787,42682,65295,99813,49293,41961,46689,4864,94897,90996,65213,12033,77202,24108,59082,95631,49967,17867,54680,74750,3447,96956,1570,47322,80555,71401,48739,92833,63269,99154,24184,91054,94144,63723,40636,54857,58256,67348,22061,60277,82323,63393,14895,32399,38063,55898,27674,39510,93223,76270,96562,98974,19343,89268,14433,65105,56879,14647,77506,26661,40090,14527,21767,16705,84679,25112,87338,29913,66050,24210,61822,12188,19494,67262,97213,63303,55145,99064,58287,97441,6925,36618,84947,64620,9594,30958,97820,37463,61542,73032,47265,8297,74141,14782,30501,74599,40133,67015,50877,84321,11431,51876,74702,7770,21403,24491,9441,17745,20315,21657,55657,85847,4916,68145,23068,28436,96588,9813,30134,50329,95580,61743,52237,46596,80976,3785,84960,68751,15028,37057,22414,74880,24653,25402,22076,40754,85218,73527,10642,29813,79100,56367,25472,37297,43196,95351,1759,89973,57205,10834,92959,51656,80295,15016,94987,9436,98251,49896,86852,92895,94952,74294,41638,8684,36433,83265,39261,96237,82882,88458,28060,69963,6324,82653,96822,17664,6896,1119,60116,70196,7176,52661,88011,2245,76170,42434,61428,8261,1213,15538,35563,3026,27030,76776,9401,47700,75334,83585,39002,64694,66527,65648,98603,95990,5050,4602,82371,4612,25429,18569,6701,37473,21689,36156,12193,71015,7385,38734,31595,17567,74936,6430,63143,27003,42690,87266,8294,570,62267,34231,7091,90072,20858,34860,60096,77303,67668,79289,75020,18875,72441,10860,39182,83043,27687,69747,78812,76949,87239,23298,29587,72888,48978,27838,92582,55029,60181,84372,12843,81972,87370,87673,6424,77357,90068,92753,55124,27317,50120,18922,95730,75534,40638,85731,48762,13513,83880,91259,19460,43767,98276,96663,44543,55878,26602,98571,81371,21227,13038,54561,12649,4790,31155,73204,51687,52140,28899,77584,65844,62788,98267,78629,47566,3258,62586,62878,98010,37846,4463,7368,71566,86776,97098,80302,17732,10058,29398,29082,58997,16454,54519,80048,23295,79785,65061,78293,82446,34407,30879,99810,98890,30833,21594,11660,32750,73954,48612,74211,79203,98369,99739,989,36784,64093,2841,42100,15062,89594,64138,5660,73744,45182,58655,12264,67528,9708,35185,92505,93398,17625,6158,45933,20390,6964,73951,97353,99802,12044,2194,5615,70696,45508,52158,70995,9949,58095,98379,38448,98521,47782,97433,61451,79414,95642,94208,89106,72651,79017,23739,87688,66344,61436,67094,84414,5547,15221,44542,98490,350,43283,68250,86860,32295,87628,11550,64866,58931,36504,55288,88183,38389,34162,48005,8522,37668,65111,54703,31665,46131,6556,71390,48327,24923,3856,38467,24515,32954,17545,62430,71260,77920,21951,51940,53757,10494,54090,19588,1842,29637,94641,99451,71192,31747,33644,89961,72878,67766,67532,72515,42321,60800,87911,15944,88569,97170,12820,42882,9651,53346,33266,21147,91563,24667,24117,35902,67754,64366,1407,20512,27973,18186,55842,30984,13324,97172,76343,84855,57679,19670,54523,18699,3106,71754,91920,93906,7877,67527,92827,81651,91755,84278,99529,26712,81826,46756,67787,39848,68228,47152,83119,25901,45503,96851,95427,17541,22524,65524,71791,33306,52599,29482,22810,77027,62862,88578,87873,88114,72141,93893,45649,73420,82932,18140,3805,96023,4277,93127,92303,59279,49104,17922,37605,16057,78138,16596,95928,27732,96507,67843,39537,84733,75857,44594,13604,89166,2863,7844,35785,14370,32180,34081,74049,39613,91693,21916,6110,3481,95149,51115,88882,32486,44699,75457,3283,18890,80404,24519,38057,69091,41938,76104,82606,68415,28138,23313,89464,39611,87436,19014,98162,33060,99084,82969,71081,14856,87991,476,38554,22257,47066,42784,4922,73342,32271,43502,47914,64276,44102,72511,6088,60332,98770,82801,6571,62109,87409,37211,49261,13195,15426,79350,79755,65633,73685,7229,32096,34092,27931,8452,39777,27678,24141,94597,71693,43349,61178,17950,62198,95378,41130,29335,28747,24027,26790,35766,18132,91229,23443,90970,6438,72955,7567,46101,14236,94159,53143,50745,20271,99283,67685,80201,79880,80717,68671,14470,43602,2046,49434,27240,47746,5679,23251,70385,89397,34291,9202,35617,3755,71215,83300,27129,54841,24576,81803,41415,60401,42395,76371,45632,16505,86059,1536,65601,5924,28392,10223,78045,70771,54516,32744,51315,89223,52897,85718,71267,58503,50393,78031,36796,49076,89661,98682,80487,17543,74536,73440,88981,22435,98685,86158,57956,51515,76115,40591,71563,78851,7937,42285,27414,72327,76040,29198,93377,47199,66870,93919,94881,22502,51654,41563,16487,10192,82170,1504,99157,91351,84437,57319,88928,11959,4607,20615,71955,91622,85583,98598,48653,13037,60712,55046,75564,80043,11479,41106,10311,16709,78439,40103,80517,25541,29653,10459,74055,46406,73234,90900,14687,68108,70810,82161,26765,71086,79635,95694,8488,4060,54156,24147,25914,32117,55102,4586,83405,51391,4543,71471,56887,8404,89807,69505,46622,29134,90586,87163,2538,96933,42735,83961,64328,29551,94749,76108,61909,70399,92352,43910,3085,25258,38810,20995,68578,46548,75972,18640,21587,89836,4329,37783,97181,69952,30893,53670,77635,56865,36921,84904,77124,63994,78078,97242,24666,25241,16344,30737,76810,64272,30627,5402,45560,42584,1324,18398,14899,25186,24187,85274,58829,43606,7286,31555,44455,3844,44199,95538,24320,62618,98122,50263,10470,47214,98510,73876,12087,48589,60869,90798,78156,21081,48284,75367,12830,94802,64333,69930,35172,23175,50414,97142,63354,6320,71377,43158,59621,4912,32549,68259,69254,96799,38484,41965,37632,542,98899,76781,72448,51492,53604,60508,46264,87514,46114,1287,36893,60906,21741,24157,76469,13948,94797,88184,31787,70176,44865,50516,82983,7379,44979,16126,71160,68475,10977,79991,11776,36116,19427,1230,97287,47726,64791,13488,95323,6278,56911,27031,51818,58921,72684,54352,42338,98923,55007,95696,1969,72519,3108,55032,35825,22792,76585,35008,87723,59137,33003,35350,61290,13765,41871,34961,68982,72282,70,64323,61418,19313,60258,3495,30356,26307,3631,85808,97326,94999,6397,48346,21770,45431,5941,89638,5623,43139,35062,47250,94894,79583,99667,1497,10581,38284,34711,67852,73976,64411,69316,21556,83839,97006,80908,99180,51720,58794,34815,53134,49158,95040,21838,7894,64717,44353,84657,99840,99999,43097,92712,31652,70472,5830,99115,44178,89393,16093,36933,80388,45033,49703,35788,94791,65826,48326,6258,70588,9587,2415,45818,15103,70174,62736,72434,37313,60256,32440,24398,82836,35408,25372,15410,29500,84123,14446,32242,65231,78275,34136,5621,3802,26598,67898,77581,52404,49037,61921,58459,67121,21920,74532,56017,71674,37921,42018,55335,57637,63142,35312,81908,32034,18204,7054,84786,40910,19557,54846,75840,93238,31084,96381,53320,96201,6047,90028,76283,73524,15319,93949,79620,27736,78117,13622,50161,61100,53434,53855,72846,88741,75074,36793,50898,72446,68230,90887,80437,65760,6542,31069,65513,35110,78927,60588,1456,62759,76095,81808,44824,54190,5956,95035,84495,74255,64793,28719,11947,15908,23974,15672,10914,34353,43805,91550,38071,88390,68479,48785,63965,42484,12443,91013,36644,29254,6831,30004,59424,22614,11595,7228,28792,92300,29995,99265,94621,79844,47432,66189,52081,531,84750,41503,47543,65835,71437,83569,80476,9459,15459,74889,80552,95006,31073,52261,13270,89485,59151,6125,21472,86514,92750,36762,88753,73365,95733,48123,98522,33018,44375,13050,49443,60982,46747,96988,53254,74148,4137,90286,44881,81178,53315,65398,72490,52345,77036,12864,36874,64922,61827,44661,35613,9042,27624,36498,21213,71062,28830,5040,76364,40761,80254,26532,33636,95692,25951,33372,55197,37667,41697,93198,46810,58944,43847,24222,27466,78002,15549,35588,45325,97619,87377,61682,14502,58235,84798,28907,40468,93923,60441,9435,91193,78614,84308,69261,51075,32718,78070,92217,39326,31799,46975,32717,535,84343,64482,73888,18198,50058,23709,96867,79498,41360,93766,93469,90843,83538,58840,45220,43853,53094,93187,73272,92522,72864,64045,52173,64962,59309,59548,67535,19624,8622,91775,54489,9057,99198,64752,85788,75808,48397,16763,32257,55905,49492,43639,84457,54777,90812,61107,81819,69278,499,33036,43244,18457,66746,18935,50360,66734,28241,98100,87846,94169,41042,55938,91899,41756,53035,90159,15281,38553,4665,72681,47484,7658,29541,86853,13169,35429,21022,30002,65823,60562,6260,42808,28499,87901,59291,59938,73644,18796,66390,58098,96441,51888,87390,25044,1966,11003,3619,30419,69678,42042,54759,65758,32708,15021,42343,92854,17796,58513,73945,47007,83908,15598,46190,30962,49639,22610,82789,5290,5574,12728,98056,61845,77092,68322,30008,86612,8316,10736,10892,10406,34051,60368,16534,78201,28,87397,14170,9410,76818,12366,47299,65148,29733,89671,96252,41855,61341,19707,67541,49775,45556,15658,39708,89909,17837,6154,90690,83947,28951,31801,62605,70787,10098,96848,35291,59631,87610,26164,44920,28038,38335,34279,9177,33415,95567,54294,87349,42626,5721,24807,72861,37106,44789,77380,41866,91593,79147,50489,73478,29770,28691,52469,8643,17244,21755,28781,74753,73349,61211,71441,36485,38630,71281,3882,49981,19628,57133,48418,65947,5099,86103,63007,35007,51395,95659,27497,14225,81568,63259,78433,52320,58904,35412,58926,26216,34782,22335,22828,23643,21368,84688,52512,9320,65095,61270,6348,2279,12878,98961,82743,99960,60643,62790,26619,72040,34166,43841,3398,10912,73887,42705,42866,21889,92133,31761,12542,98155,44719,8844,97438,66322,65567,86033,36582,71236,57781,9183,38923,60157,38868,46346,88813,9504,53173,14748,9178,59802,42819,47754,36277,289,71121,28882,98615,82843,21555,53161,9280,67213,49975,52134,75153,94733,64902,75049,55912,91427,32968,9005,68603,61464,87261,71361,34874,41060,21822,39417,93082,70605,86902,71364,91019,52129,37637,56611,86579,95456,74187,53373,42474,39520,85913,71799,91913,79403,34491,35562,17289,64128,11421,16451,39851,96155,25436,39798,72180,80882,46744,5796,27842,83791,53199,21252,78785,8558,88238,25617,47527,38242,26686,42534,18597,9285,90581,73640,30423,57481,15228,16965,59944,60291,99074,75604,15022,34685,54087,59153,8629,94842,37069,41765,33141,55615,62061,23465,63561,86271,38033,86127,57670,28083,15486,44549,78048,89377,68044,71378,11119,30744,66708,79617,56825,91748,49837,95195,41383,30180,53000,5481,88064,95458,23024,68499,48374,76050,26747,43359,90834,83869,75207,96494,83800,80457,63381,31743,26758,71427,748,21,32942,51270,62241,95623,96601,48185,41236,14135,98463,65502,67717,69797,27629,89956,65158,24325,12680,844,75257,12450,97268,68398,66585,29434,6690,62334,23642,51585,80970,79685,60346,77903,31378,63081,35942,15276,96706,64122,43025,41769,48870,7035,21300,18447,19911,889,24423,39398,7527,40590,52760,85179,67164,66210,17413,49984,80378,38146,91118,16425,360,62527,93477,25171,97744,68720,21591,51576,19745,48897,43629,55210,90976,16627,12993,28204,64450,83737,41255,41461,23750,83313,83862,17675,17080,3582,82423,30595,59905,50934,7354,99168,77966,66451,34962,59778,91598,39887,33746,4308,61900,11736,39052,36482,42602,30343,93599,14591,44722,78707,89862,62493,27817,73747,56537,90554,87018,37661,40690,10863,24434,4651,39977,86284,61668,21030,33747,98401,45535,86145,29983,70532,75783,20510,85345,55913,10686,42437,23740,600,36359,9128,85553,7879,54255,41707,21686,68784,14518,77301,54562,60225,29292,59829,86519,81207,73615,50357,51588,66730,29721,67399,43944,85466,96991,22298,68020,48093,64424,82960,72081,67772,74279,58765,70626,99108,81942,76648,96759,26329,94021,45552,83377,40577,71950,39655,85975,54036,67871,47133,19094,6395,5235,84452,49591,72188,23395,90008,32172,52474,51119,1626,5889,16582,18154,74558,76596,64518,2459,17574,8908,90672,21443,426,26407,17509,74727,41051,12009,17548,13249,11169,89533,69778,64865,95404,7019,20235,39345,64667,52834,32571,29900,1946,13669,37157,31662,99365,24941,49694,42106,37644,15975,3178,21730,80504,78531,73870,92396,84871,21765,99285,58474,97387,36358,24415,19091,55629,50714,47825,70706,38641,67203,32274,63957,95278,64460,3199,39221,45515,2264,54923,10878,14551,54201,626,45493,61130,88836,88198,36434,44281,29694,29423,88087,19300,44518,31800,66459,76762,17236,72752,66528,84363,40784,69973,82097,72502,26865,31067,64006,8963,57146,8987,10709,13103,76567,90403,50653,97033,25206,46784,72412,70976,93884,58621,6508,58276,90451,1617,12908,18018,62498,18231,61856,75195,75043,27118,2755,46626,42558,35148,75982,81406,54384,99082,78748,33631,37565,90256,64144,84997,9289,61539,70330,54116,55415,24178,30633,91914,36239,30988,94805,69492,13177,66543,68187,4835,21510,46607,24674,66473,58546,98645,81118,72806,55306,96220,2058,82404,26527,76807,45295,57180,26780,50535,86125,5504,59276,89175,30957,85253,69872,37682,72529,81522,99643,49025,25657,33578,16645,21238,3774,76710,44030,24228,9303,48451,61029,84184,52331,691,42480,46973,59432,85004,30111,96481,35681,85363,73657,94858,63972,52866,20333,20713,43695,95664,63733,60021,45358,12787,14020,84448,65019,37995,13899,83630,32974,34289,25758,86615,35266,71363,46353,62491,14394,95734,94624,38246,58771,12059,24040,83861,23234,78245,47855,14612,13217,38577,87939,3356,93889,41880,94816,58171,81621,14147,84720,20028,17297,92441,253,57351,16936,60543,63231,22922,24517,46635,63713,70440,98197,86506,46938,11332,76663,14764,84723,23342,83691,55295,15148,79936,11387,48707,95301,75554,40109,46262,57073,10045,62339,15924,88621,52041,30857,97526,93174,80799,93312,45357,10364,31864,66882,58339,85468,69755,42700,13674,36518,66146,84288,98308,93600,47053,44607,665,103,68406,377,63562,72646,13554,78382,32876,18995,4744,37509,32690,8762,37244,71253,14745,71881,6796,50817,53858,67559,83458,37296,51941,33262,26481,85152,70676,176,6873,15824,95967,81208,79316,30318,95541,90228,49927,72611,28549,82491,2219,44187,58766,38656,98126,84000,48335,50065,90679,94093,23167,82116,92123,77599,65806,3121,53459,31643,3350,62945,16968,22512,94427,7737,77237,47675,70748,15199,40357,9351,69389,5018,96153,315,35993,53842,87282,12031,4285,95922,30967,65891,87458,87203,74448,33423,22695,51282,93475,72312,78672,41973,3886,45691,39144,46720,96769,62244,48056,65924,78666,34465,75059,17266,38721,6950,17264,56696,90771,60354,64466,23272,19985,99989,87242,82917,66027,30881,62015,70043,83615,24365,46865,31248,93289,52984,67256,96592,41316,19728,78635,75792,55391,4037,14907,38235,64948,23728,63951,6700,769,39896,76058,90460,66995,67320,30377,93061,76181,51308,56018,39333,45430,11045,66453,11805,48880,45311,80914,87304,85126,3772,5126,84962,79238,95124,70367,11179,92297,12350,23512,22016,36372,226,302,93172,70957,79962,98788,67375,79413,42158,75810,83087,26837,99232,65873,93622,9943,55594,76344,53690,61206,9790,78120,42872,27130,32534,66016,93693,73838,87727,35263,40641,39213,16830,3640,19352,24795,7555,90613,98931,18202,65006,13808,94737,66223,40495,77548,90229,48038,7437,20702,27319,14964,46710,27607,9250,81161,5979,65288,37909,22578,9048,45992,56621,31891,1055,80528,65607,61552,54149,46566,46562,31684,21512,45845,99163,31993,62735,44121,77082,25095,88628,92453,99582,23761,91744,79174,57399,5625,60177,27803,79477,57962,84081,26071,66511,7352,66927,57020,73782,17862,23811,87885,83576,75506,66556,78357,95312,55074,14510,5063,34994,42410,74510,11270,68656,92491,11171,40380,83423,27918,85127,82537,88831,90197,50089,33340,83698,95507,13273,38391,32632,58334,12870,25839,15453,21039,89215,77338,66426,32697,39743,57851,50831,93363,90839,94168,46965,83564,72964,69111,25370,96906,47116,88341,54418,65106,79783,89077,39821,81051,81244,50841,32537,59447,50175,70888,80207,76775,13926,98546,13967,44415,28970,48857,2926,41502,97468,13348,70746,79283,85835,17565,74540,99530,77038,81152,41733,95355,76,88510,91804,33355,49126,80709,84113,99761,61983,15654,84726,83474,13861,37939,58494,62512,83088,25089,95428,77579,32546,16458,29912,77517,14805,88255,65357,68232,63025,38464,45119,63492,17274,80567,52039,41477,87114,81019,36894,92369,42666,34634,1245,34431,98208,82377,45318,72005,67845,89855,80259,6130,35357,79931,67916,46156,95715,89489,75963,62335,33426,14031,29252,37748,18821,38136,83456,26904,70777,8587,47387,68633,76652,51290,12208,92548,13638,1675,82426,79149,36579,34316,98098,76038,30277,84346,61006,44760,37737,46315,41372,3642,73098,19373,61503,20638,69951,9619,2278,61053,12753,38683,64194,12895,37292,31550,70241,9570,72116,23286,5846,57817,82354,52177,86689,58813,41450,58730,47309,79393,78074,8330,52656,54700,23369,29752,85295,33846,89155,84927,2767,91313,3331,60788,88081,36811,55365,83241,2952,51939,18946,36846,66833,60738,10771,49780,85199,70858,2901,28345,53086,96018,32161,87979,45668,71357,58908,7578,69946,74319,98848,39760,25142,3651,75171,58275,13066,59002,47311,60510,99924,21681,11530,69496,61131,89151,62901,90348,71257,87400,70211,95679,65932,21243,85470,66074,55618,63411,27044,38990,74669,94581,80587,428,23582,22229,46127,57991,78469,36861,36835,25522,39674,17723,28837,54176,3248,49359,89954,60231,52285,93073,49394,84383,88952,66024,20453,41779,37082,61952,57429,45670,99496,41191,85265,58535,80147,73521,15082,70877,30450,32965,24223,29269,66278,27594,10103,60431,59438,43342,10646,42342,25790,14774,35265,87248,21842,49714,2608,28957,53051,11883,11104,63047,2359,92198,19641,79956,37265,57886,38347,44680,57299,27219,78624,54411,99244,94372,23554,8881,98843,21926,41025,27829,17814,83415,85320,4970,34464,80901,27526,25814,87392,47456,55270,36652,21158,80498,26247,59460,72045,81216,8873,32917,86258,61334,85870,90240,77941,54920,52589,65612,57367,96070,34127,7630,12966,76979,16842,41493,61686,16740,93497,30266,59844,7517,57228,68438,48241,15120,40824,77723,68582,50277,99772,31437,73505,97017,6805,31002,56511,48373,91793,70765,71464,46360,87162,17087,44109,45138,85909,28113,37736,29123,34569,87714,7196,66777,72716,86995,93219,76492,77228,16926,84087,10961,14230,13619,53056,75570,10222,73241,5196,10508,90132,20878,44771,70436,75224,96992,17576,62522,7291,22488,45204,90877,28856,17756,31479,32709,88127,99568,69135,88221,82275,53689,99826,40216,36680,96431,89955,27060,5728,2765,42023,19678,46948,4731,94325,13642,9108,76713,27503,73456,37672,44300,75930,87184,55164,77764,9664,40600,80579,49191,78742,60985,43318,44113,79703,86179,62733,10632,75099,11317,46280,23336,15396,54647,95271,59154,25982,82466,57051,70034,72820,30201,11832,75475,37676,53044,88120,66512,88685,8010,29196,9039,48791,48566,95385,43923,39446,40815,66942,28413,5472,14108,59268,87566,29115,38137,40943,67226,4729,15614,10634,82761,8236,982,9374,48925,67706,21404,78158,55602,25707,54490,36025,95373,68271,36010,94095,16083,38867,52249,9544,31790,23976,86666,52942,39999,12667,9918,26464,23638,36144,76303,81442,31519,9203,95390,47372,80840,97299,8063,2875,17094,69043,5755,80578,70253,80163,65466,38533,65860,14521,27657,62872,76468,38367,3764,41101,25194,5731,6519,24651,67742,72694,70705,72449,5762,90252,22653,31686,69538,88969,53480,17714,119,2914,42232,16416,24250,73716,63263,96301,32167,88484,69118,13386,6400,42224,92623,34497,4140,20641,42497,6198,33148,29522,93201,56205,2209,96211,63924,44710,62217,11750,84371,18175,97830,33025,47064,30770,15365,95771,75415,95597,24873,70201,97294,15278,14987,98786,98724,64556,34843,12609,6770,56078,51188,83746,20065,49812,9012,12533,38731,82957,85361,48016,45253,88460,43435,50117,93096,20018,28979,32459,31970,17121,16347,74229,1814,29638,42087,49324,23280,85509,86063,62826,13520,85552,59049,20530,60406,18062,97388,71872,93124,43424,23164,66395,4863,27270,35733,51762,69107,43883,21108,50955,35113,57925,89033,75590,95147,47938,89826,91990,87870,72626,67927,53489,62807,18216,34536,77933,15806,72046,69189,25687,8290,58367,80279,84685,51,36146,4487,92263,33152,26644,50967,40703,69593,13968,71646,94554,14954,6812,37572,61672,74466,21426,53151,95225,91806,65602,81649,36558,81103,42743,49608,48356,99092,67947,18368,56936,68864,3934,39531,24575,95774,41157,81871,55095,29511,26149,32488,12915,34308,22664,90408,94199,24669,95229,29550,40261,22936,63238,14729,15607,650,85564,27297,76288,41363,72009,74488,56045,53487,30554,71240,25026,92941,35470,42709,94143,49411,2301,87692,14575,64729,43469,10909,27227,15304,95272,84673,35013,14206,44164,5146,48652,18578,55515,88422,77944,96870,98016,28843,76871,39061,38797,97404,36544,34377,30739,25734,97042,92676,34877,45621,45075,48514,19009,69965,57360,83479,24705,30899,18341,78615,58405,9626,43038,1731,63104,77738,78102,1839,30075,29265,5555,93651,11165,82051,13518,3859,71667,97318,37482,4206,45766,82418,13008,45505,23600,68042,81008,37598,95118,51026,79113,74045,64084,59627,66352,81297,84606,15192,32439,13325,93501,75766,11987,29370,25723,87159,33200,64177,45786,28422,47515,77416,30326,52456,96953,57222,99310,52723,93765,49350,70744,52827,63095,56143,55330,49245,22869,47624,35021,15966,18726,63671,35053,46228,53519,18415,45306,74731,91730,41326,48756,74811,54772,83509,31481,4378,89127,59678,77156,21035,39082,45112,63717,63323,53024,8709,52418,67578,39818,18709,81844,58860,49194,56918,5138,61075,94857,45407,48045,85290,96210,75069,19291,29497,45280,71877,57686,70830,93267,95568,37895,68162,2869,44791,67831,92795,80726,51506,96259,33329,23269,14416,97027,82546,7492,53717,68853,43127,64277,18315,6057,44788,56614,53302,4572,37875,24863,70511,34551,1887,86682,52047,72223,20320,31015,19537,80773,19761,36405,66895,37128,88345,15519,15753,3169,51396,79758,9644,70423,23939,51817,19471,87258,26359,96633,13378,67576,1034,38088,77171,89283,97655,78817,24533,17697,49979,1949,72991,95534,9328,49206,76334,54704,78562,53066,52991,77005,32719,1987,72320,40462,37433,18205,3032,44886,61022,29826,67800,45021,29887,484,92095,56024,178,76951,19698,21278,35001,41435,98829,73718,60395,87424,52702,23712,87520,59063,73081,80108,67551,8712,10247,58752,36824,21690,30925,17260,9811,8843,98065,85858,3328,30867,50044,3104,33023,80215,24033,68533,62090,43735,47733,38393,60593,76387,60232,56997,35325,53478,26584,97251,18055,35843,54558,41579,47765,97379,32496,75298,71661,25561,43130,93310,17462,19996,73095,93682,98144,56059,29016,20490,26322,55292,13235,19922,99642,24632,25658,72506,72536,56173,57137,24255,69307,10750,95100,25576,73785,17505,63479,38370,86394,18768,35876,24935,74293,5557,96427,2925,28198,99482,49167,56573,69844,12263,60413,41972,93687,59067,36270,15628,77960,79550,57835,9641,15857,5317,96792,60191,29365,18919,48018,79692,94293,75775,17091,98106,95873,6727,69896,69595,67581,36833,48449,26081,75719,442,83708,55233,97442,63776,47298,55086,87499,16883,87346,76635,61241,89644,85551,66185,22028,95491,4238,63682,49801,55731,62917,76858,20701,31380,53477,15951,56330,73638,73725,42767,81032,93713,63550,96341,59642,35186,44017,45896,33364,62961,21578,29137,21809,32005,85201,43982,28726,92142,76367,41416,28374,39541,69932,59009,45926,86051,54391,63086,91624,10347,37253,9907,78832,7544,45744,17239,238,82110,47901,26593,39873,78416,56984,43372,23157,82236,6702,50179,78917,21228,21343,87789,51136,42801,43623,93090,80572,83260,53904,65972,42168,47957,91177,46282,70986,14406,63870,14381,8033,86935,18594,42244,89923,49786,60097,2349,59807,6346,66452,16272,66961,16845,84002,88943,73661,88998,66102,46750,46713,6485,14217,36152,12521,33840,84460,23308,76129,20099,30421,21662,31822,1666,41428,81544,47677,67063,5977,36442,81142,25633,48031,56748,49833,20902,20429,13162,24262,51873,48456,42215,90896,64538,7562,26351,95755,78493,98373,44775,33784,92042,59060,73851,72869,99943,66215,44115,80597,84837,39841,11966,71225,2747,24384,36033,81428,62485,70571,88894,93711,99933,9597,74108,79261,5093,1508,57918,59104,45776,53789,21115,42600,5706,92682,34314,1402,25664,97065,95793,74401,45252,47616,12876,29473,61505,10615,82918,189,74710,9445,35420,27407,88344,24231,18791,56533,21263,1584,7725,93982,54567,28717,57587,64935,34275,65174,63893,83883,1265,61271,79893,60592,24890,76251,85177,72459,53535,72443,69874,39626,6881,34898,35692,90126,21843,45528,67893,41225,49215,43857,82584,88492,2193,40688,26305,31625,7654,42008,47302,41067,70529,43117,50129,45429,16299,67588,67455,56892,88856,66505,72908,88738,56153,11866,73569,75442,29862,36460,96718,32962,47832,68717,93516,85654,57192,22047,3041,51732,73019,28919,27413,35009,76571,94154,18535,56087,43205,41100,8962,29933,80628,10835,87680,65789,85099,28354,59942,56579,68752,27485,14882,62342,10930,40672,51043,55083,86608,22462,44579,88243,96841,60552,96711,69130,99648,87974,19907,27504,96569,51203,1006,73515,37061,55166,43636,12122,64434,25124,55608,32405,75024,33838,10886,9816,95787,46233,29630,23171,28095,9495,78487,69326,95828,43852,55509,84808,29130,80460,28279,69657,78250,87476,52293,65661,5058,25640,10307,69010,75019,59166,53828,97040,55137,87026,55089,62260,6949,81548,88769,88351,940,85906,66015,49558,33092,32438,5802,56638,97416,77373,61792,59888,77146,44837,10795,35872,1642,2718,62887,32414,28415,78233,75514,94423,35566,25294,68852,77957,28715,90950,76101,52916,63091,94451,85475,24389,58350,98228,40282,3662,78680,82905,39094,56015,25209,99175,88840,65069,68715,28057,81995,99581,78879,71675,49432,36255,3759,55243,51626,31871,50772,82700,75702,35383,35213,57981,55877,74135,28080,53353,24995,30014,18694,22796,83667,7881,42762,70175,47808,96076,9382,75656,43766,61568,36715,58022,45739,48205,23307,23105,90358,69333,83420,49174,48768,40972,7664,86412,59381,22236,41572,62079,88135,9021,60646,47548,95763,83271,90821,47050,37359,89469,48959,6421,19151,18309,63617,53777,57824,83251,13478,23822,89040,19488,20840,94574,60270,55308,14162,61138,29993,37662,98798,9719,93196,37393,60100,61780,57306,7821,85884,42699,2207,55346,31906,86084,48072,39623,86428,88816,49132,59660,12206,84318,7700,50984,8152,27326,36099,10844,2727,16062,98542,36464,2440,12247,46216,50775,60023,50035,46991,30646,94313,41853,25412,59379,72283,83555,20477,41462,49327,73475,40547,56090,32406,59869,27556,66604,70414,7841,52087,25550,8971,73941,78465,77631,91267,36199,60681,95297,98815,93668,77549,23911,71972,81933,34742,80175,28391,56417,81877,3057,20204,14756,829,44453,47221,80385,15213,84384,72352,2544,53808,7434,25883,91971,59094,83865,1801,80172,61862,61052,84834,50693,24877,38928,61666,42724,51602,34814,25830,91294,27070,32872,45963,54930,40833,33042,90932,34537,49410,49022,85432,17093,75255,79519,58559,25006,91827,56469,48551,8,27120,37940,23736,33545,32312,51340,34139,88032,79821,14755,37971,70475,51858,57426,36885,68878,9194,24203,35597,57124,19449,93817,92693,58057,52003,57997,69363,38917,41152,32627,54620,24655,56964,13709,71871,89997,75768,96976,77503,7884,27344,83437,93718,35493,23864,92577,69097,53661,78588,5835,59788,75977,56716,98992,31723,77759,45088,5221,56190,15818,21269,44602,79549,80880,56222,30913,63773,93944,27282,83960,1139,62051,99116,32176,5793,32501,49876,46733,84344,60437,59883,6767,26544,72330,65124,42312,12351,94012,55825,79356,67999,48086,80480,15873,51095,99889,17560,11449,63814,86446,59110,89459,53749,72704,42431,6499,30635,56294,43859,58974,51800,44931,21827,76324,74490,72663,34832,88138,73048,19507,65431,8533,43517,50267,71647,16812,14356,66537,68227,84303,65784,69956,22793,56521,45370,29388,16895,82393,73965,24341,95510,72554,45815,96852,17810,15413,18775,24260,54790,43950,29165,865,5686,25762,21997,83307,97972,11682,45641,95173,18512,68743,56870,27266,5959,48826,57862,1157,97108,95043,44223,93064,5095,92064,74957,31198,37977,53391,32711,78426,65138,74047,87149,81425,52568,3073,48603,62251,52073,2447,81231,91805,43774,978,56854,46951,57683,81332,29617,91595,13605,3554,85602,36107,90640,45578,10238,56465,66035,62572,72530,25300,71394,21807,83147,21181,62362,2423,93386,97750,93162,96090,37314,28459,81288,37240,47379,94495,2364,49143,61619,79659,10859,84552,49449,58577,94520,39524,77068,61947,56263,98299,41702,31913,76628,22211,66899,58929,23031,40957,10782,89402,74525,61399,53862,10749,40669,98416,14503,89352,54214,23133,34348,84101,47093,34557,48423,87558,96293,48302,93956,65256,18841,89989,6801,39436,53563,15464,66714,90475,5521,84337,41332,49362,31354,94123,71609,90204,83529,34531,97809,84562,43508,11711,90930,71351,16248,19569,68684,59813,69813,61041,743,36916,6076,80130,76370,2176,98081,46812,62813,67378,70415,69312,33675,79753,34403,22682,93805,67149,36191,72496,91838,41799,30834,34683,23654,61722,88143,2192,17348,23930,71641,47617,64993,28177,24450,1483,95785,74735,67672,96042,52968,35506,80185,55682,17861,81493,15766,5039,15853,97254,26385,9631,39325,50191,84629,6257,26233,23639,36362,47565,66653,5841,56356,55358,16028,48966,87554,19327,38183,16286,1198,46945,1156,99261,62048,73895,30612,17685,30483,20786,74029,15479,96193,77370,53140,4527,91960,19390,92644,66312,2057,6075,17102,27702,96358,98433,68246,44864,24463,99967,40388,30031,1223,30119,17743,51767,56266,79688,8621,32945,60148,28480,44497,1290,16041,23969,75887,82756,2499,99065,69217,90770,17226,4722,6183,93691,62361,20227,9707,84279,197,58389,35484,61151,41320,36548,78815,37065,17674,21640,46267,64297,5515,81366,75512,44412,41833,2876,46485,54354,16014,54438,10248,80,59228,47519,73667,32033,56223,42371,23165,62806,61054,54554,64678,60944,90114,66966,35235,41368,63336,7231,29107,20776,50618,48386,88595,44711,19215,59525,15054,53596,44051,2419,20783,47887,66681,36693,22426,18013,44721,73625,2475,20817,73723,28687,44593,92757,30007,23926,75174,56483,3464,61689,5999,72595,48645,60383,79442,29581,93102,84529,54676,66492,98949,86649,90946,45164,94795,41655,54875,26943,86290,18643,61879,85042,11138,57636,44163,77372,27242,6573,81615,43411,51834,80986,16611,68138,61725,34436,87167,25974,73209,54611,56486,96503,46211,75545,778,93325,651,10964,75265,67019,94607,90169,59977,64858,2469,66916,3315,84255,30732,63506,96197,99292,28680,26560,61265,64454,16240,71573,25477,6885,60625,53901,9337,4200,5588,88661,59991,47474,35845,29091,94819,3565,12468,44733,79948,96462,60004,3956,60912,79310,78863,57120,2233,75908,47395,88599,74324,61591,72189,92776,36385,18036,5363,95086,72577,17187,36400,9350,37431,19053,81812,23713,11029,37815,42065,3457,23688,22539,53607,65736,32707,96591,26167,15892,20782,7425,70478,36196,15369,18108,41406,99606,54334,67176,29239,22519,77451,96483,81810,94435,72822,83566,14994,82126,13075,37117,24757,48685,20290,55154,89478,5968,5944,52144,90138,72842,73764,1644,4631,40683,52102,60093,33430,29592,79728,12180,91296,63944,27401,96312,22308,82304,62053,81678,59877,98252,9375,23578,43285,87044,51321,62372,37773,61612,21151,83270,75112,68618,34469,31646,7244,72801,790,65583,25133,40879,11076,81308,46677,43995,63064,18230,30626,90051,89962,89701,16647,36757,55216,35016,2063,75895,3604,70950,30190,63740,36368,77987,6138,18862,90723,97537,26605,87070,97663,11321,65690,21976,19602,20222,85861,79128,72593,37098,19910,97826,39394,8239,49151,7745,63073,62376,71291,31388,3257,54958,49974,41543,48699,37078,90484,38455,17575,87672,9468,52054,54625,24950,71159,40712,49463,63749,27880,92096,83730,47916,73960,96771,76197,23928,80718,48475,61475,61144,5371,43534,67756,93920,42579,24698,75659,24357,51177,99947,89401,80826,16547,98696,60601,32588,1221,33544,39167,87559,32703,75189,65139,407,65550,15210,42657,99651,42457,93086,56853,72764,14435,52679,96899,25455,47382,58928,924,24487,18800,58278,15366,80146,99500,75921,6588,18583,59657,35639,75738,13088,49846,46588,5817,86499,32468,565,4497,93966,11685,47631,2124,86947,87997,5392,27660,95558,14688,45063,1520,98735,70118,16322,89779,98520,86024,68794,61374,61618,61515,62926,21965,54093,6575,43161,85059,4788,90851,34224,13683,94921,81399,76110,32676,80466,75414,54956,26019,87042,78625,61941,79742,58657,269,20932,53769,4222,51979,54048,70839,78131,28447,93222,35724,76202,83185,37320,84890,17065,25442,73530,45281,61624,98377,41381,2337,32203,71964,95797,97931,41940,87434,8025,42679,26693,57477,22573,38139,70079,49063,71246,1292,4502,41830,10851,91896,60734,73720,21042,29972,85222,2850,722,55988,4513,98826,2536,76217,13840,96356,95859,55096,90644,15007,47572,16207,16891,29661,23471,72402,49535,26397,94183,53896,44773,46612,91412,2363,53450,26461,85394,8393,33926,24490,99197,96565,26491,73481,60901,693,41304,20703,4133,63203,83966,49749,98013,30530,82981,1073,57294,2910,82199,26812,59163,71446,38312,10006,69260,85166,34507,70360,44477,43932,93321,67332,59253,96583,78694,81483,53967,92440,36114,48777,5900,85483,86192,38450,48662,92315,11460,91601,88646,83793,898,67700,5150,61759,71199,69823,58205,94225,71084,8356,59499,71073,66286,65352,72089,45998,1777,38778,7774,57531,71113,9797,44201,23690,26098,12269,32224,97393,13863,61774,56503,92307,57846,95860,79611,14395,82487,70459,47042,88199,72678,1781,99281,35224,96743,22495,41480,41954,21550,92972,41595,63752,76918,50595,16498,2160,97786,66554,88711,45442,92172,89587,2373,14275,7954,25935,60843,42495,82858,88582,46524,34732,15264,41082,59513,31297,29657,26970,82677,32324,39467,74879,65560,35815,89952,50649,60166,27682,32864,89355,85548,56977,14993,1973,94410,96343,51458,39449,73431,7503,10044,68706,65011,98973,30077,38127,18038,72010,60112,50498,56556,10540,47506,36969,23490,58400,54881,70587,60370,16016,16426,52917,43229,74366,42745,57765,49705,73449,27849,79410,79855,35275,97439,24844,13552,31112,59649,89988,15958,14803,91558,70545,65929,54636,74228,53829,34829,26669,48504,91323,39993,27498,49814,66849,12442,84635,17906,91473,49450,65414,98488,87128,63302,62143,98812,56668,3334,50086,71161,30567,37358,4588,45736,43870,78242,44629,82254,22173,9427,86723,8408,796,16332,94536,83734,54344,58375,81002,93680,11309,84466,68212,76961,51014,36286,74310,62630,99615,29488,25034,52765,65677,90160,51528,96968,10297,30876,41716,48387,99895,90801,23482,17130,1585,58665,91076,25582,23544,59341,19864,45160,16684,36508,92735,60723,27495,87844,57462,27911,85133,97550,60721,90157,72729,46460,97248,67458,83005,73746,63967,54351,83633,17223,88373,73244,74693,55456,52378,99865,57494,42760,37869,7132,28381,17189,44544,13591,892,40208,70354,25257,70094,90175,98455,59956,90457,2064,9904,23757,54961,26193,3586,95077,69319,85081,17550,46047,77794,99404,16507,65311,6035,89982,95219,21810,47834,12158,4290,56861,76450,42475,92435,48708,50104,86466,12638,78803,56127,67784,5437,9168,18992,93118,54710,23887,9355,88331,9159,24776,51860,14046,50232,75537,39297,1783,65910,12559,75624,28911,67995,49105,64711,40079,86469,90289,49825,76804,95203,79274,15729,63889,58859,31664,81865,25865,78827,54913,45142,82107,29055,41147,287,36597,30909,22249,22527,16919,66865,53289,76184,70395,96844,64954,94185,22039,51590,10066,59665,1188,76824,8573,3548,82807,52677,5326,8347,33845,12014,93980,12580,84822,94995,92184,68583,72963,95548,41340,52137,30521,4316,63736,18865,76373,30636,2500,59292,38967,8691,19098,13178,93301,88287,88796,25889,4694,24354,79115,73350,17956,45919,76432,23909,78444,61349,24621,66575,38499,87127,45875,714,89363,51578,9751,65265,64356,871,13244,5092,12130,24727,41573,98509,96203,25046,60286,91086,81667,40876,32955,71350,51436,93237,6582,79312,30191,95891,59220,68017,37518,6481,94569,24086,74966,41427,63788,2258,19037,6254,52957,7831,25166,88357,58372,31853,89744,32001,35710,73118,50293,9249,32502,91781,14278,38354,77614,34159,98124,97395,59240,99119,89975,61074,44691,6435,62757,92705,55811,99049,75591,84604,67636,47992,77236,8110,4844,12123,32247,15512,97358,38894,5995,29014,97667,834,47049,85028,29236,732,66859,74651,18623,71980,30691,88707,35073,54341,87301,75052,8755,59136,34244,98821,80956,22358,2286,32476,46400,39368,10668,80395,36012,22037,34147,81305,16328,79209,98935,74962,20140,79194,3842,86009,64426,18176,68896,82683,62850,24781,64026,14479,11480,98421,79873,64139,51952,67029,64995,77689,35437,91227,75566,46556,92444,88163,10290,23779,20364,52053,30159,41570,50561,76172,75428,89990,340,59062,99214,69209,37222,17227,5107,78318,43333,42129,80436,60852,19908,85029,94853,43007,33536,79743,2479,97918,59412,47725,37370,54288,23808,98030,45277,10585,10596,59830,25347,26809,12054,6813,47803,81250,30853,86473,56803,3039,4901,60639,64383,75645,81701,98023,40003,82294,77057,52121,14449,96404,48863,26697,63223,36664,74476,2787,3182,30472,20280,51430,72798,57993,11397,97405,36053,7976,21235,27128,69822,34577,53068,65344,38634,78343,27541,31116,24830,47578,49425,32139,66685,13436,68530,29520,3404,49587,91060,7467,91928,7234,47722,91047,52027,76575,2666,53269,23300,77019,32351,6129,52788,83617,17616,76945,51012,59212,40474,76232,19716,36209,59013,91514,29393,8267,18488,12283,65941,54957,23590,37368,39787,76244,90494,98415,24773,30871,20540,80235,14880,44533,23032,98570,85505,81042,90085,72580,59280,87118,61351,57530,46575,39248,4948,84510,78407,57643,97332,34288,61312,65331,11366,11248,21844,22964,63802,98173,98473,48084,56951,98594,47884,53220,9633,45805,74717,9208,25863,27764,67351,87086,80356,75573,9586,4242,3594,9405,90469,90955,85798,89074,96429,6026,79942,76930,62259,2498,32462,23448,64606,38026,22389,49520,59680,8850,36990,79027,70730,38240,93433,38808,75128,67561,33350,96281,97749,35535,11146,88873,7289,21935,84409,93215,81756,70397,6338,24006,65683,51564,71458,54485,94914,79737,87596,84422,1804,92683,27439,81427,2319,64247,44137,59783,46368,98032,25646,36439,52112,48476,28512,42347,50295,42902,65724,97920,58659,79406,80233,94103,58541,41296,9023,36922,90878,67227,60598,99469,22339,48087,91535,12474,40717,81420,50403,82401,34188,29563,86674,33901,41292,31200,41440,241,1278,91919,98089,36853,98960,96866,25510,13020,46292,49698,40528,6694,68074,4851,34032,18191,3410,9359,62780,26206,87653,47169,67321,98632,31902,44103,56195,93013,32198,79395,40839,40668,36163,90533,60660,75290,19212,47772,44081,93787,39795,4233,34246,67070,82550,72013,58964,25200,8679,14491,99195,42661,24236,54938,31634,73967,97496,24285,74878,80270,60074,54304,9575,9098,33038,8696,99879,63759,11672,80433,85047,92186,15408,60026,90007,45760,53774,89731,88488,23933,28621,44213,38118,10823,7759,68594,99316,93953,36981,1910,41001,49426,48117,90604,48741,19199,8220,13938,1277,18662,65339,55377,26120,57046,26842,12558,81325,39874,42257,29089,76306,60890,39711,70278,26870,34339,39365,36008,66309,24481,84353,82874,63077,21219,37671,3396,24155,38309,83070,82859,38625,66460,26191,13637,96858,91134,78696,5549,17308,87376,85266,74844,54431,4270,40192,58204,91360,63159,46813,26427,61071,64321,88690,58014,97978,75468,68672,4088,65592,18319,78837,23652,90619,10539,11929,40412,67052,63745,95843,7828,90329,50466,98596,81217,54877,54770,64232,33825,24906,92339,72728,72358,77762,96708,33703,25677,31383,61094,79661,28906,41581,57808,23441,64070,52914,780,27291,6311,22470,12979,52977,29274,24642,61943,53681,33368,35247,7701,75584,86335,52843,62738,35226,92813,33253,28917,60066,38847,85426,3260,94063,85352,63901,65140,84609,32036,3426,80406,83236,3738,68236,21407,12316,45186,18784,42530,1153,14037,99179,51307,93204,577,5426,36094,73867,18574,28804,89763,57001,99767,62846,33929,59566,55300,4999,73026,60546,30549,66166,78675,93556,46038,49177,44373,26251,84014,21375,10780,12740,71194,20553,86570,62816,78816,17657,230,97989,85978,61403,13881,22066,53030,37836,38492,88298,4456,35143,48848,46320,79678,35760,65354,49752,19159,22201,19533,64327,69428,45175,11643,61855,73641,95975,45771,45718,89546,58080,35652,34809,23403,65753,96016,42362,39016,46966,92330,83016,59501,52028,95784,97777,35489,15323,22974,413,93360,74219,38823,34979,64256,12160,4735,16351,53642,62745,88937,29453,7031,42282,40422,9406,13731,96055,75476,51636,14290,97626,35347,59034,21636,18445,29513,80496,26018,98487,67796,81121,66737,58630,50840,47603,17310,52713,89073,19290,14200,25362,82834,50559,28267,67882,92269,51786,71599,37799,92909,33362,78021,15230,96274,40347,40554,94852,32628,76721,82425,11463,1673,83020,38474,20543,96034,14096,1785,88432,49388,16661,25169,92536,77096,8892,66260,92182,87362,94498,35163,62772,96514,19169,51540,40226,36692,55621,35314,30051,61555,41215,59289,80178,30151,56233,23784,89090,14911,77540,36149,41773,57071,58901,43804,38190,36869,11097,94114,3113,60735,96347,60228,6447,32513,37625,43156,33170,85487,29465,21274,78151,46149,8662,37295,59452,10409,82251,89849,71271,12022,3449,40674,10705,63615,1715,81091,19861,93829,53372,82614,8666,36081,83666,86678,8777,80152,79603,67137,63229,17784,90344,22027,76047,53307,92405,8150,3603,19770,4226,44843,35027,2395,24704,93108,62504,33511,52324,91641,82726,63577,71265,48613,97137,80150,91154,12010,58856,30274,45419,83659,62652,56450,36520,55212,10839,12977,64374,77858,58876,46474,80747,17026,43745,25574,81223,3750,7538,40920,33581,28909,92635,54388,21592,53848,83231,33332,48499,53100,99862,51879,66029,77423,86099,78133,90852,53595,92033,15876,37820,87438,38195,53723,28294,37517,90791,15115,39276,18073,6432,38753,66342,31097,85890,26083,57350,1982,97531,14829,10071,73107,29880,70288,30653,86180,2961,53196,2872,355,43777,71234,87035,10163,22442,75676,32923,24956,23013,11291,61786,34243,16080,86338,10437,19977,80858,94820,13184,95628,43336,92606,71996,63628,67363,19966,90796,43880,57407,48607,5029,93299,60083,31478,34043,7938,14778,72080,23034,13986,82060,62838,14252,63573,68054,19321,11436,65696,64609,22140,89163,94827,63403,73451,85986,55385,144,83927,97372,96878,86922,85843,14511,53687,54262,55480,93027,23795,73938,6207,62433,61026,75782,62356,47962,21794,86939,53428,56117,56954,57160,38440,5007,15845,58591,15381,47552,53006,13012,54847,48542,59824,40922,61295,13308,20234,78557,95950,29667,58016,78435,93644,59760,96545,42479,55196,12625,69992,62187,40068,43023,79950,87856,18674,11721,75060,82583,92868,40684,57427,98161,9212,498,25218,46152,31223,72722,50278,2637,9298,46104,310,81015,53792,27697,50809,98444,89211,28418,81970,89254,98523,59815,61975,43433,66073,70413,88481,85573,71366,1097,6003,92540,5659,14578,91099,29433,38067,85995,58579,77897,70546,75300,34499,44810,57370,49766,18934,2376,6793,70453,94571,57901,84943,94778,80861,96779,25189,28765,80926,43875,61279,49708,48578,68482,40363,92883,20237,32658,31831,63361,12403,45567,16835,32178,84077,51477,28772,43785,50613,76207,6151,71501,75841,28231,98176,64420,95971,55954,44669,30676,16074,46307,67053,15267,39027,1754,85711,29861,22050,82008,57023,4448,89726,49570,65471,27916,5707,61621,14,56287,70421,35982,11775,45664,99320,66283,77780,75337,68538,35920,10746,47308,87106,21295,33542,16220,9668,33650,21064,22213,99378,53715,94474,81367,70408,46456,67704,68276,48155,31658,72121,8765,95847,61084,9045,33039,7964,91766,4087,11968,89193,98629,52904,20953,80978,76442,95001,54318,14441,85195,87012,21174,57728,87705,45504,77162,46025,3430,59874,54527,79485,53810,44294,9978,56414,68053,54986,22582,90660,30511,44416,54697,60372,65166,19074,95831,90271,54792,67914,2077,36397,94968,54286,87005,40611,90476,47806,96843,68936,35243,89088,60713,51332,63066,44406,97678,31618,68443,13464,63677,15081,49782,32185,98402,65121,71231,21251,56817,93053,70402,73511,31111,71129,56682,71943,51386,42114,64033,11380,26493,30865,60387,53794,66104,46183,87962,8851,55797,11908,67678,66567,29832,63771,80387,78853,69334,97620,88872,27318,78649,87540,6658,25655,72117,2607,7177,64441,82812,76917,77572,62370,32485,89042,63503,41675,14196,29997,73248,20455,60900,68609,12583,40628,86292,28633,2291,99697,98263,53714,50886,61880,44502,3166,5501,67604,25028,62290,19260,34425,27996,54952,38827,76739,92687,89796,97365,45029,35816,71416,49500,403,24392,84181,61985,31451,50731,36821,81259,45955,72841,65527,68291,6213,1523,61478,3314,31837,51261,77267,68292,9340,81511,71521,33386,19235,88691,1369,19969,47709,28702,74493,76401,75958,47623,68160,59879,36172,90235,19524,84063,76578,45051,79327,38324,99650,6195,20077,12486,35141,83888,39189,26601,18340,17925,3238,88101,68697,65080,43314,19799,78397,34901,89922,51371,39226,68747,77306,40008,53205,95651,80427,59183,45499,66028,2288,91209,88115,92715,71060,83852,70654,55996,28180,7614,15552,81316,12690,16424,65640,97950,59947,91608,37848,54126,45720,16213,21244,44282,62561,61409,23592,73316,75008,73594,22841,64802,56770,352,50668,53659,22876,73367,26918,68569,51164,10190,69216,15745,16734,30782,70191,64741,30944,65382,81750,66310,84332,21979,75162,77211,67192,70266,62311,4967,74098,98026,24074,34699,45166,56998,35221,18364,65067,28469,95233,25408,85614,87682,37558,19179,72680,23208,70880,19775,49674,48728,54067,80135,48439,18323,57346,31536,38755,73612,88718,83027,53328,26718,6289,2990,17627,40576,88744,42317,63688,78599,72513,80810,5786,42093,34992,85322,94703,51711,5950,57551,61944,25515,49916,89900,57717,24263,74946,26459,67763,12602,67046,45769,44191,25644,11352,71664,92944,61148,67122,54069,59362,16991,40189,32659,59033,45341,4373,70594,23708,6296,21856,5011,39192,67084,13029,42962,24964,38350,63246,52848,34217,44830,28137,77208,38873,41677,63315,62133,69548,24820,92729,31151,7412,45490,64197,58101,42720,95907,5344,25299,3091,77422,18177,41515,44130,93276,46732,28501,65500,76592,21342,75528,33390,18950,72338,19582,89924,86691,63076,5531,27166,62196,82464,57484,54239,97047,72898,5364,35249,14372,34255,40121,55224,74352,81196,73826,52260,69732,32586,94358,78257,68742,15452,83076,11657,12396,72105,61163,95953,54716,34256,67484,23191,23006,59734,77546,11435,55746,22668,60073,15731,50235,22192,73510,35262,92677,90374,63826,7893,69068,81535,7742,69482,19183,32229,8062,81446,54682,71909,38001,28635,89200,59547,4705,20456,31885,34443,15209,67865,27059,5745,99083,22784,14447,85408,30135,61902,55720,46339,22363,77152,14006,74345,46789,3354,68207,13944,62087,17461,22036,48446,57527,31700,42905,47017,39647,59086,55522,77694,20329,31293,99509,19931,35124,67585,38701,12147,99398,39318,4187,92479,23676,70552,28404,8303,90014,34517,62448,68008,27258,86248,40055,36539,19250,9769,14623,21505,50509,94433,47993,21616,53724,8148,42541,23139,41726,3008,61256,28791,72052,19817,68104,20201,77782,52683,42133,4289,29655,64403,89606,31009,30224,39354,4782,84023,33,63769,63919,61664,62685,97178,57394,19683,73193,9590,50070,96646,71665,85159,35088,41043,49268,33281,10556,55994,39508,28510,60362,42861,75263,62912,88652,37247,41176,44565,60474,76586,60134,88045,12974,1830,90113,98186,47883,51335,44619,78208,13256,99287,48958,66172,85035,48367,47691,98432,24134,42264,22271,75973,7546,63928,78253,93379,24076,87592,83989,30789,25378,13203,75365,78103,6860,74780,99501,50473,1996,41164,61466,98921,38899,86623,1640,23686,2880,46348,2174,30117,96485,55497,82187,76056,78475,43111,8466,93553,95677,58707,35957,16624,95498,56405,15229,33492,12904,74605,56714,73158,16119,39312,94748,73847,62481,69289,70975,45700,83602,10905,52983,59409,14477,84859,79057,16115,17690,68810,3486,55350,74816,67972,70800,31474,84312,8374,14364,62705,60288,13659,99799,73187,61317,41149,37259,42601,21991,89178,3255,63192,16112,15325,82309,93754,67801,80730,24761,78286,92591,47479,8814,79648,78085,54435,21628,79252,51097,92093,58725,84443,89531,38468,79464,97375,91588,28359,21055,43844,29765,47023,73934,45717,88295,72107,67216,1144,19576,39223,17433,4234,67268,4452,20328,17048,31289,45814,80962,81228,46889,41782,84893,7625,54698,27350,67803,23470,58787,4317,7948,61143,40917,42446,99981,52193,1178,59344,56157,19983,13851,96315,59661,57115,35365,19357,48712,19630,46532,42081,1722,96174,81374,39232,88948,29686,91415,4983,70684,42900,36282,20718,70518,19338,27387,19921,42328,94057,916,60255,20175,8880,17884,98492,21134,70687,15097,6148,483,80931,65155,33828,17004,23049,65533,52443,31063,65439,33843,13487,18318,32670,78400,67839,80872,16163,52030,59516,37567,85112,90419,92952,16912,28379,49414,63949,68892,48150,88637,19173,52299,32124,67835,88885,21821,46797,68677,15050,32015,81642,66160,17113,4251,47188,49530,67780,12471,5604,43913,97668,84208,75393,18052,22597,46779,3753,43604,12052,37153,759,12494,675,14374,3520,12630,56816,99550,10411,72294,74349,8597,65335,68431,46604,78770,44344,28961,65919,35196,62490,24106,93550,62089,4796,26779,74362,84842,76690,61450,27759,56500,48592,9736,31029,77849,81191,46319,57523,45382,76769,58861,29519,77317,53913,62698,45149,33506,94547,72880,63607,38239,33176,57239,81135,33339,23318,13617,96517,22555,32641,67197,70861,72968,9908,45705,36606,1880,16238,70901,28500,97206,68436,8402,27919,42433,10173,6468,44296,54442,29926,43565,21523,89226,48134,11506,6705,94826,23609,35286,17808,80365,55483,33027,70853,30694,48215,67864,42886,12385,78144,41617,15841,64710,44878,17853,50213,32988,71954,5571,53142,14524,62924,22649,43217,67744,5000,31055,52036,80389,10388,37651,16862,98382,85175,88188,51303,8859,87586,2458,43297,379,18688,52241,10548,32909,43296,50142,78080,43509,72328,40346,49525,18285,17931,94181,80745,80681,24560,24267,25786,57572,15653,83527,77668,31286,42912,22727,49223,15164,32354,62494,67290,76253,82049,90845,1285,75479,65571,83311,51069,57153,5819,86700,77232,1960,69030,72444,95292,31905,32726,62588,28693,10350,41537,78961,92542,70256,3678,40397,86822,70327,40414,73285,45019,8747,8980,37004,46525,27538,46066,20650,28798,36860,97392,27091,26496,50806,83176,9975,40650,74978,81688,87013,19549,16469,69680,17092,96634,74268,69228,4799,13328,86046,18555,7678,44850,42514,28568,41918,51984,83759,22171,63040,81784,6957,4055,27309,91770,26937,4674,48011,19048,23789,12026,76923,21820,80137,91017,35216,30546,69206,2974,89299,27337,28755,1653,99779,3746,94706,11237,8929,46707,3729,54026,32926,22043,38373,36543,58231,72849,89068,82553,11322,22864,4753,34905,55918,13163,41850,63623,59821,60086,55853,4248,94777,61192,73295,35809,92351,12944,18274,38647,88171,61437,89750,60087,4115,4164,92721,26037,65128,12138,87040,3913,90010,52692,35289,22591,67601,43703,11370,44394,43382,40522,89024,87840,86325,76880,56416,90043,17614,5933,13385,46565,1561,69652,10564,77589,25870,68286,8377,2710,52993,8035,53446,10143,89633,16785,80398,38166,44888,68000,2357,20784,85221,24847,30743,35577,46431,55375,32269,97903,62713,33557,62993,70391,30392,20671,15314,23919,93444,98677,52327,76368,64155,2795,76292,93490,7499,48834,71931,28362,45007,85961,35885,6426,78153,7335,18351,9956,79860,48277,56109,40154,29834,22044,12167,71780,78288,35808,50783,41426,71187,11880,54410,2379,11434,25511,54375,30683,65383,12846,10343,98128,14384,17160,52434,68335,35125,70581,99072,26741,56966,32481,73909,86348,9534,87317,79355,15699,1849,22441,27811,85532,23646,71555,50865,72744,40010,16575,27754,56073,32453,5518,93912,57609,55606,26262,81128,60752,47748,82639,80598,34847,72505,57842,15929,81960,64888,11511,62028,94219,5284,76898,63828,92140,69703,6930,25860,55858,92630,80515,88021,15663,87396,62629,16251,40743,25945,61285,71038,23151,2061,56557,45057,3857,40863,43399,89298,8048,92150,91811,55276,93230,12149,8472,92887,79715,42914,86654,14402,42549,83253,82728,9228,22340,63923,89505,14519,50009,41878,64683,10481,41161,91623,90341,14142,54780,9579,67721,57476,34660,98109,17633,52662,71359,77441,39984,2758,44226,5631,23903,62842,99360,82904,25025,84061,82364,71715,88525,28847,86653,91705,92026,66142,18553,6789,62174,61831,33331,61512,57341,42636,24789,19982,45008,58801,86036,48742,12498,9551,29548,53157,49420,15826,87730,18636,96391,50188,79314,29444,67620,91195,10000,16022,8250,12834,9512,76191,85355,58652,51433,7488,25815,46484,69607,48979,85784,65743,67278,60408,68660,74799,16312,60463,30508,75533,77958,49232,37364,53299,20295,92665,44503,57764,74454,98934,24427,47037,99256,64447,31053,46533,89548,93554,71821,8252,28245,8531,71626,94355,51847,6120,78808,27739,84480,8831,26992,80968,67515,48675,7996,71304,80001,78294,29546,32250,60649,23159,28109,74118,46468,62057,63911,6682,59716,44715,97249,97823,16443,58491,72087,11176,5010,95002,935,17695,63620,70667,18952,79694,99464,43800,48074,10628,71948,74408,22867,78768,75360,82503,14641,10214,18584,31335,23148,88192,51657,16050,90333,40945,12187,9507,89007,12018,35157,51852,77986,41586,49872,21879,75433,2698,21423,15819,10935,19971,91263,92197,61282,89026,30999,67069,12845,68070,38036,92321,66949,2236,44679,30903,8669,81745,46168,45157,13693,65975,86287,39241,76513,66321,67111,85820,58290,12007,7695,52354,26009,67684,83780,56374,64346,49361,31148,85240,80264,62853,93373,13813,17432,56252,41122,81982,99877,68983,64091,53915,88676,57291,10154,51098,64547,67980,34134,36513,26886,41177,57210,2929,23892,37176,56804,44924,11472,3675,73977,28779,80886,66521,37115,7714,25591,90746,67959,2980,90553,28735,89389,52169,28881,79644,74749,42781,99026,41823,92443,33521,84941,89286,23429,64359,93679,67542,68180,43567,32152,82328,50126,362,96791,55982,89784,87790,76876,58849,35391,94893,44905,92071,53495,44096,57974,93978,30993,23301,27948,66070,33993,90885,36371,61716,84508,48230,40531,89292,8043,33960,83410,34902,43684,82967,38081,63474,91395,86524,94559,86885,23494,94324,5723,41899,36186,39174,58774,36016,43231,47801,11316,2568,52946,42718,88384,17002,91732,12774,2472,64603,66470,7763,59398,98715,61096,48679,70229,21714,33156,67007,72469,63290,1050,40168,80990,47347,77800,22058,42291,31217,32680,4907,95543,66145,3053,39201,61569,16589,72035,86796,29369,54109,59374,32996,98368,98192,91137,34187,17349,40511,97458,59773,91112,9276,35140,99982,28887,97579,39640,71150,35084,94266,96442,1999,99996,55860,32297,66149,60043,38521,85613,81944,59889,38359,41496,33344,65022,58892,83219,37392,28201,71867,41002,85168,59955,26978,98884,85443,92125,6351,18830,72926,76357,80140,46869,87463,16061,84537,29002,24788,49113,79180,22268,54602,93762,97124,93784,34791,72468,17350,89851,99512,9075,59863,94121,65454,90000,61997,42727,91683,91172,90732,36352,90743,64361,28710,2618,52573,62037,97008,15691,76150,88396,44053,35608,93409,44945,69411,97158,26490,80708,38951,91108,73842,16570,40537,66326,62729,80998,19835,7280,54949,63476,39399,11897,66056,80246,42159,84964,15640,85751,64142,15770,46570,19891,56775,27236,83940,1023,50430,41605,42738,39602,45329,77482,9370,88368,43319,44471,84006,64611,57359,18653,94941,2477,17286,28410,67018,13084,78878,51668,47744,47159,13789,30073,98559,19221,37915,85634,2904,2204,21059,12401,54014,13542,90611,11872,83487,59648,93813,68690,45078,15872,48264,89944,13062,33906,51192,85878,6313,35745,76356,83827,39752,58903,37434,57062,6529,87165,75505,8801,96098,17669,19877,62336,11136,18358,23415,59349,53733,63189,4507,11835,72951,34189,57711,69830,97291,72041,51964,39290,16085,27233,35068,65987,21481,41555,65954,39878,79000,32582,41934,19124,7140,20096,28006,10874,10302,14314,27978,82417,51784,87659,49052,64412,23401,14439,79502,94470,23876,83525,1373,23994,5305,83620,40779,36932,90201,51223,72592,16222,77837,90442,63256,41807,96215,62042,73327,46218,86802,47966,45452,82163,92039,98465,14972,18819,35950,27412,42607,8219,92143,63757,30256,68774,99399,63701,43367,79814,2934,20528,62669,77742,90625,81098,6928,30779,19441,95471,56031,66717,6483,43391,47952,22239,89022,31087,67205,83468,47967,53178,50488,87783,60525,56780,31268,84550,14924,27462,93228,64293,20869,34216,21722,56324,20888,216,35732,46644,38839,98318,12372,33224,40523,78658,2362,3901,75231,8658,7483,44961,50514,97785,52308,5383,57467,20268,51305,93855,20665,85461,20717,77973,99238,6019,8473,75860,7696,497,67222,33794,68602,56448,28864,79059,42923,67033,29674,77873,83188,452,49600,27618,36375,19819,71299,4893,17520,80753,28126,3234,37487,46539,1721,22832,91141,11996,61833,16132,68066,10349,53585,22187,64648,72439,70692,56309,99622,54085,17908,96861,83102,13035,45215,10881,32849,4708,19547,73463,62184,45025,62497,32543,60897,78632,13108,60966,29280,26165,15504,59699,86023,52962,21982,72044,65429,41523,57373,75710,76724,8717,66218,56993,34940,97039,61675,94192,6164,32317,95426,72380,83127,58809,45920,18066,80397,92242,82599,41957,22878,32805,41065,76249,27484,42654,66544,82460,20047,73050,50354,48099,14573,56137,67241,76685,43302,63933,65504,59389,1951,35768,51686,18905,91652,82209,82044,17281,88794,72414,45546,75401,64740,14295,63160,95569,70143,7154,49950,97196,41759,32213,59107,30114,21406,62578,97285,54606,51343,40603,68498,29475,57850,2122,31163,15195,38353,84451,96367,18924,79205,76574,65362,69120,229,73507,59186,77795,39687,76394,44693,39953,44534,6774,48048,48414,60626,63598,94007,39350,84801,35931,50490,17841,36322,72091,33154,54041,41305,75203,16134,91353,2311,36691,67751,85421,87273,57715,26811,23816,77699,46725,4460,65548,74950,64350,76037,56290,84269,47333,95369,65055,86278,9279,15239,64389,80258,61257,39148,83657,67815,36268,31428,3969,73164,27558,4682,52171,13713,97954,88547,57487,71998,91513,91166,34850,88338,89247,18601,30057,15793,58790,39526,71399,44485,94376,80542,69059,12770,40285,87640,12952,27929,67142,89941,24998,62956,43011,82343,99883,19579,90468,99832,26088,65769,28565,61350,15678,77561,60696,96542,95438,42009,2251,19625,3558,51406,74234,63045,85381,76408,11527,73288,20803,76065,23552,4280,89205,29778,471,18500,5726,4255,39523,40127,24961,20991,35168,15245,40507,1802,80675,88833,49118,80516,15481,27221,71900,8225,33427,99807,21742,74435,83807,14185,30292,83804,66605,6230,62488,68981,41875,71179,52949,91742,5952,77185,67141,87893,46499,63127,1696,67646,85972,41746,8422,53050,3219,21684,13080,11782,34597,3494,26003,82666,73051,26321,15719,48310,92283,23351,88641,82875,90180,43157,37068,53202,73320,13747,83334,69063,47975,10577,80997,8302,30141,50261,70089,52120,51212,87383,90947,90972,84201,10454,65490,71232,56371,66417,58538,96935,66803,60497,75530,57795,71880,43909,27610,17558,18734,21709,11854,29618,13852,2405,63852,58963,30227,26897,66515,87660,91332,13420,64338,63387,12523,46136,26268,43676,94575,40457,96498,67016,84227,1547,67750,89835,66612,22117,24687,90738,69693,23798,81815,35388,70494,70580,13612,65970,82271,92636,50284,38947,15668,16881,39779,50251,44529,61344,54749,6082,48680,48967,40644,65470,56896,71174,5865,112,54681,56030,96641,68007,49792,18929,70820,28926,26664,99325,67667,67616,71045,89880,48259,77280,9649,14367,33685,83035,19589,15808,18797,41096,34715,44491,31523,84661,53191,95756,86369,6411,57714,21506,43981,26174,94533,16560,1264,54372,84963,4214,77971,12960,16766,40484,77591,58999,31169,99539,14227,89182,26358,82699,19577,43954,29804,98543,866,57859,2706,38224,17301,78358,66076,20306,26673,46742,73103,1947,40913,26846,28660,37223,27481,20679,65888,87275,12378,61626,45534,91564,6557,53427,47848,93066,51788,79666,40309,2516,11093,98998,84250,42052,65053,33566,11235,52127,29820,69406,98831,92113,24836,32887,90056,9600,81873,31760,73557,53297,1896,3897,67822,13696,62727,74888,46342,56256,85249,75456,28034,52774,33412,86877,3010,71258,65506,65628,8119,91453,3325,39813,60719,37630,13294,93081,31336,47906,45816,99716,38174,11365,84558,296,74670,84992,59213,64052,15174,23023,3144,20975,4210,71781,41536,5787,15855,72936,36390,59065,69880,44235,8646,78959,71438,37782,78163,94800,99391,51319,8686,99290,91911,95908,31716,12965,10376,8066,65549,78124,56125,28407,60193,38692,70479,81851,53525,24588,91609,52791,40022,84503,92046,89981,45056,4904,10207,96686,80811,34461,15334,56436,76723,88097,94059,64234,33738,53212,81692,6850,57463,64257,11300,22846,83184,22680,21365,67586,28467,24586,49878,15290,69493,17624,73197,74868,43600,52319,16247,12574,67645,71491,72551,85681,33788,5911,12407,36240,85977,40278,86318,61866,25896,48550,22279,3837,58530,41272,31878,58221,73299,45372,70646,90987,91571,50547,42755,73335,7545,4130,43443,44171,28785,40801,81018,76393,86632,83924,46356,81572,52545,96909,23479,49353,22834,61835,76055,24887,86627,83575,89593,79951,67331,43305,99719,41066,91268,10278,56286,30592,39491,55950,25764,13034,94496,88262,96165,36226,46906,46041,89777,21175,63517,11676,87594,15834,29702,90199,34679,92831,84818,41160,73254,7880,5673,54274,5163,39585,37249,35842,88056,94459,68956,82053,83361,94955,15899,56660,97739,75356,82279,49069,14941,44526,77525,96834,27285,53436,89848,31157,19693,80252,79904,19233,38463,74918,91423,37166,73837,21763,97832,52955,32758,82598,81357,2195,74673,73748,16509,54585,91238,61405,15912,7901,38694,13106,33313,58304,70609,23390,90277,10676,54531,84099,67140,468,53303,318,814,51942,22217,17996,99465,75223,44504,14148,53856,24460,42956,77275,15768,61703,15723,44331,29094,66750,5014,16950,24010,84444,16280,30381,80177,98424,33257,69455,66083,17251,87156,95375,12391,88880,93047,28369,79690,59511,8323,24299,52831,47557,86071,22048,17793,63541,58515,44947,32120,48175,16366,59482,80485,42871,18486,44419,69437,23478,21711,70161,167,13636,49706,36711,55656,25643,21223,99268,36267,95072,67655,91467,73763,39143,22232,85701,13795,79340,41019,71206,12198,42799,62881,85008,97913,20972,5666,8375,16465,74947,18516,46749,99209,1833,78805,84048,75938,79311,79957,81728,24522,46851,3094,98808,24188,55699,92888,92830,2572,69721,67606,51974,94509,97418,45169,83533,35936,91790,29102,64343,64410,68505,8692,34122,66294,46196,79081,85679,46201,40201,52629,95353,96273,31374,65409,64604,7679,66636,41826,30588,61898,26574,3654,86709,74216,21031,54203,68905,97961,21214,95142,78818,72983,4213,51379,81016,96604,79321,85699,6358,18610,90721,85542,24797,21234,91993,98597,49119,89076,28531,26413,60212,28484,17015,16055,97456,85804,21970,70429,12412,91483,95310,21941,74653,69170,26499,45971,2147,3364,29750,71764,45130,59540,63521,23519,71336,37220,32094,44405,8783,56544,88920,25728,91361,46954,75124,91077,11079,25625,11411,62932,70096,41029,19466,56246,73623,10400,878,38491,93894,6968,59814,37072,87227,56600,77473,74775,64418,93305,67042,38058,62371,75749,75581,5831,12196,82358,15959,65925,71049,79072,3084,8277,41506,82890,95889,69540,13510,91908,74369,1950,58407,10998,38601,26344,29471,78962,82773,61927,68026,61616,91961,28169,21359,79351,12394,94090,18336,98919,66599,52640,56046,99690,14350,82994,79042,89888,74168,96782,34274,9770,13045,73375,29111,93661,15801,43091,78552,63,47349,26331,95744,23511,41386,5569,90645,41118,39505,50641,74247,39903,73961,24854,13158,37691,51676,20731,59248,7018,64048,69650,12906,10573,93135,30309,78765,87172,80489,95835,68791,43829,995,86502,88807,42909,71831,15248,19627,57247,97519,32205,25161,83259,60519,63763,72641,46880,41852,21697,52995,53508,17373,3086,77398,24199,7989,28876,81567,44940,40602,33669,36931,8175,5187,79097,91472,48696,68210,3609,93030,6823,64311,31767,94930,6512,11334,79446,17170,53522,77621,47790,79146,77307,14220,64871,16568,46722,1311,64555,16071,15941,70509,45122,88211,8465,68170,76512,10447,13965,91826,50679,95200,40148,6267,51901,42265,72086,39543,29478,3838,42825,82231,14060,49212,52367,4559,49271,85286,5714,22374,18874,513,39808,44107,37212,70099,4299,12840,8095,75169,19738,38094,24372,22886,90176,46165,41087,68547,88197,84024,59081,69376,20730,38984,44963,20355,96096,25136,55573,96134,72892,96493,37051,75539,63839,38035,12319,18626,81415,32608,90787,54871,54936,70489,94261,44707,74538,79640,6470,12764,40649,56528,97095,17153,2413,29943,49702,6901,91712,8420,17271,18386,51112,82217,86413,30855,89521,4984,86010,75125,21614,24835,17382,55179,24021,80313,13563,21723,49687,72514,72737,23865,97492,2877,58654,86317,17098,19679,20532,19878,52712,55520,30017,90022,26222,72970,68400,65201,68191,62606,46259,53095,63716,96831,8325,61708,45730,48037,3917,26649,50793,77480,75273,82990,50352,26587,32106,67306,81515,80030,18252,20531,1298,43943,35146,66001,46153,6520,64742,17747,87131,47106,52326,66284,76763,70743,65807,72122,41069,44067,86835,32508,98448,63861,44434,23495,21704,72682,53380,29950,53993,25719,22390,89370,61673,23277,5640,45191,93885,93757,34298,42295,51536,91547,86398,21145,4195,70948,88598,15871,42757,26436,76938,12213,93400,75752,33147,42445,45898,51947,73800,29136,4156,19769,4419,82736,94823,61032,55232,38932,13415,8115,50286,77278,26668,47460,52668,13634,95978,77093,31772,87324,15251,71421,58033,99939,63531,15384,44494,14758,68959,79805,28119,53835,62500,44134,73389,94005,3345,15036,47294,49653,10513,80915,74977,78571,46302,15489,474,90471,13124,65264,28922,66444,74201,17984,62264,73765,99190,49201,53162,16913,15379,93623,13876,15852,7717,53517,42568,75225,52305,81385,52001,40076,23882,48858,17703,8352,97963,23556,85491,43564,25245,61984,12080,10658,40497,27224,81887,79568,98213,44025,20834,55465,90849,29650,48548,41423,65222,94006,23402,29469,78921,35423,16999,60443,54321,8229,34456,63667,24585,22783,6718,7326,62822,60611,34046,92309,97081,13526,28582,55,40733,67246,60860,91260,10283,64133,95105,44277,49533,31551,91135,842,85877,76425,26147,59753,28591,33556,16809,30335,601,96140,20938,95212,69004,87027,94934,55468,95620,54068,76297,78612,29930,1339,95954,43467,26057,52617,95161,84476,33939,89581,64029,25037,77337,373,89598,13127,59586,58002,73425,44380,64258,30719,73814,25607,43134,90005,95497,93634,44209,6225,93367,96925,70008,67702,83465,98658,61509,88362,79304,2966,67120,66293,6674,62536,67771,2909,58554,7135,90464,89010,54766,10025,85064,79575,64246,53167,57101,53444,26029,7067,39314,8635,62300,17629,55432,62161,84065,16174,17718,33753,73994,43701,23942,63334,20492,3963,20672,15763,80545,84055,80100,54445,83876,52313,27015,86454,96328,97897,19186,22848,72392,61157,49566,48916,78521,7969,1841,41254,75472,97831,71095,97160,74755,67739,61529,93749,95884,29044,1406,13372,57951,83821,93790,47178,61272,61532,89562,18418,18167,31531,43327,58914,26852,39120,51739,53333,7316,13685,22306,20296,42740,66300,68703,78880,23102,32891,31384,25713,19818,65619,7423,49403,84088,6186,12413,80905,73713,47077,90029,39091,96496,74841,99696,42299,60627,19248,53630,9654,28914,17390,1827,87270,58189,37045,46465,50140,33520,12155,18981,66022,72264,76123,58662,63975,72840,16918,92334,97704,89583,12024,52869,25800,20369,16530,97293,98651,67753,84153,5398,53561,63172,68471,70009,14258,62969,17730,21949,64545,82530,75287,3452,50465,17495,31360,65762,56789,88084,55749,10645,3734,66753,33639,32345,70371,41624,44880,13921,64433,51355,34155,17860,9333,89814,98512,93761,92165,77817,87657,47409,92157,46709,12547,43166,55723,74391,46590,85382,75547,65493,65476,50194,39402,68142,30898,91373,52000,15157,88714,1273,33125,91638,91246,3088,38989,87023,54380,9487,69742,60650,61176,34455,21226,46848,69460,67150,18611,23651,412,5024,84382,76887,33425,22318,75871,7993,67244,6565,18410,56386,94589,27440,55019,96307,43614,24812,69378,11191,65085,96311,74217,71953,32133,2032,97470,29411,55178,17023,64020,66700,17751,34799,48060,81268,58222,36232,93635,3986,95920,88134,56821,41835,77767,88308,82777,40162,96818,42879,10287,54298,85567,78604,14609,57112,2153,20744,42181,29176,98166,17288,91162,41384,55190,10778,17578,7977,64867,99812,67305,74675,79801,18342,69285,16427,19765,92251,36290,35333,42932,46884,25636,1148,58599,5578,83814,60483,51378,94161,86391,91293,56451,59799,71574,4287,45027,10240,24969,87769,61333,89645,50950,7409,38078,89304,52117,37311,22238,10262,54210,31071,6402,5319,69222,13625,65959,43734,62670,75612,45439,53877,43016,11207,86613,91858,47842,26150,11534,16549,58003,1650,20174,3761,57363,83327,71014,3719,34211,680,34185,1527,54849,36120,25221,45817,3971,29486,98527,42267,40520,57555,3860,62148,28261,84489,15327,83578,78456,46336,60946,13992,67778,6858,13509,48584,85213,70870,7210,67934,55157,14888,60216,86229,36774,13413,44996,57151,35019,77299,93486,16683,57066,4247,60338,98759,12099,20608,3223,56926,89743,41828,13388,25672,98494,35968,17890,6178,57251,9882,58076,28185,14270,15091,12374,87510,45585,60988,85348,81195,75503,61013,26148,26046,90590,5417,35138,17202,62378,93712,18213,72578,30081,35215,77409,98194,82368,69894,55133,53905,68795,59598,79123,64057,6012,45144,81480,86789,38761,77252,22084,64000,27313,53772,25709,40730,98079,22788,3752,18565,16643,39308,15579,95547,53688,14659,16262,58384,94632,39614,87968,166,70809,10786,40882,52369,40792,82706,81373,79170,69674,86297,78811,55965,24691,98564,25773,58035,67076,45865,133,10623,62811,40088,26374,43255,33327,6389,29949,89296,41755,46093,38587,81035,71376,4552,99791,39133,84870,45942,97512,71290,55412,23485,84439,92028,55599,84078,66088,66941,63056,91672,74266,27081,85402,61949,33730,22174,70843,31927,70663,90766,94506,843,37805,4951,75115,81063,36896,13818,80741,45982,44402,88215,46195,40751,63401,95145,70041,65226,56194,38200,87113,28377,60388,43858,14812,94910,93958,36901,62883,41988,67661,77641,2298,71739,37029,10718,72464,58391,59314,75172,41650,27636,58938,47752,28213,58109,80735,37746,33642,9722,14883,1577,1494,44509,35328,42494,81762,86911,65811,64887,68059,23841,22319,62723,29524,51482,9139,5864,14115,11803,29523,92973,29814,58905,81346,73005,60470,80120,56085,7397,30108,3911,54019,31298,1861,30171,34924,9695,36071,13640,4151,69704,74648,25524,59591,55302,37493,55976,75462,94268,51128,32522,50310,56643,15868,20211,43812,40233,47613,16656,41822,70299,22013,87817,31496,58266,11384,74312,67099,4457,92273,78503,31329,19283,10253,86353,19421,31458,91185,99824,79892,93232,45084,34179,44364,40050,28300,86806,31007,27290,73148,88371,72415,52227,95398,4278,53472,74712,6050,70249,59612,99366,96676,32244,8233,1133,68353,41509,66087,5874,78887,93850,38811,52498,18942,67701,3672,50883,57261,32977,24164,86107,10085,27891,17397,8545,12433,38743,67662,75824,68325,79744,94145,21372,86586,28910,47672,60498,40664,15309,46278,66646,8973,21950,6033,16456,27825,20699,50012,5699,70911,50555,11043,98673,24394,30908,81130,20644,56632,59252,41228,95410,82567,37285,9264,14208,12079,85650,240,89664,7,47900,81666,79391,51667,63110,52506,54208,30985,30462,45843,42336,46299,6444,30522,54589,19378,8195,65707,41693,8418,37779,44861,22199,80536,35973,95521,91334,99275,45179,47932,49897,65720,76941,97284,19783,1734,87170,60200,78315,84120,6842,79177,22479,28844,69220,37801,79723,28821,62125,99693,71022,44460,65895,95261,61116,82325,96290,59208,66722,84557,38799,89564,96249,12856,26170,77532,62832,8474,83899,18011,77904,1513,32407,94904,59528,87999,80953,68763,70365,36495,57783,46438,5053,63502,26078,49947,83073,3020,63035,45761,18256,9481,1381,79281,62690,29154,22024,25173,65215,79645,38706,52018,5454,5223,72930,94286,84192,80118,53844,31598,96262,69707,73547,47811,46498,46669,40678,18468,16541,63633,21347,86504,13735,90030,77312,96436,57286,17060,86451,68119,21588,75864,22646,65341,35211,44248,88603,93274,16165,32009,70134,79005,17443,86602,26948,93882,31362,2818,25890,89295,37817,36899,48343,68241,82168,75113,96365,94605,95220,66329,70931,56112,26975,26034,24464,2361,81848,49951,64337,91582,45432,24328,55110,23356,71982,2303,94734,73775,8364,54965,16108,39624,42710,20287,84924,70435,15947,19062,80607,4309,35060,35239,66222,75799,52691,27331,12090,54268,67593,40595,25030,35822,4063,97557,46477,28485,53062,90071,32521,36584,93017,62799,76993,91274,17483,40617,80344,52359,99298,32393,70916,52865,90850,59074,68540,47569,60768,2585,40238,81817,52733,80845,92783,68727,21498,60038,70260,38691,39063,84020,20192,12997,391,58955,63120,67318,66959,54598,63652,80402,18600,2566,69677,67050,46226,33909,78164,35228,36735,14804,97572,85412,55041,5761,24504,34330,16500,95537,35748,78957,32994,73839,28714,97629,16319,51646,30814,77640,62340,59793,16257,59318,39910,48650,82651,86478,15415,96551,88588,8421,69553,81037,3575,2979,38749,92639,60602,91927,86198,85083,28071,58333,82985,58455,88972,59288,48817,49184,27821,50957,35904,6649,35212,1016,37789,40494,87177,35637,92086,10866,58412,58075,14643,9721,23696,71352,25418,13400,62,6768,97690,11786,7956,92518,64397,25201,39337,45362,52700,21576,16363,89252,48545,3756,43076,73261,59637,62635,54747,25175,4693,7267,52139,99018,5004,11490,24100,63372,34701,37778,54229,11224,72165,6372,3709,4391,68128,8773,46584,90827,33091,43225,147,63240,13082,97939,97752,28396,32554,64903,50900,43362,66624,49125,28879,61524,26998,25995,38892,52500,61224,1459,4112,24283,522,88429,99694,63553,84098,77542,40339,78550,96765,71445,39580,82618,70109,22280,58133,39754,49682,14841,57389,69877,99952,43087,37142,10442,37241,92152,99397,27760,86657,91841,55885,5750,55141,30361,75971,7651,46042,68165,15656,34475,80838,97680,62636,69500,63554,87708,93362,2963,41647,55341,21701,990,63346,37319,50651,29418,75281,83485,86706,35780,49346,41478,91072,13199,55472,37955,26826,67406,89886,68646,86447,15223,29741,84223,95388,8540,33801,57048,34976,29251,22294,35236,49071,49750,89021,88499,9684,22594,83868,56513,12858,29593,17155,84501,13010,57840,35204,78823,57097,63490,89143,51048,184,74901,37665,37798,13224,66921,6253,87056,29781,91279,19961,15755,92481,75139,26011,17183,97944,77244,12963,13505,7702,75040,64188,8914,90764,39121,52694,78876,82431,37438,81110,19848,92048,50631,67357,28612,98746,82314,80474,18606,50265,69297,37539,75600,63920,64966,72416,98849,3119,45018,35890,58837,50918,8389,87635,96727,55374,94417,78205,70672,68934,86977,53509,82442,24220,61326,1587,56251,58142,1125,25770,11729,49048,26429,77880,45235,69851,44605,9174,77081,5231,12712,2686,46496,37725,91489,44083,61303,44538,87430,77204,80808,46359,40558,56672,69257,76814,81546,66669,3735,61665,78783,58663,94956,6971,29143,33547,16241,36414,46208,39073,70896,24416,98962,86366,5903,564,87774,95296,24808,91917,79769,60031,40092,82089,99959,51936,96304,58053,50037,37979,76378,54844,70781,81959,61916,56543,62858,13446,33337,44563,7507,4026,63840,47486,86054,222,10398,17372,63428,55175,91008,74263,88459,24640,23628,89192,4181,21567,25479,83621,55663,42876,96466,1359,30769,31948,69626,21610,38812,51969,96553,91803,65670,82995,70561,7066,46458,75243,98015,12271,64805,74403,84806,73059,6281,48557,65531,2052,77609,45793,58607,40125,69386,72775,31961,92547,44765,26412,72719,3663,23888,10087,65770,45402,34549,7207,1518,70977,42351,2263,53923,39062,51460,82828,22450,5276,29048,68287,55159,91495,32220,79117,83998,5389,4937,59840,60817,83269,35045,74370,12751,66796,17083,30708,82015,30510,64223,31560,77314,17988,91471,56304,31187,76753,31257,40887,83019,86745,66638,73076,77967,35592,49010,36102,53102,18359,83752,91448,78430,25903,96254,68902,81144,94709,28108,17662,87033,71400,12068,59826,47591,45922,95851,45198,31251,12540,65755,33621,30621,47019,79668,39026,26801,21582,85139,59191,3574,11360,43151,71082,77411,35723,34590,86222,24981,14567,32415,29145,20771,28439,33824,47619,57185,34061,69459,3433,86512,53941,59475,65920,39489,85630,57873,99900,93809,26684,24881,9100,85012,87092,49264,28594,78935,13825,59774,36812,53624,5292,35725,16855,6594,81792,2025,7798,48837,78701,44774,27323,54601,3302,52094,52862,75697,41012,64876,9942,39727,35126,28220,36877,71362,21179,27858,96384,31558,22492,82732,5419,73045,63849,62682,92642,31170,34538,2145,5510,80851,59995,52689,1044,68455,24975,8205,57778,82532,72771,51534,64666,47634,50049,48224,56403,56695,11841,87497,47338,32410,59635,99794,62895,44604,53548,87122,41877,67118,8871,35755,10617,71312,46850,48776,75106,4825,49966,57987,22388,73792,39673,3076,22944,72374,92569,8262,98506,78264,37707,26991,66974,83493,34453,87746,59729,47123,82100,76956,41923,66468,14154,6466,43917,11713,66020,553,83887,2730,18373,17776,82512,85700,98839,27458,25936,60810,48061,33540,11706,53679,31255,31575,75404,47217,90465,88757,42235,76087,46606,87996,34527,3327,45897,19895,13377,95618,51951,82521,45364,43061,29506,84703,33530,36251,29830,65767,92477,62839,81027,96109,38274,3920,24782,3592,6919,19596,35188,88433,49043,71413,43450,65176,85481,60532,6046,1203,89083,61763,85196,99589,2860,11935,71973,2095,49026,45383,36649,21925,89519,84809,3012,48092,24338,1350,20158,64967,33259,84996,97529,12600,5214,81234,26559,82128,3538,72746,35923,5213,16699,37715,72024,49351,54317,64669,72342,52726,55893,75066,95750,45987,32736,32592,35703,69414,2424,39218,29104,25645,67522,30060,22401,94117,40120,53133,20478,98067,27883,17127,17626,2103,63774,39122,7631,49275,79144,11513,97624,25077,35264,56996,65062,47266,89176,1738,48701,17455,20978,37740,41086,56400,77501,11059,12816,29554,83390,86066,8361,71577,38922,20410,37006,51323,43879,83786,8126,19277,74963,55277,49258,60482,71460,35074,73992,96580,7833,29409,84047,50090,66665,17618,90984,35492,52298,89131,25667,79808,58488,82495,24713,81120,72255,24762,31406,6385,87446,88217,19133,42878,11348,8413,65135,6015,82870,15588,2348,60965,82588,19268,68346,64803,51514,44997,75939,35590,71025,46462,67319,35290,82649,84906,52,50088,34271,50400,64274,99751,6755,29041,17594,23463,40152,72789,20012,26311,24388,25438,30182,87432,3412,83130,78581,69935,22267,93876,31732,36773,92508,55995,65528,28651,25013,24462,11253,26901,57011,88261,9791,85945,91768,74777,47919,49713,28043,10804,78684,1374,92482,12928,28249,2062,99907,6798,11594,41233,59559,5025,67936,35145,12871,75769,36092,35147,85146,70205,38009,28124,9430,80482,51596,1677,7350,32751,40063,2969,86254,73535,60835,14908,4336,59508,11195,78600,67303,73553,47138,18090,28284,44101,53219,61172,2433,45651,39228,94546,9850,63019,84388,19886,50942,51260,15749,96475,22607,70726,36700,99029,48585,36068,49903,94386,75817,67570,60996,49860,45679,16206,63648,16369,11816,57422,53957,24714,68454,89037,75886,14598,16686,97272,98565,79265,61204,6526,33020,11998,18540,83466,84576,87852,84316,24731,52400,10543,40759,53528,9992,85450,95893,53695,83214,81935,52276,28003,83221,31611,10153,32682,32820,32365,15823,57498,78495,78017,27471,12326,97369,13682,7867,24370,13903,71926,61210,72019,34929,21399,70053,51102,30662,69942,80666,13425,18525,31689,97869,35511,29603,7073,6173,72612,16522,68469,68463,87958,14549,8051,86194,50816,19092,37834,22617,94779,8171,68090,23389,39227,45642,88933,47792,54993,6381,37659,16378,17959,89237,68163,78567,95485,11403,95789,42427,93719,82453,68134,39850,80921,60485,56341,70315,32844,46065,71328,11258,80426,60836,88570,65613,95193,27082,32419,42660,8444,90262,22484,23364,42953,30686,93422,98430,80375,77496,62579,94477,84034,31879,6742,71205,86916,26212,40567,32256,71217,3795,51143,84487,98941,90938,58094,92082,70257,15566,97890,59043,60110,87562,70264,6917,60846,13246,86060,35381,26634,85362,68407,84215,66967,45086,34385,93941,92061,30018,55024,35647,7811,66331,1638,85585,34506,53364,70132,86971,88007,89608,30322,19153,84039,76070,93678,58227,97208,78118,50139,40057,1904,26451,25344,90430,64102,77490,43148,71802,85058,5945,33655,19759,3698,57034,95937,6772,3942,59717,84763,94982,14473,37906,87060,83144,73813,16472,36817,38855,10644,92035,33533,87922,76856,71469,4455,95416,69727,32450,51183,35421,54722,71530,14718,55416,9429,33234,34494,90561,73995,59131,37756,20714,92377,75027,52953,3425,10426,91987,11972,39970,8569,93552,22929,9700,12015,22365,43142,88651,54907,54963,14988,55619,749,37177,14809,21197,93673,41476,28984,29000,8028,64175,24208,9093,99269,21661,87767,59456,98995,27373,11192,89760,45076,77374,14832,76893,40790,98585,1184,43571,69563,35606,40371,24294,23575,79491,82382,39519,56366,32262,24695,79279,27483,33864,10259,74381,21823,24353,81123,4655,92268,58614,56447,66503,74278,60541,1888,60540,88526,30821,5189,97875,75580,79722,92370,27765,34340,71327,80769,64242,89158,48923,39321,71940,2677,34539,63952,15123,66036,13166,31811,49919,52775,78859,94415,94813,20925,85147,92428,25275,92964,70275,4587,37158,67878,6092,2959,86679,74872,92734,83141,90371,55772,80812,97789,34163,34856,52316,7697,23264,22087,65523,89436,84315,53812,70842,95868,57605,44743,72589,16192,681,19844,54800,99394,87216,5202,13896,20649,70428,30370,15411,78463,70032,92741,44653,98006,26467,9809,13793,84536,34822,38207,41841,83217,98245,9844,33231,86589,50407,30854,18526,16293,84131,90725,33284,99855,19840,11651,17252,20659,31565,8499,24790,51422,20967,85857,63766,63500,62106,14136,98540,20435,77844,7211,64342,48830,18562,29069,10166,59324,23311,56217,51059,44622,50619,35896,5858,78543,2358,61348,25357,84440,54260,56413,91607,36555,43953,89686,73757,27107,29272,28669,56415,86867,43827,73919,86685,44476,74338,26707,68980,62414,92538,66490,82059,39099,29455,29698,2561,11446,32639,5367,85765,34445,34421,99364,61294,13230,32320,70632,37947,49318,95211,31580,99681,38142,77634,341,15337,26267,24336,14319,30506,44232,18697,33627,59701,16007,24152,2837,95097,87280,35414,34410,15985,2690,37286,28972,10009,1926,93666,13214,35967,7193,56644,46999,59895,24455,85429,13407,63795,81394,12985,46391,21903,24281,63225,27097,85399,42595,98257,75967,32722,25367,52823,73754,21432,63548,70716,6951,10938,9852,8242,77488,85207,33597,29710,64643,33111,24334,47969,58871,53132,52277,21464,84128,86515,18321,31939,47421,57514,26556,65931,52854,9660,20241,42190,67329,26734,23724,70772,48616,85579,10212,86275,7415,76445,59841,28618,86445,48104,63206,26549,22830,11704,71590,69895,56750,96119,35132,37600,50757,73795,1376,35182,82794,15550,45242,18753,39166,12427,85750,72739,93295,84659,10899,24175,53344,90995,98850,57257,34457,84900,8525,74786,44347,89755,71721,71743,93025,46323,28966,33418,36064,35305,68019,86918,81892,35638,9010,68430,73169,97909,70016,79838,11186,86252,79111,36747,2560,80033,21362,13910,18299,89229,59234,87109,42028,35034,17063,90423,52350,60269,22911,88039,79125,17830,31942,28494,54168,87098,87760,80765,27368,6216,79652,91065,89758,39117,35659,12212,44982,24349,51749,14095,1066,80519,81047,43110,97543,94289,48808,46572,18083,35346,1898,38988,43772,99247,90202,97714,76246,59182,24047,93055,1701,64379,55611,1365,15172,66203,90184,93952,21210,59706,79729,87831,2490,84614,15402,6496,33320,99903,67293,44283,95817,90035,50418,2392,6241,53962,27889,32452,47504,27531,15144,5429,67025,97151,28742,33225,88642,23349,10276,89269,4410,76761,68675,79630,33273,13288,60252,65666,85313,5082,2296,83123,43145,89571,95610,35676,60513,43470,75527,64301,80255,27700,20279,3975,88791,94195,79152,53861,17678,90193,95506,20864,10010,36959,53870,69834,89125,64206,67876,53719,64291,86387,40471,32195,18273,47297,90769,18818,83627,39919,90073,46236,71673,95157,77736,39092,59677,37749,61520,1897,8240,52632,99569,46003,41996,47762,15986,31465,7175,39277,12200,87380,67358,32215,97641,91247,26773,77385,40047,39116,4787,12566,14461,84272,59659,25539,33577,40289,13810,80532,5252,58261,62766,23793,22460,26395,41813,35711,27985,59302,61820,33316,11770,93959,18334,51932,91970,224,50737,77921,62888,41635,89580,13780,32547,13305,32986,62346,42422,96793,56895,44333,60658,92976,86021,82233,29938,46063,27349,22772,28107,41906,10664,75012,37793,93224,66101,39,85523,74639,26955,17457,40126,78127,90711,66615,34964,68488,399,93089,77879,52034,59585,6490,72276,31912,633,39690,18881,45231,50445,28640,91688,57415,90288,6878,14338,60132,761,16407,95332,23504,66688,8324,63136,49278,43687,22333,53174,84825,56986,73089,41565,98266,74379,64207,33218,1678,4032,28150,14209,84415,46215,32677,44338,83021,39291,22611,8407,16063,9175,12360,89493,59059,18707,48321,7444,10601,75420,91998,11695,90637,32370,58168,8869,13955,72958,72622,18962,78501,63452,74154,77626,86116,14684,14273,4989,27455,93220,46480,38123,40811,66539,49008,92929,23523,78232,98226,81179,72429,78216,43224,6662,74768,94572,8479,16258,98720,66933,2694,67081,96028,81072,74077,64634,31455,8861,4714,48770,89067,90067,67282,11983,1187,1800,82155,69208,11181,23860,65112,87779,87530,64089,55299,20072,87755,1340,70917,29982,42693,4654,27903,89659,61166,42356,33171,92924,85198,61042,8681,47814,49686,61809,91619,78932,9892,64784,44466,91800,99382,96116,36061,68317,27375,58671,82144,19699,63331,7300,57517,33524,20113,71157,85647,83121,18993,41280,52536,19408,71010,96768,60666,38091,62835,81405,99611,96062,71019,97329,57491,47704,20758,33011,58273,93093,18764,71663,7402,54043,35498,10986,44031,85477,77833,5912,49575,96797,81315,16886,44272,64341,91821,60041,23927,88277,76955,95023,63039,55047,1952,61419,58331,98514,71784,39516,14455,71795,66710,53599,81224,62741,45832,89899,1962,4330,94307,26960,47662,66418,62907,39932,30147,80481,70633,85401,65871,38046,47971,11654,72929,13193,80697,72229,33721,76398,85292,49154,32160,37900,65702,50697,99805,38798,55644,63841,92689,22797,74640,4803,67762,32934,54338,56410,39635,17583,59129,36236,8443,98472,77917,40752,43984,84103,14349,8738,24920,74113,17224,8656,96142,76849,40017,63900,76638,77779,33440,64063,996,93252,68103,58832,47142,99134,95625,93261,77749,63008,77885,5286,40918,76132,52163,96340,20831,73925,35804,53707,2603,45540,58988,73649,74285,57726,42340,52415,70498,72507,30482,75157,43123,44755,6991,30418,78638,2295,56265,36347,32619,69759,71893,86732,63273,71629,7752,47963,31527,90435,60958,54779,16587,16070,12524,19894,85753,51566,31780,51211,35649,46897,16052,81593,56456,80463,83342,35849,91444,91630,55014,591,16162,84019,25577,97246,86002,44340,71924,47876,94945,4718,28306,89908,43513,31201,81083,95550,99578,14863,54206,85051,40128,97780,49658,52221,27517,77335,86393,43395,58499,97015,31681,21433,1828,98900,6540,19226,63075,9326,19662,59457,81830,32601,20159,29240,77715,2054,24616,50539,41929,33466,3599,64804,66642,13143,57885,73304,47635,57770,1240,47386,82305,84591,43543,17786,89442,98114,22789,92429,66226,42680,58102,6585,6111,67682,25262,66421,92984,62095,29811,31956,8614,59233,4080,49560,73022,84582,59728,18836,94868,6546,98695,79616,10802,94201,70051,39666,18912,56317,27380,8310,37264,32284,8114,77143,17306,71645,33407,84376,38547,56555,70925,41410,74805,38384,46817,78365,73890,95590,9814,29396,87600,95049,37710,22235,30420,91210,83723,27757,62096,28096,42910,87185,13192,42671,93157,91132,51099,72587,43947,20236,79476,87251,39107,99279,26515,12693,59421,79213,95243,59873,21154,89224,97221,4762,31304,46830,99293,24891,33434,59152,4127,99299,28315,2985,12095,33572,18927,45048,6300,87896,61785,6598,17146,90558,90720,51832,54124,26538,52105,12432,61274,99315,64530,98231,90416,23189,56037,11955,6577,30441,89116,75723,63032,25080,85357,19056,46078,19061,80771,40100,67505,14552,30143,24449,18513,22331,18713,69341,19484,20493,31958,13480,19601,62970,2307,73743,55582,92560,5741,83029,87749,39668,81740,18432,9156,42651,255,16374,89669,39939,19113,66875,46950,31945,60905,57323,33082,4894,50458,18670,28032,55661,14146,35602,53149,55605,49839,69630,51047,86640,34264,39826,4700,45883,37712,41419,53947,98328,757,37951,17686,31039,88500,79417,40884,20693,33860,10884,40354,22103,42983,44731,1063,27894,50471,13666,38985,61329,10544,47444,74708,96785,36719,46564,57353,47016,28399,81413,13997,43936,62792,28794,16639,17877,57606,59397,14313,77522,26986,19262,90602,35205,90436,52564,22670,26500,93506,69201,54886,587,52085,13820,79095,48309,14843,99271,43522,92146,84007,7818,12841,88540,93149,6834,46092,50054,52377,25528,15298,80440,12039,36458,9710,75319,53925,90773,37365,40149,54406,63249,19137,69705,99905,71098,93936,60214,38695,26314,59080,78229,80627,90496,99039,18482,58889,85629,10344,57268,97648,90441,31918,64785,24242,93537,73186,14355,28636,93696,29636,23195,34240,61988,22580,78527,93443,35501,70724,5468,32882,56161,48647,34802,64092,48122,81379,55129,67615,71971,28958,86693,20541,99495,90048,57996,70703,12940,18401,80699,73753,90345,31082,68576,23630,77601,91647,43501,99471,84052,4749,37928,87972,98034,20391,66209,1765,72695,18838,94929,28657,38007,42588,27083,22083,60180,33897,51220,95396,50370,47436,19103,17990,82234,1165,46569,93916,52607,94463,30408,94346,31018,37944,2036,6954,3338,31279,82934,68214,28536,57860,92961,26876,69746,44700,7513,6510,28871,59247,6655,77010,75716,49182,26059,96816,3109,40334,57992,25467,53709,8978,4165,92323,39109,20881,93212,86304,84547,58065,21319,11522,42188,20398,36178,97699,48440,57322,76275,68911,9237,95814,1995,3923,82582,95253,66838,64021,1479,57983,43324,91021,78476,797,47467,35028,70095,89150,24779,25035,90540,26273,57195,77648,29413,13089,58548,82516,91333,1656,57894,22840,44569,75494,79104,61061,63869,89282,32701,76604,56906,82409,44868,76257,65693,59305,10831,2761,96424,49033,9368,1552,62686,61655,25018,27278,38941,46573,24059,50507,99428,23358,35654,44447,31576,75626,14607,34594,56002,46534,15635,78950,45676,25145,67860,88992,87488,90909,4867,17501,76882,70755,56559,92448,32634,56459,73900,34957,40248,24946,65555,53975,589,91697,27622,74275,21517,18192,43434,86840,60814,65001,25313,40942,1939,47718,23407,38197,64715,80903,22209,94845,41587,27359,38345,85868,90974,8559,95757,24939,89311,55524,26096,15854,78007,26675,56686,26967,51240,88005,58552,69748,63996,86086,38279,38475,61112,96015,71318,95830,9259,17082,61746,59222,79357,73441,57857,97377,77711,55191,65406,19047,28815,77953,92787,36499,65108,96597,43975,39604,56913,32581,57184,50311,12709,96887,32975,66607,53907,69449,86959,79489,23314,23818,19583,16553,76347,62603,59265,30032,15361,94950,94071,95705,30972,79143,85746,91094,88257,92290,62145,81791,43803,12998,99743,35499,16808,3581,89197,96456,69438,48460,97085,85052,40679,43286,29247,78496,55485,16279,49376,17900,76421,78039,64892,40186,12492,78656,2455,7475,98517,15786,78413,58310,36309,99124,6829,3929,66871,90965,26356,10956,53252,36305,86157,53827,19345,81562,39692,97469,69886,95758,66842,47609,65110,97977,35502,85396,69568,87546,19660,79993,81587,11185,52178,8589,65058,87299,73131,73576,80027,10304,20483,7586,10165,50206,2113,58402,28398,38233,55004,45661,64845,88401,36728,45549,55162,40450,14487,4382,53111,48469,12939,39771,82349,10427,20883,10100,12759,9425,14493,81675,77334,74661,16773,99009,65526,15350,61830,43241,7825,94583,8731,40236,36285,79032,54898,87935,96374,12327,39707,85350,93683,91478,28959,89759,53177,83601,17887,13977,83284,91408,12398,50899,58248,91699,95418,29253,88466,8222,33892,5907,86906,85390,40020,12848,89804,62714,90826,7519,69044,92183,87851,12440,19455,11731,58563,74199,78975,5591,4594,55692,87741,70181,46705,53096,7766,29101,21206,1776,73168,44625,60575,80173,50729,55461,94965,6156,48544,44238,94231,3142,55902,78251,10392,38293,14599,75277,29574,20808,50055,13282,7823,69267,44933,75765,81723,79423,37689,78214,37510,7249,35473,63977,50698,36219,80086,29856,3489,92494,61311,45591,88552,20696,51274,74360,26309,40695,55463,85782,12253,72919,96624,9088,62181,28627,61471,61117,22409,66313,25578,54139,71655,26438,30188,84395,877,11216,54389,47369,42655,94009,23604,38184,27199,6493,7713,60188,81169,57226,1943,91721,1333,17985,52080,22541,43299,48659,11799,17537,29707,98970,18988,53337,30022,93759,89195,15883,13949,97288,50392,50302,91446,84118,58083,23506,22574,43952,64044,35829,52921,80638,81835,84253,58804,31042,24052,82416,92332,43274,95760,53432,19495,48347,99523,72603,77268,30283,33413,10807,14520,60464,49864,96892,37829,10511,2438,80345,48529,94070,42667,18306,19093,8146,28754,69308,25036,72244,78146,11842,69013,62654,4854,52475,4954,63453,26445,39138,16876,79716,6369,99174,75276,87854,26471,54421,32076,14867,30145,52911,90115,62666,30723,82877,72881,51594,86799,72291,63296,96679,59170,2184,40890,96896,97069,1304,12252,70308,19858,9856,44436,65822,16145,46890,82881,4356,87062,70701,37140,77608,76722,14088,1386,27441,26969,67444,45966,13958,73263,18681,82623,65574,37860,72101,5173,52654,17342,84434,81290,39439,55494,7166,61402,7133,4988,65467,85527,26553,59236,5756,33484,9476,26788,38732,41199,88404,79803,79916,80509,78623,47911,50993,5768,59031,14535,21164,46203,83357,53529,43476,87442,88410,83900,77718,23141,37917,38801,99233,7099,60424,49853,25451,10457,57625,40541,44403,23398,6059,14691,49555,88927,20631,92298,55107,61610,81029,96800,46432,1282,59187,33946,35403,50279,98636,32611,29311,71652,62548,64846,51439,38842,5608,29591,28376,93001,81932,33715,25808,51206,83267,6838,60299,89876,49017,11172,96527,62412,47012,77177,56076,17493,6179,48201,38028,59823,52420,62010,50823,15017,52384,6368,20988,74346,78782,12281,78262,45916,6947,75953,62587,48841,90551,77666,81825,68061,30763,97079,93565,41786,14531,87875,18100,89294,46103,15156,67969,13809,14329,80484,75627,8123,6191,88015,77819,72516,32915,66375,91465,63567,35032,88962,13087,15695,63995,15791,92357,10729,36316,35078,99117,93934,86948,68166,18556,23288,96853,57709,73601,88420,15468,28890,1544,156,50452,38747,55421,27435,35452,43094,46408,96665,46475,33984,7016,45247,35738,7563,23211,72966,27479,61593,92465,40033,41454,41657,49879,52107,80352,62009,89358,24733,54819,10014,18839,11468,86814,59207,36604,55181,72456,24685,3861,70697,18902,81590,88812,53804,88264,13051,7476,56726,29722,90259,56421,52665,82701,69569,72903,73578,30298,31179,67589,44162,89103,8395,65850,15736,12310,51855,50594,89156,76850,7806,5644,25991,80781,40043,86201,66767,19104,87495,71479,84331,60580,9762,88297,40708,20007,74316,94651,91004,37967,98691,8477,2558,43619,15505,10264,18858,57200,80582,75654,28775,27501,18071,2023,54940,57866,25327,22583,14581,60992,30215,57622,47256,2157,33351,73201,74818,6408,29060,53623,73116,54638,62018,98663,42972,17965,97791,99637,32103,98978,89827,54392,22749,55537,57733,93522,65279,2649,61950,26719,12260,11445,14930,85566,22141,88563,38794,15717,60825,68704,16271,39193,78833,50123,52049,63000,37019,92132,6517,32254,70456,14538,82320,51770,48412,8719,96393,24176,31226,68297,84571,69469,64339,25152,96984,64191,57411,57796,84349,62164,70764,39644,12613,78177,5310,22477,63498,36868,4890,77408,90705,89721,92055,29737,58710,10506,17528,25628,3848,61749,10970,58982,46137,52954,7733,67859,1580,72971,21125,57088,12722,4715,82482,68005,74484,1525,76975,99461,13367,40535,15788,63195,98538,65940,89635,58478,14707,69743,7588,41738,57276,82298,40618,72387,91266,26637,38921,12452,90535,72112,46298,82659,88960,17378,17414,32644,18589,901,84690,58419,2489,36569,63631,96251,51791,11912,21886,57231,6992,68521,22322,26552,79426,56260,74542,96319,63380,36474,94620,92890,2945,9678,91897,63258,63366,37478,85632,71670,9909,94932,84874,19050,30954,96840,91295,34692,99683,11452,69179,62094,39806,77816,60339,79382,7314,50247,76195,68736,67862,95775,47536,55364,17018,42880,15071,74979,42989,97871,9122,36722,92401,53933,43261,9072,74975,17193,96066,87489,46481,64440,58784,68081,53997,63571,74688,84426,54350,26789,29964,99113,34329,5770,26577,67880,27095,60427,57806,66443,24829,30852,37411,36936,95985,75070,50298,37168,71925,96767,67088,85245,49149,98561,86797,36437,24763,2216,15292,25975,71800,15832,79847,67656,9270,53105,31315,54282,35486,54536,54361,2824,83776,33223,76647,631,94263,12127,68986,67524,9756,93496,62313,41524,18002,51468,95216,60060,65087,22657,59089,89789,96599,37207,88672,83404,20673,2367,35689,94425,80278,38103,62333,45770,5879,54655,10726,33096,74524,28021,60507,14709,81930,54822,66273,44442,62554,76002,67339,9764,20274,27670,75090,10082,49727,15817,52419,40645,47249,328,22717,22195,97962,37607,71132,49851,12897,97484,53365,76012,7633,1039,88811,70689,55160,92848,60991,14199,14816,61218,80511,10620,77168,24073,71057,53943,51645,51990,88875,23399,9018,43622,42650,79831,85440,45802,77231,10389,37649,20554,1297,24013,2426,68075,32886,92528,81086,81145,99129,69741,27833,29695,52644,41521,42062,68045,14894,43146,21663,53822,32128,53713,23331,40596,89064,75123,54744,66058,34116,23507,48516,23386,74993,30078,73859,86347,88037,46968,51597,33500,56461,47780,38502,74017,36140,5597,92374,70312,27167,15862,75336,12293,37573,87921,23069,81526,66253,31390,32733,69472,7258,54868,89,85805,37234,40440,37640,72980,12565,31021,18857,64169,27519,46927,5727,76957,38927,91045,42284,74382,38804,32020,53953,54456,11221,91694,69849,19646,53120,80109,13776,28555,88742,47366,98740,90330,42986,83543,92469,53147,76805,35457,27527,64736,41672,64509,47164,41489,82568,3801,67575,29945,55405,97336,66408,7813,77245,71353,82009,44470,8481,97191,79861,60323,36049,47775,57696,79318,4677,19223,3670,24741,26489,27490,60215,18852,69765,65117,39004,22215,18987,16622,4440,5081,57648,80864,57496,63660,17768,96547,64524,80327,79695,56975,98400,51348,88783,49251,46115,18161,53008,72518,29525,63261,10734,80954,37488,7399,74355,91416,83151,24811,92398,25098,26330,30642,31509,91244,51105,95397,15982,18054,28816,60487,94300,98670,36678,84183,73458,85785,28829,54808,46122,75384,58430,61027,31589,8512,33455,62256,58203,78849,36500,33516,39327,63289,1334,83323,86743,45751,6579,95919,40778,79642,46312,53399,9864,55835,80328,37583,39315,98116,53806,67453,99793,52201,91910,27162,27362,85215,52569,28569,85563,19160,60809,30079,76286,84611,55035,4313,47088,51304,40352,55280,97836,72243,24997,6882,53845,84145,71176,48564,58327,46380,73653,41740,1932,29867,10250,88650,38446,36875,78710,59000,10606,60129,19800,15565,15879,57207,26678,51368,84424,90585,66282,53090,38327,48470,1051,41172,96766,31395,78183,75134,60556,98504,26997,85226,19572,11535,15983,25076,57665,99410,95844,49217,11564,57589,57094,73549,62220,55429,90997,54034,79760,7110,89293,8050,71706,89718,69100,94689,16805,56107,38849,33696,89482,86938,47499,61454,80514,43282,94688,44157,23029,83679,50097,32902,93572,1573,17507,36204,33169,17628,47810,64111,53126,25057,64396,89278,90794,87401,93171,16687,1714,52147,46079,63857,97733,56646,970,39384,2223,35058,24764,95526,12958,48189,885,57204,97577,33227,46603,53343,85738,65182,27351,5406,47469,29287,29515,26533,35582,42875,11487,6543,65321,21694,41685,66962,31529,37693,42420,42109,83573,12063,7456,65679,64776,17917,46288,61433,31935,4601,21545,1564,92311,50560,7241,92188,88194,68253,41322,16164,76245,43542,68792,49517,77555,95423,76921,64475,45774,8258,90671,92752,26287,91335,51513,51839,1138,60104,15093,19815,11299,45812,5891,91144,83742,75073,73222,44972,82946,67725,77214,88930,8088,91032,25000,68084,61083,3742,76272,55584,28842,21019,15430,8703,36089,13801,59779,36242,67782,22522,63087,93896,92115,54640,46987,74478,25626,51077,49274,90847,2508,85649,37188,92424,91825,85954,64627,94525,63450,69109,83614,62935,21351,66177,62467,86889,93629,17529,50590,68316,75398,66907,9219,20014,22663,92199,3335,66430,31282,85609,13364,91204,6871,75056,16076,99395,82940,61705,94031,9152,10688,36706,20535,76241,13945,63867,68497,56743,7510,19599,49385,19561,70658,28921,1036,21558,28054,43680,88870,77727,32958,67506,26898,63647,11560,97600,94849,9780,75998,82025,87718,88758,92958,18609,3895,3498,37147,45066,2386,958,20797,22473,79594,31020,62801,6428,85427,12496,13853,84965,33315,19107,26772,11337,18814,17572,63115,42925,59235,56384,88245,66433,5609,98747,49006,26624,84402,90178,10756,24153,68179,42754,84764,40793,20949,63584,35256,82767,83280,3120,17677,23957,40496,68687,58596,29333,54163,2416,60266,66901,95524,88415,31461,64040,33620,6507,93336,40479,60717,37416,56023,9674,49835,10535,99936,68584,96045,24495,52364,73446,63907,24934,12459,14352,69154,51445,87734,17237,71053,84112,24968,4874,3676,79598,92663,55789,12344,93413,93311,69846,39313,82246,22065,76726,80202,8507,57995,79925,23762,59035,39845,52433,77637,39649,45548,56829,36717,49742,45784,93780,33688,83152,28646,44151,22071,18572,21377,93746,77174,32793,8887,18554,72523,56131,2619,7186,8478,69293,24351,5560,74196,25130,11208,66953,22889,40689,42503,99493,13349,9540,56029,10041,47696,562,24960,25458,86331,87498,58980,17412,34270,10579,44456,66385,8187,17120,74894,93812,63424,4688,33159,34621,28106,77460,55733,52638,48905,5181,26813,10910,56639,58719,37348,11733,33629,9145,17494,2570,57905,3209,81080,78798,3967,78429,5921,77890,60458,77209,98805,6437,82020,11459,11036,3991,2883,93076,72777,27,34926,5378,93014,40135,48399,25961,39381,16066,96221,65626,93050,76084,66143,16826,20954,71903,9434,40601,79445,99248,38277,24375,57434,26817,22078,64165,14636,65322,11471,18593,56072,43521,62308,933,90311,49124,1709,36399,52915,37444,61261,18357,60373,68597,86211,38352,3475,66506,37007,91081,91579,36891,23004,63511,38796,19998,14318,69554,60636,35144,64306,61925,45833,41056,68856,59580,32049,92090,6628,93347,10424,25368,89147,79370,52770,99735,30172,93825,88447,15182,87247,59710,34140,31037,87960,75025,51685,99631,5930,39204,95187,39222,4606,48136,36354,99597,68472,59519,95579,54503,17943,93338,48952,67617,87829,30772,50971,85541,37559,50491,43408,22921,30495,73483,8775,56617,10213,70452,50236,75324,39803,97487,77266,19006,50517,11037,17151,70036,84209,79025,41178,45729,3627,47627,88765,94838,97811,62304,97048,38957,27617,17377,54051,84,57352,11612,29742,33165,68557,19388,50198,5743,94308,34620,52651,60160,98501,27705,31296,5829,96085,72098,10219,5742,82533,59567,93567,69635,15674,62257,30860,58074,95777,37360,5396,7736,59010,268,97075,48407,30112,80782,72042,48433,55578,74652,52479,58089,68169,48676,42442,36895,24944,57356,93281,3960,60774,36046,13485,40200,76873,92723,11212,32057,29882,86522,49857,48040,66712,34662,74784,66957,72384,8223,88364,49771,46441,84988,57159,27179,47342,85056,1136,64160,37868,14496,60344,67903,45180,75399,93540,98616,92410,58751,4936,59012,41987,62566,25506,77358,85502,35309,69288,80608,72128,59461,99153,60416,44561,34168,50019,8492,88444,57435,72882,51725,50459,86768,11315,96980,24065,24301,31663,66379,81509,1953,79452,71440,87690,3298,42508,28427,68641,91587,91171,12643,24675,65694,58443,78743,86152,63827,14168,3162,92012,39823,72975,75753,23580,13492,77118,87955,27181,51017,93290,72064,9403,73194,80331,49440,84172,88478,28751,41467,50639,29168,9677,96143,6845,43961,99109,25741,36764,67729,50318,31127,92122,89530,36888,73291,13799,2425,32953,38408,861,5655,89009,66855,79271,75598,35099,73428,79307,40550,60409,50800,95058,66845,530,2644,13655,33607,66781,43918,8539,88230,85963,98668,38595,51970,49509,72311,25181,8372,3125,123,97256,33605,19872,56532,54472,42931,51810,14202,44141,28438,65546,46542,5989,48656,52794,21528,18802,57201,22750,10562,91610,92094,12592,81088,80221,87671,28665,35955,33420,40977,74545,27145,76067,67977,29153,12371,92588,93455,79227,58626,51235,92378,67066,86481,22613,23839,72476,56886,47242,13798,68495,91466,99563,91956,47089,4758,98878,93123,80446,37180,19477,55873,86354,24044,96229,75970,16914,55195,3262,63544,12657,84638,98719,83595,810,73457,5635,80362,47977,618,6626,28541,88268,86834,97165,59449,92445,19958,45326,10361,57516,73707,14916,55313,38615,42440,53456,14117,30645,33861,15434,65744,95403,2102,96499,8551,11921,16178,15344,65044,10590,35322,64292,77748,63721,78787,96881,69720,48892,91554,61328,20630,83938,35336,85480,57816,21518,74624,76986,61978,54939,41958,94447,59141,63611,85474,43670,27789,17051,488,69719,87561,7041,88409,142,36369,59656,52932,40503,31490,70982,66679,5639,97297,42121,66637,18293,22328,9151,34907,69684,95440,82031,78073,45862,24417,74527,67008,30428,90684,18812,56382,82228,69723,95121,30921,57655,80317,26875,66632,73833,58687,45297,68889,35802,48250,75448,71726,74180,82033,27043,74128,29187,55571,60917,18739,6874,61817,983,73502,99844,23751,64650,67013,78119,2150,82436,87674,87651,8554,53703,67888,30987,23077,38013,11624,14811,50134,21603,96578,73975,88638,43836,29464,58793,54823,37751,44746,49473,64874,22320,10879,64281,10941,65438,1105,36461,81943,46923,63894,34845,98134,18106,84698,14300,42472,37702,7252,81190,8532,35994,1976,39207,43807,82524,49281,99963,45850,64835,82579,43426,65516,89366,37554,22963,31605,20164,41668,98301,30225,37974,76661,69583,61406,73717,89795,78239,92004,76991,5722,96643,87456,41713,50486,8828,32998,29034,34753,16533,30048,55512,8173,64088,34603,37396,11884,33220,97610,2888,33564,47201,42341,44266,41577,22993,54467,60714,51616,83077,52424,32747,47224,46770,25849,87532,8406,29986,74701,34991,99926,57284,13657,5628,28035,61865,77352,87900,10925,18212,82842,23435,27512,87289,15013,80723,94711,17250,72170,8601,86166,4192,99640,48692,57006,41648,8282,40702,98348,90247,50614,6511,65412,48017,73251,62341,52542,48140,52508,272,47399,95432,7436,46546,91337,85923,84429,44155,82227,19367,19099,1384,38186,32204,70400,27021,67136,57259,62099,69336,24295,22405,99001,5335,78494,81629,3332,21003,8856,84920,54555,33829,5612,40089,24692,40776,83255,19407,21707,90019,55598,65836,54011,11812,12633,86230,5803,20796,64810,17805,17605,4153,5192,3794,87707,13015,1505,53429,51160,31349,11914,61784,9157,27888,61049,89845,59390,94399,24626,14486,88259,57068,14140,53026,88942,2590,96406,38817,96218,39517,79388,36269,74081,38334,25742,68663,88482,96490,64946,87157,15474,50847,23186,94310,35354,6918,58328,84758,17057,83095,20537,97569,1965,96740,9077,49371,9413,20467,67381,85365,92490,25027,6215,96332,81613,58575,11250,42393,4094,67569,77950,15835,13187,7233,41330,73882,9097,65668,21150,94608,18042,30089,66705,62742,35106,79287,74450,28327,87605,11923,89465,15943,78952,12441,64899,99452,14194,30083,95918,26443,22525,28756,99680,13508,97922,69087,72721,36935,81432,29346,21865,28076,1927,20585,18766,80011,61874,44045,77086,36262,27605,83163,92846,40113,69321,57945,90421,95761,97615,20433,24082,48904,57600,40637,18989,44648,45764,93329,13886,95931,82213,31731,27463,68245,16452,1697,92945,77287,71520,40905,31593,78575,568,50308,12299,9836,32728,29375,20870,27013,64017,77558,59124,85419,36588,349,13608,16069,6121,24461,69908,17106,67002,74617,82190,17771,1357,1477,64080,15137,31750,58568,92254,58219,39742,4320,17061,16550,7773,76326,661,22436,20118,36263,34914,64494,91832,75909,78713,24433,51191,54934,23058,29315,13338,46952,40134,46516,38219,89248,37107,53729,97828,8810,70298,22101,29585,20104,47480,97112,81298,93492,94196,32437,74062,25970,39717,27925,4741,14532,55111,49902,84681,64969,46223,97025,89441,87555,29222,59056,60949,65287,22177,77463,83346,96344,6645,65436,93432,92430,98453,45053,12865,8437,51553,76534,73419,56898,10284,26517,21798,70442,9592,93022,49915,93079,39679,13647,52739,92368,19143,90686,89887,99971,80219,32845,86541,33442,23551,80891,43646,47809,62151,38133,92446,75571,7961,26671,95457,4479,32248,65340,29990,11173,20217,61108,90689,11357,31363,51824,34384,91759,56050,15069,23500,94807,1989,81106,10198,83747,78491,26889,57545,97686,43786,79515,21832,16692,22532,72161,26203,14576,22552,61287,85506,43621,73400,61974,34573,17486,27846,82006,46300,81484,27981,65267,28219,50676,22206,55660,3941,80411,96147,2859,6597,34099,95636,25681,99490,21144,18782,93811,81184,68944,913,72671,34807,7676,93741,38858,83464,35912,59159,92950,83182,84095,97274,62086,22151,25842,30295,5166,44116,55378,92737,26767,98867,78356,85019,2177,80822,69380,87138,26892,79352,34672,7270,73915,59835,99985,58322,34546,83606,47195,65710,70378,47397,34572,46453,421,31860,74895,57953,4073,15135,30015,5020,91788,45328,14272,46274,76487,93216,44705,68708,8561,84241,15700,55455,35625,58139,29225,10958,19851,31547,78659,69276,84873,99790,92855,82137,53927,23940,4514,99000,21496,96046,52222,79103,6983,60436,68153,96275,74822,39656,21987,84342,6899,56429,75691,87871,11642,14788,8018,15844,3017,58613,84974,43570,79405,75980,46651,52510,5176,38332,13897,78634,43999,83851,20445,907,9995,99349,50752,93280,79968,53312,93231,73836,32946,53665,52108,69541,256,68679,24216,73855,35916,7850,17391,5487,7329,4106,93585,73268,34336,6208,20119,30741,43310,25303,2069,54465,79211,30660,28826,37743,4188,57756,29080,95822,98748,97573,3823,42786,82370,80047,3244,15907,82194,82643,2635,77613,25649,52238,85190,8011,75608,52784,11362,56914,49270,33571,95903,52148,9281,25235,70120,70994,33113,46439,92084,97185,7395,67172,15648,19280,84715,29221,3855,67106,22469,6291,82481,10334,65328,86018,50953,95110,97338,43647,37617,14130,88924,73338,23199,7493,14326,26749,59771,77705,83884,78134,28329,61442,51082,38585,33645,94767,83733,74070,48523,19704,72465,53121,45135,51064,22538,28394,59827,66231,24198,34785,71632,21785,72375,745,70939,14901,90580,39810,51556,35362,73206,33881,33059,57876,31444,32618,33043,27473,80720,5896,85524,52809,42968,98403,6921,77809,56193,8401,33731,523,54867,62898,24192,8116,99126,13982,43406,5754,41190,2601,45465,96826,97958,5821,70952,35342,11368,12911,10018,95686,44829,4118,9186,47072,28929,53878,82920,76890,19468,4634,2591,88443,91963,35663,83145,76557,33748,26868,63251,479,71011,89623,54850,66338,48704,44135,63209,73055,2890,14039,50661,49214,33767,49209,58783,34391,55069,59384,60000,61622,92436,28325,74043,70390,83558,98519,64499,39553,85663,91492,84356,40715,92341,52548,85875,77241,15850,32536,51317,53732,49036,60204,94627,50567,37169,55427,63310,84880,9394,56020,42024,87161,36506,82955,13191,46736,24670,92817,4831,15828,94909,14050,67863,83794,16161,70910,36438,19436,82558,17663,44009,67105,89595,16444,39093,1421,92826,17454,54758,51820,59532,11645,58260,20610,15647,86609,97144,14498,13995,80596,53798,3184,75781,88921,31778,26073,27106,93255,47124,33992,66090,76407,2018,41532,58030,90399,41456,54366,47139,96072,23524,45125,77535,63525,69638,90573,46864,83038,66905,48236,79362,14708,43070,81816,16274,98649,18690,61531,85813,75876,87290,91048,10650,279,15187,719,30192,42245,13533,30579,38003,24148,86820,99789,72538,97888,20383,32724,28784,80205,83454,79988,7535,30120,72196,86993,28290,94454,88412,10504,43200,8271,244,91020,94215,11785,48153,14515,52703,72894,92910,14387,37400,13504,44696,24592,38129,32748,29678,22954,53135,4388,95796,87305,11353,41843,67276,7787,9804,38874,40682,68057,45154,32526,36816,41791,51252,15295,87522,18779,63516,67929,29675,6849,12211,73544,52766,86536,20613,91367,36220,24915,26522,8574,53316,79306,18999,18514,27301,67858,8563,90750,98587,44703,72261,59954,13907,51330,58271,47212,40581,7572,63009,81905,63286,29773,57349,547,11398,27967,12085,71539,28709,8911,27641,69163,5735,30036,48520,6441,13313,19938,69531,53586,36534,61382,42053,79918,84622,93903,84326,89771,35735,16006,82470,98398,74335,55687,94331,52799,75406,3251,44037,83431,70513,19674,94835,81013,27819,69444,15484,41349,85967,55328,13937,3128,79508,61896,1192,46616,61331,65725,65366,61492,98689,74269,9146,78341,56928,31680,17544,83878,66042,44623,8961,8541,93967,67161,19551,11206,10022,89761,99234,33033,19779,28344,32451,25389,89998,60092,97722,46176,33841,98163,47923,24839,99096,33318,71773,52044,89740,13858,44195,62933,86861,88803,46936,82896,86049,31570,8639,91636,22942,91539,57663,14191,28292,43448,95581,66124,32875,47324,70914,63217,48075,19028,23694,68213,30892,81716,82815,96912,50256,12780,12184,58618,76901,72839,42795,30090,86495,27595,38993,86607,38981,64241,93650,83335,93437,80360,1062,48718,72809,67314,68404,55153,55943,64213,1107,93464,82326,3980,28795,69824,15008,55926,32753,94135,40770,40624,18994,71136,93704,75473,43916,48180,47818,51147,25980,57416,82268,15804,88496,24112,73956,37983,68855,6604,74251,20639,49202,16619,47485,11604,22198,27406,39852,23760,38115,74393,26038,90782,97904,15456,44670,95223,98604,4439,26315,24619,98356,81644,98248,32895,98338,48956,95637,4175,65734,72749,89716,29855,52722,42200,13787,46110,94501,96439,82608,89911,35118,52720,25933,99945,76715,65579,35645,25279,27780,50906,582,22626,69256,1275,28567,62141,86896,22641,43003,74938,22407,54040,40861,20514,90636,96939,35114,76675,92058,63848,40256,45262,84953,92761,29302,44057,72863,33067,64938,21655,46112,416,83353,69775,90579,2268,19269,86256,569,58152,64507,19613,70987,17078,38116,721,48715,21643,98447,86416,86069,300,71398,32966,78311,54635,32654,7279,13226,6238,87877,83,99922,80200,9691,68601,31950,22704,1572,82440,9680,70238,58601,6756,73165,35687,54937,26924,84336,62648,14664,44203,54604,43446,1739,7333,57738,91391,2670,25414,8121,58484,22822,20733,50234,10849,97087,75576,91937,92077,13238,13134,77570,90377,79656,92200,29373,29164,20950,9854,54284,47663,15178,71381,28653,92803,7830,37208,45939,31065,21438,24035,35442,76510,73991,57915,82915,70704,62454,61046,16232,25605,56564,75095,17437,2320,44355,58351,32455,70066,60366,4011,45085,40418,62474,81010,61263,8124,4495,53411,36750,33512,98894,71342,49068,22227,82450,62825,4114,64569,88509,1712,7421,3919,25855,65815,37426,98671,85476,88857,95206,3580,15940,16929,72901,32599,24498,83399,81256,76971,58821,2443,89189,97330,49148,71105,19097,73828,98269,48455,42425,56035,37028,36436,99120,55230,66778,31176,99425,74173,68834,35448,79818,88088,71414,72891,3095,88602,45573,85672,71988,3972,23967,71256,29831,82622,32434,26109,66563,29202,81495,40766,72425,76719,97506,20259,22035,32121,39723,78111,51088,8331,75565,36737,69840,59176,89307,91954,71676,29746,973,30534,19675,74917,12467,47843,48833,47648,45584,36629,87382,39240,67673,41901,41263,39892,24933,30589,28891,65514,33653,60367,69300,80419,63915,83461,61197,77221,12582,47052,53658,32290,31669,10217,23763,2487,26213,45901,25558,969,39468,53638,78388,77991,49597,69928,88564,36480,70088,27000,40756,65685,21458,85101,83528,43488,49562,12884,75988,40985,372,66377,53849,85283,80513,25051,14752,49317,37965,56800,13261,79702,95280,66538,10538,23103,51728,51736,99864,9312,34332,92030,40598,28384,47146,12608,34182,74514,81962,19956,36009,38819,85282,73479,9267,45724,19001,7741,75126,40821,25307,16618,79394,55555,36624,67427,95032,55470,56342,27824,29864,41827,30105,95185,28600,23579,38210,88536,95833,8137,98802,27580,84046,5439,87973,48814,87158,75893,63754,15709,95994,25353,91401,58086,57469,73280,19433,7247,82830,8247,60690,10662,76549,30452,35500,91131,57593,29088,97050,6144,39037,63914,78542,13405,49438,31141,74410,90261,98855,55443,32051,10757,54102,96917,84421,78692,22015,25491,86489,10291,46656,6053,18466,80488,79564,62499,84637,54547,81359,18253,41749,99932,26277,44527,72712,66159,73390,15084,44690,53217,97908,36509,61000,16630,46608,55417,64625,50702,54159,66135,39876,91728,56174,89847,5234,54799,8454,32868,65747,91153,68819,43352,69661,93381,97485,50723,48895,30493,61133,99898,47501,79634,63022,99613,92857,12951,8034,80014,57081,68218,84368,63175,13053,47948,52908,17362,90835,80065,42505,32008,77315,98592,14171,50420,34582,15652,80250,20987,40737,21459,51286,97026,77744,72540,45035,66964,59481,8939,17464,98875,94592,60936,49320,54413,94540,62640,3022,32186,37981,71484,2488,65701,561,11954,24162,73546,90387,68182,46727,14840,55529,23271,28639,56418,74509,98031,60243,71339,77087,43039,58173,70240,44786,53248,8181,18730,13358,6567,20578,3391,92420,88739,91720,54337,19005,21260,64401,75154,54702,18047,13957,86590,6894,13374,7417,55347,30583,61851,38204,28072,10853,63982,79060,79717,40431,79836,6906,20655,6116,23132,7393,55392,7601,7866,13499,53492,9849,31518,13443,46178,29764,3714,76704,33666,13368,9380,48353,33967,34006,23057,97955,84352,76736,74988,82891,48493,53301,67180,51109,57528,50398,66982,29382,68011,26603,63726,86863,42833,10666,97394,21539,25586,27017,84902,19196,13466,49701,80256,75510,17822,61310,51403,5273,75946,87472,83349,52707,61511,57784,78299,75201,85236,79698,30288,48571,86862,91981,90541,53752,37398,86824,86430,50812,1488,93847,7227,47497,31711,77508,64850,90799,75041,257,58477,79079,16077,62747,49631,14619,2809,87359,91657,21080,1238,29772,22561,8919,2977,7810,12404,95069,32846,18968,61595,88643,6753,39329,83391,11202,52893,92092,6284,94609,36536,74999,47723,11732,19206,73574,50736,36809,28239,45393,93343,63196,81592,67514,13269,46967,22679,67175,31690,5385,51991,67681,49632,47693,85167,35206,16143,21819,78287,56183,17835,74658,3569,83511,55419,31089,99679,96369,1137,88397,19052,80706,64728,65428,33217,56527,15147,61956,44573,48627,39948,58137,54760,22297,49772,96894,27876,64549,54205,70506,62059,50667,4710,8289,4652,22813,68895,98183,27364,87548,52903,79927,55867,40818,57289,95224,70616,36155,71792,6134,11538,94055,15347,69071,82374,48843,71630,23916,10923,68311,62598,86527,22410,37972,37209,43496,17557,10672,72816,69911,48609,8926,70322,69210,21574,88774,50441,59752,7015,98282,91085,54187,94979,4307,12109,19512,99412,726,55632,4459,21473,45594,6660,72630,18817,96171,17315,39533,78375,42259,48207,20303,95127,29152,61545,19004,61229,79121,64828,54232,21907,14161,57900,5062,16907,97590,87904,77743,53273,25911,16479,3002,10954,83060,34212,39208,41873,37203,79001,28981,55803,78220,78248,11617,42311,52007,59340,35152,76962,9598,11663,70657,98311,67,76768,82391,3722,11568,57777,45055,13931,98362,26453,9853,95029,53281,60857,83084,44385,70213,98822,33989,43822,20129,22282,93954,57841,70263,23674,37429,79628,99796,32815,74728,21944,89527,47941,89783,81936,38167,44243,31156,12313,11349,63993,14214,58479,74809,73450,11148,49645,82616,92806,7121,96837,36675,30107,64656,1493,69697,45923,7387,87319,41908,73525,66991,50230,29588,69119,20582,45184,43794,22588,9805,63188,28285,33802,1769,44887,86088,76146,47283,78648,99137,76670,11474,52912,776,74052,52390,39036,8805,21040,40915,66186,67287,48105,48235,30050,90634,35037,25882,97567,75922,91368,56167,15498,40241,69639,53408,56645,36225,8459,72569,91079,33663,13307,77324,51096,77899,32675,86945,11529,4212,62871,26934,4597,8211,36407,85952,49305,73506,85824,42075,41471,75318,2083,67152,11963,63218,8965,21236,22577,15712,71448,76984,91007,31340,6666,23299,36882,75182,69327,20074,94599,88239,42242,21378,50340,9657,76259,12438,64675,71124,83972,93440,89203,36129,62869,66005,74523,89614,48915,52268,40980,4254,14026,8605,89929,63314,79427,57250,39339,37521,31916,5827,56920,1531,30600,85242,62615,3787,72109,23922,65686,94349,12704,5607,21910,50015,28460,83590,74477,44383,81059,75902,79934,42426,47026,74123,58277,32232,23147,57437,30886,86628,90307,78178,69740,64216,36554,59368,48332,63325,96644,48263,56762,82303,72411,97760,36275,27823,81437,86016,38733,65509,97640,44279,2984,56361,34196,57821,58435,87538,49292,89948,92837,46255,97847,47590,65399,91394,15676,54864,19714,49382,32565,27008,45037,13952,11400,37475,10996,35023,76702,21384,78207,35537,79166,23786,76528,15722,19194,85807,54360,50852,72290,68826,22966,9715,853,60318,27828,13626,48807,40519,26586,32947,43874,15168,33555,81904,36212,42403,86250,3215,43781,93844,73865,17452,10862,21006,17599,2931,3222,19856,91484,62227,35360,67933,45336,82696,60385,75181,94131,29098,13264,54033,69508,10088,83684,5277,73012,16665,86915,16294,83649,73600,13481,48482,96586,69106,81770,22415,44655,39219,38552,43112,445,94317,82496,76564,20045,38040,41445,86773,16502,68030,30738,48280,43121,20534,9366,83432,3156,30195,53003,98511,10095,44320,70816,36026,31696,93908,39556,29288,25029,88092,87724,69012,40614,59890,26355,18236,45824,36447,52971,86332,75513,62063,1208,64714,88372,87297,21287,32085,35580,72221,71005,68050,99687,61567,67696,22917,41373,35392,67279,92714,47455,9316,3351,32931,23362,36810,58320,39247,29791,18967,28156,59910,84608,42832,1620,60294,18310,65981,4800,90016,88034,12019,17857,24109,52666,90676,20774,99221,23070,72467,32737,98387,5584,28796,45501,89681,99858,46591,96536,1766,96260,76645,26388,44783,55886,6746,73181,77359,19962,63164,56549,89706,49787,1475,71714,71694,85453,36492,42768,20147,21436,27905,19933,5815,78065,82467,25559,94664,48441,72597,64061,46433,90681,57119,46158,62408,54903,63678,49356,36148,95071,88983,3885,33086,98216,88170,21908,43403,95670,38920,76751,26440,14043,44875,66658,85881,68595,3271,12866,57903,80257,84981,83075,58815,97886,20133,90823,47554,89825,74800,58087,40170,37723,57233,81862,65900,89979,52820,59897,80695,75042,40707,70202,65029,20877,6737,54250,92904,42719,46828,74857,31299,96677,60689,21683,1579,14940,77437,14424,22404,48950,43885,39480,10428,23727,80958,63335,58338,98450,66123,44078,12984,42493,8149,76903,96803,13135,2728,38711,63635,11497,61174,2760,33384,63461,17798,21519,85150,94962,63614,67966,75495,92514,92272,51935,99598,39442,51996,23549,27873,57872,97768,54407,81304,27201,89753,99274,51487,15094,31032,62518,23229,62306,23826,5526,96327,74042,6758,27491,19559,26531,1258,92843,10867,61769,33879,50312,14427,17079,54708,45811,75350,95653,35997,38620,62120,33395,43787,36669,80652,10124,86664,14734,18041,14344,28141,74075,68734,26159,11817,71309,18312,74851,78606,25868,37578,13718,49647,45367,83156,39922,42884,65003,79480,18093,59762,20476,63649,77356,62914,78040,50920,98969,57999,12936,48765,50924,82448,36820,71181,72785,78497,23422,50364,59702,25680,49436,40782,34258,7916,11106,67946,48151,92276,44992,34089,71294,32924,91921,71722,39987,33053,1476,4065,31247,29282,49730,64493,76654,80164,16887,66242,25304,84348,12860,36028,61015,10271,70405,19988,27511,75746,64775,56980,19798,10824,7324,97265,66411,94053,72423,26927,50502,97518,21070,66666,10403,15447,25748,89542,36960,70492,6295,85197,26095,83788,8977,7970,49032,33570,46238,46060,43210,34844,41213,77084,99584,66250,36489,39512,64698,635,93044,42684,5478,15634,55540,94783,1283,57084,99150,2679,72136,18416,66922,35901,25075,56601,77980,48208,63002,36815,47487,64508,1354,90756,50153,23067,10393,25143,8505,77537,91129,20291,397,92874,15465,56048,98242,23322,13286,16821,99653,61980,83110,5724,62437,25606,57664,60663,46330,98741,71070,11922,43292,71625,59914,85208,83079,66391,6210,72917,10815,30716,90265,53791,71607,59119,83202,34334,58303,2048,46062,51937,11422,52943,5410,20335,73583,19650,63984,84297,67923,61869,11394,48144,60500,56370,11771,26343,51446,39280,40451,41327,57383,11025,57893,8450,46627,82070,46094,40004,83754,99964,94964,91850,46141,23496,15236,39548,25108,38253,45265,56407,75698,94060,79196,24039,34616,70131,90815,19705,93243,35989,33398,36245,74618,14958,35782,57105,86005,54332,55613,17928,11762,69733,19993,32446,2040,81450,71214,76307,36104,73333,41291,64645,32740,48705,58170,27207,165,13150,85752,61361,539,71525,59978,76426,47440,92898,60599,11210,63956,63402,62278,86306,9066,60797,79757,1491,2639,28766,398,69379,1429,73195,46665,80570,43407,60698,61601,92593,33019,39638,25874,67220,93463,28301,50454,94238,14802,13043,40185,21651,92758,40268,29233,25390,26067,77468,36590,85376,34923,59514,4501,53078,86844,10669,96620,8509,93100,13117,77310,35135,63720,26884,11767,14337,31578,46868,55234,91370,58234,21439,67086,76049,99422,70358,99210,67097,53686,81707,37483,10035,24186,93529,83281,54542,51498,22927,43060,54302,30946,68123,74781,11780,9056,5069,76504,75262,31855,36109,26050,18706,75811,27472,90323,68273,21041,70320,23905,76354,98007,66586,63770,54672,44284,8997,43330,51835,43769,32982,27510,47997,34540,91871,44936,59711,99734,7356,13447,41345,99140,38830,70905,69565,93480,92301,31632,25623,79365,90026,35208,84714,26840,71989,22202,42382,42770,97154,81381,6733,56314,74363,32572,32745,49114,56957,6167,37126,17167,73415,22758,3376,62219,60648,28827,71320,89374,78187,3796,8052,25411,34087,42575,16182,1736,47743,63559,98503,19692,41728,22958,32573,68881,29113,33508,76022,25694,96908,50173,86156,2028,93414,41836,23627,794,20694,23847,13871,94710,38514,80330,52522,36168,46437,9470,96746,53322,35819,94975,16806,90221,25871,92749,61588,19453,53422,48993,60221,60034,38746,21316,55022,27281,16727,87357,3881,81504,77060,23824,5345,16060,17815,5262,7351,98628,80665,76154,9171,91544,34824,94653,63204,2896,50091,85271,98910,37427,49372,15184,24090,51916,5642,34668,62916,87882,2549,47958,89316,69273,33719,31532,81095,72266,31467,77758,90136,38328,3810,61152,59609,91689,76028,65739,21790,66317,3921,71594,62185,69706,47182,13891,22370,18422,95988,48736,85714,92052,9585,46657,91504,51999,43484,70563,63026,12179,79052,38727,16973,8326,7450,95449,65622,45753,43731,45014,59671,3725,12772,85839,65912,1425,65356,61062,575,66389,20397,3779,42412,23011,56545,34771,86894,27600,82063,3336,55291,67534,16455,52092,6852,73869,93631,7574,49332,82745,35251,57786,16283,74568,4230,4274,25581,29965,8259,40646,9840,23833,50008,47687,2497,40222,45134,42003,25213,21193,32021,44930,42485,85072,51392,66876,55519,68402,66477,66724,19114,12707,16123,53387,5624,19112,98075,66667,61818,48063,64474,55343,23052,33061,69633,70909,60430,76486,42389,63669,60386,4544,66690,69632,88137,64459,1606,15098,35908,93584,21106,33698,67232,28227,48271,10195,86908,92162,70434,88027,90380,17180,77386,86155,72873,68052,38690,94136,24942,81864,52807,21768,74559,90897,31394,13777,15250,68973,55355,13796,97425,80083,9957,52045,27593,21195,21605,77290,78995,52924,4619,83168,83438,67251,2417,68984,94626,21461,83586,67552,49949,23538,11203,49539,33827,63158,4111,36577,25724,49518,17902,80957,77855,96195,24097,31574,90086,46822,22274,73156,81954,29979,19051,38824,74813,2511,14363,44128,27382,54498,74395,41494,10565,36622,32916,90722,97846,23350,88897,78272,76942,62983,8960,42521,83974,20646,4295,10893,60399,2662,64189,59358,91069,42384,77135,2744,45636,52014,57929,98996,52118,17546,10888,84499,18763,66133,22845,14761,50094,87340,73396,22330,96037,13258,93744,42783,63135,93922,82004,34170,6093,67283,96051,34311,9872,47910,19563,84826,48684,1380,58176,10723,83469,97216,33196,27144,71846,99262,35778,74684,68811,55034,18325,14373,92376,77781,25391,35096,73347,39620,96690,90151,11189,88452,42067,51148,48443,12735,91133,56801,91212,46192,43284,20172,56857,35101,62678,81057,95109,52778,80825,33609,51927,81965,84862,19175,28800,39310,14580,26246,93254,2315,33452,75816,78535,84160,92181,19949,38758,71576,1685,77521,16111,42476,20843,94126,88622,33830,84979,98775,14949,45974,83997,16750,83946,18755,87670,55829,36475,8305,75256,40296,24536,67773,72129,92704,22855,29849,47592,35364,86154,96582,79270,65552,20382,80494,46980,74732,46609,34223,60321,26894,92032,17097,44845,38657,61305,36540,60351,4470,79377,64146,70714,58895,74719,85555,77419,4977,64856,20361,48878,41846,83303,35589,63992,79572,34550,57520,16475,69611,9870,66522,22483,88207,43601,46450,31695,75678,96654,69366,98904,93965,94374,68729,98280,95800,28451,38862,67068,71776,57563,96308,49135,70374,22694,61998,69430,79347,58010,80384,40787,51342,2309,45587,61738,91551,83359,30417,14000,36101,75681,45044,15329,34131,81573,60198,12561,80971,10074,39781,80082,18641,31303,21713,4903,65180,50776,30902,35740,57024,43538,63796,64534,97455,85,81426,43711,29709,26419,25003,44562,65273,7923,45983,29528,94625,70597,20125,58111,9652,15496,11228,45758,9271,93866,87697,63936,24306,8952,9141,16551,22703,19797,40800,1812,22776,37898,21111,35483,98316,18664,48525,6642,69873,81382,4564,40786,18580,90693,88687,42891,51909,79754,74480,82052,5153,2200,8989,1080,64236,26264,45645,43900,53684,82057,74519,97381,55382,82439,23082,32196,1121,81612,36704,80685,2185,43490,63668,10225,1382,92088,54157,73111,75916,88222,97162,30974,58332,15651,72598,62218,59078,42419,38599,46277,22547,63768,895,6621,91435,71825,34648,7108,71239,39766,66523,43741,61894,15589,67103,30978,53016,75952,54892,49074,85827,92091,30399,22175,52525,96177,53040,1979,98017,82405,85268,40933,56218,88966,91449,92638,22261,39757,15920,46318,48015,54226,44814,65874,60933,74691,51001,74163,29298,27391,32348,75734,97587,85309,72158,83385,34635,13502,74021,45738,10821,98411,79914,29066,72094,27117,38573,19089,86300,7341,54717,69590,17842,56150,12748,60343,94657,36325,26152,16148,46924,73840,41408,50677,7584,10639,30043,7256,61800,51730,18479,56115,55264,53869,36759,8193,4965,97126,70615,31149,49459,59703,23951,39079,63316,32873,68801,75833,33849,79674,83661,7147,69865,7123,4256,75522,24604,8484,73577,66731,62213,96600,62797,17722,96269,75965,26368,75515,90212,92555,86458,80601,36934,48726,43168,8144,33741,57292,70130,30281,32589,80272,7060,61153,81264,86305,37105,16871,65144,75111,40172,3155,12902,77998,28414,59887,95479,21007,55038,36870,57518,97462,85713,28915,37009,66105,38910,492,49946,72063,32382,89800,65269,87984,81713,68563,62270,32500,85299,15839,92229,90118,79302,83198,15776,90369,95363,68174,98292,33756,47367,40074,13560,72313,26717,20267,28865,51700,43041,14030,48691,47104,74463,92384,90979,70693,9200,56569,5611,22314,25386,10366,41239,68773,68206,35568,65137,27191,71815,26947,56877,14323,35517,16218,53368,27464,541,86528,11965,20529,96447,1472,91454,68421,18633,56595,60694,45938,88493,9599,50242,158,25587,47126,50478,30861,49568,66392,15061,69284,95731,89668,11926,46970,86064,16888,13055,30730,42907,42169,30216,81034,24248,75370,98452,5751,84955,19546,93675,83348,61603,68828,32738,40632,1253,68366,95160,37032,35319,30887,72360,54865,27984,17791,71054,61366,80430,79610,57252,79212,92067,80390,52330,73709,41333,90718,50122,38544,26557,35677,10279,33265,87136,51934,85983,53990,83951,32218,47290,62277,61731,28608,28684,41636,1159,78561,21082,45246,76269,14981,13176,11065,61474,78329,15469,22060,79778,88666,51179,20053,58966,72226,47230,9420,61347,34164,41413,66438,84905,99574,56832,39115,70115,5296,69067,61190,18897,48764,90833,8588,86851,27550,57021,91349,30012,73997,21650,76543,30410,86994,23074,8849,28207,26340,75844,26618,84204,96589,11528,6344,15927,19353,78947,25079,95747,29806,4645,82772,4993,36386,5716,72765,59932,95175,84619,54720,84785,33760,96996,50973,32074,38713,75484,50294,79797,7245,7694,24913,4240,26297,11846,30324,43216,94556,98428,23508,30705,70287,15693,59058,90112,35407,9917,61701,16129,73969,16985,80176,902,26514,35315,48732,9582,96607,8714,83044,80686,32331,48116,98693,34487,80183,35958,86126,9155,70265,83662,52697,10637,95488,47488,71508,716,53107,94922,8853,13831,68903,65389,54228,76692,68130,69945,8604,4850,1540,71683,67273,47385,9418,70895,92227,43688,78972,89918,40203,3966,44851,88934,18234,60892,47898,11281,32812,94744,55269,48006,97635,49945,99024,13545,33469,61355,21940,59868,79622,92034,17442,25487,94669,10505,70850,56005,89942,59981,9307,82317,73818,93141,81084,30162,9089,60433,75485,89553,45984,34493,22875,81992,71827,86050,17347,27049,95754,3612,69391,21229,1471,63048,84658,23059,92805,25,43067,14082,37795,49055,48901,74164,65167,47213,42826,34654,56358,56489,35136,55048,87466,10460,8631,76000,44606,52371,8468,22621,4667,19881,49644,98392,96305,28058,16381,42326,49134,28759,28548,19606,85726,19485,63093,3816,5088,50871,81333,87632,52598,51714,22576,71993,107,87865,21416,68659,85917,62900,82123,37266,51074,19575,35961,11089,31203,14407,86982,55880,96468,62978,5342,96083,59139,39601,4751,51604,47354,67075,22194,92614,67745,91231,55930,18480,7159,26999,7171,63297,27286,98824,78383,25836,96833,22537,95673,35632,41793,19643,66990,90394,49405,84164,16721,65075,51843,15427,18378,27897,47172,371,13695,10263,70769,69802,98832,64442,44060,60536,30268,13946,78725,82900,95596,87816,6990,92811,3560,33435,84665,42551,71076,57451,49743,94561,37191,96336,65658,78181,2557,94618,23885,39361,37171,16371,50989,61421,34108,60746,97578,75621,39773,47131,17725,18016,95198,73931,89937,70829,24908,6607,64885,57156,57168,28745,2377,46157,63556,87200,45511,32164,73101,36105,19195,37886,10206,4120,95987,88855,50125,3660,35279,63046,14362,15584,52909,35729,24160,55471,85626,82866,39869,70133,90409,48047,78374,57629,30858,1430,42771,28368,44010,90680,801,22949,68109,89725,4689,54510,17816,25774,29681,5917,94591,37652,40246,16151,87908,8400,74729,99388,55027,71462,92589,68303,12918,24466,29947,51389,52066,70542,79952,41566,77091,3163,42649,19204,55333,47608,85349,56003,48225,57337,82229,77806,72713,51486,39173,36845,92802,39022,55304,69758,77571,50042,28982,6692,45912,39172,53823,62011,45376,47915,4022,18534,78431,44858,2911,57401,63121,6410,99626,23778,51413,95201,4627,75102,83472,55345,88977,12222,57758,81257,27410,78477,49840,54371,65401,96241,16774,22871,52868,97478,22806,13361,99748,75327,51789,11590,9991,37996,40842,19668,45391,18672,14089,16849,70837,55919,68243,56484,50789,66164,52406,93403,77479,58523,55379,16049,97966,76397,75628,58660,51962,86165,82145,12136,94198,36348,94553,94179,71648,71967,1826,75005,65426,65397,43642,92010,89160,76456,90631,25535,56346,98886,55521,15440,50510,60353,34558,48066,75791,7516,92774,23943,79509,81686,20652,35840,45408,49553,2366,99149,62644,78819,16739,74815,97421,13850,81258,22800,32752,85200,74452,77657,79020,98359,67267,93104,13213,64720,6679,27366,1559,64841,9163,95586,72974,13047,56477,16263,40723,58810,8799,43555,61258,70250,3731,11640,87516,38231,97802,10129,37803,45427,30351,84704,43970,14400,24057,71380,78240,81703,64999,25675,31705,66424,51279,25012,22476,72417,27786,1868,7585,90281,25780,227,11899,16237,54951,21489,97101,85121,76214,96658,10805,3907,95834,54904,31792,62754,30619,24016,32881,59781,22113,19264,94272,27664,56831,84518,76225,61808,74571,25480,74604,73755,60241,6735,23901,72706,98814,4678,88926,47491,64478,14626,81588,64034,66621,85227,44270,60467,69457,44969,89940,45202,11129,88636,37447,58834,46706,66573,45116,31709,5696,18548,14255,72782,36117,55626,30615,63010,5794,91314,32524,96587,7225,62761,49465,7957,97301,54311,55016,99355,24620,53010,23060,94906,22719,34118,41432,68692,23114,45228,56509,53944,59047,49287,87384,60449,10826,8511,53170,44173,92347,63027,94768,92079,1660,73079,27454,22570,72753,43789,11892,63276,59594,29029,24825,99634,33214,89567,42367,33915,87371,20254,52427,29376,36596,89028,63309,27832,48789,46117,56852,94287,91869,23050,5254,17763,31263,89120,60131,43098,34870,53788,41824,15994,3665,95973,23881,81917,49285,16651,79206,8812,45369,94873,65726,23515,33380,59127,48641,89541,99183,99473,93502,64777,7042,64998,77350,69829,91958,72090,89432,37880,34959,15286,37143,79129,1408,79282,17606,16420,32004,34526,43991,18127,38080,46240,45254,70783,13322,44091,3288,55836,24921,90018,1937,35552,41183,3196,56247,11107,14517,64653,61276,76212,35893,97642,85517,21933,14409,17643,70651,63294,86081,34109,49307,44866,42751,2178,44836,32672,48990,6105,40053,2956,76954,84330,74326,20629,29989,1550,86523,1029,60718,52684,99557,79800,53999,28537,67401,31314,15987,94239,8734,28670,74507,2006,37816,10520,38527,47227,55844,56558,90802,76140,62535,93723,69816,14489,83401,22731,10797,63790,83682,35222,66299,27998,98953,97176,56142,95202,38781,61180,41542,89829,46040,44052,91932,75667,49720,65242,6465,37577,32847,39801,83676,47659,80518,97076,30513,29656,17794,41365,50922,54719,58830,61711,85520,92939,55467,96957,91578,88557,92989,63510,71004,78498,13700,12900,84161,31622,79297,16927,4990,11183,64528,87618,76236,22563,88612,7169,68290,55869,53818,95380,93543,84108,22647,6048,54113,19369,71036,60667,15208,40078,25958,69625,24535,48723,98631,84504,56834,41003,3309,43279,37088,61625,87824,48196,26345,97004,47763,58162,24677,17406,48141,23594,33531,29141,79090,20765,614,9199,17448,26283,43215,19925,55214,45699,9120,85454,14263,96784,34374,21180,28767,46517,95167,14780,20909,29700,55631,94808,94476,69275,32900,55091,53575,2800,73970,31758,8342,90747,39493,8857,56835,31184,99102,13431,6169,24170,3850,38843,17910,83406,29487,40298,72586,61857,95663,75951,59411,50020,45918,59776,52857,88502,35892,55635,87077,82861,72349,87897,89448,70090,67474,15742,687,45876,57317,80871,80238,99020,23297,50467,18365,14296,42658,89140,54941,14585,77805,28838,71492,33890,68285,9448,27247,40386,96057,44740,94567,91702,95939,73953,62232,66810,46514,78385,61727,70717,10463,99073,5193,3828,19612,27852,57854,42205,30518,85488,78359,95007,4950,48306,98417,73371,54778,69986,26857,70788,63042,36452,8837,43465,65347,95291,15948,18141,80821,84134,89576,98955,98600,80435,97049,38982,81513,37641,6913,3865,55298,49842,7148,32990,94160,90167,95746,68771,94864,36632,56069,27720,16983,2437,68893,831,48710,32145,58583,8005,41806,20542,11664,47176,66108,94361,24896,72397,15359,57745,40517,42406,9362,68374,43079,97880,40413,83158,32261,27431,20181,67687,89361,63706,41705,47362,69212,14906,92649,48743,53261,37608,67471,70284,82331,21665,6710,61179,31592,45947,16488,4798,94213,94385,55710,22736,23366,85141,16373,83913,50864,97169,96531,34100,72610,32002,90714,65655,22128,30826,85964,50226,30074,77918,93185,62233,37879,24928,11512,78626,49398,49279,1502,37666,24590,21183,79657,49633,91432,83439,48996,74863,72853,81039,57408,82744,95574,41663,59413,30575,46075,99708,97398,49046,66181,37645,96552,52514,83132,23797,16358,47318,8834,53569,21609,20648,6687,80644,60337,56302,29952,40439,91218,70444,26536,60531,84281,906,45290,9258,28540,4249,48054,46372,13570,37490,17918,28335,65178,75358,56212,13404,45852,90224,29924,3493,91222,73897,69494,61165,40620,1662,71870,5524,32646,59698,28605,10951,13096,43193,52312,58511,75594,40454,58157,70501,54576,96131,6552,38655,65171,94847,77772,71920,44293,69798,65731,40929,99470,83634,24324,4235,46775,17650,85039,99097,10790,24972,56623,33126,55664,11638,87046,23193,81857,53770,45103,66622,88425,36580,94092,7812,6599,56534,8933,69984,19754,24927,7401,8910,88834,2466,31884,33617,13155,83579,86237,52280,83171,3415,53556,68616,16860,86153,22394,21957,71966,16633,71581,29472,72581,26873,63693,51943,63637,20105,93947,12668,42539,92822,39744,23053,20654,94401,72405,42207,22041,59158,27345,22824,84805,9408,19490,87927,71085,55796,91930,34588,70885,59469,93820,92106,75548,59935,37968,98135,34687,36530,64390,69673,42963,80032,59454,50216,46751,56349,50443,81665,16966,93296,91164,86677,26535,61205,45813,13310,4383,75240,71266,51963,37619,97751,92694,3174,60363,92698,81410,77557,19222,84317,38125,58985,23648,56178,32898,93070,45485,83599,13455,25777,72757,36334,62681,32584,82237,55654,34529,39858,86503,93293,49153,8065,4623,53194,71026,47010,94814,90903,58667,35302,89179,10694,95130,70512,81133,20915,4928,37747,69302,45497,57123,38633,91034,56318,76905,29024,17261,8321,98639,53451,92724,10170,65237,86020,65599,63882,98094,11002,9746,78387,35394,1576,14616,91820,99348,81075,25180,28120,6818,86710,78246,11942,62567,61139,72336,84628,37162,71134,4732,74331,13449,98562,25566,86955,5295,44735,93169,27237,93448,11284,71023,80890,74361,99139,50023,5227,4946,53108,75211,62533,98541,72715,77790,43783,69515,12073,33209,49576,60428,79890,811,46877,23799,16789,62150,33910,14090,55172,25267,98957,80495,14973,17588,68234,22523,22253,63948,94685,25445,62191,70197,1938,37589,49914,34543,33623,36153,68358,66099,56677,31101,91580,46324,28547,75961,21142,44588,86177,56376,79593,78279,73029,6792,68657,73071,96888,88228,27523,33793,82689,48930,83530,9765,14049,89560,95650,45406,62868,12941,24130,95557,4143,34415,49934,59401,24477,15543,93094,58299,48315,78051,17,9591,34783,1682,58447,95879,73023,7587,15183,45042,46682,40279,86420,38397,46119,7180,84729,47611,13720,79131,95748,34146,70762,83226,59327,33172,56717,42846,51083,30823,19030,83501,32067,80149,78417,86721,3150,79094,35065,68068,42156,5132,33497,47154,66403,54254,18716,67580,92946,49011,96508,87615,13156,15500,91581,91948,49283,67928,25760,50887,92671,67468,78309,83177,24123,16395,44019,86516,8416,76287,91411,45111,19806,65027,348,32552,74887,44985,82027,11753,85584,42730,20830,81617,78573,19600,15701,62418,23550,38779,75642,53570,36756,19330,89313,67519,26324,91409,45530,26456,20331,21393,89854,13354,2993,22291,96857,3099,40999,65956,90576,82092,4604,96253,11850,50717,98897,47935,88511,33143,39772,33192,35612,42860,29510,77713,33451,38104,33319,18284,61055,20229,35996,65977,10679,7979,87105,143,40115,45128,7093,18142,75847,92566,30895,41614,91905,94511,70362,90215,84787,12949,54713,62253,9138,20957,84485,82156,56412,34379,79421,25182,83125,14701,19096,59984,50363,24213,44846,86847,26002,58867,57532,33124,1294,57173,75836,93536,75000,76141,1461,35739,31604,28277,42288,59534,9349,35601,54954,28678,21098,42335,42637,97204,7869,7160,29884,16113,65405,56133,37818,66072,55161,49155,8314,66051,71816,63938,42638,10992,41090,35054,38654,69039,40243,70352,39755,23735,20389,70556,5259,33311,90951,70004,23720,487,95027,18324,74547,33586,79173,73788,69902,87291,43268,78973,74689,61698,69313,62453,15353,38014,846,4169,57208,14610,31369,43532,22514,46206,37603,15799,42155,3405,42126,58615,72987,41335,44317,52090,15416,22896,97135,4987,25812,42271,3056,92789,97,36672,29682,35454,72784,78874,85228,99345,46086,42847,59491,81626,90648,12519,11335,49652,51499,59602,82378,87847,68919,12464,99823,23899,12791,25887,63068,11032,74209,22303,3915,16361,7378,47764,9462,93722,56818,52762,87433,5771,18045,99222,80125,53356,50741,11193,90867,51754,82205,72524,64046,89537,14141,40907,18497,53557,7852,1054,84124,75229,71763,70383,3648,85938,60479,22254,42477,23608,18949,86457,57245,41431,86946,89684,99866,92153,66678,22952,62939,61219,25630,73016,97570,66960,6067,30250,92053,63157,56665,60283,70966,52425,8300,94216,55244,32073,77063,88956,53467,11650,64621,86181,33470,14564,11071,75422,23583,42089,5225,58146,82497,15667,89375,98436,23624,53654,96108,87403,7596,45243,74600,28954,36337,41490,96610,57102,95924,11087,32126,65475,62919,11875,19505,63868,49965,41285,73362,55207,4802,33035,42564,61871,33819,67626,32156,38050,42807,96772,80229,50902,91186,46933,33707,76112,65059,34748,55228,20387,68850,49288,16003,37763,21560,27288,40122,80786,55944,74160,67392,97916,82050,24173,31188,77325,26296,59420,20657,46701,44292,30670,37685,7214,53875,2655,72011,18520,37436,20746,94854,15934,81115,87439,2900,46411,1845,33954,74117,25244,20021,89290,402,88053,17184,899,91815,11531,79019,21520,71273,92437,32498,49888,93445,42287,56707,16045,34247,59962,32313,90536,67390,60205,10720,7846,90077,50068,30033,14330,62847,71524,7164,14915,46913,382,96288,62097,18884,90758,28052,51168,58329,23005,25523,34813,37998,36384,93067,89735,48323,49996,91434,13758,25977,53494,13624,81132,56603,93429,60743,54599,36528,34776,50200,19565,96559,7673,60987,54343,16628,83801,20997,58470,75236,85205,64307,39009,2848,94170,69323,37790,81262,21598,56523,91464,40376,74238,4797,91893,46743,6993,20838,78513,4535,50372,4350,980,15744,71613,93459,51529,32265,52873,78389,81834,29794,25420,87210,47452,2235,18975,46930,56188,14003,57131,31491,95717,56517,42536,63947,93842,39805,45701,53931,11665,24871,81341,34160,76188,97127,89945,25805,91941,61362,97454,31776,81931,31545,81248,12146,80111,82392,13970,72560,39513,80780,38285,69582,36231,95421,17074,34710,57298,5118,14536,59311,73542,14429,33137,2569,8253,98950,35684,36995,14010,5463,26026,2445,90556,96543,94252,86189,76218,25682,10846,30395,70046,75335,809,74622,96724,41751,36192,31024,40530,10685,97289,79963,39024,33782,44522,52641,53292,40075,76779,68988,40966,51135,97581,11694,12290,6301,23100,27108,57562,28773,80648,36953,44165,90282,78799,72643,15129,73711,67481,84977,2797,48465,41170,47734,28589,70621,33893,48083,69977,65684,16289,34983,80616,96989,4754,84578,59185,44315,48300,1351,2854,53600,50606,70525,44217,36777,48445,41787,28803,82543,73643,48639,71826,22108,5685,43374,53171,31123,28453,57804,97063,63101,2314,13085,23838,10121,1655,29279,65856,72242,51900,31957,20873,60084,58397,71905,82249,56624,97681,49163,35604,62957,38296,78403,20428,5719,21710,31629,17863,93791,81838,71564,18928,76854,3353,57263,75991,10762,92255,28986,29776,10687,64597,99800,58573,99453,10101,95727,72208,9583,70056,12948,37904,69971,55780,77636,65468,99797,27930,2514,69382,73982,87907,67791,67389,82760,63630,10185,62728,26369,80161,4760,37421,32776,60644,8848,59901,49885,60035,99721,22587,53683,841,39496,32394,34401,35151,3168,91542,60884,89999,9206,38120,42394,65130,64501,87786,19129,80308,66065,59953,50321,33733,50447,64262,90647,54052,77709,80759,39658,75461,91537,40420,85787,42325,5585,58029,47426,21281,79699,52803,36135,68487,32489,87777,87519,96416,71855,43845,96986,94305,27791,76732,5064,17720,8740,17122,80093,72685,48204,91635,87650,83228,54556,45099,10665,88000,73469,20098,50813,12803,30458,41920,28491,32655,29848,35367,84206,32376,84520,58715,49289,10933,96632,3318,11659,39234,97383,70059,11641,78825,16302,92340,35047,58380,27461,19694,26207,44546,45798,37568,52407,29909,74754,62865,69546,2806,17099,74565,62573,54743,14038,75345,51958,35995,48610,30717,47970,82103,10002,28312,12604,90084,29915,82259,26507,72287,84446,48194,29760,11881,61124,38489,23995,39103,95089,46457,266,34404,4418,17379,85306,51785,24371,12029,96521,59796,61517,90203,17049,27280,90707,4699,1416,46049,18625,90596,38216,45550,79961,58079,42239,43784,52579,76649,2656,60802,53811,90438,4724,6234,42099,26510,13927,69794,3632,31727,83557,6848,19793,97278,79130,33806,11324,30368,86319,20757,83929,23859,33377,17719,39045,2658,71720,11967,74443,53034,57930,96755,64676,32804,29816,35522,98233,48879,43236,44977,79544,48965,76967,23142,29241,74218,78790,80654,34106,11295,12789,38616,72555,89334,47986,50399,93106,101,26563,58159,26282,44260,917,54104,40627,15541,64448,59576,35963,77391,41968,61202,9150,13839,9402,11980,17028,66884,38021,19141,15079,91161,81314,40795,62954,24292,80020,91792,52010,6883,84950,48868,76684,79266,45299,42572,43378,38676,12652,9627,37924,8145,56096,52505,78533,49737,48427,43994,59439,34999,95199,80348,52440,33028,6633,37628,42523,96849,39056,16615,88579,86871,82963,32293,82478,70585,76940,3206,81559,42346,21314,47215,93645,8366,18903,20897,87819,54134,43675,13121,19786,76936,6240,15407,6680,28868,68251,74929,5782,7872,77098,57098,33614,22188,15782,58922,7126,98215,33359,40384,71278,42777,73514,22757,34548,32216,7842,21993,76613,49066,51122,17641,61795,16217,51454,3768,12761,60145,77688,79920,95018,75820,26859,1130,65251,11419,49193,81608,7731,81417,63863,74230,21748,38411,71313,80429,29688,39764,79577,41127,8209,46818,43677,14425,28158,47736,56910,23601,50227,99361,44387,4075,28353,69947,49265,29007,65718,36409,48406,66061,8216,90515,68018,45026,48903,66533,74744,87513,73229,2473,38575,79596,99489,11547,35170,78899,47574,25877,8571,72482,44106,63108,83083,96402,37513,26116,6063,87007,86159,80305,8227,94112,47293,26092,49091,56901,13941,47944,32379,38340,90402,10690,52838,38788,34578,27548,78302,92980,12823,48290,3476,13872,28590,58426,68116,58819,6958,96099,89697,58265,53383,1533,17431,87731,71341,69158,7905,2613,77996,14537,13063,24974,80059,4291,75269,20161,86343,40446,92601,61043,5677,47870,89555,80231,96227,47226,1870,33579,85285,15551,74468,93638,4374,47783,49338,75458,14953,54617,92501,43153,99110,1103,79003,96136,90466,3673,18861,510,21157,2167,73482,98621,69348,88439,6972,34737,73927,31807,95054,10355,76260,42138,47581,3958,99649,13708,9251,50982,7362,28117,78182,79372,57641,74398,93175,80134,68929,68765,51076,6857,53762,64358,54265,15111,60934,52805,42557,86228,82809,87019,99342,12410,9313,24715,80287,81331,94512,45773,2668,38631,24356,16315,89932,32408,60770,21826,74489,40923,22212,69439,25555,48041,44308,53728,43360,64436,49343,45874,65227,35898,60688,66806,98091,11028,30144,10793,18498,32381,13219,38453,34011,33799,83503,87249,67899,66771,32529,18530,93804,43632,37964,49015,52610,98396,43653,63144,87329,25188,79503,84008,41359,90023,21089,69780,17649,74183,88740,74623,99193,92765,66374,24084,46210,40054,30359,16990,74224,73627,6277,2864,10055,98702,52128,65639,55203,71680,17199,72093,23742,40648,90888,23278,70063,40025,38903,77447,11688,32674,27011,6114,61044,16920,77559,13031,16072,91497,24129,36643,72528,80992,62795,41620,17052,22825,54810,21581,39265,60336,67165,78180,96752,28199,45395,11960,38534,65715,88377,68652,75529,16468,11478,78265,44515,9860,7407,90508,34007,79902,62188,25093,98925,88472,54972,62877,58054,97349,9245,40099,95126,61663,2283,71882,44695,1514,19781,41334,74930,48590,66848,28732,37494,91232,9248,32532,68607,280,68759,57604,93303,31493,94784,63784,10368,72236,82384,81925,55227,60412,301,47241,89670,63410,62691,65598,19201,48474,22721,4829,38728,219,90889,82795,71738,2789,46956,22683,29340,647,54773,61519,77023,84549,10374,37821,2089,10796,4626,590,36637,41040,90335,60257,9455,10534,37613,7590,71978,95759,12168,29403,89754,79921,49997,25584,29640,4128,6118,60976,61385,1135,47281,18148,95055,59688,97817,74479,71547,88689,39518,98202,83897,1195,60760,832,18845,40871,80052,58306,70169,96156,3025,43506,40854,1222,49754,53973,2354,76796,55390,84177,64745,83418,56536,273,23873,45487,74864,55971,19476,84861,10384,8872,77618,44849,95587,19863,17899,85257,1424,32914,69421,31910,55437,41978,78885,61411,51688,49810,22754,73230,98343,48424,42687,53989,26827,28663,78479,82867,94001,38659,21529,45698,77121,12231,68880,35231,56656,63681,52528,15320,79494,51882,54551,28712,27193,29935,70061,39419,88146,90042,29569,3504,75641,43099,63800,8097,99535,50260,98108,87153,25837,54073,58884,54137,97224,90990,42013,43345,4381,39260,30200,95912,66985,73740,77018,72791,41093,32131,93272,19645,9191,31183,15380,70497,42396,23672,23152,36967,2079,78213,1001,29092,44014,94631,96364,22901,35841,89766,4730,34535,15785,85267,79771,56388,38857,43927,50022,48437,23475,86148,64233,16792,88521,32855,62074,64215,70698,40796,22094,62867,80299,2551,65423,29391,17580,47706,63797,78185,36344,65494,43659,66369,91075,47794,68203,18265,86795,69298,97727,63644,21967,43370,813,55174,90313,80079,746,52790,35326,21045,47461,64959,5324,38636,82986,3840,44328,26757,51420,18170,73188,35250,55686,54626,72676,5005,64778,64510,5353,82536,29892,85389,56446,35626,72665,72576,89070,21361,42211,47738,3139,9897,28244,97229,45445,23254,14530,42248,83935,56248,15781,51218,53625,38565,93874,9929,71753,97134,25396,8878,86091,41990,28068,62140,53820,81536,77994,94115,88417,60163,95468,50483,54340,94978,9773,42883,32808,67054,51167,20908,47990,21085,48664,50829,78362,4686,26525,24768,50607,28647,6467,53520,3401,19753,51199,72774,29189,36620,67545,46691,28181,34542,16889,14723,78107,658,63023,19158,24899,62998,30648,34395,96313,65904,60584,69183,63563,45604,66738,32457,92986,77064,4225,80326,29322,76868,45867,2448,13971,92769,43813,21382,64731,12178,72061,54862,94726,42079,81724,38971,42640,39085,31204,8105,30445,45310,33068,21293,9389,52874,40123,47559,37454,42556,99788,6029,83413,76862,51337,65559,84015,26379,40586,48079,53089,53259,78997,15235,89818,45506,65853,20592,94617,88095,66889,68233,79840,947,22584,77510,8189,99194,91780,99479,19202,14699,53410,73684,18710,13401,29021,56132,13767,31926,61269,25969,81571,29583,59662,534,3798,77455,73570,60509,69423,71075,95724,19904,9447,6456,92202,14481,64749,27467,91907,27066,9716,64591,50427,32769,27447,90700,18557,4108,1623,86259,72251,74215,54142,11256,77172,55173,16674,10089,26647,79012,91482,57362,92628,58506,20520,14630,35828,99958,76785,92953,16196,49602,89728,59727,58863,62679,68999,32397,58865,4467,12757,19521,30409,5814,47955,14547,56718,94656,89770,85734,32047,58729,90375,46148,80184,25782,23891,96150,5808,31161,46836,93191,20526,13769,89532,89112,44863,40896,50604,19735,47408,56323,69853,38402,72727,27283,79768,69245,71586,5183,58346,86288,62431,34350,60347,86204,93776,16281,50170,68355,58571,28112,81141,1482,29166,69570,98070,3534,68041,17563,67555,74481,10257,8592,58292,40634,8265,64573,55150,39967,84724,51694,72461,91710,17631,39734,3982,27738,17262,82690,13168,68624,99540,14267,99401,24932,43017,92306,70953,90753,23629,6675,45365,73040,93456,27979,80449,61586,84984,58215,76672,37802,79247,44439,87331,44361,69223,64527,27675,71392,82154,50071,57050,81462,16194,32358,21061,37385,95186,64664,72831,40448,75745,18669,48688,99836,89364,57022,18676,88063,93359,98771,74694,76248,47371,19119,33779,96606,50506,21271,76563,84527,60573,52856,70586,92809,85992,8564,49755,75411,47604,86113,16777,35438,1182,98121,18702,81245,5847,32621,36041,82337,29430,65280,11562,56065,12614,38093,1630,76233,77747,39410,71371,98046,36477,71611,51756,35270,73090,32132,61684,82356,21524,88113,81,76460,5759,45747,26626,27750,27315,10479,89431,21783,47478,80392,29318,58720,65951,93857,42888,93287,38016,61770,42685,60629,59503,70780,65840,83305,37333,28210,1007,44708,27801,46185,17895,22160,63675,61807,49689,72661,94166,51896,38546,15027,83356,24980,24639,31135,65070,68001,21939,9925,36222,35817,37922,87464,64596,81092,84096,4592,2123,16205,38473,88416,44971,5448,78160,14312,68847,74372,58796,94319,60081,50885,27688,23910,39811,88025,9009,82315,96386,30709,93446,13298,26064,73283,73879,22391,89006,56873,38178,84417,74498,42095,62103,48570,31943,32884,24892,72847,14175,54198,5916,51151,77777,42407,35772,33342,64259,63887,7453,31359,35469,38256,34197,46634,5851,29837,60115,47357,60144,39470,93278,6940,97275,45108,96535,9562,82637,73604,87613,62753,61852,63756,52328,45030,31633,68185,26763,19973,60831,87740,86585,97616,52623,20282,51190,77853,23009,72095,60088,12154,91214,14763,49883,17590,7226,73373,67526,99438,5268,232,12105,86341,63537,58694,6779,80599,68942,75606,66130,9400,11600,16928,76621,21334,73364,36476,38423,21563,78669,74902,25575,89717,52511,53122,90276,89950,34587,75905,50124,9525,30750,35569,47849,86888,32580,28176,27211,80885,14791,78372,76441,51141,30066,8480,41070,66816,55636,51850,71166,51273,11919,42873,40891,69621,84357,82566,69564,49890,2610,76497,50845,51989,13842,45866,4110,57548,34359,24374,22852,14760,26611,83818,31965,99099,67236,83244,29956,21897,89970,26830,91400,72169,31908,56908,87339,94125,29194,89704,43062,5240,57672,95455,56620,30372,99225,16987,27740,62455,86759,75108,54830,74295,97182,2087,63927,65394,21606,383,16982,43559,78517,46135,19974,71593,76417,89435,24611,4163,50205,44464,41974,24983,66032,54959,37238,34555,58482,72023,10378,39676,31803,27837,14966,40344,38960,12420,37468,71109,2107,89556,78751,97236,10069,26687,79458,8188,8766,9365,70760,45151,74174,21858,78317,19838,87484,85560,15302,486,74465,46800,63513,83646,63226,41098,20677,38458,64483,10228,37775,46251,98164,83252,62484,9119,89742,56254,29200,82093,76024,58612,34402,35727,48044,19316,72324,34442,33075,32743,68714,43498,16043,31352,6942,81577,406,34060,6773,18920,22706,73579,9286,99559,77828,27572,89904,90411,66560,34500,68117,31206,25090,99934,22780,16153,98834,51475,31508,32802,77090,66030,84379,67450,37933,71519,80248,73063,30910,86578,80262,4231,67596,15601,54612,13243,61146,40245,15746,59749,25311,91170,53893,24480,95970,21246,22593,93950,48178,43779,80497,21499,21629,82101,16688,63491,50837,40573,15159,48633,63459,27601,60334,59798,61394,50060,44821,89241,91653,87316,48357,67737,40969,36986,16764,90848,77199,97184,81842,58134,18695,49798,50798,23748,19161,16631,4276,936,58973,95575,90315,49829,85021,31946,65057,9976,20880,45227,54755,57391,44776,79142,35679,23895,74619,36656,61507,4557,22734,31865,99057,28053,65260,67092,29173,73821,73319,58469,91116,83963,44516,59377,65566,92102,36671,202,6636,82486,85490,86556,28308,39371,77934,31076,86614,23210,26745,96184,74195,69173,95232,20948,98483,71332,22158,42300,63176,48334,35709,45141,96701,58060,47278,78755,46856,22856,88985,38162,9533,7784,31819,96997,4059,91234,30497,55961,59076,14251,88314,89303,12201,71422,81863,38130,70247,2622,75805,15234,48350,36708,73352,48970,97322,96726,39995,45394,69735,82720,5988,54837,15218,33918,73616,1919,64305,12189,21029,74344,42319,4161,53146,29036,8047,12348,90659,88241,49391,40343,84858,95,36501,37985,72834,60858,61765,40273,55595,7047,73781,43679,33501,4201,2421,91892,31647,99770,11978,12145,30279,90875,84180,83637,80061,92041,5935,19791,6937,89347,77673,48787,79431,88089,39370,28269,43445,43475,92277,83957,97364,47038,79411,44152,35700,44713,87028,21371,60833,42670,88149,70184,6903,48415,12828,33392,21747,42057,53009,76474,70020,47150,87268,37405,15885,1435,12910,58835,94859,92312,12475,23621,33950,65625,65786,60224,65116,76443,46247,70635,31977,69545,33684,52945,34190,25686,20704,57546,44928,93781,38128,79539,89846,23687,48100,78091,23966,46601,30969,74869,74432,83656,97720,44432,11821,48568,47433,13314,29719,49649,70500,50655,52464,21173,9428,18961,67837,16389,99677,87134,28544,11330,32148,26567,90763,34130,78774,7756,92324,75100,72144,19873,76479,16697,88893,67483,94539,85048,1070,72531,66092,6382,96621,60664,44652,81339,41895,20083,72850,37883,1028,93998,28356,5695,75592,92072,62885,49457,81089,52502,83422,65854,37629,54621,34602,52101,16075,15761,37435,58989,20388,38611,20179,5232,75408,82329,94348,12522,92342,4144,1930,48076,8309,91199,94708,18152,3925,15088,80981,43833,1096,53014,47920,27300,53329,54451,67416,14121,39490,79225,62374,98057,78981,14485,18974,89105,85104,7056,87097,588,10817,63874,38635,23645,22799,59924,77701,44668,84719,29081,39807,92739,59408,63818,5581,31769,19376,64332,92237,89873,92265,69394,51671,86780,64771,66190,17927,26484,70612,8344,51717,61415,81681,72487,37275,22650,84828,22395,79257,58336,55194,51853,98188,76556,65393,22637,9539,9484,25478,14801,50910,14211,3637,10067,3372,50863,52495,54888,11233,76459,42641,7145,87312,30629,86983,66670,89390,62892,72762,89994,9094,31923,68689,71155,50774,18223,92360,89434,16879,39817,63131,40366,95090,75438,9946,4490,14124,74795,5455,47998,30992,48623,67686,60621,33336,65460,60941,14386,19516,51159,82396,59933,99111,55955,45944,64735,72932,70947,64419,89805,75294,88369,42782,93652,99002,54783,57773,85544,61356,1331,43908,13824,31486,26346,91532,99156,80292,49871,20130,18811,94221,84028,29172,20063,774,80728,83052,44074,27116,43846,59882,76828,58945,88747,27022,29217,19174,80073,80089,2427,55278,14256,81610,46715,62750,99380,75660,11661,9559,63590,79764,56635,264,47418,6404,31342,88136,34394,56105,37601,38963,78778,33959,20723,34627,7023,57788,71272,62137,52031,51592,85098,76404,59667,85444,62597,63970,61842,98476,21402,62462,37680,55409,32511,64975,49763,16996,39020,47612,91789,87283,37850,31763,38667,96828,3349,76522,44662,27711,42359,15969,51608,51747,13335,34038,42241,77487,75713,94756,66934,67475,90425,12501,4747,1931,73435,42674,31630,3375,17892,48133,88023,86950,89047,57283,73966,96672,45284,10497,69057,89885,49431,45522,60586,36246,27478,41706,8922,44822,22459,75814,18017,60106,81980,47800,40329,50084,17875,32086,82211,28668,5136,10517,1312,48924,14320,7011,37854,65955,4345,32575,13940,28070,52392,13200,84732,29799,59423,90857,3611,66117,61320,66382,83383,40477,78188,93968,47551,2950,29119,25497,11053,18728,13632,72039,81832,12207,87104,85625,709,32302,88468,25197,73191,38718,80643,5503,37976,16414,44815,30210,67048,66360,63330,17345,56946,81478,80016,6414,12887,78236,1788,88123,46602,31951,43272,65580,73885,92530,14624,88889,45859,70602,67171,38082,84892,32570,446,16923,96132,90474,4866,58198,65482,93479,24996,77538,16208,55393,77914,32516,930,30725,89916,69077,5544,40081,35554,27006,17303,4610,69536,34945,6150,64607,92213,47596,37035,52875,24963,67658,62820,63099,56636,18395,66450,95709,86658,15760,17873,57899,59441,77256,63423,8078,79812,25332,16388,25538,70375,39700,46067,80613,88102,20778,28326,97412,15939,95364,17425,44744,63191,40868,15226,82312,42954,81831,77258,43189,51196,443,99923,44006,17607,57230,71885,83855,80315,4482,65396,63214,62653,10554,45172,99169,72638,22242,21954,33468,64916,29749,3437,72851,3165,31785,55945,99311,20857,19256,60140,2151,55673,75051,15502,16193,10104,71640,75493,14071,43978,85411,40041,75690,22697,46598,18389,21364,58602,64458,23613,43053,94333,87675,50221,36919,1143,87641,23972,84477,84275,10747,90003,16005,57938,68789,45344,49424,99415,58024,58284,41120,79726,21424,21333,46479,76463,29177,65615,19267,22915,99503,76968,53746,86604,21551,61679,74308,44423,96488,6070,56933,26653,35770,82634,12343,50116,35696,58910,10131,93200,37013,55724,34380,25621,18269,9266,62658,60377,28852,71681,16601,2503,49059,77059,31040,82742,26928,87745,31668,82749,51723,26176,26733,77905,24850,6247,34900,42243,73796,78569,92815,68767,96440,46084,26090,93594,52002,60312,59177,37103,67441,800,96502,48601,74529,49178,61504,91813,1727,50944,10312,32863,60832,86788,53438,6505,72004,54475,79903,69989,71709,24777,58864,69150,91628,15649,23956,57760,89907,35075,48148,91510,11784,46419,21002,52207,92260,90237,3519,2142,11466,49578,10112,5837,90097,31456,84886,46199,85374,25103,99068,51415,96737,28056,21604,73554,44360,56838,80716,47785,326,83669,2646,63355,79632,39095,5098,70796,96000,58649,52592,6562,42756,98268,38444,83164,28364,59347,3319,86119,14216,20726,795,23866,74631,13283,50880,38079,53584,52586,26915,40465,97894,17759,98439,8918,52423,74903,16489,432,84265,90428,5622,72686,43221,19207,37919,61266,39355,70067,92031,51581,90564,79383,76494,56215,50542,94184,10567,30321,25349,29757,74464,94438,64907,66718,41834,75686,51640,43820,77453,90096,26855,3210,53242,61986,63515,56258,24396,71375,91750,15980,37576,58289,51238,83227,52314,73759,60756,7377,22444,90398,25225,91569,35919,52089,74906,22916,60033,22482,6699,15952,76114,65403,46515,39608,58000,95583,20561,81540,81531,40196,71860,31507,41251,869,53311,71852,79930,50657,11862,96217,36108,13303,36927,1687,72802,8864,57801,469,14443,40532,27956,29835,71804,48050,93291,69466,36827,58666,9606,19902,31284,30557,24190,97980,51664,71672,51441,14244,97998,37067,58353,77892,74683,9207,78757,91857,44372,10194,95283,38383,64515,51313,44558,84697,56147,22739,37349,21537,78095,78410,56334,32973,51635,20209,81189,72575,47641,15610,57552,21412,12005,62002,49753,32979,62459,81001,73173,25340,81199,34124,91881,7854,78231,75055,25957,94253,98391,87181,22745,94341,64090,6996,13978,49164,56784,9694,87758,18505,55581,32626,14062,5301,88072,17737,31852,74680,68757,98924,14644,21272,81901,5281,6827,16402,21190,85259,1150,6962,52065,91822,62903,73271,25779,90527,29348,96703,10476,46883,18891,89121,86772,689,13544,60090,66691,20473,76947,76825,23219,17313,60761,3071,98709,91560,66747,35509,10148,46508,80486,80758,38724,53290,93065,71724,30680,66489,90507,9278,26123,25572,70514,54517,40151,32510,17652,20122,54441,37963,30093,83953,92875,99433,81849,56885,80251,68785,6799,73043,21072,61445,1035,97378,35769,58448,31794,86630,62989,25902,48014,94138,45158,58760,84921,49203,5508,31514,78,97244,74456,81271,69501,72916,15269,86910,8387,95166,81597,34868,83419,92076,96924,41442,91682,46895,85793,49310,18853,87212,11708,79589,3904,59196,61709,30499,53906,98833,56588,44852,3281,60276,15711,25789,70732,70262,19930,29868,45117,90040,76420,96123,64163,41720,53545,47845,25678,73355,39191,14542,2250,19464,26432,59755,95956,13784,10777,11737,6302,14839,77127,65682,67443,15586,82552,48900,79786,29321,16779,51769,64486,42104,73949,10984,87356,85624,12804,88099,96860,57924,54174,99830,32162,81894,61930,29542,59278,11022,76410,49634,51836,12782,94937,34943,75481,99004,36323,86990,54016,67625,90958,82551,93186,67156,31253,20515,16039,31060,81938,53800,79259,54891,63622,93270,79854,47862,76616,94947,18575,35321,62119,16033,98789,8888,85622,4566,73832,15734,78727,75363,82668,47112,23048,44750,4002,1414,46352,69038,69033,54463,65547,59167,98281,59168,16625,9620,380,92742,68762,87505,35629,24239,92191,60047,37515,11159,28625,6639,82991,71388,85191,54859,51447,81958,53540,72584,2574,38086,62405,3173,35352,48636,93349,35137,53023,71696,65832,96349,77158,74677,48869,7721,16635,94521,48392,38610,49152,96049,76861,85060,22385,37213,15110,26139,27383,83713,65165,99723,5441,8701,64183,38201,21890,81752,9879,28090,92821,138,23248,68550,52570,69303,88620,80067,9216,54135,38141,12634,67093,96342,21666,90006,24806,33216,56947,30058,41893,78857,12495,434,46894,43247,54674,13803,86245,1602,75215,53646,46145,50605,83042,68305,18279,84543,31391,54180,98095,81183,41703,17225,5700,76831,80523,56196,33051,48139,36532,56168,76700,29186,87663,63912,80943,28405,27516,48294,7800,87878,20874,88695,33961,93875,47044,28143,99558,43477,77768,40559,11514,13491,48156,14157,85050,79856,71719,43612,16863,9065,83521,75177,45836,7075,4525,89861,7071,42084,35285,35541,39258,9617,32507,70669,62116,36521,87119,95311,6500,75677,68150,98011,28282,84509,61443,2381,51797,56709,17533,48669,87048,76515,58529,9793,50616,82803,95333,44085,59902,63291,88726,90427,3129,84983,71330,36615,75759,12836,30113,81337,60896,21937,57396,31648,91233,85530,52780,35697,9109,17368,98435,46529,96397,42150,95819,66357,65404,44698,27187,4664,14933,3981,6676,99689,18282,42815,95004,93897,45005,49524,26950,38250,72478,78928,9160,57819,2092,83367,55425,78405,7955,40625,75186,68558,27273,97199,60259,7589,94760,34613,39618,26271,81276,48913,3482,61498,55700,95490,40179,3515,69368,26062,67301,32889,98914,50075,16646,9875,20931,45155,57560,89680,10439,43655,27141,64730,59476,4933,97315,55217,72078,10027,13860,30873,17108,81868,71056,79112,60247,19531,27188,78862,92148,69489,49116,76130,55915,11517,44508,27870,39363,30278,94234,39150,8632,93828,60046,6841,19984,12873,46275,42697,75599,91402,43541,50855,39178,38074,18558,77630,93639,95801,49062,31379,83577,48448,55491,9682,2564,96814,84653,6091,23252,28769,89540,88808,12339,18732,8246,64376,50824,97547,29395,13222,83296,87437,86077,85747,25923,64349,55496,68362,17859,99389,84887,30979,99658,96648,83532,39013,10056,32040,87785,12220,62349,12881,65703,46716,17913,91321,90024,51503,77449,64588,51595,49042,66113,13651,32583,98083,4774,68670,58424,50663,48824,93392,95046,47761,23129,55116,4358,72965,228,38054,30590,69196,98840,95762,83999,85373,43417,76546,54677,26313,37124,56491,65768,49809,83058,8806,40190,33937,48793,3509,13558,53233,64,50681,62893,13845,34501,62509,79533,40575,78199,79175,50061,43269,38829,19232,98810,75251,74824,33876,53914,70182,27895,76231,70981,98550,61645,23527,86643,23010,43842,50334,47004,63052,11339,96149,65535,79835,4865,15492,611,72393,33443,10838,1900,70466,80323,56355,20550,66983,74582,88172,79766,7885,34141,62354,9825,11824,43276,21895,52643,74891,73597,46102,27341,71808,4189,22833,10487,44725,86355,96659,47618,98783,77065,51997,42157,11823,61093,12971,54605,96375,22950,94613,70620,31147,81068,27813,92022,88815,60699,87536,39756,9906,57723,17920,41077,1968,19003,96104,82723,53203,84775,42988,32433,67994,22700,56970,16911,12277,74341,47524,94443,85690,78744,38308,36565,22490,94762,99112,28960,88446,34203,22371,14995,80983,41216,74543,16295,94273,71296,10731,18408,42002,62067,81403,5654,75975,57700,45426,33304,24622,97952,12355,35708,65307,97659,65809,59269,70033,46428,79436,74873,20309,79876,21004,99764,7548,99545,75129,15942,65289,92003,75328,40592,24818,78143,60544,38597,94596,50163,94043,52501,87987,32971,51213,89575,81941,70707,81180,22143,15438,97934,76689,82310,79378,78035,18219,19242,84453,95517,20676,86518,1575,24167,36184,47813,95940,14742,52460,82968,44166,99273,43090,47132,89113,63940,13576,8641,91829,35644,35551,31463,72305,36843,50891,74022,40181,28952,49746,98976,87237,54624,76870,83932,46891,71994,65669,33816,24373,93547,51634,58021,52973,36259,85499,31460,81434,89748,90309,84433,57414,96864,26039,54648,94729,55577,97914,20811,69105,26936,53572,35462,81763,43938,7624,37381,61756,55804,7518,75517,11673,11834,49756,63058,34680,18627,90173,25738,65449,94680,42810,78877,58540,47210,4876,67708,36210,35555,73802,28571,37993,70328,32950,82600,13363,45249,64104,41179,1641,81114,47671,84450,28437,49716,48081,37664,81813,96893,97179,49544,33518,95511,78971,41592,12012,149,56165,95743,97445,56518,98459,57557,46207,36426,1807,90053,94296,20377,95267,75198,96520,34965,314,19701,76351,86611,43188,80369,22865,51312,71499,48417,63718,87762,80937,93268,79556,67917,38152,823,97633,86133,31613,70113,52870,67826,24200,21835,81211,75092,64363,75305,79345,81685,2992,12425,2262,31172,13365,93927,42105,26770,35165,63118,57448,57143,1180,26561,96549,40353,25573,21184,25895,98367,80311,44468,26162,98936,26498,48165,12273,24864,8350,63979,43884,27557,42387,81342,59244,45124,99206,30864,93695,17044,58230,54660,83923,13453,79828,95125,18467,78753,12177,62422,53699,71876,50790,34666,2105,28570,97331,51545,33089,97742,37324,99396,71621,8967,79363,25803,90894,12546,35933,17994,82319,52015,91552,22208,29800,24399,63013,70535,8197,11957,85942,82179,65750,56797,46867,48125,83822,44671,10739,60282,69616,99242,68486,91562,48413,83702,22948,23293,12713,81326,60494,65054,60229,39893,68918,64746,77693,81469,71123,36976,19100,20100,60394,5792,47729,2571,71227,68193,59518,46793,43441,11763,91863,26169,19392,22381,8353,50449,52234,17241,14726,79222,2723,67010,44697,82752,51245,44951,54694,68865,16717,15553,19289,53736,16411,23088,2526,12675,28049,27370,97316,3146,73258,94867,58446,23689,10875,66230,28135,17820,89643,91070,27986,19263,48220,86207,26798,67812,30785,25350,20073,81070,57910,97250,88946,30767,12896,10547,1067,38953,97113,55840,55747,77371,17962,24977,45745,46415,30218,69522,54537,7049,92139,32775,15578,65689,594,97858,4642,54947,32838,17257,36022,57597,13732,29420,58051,65863,33070,13366,89225,54613,71088,92292,39006,54706,95172,47236,5543,66359,69265,17300,85682,94646,70958,42045,55336,10978,99253,13469,96875,44513,59025,96603,34387,33836,25968,33062,34191,9554,45547,13312,27417,7840,25383,43968,36365,70502,11718,77891,74961,71436,77922,35640,48000,13277,50811,29038,85005,51333,20865,74472,33955,67591,12239,24448,59763,73068,34357,98698,83059,74583,85289,96279,82862,44833,15595,97631,23773,34897,85990,27456,10379,97109,68466,73405,23829,86220,71487,54737,73034,12991,6462,21330,59515,72836,52937,56515,84674,97352,67834,55453,82338,67722,47904,52841,52996,99147,66,38560,77703,34448,39879,84150,33030,32562,61606,77413,260,32154,13351,99297,67743,98558,13689,80260,8752,71528,32673,83375,12148,75639,72674,57178,9839,72829,17638,19473,80267,34033,45616,2752,95649,13221,77339,10711,47784,30659,705,33153,19631,86456,70499,11868,2016,62827,41589,51811,52205,76982,11833,12453,65047,4141,74150,48164,3500,7925,24397,16091,3097,98883,96128,10408,56123,73663,88395,67723,30203,36537,63272,61557,5561,61912,63332,26509,44401,39703,39598,55702,25841,13383,71879,12573,21781,10779,74025,52982,97902,82069,40561,91736,40209,5188,21428,32940,19247,9198,43381,18064,44756,28319,14999,21052,43412,28498,55511,88160,69110,52291,23064,68152,79084,56678,90103,15114,82005,85816,70045,64270,68442,93236,17839,30129,85755,27856,95474,64800,12681,86790,25854,27104,56893,70533,16904,49933,65433,91900,52919,88244,79570,51053,24599,17912,5647,5156,24743,1288,21992,23842,3399,7520,6271,58493,63596,39776,38912,75549,16171,85372,86476,92314,53128,44592,16386,30822,70568,6736,56840,41075,8992,76092,7927,86784,30061,17656,40083,47125,26994,76322,32165,74960,43394,2237,68500,96862,23785,92696,22123,29897,58717,52744,65578,71348,79833,2933,28243,46641,80680,73752,6555,44718,30842,36303,8373,2086,72754,15865,54416,85901,38925,34718,4807,8620,64157,79663,79937,8618,58941,43615,50233,99420,43306,79724,39834,36266,17773,51237,52642,49458,58881,26871,47483,97535,36331,41539,72228,12913,80684,58658,5955,83476,12869,3064,61561,62730,63250,33381,86988,47886,72134,61051,26643,66930,69868,69485,31586,44841,77929,18006,21136,25530,38317,85531,93335,4973,47665,87509,121,4062,83616,56580,1534,93002,39460,2244,75326,88799,35258,28867,20142,922,66081,31344,458,66439,17165,98817,59004,34290,20015,28878,73235,16946,51243,22726,82230,44309,49679,90336,1901,1948,10450,42609,93018,91053,58436,91160,6583,32787,85559,95306,25192,85109,51825,94368,22953,99938,49460,3249,3167,45224,52067,55899,66987,18414,5075,72937,83681,97132,11326,57297,2845,24922,54169,25733,40937,120,2412,47903,83337,35698,6859,14017,92316,65149,92070,95882,38613,56319,33208,58925,49109,26710,66378,11483,27029,91123,89443,27913,2188,34272,86680,88854,57705,32118,85796,16497,27928,90751,72355,49007,99673,66358,6836,80241,70283,69353,94890,88596,31733,62661,98813,16141,99510,23810,18292,58748,24784,45899,40555,66890,1300,43620,83707,54908,70166,94772,11810,61923,22017,3217,13522,43459,79889,20184,35169,89207,13675,18005,12388,67470,99060,91024,40982,66739,13736,23183,61602,63295,43485,43052,75518,47078,74563,66157,1803,57325,58483,57618,33971,66211,16545,49828,182,13645,9588,55666,94895,27307,96284,61203,78034,48620,85439,93059,73250,32892,18724,188,43964,20600,8672,9561,24909,88471,45825,56982,80580,54424,36563,50570,50652,76179,86291,5981,64134,32799,61713,45673,77661,35178,26930,37670,30756,77841,75351,32941,21799,76999,36802,77425,9580,54600,90127,19278,6318,76922,76278,12515,81261,73998,67090,42308,75990,94541,86435,93158,46341,37877,57242,87417,49397,72687,44734,38961,36947,1284,49255,20031,30773,57921,72216,95277,34669,10542,14579,48886,61175,74144,68627,44448,29281,13005,96058,84814,83034,5554,78848,66320,50300,43084,51383,29961,88006,3518,58592,72318,82363,42444,5445,64357,9364,14459,83433,99278,97257,32841,81365,63006,90002,84580,9524,64704,1670,8475,37755,70886,97728,96683,77458,47654,52329,99431,81240,11388,72865,79919,32052,14259,83641,64226,34144,50587,43771,61231,61292,84878,56160,85775,89338,14864,9478,24136,43026,98985,30034,77361,29498,62617,23334,43530,25754,28861,28505,40212,19185,47995,91455,82188,30471,5902,39574,76422,17935,17203,32315,11359,62121,42896,25315,80662,72419,1978,3096,51079,38653,28561,89242,20300,89778,45838,46191,45003,64546,99123,21212,46258,2239,43218,94670,12930,1990,72905,35658,31562,9838,40111,58200,48187,19642,35355,37165,15238,88710,49537,78271,896,73558,71068,25756,19240,35929,47649,75920,76097,24492,23555,75270,54458,60236,8758,81800,53892,37198,30170,5285,91894,81419,37167,48364,91524,84867,68156,7612,10337,33718,74537,97646,99053,39158,14978,6077,84260,2462,84313,80107,20799,78809,49150,42792,65478,14501,22520,8710,29631,55672,37384,35400,22025,3440,56114,17797,24856,42469,6726,50770,84699,14818,58149,76175,14717,23812,19362,61237,42814,10765,21079,36381,91224,86884,50853,49454,73670,94344,14983,678,69550,27376,21836,41582,69581,77261,43700,95454,27488,10871,48381,32520,28430,23337,84287,33084,2842,21840,93319,90610,61969,98324,75301,32063,45461,75657,92864,82821,92667,4066,61262,31222,84602,82663,62098,40153,70611,7560,26981,52824,84194,42939,61667,10845,98544,56625,82849,88212,88683,80423,60888,15191,36663,70631,50756,56567,16,86327,30167,85799,33130,16098,73300,93933,43118,36740,4334,2265,78891,19532,65225,90332,97645,20544,13578,22134,3682,22839,20885,82513,16884,38461,15590,8521,71120,64446,94643,5372,68761,51977,24409,16817,23771,61136,81461,59610,46841,90803,33775,23042,89652,4158,3089,64877,286,20146,14444,46053,98602,77475,1925,97990,68879,62102,79230,67049,79376,17983,88848,60899,5925,96895,6900,7009,59521,33848,17387,18419,56921,70569,1619,22709,29598,75732,89925,77498,65271,66760,96509,6049,66343,56297,28310,69073,31585,21339,7459,2112,83107,99377,72413,33289,81236,3333,87547,76507,84323,71682,67499,90748,71951,15332,45219,92565,40274,42358,62840,69328,27762,76365,96309,25204,57984,14159,13923,91418,89227,73298,82088,63109,24098,85103,36586,34184,96122,85062,75443,31072,50903,40166,25598,51145,58747,13439,60421,11049,76925,10908,7802,52292,90547,433,91867,83170,82993,27506,76847,71751,30447,69390,61416,67564,86883,63456,20918,8617,96715,8132,20166,71429,18744,45187,73512,34426,74014,33656,27386,90149,28833,16020,91812,52162,94467,17617,46337,40848,39733,46175,69708,30258,95864,66241,30184,77040,51628,20637,77610,18886,88322,15241,31439,23537,83685,17670,70228,95293,94102,85224,51397,63378,59872,1379,41110,31734,21921,92609,28316,82935,52998,13069,66874,67847,66002,8920,48856,94067,4923,68800,29116,82160,75286,52970,86209,31129,77467,32043,20759,13939,23946,39448,25113,2917,63809,34490,28455,50660,86587,69055,18033,73693,34012,16641,36273,81658,38407,83704,31355,43780,50828,22019,82424,23127,91886,5106,21332,13276,27487,95810,68458,89046,21245,89043,98223,43063,47721,20708,66703,43942,38442,72212,4971,29054,11822,55514,53834,58254,26938,17551,28723,53180,71200,47374,87148,78665,12981,30444,59641,29531,79667,62863,17037,945,63376,87925,76285,21309,86359,58050,27941,27078,87426,82018,87524,74317,98879,30907,12233,47857,2409,20729,95999,66749,24852,64882,30166,73128,49807,13395,71268,97446,84079,88448,76019,43762,93208,38968,41889,39081,16021,39494,53883,20789,82686,72521,79551,96268,35705,17658,39295,92844,21632,42283,909,56071,52759,26405,44112,57272,54464,80713,88301,75275,32829,1984,98933,16181,7156,98873,7491,80869,63946,30650,2584,65553,99617,83183,21625,65581,9184,96373,10752,94429,49621,55114,94035,61249,22144,96419,40002,40449,30525,94019,30618,83162,14292,7891,69385,38897,60101,91995,53650,10683,35869,171,76811,88375,56004,82811,81804,8982,3691,49213,753,39495,23246,52801,55435,20438,9851,32211,98055,76720,24767,14213,73293,86747,51665,38215,8623,94824,49107,11166,8663,38056,19311,96558,93617,45291,48210,88284,55827,80410,46937,3295,2811,5125,19414,47924,33908,20742,30124,87146,74236,91605,65452,70153,36803,29386,38138,2632,35345,60341,26913,52515,51338,29803,28466,70047,7285,31397,48479,31350,97086,31833,83030,34890,34978,43796,39753,6824,87838,46180,57681,5027,48660,29898,87694,54136,16391,94391,41209,21815,67953,70622,86346,7792,38108,19803,69627,23745,29085,70038,10116,81993,37283,47243,75523,39305,90280,34165,89376,82814,54186,61537,62936,21182,58438,32151,71403,66255,52846,87648,25907,96164,50779,78860,99777,88988,38966,12084,36614,71151,59724,69037,48434,31322,57157,23542,68364,8891,70907,90646,4857,53263,14588,36562,3029,64572,68069,805,57206,86756,12367,97926,98927,85556,57829,93580,754,84176,90295,86696,80094,24494,99519,28681,40255,27798,90304,49494,74893,97884,38665,54914,62114,58258,76440,28424,21495,12692,90120,82429,18246,93411,76778,54032,59531,52239,38305,56393,99718,54301,53963,28018,88755,74284,64025,40069,82664,54569,70852,83603,51644,87091,17357,34653,40291,70793,48020,77930,36857,66827,8200,77499,18762,18328,419,15475,43904,21712,47739,13357,34808,81945,77607,70058,57884,14143,83992,24081,61720,69917,82019,23480,70023,1199,50826,39705,20835,50670,18185,5884,20738,16945,76031,18462,6420,54784,3200,46650,40437,70048,25666,70643,23965,98842,29248,92801,60808,78616,85163,7219,27540,42675,81221,25417,80372,5346,47055,15077,95159,98590,55959,76631,45201,97736,41095,90155,21441,88203,99655,48792,95051,82751,25553,78858,3955,28064,12258,61887,56765,50568,26750,64140,40633,27680,71223,60234,73493,54921,35487,99786,18136,40505,4656,21282,82655,45456,23075,36979,84320,72819,93725,11843,55580,24486,66334,87549,76953,10135,55826,20345,40001,1224,45880,25158,78730,74783,86285,69866,6963,36396,36490,59126,98836,96829,79496,59486,54860,6370,82878,81774,32105,42573,91189,55380,63978,44062,74646,18267,40229,49050,82692,6536,96216,18577,37184,64380,41397,19780,29128,50152,89868,37806,10872,98880,43914,46630,71211,85356,60804,79164,63254,68159,19522,41704,96060,11336,65342,6843,51718,52578,61099,14178,47950,63133,35630,57077,36112,57176,88699,159,27542,78800,7995,51280,64836,85588,73862,25540,98272,53579,81328,69,48458,97857,54552,70152,87215,69634,12715,67258,7860,77223,22639,29300,39451,82218,53961,67043,8067,57716,61390,35567,43626,81969,6910,41031,98302,89209,50127,22773,93470,41433,68875,45752,28099,15188,49198,28602,12703,49044,39077,52682,49200,7899,15527,48483,93126,32056,91874,28801,21721,15645,8159,17609,40327,60614,6415,10647,82375,55535,67402,54022,91976,30231,60744,55283,99458,8860,84760,60415,53938,30831,20596,79535,3743,6132,90925,51511,17770,69072,46182,76744,4778,75839,42134,87265,90104,56942,70239,15377,53606,8059,86334,40946,1315,23192,51781,985,77568,59735,34547,53283,33119,23051,68083,14285,48774,58465,49510,31373,46802,46853,48228,14262,39924,19,2816,11262,72271,60194,83990,44650,80181,23442,68433,59376,20697,96813,26803,9176,76498,27589,84432,5828,97970,12363,79082,46314,82071,19110,47715,35149,69734,39800,69542,34449,57647,62899,69863,69679,67720,26501,76673,31211,62471,71483,63499,23704,39278,91629,73683,76239,81395,85088,43159,38175,43698,44978,43444,18527,69305,29616,48579,28483,85549,72830,32277,44554,47140,7863,62549,98742,45068,5651,86622,90065,86868,41665,62413,35277,37920,35875,40101,83340,30391,13870,68610,46357,21854,29022,8385,89503,92756,43093,4517,66318,16464,94277,48622,2432,5869,73394,98499,95495,49992,84737,90153,83007,30121,56615,37757,7939,52272,45607,14739,60072,68453,97757,57404,26254,6614,82972,49098,59229,76892,46414,92631,94919,41246,7909,52376,41854,63128,48844,60392,56158,78084,47987,39196,73496,15060,42933,98375,83695,44174,2272,23944,97891,91256,67842,49790,77259,16567,98399,50396,23305,47464,98062,6380,3931,53994,23900,53995,26550,79578,60545,97528,70332,4506,7287,26290,2827,50474,21257,50164,68637,58850,2356,24002,22560,41602,93178,63942,27644,37884,84722,59951,28478,78731,35953,94872,1529,75227,90300,52543,85161,79253,39856,5634,7125,21725,12482,22507,48865,98767,91203,56526,85895,29387,65894,58393,13252,43337,68356,88717,82718,62918,72868,70541,85225,85377,51002,32695,69099,16149,29074,86373,36278,78443,31712,78029,23880,48874,14657,91180,94915,4126,45212,82074,5525,32754,4906,34996,21633,72639,425,19024,23649,76832,17290,86261,82832,50315,18082,82438,3181,15141,28175,12658,88947,29169,59238,32343,52170,96944,6754,19550,20898,67956,98871,60968,78801,53211,31932,65198,55542,42569,742,78432,27433,61076,49047,8896,62833,91278,86511,19757,76429,34671,53498,32273,60781,84396,23606,81260,53507,4608,99167,74589,81929,35217,24045,54884,14900,29753,48019,31331,31887,9007,13935,89253,56991,50508,73211,66152,16453,33002,25148,95904,11304,87582,14853,64330,63820,74226,69040,60223,26363,19880,64700,37399,48206,14103,6141,6367,81539,26265,31788,9786,85317,75879,55079,51046,27390,6276,73410,77430,38495,54020,12880,56561,23791,65712,15752,81991,26350,12701,5519,38276,33752,12698,82222,72675,63694,16542,55560,43560,62625,70721,11272,65846,21094,13719,37060,58754,2960,49547,14488,75380,73596,83931,18347,82769,64703,35485,31487,23626,97763,57275,88024,4938,35550,57255,50866,22324,1674,19474,4581,7878,94413,8742,83874,16187,51707,67144,30632,93748,29338,20417,22142,73794,48626,2372,7738,27324,22907,51284,76580,11469,98566,83057,79296,58978,64565,72003,66745,53012,4468,51301,60007,92305,46605,19068,56811,69976,98607,17833,62946,56891,4263,64911,8108,72562,87034,66672,48249,11768,9913,55538,96180,48976,37500,25788,99107,86957,95347,21396,54047,14583,66754,9373,13255,51127,99205,16540,3183,34752,81955,77667,67785,98137,82709,95786,41375,61278,41395,14475,9043,27200,97066,94623,24805,36794,99499,33411,44204,3369,93518,37403,40421,68614,40105,62977,57757,35539,44893,4273,95359,47560,81584,50691,11439,89414,89365,71788,39299,6039,49803,15032,63493,23543,5805,62854,84068,13299,58721,70828,49909,43069,60564,30863,16246,8091,78044,57040,45755,83546,23019,23380,27312,28793,91538,56296,19647,48216,87471,86588,86895,65432,81722,20136,76091,24452,4847,9572,27571,76308,49207,2805,49061,18283,37813,61893,76752,18130,56033,44566,27719,53025,31987,85882,92987,66407,84804,2796,12731,39825,56339,15689,75542,64067,76352,52624,33600,29004,26800,96407,88727,72296,12923,71507,7082,79573,66947,49762,58737,38357,40819,60926,16800,62172,28134,60741,77757,49590,47500,75082,75773,35018,21915,58364,33815,23509,72155,73816,16415,82302,78090,86697,13771,79159,41486,28973,8665,99710,73940,8111,87678,85778,98143,3406,12445,83979,34581,21063,33017,30791,43929,96763,74380,72960,8537,4883,17488,9480,51867,5400,67315,66873,29677,9317,48160,67883,37656,65556,58609,83639,22080,23143,67325,40093,82451,95909,85930,83911,81719,94545,25450,57543,46424,67431,74212,28818,24030,5206,89413,22458,47291,22545,46388,70098,42276,81823,73560,63690,70967,16668,33237,58883,77495,20054,61732,85818,97636,92597,95391,67709,33477,16510,15820,33049,16851,48078,85603,37516,89335,13763,60,92438,78676,68629,30966,74124,89683,71869,51359,15779,83871,51030,29660,51607,7405,6337,37534,68628,16158,23697,15259,99806,62302,68653,36159,31947,37839,78115,83242,68975,59666,70272,63407,34786,41338,59072,320,6969,51320,14392,90949,79627,96125,77194,68545,95328,66019,20558,34606,85825,41249,34559,41808,75254,18877,87560,68099,56661,42865,97152,64182,42614,46172,31215,96198,8612,15811,55907,53275,19994,38053,93006,57976,86740,97976,47629,98264,33797,14509,15528,31847,89787,50056,81611,4342,76840,37195,40157,64344,40355,72701,81458,12718,89239,83065,14325,65778,94381,69364,43901,73099,10117,18749,7609,6650,14629,95980,11285,1778,84644,43270,86698,94027,51121,92627,11464,73680,51874,37784,66062,24253,99054,70618,4711,8273,91925,77616,54816,99533,39049,99521,1375,95288,23535,56211,15840,74700,75981,55049,82142,33755,60005,47174,97781,79315,62458,40964,50609,83100,7760,76166,11143,17511,91980,63383,76729,80318,14898,79424,22556,75883,81455,62441,61676,43992,59562,78152,4211,52825,29785,77534,91071,59960,11084,82778,61247,70610,28192,48067,83645,63167,69029,94753,5987,99522,81303,25297,96913,29316,19554,34764,53267,20162,53129,60742,23410,32912,67849,34041,34834,99284,31798,90437,21726,86727,84100,82293,88722,78033,39751,65803,47414,88657,65230,46560,60904,33279,39217,5872,58323,29609,83297,5314,54843,40464,17538,77000,22439,56740,49999,49314,93881,21547,64587,59462,57515,44510,70198,35056,86196,16183,27052,63441,93729,91097,59820,13476,36948,17111,91706,22564,40409,47447,60350,44511,33980,30197,60195,98138,74383,235,8463,77977,11936,52437,46230,71284,33000,75432,97024,79153,4492,38881,27245,95505,43143,54263,64425,70624,30920,61189,55458,58731,92763,89013,12762,81182,82988,10885,23209,84146,5542,68967,78738,59022,31094,86543,21469,91366,14260,21983,25398,25568,22475,38832,51782,55634,82534,47945,69785,54432,87595,31809,54762,22967,87469,36887,6190,41708,80916,40280,85007,48972,52535,64231,88797,76771,17963,57215,91062,13706,95968,6103,28774,37039,80036,21095,22361,23857,40643,700,21360,32380,39029,47416,55017,53851,50797,33076,23146,17416,47034,99192,51334,30544,88291,86726,86089,87964,68968,88558,98412,67071,7253,90418,4275,26428,45823,43699,42068,75525,77341,2667,64924,36085,20599,35884,82757,10147,66271,8648,33777,25938,7105,34053,97339,44058,37074,24315,49020,65455,94743,62589,22074,38039,59001,52612,45625,51833,33494,75437,17540,29544,64243,87467,14158,38891,81985,57486,86080,36683,49710,88574,59096,72481,95135,98101,43436,42082,95995,97207,49501,14586,6412,43290,44505,63676,99286,15175,13627,79127,67028,21611,34226,43047,26600,28160,34135,58934,13456,46416,79217,57534,60402,81370,56912,70086,42260,36037,66131,42734,56091,25973,7902,99317,73776,62293,76023,76136,40736,48395,79624,18637,23794,54714,58497,8594,52660,8292,94202,24401,48945,46911,89317,45801,39285,26759,31672,14092,80060,77972,93646,65450,11218,68465,67344,99570,70775,89312,43401,48342,77663,18433,96477,43590,84915,94217,7644,95441,30353,42499,93937,91663,10204,31382,76313,87121,44371,33022,16712,55730,40040,65660,3623,57811,41298,57452,92957,18369,31372,28987,64696,83213,55779,30963,79810,66372,25691,77176,7174,6521,51353,96129,6203,44559,78792,43722,41910,248,36727,93284,26054,40709,31609,61892,50455,97606,38431,61493,25261,9675,87539,82013,29666,51593,7706,31561,14113,24615,23977,38870,33083,35405,17874,13743,87255,50523,75803,69687,93441,77719,57224,59494,68219,98903,30868,98374,71162,84463,76679,95303,77367,77404,7199,76039,74835,28869,53956,52519,95500,97841,58778,8438,53421,98019,88782,53911,74593,5856,42981,38278,38325,4117,49719,24369,43335,24405,60928,85406,45803,62400,22991,28875,66195,77883,83013,57540,89406,52355,36319,12588,24091,66540,72036,1019,17497,75120,70523,20043,1725,30260,21457,45781,69086,85732,52667,84482,56856,55593,19451,14421,51216,27180,25326,86892,34473,3497,94928,17519,57541,38469,30478,49986,73590,27482,5779,92380,98754,80003,81213,68519,46675,12616,17502,76383,64334,20933,61570,18888,59997,18735,49943,12597,83365,30713,94534,1122,35377,45132,68477,28964,19929,58711,18301,32625,19762,85153,8508,1992,81101,30158,20052,60778,42942,76674,98386,35012,66112,25425,16338,78269,27109,3812,91310,78810,6732,93307,6623,96626,31426,36154,62952,75366,81348,77902,5605,91515,33215,11690,6283,52410,90788,41715,75390,30956,6220,97317,2002,5878,28432,76483,74080,68418,86551,9632,17915,83716,9876,31940,66216,88178,53154,82169,1219,93778,45940,68772,7531,23677,11794,10758,69663,66643,66245,59852,92017,34251,47170,2464,60067,71164,49938,69576,97996,17339,41443,74130,86719,25050,81874,2530,85853,74440,85919,50602,5507,64074,90948,52361,96698,28603,78761,14558,14048,3460,28419,55005,98966,21757,55332,33805,97943,20636,69606,93605,9781,37440,24331,38763,11652,32638,7470,35656,51398,32957,34864,73715,64176,13737,8317,47660,36557,75436,99014,35581,8269,45708,5242,50026,48311,21769,47173,37075,20555,32147,36507,10965,36939,75450,15517,27178,13805,96425,39046,78053,9172,1659,86460,58463,53424,98309,33882,30850,10017,42223,42775,58082,90784,18870,49681,67386,16753,55934,28444,6846,88963,41554,9111,69346,36973,11050,83910,79248,1893,41745,25673,10836,92781,6764,39353,65,29888,97850,40265,95646,1793,19918,94285,68208,21527,42029,96595,3610,46126,8295,63313,28645,43729,1309,18092,67190,71686,26721,87647,76795,5159,99973,554,90883,88216,77179,37523,54887,74531,36095,7030,32285,83939,8897,5165,89063,92226,89072,49899,68802,11187,17166,96584,94615,48731,62649,61248,49867,71248,3853,5473,75884,2374,21169,55222,46186,4817,27983,54196,35390,67352,21719,38994,58558,56289,72572,66251,74705,89696,12428,25289,16242,32130,63100,90608,71384,95683,22152,36127,55348,16099,93248,8685,90548,5255,42964,77797,37449,63822,18385,6559,83973,48605,17604,36430,7165,48575,20651,79545,38294,58026,3114,82674,14132,804,12676,3038,72736,62749,40169,91719,67816,29874,70694,17881,81319,11999,30915,1903,63126,17055,73584,3478,92206,23014,59639,39503,92245,54150,87222,95660,69005,77629,85123,16755,15902,30727,18367,90487,14438,45213,73943,37929,65515,25711,86624,92014,94243,47584,55777,51856,26849,44714,59274,72652,75632,91281,43539,40187,97870,6923,17889,9740,78472,70742,316,85529,31281,40928,13961,94458,14589,26564,10465,90079,42683,75597,5980,43373,89089,73321,92605,93640,96376,54005,89337,83025,18085,47018,25990,26942,88968,39797,48080,80364,67931,10624,65788,63777,78061,94153,3063,76678,8932,54057,55707,36713,94986,25821,71012,61788,5401,47413,24271,8972,80413,62129,28939,55021,69892,10001,31917,51251,48832,11934,42957,49651,85244,35434,62052,46648,462,40856,11011,68838,92294,58972,82914,67328,5103,61715,9833,6172,66553,78130,6087,34968,3754,22920,55783,744,14464,73591,90327,61872,98830,78303,15716,15403,628,90863,40810,80993,96097,77346,21340,68910,94247,93498,46676,9255,24061,14696,19899,57673,92065,46427,15165,92253,57510,91026,60105,65160,36502,99416,51689,40476,45279,77575,33198,53807,53632,36019,55900,40481,66161,15338,13323,37160,67078,17318,81369,27950,24435,8995,23963,58983,22662,97474,47394,39573,1563,32512,54526,52197,85994,85465,83840,49767,8823,17356,45092,2294,61688,78993,52546,95254,82184,72332,59726,67237,85745,92872,50548,6106,72192,83149,22518,50214,36517,75509,62368,70719,4707,14700,69685,66415,13729,17158,18297,27900,74328,52099,12550,45804,47513,94500,15031,34178,88664,66687,42848,17844,55147,99528,36158,64286,70677,75434,21437,63837,89893,94587,96041,80351,70640,84354,19905,3624,13333,61064,31766,53449,21113,9115,18381,17415,46680,34887,63414,87010,53114,96263,4785,12528,91594,8846,67875,15532,27782,38112,20627,62913,42076,28740,32650,95304,1942,77968,6422,97715,31001,20823,69647,71987,41501,94687,52541,19365,47134,98336,2669,49370,49932,83210,12656,13330,19865,68796,70310,57212,29648,67107,67511,95266,44984,37541,29448,33242,25697,70300,61467,11392,20683,71895,82571,84932,84116,75633,1261,79021,35294,58822,91299,58414,2346,6637,37555,47956,30795,17460,8140,42603,96248,64659,89811,60786,47874,41945,97602,92295,49806,44202,23204,41844,773,58151,84702,83819,72623,79030,35941,10913,30384,21670,91611,64578,12827,60124,68186,634,92329,20205,94409,8566,18700,38041,77343,84555,9030,48088,31642,15355,86461,8938,1499,91949,95807,47411,33612,30055,48478,38292,50747,12738,17188,8683,79940,67181,35439,37163,1366,80226,72582,26384,98140,95178,15998,42088,75934,7089,17138,32395,44086,2126,43525,80559,79062,61307,92812,95627,19544,92832,95862,76677,32023,86967,13185,20038,23596,99301,64094,64944,95565,45959,72942,16346,39592,14790,4964,77860,59028,33690,70988,54313,95015,97183,39796,55257,89987,78316,28184,24841,85211,5738,88108,21642,81043,29690,25210,31133,89703,12078,56858,29003,99633,1764,63732,82407,44117,54035,65126,91388,17096,69337,53082,60737,8813,28190,47111,95551,78794,69970,9573,21137,7944,10178,19967,11152,91181,50761,41007,96471,31587,65915,127,96983,73476,37733,3466,67365,99580,91451,47964,43608,37257,12508,49606,1625,104,83877,83010,8061,43596,9273,18883,89456,20011,29428,38919,37327,11127,42332,82181,16150,34800,10128,44079,64520,14686,23607,97867,52069,49428,47378,42254,56943,48273,47350,14796,36185,80338,88902,42512,66831,52787,16268,11199,75950,3736,33615,55055,38430,90174,11373,89382,6837,38311,19085,43634,39860,65603,10317,11689,3011,12655,30897,97775,59913,96945,45893,77395,20114,15968,74626,57638,52149,73361,52584,68978,67735,65465,11815,36374,22204,40147,15639,75798,77470,60945,65194,93436,75722,24393,21724,9311,67229,47812,53954,19987,50923,53621,88982,45319,23194,68131,23238,72022,27189,30062,46188,6563,88566,15539,41788,72471,31413,24708,8376,29446,62600,68524,58028,22791,75170,48778,38025,14814,53922,36141,1985,26449,49439,99515,56074,32795,98072,64452,83442,18827,15554,71494,22281,73174,72885,54603,30715,8284,73172,45351,64750,25231,3203,40072,67987,73289,88407,57580,50835,74908,21302,86098,1909,12697,36465,97558,29706,19812,41390,87980,11064,44955,49796,83949,39059,51550,74175,10572,89012,96691,97419,71417,32629,30475,14412,90639,84605,92013,99659,30041,33537,45032,34447,74925,82646,42127,55325,90668,94,40374,8099,57986,67583,42927,61188,8517,42712,47781,35930,89107,66611,10359,65674,5943,90993,96812,1628,79251,39346,15392,46587,13304,4359,20572,40370,19924,3414,83850,27460,63083,88572,66920,77825,37819,65102,49045,55781,54848,38288,8328,76117,30199,9940,74302,83772,61843,67907,91309,99492,73924,67245,71999,45404,74002,5397,86807,46,52263,1997,48714,58585,89832,27092,65638,51208,75451,52675,70827,70077,41243,83207,17141,21784,17593,22424,49757,59886,25053,34167,69034,45464,78724,9417,7057,29534,39356,28047,22748,82796,53889,23699,42827,93095,51777,63987,42324,94825,69019,32653,21542,41916,7808,31719,38757,60935,8384,76464,90555,61301,5596,87009,66774,10566,62544,22137,64575,4371,87168,24249,81116,21600,47831,75315,33072,70480,47885,59780,41135,45831,2091,43133,58825,19236,21355,75175,10684,89092,19729,77580,28763,45964,54379,84889,53324,82048,51622,82109,39994,57549,76995,67364,8782,76636,28015,12847,28050,11944,76099,26151,76159,70974,3116,52022,7639,69233,12411,70029,9096,89506,48237,2051,87420,90499,55697,63543,18642,72179,10357,57445,30751,15000,19237,4575,49886,84140,34633,63557,85770,18184,13581,77943,23999,68511,25314,37769,43650,63327,30760,7775,64531,24075,59008,43322,79967,20089,38806,46723,9966,54118,50040,80802,13722,16526,33037,68985,40853,46988,1083,53958,8736,9921,537,71389,10456,86544,16823,59446,28048,42863,83397,71969,2885,53696,55716,14302,40485,4806,61777,33798,75797,32192,49476,29216,8713,48154,10155,62610,88839,21215,39332,52758,63284,451,75736,9688,41,38679,13410,34667,792,51765,82056,26224,84425,25338,6965,60711,18103,92141,24475,41021,21526,15113,90357,22543,84152,87398,57331,13677,50095,59797,10678,51480,15520,9711,70875,79910,43271,94207,99595,56894,55818,88573,81690,11457,57482,46908,58154,68666,92620,76173,19491,66536,96923,51740,53160,80208,47248,53874,11891,35430,58518,17688,83836,89572,43317,85705,928,30882,68760,54138,15467,65964,82165,45359,99403,37809,64180,8819,89722,41030,76803,64264,71532,96325,46624,17149,21201,99869,23518,94614,91848,87029,47839,71687,65156,83758,89707,25111,35882,3297,88414,37684,79132,50608,89801,35460,60548,98451,57836,47233,52490,3000,76521,47828,19125,47533,67302,60057,96176,59697,13585,28039,83094,79816,96735,2554,51758,12852,11329,24230,22553,86340,35666,90818,94188,16742,44720,89965,85115,427,67649,77785,40647,38986,63659,20305,34326,29796,72147,72893,38439,31219,46392,21845,93430,41370,87926,2699,85774,62317,45315,24734,99,83352,81022,44634,60579,54950,70325,45121,96077,27195,84154,32342,51056,47115,95609,80742,97476,12755,31011,76016,36411,19893,88182,85707,55569,45396,11095,58061,43410,90362,76030,21010,16947,57920,10111,31814,71759,1071,20598,86646,19869,58191,51385,75852,81840,67407,12988,72172,33962,90328,16738,59676,36723,62951,20327,49628,37537,69768,58267,83991,13412,66555,2786,2843,84327,80535,1104,3647,77134,84695,3555,74004,45615,87300,50229,29067,82021,43557,5466,25519,64918,64431,6459,6656,9061,9810,41041,47391,87130,47246,52399,37504,78551,39675,65901,39857,69123,46737,7136,47244,6064,21848,8534,18332,72298,62105,78661,22349,57227,42623,95346,47310,38828,56955,15917,11492,58998,26308,30566,59323,14250,88041,24421,99915,65834,33199,82615,26014,12617,30693,34242,14483,72190,40383,60715,49377,52521,73305,67368,48969,71135,66394,72985,43926,10975,20301,42306,48755,68372,82693,16873,38452,27047,78332,20228,40912,56948,90426,33006,34881,78540,74991,28716,97504,56706,4776,95549,41952,38813,43986,94705,29959,12539,36137,57676,74517,72995,87369,24549,19228,43012,44949,88060,31649,51022,63825,97583,6294,79895,95643,23992,38267,29699,6204,43645,2740,47702,9527,33010,24096,56653,64873,60596,1530,60574,39030,32296,56802,10381,23360,2461,23588,56122,40124,18390,15001,574,54809,94416,17777,30981,92851,81390,36525,59201,24376,23835,85898,74485,28822,48253,43462,40944,77981,86900,7657,17089,79453,93700,53350,18731,57045,78716,42174,62154,41276,14533,92288,52851,50695,45512,6797,26612,33251,11720,13506,35159,5282,3462,68121,19720,42488,9842,17174,21927,80639,79683,70722,82642,89212,448,20442,85830,9980,62091,34088,92692,62943,98478,59395,17848,36115,87876,59945,28252,36293,2737,12194,95315,13546,53982,11971,31150,90583,61126,38,65697,53582,63178,5671,79964,1442,18511,74102,99445,38084,92828,27564,14149,98063,1661,17577,24280,79732,87934,95989,22273,64727,22004,94065,90258,95858,65154,48752,74318,31134,62314,13895,2849,90455,92659,50689,64077,61011,66950,21863,16229,43638,67838,46260,34265,38644,24518,97007,67340,38155,15978,91458,96721,70470,86966,87416,75285,81306,80932,26953,73783,44797,2633,92018,85896,74534,63854,61585,38973,69400,19243,21122,50869,76224,73688,26711,4836,97938,22888,13557,18194,29484,19284,97755,99607,69578,99093,12783,73834,5964,94588,74858,6763,38330,85578,97748,95621,76985,56359,34596,68639,42906,50692,6600,57211,50704,57357,71308,39238,34781,43976,34604,55424,48432,65228,91947,68523,67411,7675,62660,77603,90343,67169,1664,64031,21837,32790,34733,19478,71965,88454,26214,54348,51639,7004,76537,16558,63976,3877,57590,36657,79348,97147,75551,56981,49495,54644,97371,52562,89963,47090,25447,29191,11778,22718,11839,31569,21344,62812,27690,49691,26524,14311,67866,90233,42518,14339,94295,79597,6525,97414,71596,80571,53470,29206,33505,27713,20508,37485,53496,82379,91389,15397,69193,28704,94570,2704,64335,90131,92270,74133,11861,31861,45229,26714,68016,64073,84217,24765,36328,10458,2719,6550,92926,1231,87256,85092,76271,70248,4522,1236,90181,93482,61128,87593,96540,82086,62160,35512,42103,37946,91325,95972,46144,45620,821,38289,72304,93153,72241,66080,84224,55939,76399,41105,87757,93583,12788,48977,51972,3087,717,64049,58049,70290,86195,37193,93207,18200,24500,52609,73602,70206,41441,89901,81209,72990,56471,14876,44462,75774,37217,74437,37119,34956,62318,22998,38017,73659,51956,85165,33069,22200,13748,16653,60240,72969,70784,31895,10306,75054,24168,47755,30706,69681,37226,9424,51451,72799,11433,27027,94267,89657,6515,34132,71305,55310,53837,8774,33007,17969,92901,55384,15922,37890,86510,64398,2722,71419,93938,599,78939,97334,83770,28385,76902,66911,33034,74473,33640,86837,77710,87995,20086,88917,10788,59467,60345,79368,44656,13744,98898,47209,79487,8936,37374,35907,69835,4366,93282,40806,39704,31138,37190,77910,85947,63429,50975,29822,7981,10858,85662,76531,97862,23991,66545,28834,60309,4475,46235,27585,12879,1419,82342,52124,27621,66569,97437,37624,41205,73586,48759,69967,60010,88076,13369,46073,55563,30953,44056,69152,25440,61908,74347,55406,90322,94817,68818,90306,35688,71918,68190,90082,57345,53152,24567,29970,33780,94577,10695,80139,98524,99882,88153,39161,18370,77022,24251,73021,137,18656,21032,55130,77253,72918,18420,53880,69795,4294,80566,57547,42947,60082,11901,60731,97589,56354,72939,97592,51496,48800,81669,14420,26121,67546,55834,89574,19425,52688,25043,81739,75582,68754,72319,61381,57522,27220,82301,60254,36837,87951,92656,65411,98988,99817,2146,25910,84235,376,38487,9446,71119,39469,75441,67844,92949,78732,51722,71568,73886,16694,16654,87700,43903,42470,21354,4393,69689,23862,56760,52086,36233,18680,55813,28513,69131,82022,88476,72000,20190,64673,42219,29065,83677,99711,88810,16339,98150,1535,65416,7201,93925,87218,68342,73736,95938,17201,7918,67599,50059,33133,38543,65026,47063,9671,10533,14946,16848,78706,47821,62007,35751,65151,42112,4102,30813,36224,30710,23717,93306,77569,81396,386,13577,29100,60605,24287,66904,30656,1918,579,27168,99548,61597,50479,9001,12859,67154,79258,65855,42228,88356,24629,60661,39888,54654,84783,72409,16439,92074,67664,50208,5184,75945,30070,47942,6392,76164,69241,27035,91269,19255,19105,58480,94516,25354,86441,79526,15322,96219,34253,47913,20800,73819,3138,18596,11493,86404,91441,5271,45878,65380,68357,32983,29763,98390,94988,59221,4305,82771,69757,32309,34284,45570,76219,9431,14371,17855,16816,23545,2225,3947,41459,12431,54975,24243,88976,51731,39028,41369,4461,99908,30369,22708,67872,18849,3927,500,47003,8732,28648,71552,28727,69981,96422,44762,98434,33604,83766,98613,99172,76466,6031,72602,98491,52382,12664,56848,36621,51862,36999,17206,92549,2524,91117,86368,94810,90513,36840,70924,64817,76823,94611,51893,34320,97397,73137,72631,48085,50137,52931,19496,97664,28913,73232,92523,64602,67813,55883,30519,33982,80051,12091,69585,72870,1101,76658,36744,1262,97737,12455,4633,14815,52471,65742,38707,48818,51897,33188,76619,47268,11277,14164,27901,98576,49166,17828,56308,74270,76264,16023,40096,17436,95930,83490,20256,9283,7206,41689,20767,46614,89408,75267,47918,14613,45819,95184,15206,48213,69199,71752,50796,79267,89002,23849,5705,49692,62796,4792,85459,8230,50513,56234,32559,32463,35014,21580,81418,44684,49407,26256,85829,63485,80546,76570,79386,35728,94330,70838,66481,25422,21644,31933,31718,76730,74170,46382,86845,29363,28638,98234,35234,12619,31153,49435,22138,39843,97759,45109,39710,93939,42192,58466,75993,72920,58797,85860,77845,9743,66356,16227,55794,92622,58238,82221,18973,94395,5681,65025,1944,29011,34031,39455,39216,7394,83462,90279,46969,75866,92433,20037,14557,43851,21248,48509,80626,8676,4500,96629,57444,97059,94343,96754,21233,35771,52727,64594,65257,19740,74146,10704,16353,21946,68798,58347,60747,95896,64542,74506,94002,15973,1986,87664,85646,42122,40846,59896,13220,77044,7581,21955,81309,47540,75072,34250,27555,61846,36052,7358,35257,12567,21001,10643,33400,83687,11555,93926,38643,10882,6184,40978,10717,92099,88890,55134,96903,11670,56321,26543,67101,77055,20828,16318,54376,41297,28823,41508,82484,65132,4370,53797,25872,14073,92107,21914,56379,51429,38483,80588,70189,78401,83945,97005,12534,88086,96449,54817,48867,85091,46138,95376,68058,53702,95614,99191,36021,6817,78986,45685,12135,80409,46628,22701,41556,60468,92884,28535,96780,35371,61922,71718,31019,35605,11044,16662,13822,2539,60830,55279,91105,6630,91856,68,52017,75747,99555,61413,5288,24424,86190,44377,23890,95133,84624,97677,42238,4367,93531,94792,26825,91101,41863,42386,42646,48227,18494,42507,34454,59433,83426,77946,78723,65015,68766,51552,94776,18461,52256,13859,65673,2640,43728,41131,36602,38773,15324,98548,46696,11245,94723,99927,43905,53295,28746,49072,32390,791,23499,3730,8826,68278,7583,16993,19697,47907,30375,87022,2350,88451,29257,26610,29652,49844,84725,33973,97467,21877,66163,1852,42999,85105,1441,13887,16898,39068,60218,61903,25387,16160,98045,93951,59795,84514,41050,31606,22790,76863,84907,91383,84577,1912,13836,28511,62268,85217,15903,21211,20403,24971,89808,49661,40809,11407,81875,75184,82947,35327,27147,43681,84171,83976,15792,29377,4024,57027,76221,75854,16094,74056,60183,5895,47334,85915,10478,62186,90805,38999,81329,89157,14682,57519,49826,15993,12525,76634,24092,88253,70530,61737,91390,30289,48929,13078,12219,99443,10727,60389,39880,88954,36724,68719,67187,23242,42943,62609,69805,46287,24362,99419,34985,86785,33682,18729,5565,21875,63317,63119,60668,69248,16581,88206,94190,38065,95929,14865,66773,37087,27452,52265,47816,57140,16359,16341,11151,32300,9970,53559,62855,66570,42128,19211,36998,4629,36923,88366,17216,13660,53388,80448,25660,4098,3307,581,74807,56185,92994,8493,30825,31414,44250,70245,52151,74635,50301,42204,59197,52224,45403,43298,87144,19314,34282,10728,26810,79156,41124,46213,97415,8388,71209,61853,22928,91237,13785,11853,30983,56917,58067,46396,42887,59396,56082,73658,38863,30272,99969,59560,1974,5204,36611,88305,27830,39209,85777,19743,51600,40662,86767,69516,60410,72284,34248,34,45424,68542,20474,86989,2168,19424,92001,69854,43649,24485,31513,9937,21475,59505,55684,49031,98008,81251,89685,21919,85294,79169,78820,20173,53347,85773,37704,44772,85395,34346,2260,42955,44523,12485,61459,86151,87503,69166,12210,99781,18454,94256,88442,40009,30616,40206,53952,39832,93043,16190,93316,19688,6352,64617,93460,400,27991,69594,20124,31261,50617,18110,46882,77220,47829,36133,61979,19542,28189,37200,41434,48820,45071,92511,29296,9353,84435,93849,13953,87360,75307,85061,56790,98753,71495,80506,9444,8609,50666,41033,94412,37476,60780,24955,42040,56170,94846,76758,21034,82611,39654,55771,62623,22343,70579,72033,23733,27955,43387,83925,14938,40160,52503,66785,94568,55698,61671,85980,19711,19885,45854,36609,6112,22010,32386,15277,26520,88236,26337,512,65123,45521,77961,51444,95361,29071,5618,44842,59005,22317,72181,10421,82619,66191,28103,87207,31826,2232,43662,77678,23187,84445,71634,35653,99531,66998,97637,70660,5152,83112,64050,32647,3454,39263,76558,4324,40867,83984,38668,88012,2995,87303,37941,97684,59399,35586,1252,88984,60725,93810,21888,63645,98088,13056,27614,4845,87412,72788,10210,26133,81176,39621,39242,42763,53063,24759,39615,9521,49487,1173,82953,85451,27806,85310,75101,42085,48369,14878,4125,26882,83725,76339,78038,90978,53291,60340,21449,84776,44295,27596,73030,88631,54133,6966,49604,13680,26211,28637,98337,61702,67738,19398,50746,61208,66782,14957,69654,16184,68780,38736,49480,34097,3141,89500,191,45020,75320,65293,30533,3093,20026,82676,32782,51643,55923,22978,43613,88273,78204,1081,21492,69417,12517,35076,92917,31026,33103,88665,69604,52639,38762,98589,99886,78438,62732,50916,99654,1568,75416,68067,56702,33263,83719,84277,10226,60137,4550,20710,58313,34910,66303,3507,49089,83450,63783,85332,30698,65827,18576,70733,40738,41323,10791,88852,78691,64541,31095,28825,95890,64181,61656,52627,61907,17812,13245,74861,56494,55476,35667,7727,34953,37960,25712,13164,60025,13081,54833,21451,21297,15318,62163,66151,96095,85735,63743,15960,21101,33402,7442,29431,4416,10197,63664,70376,96846,10869,58587,36505,32225,26616,53891,73820,37912,94449,44028,95674,58826,74682,42526,53294,31291,38816,18615,64744,59357,59720,58680,29969,85263,5923,4571,71598,4596,9363,83378,3740,58300,83467,51601,23290,78092,60246,70507,83368,76676,96130,79629,88247,9981,52141,45888,28666,86509,26353,32235,33437,10515,13033,30128,74114,63320,72322,7822,14465,43400,19416,28771,34002,7202,98819,30407,89496,38887,514,22565,21566,41389,2770,35199,39748,67451,36378,15773,5379,21861,16872,54307,99890,42043,55169,94905,15089,48528,9153,15090,77895,83609,34665,86549,96993,93688,74193,64708,71856,30146,79325,52882,48831,42333,77396,82564,74058,19176,80116,67215,55286,39331,96973,14827,78522,62557,19737,5572,59794,8906,43356,24279,4180,97084,6266,53622,3224,21277,39567,49868,75650,8081,10699,54245,66577,66495,62286,3383,71201,80290,32448,94896,15657,50343,3413,65249,17469,22022,39591,9748,1266,90350,86931,71853,37586,65903,31377,24754,81956,35761,66992,62773,2001,75882,35245,10444,12466,38703,62032,9613,27260,70871,9987,44104,38558,14728,32447,13329,56214,11112,91901,58692,14239,41795,36254,85449,67065,1185,82035,55460,9542,24215,94406,88313,4929,10078,15743,11438,93352,25703,10015,16478,55807,77097,46555,57278,41857,37804,92823,96922,99498,38933,6677,15858,23715,48541,11019,64996,50355,30470,77660,42845,81749,6757,25676,26579,4972,45073,29043,75035,48912,78087,12347,88219,78396,75516,9821,70813,43251,72895,73113,53036,42466,43891,67944,70364,57736,83563,76576,37686,16087,72543,56227,38172,95258,91909,9868,15121,45910,22615,22883,61417,86875,64832,41417,56093,75544,63221,67011,4003,54643,13077,58442,24772,65958,92327,71515,35287,65779,72944,67396,42604,45791,30923,39555,48229,46161,67895,9491,68330,47868,55085,84407,3368,75469,27910,11637,42011,94478,77071,85077,98952,60551,94205,32155,6506,26698,55735,97933,17062,8899,63268,61889,411,23557,56493,81869,59317,49230,72055,47711,17611,1363,63044,6323,54610,19420,62226,75751,2169,2626,11263,46377,48722,43281,56934,563,43710,97542,15798,50157,26869,33716,97149,38826,9099,55974,14587,82880,18322,12929,26645,14937,89234,27773,60624,33276,28918,13216,52879,54283,73408,68937,66330,54050,24438,94958,47130,53920,75160,4997,68640,42555,83001,32214,75261,2338,22455,31405,65939,32756,46350,55978,76057,10028,39311,6009,5708,27597,64164,52997,23112,30275,68979,26142,85307,17197,56228,69613,65119,51084,87976,46887,20193,76061,93716,96739,33654,60980,80225,59437,56576,56766,65864,3523,98172,74181,6592,40442,90577,51457,61037,89550,49144,94492,95103,75818,25067,52442,50861,87794,70146,42752,87938,99048,97491,27961,4570,74179,62403,82819,58032,2731,31126,6363,39974,77511,3596,63412,44748,31683,32356,6734,59616,52257,66270,80263,80228,95946,10748,96952,21092,94663,16266,20078,58264,25848,15555,82657,34227,63187,172,30169,68113,66704,92204,85273,85069,79344,61748,90954,26274,28171,71169,48799,43685,75297,15389,87950,96039,12332,449,69069,83570,2482,74048,73315,21380,3815,54031,9407,89272,2871,15457,13553,50706,11142,11132,91555,89008,33323,13571,26756,85586,29941,83372,81124,14842,29976,52606,80288,72115,1087,95687,52051,41643,36847,75205,37030,24307,43064,88756,64610,51258,88748,54764,32494,71945,2559,15316,36383,86890,50537,30505,86599,91470,42746,88580,40673,49296,94320,10530,8255,28278,96250,91769,74802,75674,56488,79092,90389,58155,80443,75954,10268,85010,41772,3034,15117,41879,2183,36024,76738,54097,94236,22085,117,84875,39459,26013,34420,32859,10382,39351,41633,93177,32492,9161,36351,36045,17673,9895,8218,56655,63432,93028,20067,34912,12824,44302,94920,44457,22499,90366,78226,91865,44620,6163,90872,49308,8750,20297,83600,7480,76234,95012,93376,24635,57449,58814,77412,93161,67797,78915,25270,99814,46244,9547,28623,71186,59611,5990,65203,49486,91615,75402,43824,38771,44437,86316,85330,56119,70064,44070,57740,50373,60501,62794,30336,12890,55254,82408,70770,99052,58073,46917,80617,49282,53213,65678,36200,43131,23267,79201,29659,75192,10848,36524,69789,10249,42399,21381,70600,82106,17660,81836,25476,86500,97724,56897,57312,41964,18235,96668,35661,46653,52416,88838,4368,62387,34302,50031,20597,57327,6453,88673,88829,10422,47129,61315,25512,82910,42944,67296,71003,94074,80432,46806,65944,77650,24319,79366,47644,13874,97539,32771,51063,12978,56881,11739,94809,66434,27658,79540,31541,6553,89746,6738,82386,82965,70894,19525,35366,72037,90661,24026,9101,18078,70318,84928,83635,63420,93985,81294,41231,22688,37410,91596,60767,1194,72604,43404,13477,59375,92587,52093,89993,6249,70537,39890,11554,20855,28406,98413,42193,11047,44995,91139,28313,69640,62510,28743,16013,28999,65983,30235,76777,86758,80934,1079,31054,66134,38319,98352,66970,51347,11201,9952,12621,40283,80852,81187,93699,30718,20395,96101,45554,15039,20426,63227,40769,24634,36799,33697,95502,70776,36770,40563,37729,3786,83350,44953,71505,67631,83309,12510,41219,20829,41267,7819,73356,67531,73078,87318,75030,70822,73104,65698,54234,26063,851,19866,52281,10391,19354,30400,69503,34939,45767,69643,66413,72923,86621,88627,91010,48938,92344,61848,57148,57963,96541,60364,50556,40548,89586,53280,76340,69603,43654,76514,67151,76020,77046,81952,14820,71184,1855,4093,86633,49513,3499,51675,44795,39672,17726,40319,1711,48716,7973,37557,73665,46753,46772,33975,77148,9290,54910,37728,52462,38386,93653,36412,56788,31821,99288,25604,68065,64054,31285,99629,83268,71410,50204,43083,92982,83647,41202,92632,84199,4978,12935,80815,50836,6627,91320,86873,53163,29925,6202,67160,82192,98892,32122,47496,79051,5211,22674,44363,98624,93660,20452,62312,44346,30063,23924,87444,41321,56828,8015,53767,423,23190,59066,98142,20601,75892,12048,34458,50591,22885,47795,95299,81313,53187,11809,43575,26694,62574,12337,51029,32959,69249,25366,72828,71139,56676,33847,82357,10237,21754,18374,15258,4925,86,70665,53425,7834,99656,73161,73287,28962,70884,91201,37121,24858,58668,25960,71558,75969,80610,60511,55204,86294,96534,61924,6153,5587,76815,48632,77786,29224,68144,91443,23134,25107,76465,40813,31909,81096,29575,72884,3145,47237,25086,21911,85940,26234,97827,71915,37953,86542,28507,50237,96684,39514,95869,53805,16780,41074,86417,80452,22216,5405,75877,9479,8694,70403,64590,9530,85212,27521,89194,40491,36902,81296,10674,83041,93802,4148,21912,38506,18031,18196,5330,24516,76799,23145,29058,14648,66893,388,3023,30230,17825,97652,21162,90390,58645,32282,84595,56739,52146,40335,84403,85388,9498,54394,46912,21336,77260,99983,36949,12744,87354,83797,47206,80510,80564,77205,71740,93983,47160,54252,30657,42054,98823,9665,35662,36317,26565,22434,54487,30682,47114,87021,17905,10889,3766,48781,25999,20640,85415,27716,37268,98357,72557,10354,73722,88997,54179,38144,11423,51512,69032,59171,61338,44015,63481,51375,65096,23090,28967,60702,56640,66176,79207,55892,25365,45356,26755,65610,66155,21325,76987,17154,84568,26548,69052,2422,96276,36183,84200,35905,27935,30137,72145,36289,2734,57,89325,14041,80306,36850,79299,85577,72946,38938,85416,43515,75778,86432,30960,22122,16392,53940,68962,1487,15296,59036,17434,31858,77154,1234,93240,44417,44341,68334,92943,43838,11311,9820,96570,40466,54835,60303,99277,93192,81136,74127,18549,59993,34396,65162,32870,55462,2594,59331,58566,32851,43609,98028,15420,89700,26771,94209,50378,34215,57680,262,98466,89109,21749,89057,38525,56472,14054,31480,88421,25397,70093,42533,55050,93049,63123,94692,32303,42793,91952,17344,74059,49529,32280,51055,43888,5291,62024,23434,62815,36549,97333,33233,14927,20352,25167,35795,72594,40557,12537,50036,99549,18736,5333,77774,46843,51957,46781,84017,52804,7791,16925,82759,7616,61065,14128,77500,65585,10061,88266,12276,51619,70855,32188,25070,29175,70608,89119,2310,89511,63280,17741,34625,84773,63252,96115,90109,20095,72139,77497,17277,71325,32742,49244,87150,86943,10578,23096,56345,35715,94042,77751,31670,49329,91541,2179,75424,18703,2540,60792,36718,7971,80041,83808,7553,82845,31660,81054,63072,45742,12954,67967,86433,31827,62450,49522,80396,41481,34728,27958,93564,42064,68837,5233,69450,30214,96824,90365,29846,1615,29547,86870,79126,30883,39836,92382,79184,70528,27661,57798,33725,19045,82889,78556,3737,74657,53393,87081,18532,13263,88258,52132,71713,68778,75427,698,17032,92535,68312,11902,46990,59391,40919,67124,22980,95302,32806,11153,91043,82125,1470,22909,51857,93858,28916,99079,25700,6310,46549,61508,8210,69171,46942,47292,93326,44071,22691,48190,3278,68248,46983,4041,70448,95964,7913,39670,77925,85510,5208,83580,51542,29149,42702,70979,83302,73150,50658,3834,51988,79708,73297,4239,27252,27777,52693,46780,89915,12460,64007,7575,52164,80691,43463,73621,61573,54725,75845,48740,18188,92796,4955,65623,9404,23598,73878,37388,14544,39682,94178,67186,98866,73589,42535,80053,91223,58831,73214,16383,95632,24540,27699,81528,38258,5298,74214,95877,67473,64123,9182,69944,59230,18122,35011,68420,54942,83093,69287,40549,7502,64544,76134,17924,60432,29046,19011,47640,68555,26401,83018,97410,82094,63449,85410,87535,92516,45305,52625,25214,81272,46748,49464,24724,13267,72262,21695,53983,38549,90737,71794,28445,86168,84401,75663,40746,95014,87575,78910,12170,50432,74222,39962,97430,70179,89380,21394,10083,4204,603,32,73313,37561,30149,1495,32651,45994,28428,91518,60126,42119,26336,1635,86618,62081,7710,86449,70072,53516,77269,7371,88866,30917,14968,30934,2108,50707,75471,88399,65326,73442,46762,14087,84394,21732,16917,98739,68071,63604,22259,9796,38845,35488,21923,95236,72535,68256,6518,30578,56722,59860,85319,81652,53084,47234,7704,44123,47547,5710,54193,538,84793,82157,83995,57747,12732,69552,65680,37991,81517,71033,9137,1233,49302,25085,11658,86123,56389,84359,63594,77784,65444,34909,42379,30797,73894,61453,84059,41902,94758,25240,56844,1412,57016,55711,96748,58181,71420,48379,69148,65594,84523,24552,97623,15976,27469,42970,22136,28783,50552,19154,8756,80831,87491,8510,17119,16249,1307,31231,44388,78512,35003,62720,75230,93092,40059,64568,22234,34647,56110,57369,88551,14741,77983,86830,24843,70819,78003,38321,76728,28655,65960,48137,44853,68611,89415,60459,6652,38882,58417,36472,6708,44492,36063,19042,92534,34095,53754,1567,26006,24385,96351,27264,91957,75006,49035,56548,37260,61379,93568,39833,35680,71300,2352,84493,10677,42987,91726,89545,55787,1507,19732,43474,86017,52284,14009,2866,99537,66850,82498,99552,17101,63679,61816,15585,28429,15544,2597,99816,45453,76607,5261,85616,60063,46861,59785,81500,58476,95442,28202,24018,14705,8487,16109,60155,50505,60019,69717,57042,51527,59479,97693,22581,68339,53499,41519,38751,35903,18813,78511,56779,3392,56312,49861,2657,63021,8771,47645,63526,53566,44276,43095,44410,52826,88144,64839,36496,39273,52554,71997,70555,8322,96760,99599,37942,89812,97800,92059,50085,8760,7114,42668,47225,65325,26480,60107,54557,22498,16418,11746,29886,39884,87096,3715,51859,86508,19472,31310,78457,49579,60297,92568,73666,70237,66948,215,84203,4292,76032,40247,38316,46794,78036,37524,25859,13206,2074,25627,80347,39905,19383,64195,6185,17785,54462,44651,41932,33207,31528,45422,66951,80576,64120,84911,59653,36707,54615,61938,58762,54999,52737,52918,89723,69426,15388,27502,44498,24601,86597,75373,15346,3379,30021,15829,11102,84291,54030,26820,51426,10338,88508,62495,25654,1718,91490,30406,58611,10526,46613,91895,38194,68015,64583,72539,98002,31375,84739,44780,27363,77556,28817,12295,68726,66566,81641,22628,31214,25791,11243,92066,5459,60748,41024,83587,99379,9920,28728,20009,13384,23413,85154,17234,94242,60942,2181,84752,18147,33162,9226,15247,66497,10346,34036,22858,58651,45028,73303,48365,38940,80064,88506,81696,24700,98214,11027,92185,62283,39155,93075,53959,86272,38956,54588,11219,6146,80461,98261,67057,39996,58853,72632,46537,35927,88428,11523,3634,81747,666,23772,20556,49874,28055,96291,34477,27598,12409,44262,49948,85739,5307,58700,40475,35373,56404,48024,28672,26715,4014,99899,90370,81104,99106,90179,44256,25509,95816,51925,40677,74739,91751,74782,33811,30443,4484,65800,3948,73376,7028,95911,42769,36217,32449,34478,75889,79906,37835,234,47339,40608,85528,72967,94312,67707,47200,16952,34433,43049,30889,28713,6862,98255,64042,87550,74071,68336,89543,85011,86882,37502,77383,87807,22051,50385,5657,63986,74855,57499,62301,2010,51149,77750,10680,92690,41507,34931,75173,67715,63572,65094,86035,67373,57537,16689,60730,88639,60656,1196,83572,48721,66435,6264,68634,13918,75183,75622,23491,58749,68964,53384,1141,38462,85460,3973,1438,58526,15847,43088,99457,1780,78677,30884,78323,49875,80676,17328,45416,79548,58408,53748,10522,20465,98086,70496,58676,40858,96091,93523,31533,23981,59019,84584,14321,99675,82501,18111,74444,68102,12857,28883,13021,16044,94579,45489,95408,60722,80471,14189,98298,80790,2651,31195,41402,68544,81599,50066,8796,36673,94998,91429,58911,31497,14109,88457,94606,76372,31898,15387,74389,36829,68939,58015,26478,72200,67976,82072,70482,1693,60070,89662,7345,20108,11871,4657,25731,19251,57083,84749,66199,37156,22602,2234,38996,74852,9371,15863,96946,80521,63149,17282,67155,90273,59006,80529,35909,10521,217,84197,81557,40960,40102,25989,93833,60044,77297,95059,58872,21788,91136,26235,67423,57970,67639,80373,32330,99069,61098,67377,86389,1604,53308,87041,35924,70078,88801,88916,4402,35085,59079,8178,6020,65667,58844,96106,9192,10656,78077,68139,22857,30059,4920,31808,41286,92373,20102,55960,83856,62784,56508,22837,48621,19299,63505,14959,47625,39340,41947,89285,72807,44998,40661,39128,60828,58773,27721,7718,37369,68630,7661,88677,81622,24637,37224,36165,32823,13985,18628,50182,6376,4407,42124,61407,52300,74394,68527,62252,13390,44900,66235,47589,93557,72871,73003,71907,26709,46947,19078,52430,17903,10545,83727,91904,21230,44098,70996,53704,11175,5430,7997,59894,2118,91839,90177,79959,55368,46197,90567,8486,51872,8697,89084,22778,91597,24453,7799,40885,25157,5613,61803,14044,11214,66984,42363,74252,31685,87736,37131,54374,48046,23663,99583,96212,83653,56338,33769,18400,29304,85519,96230,39504,74772,76972,20353,35043,75727,33041,62358,46452,10682,60530,63475,51965,29589,63549,14430,33493,61781,87095,7189,56767,39396,93103,37058,3890,66532,75683,73733,66682,6482,42728,81814,57044,85041,83204,46592,82569,64043,32482,76511,1791,14468,32550,14877,39921,47259,1704,15399,6464,91211,63165,40593,85809,4399,15412,20977,67346,92612,41600,73928,12905,69793,87066,72808,43563,59132,97549,41741,21613,25423,57931,35209,24876,23021,85678,55431,52259,41804,55182,390,90124,88303,80209,32212,30360,57116,34761,70293,65309,78525,11092,78953,32017,88759,39067,3549,80556,70314,3118,3153,34861,17595,5128,75166,99427,66196,49670,18021,88994,81900,41606,53841,98366,98230,21899,87944,50174,4458,62225,92947,92968,11961,26866,11851,57095,42984,30926,10911,65074,83062,73534,69392,23486,81501,3245,55167,56930,49777,9739,98572,55250,31817,71843,61659,73678,79686,44847,96352,79849,65618,49304,94972,60963,49023,93421,49002,97794,91088,70841,68745,74470,35718,72844,38979,34767,30165,38171,40351,36493,53246,42803,99994,22632,68827,33122,69413,58485,99370,2329,75531,60174,32555,87267,61376,41591,80126,17022,94099,45562,82240,80715,8430,58986,52532,22109,64039,76750,86659,67613,44787,77403,70419,55439,64812,317,24989,82344,66041,42101,49655,33210,74120,97584,29147,27960,85769,80017,52185,99067,49384,71669,63963,68350,79843,96476,86008,78685,72711,13629,49542,52417,9703,85281,51763,90601,67129,155,18722,53032,95530,60826,91618,56566,11325,93909,6707,56972,64821,15630,86236,81055,50480,48747,894,99486,17435,25384,72887,64371,18887,92921,53418,53175,26470,69682,94064,30328,69264,32907,79309,87321,3800,45457,50931,92355,96316,54364,77861,13976,32368,36538,54534,81850,1405,87717,63107,29097,41121,24745,25486,44251,19168,20313,21156,24296,17591,84851,29249,55376,11825,76612,6433,82066,65590,22189,96445,38859,61035,43907,84972,54665,23668,75999,60491,1418,72056,70183,84143,60708,37791,66832,63878,61275,85592,74008,97074,6209,94165,6242,18248,11209,18403,26128,24126,67322,74794,83978,85230,71183,12023,61863,33295,83143,36469,44644,31103,74253,91292,26479,33078,13929,52756,17987,83650,12867,8608,98096,90217,9305,19566,28352,12596,22135,34393,38846,70437,52529,89788,81453,16954,19725,91557,6285,99212,83757,61994,32338,63037,88299,63939,21312,24350,33878,68650,73831,9222,20813,5451,74630,7550,26799,81378,46043,85591,30745,6804,93499,6224,84885,62676,89245,74474,66183,35758,17671,16442,86825,57701,89794,77405,72096,74189,63486,62627,5155,1728,28007,71579,70195,21536,58770,1958,18227,2543,74945,66558,78106,87364,5791,21793,86669,86684,67255,39386,14232,49493,52556,3031,7947,65099,86826,72454,64813,40405,18997,45232,19508,43723,52409,69369,76891,37192,98785,53626,25939,84680,89714,72492,96802,22866,61207,18290,89949,20185,80703,30754,65142,57763,6056,16617,71562,5905,2581,1346,85723,30454,53900,31619,68788,32585,13697,42072,57948,48400,7642,7366,2831,67926,14561,65255,18190,84623,22448,23282,93468,10587,35702,20220,30753,35320,18856,61957,97173,87455,28509,88208,1717,83950,42492,55737,94650,45780,45789,11386,10410,7468,81689,54918,8445,61544,99632,84569,27630,4541,44124,45600,15107,26851,8283,28748,7709,80097,38381,51325,33693,21562,44389,7663,33919,21099,38378,90622,16715,86665,75669,31737,71810,29303,64470,39433,28314,14327,82694,37409,75038,17038,4734,52672,16992,54381,34686,5690,88913,31703,31429,90463,97774,57163,4266,39976,29201,37847,98232,5228,33699,26376,76186,66436,8203,55891,93984,31212,77017,79232,37070,36042,11500,25740,5256,97559,63375,23620,37104,50146,97276,33568,41805,1876,15048,28787,24555,88348,82919,31899,95036,44575,93396,95238,29988,46134,84016,28659,56963,77353,26266,3432,43326,82195,68592,81171,14476,97228,87220,86969,47668,50518,2399,29042,59205,80738,32635,20191,26782,91924,6322,40697,60697,12721,68871,10122,95085,1874,61651,3390,11951,24726,9612,15665,41701,84985,2172,65893,8415,79369,82075,89305,26143,80112,6243,76767,81821,31973,26237,47257,15170,67430,4466,93674,84040,92860,5386,11135,51577,99381,39904,95829,90364,59267,5873,40536,67497,40762,70803,86014,11662,14034,89978,74244,68769,67115,56659,30555,64514,33444,84438,77664,54583,88237,10840,53725,42574,85652,84761,55297,2729,24234,71264,13236,26581,81265,42175,78964,68333,98036,55136,77390,24431,30496,82186,78802,44968,27631,56869,48251,65617,49330,14150,64456,90432,8948,69315,2968,95411,98087,12454,6806,24055,14830,67496,27962,16068,49958,88346,35621,32347,42227,96660,21998,30776,71047,36647,44926,86711,9218,68446,50615,14348,23453,32713,12446,75843,54748,28870,15540,23597,28357,62237,32289,87395,11561,5946,93942,82261,66011,22,69960,50446,24865,32314,22443,99913,67125,31070,89115,22397,1915,23261,90712,72821,39360,82327,95681,59160,47039,90037,29895,27034,67632,79250,24595,46558,97193,3950,3243,69224,23044,56351,22992,29736,91111,68812,74715,68998,24221,50888,11855,73495,74221,96940,71545,30943,60683,37044,51052,59700,88837,71602,78274,36070,50554,64843,6391,61066,71122,48727,31140,1916,22418,75648,80641,44378,8904,89960,98528,33221,72038,50623,68235,57258,95074,84740,85792,49654,74643,42996,23477,83318,33499,80191,9571,17305,14896,31081,14943,82763,34169,97601,70074,94089,46198,20085,92171,64100,89208,36635,31888,69432,74971,77765,22093,50550,97407,95239,81751,5460,39565,42688,72345,62424,43520,45592,62207,24684,21774,28358,82039,14129,78327,6341,45440,53976,88520,41649,88218,72656,57656,32867,61235,22675,35164,96927,55863,79884,7720,68437,9112,53678,94222,92766,84286,28259,70225,46814,93320,15109,97561,45857,99962,73411,2483,80543,55043,68189,31230,67360,32226,67919,60745,30603,32418,95986,67671,58950,78297,88324,4355,8770,11160,8586,78019,99995,52844,76079,4392,95740,89715,4170,4473,259,36996,2053,3067,63599,26298,31553,95983,69725,9483,14819,82800,83155,19371,95448,60806,5848,49630,92764,2246,27632,73872,79191,68408,44411,88186,10491,42019,17103,82869,88400,94469,7153,28378,7917,4109,68383,2599,60447,11008,14750,80189,35985,93507,76792,78920,12259,5115,3115,9019,8739,69478,78596,57421,95584,77586,94214,28736,25705,97391,9738,60798,51042,14543,84835,25170,83434,70521,34623,55585,46089,65078,64551,16212,39408,50500,26722,94678,47448,26879,51278,23525,48769,85500,74089,65629,89926,23117,17942,41610,21005,29124,58148,2855,6731,46501,98711,15417,78224,2215,37366,27884,71697,95941,79654,89419,90817,4668,77876,23085,45727,56807,17938,20538,84841,6821,4548,25135,30276,18612,91460,77384,66830,8593,40460,25570,61611,99556,59593,55301,31762,32361,72142,7203,81203,80143,80900,72247,9923,30591,69651,27615,1761,52191,88735,28616,16571,94436,7778,43816,32144,18696,95902,17302,78750,25388,71140,5205,26487,12899,50047,82421,98204,53406,13913,82624,7668,59592,84728,96464,81266,9989,28518,88904,85939,38419,49841,62322,23218,19623,14559,77721,86819,59741,16747,8460,42330,81210,62575,49229,66447,56504,98863,43855,72379,58008,12766,89417,46786,47679,44418,16650,53739,1248,56992,97051,19296,20859,73453,81637,69511,96337,12919,23547,62647,94532,99641,13920,60442,70559,22818,70823,23003,79245,62947,73811,20064,55816,16878,94513,85132,52994,21830,50271,5530,67833,29870,60382,18094,40820,40061,8624,76149,6269,55739,62012,3900,64929,7222,38840,25228,35966,28924,42455,17995,16195,66797,29010,40231,83896,96267,37114,23449,53635,68004,10303,96443,24293,17269,83537,76409,86596,3054,55963,24206,33438,46232,33587,66031,77271,28395,98763,15707,82660,44105,43329,49128,60253,38697,966,90920,53868,57406,58943,77189,63591,92581,60757,29402,31741,51038,69464,36564,23376,44179,76415,59775,58001,49272,60456,45347,75754,78580,68202,96898,75284,87715,91944,73112,97617,77142,88919,1671,34948,47737,46686,19739,20240,44207,74767,68470,14024,86771,8024,88316,65488,41475,57762,11989,6100,88543,67563,87837,66877,82403,15904,72436,18360,65223,36404,98874,16265,96869,12683,68348,53547,16598,7087,91023,79501,45671,91040,71841,13906,95633,47771,55080,55708,65319,84042,10114,49586,49322,66654,70124,10906,28539,62717,54878,98177,1190,14910,26261,78263,11140,87887,87192,6405,74998,65437,51479,5766,46547,17327,61014,37033,34817,88679,88903,53755,60995,16623,39506,51281,38441,83488,63536,72008,54289,89425,94364,76330,14779,92550,52332,28159,68428,95309,92778,34689,25100,37243,31893,33710,37113,60396,92544,36556,699,11458,42961,1779,53908,41204,95443,56651,62774,99874,49485,3822,26421,98408,55809,23964,86792,84824,16671,40906,19210,81872,54099,59541,72326,44506,91502,30538,52181,76176,75455,2833,50196,8069,94931,86085,85934,93144,15311,49108,42226,62157,33267,30125,90497,96283,27774,22033,18998,12745,13445,22684,6854,92779,49700,68255,6833,24080,54662,6312,42039,97320,20376,16291,92264,51450,3438,96990,8379,79507,51875,47161,82359,57615,8138,13315,94855,62115,64253,46896,6832,99798,66144,27649,62076,73654,67711,83636,65665,75538,71775,39064,7025,48638,94034,64786,70292,33495,98644,2037,9985,66843,55998,47892,33317,19727,87014,11261,17293,16811,32613,88513,13583,65365,79433,38008,43258,32660,12098,51146,28597,80841,77854,45308,78740,36040,78261,73226,44908,18428,26583,8870,97471,81781,15928,41724,62927,95245,17355,90243,82243,92375,35565,64429,26690,47477,78869,46831,45935,25457,73617,32374,24265,67901,36288,93226,84968,43198,70804,77466,70167,36639,51057,209,39606,4584,57814,30131,36553,88026,98650,7040,30253,70162,82336,43492,42835,3456,69666,15047,66337,2388,77345,42994,68588,30415,91022,9887,83283,35134,85953,81999,47346,16679,19666,33496,34599,40224,63625,32158,49707,7192,29490,57113,74027,50933,24548,34479,77604,19364,58041,365,54049,95234,50276,70062,90658,49441,944,14379,94994,45375,8862,53183,61395,13555,31196,91355,93009,69605,57861,88567,62478,51582,81292,99331,29828,45633,64388,23382,96225,39235,80265,56960,29643,208,99759,94303,79200,96645,9125,86138,6533,71536,46486,99413,43222,22873,89036,94796,83492,82710,10981,68473,7605,12992,41599,76680,37021,20270,35241,13190,53534,17711,79794,9847,51673,97854,95554,34084,74762,84865,41815,79208,4736,99266,4053,3608,89663,45307,50249,38303,11389,25268,74411,89082,43331,80325,17516,11956,32648,70554,61824,87394,13497,18072,17640,44474,60335,51792,20505,65621,21969,41981,81468,59485,23083,96733,79673,91782,9758,79862,25392,29266,66304,24702,92629,42182,24172,35055,76201,43178,65238,22699,21894,75388,33762,67690,95064,55260,93130,98104,53512,77476,13,91126,83320,86108,52255,64261,59599,32339,90015,1489,5610,92147,96361,83128,40568,61981,25376,3718,3068,85342,88190,65557,57277,56172,53486,82835,72178,88381,28802,12066,40262,60017,73330,43379,56055,46202,53274,32477,24323,49461,51004,29973,63384,71367,49469,97225,26220,2218,63714,62675,23080,67820,89603,14595,22820,72876,31967,13042,25319,35556,50464,1607,28542,89693,25274,11024,80171,52549,87823,14974,91918,67716,10843,93996,71467,97164,61590,51126,69702,70373,83285,1594,63710,40423,64351,69767,17530,79387,20169,74602,52145,57848,49929,82658,14783,78704,31620,27599,27388,69533,52309,89387,74384,67415,75483,39425,92699,63138,35433,5216,41210,23091,25953,64651,1538,7608,73572,7514,32134,61594,26495,64136,22131,92353,71196,70786,32484,31078,42078,10968,99030,62601,57082,2221,11391,30427,50367,95217,94690,73488,23394,16459,46454,47,84254,20107,41148,30181,20732,17233,11486,19396,4353,70242,21685,2033,21959,85668,17953,18638,9800,59223,91277,75636,11420,34819,15409,4752,15351,99223,99354,79682,77348,16073,28235,17072,38916,86415,63724,53038,26783,90706,82235,83756,15888,45941,83890,39899,78404,66233,57815,72904,30859,81433,26101,79911,18048,35686,90767,66021,92825,24643,8743,48980,62124,57935,52935,42049,4624,84585,20219,20724,83086,3360,11609,33759,47655,84478,99128,91891,63388,94933,37717,14516,27584,76453,27980,43746,77355,55696,98656,85446,70471,89890,85948,887,85692,84747,39759,44215,47505,43890,99094,52457,42992,46989,58445,25125,48034,58521,53506,99970,44658,54533,32772,23622,92409,11755,29628,83718,20414,56216,76350,82204,47622,49910,98986,36432,95087,87243,97806,2671,83515,42622,22323,43797,60273,56,86308,8040,16435,2696,93401,86057,50287,1933,69555,75168,63234,15231,82334,59285,36032,4296,59801,1611,7000,18828,53237,70591,52985,77894,63616,73981,83455,688,69219,38782,68320,93264,55936,36213,21758,34778,16867,8590,66697,62581,89108,8985,45324,45470,69324,8092,15797,52472,26910,608,26005,65654,6603,52976,6147,73275,75924,17612,23178,58791,48948,97237,11453,20907,57571,16725,125,69195,55788,20365,6672,36788,25023,79482,92356,64035,28989,51575,71093,54788,87528,9505,85800,68332,8357,69843,42199,87038,93368,19332,10754,56689,74968,12819,94831,99071,7551,70204,12635,42411,4124,2226,3230,73548,52652,81139,62830,71171,29180,86134,55225,79517,52449,93275,53609,8207,31859,63105,95593,45114,58440,67699,63761,25114,55854,43457,34101,30449,89676,65150,7577,43107,29954,30494,92470,54798,16933,45261,47577,75057,30666,22223,99684,79664,42313,47749,65967,36634,63831,96405,50873,43452,17210,45024,32429,53675,22052,59114,38037,74129,11086,63551,69825,98959,6261,1191,53454,3684,81194,57977,23756,2380,81614,22620,36767,77363,58991,74741,12065,40834,98493,27360,6729,94700,94997,59552,60152,76841,6016,13113,27899,22644,82447,69861,88047,30355,67736,48244,34899,9555,79490,54842,84461,71133,54091,7892,79894,8135,10352,10399,87252,49550,37623,18798,79172,83498,72381,25140,96919,43719,67544,68842,49804,57419,84083,28441,77428,16915,41778,22258,57579,20775,16733,47340,68994,64690,81126,38485,64224,7785,75888,87545,82143,1875,27611,83324,21851,9795,13525,94323,40082,63443,47358,89508,13073,34658,28948,517,17346,96183,80361,19553,68764,69821,40760,7264,60280,58316,24729,76845,31385,12021,78976,66095,25998,33994,20312,38424,27155,27251,76355,55679,3117,29450,33283,69133,7761,91340,48798,27693,41544,8226,71806,67955,17384,71130,35792,87880,43895,32127,9878,94923,91011,7447,25557,52211,40686,56331,46997,96987,8610,28293,66711,3674,69845,74110,11308,21188,40318,34362,24696,10258,22230,32458,75685,85336,10351,50571,95839,2794,58091,42490,73422,39643,24001,15134,86816,68938,16813,86787,42519,59777,13909,48730,71235,11754,93750,14928,50733,24332,99013,34788,76877,58427,72163,26702,92063,58697,18704,20214,7418,42320,98690,45510,62460,49316,42,69818,93558,29843,67814,16669,5488,82067,6486,8064,83664,96974,51140,18805,44073,54657,19637,8868,84594,80416,77421,31768,18969,43089,72703,52363,84973,90868,1328,29293,85489,17280,78042,95146,76237,81398,32072,17164,80499,86550,50558,3427,31896,49021,80138,51381,77469,55689,211,25661,38052,24786,74204,58967,75252,79985,36003,39998,60732,90828,33382,32961,46045,33803,47330,1835,25437,2344,85832,6955,46582,21143,12034,45287,15482,23438,13983,25743,36230,73518,29756,2189,92472,27915,27002,49729,60465,67167,32442,53879,60967,48518,69074,44894,26704,87868,74839,9069,68262,14224,14190,8875,36169,62238,43018,47373,75353,29761,3137,48359,14621,18058,45663,70700,10322,50751,17263,77077,68268,45754,70028,21928,69966,54146,29727,96380,14826,51848,73489,52381,35356,20569,63719,82023,51005,6711,65350,19452,36603,80533,83987,98346,38715,5552,90981,17603,99753,98581,18538,46740,43763,32800,96465,59843,53076,16002,18602,44975,57343,92892,16765,17449,53091,93138,59973,11470,63370,48223,11765,17291,39900,77746,19270,56505,66783,19622,68725,9932,50850,85876,45428,29809,81946,84233,97813,23961,17936,6749,72154,17876,29747,46403,86606,72346,44796,27053,63447,70100,12833,99032,55319,75086,74313,67892,86690,80868,41674,30905,92553,14541,64038,2202,81327,61306,13661,78678,36481,31238,72553,50356,11684,94377,50290,72635,19730,95718,76974,71850,62626,83936,18197,62045,67857,98174,42314,52647,60943,16841,86423,1098,28674,91847,70030,14460,51265,95016,68750,153,22222,17027,47191,73563,88760,7508,91592,26362,1323,64939,7849,69009,98129,61354,96285,73845,28010,13531,7528,38064,43425,99873,41580,65890,20763,92422,26367,39588,70488,12086,78989,85204,5264,52755,69882,18717,51361,74826,41479,32499,71500,12141,56985,14361,71864,15548,41744,15698,57387,10245,94028,88700,30236,6503,60192,14904,49451,9397,2975,92835,84474,91631,28846,2471,41598,2604,44673,19282,36910,58873,80445,28200,93129,97043,52664,14800,13468,92899,24163,36151,26341,30257,5294,45637,8729,39023,30757,98614,81514,28574,48788,39424,96961,3277,52056,3048,39096,14002,13752,76102,46113,5593,10776,9564,37133,67067,68375,9024,81880,60139,22711,47985,32259,2886,58281,63190,54973,52601,29358,19941,27077,2276,32287,93045,4215,48890,96144,83548,29227,85183,4376,26065,84298,88343,80193,77846,70450,82725,21440,25610,88734,8419,26284,78483,59926,23163,84229,82360,13606,58761,24512,39139,34128,23086,321,30365,85908,41783,8789,22067,51328,31173,84190,94479,97335,49301,94717,93416,69724,99171,68029,62501,62514,58598,90106,22590,42820,22802,43332,80705,55843,26802,67587,62210,82290,57602,50241,6252,91015,33157,12246,75410,7827,62168,66173,9242,57316,48835,70539,28221,66535,16840,65662,69146,64677,8671,30305,83556,11042,43192,54641,24583,61771,65830,92192,74051,14059,72451,21554,9563,51448,36299,99426,86565,83097,64024,35052,74904,62731,48026,6390,12831,27287,95894,49141,69454,8106,49334,37099,52078,55567,66618,50843,97002,22817,6330,20198,21881,40578,31919,17679,82400,76500,90231,77161,28863,88935,5842,44552,10626,20886,68188,70398,22544,77016,8841,95063,85677,69998,60077,72373,21571,84686,76139,38853,79497,92118,26681,15070,33634,82921,72848,6780,20393,21254,88614,24538,54414,51978,23020,82461,91690,80917,94280,85297,74188,44946,96415,4464,99440,27038,27042,72660,84613,12980,18666,18353,72906,58917,46305,18225,64151,98736,25861,28953,29553,16746,61346,21171,5682,4132,35105,41868,59231,84845,71002,35991,1936,78930,70734,67821,86893,87031,97709,70752,76857,54916,52925,16690,81839,2360,83338,96401,79,74992,89475,80013,83531,22631,42344,86647,65146,79295,83453,98237,53693,5652,62417,39358,52333,76066,70642,31867,17171,2135,88589,31045,86490,60680,57506,37325,37612,90337,55208,94032,39599,41976,95119,65277,49993,72741,48338,2324,20678,78505,24437,53379,87367,34151,85697,13027,52754,58023,72633,23584,91243,67098,90597,3246,57309,29400,62928,49551,65345,75141,35108,60651,52338,57059,8029,65120,14110,64027,9886,87941,38249,38394,30758,49616,27294,72691,52343,64824,31539,90989,99252,60142,27588,3263,56541,90560,16784,37282,15476,15180,61102,1020,40986,37055,65218,34830,90318,57730,38902,23008,11260,92138,47508,76424,76051,2798,73850,78797,92322,73069,13130,49891,4996,29140,53698,28012,24358,5001,12590,58845,3284,63613,28896,94980,34200,89220,20061,53264,88281,94226,12792,73817,42766,73262,9107,19350,90314,55344,1094,94942,21958,50272,58586,23392,83688,96387,88001,43081,29337,22651,48986,59364,98525,88254,13092,50309,16788,55054,22677,62100,81334,91228,62176,72546,76096,96191,47204,45327,63255,45435,26987,75228,6174,94347,61137,62288,13668,2271,63585,8343,20160,77605,88440,80797,25266,9774,51459,99245,1271,21037,65717,35573,54053,33874,18113,17760,16532,17504,86330,68833,38232,68654,85869,46915,12249,46245,8527,52876,5094,81452,46367,61639,88022,53744,77964,88276,85888,57803,16949,12695,26144,72886,59961,74965,82085,97991,86255,14184,53669,41237,77282,48533,47598,55651,55247,93997,97382,87117,85301,94220,3937,30416,13877,28197,23344,4716,50081,42621,36897,77886,86474,20035,21852,83489,46133,10471,83314,52859,95453,1586,16316,21688,30799,5901,42165,24496,69600,95111,63436,8196,58954,27470,5332,43928,36749,4403,68741,54506,90039,30928,77826,65819,64984,41460,1647,1237,76688,48119,52246,71805,6126,53578,19446,26094,97608,33186,19320,76470,16844,58817,17832,64532,64612,43566,47316,27025,37225,50908,79852,24300,84565,66793,80493,48861,7384,90047,79338,21812,30065,19142,5145,79075,37675,3111,77864,95846,81895,37538,75536,72486,27451,84072,31307,45197,23423,15485,22489,79707,65318,42353,78534,40155,91029,7699,80029,80551,60003,4921,41949,62940,7141,13260,81878,49545,72473,10358,37767,76448,86263,20994,66363,70105,7898,15542,23215,27051,71902,9193,69035,16380,40663,19419,6745,20633,66482,28649,23444,30509,79066,89306,5185,33144,82376,29199,47727,15138,89552,31368,83483,42924,37363,890,3778,62016,37378,23081,27465,84782,13039,44089,70258,78278,91491,13775,72337,66066,33844,67949,22891,1716,134,93170,53974,194,80828,57225,19615,86941,99491,99021,21802,88321,96461,28196,83755,24261,90449,75242,44435,11976,62771,22453,71668,29015,81856,91142,62524,18209,15058,54065,17687,52738,85241,83085,79074,52156,65435,24686,18239,9274,42773,55001,70486,74866,59443,8165,39706,61389,22252,58712,37853,32877,57058,38574,15446,52992,95648,10896,92027,53705,6127,35714,82635,76943,5661,3371,34406,61078,64132,21956,82504,14254,51221,6712,82661,5302,69402,63404,884,882,19493,21797,84031,84959,12553,24746,4852,77101,78905,72693,54686,40829,80621,96744,32190,77009,88051,97849,59351,81679,97097,1621,47651,86713,97594,7882,4567,62592,98989,92233,57584,49240,9148,75044,32791,37606,16997,64114,25593,35862,27965,35807,51805,43033,54272,15681,95451,4395,11440,89159,61482,52394,64671,12838,31191,24878,70560,42404,61522,41548,44914,13287,52414,10397,39462,50050,84505,63357,92486,14099,87597,68149,91102,61987,93188,84831,59484,76533,23941,4486,88896,78999,50959,92466,7936,3386,16900,12855,13588,4801,17930,61469,66751,69659,447,92078,45980,99017,21011,24476,27968,18630,18404,29159,78014,17104,90111,4524,54225,5341,70135,41448,99034,21194,40164,20225,70903,38435,88181,57511,48411,47509,89589,41549,51697,6013,92419,63778,41939,79269,2191,63650,5217,59497,75260,49070,81159,45765,54320,75655,61465,66461,53045,28448,24879,37242,6979,73692,59730,77145,32387,89233,63865,94837,25493,36503,53924,58888,66821,63968,29211,94437,84544,53766,84566,86052,1743,20308,29571,87985,76267,23223,35678,90355,25942,17410,11544,34195,67602,2720,7814,14233,45908,12262,32322,1798,51921,72534,18350,43753,68056,15244,87205,29670,68457,67795,39300,34281,74608,8212,14138,54147,63162,6245,64282,49527,97319,29496,78100,66404,24209,84668,45193,77712,63835,5318,80194,97621,3703,96306,78101,1279,82065,22860,918,41998,13688,85055,43155,23432,31108,72407,60024,22850,83068,49145,65558,39287,27208,31232,41621,44536,38273,35150,52230,31110,17275,90171,37544,20250,74065,85823,85985,70270,14935,18229,5645,11992,81430,40024,90629,16707,36283,82185,32267,69592,42229,68713,69161,41126,13484,12435,20583,13041,16223,31715,83142,33576,88065,61167,43080,82892,7509,40998,66132,61633,12224,82887,60861,39990,90326,47438,91500,8000,45599,41723,79898,24048,38493,47717,2212,72227,82064,75607,59891,16594,35616,37284,3811,80754,75504,91380,8763,39237,5226,76044,27142,19777,87393,31991,15561,75303,94189,94162,57379,24756,95977,4895,30703,68032,21450,20911,57642,86513,36167,45712,20804,29501,22724,35596,81569,26001,97014,68970,24340,57118,89964,91450,44818,3403,93402,56647,32843,88334,82779,77526,43303,70519,46698,36646,74745,19952,41405,93314,92319,38688,96092,11526,12799,10446,70604,34842,76406,93024,98240,94402,20903,51464,17021,57471,5860,41604,48586,37745,4017,96172,68338,98737,30245,7789,2129,87890,87720,90407,51011,1542,31031,58212,57441,66350,67562,55933,81785,79010,16292,37844,7269,75692,46463,29183,6596,96231,15670,41015,87000,53656,33212,6263,96040,11807,19501,79618,6406,22116,53663,73279,81984,99033,52842,83870,89065,54782,99707,95702,79972,20981,8988,60619,76238,69062,60040,46451,195,16432,20176,73237,54632,25088,31840,19435,72391,35734,4683,82782,94681,4739,32579,2529,58156,85880,37125,94721,90532,83975,92423,18718,38269,14689,77850,16972,70566,34750,3814,85187,47197,16843,27137,8769,77293,22605,79333,12797,30965,89520,59335,25399,64386,42180,61120,86303,86781,62937,21463,10084,33991,45491,25750,22139,64130,68392,60576,10493,53116,97028,59851,13399,67592,55717,53832,92308,1834,77392,12807,58100,61472,15762,31085,44029,98963,94227,92510,75338,88008,59442,72750,95897,86694,59367,76952,28532,68263,61636,86139,91219,24506,7391,75094,15632,35583,84347,7464,98469,23744,27781,83749,52346,459,82768,74104,82629,59578,91737,5620,24827,13086,60790,87230,80296,95437,51606,61186,99051,71809,41226,74125,38844,39414,91713,98112,88491,65872,87385,91087,64806,2111,14012,15751,64294,41722,95041,17156,64439,11254,22042,89501,10233,30740,99182,60245,49822,74933,68450,27115,29692,68712,11570,13228,19095,36610,40883,12885,90415,39282,37471,94515,75430,64086,45806,27255,66809,14545,74923,18531,90880,89507,33048,78904,90761,41917,88708,16711,72726,99296,19913,12279,15950,58969,12586,33595,97713,49246,87129,21397,95138,35531,95825,27176,3416,42160,81020,97974,61339,58639,38958,7048,86491,31278,82038,90921,8580,74804,64119,87240,36208,61550,18181,7797,8198,39137,71728,76434,31815,75310,78528,53830,75944,84771,13564,91521,53251,66240,47193,1172,24444,13754,38421,29330,284,52403,89204,63260,92602,10171,64654,30778,78814,37679,6723,86584,35069,68716,98033,63446,76664,20807,30094,50638,67647,56782,58935,84515,11752,9035,676,1983,47933,93134,81773,59812,55590,20437,97517,40300,22746,54806,13932,14854,4577,29190,33894,77976,70791,92893,63945,81153,5440,52987,5399,99901,19039,45115,55473,30396,3101,50684,32092,20302,95336,27766,39401,29646,18383,23641,51924,51472,28144,94156,60304,36164,54785,88059,22624,96602,89164,76480,54084,63145,31793,57474,87905,92748,26919,60369,66178,1601,8599,42397,84652,97308,87090,10600,15045,80114,84122,21924,99306,82212,89720,48761,50848,23421,51275,21083,30388,5263,58011,92350,37254,52819,18102,44181,19567,13142,23384,1895,54794,37301,69841,27076,25174,12877,84970,88487,42183,21367,29784,95429,53401,41743,62994,72924,56051,34257,96067,8716,95044,86375,51262,56113,75725,20354,68685,30970,60187,44304,65757,63462,97612,43430,16120,11395,10630,70445,75815,86842,90305,28557,36574,3237,86399,94173,59893,70379,63687,81281,87174,70662,29759,10612,84479,53616,30796,52365,8986,13292,8655,97314,67832,26225,7449,75064,53216,46538,12137,41736,52229,66484,31174,88824,65498,25692,59542,19370,12959,86401,12889,75837,41560,29458,17637,31537,11653,22510,3700,41472,46819,67651,50522,47073,8735,90108,9798,33462,42091,8009,39011,18748,34763,57871,54213,17510,3488,71279,13733,97946,22468,93120,44032,77128,66792,31088,84708,21078,92600,31828,83138,52887,66557,40975,22432,11953,65364,74050,4252,32705,59465,76637,2127,31338,78703,53465,49360,89966,36181,29893,61313,94390,70534,20511,3530,91651,66057,49573,78636,69202,17209,47575,45856,54007,3180,47490,23897,10698,76560,91761,42897,24180,24534,76293,39136,96317,23473,86564,65214,54568,68493,85353,10077,31624,74340,78796,10648,2175,79679,46940,26457,92408,56209,80586,82265,27567,39296,32283,64692,26946,39362,42673,83140,17608,33245,52571,42926,98486,71354,43963,27726,89460,74709,94062,20848,12376,34758,78506,61976,46106,56032,96954,1455,71793,8186,59343,41491,37938,1118,60518,43817,89081,99338,74607,87719,93054,33543,97115,45644,69375,42527,74350,976,98022,95604,79547,47269,25795,48558,6706,28062,91989,23012,90956,55820,615,61150,78446,58117,83081,59584,48102,74207,25638,11783,95148,57122,11852,78842,22729,31892,88878,10654,31673,92281,20165,9241,8012,55146,27906,6265,89729,22827,44188,77047,83610,96877,25971,29397,84370,37731,84868,41894,16591,37698,41262,86748,97925,8427,38861,1168,54793,16236,34773,8792,41837,59976,27250,29263,84195,87154,55474,91183,34521,39718,76910,65161,53926,86909,38809,38380,97729,46384,34714,24580,12353,94003,52368,8886,59675,3626,4430,21317,51641,63065,59875,55140,18711,99863,66834,52705,7059,18109,28503,74951,15913,25685,99543,30461,18156,40392,66630,15771,727,64355,56343,91969,88545,44759,21434,3636,39770,45349,77074,61440,25484,14072,34700,99135,15522,77011,60405,75266,32939,66290,84484,70411,85684,30684,56613,69730,39982,71295,31525,82652,49051,3762,7127,34090,21270,65938,86566,61369,5079,28299,43185,48672,5490,26400,79380,26488,49172,38583,23231,1243,74094,25609,69527,42237,22079,81358,66579,20278,69370,45527,38480,12581,69744,46902,6531,20132,47364,27171,7172,7692,77838,62409,83496,56244,13620,41925,78289,75750,929,59918,9299,55488,46488,42894,5701,90537,72826,77129,94306,29517,71650,94684,97110,1439,89359,53257,76205,41982,97863,30393,66613,26219,90222,58805,6237,67383,50860,24623,99878,37336,17532,13740,8007,87388,81937,96145,25017,6629,29529,56061,29955,1498,59596,38759,2393,28546,27515,93851,43514,92780,461,16051,25650,66496,60975,53978,78490,98700,59242,56322,76338,15024,24034,69080,45207,27643,86572,34070,16518,3220,2721,5868,26676,32687,35650,65691,68381,82545,37653,148,12924,36428,37404,58006,87702,97947,38117,7463,89244,28178,2856,13223,24411,27001,17829,95729,98710,60153,7251,22465,49195,27878,89287,67055,22286,34967,75498,64480,62243,30064,66327,65916,47136,45023,92669,24617,25329,75463,15889,53710,3868,13914,13855,77008,86470,36688,69525,58843,43537,91731,6494,76419,75757,97348,57843,51405,9865,9926,84615,1347,26534,90041,50851,71535,69448,18483,43971,19013,63699,77801,39972,84650,9460,90904,4932,35225,46347,64798,7149,50758,28573,39930,23196,3247,16355,56398,91445,41137,12302,16607,49723,62712,17481,68021,53887,53190,91457,63891,90777,52202,47412,51567,8711,87250,18392,16473,28776,23250,67905,26591,86262,65852,65313,47031,99010,44324,45973,5749,59164,10295,89321,87753,99916,66837,39657,78114,4260,39735,70164,70208,71321,55327,49625,54488,31370,33787,78870,49854,77726,11405,64368,96662,80156,17254,23408,71888,66648,47633,40542,75987,65235,44603,42789,71934,57697,18613,74031,99600,74260,57466,79788,31334,74405,90209,72420,88290,54592,90264,54003,78353,84364,39767,47521,1500,54670,55289,42462,15063,9537,24859,770,49122,25537,24709,67938,32108,13392,39854,69676,82437,96962,10144,15125,75561,1176,13594,79278,17463,18208,73760,84013,7445,95113,82112,64852,30380,16677,49704,87071,98300,61904,60938,19748,78155,453,72199,90814,87055,46664,43582,84827,52701,35036,81227,99979,923,92697,11578,31702,7722,17559,25864,96574,35477,24418,74752,36941,78428,59597,19981,75904,7732,26396,55360,16874,14740,84753,71583,57868,58247,52828,7124,31989,58643,31720,17767,83360,23492,33441,53394,78468,42247,31805,52405,71812,78088,42830,72605,27381,3221,26270,35879,8394,15748,46393,53897,97082,79595,14055,80520,38087,39483,99376,63359,72710,2893,91658,524,36512,97310,72306,77070,33608,66593,27551,95262,84125,57440,4396,91235,97119,49505,78427,96079,92897,75828,18391,29031,11099,30265,51443,42268,47036,32518,92310,83351,27642,20780,35779,46269,29922,96523,2764,11994,16244,75014,62386,48596,74337,65358,51066,12117,32964,54763,15146,84057,68898,58045,17682,81630,8471,83429,12365,45956,80603,35627,88724,67853,23340,44319,506,50643,4361,95290,46974,70187,39944,52489,84133,74198,15833,49794,56130,52223,92598,37574,87284,21541,80316,70215,49474,90605,4123,10363,88532,65036,66976,49808,22132,45484,47953,58120,78847,32901,44828,70962,53285,61829,555,4420,49417,25215,11252,80889,94254,57870,82415,30347,56971,21801,69186,85054,71533,59629,85164,95141,38107,19087,64576,60834,93586,60275,96697,5124,94787,97092,42038,27231,74161,88096,28928,33424,13423,5091,33206,50325,80071,30539,47954,59881,97311,90695,14620,78769,54627,50546,51266,86992,71615,67317,59849,65544,94829,77769,43440,52795,68631,25256,22559,66508,75927,24838,42980,92412,2014,86083,77175,55681,74277,65631,71442,78958,57333,56923,61928,50450,3487,77254,28101,44896,27436,51408,8221,10745,47502,66862,6961,87728,75161,51358,12011,88165,15641,58210,27418,22169,5773,1859,65020,9449,97177,20178,95561,3710,29260,82906,43980,90810,78936,85250,27302,34831,39395,34772,68755,26903,375,34872,10663,40086,60173,15604,92513,96495,11715,35746,13098,66486,36005,54037,3978,68924,93848,69215,52459,40367,92387,703,4503,50728,82586,75045,82148,52611,85628,49243,42672,83690,15291,2567,80839,65495,93764,62136,99803,55454,20188,55370,59500,58524,87879,97477,47407,81604,8167,13427,92810,2867,51202,15287,96753,39097,11551,39885,82765,34655,76694,64172,90284,11052,19322,1443,69642,12267,36398,83478,97507,2587,50262,99294,42233,16321,63838,70543,13603,29940,59563,72059,28490,85124,37525,46522,95350,96652,62248,50379,1805,17376,54509,80110,98638,89819,45634,15867,59838,96931,80804,44429,80670,11644,56444,29235,89559,92484,48135,57538,62031,12387,71229,31789,81502,2714,60360,2370,83937,17584,82626,99564,86901,98800,29504,39815,18059,17506,95025,94628,23831,64435,23450,81861,55616,63971,67023,89678,88359,92891,86374,31880,63520,82603,96513,30620,12217,4465,35851,67900,68927,72982,69481,79777,308,76573,70990,98123,9104,1358,79514,79772,18238,97282,75118,73443,54059,3789,39746,62751,14674,64685,45597,39472,96738,92525,77587,96206,68120,75405,92902,59809,62332,35299,28596,45188,76311,97215,55098,43550,96631,70821,99142,87709,38214,60111,36459,13319,45004,8249,31259,60910,98547,45949,76121,13751,61883,92975,39957,2826,38592,83508,80772,9596,39610,93697,26334,13854,80174,85606,51163,29827,49683,49448,91421,64377,86629,40728,60791,40410,51254,12800,76884,91791,86560,71204,39853,81345,93724,22018,68361,54501,16791,27582,72867,75829,95508,42750,77859,6973,54006,93148,74223,89236,19509,66919,91843,60758,79329,48883,87,48113,8744,23703,47980,24275,68933,642,19334,35747,37881,42978,75004,16308,40621,35198,15064,87043,89154,70835,26008,34474,13928,28720,15713,9955,48628,67868,19520,46639,19543,69524,35061,44769,36972,77484,17748,53013,13285,88591,6762,78881,87627,60635,56083,39171,59451,25954,56206,80303,39927,65351,90506,51209,63216,5251,43109,57355,76853,98793,30358,27859,19673,10301,67571,17856,93541,47061,3541,98675,91248,73905,98027,2431,54393,85562,36907,84716,17712,99226,99369,34974,43176,44496,96385,59286,41646,74637,97660,68681,6474,297,51555,60391,43576,21761,91749,2774,6133,31318,69480,30685,28493,47335,24834,32228,24276,8706,74853,72164,4980,42869,33773,91386,9082,53416,17215,48994,13208,9884,63430,13205,58932,173,14681,78440,4099,20576,14181,61230,64464,25571,39292,80492,92231,4401,55857,6418,19950,35117,98437,57117,1913,22092,58960,2778,79138,36345,12599,58557,96139,36526,28337,59537,52798,50672,55398,80549,14847,72742,51435,54270,16142,70989,9221,59645,10196,73485,34444,83683,87603,86344,47008,879,55363,68351,49453,10339,43972,93040,53441,59199,42758,15116,93880,61996,36865,71516,96027,51981,57635,13646,35363,62272,79199,42995,9477,45666,311,44312,37692,41055,9529,13900,45322,45640,55927,17046,96593,36531,59568,47652,15219,24233,38589,85615,26670,36872,91568,77472,39969,21112,80512,29606,15487,51481,72600,44738,1844,89850,44042,49906,97241,45087,82111,11481,94967,96366,86961,64421,93827,85943,69237,65722,73652,32026,83544,69637,51973,67705,26086,92691,46017,93087,47981,89186,68884,3641,64087,6891,36056,23419,39083,7223,64988,58706,1478,6587,70806,75058,92209,14667,64037,79636,71873,78609,52196,15162,58739,55638,86731,92570,41994,54507,10555,88850,57216,23292,65014,52297,67567,37528,31495,69929,89404,43862,42164,34694,200,93610,15573,90913,31432,96428,51241,12907,93241,29157,3037,92956,53888,86224,68709,69451,37276,97342,85084,98320,51605,70303,49718,65266,11088,42856,68586,20246,93590,53737,56868,94927,30541,5523,72430,25802,79787,98797,16009,15074,39719,29307,64898,40696,12345,39387,82385,1957,20706,80672,88640,47048,92759,9475,61674,39415,22635,12726,12736,43713,81082,13486,56138,91066,58307,2609,61910,63324,58736,90502,44424,17016,63560,93225,46708,65604,37248,15557,18803,49165,27257,45707,30937,14690,3409,97596,58961,29731,77502,91962,68422,89320,49572,56535,20937,75387,8228,4917,68195,73077,16048,95998,17270,50909,23427,99122,737,54189,31505,25345,62671,68485,4298,42304,90472,66267,49567,47163,76601,60811,74386,33662,53676,63057,59061,69388,65880,45178,82285,70301,34803,81766,78943,47403,69373,39768,6131,32253,72843,93730,58467,24652,45405,87805,21130,91031,22153,13691,49183,32388,76929,90454,42915,95887,75143,44323,3484,40965,87517,62480,52881,34351,87085,49409,86552,29362,19083,437,5306,2492,644,36605,4447,417,37071,4889,79528,90091,43949,40360,84754,28302,1771,95000,95247,11110,54560,49563,68674,92081,86555,13356,57198,95619,37343,56250,39830,34367,74248,7237,70690,13599,85627,32561,72700,32944,60589,52483,56642,71923,70003,3563,11808,7682,3630,41884,1705,6251,23411,21286,87054,36938,60838,46046,70647,88195,55774,82620,29364,90134,1457,91358,10008,49900,43962,84011,3615,47389,6898,12182,2832,77533,52372,73120,81600,23104,69898,3490,61462,89775,10549,83701,59303,94118,97201,21331,76068,48670,48168,86186,92403,12938,60914,33328,56565,12108,74757,18941,94630,10420,97423,99672,44111,60784,97951,38885,11525,7921,12250,30572,34368,20992,90308,66208,98322,31013,24145,59143,38628,31745,29558,77222,90831,15493,75489,97852,62909,90905,22184,8428,38029,23618,40599,46012,27662,75850,97853,78937,52604,13284,92512,66993,41166,11465,94775,66787,15988,59652,94087,44479,12702,59333,26415,92517,16481,71854,66085,56476,20866,22130,76319,65885,97020,86244,33486,89656,24245,18124,53020,99300,73133,65798,68267,66428,61571,56781,83518,76909,50444,85903,35525,87644,23915,46219,28389,30712,28654,90730,93873,99700,28862,10036,39824,59912,71977,2523,11607,80972,41444,43129,23405,36018,93907,47103,18349,58125,43835,88843,53482,16536,9422,23017,95295,63417,46466,87981,52020,225,79626,83396,3377,59614,56888,45618,75116,91406,19597,46321,81212,95168,91305,42266,14422,68770,82245,81147,74111,58358,490,37978,18104,74024,90654,69745,74601,77083,90401,79068,75474,68971,72074,51033,87307,74915,4262,62992,1991,26338,80757,57912,4312,99036,10962,13402,26592,64300,34125,28240,29182,65492,73273,42139,93756,14205,99868,63029,58507,71970,12663,6162,21729,44954,42374,53271,51854,74941,49912,67074,128,46982,89240,16278,73697,98244,81320,99185,47984,48330,78381,68175,2201,69875,94926,79089,57858,5929,963,22429,81717,33558,73854,48360,4351,19504,24837,31849,43137,40675,41470,53348,57877,60977,93110,5774,70623,78674,26106,96453,46729,66219,62638,30097,32730,86110,45434,72472,21038,43460,6935,72191,57375,67911,74487,56658,23184,75917,73406,28777,40607,77132,48354,66805,6863,11927,42804,96579,89935,53885,5702,60597,53046,13345,74192,68222,79851,14347,80623,87120,69011,31337,75394,660,43814,73284,12651,69938,24744,94560,39992,61652,70233,46097,44816,21568,24446,1417,51773,41409,12002,56922,81285,87178,1634,50133,37414,55833,84210,12322,94204,18931,77147,71981,2711,83700,92476,41013,16836,92845,21834,16461,48984,19528,29937,99518,31791,4553,94526,30465,99652,2420,95849,48195,79646,67456,23861,8600,22981,61183,23875,81383,8086,817,28473,78361,6988,11985,88886,67554,27175,45710,75321,89588,95425,91480,9133,56507,60015,5278,19349,37245,7497,44692,27730,54029,88826,75332,63495,66258,3739,32194,39456,38295,55073,90544,63504,72591,25517,3587,88078,64533,35852,28255,99367,71428,70932,71857,99712,24311,47179,50304,440,26682,68790,61461,75919,81459,79078,9963,28111,17498,85194,82557,68698,52497,42145,31627,68874,96360,60202,60062,94033,5850,70295,97234,54460,26242,19868,98117,64204,81953,90916,51517,80849,2623,10976,73208,73701,12503,79107,48735,34960,53996,90768,11198,77731,61776,57074,69860,74033,29512,81335,97999,96357,24020,50726,98731,57049,90061,49352,31651,47446,1665,35786,49477,7689,44874,87598,3656,66743,17883,47014,76589,10138,20153,93655,31904,64106,12133,46577,32060,28022,93037,1463,62402,73404,79086,52518,91745,76447,56141,25104,11410,76046,20863,25317,84854,98388,51491,95629,99444,65462,40267,10586,4357,77,43136,43058,99850,37408,87569,97734,30479,41887,71319,85031,74927,58437,47473,95057,39838,43519,90195,38650,71771,51946,43074,5446,64505,83003,23198,10266,68839,98048,53613,29179,33324,21327,70970,15360,704,55002,15204,36448,18671,79505,66952,5730,94167,93878,82412,43120,74301,14749,27289,66462,47251,70104,38507,86484,84004,21155,28088,68691,59625,66945,41391,72060,70136,38318,25775,55192,49073,60136,52853,49795,47137,48927,54712,73033,80503,14638,80106,81386,91817,98811,1555,73952,83386,48295,3311,21418,53137,97501,84238,46010,98701,72692,80920,24792,27746,62584,41261,79762,80873,40830,26044,9458,14685,67382,50013,79748,56685,88085,99930,58099,24089,29669,66268,68492,20036,21569,49675,32416,4173,88592,28927,19070,49333,74664,24752,89765,38915,59014,85463,97451,69936,34719,82954,2044,36696,89803,99917,47593,73773,24502,47454,94311,24122,88256,87806,84788,5366,90074,34545,80879,92586,66868,2369,85535,52539,46837,22337,60248,40527,26787,52248,61563,71653,82411,71614,90218,83745,38572,43031,96118,81354,61717,55855,38871,33307,59369,74949,26423,44576,27265,32353,29767,36753,29146,53831,41757,35789,39065,32281,17240,31806,60419,78504,5414,57698,27048,886,18469,52021,12389,64826,97575,51207,16168,30573,85864,91885,75629,50825,97772,1752,79244,55329,76137,50965,60590,4813,89838,42310,14309,64255,67266,81097,45332,37397,20894,54296,89086,6032,6427,32116,67087,50722,53172,3453,50074,22161,58418,12763,76131,23619,35376,51442,6051,85358,50083,15100,18172,16942,30667,22847,5032,81921,23898,96882,48885,90825,5962,26989,97675,1723,5576,92611,9835,88516,61025,66857,80203,46469,22853,77590,70577,95430,21024,41238,38122,99833,5442,97141,87166,19510,9243,28472,72176,46237,78434,38241,4377,51287,45294,36914,72289,6425,54666,43308,25239,67970,59633,41993,29250,76385,14221,22347,89099,66578,61260,83934,99303,35233,15810,23691,36913,5877,64571,85068,98350,64574,73080,44183,95742,82679,89821,72278,35298,72550,57025,23065,54185,16211,1574,31666,59903,32888,62155,1940,40651,16850,35790,93879,63154,3154,68642,73881,13742,77024,67439,72508,97692,65097,82871,80490,29516,95153,54227,59689,496,5476,79430,11275,14714,96113,67079,35536,49418,23268,5961,24139,36871,43301,87835,11063,24484,42930,92997,51612,42669,24646,23207,22190,80584,84648,38151,99144,9566,49408,38410,22196,13893,3316,5627,51799,92159,66963,5477,68899,35252,88746,53701,62390,41171,30252,59692,42322,82216,21779,15629,69136,17323,24809,25600,84369,35176,11508,18371,23182,19519,14637,54727,54100,97018,799,58321,81916,67275,53571,46996,26433,70549,71182,77212,64331,79353,4743,90255,24214,54177,45412,67108,94264,73705,21932,50342,73464,62058,69424,33672,95666,53490,83823,69729,48200,21296,84579,67921,55011,87883,58673,53309,93574,70487,25453,33808,77462,87450,25129,71451,22667,10934,48318,7716,12243,7134,221,653,55064,59805,82570,83257,67096,59325,4508,67465,7152,36421,93328,56306,44145,59202,40489,27509,79384,87408,92963,75717,29665,99726,16934,81580,3003,77553,56820,58078,24004,62044,76093,51452,41719,35335,48928,54499,93521,91929,23458,86563,41762,89654,93917,24970,22589,97682,70944,61860,55200,35974,66174,80907,45869,34895,13864,75418,25236,21544,82091,62634,19116,77628,38494,14810,63340,35447,59312,89323,35874,1902,10395,24014,97088,24017,68705,63153,42562,9416,13528,73057,75167,43479,18665,3760,40427,76835,22285,6018,58475,27651,68294,55658,68112,49774,73516,12157,34520,31842,80707,2041,62328,34048,69270,83023,70083,98224,58520,44991,19487,65914,88877,72698,42154,14676,66170,29850,20620,96883,2862,92180,77717,84246,43414,66814,42619,66800,90609,22088,62696,33661,44159,95155,662,3370,42511,80622,26923,17569,76838,80721,79987,61444,57667,77909,60290,77414,32739,3957,10177,53909,10636,23602,60230,22327,32636,41676,8824,5684,79557,11920,57053,14075,84027,52307,22452,87341,51155,16401,10995,37235,67041,99666,5246,14203,46059,48963,53726,83514,59402,3431,73738,55837,45173,81255,71288,40482,85644,94862,64864,35881,26954,62084,28997,69015,33912,9637,27546,35300,54979,8800,74914,11933,34841,71961,8996,59264,70426,39951,8281,92363,37457,77602,93740,34744,27792,41247,89015,81014,84971,69760,85757,23632,75309,81004,43054,59687,90025,73955,77760,43849,2259,98686,78886,18474,80180,71633,69562,94732,88541,56278,97898,33924,6011,63555,61868,29627,52685,10181,92751,7205,1308,56301,75409,39230,43644,67168,6809,33670,97306,8827,30291,23949,23484,70567,99551,71717,62019,55874,33288,43825,63379,5533,40585,79367,43071,79360,29466,91440,93859,6161,55177,93694,1597,59102,73178,37056,81538,11743,25924,9167,34110,4926,27305,70805,51356,98588,36684,4363,21118,3270,56025,24550,54120,6782,70190,8715,39804,21392,12927,13837,77073,46509,46252,2665,25461,31699,10595,60678,5338,89259,49295,64219,55113,83928,84119,11510,13139,58893,5915,48322,78507,25153,80988,51995,2241,80649,23985,58192,48999,83624,17117,92881,97810,74773,49514,80367,5316,23843,36075,3317,65276,67327,83298,65305,77681,94465,11589,74854,82389,43934,79119,3540,21813,63605,16859,85275,13741,67414,15102,38280,64563,13802,80912,5926,70652,3190,68513,46399,89447,94939,73913,10145,20149,6282,15382,84280,91816,27815,23138,83339,18816,86582,19605,58263,40331,9013,63634,15372,5949,57330,33504,66370,6879,59346,53987,64536,16117,63219,11014,78918,10453,7157,18396,33285,13843,28643,72795,83189,58808,12647,50870,2547,29268,79364,71191,61400,27348,38578,36394,96189,13530,37935,79824,59739,72331,26163,79098,34835,33330,70392,87110,45821,47024,39664,20379,32329,33810,6006,71035,49618,31218,64060,60979,59184,31128,42281,26360,75117,11061,31415,37797,49711,71303,16506,35776,86718,67434,44809,82798,66776,80298,91124,52303,55564,98773,91767,45790,30138,90529,21096,84340,32927,55799,50346,4900,99725,88645,99178,52594,69456,68823,63670,99514,55549,61806,40566,67608,55101,11416,72803,98881,28859,36451,34705,93819,88585,90101,2749,35558,8168,18438,23754,32239,76304,57125,19837,75867,64691,58317,23731,80633,31443,96088,80122,2248,76912,66686,10133,27879,15576,82966,70928,69244,12047,84041,90800,39060,1605,53381,78598,15708,13904,80099,23243,38415,14704,95467,52615,4322,31774,27222,53886,26793,15212,48257,65881,45264,45778,41212,56932,43922,15724,85866,53277,55131,55199,45561,8983,2451,38766,21736,24113,31907,7254,47595,68991,53815,32022,95068,41046,67819,36360,89331,99986,97385,11828,18412,63758,45282,76281,49336,53158,47791,91194,42692,50794,22186,39087,71374,725,55265,27831,8045,94660,7367,26184,72001,11287,57324,51571,62456,92366,55407,29865,24845,6648,67968,63030,65837,75258,73805,49898,81177,66608,56207,44832,53378,36714,57960,53640,83103,40373,61335,14023,68014,96489,35716,27723,83033,36978,21057,66291,4471,31357,88944,84888,67004,48429,96167,14063,71482,25364,39844,78328,53125,97386,63264,8370,65035,29408,23239,17470,6099,72316,20350,43223,11639,42318,60172,17496,516,24142,11726,28578,61543,72780,75964,71198,96094,1440,78942,56182,17706,18777,76206,79492,55544,55342,78280,78984,70361,81113,76436,59180,98139,79478,56316,90633,20447,876,77524,39306,68047,39871,54715,86591,43364,37750,63390,30878,87208,82555,61844,93052,47015,7835,53479,8120,84836,69653,73983,16404,58714,10472,75234,73598,85741,41898,97511,37182,30092,96457,40301,17514,95137,54075,46021,33090,51561,23501,32357,19000,40699,47639,63480,35453,73474,98118,39819,32007,27937,47325,6926,60420,87612,59986,7081,62027,4208,17947,17749,58576,21097,79432,31171,81657,91357,90624,68728,53215,41022,42327,89275,13013,96053,91080,57455,80602,88634,38980,44407,76075,84696,37134,46840,71208,46345,28323,81624,41632,65805,9275,90488,64209,32749,93868,78094,81343,51598,95053,70824,46050,11278,32866,19328,73942,65221,38302,90926,38588,30273,74549,3323,44136,83905,79313,45846,54729,51586,72817,63804,41640,69772,39814,66565,16644,46129,1691,27310,32264,52730,27394,9830,5131,90967,30932,67294,86567,18524,12241,61327,59853,13152,51678,48218,26599,13639,77140,99289,84522,43683,96560,46111,7478,70424,39981,63836,46910,39762,15282,14653,36527,78097,31795,58580,44020,75497,86656,17632,91442,91331,90001,90249,66348,64472,48182,36091,38638,7547,52452,79511,2030,42046,97912,31410,77464,36329,99347,9302,85794,93783,63059,96214,52547,23002,46862,2285,59546,42230,32569,79905,99524,87797,65719,34827,66755,97560,71402,8670,61243,44450,10969,23347,51162,73182,74831,45759,83471,41005,93159,46225,14193,10524,1751,85758,61999,34717,48032,43257,51357,67350,6580,36863,86823,84645,4078,73414,81023,5836,84914,47720,65101,98259,33108,16352,18411,43553,68315,30206,25899,76083,46652,10113,36298,6554,39416,71866,87781,43598,81769,88587,85812,7238,2480,41511,1021,24678,71254,79197,88529,90518,69246,79323,71041,81173,80441,44196,56064,39283,64550,90275,1448,33936,23819,98896,4207,6194,4384,4723,21922,76757,5270,68851,50426,94375,39559,77665,3211,29350,59174,25499,87460,13280,21017,5538,11313,6698,77811,53776,85608,98732,14153,85801,30724,925,75439,89454,60475,77596,342,54629,75552,7281,15029,19249,36760,84247,54580,16102,68073,82978,35379,16790,35553,881,39344,51291,58939,28114,23266,50593,12648,9190,38914,19385,14849,2754,30843,73986,1281,51377,83588,81487,30142,18076,30198,85339,48591,53564,25631,38621,46928,26576,80724,1193,73494,71883,51908,30991,30515,9545,77954,89145,37462,99976,58088,84486,65792,87803,1068,20551,93166,94637,53764,41281,78249,5390,33550,94497,42554,80819,32731,26786,62073,61527,91573,53521,40823,3322,27322,75959,27778,26004,26554,64190,1838,95952,33349,83427,98972,55242,15725,65630,38449,26883,6479,24330,11163,151,95737,64012,11307,57220,5986,26333,50105,11015,16385,95888,59952,90754,72382,40706,25720,90841,43705,79504,395,57171,76144,30614,91038,30246,55617,40814,15893,90816,96238,81205,52577,83644,20660,27728,75653,25217,32899,87429,21776,66818,51642,31154,85158,16834,47144,62230,83629,1829,68092,55851,98926,62844,79790,48172,68451,40158,16372,80816,76981,88117,45256,74716,66302,86898,56530,58880,55249,69514,2745,93913,47656,54925,75202,46523,74374,48131,60027,88339,18660,3935,32533,82394,35798,17371,74711,41399,55259,43761,82688,3273,58250,71039,14167,68417,50533,67248,31396,74898,75711,19526,12017,65473,75068,71624,87537,60489,18028,26056,77940,11800,17017,28707,2088,87902,54355,40199,31677,98131,76243,58836,33246,44732,63349,30038,33204,26596,23363,28013,79864,91354,44891,34037,18770,20661,11686,61810,53341,66236,20441,62896,45001,60361,9558,19205,28275,52159,26183,67650,42398,74973,198,35389,79853,48426,46478,96434,15949,67021,98654,51522,49344,24707,66328,34123,11041,90054,97795,70280,82549,46123,88656,85855,55477,85621,51637,84322,1877,62837,24274,54761,98885,50250,36945,93322,15105,73672,79990,35497,49004,85006,93872,21337,23330,71115,97953,9843,17955,46002,77426,96854,94380,69712,44641,25041,21918,90961,30363,82577,86408,61283,18206,12481,30481,24482,4523,27169,23235,77862,89612,90162,23510,56673,69774,97168,87570,20680,32885,88809,35873,84712,49585,98505,66720,27143,51710,12270,16081,4167,92407,90253,19814,17195,85719,63124,56391,1447,60954,50804,94038,98185,88058,10377,53854,1945,80010,41937,38412,62580,71710,19016,57126,67657,25196,95503,26706,21074,73964,86410,35494,35706,11504,67638,80658,88,82383,81299,26328,6309,53168,2242,62651,58056,99881,6229,13894,52275,33625,31320,22316,17834,63224,98623,36170,76773,66257,28553,35618,67755,67607,86015,26995,85837,62245,91152,73066,66364,4777,51142,29301,6665,95358,5042,42991,57917,19162,19480,66861,11696,99016,43499,5845,51976,30733,152,15173,89452,85504,69943,17287,30888,27018,49904,94211,74262,45954,37367,92364,97153,22420,61787,1397,69636,5287,94629,27146,34794,7479,82119,72636,70286,73166,70219,11232,26512,9977,45239,48847,2394,67757,62643,11012,57036,57880,69614,76794,69359,31503,16590,15003,77109,98229,31178,40254,40589,85817,95144,84691,3849,45366,78980,92212,24508,33429,24846,36985,10997,87773,39699,34981,32956,51771,46859,51570,73645,65849,96612,91159,25224,53022,52593,25430,51551,95667,54004,57753,37501,95910,45065,15622,63806,98059,9771,32222,89517,90166,93279,87201,16531,24202,9636,36552,66664,62216,5562,14594,15501,66504,2133,83879,2822,23993,98394,83748,34713,9399,12623,2325,67335,58632,65921,34908,72493,94106,20716,4369,86987,57402,34422,37741,93163,26316,33613,91359,28033,86808,6548,40771,57852,61772,10300,57344,50003,36626,34995,31608,9714,43544,84374,96669,22640,96707,32597,18261,1022,28382,71933,63877,61222,52214,94961,92156,39769,87563,36731,62006,47153,38518,92044,12530,68481,4283,5360,4949,13110,62857,92007,7404,72574,46726,95481,78335,43633,1816,50285,40979,75541,95706,11503,20711,57267,78217,44784,37170,80700,83400,83820,24571,37422,62715,55706,44618,86041,39895,60154,25062,74451,93960,75492,67516,55722,35806,12004,27917,41230,91528,46730,6239,99620,64782,5763,46306,71755,73177,74625,62065,5194,67915,25501,83864,93491,39440,95447,87314,67109,54267,15603,8583,82979,26597,66695,38460,60595,12659,83815,93595,65024,70874,60274,20503,50611,84324,49003,60560,44840,55042,56011,97148,7284,69322,51019,22730,51409,4896,65125,8673,11620,54902,93408,17598,9723,78647,26648,36832,6189,59293,98024,36929,82241,50291,64869,25496,54290,98107,5665,77042,90991,93410,19927,63569,82775,81530,9376,44790,35990,13017,70851,87483,33135,81364,13159,61367,32083,35431,2076,65935,20459,36808,15257,7952,44376,60315,34612,60006,25652,18854,62534,3639,36849,44080,82203,71127,14369,81007,50582,77985,17694,55704,50347,45360,21329,29680,64762,76958,74200,47353,16483,89461,9034,28761,79697,80725,63483,76113,14618,67343,42911,17499,1296,28872,9828,38888,77021,74771,54578,38179,84676,12642,79749,3573,35353,68094,21366,43860,84142,37390,4432,75446,20545,12096,53881,62694,76203,1571,28858,83693,44514,69787,99854,25021,41891,22341,83943,95394,61649,61692,35669,24951,55436,88365,85351,65317,62665,73314,55925,4911,68368,1205,66908,95108,47544,9744,1967,98803,32483,95339,55513,29780,90445,16796,92019,16234,90911,2630,35834,67517,75728,89097,17886,94230,9067,49189,32266,669,72280,62170,10592,81971,48619,53598,80522,74231,92850,55252,91655,82215,93105,29739,99337,50461,56727,86061,27050,81166,25706,56582,62746,6721,31485,95942,6350,4840,29725,43167,93439,22713,18901,55226,38538,84492,75488,91879,34225,83146,20594,64980,79214,17702,92452,583,73545,39507,34617,57138,13154,70234,65292,77344,88712,53435,63565,71542,43201,73936,77410,17769,85436,1077,35301,23675,80553,77728,90969,11244,22383,76834,99506,96539,20687,70235,32319,81102,9787,30148,28474,76332,20197,39709,45064,72209,71962,43346,84292,30523,34157,43740,17480,85572,25264,24171,86976,16701,54646,27890,83988,64229,58468,90383,31445,67179,46446,66906,50764,51830,54066,24671,42187,69926,5012,6890,71453,31343,3996,848,96246,28733,37101,55144,95917,44066,45335,2280,14497,72372,49889,65759,61608,24738,87008,3528,51741,69599,84335,56016,88474,74503,20802,35781,77401,33185,58780,78173,90694,26766,26744,89463,56720,27800,74591,12237,31333,52006,78530,74431,70394,69084,16820,42012,74245,98847,87451,64316,9073,18424,75486,6943,25940,55586,21620,30948,91130,17006,61926,17314,82472,63691,64849,46311,70446,76583,79308,1269,49942,77302,9412,55790,91016,53207,78227,31347,44610,75079,92515,84230,57914,36175,16105,16250,62132,4328,50148,96742,97552,21051,48549,83799,40587,1758,55504,34836,92015,84833,97726,85086,34057,35744,93428,60895,64288,97639,99305,80642,60951,21376,91437,33885,56649,76705,34373,89062,60156,41048,89969,88495,82346,68194,64897,7512,29219,24377,57478,67629,81125,97935,56764,13272,69002,65884,53403,6602,21696,95321,77573,65367,4446,68947,48535,33459,25308,90735,18024,90963,51092,39947,60265,96089,24936,74959,81401,80574,33308,25381,8103,63683,18598,52636,99343,18189,71610,35977,88730,5048,1013,20001,29325,16847,50744,76063,44531,18117,90844,37677,89416,80123,47345,85223,11724,99087,76697,45217,24483,80952,59246,10692,94590,84843,3553,39973,54312,22503,88858,97967,37889,62139,27165,72390,49830,32577,95422,50351,26914,14265,4582,90378,92592,98132,7167,73519,93418,95444,8038,31468,97844,67740,51189,8245,36238,29782,87891,86991,27783,38510,82929,17916,92173,44108,58600,5857,90869,4360,53206,39983,68688,23768,6870,7988,65282,19811,17380,55033,33562,15659,25547,73067,71584,62590,94598,67724,21900,460,5336,85656,80568,54425,13343,69125,35406,4878,13071,45276,267,64081,10296,87839,37994,46085,31421,26250,98917,2779,33851,93143,30918,18286,24095,22231,3829,79102,66109,64674,54188,66562,61549,43280,19661,55830,95191,72796,79045,46695,20806,66713,98249,74000,30800,25603,16517,24758,87311,54081,42790,37785,27354,37859,23685,20574,79233,87253,69137,35717,82669,78718,82449,5179,30435,92578,44440,98979,95658,34518,5123,27016,2140,37450,54872,99731,39284,39487,6157,31998,3130,64687,82894,47788,99956,71301,50141,90211,78027,30426,75031,94658,94251,28223,16728,34818,89429,756,5049,49014,15568,57574,66892,29872,22376,38791,45143,26976,90182,87068,8767,24770,97588,37885,38896,81876,10340,69475,55639,51382,85089,55205,65518,40850,3388,16621,37137,47102,5238,89757,72201,32077,57791,91646,97302,34260,56745,83098,1341,36011,95780,90034,12383,83179,68643,44862,88949,47978,98325,23237,30806,56496,7158,77544,81435,25997,89866,96670,83962,45047,69668,6995,75391,55490,29019,97856,86028,51672,81254,80400,90716,87443,64917,42928,37330,5511,62834,33465,93946,37130,35954,14554,42385,98618,67334,68100,84428,47949,95381,5186,4769,13408,49067,73433,73732,88263,67252,54858,45436,32828,74666,67393,27094,74621,28836,65588,71557,13694,62118,12987,84182,86813,74259,94137,76783,73461,65705,1823,32321,68324,34286,28186,99023,66006,19722,3685,44334,71435,88121,21601,96168,97669,50178,74612,13756,41774,10016,91574,62758,31220,63392,50997,69884,45953,69801,70108,67405,86841,49231,93637,72590,78806,92492,83172,20589,44356,79565,60295,65663,49695,28931,68049,83795,12368,14053,71699,27088,8778,98153,87573,48308,54882,65480,70954,64373,5299,4362,98277,50189,13239,35094,17243,10948,62030,65966,69243,14036,6270,92190,64053,82535,51226,27549,63741,54563,52986,38841,13993,91625,26578,4717,68862,59140,12637,95700,75894,41240,41882,81741,3777,480,10527,57807,33814,97198,47889,63409,46734,94245,31936,40178,86111,11094,92108,80692,78424,6590,96842,7242,77896,33778,27904,49280,74877,10060,26547,46961,24668,96329,33783,82118,46615,82104,89451,90923,37317,20816,97290,74766,31650,78223,68003,42249,79976,31863,12672,22903,31682,59101,15271,49770,29999,88175,84167,36198,93140,14936,56462,61302,51776,21237,19057,54383,51490,34615,12569,36928,7652,34025,17399,64150,35269,33839,42759,9986,13519,96884,71514,31897,14693,9565,56288,73437,59300,61173,73741,59808,85122,2491,34882,7034,46455,34741,52551,35479,67254,70702,17547,62979,7007,52370,72006,92804,28130,80651,65046,38388,24911,8457,32112,86655,98956,63122,46774,21076,93535,89892,46295,24229,21680,15378,58628,18991,46757,26301,34911,5670,91363,76462,90892,98906,5028,8723,26177,49599,62805,41362,59684,99766,72776,72934,35800,19336,70218,14831,81355,85397,55066,12618,39778,89563,39050,79982,98610,54795,71534,45598,28084,74890,50132,33409,75396,4435,57624,15274,61363,16815,3081,72303,34452,20145,57158,59138,94755,64324,86793,41876,79004,20032,83623,71772,4772,34777,88970,66480,41531,34509,55106,43042,91336,24003,88979,53430,68279,820,87002,73852,29570,25919,32035,31453,53284,76582,42537,85442,35984,13240,3135,92543,3692,92965,31457,67890,33630,56628,70753,75684,53234,18808,15686,52513,42048,76333,2907,19197,60333,3576,7838,25904,70127,4152,43682,73492,61854,26775,40286,53224,51003,92161,59256,78717,14235,22678,45058,99750,46333,6828,22497,88716,34534,58237,5420,23107,52095,13838,52113,46785,20415,67449,32894,34356,34026,48964,65984,48021,28705,6895,67408,21884,4100,3397,28002,46567,61220,78582,23581,36940,85789,83054,71165,3926,33869,10955,86452,22428,68115,62904,44737,15838,98882,4085,34230,82578,76541,54428,93234,60042,9456,33880,37764,74064,21639,11583,99867,69016,83902,31535,71712,25118,28686,91735,35311,20177,5210,63600,78072,6443,86242,69754,51544,31510,19514,97347,86791,4877,77775,21902,43171,14376,14360,7677,86419,45638,23161,9658,16824,63281,11376,24725,4138,39033,68724,95011,10787,84884,92865,54200,85671,40564,44242,38693,79063,63576,81527,42221,99417,71679,61337,46658,42289,46597,85093,68507,42828,17359,41488,1980,88112,71459,93720,16026,20337,75371,37345,20777,86598,62285,78145,73424,51826,82073,57990,42369,95533,21258,58885,48634,54468,69462,6314,9982,72943,82899,19920,58177,74681,14614,22162,52523,8619,2525,55928,62829,64387,43988,81156,73086,88980,48546,867,89762,72778,97209,98825,1410,85016,39946,41158,3916,3903,85550,52516,28091,71251,19386,88320,78998,17689,32089,13397,74942,8234,55445,36858,41412,14785,71454,50889,23233,32645,47638,66828,36550,37800,68977,19644,55859,91168,29273,16303,88571,81464,24146,13474,23339,7221,41229,18867,9681,79776,90372,29711,50621,28580,97376,2119,68733,39411,88518,3668,85717,76169,71526,15558,14377,68489,76529,89025,62323,86345,64570,68133,47741,69587,48103,63705,33930,82485,83958,29127,53796,57479,60877,30624,27818,7083,9442,72295,64201,26125,97851,83673,75343,54541,91272,25409,50238,90854,67648,51521,73651,20700,98355,19965,98147,22568,57219,34774,1076,40635,74177,96224,92060,9934,68619,38168,77141,83218,79122,89398,8727,55792,29390,1342,88892,63041,42471,57382,8953,36991,6932,53064,3366,83277,98716,36570,57433,59241,2220,49502,79756,57288,35396,11826,72174,23170,31938,64504,50167,61227,38825,44160,85370,30314,54023,7375,56812,51998,87502,75511,87169,35100,90662,71261,74100,48703,31756,99661,67808,66371,5435,26007,38729,54901,99162,27753,16827,76603,78574,34698,65033,97545,35090,25316,66574,96512,51727,8581,68756,86227,30282,96522,93538,51500,60452,92392,16976,23404,90501,1161,53501,73385,96741,62680,80399,74030,3346,20239,40947,21391,21199,48618,965,10691,27262,75520,86766,77298,66182,95519,36856,3441,98727,41146,94302,15758,94821,85503,87800,78618,42517,18834,38134,60444,76310,45080,16557,12513,51526,85181,21280,18564,41248,78425,37703,56826,95263,37109,66880,60425,38714,81714,85702,46963,90866,7455,86891,38199,82898,97140,68647,77951,90744,27170,60522,29539,25704,88312,97489,9181,62200,10801,40997,77995,86025,62355,72794,16090,16422,73901,76829,10057,15171,49234,15765,73933,37973,66968,66361,37786,36308,31241,12684,26409,337,21735,59290,26896,67621,41517,85009,28495,85936,15514,36060,66094,99476,32011,26414,36844,70209,38417,64894,61735,8142,24618,70505,53226,26231,72938,92335,85046,89730,97307,95047,56219,20686,61448,31164,60476,24966,11867,4898,80870,53500,34709,67558,66214,3016,23874,83904,39991,34052,35805,18304,74093,85728,98180,88068,72792,31003,59295,49235,86829,29672,46899,65998,47890,43456,19843,39732,16959,28343,91837,55831,83694,5893,69526,57685,99669,98762,19348,14640,85137,18795,92120,870,8867,62571,1784,7074,62345,7958,29039,54216,47070,55916,95854,3473,6449,24032,5854,86717,29715,2788,37831,38400,73618,54512,5078,23169,67579,13806,40831,61325,96418,32123,35972,53691,59569,56792,70522,30512,99125,58956,8423,62602,68164,23925,70745,1000,57182,66694,5813,17076,52928,66175,42447,5777,68217,54990,88898,2,41167,65992,18039,28905,44967,5077,71386,6417,81919,7420,86337,47798,83642,16678,89173,73143,49957,17353,53781,93245,25616,21454,36234,556,98005,74996,81683,57130,58383,60955,68509,90957,60821,40570,27086,72021,11847,58738,45363,10937,22879,9508,90489,61799,56747,39032,77942,97698,85182,71635,22377,8741,81671,60587,46167,95405,60135,56120,48254,12934,11714,98593,55246,85308,24796,50760,45882,35372,6360,46728,60239,74309,66139,51815,67507,43893,57659,97773,72205,55176,48919,46291,20245,92216,80119,78320,27111,52929,15631,2654,40469,16004,422,16011,111,99187,27122,58416,42098,51476,22612,56958,58314,65334,90011,4232,15284,55448,25473,55248,63337,55026,86131,62461,88715,70217,97094,4044,43086,16944,38516,72793,7592,44026,17525,62619,19025,8363,65063,97937,72470,27742,14736,47827,71245,3062,6286,40284,69502,26980,7726,6259,2555,34213,63279,25929,81697,51120,71627,10136,5746,4154,17172,66891,33431,92493,54768,43230,94321,68863,41235,10065,70686,15803,83732,63439,41394,70973,29641,69387,65781,7680,43712,7853,50193,95906,91255,75216,81591,36864,71408,16186,44038,2638,1008,47556,42695,93023,25679,85660,58027,80353,47184,77117,58701,86239,52026,20359,84528,72307,52732,55422,28409,91704,88392,27033,80866,99217,70231,79765,32760,30930,13237,9347,28812,89333,87186,12674,88800,31186,1072,66107,67272,69876,97563,67131,27434,55240,14152,31016,82288,43773,7739,4648,5057,6922,92861,35753,31784,24422,34354,78639,68831,93180,74597,54895,39918,84670,67979,51613,13584,28768,96661,17144,5047,68661,26390,477,76547,61446,86202,90509,85834,36076,29717,91833,93636,92318,84405,8524,13753,40901,86336,14825,59624,59392,18673,4756,40029,40365,51399,6280,11355,67464,10160,18118,26117,58071,12216,83354,39220,62062,28965,3131,1415,74614,3134,30847,86339,42277,62616,12025,60563,30011,55653,92299,71957,62026,5197,62489,59378,39968,77823,25413,88067,5913,19632,3136,25876,91303,12891,39102,25243,55395,3418,14605,4000,16870,82257,62211,25468,25824,25193,47520,30412,85437,94133,46459,48112,59366,37562,55501,91316,4339,75237,95821,88853,73322,35048,39078,87211,97556,62343,64001,88922,58678,48850,45214,27009,36546,29953,62367,91377,77889,56204,35886,28019,67426,5674,10828,91128,21963,47562,88725,59718,49049,24406,53602,69211,52432,84483,12451,53826,28552,26310,85742,9080,2673,75122,48492,2972,75323,70649,52852,10042,36353,22210,26945,63666,22601,77776,64560,74136,1720,37054,33467,11707,82873,84994,98990,99605,39376,55628,79332,66297,84173,99572,83482,14991,11540,7826,46754,55847,58392,61577,59862,41768,7684,95690,36318,35787,55403,14042,80407,30664,63063,56842,72350,74707,94249,8346,70144,34467,87309,12972,38792,22893,9899,38451,4568,93483,17940,93797,80459,25482,11945,31243,59590,90105,32424,19459,1468,31324,72458,76976,59685,15898,47683,9880,28995,1516,58220,23540,14808,92371,6632,46857,50998,80770,62364,57735,30690,53442,40483,19026,20772,8724,15227,29829,18214,17420,4069,4081,93358,68562,30164,75400,47439,19181,40988,20298,55942,81164,88751,85981,49595,29545,80040,21913,24066,53092,29462,60170,9623,33085,30217,25562,79866,62782,90188,30704,24083,44723,80974,48594,50386,82095,24751,99702,81392,59974,62294,27327,52253,97591,8503,38147,73536,17295,73325,33180,95061,37419,55970,25156,17276,20496,34952,76644,45413,33146,49561,88901,53464,76579,67603,6319,85344,50725,81886,56077,58381,40310,36944,81645,6262,27284,70790,14418,84135,90571,75788,28688,75772,5164,53863,77075,4643,96059,88340,88784,23172,2484,4738,69728,20517,58055,35306,31325,78945,21753,46371,73634,80702,67998,64868,9395,97156,70708,50155,45350,69060,83173,95562,9718,47769,96338,56715,2920,55044,82452,70106,82511,15151,67971,79389,60171,39168,4483,68419,48543,29620,93511,23725,90486,36930,35067,80902,19147,54944,55241,30320,44420,7473,18647,33145,37499,18046,22618,99070,41510,66835,86720,8417,28675,34238,62291,9081,81910,95431,69258,22868,49077,58644,23333,67924,68360,89202,43065,45152,76509,33326,32531,43030,61559,92819,58093,91967,66086,13667,11118,90606,8476,11625,11213,81560,16261,80284,21674,34866,80276,53342,64989,30933,96732,23106,88929,19281,20747,25950,46625,18864,11128,73006,6089,20111,7705,57536,35210,97012,3290,20861,24007,26418,66958,20233,9605,507,78089,98389,75221,85277,39612,74486,37507,86738,25778,34010,82255,45631,3887,34918,68718,98958,21068,63003,2732,32411,14052,63524,43186,79842,82153,55966,42063,43212,68012,78698,50735,26447,49848,53184,57380,54996,86848,54594,95424,10877,44087,2468,54398,74758,32333,85438,77459,48349,24428,53560,50970,72488,90627,93131,55272,60983,87534,59320,30035,51890,17169,29184,47323,27559,40616,2021,50894,35742,17135,44882,34787,4091,33044,47537,77803,52152,66761,31000,10631,48881,69026,87923,41388,58767,52232,40783,30029,65635,10239,97779,20923,25185,60127,32142,43489,60179,73772,49299,65771,9930,13643,16410,64239,55572,93389,77656,20976,30856,91785,79007,955,14505,17311,13421,62744,29957,83238,8213,13892,52920,942,75535,54111,75397,54386,25885,37549,19117,67035,20358,41631,34650,92647,15010,60418,93739,62379,6187,57489,61699,6816,81846,66662,16543,19923,12113,92951,2299,30448,19503,92992,65441,70799,96981,61888,90879,68740,41053,64766,57150,962,88990,60924,38206,17512,54132,15638,54171,31180,74385,30846,10230,8169,70117,97730,79926,58034,45079,72431,71932,83015,82733,67660,78284,80767,55400,81828,24529,94085,41125,37000,60122,93493,17283,82799,81843,52900,34740,50673,60099,57952,64990,80731,42162,75563,87814,31258,88832,4812,7051,7876,77547,71114,85620,62165,54412,58471,16000,17779,95515,707,75246,15999,24894,11939,90382,83108,31052,41926,25441,22740,99619,32363,71168,15859,50361,38532,8745,62169,47450,24099,46389,15289,50043,41278,2614,67313,26537,19638,24992,14144,53209,10326,54945,74910,5919,73593,33938,1310,43702,58433,21589,57302,44921,55533,34322,22908,88130,29766,83286,53541,29634,26031,23640,2256,64863,43690,30152,81796,24273,50160,53331,7092,99639,18308,8557,13234,20728,97056,88737,43637,3977,96303,37418,29744,43423,24562,22596,31881,65538,84144,59982,571,7185,95656,15661,56502,7960,76885,19731,68701,63842,63193,60916,89570,29312,45301,233,20593,39538,11178,90292,39400,53155,60314,55758,45799,3198,72899,54607,25020,99037,1151,55609,22835,28477,18211,43511,39431,70913,7055,23459,20421,51698,12739,30432,17043,45525,65501,58565,49058,68231,50814,64764,30786,84294,3833,65372,14316,10294,50258,90363,13151,4875,29120,96007,11117,18570,37116,22296,25154,43213,61951,48107,79908,16767,33833,41064,69355,70203,77313,53666,34703,36598,38111,9256,52951,23923,44683,68809,11905,21294,68097,53951,89249,32515,64679,87712,10179,56006,5697,25177,57734,66629,15233,3124,3204,79979,71659,68808,79886,24760,17343,64444,50738,89271,6904,79093,80464,63460,25039,37236,87802,32602,95112,32310,23357,90443,36486,18020,13601,94483,54080,69513,79994,76009,60407,86246,20862,37093,11887,10413,63897,47135,66602,61775,11415,51729,19686,82848,93471,46361,2408,27393,63817,27683,92075,66581,47657,2353,90677,41691,75452,41348,16204,43865,18621,43165,77735,11441,80615,73676,96555,19136,27112,19257,23279,44396,75863,81012,25016,236,6608,27103,60417,53979,56597,11879,34112,95799,64757,42813,66138,61617,82724,78637,52811,54295,32079,20498,65337,64075,51865,5633,31922,50926,54695,87195,35863,74515,65127,79061,63350,12564,49161,40508,90413,548,94029,84459,11928,89183,29345,69506,33472,51804,87533,99173,87862,91125,96362,39262,25996,52172,29289,41186,67978,34946,1667,1212,8032,81635,69431,90876,30003,55838,26743,87551,95083,61404,2430,55526,26074,26957,7747,50195,94367,59906,44580,15145,76026,47301,26200,98664,18491,37346,18774,42821,10396,38602,3421,39397,19054,87801,7304,69218,9709,32038,67077,34370,22655,96321,29684,11444,28458,43355,11756,65695,39883,67749,18945,29934,77327,39437,34592,54083,65945,78795,97555,37010,29858,44146,50875,57454,93573,44519,92471,64972,3471,19312,72607,86122,69412,22493,3694,18258,63685,37274,24842,99430,22336,7734,36272,31563,85193,8530,85912,99220,22660,34505,22819,9165,35339,50079,72029,80269,10208,81867,87601,75465,53204,5888,63592,25102,26069,58670,75983,66680,5606,36551,68776,51175,88611,91864,78149,8177,14445,56671,5086,72931,37040,48370,58556,10901,26572,38456,77807,45610,88403,49901,4676,81391,43250,31417,47475,76542,45572,12700,70598,85935,3269,15560,91148,11597,64968,32082,64124,28132,24342,89318,78605,69924,30402,47753,28075,29332,14934,88272,82311,95021,49638,55499,39582,37379,35992,96068,31083,31407,67792,62781,7144,11432,41931,70324,88764,70129,26841,60220,95181,76109,97611,71156,15710,49588,7208,34649,22487,68082,4698,55076,78379,16476,3918,82822,71767,11009,57287,70720,96235,12645,2531,49380,77888,60514,96625,90244,80502,43732,99920,22486,12275,83785,42152,33691,83178,15112,97219,89872,14645,76359,5130,66097,49953,26422,23409,90584,49084,23850,22203,62890,1059,10557,69112,41739,10332,80939,4423,90635,21165,85674,64585,58301,41533,77165,31130,75280,55060,34971,56380,85447,36388,17523,9322,14851,24217,93581,999,20844,33549,78617,83906,57018,78063,56680,6010,47143,45797,93526,56229,86562,62192,30940,68807,37841,84270,13999,65659,29931,13621,81789,74220,40774,86625,33343,41594,44065,40687,68414,46905,16340,60974,42443,31637,31600,31302,14366,88033,34111,29063,28682,92905,23954,84770,26196,84767,93602,65512,40266,42590,42071,80084,52315,93183,54851,30026,96105,374,26916,22266,48255,4155,65728,32136,54362,25054,25055,96773,71807,79286,29568,71716,60233,58105,17728,15279,39749,94142,75417,46294,43075,85216,59965,12335,36206,67424,21989,24235,81324,70251,5041,88052,74101,1879,3888,53463,47331,71189,86937,41613,71748,29070,950,51000,76886,77988,89270,76162,66217,28969,14889,26458,87348,42723,72804,11602,48128,58036,50282,24718,3072,14523,21717,33758,25589,63183,66154,31177,57785,960,77704,66844,72363,95925,52258,42390,33290,90899,59536,48219,33853,13868,14120,75848,94985,13580,28963,2643,95886,66012,64535,61754,27268,45808,42460,79322,34273,48600,34361,13302,77949,18427,59365,65867,96208,7862,41513,74796,61495,80547,68321,3716,92648,87693,85445,90574,96777,28026,34206,77907,61429,61745,22863,53960,43316,88534,34071,15428,39444,60403,34747,84071,88629,40908,61864,52492,73762,60287,28412,42703,51314,37083,49218,52646,69304,43266,67886,70548,83117,37145,79162,53225,20223,31542,34065,74176,71906,4325,86905,20539,47370,41914,6232,87051,71551,94691,53052,50484,74387,14514,33774,55127,75646,672,36710,2615,32604,22283,88780,23354,42855,76006,82348,16124,32480,46417,6911,28940,42971,33272,63266,64790,6347,42273,858,81883,58690,92331,38895,31470,64394,86486,67047,68088,48285,93733,89472,54430,28897,54291,40136,75793,63257,18786,69530,93021,23809,50246,7440,46081,26210,93892,15340,44265,35576,81412,9008,4556,12826,76290,97892,55530,66232,28014,21630,80075,65333,33074,57340,29133,25670,54143,16663,8981,87474,46383,50314,80319,25765,82473,87812,36670,56264,1774,305,77733,80792,4134,32874,4576,23476,11264,96236,80563,91037,82562,97357,93677,52283,38075,51090,70576,44613,58143,89276,26732,83256,62748,95260,70572,36752,79275,62607,11705,86463,10405,7277,72925,7451,52269,40305,58802,28079,98845,63908,98203,93472,12729,71008,1299,54166,17634,8399,23310,43389,91147,17365,23270,99280,61323,70276,87815,41969,64912,42418,93308,64943,28028,36909,40311,98723,41499,51453,71531,37958,79420,73682,83909,93935,76806,37761,43350,11273,28238,63535,50854,87589,78273,96078,16626,10310,45046,97948,53813,7296,51276,51376,40968,6953,43034,58174,29437,5428,92931,86115,8546,57501,86942,98273,39323,86299,41193,22951,17621,85648,8315,14793,86101,36080,59258,59833,28037,41245,53610,3646,34023,17071,6646,56878,86323,43048,14229,92526,76833,71818,85987,62856,429,9799,16535,83500,16135,24929,75197,86980,25404,4538,36890,24111,21247,91994,22329,45580,1911,24819,23591,39307,36031,50833,15600,18551,48640,74239,8083,2332,48010,45891,28750,26463,35796,17358,52366,96032,90433,26238,22326,27875,97038,71506,97554,50472,64211,49227,79832,46150,99636,18115,93405,92674,45471,67758,43983,74974,28371,10827,73245,23232,82139,59488,41628,9685,13698,64523,85596,10550,90552,80199,31546,30349,70178,35848,181,83315,62439,38416,27539,94542,9029,60550,93717,33529,84662,29126,25796,67036,5546,64781,93527,68887,35174,60812,14733,51560,63918,86032,1733,91378,51523,67939,94077,33632,43328,77870,82989,37232,41867,68158,73334,69751,32044,93685,65511,46483,47149,48658,37618,97233,69232,54415,49519,8129,27575,12129,35646,21675,48296,37326,82678,63964,60873,30947,58833,45961,57038,84951,29132,76826,39244,80575,7506,56609,48149,11894,49747,29294,26319,27938,88191,60071,46001,34382,30828,57304,15108,76756,457,38765,48829,35399,45934,39894,59750,19340,20244,37328,20734,37888,14721,66726,46646,62843,44583,51663,29290,19429,57032,23553,89216,67250,33302,88698,16203,34066,11134,24817,17361,7184,9869,38236,9727,80281,77485,57395,20917,12334,18314,54811,10887,11289,47388,10501,31812,61059,18607,75114,29255,3505,97239,627,12470,26357,6683,42831,39477,46379,58145,49427,1251,46829,82456,86396,25618,42208,82610,40336,4199,29613,71001,71707,61514,8695,65245,50819,56084,25295,35528,17831,15303,15432,87863,15843,98865,46636,63589,63785,5404,20029,79085,4006,15273,79913,78168,19315,16462,45628,28133,99596,607,27695,56514,2115,72125,31099,27923,68269,76312,28336,36905,62513,3525,82454,76584,90187,33648,50416,15971,42097,5449,17733,49381,50410,292,33174,15190,37812,9624,46077,7723,54663,43029,42976,81973,43427,95501,75777,77651,53950,24465,51215,5117,34880,38522,30891,378,22224,38361,80162,18081,99502,41081,3600,16035,82628,16978,52849,94408,78593,47688,3285,86184,14177,7564,24309,1464,57661,26076,41309,35107,91030,71493,46600,66620,55947,69507,56327,97877,11412,44493,88667,42217,55559,30233,37990,1247,12307,5733,71131,74920,14118,50915,6769,27214,61259,38270,14478,69197,29743,2099,60102,54909,68813,78894,7086,51738,97031,52858,82226,32441,36977,13471,73203,63434,55879,30836,34826,19483,16714,42153,2534,66854,59574,62702,99006,38497,34707,91516,53232,60581,45643,72356,57141,26740,12053,92282,32081,23878,60820,34005,94283,16751,50656,88360,86733,1908,92349,52708,69490,42585,69114,6670,85748,34417,61284,19008,58877,70226,20867,5820,5158,25101,73192,56950,7650,71043,16660,97586,33927,41396,16267,76793,3435,90093,69670,9471,60189,83113,4902,74776,84129,48954,13496,53113,77362,90550,55132,20522,62171,44228,3689,21984,95286,47368,60535,46741,52576,52250,82518,48694,69756,45807,29793,12190,85110,54829,25736,5797,81899,94647,27953,43535,66706,12615,32548,31023,27650,64098,22714,61502,92527,19379,94524,98260,46495,17698,76820,41091,39920,64920,60671,71040,91677,83516,13847,41259,67045,52634,58619,63151,13376,86944,97697,25310,12083,42007,36529,29635,11147,36134,66025,84465,9354,38077,80359,38678,1624,19976,62173,96872,24737,30153,74518,10102,45800,85186,69777,67794,7617,99769,54408,48358,30287,94108,84573,13644,52491,54992,46349,16054,38802,91083,10024,32568,84538,46992,1378,91297,26112,88555,95913,15179,2829,87577,43930,52735,80631,32068,31398,40251,97277,1321,23373,99255,33287,50720,8266,3699,69537,83174,57443,55219,82395,55275,74522,30110,38472,67091,85329,70544,52533,46290,56198,98902,62968,91708,84587,3526,66766,7895,33098,38865,26872,10415,52895,36653,70570,41584,88531,46629,93681,45646,20363,43059,3512,69897,88226,50350,18489,27993,22491,62950,68553,74265,949,29410,25792,80794,73354,47805,13975,20912,38818,9225,37428,37332,45170,88789,16482,40659,47988,49159,34102,29178,72225,12156,84050,9360,50807,9079,88900,4422,80133,6180,17458,74038,60326,35965,19816,96808,52318,90059,59040,7026,70387,40898,17178,44970,23283,99942,71238,61002,96573,44225,43172,97839,55872,82687,28504,24937,4048,22096,66037,22884,42096,10048,93658,47909,37337,44200,45885,29946,34862,53627,79320,59856,47847,99997,70854,3539,939,44987,12075,26285,50919,48191,97089,83969,45208,98358,31301,49955,94679,93612,83696,31962,36342,24644,57657,35461,15574,45013,135,36468,75880,61918,96524,36043,51709,69176,99439,72748,34287,58937,10134,74840,80966,23205,34199,98948,50857,26000,7457,44303,9541,27666,9729,86001,28078,41935,8759,40827,85522,20232,27647,35986,36686,47974,35375,86442,10988,55659,80197,41870,5083,99957,25230,4220,80534,33573,72215,72856,183,40580,59204,33831,43902,47304,11596,30474,47462,71083,68695,42934,84249,93628,38027,97614,91067,76071,76641,53402,72030,25465,86557,94485,70338,44326,98730,26905,58044,66314,98449,20189,78230,4579,26984,57078,45255,17919,57906,13943,26197,30527,41737,7364,2198,38436,87733,36642,62529,32681,8879,37002,98861,2485,18544,91431,54812,6794,69317,10142,54261,8183,26135,90741,18552,56340,90943,53680,70139,62707,55906,21483,14104,91756,57969,28841,93611,38102,86755,8491,82083,91122,85458,23140,89920,25031,66114,62608,85237,72233,85057,58875,32097,54496,67403,19358,73253,74116,17186,19942,75145,69054,83040,5006,35730,27939,387,88280,59967,89016,55369,54781,25249,74122,41729,30045,29974,13597,84106,73236,74475,64463,61919,95792,29724,56225,4071,97987,85574,61632,46688,92285,43764,36276,75078,31728,32976,50620,6027,70956,22233,42898,31903,69558,86815,7481,38658,49266,56501,57526,9777,20984,53939,84816,91933,38893,10960,5580,26465,54292,15800,40875,59959,9062,65799,49549,62818,89582,18742,81805,89184,42613,4049,45159,98584,83289,10633,28059,83549,5096,74620,25918,47428,48121,97292,48983,88463,24093,90713,64586,7632,23125,56735,43291,49982,24523,99664,73439,76970,41860,19636,57678,5855,88009,15225,42218,3275,20818,8657,49635,89524,79024,18242,48143,7788,83216,12321,98258,67299,46436,75572,52150,77186,64649,59963,24613,36761,23980,24345,5236,74983,64145,36249,54967,5495,48503,23180,66499,96044,67861,93382,11096,68274,66465,27223,63274,51559,671,54658,56732,27476,70380,73689,64340,24693,8909,23817,72173,99628,41123,49740,24530,84053,23692,5853,55641,43264,1167,71949,19036,54077,52131,59380,87061,56262,48910,93111,84572,28475,40315,56683,92128,86169,15822,61752,31602,60445,67726,70425,83048,17255,37391,23990,13725,24509,9180,38648,29323,84516,51549,93770,48522,58606,21860,29125,24414,5116,15882,57029,35475,50391,45388,94888,56495,19926,38619,21482,21167,28367,9845,19443,64900,2700,21066,9164,29783,78646,74724,74250,46423,43170,29193,27586,9935,5275,71623,96100,58555,60603,60496,4860,6534,83648,82722,51018,41214,75644,18056,23737,25920,11338,37849,59106,79658,76977,48378,13026,67692,3300,69361,42592,53300,69807,34804,25242,10175,87479,29619,70393,61299,82002,11194,43105,65420,97687,27914,70319,14945,44902,94903,50099,28479,85944,58827,1201,20690,77105,65519,277,9589,39986,64495,5656,75346,48496,66264,29857,68254,30378,47482,68883,38377,75784,94907,5798,61658,16710,73074,23452,37663,78554,87352,34919,47240,51049,73724,5568,55188,14989,29229,66944,85478,87147,74875,24195,90971,40716,86172,4691,36779,67280,47465,41944,69429,27261,62692,77281,5070,13760,54928,15012,31047,99061,2496,55655,20408,47001,77931,13210,91169,89302,79221,46491,6615,47381,62726,59400,99972,35293,33421,5112,31777,93026,58578,82612,52493,61750,94830,86047,10638,76813,54121,25599,29923,97497,20396,97700,96557,39736,11925,78524,68748,61551,90316,38689,68091,95338,44212,22073,11903,37950,79680,15523,43737,68107,70906,21299,42465,90214,34756,74097,31272,28937,96795,58589,98870,15341,9064,21635,60794,90942,74414,60853,15169,67582,90651,72720,27496,31228,52806,94155,51495,80701,84894,17381,25324,87099,49907,52899,57475,64706,92097,9438,51153,84559,29059,67983,26761,12576,56688,41654,47352,15499,16955,14942,82528,87754,91143,42676,8256,50144,29532,33106,55875,87668,66819,13179,77974,597,6335,11543,88719,71385,15404,9543,41612,97295,40007,83000,11873,50530,58933,41546,58708,54480,5374,56047,82248,66590,98372,22809,36571,1371,46500,22665,37347,70558,14058,29798,69476,36591,44867,81633,34656,48464,24321,53838,44524,22270,62614,34769,3110,5867,66764,14246,49016,45834,90324,43006,31944,31818,5403,62391,41400,46019,3705,28086,16579,45756,33229,43861,59073,22218,61161,9997,80091,22183,13867,78256,65600,45965,51200,41571,481,49627,53903,24064,94759,76305,62894,42423,81550,57072,7670,64601,13318,25061,96371,45390,21478,48559,26255,26807,39637,76430,65395,99638,19677,65918,78689,44425,68060,8661,91264,67960,13994,46375,3264,49823,71927,19134,61330,17107,68423,6591,3140,15783,3713,57718,21868,68037,30422,15215,82191,60645,73438,29932,69855,12245,42509,91906,41169,13434,57155,70018,13567,48772,81065,44316,69662,80895,48394,7486,16569,22960,59861,53965,5171,74738,34325,98111,92853,74186,78150,66725,85024,62175,74769,60076,51878,35111,21737,25663,98371,49481,18159,67489,39784,83594,29788,32551,69420,95062,35791,64937,65453,20822,7659,17966,63989,45943,78141,88044,17803,25485,40293,48422,68930,55624,42486,87202,55267,57771,4146,45309,52965,56199,613,42694,58216,79343,89281,19888,98422,667,31361,92109,69921,56939,33127,68504,96035,51234,18592,26777,87761,26155,28983,98025,27727,8753,91762,79043,7903,11039,45538,51144,84610,96885,90776,19076,47393,69282,74576,54396,75956,30622,30524,5241,65813,53964,56927,31911,15458,74892,32179,55115,96638,89257,89628,73189,34035,9663,96377,36758,93142,92400,9220,54167,21738,28442,4573,56510,90691,77050,16961,73866,22427,38528,56135,3690,92021,44844,45002,48188,43108,94659,9454,27336,45298,45494,45826,33032,10383,23814,96950,7342,99480,98722,90795,84219,27205,7647,22425,37585,79235,35184,11518,82846,34585,67768,62986,82735,67502,16893,45988,70613,29663,85842,9433,75992,79522,20501,55093,60375,79521,20252,45146,28564,20251,2270,98497,69761,28222,68596,35888,81648,78873,64354,87966,39055,49415,89785,63619,18983,79932,7982,60740,85712,3961,71556,38768,51752,80050,58140,26705,84784,18971,1815,41731,31749,81127,54473,79639,65650,76802,57968,97435,8084,8947,31046,10903,78325,43046,93614,98684,32825,74422,97868,36838,29812,30597,46166,52526,47376,41355,98704,61875,9214,18446,13924,73687,73318,17933,27975,56213,73007,74428,61114,71796,53768,47218,87666,19317,17869,54622,50027,72237,637,42901,38556,80760,5022,68343,356,77724,6527,12606,75957,36320,94016,91889,63161,3126,55738,29023,44682,66064,90600,89879,68585,56763,55331,95414,11085,62347,44617,76473,35351,35794,63775,42817,74642,73170,50876,76439,79435,91110,15448,32553,69093,58404,4641,83523,44247,71733,96086,81000,21596,48801,72845,15880,64748,66549,64319,12883,70013,53029,40869,83779,39170,33195,70366,73388,80195,57621,23671,49323,10671,9331,59723,20070,43051,88438,408,9211,85687,48278,20579,45482,46265,90009,37610,57424,94419,15837,93041,56208,91487,45531,82930,59473,33305,73835,20167,59620,44,1391,56242,89931,79958,25769,4042,91027,59077,5928,47344,88779,91107,36573,50771,1200,8341,5329,68589,66179,20928,31796,81280,94373,85272,30413,52731,97940,62446,44438,6042,79865,24883,1177,84387,35547,46712,59859,10062,96805,44647,521,75087,8308,17932,43228,14757,56352,28020,33104,80674,67482,23644,88427,42713,82888,78179,39304,19310,49491,27685,32932,56353,75928,66265,22823,23803,92449,28452,97632,79834,91253,46413,36992,9642,22289,50564,43856,97366,44903,53413,37306,84802,67906,35194,20265,57594,27623,91902,62223,92337,51666,69783,3308,63194,97429,84170,58682,69763,78062,30123,62551,83605,27325,52262,85951,2406,14548,28217,21514,72297,53611,70141,93495,81283,64477,54880,75219,89058,16838,18851,49131,69982,8442,26227,64811,7928,80169,82648,87525,10670,20082,34466,98037,90528,67184,4493,41578,83709,91656,78344,2785,30025,22838,36274,73930,2166,40544,56437,5133,66071,89038,40299,53431,93587,85955,68870,14970,30721,90807,11017,77979,65253,124,63747,81855,53439,78298,63871,24211,43585,17552,63624,48049,14112,57248,28081,53317,57488,54325,95477,11580,28492,95314,41683,94503,72815,52445,68951,77051,11162,41049,24,63308,92040,12377,82352,58150,58641,18387,52814,74482,53801,22938,13947,14504,44838,94635,11290,84567,58019,28797,47838,15106,13317,43278,79398,2368,78548,43921,41664,4271,69888,2941,8544,63641,60839,67748,96458,38677,66546,13817,53553,17020,29077,36522,87094,43630,3241,97718,74842,52116,71424,61145,50362,38942,66399,5832,80462,51851,54224,40837,82381,52109,66476,16544,99928,31502,6564,36625,26907,38820,88270,51224,42021,67462,40808,38255,51994,6090,93341,14506,56406,48159,63655,19752,59016,86683,1189,64069,96975,53395,93532,31581,38428,51704,56336,84186,12888,48556,5948,97524,33956,66864,22557,33458,81979,18608,14074,34236,70713,53397,69301,41482,19506,95958,35542,30264,21849,97459,55185,82420,37022,66148,15772,62265,28724,74276,27340,81421,7569,25552,11236,95783,42620,21283,78330,81541,105,32937,51975,4511,38217,83810,6784,46027,33987,67937,96355,50273,30802,77871,48106,3229,11979,57660,13641,2084,96194,42454,63875,91009,28592,18155,29310,99357,25443,559,81360,95356,80690,84082,31704,24664,89767,54639,74037,64378,27437,74500,66354,57684,47620,95499,13371,53276,30551,409,94228,38720,59075,34801,94491,87485,87881,41678,27226,60061,82340,50371,19580,4930,9972,49858,29383,13766,62492,53932,37255,39965,34576,75317,93503,60632,79135,61526,44351,36237,59329,99392,84748,35167,29623,92733,63146,71207,52254,34659,99853,58282,58740,35628,12483,80479,47289,15567,39069,42292,91707,35837,32779,39452,89864,14474,33460,30371,11073,47893,61744,87642,31883,68298,60490,19556,87655,25622,81554,59693,91828,26060,37956,37185,17561,94740,57274,73668,47262,95128,95848,53253,87088,44899,60920,81368,28945,71007,43421,20632,13773,89672,14008,33807,59275,77438,59554,77388,75705,61677,74575,25751,61627,70349,45783,87892,11124,97022,87457,71983,83495,70040,76124,64285,12832,60271,22454,10365,5689,17059,65723,25382,21415,27110,86483,76194,93450,32606,87889,90070,27316,64171,98420,94780,91798,29560,90699,55215,18528,66204,40313,98807,97649,34751,17272,34056,54885,56880,54853,24554,49733,36797,87695,37149,47392,11505,90267,2414,59360,1680,89747,76630,4837,12114,10483,6551,30247,23775,39521,23472,33254,24381,74678,657,99594,93667,2861,11477,67110,11229,27023,64513,57271,41819,38227,40533,21401,92784,11977,79412,36294,15860,7389,83526,30213,9889,92475,48779,69465,33560,31500,59455,29883,10820,94464,27640,98039,15,66786,27246,45296,92326,48706,1134,27681,99978,99101,83211,95460,30223,49817,3240,94696,14781,14666,21966,54144,35775,32404,58413,8396,27372,92442,4791,38708,25894,74095,68432,98148,66813,97971,65248,48502,56291,2024,64051,69671,22243,8698,12917,14713,8928,38880,60400,72203,98361,2292,18727,33005,62743,74632,74132,31877,78671,33321,64992,45495,53099,27338,16658,32517,68868,99541,42286,84117,80807,93457,16364,70978,14769,85431,73106,30013,29996,48646,28328,10591,26173,18065,60117,75378,48661,65824,56666,39018,77551,5718,57787,40900,58196,81525,31971,56357,48486,19356,30771,91317,65917,38481,12151,4023,62942,81760,14222,19540,70681,27987,49160,14306,49995,53002,19033,16399,72277,34869,95661,8462,45860,73789,40872,46272,21806,89732,5447,36441,67478,80454,8075,34285,32970,8224,78041,47306,27358,18320,49983,68143,38748,51903,23001,80418,40242,35049,55316,84086,48497,14632,85291,37727,3557,46844,16822,5247,46771,66237,13049,25001,34468,67509,89246,59415,77123,42940,57065,21110,95741,51611,49422,12957,38642,20658,49664,27737,35614,12415,90492,17613,33291,20289,25223,58930,14126,35425,66644,85965,27604,1082,79301,24647,41588,56315,29018,98513,14279,79454,30699,41196,16146,47009,64732,86082,82427,75602,47471,39881,2205,95751,5564,13616,93154,10945,12626,60957,88250,23539,53007,28700,31848,86320,40862,64561,53876,66547,86577,50202,98688,88124,66763,93083,29379,4842,31356,56007,13083,4558,18677,19536,54453,7638,97490,98154,57578,37280,17278,38785,3197,99246,23746,44747,10234,68328,3103,73031,34693,49489,93221,74572,94879,2939,95607,29436,23372,74213,85405,12089,58058,80776,87487,5017,32487,97057,23989,4172,62464,83712,95284,89263,18316,60264,47476,19372,62655,30101,86754,36822,98983,17441,25116,10708,36100,93253,49171,78892,81431,36768,16496,24116,97346,36417,82631,48758,49717,99910,40694,64889,80573,97747,10327,2550,91286,44897,64797,36746,60829,11251,78371,69609,32149,49961,7875,24524,8776,86583,59393,27867,80834,239,17137,54046,29899,42439,87225,13250,61024,13883,42240,36195,84531,72455,30990,52540,95367,2573,52438,22894,97882,58213,91943,7411,44210,49508,51918,20332,25483,75979,77851,29047,67688,56799,98980,12861,5951,68448,11196,10255,68946,54484,60841,56713,60128,31194,34161,3019,91667,91056,31270,17190,95544,48635,52747,8809,8638,80729,36771,18260,61575,63860,37178,58228,72217,7600,34176,53639,32861,30520,88019,76327,24447,95324,74899,9383,677,48690,86096,35765,47585,18599,27808,71612,53266,51915,77582,94332,95476,35572,66768,74714,1809,2009,18431,54195,37514,75208,13100,33369,13623,9755,1616,56952,551,87173,31441,42841,6688,83131,98165,26655,22382,1388,16300,205,22970,4956,4177,84813,16722,15664,88749,53533,75502,70807,54115,82987,12035,77273,36912,27405,31256,79897,29415,44854,37480,72364,99822,32788,41905,65883,99408,96002,27776,49101,39393,52678,8840,71276,10832,7248,17369,79602,10108,33478,31928,10336,96432,46788,93136,38360,95865,92777,5942,87971,89972,68395,56487,79361,91298,50701,49219,16430,85619,63651,55058,24875,37014,4515,2830,12028,39106,72811,2110,81005,45575,8591,18331,15977,62197,99307,69096,44234,68846,67870,85514,70432,37588,74156,62996,7552,39309,45507,4375,50463,24125,57167,16520,98341,25879,38097,95540,18448,436,34306,81439,24780,82999,61236,63851,23802,93654,67770,87623,85665,90190,47680,22332,64579,97754,55990,42173,17991,26302,39014,33837,52395,40141,11475,26895,86215,28355,47642,38545,94701,44327,79529,57553,19442,18288,47751,50972,50827,69529,98480,63134,32509,89367,16797,85095,81547,91723,21734,7424,15547,30271,24291,22356,11969,81705,91382,14823,70865,15283,88109,64251,54634,37456,37683,23306,7649,12062,97245,57392,11038,90395,94396,87020,69608,22396,29786,79036,3893,84033,10854,24815,35115,76478,65905,32685,76865,22399,20946,80223,23918,21883,38976,93979,23536,4387,12505,80918,10531,58337,16880,95695,43190,52142,13293,73455,46351,57927,91637,52198,64016,88538,30049,58255,5331,84163,55119,61499,90736,33862,855,92235,52008,94187,25772,40095,76764,99783,43116,10394,83835,48030,51507,19626,92160,76125,72062,44663,65816,30550,68275,60880,90960,87710,90934,51761,70345,32993,580,72921,73167,19140,67400,23670,48896,6985,71241,9103,20292,34681,59570,47768,64942,28247,33863,27190,76770,65048,8424,16875,92876,29144,68151,95802,10811,17198,45957,16106,13138,45417,34725,30764,27921,21847,19015,16350,25151,33899,8538,76289,13711,94315,90397,22375,25966,99827,38202,72666,96173,96546,28092,32316,62657,66973,6037,42596,21974,74076,14081,71107,69833,5861,9679,79530,89319,69018,97919,99059,15394,57626,89035,45343,87543,11791,17487,47510,16398,53310,23253,76222,59316,81820,44553,56900,64227,72527,70655,88418,63656,75200,25286,24343,91643,98110,98857,70934,99203,91362,86006,30354,43226,61939,54691,93145,13301,90361,40348,3638,95171,19259,40521,16861,95856,66588,83921,13198,44088,14753,98409,77033,97782,55010,64406,27725,7978,51816,25613,72649,98066,78331,94119,17484,30507,7743,32596,74194,79929,98310,59846,49079,5021,70035,63629,86370,4498,80948,45925,55284,21141,37987,10375,51054,32761,87977,38095,57397,62108,65861,90268,24918,35093,11876,51813,98171,54357,1113,20316,16179,54776,46322,34562,29948,95965,22011,93372,69349,5218,95645,31438,23586,79108,20892,54382,66422,1825,60056,99358,33914,69190,81806,48665,86124,78258,70768,74846,58165,47336,95078,73631,59211,1343,55315,93702,97767,43759,23790,7886,22687,4974,39200,50135,14375,20218,62180,85920,57037,54162,48871,31010,80827,66989,6880,39954,35332,5970,70510,11593,72705,32732,21431,43248,9557,30044,67005,95654,51541,57737,71024,17517,45131,94223,89791,67652,9960,70859,57107,1227,27448,75063,84242,5801,54258,66559,31249,63351,91387,97679,62988,80746,2000,33900,87189,10038,41418,85537,32759,36415,45558,73153,43500,63202,43594,12362,67802,11249,82597,78004,96186,90479,95536,50100,87363,29353,65510,67610,9896,15444,43119,34485,92232,40798,33809,30161,76633,8410,50956,31483,67330,11982,49877,43181,50199,95322,1003,25840,31538,93891,26931,42524,26607,6339,65199,2101,99208,57104,91217,50405,62234,9883,97449,29057,22738,86328,83604,68644,72896,98250,59957,14967,17136,6586,17256,79599,82443,45031,56988,89167,72833,65391,35316,34638,5461,57554,79720,1496,25619,15118,77720,19963,18850,33818,78161,64250,97741,19254,23396,74287,70636,77901,96222,87894,54236,15727,72428,86087,71405,80477,64792,36086,65008,30262,4007,54754,86358,78235,37355,23752,44520,57830,56377,51885,64930,61937,86471,64554,35418,26729,7635,86593,76001,94886,49462,82617,56729,6331,69675,26278,31131,2343,8547,22292,36720,72625,72156,1436,73246,37735,26933,31115,72171,82716,31983,66807,58070,94453,94081,62204,53258,64115,51006,36373,76545,7263,25120,82621,19380,41371,78549,10404,31549,63465,27037,36066,47779,49971,31886,30300,2628,70754,19954,86736,54339,68447,90829,92594,57047,73978,66975,7330,6747,18436,38145,52520,67300,25941,39264,79587,33366,53986,10201,88398,70057,34652,115,30086,59225,79317,25009,41140,49238,94193,52871,61704,22990,40780,175,99406,57689,93962,93738,7294,94490,31924,22299,85666,80456,32879,2868,28123,31974,7573,23329,89616,73184,85113,11141,36315,39694,59417,26476,21189,44932,14094,44040,46805,30126,96891,65049,26188,40734,82682,30052,40223,96836,90317,69090,1562,17175,45107,50187,41474,15181,34181,50815,54329,67060,33205,63999,36403,99894,55452,72082,19272,21934,88633,46873,89011,43211,50939,73751,9465,59604,60176,7170,3342,61528,34259,96117,81833,1582,91842,53362,66693,3470,52218,88876,60008,77515,29006,32260,76335,56056,14014,11161,16638,48893,37916,22064,28912,99516,17592,20325,41301,12282,12408,11296,65147,67988,87988,3382,21962,60374,99921,75352,82196,63467,24624,46239,22781,42348,89809,68308,3824,7951,76581,68252,76180,33764,25588,24310,48611,52840,62700,28530,72541,64567,35833,74511,66060,56368,37339,83933,38018,51625,42005,37318,85631,54529,99990,32095,1669,6778,96819,91146,6876,56298,51757,9726,87288,7611,46795,90392,99015,95073,6814,69753,38275,18460,64884,4346,12268,10342,70899,13483,66698,78333,4661,4784,85341,54595,73397,37412,53200,76279,87404,78741,94751,80569,7924,85554,37893,27259,63547,58280,61298,18397,74629,16362,46834,19771,23774,11814,13278,13218,79924,57567,77433,29218,3650,86741,9485,26926,24582,89041,76623,71589,38437,17858,38977,38670,76740,38298,24868,80421,85806,88131,51154,69549,1817,15315,57213,63233,51614,9358,85571,18298,19972,57800,83559,37026,66234,70553,44753,92557,4886,50255,54518,31345,27969,12776,75121,59337,4450,16335,42424,2170,44076,30904,93247,48873,34400,21546,48317,75015,16393,53270,20573,27696,20486,2625,19430,76608,79804,52896,64613,38181,70173,41165,98515,45355,54787,34949,5971,32995,90790,15957,22811,82202,4453,5464,43495,97957,22246,1857,55065,52266,48481,46824,50045,25092,71513,92978,77686,45849,2227,61477,68313,45678,90616,55314,33546,74304,13559,74655,55293,78681,1235,64733,84554,82045,71078,620,81858,69056,68806,3891,89386,13844,88767,49642,10372,21452,30528,38623,51659,89894,64110,86770,28853,97401,94764,74990,44781,5229,69311,44354,99264,56905,48362,72410,33121,79326,55552,58533,55282,39127,26724,32785,52979,55492,25072,66988,59705,54974,28468,40129,18757,32770,91106,16209,75800,10732,27149,86371,82787,53567,88565,84639,82656,26751,96297,25498,72957,97566,13981,3188,45205,20943,80561,69384,25829,85144,6357,95370,41138,16552,70232,17665,34677,78442,32667,56458,74704,26017,49247,21298,25806,50181,75023,46900,95308,8644,83306,86223,37233,11494,83124,89346,47020,93005,9140,66757,58727,46507,6489,29936,89185,32918,30617,58163,49580,89912,97194,79300,17554,584,99385,28230,71252,29163,632,7740,33680,25178,62964,15730,45612,55253,24050,74912,99929,23150,86529,71910,63262,75,77397,31920,91120,59517,1775,24419,85380,13259,45851,8329,21715,1521,38438,62595,84882,85863,65642,4703,56284,51898,34408,81598,17758,32678,34629,26582,60705,80401,19853,1871,6480,68599,96505,99165,62765,78514,13406,10231,8251,20273,90781,81693,76216,81273,27409,82754,49237,29615,24649,87791,58958,51911,27853,26805,82959,60118,57190,30311,66789,40322,10507,22304,65672,94389,47074,6078,23324,40015,31862,62697,44126,18509,53390,17422,74356,65653,81045,40720,3577,48489,92499,58841,12532,4046,45693,64405,20372,94594,59422,81071,77072,87142,12390,89053,33383,16682,87465,28011,44983,90666,56221,7607,96069,27182,99784,31160,40036,18425,74368,1445,20293,81996,65115,61741,46473,24945,72998,23437,98407,43325,91982,68242,45150,44794,18097,58920,94172,87036,98443,73799,76620,79971,91522,71219,81353,6568,20049,367,5567,62967,10900,41644,95287,12143,21808,12678,52186,24507,45999,34889,48385,32391,44142,59165,88519,67543,3873,86295,30529,46511,67467,46429,57209,92520,69098,8970,62879,70797,58340,35826,97263,81552,87636,71762,59313,11831,37638,72495,11793,68439,76080,97644,52005,61132,14378,59071,28067,41776,68288,82289,60028,493,60285,25475,34202,57958,90806,44246,60469,27834,19397,77680,73065,91417,36084,83114,46209,68612,65131,17067,16783,18268,27653,57189,6366,81516,85802,62505,87233,89314,86974,71600,85605,30133,87365,50541,41142,65066,45889,91414,1018,36054,68836,97494,33268,66366,18343,11598,65483,1132,35369,96868,93465,22362,61920,46633,19261,73660,50683,58699,56433,48697,70644,32171,31068,15449,59650,186,64629,50395,39652,73984,80984,24886,61934,6043,23599,74539,96017,97390,31086,37305,40110,79457,33832,36462,40916,81771,33379,1466,38581,86648,64743,34050,12257,60679,95861,93633,35077,84025,42937,4963,64109,26781,36679,49186,48232,25986,88601,19845,7338,87264,31419,34837,46783,90988,68028,31262,89504,40878,13618,87867,38926,23637,15625,15375,14961,60521,63386,1618,79712,3706,81436,77856,46659,57418,76926,64931,22408,84169,67627,18014,16189,76656,15741,18160,53614,23375,27404,23978,34093,64525,35323,43020,87224,18756,48648,78519,43768,53884,37633,21593,26651,75647,73990,97835,15435,38742,83651,84640,18801,79069,34376,85303,25596,94288,54659,59923,15306,78485,18477,35971,89329,59418,55888,89273,91312,2342,89243,73989,5013,50438,26659,33949,64956,63883,72026,7005,98477,98247,52453,48197,99904,80664,29151,33877,50499,27886,38639,72734,64640,77834,45234,11013,73100,68441,62852,45074,99326,28566,20378,65892,71913,55366,24403,23016,58161,93029,64562,83264,43461,9341,5790,86240,1612,15133,47512,33357,33056,82714,83611,24318,19010,94432,65657,1831,73240,11081,77483,32929,10789,19126,66617,45532,20664,50476,61936,36904,42408,11182,77588,7912,95837,44766,11727,28225,29160,83671,91407,34207,5026,94724,48949,97180,90980,5034,75507,12986,20117,6752,40927,2606,14651,15890,79974,96929,46976,61425,95213,24800,32340,19874,62435,74636,18426,38222,26737,57035,38143,44990,86444,52013,86746,64203,54436,76830,80383,32217,83209,15326,10445,63210,46266,4253,21828,42234,40132,58114,97565,81542,20910,65224,44011,43595,96491,54671,88358,30658,9016,46074,5825,76423,27790,9698,95639,24015,91670,32491,10316,50349,33109,77808,5377,80660,41336,60628,14680,70964,57470,66564,23040,21107,54962,39160,52130,26839,70085,88424,48686,18302,16865,93425,26569,75838,7322,12990,2190,3954,31317,1399,45840,19834,45321,31199,87244,73200,10324,70927,47568,45102,39855,34825,37758,30100,98591,82134,90792,52751,43010,10568,95327,31205,47171,88606,48058,46326,64709,18859,65745,69347,24161,23045,8337,90937,14346,38349,51889,1746,65708,32807,44322,22913,80058,14870,78123,52714,44236,10261,44835,88658,49531,10502,88523,42729,20163,75385,68824,88533,20852,44024,89665,13326,32767,15002,62326,3836,63132,97443,70168,50341,70575,57089,26982,66603,20845,24984,83384,61397,97689,38173,14737,19681,14844,88141,2502,93364,5894,11906,33389,10622,9346,99402,54220,79324,22959,41284,25987,43937,26241,2983,40932,21988,2634,23387,60805,73523,97003,59529,23455,81482,82650,39089,15587,79872,23374,97321,95883,6023,44182,20444,92545,57174,95782,68814,47356,68786,99575,74774,81664,8820,26,7343,64842,59744,89971,97712,71317,87726,47632,39210,70578,96674,59937,25964,49488,47057,17727,81977,88483,82529,96455,40295,88002,4302,12577,26221,9988,48301,39243,89913,69292,13712,90356,70517,12796,83886,58560,50303,87898,63702,59226,94073,79823,15034,59069,10971,74373,34003,52952,44521,20112,25328,15996,75720,50895,27807,30862,91866,52960,61030,7446,64225,7282,12585,19044,78653,89422,87932,45809,1905,60940,75989,13336,55802,33532,21075,43085,65419,96734,7729,25563,66412,48534,19366,25642,97374,20484,38004,56426,77884,82924,41457,78592,86507,21044,24367,16564,79899,26202,83193,1166,34595,22535,31579,80611,85581,54883,23244,83824,47888,9028,29118,77654,30175,78447,96378,82711,7325,33610,17802,96257,25488,78349,34014,96719,81078,53573,88754,26178,8832,44125,19115,61915,74819,6343,25921,45519,87775,64002,54443,77947,78268,77670,31697,63247,47991,75695,65481,6145,86778,87913,79018,30401,24077,69914,58640,47927,42202,36110,41838,10053,76536,63929,39129,89951,17427,4653,44938,85375,25038,50980,83763,96568,14007,66007,38584,7088,68940,36147,81537,56439,79375,91488,94011,34600,90303,42413,74586,73379,19214,24227,85130,22996,56634,40064,91496,63137,7224,22086,54683,91302,99573,38807,96696,43778,68590,26566,32817,54707,98790,30504,17531,55649,14204,91684,96474,80088,69089,25109,7084,19854,51374,164,93824,73430,23948,92942,52781,18084,99043,54550,94754,69127,8060,84551,21647,80240,65314,57982,98816,63360,80565,39842,94543,87366,99063,19309,71269,66075,72978,5102,30241,93165,47750,11886,9113,4344,12520,2846,73018,16599,13242,17781,5669,51702,71890,6912,79096,53374,86135,75098,56769,36013,66098,55612,23766,38313,56381,19703,61281,2768,43252,85754,16988,64097,60617,2750,77239,90692,79734,47930,88701,19657,98575,90928,42428,11918,13417,5978,81906,57490,44463,6535,14219,46960,77963,66193,701,79216,11909,73797,3744,15675,59725,9110,99579,41688,95317,19653,1609,76657,89719,84221,89455,65540,91526,64432,51412,8718,3352,35142,5499,81241,64422,87078,10309,46497,95222,72066,56480,52800,48211,49239,2578,87858,45397,93484,28533,68216,71789,86526,20050,90853,68753,41913,3583,76998,34928,47758,40747,49053,10510,61546,67217,9503,81512,94766,58916,18222,46811,98170,20440,28001,64699,22057,80349,87716,95841,11813,69589,20790,49147,25614,31193,25359,63704,14661,13126,37080,11848,22666,50369,17429,68444,59051,66442,67806,65114,78321,54044,22471,77505,25529,78414,59371,22968,85260,14730,35482,18789,48097,2229,77993,74191,9522,96907,12126,72123,85311,12920,16491,79512,84189,60633,72825,5312,52322,10390,85540,20499,11000,51987,12395,98877,50038,37911,9584,96667,13701,8217,49325,9902,16984,28208,40757,33679,90667,44379,97711,62451,57928,46487,85117,20922,50635,52155,10593,74520,32238,91494,40167,46764,49512,20707,98568,40430,67488,18128,88995,20000,39568,61073,39454,52226,14540,21986,19700,93297,83414,10819,93597,43114,23316,53115,69964,32679,85982,42201,79978,14078,85638,64487,13827,79276,38672,48299,87063,4,20798,37498,34673,33012,77624,87899,71814,1481,85143,25851,50524,54240,49869,37354,23317,88018,80859,24958,42761,77687,13018,6807,57865,70005,58993,16038,57000,58492,61576,50145,12426,12405,53633,18866,25994,16799,63487,18976,18634,97189,32364,94291,69343,91754,97273,51693,11702,78699,34934,2208,53019,89621,82933,92243,9335,60398,19400,64539,55558,54831,60898,20034,91289,20062,15690,65056,10093,67044,20721,73815,22247,61009,34984,85243,63389,86118,95809,89655,81508,17145,18490,11677,71439,31288,37159,48539,95870,85324,64517,92798,7847,61286,55901,83844,74233,77166,27627,99448,55741,51557,21931,29087,880,27429,73581,6165,84980,53106,57706,24633,71255,6407,57400,56965,92668,86007,5045,39301,85247,30118,45,52481,11741,85669,90944,79576,75295,11103,25671,30880,39909,4766,60207,92230,31596,79614,71859,16139,55849,74332,36681,89481,47000,80739,11820,83225,9877,97807,38997,45516,50858,30255,42652,86687,12601,69922,69325,29491,49402,46535,48077,76698,61304,57975,73987,54461,87557,19106,4982,40302,87869,77378,29234,49751,67855,97052,86708,96770,22038,81154,44981,91777,62166,78307,19482,7215,51692,37262,57704,76472,39428,52655,29308,91190,42543,4783,3256,15076,68300,13411,9496,23660,16521,85538,77513,74798,67139,5321,19088,92678,93199,46672,81721,37788,92473,38005,30053,37417,8030,57863,99792,10086,99601,15220,47859,44049,35683,6403,12743,55411,39461,78734,2521,98932,79171,18747,79977,8046,33303,55620,44221,70199,975,24682,84179,43667,68229,32741,17654,62902,48599,95066,24314,70617,58136,51227,76523,91041,92362,92170,15531,97327,90351,83436,86379,69236,98479,89213,55068,6667,85899,58648,23830,14004,89231,63575,69299,82339,34389,2971,41930,85534,90832,2495,10051,6819,53123,70418,90628,49650,66923,72157,21727,79409,50892,15953,73916,1473,77126,36488,71749,97422,20519,19992,87637,43755,4811,19187,32114,31472,60787,13662,64399,40051,46430,70940,2528,7618,59112,66487,64848,24445,75825,34143,43321,72688,66596,52192,36131,17589,91740,74577,94765,18178,62395,38223,83668,96181,58661,30681,18346,5137,97340,29394,69512,48962,54724,24383,27124,46782,98468,43666,44069,49930,51510,89853,2580,77238,6214,44399,67777,97582,96807,61906,8336,5626,69510,55317,37688,13792,11484,69690,83589,8855,10610,98922,91626,26604,84766,85667,65298,96971,17622,53491,59425,90251,70915,95005,16185,57013,41748,88449,20135,45861,96845,28193,43385,83388,21067,41673,69274,33080,58197,65129,95122,73603,271,21043,79239,90765,57611,24976,77847,45380,64951,46893,39561,88213,71832,2903,5469,61615,74257,35413,67982,12336,87293,74544,88142,70811,86724,66367,9974,88883,75567,73042,98626,46080,81742,4574,45684,59298,47553,26633,45855,11239,63084,30559,55676,42059,36291,70629,50778,31844,51316,20502,46777,45619,30414,79983,45469,8204,5328,16758,30468,245,73310,31968,48825,97062,38486,62128,92634,8649,11745,95475,80704,66780,83706,33187,16508,82505,29644,7323,54244,67009,6931,24814,67942,19325,26292,40886,30942,98545,34235,11990,8514,7580,84999,82705,42634,33264,78296,16537,12150,66456,69622,83402,36785,36879,60311,98965,75779,97798,71017,20215,70779,31804,56062,48802,93442,79359,15075,91498,31152,65332,53934,97210,38593,68882,5650,53730,1695,51139,66801,73628,31740,66248,54280,27071,92219,27836,42899,95595,2173,21750,12364,87219,89162,4692,78006,63744,8026,81586,45346,56124,85335,86880,56519,56819,78319,52083,57722,19391,2273,42161,18174,99902,34440,25415,55712,58385,29966,91420,94666,32919,55105,50626,54273,11451,38343,532,33935,77518,35246,55322,23321,58084,18430,6336,41217,24402,24823,84360,91559,92214,33361,37887,73756,17923,41995,69819,36341,19841,17013,79767,86479,87441,10703,74843,5418,92552,90641,32669,8136,91343,26352,51750,69092,81263,75238,5283,15473,42582,70340,44144,3998,85043,62496,34438,10477,23617,20126,95285,34484,67963,64987,61630,60492,14342,68051,34858,13180,69495,73141,89134,64719,66467,37826,61654,6498,61819,68904,92496,19909,87335,50545,1851,40316,77730,68665,9344,19830,43384,35395,66915,24954,6192,38661,4028,43911,30830,7992,62873,52596,49956,20944,6218,40700,33740,5992,27004,87886,69442,47539,22422,54917,18463,59789,11356,68284,63601,56268,16431,5043,10059,66316,43174,3420,61200,52485,75085,76959,85974,470,88515,97460,46681,82419,78642,18826,31738,69731,73830,2533,76665,80026,15750,62542,52583,94538,92879,82766,3788,44118,97960,29735,58153,57799,92005,78610,15406,78148,91216,14083,1554,22744,25869,39478,65077,3728,49939,18455,74005,81476,39616,85737,12274,64317,45334,28307,60199,85762,86810,77486,39457,56040,45338,65425,72667,74184,11610,87916,47555,76734,81605,17364,92223,22829,47666,26053,10799,17585,53847,37315,30870,3385,57617,96681,46304,24380,44736,88162,12620,14269,70637,62276,31386,29336,38898,32715,52175,65196,46105,37331,87076,27706,48971,99668,3149,88049,6095,83416,2056,3,3226,2807,36126,22997,26218,21048,75631,12956,80847,58800,99565,66091,73771,18492,8365,911,6960,52860,41398,21985,92836,70844,13174,59468,21357,95996,19695,63638,65361,79811,5201,89569,3697,46934,2717,67034,32780,29245,56744,29456,33948,71249,83230,47864,70627,65962,44804,18131,2617,29313,14454,43524,79439,12043,1633,38390,15285,5809,20509,83534,85119,67922,69172,16745,40701,79264,77512,82463,64910,51715,89030,2675,73082,79830,96554,98427,6561,18501,55446,24169,95592,49479,51249,87721,6303,7236,92793,4385,31093,25163,27566,5199,74430,28631,42055,63673,24598,86775,76659,89344,54247,89056,32837,73580,910,59356,93467,72168,69933,97622,40159,16325,93258,84325,61441,2055,13091,57939,21595,59100,77054,6072,4848,45147,74172,85969,57423,42172,56850,42922,60866,62262,98846,88269,20155,65961,66500,80465,47086,41593,16963,46586,10532,6219,27933,67547,9891,52910,12925,95275,28027,23327,17479,34173,40035,23517,38539,95556,41242,67425,91934,81312,12051,90232,21557,2035,99831,55502,30526,89079,2137,25164,37214,92397,4149,41608,72501,76431,10980,85685,39908,47858,48033,73704,81757,55786,35880,14534,74885,32301,64266,4297,70017,62800,71529,81854,96613,8093,76591,39421,4061,50190,76712,5996,34933,76597,52704,29540,80928,508,22054,99442,5169,97674,49242,92840,29422,70565,8496,40049,15310,7868,28454,8552,81079,80023,95589,75596,85172,78538,29919,59271,53731,54367,61742,23038,44895,1084,59928,30442,30593,68240,10552,98533,85387,32299,88304,30971,13989,52240,62047,89797,18356,6785,19363,82082,19846,66141,46039,28487,83792,9549,95026,74882,98184,65976,74760,99371,78868,86763,79470,99302,72235,76927,50644,11735,92208,7163,67361,8668,40791,63043,99663,32065,29906,22307,46193,22419,27342,95235,59430,21086,10320,34409,12320,29918,57033,38983,83505,21033,49895,29357,71688,79455,36795,28127,77461,63859,86986,77567,80950,9656,20139,81186,777,60931,62760,67501,92249,61579,69709,34879,26738,61911,39960,44898,723,9819,12730,23309,81466,61533,53182,72403,19850,64701,33790,3711,47219,7926,33649,53763,56200,84707,17398,38608,56924,95878,12754,6231,25878,53644,22725,56086,28390,94116,47719,29808,60840,4272,50581,80609,65733,3892,94326,88989,27775,17667,81475,6703,91936,77217,118,21077,58324,31351,71518,42704,84304,87272,68908,94844,8194,38517,21410,87194,8915,66824,37620,79848,83215,58848,32822,80689,55354,6888,33611,99685,44345,97671,18979,23214,22269,71143,75617,32598,22926,40949,46409,66397,56627,69403,81579,4246,25162,36000,9915,64453,16116,61564,27648,6851,33213,90685,29158,60235,20546,1372,48199,91002,37079,74792,34470,68906,22540,68301,91198,32948,62236,76711,94785,44674,40205,62688,62190,86326,9084,5734,14838,8501,96379,52077,1741,77927,73337,69094,7454,83196,70955,83771,3402,69692,18517,79736,61455,83625,98586,90145,17681,56156,37038,54827,20366,57550,37635,67945,15288,2681,92248,85929,65240,41232,64822,31449,23589,76428,505,58915,86095,71343,16264,36545,22032,69575,80168,45411,24628,75065,4959,70216,88731,18485,18413,84175,80624,58768,82081,52478,55798,86794,8699,79483,14436,26312,62819,58190,64860,33515,17208,5663,87191,10625,8304,94861,27603,16403,3999,49170,13915,113,80483,29334,68086,98467,40027,87553,90257,64498,26638,98893,88393,33393,13229,11122,90250,43014,65869,86705,76074,5266,23855,98692,14675,5325,6030,35894,87313,34266,45216,90837,10107,89133,35268,44626,8288,70817,948,97362,88327,33322,76812,93239,55309,84721,3105,65469,28673,77788,34691,82945,12462,47404,81715,39070,51118,30560,15232,45577,41468,89371,4595,89000,50172,36983,10402,93250,45473,87386,46051,72401,22166,41725,40976,26075,17181,63824,75355,30424,21349,89130,51880,62274,81140,53720,27068,25761,1053,54649,69940,53169,56612,75340,77031,44369,1864,48729,52813,36487,41008,15049,11699,37316,74791,98254,28476,93582,5334,26291,73647,49123,51930,71894,31408,96277,92267,36541,77167,81736,93152,82397,21220,24816,28465,26654,90874,70739,31056,8101,29468,27912,27763,96120,68571,14383,36364,51402,77104,7930,43402,23902,80620,96469,45704,40726,69862,91348,34080,23099,20851,47863,43002,86475,34664,64491,87946,63895,46296,59834,21575,71230,58355,45871,15132,679,92617,80883,18157,4830,50168,71548,86817,74492,8483,2429,4995,80973,13147,59093,11759,55423,45659,64212,87418,12587,13265,99670,94697,35450,7161,83912,95915,85922,85513,11943,23338,75623,24543,11234,17473,78005,29873,88560,18915,94912,44597,77872,86395,14738,49855,39214,83956,75760,56690,30851,59044,28040,30389,14759,15536,25634,40198,50532,98611,14710,36968,48517,66440,3635,82997,73196,83440,65250,3693,30,46194,63540,71468,56587,24719,59310,67201,7320,97359,38398,22608,23153,93435,14513,50421,46070,18444,67183,9185,19527,83743,39486,61154,91018,56259,31671,15067,7856,80850,52110,22804,40954,45962,65090,71138,88630,84211,58311,58869,92575,55909,54548,87374,74069,74178,16546,26300,56903,15497,19209,41770,36001,69447,43958,63542,76618,23281,18655,22659,6454,17409,4341,4184,83224,88682,10902,83753,35784,82992,25494,49596,89372,8241,71426,99709,45603,2870,29748,74298,12030,53375,42583,50917,42974,31446,70015,7543,64360,48355,47228,49437,48838,99872,57845,23658,33021,42481,94668,67984,41927,24900,70856,86214,33110,81680,14642,53015,38640,55152,86903,31459,96029,34059,85879,32010,51798,22692,58637,60893,57290,2887,51691,56478,89468,63011,24750,10999,31381,35467,76706,38930,19191,5527,21218,26434,47940,12261,38850,51369,23063,41010,25684,90266,74406,95880,75249,12822,18007,14125,86764,24882,79242,79073,54071,70417,68621,9936,32304,81682,78595,48519,81038,23952,77516,56320,88311,5475,88042,61254,62357,86162,77300,33487,91700,16948,42581,51174,52746,663,33031,92967,95038,89362,47315,94186,77952,62851,56607,46031,84127,99132,87518,46858,45972,94505,31941,83056,16664,9515,15297,74299,71153,4051,71058,82604,18049,46170,49773,18585,63497,69915,58376,37066,34220,47934,87617,74730,55070,22178,64522,25199,52944,67920,74145,37512,14925,83393,6927,92117,11437,18659,32528,72832,86956,95935,15080,21324,29825,6844,50553,97717,20753,40963,32784,36616,11343,56570,36974,41119,39250,28168,5452,57285,1679,87411,34784,931,10551,55757,18169,63657,84413,14891,67954,42868,2937,41351,69987,93015,79224,75859,67896,55977,45542,89642,64861,40425,91844,26168,34208,98531,4258,38946,3970,39780,23359,74254,84107,36302,84054,48138,2781,12673,82330,69268,29714,51764,64923,84507,18521,43365,7422,71838,4518,49643,87683,2034,26263,13251,9117,44632,89228,84309,21021,82607,46489,38392,77443,4532,34941,92922,543,59118,99330,20603,80271,60272,59195,94030,43183,57855,86695,84091,11911,8994,16974,6981,82823,79684,40745,49365,44259,72662,68781,63729,65489,6934,40731,56192,39586,40290,29078,49393,86003,51624,67961,76950,31074,69088,12760,11100,9812,60378,96618,71560,52940,49516,26539,65780,82219,4931,88355,49374,14307,33485,16219,98721,43831,56700,439,74881,61187,80787,77053,49968,24821,83517,93353,84178,97270,21013,4365,87531,92287,46849,66826,94398,12805,60801,72354,30085,23028,17968,96047,35624,50932,93173,14787,89780,14399,66898,2158,95689,23806,26446,20523,94901,85539,11455,99432,38777,79237,24078,54192,71643,73176,39600,86282,34980,77364,81754,87425,48431,18936,84147,1370,45936,86744,36227,23406,45697,75142,2300,16593,75017,75028,59550,41000,43487,68043,26769,2506,51407,10149,17114,7974,48987,71425,72068,66552,74208,13444,84350,19231,77452,8163,34663,20380,79999,52267,45342,79099,95483,53453,4016,65632,12922,84517,98699,77163,42275,78113,33045,43945,22089,66727,76860,76655,32603,56401,41208,83632,85533,3671,44177,11712,87241,53747,53069,82818,59083,55531,54559,62309,36908,73903,4976,31978,58110,73020,13573,70333,80179,385,34871,69714,57687,282,71757,11382,94024,24407,49484,38243,39686,44229,99801,22681,55326,10498,49569,18143,46224,17668,50734,98856,10813,41184,58017,50025,44615,13160,84139,98064,62672,29326,68783,6617,45192,92873,36179,77402,307,33563,55523,6788,19513,58330,72032,89625,8976,59900,57959,66939,37957,97021,87187,12195,32334,27545,36881,79015,83304,43339,28295,16691,3643,49699,42665,95320,7522,65647,35455,19285,54123,98158,7010,21490,99585,55743,47778,73780,18296,94665,38066,14835,33771,91511,87351,92914,48052,94563,84174,90811,42977,40993,87836,88328,12733,49843,38536,72563,2277,6743,80612,5852,31678,74985,90538,99213,14397,65568,1872,37814,3330,36123,41256,84385,27347,95504,35548,24063,77115,41192,69722,71651,40177,70942,90210,92954,32814,86641,95945,32207,30517,35925,34632,50622,66981,13724,33916,9179,65909,87277,80898,6171,99686,42611,47192,3552,6396,73025,67948,2269,84361,94174,91039,88568,31721,58789,58857,98799,35057,83773,63482,80848,72017,31773,9861,98580,11266,43,83046,7363,26126,95094,38735,76348,45975,49732,27633,313,54440,37580,77100,89096,4131,75609,33952,21105,35609,63845,106,36918,26099,91533,9201,45401,91743,40453,18187,28642,78126,70601,68626,32332,47156,22002,79469,89596,45906,79154,90434,47796,23722,14100,60604,58824,67566,41154,22359,5019,76337,21698,33375,93371,32594,44525,52648,83243,49257,56394,475,99746,20110,22880,85287,59405,85473,66368,7540,4622,89284,43055,45467,11585,90511,65649,44939,95019,83263,55688,47756,72376,20719,55236,56432,54131,11083,78597,84849,38596,37138,22277,43998,39076,20195,68196,79226,57695,91430,24333,63413,55296,43760,97917,85018,14885,2923,27063,35818,56756,73911,23514,99896,16752,83640,2306,82509,55801,43202,21817,25810,95348,27075,86191,99456,6001,7043,79563,88987,25452,36943,15703,64787,92038,19805,84540,88286,32798,64156,44768,47534,75881,15535,69144,67623,8633,91654,41921,26032,33149,61972,17403,44175,50929,51437,53098,99678,59284,79070,17699,51253,45608,72953,76477,51574,11241,42416,61599,13540,3393,47011,63750,89180,52204,51072,1596,68913,26977,60365,26906,28807,12749,38163,68989,2575,40389,92354,22115,6669,29889,71461,83592,52380,968,65060,38900,14179,26939,20793,23121,55678,32865,31269,64722,30927,91091,43313,83278,46214,99508,38784,91876,1929,34209,94675,72537,49815,59509,77865,90491,2951,70825,96175,35503,75210,56753,74010,26642,30644,47899,91461,37251,92725,89618,39141,38372,35155,64642,61463,37455,5320,48166,78186,40583,19007,17761,6233,75447,713,13022,9003,96970,33371,51373,79580,57754,84289,82806,88132,55268,11328,50925,40658,6205,27844,12746,37700,87884,82507,71570,88252,47710,72489,51100,44860,87686,6054,92020,58193,40415,13432,95192,24361,75853,49103,38879,94514,57674,12119,31100,69397,99953,49081,46328,81896,95470,74013,85456,64658,29314,50180,35918,22511,129,69083,18650,60930,46146,14234,96577,69487,57106,50527,37335,15524,77959,96889,52160,7061,42881,80236,51463,79192,52537,86439,41354,1349,8068,82855,86276,29543,25462,32432,30095,96630,65973,88036,28667,7793,1181,43770,57342,17475,17109,71358,95638,32101,70212,24609,86559,41616,93384,80391,93147,94943,72002,73317,8807,77277,8044,8141,7801,95494,80035,30570,10563,37,34695,91823,78834,80946,83841,8611,76189,95914,12134,56146,17024,6094,97351,73803,68564,82087,92650,95853,60504,5485,37281,72556,71891,74553,72619,180,93901,39680,75553,73348,35584,9669,61250,43371,55092,91882,45656,58116,77336,65487,11910,95482,82286,16576,88223,49455,34028,40215,50911,90143,11740,64235,86403,94128,34754,22910,20342,93404,73401,87049,3132,8751,58569,86811,9132,819,6835,82675,3649,682,18145,76889,73937,63588,14635,88891,21350,94875,80012,72854,18741,63709,60130,78338,56746,60703,43616,73038,1360,89340,82581,90205,15582,25424,58239,89544,8780,56203,926,13097,8991,86762,70467,31511,79185,19031,15513,77732,57569,51362,58550,29602,16450,3458,11447,40725,47127,72025,76896,18088,64890,55433,71158,32291,78537,85749,12448,67006,48677,66994,14340,4885,88593,57412,57265,25302,5967,34525,17724,47646,68886,72570,38030,18900,14061,47712,74419,25858,14998,92903,21846,38299,54543,33087,70116,75349,40556,921,80470,25798,38401,8041,86783,98928,53236,65576,12742,95542,24469,14469,94530,92425,71654,25624,74438,76874,70071,86269,40249,83622,70244,22342,73552,98779,560,81445,45118,15918,83762,89001,26318,94713,17404,44286,91673,30072,81269,12886,1255,77080,53919,69330,18182,19610,70481,83063,48960,89601,13890,44649,27194,60652,88069,65175,12514,57436,20010,79168,85106,26161,69409,64697,14139,1484,845,62305,23886,64103,41527,95076,99341,73152,31845,78714,33750,53189,18745,33202,76187,77863,3516,17615,49029,28322,60891,51306,76088,28170,40188,87126,10013,71952,84682,25823,16802,68575,29928,19652,98040,94747,30720,11314,22595,14735,72981,54448,13426,21224,161,51300,92236,57318,87788,89388,50231,30798,90161,67925,28153,77286,43709,44185,14013,9432,25011,752,27099,37892,91001,97860,74671,26103,9334,68459,38626,91632,26462,1162,72658,41963,26689,18899,39928,19766,6610,39303,57971,88180,96699,90254,84266,11116,94260,45283,54369,92672,1024,70562,89891,17647,46595,73710,10211,9867,65942,43708,51638,11257,23433,19463,85495,57057,3748,11046,86144,90376,98987,20689,74264,2736,78175,60762,78277,16864,19713,14341,99151,6305,4190,32591,85433,33029,44469,1613,86996,87419,11361,37479,80749,18201,98020,60462,31139,46585,49805,18116,3585,70252,63307,16807,46863,74348,17162,62521,7613,31566,95313,90745,79438,23076,12254,74737,48975,54300,87608,40019,77263,72491,48849,1434,59539,41498,94938,24710,74982,73730,9792,44241,32221,95615,63322,47067,83775,56237,90290,6142,10070,70261,56761,37810,18139,92820,85298,27040,23155,35664,12531,77159,2741,62558,48771,95265,59936,48854,94109,93294,93355,78739,22572,74634,49863,36595,26441,15391,46718,13678,48561,17100,86360,19541,30576,12973,85125,52659,24036,32268,95196,85400,60567,22417,60317,78167,6393,54889,76544,84045,81138,48158,68173,78064,38598,82872,97073,15897,16719,19667,32306,68976,50832,18604,28609,66168,96247,53181,1183,13403,6017,88623,87909,18759,56179,11827,8626,40146,7213,77642,46690,5993,29601,72679,36608,50281,79858,9282,8838,38790,85082,83301,4142,35922,56152,44138,96999,66978,26080,10570,14005,84456,60594,98485,84392,87970,27253,61583,78000,32809,43990,48252,56455,76516,13690,77840,37581,47607,34303,44913,92559,22379,57725,91090,78772,40406,67445,25052,91191,27101,1061,84601,95559,80434,74550,44239,62287,32444,4029,13884,31783,36514,61489,21938,73445,82099,23262,42678,5918,64117,39603,2650,86462,41222,5598,50782,75708,22777,69544,63522,45782,31366,97235,74718,31639,58570,93451,7469,11137,99722,26236,74970,32401,51484,89737,37563,82076,69612,67765,84115,3477,63991,27787,68126,37546,29693,2402,42132,40744,82252,44481,36090,82300,37833,88154,9785,66888,70503,96242,66380,61783,95116,70727,58097,75878,73907,54285,12312,51808,4815,37822,64310,56708,33401,30398,65195,9473,47844,46645,17077,55498,21445,7433,28943,14873,61931,20404,9979,60637,90813,85941,47198,655,66897,52768,92145,9310,51156,81655,90092,2759,21290,3992,35103,60516,48510,51045,60610,89430,11559,58274,26831,61322,72015,24079,1847,47410,9928,77852,42644,58449,53192,94486,23173,38099,80766,65353,29174,78687,79735,47041,52114,15905,2518,92395,30580,88879,28146,4092,40950,48212,68337,80337,9650,78193,95857,88125,71190,42258,2967,86322,40961,46154,97447,63885,90591,97457,72231,77381,9625,50988,86616,5104,64758,78068,84080,39923,27945,89396,11113,61814,88405,60355,43854,14828,40671,86548,80761,9092,39114,79246,14711,85497,66881,39966,87080,12815,71685,78754,31277,70590,21981,31834,94870,83240,49667,71259,98196,14035,61483,64933,6693,32431,4565,22741,36346,73655,78536,1057,90612,71331,46334,74035,49430,86960,83160,6865,34975,61085,38131,69191,94889,39349,14410,53074,81565,90285,79571,17600,44777,35835,91393,66289,38805,26452,99517,22897,1403,41760,34524,22438,88910,31674,90470,2808,74364,15702,13550,33514,26506,33509,73434,80637,94345,73846,20006,20186,81119,95932,53097,73039,62646,55736,53247,38505,38211,2936,59097,61933,62552,9379,68027,11105,55591,45703,28677,42895,96664,30338,43253,77102,93831,14293,3797,77089,83915,7414,57134,5244,98193,82804,52487,18959,7498,25247,5934,28923,68552,36763,39074,29203,20092,62209,53651,37362,37536,1837,26880,34446,35707,19253,67828,54140,78909,36515,8570,48170,35801,77138,8100,55715,85768,93642,14457,94471,58696,80960,83881,95472,1112,98262,33588,87759,24926,26508,74528,94537,50322,40742,53340,4551,66742,92391,68915,76152,18807,7374,45748,70997,972,50921,46308,92009,10218,38427,5897,98818,86953,54000,41781,87152,41361,72422,43001,20548,82043,93399,12806,81033,78570,23424,13099,71387,88512,90588,72075,17700,20090,53195,26861,3894,740,25763,69847,9006,79256,42570,640,78911,73595,41290,3567,96902,24914,36333,64055,91566,70285,86573,91940,17042,99095,12255,93530,36128,68429,94550,57724,84367,3664,43611,62038,46331,67670,41900,89424,26335,21621,3424,4560,23257,90012,62199,96026,83520,40445,53447,37477,12605,16613,21455,47983,65385,39119,57671,78736,9516,91074,51620,40904,6200,82062,41099,2928,96161,36987,39159,66153,12292,32819,88507,75362,50882,64913,72872,59471,65456,36310,70369,77682,45061,57729,20647,98708,81274,79631,50730,3771,22548,29836,47877,70329,17783,24607,38371,5182,42520,2693,79649,36284,60495,99211,60357,20795,23968,73124,63727,33603,11761,55914,89449,24736,6304,57376,98307,78992,61796,49800,15680,15014,14834,66077,27712,15343,23089,41314,706,36243,3179,25783,86173,32869,94292,26243,26136,72301,47747,60523,30301,95824,65170,30835,44004,97907,34107,74202,1590,89677,3595,5641,27708,85229,34439,90918,53555,9822,27679,92519,58269,21841,86932,95335,38160,60329,55305,94086,93970,54528,46875,37267,52559,88649,66014,68184,41035,73017,23417,11567,79285,18964,19066,65704,47185,99992,90075,61460,74376,76341,96240,15655,42913,34566,26389,21207,89630,4969,78627,80005,9692,9106,19691,46807,74596,66187,96320,86438,81060,74427,17986,99231,49078,76489,47040,53819,62506,14334,59306,54587,57313,14456,63156,37738,51078,38047,71470,60923,29076,70893,78532,25745,8883,64295,29595,24069,95655,41223,74833,528,68560,41971,55756,77509,2938,52203,99383,68900,68943,68136,31636,61885,52321,42545,96390,40804,92381,19040,91692,46030,92934,3036,15650,24572,62814,25892,97399,96764,55889,46758,4719,93512,76490,56674,86104,9506,67683,38346,27019,32141,18914,12933,41609,67513,54948,73798,78697,96081,10774,72949,28583,42714,35673,59510,82124,73808,94394,78015,93742,65005,41133,27717,26666,55964,52597,17701,18243,46833,50184,62664,6537,49856,76329,23414,32913,66937,15684,12717,50203,97240,68211,76018,70653,54457,23650,38297,29929,4504,96152,55151,43209,88662,20180,18449,21869,36638,13832,20285,56392,22652,35648,63570,24366,39498,40844,9548,49222,19810,52605,48181,5720,22999,87389,48887,85471,29841,48884,52379,73791,69905,86617,78283,66345,98354,1899,76014,14639,72424,90757,27343,44798,6714,2397,69648,61251,17069,22197,51263,38445,39739,64647,36047,66229,49969,72286,6061,99372,52179,89648,51185,11223,41525,29359,26435,17047,24558,15633,2672,59098,24940,8746,61886,50907,82277,246,35938,32904,78292,24810,50763,73345,95795,6938,22787,22794,96124,36805,35850,55206,33385,51461,35867,31820,29594,15886,5368,12639,46325,27748,46798,82926,90260,95981,63426,84620,47869,73185,92998,68658,76145,4509,78883,51169,95840,97523,21617,45779,93626,36819,90785,54074,62565,63421,94327,93846,74736,17331,13389,81632,40487,3100,7429,66943,9749,26847,11917,68797,12060,74271,54983,56778,11271,11021,47498,20127,2141,33732,38760,35557,32430,9187,53083,79284,90917,89769,55962,75316,36848,44392,26348,34743,83689,89687,6887,69907,47735,64626,11890,42776,93559,42859,31921,64479,695,38465,68707,58092,75891,69046,84218,99674,18705,20374,64598,86881,14887,22722,30641,44916,13352,72359,85580,71028,56684,36160,36790,26068,31402,83672,82024,11603,14625,57867,37111,71472,52785,62809,89353,85910,34233,49349,87646,52176,98764,10169,63892,16084,46263,92274,42681,63906,54752,13300,67734,19608,44689,56516,91365,67369,19041,97252,78607,30794,15131,34848,55372,83805,63931,35481,21484,92551,86769,24068,35044,15615,95766,57321,23094,28145,47979,37716,87089,3846,14084,72309,83663,90478,58042,99090,30451,32474,62394,31757,79218,7765,14358,93924,51726,17218,61097,19428,9493,20891,47305,50675,24826,19794,69934,15454,56332,17485,9085,95114,61110,65384,74900,73892,54217,45655,11806,50413,32019,89395,31577,48540,73233,42116,34186,77489,26293,51971,7012,99729,65422,79687,42874,6916,66373,45418,25183,39731,60316,9782,78584,32061,85695,80985,99925,18250,45095,48775,68426,28456,12544,36215,74594,15122,67182,25207,5051,96519,61422,60313,31028,80186,1123,35631,9574,91779,78967,6748,37122,48416,33700,86013,63529,80098,97238,97981,10029,10280,70774,77878,74935,96073,51247,74246,54976,64108,65219,55037,85518,72194,66441,38212,43311,83341,30069,33673,36765,66213,48760,39877,34222,19395,56795,68598,51838,50468,49396,1432,47507,37876,45437,10298,17366,79837,13019,64369,56102,52217,38673,52310,12666,5927,16554,12406,12632,2840,52621,66822,21084,32159,8425,85730,33249,54151,12242,45091,52734,98852,95081,33280,50721,28904,20284,66589,39443,34607,69972,48709,93843,97016,71465,37474,71842,98102,23346,44421,69985,84621,74107,57677,13959,78082,61365,12568,80562,82632,27403,12171,90122,45606,98795,22133,71032,7120,80368,88048,24339,38006,20446,79273,48203,46128,2330,6034,53166,31209,71463,50962,34297,59250,85706,86380,12769,74134,19750,81656,8615,78889,6004,92726,52349,30761,18632,74400,8833,86879,44299,3272,61359,35240,2109,87410,77203,17921,19326,83421,98637,69309,53502,89118,50818,3579,18787,12771,25291,44574,56650,50511,3804,8513,70123,35574,86575,98405,60488,75375,98729,44512,75164,94151,87634,4340,49097,81041,21936,60655,5500,57947,58891,67113,20871,30849,81510,69580,33754,77331,11725,94411,52213,62861,70382,99276,20882,10120,74421,78633,4542,70050,2912,66867,60571,14271,2612,78369,43024,4310,51524,91534,63061,62469,9670,40924,67202,57076,23702,5253,92187,86329,18568,98423,45968,33822,72673,7131,83768,5617,74592,78965,91240,19847,7461,81911,18586,44129,98694,76157,43068,90953,69619,37291,77183,65312,55294,48348,43887,41991,89440,10182,17075,39975,36736,67379,5824,63067,34278,41112,72852,49779,48803,76605,81393,3708,98218,87016,45794,45300,66405,31420,60466,15252,82250,93994,86592,6593,33857,26061,31175,92654,55870,62316,69624,36312,84005,24645,65072,41063,53392,13503,78380,35046,89756,72484,42749,26739,41014,13011,48577,61486,63985,49075,20338,82474,4191,77869,56184,80844,4539,35741,7003,30352,63416,41485,73541,39929,10990,56430,41062,10216,36069,69200,77793,93747,71163,57565,81349,18519,97505,8291,76229,54894,57710,57310,41553,75508,74016,38540,24272,95641,27339,20399,90168,62740,27402,56116,61751,73343,5522,38399,38226,32087,86150,874,25972,61560,32963,78898,87567,92988,51967,49523,94504,74615,97949,94316,27212,30832,10651,48293,87047,98069,90902,97815,18985,93257,57748,28936,93929,73910,16101,75771,84756,94014,74315,19067,45544,343,69983,60845,64799,96080,12750,91150,11870,7858,50039,58229,64461,82121,98312,36792,44770,72246,30238,94974,99635,76381,18388,63886,48375,41407,18751,73538,14789,66675,93113,7230,96310,21133,65052,50954,52777,1663,39463,20253,55386,17440,32803,33309,40615,18061,68699,82542,41622,83333,38062,4012,96138,66839,94066,92541,24901,83329,17817,99752,8074,41558,26361,94279,41446,96949,60068,82525,90664,7848,82147,69185,77938,48649,28877,89221,16729,68215,52724,73159,25549,64199,35593,22895,42975,19808,19515,91078,78481,96395,78354,86833,8426,76230,29801,63494,27398,23241,90225,77842,81521,96758,659,52441,24197,58257,26486,88461,44216,35821,18977,96525,61661,29671,88426,44467,10932,84051,23505,47943,95096,83952,37643,24931,4326,61826,76866,65645,23320,70756,90804,28017,89694,28991,73227,5619,76538,28850,24706,80056,52822,81928,55751,22815,43527,38860,68384,61841,28908,73539,27563,38591,11679,15813,83064,68460,77285,88763,15085,45096,75616,77638,15301,44167,5603,145,49413,35496,34030,57853,14028,72406,91575,54385,11515,76298,91306,25508,84989,7021,50996,69750,68299,14417,50743,76034,37545,51713,64638,52749,7950,54242,85516,16586,45292,99554,86307,21328,70294,81157,95013,37373,24436,94558,19552,21876,92933,87278,66507,66136,16245,57012,31319,58072,71744,97651,37464,67674,97403,5172,68572,23464,61060,46845,96778,86663,23921,50941,46023,67476,5540,88105,80301,38225,46011,58207,64971,26853,45312,54723,61598,16327,39831,63966,61268,90481,23541,60381,29461,19609,54433,3079,24237,73902,96243,62428,31121,36340,64302,34838,91915,95452,90615,25594,98395,16331,99665,42559,40045,94818,43353,7216,67211,32960,78987,16583,34640,99906,95885,81050,55674,95065,42618,59784,66650,38158,99332,5359,60052,62389,68508,99181,72398,83362,24121,49577,32698,28604,82102,14174,75556,46205,77215,17418,58268,12386,16994,62208,43850,25793,33743,54042,82335,55142,16894,48111,87073,23353,60642,93489,74012,610,99695,1963,63530,15592,93062,38664,85435,92343,61992,20022,40393,93598,78641,71572,44285,52286,26204,32668,84276,80473,50411,54101,40953,94557,55987,23312,19807,65173,32270,67962,26540,74227,55103,87766,89774,78572,56485,81934,29907,47463,65281,94383,93202,11069,64085,58995,9292,54802,17752,89102,68462,72353,9673,40529,68960,31890,57576,13350,38203,93084,17073,36157,5108,1740,91000,58047,20961,34268,29267,55775,71497,2203,21672,89691,51533,25403,4908,21667,56538,46397,21093,87523,83247,74706,76111,63830,7753,94013,70149,26417,2545,64221,26696,89498,21772,44956,12038,93736,16776,53367,40609,79637,48391,64808,9262,91057,38208,62908,75976,58677,48617,64652,81490,77633,72232,19377,78001,66353,80129,42645,33526,74087,64107,82117,57849,10418,28955,54964,18199,5068,83273,50820,79819,17438,16173,77020,96396,90783,33301,62110,21275,27293,78679,37949,71504,8944,747,14051,85111,31041,15345,91660,8293,2835,89921,7052,82912,90032,85120,65564,14507,8804,94113,22226,49086,33925,69441,64395,87924,41652,37256,81939,97771,1503,13602,83291,10449,13615,46640,67089,70081,93357,59996,34085,33123,62041,41541,49816,41159,22851,23220,43671,88743,89682,20150,20080,79792,45251,81807,2682,80530,66225,13987,18074,28149,63913,99235,90966,93772,49985,19411,57364,751,43941,51296,41912,69988,55155,31656,33164,12545,25434,46316,81523,13514,2008,19018,64548,50526,91397,11542,92383,3696,66689,92747,4979,4862,12020,71141,36516,32098,91576,49637,98774,31424,52200,59575,90163,47472,36666,86253,82703,8803,72048,33454,45551,74638,35166,9919,30945,44023,46155,25732,6791,35976,63275,58241,44310,71823,63941,14932,83658,6085,6021,53984,6933,9415,76566,16748,71991,63088,69160,39794,54866,766,41473,70920,9494,69427,9377,65777,95805,58183,72911,72092,86352,45449,61940,81467,19021,74073,68048,49928,76103,16437,60720,52565,52575,17177,77198,87435,99951,18792,83435,25105,76167,21766,10689,60520,55489,77697,53821,13340,96005,76786,97743,98937,36132,26867,19887,35026,54922,95274,77471,13457,95900,65791,71072,6080,98549,74333,55495,40565,53245,15569,54482,10064,79781,4910,56180,5180,57651,20008,2253,94366,32612,99975,381,82239,58567,23120,47279,81151,68623,8429,36662,12287,79328,42908,25747,37001,25373,43892,82837,72542,84642,15591,66852,21374,86361,47261,984,21268,61215,14085,75413,58764,73671,81974,39105,45702,81822,61393,3066,79746,12349,32392,25254,2970,252,21942,86913,68424,10054,17762,26688,27710,30028,28104,27395,82824,76875,15398,94720,81964,10982,84772,80779,89031,59818,11864,61798,11120,39829,41134,84541,51572,29968,13370,35756,9121,68197,1924,98909,34690,20670,18027,24848,99948,92024,75136,28944,75861,7764,91059,22567,7990,61496,95672,1763,92995,66918,5780,85781,6877,84506,71875,51318,36695,7851,75453,73108,81311,19437,69058,43348,38110,68664,64303,25683,52696,18080,59736,84149,4768,89629,56408,23883,29405,74548,21379,85894,23468,72941,87473,27957,96013,4600,38496,97067,84807,84268,72321,87945,49024,9832,55510,60874,94866,3279,84256,82016,77669,41366,25068,77407,68581,14180,68411,12778,62397,8362,92348,33211,39098,21231,90347,17582,47982,85025,95898,3303,20920,2297,43480,46378,24568,60089,79136,40048,46763,86765,96446,70683,16301,37299,42209,14869,64725,44075,25518,196,13003,88470,71769,67951,38905,93627,43392,96911,99045,22154,50936,31080,18937,96916,87804,46231,71466,16349,68038,58545,75740,21104,83859,98820,9794,9063,76696,54750,99050,63998,72835,9461,5433,73610,50610,79745,8264,5536,75091,43234,91950,55012,8606,24849,50217,55770,58007,32921,41289,3899,3922,38490,98347,86129,62463,74871,87827,85180,13145,97502,77125,8199,27827,12069,1303,30296,71750,25400,20286,56154,69383,46317,76208,4975,95282,6974,51919,42027,61813,9044,61966,85385,30303,96564,47973,95028,83686,60109,81725,25514,15715,10186,9129,94585,43528,394,64449,40362,42824,47288,52941,64402,48491,49018,99834,14283,94494,5384,17245,7943,24867,24179,36244,27446,3232,65434,93576,69117,39847,77173,58246,58919,1672,31557,74185,52208,92679,98768,82465,87606,58734,57461,34498,10468,35419,27274,74644,58823,88905,67037,815,42246,26590,11829,31096,88728,29232,18481,71175,96501,4843,92911,15967,33292,87914,30383,16723,89255,20513,12962,82180,73265,47740,99727,16058,34149,78108,28234,67249,88408,89309,79473,45952,25149,78856,92564,29286,28162,50032,8550,71220,56042,81706,86498,30532,47100,99081,99946,71434,29507,86467,7313,6907,14695,37930,96762,8576,65906,16133,49783,12842,3542,23123,9284,50425,179,36807,42608,15342,8453,67398,39630,50417,75048,61782,68307,73429,95863,18472,76389,97695,85347,58683,9300,85192,75130,57892,56028,54094,36440,16856,51230,1894,62737,87263,44635,13880,27949,21814,21369,37505,1710,86385,91158,14332,53286,4696,14662,22005,51393,66026,67989,29237,71911,44036,62511,54767,37867,21503,11710,71457,16177,49341,70406,92367,16735,14569,89536,49583,27216,26111,27419,9817,91862,70593,24305,2411,73028,3469,53376,95252,30803,69115,90846,42309,48319,92164,80478,64831,66929,79472,46421,37832,42252,8830,47422,81755,8889,97630,71379,55108,74931,43267,40864,70826,75342,41607,47908,14663,82665,39698,9173,59709,72770,20041,33391,22167,30793,10152,89910,25056,45009,61670,19671,24851,46343,4437,78941,68468,54911,2847,45354,72601,31603,93415,50780,90910,35981,86170,60939,20617,83459,85498,35712,24189,92858,39184,81704,79995,40619,32691,26119,58705,84830,17980,61067,44012,89856,11700,53028,55273,4583,9390,97368,55442,45967,5908,96426,58534,97011,97218,60641,46204,7472,92877,22290,73380,32766,65875,20998,40941,27802,80085,20727,30569,79040,72442,61171,87298,74149,14404,87197,72984,55030,31914,818,89688,51603,74876,35685,18908,34364,22955,84709,61638,51928,20264,7162,44064,89917,19724,61628,47312,90578,15424,9635,30640,11962,10485,67694,97138,9638,53131,81786,49092,53197,71984,13658,71922,58403,8405,85710,15472,86914,29122,17979,65713,17430,29792,8354,16896,50382,20385,89161,79569,44944,74958,36776,50223,56100,53898,95241,65993,71698,68645,74645,79272,18822,54564,94582,92421,36842,19611,35071,45630,44578,97145,15721,88680,19558,59970,55815,21345,16131,9114,52348,50995,64830,75037,28753,72644,87228,81915,50248,39255,67207,45459,38901,38669,75595,10920,90490,82903,76366,77111,21583,86962,98652,81473,35948,1824,19213,2130,45077,69762,23777,88028,74267,35050,86760,74169,31433,27183,2964,38744,66798,83254,21718,21023,78394,86298,64965,2948,70873,62516,14282,38454,34651,16555,94378,48009,42577,68501,91727,46355,90952,70840,94488,66207,76388,92119,16971,20588,52033,3889,44855,99625,34894,75901,67159,39179,61905,69124,45660,8022,6374,10466,34192,35543,35039,44486,46033,85776,44556,3228,40817,23726,19297,80924,23532,33446,67310,20705,29083,5105,72466,79520,41270,62202,37439,37937,68516,91113,59786,60515,72732,84803,95393,61660,68373,59958,33399,44332,18123,67247,31645,42483,51171,55760,24124,39422,52728,33943,90983,10068,65377,28360,12309,6349,23097,45101,80531,66719,34105,5691,50637,44687,17515,1404,99243,5491,54815,88761,30819,92495,83374,72664,54319,68277,13925,77279,75735,29696,50834,92607,64416,12081,37210,77210,98044,52817,22995,34738,18960,28799,53758,85428,83262,45139,21485,6724,99086,8865,47406,95600,23466,12950,16311,9761,67199,87067,60847,50063,69539,60684,87624,66220,34338,41919,50115,78759,97522,92286,46520,63228,84969,5037,35097,16737,87235,34232,7013,50423,35998,54995,46270,22505,98211,35436,46552,65310,51322,16585,52055,36920,80878,26641,61414,45740,52789,17553,85856,31813,58962,87937,38864,52422,48265,70044,23456,43377,19403,78804,99351,30232,31311,96563,76414,9745,94158,98314,13346,65259,5315,92313,5811,81252,35838,84718,347,78166,74205,56463,86714,37351,69250,5789,14871,21549,94580,24378,40228,83596,11587,69138,5810,77226,51755,44941,78406,15796,26519,21425,60209,52482,42210,80740,75966,13040,72567,38662,29654,87701,36077,6476,21929,24304,68693,4794,88158,54434,63847,10441,71091,30196,40034,46791,13532,66494,87529,57177,90164,85989,12480,89933,95316,34398,67727,82936,204,67428,74956,8143,88504,31810,48388,55201,34552,35253,41266,89611,89554,27357,70751,76177,48398,47296,12036,91898,90477,96900,64267,12660,48934,16592,39782,50682,7298,77623,67530,23561,22795,9070,20955,49924,77563,65563,18590,60783,21612,43795,11066,17827,21301,49646,85724,80636,14245,69920,26617,53685,893,22127,50439,9724,70735,14817,66103,55861,20131,78762,48783,63973,99567,89336,12006,39713,10292,88098,82802,88380,99207,710,29902,95553,90226,99931,8781,51351,72317,21016,36030,92104,40835,38051,29299,43347,26072,13726,98975,69395,40845,32763,40767,20221,28237,73249,33574,84239,46935,3024,27758,67261,90241,72786,56270,85859,97472,25219,8133,44422,38520,21627,32107,95048,24348,99058,83261,39696,78342,47685,36982,12107,57834,93406,19301,79151,78824,16429,42468,32078,14990,14133,61724,45722,76072,5709,41684,42280,53460,88267,99487,62352,94603,30801,28182,24739,75429,67990,33405,68076,41034,40781,11632,35197,19871,98554,43694,78585,72699,1174,29050,26382,90568,92502,63812,31321,72131,97232,90642,49211,78838,21584,35797,58769,73868,2382,97527,12894,23986,36422,94480,96653,15461,69042,88733,10488,77120,61973,80795,12727,21135,52154,88911,94278,13500,35917,78749,91640,65952,92111,8907,7106,85576,10599,26828,97685,68737,38192,94037,1631,24120,41967,61449,41264,81727,83817,8518,27745,59941,30016,80524,42844,96685,56068,12106,78451,38218,93327,88768,36281,85885,77035,45316,13128,32593,11075,7636,10362,38252,51133,70596,40722,1928,21240,53538,83045,17192,9702,28956,65278,22763,78418,54483,6929,54141,16305,67879,24241,64896,83565,11448,60065,55323,4941,94360,88330,7465,54651,12646,40828,828,73326,914,23291,19069,57682,50297,47925,90931,87057,73395,44214,98697,28946,25081,48337,65927,52103,74803,23516,48527,24429,19502,1069,17755,15460,66872,77130,49609,9538,97448,98837,90678,89590,78482,48654,53404,72150,71368,80659,40713,99100,42144,5781,45072,37903,97923,35980,32168,80294,96020,99308,18496,97516,22368,88159,87421,44560,5122,41023,40060,24866,59261,60561,52588,92880,57191,39025,88576,26615,59972,80104,88974,68340,81006,70076,98971,72766,80777,65032,20084,5795,46095,53357,51649,57329,46838,6830,31323,56959,88577,66721,62739,37041,98168,19975,96146,11350,50588,30968,43924,68140,28387,88031,13521,17807,73311,55187,3645,89928,46962,48184,94812,58509,95528,38191,45509,16814,66059,44197,71433,28696,46257,36491,72394,69980,75822,72959,1548,24753,12875,86203,80009,28309,87738,81122,51950,17131,51548,13969,68700,25481,41092,78829,77936,66530,94880,52936,33657,80309,85536,47545,90595,55895,48797,83750,19426,10870,92240,68551,37495,69491,3373,48763,39047,97548,82054,54165,83858,52304,45545,93048,10243,55633,97930,69586,74578,29256,96435,88148,78688,45140,91764,49802,21116,57812,32352,38831,95246,34471,42889,99241,3157,27932,26818,57595,10293,89820,98913,43154,80371,74442,59553,88537,30736,70963,91345,95251,25937,13380,88335,49811,22619,42388,60114,13451,33921,57135,76346,39409,71912,21071,34708,67338,15602,38722,25460,86660,48329,79385,37420,5149,83295,30503,74460,87621,60091,3946,30376,29291,22500,81291,69082,58745,90915,18203,24156,68249,97510,23073,37988,45082,67413,87295,34305,48526,41977,42733,18144,87833,11781,18806,27136,49660,38645,2546,89187,73972,10141,14127,48484,49056,88624,25394,15616,31612,75282,66502,59832,48876,55967,87662,74573,3657,86952,67436,29726,68890,48447,5904,57752,66401,90396,78348,44909,70092,54540,51228,34328,32344,51525,11327,94487,50434,54454,74759,97452,85030,45743,80835,61092,26430,33968,64770,40455,76973,19413,18075,27755,60222,45536,83729,39245,95735,10742,39979,55245,11333,263,2384,44976,97599,53338,6206,69204,54390,37303,57056,17029,25419,35887,4795,75911,65200,14453,6383,18917,84114,5658,64665,87132,7195,71310,56830,52793,99148,15299,21400,16377,84406,51372,89258,84469,22904,79399,57314,56149,90542,39941,36216,81532,90543,77028,5804,9453,40452,90080,39430,24857,53071,32237,32258,80855,76934,36641,2664,85073,83774,29985,14615,77235,67628,47846,7259,99450,90614,96071,83345,18421,1853,63674,21462,72314,87402,30099,26716,95352,43438,80919,30020,29033,89029,55643,76475,44550,50359,77376,27335,323,73758,11940,3669,19883,85184,57966,51181,71486,45829,82362,3622,4250,46944,53673,8779,27378,72561,32696,30906,56094,40534,89591,30577,64131,1215,88307,40140,34915,70172,28361,3564,37046,30242,25799,20481,83274,2996,96936,49715,44929,18892,12685,40748,82477,69903,31294,4833,87379,95009,30951,24542,72027,1047,71335,19943,42290,15293,97915,84651,72383,35274,19019,2955,32984,22803,56568,86965,21850,31473,75688,17370,24067,45451,74952,78211,2763,43775,64490,80382,43618,67367,64003,7109,62768,68349,65210,85210,1060,80925,8890,54088,12301,73219,62722,45624,55397,54471,54546,38627,22534,86011,30714,70323,52631,84216,1204,86805,96717,15849,49216,74147,37796,35288,42136,55053,43864,50017,58724,68948,61955,51150,54905,71128,80007,59909,39124,77756,71550,27138,91729,73999,50630,53070,29903,70316,26156,86174,67713,79236,48906,54701,16786,65118,43493,44884,88494,26403,65268,185,84701,456,8529,54055,81477,14890,70863,49000,79604,33448,63211,19288,41989,26570,7634,61072,34821,99859,95305,67539,44222,73117,43579,83448,61858,4426,94139,83026,36687,12964,21824,15821,1030,49696,364,61490,88029,19939,96326,26836,5492,88788,49884,23039,97125,87478,10252,59029,4279,24902,48943,61077,27449,65172,46447,49693,16275,2576,89170,9130,38376,57282,49373,15901,32174,73061,22636,69049,92996,67996,44572,37807,46684,90838,9893,66673,36072,60662,37481,23611,54387,35844,98294,45069,28383,56442,78728,32978,56525,99991,86968,94639,92069,5060,94082,59255,30986,76555,69573,49521,66656,95115,74793,74018,23365,33969,72335,45822,98539,77224,53765,32818,64632,11346,64851,14345,67270,49208,67446,95722,88693,49137,14322,54281,48022,17185,18352,20969,57080,35427,13153,62222,42255,92252,28809,2611,25322,66376,96497,29215,88899,42459,75333,58293,50905,30212,14066,39104,28721,5147,79691,15825,67130,52670,28263,54924,82489,12419,48982,87145,74446,64290,93606,44577,65181,38726,76525,88781,94482,84534,30261,81994,51157,72186,61861,30752,70630,2144,95997,276,52878,15294,30071,2505,50,69372,61582,32360,25838,35200,20304,1197,84284,47628,48328,41115,38114,9361,25203,18872,41059,79133,77436,41356,3306,23284,2059,50943,58894,39406,65336,56719,52990,70946,32182,13512,75562,99839,72950,93570,64381,61946,77015,92130,46187,40704,32525,73372,35238,83970,85862,84794,53532,50010,56681,41711,41801,68541,26971,3793,20319,47282,99706,92266,45302,62824,59272,5052,24557,57003,92056,683,2949,37959,86434,66128,50005,21880,56279,70728,83135,65644,67714,76062,29231,78209,33079,90069,93856,2814,76458,17152,62393,54322,28324,44287,94728,57561,25331,12121,69958,52467,62486,45611,99414,26685,22599,9532,15537,77982,40026,75618,31824,48944,80273,47434,38320,91747,57085,74357,48202,32778,40191,85049,21488,3511,37744,28311,72708,59282,67194,65949,32000,49028,12300,58453,28634,28527,78708,1335,24110,62487,42135,85013,9687,38524,69736,37120,17259,61408,63333,81492,58898,62112,6448,20607,86402,61797,83591,29435,10919,50727,52902,86342,65402,31621,20423,46745,2510,74040,31554,60414,54172,7094,86972,94586,19997,86293,11904,2927,38323,85278,59878,78956,7897,85296,36062,75185,45868,91718,59582,61605,27626,14266,50896,53053,70965,57354,26129,40622,86175,63106,70891,13866,50719,56581,98726,63348,31714,51198,58374,87584,72211,94150,50803,2641,84404,52032,94335,48957,44224,4918,6193,79774,17334,4687,69978,87729,54497,36363,43955,88610,39528,28291,44782,23111,75395,30788,55767,94127,5003,73460,41699,13635,61223,78991,61718,75870,91058,93898,70165,93528,18313,46310,79859,77249,8630,47760,6083,42361,70872,57145,88959,16467,5683,76624,33052,6452,14744,48922,8955,97984,60292,58096,98495,51516,28739,26951,94241,31960,87748,48193,77990,45241,10260,10803,20527,57813,40270,47186,22480,32369,47745,46977,84669,55614,249,98712,81674,96232,83626,29401,63654,84228,83223,41268,82127,4750,79474,43704,48511,16382,95512,90587,42489,80667,15790,17975,9962,32367,87135,60517,97533,18012,52360,83424,60302,32792,59203,11485,7376,36701,52448,39392,6122,38835,20346,84751,98349,21791,38059,80376,54653,56348,10430,81175,18146,30922,49406,45450,78484,78285,49224,8202,50573,70155,89529,76042,13548,65241,98152,75974,68183,93591,25377,56737,7107,7536,2305,5678,41911,5327,55597,6227,48480,51913,95382,33047,61640,37560,21326,43235,90752,23256,4638,80447,11057,28440,74733,8431,99344,68391,56139,56524,4727,71511,20044,31233,82739,43128,93822,32445,77659,96774,78255,59453,84777,6781,71778,4897,63640,41714,51907,59372,58504,92293,32883,31850,51180,12627,20449,5337,2726,23788,81602,70147,94959,74987,72079,74574,3661,67786,77294,98728,99085,38154,95676,83847,596,58713,78460,11347,27976,6025,37237,42216,37322,48689,16667,25716,95343,92610,45266,16065,25371,87345,98012,25110,55353,14415,15385,60932,95095,12153,51745,24474,20138,90683,4421,36035,64391,10822,57911,37719,43985,9414,80938,9622,31726,29017,21705,29962,19896,3658,35230,69187,80791,6176,73037,53942,71009,15747,20842,8179,64178,11915,80320,97355,82853,88210,89384,73383,34795,19827,59472,49127,81787,81643,95466,47872,3588,13000,56675,77406,64071,94742,20963,46876,86494,32842,94757,73052,729,27907,2820,38344,72997,76520,29197,61681,59434,31706,578,98049,58593,606,74365,38704,44890,19586,37647,22431,28303,23982,81801,54417,1131,16326,65829,2782,23061,53048,4591,90575,77116,14027,15096,57378,97283,70971,7432,53443,8602,55652,84222,71097,21422,56794,29530,61340,36065,71423,6978,45686,88116,88549,18266,40705,76299,86686,7906,20384,85065,72608,48059,22446,30357,96294,3324,31427,14257,45060,35860,28676,69916,997,51701,49626,99313,9357,77354,19293,85501,15583,76265,13956,2733,85575,25238,63017,51573,57699,94672,59188,34828,93031,31526,88353,33120,24420,20826,53210,78866,11836,23719,5953,29984,331,49962,27499,37948,6065,78994,65997,97859,74292,53345,7485,83099,33093,83885,2249,35303,38405,63265,20893,8458,76266,76174,641,89117,77366,14067,59632,7751,94769,20669,73543,5676,91346,61047,15696,23370,49726,16485,68730,36197,50512,76437,63125,98942,45929,19562,30453,13846,44119,49034,89014,95250,66158,18,18173,32206,67027,82758,61643,6333,57279,58368,45323,92201,21000,1043,43996,1881,8254,31969,78865,43004,68247,19132,76318,24603,45094,6434,7111,75790,51519,84689,98009,6514,33004,36214,65103,81048,43869,9338,14884,52097,67114,45796,50394,83382,34682,78445,85822,50218,90824,12214,78907,6478,37709,67147,33647,58759,17620,71356,33009,10597,88497,42858,88193,91715,57789,58063,55897,73648,86078,27751,34171,80904,8286,3160,91633,79710,35378,42060,79998,7080,23115,26505,14631,7396,5308,81783,34390,17033,17813,80537,95682,73698,80693,19145,87334,35459,41619,65593,63568,5863,6008,49175,46297,97029,64870,44127,31091,27581,8506,5089,91109,42262,8708,97488,15685,81866,2289,75149,38331,51324,49978,39342,4389,24869,19410,49366,43466,78841,94110,95340,27715,52975,78864,20749,15529,39785,95024,73096,39886,42839,79796,91543,32032,91425,2598,64891,6864,40551,30436,20016,35964,58681,62656,89824,80072,2341,45970,40116,89898,98954,65064,76193,81137,91773,60739,65878,20841,5358,44390,2879,91338,97761,29769,32373,27371,75620,60168,24527,79459,23071,57669,79901,20698,75546,56622,4841,97343,79046,46574,21026,59530,74467,73447,25979,71585,27218,7173,94595,49603,3492,6315,40925,34416,94489,97337,22983,60376,64684,24721,79188,54256,3758,32774,27655,80155,67550,39175,83618,14105,55904,71117,78452,57874,65797,86147,15455,34716,10553,34810,94250,58704,36926,55903,612,18134,88721,55750,53549,8332,45314,8876,99724,40805,1920,88220,89860,71845,28831,57585,12994,10047,25318,50320,5966,89705,53694,68821,91714,55548,28968,62080,24957,43341,4300,97220,37340,94051,50077,93330,69700,76449,70125,19591,43987,17253,94877,22461,46920,50358,46792,57139,23970,87768,87320,34323,18019,44805,31623,68514,51130,57794,95845,65037,93119,65584,86280,54953,39501,14195,79747,72253,39529,11109,93615,15646,43665,6306,63807,6166,25866,64801,30176,85284,57262,19968,45877,84774,5408,44570,62841,95525,17914,3033,24503,66261,14725,74690,91666,31753,58259,41331,2371,40755,3411,86843,73462,82207,13951,1745,45488,92302,69561,19621,25074,22814,52980,96292,54303,91845,28280,20412,81694,98617,93010,54476,26199,70150,27771,98270,77006,81870,44540,92666,55220,3821,58226,58604,83660,4394,63597,60050,9231,92849,69365,73750,92574,82430,9874,43678,30587,38950,30634,22163,30766,76911,34441,97163,74814,35005,93709,1652,96910,63018,94177,8470,52934,13562,95871,65711,84500,57913,76963,31582,54233,68909,52938,51742,37648,39229,56151,53473,39902,19870,89874,74412,5219,58398,57955,39101,3818,29283,78247,80102,96749,30679,98766,41436,33112,52212,36088,22782,75381,93792,41732,22353,73392,33101,51589,96492,44752,22979,47664,74562,71372,75047,51696,1209,21388,23200,1770,37724,58572,33226,11246,96515,12152,68161,55808,34950,78052,58425,17710,4315,75372,16260,56440,77439,14969,91760,18087,50433,92262,89712,52671,64693,63872,15954,29344,51652,44120,3681,27014,59964,43747,39418,54893,92529,53552,81889,22295,73198,76606,13566,90939,90708,991,37437,34891,92506,84589,80668,2742,17542,41241,65577,27554,69169,97266,56749,73739,94141,77062,89802,77131,24297,96692,9568,59373,67598,84853,56378,45810,58968,46083,94255,28256,81317,68995,22586,61556,33923,86067,61878,20985,40312,32140,17337,92839,20248,22357,41859,54731,31869,41522,23131,40571,80798,77810,34119,4314,67324,3133,63298,8927,87912,85795,92218,88874,32910,19570,95767,12333,86465,59103,76627,40165,18878,71069,18880,33117,27533,28814,70463,64641,81457,41329,32111,74019,7068,30784,3808,75379,63028,50428,33976,84934,50053,19225,81300,37084,72565,86958,37100,14770,36648,63661,22125,30568,55539,28023,86920,28339,50862,41557,90099,6959,71756,97195,91548,80778,5127,70983,10440,80965,42279,75923,31109,76789,47570,5843,57303,99860,59352,76377,32191,87232,97111,78767,74088,48161,68673,58009,71314,22890,81323,51497,93438,81898,36014,23203,96965,27424,93333,17147,97325,14490,68876,25139,50893,35191,22034,21978,95169,21952,27172,16239,10512,85886,28626,78346,41234,35575,17467,13175,81841,16104,2331,97001,30229,4045,63488,66082,41909,24049,28341,36994,54160,40071,10281,35343,74458,17891,83967,78831,69021,59046,29356,89069,7599,34797,26485,11354,13248,2954,95698,84647,76013,70758,94246,40227,7627,10743,48110,88945,56231,81076,5250,55238,27361,17952,31066,10898,31934,93995,65232,41618,44869,20581,5577,81564,53597,79579,22743,42044,50799,97440,99019,80830,38943,50983,36951,64901,44677,17967,92563,86455,54039,23548,5443,95342,37353,78351,70305,12139,7495,27125,74587,53576,2769,53352,72119,39945,68638,2400,23863,83276,90147,74286,14182,85568,76418,76599,18720,97716,57749,56010,64608,65595,48108,3959,45881,11305,20965,26339,82704,16152,19065,30005,47109,91392,72498,77242,18409,86638,94397,91772,44082,93852,82838,86171,78055,59350,36823,22513,68467,11681,52325,11691,98235,28305,20940,25385,93823,85526,79883,9910,63879,604,97217,87123,13901,33081,27926,23166,64079,57194,24697,77191,87115,55128,69499,73359,36677,15627,7027,76731,62520,51256,28810,31245,67897,89592,49,43471,60473,87017,34591,40436,76200,89004,14654,83024,75304,98781,92386,20839,15735,74483,93339,92406,49181,65355,89799,17212,48786,57305,85252,21408,67412,31122,617,98552,78988,80590,72860,53779,97070,63299,83652,59545,71285,60886,15596,938,57179,1598,74453,29578,54098,86235,89837,56575,25330,12641,55408,98633,60094,18895,83919,89515,75575,80022,47947,8642,47856,26289,93209,43749,74036,74155,6545,85014,81616,72440,81242,14649,4793,17766,13463,93288,16433,29683,63055,62704,33580,2838,12278,55705,44808,80408,26146,27024,85848,11402,53825,93902,74026,98210,21811,34252,18939,10097,56594,51894,15878,38886,83857,34228,4185,16125,71270,34720,16932,62532,33986,81375,6939,87888,53077,6455,99885,69858,38314,59463,60306,44904,94850,70747,93262,76452,93890,53546,13879,88967,20805,139,22433,93768,39725,93808,32389,50838,58348,95334,84441,77004,88932,15812,35519,44827,64906,15305,69281,70603,5139,26171,63205,52923,15471,43050,95101,19130,77347,2858,71202,83765,59664,24024,72783,99893,33235,8874,14528,79763,23368,62612,3214,74258,76007,86644,92447,6739,18337,68080,80646,61789,54002,20249,28762,47196,86838,85838,21470,73452,22264,95962,81524,99754,36685,36924,23577,24965,39163,39619,35545,23753,58107,41385,13125,8949,27970,21892,20401,73677,43233,93887,89943,95298,19165,62432,21502,98809,72073,92456,61678,67492,16012,54521,21654,87704,91280,56390,17838,77766,23853,66047,58957,76703,15930,97658,83069,36878,67145,83288,62762,40182,9763,74699,96622,32046,15217,80756,37905,94788,14197,2821,26279,94616,22720,54106,44484,38426,45425,43138,24680,23062,79189,21773,5297,48409,29704,30707,96003,39917,97072,97721,85246,31265,37258,89300,96921,96979,93977,48438,65104,90302,67083,5427,99984,53004,98657,62242,92280,28975,64414,84521,46098,213,49534,19684,70985,22861,46090,58528,51246,39789,29971,52591,53031,48537,26201,19889,17780,65045,62628,57739,79739,18237,39152,70972,40237,58356,41168,66349,51895,65986,28165,61758,39661,78990,60981,83574,65709,73932,8162,45945,16512,1790,85494,28617,68416,93992,71765,41569,17139,94008,5303,99538,69065,51904,79006,44000,78441,77745,70641,43309,17597,4293,39176,82284,93332,13231,52373,72462,57502,28808,80057,11649,3355,62569,65838,93588,58444,90129,39162,88233,64167,72340,3993,33271,2648,3321,40540,22403,88093,75614,83985,73786,15189,25489,86712,45979,30267,64220,27804,42532,494,63755,52429,98115,94237,23634,9912,19382,40281,32417,67902,74764,54346,39783,24344,15030,53185,60138,16877,6041,15042,74907,77804,52718,76518,84781,42997,45433,43791,41465,30502,7771,71824,41020,26217,26829,65818,82747,35921,31202,92000,25886,48371,17734,21015,20896,98306,36194,11769,96019,88865,80439,76611,85790,84995,46426,58428,37794,43106,21153,55856,74847,69181,68885,6584,67640,13610,31764,28464,48114,45106,63811,73340,45732,33269,39447,89534,84447,28697,63440,28835,55924,54013,22070,78830,25785,43057,77216,11279,36150,35426,86546,57980,19058,64772,69377,78290,52476,59007,67162,6691,80887,66661,771,8785,20324,43323,32505,83430,51669,56104,979,28142,37701,46169,34502,98859,33507,12248,4670,37204,8049,82224,7178,77611,1398,14602,26387,8275,1964,78660,67265,8058,22756,64947,67809,15356,44048,46666,26248,76787,48719,45571,84084,84319,94916,88996,61168,1316,61580,52999,59767,72072,18616,35793,35156,41088,32840,81732,82863,85914,87274,46271,87959,20624,56626,51295,30838,29795,88128,45443,51684,94431,39359,41324,59708,86642,67912,48029,55357,78172,56310,32294,52439,26962,51010,527,22508,67523,37250,86367,17951,39651,60795,17424,3282,31014,3344,63983,4838,37646,783,90941,48530,58253,17446,7579,36335,93074,57646,62502,97580,84187,61990,8334,49367,12661,33247,61034,29470,57769,46121,45481,64883,70883,99038,80853,10604,13281,53977,62195,55307,15480,99829,60524,17871,23913,83376,29329,84575,86357,24547,50647,98441,20619,13204,65765,30553,66954,46561,20469,13132,80103,78252,83484,1566,16803,54739,69108,12527,96112,64352,96480,45339,21468,40394,84631,3083,24038,33403,47107,51795,15330,20482,3216,58750,2148,94140,897,54513,18259,15787,85075,88354,85988,30437,20472,38962,70991,1086,55921,10812,207,56851,85772,89027,54614,4605,65545,80527,68841,25983,43447,4082,28425,68318,63391,53255,44465,94046,87254,66684,6107,18563,92866,20815,44357,77911,21313,42627,24359,59865,76727,389,35471,54742,56945,15937,44764,28806,35546,65732,53620,19960,25446,21091,64721,21047,27272,36427,44567,64738,5438,89679,55371,10091,73880,48333,51138,99455,60150,50034,91273,81025,1885,33942,25905,61184,86561,64543,68686,99744,81778,56186,61357,71216,62064,67370,58224,94281,73056,33702,15055,56482,8616,8016,30251,47400,29352,99897,54619,34704,73985,24443,57338,12579,71474,39316,98246,49850,71874,23400,16636,54728,15037,51172,3252,7265,31114,13869,96598,68201,24689,87024,29361,98339,99760,44530,75858,97764,3442,87453,16390,8006,72395,58490,19900,24730,18215,91404,41011,37705,26347,79465,93485,75199,7008,20525,61095,10864,50384,62008,9170,28226,27524,15006,6886,39404,47573,45762,76924,90886,86296,13586,45163,24266,15754,28152,91763,34676,81799,58703,90623,88388,82594,46410,55622,15253,84274,28157,70454,81247,37112,55290,99560,72362,9615,26137,26180,91182,33490,94636,3616,25948,55640,16771,73575,50680,76488,33911,71108,51565,45293,36989,8008,4887,14390,41928,38135,87763,91100,50952,56994,25930,56373,95598,69617,66955,83994,68738,28758,13014,86283,69404,34399,50324,71406,17850,72132,20005,71333,8682,28069,89345,66614,60053,70180,67781,91104,16612,48217,35177,50624,88958,96110,30628,62539,63760,64121,30695,94017,64881,96478,46594,55013,43027,7353,15104,4742,62734,45719,37352,49557,46220,35722,23487,71862,60913,52504,17826,18443,45448,60751,27714,169,77424,58043,40849,59410,96437,8956,84735,82428,27228,67234,76416,62235,50867,66752,78159,26746,40444,9304,72568,64780,50699,58620,68401,99497,85170,49697,69239,23274,60631,53667,76446,93139,43199,61876,98198,18943,37081,89674,47051,73690,20247,94282,85641,20470,13032,72731,99186,55122,2803,51759,21390,38738,3945,32465,29885,88490,8339,14261,19717,54365,76946,88156,75322,69623,36190,67178,67728,20906,1509,34371,67572,22214,62005,7991,60330,53971,32050,72616,80182,96947,22934,90895,23758,16675,89983,52347,83039,37527,45543,53738,86999,18533,34789,71074,62410,41451,71242,42066,43556,56759,64116,90731,65169,74138,6946,35089,25801,22945,92179,41764,41694,83245,60528,73399,15158,12094,44925,59946,7626,13589,9855,74556,46939,76317,62401,13538,11629,62246,12850,15018,49940,10576,3826,65012,76819,65641,33953,75668,21315,79354,7873,27203,11425,41206,20794,84243,83813,96409,98772,91319,30193,81947,93109,42030,48487,17676,20471,16979,4578,45576,14116,73779,8403,3326,11265,38355,30294,63400,94832,11605,2011,16255,79158,44500,48450,68593,92660,72763,82001,65692,75235,49598,70311,43096,44601,35853,94652,31583,7966,12628,97597,9610,28893,81380,13274,43593,18195,30625,6775,51827,41942,1025,44343,16846,22355,22095,53657,61501,43912,30350,9083,56095,83735,98136,34021,68945,93385,78408,11779,88164,99333,70449,3448,6612,11795,54368,60453,3070,48773,85918,10701,65907,23247,17880,13072,83477,84259,97696,6081,23562,80619,92930,54970,43315,28619,71782,55361,8054,91092,4136,84881,16130,5033,40785,473,29053,90617,1699,64299,82907,684,56365,5498,91463,24473,52580,44041,69453,5769,88473,45016,20261,65896,52927,12725,65343,38723,4417,59690,72532,91634,19518,3286,44659,23979,20602,93227,30103,41883,91422,86887,36607,99088,1175,5450,84553,21352,12308,35523,46909,65243,31657,405,36162,17231,57831,77272,80897,31735,47060,7022,95749,18898,19584,19719,58464,56443,73266,70052,57582,30207,21028,95330,16103,33064,80070,36813,39952,37584,38769,75293,32209,65616,11023,19035,89288,69352,60279,83506,24219,33128,37008,38604,19946,49412,59322,42294,44002,13912,11840,50583,32016,63658,38787,33008,59748,86975,22053,92579,31588,33834,21310,13167,84338,35691,16470,13875,43540,25959,47667,4832,4121,79532,35695,38301,353,94428,67218,33168,64326,6915,29911,65851,70346,90687,30140,64823,67292,64143,7272,59803,27839,42737,44367,30811,87246,77655,26695,65418,6321,9965,2882,47245,7908,44517,82950,23546,91252,57909,14673,6159,90352,88300,31274,65081,62785,30748,91509,23666,12251,25271,63692,30742,33173,75478,80752,7603,43574,30297,47313,14277,7273,54769,34418,44397,55691,88074,99756,30240,62275,33248,9737,98705,7361,42364,56271,18529,66333,79456,66384,65220,62182,84930,82036,30480,41742,74967,39942,8700,34067,91649,10031,19245,45250,5931,62823,60185,54403,57767,99513,44206,79137,88477,89350,90312,95129,41583,73608,18876,59561,74166,26141,33274,42706,29824,42194,57654,9759,98516,7610,95826,36830,5812,22874,37878,56693,95208,3695,59765,63753,59504,52650,5822,84158,84815,11631,26122,71000,62472,42744,3965,45478,98351,64202,19384,92258,7968,65980,61488,15153,99604,62324,35642,39328,95177,46000,42515,89139,12379,22762,31501,61695,96628,93517,51132,88847,74103,40112,67024,73015,49248,18458,73151,2642,85256,7984,45444,63405,94549,69658,51772,35102,77304,23018,89786,52872,59232,55550,88271,33014,47317,36189,53580,95688,4491,73328,24143,3784,43512,593,56606,25978,54814,41045,42345,40330,52287,67679,56457,31594,18657,70860,82380,7541,51618,88925,77246,95075,67157,23160,68096,34702,81647,36044,50724,21322,85128,84811,50048,90962,97078,46229,44386,88823,10660,84913,7688,35033,48812,78613,76161,99400,64095,13922,62438,51959,68283,35839,94407,24150,71705,7935,43716,40512,71213,97370,93361,61967,47046,1241,35153,99646,24612,55189,19086,34001,30531,82345,80743,99042,1216,48147,68296,26639,84234,51085,89617,64066,63215,95164,89232,30561,23635,99704,69280,56498,48245,77197,45156,10929,30208,37394,9472,59003,91503,50599,11683,69422,15275,39484,30542,65028,60477,68721,13772,70326,52509,78411,84262,96585,14923,87895,37626,99407,65971,45948,45695,3566,47145,22496,84165,23481,91307,18686,49375,70993,74976,22600,65107,13841,56274,20814,86521,61226,91955,17220,7750,20504,26364,57420,61740,88224,18868,23326,16471,97525,34219,44660,35861,77149,73000,58633,66735,89491,51288,52342,82790,76683,12444,45601,82784,86537,29951,6014,48454,88061,53176,78409,92979,55920,32461,59219,11,84430,64260,55532,73221,60872,28524,50565,1450,5493,75558,76928,598,71734,46661,18067,93745,53351,62060,25500,81986,6908,56497,25916,53214,55414,2049,89741,90189,93796,38789,36241,72596,74119,85643,81948,39684,29600,31856,93203,51623,40161,2725,22147,12491,86075,61890,93242,27861,7598,79538,93794,89250,81073,33705,95183,59307,35514,78931,79672,85618,4335,65991,64751,32197,69434,69234,67286,84207,13593,94677,34553,69786,3602,92532,8164,86212,9319,92584,85688,10157,7490,25471,62144,45398,68376,67698,9552,37526,58121,82901,60615,96075,52463,25234,13416,6902,90594,20272,87685,69162,11633,37734,79120,21202,17818,95484,45303,43358,95067,55957,26679,89626,62329,25925,15945,58103,85756,97819,27812,42151,21702,85214,82523,1345,4244,49176,4443,69143,73559,71935,70573,89433,63695,56864,77164,56512,55223,22774,65212,1115,17325,90906,48678,42772,7836,23958,85486,20430,60862,10046,32478,56464,4010,3310,63454,42635,19389,83654,19361,18120,8378,96334,48935,50712,94944,5509,89634,12101,98744,64013,77320,16910,32137,14431,37753,99291,27254,59444,12694,77207,40062,92616,4849,61228,58987,75496,61164,61345,62763,86492,46702,32497,3187,54310,41817,3871,90088,5844,63595,40080,99375,62889,19680,47561,3930,47118,68702,85720,5969,27689,4009,41842,92955,83539,65794,93387,53574,80874,6759,31416,86314,13112,67675,49641,81758,56273,69484,76969,20837,82177,8664,57570,75578,42550,57658,66454,55975,88057,61535,1158,99098,47035,88581,87799,58138,15009,66238,55143,28287,13342,60002,13101,82613,74334,49013,29815,41564,94584,68105,46503,76992,59810,66140,4952,62271,77695,57741,38629,9154,61431,23343,9826,58169,66365,15720,14101,37273,64827,52740,54095,82007,97613,89439,99809,11648,54740,34069,14131,13515,98,41829,94655,32620,66448,12125,53493,29155,8811,11488,75248,5502,78844,2390,62107,72897,64879,14603,15609,84675,52786,70491,79488,43840,60553,47492,71811,53400,94519,10714,94694,3773,52079,95079,77672,51520,77831,55983,57942,33373,61020,51161,41771,92404,56021,96423,25306,63339,52783,2709,78219,7558,29774,6620,93795,20735,35181,88296,47549,98648,13882,4810,41790,43915,27851,24840,66979,47177,44621,44016,61897,64759,33792,30307,29779,39712,5788,78547,72709,32202,31482,12512,15491,48853,98573,44672,72054,39579,61506,63566,41667,47882,10764,19676,57556,5087,92711,4105,35227,6522,82589,77798,74054,32816,48815,96417,55193,18456,14210,67353,79451,99257,56931,23906,72361,67677,58746,30973,48554,13972,50493,34142,16226,66169,20966,85067,57933,95349,33513,81282,84745,8301,40545,64633,91880,74157,87001,37970,36903,34816,12488,9233,52012,54466,67798,43455,83837,80158,61087,6177,51502,90500,70236,39057,69221,57922,51299,13728,42069,81772,78075,5985,3584,76530,51648,17230,37927,7557,66425,48846,26393,46401,3852,45930,42415,48231,2154,38043,78305,31092,66878,73277,1873,51868,19937,9235,6945,59979,39134,93249,48767,39347,98043,26450,33835,64393,29597,98425,87963,99657,3194,88129,3524,62179,53840,37811,66794,12926,83598,83944,37377,8959,56452,88670,82098,38434,39140,45960,52839,48226,37187,55986,95576,18079,7336,63435,37699,81660,67553,36906,62050,99974,67119,99591,44147,8077,68377,36660,29051,27028,54269,54896,90559,78391,86730,43343,43733,1860,3597,12437,53159,79922,12677,7315,67000,93870,34515,3195,40825,94727,9090,6909,8647,69764,47799,28993,86804,54237,14703,18957,97463,49778,35690,3870,71783,92137,32003,44184,10953,63896,44252,95738,56909,97574,59732,10387,86311,23931,21338,131,89190,20695,8993,77937,88814,15336,85149,66860,38096,53750,73125,65505,40324,73974,49629,58130,50627,39906,13960,24426,41766,174,1526,39366,41044,46925,65859,21358,88361,63997,3127,39251,41315,63539,34113,9750,11533,56546,9973,48501,73130,76900,72657,40553,84462,15869,52989,99160,48089,5055,55993,89914,71884,24132,94299,12584,15757,14226,44960,9169,2321,66623,5974,68950,90236,15364,60568,67228,54129,55956,12205,7392,88200,84634,34589,39369,31292,552,79588,97100,25906,19857,16029,12227,41447,21816,63471,70710,1117,42365,13979,6139,42979,10641,51110,62546,76438,76667,26070,3910,79499,87214,70999,89277,79429,61169,8707,31976,20605,12947,39190,26411,55373,26940,4625,4145,65152,27665,88931,8815,5548,84925,65360,8296,22221,51041,88785,39859,24451,46904,42360,65275,53636,17205,3984,67362,74810,75949,24661,28885,12821,47423,83607,37894,62131,18348,75222,58343,1065,38876,44033,85258,85979,62517,82435,89354,10191,26468,50912,55440,54994,87475,66180,3107,41201,69881,24953,88485,49507,40934,31435,36103,99553,2509,91589,4968,32298,86356,75794,52988,41881,21476,18379,81698,16857,9387,51960,39021,26764,5300,96847,56235,66463,33800,85107,6790,63954,71729,39267,14186,26985,15861,28741,90780,80982,88469,30106,44528,51031,80037,1100,30596,46313,27415,91375,75526,86231,29109,50759,44122,49758,27656,8984,89148,97030,40847,62667,27868,89093,98940,3723,62987,24181,46815,84539,39629,33456,29658,29264,60750,97965,47319,34988,10559,7484,7303,75978,42430,49611,45911,27784,67460,35549,28110,40250,21516,86688,9766,51349,7076,99472,69850,26791,24740,92485,2853,6299,35081,1649,78923,29167,25321,77122,51117,2987,54586,57985,47097,88978,46363,30102,78308,74686,81975,17556,5692,78912,72014,91173,80077,60319,28386,92708,5394,63489,88202,37861,82541,44702,42178,38675,9466,82010,34483,54856,24596,11818,11878,27591,21740,51344,91376,82672,88918,94094,83380,18894,39048,64953,18439,97571,66115,60203,13807,27306,88805,93975,19824,70193,21645,45993,98791,89136,60250,76878,74392,55999,47128,93524,63352,99621,65877,61104,4660,96353,52657,17299,45989,39053,3291,20106,90110,88050,81134,32054,5293,33789,32827,10621,41153,62269,98414,25737,24559,18649,78377,96750,10005,64960,30425,81321,69041,58858,98460,24225,82590,60728,80550,54492,35764,84488,54164,96639,88394,63478,87229,90334,59450,3287,16225,7085,90719,15733,12479,83229,30804,84358,21356,47774,16480,80066,49168,36174,36699,11184,87527,50968,64807,70277,67825,98964,46544,51233,56026,1854,53712,64977,41200,33243,57691,80661,95033,33665,75649,84067,93921,98667,7232,68922,65575,20591,91051,53221,77400,84563,92459,84109,96783,17736,19500,12402,10609,53278,82214,72007,59493,39628,3807,65229,73220,81185,3293,63580,62897,90078,62396,32906,50580,65153,5513,67769,56098,58527,43388,54890,859,35636,98752,78368,59383,70688,79542,26041,50981,77813,96166,28251,54275,65508,60609,52750,14720,93116,3727,34352,44382,10274,62699,21288,17194,84663,12563,18581,38247,48562,96561,27480,16798,44571,18685,80846,52401,89238,60032,9,86580,82502,12801,79879,96855,90563,79714,49759,90117,70980,6681,9667,7542,10855,30306,51456,7521,86761,15961,66655,30665,34073,36791,2891,6469,36419,32928,73378,35374,98304,24862,16956,75016,4526,8414,2435,55020,52757,34366,92661,915,71193,88352,58912,92554,11798,34727,46543,92129,37857,22994,80475,84683,68858,20116,94023,68124,81170,19995,61370,30582,93206,38488,13673,6005,61648,96506,26175,21140,47220,94674,17765,76602,319,95794,59270,65937,20820,99968,69557,43696,73622,68992,47121,15516,92633,62710,51690,43717,3408,50482,91923,5395,62859,59326,46309,33358,69157,22924,37532,87764,32633,61213,28866,56560,72239,67112,58128,32064,24165,96788,24269,43405,72480,40385,94899,93210,31925,34117,81879,11340,77446,11424,50072,33979,52673,65928,32053,24514,46531,1646,12197,81062,72084,72915,9531,88688,67877,30809,10584,56813,97055,96093,48681,46571,24105,30332,72302,40326,84029,72533,12752,75180,25725,11170,38780,84058,31250,10950,40239,77187,10369,12969,93193,12461,92790,78412,81853,61838,3866,20571,6316,34721,85206,18307,16852,55694,45763,95170,57296,25069,87423,89474,3147,12120,94301,73190,76008,34429,19456,65443,50330,12289,76569,81519,3296,11857,15510,6576,76098,79567,14777,13774,94622,4074,96510,26281,13565,65646,64336,82041,67061,61238,43631,53741,80614,88546,71638,24556,28824,20269,49083,43008,9647,82964,70122,88225,283,8795,9788,42739,47605,28730,38044,66606,87494,75809,13414,91374,72222,72427,63038,84009,9054,77012,53335,16017,696,1395,49286,77729,51748,56553,98438,69695,74874,82792,63850,37375,47437,35244,71393,68914,13905,19438,76643,47690,42593,63904,77444,86753,70881,60237,37522,98181,48096,28443,41516,75806,7112,78949,25909,22392,63070,4635,35010,64713,23680,46731,64815,10105,2563,28457,67568,23796,99527,61954,77155,2783,16937,16986,96942,93800,22501,79915,11149,24860,85116,3732,7001,10733,5178,91600,23684,731,7487,70857,84212,47168,52278,4282,14984,53918,71708,78189,74533,7197,14298,76358,58816,55719,39544,58396,60673,6509,30781,59458,24579,33439,4070,89492,49300,47767,98676,80892,93283,49894,48973,40506,44751,68237,83239,31332,43819,19144,36413,24511,40137,8238,57837,24587,39031,99705,8489,41367,21867,762,66649,24391,87679,90968,10452,93707,59090,10220,36366,58753,40812,58319,17870,82641,30068,19772,63129,28236,53542,43182,97247,59085,17644,11205,24870,66049,10993,97093,26093,73532,40931,78526,35857,16306,23440,62348,21018,87750,41083,11026,67718,73027,52699,2031,46096,71786,25428,75703,1289,8235,86406,13475,73929,53948,5757,20091,32933,98090,12790,89609,47162,14176,53505,32157,50147,78254,88991,50928,35133,52296,45662,79479,44451,94746,78786,81443,40478,48780,75583,8027,61691,40288,66449,61968,97994,55575,6096,23348,10246,21829,87315,24088,22430,26511,56995,38795,68928,9993,45617,65532,50632,2290,81767,5838,14482,76948,60978,57967,3051,62808,65902,11323,87141,8125,33995,97585,50563,46618,37614,26416,50383,28606,18247,83674,93708,91050,37239,10616,14242,79643,37092,73121,38379,37270,21417,79907,12463,28496,27796,90388,90891,19082,11374,76671,1064,3005,38551,88475,36067,87030,6160,79342,87058,36852,50239,40802,48882,15687,84166,7130,29366,90998,9000,20990,96830,18375,67349,45903,40857,49791,69766,59555,64983,83816,54112,69479,19916,64739,7693,33539,31462,90087,4052,56435,8237,77321,6028,92462,28340,3985,33875,80980,61434,83201,13104,33151,2918,62523,37654,32372,92794,33745,29001,15358,57878,5350,41862,39132,47526,5698,54191,51733,44727,58862,61726,13973,87373,92220,19458,60048,30827,77514,53700,6839,68600,98569,77318,87155,58539,40426,84302,89895,65442,71344,43478,96943,71938,14872,7999,15136,87508,33166,14857,70984,87296,48657,51219,72588,96234,84625,44150,85686,81149,9569,26856,60460,11896,25273,14606,29495,21203,74137,19592,30463,50453,98383,13494,3090,2026,41520,29720,42628,80069,33310,89438,27544,49313,39933,15563,39367,52613,57964,28089,45015,72637,92100,15155,47867,10032,73417,3799,8596,71226,37183,23332,14405,7044,41258,87310,45223,21682,96647,24029,69446,80214,31213,52011,58732,59613,81093,88705,27672,20051,38632,39891,3867,58635,34221,68579,64614,95270,70741,72162,39550,5494,33734,27652,27020,20243,1556,69523,48091,34852,55896,28233,69629,26656,57114,24801,51427,70246,79711,49680,10429,50844,39729,69468,97703,39001,38369,68244,36265,30302,76361,89044,80663,73228,37151,90094,76321,70468,91983,50374,8455,48176,46029,21999,74243,44551,17383,43578,40321,22020,78139,95509,72206,43043,62040,27943,61160,35254,76642,14837,1088,12102,50210,77144,74323,39669,31339,56742,3617,95082,62003,37642,77029,22975,15521,11558,50211,3976,48531,73087,70350,40342,12989,93643,41357,38503,72281,49121,96680,28304,61079,61021,79955,33502,37472,77389,53417,79215,190,6175,78347,6560,97356,47793,39423,61696,25405,58689,75272,62303,76737,23026,53164,26760,82538,90862,18907,97227,42764,94517,42522,62138,55451,69294,79857,33712,15874,32694,13422,72615,82272,57712,29963,15642,85819,96859,41006,79243,32163,98470,30285,11158,55487,44489,76085,92625,48127,88062,38237,84819,7441,54145,31229,3707,72018,84355,75851,82913,20266,61182,86800,61823,54108,59520,41037,55059,62085,16754,21706,79193,63089,77085,68425,40180,86106,73409,45844,68758,46638,27148,12795,58245,88694,54571,95228,47960,67730,64783,80312,29208,25915,68040,6375,12076,12209,7122,5833,66513,13630,41785,7804,93383,82256,2772,66885,57743,27703,61039,17937,41084,59743,83308,35307,28320,33433,82398,72160,84512,95804,9055,77262,47025,35259,29412,67435,23222,65191,8519,3765,80814,33325,15374,70049,41983,9033,52614,40855,29012,38612,28041,83449,38965,54449,27977,85887,29114,42349,27080,98363,2998,16253,36730,7029,40967,82388,69779,48888,96030,17800,5725,4480,53902,29052,67807,57087,19034,363,75013,95318,71172,11599,54733,17716,29424,8916,53323,54199,48512,4429,53296,41392,84535,22642,99477,70465,87480,47155,39989,99919,9323,79536,73675,91398,10583,71100,62958,81553,11303,25191,54353,59216,74471,58501,50515,14451,13930,67560,86068,67774,31835,57818,78471,82931,28729,52836,84225,67454,21370,15836,22957,95838,61554,28722,99177,20060,29905,83096,37760,86978,59194,94953,48631,10423,9195,44717,43354,59707,83703,20103,84513,65082,51173,4940,79116,95901,98630,19813,21977,3253,22753,81344,38365,30602,42941,23502,30168,65562,38193,1818,28082,78398,88309,61779,23997,15597,20418,78922,9643,83321,40797,29626,36787,63955,26952,16200,53049,11573,203,67991,61714,20450,75931,8808,34068,79428,3395,82592,93155,40473,62849,80763,72325,56733,56849,79041,60908,69360,96137,38498,56409,99775,65446,3962,89852,86979,90063,7570,77255,80218,35865,36751,2453,68177,3159,60108,53727,34884,52106,90446,82141,35281,58432,39465,46184,66856,16056,2020,61548,22530,49592,52215,53543,87461,20667,15577,35508,27988,99733,16254,59679,96789,85038,94440,57217,47396,68125,44350,27096,6365,56057,85251,41500,36682,48262,28074,19470,89111,71080,27225,70042,71656,94275,73646,11371,37497,99421,95934,39044,20311,49433,73308,6098,29284,10712,36613,56839,51114,941,76988,62034,15160,37139,68952,96890,54287,27276,50112,27215,25560,1744,27613,86040,8113,19978,85959,27055,20068,92210,34735,41535,45377,78009,95957,41414,1469,49136,89144,42118,18824,42073,82040,45257,72288,55637,16256,96687,31275,42303,38838,82885,41181,12040,68380,17163,11473,57833,75002,45083,39750,31328,79841,47275,87667,96694,278,50640,42405,84044,37569,60484,9871,18829,32252,73491,33387,98780,61343,13306,19029,69832,78901,53672,67846,3979,76235,68891,98385,82353,83186,23738,22515,11536,38286,10715,88909,309,74321,89857,69939,57820,76457,58206,93431,10837,63457,18909,85771,734,49387,14389,44077,4962,64022,2441,67520,85269,56787,98500,26326,49515,5100,71188,8816,8935,78023,77691,73957,27752,92105,73024,26518,9518,53558,79973,51670,41596,96102,65239,41792,18932,41794,45986,69918,53330,54493,80253,16082,71662,6362,34619,15401,43748,52244,29908,2075,81668,80190,57460,66137,3428,49728,96410,24861,82455,75325,40407,3193,76506,5431,57599,4259,19696,89736,75292,10957,61592,5559,90673,59169,82951,47056,93344,86530,2748,72718,61209,5391,63587,8208,82576,82785,85174,2689,43194,5920,44008,59448,56531,42780,65034,13715,53742,24683,42017,89745,47614,75464,97267,66541,39596,94518,28009,76766,46358,46069,59206,30959,48243,90467,18232,60700,82865,64488,31839,1344,17721,53112,22179,13419,35864,45647,95060,40852,81628,19121,84646,6984,53469,34237,49188,26420,61252,72365,32857,81556,84944,2715,35750,37298,25448,19409,52210,11634,35318,24183,21796,75524,86216,10806,99940,76843,34049,58996,9489,51187,91992,34077,33457,61680,73470,93735,82367,69738,69198,97408,96271,77999,57732,79870,15494,81684,55165,10537,48494,76788,86878,22658,37277,64661,90013,55211,85508,60051,50755,35655,974,97576,63586,21177,76082,58543,83550,7079,93167,60161,7934,63365,65092,43397,23335,47661,35591,58038,70457,852,47994,10161,29319,65899,16977,98029,63207,90582,7428,29295,30455,66571,80049,90675,66034,62884,94822,31423,59406,13714,41529,39154,46285,23149,65845,67391,86929,11378,60251,45183,61646,15594,37843,27256,42047,62295,89667,1336,82640,8073,49497,31889,69295,88383,4406,75935,59600,64099,70331,90882,1553,42083,61158,22099,61293,39336,57086,57896,31832,76897,71603,65848,18030,14015,66729,46820,79960,36446,40207,42037,56012,35774,40173,15740,92215,56052,98145,39925,88479,20792,49472,16159,62135,41975,81737,2317,42578,25548,243,87506,52616,4319,22451,79740,86031,35883,83787,28271,84684,43863,96874,38987,92151,89869,64249,85233,28470,24907,68512,53795,595,89052,46162,75701,39570,14697,74091,7790,75109,56772,38251,43066,55587,8276,27177,55401,32558,55785,1627,30545,69979,66736,39728,45022,80837,3348,42137,6325,66956,64469,71118,54998,27997,53524,33990,51653,76004,68925,54181,55221,96333,84987,29823,99352,26179,45706,54356,16313,23807,10702,48281,46381,50551,90206,13600,12323,27012,59157,87226,44190,51775,28516,20612,22698,94722,37597,62022,5632,40629,43610,23101,51766,27303,89903,14032,15086,2045,91197,78128,91371,40935,3455,69955,71411,65721,13551,65889,89427,71051,40493,85904,54249,77647,62693,67347,17821,41364,50154,15864,75577,34083,34878,16869,46768,23027,77219,7268,73727,49765,57008,93861,4947,21132,46354,616,36876,4740,54718,24128,55478,13428,49197,41798,38542,47902,58684,34254,4869,7039,74429,58902,56128,56395,4343,66913,17527,69051,76262,57096,31875,78419,72452,73008,26993,34863,75796,2738,92730,43669,51793,70370,9706,63962,73306,32935,93835,23938,95634,66167,44398,37961,39741,40456,98326,68768,51914,91701,69910,9938,76809,33922,10127,81981,90033,98804,83279,66069,90516,33713,80750,21673,32039,70114,36330,49312,11830,502,57826,89279,62585,45225,46217,66740,2171,65868,60349,15728,38783,90319,13381,13232,71723,8280,43454,13547,3884,1111,87140,8523,92358,34175,52939,37870,15477,27854,61159,3400,39125,10063,17672,63173,31986,72210,2328,20216,34435,30844,87107,81882,29493,6802,24630,91565,80913,60871,35937,89514,19046,63509,22423,54874,91599,2012,27767,32801,95624,32991,51917,68587,77308,11592,44742,11709,57779,71541,20982,52339,12124,77192,90557,27646,79291,98938,21119,60875,11247,27279,50762,73636,74787,80991,44957,89369,88766,33260,90526,80842,62205,87245,25710,29072,77094,2214,67741,13331,22914,28502,10800,90148,71125,12705,44110,43035,6364,24386,28129,30912,21859,99418,99795,81238,21103,10159,60289,60324,95974,17453,66909,15618,36350,53890,82593,7533,5413,13472,92365,96280,38906,9332,51152,11007,16795,39374,46946,21762,68257,28941,90565,32563,39375,75761,94704,3933,17811,55505,39271,32566,63080,26824,59892,40217,96261,85783,69213,83412,89831,29192,67366,48937,36314,95662,89711,23179,24531,2287,83460,37146,42350,22671,42918,70879,57237,99485,49146,37181,96616,42222,28188,99765,24493,15624,47208,94041,83317,70936,66938,8180,92413,18149,2647,21159,31440,24690,79761,95585,63097,36125,77821,38404,44061,18361,45682,81891,51966,95701,49970,16768,27848,32427,97756,50002,65030,40860,51044,88370,94048,90517,20760,88179,27154,97861,40470,44047,37110,96787,86652,18848,77114,14836,87139,6730,26815,57666,71595,84935,61479,50569,50177,15925,25699,83731,85364,58439,31242,76846,92657,96033,91603,56335,14403,88147,45709,26797,13353,28933,75061,69296,16259,56423,25466,43882,94951,32233,55418,77454,81249,43357,63765,12607,44169,91695,87792,95716,57614,22654,78788,92859,80629,90183,54276,64605,43208,91103,19823,14562,91379,97790,10963,15395,4702,64269,16309,55997,73013,83875,14669,46687,85811,46057,55596,81356,11774,97825,41810,32848,54678,35773,78925,88790,7191,13275,82731,20500,49169,53033,46623,65252,43037,86390,54980,67759,52663,38476,70699,19917,39695,69871,99730,27508,51289,21619,82197,14582,18683,50665,20088,53179,50598,71588,47181,21056,304,14939,98532,15362,58887,28446,50001,79219,12489,82011,1032,17385,96938,98534,98457,21559,81589,57149,45038,88177,13023,12045,27072,44964,86143,17116,25269,99741,13962,58390,80505,96043,75875,5890,53605,60059,68815,94924,351,77956,32143,51910,5230,93964,70789,621,78060,54591,53809,92500,76294,99423,77178,83092,35129,62576,18377,60308,60529,19180,47961,19276,24561,67026,30919,21855,49468,34214,64058,78104,66887,75712,56155,58918,77182,56177,55561,42297,99196,36519,8585,50549,23489,52645,52695,39286,1411,16702,3790,62874,74554,12311,56874,98733,94020,45828,75179,24459,33781,2940,87643,32055,29342,12272,49041,77639,44807,13433,35130,20,81036,53562,72344,74359,39865,63200,76610,77190,49112,37272,7606,74009,8087,46847,39722,70031,62263,80592,22040,6855,69820,31401,60434,23135,31442,75733,51009,94473,49789,6717,49444,49326,89450,55589,69075,76653,57142,93077,76869,84148,77417,35284,95249,81188,62366,26108,952,18029,8021,41670,60300,22798,76646,73054,90207,4237,36698,93046,20402,62985,58510,66902,97304,36256,306,22481,42074,74797,48671,44480,43100,43273,94736,6647,61747,6875,21891,81046,15019,32366,83473,3932,56953,81174,88350,50678,25146,41832,61891,18678,35526,5715,68804,26845,92814,43588,30874,10767,81270,65751,68816,90643,81619,83812,61683,62299,38015,89168,27192,35095,52635,60175,97969,39474,45879,34082,46759,4593,59686,97286,35682,62206,66033,84069,27785,89267,51131,9230,32454,11569,59969,18972,43586,45167,89699,6574,28116,48275,98641,8567,89752,36122,66707,10761,60971,87399,79379,86183,53305,13320,25278,46985,70025,6606,81852,50536,94442,67624,34906,89339,90592,19393,18499,37842,89604,51661,51891,31061,79975,85999,48644,6578,55887,68167,23828,92338,71770,76888,36778,6223,30866,99494,10167,91519,59339,85321,99474,66977,93395,55516,34345,80004,66332,69085,54926,98518,37714,17789,87732,37506,87137,67337,40257,52199,12354,73467,26472,25856,22769,92504,32475,84416,57067,69443,69095,80420,11687,32042,41505,23531,98661,3261,33616,89091,10156,94544,27064,73681,76669,25595,50253,82306,27314,46502,12662,19216,11930,56350,8085,25818,24656,97816,59712,70818,23813,16144,60210,60915,47621,29309,59601,91324,52301,61090,11680,75133,78169,94600,33983,21853,65323,79493,71644,76839,62071,39532,39665,31516,7292,58744,4090,75083,42035,6058,60709,34609,94152,7024,70531,16561,18008,25002,74564,55444,4853,25064,77722,84093,40225,22398,4236,59440,4589,39224,60411,78450,95665,18068,35409,13764,43249,75996,89085,72351,15508,60325,73948,51428,66402,32318,3006,82172,91405,47514,90914,43187,53664,38257,36423,85015,62476,53895,54977,56630,1512,2266,68777,11728,33913,5175,4672,3374,1389,66319,92900,91584,49162,84070,18151,80989,85185,57103,47096,86750,2735,81307,26792,33704,75638,62066,76280,79676,42742,72767,8645,9775,55876,52761,68347,22102,30490,67134,40408,63050,78402,28286,51401,66972,76916,66517,7641,20761,69518,87578,67132,76797,44763,91831,72202,34746,20137,93461,40214,61764,74606,12111,75009,42722,57583,24987,97654,34574,71851,79468,36207,74567,84743,60618,10492,64994,93366,38073,96187,73968,87820,21261,15581,6123,58487,12324,90859,13061,6355,48366,35282,49574,78733,83597,84677,18363,30484,63220,344,93814,66524,87994,91746,25900,73568,43504,22228,37150,51655,38422,31540,78966,27421,9735,39212,49845,62519,82573,78628,39864,71916,22351,5135,93091,99534,98333,36956,63406,91095,10580,46660,89078,78355,83692,25087,53745,42691,4103,7278,6477,75795,10321,2687,66846,20773,84948,66525,46846,87496,26973,95588,1541,1394,10582,10931,80096,80237,45089,92788,55337,38070,45627,65529,13165,19742,21285,3527,66339,22625,98841,4086,91064,76252,14173,60653,9948,57937,45410,59975,782,80074,70010,73339,24056,11294,28695,17909,87917,981,27964,53355,1808,87811,81162,20339,95573,1519,30387,42451,39551,6866,44624,30807,84574,96761,26877,2517,2791,79381,85430,69272,64409,50280,10917,23870,23054,9639,44192,63642,58702,45236,42196,7096,39364,13094,60506,2762,84502,34554,15205,14064,3701,52715,17750,72477,73084,26455,47270,12688,85657,3605,82977,42117,54178,35504,59638,79294,46109,78206,75587,95728,43948,69739,52837,30205,67420,27820,50109,61706,20827,75941,93545,12303,81780,31118,1,83781,86167,29611,91973,46506,20587,44911,16903,22603,98619,14627,83136,47267,78529,86934,33785,11114,98303,24025,57009,27113,71758,25659,52706,56540,69856,38382,48898,39875,62934,70524,34121,77234,70142,44172,14715,10983,32686,83175,43432,56425,83398,42391,54246,28971,77545,90589,85721,32908,80293,83894,79444,56383,94393,11893,61596,21511,58979,136,87633,62033,97373,92432,32556,65016,95383,6236,22961,31254,48822,1750,65627,17865,81631,39185,67873,25265,37227,84778,50176,44587,7302,41789,15313,35201,49712,46160,57508,67997,76033,78729,55958,54751,53778,63873,46472,31876,50317,6684,7945,47238,19203,17715,84285,82876,76148,88915,21898,46553,50456,96009,32938,94182,62999,72648,71523,68024,2152,86076,56241,73243,64312,18502,83129,39427,84899,66464,41107,96682,26113,25880,38649,91230,46036,28242,89646,72083,28216,75574,46521,9224,36176,51370,73060,56629,87355,8930,19146,97983,64105,41438,56277,91644,56467,48425,39450,90572,43073,86241,29920,64210,43078,23007,36463,88080,52082,54316,6544,64481,39388,25505,47343,17946,85094,12756,51217,392,46512,51679,55607,88583,22836,58223,23664,83907,25688,62375,55534,54765,95461,36962,63794,63071,56191,58786,32943,25825,55951,63881,73413,51250,68941,15443,20875,84949,90482,63399,84410,59904,35979,51222,14601,36946,34765,75586,54699,47850,18240,42316,20109,73774,70075,68013,55484,70725,44186,80028,67491,41009,88104,51779,46159,18771,13266,93659,24681,64413,30841,84193,18990,35441,90055,91849,50344,9393,84922,32286,70757,64639,10952,78499,50118,26778,96024,18645,43839,48248,15896,17973,93197,74627,96266,90729,56904,32535,68955,43383,85623,67619,51923,29582,32693,89222,84526,77926,37218,87072,91972,83282,63168,73629,33889,56776,47866,9648,55235,95154,42664,58733,75906,52956,11760,40777,8790,96295,67308,16337,52653,92862,78963,67191,98061,67385,23936,43122,98806,27966,89061,91691,74078,51863,23381,70582,31520,91501,90786,76551,39479,72166,82508,59792,59628,91213,2751,7327,48233,18799,1211,69269,80800,12381,13613,69354,11997,35370,25456,55396,15425,62724,18831,68996,21020,28471,61057,63444,27583,40486,26439,83447,45010,76481,12504,99835,57453,9367,91315,15809,64796,90293,85340,59806,30319,68539,80291,99393,24610,98093,67133,43956,75962,26327,51013,46200,34150,65290,83833,63358,41890,88201,34886,37278,34000,37050,39034,35329,17456,65774,78326,23249,87477,81040,46922,45203,52630,54656,68873,65772,72197,73138,86858,37553,46132,40459,56402,32826,77932,41299,91529,46746,9352,95699,43304,15606,20148,60870,76717,27612,86553,10946,45785,49882,71578,64252,89405,70163,82572,99204,77700,26469,37011,97514,92818,34865,3465,11845,93686,78024,12110,20884,48955,10810,31693,87413,87125,62547,19935,9760,94163,7914,81448,33277,29718,9728,58851,31266,86925,29093,49204,6066,71537,6398,26814,95578,66254,30668,8502,54675,83895,72368,50316,19304,19906,60472,7561,47896,98256,82138,17971,52829,18679,55434,59634,93350,32436,58199,8327,24364,78266,20628,47300,69927,73473,95745,47175,15643,59338,53484,31494,70138,56036,47630,83926,62719,85378,17045,8409,45517,89146,43736,64623,26699,73871,7621,68295,62193,52236,20487,42212,23851,26157,19581,84232,86093,50859,62767,95813,87848,44917,21631,37852,10724,95401,69535,63267,21090,19229,81109,72088,83964,59146,88697,51568,9409,44627,56990,13821,22575,46821,46761,75361,39522,21500,54730,47647,59630,58594,16924,1129,15894,26380,4349,12132,9655,38106,3171,21185,78366,75872,25281,68954,14276,18760,27735,61540,39646,92178,10558,76495,89709,67549,13535,65327,44055,56915,51787,42452,64365,74409,49584,38132,77181,57623,24058,6613,31572,51214,33483,69225,28254,6377,25668,45590,15203,31591,22943,80732,10589,48345,14294,83741,77562,19940,21509,6651,41310,29559,43750,63762,54955,37059,28560,93988,80245,78198,87689,72367,3702,69180,93277,44408,43191,19454,40488,48404,18263,8312,63739,76881,86850,78171,22732,16629,39971,40546,36258,20616,8434,89087,54221,42721,47542,83028,60206,69167,91531,28265,84548,63098,6787,63305,32113,52426,64113,25526,72267,34098,85558,22402,52772,69374,9134,88040,11566,98888,15816,80042,54771,92841,46519,70930,49470,30487,95842,34859,50313,45374,58647,81926,54544,57620,49540,77835,5898,18746,83181,51008,69251,62360,29032,8383,27692,56752,59088,56843,20413,65752,31930,17058,65764,61426,19279,80911,55438,9204,41328,37451,92361,22012,52530,72497,74821,40005,45714,37718,35713,28558,56103,92716,19959,40390,10890,4096,545,10043,64862,37650,24308,43206,6451,18163,69101,98627,71044,94562,27694,22075,58906,55848,68635,22690,4183,74743,98381,59916,97562,80213,39889,10417,1454,66674,49328,33464,74922,63199,59587,38261,21453,48663,87368,65664,45313,65263,98279,75220,98583,16436,90901,93251,47837,83721,7946,63988,29632,42014,57994,37992,13781,70101,87609,41712,37695,87696,52115,40195,44325,73822,44586,79293,8613,97895,75268,19220,57439,96576,84954,5506,79141,87361,14722,72293,63725,9611,76790,33940,43727,51877,14111,83567,13572,59713,13574,85926,63730,43246,13828,8382,76300,64940,40404,66038,82973,82839,40735,22933,71837,59414,22412,65400,11498,14304,77832,94049,48238,68867,21217,45669,43265,48157,54469,53366,88675,24581,97879,47222,62974,26843,26646,40902,19620,38652,72549,9767,88275,89407,55953,19368,84257,34039,69591,67166,89412,57253,28662,16670,22300,46711,84240,59884,51186,47189,72670,6473,40084,5030,36111,62325,79770,14022,26657,72606,89265,23852,91680,92521,5031,26392,7006,18300,56949,90992,88205,19418,39660,99909,44581,90975,22001,42732,82684,90219,64237,4658,78043,61929,92461,50792,78314,61989,20634,20400,15617,4516,27074,29633,74106,88070,22831,57633,80076,63786,48382,7749,40768,54103,37902,77276,88464,36098,26640,11628,16831,21409,67271,37127,12128,59858,63282,96372,18450,77685,97409,82506,58977,74530,92993,88306,4765,91089,45285,1592,83863,62650,47599,65727,65408,17513,72769,81859,5954,25612,4033,48477,65083,58629,52753,41424,47326,81168,24578,54235,82685,47550,35415,40202,95531,44176,95207,84419,61010,92114,25893,1578,59224,75823,54202,40775,75150,20230,67490,57744,61977,60961,64465,82561,37511,54056,39177,41458,91796,80354,42689,39391,58627,47976,59922,80961,26720,2224,65207,97222,98285,24673,58233,22977,65098,85557,59353,47076,50705,5630,74721,51388,6998,43293,247,34954,61115,52251,33312,78784,89526,49761,79989,83619,1532,77593,58549,84386,96966,69784,65812,92134,80469,25202,93931,56823,84329,15887,27872,73517,36676,23323,91984,94420,47588,88827,48872,15764,81117,37787,83395,13575,8381,3875,25702,86312,50830,47804,77824,23188,80286,76629,46554,11204,81456,91486,57243,51796,73809,35959,10614,47830,6497,55009,3065,51103,26492,42864,17179,90058,70255,4615,54155,80234,15004,11090,48452,55351,29452,81730,62149,93974,59055,63242,45788,23782,53321,71052,46221,46694,57197,72445,53992,27184,57559,251,84533,48891,64415,79590,70447,72348,27733,14192,69142,97427,39008,19177,57246,2138,94044,59782,89636,41028,69340,97202,60868,50165,47881,71567,44999,87978,39792,48042,33347,31964,55812,33964,8945,49142,66437,88720,91739,50991,48749,88450,7698,42594,19948,11495,82974,98397,4101,28375,20457,39828,3625,88209,57332,23202,88467,30009,1142,69901,78836,74751,73225,16562,65427,2460,21548,31564,37808,63112,95635,74390,48027,50708,76374,78979,81284,87855,70935,29503,5376,30130,19339,82544,5272,90562,8974,48098,45054,78306,9659,44305,79850,77674,10386,47658,38952,9277,73726,85767,77916,54152,33928,3268,44153,99842,30333,68510,72067,8990,97745,73466,78203,46490,24594,83809,53336,53293,91276,26864,12328,78030,8757,11622,49291,68204,66924,49972,16042,32564,33275,82132,79795,12340,39334,28599,44430,35368,67974,28253,18362,68662,15830,96532,37827,19184,78059,92225,89768,16503,26900,71779,28525,806,73841,97929,39373,48303,15683,92706,39181,24207,62875,25444,10525,59296,81606,82671,35564,21590,93692,47427,57607,34927,67659,49673,57473,85694,22569,84261,42877,67163,28450,33643,11080,38161,20182,84671,38582,27438,42561,77069,92799,18417,10655,71274,44022,9922,11215,7620,58693,20904,45185,57703,90192,88647,53968,65817,20151,16995,24566,81235,59109,45746,93671,26036,13136,6892,61497,55592,44942,76412,76908,93194,53692,5482,80653,8500,91860,87579,26816,56571,7887,56272,72138,22761,34450,75826,38339,52901,67767,14897,40584,83891,70712,50585,68966,836,28520,36766,42092,91350,69817,37708,87903,41695,17782,13878,70356,4067,21050,20611,11413,74441,93620,26145,58597,67817,62769,11858,83408,28128,48734,47732,3052,42077,46335,24312,19461,98331,74692,47441,89561,4721,51352,7347,1268,10500,38526,78711,13316,15348,73353,97480,7500,92073,81003,73674,9829,26181,83074,29207,52886,31675,99454,50108,3902,24479,1337,92971,28889,71575,84310,59095,81897,58544,62659,63397,11516,79234,94510,71587,90287,10075,98284,4899,82000,49781,47766,44170,36997,45539,18970,96967,53660,77684,625,86558,76859,39898,27135,27592,56399,12116,1742,12297,34019,63665,33817,22779,86650,45168,64712,71887,73592,92670,51034,59989,27150,97171,97924,85872,3847,29262,95331,15370,87677,83234,27098,93928,44831,73630,80141,41343,10331,98660,89698,37945,74461,4820,18407,18015,51849,98557,5939,14858,81726,48698,1400,20547,34430,98200,41814,5190,33178,2852,50477,92562,48435,8768,34129,27010,82753,95366,1639,25421,96452,97035,36533,77076,64476,64329,14450,85279,23585,65828,88544,40597,54092,75021,674,1599,78954,85780,29121,42225,96300,60764,72273,93607,93698,16376,51432,29768,48240,15263,53591,74109,39317,57235,16743,29818,28246,75306,54277,18355,68617,39075,54689,12163,13398,77333,79448,84043,22529,70723,53079,58040,96368,56300,23110,53949,5545,88828,8263,66362,3014,36235,28522,80062,96723,54209,68199,35017,96348,36826,39198,40513,54709,65004,79033,84264,65186,41207,14297,99121,87501,23996,98556,79080,54422,83137,71703,77552,41350,51035,56836,905,69203,30964,9342,1322,71747,80775,74613,71302,99409,23108,5073,78367,25474,45653,46903,44616,79675,84560,68154,85675,64794,91583,99911,60423,92394,94719,45387,77481,78908,5870,4530,82854,39799,61,73259,76400,33138,53526,77528,20392,55630,72520,6783,57017,37095,73163,37395,59911,70766,27320,53513,19444,64015,6528,20330,55727,98426,37918,35757,19305,39352,47361,43580,89792,92205,57998,40156,25744,24893,24182,21716,96960,12839,34280,47965,10675,39390,30829,84664,96001,84472,27304,88323,44596,14792,45848,54515,43140,71737,63141,10380,80784,44131,99888,50306,29762,88406,21646,49665,50572,68225,54789,89071,63751,17824,63472,20357,71233,99152,48828,41687,95197,94892,56169,45650,75053,56967,69350,48630,57199,54933,61631,13470,39111,17248,81278,42140,93771,44675,61106,75699,90223,68087,59128,92045,30473,47541,46026,95916,66045,33873,69231,7602,16199,97776,93561,63527,38198,30177,58312,2454,19758,78093,70107,9609,56053,6704,67073,2895,87931,23221,98071,25123,60379,33189,68224,60438,68281,68147,17602,903,39525,69070,50166,46907,26349,13479,78489,45583,61653,97034,22579,32129,13804,35139,47420,83512,25431,15043,16685,42449,13888,20386,96061,67031,2894,82636,34820,14593,66111,83206,4855,36560,43707,68393,7439,16499,71066,18545,988,49475,94935,27747,16941,36593,55734,94798,4891,20081,18287,57372,97205,21745,16696,89332,19298,33551,83777,62880,33139,34580,94403,24749,64857,170,5222,21267,17536,55894,18847,98578,23631,10640,73252,94522,80285,57721,71822,83463,15242,54736,98217,10174,61185,99459,44263,55603,30498,87294,59899,82996,81100,59227,50612,12202,85053,63201,36280,35701,15666,86485,46032,8307,98335,97060,65843,93458,82316,45129,19690,58653,77900,50323,37027,71974,38477,58262,65286,97400,45741,24005,91602,10907,86933,41658,92651,79292,48062,5148,35533,41132,19337,74305,85911,43473,90422,93213,47529,77061,64298,46886,56602,3607,53222,6353,96731,69848,77740,70469,20321,75165,36957,6040,5207,68854,47921,3172,56175,73768,57170,28543,63834,69994,50481,87986,12983,47419,1332,21552,46898,87375,1485,93351,67309,30768,1583,79178,1293,54404,63583,8004,95221,57301,80544,93656,23087,92970,23122,31237,24742,48463,86097,70026,31376,67557,80341,80025,25363,22100,81885,34299,24732,96430,34730,35468,75425,16230,34867,18769,29481,26636,66096,83736,42929,79262,25356,11669,15644,97932,91717,24043,27442,50305,72824,72910,23119,57973,54008,62194,41163,56088,31739,27847,97982,9967,13686,12165,17126,48750,7622,70070,61277,72102,16676,34419,78640,27577,36661,33957,31105,43837,94983,76384,90045,72292,8835,17005,45990,10816,43668,69683,84832,12931,77948,90599,12654,17445,23391,87568,59871,97420,87620,56786,68532,51178,59994,21341,21126,19217,32640,63130,81099,96873,11155,62965,6495,10514,35521,39298,89930,76247,1810,31786,9697,75105,72738,42334,53839,39186,36818,59315,26551,45787,7645,21187,85956,53504,31022,3813,7063,39000,79802,72254,81746,39791,65763,22107,32409,67600,12477,93525,95961,34942,53448,79481,65808,56333,11627,45498,65651,3680,74457,85925,34811,50777,72526,74143,78855,30096,3770,69699,58132,56224,11200,5444,7767,37669,9523,17790,5203,68270,56282,75423,49130,25342,93648,74687,33481,44952,92537,69808,30896,40193,64445,9053,69790,47716,72432,643,62434,88465,8172,66280,48472,67281,20930,87133,44329,17296,76559,96052,19989,95955,22531,78234,65989,93008,82952,84593,70458,95362,60693,44271,44701,33370,46289,97344,68148,48951,70650,56883,13004,92168,39151,65520,66572,2339,76784,56810,54419,17885,10235,52582,39497,42293,49445,24060,92920,78845,47383,80068,629,10106,67257,60687,20231,8464,53235,66790,70801,50801,81465,12976,62465,85398,46835,69433,59607,98563,40657,19498,58122,25176,66917,19341,43718,80080,53243,94993,91567,3741,2753,6086,49139,74499,23781,40104,75672,19999,11268,62406,87306,16122,56751,14797,53358,36789,47095,60549,93060,20495,11924,56079,47359,18010,63015,41449,78162,45913,10770,31327,76904,73679,62620,10784,5002,54738,77692,82150,84389,39653,20020,63632,96623,62972,7155,34722,42840,25172,94120,25141,56937,7477,54929,85138,61794,97848,43720,34568,10076,35824,81409,39816,55112,73083,94171,79401,43607,56369,34853,91356,91485,21486,16794,25846,1267,57832,57183,27032,72339,67965,69471,74171,17090,10769,78116,24905,37186,90107,61324,30599,36659,66932,11656,31120,22892,27296,19751,21972,63103,95560,466,18758,14016,56641,96810,22045,65934,71322,61480,62147,4179,369,76666,88169,71323,53850,90884,30548,73484,21205,65050,72268,69828,31035,56941,24910,99424,50401,79701,69139,55821,84823,54650,4520,80618,47166,26908,34480,50435,96,88161,21833,47777,65145,71527,40893,99577,59024,19710,51829,44681,44739,92768,88597,12665,53314,3358,57504,4264,4321,22156,25117,81491,52412,48947,52864,70317,91262,42482,61958,98099,22550,27132,81400,7250,52560,43946,58975,60570,5355,38969,80415,55052,63442,17977,99892,9607,74944,86538,93246,28615,16078,1433,89059,54985,98707,48961,72935,35041,41545,99362,18507,21731,45605,41747,19511,17444,13759,40150,80867,59070,86496,1972,85220,16772,22284,30346,93265,15984,40138,22400,70192,78466,58115,66396,6696,48242,4485,24831,91481,27797,47231,95402,42870,60384,18053,79014,40711,83540,35359,34770,41347,25147,59583,55117,11363,96388,27090,60677,45036,13115,67417,4679,29040,39935,42663,48372,30649,4991,87967,73884,35059,90697,76360,33348,2015,21607,62922,62930,89075,82738,39627,94022,21893,8921,12499,98364,864,47538,68615,50979,71829,94551,79106,25155,16890,15870,92736,25355,65926,43834,49111,99027,75937,82774,75029,77752,59769,50259,65943,32153,50642,16527,84397,31005,65729,46016,82274,35123,20755,32012,27210,71,98058,4861,81423,27795,13268,21289,29162,71277,29787,92782,27422,72883,20924,84616,8311,61965,65738,21943,72724,37123,27881,26821,78777,48859,43793,59790,21664,69771,59658,32413,56562,20463,76147,91093,7669,12571,20134,73856,66627,60986,94274,72404,10360,82721,87330,28848,50636,28886,201,87751,59161,54082,14047,82152,68620,6987,42070,30317,98537,84982,6847,52563,31857,50577,77450,48307,16769,18327,78564,62777,98997,8582,76168,68352,57493,69567,40403,40337,70695,62020,15328,19148,31635,65879,40432,45735,7220,90755,85323,76639,57468,9511,8298,83968,35911,41561,22673,48383,73332,1002,78135,41653,53655,45446,92163,10464,193,52499,60539,73770,2238,45059,11626,11077,1004,83670,52933,47681,71077,31145,26629,19555,20120,35416,30994,4424,52243,43603,50914,1210,8176,26890,21346,95753,21264,54553,50884,37350,49210,22411,19947,97778,48682,68559,40983,163,38092,96162,48118,38310,89959,77311,34913,54572,96806,62177,81295,25943,9520,69891,78136,22029,58243,38822,96594,55701,49594,31452,72940,16523,218,79969,97769,15040,37269,68226,86735,14163,5594,12775,2828,22097,78852,60851,89280,88090,95022,24288,99384,99848,50788,75011,18737,1543,74588,31752,44876,85085,43415,67012,59150,68901,38022,52745,94356,56902,69066,31846,76379,40838,88648,187,67341,10187,58788,52074,1108,33300,30136,28613,34378,73238,70274,66301,88964,21420,33140,97834,85891,57091,88709,84632,21479,94991,13998,3299,30584,61541,2691,61023,20618,70451,27709,89985,12811,36074,31568,64716,92969,8001,89466,64325,33635,28321,23879,58302,12653,87859,53523,78437,35248,37097,86468,40039,43549,53648,47329,22656,9421,44139,56956,58777,11844,50584,44001,92990,10972,73979,15270,25629,35672,46825,4536,19118,34013,60149,61016,88214,9330,44339,96004,28622,47059,92688,38764,58420,30155,55099,47580,13006,74242,1074,44988,89863,42176,12610,27444,77157,56360,23711,21405,81384,29027,20066,50849,8607,10052,605,66308,28562,79056,47841,93292,47724,71606,26304,38564,43288,78364,3745,88660,61767,87176,51961,40714,6654,64082,74367,71620,45105,93042,46412,97900,70158,81404,33887,36079,90270,48312,7534,75521,67848,32169,23462,48095,9015,35444,38680,83411,77698,18954,26752,69991,9143,17693,4352,21411,96839,6868,32527,2991,96835,35449,97479,36382,26325,26929,96722,46279,35777,91476,7728,77477,4892,63514,91836,56699,22149,81363,20750,94936,4047,3831,66272,98287,39485,28131,72499,1524,93068,44823,3055,50069,40087,45043,23447,14862,40656,36535,52717,2504,16448,59483,84946,15059,29181,96460,53361,2766,10443,35187,70515,88151,29992,78022,11168,5084,49087,16839,56584,63062,89953,59558,63528,45853,36326,86146,47075,58691,59507,58218,82746,67885,88174,41244,64615,49190,59130,59416,21303,71844,24119,42834,99941,72922,14773,64322,11549,94258,97105,19422,5537,18193,43801,7900,58371,67874,1603,95240,79035,35945,29367,71432,43979,64314,55782,48811,88965,36287,11454,71509,64855,18003,66046,97483,70904,22309,36668,62582,38177,46888,94771,70659,43752,12773,96065,16216,11584,26935,5957,8037,80370,32541,79612,68396,25946,83842,96330,17312,80606,59850,65301,58537,56089,13702,55551,74659,23934,34094,37202,1091,22937,47522,21429,46448,59178,36581,64127,8659,98370,85090,76572,65188,5411,29833,12288,64278,81494,3422,39617,5748,64529,80333,76268,25928,29573,27668,80589,30623,35870,83014,80994,31567,27947,82387,39745,37604,61123,55852,64385,39911,28318,25246,42798,291,53527,79992,99875,4404,46373,9831,32985,99937,89842,43204,56431,6967,22606,63092,51068,11623,49976,45737,73875,88524,26609,61873,5274,65113,48500,21870,75997,59949,61191,18043,242,54584,98872,73550,30837,4040,30654,72377,27635,19867,977,60844,5859,99062,61707,57577,59117,86026,52245,60990,84498,95657,35160,25956,55087,19604,70269,87574,26545,65810,80673,89394,91674,70084,2685,85642,34154,71892,85766,38992,26920,61091,87003,11072,58807,52421,1654,39632,39405,4481,22003,5739,15673,62960,99250,3015,91868,38740,40732,83726,12570,36248,12456,56771,3069,57847,84393,75050,11546,11342,65496,1387,43754,64646,75271,26623,45222,68064,18478,77504,35595,6326,46879,59048,87581,59147,95464,16716,1501,86517,92457,85255,856,89444,80268,57780,4821,20635,75071,86121,53615,89708,15193,35754,55695,99236,59037,43533,56202,47989,19071,5883,12103,92127,50810,88235,74420,18060,52233,40130,88644,29754,80151,34363,44685,30293,58118,42805,94555,19306,3791,5629,23836,14570,66400,65858,55100,26663,44806,5737,36059,90522,74616,97203,39017,89764,96154,66127,37386,71727,43788,8836,1110,40350,22121,72992,56577,56929,30091,40303,50685,69036,62975,82554,55753,21447,62258,20850,53671,66287,52486,50586,79346,70849,21691,71637,4521,65957,64126,50742,27620,45884,91250,9426,52619,45946,40400,59142,82670,16348,839,41559,37129,63603,18040,27518,8014,45090,46510,49991,75942,85658,16215,30652,62673,33898,75780,27606,23454,37382,6084,32110,76816,2274,3419,40235,29477,53565,54231,73115,56226,2116,93190,67666,656,33445,93957,80148,28449,18329,6386,23529,91752,63932,16828,77107,72152,93390,37529,18573,42516,95532,30394,41346,85810,25040,28628,7239,78147,72070,13442,93340,35635,69799,36636,44194,90621,74884,77619,72300,87448,50219,86672,6327,14919,67264,32725,70420,21623,43648,87943,67503,648,38944,50183,80801,46826,4268,1748,62046,70110,602,79970,42026,33583,56136,92051,34519,92256,29230,74825,9051,75718,8118,54105,63737,90626,68731,14747,33871,67395,51293,93487,8946,34925,49416,65018,15533,10751,82183,67345,31530,71307,81558,77088,49748,10974,53882,73002,88586,464,97129,45480,66429,9118,26917,66609,87658,74417,36741,59113,61840,32576,93579,84864,99251,40865,66212,75995,6387,95034,59930,95947,70711,22723,81802,36453,33772,86699,19122,66879,88888,40197,80727,56983,1787,23759,82171,67100,90908,39963,96258,54238,40740,5416,4775,77585,30558,42270,40605,42796,31836,85337,70736,8174,32831,85905,9297,62828,31691,66584,81454,49944,27058,31825,29025,69001,53363,68568,54331,10618,93845,78076,57768,77448,81017,73812,62183,89512,34657,6685,46464,49760,77818,73064,96054,26110,94499,21131,33821,7975,45725,40275,86869,47759,14572,70309,7306,21474,80019,57229,29328,79195,97104,55690,15963,3953,87428,29095,47085,87431,46916,94200,95337,17836,1325,81950,69803,59523,19308,74756,49526,45420,39589,47820,25647,13707,84847,34198,54966,84339,28679,5309,29214,31207,75077,66529,74695,75089,31981,85589,37380,5015,21373,56586,4914,81663,11576,31227,21871,68022,97694,86603,78267,8998,67676,9730,67775,15564,36435,48053,50201,12825,47826,38189,9162,80656,91978,57121,41141,25277,41540,17849,34024,45622,25504,87323,96675,1164,82494,88071,95644,0,82108,8650,20058,99304,52767,77248,20927,6941,837,8797,3845,80472,52402,68127,15534,19672,33527,63060,7100,7646,89274,31027,42274,66779,557,87328,5636,62621,58763,28105,49030,50150,33538,20674,22905,83235,34706,80380,45093,32403,15202,20171,8369,47113,77787,5258,54349,47770,48442,80722,45713,30456,65766,34172,99025,33951,2583,87928,78560,54342,86450,64655,38600,43743,98127,76552,91035,38501,82210,88939,65831,92345,28161,37865,84365,59407,29327,13966,78058,78334,81219,33066,71447,46914,35518,1636,76107,37770,70992,78312,70368,4540,9742,84267,97855,42191,42090,30696,12097,68931,11575,38230,53145,14310,54010,73094,43691,21873,71477,71203,92626,35348,26502,27248,63609,45248,86161,17587,70484,47939,93603,41568,98853,62146,82322,86120,36058,78683,39605,40480,31830,66110,12670,31246,90498,82925,94000,81416,69467,33872,9497,55031,72740,70462,98828,58498,39202,11630,80159,4390,17843,35670,47043,29755,51336,75869,17128,65023,68916,8333,55646,98313,3467,67697,46056,21460,28978,91819,17265,23498,52072,56652,85831,28934,64154,29442,58309,2813,93569,4789,16953,8598,38291,38685,31276,36592,49140,95770,82540,26021,94876,41821,75929,47457,12572,78897,73217,50495,77195,76396,28100,14712,62789,99662,98458,65413,95419,56305,34044,31313,20343,7783,66398,19734,96729,19687,45040,34532,70377,28538,32231,56097,68822,43497,33660,53256,56163,16731,91192,33179,82517,23714,29645,33228,98003,85611,99843,84491,17847,26881,39502,2552,1993,79949,70951,5994,73626,74082,55952,54522,6558,89256,19744,3653,73857,99282,67752,3208,41004,97662,42612,83513,72634,67841,14698,36561,80888,51465,72627,44591,66475,53814,83150,72153,51953,87828,20367,62231,86274,76760,3572,90717,89865,28760,73471,44877,24138,20595,62043,63179,69470,32031,53612,32177,91372,68327,49818,60777,60566,8094,7594,39413,79290,54679,37989,24917,39206,44114,34937,54685,59857,38031,70306,94887,95827,5304,85417,54401,67957,90945,58897,44352,57413,44749,53577,16756,27809,98291,52225,67326,71992,58279,51414,80671,69078,69769,28828,26968,84561,27385,86100,11062,23653,82266,71101,81226,74303,90368,92878,95102,51931,62677,53568,946,97864,67836,28786,68779,25375,77288,72457,4241,55367,71282,83232,90017,98119,75671,12699,43239,74770,47861,55003,83545,76780,97881,41514,41089,8055,9050,61452,15044,84546,53866,88663,63301,9247,20621,10451,58195,33238,47786,20524,56220,23036,12893,93751,73290,20973,25198,41162,14956,68445,85651,50078,35207,51677,84958,7755,77627,91468,52195,20362,20536,91758,71817,69831,5713,15083,26862,25019,30651,99314,84530,5668,93911,99259,83250,58634,94976,4160,13889,29567,15237,26988,2743,59870,80289,58288,28508,92585,84618,66651,11269,69188,81978,38513,63033,20263,80577,72272,88242,87742,63166,63496,78896,5142,48738,84693,29445,64497,8964,82433,63170,48401,7382,97102,56824,75643,31210,8845,37288,7334,48352,35411,19689,75742,36658,33118,45218,8392,35913,40560,2537,12199,3531,99228,61721,92925,91977,5161,30457,6371,18382,92915,57358,18271,54184,53588,10019,25665,28857,18639,51501,83299,66078,51244,58500,9757,78386,17661,21186,2712,53419,50538,85968,32059,87656,20962,87942,37838,43277,32523,81301,49528,80687,42563,67221,8206,38972,34293,58411,55675,24541,52219,43419,4614,83200,2802,16419,85897,17878,48744,40184,11938,80357,63344,79791,1352,76196,46620,14604,6635,62973,81731,83233,65376,47027,36911,11074,79240,53743,28266,37762,88619,38889,1608,93370,68403,19055,53415,72218,78050,31992,86421,96700,45233,73691,30996,40369,95867,52465,92411,14892,13207,6045,16958,1217,767,65996,55566,11456,73912,38837,11345,21117,81811,65134,78970,58625,69207,73806,21945,70845,66200,58085,16314,60016,91369,3496,61147,77349,36547,16304,8903,62104,53272,18233,74926,45937,30485,74424,75846,82308,96339,41966,21803,83568,25813,83055,83364,77566,62350,30877,31823,65716,4444,56592,29139,10489,56973,49865,76427,83764,81463,53629,16616,25794,44427,65773,80736,31305,3123,62971,56768,20340,66514,75664,47674,80594,89101,69053,41851,40458,22321,28938,91549,46249,74740,80683,51954,33671,73611,58052,59321,7218,13461,48073,94452,29068,63473,18651,9968,24238,77725,4872,9482,16086,37722,5849,32187,49267,18543,39320,82980,28789,94502,80244,74585,18906,3461,98778,28298,95465,1206,2676,11941,48569,17866,13916,48462,97175,85708,90669,56362,57075,30780,73154,48507,20373,25232,67536,90964,46919,15272,41260,78793,1127,68963,89815,22168,70102,51629,97116,87454,85587,68573,65458,15163,33230,62425,43641,84710,84060,3841,38329,56522,27743,50030,34342,97136,35810,78839,18561,75241,25150,33419,13046,26667,99616,18032,77560,65486,28066,94576,53081,30489,47190,92418,33886,54870,24591,65485,52680,72149,22146,30024,25967,48209,42542,30308,21564,52978,27799,33479,29171,57456,89199,16837,60211,48003,54879,85852,35313,32119,90663,90919,34896,86547,36917,18023,51734,44612,2196,88246,55910,86568,10659,87920,91809,82793,17217,86397,7209,72370,68531,93181,73702,95045,45623,9827,28342,14596,26726,77048,96590,94466,39385,42639,30039,88155,80793,3202,40144,59145,92912,67556,16474,21764,27084,18996,48737,39112,22542,1152,44993,81902,4713,5177,18794,36087,32422,55576,24701,93337,29869,22055,74668,67224,52057,80153,31614,16695,46435,1589,22737,57240,36568,84056,61836,23827,22571,83457,64364,13611,28903,36124,91220,41145,16833,96571,57828,41858,97901,86210,99671,17294,65534,18311,94833,39407,78056,13829,45441,78244,2019,81702,294,31283,10090,5497,74913,32710,63779,81534,88118,60457,50169,59674,1042,60925,2932,19702,34510,98567,56968,67477,92643,57529,68554,59842,28685,97564,85846,22237,54932,15620,85071,63792,28388,67419,59605,32383,53530,73264,83638,43363,88822,74074,72071,60348,14198,34696,64152,99334,52969,64914,98574,11467,66474,81578,26442,4549,10096,85003,59466,19499,15128,14702,64816,47787,59617,29713,42056,85452,67342,90062,93826,77677,10657,99520,51242,2810,95710,74418,42531,3189,37372,32193,36143,25592,25084,13898,79087,75127,2481,15422,83153,46008,48583,76353,41128,13052,37389,92773,38725,41861,14308,75104,97146,49379,49057,37261,1862,82399,24256,88635,55334,19912,31273,8900,40428,6853,74162,66340,29276,2953,43449,98113,29839,89522,24316,19475,87737,19594,55404,30491,63053,90842,95765,68494,49138,66201,25227,59837,95726,51394,28698,52136,59355,45097,12280,62948,53262,17958,89032,58542,2139,45176,75213,36296,28731,57649,54757,58295,15575,43790,98502,78282,31640,16343,80166,88617,80204,86350,4545,82627,35579,1353,2005,53437,69993,48390,58209,64308,17084,16757,39005,58379,99918,29556,33737,94434,99035,94806,79817,35947,71498,33294,27157,87940,45626,80054,8568,9768,61001,93672,7922,59770,95413,90655,71280,60659,83790,76895,53018,88869,72628,32706,13537,51579,43724,94725,4640,40244,14920,87164,95281,4611,47865,59626,47701,1956,15483,18869,33626,69672,63799,68272,162,36250,2988,60014,77001,55123,69175,17926,19855,50228,19763,430,44342,47147,63090,43886,23917,45733,41487,22585,40000,75291,49964,87591,75856,53930,58951,96392,21465,83425,46926,60301,66886,41269,73503,81699,22220,64345,51905,11288,73522,23255,82702,5983,70200,63696,34560,7524,2085,55109,26632,39571,16698,60785,38646,9964,87784,89391,8802,1789,85033,55387,32466,11060,22474,30747,14671,39549,16495,72366,20768,18930,31162,85232,48221,99188,17619,90400,33683,42034,22984,28884,50525,78243,22807,2186,12172,69164,98380,1244,17396,71116,23871,8023,97657,63925,60307,83197,30087,44800,76010,14018,58806,48305,20334,61380,62613,22826,25216,80881,39270,31870,53816,94841,78867,73858,85331,7137,78650,19331,1078,68310,46724,733,69931,90710,18001,82028,16140,74516,40308,79176,9741,28403,1762,97538,98713,95926,57438,99336,71473,87175,75137,75132,50377,4413,53722,48055,21073,46344,96472,97312,88971,65457,52863,55604,71031,46329,49399,15262,76005,96010,11242,76282,18648,23700,47272,23201,57244,3381,71608,27093,668,39802,12849,9618,33904,27908,34963,87074,27087,97707,30824,18560,88941,70404,9234,45126,90238,46022,17623,80604,87053,7746,8950,49554,46147,88608,65461,55668,2565,88363,7438,50254,38447,70121,36177,13628,3819,90688,33638,58890,23361,48942,72474,15915,94105,35866,31489,87583,758,89713,62637,23328,79400,3687,78583,37596,27547,74007,27528,31782,27330,48998,96323,87406,27061,39438,17555,99199,71346,60158,79134,49355,89882,29148,16277,98241,44446,56542,75776,10627,40499,65785,22755,47002,30774,25590,26753,25288,34424,63288,96798,81058,60262,81927,28397,79334,78270,34412,41195,71349,55754,39931,75274,11738,98579,34042,27514,55824,64096,64829,55693,6920,49923,847,40018,73047,16556,61768,90665,52892,67072,39693,20055,7515,90929,96915,27840,74828,14134,57417,64537,30492,65084,19479,45123,76709,65897,13653,44143,9492,789,6429,86364,49179,10652,56232,56667,30759,67064,55769,86034,5212,93300,89480,75679,3266,9348,55428,53389,22345,63501,49196,5947,92057,5357,54494,54481,86831,2156,78705,30315,86012,67950,17904,15931,92981,67354,75835,2003,50946,63326,98681,73918,12215,41032,31521,36457,30677,95231,28703,27026,67463,25648,92402,29958,95345,91985,28820,77184,75730,11409,29028,39051,50062,46668,11399,35534,58025,58472,2507,80768,29527,15052,74459,63078,76076,17064,21471,26513,81067,81440,43625,93032,46943,95325,57015,36324,96213,78720,40204,50897,1106,97843,38948,79945,16931,17568,13149,72100,31353,14731,80806,43045,37997,58135,72547,74371,65315,57889,11572,8157,64217,30325,29691,17945,72558,87744,81069,55081,27494,4681,30006,83394,97023,78888,66519,46420,9614,40114,2621,83898,19618,71636,93520,43730,39566,36376,13579,97605,38523,65790,41943,5456,19587,4434,74112,95010,63793,30228,46563,67811,1326,21448,87711,48234,94786,5909,62577,39912,78448,85026,53085,44349,65969,54775,64919,2958,31159,27972,21733,92718,94874,46006,72907,76759,3028,87665,69320,44873,9123,22445,78462,48693,91687,85966,25932,20494,86930,61352,52496,36572,28420,34630,13438,40502,70007,14357,66491,30726,73454,44205,52764,94946,68506,73384,3289,13141,67452,58335,84912,90299,52709,48532,74032,88302,6137,10265,82740,41279,77962,38010,86232,35559,55381,48931,4005,59800,67710,88999,34411,93417,71103,1729,92241,900,94871,47558,99566,93865,45932,28042,62550,6472,69906,19167,88923,60538,54474,23072,12497,20945,10880,30280,22638,29549,56058,609,94010,85280,1795,69141,73501,95602,5352,95152,1458,96901,64135,16610,3098,84656,25184,30082,5339,25222,54570,38821,96533,2899,8270,94804,78488,89188,41312,20458,67548,55800,93057,99838,70526,42778,36645,85096,6463,76223,17713,12314,92388,16793,7340,35560,71146,17764,69332,99861,10079,35171,13233,53409,57196,7648,11364,16566,2029,55072,83845,47669,1383,78016,52389,31515,95678,8884,10681,83811,35603,98612,80548,46671,15368,59772,76827,18754,18280,35304,98220,39964,17204,16307,53103,83389,38169,13849,52061,39740,73093,12679,6741,1637,4726,18034,98219,63082,87681,89751,45496,69028,22768,66285,74291,23162,31271,49913,85960,37792,31077,77812,12624,44630,8788,56499,21304,69950,93218,29980,14944,96056,12093,73914,41198,13676,20856,60121,15875,7571,27295,73487,15142,23154,67689,76323,29131,6307,56043,38814,42567,44003,44180,70021,97032,7929,69615,5535,10272,53080,87199,55349,40926,97361,65675,48711,55941,1249,69358,53414,71553,45895,7064,40841,87259,75374,71803,48524,31221,54582,10852,31607,21637,16320,1246,93034,16440,89823,82131,20046,35349,13196,74883,42589,57573,31012,7653,53497,34678,81797,27578,18618,73745,96914,83983,17298,12013,29205,28839,57513,93948,69528,60848,13856,73145,69628,22962,30348,6750,41203,80655,23095,74210,43260,29399,36801,5936,85467,85118,27885,94342,91668,65202,17401,1614,75046,22068,87818,25891,56938,6595,41721,438,1730,64768,82406,88655,61387,4318,66926,23260,89991,77045,31952,66808,41403,87626,48152,2906,11777,89080,69045,2071,13146,54175,53386,23092,4288,99610,38433,14568,71522,67887,80386,70416,62995,61005,33958,14247,81064,42373,18009,73863,12384,44918,95487,14317,14768,46445,36389,72245,33686,63627,38756,99436,77058,19292,26833,63477,77741,4338,95788,26410,56608,96159,94957,52043,18105,56492,63579,78882,70357,23000,65950,25981,91127,10202,63653,97157,79561,66775,91163,29842,50986,90704,38924,30054,30488,25119,96188,69597,46418,97530,61712,36097,86092,21413,90452,95812,70831,31931,79541,95446,25449,26082,36393,84654,43503,99080,78420,89871,35273,19534,74396,94971,36295,34327,62537,56066,33751,83778,76539,8131,13394,88787,25749,20208,39269,60356,50739,71730,48805,55671,35859,87182,9329,80634,5638,22930,90861,80688,49199,26454,36180,92613,27940,42148,61804,38076,99329,5415,36431,69997,3839,68200,49442,64240,12720,58481,22716,41076,40958,81105,34027,55570,86073,2757,47445,47819,3704,35699,31597,66239,50073,1891,96689,18619,76920,61378,59477,96614,90726,44261,1726,20825,61244,702,29425,39578,44704,19785,74274,90740,53144,12798,21311,12162,76765,30290,85507,62261,30929,63523,30202,55778,25917,64566,7182,68974,32664,3362,82012,53461,96451,55186,465,986,91525,4306,94578,37837,87739,41300,44240,40525,31260,13749,36589,86786,10109,13782,27707,84511,66416,16501,9265,89218,93423,79996,69102,47254,25097,35538,28832,83409,24665,59053,11698,69121,78422,72996,11125,78392,51271,90060,9324,77213,64997,49392,97691,68412,38478,58610,63235,57270,83920,88046,46593,45258,16197,40500,13991,16640,83853,18595,39714,18429,18210,88559,78516,60435,83613,17929,86809,48813,48940,5267,63880,16868,41763,73412,31655,2093,79815,15243,81361,94462,85209,16604,59588,82413,28711,56860,55645,97959,10305,48339,58489,2065,67104,26091,73011,45680,19862,86973,29371,18099,37542,67943,572,96107,32723,19990,3201,11383,42548,93519,93551,29642,63734,81049,16854,37174,64457,17402,90393,65013,76864,40719,86782,10518,33197,48173,80554,75250,60793,30330,94339,31043,86704,67854,13750,96823,33482,42107,20625,52815,74610,96467,46440,59533,44637,51955,46642,56008,4924,17019,28183,87326,59239,54504,94259,53017,47108,85676,78099,50947,52883,38260,48933,89322,8866,51326,27871,93122,86675,79651,51410,67288,15265,40992,45237,55600,75842,92080,96850,37726,34459,58695,86472,8885,2267,70540,78502,83205,63662,57070,64408,30076,64218,79067,73009,91167,61762,60850,37312,61280,96318,74886,63212,60799,4219,2873,43536,32871,99170,30405,85893,40574,6074,89535,79741,51165,1813,28587,78324,37024,29904,4814,31158,68323,95808,82916,76931,99460,78577,76402,59595,18723,70943,82046,73088,71250,47247,59971,49622,45263,9901,25543,72725,46087,35435,92717,31524,63935,47091,61410,20580,56704,9676,66542,71370,83105,57941,68525,1041,2308,95492,4064,90439,99374,822,85420,16370,22705,99542,58180,88528,55677,12400,67584,52687,18761,10519,67230,11869,10740,57465,18217,32671,93867,64141,9672,85645,17774,56243,60674,60927,52752,61993,91413,44257,79965,6976,34768,94248,88325,53937,49552,70897,21249,76505,25091,33261,25746,29474,66325,27492,55911,50143,46467,48515,11804,93721,85661,44068,69618,98555,26272,18057,43925,79437,14918,62938,57388,96530,95711,84590,30675,90089,77465,97766,3365,93726,42261,72751,72260,33449,19059,3561,5887,64779,59845,48796,75093,29075,52075,15445,98290,58127,26922,47327,56596,20821,47119,59828,44826,22120,1632,25601,49499,72219,51864,22528,2773,26154,43103,35004,14922,23156,70998,67669,59495,78192,15200,61832,39897,72389,50264,11379,8433,27384,82667,53037,5423,20277,99592,86501,84598,8345,81662,17526,64624,71382,20622,20323,62123,46189,91675,72184,765,34661,31264,57295,13131,20427,76508,54119,47451,20276,75178,75110,85600,82923,8536,58512,65258,21291,51790,67135,46959,27946,64404,84188,8667,50353,44269,83118,26138,52658,28218,72378,68536,20847,63876,18661,49040,63934,46068,36742,89410,87556,98360,81677,79670,98725,76883,42696,55667,76156,86531,99987,14354,73004,33177,54293,57755,98905,54984,9924,13835,81087,56773,21971,11611,54021,68605,30689,2312,82645,13721,57603,70297,98156,14914,52040,4451,33561,23124,89782,70795,42851,2600,25757,11616,17329,76461,7865,25121,52264,16345,71021,25565,93454,92174,16233,10768,12238,25010,285,2327,29921,51094,6956,26860,21960,16609,92852,9269,67537,26058,76632,72758,79441,71391,10040,43032,81990,46461,7703,16088,73784,97389,93544,48070,36694,71102,25312,10763,84362,80525,26280,38156,65833,97546,78191,50503,18855,92250,23869,62556,70882,2407,22521,12595,97255,72204,29647,67695,76392,92385,63748,39194,47879,78453,84012,43092,19634,92596,95966,46366,80105,93649,16602,52391,5168,75709,86912,85612,87607,17066,62596,265,10598,69812,41078,35513,3502,27197,39432,81761,27160,6524,81253,75813,840,44158,43361,46054,71896,89566,1645,64511,8902,46398,63684,70461,90514,10341,85231,74455,20425,7365,20979,27691,6328,73432,12142,71985,22566,53021,98536,5784,83310,86381,28577,88616,80507,85932,97814,58646,55680,28118,10011,19164,1706,50904,25701,65569,58211,8603,66820,41924,65187,69027,60885,53721,87843,59427,66089,17573,26012,33374,58454,19820,64564,79390,78473,65570,76325,82844,97009,16951,91979,92533,52484,57368,77820,88750,6104,67510,68561,65068,40098,37582,5614,66228,88912,99201,24778,22940,82176,9603,22645,52669,21771,4166,21638,53061,74995,47564,32949,69904,99562,6905,13816,44958,4882,31166,87961,73269,64880,71582,66043,25211,9490,49847,33559,56758,24627,78464,14822,64599,78238,38000,44885,37952,76502,63024,69543,83049,1124,68093,58536,2073,83190,89877,12995,47686,47183,90297,78747,22843,34775,2275,54805,74725,38048,18691,35229,27069,80335,29360,64637,19375,63147,69716,75368,31476,5425,32138,2884,29649,36002,57926,70145,58401,78813,80712,54070,89477,92195,47730,29480,90100,86045,87772,22185,71930,28363,86313,13102,90095,82490,24355,63844,7824,62530,4409,20770,57472,25015,38126,93991,55171,34511,50521,31915,22630,41378,83446,39639,992,88150,16906,68370,90733,1242,25083,51467,40219,89297,51346,7489,11796,34317,35295,43628,13440,24638,87947,57575,8446,66120,62416,7168,34312,66386,24070,48183,91300,49368,13534,97139,82856,83608,3074,798,51400,91698,82601,77617,65445,3242,87604,24204,6611,54839,87776,74584,54538,88274,17411,3906,75226,54076,12077,4013,58642,49404,99714,20921,63373,28764,4107,61525,2210,69226,25432,43661,17173,2957,34528,68805,19246,61081,24046,53466,46621,29651,97653,96649,89974,93774,20013,24994,22733,93807,79462,4348,40139,14766,72735,59619,48069,61088,48845,48667,59731,73721,96382,13778,58812,83355,29384,86927,90239,96008,27768,833,40921,95892,4217,77456,74748,33920,70304,92336,2243,2042,95823,79566,14775,99356,1515,48361,62407,66324,25952,65010,30586,71412,20351,18622,15827,27954,2746,86637,60502,93137,46957,64455,43627,40042,49581,8192,47597,40117,76171,96050,19756,13609,59155,18743,29844,17249,10594,61935,95462,21676,67208,6856,19832,26209,82729,64283,94387,19481,55865,40044,80145,17428,74696,21708,58965,92800,71830,75767,89958,42058,94026,95158,53601,4129,88613,64384,36705,54906,74832,99164,58624,38531,13093,38337,60249,34729,23894,94129,64502,9998,31995,81518,41463,29492,93473,72053,94781,71409,11091,36575,7629,49988,56867,6661,75651,38418,88075,44706,70194,11615,8490,72989,35561,64011,97417,68932,20144,81387,67637,3347,44475,79513,52306,4380,52966,2326,763,86874,1256,58547,53462,32307,22416,90893,12872,70337,73218,36247,10499,42377,36542,6102,85933,47757,14886,22919,49471,40011,60608,20662,17778,80929,67981,78652,72049,24919,27271,9517,79705,6715,76160,69532,4304,23732,80899,61149,60623,79013,49831,16172,35242,30337,48754,9306,88110,45581,35232,77520,35520,80605,39071,39587,89516,45921,41018,46545,63074,34018,94054,15891,20434,44335,22369,33601,72768,36096,77136,20934,37776,39458,30313,30950,23446,22191,82857,65825,72460,92938,51462,28140,7959,35910,65216,42829,15619,87217,61913,74084,70065,16741,83711,17476,29404,49672,35404,68095,21671,10613,98275,84097,43009,67206,12430,99815,12285,13917,64353,17191,24159,54960,24723,1114,34015,81729,55665,20168,88445,67080,37465,9308,36311,30697,4945,84765,89206,98595,44044,38686,81743,54786,65205,27505,25781,14526,16334,4746,1694,6329,13762,18452,70691,40526,68198,94671,68529,46769,33115,13262,50964,86729,40653,9087,79091,69081,62284,55148,24085,61821,87771,34885,21494,47084,60670,92467,80805,33677,83106,61613,64318,70431,77906,53485,36732,98345,96087,60616,68848,61038,33602,3598,75812,89738,43652,21525,87015,47187,84961,73035,73281,2724,19063,55506,27321,4301,62229,91301,93452,40538,28121,44757,45466,29341,74560,73607,85151,41156,61736,17570,65051,75288,82105,57864,21792,11916,73585,3423,27639,52608,50171,41374,43568,68548,63564,32184,66150,33363,73729,4095,77612,62764,61239,37519,51650,62178,69577,14207,21419,70495,63518,73699,47157,67209,94770,23469,34598,26735,25768,54502,3451,41662,68793,90524,66815,90682,79008,55170,85464,35736,75155,62436,57110,23570,6361,49659,36297,9301,72579,98868,67397,95300,74720,34022,64032,25776,97753,7744,20764,83697,39377,25546,6290,90331,90123,4216,62526,98769,51814,61530,92497,50119,68832,99046,66616,64644,58160,32506,76668,47871,22413,36055,66531,76126,2780,13095,46212,75555,13339,48751,81074,1760,60009,43275,93356,1692,88686,2680,63306,7556,55051,23845,57503,53865,18434,54130,58981,46654,87975,32683,12192,20143,44093,9752,72717,88871,62056,91265,93233,1428,75386,52690,19219,91734,20876,4871,95881,19560,48132,88292,71373,25369,56721,51615,42916,84891,19190,42502,84102,74497,58286,94908,95218,46550,62570,36252,30154,34793,32350,53503,40030,8390,95143,736,3082,7666,15780,98945,77478,33884,61111,2916,36444,52922,54801,49100,80451,61012,62142,31573,44027,18837,52906,10710,75217,19355,40218,95480,7299,91799,93596,27416,23185,92275,22987,77295,53921,69602,2068,13074,10841,72388,31725,73,39861,23276,94448,85100,5586,35317,40213,1474,65746,63079,85991,50687,39961,28085,75968,77095,17999,3292,31748,85457,47807,56925,66748,59643,50781,9036,6024,10856,10007,54271,42179,89308,66799,31181,11606,69177,883,32099,18126,8640,74288,99263,80625,63558,2132,56441,60147,19022,65775,48508,89126,68085,53039,13671,29605,73199,5680,55507,49225,43242,15637,33932,35183,59480,95790,95564,53093,94843,72238,24720,48266,72012,55062,9450,97482,29355,43744,58473,34875,30220,92135,2902,54266,45689,7246,95529,7855,18442,28408,79954,21504,16221,12719,33356,8674,94352,28347,70000,90856,58270,98608,79615,8031,66841,62377,23867,59257,49721,4223,27400,92016,56210,50958,83017,64982,95773,85338,16046,5265,93830,50406,88185,85889,28297,41271,80789,35719,94693,85455,37781,51108,27793,40023,73346,33765,28486,32539,99804,89310,13633,68556,26124,7623,74121,72,59251,24062,97997,77328,88100,33999,30995,40836,4229,5778,57361,32236,55441,89476,39253,42711,55198,89666,66762,98869,5693,6250,84791,83830,77714,74105,27602,89418,22456,13848,45582,35970,76774,91851,31330,9630,30678,90298,95539,94566,80714,63578,87422,65936,27105,72655,32311,38244,85434,66640,99856,78906,30010,32093,5687,68260,3463,8722,18098,40314,56919,13067,55839,26172,70933,51380,34780,78622,22902,4598,77536,77913,8677,76122,69889,14754,59243,48239,92317,90165,38515,83050,56038,48145,21265,13396,85521,9621,7266,22393,29142,93374,47833,46082,59054,72669,77683,82499,61578,16001,6569,47670,60583,99184,22157,98734,67904,23418,20033,50159,31136,25007,89549,99047,31797,25564,55773,43751,24990,94098,14929,22912,77827,81903,1558,44729,66817,45589,88382,50326,16866,9905,42800,22225,38663,80783,69279,89689,8825,8117,89631,90405,79263,31236,30019,65381,61291,51255,59057,15222,41380,62088,1186,7119,46018,83134,47260,75081,35846,34267,96928,92847,55256,71540,39281,22346,4494,74535,73827,8306,46619,10151,10794,93589,38848,69104,94891,14555,73714,22633,51719,38752,14467,34508,71689,79467,55036,48298,20584,53899,94954,8439,72913,30046,67618,97708,87652,70767,2121,72113,74566,9528,21693,84952,8070,30115,15260,32643,2661,4585,31628,19238,10850,85709,32102,84852,92238,79150,96011,53073,97544,22315,60069,45278,2206,30404,81277,23258,9593,51107,39564,71639,91178,2629,24133,91424,85327,10574,63943,86801,62384,36093,50674,39441,66925,77110,9971,96074,65521,20226,62036,54324,62398,20516,40108,81708,52334,18948,66900,83258,43429,12560,94803,7403,82133,75744,97705,85729,24570,39259,74969,56833,82151,28264,27638,56554,62159,66758,8130,40077,67932,55088,25534,7142,55318,78644,3265,41425,7311,47328,48598,15506,24478,59526,28029,95400,42130,40183,68843,35571,27579,88605,22205,97604,58185,73144,45331,56705,93904,70798,59655,86182,66420,73917,67212,4834,88204,46931,43826,53711,79600,20853,40333,39382,87102,51658,99763,45389,3775,49893,44358,4257,8689,10037,9047,51232,60909,78122,48287,75630,19882,91469,93088,7933,77169,26022,83445,25320,3250,94353,55045,39275,45384,47576,3792,93664,4919,2428,28481,80657,25106,77365,60555,89884,32642,9031,70353,48565,6378,54327,80975,95226,91157,54009,11082,38348,57719,24439,59898,13140,7820,63394,74235,62725,4569,80694,83381,17105,72972,88806,54667,63364,22380,27377,64196,82827,13297,80018,70259,70014,14975,51037,12266,52466,86448,65589,75206,75003,60771,41136,52716,32249,40753,38248,73804,29449,16681,85683,70718,50901,5600,79305,28624,63020,82042,7896,5432,3717,97068,78184,908,66883,48914,51101,63574,6423,25520,8651,86533,48842,37164,80719,86056,33428,89494,27770,20443,85409,27772,4905,96256,10023,63722,52534,74557,7271,59921,96354,83180,75426,31759,39594,12689,58664,7782,92807,16379,48260,90424,26804,31240,11931,72333,50057,55125,88845,67082,927,52096,18372,17601,69145,51716,47894,6108,61867,45153,56899,65374,41575,91577,59038,39019,19486,2378,40107,87511,59908,8917,69954,41061,94197,95268,56041,24657,64915,2652,28191,99630,1313,95905,60919,80113,61558,88337,92480,29156,79669,52950,17324,56474,26182,84296,47092,9372,51682,13337,75807,90936,59210,46735,23571,15266,43263,82488,32765,21626,42946,17961,93071,38719,71383,45271,68176,41174,17630,29917,74647,33895,25351,25787,95691,14622,95237,32980,48384,987,64814,80230,28860,61609,53327,49880,61485,24313,41626,56468,58496,51837,53188,50209,2792,31882,66262,53130,84967,34888,23319,53304,42862,77257,36859,22014,64254,16970,52850,44487,60022,78047,28644,21027,49601,60480,98912,16759,51387,55981,56663,26378,90052,71037,21947,9071,70422,50872,16829,18464,88704,22126,6492,91462,78337,20769,28366,41103,11614,96693,36739,33708,60440,43180,46009,17492,29417,52206,80969,19218,62224,74590,20042,12898,66306,62280,72668,91765,70273,76609,29020,96479,7794,90809,81957,26748,45872,52111,5422,4695,18289,12001,20810,76021,85655,7328,17907,64275,50266,55388,9217,5365,91433,40866,90674,47442,12591,63612,99811,18278,14166,47071,53991,1420,40443,50966,2165,73843,87079,7776,81625,66269,50740,77755,17247,7532,4489,90321,52060,47523,95417,4113,3021,25527,21250,64557,35422,80591,19273,56774,12439,40377,46407,57203,18168,25843,69357,28980,7537,10474,36,3143,25913,40951,20623,95876,69000,82355,41970,99359,37627,39511,25004,2577,31694,92131,92359,96135,49935,73276,31197,78938,66568,66013,45472,22082,8842,4786,73360,47284,84473,80431,18750,56283,89114,78157,8019,21160,38034,86464,38466,43624,60765,15025,7381,10915,87032,1676,44839,116,85639,17352,32622,37344,954,33088,53398,31190,6475,45687,6618,73183,23216,58852,13079,63293,22623,52810,92936,43442,20916,77550,19842,47694,97921,36729,64909,6140,44459,59737,435,81322,45654,8231,60883,85840,28770,97258,34512,26404,20475,6446,29285,64168,49400,18465,38228,34903,17997,91801,47252,88713,78948,31267,73179,46513,8565,19682,70410,16770,7559,37279,13529,48314,7431,70550,38535,82831,88234,33820,60672,9025,89453,64950,94761,11907,93753,84157,87445,93993,89858,38550,39938,91508,80000,94441,61834,45978,99586,62966,94088,21692,64289,73904,3301,18785,55742,26230,88773,70685,10373,37406,34358,99612,25042,43124,55168,37308,97090,94084,22447,91115,30429,18133,13065,14903,71597,38395,73014,71695,62014,91997,34492,65163,32018,64170,44291,83744,41985,69156,2659,66093,97787,19319,73215,72426,21624,49303,92098,76501,47695,13595,97995,92863,73703,97829,98378,32834,66243,14040,86876,82263,75762,90046,42061,72879,57386,98526,65042,49936,69688,16368,5616,62153,26516,5036,13473,91270,58305,84957,62321,10608,10183,825,25752,56999,83561,35120,65247,29275,7724,3543,43203,40307,64795,43957,62711,62944,59426,18399,62411,72559,66100,59622,85413,41848,42867,78758,67437,41802,39343,10523,4779,56725,73946,2801,3776,76380,57175,89976,17683,77866,55553,7845,47650,66122,3235,56598,16387,46719,8627,74569,53119,50006,79065,44927,11442,2739,18810,81759,3721,86715,98907,10737,70675,76118,52323,50442,53382,14893,64773,50092,59535,1935,14571,72133,25292,94456,71701,91604,65985,38362,13212,65065,55321,95818,55610,46551,82037,23558,19792,65749,78081,23667,56944,27628,53150,4603,72961,9223,77305,26010,39357,34114,29509,66728,2261,33116,81976,92985,85129,16882,84018,69969,21739,24608,414,81090,64630,396,36424,41224,7780,92962,25689,49259,533,35344,2921,76590,27263,79806,23530,75819,38918,3254,69356,83715,84423,34058,904,39145,70282,32104,87482,20479,25897,48819,59192,92624,30516,57172,56805,5260,81330,41227,55980,17307,1707,59263,42355,43102,16269,67003,39252,45683,97155,75673,58104,30911,84092,29859,28563,2143,71224,96656,54259,3236,99161,61812,14492,21522,83751,20394,71580,7301,74579,93453,40175,19075,1698,66165,73973,37975,54279,80955,28554,43510,45586,63382,24884,12551,40013,80595,32878,14448,5806,45000,97133,14240,5080,11033,55937,13823,32911,4609,54158,88820,7857,5558,20419,59478,62457,78667,77265,44330,73146,26375,24982,59214,65093,96550,55623,71834,96411,29944,55518,21872,37085,95084,18921,93481,58562,85318,6589,54107,62866,67127,12506,92222,95319,89822,28179,9257,30755,41257,36187,1719,22256,70887,8156,14458,45455,36205,76748,25280,93647,73162,99732,20017,63371,48376,68502,86219,70589,3439,43605,23174,69399,14665,12817,93989,34624,79109,58879,44820,73418,4675,25252,55969,75329,27761,30132,7448,39010,29708,78295,55728,58298,10635,85302,78955,58126,32662,37031,27826,65193,65605,37470,35190,75918,49297,59646,63470,89947,60342,40962,83116,31358,40691,19335,18135,96820,19876,90170,7932,1811,23765,68920,59589,13541,30980,10467,93961,18913,23975,28734,26030,35398,17792,19271,9321,35598,86839,29521,39542,67525,18978,69598,47698,95276,80132,64228,63916,72977,70670,17491,97840,46632,20872,84130,34072,75704,97096,13768,64313,12853,92304,71063,71365,97536,53784,98777,37592,19768,27816,26399,34503,20213,71619,89585,98169,84470,72504,85946,52524,41960,5529,16606,20791,86270,83328,58942,66804,68923,16405,85598,14771,38772,10673,85136,4372,56039,35532,20121,75868,48713,60481,25845,1254,39118,68682,67253,67146,63858,3445,56269,38159,53117,44090,57280,50470,48109,37590,3546,49284,75912,31049,9037,18165,89383,83379,16413,78210,62925,7595,65430,6073,91151,83582,53306,74845,50111,52126,52446,8764,81267,43491,38696,69025,36166,97413,27686,40297,9210,4415,23973,33742,1377,30607,86921,79053,81700,63697,25014,90098,79047,32755,90158,15795,30765,61214,6720,7090,44461,16492,27749,84796,80737,13171,64512,55464,2436,70898,1015,18121,47276,75389,32166,91036,18825,52561,77645,81620,41552,22240,3864,65978,73294,79938,46273,17705,22250,97143,2982,12291,26371,26742,96204,89957,47453,78322,61641,31447,61141,93211,3628,22551,54608,79048,13054,99441,36754,19432,15938,6570,7754,1959,21839,60994,95386,25179,57881,43472,37361,27139,59330,80865,72689,61730,12306,6897,275,49187,99146,69306,32355,12741,26589,82402,32013,5579,65783,5885,78125,45958,79613,69407,15349,41325,59249,11734,15429,55791,10921,67574,17801,5269,43969,78974,77099,69556,40832,93447,88436,70802,91285,90384,97732,99005,55163,42890,48002,18475,35272,60952,28819,38866,26909,22062,56101,66550,45731,75067,60676,82737,37484,7504,95811,25005,13064,8958,56014,26425,83012,4269,93534,54459,29625,32609,17964,27530,65522,99437,19152,39335,56000,31146,91507,91344,32607,2775,69509,16235,68517,81794,49060,57442,57895,80227,88282,30183,69483,77802,65591,88441,19747,83789,60881,1286,31866,27355,74092,84151,3763,43481,68063,35002,27561,21909,54058,53775,9578,2819,82313,39473,3517,32972,23804,24149,35587,97878,79986,33404,26016,80698,26228,41422,89437,14289,28694,19833,15515,77898,62452,57934,96751,1228,73642,92641,96031,21036,57405,6504,61140,90234,20154,97992,53782,75289,36690,34300,15386,84525,501,10353,44792,89870,76913,60030,68440,33015,44337,57598,24735,7295,35831,56044,63422,38954,19064,29535,25336,18471,98289,56670,60542,95815,95420,72874,6719,97341,8349,40391,47615,92112,55992,23436,10431,7118,41311,20960,23659,57713,55486,94752,15300,71292,56871,934,11975,29716,4637,60103,26386,44857,67788,59260,72837,8398,95469,82911,39681,41185,8017,59917,7217,11040,89828,25272,73123,74281,28206,97670,17562,50041,11443,41518,94718,80024,92918,72522,27959,51543,75661,29562,57238,24539,78578,26878,13990,46557,98406,2282,25828,19324,70485,21305,90836,66744,45565,93972,80930,41534,27882,64438,84717,66610,60577,34636,47703,19323,22386,82146,33193,59506,64248,16504,14029,13289,11048,61045,7077,17804,19150,26891,36449,15354,55745,14980,3186,41302,64362,95493,11381,9704,88480,58345,83249,13291,51563,67992,17993,15956,146,10894,44094,78132,83782,7496,61122,5914,45468,504,19171,55180,89051,38991,53928,50412,99239,3059,67529,79671,57339,11882,9661,55082,14086,22728,14380,27333,86919,73142,71745,31722,63345,83373,78619,13227,49110,43974,1629,14560,2067,91156,40984,7128,6861,55721,60133,19329,58582,27428,91006,78520,66409,51438,42624,97402,59156,84993,84910,30439,74747,99828,86676,4147,31418,25585,87587,75080,14471,1593,28579,56328,85305,44193,99012,84073,15562,51229,19654,19286,49482,79392,62864,40230,17374,41892,47517,82173,78773,99145,8798,5998,32519,36015,71396,36029,73309,5065,96264,99955,16036,33241,83444,21383,80438,19764,45931,619,71828,77002,46107,51660,73041,16762,80381,66840,98582,60796,30581,45569,96163,55356,7380,50784,20002,67242,25071,77139,49663,84299,26562,16525,76867,11385,14600,75903,8954,26585,33333,46995,2322,29622,65378,22516,54832,77965,86422,64056,5910,12447,22305,86620,29723,43798,78212,68835,74063,17708,54818,88723,33988,79909,53371,16899,45230,1330,91786,14137,92434,46631,27131,88849,62906,82164,59299,33947,72747,35116,54025,739,7033,84454,6771,33569,65948,72509,38238,89446,96958,17081,90027,78587,29331,47840,75239,27229,36193,62543,49917,81659,32400,82580,78893,93670,87493,58457,89675,45681,73893,59695,55862,15127,55881,98146,38245,13631,31499,69559,60196,91872,72613,10611,45513,29566,50544,88554,19462,20691,92645,65209,23227,67935,73296,81496,44233,33706,60704,2456,20152,98864,80220,24663,86038,61031,65995,61899,42587,50669,24023,71126,13857,23503,82680,34145,12315,18708,39737,60039,61473,94773,14592,2605,9020,95546,44935,53244,25439,60045,12191,55312,86854,74131,86855,295,75244,71768,11051,64724,37135,6217,12640,81275,5753,8705,37966,86554,43742,82434,66119,60451,43693,88696,42731,35811,34451,19200,19387,30222,13592,32327,52600,32335,16030,86265,69076,60267,23265,91650,6689,56299,13687,68655,79463,36775,60989,85937,45524,6212,84908,70022,19381,39846,82061,64973,75731,33565,20725,23776,97942,28550,78673,24400,77026,84202,91322,8543,68678,40552,77716,84252,78843,891,24240,65606,24544,51610,55541,73906,89939,78399,51584,25296,94468,71404,54219,75247,87787,49556,94484,33367,44980,29879,83922,7671,99608,24041,11619,3928,14948,6079,61372,17566,99713,67605,48572,94865,76808,10132,17068,47295,36017,51020,59363,15470,50802,75613,90840,12946,58899,92487,83893,12554,61364,75675,64904,79163,60749,57802,37293,24853,67894,87196,48588,70867,67889,53377,39142,75187,50366,24193,37323,53065,83115,58728,90447,40292,82267,64662,74934,27529,62039,45195,54223,22366,33541,54514,53587,24688,80428,64553,60227,96757,88342,20381,78737,11744,6068,92695,6982,51844,78393,3613,75787,59385,52396,99544,53972,96233,56961,34639,3164,33619,59966,17680,30209,13954,41869,61420,46949,89342,95535,15775,25867,18345,48124,86386,15020,28102,56989,92681,19405,61837,86964,27569,90728,40094,34086,85704,16210,62292,3075,65261,98205,87372,75159,23787,42506,71065,64961,44819,53426,39820,39039,79799,75364,29687,6751,62380,95131,71316,7871,75034,50245,58236,58505,35255,36654,72647,25433,1451,64774,29505,79822,87470,81503,77106,41816,38890,93365,48625,18550,67565,40959,45045,28122,98915,95608,87414,58799,78775,98944,1392,75532,89528,12912,30552,17746,71960,16787,71692,87069,76165,30613,69686,24031,49005,45523,15249,9560,74377,41845,46386,43806,15423,9666,69344,19417,48745,59768,29662,35189,17012,4193,33095,39916,17729,73562,32757,2396,4690,19539,80342,98243,29914,99136,6980,27587,41218,2247,33471,84300,46024,98221,99820,19131,66723,94712,45348,35510,32349,29526,37048,35051,38471,98330,21192,8285,10189,31450,84449,66619,7708,47493,29351,28250,79466,26127,87782,14566,18684,79874,14522,83165,51469,54989,30565,1260,53139,18790,18896,92379,4909,84022,44557,49926,10286,55023,8542,99525,21276,38562,44395,51633,46004,19712,31225,25767,25165,58820,71263,54024,93676,67298,84570,4818,58854,34318,23037,25063,41992,50402,72933,93767,41641,75755,49511,30543,83867,39100,49821,25992,7072,81389,39554,4512,32362,36725,1551,42950,38995,61127,33517,42392,62427,99774,75480,2082,34917,1232,13692,69310,51225,79558,6826,515,55090,42436,47264,735,31626,55184,64688,59387,26306,41717,30109,35877,54323,41885,75943,82096,10432,67311,47380,10603,72624,54212,37430,54426,86859,71975,78509,35098,5067,95104,6109,11556,20183,63245,15962,8155,42753,33489,28874,86440,21196,69870,9841,27513,34601,87989,49952,76261,14169,99912,70892,9041,51983,88792,13498,44018,781,11286,24302,45595,9556,16529,61487,69718,83369,12175,3060,17279,55139,70409,74445,57480,91939,41455,13800,79555,48389,18089,13430,45399,50138,60020,81776,64718,56827,76640,62836,69811,86497,38935,97838,84711,60876,53001,35570,89936,31367,57988,53853,85070,17684,41111,45951,50106,4397,41660,45330,75188,66206,81108,44919,63519,53740,49536,47253,59915,3869,58679,59198,87798,10099,2355,58158,61135,17868,21060,74354,81653,40037,23431,6246,57610,11701,44132,35086,58252,30056,36712,89473,48082,35331,19890,20936,92,57432,75729,82770,3655,78594,2857,11390,8784,20788,3578,59105,48981,62473,83903,70740,41953,71306,29891,57093,53420,71170,94309,12361,32241,41274,10184,10462,7681,72986,19128,87462,81829,96151,76622,39625,90031,79447,79554,86218,66192,77874,73292,52029,14529,80031,26232,26956,26131,66770,76106,88265,33432,4454,78745,87564,57108,19897,25233,19002,73102,71865,81575,15739,20170,35544,45533,85696,35417,5972,60190,8535,36950,23825,90698,32587,40626,55832,25032,93777,44368,37441,34739,28780,9238,21146,48860,93710,66488,85403,27196,43673,81566,57169,77754,79160,50451,84945,39863,45017,94175,85393,53360,67158,1318,91399,25380,55094,46673,6345,29732,89502,58992,78916,87271,78668,31062,26932,9068,29086,29987,40304,38934,18339,91271,65348,53067,20606,24636,84137,50785,42973,65820,62941,48498,55740,2493,82047,6709,50935,37602,98999,43583,53370,26899,17340,71092,61246,75726,66067,75140,23212,33972,3988,69474,60807,32201,49173,32665,24654,18101,42951,87257,741,87722,8882,56363,9467,37205,39645,23920,62255,49623,58370,97106,96345,69620,45210,90701,18180,26406,20349,49911,36855,68577,16441,10575,97107,82783,80941,34301,73734,21255,93097,25416,4281,74283,75689,60837,36839,98751,27841,95923,12140,70160,80092,12945,49668,35935,20968,30173,15979,58622,97396,74015,40028,15390,61086,63735,53617,58839,34571,126,99576,15383,12330,93838,31208,34463,79023,90775,39943,26444,27158,33795,31287,85845,77696,56475,47936,59245,19578,92068,94774,62611,78779,18631,36866,44758,36709,17394,86187,43872,34482,41182,1160,17989,40938,29170,95979,93905,58294,28575,96223,67410,51699,63898,92089,55642,69923,16400,18025,83803,1906,43409,91311,62152,6128,20901,37673,4737,59522,56610,73761,62337,22373,74937,35516,28402,67030,33016,86372,77877,17898,22262,18843,60960,8675,24798,56814,54439,8688,81388,76395,57431,59175,29854,61375,43152,3343,18698,92991,38109,42823,5174,32398,27334,30221,6944,76733,81788,1657,4034,54500,2588,32025,46852,32246,97103,85874,20626,86043,96608,38205,57627,41437,5412,7283,81441,16310,7781,89984,25049,24232,8368,41567,76309,65499,33131,49082,75603,9232,34734,77342,50404,40277,75986,74375,40681,15706,51259,92006,6800,48453,77393,9384,76467,16801,47030,1569,44063,18571,65968,49226,79713,27944,38336,67260,50014,4478,96964,50994,274,98887,8313,45098,32075,18793,18335,28840,79727,55057,58144,27445,16446,64153,13148,33057,37615,63884,467,46020,74916,89539,26627,8654,95008,69290,5732,7360,90102,76798,35962,71958,61901,14368,60186,97638,1883,16524,75579,21398,97363,1749,46276,77030,23520,71660,44478,67612,46901,49348,94203,86424,4858,93133,91664,78350,83784,99411,44598,60123,63342,43013,93641,94960,53060,9059,80453,56106,42125,3218,9947,7987,46071,44595,8274,91854,80823,78083,27865,41129,6199,86140,3686,4704,33854,69155,62307,14249,46293,43726,35083,89149,95415,25464,39955,45345,94061,22164,77734,47875,48836,99998,35578,21062,72690,29347,90036,838,69255,49745,90194,43022,90653,68264,66252,70227,16018,21129,86662,74972,12536,70668,15679,68435,46662,35969,9734,98776,44728,15124,90503,29419,60143,98315,19568,80996,14452,80836,98239,90999,54669,50319,28338,79933,48733,76043,75299,33870,78771,28620,42375,2624,88126,54446,30270,49357,62716,53783,12423,75662,61377,92572,98862,66298,79947,1724,43940,37658,11773,79984,62158,16360,46243,81768,24127,38259,78109,60305,76182,37543,75601,29701,46256,70344,57775,82090,69132,16563,25674,27866,79337,24135,41831,98105,21531,38710,14683,77625,51166,59839,19809,51081,39466,8822,48974,76274,43656,33941,91716,76593,51821,79223,39211,89110,1214,14982,57129,94633,70869,36327,25160,38709,84799,42540,52358,29261,58818,58359,36623,34045,59334,64974,4083,34460,25927,65484,16008,8278,12529,39131,48177,54981,58039,8391,39108,27209,1423,67376,21221,33175,73105,55948,94418,13648,59190,34724,42701,15280,16095,54565,55503,67188,77201,57446,75279,66580,23245,69398,49797,14977,65676,82741,45688,87552,47822,74413,58214,4209,34989,87160,65862,59719,41342,56593,35040,92036,46704,90144,91436,27570,31534,85722,44100,53998,18453,38042,1095,32495,39054,29860,5764,81289,20737,14172,23984,8852,92460,26723,22272,9136,53966,22090,49887,88993,75440,81765,83930,86673,42610,60242,45652,72862,18251,40582,63532,70341,22023,94702,68434,69770,96796,11144,56734,53298,79798,74322,97683,80160,14215,94529,81798,84244,4245,47682,65681,50913,91642,27329,97874,94457,70355,87845,38406,11018,80762,18276,98977,44314,25334,99066,29790,72818,58285,88326,8942,76617,95571,58090,97837,7275,44321,17285,13779,66903,50976,9263,34637,72653,12037,79586,61300,26568,33136,34310,258,28016,30243,87953,17978,95982,86904,76003,6038,49358,60296,62555,96827,26079,96199,28601,99785,99463,89690,71326,13730,42110,63781,3514,85902,77066,33934,27845,12687,64949,35042,64068,95803,6149,90779,39322,25495,94365,88514,25662,92731,77737,74817,97534,46340,27198,19782,77434,19448,13598,6197,95273,7435,56438,97784,50162,94075,90546,12737,52461,53945,8153,73256,66498,29910,95412,66811,9634,77003,95707,23848,80843,47402,61729,96111,16634,29460,40667,68683,52058,21677,91352,64895,42566,7758,31469,68002,48324,84066,60726,63184,24196,23821,77323,21618,82948,37830,4176,68622,89201,58984,7667,23213,76662,77935,23047,5646,28519,89261,26526,17196,83796,78946,55562,42256,50424,40073,38085,94869,98342,65565,72928,29851,81601,42853,29777,78558,61589,11900,38164,64847,44072,34935,5453,78978,81197,63096,66414,65451,55568,33606,83009,84030,72952,96126,96270,30239,48057,79953,25115,7786,94973,33256,25934,43320,32150,32337,56240,59696,63731,60512,57293,2713,42177,10205,72994,71456,82198,46700,9772,75700,8351,57320,76345,73848,27079,66063,90141,39721,4685,20958,86849,76204,93342,52948,22207,27659,48101,88961,42597,50754,58553,4859,17691,35465,99852,57759,17960,50082,88260,79719,64763,6298,12955,68331,52180,424,35024,84399,91287,22935,86459,206,95552,97000,32173,38624,47697,85135,61470,91536,31300,57030,29673,32712,49106,72043,4757,32308,12070,30671,29975,85386,40989,20741,81024,48179,82260,1413,72875,29758,96959,9196,95611,10094,50732,60208,48402,92247,65706,53041,3550,99270,99007,71016,30127,4243,18658,92463,56796,91648,79574,20436,75308,64296,64616,66823,79202,52558,10137,51906,61815,35987,59394,18249,22985,34397,57844,28892,60856,74742,51695,39901,8901,68387,33522,41696,81924,71293,77493,57827,45579,23078,3843,28851,90230,18508,27450,10435,72813,28506,13173,70715,22008,91044,130,99965,43144,48593,56846,79083,20194,10482,70412,50381,85032,96359,1207,42108,3446,9095,43867,20489,22006,38459,81230,60125,94294,73620,69410,37925,29676,53718,94362,87645,85234,74679,5162,81424,24224,92722,11678,61734,75640,48995,75357,20743,5775,72756,92561,58519,35070,47194,9858,82136,83078,3027,29738,62923,96103,23263,71228,70343,66003,62054,76015,56741,91084,20939,66129,39950,21905,66825,8412,47094,84076,23046,3046,16921,55884,35490,57326,84586,76142,37897,74823,57869,18069,39868,48757,14324,24404,81061,779,59848,85023,88106,5694,41775,19603,90248,84026,30914,55793,36379,10130,81961,30787,48396,86213,64407,17596,1401,73307,15726,78336,4616,67380,56863,67913,21124,34955,51866,7179,95106,81636,78218,98077,58352,51434,22263,21208,41453,56506,91570,5434,24201,79809,63626,32600,26858,96886,89486,51922,69262,85916,99698,67761,83139,65537,47583,78170,3061,81222,31182,41753,96904,15621,4122,16096,66227,71104,96713,28744,67433,87860,29317,74984,31843,79891,90294,19564,932,53475,69899,9381,68209,21543,73935,67214,69314,34405,24563,91381,54987,72020,63458,36300,40276,8733,20899,72761,10030,79241,9002,64756,69159,26504,41800,33250,27007,99609,51283,68520,41692,8122,15992,21501,49133,96433,78012,43828,95563,23474,47229,65190,59669,27974,85102,39088,8498,73363,41026,97461,17070,33296,75873,66281,17948,28576,68072,19986,23877,58410,5592,77399,67654,32836,63905,22939,65206,42659,43959,25884,6442,35424,32420,76852,74580,78037,21786,76025,42838,39149,82479,7942,95895,99159,36523,51681,81449,28273,81734,48909,43960,11647,30728,98981,16573,7212,21533,27217,26966,86309,70068,75619,74351,16718,60606,53536,56862,31464,88014,20431,34062,16167,43657,23109,61170,67177,32062,90760,16092,558,90429,99003,21435,43344,24898,94180,44585,31409,21204,42998,51662,27992,15802,68739,92158,15932,98051,82922,88319,75097,9747,56974,28098,14500,23084,72252,23783,91149,20101,64271,62674,22288,13409,18587,59733,37982,720,56574,53227,44907,78202,34355,34096,78553,54734,72114,79560,43458,30312,44288,89781,53110,3571,38153,20210,89619,96918,43920,19072,40194,69711,42006,15495,74203,34462,1052,35855,86728,22554,67732,72250,27249,7097,70476,24387,61427,25544,8170,99318,53706,37674,70148,82162,32542,30339,32714,92603,25542,52590,57144,9011,79055,33503,82713,94284,98440,44915,39724,18842,24880,13783,94269,5512,87770,96038,74273,92869,15436,93020,3533,97911,74595,19394,3185,60823,89351,69393,10966,12543,70619,11618,52183,93779,95668,71986,85142,32493,96141,57162,52880,98060,68907,98679,42131,91553,69883,42576,65737,11133,25503,23792,79888,88139,1306,57458,888,62189,36395,31044,69909,47563,94439,772,45892,73278,24158,93072,19077,14183,10319,64263,74862,61828,50024,52884,30226,17246,95205,47365,42278,70214,69519,23559,79896,65503,23695,34428,59943,15466,90128,24051,70520,12758,69579,60557,71559,40914,46721,48162,69796,86493,3207,30433,73377,30219,69061,76376,99295,88771,19090,87325,19102,67495,28630,95434,93146,14068,32278,28139,27574,63312,12765,71908,9990,52088,96863,44937,6255,70606,44482,52555,68744,37845,55362,51104,4354,57041,28268,54899,20079,24472,60707,49065,3667,11408,9784,16180,22821,29590,82860,63538,41421,62528,64158,10285,66625,48875,65157,10753,35,31999,66276,4267,73619,5826,30537,50578,6124,13025,96786,19788,19755,92567,43672,71287,83154,1988,9244,92792,80379,47878,76059,93494,29845,1917,45768,40058,2486,34556,73564,60461,63232,42849,3879,34938,34522,45969,58225,42985,25212,71415,99339,58795,98851,8702,15964,18926,97380,28031,87747,56599,17911,91527,15884,29389,3851,48581,54001,28044,1792,74462,37173,36963,10829,51509,50380,33535,18701,76391,7931,51197,4646,26258,85997,48720,6634,39581,26558,9325,98000,65735,5479,41690,84872,52035,42993,4662,24532,20833,89551,333,15995,20187,9261,21996,64853,92675,97150,49096,7274,96314,74378,53058,83331,20887,97046,55430,77330,38307,22159,74151,43351,70119,96905,86872,84817,76342,74676,89547,90081,78313,50029,9683,4025,72890,49099,27067,28658,76276,70922,64023,28365,94369,42708,48028,76562,1856,91783,67295,70490,58208,98297,89577,70538,27616,6820,23569,18820,81618,20688,65741,3175,79704,85921,81920,82886,92189,96712,5471,23385,14237,19084,52963,3908,66520,56420,11621,2878,59262,92454,80078,8214,38396,19648,90373,58166,99757,57923,63643,24659,75900,30818,11006,71929,65316,84918,95806,43044,15997,52816,94164,41865,35127,83724,91887,70902,27277,50534,5664,41277,70961,89135,36697,48810,65304,80217,98662,70483,12516,34840,51310,9391,39786,79358,54333,74023,37639,53423,69405,29305,11274,65410,19767,89510,28998,55841,85414,6644,64268,98801,98577,35600,46854,8158,92455,58315,77771,74388,90742,8072,53910,30924,32860,22770,56550,33099,16603,43993,41047,37706,35158,87756,72525,11588,98278,55718,36578,50700,34064,82574,41623,10722,3510,39233,69338,47424,96245,77662,79404,91903,70847,72230,45392,5818,92652,79341,86197,3001,56755,89196,97118,66645,93837,30179,73267,63368,74237,30610,10425,70912,50331,35949,9486,93244,11450,92488,24327,13194,19936,43164,11838,95572,53836,50659,34488,66305,60119,59577,82764,2213,45639,91049,8894,26437,43810,46181,29960,58360,12115,82788,65965,83740,79260,84185,72614,65530,68025,63903,28854,62082,57236,23932,70012,56201,24564,97665,99475,95772,70363,88140,93309,73766,18523,82318,2589,93217,8895,82273,33714,27525,16040,82462,12329,15068,78025,65236,17168,65262,82944,14848,85703,87853,15911,70039,48459,70073,47216,64485,3968,47518,54363,68385,79418,32821,36380,66351,58326,91475,79928,38069,1832,36716,24662,10979,51040,27426,82149,59277,12058,1390,86225,48490,95117,29306,43207,86821,62075,1225,5035,68289,28214,48167,89881,48007,57188,9287,91257,88887,60380,55039,41194,56791,90922,21615,14238,39471,51086,54796,49873,35952,16079,9514,43113,29789,41750,85716,53594,81350,60184,17974,18916,73566,23025,78702,24284,50158,99089,89927,58342,69445,40594,34790,37341,74856,35031,60585,56434,51058,64065,97167,38121,5279,24962,5520,60999,71678,6256,71956,88590,11608,99467,26475,52861,40006,96289,63621,81377,84412,53871,5054,43015,97432,18840,53589,16989,51294,90044,38283,40490,88332,21756,223,7707,80540,75403,81775,82297,4697,98209,57588,346,12234,1797,87327,97783,16761,4824,47258,28996,55466,19822,52166,67126,33668,54479,20586,57152,95289,74290,85582,21538,15718,33335,46796,33681,85633,88379,66068,83846,25229,38869,64083,13652,55339,33100,99230,21191,90278,67830,17123,45593,97345,52062,87281,65634,22766,70848,42726,31641,12352,92372,96709,7458,10229,65168,3112,23633,39774,77420,62786,80450,42797,46034,64148,18095,82030,72993,58722,18218,84991,39812,10924,73444,39866,90523,66894,724,19831,64149,74703,38409,63711,42195,62531,94642,10158,38750,43184,29421,69864,2199,32471,2231,35731,90156,97045,2790,15167,81471,10254,82390,57596,33931,88527,231,39015,74713,94240,52411,59050,9689,73282,13332,46492,92244,75830,96226,72175,74994,56364,23858,35402,11539,97466,46643,93132,66582,36377,42893,51137,19669,97688,21385,58451,64705,63353,88884,32469,22526,36027,943,94750,36454,88091,35296,48268,32768,84727,94080,10561,25459,37194,2385,14160,61309,92087,29802,1426,5097,77868,36161,18380,65714,26052,98068,34993,74801,14577,19538,59388,51065,78850,70508,16445,73694,51886,70908,65866,79157,89457,43507,23388,91824,74662,36745,61801,81239,83612,61017,85561,98782,14525,30609,43482,86281,57581,61995,25556,49612,51267,15611,49019,86540,25545,14106,65459,15441,94834,10367,51021,50136,19333,10496,51466,68409,1460,59039,34723,79917,97941,97803,88020,60505,92755,93593,14798,24337,52050,61401,87580,25237,22627,67634,80167,30564,47836,54821,919,21284,9439,20577,77296,12100,41504,10825,80733,94735,74761,64957,22702,87308,3080,41497,76743,82596,4445,34193,68897,4808,70960,86595,30047,91452,3629,42438,13202,98092,27292,27153,42147,13703,75146,78929,66671,12892,61101,80959,22466,55579,98835,94707,94235,49619,65373,15166,72545,34138,55320,50528,56847,56662,91098,66410,79077,23168,17819,42051,70634,58946,63012,94400,13797,19656,25251,19445,58178,74980,99229,96609,20890,38023,54423,38512,9629,93117,35104,20439,22686,45286,55648,93462,68329,77067,89968,63930,27202,49538,58186,10629,49309,65244,70926,89488,38271,32590,88017,25873,82734,94036,28894,54732,58785,73609,39246,61319,76120,45835,78630,23718,88973,13060,11156,25620,19182,83192,50197,50767,70750,44208,63374,94404,31113,91606,4019,71928,87919,6491,19685,40287,27232,39560,16166,74932,92029,88232,76980,80558,45189,18654,15376,43505,8042,89400,24520,39289,50121,89471,34796,11565,95357,72310,48410,26047,14909,95959,57619,21306,69547,46058,3666,59573,75756,20003,82034,4868,62249,32833,50448,64118,96809,22260,83191,27269,94314,46248,75634,82958,23226,64185,61391,9294,74423,20275,60865,18070,34513,17417,85044,1753,54,58131,31512,13739,23367,35219,74746,89138,22463,50786,71042,32663,70348,15805,98672,18354,88285,77193,53647,47579,43295,65474,2836,73477,39199,42301,82662,17408,41393,23230,41547,97985,1075,54935,40434,74697,78458,17267,90483,72866,96978,66472,51257,60759,33236,78559,18984,26244,30775,760,82287,86984,67764,41645,98951,2947,99717,49290,67359,54096,67630,61733,3521,46494,80560,33525,62515,5289,92154,18692,27722,73391,43551,45750,65551,88804,86600,41352,73329,70923,95516,2817,52796,57692,80425,62444,73092,7243,8243,88786,645,5160,72275,94715,81336,60682,75694,98446,27397,89776,30674,13536,82468,3444,431,21746,3148,88669,40338,2387,10735,60613,67039,6728,81549,41669,53590,67779,99587,79527,39988,76915,8931,75096,32200,10987,89538,97481,14767,66847,55413,3503,90977,39324,17025,10653,61945,1522,80321,73403,54549,15194,74789,69178,51631,5752,61484,41585,73149,9779,70919,45133,8548,65285,71195,33786,30840,55271,81052,46177,4431,66171,15450,89324,44801,52091,74939,10092,60647,52451,78846,58344,59681,67930,77753,45775,98481,28148,73656,19404,77007,28611,18473,75445,21521,57334,25287,63004,78049,79443,38530,62470,56605,58758,67918,17823,34029,45492,84821,85693,59751,6914,72140,98665,35038,5170,40021,30777,27356,36738,99127,66263,11693,36975,59746,13734,41109,68723,94840,17304,95594,76155,94379,91304,42892,12716,78914,94388,3749,36854,25922,48604,86671,8749,47699,31117,62404,93085,20832,46120,60493,45694,68036,14315,73980,96832,72838,93038,20360,77792,12417,40903,88770,2098,46860,11240,11703,59990,56978,70938,85689,16156,19198,1040,11970,17450,60013,28607,4477,72743,37934,5675,62134,49390,4286,82883,25024,99131,77882,54447,58386,41287,9806,45566,93514,11276,59045,82078,74060,44535,38557,30329,44811,9440,37073,85333,29056,30812,64174,94359,83392,43877,24602,11889,77791,72120,48403,88678,8628,40948,68055,75500,87918,84159,28559,6549,40897,6653,13271,98994,45716,82444,38432,22148,41797,34341,28585,62250,41611,802,74433,87151,78663,41956,26961,80442,76821,68912,69458,32578,94350,86048,6761,77796,18166,11417,85040,73053,16317,31244,61155,49363,20913,576,1126,63689,14388,67908,67573,77494,70137,67644,54038,2683,39882,90338,91308,75706,66551,10922,81246,16290,86363,9653,32359,19156,9898,45907,40211,67210,46739,94422,38590,77153,27121,24912,63581,36628,67500,89005,79495,16031,96879,92450,20983,53551,38775,6097,31841,9296,10126,10330,35063,67051,12818,45902,69836,2070,60878,94885,8190,97738,18776,18158,25305,11742,75588,5046,8854,8469,3757,88732,82282,71152,34375,73662,9499,42774,90135,57232,37271,82200,89217,23379,49838,17666,82003,23889,12723,9437,70151,78018,91121,84742,40764,84736,73324,30547,63602,73825,93125,54919,99340,76444,13757,73637,12370,8080,76064,22241,77969,68972,28005,38322,51883,1270,12603,92474,59992,7317,27835,93971,79523,14291,53483,88906,77658,58828,13441,98743,98054,90881,9646,59722,81881,23998,55389,78603,23497,23960,33297,10436,72065,93689,95389,72677,58994,23705,4590,83806,44584,43725,95991,96897,72696,71449,8660,77291,21480,52194,38140,4488,29608,58201,63823,28260,68101,89977,91616,94384,38060,52133,3767,88413,27769,79943,61604,49253,53641,51390,71480,16720,57652,35334,39915,89518,76540,24988,8107,44255,17008,30810,6487,34726,13885,64198,88336,44638,2897,97223,79647,48725,69776,14917,77240,77887,85637,46048,20762,10602,14437,89607,967,21152,80403,1367,48325,55979,13788,42251,4462,41601,61805,53396,71345,87302,78176,1528,22710,85270,49735,59149,56453,64540,14727,85928,25797,81585,48004,78455,43214,44539,52168,10607,14996,34731,28228,51674,78197,17375,77274,87188,74603,97661,21778,30663,97796,370,29451,74085,7398,64726,15196,73769,21209,85836,73499,24766,26662,31434,96941,76932,38333,38220,7748,84418,99954,85354,35495,7983,4644,58365,79633,59052,60882,27843,77978,98199,2004,32952,56648,29135,30601,36313,549,29037,19928,81583,67225,62449,97243,45981,75138,41294,55725,90864,20420,17392,31590,76435,8436,92278,21427,7870,82841,73139,17882,49785,76362,16409,95640,28283,37179,79037,28349,87459,47211,86112,83208,46370,88402,28610,20023,20371,79373,39084,51912,38702,11655,43150,41671,93412,75459,62641,99327,26226,45526,79562,62466,63311,13811,51470,79118,8721,76151,43376,41659,80854,88575,91968,24395,24546,50093,1147,82565,38265,57875,68157,24979,76939,76855,25454,67594,60167,38351,43000,11344,61881,56013,31708,66583,37721,98484,42904,43973,14462,90064,85962,12465,6413,58517,85595,53649,54804,33736,17388,75421,89230,75076,664,58742,74159,56027,24569,25639,84400,78190,57092,72110,84769,40642,40991,43989,85293,63395,17471,4823,96948,87661,47435,80127,567,8556,49725,33694,50275,12265,88522,82961,29599,12473,20566,52552,98796,65233,91818,65234,11859,13120,33917,89810,90133,14107,93035,7637,15503,54746,68921,97603,33360,34670,79416,19980,86631,39231,66479,80363,75737,73062,27562,58012,22775,1511,25962,16614,16067,97520,22030,8787,26102,31599,20202,84583,6532,99011,58623,53985,52898,92464,37571,69879,51123,57234,33394,81160,72889,78690,32227,82208,27392,65189,68496,27654,2347,20326,82432,23730,73073,23656,99825,72859,23224,25208,23937,43799,46385,53916,45209,31,40240,56171,4673,83203,84037,70564,91722,17646,37229,56841,83481,67173,75339,59764,49582,59200,44298,43591,60929,62077,56785,38282,17586,71222,36119,56134,16228,89458,79277,63341,31901,73500,61766,46663,36420,31975,42990,59757,71298,10323,78589,51236,7143,22932,22661,42400,15789,25463,74830,24716,13225,76048,41116,55359,72812,50773,72137,84314,17112,2707,76561,74126,11509,65572,61494,35195,52336,27046,71801,11792,66946,84213,34766,47307,93945,9510,4781,33842,64789,50711,79415,70439,25096,96566,59549,14955,3964,33594,74555,29380,40118,80491,80090,7628,98920,2217,8272,24252,40685,34296,72369,52189,20941,29079,37621,54128,98353,35812,73381,18646,88157,83499,857,27887,3341,91251,10371,51538,30098,18539,29679,63466,23197,212,38500,97130,31030,50878,56976,1846,52356,4761,99130,88119,45734,46874,69020,90076,94206,9576,55457,1961,9941,32385,49776,31422,51569,63300,35401,59281,82548,13791,69749,5340,7796,89094,67387,97821,93752,92279,70351,27869,50128,55479,46526,93601,36617,83403,30163,75789,37611,50212,51384,68799,55556,94815,4649,4202,82630,29775,62392,62755,33453,85469,93058,78013,42463,87011,80081,31004,78544,3614,5662,70782,90320,72399,16706,5575,20093,1033,73421,84490,94836,79912,66660,66741,51292,84940,91590,50429,93886,8495,95450,19665,61620,89513,18953,47459,89584,84626,61917,99988,26198,35440,9894,18620,51311,98050,26365,84901,79182,92468,64019,23113,30030,25715,8128,16282,15636,99227,49260,43738,83004,72585,99254,26474,48274,84607,56563,97190,19616,51423,30734,56551,85664,25912,56529,35737,6970,59847,59683,51539,64753,73336,21653,76314,89328,90519,47692,74011,76725,19991,38929,23665,39003,75032,87625,47235,42938,9859,12032,20964,78764,95791,30916,6226,52527,7188,73749,51421,72650,60921,23914,38055,9778,7318,2636,95693,5191,75611,46994,17405,99776,12169,45614,85462,57650,25635,24471,25611,80893,55500,26902,90890,3601,53583,45454,20076,68817,56837,48968,89938,27389,64936,7017,12518,63990,84519,37871,26727,63270,34321,87752,32503,43486,85803,89392,81594,71704,42850,89264,82820,31098,9423,62624,71418,75714,875,11130,19166,54455,71917,33013,36429,25949,48286,57797,93269,2708,67174,59714,78719,81376,54154,624,72438,33553,43259,72097,59041,20787,28942,68345,71030,84328,57061,81486,52741,31504,53735,4998,90650,96511,1048,31326,13936,8449,36443,2595,92658,2674,88681,46971,20685,83714,99272,24799,65507,73939,50289,52888,55018,51558,71538,13068,43977,77435,5409,69959,33945,35180,12380,95712,37118,57483,32223,17888,56311,33902,5862,67219,39662,34998,68732,89739,31189,13295,89409,69277,29374,83849,23383,51591,7255,61614,9032,36188,2512,32936,7370,41809,19120,51508,12548,89651,61811,96548,2078,40056,99267,71605,54148,87983,7864,24352,71836,12046,99449,41379,71137,83371,68410,62632,76256,21178,60281,20407,69418,99075,10560,48839,98157,3591,9474,38221,93112,55239,67196,4554,91042,56604,60654,84929,690,89883,31616,73119,47531,64076,91288,38712,56034,58907,71658,48341,43028,52736,47937,75152,97788,2180,18114,26622,77620,15333,94640,49881,18925,24454,61435,46703,52444,82909,34153,13834,61193,53055,5800,2066,42921,98647,99483,49129,85597,50436,82526,15255,78890,67840,84792,67285,40492,54705,51807,83187,79709,60950,74779,303,13569,22119,24650,18687,77160,35928,28482,27267,36416,15759,45199,28331,80935,8098,23425,34432,69698,92002,39293,64273,66853,51780,71315,96420,98474,72755,81422,67824,59215,37424,21353,86114,23526,55229,1878,4712,98929,1361,69726,71565,41627,55845,84468,71478,16967,50710,16434,41337,84931,42050,63174,95407,18435,72552,88249,67263,80277,48393,73824,37413,92808,16059,9536,32684,23623,3679,75557,69014,86188,14617,14655,87234,96202,50750,63961,42004,15814,84840,10072,26921,32279,91771,478,48560,97360,77309,48920,10003,2678,78241,43380,65847,57902,28209,48340,53313,77113,21466,38341,1884,80417,73686,9939,67235,96642,91474,51945,24916,68669,65246,37754,33695,74848,6893,99603,27922,43706,25730,14428,61162,32545,46505,3621,30975,94699,65192,59283,94340,43019,53652,82962,63484,88013,334,10991,57090,82206,94107,24218,90702,15526,97280,48629,67138,49610,67388,25045,50709,39527,37690,53970,79335,83066,23217,65491,54820,7568,39839,76405,81146,79730,93669,83294,52228,14866,84923,79829,32567,75470,49250,42967,82727,83831,99215,20970,88434,69968,41634,17949,2038,3809,21975,69008,88951,91776,94334,45820,85601,94338,42441,26354,40220,79022,40758,34972,61308,45181,36898,26107,52311,76651,26240,9142,94481,10407,72265,84738,85892,19773,79339,18714,92417,32514,20307,86940,13561,30639,65886,49228,51562,6997,73312,58775,48673,64451,71546,95344,71959,83510,46227,36970,10277,95570,54405,18951,64320,47817,54668,13908,31771,48466,87286,32470,19776,2553,39584,33727,98653,8299,14960,83825,25536,12173,91951,81907,76210,18965,56313,93836,55850,12236,56428,62876,49205,62440,55063,24711,17014,15556,66432,69691,12916,29432,68632,26229,88908,519,71919,12144,28788,52385,23780,46015,15580,88503,26863,62475,29890,56855,60827,84126,6182,99782,87452,16138,33278,43437,64558,28211,80414,47028,10049,28203,52413,19860,24329,63419,59470,39590,93910,3769,47006,56276,61242,73070,50288,25470,18955,60993,12594,76153,50460,98004,85670,29579,46699,14650,87576,95605,28782,80188,98151,82514,84471,4303,29840,23296,62266,55218,4650,74020,47468,12500,97044,58395,96383,7829,85854,2457,37855,43686,37872,34987,5729,55061,72900,97598,43036,10282,12131,51902,77049,91245,68181,22193,76554,64840,57260,52867,29195,41754,33726,5369,23749,50951,86832,74280,71820,83722,72645,86866,79731,31431,3417,53231,37531,84762,9996,38563,32230,17998,14414,73205,29572,47429,71180,16449,3874,21906,97656,46941,43245,33282,99847,45041,60600,37910,20409,312,73448,88505,55311,7430,65071,52797,13157,44545,55383,47321,74311,38674,28350,67422,410,57558,1099,42791,40739,69804,28629,63034,71006,47355,56654,27963,86645,39372,61432,17534,73224,47582,35951,26055,51621,81609,27408,359,7883,85076,44278,77247,57512,70763,34313,14463,59907,88936,92785,92728,14986,28556,50257,24577,24488,79280,32702,10034,70878,57127,25567,18788,7138,31387,85873,81912,48292,89356,52455,98642,76302,41071,39379,75821,36082,18244,19574,79868,96596,37096,78985,83739,17322,94863,47653,88329,45886,71244,66592,32146,79396,47946,26594,73134,53265,21825,79780,54373,35087,70334,8432,3568,55685,43340,53223,93036,51060,60813,29614,66795,67204,35878,35203,53619,63545,94741,7372,95685,18262,82638,77043,29538,93862,35763,48198,99511,91711,41054,63150,56470,58296,26097,32734,27731,19178,76791,88861,44336,48827,40467,16778,73926,70832,16034,33723,37443,39302,95976,82587,39249,12903,77200,34104,33883,18241,43873,23228,57525,27862,42429,46179,85759,68388,6867,82296,59027,7002,26424,8003,43756,54122,31548,64506,37926,84810,82520,93500,79484,19060,57166,4001,30234,86029,327,72259,26850,89420,47425,74407,59403,26691,38529,24513,23576,53433,37759,42269,33970,96880,43021,2467,97740,46655,73255,26394,96331,13794,93815,55138,48795,38119,54114,58741,73555,45757,5349,70177,90858,90196,20317,21335,9268,35619,68239,89153,9254,6501,29105,52847,83860,31544,67195,15662,94130,43573,68464,77928,44712,4628,8969,415,47405,96413,59885,83053,27173,45462,50977,97905,67409,96871,97887,44507,92928,85998,79190,45340,67355,45648,9078,19595,47503,65386,34307,92618,73551,39835,84010,28652,37017,26628,70836,33596,36984,26398,94025,77622,46365,73790,46559,94351,78576,98295,56664,141,18503,48068,66659,83497,87198,75680,93324,79935,36020,74397,46064,33687,15419,66910,8154,73122,36201,61232,94548,7941,31522,33591,60973,60859,61342,95163,71601,93039,35704,77432,51949,53618,30084,70271,53186,64423,76119,37730,14248,13090,17639,88016,37765,33903,14274,32058,9500,39187,24832,9951,56019,36264,38605,40411,93504,43523,63051,65541,64059,39380,38852,78828,97324,67123,60037,73708,3529,4780,75739,63283,11331,41959,72609,89653,35035,23657,13309,44490,74079,73097,71833,5589,18333,86436,98967,44589,76198,12369,99484,47815,22348,34643,83011,13501,93229,36769,60582,83971,38100,96556,44005,26530,20115,98609,56245,86243,30638,31775,19849,66493,5740,61914,5736,39641,86626,393,95960,18125,71029,37657,90420,40981,86739,94695,57640,8575,67856,65979,79609,53054,43287,99808,22842,55726,49256,89198,16649,31688,4400,75925,60733,58240,82942,15660,22956,5016,86324,50307,72621,38580,71617,35847,13467,23935,28689,9911,31371,24774,36306,53653,81555,1220,1037,12174,30977,38083,75715,55908,38281,91807,46151,39488,8975,51024,94661,18226,65007,80055,54397,11067,54696,87084,20314,74232,75501,20929,13590,78518,59108,26460,90414,93793,91999,5356,14952,93863,67457,38559,86505,62991,64009,74660,16703,51580,73889,55764,42435,63054,48282,39403,93259,55156,27537,51768,80144,5370,91561,90860,4097,25531,60970,66125,91965,37954,44910,41886,73147,1490,13656,87992,89484,95020,12166,12061,24885,12240,21477,94848,21652,30941,48576,84909,1907,49429,12338,80355,35999,27235,42231,28248,22765,80206,51532,19829,99749,87687,36483,76226,32699,12244,17897,5906,78601,23929,64417,92760,27982,13507,75605,16484,43830,28167,91202,38187,23764,11757,22312,43757,42741,33063,61373,95555,77597,34990,47005,12953,30688,2159,27486,91073,95518,82469,37486,30982,20836,42606,2136,33244,97500,17176,92116,3832,88176,59758,25047,98305,64125,90933,32858,50787,41072,87427,5009,77013,39183,62055,19633,40514,51505,97083,66765,94789,58913,89813,84064,93701,49543,93816,46670,33161,64834,94996,68474,93331,64147,79471,1274,16118,93918,48192,5672,88844,22872,20422,7098,35280,61383,25729,41941,72702,87231,63512,51783,91184,20643,23303,58674,49466,69631,84334,93304,58866,29998,89132,70389,19658,30997,5514,65390,38955,19804,50648,39165,3239,34812,20609,24660,51050,26677,38511,961,95214,47835,60902,62538,57887,49001,7078,89142,12318,42094,10783,33977,39636,12256,60565,27244,54524,55565,64820,90440,61710,63271,68405,91456,26035,92913,97650,19342,76535,76937,70002,10033,99249,54861,50080,25469,43823,42598,37321,7953,79114,62701,89018,5085,39558,48513,72198,65517,1229,90385,40461,69362,31051,69064,82115,58886,15185,46124,15694,19709,65308,69806,40264,48806,63810,24748,49354,41307,27062,24019,48485,57079,75151,74167,32199,82575,9356,1820,325,59172,59644,13699,28497,98475,80405,23647,56793,6810,70773,48918,9127,98620,99614,57315,61103,61693,19726,23587,59492,49925,90632,94523,32925,57214,93391,44348,26192,87713,35660,91912,29005,23566,87982,23893,66595,55263,34063,81888,34697,38425,14724,58108,57810,69560,38911,43141,58129,34982,87378,34372,78854,96705,46580,36630,16170,91,61070,82949,51794,39595,1045,6356,90140,47047,56307,82458,60789,31601,52802,52725,82365,69242,95874,84220,11489,9602,92333,17326,96951,32854,57634,20069,94148,99738,51992,66246,91477,73302,51345,40012,80187,18783,37931,82459,20203,38537,15626,10985,19749,76836,47917,75147,25771,66355,25205,50067,12507,84937,37089,21049,71858,99891,31988,36587,84780,54897,16930,48291,36401,34365,96673,66802,9725,67153,46579,36889,34893,97192,32346,82975,26959,38854,80307,28632,71106,8102,49819,61847,63385,87990,50052,35397,76615,63821,86200,33058,74955,11548,31389,76772,37687,35025,43179,53751,21602,28030,77644,7604,4077,88907,86105,34749,79878,6152,86865,67469,18566,8877,71178,90191,7150,26658,87111,29463,34823,2434,99091,15254,53457,49157,73160,65930,41651,37896,68258,37777,80374,83631,66534,52290,42302,21994,18911,84564,50999,52507,81733,21831,91206,36083,357,6354,62101,157,23616,19951,76600,4031,25835,99950,58726,16447,77676,84713,14151,27942,90272,38358,91506,18022,4018,97428,55989,29894,95080,1588,25094,93508,79034,34930,61181,75026,3191,46599,11428,34904,74850,31713,51071,74320,72396,54086,21534,38607,18689,23832,79288,59817,83675,536,4333,83220,1848,92546,6181,34969,93571,86042,91808,27924,72347,5532,11635,45726,73109,95714,34304,43294,32574,54243,50051,5407,30701,69252,6872,96473,84768,96930,6765,89368,50274,74404,31392,22707,66702,94981,26294,40630,37496,73737,84869,40750,10528,4186,99368,54054,12294,70188,42836,15935,48553,34883,87933,76128,60393,37864,64657,33766,78474,10792,27608,16466,41999,31308,93821,5362,50328,60849,76077,46536,79210,93788,28411,88674,30345,94455,63253,18437,86426,73944,46173,44678,37175,96448,41730,5248,58900,77137,88802,49892,19915,5704,48094,40498,2684,33729,60454,56385,95279,62984,42852,15599,24717,63197,57164,60816,38937,90057,85971,40666,52585,92136,59359,81233,85156,84976,40729,56295,51802,95392,13362,45665,97161,11005,45333,90534,9004,26979,95768,84375,24303,32830,49669,9396,2834,34183,78541,48174,454,55067,71731,50149,36915,14786,92829,98283,40971,69601,45288,13188,45190,2096,25931,75696,96932,3677,51926,31048,16107,37136,99819,65865,37025,61080,29994,47431,68651,46303,80832,73731,5140,40940,89019,15955,33791,4981,32251,95899,14423,9553,29689,52341,39552,8440,25059,37357,110,76081,54982,39563,16188,42464,69752,65183,92599,78791,22870,14212,72069,67964,41252,83032,19192,32443,46773,20424,4828,10209,25827,94218,17704,86277,90703,41562,9914,47797,75212,34736,49852,60011,69588,36601,48700,78620,20141,57750,52071,47905,72051,27346,17731,88594,28752,566,33097,8577,40317,35283,80136,35895,49088,25513,22849,37383,1320,24949,80751,5129,54299,78789,33365,84104,3045,35292,60969,81909,14359,45289,36145,99949,65656,81031,35223,94232,17268,61685,35091,160,11058,57010,3854,22472,75103,89727,15035,80358,77595,21292,45162,26823,98073,16024,17207,41512,93179,42501,78760,6924,36772,17213,26832,70443,24597,98634,36689,91959,91221,71237,76914,65561,50225,23896,61991,9229,94654,90342,44393,98750,48405,29896,5882,42822,20986,32896,75022,83738,83022,99758,59608,94132,56372,50791,64112,70536,85371,89599,66008,84245,27065,91236,17738,4221,44495,98758,16121,37599,70477,93285,67259,46088,17489,62359,51023,30160,69925,75331,25138,26115,11126,1155,72544,9126,88423,90417,28115,37015,92011,5958,80936,95399,55601,99728,94426,42958,2383,28523,13107,6,99884,92207,67985,35131,91878,10273,28274,82762,70336,70060,32777,38262,18107,9693,55846,47099,87993,48421,72672,35529,58377,48608,98984,95647,21751,42000,71048,48862,30390,69713,45438,60937,52544,83593,70386,93976,485,84545,30194,4669,23430,2081,24467,47728,9783,59968,16940,80008,46284,91208,7260,57639,38061,45711,45104,9881,35674,49998,62483,5599,54741,22106,99857,19619,7494,2522,86208,23285,64767,12793,57336,3914,56144,71061,75075,97706,42170,15321,29416,93369,38637,3522,59983,79044,9686,89525,26466,54631,71942,55703,44636,41283,39985,3192,23126,21599,56590,22026,40416,60054,89095,30001,32066,25190,36650,29110,90505,50574,72697,1250,46998,67243,1689,87337,1914,79718,92489,90539,82998,45574,52104,60197,73540,7711,45458,86897,62319,93562,78900,45827,11991,97495,54525,47202,46717,74115,30385,56397,51134,88168,19038,57264,77632,31216,69937,33132,54573,76503,63672,47280,45337,84678,66591,61273,95259,3990,67289,89348,12317,42298,90213,87143,25602,82976,4733,22021,84311,95948,76138,25698,45475,55819,20801,74325,96714,75033,46832,47203,30605,58182,55627,76273,97328,39341,90778,90870,1921,15507,40990,90670,1154,22925,24277,730,2701,19919,20959,86605,65296,99041,39726,83826,32624,4386,90772,61332,27522,18257,62338,55795,64265,40463,11078,22715,23662,89615,26555,55525,89573,21467,30976,65447,30244,77316,31506,4408,43899,35940,83986,92259,19172,15919,15545,60217,46986,62023,22989,38185,90819,1517,6631,3551,210,37453,72257,82295,67316,79641,47167,89867,44374,18495,20956,62415,14188,80266,5776,76879,42748,57371,14398,30373,37415,74674,91447,75985,48488,78046,99588,82324,53268,4436,3508,93619,67746,56293,7240,72500,11758,85996,78709,91890,19796,53544,32997,44600,18221,95723,47968,31036,8968,70222,43792,10050,81243,42843,23565,83452,92908,62035,50987,41469,49820,27430,57014,6572,14228,69574,81529,57904,71785,20048,76660,62775,46222,69660,84667,19109,16089,41576,99103,74806,49862,48574,98296,59538,1348,81543,96994,2823,89497,41630,69566,23355,53786,77170,32030,96730,63363,59673,80833,42473,24648,55866,33548,68484,10433,99821,94984,16288,95577,96148,39038,52779,94363,854,81654,52428,4856,12686,43561,49648,75148,862,25401,63832,37984,17894,93069,29026,34148,7355,52046,20466,85391,63958,71677,82750,803,32421,68023,77830,85074,54532,12487,57026,75311,39146,46422,22735,53761,57447,5991,45529,11131,89017,78260,66594,19787,83982,57365,65254,42025,80324,56979,55517,90444,20497,37823,36831,82055,64193,93318,7685,49273,29577,45273,755,511,44231,29489,60685,77440,41955,81053,61019,10335,4748,4414,68849,50662,98666,25641,64473,51309,80232,65143,43531,35946,28790,97928,17009,85590,82938,73958,60244,18947,15152,86257,91347,84820,60620,14677,52019,35079,6884,78960,17806,65359,80977,92713,65184,65587,26958,5388,99571,86981,89859,31717,9049,95188,7357,89934,90873,93033,77822,52743,60359,12484,4773,41282,72220,5880,93080,14408,62593,53852,53474,18137,63862,12373,18484,52004,11372,22941,55709,71154,52531,21100,13761,10021,50415,16438,61623,81963,83441,70401,93168,96006,41303,5143,70812,61105,52458,33436,59064,65415,41888,92974,4119,81485,94176,7859,88167,11482,39663,37155,20766,70678,99466,34434,69893,57202,14434,96856,4198,44599,37780,57776,82982,26114,31192,18150,34476,50207,2072,79750,40253,25965,2865,95136,36039,10857,48666,73793,8898,63829,23856,11230,90021,32789,30027,21669,67372,62072,98991,7965,68546,1799,18832,39530,45588,85970,67958,29368,18910,25993,82748,43967,33624,79028,76213,53668,15669,23681,97672,50557,70625,26844,46261,30334,62254,32689,54623,75707,63213,77799,85326,50021,26426,19241,29485,44211,60772,36357,76185,39716,90296,92284,81753,39035,51341,11222,57613,93302,19239,55543,23206,28901,85134,73696,7103,33461,6228,25739,63789,18338,37858,79016,93539,58431,69103,75540,76143,32245,54117,28708,32666,95708,38566,21166,47082,95433,1510,41430,48043,84986,93011,99876,60534,96012,76029,19663,42417,93769,32905,81202,30998,46801,94405,69031,36229,78304,37228,57742,75233,12186,86610,9945,7070,98655,83680,9451,2697,92738,34079,20336,62891,4720,20299,31235,86000,22689,2463,30762,52052,44050,60298,35463,83832,80785,86072,13279,98288,7462,31710,24574,42467,99977,80963,95439,59691,7045,37752,19431,50937,18317,58675,94527,14343,17036,10308,93128,82850,13705,23593,96825,51424,785,42491,1314,79863,34565,52165,98911,71099,77924,67269,48071,29429,12837,81676,75898,76209,45602,82189,29977,5151,5113,73110,7911,95179,89467,98190,74656,2100,93345,61669,46482,34564,7146,99350,12734,26252,35173,76708,31982,65086,77554,55071,59811,42214,61700,72745,35854,60146,30875,86407,32614,90715,61384,19721,34504,7416,31517,88386,1038,1467,37530,87619,95209,97367,41175,92919,84800,21253,67642,51809,75176,77600,132,81472,35615,67421,45238,53846,42432,57186,20809,41681,77041,46281,38113,90381,1393,52782,66009,30104,81884,30477,33865,41492,46979,77230,45672,57883,34947,827,26186,61518,9105,14912,16297,27951,64427,17423,30386,78611,85425,87638,88251,64238,3337,92977,50096,79319,3030,17007,77188,72058,87849,46683,37489,7037,42715,80340,80600,96615,6115,74641,62162,50076,99346,22767,88283,53935,49446,74329,15198,42725,15056,87649,4162,60439,70159,50713,64905,3943,95776,6373,27054,24177,66044,94602,77250,75940,53867,11010,45400,24565,2653,10569,34675,44273,52930,38579,29991,90,70171,23294,4961,5963,14093,74654,34530,2812,48506,17316,6000,28650,68114,87006,50332,43040,7235,40710,71144,43256,69419,32183,91986,92824,71173,60634,45692,69022,98178,87809,68844,34570,15572,34335,15072,61634,7549,77150,79397,28849,16680,33868,16892,95778,34156,15970,57592,95613,14512,25008,14019,56285,20785,19649,37566,13452,3078,62709,89428,22387,69791,78826,15688,44501,57269,78602,67200,35665,18693,85950,69425,83166,77574,72408,66510,15914,82232,51617,109,57838,11139,45177,99386,77706,64976,75519,45371,22007,24775,14850,97212,60763,33582,76553,34644,80635,61386,83051,41376,68365,66709,83336,2039,64934,22056,83584,8652,92937,26299,43617,6484,11801,82609,87808,57693,19149,97770,49614,14098,90912,28351,6399,30939,71212,60486,82644,78259,90050,74964,10818,24605,4985,76060,33641,48023,66315,92169,18918,87260,17753,23971,57961,58363,32396,51125,64825,38606,89045,42616,33150,22384,76747,42779,84641,90793,87285,9803,23959,13587,74989,83761,88561,26796,34180,42629,3384,96611,63469,28692,39279,37304,1444,22077,77564,95781,86917,58638,71839,53218,37713,54495,11188,68860,26573,81640,24042,54335,10203,14859,15518,82258,36942,50566,30042,25947,47081,28489,11280,50296,2162,19825,45996,11180,83552,11949,82299,82808,85360,61398,73537,75896,8793,72248,8912,57535,19489,32402,39274,27493,97013,68480,71569,41767,57154,35451,41039,72034,15923,18893,29112,19545,15478,98189,88615,4966,83918,84790,3367,45304,46685,45110,69259,94782,82781,27085,26834,98329,76127,83344,11310,16406,68304,28521,3007,48408,55000,70682,12835,88456,48855,59345,99335,13058,91061,47273,14874,99590,73801,48521,25132,12868,59920,90620,72659,14846,72909,40106,23707,70674,41661,86828,67829,83728,61895,61572,26483,69941,75435,33622,29138,61457,44433,35671,14328,34241,58756,53452,25022,33676,39956,23236,1836,96278,8818,90404,15613,70808,48267,34074,74849,4942,6221,85300,56303,23734,90531,79298,98553,63980,88819,7719,38413,97893,52242,74546,26190,47713,47341,48258,88862,97515,16486,50004,36798,93624,85078,43238,56698,37091,25144,6657,57111,38356,18682,11302,91242,8201,29243,83157,72371,4639,41117,24589,70814,32796,25393,29875,85423,88914,58048,34973,96244,51869,21535,68749,25735,51870,16417,70427,61289,34319,87101,92935,89499,96459,46527,9246,83628,49263,14280,28526,4767,2851,74859,39169,59524,36674,13862,85145,89798,495,49666,22000,81507,6274,1702,96528,73210,67486,29354,77079,91873,9215,33163,81150,95120,34472,63321,1170,74501,40859,41273,43428,45194,60607,28288,12229,35267,25637,41108,84036,19469,40419,95832,12008,65179,29324,35276,31124,3313,53359,62990,37047,51158,23533,63680,2293,57069,32922,1886,82140,64747,75194,27874,18153,25263,41820,40639,40670,99055,23805,93869,32070,84085,58868,44084,60159,85786,49731,43933,62562,52397,97114,87703,18077,32090,46953,98860,61962,25126,5892,48877,44473,8634,9732,43175,5505,80015,5462,56872,54535,43451,23457,73650,27896,28174,1922,11790,75899,71741,13129,11320,77970,69240,44227,64600,71148,50963,31966,5008,49824,85034,36786,28370,47351,88863,32326,32006,45070,74981,25395,40524,13873,80877,35220,66106,1202,79591,33858,3547,14001,96335,86279,4826,88278,49386,82201,98703,57398,17214,18405,83287,39788,41803,58458,78756,97186,5765,30540,94644,39622,14494,93973,52566,84734,94528,45721,89600,11981,72207,42143,38767,33739,82697,62013,7046,51737,29927,7910,95436,332,55588,93019,32428,6113,73624,99780,32920,38374,654,19295,12472,64635,8924,34047,23834,58406,68386,48748,94990,3394,50270,17086,25820,17645,16396,59985,7940,330,75218,36814,73393,62684,66458,42198,8013,49987,87059,78903,9443,77989,44133,9900,1128,43468,94257,39012,67394,94265,36339,73896,66079,62445,27989,24501,62111,81451,94918,65582,13253,61637,40623,51822,51609,51087,89996,52602,93690,64179,60079,22900,50592,54308,20752,57946,6272,5323,68591,30711,44666,90940,95725,52048,95486,6625,32656,36958,20260,33050,83981,71995,11396,52374,57132,47449,18667,86777,40372,86749,84795,49467,31742,31707,54486,57989,82264,45950,89641,41796,62639,21148,84848,63169,80021,48651,72730,12421,98717,87343,1843,11502,74096,78376,28262,57028,81623,24978,26795,78478,11591,24072,15256,37873,69949,37189,42141,64979,56164,55402,26528,81077,22669,80224,10842,21198,95230,95489,96209,81748,22693,72618,71488,97091,96650,71898,85160,94902,47922,65002,43169,60818,79510,50600,98749,20905,93731,21446,10833,92816,37923,32930,32080,20448,45423,78421,53468,56583,10536,11748,90512,82829,96817,80906,17333,73357,12882,87100,58909,86205,67233,32839,18712,37460,2161,25759,50969,29440,63377,5483,75543,18026,19821,19944,9866,4347,62921,85900,40892,43546,3213,97822,13186,7369,39765,36048,62981,63427,44219,16673,13181,45120,71797,2257,27045,81570,33406,12176,34762,63846,58349,42206,10716,92328,70001,98939,35464,96716,39041,29009,55732,27779,11646,93478,59766,84741,88288,32460,99737,24889,70302,52289,9147,29555,58650,45658,38998,7615,58077,509,2924,28258,88431,98535,12914,52729,37172,50575,35338,18522,13382,89632,63636,83854,63085,15126,18366,27298,18958,65990,95949,7861,47398,33155,8139,67851,80951,17459,27238,1302,23445,28172,53075,66733,59551,76133,12509,39775,50753,14597,89897,14499,99647,79826,95652,14997,31874,68667,8680,12221,20614,53859,94593,24967,60998,75801,62228,84271,64200,62167,86779,73605,45914,20570,29381,22634,67432,53165,35943,16580,68132,28888,45928,57147,37062,86636,73614,68926,28093,11292,76295,18228,91946,1892,80242,55822,70054,48344,2043,56815,54575,33813,25832,39476,58,51248,99008,4531,37891,25128,59512,18295,81847,26288,86365,39268,28372,21414,10329,849,12671,68829,62351,83536,26084,3559,3909,92916,97159,82776,19934,53138,26402,26625,24489,63116,17468,21874,19027,53385,96804,20318,57409,62344,76228,44825,712,19440,12802,18326,37564,4725,59747,40382,1796,49921,65477,5875,38368,75264,27275,83542,53127,92786,3407,21318,33646,68293,84038,5114,84857,61004,23755,88248,38739,48461,19079,30729,80947,99044,83699,3058,26631,71835,4580,10725,48563,60769,29244,52009,88374,41840,15571,35668,24205,55493,58976,51327,39536,42263,12422,98606,74044,51760,13183,88317,74272,26253,43572,58242,85022,91877,22219,79516,68636,68861,29278,73368,18171,91003,66381,30000,5224,40936,69810,8079,36743,81488,92062,44318,47929,79088,41341,31365,31868,56099,86405,73923,40889,68965,1708,11519,92103,88315,68397,33850,48288,70959,72085,39583,52024,89171,81220,43173,31346,19450,90274,81066,35162,13341,27810,62525,39546,86164,81563,75560,36078,93098,55528,44253,74057,98498,94446,55015,71649,33346,84581,63437,7593,82483,63808,3872,31851,95704,27489,17795,48495,82895,91419,82791,60754,11056,11766,57940,27609,50107,99141,52408,75748,10176,91685,66657,87193,53682,17500,45629,27822,17522,41220,42453,95764,89840,17846,92037,54045,75449,64981,22816,78057,69809,93176,14091,19415,47972,79677,86004,92289,85764,63319,69715,75855,87906,46108,21172,10529,937,81460,33410,68129,66483,71079,63180,85547,78363,48316,96969,12092,73126,9288,27552,59121,77119,63248,23837,66162,57882,42677,91556,34427,61970,83535,58175,94052,47384,96702,83882,85484,56798,71094,73529,44301,76994,3936,25955,76199,92923,57043,96287,73427,16463,99505,89734,67512,50338,28164,98876,46449,48899,39126,17389,13059,63782,21795,57128,64284,17386,2799,11898,57586,2120,97956,82166,94229,83008,85744,67095,92531,37023,67941,44923,57428,72781,93864,85036,59654,12203,18291,71947,39090,34347,39557,10288,48351,6419,60842,55262,24833,37042,80366,40807,38385,70156,86411,71561,91802,32862,80999,34091,88294,55929,64577,98052,22302,44965,60864,55469,26087,27239,11393,40516,36332,28212,79782,82826,62683,27204,10315,64187,50822,2022,48907,98908,4684,73207,42787,44686,20242,99546,16032,37943,92680,77577,84866,15906,61882,59640,12185,18487,71798,62882,5249,36392,96114,42102,10139,96022,78384,79148,60766,6716,29459,67459,88038,13182,12967,55931,64500,18904,64681,33552,94738,18255,95545,69737,7640,16901,49784,7687,81574,92008,31638,77264,32028,54988,18591,57907,42016,38970,70607,92684,39809,83407,58059,16333,83767,46872,25226,68787,88453,44813,65302,31872,37144,94739,87124,20715,43135,39689,95374,65448,19135,69878,57908,69230,17635,28065,74153,21878,9452,3806,72400,62212,65525,5257,18004,46714,33744,27724,48222,71167,85565,70080,2476,87209,49364,6275,75467,82908,96998,40332,4004,34333,59023,33219,57879,45841,65122,25301,81489,70170,33450,81111,11675,623,13650,520,40749,56728,39683,2254,96400,55097,88035,71622,35643,47824,84121,66054,33812,22906,31816,69827,33735,11121,59092,37020,86752,40515,60078,94445,86453,74870,40680,94290,11226,42113,45837,78539,44657,13911,35432,79165,40799,28545,98418,33701,54579,41980,56916,47443,19439,23723,10313,3562,32987,62025,56280,2336,98895,27399,82332,62289,17292,83710,7014,53716,98332,98149,72790,59876,92083,25822,51933,97746,36494,72256,36173,76363,17330,92772,48687,23325,94147,46250,77360,90263,18780,91846,53488,62642,65933,66600,46958,998,18579,2844,95732,78310,91741,55768,3618,48130,31143,33554,7817,62787,22504,44548,99189,54637,24510,43254,49095,89341,34759,59254,40741,80647,57335,58581,42421,99980,17893,91787,85315,91396,41016,64672,66292,63014,80820,42811,14218,98078,66335,59428,61198,94716,14679,5134,4537,32657,97889,20518,58936,37766,17000,97080,54825,26784,68490,40970,68078,47708,95368,3633,90152,52517,52138,45997,28276,21442,66423,98760,41997,86701,33896,43237,80744,30438,25293,63708,8572,44761,9189,79524,96322,66121,775,34645,44799,13116,87631,24631,26494,36349,64755,33102,80346,66205,34757,26713,33167,63921,55545,8160,59544,7619,80876,18254,78436,715,75314,4476,8411,52388,76455,77679,60141,90480,33944,61932,87279,90727,21570,16176,95872,68456,52710,86310,74046,1869,95140,41387,43597,98745,47912,58394,4116,84290,14102,32323,39730,19529,42458,29604,71455,71549,13379,99593,93563,25944,64978,65573,44974,57708,17351,42632,67691,37914,69253,34205,33659,92291,43782,57668,44161,91179,1703,12042,55274,25260,4058,34495,73369,33965,25426,70372,30476,31316,23800,39914,38420,83111,67703,10188,28195,12204,81165,82715,78470,66307,12457,61942,24625,75682,13934,37043,47122,92580,32472,67040,31654,63398,35121,64838,21128,52119,88189,13347,70761,76817,65133,60169,56822,3863,59704,81818,37936,12041,90116,86074,50718,63805,48304,98993,89637,288,33888,20347,3479,78196,84850,41709,54257,64818,74650,98560,60922,15197,39715,36880,62281,98014,9959,90762,55991,52553,46234,81949,76328,58495,65294,33678,17182,52572,74765,39540,88950,87223,30890,84603,60213,34017,80538,94970,76741,13201,45269,4398,7915,35297,46790,94072,51632,23904,56387,75914,66018,5215,51067,40660,59030,78510,86545,49369,74358,62049,95307,82984,94047,86864,72814,84933,192,46013,49093,51354,14824,25988,97628,24824,88684,41358,57792,58617,70407,82539,93706,36221,74512,49977,66576,21896,79249,37771,50579,34951,48642,10942,18330,69504,14678,95099,5688,74598,24430,94450,92966,6431,85607,79881,48064,25427,95719,93007,23055,45100,10661,12286,37550,62631,37711,51039,49836,91068,38908,52494,92886,53833,66387,5785,13607,80942,30535,34218,74723,50431,7809,8772,7986,86619,2211,58686,91119,14861,79525,16175,17088,49012,58947,61036,67014,97676,76454,80824,48717,22965,99745,91028,45320,97323,73274,52974,12183,20344,12535,37201,54309,34008,9961,68266,98792,58923,92621,48823,49734,69113,8448,35128,97269,86058,38716,37678,21513,47390,12708,32652,44676,1453,67274,17360,49799,71591,45483,84089,20947,24118,62821,92211,62931,33749,18889,84390,43393,82280,5480,7388,54836,31779,48988,56347,60776,98640,47481,84744,93734,91033,41550,31751,71475,31059,49483,81021,49963,98074,34034,20565,51194,81143,83080,84627,46143,90935,14553,43658,2449,62687,88378,98625,7305,96286,34541,19346,53824,87481,80394,42146,78500,72270,98918,20094,76471,81318,33651,68949,76451,72159,21699,39515,97986,19839,88604,34876,39940,75666,24054,53872,68238,24505,11418,12416,54753,51840,22592,56445,1480,51706,28988,49793,53279,68830,52100,64689,91342,83942,80165,48746,20919,33567,94686,85479,69649,13344,30731,39793,41293,42945,82422,12942,60887,87116,79773,83248,18644,85441,76844,12088,23854,42586,31730,68935,39949,83838,78454,52023,60537,98274,55683,22165,59429,84936,6440,33480,55459,61971,87957,62783,44414,12711,61177,24335,54673,20341,6211,59682,15851,24999,47470,18668,57384,82262,92583,9227,81576,39197,74006,58283,50985,14652,44564,50890,12429,18546,34839,42020,32856,78137,40692,28805,81438,45379,44258,63742,71631,97303,76526,91046,73777,64955,24614,46855,86301,4706,77507,97121,17338,24191,35278,16231,37622,85715,92167,90283,69263,53238,41530,96048,9102,13568,48090,26332,47586,25131,94371,3544,17228,14156,85000,4663,61288,29967,41017,85080,37587,84998,89790,51651,37547,68033,91659,68461,98787,87486,33142,76837,41377,49180,58244,2582,79140,98844,140,43147,39435,5643,35324,12785,67665,16027,20040,55006,24259,51546,82058,29228,53677,31994,93986,40368,54078,87050,57943,11401,68369,58718,14145,60863,75392,13215,51774,75158,41085,24525,46611,86477,96487,56001,46338,29483,4428,8397,88953,67641,40359,26130,74820,73787,26885,15371,71034,53481,22457,2345,20590,14660,96655,72050,30885,81287,88318,16969,3483,15737,56631,9807,94392,41864,83541,42816,26614,76255,73407,49298,86217,85511,94104,56694,31984,92740,35900,76587,92325,12225,14985,69996,36473,46099,27990,78664,27126,93987,62718,24457,53136,65136,15671,53550,54969,25341,83343,11476,35675,46014,79581,26043,84556,56935,67494,37108,64837,72714,54854,54664,87344,28166,48936,13745,81167,19127,38375,93616,84592,29,84074,70027,8821,53059,93424,90150,42142,46061,58013,93613,71145,73202,59740,76336,86480,20645,62708,80884,46576,58020,13833,83507,69655,26195,23259,99446,98462,51419,66526,24290,54807,52890,20288,12458,33388,83480,56257,34944,39650,69129,71430,86160,8794,1368,22976,31475,63698,1970,95933,53260,91330,97812,93107,40510,97673,12808,36780,48606,33598,24699,79623,44645,70929,24458,34315,63455,41698,50113,21262,44943,43338,7980,24947,92320,36023,70037,41068,40356,76701,97945,47054,57495,26941,70737,35633,21200,2351,61587,83717,27151,8441,1272,75190,92576,97493,26606,99155,54215,81764,3878,23823,46253,46697,70281,60018,40693,71939,95927,21421,49724,80583,38315,30040,6460,76211,45447,50690,24363,44547,67590,83167,62791,2163,23289,78032,45479,2134,10448,25507,33255,73001,61368,67185,95050,92451,61513,2439,1684,41680,47643,5220,8268,24286,28641,39597,36182,51027,11937,81028,33658,6332,61566,99478,96972,36667,58940,28232,59825,90473,36836,957,28008,15909,52622,89843,66184,10012,90353,54062,88835,42307,3556,76301,63005,62559,99237,61839,61353,1658,27671,52288,50978,37152,94050,54251,69498,69227,91661,99240,82158,68608,53047,43398,47494,27934,17110,6022,82242,58595,14301,7985,7406,67304,76135,15848,49954,49620,59934,53042,58896,97131,94224,48753,28932,44966,58949,9502,14385,85114,75253,10861,15095,99660,97762,52832,51124,5198,66000,88818,18835,79653,52184,6671,39338,28738,12768,14122,64958,88625,90959,76686,76089,12074,1492,53156,16128,84345,82864,12057,10775,23118,47535,74919,50961,50930,87866,80424,26028,58423,34481,15207,44688,97231,64844,60261,43758,11430,16897,29771,36783,8435,66194,62803,36583,14165,85814,40939,90924,77289,37552,32729,67910,58251,17157,39840,94676,13327,54927,35978,38098,20348,13950,47022,93621,43592,47337,812,1276,89919,67818,49192,39667,29238,97064,19224,38975,29454,17539,6530,12781,94662,30585,28529,93798,8109,33040,37595,38045,81030,11491,40401,49038,47079,82492,88003,50064,58959,71337,66652,68997,97568,78951,28004,61644,54826,11108,64005,50252,32967,91114,3780,79871,59929,40640,72827,70321,83948,33534,94004,21995,14351,58179,10707,16493,96158,40996,39348,51455,44237,96207,86581,33891,81710,89487,7795,77108,68694,53288,73497,48129,47676,60120,93434,31802,32616,95720,94851,80630,60422,49617,43431,25335,46647,89733,89773,48331,71067,98901,48214,68625,88498,6235,35476,81192,90354,54633,47776,73180,13359,50589,19252,1291,91282,55890,44785,62331,784,51440,83828,25831,25168,30464,79619,25718,9712,98201,82193,29586,20019,39593,72479,97465,58631,84398,8923,15421,99624,64468,14286,93513,90216,14223,41027,77032,808,34586,3783,12844,10706,29406,94911,99682,26874,70614,16169,62645,37579,78011,1557,79229,73498,9205,10730,93932,75007,21273,26215,9158,62689,22485,84442,57891,46044,16642,40822,86037,55120,56187,11557,72323,30254,9252,5997,23560,61201,21058,24322,97279,88489,27568,87083,26794,73883,61773,54326,21497,86722,21046,14608,65543,10224,79009,68031,89875,73864,15119,88626,10571,32720,79349,92637,11030,37307,46163,28593,17115,78693,36402,84956,72927,72583,59925,9916,63953,55056,92940,88145,45211,7308,4104,21577,29117,89360,85254,52182,37452,8786,72979,83199,34054,65923,33001,11154,76078,65164,46540,46390,7554,46752,19795,55202,20564,83977,86576,91859,39256,20868,28595,74491,73565,69345,65756,88556,3912,48142,61119,30467,6624,77368,74039,22747,10873,9385,42380,85828,64205,73639,95622,66561,20879,69792,12575,7139,76291,7310,8943,24813,10289,88231,2333,60113,89495,32727,37851,77225,20712,84846,52808,37231,16010,95951,15697,59435,88986,24888,58318,99645,1794,24000,28434,52742,27140,78140,25521,70220,102,97298,27379,9144,98334,4620,98891,10895,9950,28281,78373,60675,78165,2978,26077,51724,73075,9166,77133,2365,64521,48468,5541,45772,28036,28205,21109,44483,26497,98765,40221,58409,72183,70128,3733,47180,91671,38699,59459,23706,45541,79789,79254,58232,22111,12304,63646,62479,58460,87004,43739,19189,86266,96725,47873,50345,3459,4888,36892,32992,99507,35623,65839,90855,95875,61358,20097,48247,4027,28586,54971,7261,5871,1257,80121,97618,3883,38700,88107,26045,16938,42032,2017,13111,64516,23137,88333,84731,10299,47303,16519,66971,80940,22558,72640,17031,64370,49989,74943,16516,92999,22124,93533,21658,10973,48782,18567,59647,46164,73351,82560,58378,42167,78766,40654,52812,23158,2962,41962,78154,93378,69773,9927,44244,49335,87052,2997,61849,95779,36873,59348,80508,23420,14951,38561,50494,12341,33024,79187,69782,25809,18000,11461,31058,1768,48784,81407,25259,22808,15431,17407,56424,29878,34262,98187,7194,78545,49401,52633,96370,26342,61850,92870,93799,49269,10959,62540,33592,38304,98669,71087,74911,7949,65379,12556,27553,29537,64192,21507,21904,3378,80334,80034,58441,2080,35988,9999,4379,47528,99691,49546,51493,19287,59864,7053,29817,68534,69974,51113,18725,21980,43697,23116,83470,81302,61424,86286,46404,93871,3987,322,75960,55882,94076,26482,31125,35767,33770,57566,81782,84636,10865,83848,66296,32305,17692,15051,17659,64430,97593,27164,38182,4510,22360,85515,87492,18635,69050,10480,38176,10928,44021,89421,60471,4174,81860,6273,5061,79543,84919,72617,15363,64072,77375,56757,22643,72912,84966,5484,97431,29881,3983,67404,38875,65000,59819,3102,7890,22046,59237,92524,71899,75341,2930,89326,20751,37907,67810,11318,7482,92054,57932,97117,14365,28572,10081,52125,17229,67805,68528,53241,28000,27667,64552,96121,6640,61212,83290,50222,97453,51007,98916,37148,57688,22293,12943,41951,32538,99324,92927,39254,68427,40145,22112,56777,71746,69521,31644,23426,27892,10847,57223,81218,37540,54173,53637,30817,18963,82712,86142,68314,19188,81414,11577,59474,58532,79638,47773,95684,22771,60911,16397,35856,23461,34239,43548,62421,91014,26911,24787,47626,39958,670,86019,42936,44230,13460,19138,69961,59721,90186,89558,36925,86267,27788,96790,96651,28270,82372,98756,12049,1102,41615,3659,96298,22344,82269,58803,81581,56009,13437,1146,13007,42552,57690,29607,39758,18129,85418,57308,17200,26373,26613,94096,91733,87037,79877,73877,57181,39453,49254,41734,67776,13133,96398,61870,74502,44793,24140,55527,82276,34806,24278,58685,72213,31033,32109,60727,67189,11035,9567,30669,85927,16672,29819,10004,71849,94948,27427,35889,82014,38617,66866,29220,91679,5110,98365,1822,82182,26754,59919,2804,14241,49423,12589,61538,38366,46394,92144,19274,20846,98103,23035,76990,76192,80734,35092,33826,83954,9933,95003,82547,44817,69852,43997,86022,25122,61642,62382,94683,20257,97725,85761,92948,45373,14905,83072,7390,84938,31025,99022,3035,58688,4870,37551,62363,3652,28417,74924,78415,74256,84282,93703,26245,84351,61245,33692,40698,72103,15161,3513,78781,54450,31980,53603,51184,31119,94083,89673,71690,58373,72571,15216,33689,10162,87112,57628,54840,66197,82519,75039,51350,27677,24658,96454,26431,97434,1713,42185,9149,40974,77576,6117,82084,4562,50496,47148,90198,43721,82291,81352,73719,27114,77881,71297,73921,8053,58516,42337,24368,68280,32544,59273,38877,59670,51036,36655,78026,42747,24959,3944,72548,33667,29639,15570,10256,39147,43802,88349,72475,32426,28488,69436,86039,95703,79183,55231,18493,66676,93662,1755,13391,21703,98599,38342,94604,59489,9640,74526,82122,10318,3152,23030,40269,48419,90973,81163,28348,37077,63534,30286,35799,62004,37063,85162,22533,35720,8725,37432,12331,35932,358,78655,25284,17134,67143,26768,62503,9135,86382,20993,66446,38263,48724,71112,2943,73669,24728,3044,78008,17852,79752,36171,5157,95936,57936,28584,82223,62982,9464,2756,52337,35823,9116,61121,86525,44267,66812,15015,40143,50192,6388,7307,12999,34016,70223,91385,51106,39389,10269,69999,91835,51993,43894,98943,32045,27432,30248,52273,27423,65636,1545,60182,57249,49589,67577,81112,42591,84939,60049,76484,86027,23710,2874,51210,19258,7288,96720,54630,59980,91176,88736,76588,35341,45275,77675,71628,1581,81711,73374,59370,85176,69473,75088,90379,40987,4228,93121,33194,29728,3429,65479,7769,59836,79825,8367,17232,43177,36782,46581,64036,98159,39475,4943,31306,75897,32989,91639,27893,57793,97873,13435,62330,42842,43526,63237,1056,54997,94793,95675,29939,54314,2973,27999,2117,29210,14546,41597,61439,34977,41052,69486,31556,959,24087,87936,50469,78722,78657,23275,873,76625,54688,649,74336,96666,38148,91942,63181,51708,35827,71089,37342,11157,62831,70527,45514,14076,74827,71018,7962,59636,99703,29564,77975,64631,63798,20039,7113,19447,99699,16025,85821,61129,5517,21515,993,90603,56396,75135,45842,37720,86251,92640,68010,59791,92775,77151,43453,47860,30556,27673,58113,84380,81824,64186,84897,5965,60773,89023,50215,54711,24425,24785,9823,29339,35109,30156,38974,47332,79584,76906,19875,92121,35022,22982,22276,2541,2688,46767,39534,48615,30323,42717,22313,51982,20281,15307,85312,39042,9398,81237,48163,80829,27234,32890,38266,43876,94328,70207,78944,70384,11636,57266,98175,5866,37908,15150,84373,9885,94565,94149,57839,41464,73844,21862,2994,50151,24855,23962,90495,20739,12557,30700,65031,84596,10232,46091,13523,8127,27457,11579,91530,50531,87342,72485,7772,5553,6170,39266,17992,71700,99028,91523,13517,29863,42917,81279,38326,18277,50671,92885,66996,64680,90004,953,10588,4499,95736,47880,86226,22759,39500,79900,54596,40272,20464,54182,345,58167,95463,32467,96544,93555,16574,2410,64809,728,28935,8791,1971,74165,12399,6786,84237,54774,56060,66639,8693,75625,8371,85203,61438,23287,56148,30631,46362,15921,26249,63791,86668,39702,13495,20356,79665,39130,52626,2776,15312,68580,45368,24131,52567,68825,12526,85984,68566,3858,38913,71571,15092,89578,15738,77643] [39926,37304,41721,39711,26358,23525,35957,95903,79974,46931,19444,72311,22789,95654,81641,92672,73806,39386,98296,37802,64929,59667,27728,71479,74936,55086,23297,5334,47379,4062,98122,84483,73224,19537,17731,9597,93086,20402,16263,14326,61160,31401,71942,33657,34133,47612,40992,14969,8076,20573,81693,38127,3761,64815,34595,83609,72226,49163,94406,97165,27831,55404,88742,93072,42120,41744,8918,62151,76033,64300,75336,95871,4378,19876,38682,31449,58598,90348,98984,67746,43512,8332,50711,33251,96491,52893,2692,2948,28792,41125,91463,95186,39470,64092,38751,44561,56777,90438,40807,87748,6527,60003,84397,93361,97279,6565,62824,69508,77662,74404,15392,51449,65540,34066,1619,50582,55351,15853,50274,94971,15182,16279,93330,45470,37152,87623,73034,64838,66966,71595,59510,35882,26362,52646,59778,62128,11933,82969,84213,76769,35672,48441,61009,43546,58358,43293,27600,34382,71820,91618,82564,73230,10860,41516,45161,46351,45977,70712,74162,14340,20700,512,76093,33912,8334,87167,84996,87738,65457,75293,57749,38427,32296,65674,83456,71260,41623,68404,66957,73581,57973,98175,6231,41237,33214,27956,22862,39775,71416,6122,88895,12171,66055,74859,19401,93153,55529,64264,2009,78471,5321,14258,42957,74520,17906,16669,3871,23164,64740,24795,85892,68273,39598,72667,17960,95128,62377,1082,18421,17881,43220,76311,60356,22681,48826,55643,26715,196,97955,29151,18495,58027,4986,39012,23817,86863,26076,79747,22360,40318,41485,67616,6773,2929,77515,35845,52448,36874,69827,53041,74370,95298,76162,90175,45001,80793,99443,88192,68250,9199,46647,87537,86725,52935,63744,15837,81530,34823,84499,5870,77322,20776,63608,9715,92855,83319,10335,170,48687,3911,94766,25988,2479,90235,11250,85649,80863,32039,71515,64296,76012,68983,19106,90051,79497,95647,75968,99311,17203,30724,32793,43352,30416,28546,1433,93942,60036,30813,46443,1766,17156,43574,91122,95120,11245,76879,84378,67073,44316,8972,34145,35323,51120,28742,86032,82710,49732,64776,26213,93718,3586,74083,98964,7409,95598,63756,95330,71503,42633,70809,97465,83700,40803,89911,18409,41991,67393,86015,37640,35890,74300,58299,71736,72234,16068,24667,86835,92125,95420,78492,2651,1484,76118,50590,6423,10706,95009,33514,93011,83585,20163,39623,52966,15526,76237,83085,4699,13513,92734,4984,30912,17470,93524,31960,54177,27380,18002,84418,42232,33645,21246,21245,71887,67738,52765,24729,43720,76941,6158,79373,21599,26129,93546,48672,2386,16200,92179,93928,71952,78593,47103,57184,11969,96988,8754,76232,11661,14787,32562,23477,92989,22752,58055,5869,5638,38486,34352,13830,14502,3036,9762,73153,75766,13525,94070,60454,68523,8091,9426,78037,51669,65158,51379,11221,32351,7751,79746,29019,4449,39646,39141,19988,10039,23768,59700,46092,2310,44243,70558,23757,73745,70623,31669,59980,26819,73737,31441,15430,57798,45941,70307,23589,69976,70667,86605,29036,33062,68749,88290,3464,19163,72564,2938,19047,3930,16627,30013,63067,52637,1197,18483,97900,46386,64086,2442,9234,84568,78252,29153,29173,91931,76652,5015,29921,87614,91473,5465,53403,35874,94150,63817,57365,62856,89104,37033,67401,6199,98048,62922,11876,7217,95732,72432,58224,57519,81024,64253,14129,85334,5823,88213,32742,93653,74142,90729,90889,87700,18316,13755,27310,13330,75667,27497,47656,22587,90593,12455,71361,19136,5598,35886,7067,49000,32374,29362,72685,95305,46762,58433,24129,16667,1099,44961,31006,43994,85025,35735,32188,47552,6778,37220,49217,13229,67192,93945,80037,51734,29813,48502,52865,75698,4832,20613,48034,2982,21739,19684,22874,55638,37480,66175,19386,12416,12726,81852,24404,9123,50773,62644,46960,55079,83275,1457,60766,15695,74606,24422,33716,32181,48121,19327,17610,34199,13379,10368,14262,55602,16157,54161,67691,22249,18968,66630,99837,48524,44713,97464,54786,26885,51144,35718,94934,31253,53305,68901,58841,83087,64889,79302,65125,97098,82329,31142,9191,41038,65326,68010,77045,25004,84459,14280,86246,40646,54589,71860,89910,64276,7226,43458,74749,13647,83863,62473,57175,11738,67143,87936,96721,55530,91323,21111,80890,19720,81131,74565,33542,62433,85944,21628,36611,87460,76327,96833,71476,95930,76526,91148,28845,70802,26639,21406,45071,60221,41006,20557,20158,9880,70614,37039,55863,61719,69280,83064,5373,40063,71926,52132,6383,74464,19352,65276,46241,59957,92733,12871,93872,34752,42,28290,68953,71496,63280,15151,94744,24363,80997,72,40325,14793,79533,32099,83574,12001,91206,2952,77160,14942,95162,11143,95230,30521,97902,38820,1551,36567,10438,22465,43917,41186,90496,7209,68618,91082,29392,29523,39052,50303,39524,87395,38426,47533,46144,44511,18000,84854,81922,44751,23090,22959,71629,73621,92198,60116,37893,44388,211,93794,81081,39083,3908,11855,80869,2151,57656,45550,58668,43064,4998,63621,88732,33303,59542,96409,20666,69548,56837,15957,68124,91142,58573,31059,13462,84520,10277,37538,50802,78309,82891,53192,14592,30887,22255,57615,54723,51804,35473,94152,12296,83895,78528,92839,18773,6194,82320,35160,50769,42144,19910,86533,94148,12509,52613,61115,88858,90182,3772,12997,82173,49470,76292,71094,84780,42604,32635,60084,28805,63282,11968,65632,15232,5447,31753,43214,13331,40117,428,13000,52963,90054,75442,51746,48359,97260,62479,32172,82625,92851,30633,60994,2502,519,33500,99263,50760,66073,97926,16762,54715,49319,62803,28340,65473,12229,16477,68568,51137,69331,32397,58054,49197,19820,59561,40630,28052,66921,91498,59907,84610,28954,11547,76758,50378,33996,82091,7224,79508,16514,27766,37472,38296,60415,91355,83207,81234,3171,75682,95087,26438,34085,29674,34262,64343,99994,37785,71369,24898,88087,91114,45835,56583,58941,14689,13973,26646,74009,34837,55898,13407,16751,35693,57063,82930,92271,27953,43043,56041,70561,74938,41585,98219,51074,76113,43603,8357,23583,27387,91551,9338,64128,67739,90166,51896,11794,50755,94180,44549,21122,25336,30985,44102,28148,39726,61166,21130,18300,20965,59590,68928,46712,21,1841,23461,71780,88282,57600,11481,77913,22334,78201,65438,50742,96093,17698,37791,53277,27533,24298,25907,27920,87723,41333,96948,7914,27065,4455,67330,84195,9209,37360,96115,38982,53838,35052,35508,96841,63387,29636,7484,37008,43097,67000,3512,13640,89466,33339,71781,14602,87694,71570,92123,87683,88187,68991,72676,4675,89739,58867,45615,18831,9263,38661,10737,79196,45279,14400,2099,40274,52019,89527,12712,52267,59251,39998,50814,90549,48025,96593,22108,67378,28207,59601,23927,4631,44501,60844,52309,98903,83990,2167,62657,24610,4106,95145,73503,25372,41286,31720,53447,79539,70441,16311,62557,36208,15176,20411,76551,15942,89575,51558,38752,75060,76315,64808,72189,64002,5852,93307,8226,13148,40015,33,24304,78957,24077,19374,22050,98608,78054,81056,73575,60966,66748,26331,92425,83529,90301,51004,64068,41465,70646,96664,51420,18403,75631,83451,47660,59175,86189,25230,63048,80688,91564,29288,77496,24625,30534,94170,1067,77708,22652,87601,64741,62354,40045,78922,29549,68193,26910,86439,43516,4576,5440,89873,9361,89318,18576,95566,72167,96749,18201,25492,84116,91844,89933,72893,18216,42966,7665,95355,17732,29500,33078,85487,93686,81172,60463,44984,41558,46852,3410,51315,82952,39459,20455,18934,85941,36554,4172,65072,93938,61425,17127,22279,15989,28154,18596,98473,80547,69801,48867,50038,42277,81307,71431,69194,38439,19714,79469,69625,18418,24386,23211,10923,57130,15195,14426,4495,58473,62747,24861,9430,7816,54370,7779,91710,78726,73267,83777,34939,99561,83928,3323,94980,7547,47001,16582,99706,12084,76150,6731,93875,45369,18648,52884,88577,43729,70115,23934,35965,57633,6763,87299,97487,1340,72984,69162,32582,71620,35638,95155,58214,23278,47189,17370,35997,58425,89551,86031,24863,69768,273,10342,67732,2269,68944,20806,78883,96490,34198,80678,54577,7652,10426,51870,9422,30065,21974,60067,94318,28993,40484,81787,75749,4382,32268,26204,15350,93485,12243,89671,41007,24748,48287,5769,75842,7804,11953,14487,73263,41366,97741,91591,34163,1037,46534,98441,53217,16673,71523,13383,53089,35004,57504,20236,44736,86395,34893,84310,23345,74827,62591,27481,73134,73985,87405,47123,58048,31119,4177,39767,72829,9207,17313,52148,26075,38406,60955,87504,91624,51559,21211,97117,17076,3302,90177,14443,23452,57685,94137,9675,50932,74989,65823,86088,83962,59197,93734,96373,72661,7125,45348,76161,77838,67876,58571,16120,45564,41804,67878,55716,40237,2378,88530,40278,84939,43363,40079,58417,17575,77213,37010,66931,90595,65029,17736,42420,54537,68394,38723,92449,59674,46274,15848,55128,50124,15527,94568,40831,16208,89542,53897,9423,18473,22351,95781,29467,88051,74324,33584,92107,50460,61133,36036,4401,61783,85965,6607,55075,74447,407,27658,61784,7016,23484,83266,15486,4155,1656,71575,78199,86278,5482,92870,82326,66018,94923,35580,43725,7979,82175,61479,84515,1911,33462,66214,78257,96533,31605,60230,5054,38544,89376,89281,39746,76330,8945,32424,48693,9938,39615,26942,1019,66700,9529,91562,63449,11694,84869,16849,3883,84730,52365,4895,20293,59346,82599,19282,81089,26073,70508,28078,57176,75582,59815,38920,60708,81919,87718,26497,61470,4897,45072,34316,6593,10450,3968,2532,23578,67320,88606,74190,39045,62024,89327,14020,6896,73661,51813,52093,80183,74368,57018,8975,83629,48808,99121,20464,3305,22479,36749,51142,91343,69632,1111,14413,55758,14503,14000,47928,25593,42450,76085,83488,55748,61516,89992,95400,53046,3140,64106,13958,90293,50886,88719,86143,49674,86817,29022,47808,30363,78574,89922,36917,52345,759,17003,14711,78173,66155,89609,25881,79237,41656,57103,18298,32733,82594,90043,23043,55395,48761,15246,40616,16481,22804,82185,80208,8619,1346,49697,46320,40257,29931,35108,6802,47061,31914,20330,43934,49159,24223,53386,93488,57292,21026,23167,97790,67421,27691,88104,78503,22307,5525,46051,91673,90055,71338,81642,11979,17895,88724,30551,49891,33482,63174,83987,35492,23782,10707,11575,55259,58623,23130,23570,67095,39423,83719,58780,88212,58565,93535,25796,85369,90063,99741,56731,12266,65533,81936,57684,5691,55252,33626,19233,15516,95402,23567,57884,45576,18708,8824,73830,40535,43952,81315,95929,53782,49856,1771,44620,3240,80268,26342,79759,12838,13769,82760,66120,41279,31280,63414,111,89312,34196,63389,56740,40199,42003,23050,83825,91329,79002,12118,27089,18855,36009,69415,63585,90660,14584,70983,89885,7290,28465,50685,15952,62983,67839,68732,34639,95321,89903,26146,64774,18426,86784,38192,38690,64126,45721,60912,81686,40309,30554,95266,8822,83233,79420,49778,27943,6641,86876,62816,51985,39702,26423,13863,32844,32814,37189,90984,96228,54748,51703,55500,65056,33844,24621,33076,99040,22059,70588,58441,65962,66907,2246,38905,22357,11272,43230,70804,38244,27591,74690,46406,19275,23623,39528,34805,55123,42864,9947,45796,58640,64216,28125,32441,42099,62872,56728,77277,79169,85737,75753,44801,18358,23799,11957,98379,28811,53990,20218,12331,72638,66208,63252,91883,74762,46197,40955,510,37486,17912,70992,11025,50572,12101,57652,59835,37400,14250,28068,8425,29937,30377,50156,79206,46553,52713,80754,78538,38762,68626,78200,8433,37009,32550,92819,64657,37471,55115,81465,51065,58276,172,59203,96684,60106,13433,22762,20401,71921,12040,8342,37643,76848,46273,71384,53670,82284,13473,76640,65142,6691,5806,53889,67934,83153,62927,29364,84964,71275,11798,2356,34132,14840,92792,43048,44672,49287,67273,6983,66530,45764,78819,70070,83459,98498,39392,63727,66747,79701,35635,24141,2536,97032,75440,62798,8821,9557,18686,55060,24669,9987,41024,5910,93101,60126,8393,76657,69821,36312,23457,36038,99936,68562,14390,31419,1495,94118,57040,16553,13756,60372,74341,79063,47551,6608,67992,38993,57832,89864,41668,95454,15242,88121,67727,11234,33164,90685,67238,50976,58259,2683,8102,34940,32490,58525,67922,13502,14794,58926,77299,76010,18075,82816,23235,66625,80900,98338,69920,2197,36523,1899,51647,91221,20713,79947,72713,66347,35865,93959,62399,13117,1189,10791,71484,17673,13335,31923,77734,92780,99701,20431,17329,5591,35924,17064,29861,51808,25755,53937,87721,91423,81476,90871,66285,68162,15450,7425,19586,749,65133,90259,24238,38010,3735,45936,84205,36740,95365,26580,54890,49123,26369,64075,48271,92105,2340,7643,60197,21496,21202,84463,58429,31718,4344,12803,51362,8852,11368,9523,77644,86454,26591,34474,30699,94518,90406,47760,63523,3384,96380,83282,21101,16094,45349,75560,88779,13619,45441,81725,25801,21482,75833,20716,94445,13237,45961,113,36780,48974,81728,37868,42007,54033,44905,9588,21344,65187,53728,60031,75844,97919,15440,94441,60775,37226,86620,3595,69048,80212,36113,25308,11602,84232,21840,83659,2367,38155,95632,4800,21053,5857,33066,35990,21150,3000,42337,5639,19535,78521,86492,47717,10724,11643,86213,55027,37543,25081,80485,68526,39578,53349,21837,49753,74359,34708,500,11581,78668,4508,10591,84702,98863,96430,64462,13733,52407,88744,38660,36356,29570,73244,87215,65311,85863,7922,72395,82803,64540,16113,14468,87202,259,12359,21640,54802,15614,18988,56843,87638,99521,68054,89796,48682,73963,62247,19334,75087,34919,27914,43891,83789,3454,25324,46433,94975,34614,38771,52050,49740,28485,6452,41399,16426,72996,70402,13476,79705,93264,66920,61542,88371,53856,17430,48730,7436,82029,80844,84138,74178,96741,56499,26921,74136,53133,27106,16415,2242,54245,27514,50199,7500,59274,44061,91049,95568,24507,22174,90405,75106,99346,88506,59348,71221,73853,57898,72581,91864,43093,35139,3515,69063,10756,97670,11075,92335,48598,50506,23524,69377,81442,26456,80229,54363,10479,11919,94844,84908,8487,76407,61441,6258,50661,96138,1362,41134,42839,39522,16656,85998,35014,82508,39771,13434,24560,76193,83524,15621,48800,19040,3655,35394,51954,74197,69289,89708,62947,71365,19604,28497,73701,47865,16625,39881,39941,99484,45125,87673,46393,10218,91749,6751,86274,84764,19852,8371,87832,74649,40522,70914,56486,7184,82202,17544,85929,42568,75577,39661,20255,89236,49201,68684,16335,15543,52086,61592,8983,6717,73777,70628,49448,15042,76898,8766,15871,30987,40526,22909,84585,91777,13542,14975,36305,47422,23041,48390,81895,51797,40363,99610,8971,62240,48868,27540,45517,77157,62458,10339,11430,25136,37485,67374,23180,90873,89211,69836,50381,42109,68707,78272,71517,79397,999,38935,56758,38610,36051,77027,78598,43348,31695,96051,43436,18450,2601,51865,53992,96851,58225,39234,49591,88495,49680,26164,14561,65554,63480,1867,27810,14292,76283,58540,16206,61670,81713,85736,13665,53755,61314,88739,70194,95102,61239,72508,40500,51862,5308,60240,55884,7027,56727,27085,4432,33891,8197,31737,63831,21281,7188,1898,93779,8320,8954,6163,21293,15714,46394,31367,53837,15063,43861,58820,87989,59091,19534,9302,24852,49908,51124,96522,89561,62823,82769,91587,66050,79153,1201,66225,77961,16432,70896,49019,53635,52240,66477,65786,87560,35464,47595,33945,9346,42141,51661,27772,64402,47114,95666,68417,34210,21835,76264,83748,24585,98073,30205,50075,99197,95224,28963,98683,16441,38195,13398,97536,27098,68589,48914,21093,19790,43317,58437,81842,83642,48379,51364,20079,24319,53160,77304,75490,75245,92545,60313,80548,12558,24492,75113,8381,34294,40178,75383,77762,60337,53742,14515,57324,14063,9237,46749,97854,28311,33588,83441,88948,55728,8653,16254,19779,89194,29575,61249,90237,87132,61494,64728,45043,38766,53466,82491,20757,40173,90648,32258,89483,64074,28668,11848,42617,35611,26844,94845,23595,51041,60193,63574,53629,89019,38417,805,75505,34786,68605,12018,53534,65070,72242,92096,73930,72789,12945,45792,56366,6712,27821,32859,94456,55143,58171,65636,54431,10382,62126,63943,40165,42158,48047,23156,3385,45437,32466,60704,14213,83606,15478,63171,50517,65342,52087,88413,5271,4078,48250,23495,17105,47092,28715,90437,56244,99710,3297,46108,51268,3674,64884,40073,27466,21135,96383,64401,22087,88954,1989,148,33403,26143,55810,86049,22487,70470,88788,61096,11378,58190,21330,67067,15861,88979,56083,66595,27325,73492,72803,20853,90295,76142,97146,25573,27243,12861,94223,35468,16418,71185,94838,19345,29428,57784,8691,86012,92299,88190,87355,29065,4004,96032,40169,74523,44910,87193,40436,4877,60263,55291,2366,85543,60866,5550,92109,24906,86123,63689,29380,72957,64541,36836,21252,61034,39338,44014,24889,79670,29788,38303,38907,74072,70160,22468,94007,97444,51303,59497,22641,56678,65670,35045,54310,18211,71613,65681,88700,19413,47198,50961,44821,93930,26716,71169,65851,62528,16795,35892,25928,77199,41229,76069,19527,51590,16648,44816,72846,14750,5108,48126,91301,93652,19109,48689,64988,18315,60965,43058,25315,13276,84903,40050,95497,11062,3422,3191,89517,9443,97044,98511,83505,22067,42409,92151,40650,73052,41488,13601,66456,65220,33848,26935,51181,91703,40185,44579,13281,28164,13528,36034,75691,74259,97130,40464,50388,70668,59653,74486,86427,74915,60478,11518,99725,62589,23317,39719,86117,83620,22036,55719,22634,23848,79372,97299,10781,23405,27280,44660,40125,66207,32167,71990,86106,83136,21813,35797,8928,7357,87008,96508,17514,64595,25001,68947,94561,47136,91219,45785,22915,77749,56586,88983,806,60185,92737,65434,9242,14259,56551,95011,59169,15846,17842,23604,82305,98760,62888,60748,13360,63058,40414,4182,12095,79540,13453,94607,59981,7310,54424,61872,20750,12363,66194,70573,41459,22409,35719,88630,19811,28933,18689,2424,78431,70798,65972,83741,99033,3487,86534,18168,27344,79061,28704,36998,34246,98839,26810,47441,63259,92980,43143,8066,24521,90267,47912,58506,56441,77340,68287,31255,56900,16822,16918,67168,94560,14171,59350,80453,87859,1335,79352,60930,95730,71642,82544,12798,83669,32771,60895,59975,86447,5546,92994,4954,32819,20264,2645,3269,41450,14455,47862,32015,4525,78372,49235,61065,91740,83690,91184,87598,61468,63557,58111,74018,55286,18524,87053,100000,76853,28227,60747,82416,30903,97457,81246,30930,62074,83976,64564,17345,89532,40883,20824,40449,20657,60869,85314,16236,54124,13460,35495,65954,30428,7212,7247,34883,71871,42704,17952,34082,25734,88513,64238,81954,29559,25307,37987,65550,46904,32958,21106,77955,95816,5147,81040,17251,68093,50610,7679,78852,32217,79744,20036,97633,61639,88803,27158,85380,92836,57541,6174,10153,78707,7052,32838,34131,22963,48456,90536,46555,11343,36341,43044,92770,98702,62621,89163,83633,71159,43876,95628,79996,45117,65694,18190,63762,52889,64895,1148,5738,84538,87585,51215,21411,53997,4277,20743,73175,57346,37575,23158,52583,52222,44201,90861,65127,44380,61277,36398,40259,80523,18375,72102,39647,70794,1761,47109,42725,89836,27409,78888,60323,44899,55784,81996,45189,29545,73514,85341,27911,67725,53732,20104,88278,35750,69655,91934,59970,91716,59328,39724,95361,77231,85414,82628,19190,9930,24175,78203,38364,30277,75549,38812,47299,81237,20689,91,51187,65037,51093,71454,32239,95100,6042,71560,76985,28719,85905,21110,81626,88457,30652,74673,50348,69008,620,90156,75979,62474,25186,24587,74532,21988,58184,69427,91672,66507,31457,22542,51219,32530,69528,27312,45471,67417,39818,15976,29758,18009,43687,13116,77746,84892,36948,8798,52185,37648,804,92918,71581,1325,3555,49606,34004,10754,54857,82099,45854,44886,59265,66780,78752,39135,26726,96326,34481,64062,75043,19270,99743,12014,33124,37365,17735,97008,37848,53572,72593,87886,34461,30247,38348,13343,13583,69919,71937,3533,69972,39279,96012,37113,12135,71688,97041,61678,10094,81541,6271,45832,16868,74396,79288,26041,3647,8466,24712,35397,9292,16661,35142,93266,33839,13260,38988,51440,80915,91763,99957,75559,50341,94670,93965,63795,20955,2647,57200,27722,12334,86313,70176,51121,99207,64874,37035,10405,16131,51285,4019,29206,12556,6005,32079,65890,33971,95646,66610,77679,52058,18432,47653,62745,91850,90336,67482,6454,25248,72289,70863,98686,35810,36646,70939,7443,26171,45485,26441,10282,662,9728,28944,26838,85077,9195,55505,69384,27104,37176,67009,22502,13100,20061,66098,53774,33212,24396,95437,95874,34396,84508,54460,28686,41994,84431,63101,20484,59090,23408,48467,34355,15519,44686,67251,69383,11558,22111,75335,24547,41736,18839,52152,45064,36541,34463,93815,87554,3630,88136,11537,83754,55083,36741,23888,26408,99144,31780,29554,92395,52245,60130,73956,78121,88511,89050,86795,94719,69022,41831,75683,84162,11390,55803,29227,19112,93784,60146,16728,82928,37190,47032,18646,23252,39855,21121,52938,93624,7238,57570,62042,73832,97305,58470,18880,92454,34569,57853,41416,49187,75732,52665,28086,73706,37730,85384,60552,28515,49575,32002,52700,26669,96325,23281,90890,80785,28098,16161,33635,39997,48358,56966,97203,54909,98733,36641,91488,39551,5575,75056,87386,87701,13365,41476,93639,5489,91589,42134,38215,40246,5379,71686,46177,93694,31245,24308,88279,64415,95594,55207,85145,89071,32233,89772,74585,99091,93626,14408,13421,10384,94371,54669,88166,66599,47448,56915,62010,20037,1974,55833,13649,80879,54067,35307,43427,63315,55446,11802,71831,32484,73203,61180,2580,47940,44691,52337,92064,37454,57816,96438,45918,32651,82480,76681,84186,21415,36580,34565,36439,79103,25321,52862,93792,63684,90687,56309,32250,31582,34740,5743,76972,87745,33740,57581,14402,89964,21244,90840,2383,92176,40495,77053,81134,21928,31413,11004,66389,44256,65462,30976,66467,28927,22885,17695,4907,34923,12024,55260,61944,62535,93283,14104,18672,95579,40060,65531,96531,13610,76244,26528,95679,30589,40882,61881,13491,52994,47788,65467,28026,47658,82258,57767,15414,20836,31561,28478,72095,75921,27833,55925,30690,57955,36215,80903,53227,80378,48994,57395,34010,45619,30984,27888,79311,12546,68825,34956,73300,12760,3848,6743,58656,22559,2785,69901,49405,29511,51636,28606,78416,28627,94451,20343,79486,85798,72298,33638,49124,79665,87722,22618,37306,17932,57734,48773,23383,88668,50633,47718,21657,5741,76064,12954,95795,93246,49835,49635,81583,5920,23590,52145,6652,94136,31729,63984,86342,18270,12750,10894,946,72962,3967,75347,69567,47727,15451,95896,58835,12189,89348,95403,27882,63424,65695,31563,59095,10459,61721,42318,4269,69756,43017,85640,54427,25566,16077,17820,69550,3308,12869,68756,74024,8886,61664,40417,77806,58005,3277,85377,49360,28190,99601,18665,73613,12538,694,74833,69538,76110,70335,67524,10890,11128,73914,61665,76304,62166,15912,10121,21997,24912,92644,53135,97198,77133,10128,9581,11090,12628,67305,22574,36772,90860,770,86104,73646,10411,15446,28067,31999,7809,52487,83226,94038,90394,50794,60613,56013,19069,28107,39120,65934,29612,92901,58878,60475,98131,84616,27434,75249,41992,85142,49437,92611,10926,76494,84271,54533,62774,48989,39951,77904,71444,76125,60486,37182,50491,51045,90737,4562,68154,35837,16356,48163,98729,1061,45092,79916,58532,21491,75561,61499,5669,86183,49291,3325,88970,45272,43555,94770,78523,51732,14219,96276,48851,81831,45487,25550,42927,84376,10512,5650,67123,48472,34369,1630,23024,55567,62997,13490,35639,43367,34107,69226,96235,1850,12427,16269,62083,1859,63002,25214,20247,32791,67164,9462,52249,1882,8823,56069,32226,46639,2254,51655,90643,23843,78007,76146,8245,50589,66123,58104,25224,49278,56750,8043,12550,47601,24645,27225,98808,2551,36632,59414,50135,35215,92324,42430,76981,43661,98858,31480,10417,19299,68210,32027,63780,35128,42753,50306,70632,74013,70747,39313,49924,67362,79099,41199,9073,48884,25029,63825,5247,49295,32000,63434,19834,54216,46267,35776,747,61866,89651,46507,29714,4666,83996,43003,42916,294,16156,7728,7846,63277,91102,2323,35733,35847,81149,85523,82685,1341,31998,34416,60492,39295,3899,80834,49827,73831,69761,25489,21730,31137,82529,48156,46900,85983,86506,46968,37659,78548,52693,25930,21575,72384,34321,38342,88207,39684,49283,79319,37200,49429,87951,42071,47392,67399,50214,29383,19214,88464,17348,49817,46087,97577,22845,40621,3973,60147,88685,50105,50110,98072,59635,98945,44988,59416,25155,39376,50972,13326,50318,79837,93402,58674,74511,17297,90447,87078,34437,19321,18140,82075,56554,14411,42027,66298,43179,12675,23564,10671,95066,43151,89717,28913,74648,23384,71481,2450,44950,72707,82154,72672,92492,72027,92554,94207,16327,26279,93645,15006,46470,9943,71386,80321,53608,41220,50538,48103,26920,94995,18601,30983,2542,34761,69477,77412,67972,69746,11084,37626,6682,90663,28469,17973,17055,8123,89247,94678,98416,97631,67951,66051,90850,58501,83760,39918,4670,73676,52475,71628,20855,11406,47503,80886,45891,52442,48809,44793,4561,45980,86931,18859,72401,96472,84544,30946,91604,71419,94146,38261,88343,19913,30874,138,31272,19827,21388,50920,38488,33533,93047,86140,53348,86337,23426,58489,55021,12711,85045,88515,85605,69870,22757,99336,30024,2339,56517,81599,97504,4290,52625,42185,71935,64818,63426,69391,46740,25446,40498,77949,14110,54094,8385,91783,79023,92280,90485,50622,12150,18058,46998,78754,60598,82585,31975,56160,62725,6010,35780,31591,17740,1006,83993,7923,91613,41100,33595,86691,38674,16842,90227,96098,82554,47920,56946,40916,79298,20150,27954,1838,31538,81240,82566,7050,31992,28178,77574,20730,61589,40909,6541,29002,42537,56177,58469,68311,11107,58091,36468,27505,2451,52604,91759,37676,85474,21562,84493,1415,93396,27029,64782,79598,83259,80235,42941,12052,82436,33993,97865,76987,90033,32352,82397,92783,59811,1541,25972,11874,18825,14560,11395,50905,28821,24346,44241,60752,15615,67689,36300,11471,36851,20305,4214,374,60149,76349,36080,56532,48345,27013,44537,13066,49915,5983,47296,78758,30866,27526,70130,41832,48037,7398,69631,16833,96199,58563,12998,95267,34905,39713,92478,49035,79387,98164,84340,58865,6817,87825,27046,12672,40519,78191,3019,35509,89955,68248,67630,47077,91980,96838,82597,86732,52882,27157,12394,81965,80875,4808,51271,51103,5572,31577,35084,98418,88596,80748,28151,77429,40074,87643,79768,3468,11345,51600,61334,22275,7889,26468,91578,77606,29860,12831,35727,96697,83009,45104,22914,41967,72902,50493,91185,81998,23811,50721,36734,14831,60266,17798,96139,45177,32053,93909,69455,9404,76518,88631,52139,96788,34120,6266,74315,53169,28292,10718,89324,68191,21372,98092,45490,80436,95374,511,89470,54151,10329,41865,73214,35126,40159,46033,23847,97078,50258,42256,14504,90286,12190,13045,45819,12793,75620,1941,83773,20787,94436,9370,98439,55955,21125,37169,9410,70776,69260,21910,21153,10210,14729,8558,40163,88088,66235,32140,11018,80320,33580,90112,64799,84781,18736,21001,26436,23661,23328,54758,56346,67287,9994,93100,71300,40569,58592,94988,21751,27353,7597,34398,6330,85234,81027,90146,46190,62278,18318,1651,60117,3747,6798,40523,96213,23982,89223,64947,35942,74868,64066,87842,67653,7456,3803,8250,40989,55592,86713,89235,55290,85053,54053,63665,82129,64883,26065,26475,81405,67866,48691,24666,85949,54554,18378,52676,6781,78632,39638,77370,60656,73309,63511,57411,4474,79840,18144,24413,37175,95947,76975,75654,87467,29688,90841,64350,95766,20773,22168,55582,4027,4119,69272,3854,13983,34507,47450,20670,60534,52726,338,64506,79924,65669,3711,32392,2092,27178,45420,62232,4363,57675,28899,16510,81546,42306,3491,62861,22216,6159,95253,55139,51176,2027,47951,70163,16296,95657,30224,13641,10957,23585,71032,18309,52214,52585,83827,26207,46779,5146,40381,68361,45372,42553,44543,91157,2518,74813,81285,75376,76692,36059,55305,69788,30594,64398,29779,98269,87178,44152,37766,95110,34749,48728,44457,71857,77461,36478,88163,20791,52833,77137,75131,11708,8024,36104,19245,54956,3639,68486,48170,84889,42196,88412,52514,44759,94747,44883,6233,17050,46254,89144,70105,14896,39477,10375,79191,50031,60984,45856,48101,1254,91614,56957,24152,48036,30318,28975,57609,86450,18602,65252,48494,61055,5219,87464,87824,10298,2956,3364,64298,39882,95828,57136,46874,85355,18869,81539,13395,35535,91050,91877,93262,95676,16141,29654,30190,35851,41178,60921,27489,23132,45994,9125,34075,20854,3538,79109,75484,52983,2824,84019,30743,96463,60682,9596,66386,1531,34759,18671,19162,82824,92316,83057,37154,83696,30405,75005,26425,27203,71452,26761,79017,82366,43272,99754,74590,56141,83188,66821,96398,82365,43239,73016,30019,2799,20485,7431,78573,58270,16501,23496,62482,74657,78812,4204,24911,67147,96997,92718,48136,5766,23146,45150,87775,96335,64159,27637,30526,64186,43902,74742,65661,75495,89679,92420,40005,28060,5060,19089,50510,36067,36119,78354,39025,79492,73057,45158,87066,35039,65827,4017,29050,91999,43231,59390,25284,21067,57936,75969,84566,43483,4002,81368,10160,72881,54201,79708,32432,30322,70362,88637,44391,1464,80445,39541,95269,38092,78470,81015,51868,17142,9593,73827,98466,9719,1054,31865,29208,71826,84882,81645,2325,83071,16981,57186,38005,45011,23686,72974,40020,81440,7056,42622,51900,67375,30451,10096,62262,62406,15172,72967,98405,45774,39186,13791,36511,34903,57240,43055,9458,18322,29387,27824,1732,44003,43146,90927,12644,14311,6391,97551,89471,50524,57241,83685,19638,17216,7795,10658,78973,22333,49951,86060,2997,92724,28429,44646,63734,165,89016,13015,72503,32674,97071,2574,82878,21812,62137,86092,55583,44863,38165,59583,55445,83816,67209,81516,32800,43232,30508,19711,43494,17360,79471,47324,19459,84112,38011,44439,63229,67190,28791,85266,47924,75105,18908,78221,70246,5488,49414,39115,35712,11382,37212,61941,75362,17877,26458,94013,42846,77797,93270,53146,22260,68932,71895,87913,5879,26483,80089,7006,96845,70524,24807,41872,31070,39049,68926,32049,72179,31769,77579,69958,6449,82484,26890,48574,65040,65123,23469,92177,19088,69238,45414,10846,13662,8506,55707,26224,13328,92231,18134,85091,44354,98869,97618,72483,89474,89357,39449,66831,7358,42267,19297,23400,89130,76832,98690,4928,83477,30817,38111,21195,65894,91973,5922,5541,6468,73366,68229,89088,77166,11649,16478,73992,56874,20491,98674,2398,83952,93055,81103,74849,30133,38785,90732,52493,99752,89601,46178,56981,66336,46000,63388,37679,15774,10786,90123,15325,69725,66703,46248,39539,93902,33522,36126,81581,38916,51526,3330,67861,80930,56663,61686,97637,5375,28852,3178,99760,59773,3618,47370,37918,51860,2547,2351,23004,71564,9631,60860,75462,66259,39486,29377,35326,50254,44658,9895,46695,49076,28152,96024,95645,54579,71162,17319,25488,87838,14696,25086,94772,71870,52164,76030,61787,23654,28710,22599,64903,36555,51080,41571,39833,42775,51416,62121,49183,93967,32139,43252,66915,18804,57319,6531,20506,9326,72406,72453,46956,52944,69816,20952,49354,56650,56056,70857,40457,45577,70333,33333,33669,66469,73399,78833,57022,73257,612,15693,16011,48307,61102,26240,19260,74386,81750,18237,55162,35551,67836,70008,31927,134,3168,93293,16657,68775,73528,19752,48147,48929,92469,78423,62759,88920,39505,2472,38533,97883,85534,57616,15541,58773,69940,80388,90942,85483,38496,17135,9559,82806,58096,86742,69461,55222,35157,59035,77908,24810,80152,2695,86070,32518,76147,37484,48270,76579,80822,37211,45627,93805,89437,71703,37353,26148,70512,9871,31726,91158,10947,891,19748,18484,24179,52221,95003,1848,23673,21303,45165,15386,45141,33414,78645,19941,93087,76044,38592,38634,69936,49092,68423,50179,65217,32334,31213,79481,4974,55412,18800,4335,11684,16189,25095,40205,61883,8391,73417,55193,26508,86705,46543,36349,65844,99714,88805,93986,75633,57702,14511,74199,70493,93667,36441,5954,31355,1090,92683,66430,97860,25740,47341,68075,87815,50083,75443,24024,90976,3047,2163,16073,35482,90212,2791,75918,27768,5895,68619,83584,97956,22240,92307,66810,41750,63312,26482,4659,35972,33659,96456,29199,29229,50653,34141,65203,49594,18024,37733,30268,28309,65470,34858,31899,23726,76081,98053,6553,95624,48216,60529,12721,18034,88037,70425,60347,8604,90956,54769,24468,1927,29820,17516,91112,96536,13228,1681,76612,2832,64412,53401,62737,36110,45299,10187,69847,48272,94639,21339,11238,48890,53178,81535,94992,51953,86141,23187,36850,73218,54718,97996,24880,77985,89970,82032,69931,93005,23829,55410,96058,52837,92023,68228,79734,27084,5288,36077,42643,40153,21740,8044,59303,83724,70313,21962,59430,96250,48188,24783,14709,2301,25592,58872,48299,78276,91868,69224,46971,73517,2626,96512,59762,1694,56848,23828,82562,66902,71747,10915,55856,26197,54782,3118,30264,64474,3324,15261,50308,13771,87624,89607,91593,50682,76920,61520,35434,16571,98477,96830,961,43703,2714,36383,18464,28324,22014,18919,71480,85251,38653,57872,47863,21479,34221,17183,42191,6322,24338,6495,29429,93157,84171,39787,7864,55893,14112,26517,80986,2776,64557,13675,80616,99575,98942,23189,70909,80761,80023,62593,19925,4610,65768,8729,33302,93571,20580,87357,87925,82371,64125,67356,95517,65955,31909,54935,38307,76902,5126,97884,85548,96407,21758,91351,35645,80251,48249,64500,94876,27548,13621,25342,71675,90487,20794,18599,90692,68998,85690,92266,94016,58704,20148,16003,73940,90646,12995,33895,77405,87591,18513,2969,57271,8932,21323,17166,62777,86655,93482,21967,16670,8871,22195,68640,26451,75388,48281,95191,75436,57705,18494,63459,23767,84825,51341,82613,88716,83317,37952,85824,10038,62604,74925,7352,836,53336,46153,68752,34184,16779,26393,13696,6055,95031,89774,82386,40580,26415,21870,29094,81651,49746,61958,50943,35029,13561,85050,65468,94577,74020,53113,88872,17506,63529,10508,89897,68776,70767,67318,88183,88504,19909,78892,15644,84826,14240,78606,67715,82056,21719,69155,2549,46975,95578,86554,85733,32384,43184,33835,25983,57223,33492,44426,55296,31329,48968,51503,35186,59988,55333,65772,78814,74646,67449,86025,98192,48557,78624,10992,45196,98008,40099,66911,92829,93701,42155,12078,97868,86053,243,91903,19038,96338,55952,22354,11756,18860,61503,51057,40593,79123,78294,75510,79948,24837,12302,22795,89786,79283,40603,27892,32506,46901,4929,89381,81033,80332,57792,64219,66291,71188,68205,77478,30999,15602,58614,12935,83102,9225,39285,56246,40924,61067,81618,18100,56932,24434,29679,74340,85845,77737,7270,78615,71264,94573,84018,15216,69717,70217,37162,89234,94232,74932,85574,89017,31762,4005,95678,6141,77057,99238,27603,1393,52101,34936,27873,72805,61920,89785,3311,42253,96630,47655,41877,18701,48085,72469,40481,53326,794,316,36869,96744,37233,81349,78146,21593,78899,87926,21027,22471,99891,4114,38110,76219,77615,26973,49165,83513,90900,38476,51859,70044,56406,97092,62962,94819,51990,77327,81063,11935,7936,70979,20472,53117,5008,31205,56555,87415,76026,92850,97154,71596,34453,99697,79790,17463,12738,84591,39372,59001,85680,70513,70038,49889,58243,59642,89345,38740,61736,34315,17491,56637,49919,14317,23523,44558,26972,61307,62280,4553,46547,36687,73679,34257,73165,593,28966,45286,86951,38579,96281,33922,34176,69288,94376,97500,18256,61247,38490,59845,78160,63213,6704,19861,85072,56325,59833,44004,44248,94727,46943,42085,92579,8234,17758,99828,14215,46210,84476,94847,18873,65442,51477,3885,2746,42404,96860,20137,31885,75658,8135,50052,2654,93302,43435,27200,92833,98398,41338,9153,92753,45495,99029,22192,94190,34768,70279,73620,88940,56026,77674,56872,82070,55323,79338,6637,16286,79001,31108,99009,78045,73836,78551,47674,47361,94782,80234,39487,32082,67041,95557,1130,79037,80481,74525,58694,44922,62008,37429,11892,8445,10851,39273,15013,29839,36159,6213,27786,57697,13440,61455,70544,91685,80993,89839,33308,22790,46862,53225,57154,50200,27687,67026,45666,47875,71474,27316,41514,46656,32425,99019,65058,35919,41164,75676,91338,21212,61319,33674,27964,92977,22295,35446,49640,97530,82182,53959,38284,87646,40132,82313,37895,30965,55847,9681,84894,2636,1211,77167,24031,92856,16313,46155,16903,12892,9826,50531,51478,81333,29117,83004,7272,73625,96404,28720,52504,36114,90181,40732,44220,89980,43374,3990,38629,84386,70311,45473,93464,31711,92037,93742,11705,5217,9487,47187,29323,63352,52673,58959,25314,98117,95538,13429,69565,34973,35158,33458,29274,47267,85062,40581,18037,28102,678,46840,90239,7303,98891,80499,38531,21951,24877,26160,75185,33795,51617,88288,37024,49557,71880,59730,8089,75237,18814,10369,7003,30370,29574,7007,68067,33388,76341,92049,44703,34976,46421,14446,67569,70784,1815,62647,42879,68237,81900,79546,51154,74373,6269,18676,73286,5107,95558,74243,54382,62425,93238,2902,52895,85196,99550,35678,88033,32772,30254,42360,13600,88579,72206,40347,90930,7079,15405,38977,10989,81754,17777,59469,8920,67410,88467,61733,84588,74485,97723,94108,86539,70170,75308,59481,60533,25079,31443,1326,65913,89987,1004,71255,42251,84000,97469,21585,87118,35767,70981,4166,38694,35248,59711,39280,85206,27615,69059,50438,51552,24878,93706,69126,47657,96884,72959,3855,21706,56010,26493,73198,20448,93951,28928,74928,37972,81111,8121,79879,45757,99604,21050,10056,51895,41480,30990,12211,46988,97632,8782,82703,92448,54939,81801,14377,57597,97131,27244,63681,77023,17902,40545,47918,91586,9869,87469,37769,48306,38696,45096,50238,28181,50490,26519,31259,5928,14305,56734,66458,80796,329,21697,59374,59054,12022,34007,8662,13057,93122,16835,51079,58053,55729,95653,35017,73193,26568,8170,93435,55038,2200,68634,9835,10983,75213,82604,66094,74923,66946,83649,57591,95371,55513,2350,20384,34084,54135,42938,72584,11295,39618,25958,78084,88619,63371,77597,32947,86434,5616,47134,34650,91742,90397,39728,83216,41955,82768,90324,16978,26384,97407,42242,14875,98110,44725,24816,23044,12506,96396,41196,68235,82315,80998,90183,10027,92489,13002,38641,46735,37126,45329,11447,7759,12673,15553,10358,65186,17217,14646,20807,73306,60306,67592,30290,21545,8669,76767,62971,74988,36369,82276,79612,5265,24534,54652,43818,9894,41775,81022,76929,86041,35801,53803,50228,87330,58650,75573,13953,43992,47836,29782,56557,24614,35842,44849,66776,4250,94022,12281,57564,93211,84207,96556,86406,19977,57199,31553,22747,83,24108,23588,52929,97049,60983,80828,47504,25848,7042,93948,7332,61097,3477,58181,9544,90421,88073,85803,7576,93023,66992,7793,47426,25794,57743,22180,31346,13974,6426,61980,8637,41844,93503,38252,51635,35820,69506,16344,16387,47318,20095,74376,89482,78467,83092,90161,40395,8465,61056,88270,12295,37451,23251,77656,23552,68201,38593,70595,59844,98910,41905,79113,14277,92457,97350,90813,16632,91008,89827,28995,5818,17975,30635,90937,62787,44656,14638,25764,17391,42017,61869,38898,97207,2474,98794,92773,718,48794,50005,88411,51760,65143,98076,76531,31478,44120,6995,95229,71899,15351,21882,89595,37492,9856,36647,94135,25986,13439,57508,86497,93908,53592,51547,76864,14996,86988,94321,27357,7494,42490,25975,55245,21025,75624,23854,38914,55546,4336,94651,46575,87150,17894,77183,99460,36050,53161,25832,12213,71978,578,7632,75242,63023,89492,25606,6766,63044,78778,25196,45223,52306,32630,14099,80372,6207,61667,88039,13301,42383,79683,92302,50923,80143,6721,42379,29703,7236,77052,18761,2638,33163,7739,55146,32967,9180,67986,45417,20363,79950,84071,80449,65321,22038,52668,21579,34104,69955,15340,78792,5042,82339,55599,72113,77180,43970,18026,97283,47415,7817,50211,81818,13944,70874,32510,61649,13400,84495,71141,88728,19058,24857,11331,6187,92088,33680,15470,42891,49837,20002,5144,33359,56203,46599,63989,53641,88842,86181,31325,71163,85079,66865,22220,27094,19595,28447,38639,90012,88689,96785,55917,92551,51567,28946,82476,54937,9371,53330,10254,61578,34702,8879,33581,2724,33804,67938,15910,37405,32377,49710,20512,63018,43137,19533,52774,83820,84925,96874,76109,16530,48835,68591,7119,5200,94760,65317,74015,686,42911,92062,64859,5417,34634,20801,85158,41892,45965,71796,4665,93941,16624,19991,78210,31681,9030,66306,27559,77535,76552,20488,36303,3378,43461,21801,56434,37795,46452,25617,56842,41815,48531,67121,64475,7887,85714,38681,1750,22007,97719,75714,91058,25807,83447,66263,18857,48027,61172,72573,65003,42344,67577,98700,27927,50001,76143,75431,84645,52516,91652,96665,71456,58536,61983,51220,74663,54141,72331,97669,60212,10816,10795,27592,6985,71411,21288,94405,17015,89377,51882,61896,51621,19932,50453,15921,23505,62138,66508,7853,88552,38605,54514,61284,4599,52695,53907,64252,14397,90341,84506,3916,51196,87436,12273,9449,50593,88174,65912,93473,59916,57879,91217,75463,36955,90192,12469,44876,93766,50675,95432,59606,90724,79623,78717,49075,1289,75772,57769,40053,98548,54040,26569,20398,85528,5777,61846,95344,40019,41697,65747,9478,86576,48400,47873,95352,50044,88928,9783,73680,36984,93252,83228,34583,82607,41243,16852,493,14974,2133,62979,67668,63572,75195,7548,66719,22519,88014,49274,31439,39807,90938,79081,92224,7490,53746,48449,60977,37758,55209,90544,23929,80880,3834,57851,42946,29510,91476,585,91583,65456,3979,86122,95949,61332,4219,57208,1762,44845,99099,90531,67054,47256,44431,46488,73059,44486,68092,73903,60809,29460,58364,9525,85900,95307,42076,92182,39777,89458,39888,1586,39911,60121,96826,95480,53070,95466,85211,22353,38953,48461,94365,15397,27921,63095,70074,30452,94769,89140,96209,41996,98886,51267,39256,4340,60958,50551,62851,40362,2630,6259,77401,63173,33889,24827,28896,49742,63532,43542,94051,59235,22,83735,97552,47538,31450,33757,93092,13644,46419,95058,11323,33843,37265,65834,95235,40427,38152,28878,48799,49064,65446,78560,42701,32623,69418,94053,76035,66222,83956,32467,65153,47728,94624,56760,36202,93028,82438,68512,26876,69480,24043,3077,76881,53683,75548,45294,40138,80067,13680,74873,69122,6595,67055,7578,92525,34815,99383,65117,29108,42905,9048,71398,15940,37501,5095,13592,28697,86026,4999,19174,28609,95889,33351,46826,42930,7732,1990,51357,59385,92887,43439,5472,3192,38382,91306,77717,30284,72913,1267,23803,61605,91198,19271,92757,3176,79738,32038,19936,19197,89114,20004,16012,32983,39328,99422,51130,64012,20995,29001,65476,53600,31077,81047,22408,15231,39516,14989,72236,25060,27375,543,93556,3693,2754,66656,64272,93107,69814,53218,60685,36636,45356,91995,80013,49149,60883,26448,87131,7348,70647,8747,69277,6250,53313,3971,16274,90679,42596,91085,31749,27376,54615,68979,76310,7620,53965,77663,88060,84364,30136,3558,5087,62582,81896,59093,34955,39934,63954,75432,57560,62270,65051,15896,43998,28011,23085,10634,81939,58756,97196,67066,46195,36410,48002,64955,37562,32342,76250,48079,37720,68778,94173,52128,5033,73942,16135,52918,34360,6609,92595,7492,3677,89459,70211,89292,9045,50521,4526,15492,21653,89765,5549,41599,9295,21696,98589,50138,8305,32666,24307,69164,77667,39755,91367,92347,34938,11112,62248,57820,5118,17474,69170,83472,60709,72493,45449,27668,81140,12815,56211,23723,99244,14660,13263,14282,95500,82863,85444,29135,48055,22907,53120,66899,14605,65991,56568,53441,34408,68958,51903,34937,83031,21068,80908,69472,14730,2716,1186,66635,65519,88302,26752,46558,20875,70943,93809,68302,61275,29633,73411,16504,72235,18643,66184,79148,84344,82229,57961,92392,22097,84182,38468,99120,58337,81058,32512,17254,73842,62476,88782,54487,16893,93344,57391,31040,45631,99795,54843,5173,54950,6934,73954,70927,12079,92657,83168,63258,82984,68373,3157,83217,46605,74257,19287,86681,77298,13585,10406,42230,28860,81580,45000,54467,88754,13241,85829,84884,39829,75606,24886,43897,24381,6186,51248,13405,14268,56236,37044,29226,72435,68853,77657,11780,19077,36431,38616,73337,19323,23517,10810,44150,82867,54938,49407,76251,93022,53954,75124,90571,34157,44436,81059,53906,67327,75931,58355,21695,56679,36599,46583,4848,87763,98762,79876,91047,22080,7022,56796,54617,97814,80566,53700,38051,97272,19577,3692,74558,47413,78238,52161,36331,28058,35232,53928,42786,38255,68910,90015,7568,11878,29677,16844,97789,98931,29866,44270,11376,71193,33938,46742,57882,20872,20298,67919,80630,13110,48845,23424,26437,87071,8900,48538,36057,69325,55180,77783,85524,58625,57380,17674,73,83073,67244,74878,41378,53575,26449,14712,56873,52171,66404,72809,76402,15384,84045,3478,49099,98326,50974,29812,21549,90801,60962,62360,67506,65951,95043,64381,25892,47548,249,88124,80482,10946,83310,57477,29355,66860,65841,12286,88653,13734,42322,56861,21860,96328,82750,64299,21825,87263,43383,26978,941,71263,92468,21363,80878,71664,86862,66817,89092,35496,38646,47982,84230,85243,45695,91920,702,78687,19273,73501,7376,77553,69653,13901,8718,94393,33442,93721,33299,65335,75028,69719,79365,33102,65771,44956,8213,70134,38608,94609,28779,73606,31842,68572,23653,32426,45135,76884,99006,65862,91443,47019,24443,35806,20432,4839,12549,52183,86548,85580,31079,1633,58608,54889,35247,45078,77554,38495,40696,94536,29234,81483,16398,50213,36177,45250,52022,90698,69103,47876,41837,61929,18515,92699,96969,35998,90924,65923,13578,51385,2464,4858,60989,25207,20111,81272,94411,8053,3482,53055,32665,23779,25479,59598,46102,39898,89773,98851,66223,13133,58297,99307,61340,20710,85174,52520,10503,62710,23417,28370,20684,61414,9269,77123,89207,71755,27231,65469,86302,20862,23885,98240,70116,78430,16686,42728,43971,59240,66962,44384,31616,34529,6539,2081,5940,74897,82201,61969,82729,87616,68877,87864,75219,45034,93771,48194,40660,63554,99045,24418,6635,16448,63997,37487,71784,38141,67837,89089,96128,29539,64729,58140,95137,8048,93530,48451,87182,58498,49829,61916,64804,45228,95823,48032,53141,5205,22251,46052,19914,62172,42032,69060,75616,87437,30961,60995,45185,78773,8255,75572,99870,65857,84541,54240,94672,46839,49751,16045,77372,46736,12685,49518,1828,6849,99293,67452,23728,4307,42828,82294,98361,96572,13025,17487,44434,48990,91179,60070,76658,92789,37017,55331,63798,15508,97159,55961,55365,45665,42914,20745,45733,66025,87924,95728,64318,80599,78853,37106,96864,89335,89780,23620,22145,32423,34912,51272,81402,70129,6589,99875,54290,81839,46629,74775,60041,2941,64055,59318,54253,35674,35481,96374,44694,95089,82200,53234,31644,98750,86267,24318,34868,31072,66914,67335,50626,28661,61858,26623,56125,25987,27516,5712,15953,81847,95393,2360,75209,43592,5105,45541,42585,90060,75194,54102,12534,79894,5672,70198,60461,48674,86799,43321,43128,27635,8711,10905,12574,76210,41819,43631,62437,12787,69439,10310,57479,36867,69051,17816,97754,14301,63221,93848,77067,14022,76106,31939,26523,94120,84274,67602,88237,28641,58199,21603,97525,89396,52513,32387,30786,98149,48432,90391,21550,52051,27925,36437,95722,19153,22286,25133,57533,64445,85261,32437,3201,6183,56587,78625,23894,79419,55268,10390,62113,94284,48212,70893,8075,72314,65756,74984,65799,7403,29107,932,61253,35249,50007,67437,31486,73158,24685,97345,61235,65068,70141,49071,92351,22582,69891,27294,24799,37291,7381,71681,19183,7964,90149,85405,34074,40587,63588,68304,56319,90013,9911,62595,33805,42119,67247,84513,18644,60528,47535,95214,32545,63136,98613,32641,498,49394,31981,65665,12112,30000,54407,7268,14493,71204,1995,49758,59491,50361,39160,21327,83716,19155,67927,1699,83268,64228,26850,3986,1493,28016,85767,89464,61317,65979,33682,53900,70796,47509,64373,71459,37544,58524,67949,14364,38343,22611,64530,90073,19371,34964,21070,50233,6841,77819,67113,18404,53303,97573,47976,6154,22369,6980,55059,1582,35642,62419,60179,36279,9902,20908,85740,65221,67597,23765,69721,52967,77474,92521,55349,74768,47737,78461,16872,50823,40991,42512,86627,68440,85262,59476,55271,55578,28289,19584,97850,128,33561,76253,14600,96008,73127,45744,90906,66135,45145,96933,73416,55362,76127,27866,52609,31373,40266,39202,64865,8777,33870,81094,50383,2622,6084,20042,63884,13288,68086,14964,35701,19111,87656,34676,46566,12380,92510,33091,20126,469,58966,96066,600,63227,15616,99899,61354,16145,8978,94471,61082,84725,11439,76422,23900,45571,46843,17247,26606,56894,10516,82654,48559,69323,53304,20521,15680,81574,43189,32547,90104,1951,88347,93783,12233,15499,3083,63076,7606,88182,44531,98312,59459,41601,17712,40969,28363,24139,57647,36953,29603,11359,37461,14889,8208,88452,52346,54128,68232,84770,58861,76005,12553,7442,22154,77861,44745,74972,84698,60381,33987,42853,62064,97393,78456,84642,18485,15647,37051,66793,59333,21749,41503,80103,27554,67431,56563,87480,57496,87314,97339,45758,41954,63972,9684,14126,66369,68384,46333,79410,96783,25530,12851,16962,45020,97713,62140,67116,41752,22884,20751,8492,20304,4731,77224,26648,19255,21429,57032,45716,62898,14579,59985,59361,60566,15569,89243,99492,3541,15236,51681,12438,93222,97162,87397,60014,1338,66032,22167,36716,59182,7237,80323,32254,7088,27643,65331,19141,41385,5395,26894,64164,71341,34092,56908,71521,59617,57572,5576,77532,82719,88933,46885,82549,2227,80944,60373,44343,71544,90491,70764,24564,24902,45027,63416,19983,22933,4400,12388,84388,74783,241,73377,6134,99321,30365,49392,52027,44701,94866,35903,89668,6543,35266,19614,72265,19099,43196,20284,25454,17296,73378,95665,79761,36505,68786,57085,77892,80508,29424,15062,53601,76820,80203,12822,51774,51469,14993,76429,28906,85556,54780,25173,94906,97391,89792,40296,48300,51152,45768,71947,24452,77631,74512,18329,32028,77413,90442,8919,49585,8997,77920,9860,51955,79735,52956,64526,41431,18668,95023,47942,83958,45748,31617,24371,66665,63199,43599,25461,14867,711,18054,46630,87529,61318,7412,24262,51803,10663,69417,94758,88649,50719,83582,58521,85128,76046,71392,98823,19466,21565,75804,27016,87843,19216,23214,19207,63822,48876,11009,6126,6242,83027,9959,18923,71905,93284,58741,18183,66304,50714,12878,63263,59541,24335,28824,42315,318,47351,85040,41190,47645,83922,41103,61577,73259,65136,87249,3045,37290,26608,26980,26234,99930,82064,28739,21981,34853,8639,36171,38714,29871,98039,95965,20851,58060,52739,2801,58265,86768,92186,80111,67089,64677,6782,84543,32209,80951,72971,13967,77021,28578,55948,27319,97537,67851,69028,76655,51317,68795,270,28501,47174,62463,11519,6591,75015,31560,298,34719,52477,84372,57337,15872,78069,32637,43794,35262,2,71335,64958,46438,80536,44601,77285,21770,55739,27919,11183,72373,9508,3426,52743,55597,7299,16914,87949,27175,18,55255,882,47126,29592,13977,16328,83969,33998,98971,35766,58348,26101,58931,69825,75679,28082,61597,76362,10711,12383,29453,51607,36504,65610,77821,41181,55049,85203,87122,25768,87762,90675,65444,47164,8999,82789,27580,39752,1369,39051,52899,16052,51225,52471,74118,7313,82527,46863,52794,71215,73809,52173,43756,58487,57185,58229,63726,93048,95564,69596,23139,70849,27088,81312,54629,93425,82777,55941,58011,86676,25396,2263,90272,10275,35092,22344,4517,93981,30709,97743,15088,55740,70201,37401,71125,4590,93895,56289,33550,80422,65659,10609,6692,98228,92831,54325,42443,19785,16282,61600,58427,55348,44292,45986,17054,54416,28055,95693,23548,79260,33915,79516,85567,33179,69748,57729,2444,86067,48903,90322,14227,85679,76411,70374,3411,19201,48325,98145,64587,28987,51683,68396,2685,19997,45689,99838,45322,54388,80819,2336,68837,91697,76870,44268,21374,97048,33313,40082,51642,78928,84649,48698,6894,20204,80947,50050,40370,40946,58638,90556,26125,12761,4717,83779,89545,55125,75214,26792,16018,59739,36060,89018,79228,79098,18259,83821,62491,68896,54656,24662,22339,6311,55029,62913,76629,53583,81279,65404,89076,80373,57148,60491,46426,84637,86678,23012,83295,72545,6129,65778,19743,66451,34986,49857,28235,13091,44739,60281,4678,93119,6923,92460,71292,30010,12633,19414,42831,11179,67271,47228,53022,41145,15627,214,73088,60243,37168,24227,44568,22451,95719,60719,47810,86330,72774,95553,2715,67956,40333,15388,33063,37874,89308,46832,29152,14904,48807,67069,50917,13197,56140,97751,93778,45780,3568,26700,32008,48344,47959,7114,51151,89954,76221,47255,49046,78817,30005,25438,29000,27870,10048,1738,51951,74494,17013,93364,40335,73083,97639,4191,40236,15819,74688,81827,22739,7701,17579,32321,22760,67440,21590,46986,78355,33642,3215,20072,87969,56218,59947,41217,56753,49290,44638,32589,15099,33178,23347,18735,35297,40694,92252,76372,2992,10565,95759,10785,99208,57326,5214,44787,22660,54344,43854,6663,61507,86846,33937,41400,91936,24489,1812,78602,79392,11269,24948,76793,17327,54140,4040,83763,6642,76608,3354,93641,95664,57690,21790,51631,91369,6252,37991,98205,92846,5487,77008,88345,33425,17774,31958,75374,77701,24692,19486,47056,24732,88362,57406,37134,28228,28089,53817,50194,38834,229,73917,24085,17728,1087,20469,4849,98754,17196,45140,42530,22335,57210,96747,3363,40383,59543,75518,66655,52830,94177,91194,59133,56797,85917,97933,53756,34897,54490,91778,60316,64508,37070,7223,26609,97802,72589,9977,50328,82550,47367,59971,70509,52920,70840,79567,28133,81309,86760,15072,55061,90291,48278,70828,16925,5175,5491,53845,97589,76953,83495,730,50218,55808,58094,66548,39395,81735,97799,77159,92523,52854,57297,19253,86575,1928,63014,93309,42619,76745,33897,79804,54341,34454,10067,35208,8806,15528,21972,70460,31830,80642,87776,29283,4358,83343,48554,38151,33537,43900,39167,9978,24755,21945,8501,75556,95635,47411,51485,97470,57234,88843,71383,18477,11315,19003,68771,5988,71443,35872,67547,99602,75233,233,39884,86872,15744,66968,89986,35422,59742,10695,49584,70268,63445,76794,31679,41377,37982,10142,53107,65795,91663,68867,96372,16639,54710,78607,66981,10981,79997,58051,44749,52423,49743,15258,67849,31620,24113,91307,975,41686,99128,89507,62668,28382,80981,20336,66526,57168,59984,76358,463,5721,77124,12120,60346,31036,35197,87474,91415,44008,76399,50750,35975,52577,57863,62897,63482,80722,1297,1982,4649,23147,22778,6212,39914,32646,92729,69081,34462,91303,26984,95389,59471,89501,76779,4685,44323,74801,56774,43259,9452,22944,41454,58744,34108,59198,94856,53074,30632,12969,71042,25809,49826,84713,71644,51068,44341,5083,92285,33057,69640,31982,84313,60558,2583,61526,90949,75957,66671,24728,69960,84785,79736,18826,83531,43281,33365,59944,93455,19229,94341,74632,13157,56142,86137,65280,60773,53996,59040,20375,3279,35366,26946,8345,25238,86978,54009,37380,35239,15836,50475,28170,37065,25077,25254,3319,82228,25221,63400,84572,67394,51581,34721,14458,16973,92862,7161,77796,83756,12354,69300,59702,72028,76090,90003,96809,12603,91856,18996,10509,24471,56005,65100,47643,48853,81427,93467,72333,53115,74005,78222,61110,42721,33959,83590,94115,40425,97720,71049,90229,82306,90258,56546,8152,5528,88304,56194,27241,4266,18864,89823,30733,84057,10525,71672,74996,71148,72595,37645,45815,8247,94653,13889,38584,73015,25036,11003,76521,77155,92404,68214,97400,45338,99129,67323,67543,30850,72800,60855,7457,6089,24703,44420,60650,59609,41367,30097,85237,6560,11958,14136,35756,54927,1391,91413,29021,9501,27624,67801,6165,49728,28502,73454,45636,52529,16110,66348,93512,97700,48334,15829,1038,83173,33968,76259,40387,5564,20621,78567,72927,63300,42628,4550,65412,75193,7085,78652,12431,97226,36826,12891,86018,20835,20496,88571,95441,92787,34063,97963,10985,18176,5633,2963,40703,9512,35976,21998,86063,69562,93403,36537,37675,30262,9497,49865,36056,84927,87246,8276,69306,1412,48750,75387,23390,65901,23891,2462,21722,10760,991,9543,52946,93030,80198,95197,14621,60761,55142,84578,48181,45932,37772,5307,6848,75313,7916,91504,20340,10248,89415,55544,86034,21583,25719,86363,60772,50924,42293,88570,50704,49311,9066,16384,20640,12163,13880,78542,10046,46167,52488,12430,49218,15101,74346,45522,45179,54958,44245,68709,25178,52102,66384,7338,64494,78985,57999,78941,71471,1581,81082,185,75091,52675,90854,88574,12592,99190,59358,19043,50423,42342,28981,34052,62481,3315,36738,74305,4054,4626,30906,70055,83481,39803,6287,63064,94520,10911,44510,65845,51119,24649,96087,61959,52076,86777,45212,77233,81001,89224,55421,40511,63422,94558,57836,9679,66919,32058,88501,63887,57429,76492,77329,59603,60367,33808,46669,36433,10013,41573,22961,77325,37936,87827,44882,82260,89225,32923,20803,46417,94294,99603,20969,65718,69817,98912,14704,59660,80404,36490,46164,59066,601,35289,10558,85065,57067,57538,41747,29936,29558,55726,41169,22654,2643,26298,70288,42101,48650,15849,44719,51752,32406,9461,20476,23413,20541,81014,21949,30336,7904,12225,31702,35887,33013,38552,45486,92563,19866,82474,68787,97847,86585,9574,65754,92268,15037,20212,82347,13701,78305,65147,62019,14953,38237,56487,70615,72506,78420,54763,36901,94625,63746,95595,97035,37693,79167,32705,19634,94165,48920,28389,53971,16280,46456,66739,5885,5043,96618,80690,95765,78023,51098,58046,94627,159,17591,96300,79203,98734,33811,24561,32897,53885,32312,11116,30237,50167,73682,89837,93980,54469,30971,3257,69181,92138,90555,23076,62537,70996,28631,36798,14682,18957,52810,39620,66360,81269,84012,33420,57894,44770,9437,16484,33752,80091,48348,48137,34071,87107,88276,59311,46171,93239,8807,69793,39433,13816,63731,81946,31673,3289,73070,18046,36429,92561,82021,36558,99690,28657,92147,33687,22235,276,4712,25105,60547,21271,12127,40572,19786,24846,62455,25729,27530,84422,87986,28738,68050,97320,72460,18584,90768,58991,895,80491,73352,59882,6185,49789,94251,91089,30601,71966,49851,9944,50414,86995,75161,41406,36621,9859,17409,10164,11264,49286,51901,37074,51295,37742,81659,84870,55478,55768,76542,46619,37743,86745,74718,72187,77003,11348,9386,64690,73663,36520,72877,10815,40823,29950,91489,99026,5178,311,2728,98993,99624,13799,32349,93975,96937,64907,41033,91976,91872,37002,19877,59212,31797,80009,22867,6049,7076,20987,65867,28505,88251,24923,12612,50112,22139,58942,87816,67051,52631,10054,5652,77112,83992,57888,10643,13094,50309,45675,70973,19912,41171,97966,58492,99607,39127,13269,96659,6367,30543,18815,72185,32238,52295,1914,5905,63471,21927,25382,23748,91655,25707,1665,16381,53483,94810,53243,46043,54659,59831,9184,72100,92075,9569,52496,49607,13835,30259,23086,90424,38556,11370,39302,40468,48543,38396,86607,51282,48251,14313,14015,80219,64254,14985,65163,85317,79936,28111,42692,90049,47457,10388,11294,24655,19982,44948,40147,15568,80775,91848,8367,71712,74459,11673,71438,95870,48769,60163,64363,99418,10003,86869,33030,29524,38428,85297,61012,79043,14453,26996,8547,94389,78830,63509,29767,71765,31876,79305,61404,82530,21759,25303,40123,90630,80691,71680,99927,98362,6292,39132,48129,12444,9711,98753,19494,11168,77978,46308,58180,40897,23587,64967,60725,79529,99982,79513,905,64224,11791,59611,79872,38665,53810,45784,3791,22273,56186,235,57214,94542,16552,41756,34763,29033,16928,69376,78894,13410,55118,4108,18225,93326,75612,52557,41461,86609,1653,28832,29039,16828,41393,62954,69014,94196,89537,79620,8165,56287,20280,22217,55601,76289,63316,61497,21950,14175,36724,12239,15479,87288,43863,24132,74958,99356,54010,34871,63250,91657,50376,20811,23785,34537,75061,36372,13314,31936,92612,44933,6871,90025,1448,19845,88790,33831,58515,9088,95112,48405,79491,67337,7399,12621,85857,39457,98864,14752,71955,69087,59214,81350,85555,11868,39292,35623,65804,64784,86461,1727,62411,41280,2364,37011,81957,98899,48257,71904,50265,58168,51694,41545,64743,15538,9907,34009,65974,5457,61619,49093,17581,32560,11407,92621,43707,68379,55340,42695,53300,54667,20426,49178,5801,57799,32030,15048,80444,96397,40922,84857,71381,15938,69169,68143,22135,24661,67858,7900,79393,89812,37754,70264,44182,19529,17821,79320,11512,26031,90826,77813,35514,68058,47887,12393,74770,11024,80912,39359,61788,54601,38798,72061,18517,73089,17747,15339,2484,29216,27,11745,47329,52937,94248,94010,8182,99905,23933,65180,16950,83828,91359,74905,94368,61713,59817,2790,82377,80653,64736,35661,21301,76122,31138,92557,26154,87198,45418,20016,8122,84276,42492,8551,67492,34317,63165,39584,57134,26043,64603,26282,73394,94009,6484,65245,34098,20258,36430,88011,94166,20930,73593,56062,60394,67433,79057,14174,70833,53494,26444,16915,60522,16370,82790,28968,80529,50186,99877,98892,7912,7319,66982,48469,89002,52670,33395,30339,55443,20142,72533,47213,54633,23209,61797,97458,304,64368,46545,76049,50055,47636,73750,70492,35571,40444,73254,31879,33141,11301,37770,88009,65683,1051,66409,84316,84385,52163,39411,245,67384,36232,90220,50807,47378,63385,17330,55612,44101,63593,90703,63864,98224,11474,53024,20802,57367,67988,17797,88841,10117,98113,98310,8404,97954,27102,5551,18575,51509,72445,92546,21447,50042,9758,34401,27823,17372,24946,69907,4915,60740,53203,4356,9014,27812,52722,6602,32754,28508,8569,7516,41654,35214,80807,66959,52106,66196,11187,3890,35293,82772,28653,69800,43343,9568,15777,54230,97219,99073,24401,17772,74090,72262,88090,43683,64991,5239,44307,6343,4330,4453,69454,53278,87665,2838,88690,39727,38403,99114,31003,44189,62098,15284,90356,80048,71885,52614,11108,5786,64843,65654,72056,82851,80366,21311,29713,89509,77411,54465,16101,38302,85374,21292,60659,26461,54821,1447,75502,1814,11718,49249,3122,9488,54845,48418,12785,72697,73915,83384,34372,56944,86709,41014,75455,9717,20296,4857,29920,81745,67316,73491,5538,92471,43106,39782,4209,38764,35728,83497,21306,45059,6354,37158,31027,37691,77642,9573,59413,76213,19665,73382,13392,63052,62991,56907,14776,48324,7592,7983,73108,99956,81770,59729,92909,6152,38813,93191,24429,58860,63356,30572,4726,77989,88991,40244,92089,31490,71085,10047,20226,89340,16133,85653,19199,36361,40573,47886,18258,73839,87801,31494,88734,36907,23516,82388,72080,29607,99577,74563,57723,60423,8559,79927,14180,71080,89690,31377,8921,1245,37331,1324,59015,65526,38128,71478,69259,30539,52661,41419,51236,54236,64453,69129,1835,25391,23950,22436,52318,89912,98661,13567,8323,60937,99174,19810,17937,24377,34802,66542,85569,14642,9837,16941,58240,81043,80744,63375,95983,9379,21553,28223,70039,11857,22461,14320,36924,30751,12200,63283,5242,16518,12888,35349,2388,94945,18118,53634,57218,77127,82409,61024,28580,34259,28864,48529,12554,7318,49212,62640,78004,59681,51522,23795,99287,73468,39105,42180,62752,61923,65282,16283,62891,17153,44392,50018,91541,36810,87401,34820,96230,92555,83215,24210,64069,17227,47180,70005,78477,96014,32917,71137,5725,81270,82153,99090,87264,91840,19621,37732,43286,76815,38355,33882,90916,64529,45848,28079,47207,81434,52200,56386,45282,71090,36911,66557,36391,77900,4851,1053,30279,25271,5179,52653,93102,96571,10931,42632,48733,8068,84953,36699,34658,60210,95603,36866,76944,39563,15315,2588,64472,15739,86838,44275,87817,23131,99479,38053,58716,82143,88587,26878,67964,15010,76701,61693,54787,34505,78157,62499,93726,66320,77302,48729,80788,85507,18828,17886,79925,88020,27798,22520,27822,91735,37350,97045,28331,84430,87025,92158,66828,97608,79547,41803,58949,10621,60786,26018,62799,15291,71771,8801,31744,39811,51276,23693,37546,82727,39220,77898,49230,23082,12321,9340,72781,52490,71725,13403,90263,25302,97413,5267,1438,90385,77396,87242,12863,29873,16798,64070,56057,99297,46690,54694,42771,29707,72717,97840,49130,59460,65546,86903,61716,39568,61835,5773,84453,20066,25277,3429,87615,68819,12551,5177,44217,35939,31525,96022,25678,88475,41297,57449,24391,68285,75350,87609,92857,70046,52760,61296,71973,41672,32212,9281,5588,86368,16063,44542,57418,42956,87486,33137,48203,81894,40339,65152,80885,15155,94274,72198,10669,2505,58059,19777,53759,85398,14841,65414,45659,28908,7095,99115,83890,79823,43873,82771,71553,20213,47647,70061,34503,58422,90475,42307,90515,22126,26830,2829,97084,12817,95824,69835,19117,52377,72207,44257,54721,15025,46006,54383,22758,42872,43459,85224,67846,96340,96455,29105,2817,33845,68894,77403,7227,48411,31370,47526,27961,58857,69874,31808,14269,95059,56991,26256,88757,27531,46205,78995,15993,85715,38004,6897,16557,86244,71489,39450,63005,73163,99940,85215,63189,70367,3853,2405,49861,58363,360,94143,52264,92071,4223,2393,77695,4254,69157,60570,64634,58449,53505,49350,16766,24172,34789,57043,91028,13904,82856,94997,336,30431,8421,31501,45360,70759,80824,26225,15045,59752,32170,25835,83623,92303,54008,53402,54525,34675,96823,10108,73287,47416,12204,63561,91244,37381,21414,9131,19673,30095,73397,37588,63159,80826,59655,61139,26344,49466,14157,75197,51298,8707,70697,69072,32572,14763,64017,15164,6234,33297,88206,50146,98202,45379,70718,51305,58987,57390,36843,45462,22454,39123,26696,17473,92076,83694,49229,86212,19830,476,2862,34531,26274,38226,15329,18069,21057,8622,79273,26021,10043,38824,40208,4015,96922,26223,56114,8040,87964,49474,50797,15840,16032,4262,23810,965,39214,74108,41278,6686,10259,50649,90380,59343,9252,40708,82383,54473,4165,72410,46050,6758,22066,25335,76406,46017,82193,61434,85589,66491,64707,42470,29723,99047,41874,36449,60408,85484,91814,92796,91696,96498,10517,95757,79998,79243,43294,76764,63317,31772,11897,26238,73843,42830,70624,93929,67104,33460,80792,80751,2748,59964,74577,64466,9163,72211,58223,7512,37528,99746,47263,82997,44944,69893,45624,53067,22338,14943,9005,12166,49823,47273,6799,26500,45556,51867,58247,17160,42770,10000,49671,45084,73041,1153,23833,11735,63772,38370,62325,66805,97782,64824,18802,57037,45067,43726,63109,48629,80045,40686,93412,4429,61947,76775,74961,76999,92606,54596,46833,80435,51728,6092,72361,55560,5470,56513,46544,5367,29129,22109,37812,10181,23160,46263,90712,19471,23433,73559,12044,83645,66107,46070,45896,33540,63936,32891,53790,2030,65357,9585,32906,16223,86239,53972,73600,32362,1822,44827,37950,91530,33451,72792,23335,42192,28587,25073,51811,24790,17423,20453,52860,74000,71549,64064,96047,19554,76882,6397,981,14920,63495,94056,88319,57889,63782,77690,63885,28831,98812,79756,35347,66905,45192,43426,57072,9279,29777,87993,2331,86641,68508,46072,563,39212,98415,4192,45818,10919,15548,77934,76572,94084,66500,9787,84033,92895,67929,36241,71060,12669,44140,9721,38362,65273,38587,74580,50032,58992,97671,71806,55754,70386,40718,41042,41785,23597,43397,57340,69900,61449,84798,55464,22738,29485,10657,85018,44540,44587,17845,5199,60439,3066,53884,91348,611,54062,14735,95820,4041,83867,1988,41593,87806,78370,55640,64750,41733,63547,28251,7910,87084,38921,37767,32903,677,76635,94525,46760,69449,94905,72465,27757,54597,33677,71969,67742,53269,69186,35753,60756,72430,20113,74127,60032,24656,27868,51880,31828,21247,82683,21062,52697,82080,70511,24925,43190,78223,42897,83638,22604,37388,49488,62539,32719,87606,82225,70434,56834,22423,65043,21431,85573,35327,84072,89186,11752,68025,45867,71566,93183,4341,31460,7617,8082,20219,26201,87567,19263,68020,68692,92765,67224,36021,75602,44134,73603,59826,52418,42466,57044,70325,54065,72632,65137,84414,63343,62429,54511,1778,15959,92464,14412,86256,11016,42004,60591,80056,69615,38447,34713,40263,45735,82115,29308,10308,66445,84160,61252,88002,90125,80781,51968,33747,43547,1439,85284,87086,64862,4361,89650,79125,16574,98225,11005,60369,89034,38673,17856,16336,68687,4853,16119,92942,87544,77885,59972,79941,65709,4492,22725,39575,29350,75849,56182,13019,41094,5459,7485,45174,41557,29267,80746,20294,99772,5226,11276,10221,11320,12837,66877,13963,4724,47570,91535,31906,94140,54741,66843,31236,24779,79745,85137,66686,15320,30925,38457,81540,78422,4593,3563,71330,23217,94888,25049,10452,40281,40611,47298,25019,44401,9108,94059,75701,4126,90068,37495,90419,35,66133,77100,78357,35592,19006,89297,52078,62180,88084,41644,81345,59881,63953,95907,7687,19076,45894,92596,18972,62185,77730,21113,2620,81548,16,68183,97521,18288,53449,89842,71678,33271,51053,58331,43117,76731,46732,45129,57118,4859,272,89145,52547,20507,14266,77237,92270,9542,59371,17577,70004,72079,56795,72001,73549,96723,5064,88322,17824,88705,18975,14764,71024,78021,74202,18703,5825,3457,69666,73376,64060,75889,82254,41331,79813,34183,73310,38372,38465,26195,48268,25715,47067,91836,32717,70372,71568,14102,52192,45126,93496,92431,72014,51965,76982,54878,84563,88408,20328,16015,99897,30118,32617,47843,98746,4940,95596,8854,35169,69965,65703,82457,12889,94582,95817,80015,56655,53766,86999,87323,22314,76452,13230,21787,17947,24317,79906,72024,70807,76828,76391,60187,63789,39533,67207,7060,92398,51175,74223,41765,64361,54655,57003,86791,78010,13255,61570,26433,20266,81860,80200,70716,15296,12655,9802,27011,56531,33828,30587,39859,87462,85208,1320,67977,19254,74069,88487,80856,45317,37259,93099,23140,67903,8360,62355,63527,7371,34725,59675,33028,70713,35781,95468,94594,24820,94608,80701,65686,78796,72905,57333,85102,20454,78198,26560,65616,73135,60336,82868,10347,5387,43930,15159,97433,86124,84421,99504,92015,91108,74311,43228,38887,48786,44824,16171,33286,74390,95426,12789,49754,42789,65817,25640,83881,5386,90764,24055,29757,56004,98596,1065,32388,79900,24456,27425,8937,54461,57773,67441,12238,96134,25171,81687,53421,41663,72686,21016,66772,65157,49005,21959,72393,17377,80661,42014,76874,23015,50941,89143,47039,14498,87566,93515,41359,13195,11623,49070,12929,63866,79789,78913,83155,79476,54155,50537,42758,53697,85480,93811,89204,46029,56542,62746,85132,18593,68268,18226,13170,3130,12753,47554,46410,39923,98587,28333,5590,61326,68537,49481,47980,97340,86646,58277,73716,67083,83393,97090,75322,49300,15939,81823,33881,66129,41296,52399,41689,39910,23502,9130,24356,78279,36944,57283,77116,71236,13651,80519,8079,22101,80660,39304,32180,17245,21726,50165,85281,17385,94186,48158,37943,81878,99779,38961,38107,48591,21088,87009,31785,1748,21443,36081,67022,28448,24428,75506,41521,36387,7174,87736,30683,29878,73125,95806,14195,29257,48283,72477,70592,99769,55642,18611,49435,50222,29786,57556,11678,58559,62735,31230,20641,78764,81874,679,76397,83280,19376,56569,48276,33282,94891,35106,10319,33304,50800,10670,51233,87921,83508,62299,21711,8394,66472,91768,7207,9945,75369,5335,82736,69641,50598,25534,92974,84251,30951,16067,46218,18370,29535,63240,53647,89547,97365,34045,67454,402,55073,70526,64460,77998,61621,63531,2793,59501,95185,75550,67357,65830,68297,89567,94040,51238,37709,93893,44480,78734,76456,58896,53420,55626,43068,11510,17295,64437,65026,54928,28212,36514,79295,33278,8428,28189,423,71046,31153,85272,81338,8830,7870,12619,30515,37849,56479,64328,93518,1568,22976,54986,48771,91386,59593,37343,23108,84629,51212,88635,38032,5323,72811,65678,25008,60800,70820,55042,18771,46160,43112,89099,39415,88301,45227,89242,67865,92900,83053,70138,43029,96905,26239,3237,83882,60833,50944,99488,38625,29092,45055,8993,9343,75036,39471,59375,74077,36761,43832,91052,13466,58601,1889,7973,43062,37527,23207,99528,33930,72939,53361,59650,87625,38132,50894,15007,8781,25684,35742,26524,75805,37978,25304,1458,41835,52580,31491,44463,29540,52368,12483,75845,14614,20763,65361,61251,26270,65242,47050,89667,63418,38332,29101,4228,57857,17672,29900,88098,27860,50122,39889,21412,93215,5439,93068,12575,38672,24887,65309,76495,18516,17621,85800,79434,57427,4910,65700,39489,58781,39633,11679,52626,64310,52563,80327,64720,93076,61304,32475,69823,1520,24190,7139,61185,1184,70902,27632,58664,11429,87271,47335,52795,36650,62700,32652,54279,59224,30645,38637,86116,96686,31304,44427,63660,65842,45935,65302,83810,26971,10701,98300,20073,23325,11477,25065,12941,84947,80029,1871,39784,97435,64048,62025,73589,28193,89452,90785,21210,11826,46061,88597,54545,81219,72736,64325,30713,18400,84321,84937,77764,29856,17562,15218,36082,22821,48634,35414,92030,70852,10471,29507,59781,93046,26295,46502,71123,6974,97115,80295,83390,85566,85354,87617,26476,61811,94000,74941,66346,6976,12277,28984,46316,31258,9767,8611,96078,67682,43194,46948,97982,28147,97177,61911,61561,76867,80765,72569,82318,72622,19284,57981,32116,45407,80959,58636,94508,64672,74573,61222,18564,12582,34439,72415,74672,13209,36033,85230,91722,53124,54196,22905,97031,35595,22975,67237,35561,87041,40588,2139,87803,43434,38504,16151,50981,86981,73596,61810,79907,11229,23304,42648,20276,92913,23048,52084,27607,955,53549,29326,17159,12470,11729,27361,14059,7501,95536,38706,32699,79874,49067,71262,79244,91874,6891,42494,12209,14573,15044,84792,64031,28589,51777,99862,17462,37729,7356,61997,9691,30552,13618,41833,14576,46150,57318,81612,1078,92474,823,36796,33861,54249,9648,37249,50878,35467,3068,33455,85094,58630,42204,93209,776,87671,64514,20662,11148,49768,97093,31727,86084,69237,99782,16472,25737,32724,99674,80528,66760,15177,80804,90195,49996,14117,26801,59320,4306,82572,94882,35421,6300,34546,49374,42710,22402,85422,5366,66537,7975,18603,36070,45224,75483,14488,79568,41666,87284,52253,2284,6893,8668,80818,25249,69638,64923,26257,19186,3138,92339,43880,76395,63925,9276,81408,89594,94407,90615,49641,95232,56314,82915,45752,84272,64913,26319,10009,43724,99461,63103,34667,73813,43080,37749,2673,49468,11327,6235,17867,12649,871,22640,31229,76734,87975,82445,81162,37093,85492,75080,29040,44902,12537,17118,547,92337,61453,60952,71421,47168,4504,16769,78147,35850,23878,98517,13916,56588,78679,38565,74707,95144,52424,90846,57839,16513,32106,22198,59255,75955,52208,35980,86543,53411,25736,71056,37664,10871,51462,74715,67749,5016,67908,83915,30668,29840,46668,55568,88115,81943,55934,67612,61712,25334,27991,34302,28618,8827,98536,37860,26429,61426,29459,79835,95969,9829,38484,18633,47673,50290,91081,52455,35122,80629,83556,91167,20099,86009,63440,37573,61551,48347,4051,41544,60915,57950,31434,86794,32997,85570,88273,76535,50368,35085,54444,25175,89230,52714,14879,54516,49203,86636,74875,34630,10638,176,79723,39788,13176,4852,64758,61064,34105,36461,10717,40018,68916,78231,83195,48264,50291,32812,53308,21771,28022,67554,40412,62740,96260,90510,11375,96495,68680,62674,6100,85764,16446,27644,73265,70200,44363,28547,66682,98265,59595,48351,83224,32957,13267,82735,58873,26870,67460,85194,37289,61636,6937,56206,4374,12996,54138,22433,28996,14620,1811,67754,25888,55987,87231,31073,43999,92566,2426,56058,67671,57578,53688,73157,1804,8422,20155,426,15667,28327,2238,39129,16776,9122,93066,73707,57088,49040,19891,9249,37457,44283,347,98928,69668,2373,54266,31474,4462,48601,73568,50854,10196,69969,46247,54646,12733,59614,34239,84919,42413,17909,49152,9264,55161,50658,47813,13121,4466,33671,87559,38499,99825,51793,48618,7305,79272,29486,35380,74331,32730,26791,56629,24240,59869,70245,94544,62004,47316,22041,32445,44995,43175,50599,95807,86310,35245,8181,70034,73519,52869,61058,98077,72218,10665,49367,10304,61698,29557,3490,2935,80393,48534,95088,62316,64337,48995,74216,83157,23557,33665,93606,24469,52165,31594,17510,69349,72362,85689,34255,44163,76352,53332,79054,11834,84455,19689,3574,67419,19309,53432,68134,25859,67758,96720,97680,89866,13279,87304,49694,35308,75378,65946,90386,11045,36680,46170,50784,17090,60101,48011,8689,89359,80662,32498,57725,21598,30667,9201,28233,7475,72336,43065,54930,97432,68019,22381,16650,86003,42863,5775,89317,95262,12155,42747,14821,17482,82774,57349,65044,44600,65537,65965,18650,44364,19306,54200,28490,89311,25959,87538,47074,40081,60176,37550,80476,43249,57060,36167,91714,58853,37780,79798,48789,68022,89675,57050,35679,99682,80934,94460,83940,68500,37686,2044,60805,52362,48796,75588,28401,91496,56540,60496,12151,53936,14054,31368,95105,46624,86370,53939,93705,24171,51419,99506,58236,74196,50003,41732,77016,13840,54707,79797,43455,75027,98369,13924,91946,6283,26426,41621,55504,12087,77510,60469,75545,35453,20886,52170,54905,69127,96542,24167,33484,60433,99587,39351,14860,92951,10416,15747,72347,82166,49713,3671,81543,25896,93576,71445,82357,58023,19057,67269,28113,54772,49058,67582,29501,94679,76242,45905,76230,61634,15681,57421,51394,96595,42903,21675,2936,9653,65530,33992,99043,60177,14168,21985,70694,61579,3818,4331,78882,97140,20327,69386,22941,7279,64231,94487,15327,77247,37973,32443,86056,68418,96671,70653,17841,26512,32750,67662,22203,34122,79764,79681,28027,85396,26867,74043,48381,26480,50193,33160,58513,76138,11823,96786,9625,85301,66837,51984,95922,87290,37745,96832,34013,5820,15036,86180,80561,84926,61419,20320,6516,24265,48787,68769,40242,99895,19482,59168,99172,92336,45989,79015,13234,20001,61741,43444,60295,89178,92306,49450,365,27430,79111,85838,70103,13572,12034,56017,34,21058,3063,27354,59786,75881,17443,89270,80628,42869,35168,19726,27235,72223,5903,35210,54837,99641,38814,63129,52335,90623,49144,9296,83104,66912,63493,41388,8413,69908,68582,19725,36285,84390,22160,84192,61074,10223,99859,17038,34207,63211,55965,69467,10485,3465,52406,19581,66565,16392,23919,16931,39543,8906,27755,90315,37890,23613,63461,35918,95670,25264,71100,79535,27206,97984,73110,38521,62475,18642,38539,98095,54992,57864,98965,39168,50871,99058,6497,59256,34778,38384,64119,62342,56378,44777,83511,51848,94197,15370,32675,71363,94596,56722,10419,42388,67539,40093,13411,18913,4953,70494,84766,52991,2623,31372,69608,8576,25040,34086,53172,32403,33756,27238,93885,63799,68882,25583,65760,6241,42764,99465,82337,5243,15784,5667,16297,60203,72248,57713,31732,88034,96675,47315,97683,20863,77192,88297,94853,76899,55762,54910,37018,27053,68272,5932,42260,57622,94633,99440,32281,95832,42169,38173,57745,6660,94425,23356,30178,14783,21638,71739,65763,47310,26296,91921,14459,84667,16551,75122,19235,20509,13543,52952,13667,86501,71932,24122,92069,55698,15934,205,82920,94801,51787,58198,63714,68620,95316,79078,63339,46011,48824,87024,81389,24115,97519,47512,33509,9877,55405,422,31956,43049,31452,43238,13427,74717,98484,59322,81051,29967,46490,20043,46479,63882,2878,87015,89714,53922,45321,98920,81757,48899,29035,2773,31652,96815,19546,60472,78344,31894,14726,20291,62358,51430,16621,68657,33067,70216,64522,29281,39098,84631,12064,56322,80901,79229,19042,82971,78055,20770,23907,55433,4310,15179,70207,91009,16364,15599,34865,40100,20631,75728,17938,93737,81289,16054,95453,87337,89846,72616,7729,1831,11611,46514,77318,77114,63517,34479,33893,39236,18302,74729,13871,36721,77997,81332,46440,37442,1132,42495,2178,89580,65710,93891,89821,49164,96487,80686,99368,85922,85005,48654,71124,42114,54993,26460,41413,33929,69956,57105,24424,48659,39270,38374,35395,47363,1305,40815,1490,97992,32893,27078,37608,349,24008,17776,74276,12591,77042,93808,20197,18175,15472,91335,21492,67665,82170,12700,90056,50717,49561,93250,5942,56878,75034,3061,59908,28249,14121,27513,91754,84135,17363,36194,57886,99593,43705,95312,8539,34845,47245,49930,71014,84709,98253,98853,75177,66519,48745,63085,96894,80666,20916,23331,17051,82622,91166,43790,39303,96996,10100,97034,45933,19454,85909,68403,2435,64605,8156,24847,69692,82614,79210,97096,39717,22387,98107,68258,8469,22484,65464,65785,69594,72606,44115,3681,62606,43370,55463,36743,57770,87971,32804,48050,12406,34215,12105,71433,53611,70539,79688,4156,13728,79639,55723,83845,2391,99295,62369,9498,63736,80204,56187,94360,25420,3888,90230,93095,98009,13847,67526,27474,7502,30306,92342,96858,85854,14836,19836,76102,67757,18350,55506,33632,41104,82287,81999,78659,80894,83056,32712,51232,57293,67985,62383,54634,62347,61910,56085,77229,58766,63568,20762,34946,3050,44047,83693,71824,92629,76485,46243,3975,73852,75206,67236,42473,66794,75006,4188,29287,22473,85953,44577,5925,63249,89418,43451,38717,2530,77084,58273,60186,88078,88243,1220,8725,69705,77724,84818,92413,59937,28372,92167,64738,91508,83565,60677,57677,75393,22531,64844,14853,72932,42641,58381,95697,61681,11354,14807,36118,36388,18552,86038,98323,32552,20880,25866,5203,5277,17186,82717,56919,97375,99085,64226,18032,65312,72338,40567,90501,48120,35101,67505,77422,83812,78107,10548,44068,7138,83238,68722,86669,48971,62067,81987,58854,26057,31742,29197,41932,99629,74076,5232,5727,70923,80609,17741,53338,95651,79920,48726,97591,24976,36266,90358,39172,29436,66153,38419,95531,10007,74364,92193,79673,13617,6651,10696,43829,632,42766,99360,87185,99774,79385,83771,85612,60601,13420,34486,50771,38590,57590,52827,14422,99692,79863,13582,88731,68558,53001,44738,40671,24153,53792,43300,64877,72203,53462,97906,56543,50277,89653,56272,49719,89170,12131,39887,82720,6694,42915,22936,24463,61463,36728,71671,482,80773,82163,10574,84502,49876,23915,43428,56299,28588,16601,76414,92188,26323,49704,28008,42326,43305,50120,7094,51273,68069,50579,77400,7344,14661,26321,71734,71634,99279,11635,15756,45254,58408,16786,44271,56381,77608,60807,5587,87054,3029,28782,43591,78956,57815,84244,84457,15444,57596,20206,65731,16775,29887,79282,27039,23025,59302,97593,14243,58714,47016,78867,95486,40762,31160,92059,57300,13732,52369,12417,54213,76454,55798,16168,78071,69005,3285,21428,72099,79216,72210,17836,76583,44191,19780,75152,7388,57216,65707,82933,7855,83140,31317,59928,62239,61513,25844,66217,86976,47356,94111,41187,50525,32133,6474,31890,4,60850,50296,28540,2160,91941,13200,51686,15012,23313,30474,88950,64872,10359,14566,70542,93993,10458,52843,3928,64513,66668,96415,92483,86693,88340,95268,26818,12228,68522,68541,33900,3816,10057,13511,67895,11391,16074,87732,55866,46825,23270,43304,92950,60765,16584,27027,26959,76281,82353,53428,57525,76231,55574,42900,81777,78628,41760,6277,27767,11784,85956,57115,15409,47022,84335,71246,56800,57169,46996,91381,95623,74838,49,19133,36091,83324,69677,54836,21270,75103,47147,69234,2106,79033,14386,48063,13235,15365,32970,68448,80480,85074,73639,27485,67462,82722,36879,68811,22389,75919,26770,94024,87607,15482,9676,10297,76752,2953,32942,57760,45242,34442,73289,1985,83608,54913,3424,69413,40559,1599,68014,87291,60080,9641,89813,80267,81451,67158,97383,98275,26637,36608,6336,10467,64681,82964,8461,29106,17528,82852,4977,10357,35848,72421,33613,89600,7730,46287,45467,50141,91866,41678,84367,2961,85826,71794,2600,12197,42038,67741,8597,30418,66004,94312,77406,16986,37102,5172,85914,56611,19617,4127,76361,10148,34930,82236,41633,37139,34654,95452,4961,37231,34135,29911,39876,22956,36905,15387,88566,75638,94015,88965,87692,76491,8270,25863,37737,74522,25000,87703,20508,15998,93963,78935,38891,69703,15457,83250,43336,87218,1072,74239,28210,90197,20268,28680,96191,48703,20885,23017,69570,96028,3845,78650,3223,35569,82575,8814,48586,26884,90656,88433,42783,26630,41575,63494,42577,19841,31706,62801,2664,2781,36248,81797,37188,48061,89969,10975,40044,95183,71800,94871,2579,49745,95769,57456,52999,56902,37370,90602,6393,24485,18837,93602,65168,24619,24977,40796,64137,84630,42991,70340,20461,32427,46134,82608,52927,5677,31597,99751,60700,23388,93115,76383,51643,69007,4778,63938,62717,21104,89614,19611,25648,85652,91191,1319,6959,36211,40865,86061,84986,77824,57724,7008,51482,28871,61183,73467,17495,31021,70248,29567,2255,4656,97890,22480,21282,35105,47827,36654,47290,49420,61532,38480,31067,44403,39964,90287,38044,50319,73572,70054,73055,16353,45097,4836,89664,87276,4368,89998,19075,66661,88825,67718,42877,62548,91889,56152,47401,49023,17945,15368,42933,12962,67304,8883,78821,58454,58068,56898,53506,1258,93761,70220,22070,16675,59789,23447,27322,17081,969,5404,52410,42140,58690,22759,13436,56427,34519,36318,28557,2875,95815,56893,17044,95845,37601,31263,77619,12340,18234,72431,60550,59872,30517,44131,27364,30788,37135,86011,43174,27208,59634,43746,90946,97739,76060,55189,84377,64515,22997,36245,10622,76203,11174,3217,83772,31115,93363,54054,78743,43481,32141,74919,59640,75151,34374,99111,56317,41648,3295,9744,29896,66672,91326,8556,19476,98739,62901,21964,70243,26156,93868,737,26690,5569,13105,18257,2304,41720,19502,14777,55302,31005,9309,28037,44325,15609,43057,48421,52835,71912,90494,43051,98267,76610,73082,79528,66408,50909,94599,54311,7418,534,67234,11161,46531,74273,90061,84391,67596,46787,4765,20665,22414,49433,65055,25203,16276,8694,73023,56012,91792,1636,42881,97808,47786,36531,89498,41320,56197,87105,86416,99644,8273,37826,98634,31633,60689,2132,26345,77226,13038,54765,83682,7885,12637,86696,3391,93610,44799,72642,46079,9459,4528,23698,27670,47254,1110,18088,39074,20032,25569,88854,31323,36548,50182,70397,93545,67336,17453,66954,19410,11113,60872,40871,72833,29611,3082,39479,46186,40364,24,13712,72920,54675,54437,47447,91374,32559,2172,63754,19808,50266,88717,75568,59041,65801,20244,17569,36718,89289,7280,33918,5830,48241,12600,82206,75096,87140,90629,85847,70829,84301,73755,75492,43237,67556,9955,1693,69859,20950,71313,84868,1187,99397,93257,52732,79280,78714,64335,47430,64798,70291,88321,2665,45762,93773,57197,89794,52678,50313,52472,6182,27671,62877,52740,20937,74880,71868,70202,30998,13389,59160,61795,62122,36816,80989,77598,5295,92645,84809,39789,44931,35582,92074,93240,39171,68340,98451,59155,40066,39264,27245,13125,40864,28128,84929,32959,46773,83132,65453,37088,43858,58974,30947,65493,70019,45981,90706,86959,62790,67003,32830,12265,55903,12774,94506,13483,9273,4259,47346,16027,59596,55527,77531,64099,57171,99831,55900,48398,31092,19061,4507,73137,57887,97855,12821,98252,56365,74620,3514,56108,23820,63053,3620,51002,27748,32199,85356,56766,44559,60517,14025,97838,72646,17490,92725,60604,15857,7146,57358,39828,73987,41189,26219,39591,85190,23638,24194,29147,47952,64689,14374,69840,69593,99717,16471,86890,17132,33337,88445,41551,78788,22347,20810,95956,20667,53622,6074,80933,44833,9471,56167,99457,18690,70754,52942,49969,27193,84343,78101,5503,96038,97710,96822,50767,36980,1116,98512,61278,40101,68581,84736,21031,82711,127,41262,31314,17193,8086,29390,38220,51815,30780,82001,40367,47289,41626,3927,33192,43848,89294,93305,42018,11982,2060,41126,75914,13128,15456,9102,26222,95335,50451,61906,24400,28523,94530,60691,30911,44449,19458,38505,16457,37122,39987,11941,96387,66827,55902,62643,45285,86984,96226,41726,92145,45532,87878,15481,69093,90908,19375,43698,62804,86658,95440,48627,81814,9883,30860,16535,63918,56275,13784,86211,26072,72340,57342,31788,54430,83533,76964,21742,36873,61816,58586,46127,62209,67016,21478,92250,6335,57585,77284,82112,43916,39385,26849,46246,6378,29328,61152,15904,391,55369,67363,87495,18330,10315,90089,62608,65114,27732,19144,9049,31404,96492,25410,35524,35770,8596,43874,2439,15301,33059,70436,65503,24941,93628,17995,96737,10688,46835,35497,4780,55371,30872,60668,45469,63186,433,36083,48510,51265,82795,37491,82781,11554,7702,77186,53507,86919,97072,53110,75646,45991,72427,36882,56279,29892,83130,7589,23215,12028,80851,68984,61292,90158,55280,21307,82162,53353,53580,14805,61623,26380,96777,79767,25493,66210,44683,28701,15322,26548,97828,79180,94777,67343,60576,93844,66486,26823,39254,5426,76121,36737,54740,53703,56156,33739,74617,92440,86022,6671,43523,90704,74398,47365,60137,30706,13807,96927,50359,24455,99122,18027,26988,10567,53550,92685,4497,13763,29667,48646,99400,7609,38799,84319,18981,9317,28326,65648,55306,81971,76787,57455,39004,19602,15178,44411,82763,89934,1012,54471,42088,89635,4611,74253,12247,16528,81341,91994,74317,58050,70150,19107,55579,88374,45538,74944,24088,96617,12092,49081,54725,60741,60304,72827,50852,19367,89336,21318,73000,16598,65587,76713,95551,52704,61569,79663,10409,15674,80301,96386,62132,81173,82177,63513,73141,71010,9761,49911,32126,81734,55087,40104,53903,70674,98258,88711,16761,80965,5473,88977,89015,26590,79841,56723,34167,50051,28180,59025,43457,90079,9830,2402,78291,18419,13306,68282,40279,2131,47399,20098,86734,38063,74772,4657,62770,11909,75097,22678,13487,81610,21691,32290,87069,62263,50261,22723,95204,57748,42949,49913,43922,97690,93189,57846,36073,28688,34564,80991,5324,41657,88549,11551,37386,77972,18268,30251,51321,55556,75042,72590,76589,52691,87548,25052,43501,33383,96359,94696,72768,22569,8449,41735,33311,12274,60341,62454,92262,56631,16555,55077,60512,57430,99261,80687,28891,56716,93220,36715,68110,77185,2019,27932,30838,14760,28639,38760,1785,72972,62404,41650,19439,55272,38334,86957,18008,73169,64458,56461,76498,16084,78693,19856,92872,80071,41411,10065,44705,91993,95731,65542,39455,24636,82501,58430,67048,525,81552,61976,1909,79366,18538,79065,96652,29294,22571,78741,63605,5115,99578,97442,18845,14357,67037,25652,91737,42845,47502,38699,47279,95079,60889,9098,76209,37880,25112,72756,25206,73612,57030,28126,41281,18778,92131,23078,37554,18851,98593,45491,1127,50119,5608,72557,71790,69286,16500,12259,92256,6865,92495,65287,13129,58249,77973,14686,29098,54492,30283,30353,59065,35343,26365,88522,52234,80073,16765,6012,16371,71789,86928,25929,29809,80996,53704,72979,2778,83133,82425,10145,64390,18632,32960,40785,8097,23404,14648,42442,1480,16108,51463,75287,80563,7507,43721,49277,17211,52640,94316,22824,68387,29691,96461,40976,40371,25782,86005,48593,24891,93372,42776,83208,4089,35375,13779,43833,36238,88157,64436,23977,5865,80588,65008,34034,4190,29251,48499,57824,86495,9973,27093,10588,10173,96835,52931,98641,25231,86920,76781,99683,96814,95090,70102,88978,84432,31084,19145,84370,67472,14128,92921,23284,274,15146,67398,86048,84254,49219,68062,95980,14947,81887,56421,90021,53639,14681,85923,6306,54814,78338,71295,69592,63851,34983,59545,56617,1046,71327,67621,53444,30209,76792,85439,66824,42844,93566,15053,96018,48327,88852,19218,43777,52898,36130,81760,74740,4911,54842,84754,2901,70655,21066,94751,72109,32540,24893,19320,22616,25351,25682,59664,20628,24522,17846,401,32195,49226,60571,25897,94372,18528,6574,12572,69693,41166,89939,7849,91574,71106,30201,61763,93625,82885,20405,34359,16923,29155,3831,86630,64534,67150,23882,73531,11487,9444,40697,57478,93117,96081,36880,94043,12690,51556,64407,80742,50151,75764,232,54805,11905,41142,98242,9020,49854,19520,28108,60399,76728,31807,32908,41245,84752,11492,1834,90746,94748,31773,28030,53382,97175,23479,13929,52153,88095,43395,87767,83265,34769,18900,68872,39282,58937,4287,23774,62607,93746,5233,2611,28633,16262,4605,45827,30332,73384,58070,44309,79200,22287,63758,45134,89610,51663,97967,66273,31741,42715,51654,51613,76486,80472,66861,67397,27234,65988,30828,26395,59651,24568,97308,17857,23679,2943,26032,94398,41215,6263,82838,53886,48013,48154,9844,70732,58613,62648,85813,58954,29458,70897,98141,49726,18998,22946,60071,40787,97905,73102,94428,27958,10519,30819,30386,16361,98308,87536,82179,40973,61080,33368,76813,58588,72204,31167,2396,99388,33924,61078,3567,26596,66344,10258,67562,80524,80074,19847,8515,69589,17123,35736,48383,63330,97704,54404,89388,77944,48596,39595,56482,49858,98579,24751,53072,32673,52747,23028,93687,92641,78224,53249,42860,25453,68557,46562,33513,48248,688,89923,49451,16399,85106,82743,56270,90819,39114,94093,86528,34821,16001,9261,39336,35457,28721,18777,97410,59841,5377,25350,45997,83587,72808,76128,56262,25425,8327,74907,1994,73782,62324,13850,29319,8751,3753,6977,19202,38160,87966,31088,76956,75670,86407,41088,42372,15412,39809,91388,56506,18849,44659,13568,5343,18621,55999,92597,92580,68218,30046,296,2523,90601,54086,2712,30411,5975,59344,67491,98170,87592,55821,72654,35125,47609,5824,88494,26845,72130,44172,46424,11948,65998,70152,62365,44123,58717,25067,13339,6509,63285,3686,66303,46404,16109,16927,61217,86654,51612,65073,43138,26939,10897,27423,93034,19044,69203,62254,82328,88462,64580,30815,92968,85126,42875,16684,47094,21936,24458,37683,52261,52378,11928,97292,18563,186,34213,45204,70877,32853,96477,66889,78031,65250,87151,86328,91853,13886,26826,65740,92676,4615,87496,34344,20935,69451,81956,26394,74467,32160,64931,16699,22396,25431,61718,16698,658,34180,18638,33175,29729,87865,4245,63403,35148,81327,68515,56256,32303,19475,6200,80133,68946,52075,9627,55457,65568,86430,9331,45810,81771,50504,99071,75626,37651,98732,82705,47506,75520,31880,95472,90206,12521,25780,16808,9647,31275,7221,23282,22696,49347,83455,47910,63006,23969,96817,25201,80621,99516,66654,20881,66042,30162,87774,14492,53588,11564,19918,62158,83290,66918,62641,56548,29800,65848,80610,20841,74741,50766,15529,71488,99970,27026,97106,71280,54050,99538,73898,16679,46725,1605,57173,17807,93426,18512,33100,98464,23319,19583,64423,38903,89373,16319,87207,61320,47709,22319,74504,70637,10782,80126,44721,89395,63985,60393,94179,50495,870,34625,60322,80107,40212,21966,58886,65875,74235,28590,54326,29320,8605,7974,34254,53968,44038,67755,4160,67632,38397,54463,26360,51423,20656,40908,92220,78599,22321,40046,50439,85624,35363,67,26575,1704,40107,23027,99416,95126,268,37369,5360,56335,18624,77148,16486,7987,30025,88547,27347,49188,49531,8671,37047,33114,40902,73724,18223,24870,75078,35555,75669,42289,78669,42301,64215,72527,56831,68574,82496,16946,90154,17689,61258,2825,4314,30320,74831,89090,10652,84906,91258,34110,94288,82850,19317,96166,5670,43430,48578,7921,53626,68663,84529,68734,98927,47622,51765,38450,38438,50700,65859,77106,65365,10979,83247,83058,95261,96801,65345,57897,16805,93514,51174,93631,77343,33072,53363,59158,47834,33317,41969,75434,78836,48007,55103,23196,64457,87875,29822,36858,97692,18178,54636,44585,59400,54829,49587,26058,24527,55056,73974,415,9117,54789,49060,88855,25122,17117,35172,42763,93312,69145,46790,25509,18941,68223,77864,65155,36225,59195,57291,64249,12784,74476,52028,8392,42821,38089,90431,13372,50256,14304,7906,89153,28666,11650,72040,20945,73176,58891,44836,82380,41687,59336,31624,2307,21530,18260,17265,97213,71079,9816,79565,12421,15854,14160,55082,38066,12890,61761,29150,61469,25398,23100,66033,56411,60145,52248,93698,18186,24195,11204,71706,57501,66853,61062,46616,9024,83768,1662,87658,23883,38578,62779,69697,62402,76104,81521,81994,96308,5923,79690,56752,70598,83733,22771,51835,87194,93214,32840,79637,15290,65586,6028,50347,23430,55878,14303,89548,9104,50229,99855,3438,206,81719,5155,75059,77336,64560,83919,72358,4647,43692,56921,10129,19761,62285,80345,5936,25716,31752,44305,75525,89828,36217,19640,8744,31189,12126,10496,4377,9000,69949,36451,71801,73430,89435,20675,67928,33599,30740,97886,53868,34226,61128,89133,71344,9893,9527,32125,72485,4273,42565,83985,85903,78484,52997,71793,20711,63409,50160,47883,34797,10289,380,47705,91189,5260,97661,62850,36962,31821,16818,80509,67516,10341,62188,76595,60026,1231,41786,72305,78226,62045,94931,39705,4704,90477,95190,65969,38052,57557,12501,83624,46075,33728,15561,59989,995,60743,63578,45754,59407,38483,5556,84623,36142,99395,41554,72114,36380,14383,22325,79888,65007,46850,69233,70461,66541,40632,48602,83293,6512,3759,8797,23473,17574,55428,23542,59381,52756,36384,70609,23092,17192,32365,80724,87807,15324,62234,53598,54315,1140,75407,83782,91679,56928,1972,35709,48583,5065,73990,11626,2128,35435,41705,1207,70555,91292,88985,77070,46967,41479,31170,55657,8523,76918,3805,68179,24698,67328,61767,31426,7427,29702,33647,44423,54233,85096,64305,12769,20349,64652,18697,70990,74027,81841,53789,60737,62279,61942,31051,70633,10323,71829,65080,65774,35253,2080,23628,50768,77361,25527,83292,60859,57255,51493,8438,4076,29882,19208,92361,41880,37779,34559,98212,7614,66250,82145,1062,56638,73820,4890,11608,35369,94082,56473,52736,77458,28099,38233,92607,21240,56192,53985,80840,22429,93458,44028,15466,73785,35048,43747,10083,15550,91987,95196,35794,94865,20600,3661,18305,37090,59319,33773,31922,81126,95018,98817,56576,88558,70017,74066,77049,12530,3088,38248,62781,51770,39703,42002,24743,75334,60361,78915,64940,65495,8003,69243,34913,70682,14823,74755,92907,25076,57877,13115,50624,16166,30769,30355,81336,98384,51849,15228,40740,27752,94158,23957,46123,91153,59300,26198,68045,90250,89252,4730,53739,98193,37038,93611,68492,3712,95752,13265,93193,99229,99611,90843,97237,66510,72832,41929,41083,93174,82023,15632,44417,7763,55373,24446,47071,59582,98281,48581,44965,12707,16693,9274,50939,78225,67666,92403,50828,68363,39913,96613,37246,66399,66000,37208,63404,86338,89915,15523,40035,26990,14276,43448,89829,44349,19627,90778,82708,38212,8282,25951,56157,60666,33464,76860,4812,36904,67674,92916,54120,82134,77546,44321,30993,8762,76196,34387,8642,68080,68996,32577,79220,56672,94851,45392,51171,16599,77273,50192,90257,83974,21128,11663,97764,74440,83260,78835,21586,18696,13921,34779,1805,91051,6795,42910,83957,3413,31951,23468,16332,61847,29246,20173,39796,42006,44583,23117,34022,78967,85462,45236,94873,46859,92658,15064,84405,29024,87316,92035,29991,50660,96853,61157,13770,47859,87938,53351,73243,39827,92619,24505,63430,34496,92019,74438,27627,75476,30535,38662,19258,36196,8953,41048,89453,46917,15665,9594,78785,97685,66568,92368,25543,62702,77272,51353,51731,85425,51054,2159,47795,70431,15210,6226,55374,71165,58792,94827,56805,80370,82787,14537,42942,65052,4994,47014,89632,2823,82821,58500,22075,89913,80450,81310,68176,65560,18053,31979,97326,41568,19332,95928,86905,80774,76360,67756,29806,67541,67461,79563,63652,76617,78680,46792,55149,70286,87200,93573,91661,10705,76198,95794,25938,13960,89491,76814,76716,81474,82849,28493,81906,59785,65257,33130,59891,12846,28279,46731,93325,36512,98857,85664,21477,57861,34773,90255,73406,36863,88146,63891,18459,62765,97437,26467,85076,77501,46272,79646,19948,40344,58064,79959,45023,89103,9632,65485,60834,22394,31228,76665,33761,3202,61200,11363,45365,94182,27279,94683,11566,76132,46603,71889,33424,13077,44679,69510,64571,17068,96180,92762,72609,84793,21871,73749,17485,38731,3751,48500,82000,87273,63591,75394,32229,91784,15787,93974,93381,79161,88890,68833,84603,40446,31877,49729,3125,97763,20779,90981,60225,55098,48077,81576,36674,36586,99375,63552,580,78229,50741,73811,78904,43007,87952,66836,45586,96821,67057,35300,34875,45520,53689,97662,68748,33138,58652,96938,19832,98239,77394,91161,8257,94452,27885,99134,2846,5871,60799,7021,67412,87470,36117,40827,57111,25876,96200,23788,60096,98832,83375,82405,42642,66337,1069,53979,10749,73979,55658,22730,60425,4708,42666,42262,53680,99196,18511,63974,26532,61191,39095,13132,3461,57670,12918,39700,49147,53556,28318,22110,21610,25843,63946,68835,10063,98688,51906,40676,29180,67558,58344,91769,69214,37373,84909,25657,53841,99830,32650,59577,96608,29253,32599,20959,55731,65367,47998,6962,73727,44743,63311,94911,16740,91873,40933,85808,64144,19140,75565,77665,14518,15608,20583,96426,56665,93057,29395,33242,71879,38809,76220,98597,33249,30305,26068,15357,83803,84080,26403,75723,34665,70534,4876,46922,89571,74975,38327,65664,23963,63896,54888,12401,20389,27901,48038,3190,92983,10243,21257,54172,16443,72521,21664,49402,62217,60538,5228,88275,30747,60817,934,63112,65595,9034,69968,16732,36402,68451,69597,44927,31795,14384,88644,46692,70728,2004,25222,65617,24314,83449,76504,21856,45504,61460,75466,3652,26549,38885,34339,40810,27665,56285,49679,36809,15851,68024,31225,78437,60758,42621,94265,53212,90948,88365,37379,51709,1107,69585,40172,63135,42380,65286,71708,3666,44274,33306,55865,10360,91178,37681,78264,66659,39440,5096,58798,44447,73984,15628,5301,1576,44236,54082,52138,81829,75763,2986,3699,83576,11698,38401,35241,37983,78386,86090,22929,9746,44573,37261,25977,67354,57345,49668,9600,86065,40222,84697,54945,73370,27486,70296,4894,97054,99698,98906,78390,51286,8373,40818,40666,89658,55735,20229,11748,75843,58136,35724,74335,18121,61293,29668,41154,29448,91534,59925,61815,59098,58401,62961,8071,45255,41989,32823,19739,77980,67916,73814,90603,32638,47139,48439,38862,46270,17108,84744,70133,8378,24881,83032,6112,86845,32979,99627,55885,48955,49275,89874,70945,12552,75479,61914,94541,64757,45478,2112,25632,78740,3001,20418,2679,5227,80913,36187,98662,79055,28912,97918,64705,9301,60420,31074,38096,48811,34091,1998,81399,97616,44665,86671,99245,47708,98914,5149,98558,1241,12177,84711,43415,29403,6060,66733,30407,20196,12847,74205,52484,66413,50107,19817,70666,30935,90208,30316,22530,49323,86496,50689,81112,78034,93355,68157,66027,57634,23212,88672,94949,39668,70635,31952,48182,5073,73285,67614,25795,78647,47970,15886,78244,76533,41692,21836,61405,81587,63384,86477,65293,99525,867,24853,90707,72579,42871,45014,9591,2883,67272,61388,21440,98583,8651,19226,1316,66584,78739,58761,19464,16412,46022,21075,6803,4709,26060,91675,75721,10553,46225,58063,15423,83169,79190,91491,91668,78786,28338,50217,89379,90169,40665,45383,62760,53230,63811,23450,17999,48356,70626,27263,68955,11721,16071,20274,37822,27923,29318,18501,68930,42931,91607,43522,97853,29690,87156,34724,55980,95246,81608,82606,4252,32044,25643,27523,25710,35193,12011,94611,29374,39892,91170,62250,14478,33012,52397,59502,25465,40146,29240,25974,89709,22797,87191,51798,95245,13638,48005,90135,52211,40816,30468,22065,61389,49089,65481,8293,19616,58883,51397,37021,84666,41620,5939,67959,95270,46965,18946,61931,70761,78618,86079,27372,72039,86568,38058,8791,671,70751,9060,39163,80155,12578,24277,12323,39164,5284,37827,22895,15051,59396,69110,36324,89465,75129,68362,96360,96668,4519,89845,56205,10343,68215,97638,92571,69066,5946,57412,73505,57141,97655,17104,1840,29969,52020,60681,84954,93285,36787,9693,89342,87766,26795,85613,20182,75493,41887,73452,84024,9206,26786,93299,56890,85321,13073,90669,87852,57569,20319,20593,30698,45850,92647,17665,49265,48244,37238,71508,52175,47132,1101,33943,89454,81893,47241,79640,33205,57937,84523,74348,66593,30071,69094,55181,27317,45409,18774,8717,70520,78265,81593,40759,83046,80677,84482,37821,3682,61106,57227,99883,21390,50270,35654,89280,38663,46478,28613,14812,73217,41548,68016,7435,64708,84149,62609,99631,77389,81507,74449,2753,88228,13443,84139,58073,84863,43513,35953,45802,33751,86703,7514,99286,86476,41539,37571,63407,11842,81304,38768,31144,55153,40811,30090,27997,82127,65204,18014,29400,31565,86442,82312,9703,86881,82110,10674,81460,65426,8732,85186,76928,84361,43875,98234,11937,3471,78335,33459,26862,83436,19462,40390,58376,43764,29138,82038,96960,31164,13186,29385,72249,36,96863,23030,92582,54618,56813,88844,7787,46753,80936,71653,79606,15544,15171,10396,58071,27617,5785,76783,63720,45555,59722,4184,45643,83183,41137,39014,11760,77632,9749,13242,63712,99635,53522,24465,45220,88576,24690,66961,68840,43100,5764,87509,58208,77487,36213,79329,58547,19525,59670,6398,35653,42269,24642,50483,70227,91561,76590,97275,44998,5665,31618,53923,29569,31969,65265,85732,30064,44762,47682,33525,854,32764,21694,12262,38394,60206,21766,52812,37203,87933,39133,17252,43982,50360,4607,80233,82486,89361,6079,13839,45225,3167,90271,11313,21191,79597,42082,79265,70610,12413,21473,35339,99109,54990,15024,83813,43023,10050,95132,80813,60688,80496,76342,13598,4329,26325,39064,74879,49377,82633,14162,44775,1736,87163,59341,21283,6740,14581,20317,33892,50838,55166,77694,69348,29088,6410,52262,59003,53779,61250,52682,67581,59345,29934,45274,26773,30868,14622,6267,76907,73142,31163,81663,10454,95326,34636,74092,63231,54162,1561,88125,98486,33433,66718,19717,18447,93265,14090,60150,41213,12902,85303,95548,57261,35863,93469,56330,19801,85173,13126,89584,42564,37089,91408,84756,54157,6827,93728,18289,29026,64861,54871,72227,70950,59314,49637,84433,26029,94139,89188,18025,7837,12309,91794,95567,62412,94268,53596,12586,14811,10732,48918,69373,34517,94128,49873,98627,91411,24817,69529,97018,40910,99793,24080,58849,89702,54955,11263,72991,30210,21791,10838,13607,31446,16912,57461,26066,44806,48678,96931,75558,17260,38676,42639,34809,48938,42868,76339,48980,10059,90573,20176,79710,7404,18467,41834,93161,12836,36304,92364,44334,69830,83037,68462,19013,27246,96729,63722,13643,32165,57036,76900,58930,53290,37346,61824,12826,91363,42094,20462,70322,86500,17032,40747,96564,161,73210,89190,61116,9017,80940,494,14679,44308,32179,37390,62785,74537,96368,35477,21009,66926,81244,38632,55976,9300,17111,54350,84219,77871,78590,89994,97912,71676,49831,7098,82611,40483,30328,25078,3596,14978,26020,18192,34261,60596,40006,39018,87028,19392,47931,59170,52391,99032,20077,41642,71382,25996,45431,94416,29051,20686,24284,79257,11778,9181,11195,22844,2315,27719,83939,45016,48847,27633,90511,52329,76915,98896,32515,98741,17448,10991,83745,79132,53167,16244,76750,20443,94432,86047,31658,71869,46959,17529,3710,12429,85437,29126,4485,38146,25504,54851,2696,7178,65769,44567,7867,97911,46361,75133,78791,70334,98657,71138,75886,19850,29005,15555,24896,42163,13917,53139,82934,72330,40812,58369,55409,66421,35578,43337,37712,67544,45554,66650,87318,16041,69047,84898,2989,11042,59234,61768,56364,11993,19086,21570,89612,37591,87042,75501,49373,89056,87201,17560,48201,19762,41531,31041,72279,11026,50813,629,32583,64235,16288,20105,21827,75862,83146,90359,33985,60931,11641,70648,28364,30785,50978,2454,18740,60016,76973,77009,84990,15433,53521,60840,47667,82190,31001,8025,67803,59871,68425,33085,76986,75796,24487,56339,32892,45900,2461,30725,15971,23283,58379,86665,40458,13456,88546,42886,25582,55920,96746,70128,33415,53597,17956,13169,59484,53038,25520,63304,43978,53324,28335,80259,73173,46905,69403,35378,13898,35768,72855,16427,26359,14687,73154,36665,87751,35331,32715,47364,58733,54770,59500,99171,91350,74757,58148,47693,56599,51515,51033,25597,29748,28306,62090,27061,36753,92497,82845,74903,31891,36005,27014,71349,11556,89619,1516,25537,45534,92982,93470,80743,91739,18083,3008,70898,62866,9888,29164,36620,97110,43812,27799,97311,3896,9864,81538,66518,96709,59737,40722,81228,45618,22326,94455,83424,87678,228,15789,67035,2751,24491,57883,2086,40223,52080,94588,36027,72947,19943,34179,4613,91924,98870,67309,7818,27012,52088,79325,81769,83933,4295,11458,16226,55122,24924,22431,37196,77380,40735,98884,54886,63120,17966,89957,41374,26398,65975,53335,4951,35609,50730,81973,55289,400,57779,88726,44075,41513,78716,20235,87371,36739,58758,86185,50953,57986,90214,39501,12842,76293,72123,47293,64173,67638,926,64635,87649,39272,9785,47186,14948,98841,95727,40256,223,74693,3244,652,43529,93513,97601,60554,51662,22131,76079,85883,74914,80606,80110,93360,72975,88307,87719,92661,69812,94704,63470,47423,75241,42008,22865,40675,822,12458,66987,4650,87307,90403,60447,25828,97403,49293,53836,97989,89531,70459,17910,9465,8294,36473,79664,617,75141,94595,32357,65249,45218,62179,92456,69287,873,16897,36544,11614,70043,60042,91460,20326,33167,57902,58859,24439,32607,45837,30371,76500,73194,30141,69572,38856,9058,38122,93313,76022,50578,82953,22773,70679,7261,65380,80419,91124,40763,50765,23422,13702,16760,44103,85904,41985,77700,55607,14910,11964,57808,40301,28997,93659,2764,95877,23464,2762,94840,37641,88849,83201,96722,60841,43866,34054,8775,8684,56573,9792,22607,50860,74817,1705,99061,73912,17670,52354,96057,19313,48254,83340,29213,17955,11035,6647,5796,69409,96353,48071,5113,99,17648,12735,64146,50748,57924,31853,16807,29079,50428,92576,55381,24664,11479,70703,74683,3353,27813,26633,4773,39561,94989,70022,16452,94915,28390,45049,55927,53173,31157,34343,82923,71230,18255,34859,95071,39290,94424,57822,67963,24148,15131,10110,66618,73527,26621,42274,69228,8092,56426,61176,27145,75820,38816,46798,81656,89879,12026,87262,30225,20524,88706,5790,69496,68002,4622,72370,3696,50349,12614,94313,67553,77585,88072,88802,89195,75834,10787,5730,42327,1530,18193,34166,88083,64209,43959,64083,66935,58384,6450,9053,34482,5627,24644,21226,53827,30218,31310,10902,12642,25762,54084,76450,69307,83599,95056,27058,16810,67733,17804,90542,15058,24166,46461,79659,93563,83865,9299,76247,33523,2837,84876,81086,3754,63446,50666,32618,78898,98564,53676,64626,55107,77118,28644,50884,96026,3162,34484,96155,82066,83738,73633,56470,87440,58251,38265,16565,4454,29754,73395,97066,88309,56329,91481,21264,50129,65498,48377,66501,62494,24018,34626,92054,6656,27529,30119,19976,45095,83553,66163,53482,35784,81968,83823,48242,50072,25624,62274,85821,27886,76653,9149,72424,71598,73928,78322,43069,23862,90205,79986,59647,24756,48106,15185,91938,96676,83554,93053,13976,3116,85406,27817,48542,68136,85280,15071,75906,49142,16659,59310,77774,47540,36676,25676,10527,71033,7668,39362,51687,28877,31735,59466,45773,97944,93118,65231,38997,32879,68570,31322,99387,95165,962,63134,42820,82518,47759,72300,11443,32713,63662,40578,81731,48078,58615,13679,28287,14206,50351,68602,43188,97104,68766,75367,63698,49464,85034,31135,80772,75648,9892,16178,96506,36381,96223,86114,14122,51359,55899,68682,33911,80470,20185,37227,10088,7368,63472,17781,42034,39237,30049,82505,30885,69644,58953,82687,73700,16837,51996,23387,3079,3694,71729,49428,90945,88400,27903,87360,48054,34331,89974,41401,42408,83066,81992,76666,48901,13441,96683,43121,9933,32280,92243,67897,33051,80713,65226,8268,68670,44215,23669,93450,18415,14065,23635,2020,65994,12046,34100,47817,40378,67391,75269,97665,90762,54413,89079,64901,81116,23547,3263,54699,21037,6919,54309,45499,48610,91376,32395,92418,67105,15863,63116,19266,44361,32231,29626,8606,19881,1275,59566,28439,44949,81291,1017,79354,90503,85472,9850,89183,22864,38311,75312,23353,58973,95285,93322,39195,18571,85856,15203,23178,48940,38859,67659,34530,61101,88683,42259,11545,76177,87782,27834,63498,97153,68844,15234,78982,45109,29987,12951,49838,85816,45621,97477,40853,51690,30486,17916,70000,36287,55764,96575,1199,88154,74840,96680,17412,55156,99678,60200,54538,1022,24524,47354,28230,79399,15299,59049,840,77082,85859,93857,32732,59009,42599,13689,27974,48096,88053,12198,16575,8168,69986,67130,81982,66627,44017,28431,18383,66898,93486,55114,5798,66159,38928,30933,34111,3389,93950,47068,97466,55580,63667,52429,59875,64682,91453,59409,27307,36340,29543,38729,66434,90186,60782,88158,36028,62238,50446,83965,29236,3380,73955,91816,35333,62896,15596,58283,65181,56941,48875,2617,26825,74210,44477,24559,51584,65079,95571,30625,66925,43005,37650,45730,37161,59097,35243,37981,93135,45313,17469,57735,9221,21612,24920,57474,93158,45574,9656,42893,63890,66956,78120,33443,5350,76983,10266,85811,97373,69791,39409,18775,54435,15038,84972,41508,77105,25613,56781,34575,78614,3582,75996,21046,52612,22983,40251,59585,92439,80120,70084,50608,24648,50865,69426,67834,28640,62731,79599,58185,79731,45712,70373,73343,11847,34332,21020,62129,28380,55437,54767,82936,60276,30928,17775,95406,39039,13524,66045,40531,18276,94478,28381,4514,51708,86989,62173,79208,8991,890,45512,13570,3137,98280,4279,78756,67627,44602,74008,69783,23332,50434,56374,17224,93877,50148,13154,2688,2882,94012,13752,47325,17534,40437,76876,73152,79865,20130,56493,29186,73583,18911,51727,78361,47436,12230,16400,5041,6216,62054,4753,62051,41052,30639,20922,43096,40724,92518,71617,68047,28293,65981,98574,32444,34571,98504,88116,21596,27581,18722,37634,1734,57932,36035,30158,78955,53695,29292,15252,59184,50054,1950,8224,5536,96843,73694,96807,57076,98325,1485,99726,60385,69452,70071,6208,4066,67404,46304,76645,78297,5162,21587,24608,7260,82400,67010,59164,73279,85501,32405,9670,899,31530,44682,99958,77770,78346,51593,16413,97346,92898,22400,73248,78044,47828,60513,52911,86112,47894,5389,22846,65766,17112,66521,30511,59291,6632,95349,5558,72231,64575,58439,57370,62472,67695,92407,10632,48043,96344,41635,2750,35576,40175,89278,68949,69317,72025,74001,65398,47603,37717,16302,2204,399,3991,62791,96647,16948,57736,12665,85417,6750,99327,44670,49252,70327,18816,70406,93471,293,45633,43180,40631,38133,26338,26096,62012,38863,87044,21760,66571,41285,81967,20725,6590,13947,84113,15579,21336,16831,34827,8659,47892,28959,87706,99041,22043,53899,30656,46897,29747,28074,86113,54900,40357,92112,21745,50357,38415,23266,10849,95882,75902,48118,19091,55897,37357,58969,96562,61699,95912,97582,57516,82707,88150,2152,40030,25644,76807,15102,84410,33475,45906,61644,19381,24556,15082,91030,65089,27015,84759,90931,46450,23664,22896,61762,53920,77756,3587,99788,88892,26005,65886,54585,87123,56571,95210,88823,98742,14832,90784,65787,85675,46397,60615,99508,48928,83557,70169,7988,97901,22610,73085,74218,17596,13535,13979,52548,72625,13550,7551,5208,55100,45591,45454,15619,12069,22898,95879,73066,90310,72219,17146,12989,27411,70360,83780,85539,74630,12973,10202,43468,44666,6749,14850,78205,34664,72397,55686,70737,77376,83849,99719,92384,73730,62676,39019,76788,61484,54246,23746,42635,650,21778,84085,74365,99695,46744,86882,96086,76074,68369,98689,45432,24739,86893,78342,4099,95016,85610,53567,99108,8832,46939,34629,2970,23649,56023,34057,67891,9643,35270,90611,24295,23058,6203,29212,32882,76598,11152,12705,71702,61672,34988,32378,67483,23334,24270,6139,54142,56818,63153,47968,70772,35051,77832,20728,5293,40264,46442,77946,66343,49185,96643,61695,26689,40118,24417,6599,11580,49611,36472,21615,44326,23624,27355,17637,68461,12327,61428,70496,39155,35947,86935,14158,75541,57640,99821,35937,47451,3959,39364,24867,31517,33073,13876,14510,76445,58463,83252,28671,63441,14130,49063,57852,89366,90390,89321,61373,26168,87388,85408,35715,75557,2682,19128,82270,4321,76827,2341,67974,38041,31197,31781,67774,75447,61794,84761,86851,60657,61474,60072,20510,77524,2239,26741,92716,99656,87514,23718,47698,75140,69343,5982,90363,88887,82941,92928,40049,13789,36528,25967,80503,27611,16864,91588,14713,7321,60715,96753,59524,66680,97112,90584,44285,61270,30803,68419,8869,35669,42968,40988,57082,47498,10563,90202,50335,8471,49627,3462,31299,83118,66742,72626,85467,24626,79960,77583,38984,4157,52651,51863,18349,34345,91136,21382,99833,60035,84856,6236,82525,9531,46886,21378,65692,57336,18241,42866,95868,74816,51827,23627,48255,82595,47895,78990,50776,33849,17417,14150,2219,24064,42819,61375,18527,85238,39136,46161,43355,38728,49801,70645,32472,8107,57885,45080,89572,16204,70978,2501,32364,56134,37,92365,37344,99048,20523,91079,4042,61501,63491,67050,44490,13465,18244,84828,25685,95108,31898,25709,92696,15786,17903,57701,55311,49560,50843,11494,96878,43299,87972,30918,40249,29003,74424,15752,91700,89393,70677,12729,748,19545,96925,4091,48267,8346,14470,46858,57140,10119,13107,25802,76321,62948,8860,76476,80068,24276,7069,95933,26452,17358,54520,19393,48092,87326,9538,83361,38759,7131,40940,97757,32911,58663,24537,8924,91462,22680,73207,50677,66069,33606,4885,23660,71105,9077,66268,60829,87038,88873,1832,32267,42392,33068,40280,14167,25141,45637,91977,50725,29835,11989,34687,99571,59382,83164,96731,64864,38187,77767,74232,5998,52751,58312,69012,48931,20998,49417,62751,43533,31469,63222,1121,53095,68912,63765,54672,25126,15688,50448,11202,32723,15972,41334,69762,92329,44765,68843,17323,57699,79400,60941,90023,89940,55979,55615,16246,41467,95476,51967,35485,91701,36493,23651,73481,10959,22112,19164,15379,18308,93878,49477,18354,37049,48879,46632,81531,67319,81362,87270,80202,53171,22000,72286,65711,33577,30675,2928,4948,12276,92098,30033,59714,58263,7554,96259,37796,23787,71963,47547,220,87265,81759,29336,94621,5520,29829,84489,98981,2110,79307,50486,19388,54402,67676,81950,51281,82431,64439,89049,9680,74152,97402,5653,2888,43089,56572,11774,25923,87481,35226,84302,27558,9162,77442,30806,62656,35985,15314,99783,95111,79651,91646,15224,59196,45453,97366,23555,89756,35684,55199,53541,25156,64000,95615,842,40577,94575,12031,12845,93116,17540,50399,28990,892,89259,88778,23315,34932,94669,22406,10475,84753,5828,76156,41346,5969,73726,25333,68801,10167,67185,95875,8233,85910,38260,34493,49863,34225,18725,18294,34784,49473,86250,53657,81454,17586,86546,1382,97572,53143,37567,58828,82748,52885,57871,32883,23646,11991,57720,70014,93379,21687,88436,37797,38697,49659,77901,67029,79398,63514,2038,45861,48419,34928,85476,57153,16579,56721,77220,39240,59140,93278,70125,28620,29015,65802,72783,24908,29815,90030,34181,43647,31252,85002,74738,55759,52480,50078,23688,98601,22343,93114,42884,46538,6681,68828,19241,26241,8344,77265,12731,67485,1554,72950,26084,6436,31940,5249,58864,87893,5464,90625,84325,10922,47020,82394,87384,69545,34898,92013,8153,12284,23639,14365,28062,74697,16830,26106,32760,33704,46966,94370,54832,28920,72965,57680,46018,79131,25634,22853,99350,85361,72796,60863,94133,3909,23949,92227,19919,73630,38581,49816,83001,62448,26905,65189,13102,1336,56934,87999,15055,67169,95992,68876,57212,56129,27149,12844,33263,95495,12219,48166,6868,55563,49119,38525,70656,53964,33841,53311,58415,70951,55415,77915,64492,94138,9763,14736,41683,66147,16373,77875,14775,73318,32447,92115,25408,3498,1209,62665,91314,34669,43819,17640,25885,70257,57555,83017,64261,93050,44756,56124,52361,88285,91954,15992,13993,7468,53069,35218,18498,50216,74586,70388,63453,87760,38339,47143,53231,75109,13146,40084,10286,44376,28804,78241,12111,99062,38757,36725,2032,98461,30361,76624,81889,75702,46872,61628,51821,19289,86529,68121,52705,40547,71068,16613,16160,91169,28191,3023,57046,32269,80361,91339,11189,80762,77541,95340,1613,984,25500,47360,30109,3,88106,54178,50757,20030,14067,31284,7035,56904,68545,39953,2210,44704,70145,56101,44597,99781,936,84669,34395,19305,36228,87453,42790,91203,19582,18397,1272,70618,88001,75880,39682,24380,84880,61562,2186,31790,8004,91860,84887,94329,87392,19122,62880,17742,77469,51587,35891,95244,49310,85331,4251,69151,12635,85409,73936,21162,18181,14884,54880,91787,74003,94717,78119,6087,64632,11890,14788,88305,8513,40240,10986,25253,38683,1938,16904,70239,43478,72294,87300,26157,27496,42948,89706,27933,50301,11351,64833,12517,5787,42659,55357,90115,53938,92480,2289,54013,31757,61178,70576,91834,28506,28135,64775,96350,66675,11573,15401,19167,61129,24028,89068,5859,18362,35075,13253,80334,42035,1858,53686,75777,61329,7879,5854,44822,15710,7400,1962,64287,67997,23203,97728,26123,97851,49368,6771,55147,68165,77988,20592,31601,23840,85148,29512,17717,19896,65354,21489,32448,99536,41652,9968,87222,8683,70339,61457,71802,91046,95881,32794,14792,29610,86305,4354,51480,53552,60457,12012,72090,94834,9282,65006,82128,14894,41867,64773,79722,46882,77879,34070,92472,1920,29863,25733,33724,80846,22536,26960,30837,59129,43391,20816,63717,22018,51911,84984,9246,1959,53156,72998,44202,13303,48896,4360,48342,30609,65450,82950,43465,76960,67983,42867,32526,37568,61155,49799,94067,77691,9807,78887,52246,10637,95135,14307,27419,7148,73380,64499,6931,63778,71031,23432,63606,85958,75020,1487,31918,98244,93528,30393,91175,23530,84208,74540,51426,53131,34510,38936,48722,21368,9664,37071,5215,55223,17494,43087,59618,87466,98528,32408,68327,97088,83577,5029,11559,41820,53533,27033,36183,46280,95760,10697,21652,3517,21843,49085,42457,78643,68056,90039,22185,32101,74946,98014,41846,20968,29009,62919,94937,23344,23010,53362,28056,21000,70790,99374,51603,42817,42209,74087,67799,34987,19870,82088,93797,5298,52815,48759,43637,42431,51377,72880,92438,85184,10759,77525,94400,7511,18976,38391,85626,13813,78591,46754,48265,47321,9502,46944,14541,79933,44835,96818,96625,56351,86131,3617,73393,96285,68146,5867,58317,85650,27445,55604,80614,44057,77826,83448,74209,38884,42519,18623,43235,66777,54357,29184,90091,32492,28264,86279,46751,37560,7463,7798,89985,89149,50557,65839,14691,95091,24255,731,92539,5248,73553,92748,10249,73426,47680,84716,22839,86371,23823,45949,1526,72462,73964,77077,42188,27790,63947,32981,97682,19903,84066,59803,28406,70247,70180,53830,68382,18277,33742,80279,18974,13831,18351,56070,96603,14388,22990,80570,36989,25055,76671,42229,47758,41249,53978,44404,80031,99939,13790,13936,71740,42477,17702,96258,65855,47154,59870,85082,49141,13201,41858,7899,79899,95523,63177,19867,62175,18068,64871,38182,11586,53852,90130,4635,37473,73867,94831,26992,51164,25150,59166,11930,86308,86977,73316,53797,55379,87569,10332,539,52758,17520,62493,75357,92090,87203,10064,34456,48415,28793,19898,24922,32246,64880,35814,33197,42546,8451,61216,75781,28598,17651,83501,17601,84599,84636,72484,31667,59628,48231,52457,64809,97056,57922,84782,6857,99429,91949,60403,94358,56121,97298,8698,13556,82917,55826,88826,85387,73073,66802,53880,53020,75910,49812,70845,95796,29695,92865,36476,81316,29143,8174,97468,35843,75100,31522,92514,13088,79411,16362,36101,90360,4869,82019,378,32899,90689,30381,3503,84739,51822,30530,21535,8246,31131,45743,58274,14134,84993,9119,30177,47613,653,77789,60330,99918,88028,343,23340,25213,24551,79846,44209,16312,39995,66331,25642,85329,8455,75338,3619,86810,71506,76425,80877,69390,92543,62812,32013,44132,15140,34732,10958,44755,53835,41253,481,40213,23612,44340,99362,15116,55519,41149,71097,72839,25021,95535,46463,49707,21465,88863,58971,28237,19379,60138,50133,45170,6457,19966,54534,48247,11803,56399,89358,36166,65298,47986,22159,46709,7640,43470,71838,43392,41908,96054,90636,19986,69108,67142,73030,91600,43581,15097,34935,64274,11224,9842,28379,9114,95149,13089,28623,17941,96897,70853,47664,33428,21052,85976,86105,51301,90530,58490,49222,55387,34663,17922,26968,70156,40771,65460,73433,19550,7848,81464,79215,29268,39790,36503,83539,11955,88331,92322,97431,77639,88915,55547,18275,30533,14144,43406,41123,42255,44495,86347,36297,55205,84557,57328,65579,39617,93583,62960,30276,15584,60205,96173,85862,76679,62241,48944,6719,12985,28160,70261,41101,89408,83369,52009,48651,5355,3199,3665,7179,78042,85786,47106,91341,46989,19838,77869,95039,11162,67480,59117,17009,13848,64553,78138,79022,15783,53839,90790,11076,48692,58394,74926,562,54330,23326,61089,5094,77194,92126,6816,51802,76601,1839,8253,24459,56274,96502,42117,97607,25516,74441,50928,48438,57921,2357,97581,78511,2137,80035,47373,12168,35737,50925,97384,14965,92444,80177,4328,6215,93690,1152,4468,88554,89135,58052,33108,32529,68133,89937,5648,38375,25305,22716,17280,20203,6101,53014,37616,65082,23216,98625,41242,85055,22840,18469,14038,25956,55996,49279,85670,54190,40110,91116,59621,97832,88209,19644,75173,16576,29968,897,65893,95605,44141,72448,96141,8017,513,14702,40530,20726,39496,10075,27690,22511,45858,74791,69521,43041,7240,74297,40855,10150,79829,23800,43991,43602,48374,47568,17507,75158,9107,57289,21716,24782,89731,48735,61246,30191,10262,35927,65027,29933,5574,75191,67053,59600,42992,4496,51927,3141,49621,5185,43192,73160,3270,56306,25033,69855,94295,28256,63672,96798,60,65001,12128,24034,88043,91818,6690,56380,96942,57928,17691,86898,39844,13540,47371,68528,66803,63823,16470,95199,69309,93154,92589,44520,37708,49708,27849,31682,89875,45416,9441,31978,22073,70088,81281,59858,29789,50547,99408,30334,70085,49125,76324,46609,85231,7458,4351,30248,12613,58543,27555,60885,25984,97011,53323,63158,83841,74484,58833,78035,37599,36164,53510,64666,51333,43279,23599,97353,88738,85641,59304,6594,49003,36172,74470,34872,62381,6562,27025,15090,27734,25861,19855,97002,90032,70574,67639,79395,45652,8412,30357,6107,66005,89993,92406,49675,78496,34772,56342,1744,46657,96558,60148,93912,3074,6197,37722,7372,16358,71493,74964,84980,6960,73883,21789,6826,91802,59607,92741,74930,21485,65436,8090,26514,86556,88618,76698,53468,33132,8440,40467,80028,88007,54623,32010,44581,42338,30088,22297,63187,89445,59526,91958,15893,34476,92720,26102,70221,83328,72546,30476,46539,67216,15313,33836,15488,76063,18627,69992,32421,18115,93419,39435,1824,61863,10498,88342,67863,75318,28516,54389,32043,68943,49181,82783,59487,5816,70290,68433,36477,1434,58787,50366,9418,22452,62438,27209,55320,34392,23105,13061,99192,66058,64391,46567,72288,46154,12093,2230,70822,92331,27969,45086,90965,83381,25010,33947,95074,82419,21968,64097,66814,28218,2603,53801,48263,3913,70358,58876,9387,2814,53652,42503,4238,54300,34130,15648,88052,56761,76802,63193,19244,30843,59791,72911,30223,21717,2079,61197,48350,68353,82373,70041,76829,50271,42569,49140,50499,23586,67212,87059,51135,71346,94502,97057,81447,7273,95543,15205,39730,13104,99054,55622,44629,17332,7556,59449,1351,894,57673,76558,40315,89914,61642,39683,62906,96941,58137,95073,93413,15141,62580,32386,14718,66693,28942,17744,7469,86121,82537,76439,3365,42201,83013,77671,84143,78827,94057,99310,57696,98843,23896,54588,19463,53246,9857,28865,62050,77894,17658,62099,19294,80876,28850,36847,82801,46537,13874,76153,47513,56359,74702,69924,98182,85603,44912,58095,10188,13283,3264,71404,3993,11725,82620,50778,68643,88573,32065,86992,10486,68270,58125,439,87677,23771,44122,75360,61676,25374,8109,61416,14882,97327,27447,72724,37605,89676,41914,75915,59380,78579,49780,57304,43283,10635,86208,65376,61384,61125,58877,46875,26515,41300,7704,34846,46363,751,97016,19750,93287,70095,62345,41084,61188,22679,7107,9813,84704,1949,76842,53967,91747,24865,53096,28989,50549,73895,9862,8188,72922,30659,14643,15262,42294,19791,57531,77107,22705,90668,71649,86408,53073,55232,66463,61656,92935,19161,37407,70903,98522,87590,10526,34459,30249,11994,61825,54952,15691,76415,9503,59109,69453,74181,87506,88532,25415,446,46601,46071,24884,6825,67748,4202,14165,74410,74599,96406,1365,64687,68063,85151,45570,12566,50147,73772,43034,1589,73688,45180,69988,35954,98959,81311,96176,33022,91288,4658,69220,19908,22277,15937,45879,40568,85464,28109,96031,81755,77035,99427,61415,36062,44837,38,39250,6175,28677,74274,69978,71542,94835,67187,17607,50234,96488,51472,1479,90787,53270,76165,71249,50196,52119,85899,28159,24682,52116,18999,80836,34818,9918,12617,38645,21013,16746,96648,40962,78086,91137,11125,15485,38978,97445,17729,1544,16089,95837,49432,30338,58080,11887,73792,29932,54091,41826,83088,83065,14878,77364,18862,66868,48371,39929,22068,34432,37558,54969,64383,7177,64073,29225,85623,92493,78925,81655,83100,9451,82423,35494,96334,39084,98562,25473,14859,55685,27342,46158,52297,72784,14613,32056,94965,82512,1118,98176,26361,42998,62943,76262,30017,78218,35275,17230,91525,50809,20827,1198,81872,24815,69552,63163,23942,95989,61728,78605,67045,19803,74906,67658,65497,81361,63603,9858,17545,95942,31177,69146,25625,82291,34231,4181,88681,5282,99425,95661,83710,48193,96689,55552,3601,9621,18035,68227,60767,69380,21441,54743,88418,4991,5837,29031,17110,17477,67764,70499,40659,71277,27000,52071,11535,59138,34684,65653,41586,28626,29978,45507,40887,94473,34985,88639,37695,24015,46398,90187,80135,68542,81834,79249,25288,87856,90994,20954,774,88657,79226,92160,35827,98542,42597,57259,88780,28781,55682,48238,35876,43136,10068,21280,55628,37092,73180,47973,2561,34429,29855,82686,27461,84718,39981,17969,57751,35373,51156,38942,86651,90269,16324,57948,58751,95620,11662,78167,78271,15761,15133,97360,48455,19987,47484,48579,69662,5597,76176,98134,30805,7797,34720,24353,21180,87219,87479,85258,74963,67135,47386,97866,37177,71243,75279,11622,89046,8088,51368,87792,86622,76077,45475,43831,89693,93445,89574,66642,15355,10620,55319,42219,88840,97567,60256,44603,45324,15382,80459,51623,72322,51390,87443,73673,58654,94477,14309,79444,92376,97547,77791,69160,23306,44962,50071,21656,16321,82487,52720,4383,23393,18930,64546,22999,96274,20239,85642,29211,66319,75134,84142,9708,77994,82424,7995,1308,97510,15639,37171,10813,44853,31309,41060,55233,76529,47659,5193,17915,61265,29793,61483,97151,33504,45668,53364,81821,14905,4196,86789,38067,23133,64857,62110,50518,50249,58497,85221,86771,84643,47850,95753,45010,28818,72627,37887,94340,87039,73551,6333,71231,68100,27657,51330,98330,48857,40681,52777,33980,64701,34563,68784,85497,99065,61000,74111,57688,99617,36165,56055,7714,96582,21506,72360,72180,50651,2898,56812,15162,74063,92727,83751,93540,52191,90399,71648,75168,7476,65246,32073,11638,89301,26687,78732,33401,13203,74088,59627,67651,661,30093,69616,35745,68189,32121,83541,39547,20333,55170,45970,71730,84934,11423,54372,76180,66473,18619,96546,66079,81678,37197,14746,96597,20812,1141,99480,15979,85957,30422,84394,11509,1174,48837,56051,14155,1552,63926,9415,88134,27715,14286,35880,21975,86109,69542,35930,46842,8561,34027,34673,44320,41330,89309,35353,71572,73592,42558,83615,20690,29716,74650,16278,39721,12203,11408,33370,99447,81129,81294,19066,390,22348,93406,97463,21419,64850,31089,27041,88450,6239,95856,82661,33461,11495,78099,26750,25962,91643,16153,93128,36390,6764,68126,87880,21006,1947,1105,38082,1807,25531,82542,68411,39291,17521,44582,88225,89598,53932,40358,95343,31060,7324,24746,86610,83461,71297,58844,53955,86752,41261,38361,80984,36717,5947,36886,5101,12370,92848,10568,37559,19349,30255,12234,69664,56612,41379,4068,81854,79162,27272,44331,59963,46142,32767,80564,33280,89830,80150,39454,30364,54345,60736,33362,37229,5709,10076,24604,57290,13903,48215,22984,17979,6571,4795,87628,21055,997,13703,43074,88441,60939,56993,59018,60448,99934,29341,1555,29814,42785,6830,6350,95748,70960,83314,23680,41044,87991,59715,25137,27155,66787,19770,60327,45723,71516,21024,16029,68534,50805,82833,94073,63319,36458,34602,6569,39852,76256,92095,24839,69637,36497,40837,88756,40993,36378,52915,39044,59552,55388,53563,2126,42797,5461,61594,68102,88617,7176,93280,56326,6604,42308,65815,81795,58736,79042,34526,70143,42072,75537,54035,47368,74819,14142,72181,4696,87240,12252,114,23467,49929,91070,46447,61527,4075,19483,68267,54784,39525,10365,24871,32714,24402,62957,49439,82303,47027,51128,83331,94211,74176,13313,34266,4236,82106,90525,7634,47171,47774,22590,63669,85611,16744,83680,88358,10743,7881,58676,2500,10466,63301,85093,33397,49539,10199,24412,9137,35502,35063,55624,80601,71434,45667,14531,72923,33837,22091,50377,32302,34926,12611,78893,31342,47250,49460,93994,68845,28629,50795,48335,76036,35346,57953,86491,80405,53503,38899,39849,31502,27081,19326,86343,51155,23481,70516,33587,12788,52652,9831,48528,27645,9804,12654,14607,16680,1142,50469,25135,33822,76939,60413,36086,83015,97168,42415,44442,35641,63582,97278,51264,43380,90951,97507,61117,94646,53293,9100,99481,37621,79527,72005,34645,1185,94255,6727,33598,89872,89947,99093,89645,17056,84227,1971,75746,74684,16991,23103,89540,20912,53919,71821,92435,31800,40320,75838,66396,14699,29692,46607,54464,78555,13950,82674,37095,2235,5211,92371,11967,69894,45962,29296,36519,13809,23051,44087,48192,3685,23955,82846,5696,53369,96547,95142,39891,81629,66624,54916,61789,61143,32412,3785,7831,60364,55195,5411,75187,5100,62661,35714,6956,24713,63810,8677,70631,27392,9677,25114,9520,49030,45385,29114,87898,57595,29587,88590,39698,76834,17556,5540,32271,19370,5004,30988,23689,14081,75755,2950,95652,49574,56077,86744,23845,39332,96071,69566,2939,31852,35499,63748,80169,9061,37155,19070,33447,63981,52201,84108,33074,90807,80416,78249,42464,85313,46648,94381,35316,65910,8311,75712,24048,10666,92178,91259,38214,47888,2382,17927,90426,35790,44729,8731,41728,59559,18891,2218,51778,50569,16987,31919,46734,93292,39467,50911,55946,7653,70830,4071,56423,56389,12911,22270,59694,5122,82178,50118,3183,10835,81537,14925,82269,12737,46100,47135,143,71212,6822,6836,89665,92531,74454,66085,49457,43563,88328,13412,40642,44056,53302,76805,94920,20846,31094,19878,90757,76576,75835,69301,62177,82704,23593,8502,82314,38948,64917,10172,19702,37411,95701,73195,75782,79498,70817,45690,90527,20878,8384,31665,89538,20939,19765,79913,22481,65992,68135,99391,82761,35744,74662,29131,21481,36603,84724,2436,20709,22841,10808,42026,77078,10260,77552,3547,82519,57825,41391,66943,56232,54099,59012,5921,31013,88469,1683,21686,86918,62085,3808,10178,14026,53181,10977,30718,6807,22917,8194,59599,22932,77087,20815,90374,89728,31202,89495,16812,79331,97970,55706,91695,44095,40348,16899,63364,83916,48948,94671,57026,64076,978,79448,58266,31076,47745,95508,49628,53752,11385,32298,69864,33321,81167,49166,48604,92738,23442,7451,69780,79748,59531,96362,29398,8128,63043,4865,12810,42330,43817,47950,66977,60416,64694,37437,75516,76018,43989,92239,15887,78971,80988,66765,9686,3749,64911,29850,8554,72020,73788,60768,37941,86971,48850,74793,69153,14598,1642,54339,18901,26691,82746,51056,12722,13934,28337,25720,22391,4298,32164,74957,90219,83190,9668,36335,24500,9453,82410,67494,78657,14096,38746,17301,69732,50330,89173,76175,23541,84677,43462,77420,49718,7441,52460,24368,57521,72348,49828,94687,83145,66858,71116,44514,17508,31379,3724,27730,83302,49264,66720,30896,99002,17783,14543,52057,20216,22798,62547,63017,38084,16823,49581,64295,26634,87661,40936,61372,92810,43472,73580,7526,95895,74898,63198,95770,89368,60119,78424,69845,18457,313,45972,44119,46687,29494,11965,9268,34970,79715,63486,62517,98935,31900,42528,40733,59646,44980,15017,47935,75681,57385,61182,39088,64317,95612,12094,27410,68398,38874,88390,94686,81773,71314,13289,80848,38185,74597,57041,62921,67823,36366,57992,71211,34090,40080,80238,21960,3998,56973,33155,24514,33572,70018,41160,11582,59774,80161,94434,88189,86490,42904,45540,65471,39384,90327,6501,68269,32718,10685,9522,91220,83900,77761,53137,69393,65792,3726,84028,45063,90620,215,50187,17555,14700,95428,28132,73282,22688,48609,79490,39122,26186,23441,33423,64371,99095,36063,6045,8180,59682,71497,66738,90992,39635,39040,70355,62761,5428,79934,87681,35179,63928,50132,24161,32548,56871,64771,56170,34606,60521,41058,50079,51975,29979,18679,36332,17195,63268,89449,97137,17620,15049,6630,25584,48401,27647,93290,90329,84253,67885,78489,76157,7624,16304,79136,65439,9057,92386,3004,99846,4274,10885,3225,64699,48960,11604,44059,66904,26925,33640,49285,58161,93582,32913,24543,77745,70719,98002,72196,85469,74133,7705,45561,54411,56039,23575,31698,12928,74781,39795,90821,80763,42206,42012,99396,54356,9298,36049,13624,10367,51639,77491,59248,70799,34961,40471,46936,44005,45038,51363,55152,11241,60972,74458,43744,22558,76616,68645,68412,47162,63868,3658,97036,80341,58628,3316,52331,25294,55569,86115,75321,17511,37181,57163,40956,77257,36193,4996,68018,25675,98245,75319,6219,67415,3600,35188,80926,18985,36852,58090,82456,97882,55471,41355,37000,12839,64185,90980,94068,31435,2977,14590,26570,7255,64052,21867,26251,18078,6020,57800,99860,96875,69367,71373,73656,68642,22553,44091,41468,22223,50780,21319,56468,79940,50433,21668,58789,4124,12779,30673,25925,36645,89859,5704,12668,90695,92216,73349,95866,70827,75337,53958,19456,64418,74137,45888,30824,68973,77130,8897,44667,40984,63942,52066,18939,87562,17063,94181,42799,56959,64839,75857,42197,94191,71134,87136,58994,36299,1279,1872,77811,28413,80731,98810,35922,13881,95046,69927,48842,65752,46717,35968,23719,96433,99168,38308,5513,4827,4582,18806,67288,19675,69231,39576,32578,14220,56435,88670,93375,31984,33877,15891,51310,1842,36157,27331,73509,58972,41023,64302,50616,95619,96429,65431,15984,42736,31214,19895,72577,52109,76888,31755,43486,15306,16036,24271,88967,55448,94869,94168,41952,41458,90897,53882,97083,5881,57757,43915,5269,26586,42406,21816,17634,5637,56879,63479,95597,98262,33972,14513,92680,11838,77581,80339,3267,25234,3983,58238,81091,16231,29196,65310,52398,71462,73407,23730,65032,50264,83007,75302,28665,39394,96352,57972,74626,78178,50325,74692,75542,63081,81873,86257,78012,3779,44918,14361,65780,62944,62327,11644,54960,78104,27384,17612,89431,50102,60136,12587,45013,21893,88629,15522,56331,22576,75798,32174,83028,77085,52326,74472,84705,2735,71052,96107,19314,35116,22662,41086,5285,90816,18373,25811,24067,95445,47672,19252,96923,17977,80055,92481,94545,98426,29259,11282,32004,39886,59472,50395,42317,33092,40386,77578,82995,86852,40038,26014,3248,34860,98309,52244,119,78360,59816,33697,62304,97943,26712,77217,7264,18608,46795,94464,19818,19842,2657,80625,99865,77147,92722,24508,18504,68711,9683,32173,53767,77747,50712,33776,3425,70078,19524,6843,1213,39460,49299,86396,75489,98005,81250,44368,67137,95053,20382,531,47468,30459,94951,55099,37128,68689,21659,83197,83569,43932,88659,5319,34194,34296,21703,15219,88811,58432,75001,25852,64349,10655,60048,48580,94848,1608,59602,94049,98885,93208,98125,77261,25263,6002,91786,63055,71696,49776,27385,5174,41902,77310,95859,41806,16688,60474,65144,8818,92217,84008,73637,30789,49133,45641,60818,94978,16490,55747,25330,93793,25526,88320,41566,49321,76976,11693,61016,96980,14076,40532,61273,34703,56492,77058,3484,8222,55089,22965,33446,99810,33010,49078,18586,36055,38344,62315,35287,2467,7976,12866,41148,92332,13348,90070,96287,28468,5442,37396,85283,20256,82503,40308,86701,865,65459,71872,66616,24949,98174,33291,62005,86997,57737,30729,62410,35725,75997,55904,80591,61691,26906,68934,78415,61960,35723,40277,73270,71180,20958,21938,638,91254,49297,42133,73888,37883,17001,31518,80076,20601,67508,52121,52859,13842,62839,70067,52485,45368,80057,21418,67306,79141,32784,61379,8776,35994,86385,47947,28544,56857,57602,86176,60196,12039,91532,2578,20949,23790,90777,36088,10668,14221,42237,31586,16434,61039,42168,17792,92330,35100,43985,86885,72479,33453,74418,57605,25621,80447,91635,51656,59904,79293,41922,10499,23659,10122,22453,14369,21056,93763,69906,5181,97937,38442,36710,47785,48015,1084,54966,60402,63057,7487,99816,1466,95348,50061,90634,4217,94822,44527,71407,49345,60546,73448,31107,4547,9406,84134,60473,80395,14808,24293,94697,87285,98826,17643,81213,4080,48818,84051,84177,53480,79860,62092,80712,89518,32780,42424,56682,39275,29676,51664,20926,79230,12856,81908,14612,62457,32534,56282,34775,72613,42311,79047,52989,40543,36446,47582,54501,41637,44526,42649,48675,98254,45269,31937,81346,16622,74763,57121,3823,65212,80550,17092,20040,35720,93476,14585,84349,63147,85068,6879,68079,34688,82078,60202,21011,15924,51294,82044,92667,66723,2169,65807,55882,92358,19872,16242,92223,80527,64016,39268,89326,61950,71849,97412,81504,79559,26731,24961,14248,67100,4772,87552,46716,59864,68112,13685,86975,5693,31731,52856,45952,47678,23576,49338,32214,79276,82780,30372,48886,10490,37971,74345,71191,37863,58988,83011,43169,65811,89362,36928,46924,15118,7959,43806,39602,53341,51891,73638,90923,65652,98304,68203,79995,99304,90120,89433,67443,37084,62594,3221,61995,56153,33223,37100,51451,80131,16655,8672,56759,42873,9128,82864,80353,20928,20003,76112,81748,75182,60495,3489,71309,49107,41766,59751,33535,63901,66424,44993,48762,4161,5444,32914,51500,10051,36573,34978,7535,18884,63380,3519,17834,60198,46684,55011,30325,13674,77943,82016,37597,24198,16445,12207,56876,15175,2672,73875,73246,94846,53892,62037,87144,75978,87932,68847,53101,9055,74892,62970,9357,62337,97721,24792,78857,34103,61917,71591,58648,91361,60195,61844,99835,11988,57764,31352,72540,14138,53684,9260,78942,89007,15278,34509,10366,29412,21897,58106,52250,68430,19105,50999,79971,23377,48965,65824,62775,16634,46675,96732,78662,58076,99811,84760,79703,88817,92575,66771,16522,86051,41546,2913,37819,60813,26721,41448,86423,91127,80428,10771,75441,22873,93901,33372,95841,11782,65639,25636,69962,14949,51976,53140,62882,92678,16040,94559,38501,46823,24029,98255,57715,36617,83338,99842,21805,85503,18135,3222,6815,70235,15620,61161,77947,32168,60375,13097,59616,11697,80364,8206,90827,68989,84975,17605,45903,55683,95189,87680,41853,73671,30835,15592,375,54527,13862,1695,34306,77645,40939,52512,68148,96696,17233,42368,43114,50070,53371,26474,45897,6528,26386,26922,63597,5758,49938,82832,11022,77544,12405,63202,41855,23280,35622,11962,87687,92775,69340,27172,21814,10334,70331,76904,64627,14483,87306,58686,62636,61031,61843,83023,20062,89010,63335,39000,64679,84151,2240,76116,22395,50057,63538,16251,9853,39267,54217,72137,80914,77296,373,30195,51378,86394,98492,73960,73598,13165,70215,63916,3924,96402,8627,50631,2708,68415,88868,20383,20685,46257,50637,20572,30337,4419,79852,46688,28789,37871,42016,76319,734,30499,23809,35826,95398,10407,28145,5706,54445,79457,41749,98078,24347,66535,753,41314,62439,64456,88613,12568,74611,73731,59121,74644,7588,30636,45985,58260,17882,99549,28450,57453,56593,13764,39631,59666,56245,63382,36819,22777,92156,26995,60088,48493,38074,68094,56824,88353,99351,82815,99814,64405,89719,41390,56700,66138,77867,94466,71632,54267,57013,40190,76581,70948,66354,86243,1932,16972,12964,42053,34610,93224,548,12867,83348,18813,41452,61756,59698,57080,41842,56019,29857,87209,76470,55006,58519,96331,84693,78186,2236,95464,14271,82904,17597,39498,39656,48979,24854,87085,35034,63861,61909,28050,65474,22656,66406,31855,53391,99302,93516,84680,53424,12220,41289,31481,65062,83052,39103,96682,57077,29157,98123,67406,98616,71866,36589,81080,85588,82268,82699,7087,5728,12579,81078,50951,66487,59493,81646,56104,98388,17905,94754,50544,19857,53516,85245,55031,24062,46551,28682,79679,39932,4964,48854,74622,58735,6377,40410,47125,87608,88709,59940,71492,64825,47402,14685,77891,22894,78761,71135,65973,8650,13574,17340,27876,89008,35579,33353,40793,23436,43901,55742,87668,63466,99022,62453,58665,61287,12515,84273,42421,57762,37935,46642,9985,95333,76534,20470,30520,38448,99209,34297,86319,37257,83635,95958,74689,62088,85743,44865,24910,24116,4586,93777,47580,17488,99230,60030,33470,25567,71627,26481,39284,48521,11220,70229,86990,75175,15559,24774,78961,87206,31903,34470,73031,39680,42765,84524,48366,7284,78533,84181,75452,12595,6351,84129,32353,4296,31815,78965,98013,14097,46772,70480,53208,85872,60376,89148,80968,25538,42784,55368,32363,4010,63068,37842,68982,86344,38810,33982,79377,28480,87064,48460,79825,59048,37831,24392,12482,1790,45427,60949,34764,66735,81444,50297,7677,91447,37609,76332,67994,25174,200,19899,32626,88216,46132,29408,98672,87387,18191,67804,34874,77374,15715,23666,90121,49820,31331,38744,99709,58862,7666,40036,5402,83312,66522,71120,73001,72572,56710,353,55151,71150,58557,33958,3212,18172,23238,78326,27983,2599,82033,79423,9235,44073,22746,66638,45630,64426,8682,61070,22927,49244,34508,72228,67064,83806,75300,86178,52021,1507,57797,45237,61886,74057,84022,96072,99985,43739,95738,27753,1000,80000,46706,55536,41603,14540,99060,21407,17825,61595,12884,31468,86751,88149,75192,59373,18470,66264,99475,84922,44179,48613,98821,43943,98632,21736,20277,57497,41384,69815,13858,51240,13286,53941,44920,8944,30977,38522,75942,84326,84327,9103,34616,59516,35384,29222,8436,30968,57266,52499,95559,90243,2985,16600,19082,88214,36598,6095,26107,25883,66216,22890,53179,73991,68957,23094,61026,24056,21956,98727,49027,12445,30509,3704,65852,40585,42499,73441,99301,52598,81299,81938,73266,69617,91516,37778,5711,20906,81767,84945,77303,79595,51425,28727,91851,99269,22003,60437,48297,24947,27928,93241,60122,70098,76382,67875,39586,7590,74722,19272,40670,72097,60530,81481,64306,50008,94004,58816,33216,58938,39592,97012,69009,5494,41763,20780,1509,40669,60246,3738,47,26180,53340,63699,4406,5296,6904,13577,89848,53640,72250,72175,56749,35437,89489,4121,89979,17858,91529,26561,53725,38471,42440,70060,93745,27006,34480,38423,25910,93310,8909,82466,28168,32042,42581,3280,59306,82241,27583,50097,76871,22359,88693,95798,72009,6044,10288,58269,66737,34850,8429,87101,13246,48003,53698,59802,13622,20562,96928,35159,66102,57152,77000,32645,40476,68190,89817,32202,87974,54219,94161,81375,52129,89782,48355,16044,17863,83121,92387,38541,81544,73487,20373,7478,70266,42985,3757,14674,28219,65765,54005,67468,36351,99801,64937,59513,16115,83597,56917,706,82737,40692,92886,82197,60641,4243,20772,11121,54268,45111,98978,56582,76966,54600,18878,84943,37508,58815,90092,33538,34967,29504,29738,85488,21144,55906,72434,46459,58494,27418,41942,37790,72865,29148,67716,70739,4845,48902,70497,65897,79415,11875,35498,12342,93289,98086,4044,95504,27462,59873,47156,86759,85703,94842,30899,875,96975,89946,26654,9875,27003,92679,94215,25270,38467,70262,97953,1180,67918,72037,68638,39808,93617,90497,52932,26246,67166,30602,49535,39466,9904,51059,56311,89808,71795,9496,35008,62533,6268,59406,82401,66167,9603,66773,90134,85343,45611,67787,75570,79453,1446,13957,10087,73595,40612,15650,62103,18411,42214,87049,19348,90210,3714,78603,66438,90896,78310,99590,14013,22215,36370,65419,17383,92298,98998,3387,86762,11867,38667,64342,61563,86635,59194,48453,11133,10742,35037,44297,53228,81147,77592,32505,19360,87141,71559,20041,21380,60976,50833,67256,85357,79404,29993,42624,43506,41357,41805,59554,26309,96961,97969,74732,2663,34220,19181,81083,60055,94950,52036,86327,47866,17121,10893,56252,4981,56609,41495,89710,36253,1992,4813,14862,8386,65952,35442,69558,75950,74730,76222,12835,14654,85835,94516,4443,17733,2610,66185,74760,2506,19236,90763,91299,34613,43221,28486,61658,73801,51826,52945,12532,40462,27321,88179,14347,27820,29531,6029,49356,20673,38967,7265,5737,88295,43275,93039,39653,29304,58232,48031,59710,29924,13660,61410,1686,84539,69557,84905,88274,25354,12249,53033,70280,55435,20141,40770,31029,15288,41857,75598,30856,97200,50793,59569,13111,36841,6850,79172,15841,44193,99796,80733,45662,25672,64770,80479,94374,17182,75402,29359,89769,22859,48859,91520,68431,8336,18811,15168,69913,27150,37393,92163,4796,9082,78765,69578,81109,82047,67162,62764,88234,73095,59313,42395,29303,3241,35732,49332,15790,67250,35030,66555,57172,62023,23268,29091,6470,66253,56875,11416,93589,94320,9505,58385,76774,48169,34279,64269,64362,12067,88589,24736,28529,6404,39416,95350,44967,72402,12333,31168,90517,46506,21149,65050,57826,7229,15834,64767,57356,83978,22373,35113,42064,21845,84723,83018,91597,53051,83930,42009,75423,41940,14744,29237,61659,60565,18856,38188,93907,79780,23998,12449,68181,13964,51512,33713,47724,51888,9219,64852,13419,98181,2973,73354,99333,32538,8867,84504,49031,49180,78585,97976,15240,85820,63009,68547,9741,97513,11085,35041,82942,65332,60620,93182,35130,26772,64981,54489,26545,30895,51751,17704,94603,87255,61141,1875,47300,77720,66876,40502,1451,55094,35367,19325,4939,78365,55737,96392,23911,67511,80011,35196,24231,14956,48233,4881,12584,59387,82324,56372,93754,49034,51139,26828,47090,66279,31902,72537,4513,2292,54481,29831,90471,1545,39622,25611,22518,90580,12523,9874,5771,60739,99385,53805,76047,41288,42125,76151,37359,93829,73902,69970,41538,75130,60489,69766,47283,25158,58009,12519,1154,77081,68815,62934,29645,72458,4231,7712,64497,91417,37015,6172,66688,89282,27724,77822,86444,45889,78079,55234,388,37547,86960,84607,74387,30315,3139,88834,39497,56850,88971,34889,38402,24955,17951,87662,93348,32092,40321,59550,86532,89222,53189,43899,39925,51998,1569,8811,53025,85182,75608,37207,71751,21139,60406,33582,42370,97925,57843,30730,3623,48588,6568,38815,15163,22053,63680,1357,34377,83842,11740,70974,57035,40647,46573,54764,36639,97262,4442,51443,35931,55111,64220,67722,38224,99126,15900,60242,54295,21911,93194,96332,91239,62522,56224,89221,27551,64157,24349,28918,94194,68585,91526,56922,12598,87128,35161,19301,43,19959,65882,24300,3589,85860,1344,73146,52439,64655,59137,20986,10738,51795,8485,68886,58072,38866,29232,99583,483,40723,1257,42557,91257,87805,52291,14628,57939,3810,21672,44345,33499,8661,86242,37037,99151,30834,12322,83407,23307,27550,1673,21383,23226,82352,7557,98421,74612,90731,95660,31148,53720,10019,26824,30524,71037,52459,52314,20414,99688,22061,94078,62818,30367,4645,54042,96954,5492,60963,4059,63775,83876,33441,52807,4100,15113,72352,49352,16411,63031,24253,76885,96252,83098,16936,84152,87441,62613,14108,54058,13244,61240,25385,54561,19854,69785,99044,28483,9915,2432,5255,37079,27827,24829,12058,64237,26889,11367,22782,55715,94706,49346,15772,37731,78230,38998,89209,84406,17818,50528,13151,73118,5451,18890,35663,56786,69711,11767,89640,20567,55693,10182,9193,3146,95606,70501,68293,56962,58434,82234,16096,52556,72269,86376,20911,5088,52390,15711,67853,1856,63797,7481,87877,51705,56916,15676,46621,7960,1710,77582,26695,95051,25129,99167,35362,66040,29791,50103,87929,93871,30514,13450,87837,55081,66256,60466,8872,50024,22902,91810,5668,32367,16871,94003,64578,53163,99646,37133,92470,54904,24597,69896,15690,31547,54685,44614,71259,23357,46789,15810,6403,36759,92451,33345,67366,73587,5357,31692,85995,87788,32952,99381,1323,85520,60824,73076,27167,10232,64290,13657,77246,53028,19947,72078,78638,80192,76680,59399,2061,84249,89078,71268,23622,45798,69429,37337,13470,26534,50690,62708,39572,8511,54303,4499,82571,1056,36219,37151,58768,3435,38242,79818,41933,11344,73573,4531,30938,70376,56859,32157,54137,64088,13918,55886,38170,43656,48640,3675,40838,35110,6103,35692,38124,5893,92677,35659,55792,85111,1068,22403,11706,65753,63995,41828,13182,44445,34008,24716,59772,49653,51415,6031,27616,30604,48098,89621,3393,81353,17994,35265,56086,56000,17939,4241,59734,64025,85088,64145,17207,33790,40901,36583,50562,8989,83674,65927,82706,52003,79656,39366,53446,11262,49039,61735,5045,1290,36640,35706,37969,41671,95418,37798,68584,56292,45793,81076,91024,46568,77881,2273,63353,98982,43373,5258,14534,14749,56704,10001,82096,54610,9655,49121,36491,34811,60953,30409,20857,57492,8067,44891,12706,78240,45622,71027,49443,23991,81868,53175,50077,65717,12306,35664,87274,9189,7838,22121,23299,20860,56230,83997,80193,28221,2458,26035,48274,53068,91100,81489,41622,52123,27274,9727,72863,62599,50881,91455,97182,72550,63907,65603,6491,83296,66203,5103,98337,33920,48492,62623,76108,17787,49480,13143,48319,96770,37723,33418,63205,6693,85307,42181,15552,91003,44534,40713,98177,35636,43558,86144,35695,97712,74808,91955,8705,61295,61042,75536,64943,84434,62281,94453,50937,79409,28076,53166,34357,74166,18681,18503,20966,85393,9378,57122,87142,48426,67565,46266,19436,69075,60788,21317,20007,2567,68138,51211,37662,11372,43713,60964,55769,57207,20087,4975,71670,27945,71752,95187,57329,74316,88505,78944,59207,41396,45281,54584,19168,16366,79784,28416,48556,58409,5403,19369,42044,35932,28300,11970,26098,11715,16355,39756,44794,9960,96307,94892,26659,61347,66788,51501,91014,89805,11069,94987,26949,88000,10676,59949,37927,55230,59921,94973,1271,81185,15033,68224,23648,18597,52321,76155,80136,35170,62001,27217,53204,14617,3919,43163,13109,85446,69327,24826,25744,18482,90199,58443,41185,85746,47424,59965,75649,93077,94737,15403,4288,88917,34056,20220,51644,49875,28986,18274,83532,1176,65813,73591,83545,89705,74436,4459,32485,29451,10307,77777,93113,73319,23194,15980,98302,66669,61986,22362,17566,3676,38443,54645,16520,70888,25918,11302,81301,626,49657,2158,70825,81042,33782,56400,60509,30074,83972,7517,64945,60724,28354,80340,19630,64169,960,23275,27306,71915,46366,50406,68609,46697,86953,82217,51529,4436,98429,67844,35465,74038,87642,36411,44708,92297,43314,77732,58824,69586,75785,65594,99326,53215,82765,99277,29481,29452,81780,95396,35176,82148,51029,71288,69853,56634,19384,99184,48310,3904,85654,33547,25403,90529,61814,44637,18097,97875,15490,5963,35328,43942,76296,48277,73344,84992,23497,46518,17585,63408,82745,50560,20191,74639,77794,61581,68992,16662,18720,73934,21698,71030,34908,64717,27629,90857,41885,30369,21081,50329,44212,13515,33880,25325,57330,38298,75651,1033,79339,32327,91471,49942,43463,53888,34792,66691,24331,72897,1368,96435,36042,55829,98355,17904,77753,5259,78161,37806,33698,89175,33336,43401,79919,72323,48522,39991,45578,23914,36829,82174,6834,26464,43360,7773,68427,44675,55281,92530,76998,52188,44841,50735,97282,67435,88022,62069,88336,43600,12159,93185,4038,65201,33031,30567,15130,66783,42919,45163,10896,78155,1011,67408,9256,95988,76917,87515,29669,47954,84381,49741,35989,29102,38395,39875,17021,42343,65950,15899,64752,88628,89105,32927,24613,55711,3765,10998,76830,46685,64078,32009,67084,95076,10276,75904,28437,84474,49982,47519,6726,93228,70020,25544,7872,98091,36702,60363,27612,84915,97957,67179,12461,37160,83595,61857,49959,46289,74535,78572,95864,11639,16000,10913,2188,41617,67792,47831,25290,80156,98759,55710,65631,36669,61135,80522,58632,66302,16066,24723,65781,72500,92993,71943,84525,59558,73863,83412,86004,38437,46767,38367,90594,76688,45106,47347,33121,57431,29210,66600,49171,40472,22942,97218,18353,7615,32615,3615,90935,36765,59624,27395,51887,19001,33266,47930,76294,79380,65385,89444,80261,17690,11548,21032,39718,20830,46352,48044,5495,81845,74508,27115,99014,48210,5348,71650,29010,588,73897,32366,38902,17765,71767,99454,7663,92393,3626,51468,67061,52699,56940,80052,86586,1682,94939,60671,58960,39174,72127,96468,63965,62276,93067,94036,69862,21529,4966,96984,35408,21469,827,50892,89982,55425,6881,61142,23863,68830,98080,7851,16901,89747,61156,3024,6179,56556,33872,39993,38910,65689,80285,27838,52141,20394,90278,1291,93439,62204,1853,79886,72723,63278,49772,98809,36959,67459,74776,40844,34555,43638,99148,58074,61758,9394,43813,94972,12091,99243,83891,34971,39431,4150,3472,42702,84339,8737,19188,11308,66881,81824,12360,49094,76656,93702,91214,78275,1205,55263,16193,13891,13177,51783,45058,50464,94823,76806,34497,80683,73485,87400,96735,66502,2332,28786,42601,27872,79564,94857,57658,41643,83758,63687,30282,87511,6503,50139,93634,91719,22565,29190,55944,40971,9897,79954,19408,97180,61367,4893,68377,43429,75519,45423,26595,366,53381,33431,9852,23279,60669,99911,4430,72718,75517,99231,21143,97678,65977,55191,49681,51150,94483,20388,76437,86764,63239,6611,191,7722,81221,29306,29389,1042,96167,78144,89949,23073,61709,31627,4201,73236,16543,16075,28764,84592,84843,97053,94583,46362,33261,50845,72081,10170,62117,78769,28511,57091,75491,9768,71615,94221,3527,50210,77982,26799,30239,31761,20164,19247,17893,20339,98478,20932,47278,38889,61165,2397,44138,82450,11612,40566,41931,61153,14908,99112,36951,66272,35235,94647,25466,6592,86595,54368,61257,31722,10062,44100,109,57315,66890,43651,79342,9454,11515,62029,1018,84562,34760,24354,59860,12730,80329,53850,74119,75975,89995,28184,58907,15855,71929,37928,20334,98901,17827,69523,45153,72069,9051,28034,39023,53267,62477,61475,35280,42070,33860,87424,73238,32829,87257,39458,53297,8032,6091,70443,32857,8225,84657,11404,26306,28039,65492,40728,34000,56175,26896,51591,52279,84851,94116,6855,38304,31181,94401,51666,85954,60397,28925,4867,61312,54844,25933,2145,20156,61438,41030,60481,95751,27096,97401,90688,39880,85312,27268,36875,29273,84290,27008,71472,42324,32944,24470,58,717,50470,88781,78984,34115,83765,74189,12816,34901,21746,78439,96563,74295,48479,97231,24092,40799,15243,505,90378,40842,66070,37752,77784,94317,94959,28,28359,7814,33864,62817,47891,13737,82116,41118,50260,35909,58646,82171,43224,70302,92569,41260,35314,77308,65233,28836,83677,56992,31338,41276,66277,99363,80346,6812,67736,12782,11843,72623,1133,12407,97215,27543,81683,88997,71356,28855,43938,82514,89306,60167,52802,33034,80980,81635,59792,61261,93752,81107,82164,1194,60238,79824,11651,95849,21470,77152,33814,58795,41183,94580,7692,3755,93685,60822,17152,75189,36131,73174,76675,84264,67664,54700,3456,77395,81857,67157,49240,10139,32407,28562,42677,37324,80985,91441,78541,356,30642,56099,69883,42325,34471,29568,82908,41349,38745,40716,31344,53814,64598,3832,16459,91309,58206,31260,72405,48893,42959,71994,71322,45197,996,44848,78800,42629,5611,58596,84039,45597,52030,88238,29655,20281,85878,11387,81260,84976,14275,814,90972,46454,29178,92312,58738,21797,8678,67371,53373,20316,52654,79160,84598,64365,6451,676,18103,23835,19390,93990,72186,48870,6024,8228,44474,52277,84777,87458,80069,73508,52769,30433,15311,75697,49794,22144,62307,387,43330,54396,66885,8594,20039,49586,82648,49194,87376,49324,17168,94491,40340,75742,44324,24044,27802,55888,71762,41836,33024,94217,21217,32245,13723,65196,71746,52792,496,76300,40780,80149,91988,74610,7852,3470,14232,52627,78744,56456,82470,17208,83948,54209,79010,56923,87829,53999,75451,94555,57066,30855,72745,57120,34076,9236,5358,52880,23678,93008,65597,29572,12236,84932,81085,99902,33984,21105,28048,32322,8820,32152,63105,13076,26501,45973,88866,53379,95869,23174,14533,55501,40384,4418,14824,30123,68251,96577,18091,66266,66727,97157,29643,88763,59537,65325,48224,87533,35463,16960,76455,61480,97317,56897,29407,95251,75757,66296,28301,19081,68967,55991,57663,41614,91912,82369,93876,8742,37338,99815,86886,60451,86171,252,90488,21163,71961,69892,30185,20514,72377,33858,23630,57490,97811,97329,4169,54989,19771,38178,18382,52735,38994,50743,43433,97526,38163,90140,32103,80697,63535,1618,19267,31845,86462,13422,39188,43608,7832,32057,14198,27421,32885,36123,94089,11820,35884,60825,16539,73758,95302,73851,94935,5530,76053,30655,224,69634,93042,69188,88357,14204,44655,98713,42186,90302,66517,17019,86814,97143,11248,75647,63228,61830,22233,62301,33120,27717,58177,97688,27324,45050,63254,35257,81702,30880,48200,51517,9551,77569,19951,70755,58253,96695,39532,34485,45483,14911,1679,5422,15509,79512,40847,2687,69298,3648,17878,63611,98952,91560,64531,86901,57549,73483,86522,60777,48205,34693,75473,64612,90864,16995,69062,57016,44565,84916,37098,9634,12924,67776,55376,17860,21901,10774,68587,56494,98046,12080,84334,19892,15353,7001,86,29630,13914,57161,90618,88369,79593,95456,93892,3792,11668,39769,26462,96532,68364,67819,95228,72019,93904,25181,19596,68623,72446,72313,18537,94756,24364,66784,88335,7078,88643,16616,67806,16789,98382,31204,24994,79007,27504,35926,98638,72691,66219,368,20018,67329,8947,31540,65039,81423,60418,90357,37986,25600,52446,79557,83830,59756,60898,24830,18640,63423,81123,98681,54148,69583,87224,27299,51255,44796,17600,32920,25056,61057,38194,77390,68575,86220,77670,20879,52059,62995,92534,76178,85907,86699,94279,42019,95499,26587,84995,82744,78062,21209,30901,20413,56912,28225,28893,39679,7819,78491,96312,72780,48016,68386,73346,40032,97576,10281,91344,40972,71502,21753,11451,30047,7030,9308,28766,23369,84155,70256,40494,29720,38000,24800,47383,59827,26701,61130,37803,91922,6356,73229,38691,43414,9150,65263,7327,80928,91718,42203,60446,49706,21463,89159,1216,74395,59026,18916,266,87197,36574,78646,50314,44258,61433,65122,99616,99379,98590,64175,21538,71366,28173,69400,31542,92931,30871,82350,31854,26758,99165,78763,38688,53981,93498,6257,43140,37671,69135,77026,11400,60353,44332,56913,91022,94050,59478,1844,76614,55129,13290,38288,84368,3156,72282,59403,73438,11931,29884,77202,65691,34705,58460,97111,117,65569,45203,83579,57788,17653,3177,72478,72157,35385,8172,3553,30439,45674,36878,6986,89712,33312,11280,30138,8395,47158,61283,43466,74101,33122,90519,94720,90782,8700,75967,48298,2744,6429,85410,75314,42750,11476,85056,36671,76068,48568,96369,85984,77269,6572,53493,18064,63443,1317,97160,62845,40513,58335,7682,71618,24860,49514,99642,92882,31888,58389,80572,73857,11987,67771,99967,68436,35433,22088,37118,66323,75859,14719,29204,40359,8632,56748,11498,79304,37330,50255,29741,41093,1467,80349,3571,56059,70361,18866,51922,90254,14207,43340,81969,39704,46481,79133,18610,8028,43877,11491,45771,6434,92956,82835,60480,44506,43070,79135,89185,84874,6229,1102,38638,238,67448,98974,61323,56455,30164,48332,32820,19417,88153,19396,45081,12609,49004,55662,84214,86300,40583,34173,7465,55197,5448,40496,28773,58496,26142,32390,25297,34148,17335,61091,5705,51575,33029,59139,47065,38686,1874,63983,28561,94238,66383,74901,37448,75278,1963,79771,31866,66594,48992,99453,89590,64894,37080,70584,21884,74839,30250,30955,43584,73529,84763,20295,52846,68347,61328,70924,20,98830,79697,43145,21750,68249,27250,102,50676,2120,59991,80389,88161,91321,77587,11927,72467,67946,84817,65520,63320,49800,36001,60298,91888,3440,89460,258,41361,18680,47353,87797,11865,57598,23705,91405,43770,43823,27018,70760,11068,54812,29563,83309,8904,65120,88202,29053,36092,31364,15812,86142,61054,67488,7162,20299,56333,73009,29742,72414,1208,24618,59823,49193,50770,54590,9900,62682,96145,96758,71155,61957,64233,85365,83711,75351,59504,39032,15300,30841,89229,72958,31655,17504,14410,31528,7144,48872,41618,66439,10017,8005,50253,48081,74328,85047,58242,49418,37173,37692,25993,83869,17961,99182,60234,77289,85622,96010,45362,62508,74375,1880,6114,32317,81892,9291,5719,91320,9329,40375,94267,5462,42906,37934,19642,66572,68286,62565,35264,64207,43767,60597,95528,67228,78620,74281,53281,89519,15260,67677,40369,5380,12693,43165,55914,83473,14959,4057,4073,61121,73220,75358,8006,29378,43743,74208,2111,15268,99275,51874,90929,99857,60318,86384,52605,8979,81758,83681,14694,31925,80976,78028,65451,54951,59115,19718,43357,68754,41319,31747,40316,83428,59966,13354,73132,50640,20983,28114,24918,83110,32113,70439,54605,46040,98575,81674,62168,38643,48658,85061,27469,60023,97732,22775,68245,24536,39050,81533,79107,86245,90715,27490,87654,87322,54252,87472,22432,43306,74557,69365,69902,99623,61982,8505,74788,6164,64860,97725,61765,17188,39354,29902,25050,25903,73227,33975,31334,3951,42684,31025,2734,55727,89755,72824,91034,17837,84088,51030,74955,82986,7218,6938,3814,37201,87114,71096,87328,96150,14626,39154,50288,7935,14594,43268,4357,37325,7928,23478,558,56265,15254,1773,68452,36174,5139,2369,30870,80672,38270,77037,68494,55586,17351,77219,29573,34570,42441,13270,19032,72131,87780,17576,43456,15150,63331,92282,20059,15293,86186,44663,10500,42769,37979,67469,58298,17843,2195,21497,90048,64957,1912,91188,47238,44792,97199,19404,74852,87810,93796,2002,90103,67655,33824,26278,56604,41602,90429,68405,3866,28116,78994,90561,1366,43556,9217,61084,68078,82994,84297,17619,94797,17936,37142,37488,90699,69797,46464,83887,83689,16268,37839,88250,9275,22229,28632,93846,56419,13684,60183,4641,11361,70997,93568,29239,55035,49701,72859,12667,69709,27143,44116,63267,16821,25777,1924,6547,25470,79080,55208,63093,78117,81988,6946,56662,6932,86985,9473,45562,42046,87735,51542,4846,2262,76990,12625,25572,1716,72892,47306,93178,53787,16435,59630,21635,99645,27350,72779,57144,39529,15591,25522,93181,85760,42435,5052,9695,15913,93847,46625,97772,19288,51830,3441,11691,74786,5074,18978,60355,32611,94048,18405,5184,61211,34854,75787,40596,43987,6097,37323,6314,82504,60105,4109,28268,36629,90018,57243,21523,34682,52289,18453,53943,37924,19135,89522,99626,68555,60004,88021,59825,72989,77197,35000,269,66945,82139,10870,32918,46828,90093,87796,37602,63521,71940,55093,14393,96919,89996,67766,52176,80051,11420,57489,31430,39821,26243,82753,10556,77088,83176,9156,42540,91598,13861,30833,37387,23264,74959,79685,44870,25893,69590,95447,74754,70663,6887,41386,40068,88785,62686,98465,15400,88383,76438,69353,15881,71891,60502,67197,79578,19921,99979,62206,87047,82136,38030,26487,58793,85842,7681,73889,12153,91967,35398,32473,78837,98922,60511,1010,20645,21215,72275,78683,96610,97190,29605,26887,84691,8544,22193,82742,86066,83405,51993,29918,79625,57070,72701,44185,57031,13022,5680,29919,43601,9482,13742,36393,66578,63571,22551,57334,40884,70378,4701,54406,37711,58634,55836,80464,6477,14051,17264,41896,94781,90652,72511,63873,83785,27792,23161,97978,21741,81071,82161,30028,23069,25902,36090,26967,96272,74547,61430,34293,94693,66324,68497,1546,29618,65461,94833,76586,21381,25170,32801,5596,7803,94465,50867,49386,21448,41567,57448,15245,96584,83596,14955,86301,94314,97097,63638,68484,67594,11255,57094,85445,19343,94537,83885,16079,48615,9463,49455,32070,34338,13173,41003,18607,4756,16322,53268,13739,11203,16834,58647,31078,52908,2575,37028,39061,52988,92944,85395,46379,88482,55674,82018,36708,14778,77168,71238,82167,8533,46610,96516,86596,29719,42637,40443,70479,28123,3882,25995,12952,35141,74481,17221,7297,59006,19592,52142,64640,65013,43345,13215,83055,12841,35662,56350,16690,6448,45788,10831,39982,7259,21117,68172,45592,89674,25971,98301,6744,5069,96125,12212,46430,74382,99580,83968,58377,50045,37470,3070,45123,99412,90505,37930,58351,71657,39452,73151,85067,20961,30653,38469,1540,6988,83099,48848,72258,92006,33981,73784,41197,32758,84048,57074,357,13683,67298,23462,63951,74555,11392,23999,6991,20505,47567,46227,44359,64033,50056,66768,17043,96609,65463,96778,84291,26172,40790,96036,30897,37183,74682,21034,47642,12399,10104,49184,58120,99924,57335,25839,78115,98491,2670,32287,88986,73924,22385,98474,83619,57584,58081,77102,36892,84109,32458,55041,44151,1902,83480,92118,40556,1857,17246,17281,78681,21353,23761,41047,87691,49127,33434,44901,30967,65840,83365,62205,14039,7337,93608,42212,9615,62391,22204,52133,21734,75058,86287,56067,288,90376,71199,84059,60793,95829,32452,37263,61535,99512,6302,16715,8209,92063,91195,76309,64311,66349,80600,15930,94218,18675,16408,21712,12310,48403,80228,11073,84209,26145,72641,74392,46307,75528,62228,37195,48042,49155,41653,11753,53085,28332,83671,56032,75699,47438,19368,43612,27970,58870,84473,25367,77482,46369,53109,94183,21274,58970,55535,33381,28014,68041,51544,83059,46912,72960,53263,1635,5622,43276,2257,40289,54488,58466,84416,79914,22903,79332,17548,16545,17197,85477,58894,52986,41634,77339,96702,34608,8888,89385,78172,86029,81053,16854,32031,9822,19434,88477,37392,75065,12626,7498,61771,96277,94788,56249,35459,36551,93019,80102,98237,42859,39343,4980,24704,12426,54197,62871,87321,26746,20243,85136,16152,37901,75831,31234,71721,99149,77108,96755,1498,95939,12015,43828,25649,84957,63059,38995,82728,22508,91475,5326,3874,53565,18737,11350,94090,6359,44311,8771,26982,2546,44923,97187,88885,74987,7407,43984,15348,80381,79856,32622,55380,32855,58837,55783,18509,69305,30907,5656,72874,93969,19237,47119,29681,82567,91557,51178,51755,27807,15247,95591,11863,13425,39315,30536,33181,99077,20369,20826,6874,11467,61199,54085,80659,47703,56910,32184,43085,99775,5352,47721,4021,75234,97873,41793,89481,27830,23631,57856,5617,44015,2514,59077,29529,67821,72817,73281,55370,59052,71075,61473,40861,12119,82443,21512,16848,80622,22115,13735,55515,4759,38043,64730,65512,9828,86096,10682,74745,24660,33079,25430,26284,55541,8012,91897,19059,83815,26913,69805,5577,12381,98124,92880,98414,36960,17542,81165,39176,22578,5707,48292,7438,13959,1202,42469,99118,44433,94423,99493,66633,77752,30261,20702,16375,74309,29368,88531,69374,65363,25273,4843,94912,16002,49369,1032,27584,94307,78211,91913,13007,50408,61999,75901,45239,82327,23330,10847,31444,49773,82037,10370,84233,27108,39070,3369,74924,20964,98805,60755,92899,38779,79390,6906,46256,84246,23159,68288,45340,46793,22995,36223,12648,35043,52339,24804,43964,99996,6657,91424,68909,68592,69308,32149,19940,82588,80634,55442,64270,10763,76510,90719,23966,75497,57150,82690,10140,1386,82757,87093,83483,94956,27339,70929,84559,44576,2223,6108,35189,40875,98020,46099,10570,71400,18487,95184,56607,92283,2353,96400,80070,39604,37617,74604,76057,21568,19354,19953,29765,34140,53578,94598,92975,5849,7543,34171,99785,1960,48832,40028,97760,35123,99732,37260,30596,40601,82002,45493,21063,66139,32747,84487,92026,73720,7231,50472,71359,33210,38845,40215,65061,71836,10132,53385,9709,20804,65160,25457,20590,79428,91608,81348,98604,27401,35761,32090,21850,66099,43050,85052,61108,36125,51117,68006,23560,69755,83734,33033,8318,43911,2233,48724,15575,14930,96599,16970,93943,92697,9142,32213,18590,13495,29097,89520,51009,23808,99736,12368,55564,40557,51596,2865,55335,13522,19929,80411,89927,71830,51354,70306,91334,54004,60079,79727,21574,85939,8552,17543,31292,37418,86972,21542,87002,21965,55949,39990,66580,42504,81571,64374,63693,81191,46103,96196,12564,57438,77034,89835,13804,99328,64007,67883,43182,18076,95313,12698,51836,44483,52620,69568,42173,7821,93730,25317,97255,60442,41233,9530,54126,1119,86717,28094,99498,90805,56006,10804,30839,6880,76331,33380,72850,681,91331,16635,69077,35162,44773,96861,95743,19633,56522,14073,12786,32953,1115,42588,46836,93664,55484,4272,36797,99529,65278,62669,79576,76663,54982,90004,67478,32451,2059,13955,79158,34819,34828,23545,99720,95113,34813,6177,74628,10825,22689,77228,90323,78553,99841,94515,73504,82985,89115,32574,94986,8548,84222,65177,58203,68207,10042,89963,63141,9450,90188,29271,99999,4180,27229,63421,23491,6198,95608,9836,53831,33127,23314,82404,82510,19639,60487,25750,64490,88152,95925,57127,81168,88942,85741,99249,76130,20257,29954,52511,45580,54609,1416,30477,1044,32105,44113,86867,92204,47117,85081,92798,60560,82782,81004,89758,20979,97737,95379,78918,96322,37777,22858,33047,37539,92996,56183,4775,11997,12285,50889,1689,69759,54879,21499,31136,18698,85553,18784,444,1145,27975,26723,32639,70438,66101,33624,15520,26583,34877,40891,4559,81212,38223,41849,35506,7325,36927,13805,64629,72575,60174,92739,60730,67465,16771,78341,37157,97416,33887,9068,55046,3507,69248,22768,36943,55752,10844,71241,60018,22340,66037,89647,30020,73387,44634,90749,7522,63659,89825,21061,46145,49756,51475,17801,31710,85473,84822,18702,78697,42297,1717,9896,71637,31254,1753,73789,8733,58366,58285,81267,21631,6722,14281,37513,94147,9549,62875,53154,45746,94981,58922,66852,44362,14337,57860,8382,45465,95784,92763,90662,85166,11426,54254,8307,86786,73865,21042,81553,16057,6016,34605,32048,16961,31366,20225,93258,79864,5481,72041,4987,17633,32067,71413,32108,70463,89919,29656,57181,80316,25594,76126,60904,94121,36249,93672,56687,26382,58627,29443,72936,78298,6573,24281,36392,75039,41998,55065,30692,58279,21365,95715,62917,13311,99064,64637,54792,40717,68622,33045,89617,66689,66400,81914,76854,76025,54903,41915,19060,56600,66567,46723,58483,28610,17272,10423,50726,75706,9997,13628,38460,28964,56210,38159,90834,78655,73628,96655,70730,71858,49202,12487,58133,63694,31754,42733,86563,45438,81794,76890,57295,43027,56538,96220,86188,50505,93700,78129,23005,58760,19930,16050,8518,43570,69161,97245,87311,3341,46346,91828,39753,39736,42855,81682,33246,28392,90822,90966,58682,79655,95045,61652,6933,24525,44959,10402,983,88545,61345,22860,68546,81245,83256,23993,27449,24928,57369,52628,79474,8802,86912,63148,90651,2194,82639,65211,82666,32720,48810,13159,52799,36575,87048,89353,46622,69880,12096,31151,14055,95014,75575,57809,58352,30406,37716,91798,10715,12708,64792,97534,28885,83899,51205,46300,55911,15950,99998,48294,53079,76691,32937,46536,11854,60058,49920,8423,66049,77020,95243,66029,3736,30525,97812,71623,69749,1294,79709,48747,2470,35562,98635,75199,16385,68890,53185,23940,75784,36859,25846,26,26626,76875,67315,10836,57472,53615,23889,51011,744,42378,74943,35412,95776,4402,68247,62999,89316,74220,99152,97224,39289,92045,38420,66082,2937,83329,25579,6170,60283,80317,77495,89157,50662,80443,66871,11787,77852,19342,99490,6910,70278,36931,37303,19518,72108,7466,94169,15225,88949,31447,28194,24637,95835,29221,71336,27137,381,97592,47057,64127,64766,47473,9980,16118,38972,844,81808,28248,9477,95920,84211,72836,8701,15901,33227,91929,30333,80357,33298,80849,2171,17393,31942,19286,67444,20223,56202,21040,56739,2534,39478,82911,91563,67008,10691,91605,75296,55749,40455,55389,46476,39930,59514,77912,19944,24919,59769,33873,55559,85721,37761,54422,9953,64946,13153,82042,17052,92820,8996,67372,2517,85242,89150,57592,34950,61140,2757,31081,437,69456,657,79052,32206,61792,43754,74509,96133,55246,20829,71610,85347,30622,73981,15858,68131,24806,17763,20410,37600,18591,38574,20907,52270,97259,33807,11160,87103,64081,28481,84791,19905,53559,28919,69033,48871,48316,17706,84695,33095,79878,12357,91801,90744,97586,28441,67194,18461,40105,59420,70308,83159,97524,53610,31200,55109,26170,42228,92999,58764,78022,66841,2427,50737,53337,25673,67678,74128,33921,8497,37318,18113,20365,9565,32805,84226,87574,37144,31402,7676,76286,91717,21663,79985,49376,65806,8800,18381,55352,59136,24451,92317,89918,71021,79177,98367,13555,22793,10569,18525,66311,85394,54908,22161,74843,61785,30794,53078,6006,28703,69716,72763,50638,90027,25,71770,45753,47704,86306,27861,75580,49179,37873,3071,31020,22345,39156,9606,66667,45729,47066,82131,61174,27894,57277,56118,87088,85766,14526,22202,79310,73345,52958,31371,37281,92187,75379,462,64718,69582,24702,25819,22069,22105,99255,93584,38337,60158,44742,12646,66181,52156,63834,4439,36112,92047,81263,87811,76856,1486,33644,39091,9993,2766,7170,23762,67214,70144,31302,20549,55134,80927,75054,87244,25102,11357,37955,56826,27301,76747,39590,55558,58691,53417,29470,69016,30981,44013,33651,42275,9115,74495,41202,3981,52530,15580,63045,26739,32986,88429,80425,62142,41021,71442,66295,81488,5369,20786,1833,36777,48561,76959,39915,6120,85007,27313,62814,72946,72901,5061,79989,23970,38564,1851,9202,88737,24209,43545,78524,84103,3597,44470,92080,85590,58062,76765,42097,33038,34353,40766,74866,71234,24745,80487,85691,61939,91547,37061,47975,49872,35183,99786,8447,11576,33252,8770,79456,64589,10930,77542,53414,20647,56595,7561,13849,3846,47633,5192,43793,93134,96315,38700,90325,49399,85529,12361,34607,150,53694,51123,95387,3254,82296,58014,56472,22136,69850,44544,86350,99609,79068,33043,90460,29984,98162,17810,54848,28087,59099,15359,417,81850,12021,57124,29588,3662,91236,45273,77931,7723,77164,84924,51382,56260,88656,73226,78547,83141,70185,44661,1567,63845,26513,78939,17641,50759,91543,89941,67845,52382,31429,11216,95694,68082,8113,35958,52849,27362,30708,97221,85259,40986,55201,98776,55341,87188,29675,62192,16951,69484,55158,8084,86758,79562,33850,92816,41259,81706,96109,66893,62758,49452,45278,45162,39949,9775,2908,69274,98206,91617,65561,75715,83498,72555,73948,13828,12622,86283,41850,52663,74183,26511,11704,93089,94736,84741,11317,99722,38022,71501,71936,82108,40835,16397,50832,44489,63589,99204,83893,44496,49113,41935,67108,94345,67947,92947,25560,55625,71534,30505,3748,10257,54540,66068,90739,14289,73420,98726,38966,36350,90215,67486,71827,44133,73036,43957,36273,19532,9866,16602,80098,98432,60113,16197,44281,23804,31508,35533,55778,49509,68160,50096,26400,49344,63819,168,99557,98194,70527,35532,47967,20591,26409,30595,25992,29272,89210,17992,6496,30068,65132,52032,54385,3970,74103,95336,36837,6059,69273,41347,81752,27295,32929,70726,94346,77381,66490,4997,73063,59452,82935,739,72968,80504,70289,36150,70428,6249,93297,80787,74319,45240,45725,38294,729,18902,44926,75186,99861,44246,64525,93961,10179,67474,78760,30132,90745,49082,54100,72924,1712,51389,43846,44026,92180,35604,537,59347,59876,77610,17722,21886,46932,26607,16874,54981,51648,95562,96631,76637,65825,37753,73950,22642,48437,15138,77873,71302,16380,85119,63302,61650,67888,94157,59286,83437,50789,98220,92583,18005,25535,53453,95616,20977,62152,40121,56639,32968,42566,81046,88008,84625,22011,96302,67074,95290,54428,36348,44187,4592,62776,8475,8788,19893,23088,93620,9899,47796,34290,57305,14508,78436,27955,57914,80396,92964,42478,53350,45911,45304,27236,5051,39873,66532,94657,69482,57611,42759,59857,27518,41619,42174,29360,46330,55806,91300,57665,87489,54961,48792,78389,9909,67457,28285,78490,6940,88175,39200,98496,39081,76654,84323,11536,42437,55629,84183,35286,63442,37466,18262,75642,46215,15988,33743,76625,69192,72284,14731,24801,51334,27763,5795,6248,3055,56939,89061,38494,84086,62574,50627,58791,45589,2806,96579,4540,30052,95982,64293,65430,66443,84445,43629,45634,14371,43296,67737,50811,71641,81595,56575,42545,87433,94726,87223,60535,48497,27148,36047,54583,54466,58720,8114,49670,64813,61752,3006,66985,452,40504,45191,68294,85161,98394,70448,55321,91297,52042,84845,14865,44478,55825,34275,11593,15805,38651,27042,4725,61547,24578,72139,70292,56899,7275,64059,32022,42858,65796,963,23824,36343,74469,28564,11078,4322,9750,89831,13893,60124,37525,58943,34420,24118,60917,6738,66937,28504,26272,64882,34078,51101,63813,52481,32815,74450,56462,20270,23474,43487,37143,91019,87196,7244,54247,21355,65730,37968,18986,35619,70299,602,37854,82693,87497,57646,98521,78661,63883,75480,46994,66060,4587,65726,68743,61970,14494,23372,16238,90831,7893,20075,40143,69479,72952,66221,85014,97977,71239,1741,18741,6430,47618,68647,93090,22979,83234,16894,56356,81726,91959,878,49866,66017,79961,46166,86161,53272,85527,48831,57542,85604,76927,53527,54450,6479,88608,20837,924,64744,69741,34193,28231,20022,28778,20034,25867,54257,57096,65016,46525,45984,34490,3758,16756,58173,29737,47983,65191,92682,61355,98720,36782,59146,30198,858,16257,16409,17663,67700,96645,9905,63342,6443,74669,56095,22442,42132,74406,36635,74567,31417,15733,69807,81413,35868,46382,55614,61164,10651,29454,82132,98900,89118,40270,33241,59019,703,51127,89791,7538,39624,38852,86419,22612,81187,89804,95582,43789,13119,8173,15530,75211,438,4681,36364,16033,19851,3611,88559,94319,51456,77013,99329,25131,57202,65641,56773,47700,95163,83128,71278,97389,94993,38354,19758,64822,29188,4549,51280,54074,94387,9092,47434,28577,94029,71448,26469,95663,27512,66778,37294,82665,76508,95667,92843,37799,14876,85421,39082,87030,53976,98778,15717,35324,76075,15393,53149,4235,7706,76634,27931,11386,56666,94707,3481,63273,89718,26551,21930,7293,93858,54063,60219,97003,17346,63648,40743,88565,72813,35147,76465,76950,1360,42166,71380,80181,8330,62904,25973,22719,26087,82944,56377,11278,82830,48633,76325,74922,8463,79530,55894,49318,31844,33655,94858,64596,69107,28568,93201,35804,26902,37699,42800,63391,89760,95122,72209,35686,86757,23953,24325,63709,97844,80382,92707,56489,47915,26783,97874,80725,7387,36888,23606,67403,10541,46634,70834,13527,61302,98737,71532,23939,23681,28585,20680,66480,51332,8753,5363,60610,1672,53743,95237,39531,63264,28676,55738,32355,76544,39899,37178,75275,28120,2892,22721,39715,17847,60676,30721,40822,92008,59326,25877,56239,32948,92405,11483,45300,54227,42829,69842,23482,89237,67241,69445,58643,16979,92655,1414,6966,33221,14988,37817,58291,1337,66554,43315,5412,29764,34350,91398,17440,19126,61867,67606,64429,33398,81901,81624,14066,44018,69034,60180,83725,15684,43682,67744,87978,4924,30614,68606,37474,11260,25711,74708,11904,36775,6530,2684,45434,28336,13231,7675,77179,26852,25979,1609,50864,75761,4343,485,26181,99531,63723,20417,31495,38614,74451,14238,91612,77513,77503,29564,14722,87834,83736,25212,70571,99887,52079,94635,92477,98006,13548,98358,67360,62532,95289,66403,15954,67570,51919,67775,78981,12196,56420,27036,17501,43409,22355,96161,70414,81354,3581,25623,75449,79248,22030,48936,86888,75627,32051,28612,33734,4802,69806,41308,9752,98079,17547,94521,44051,36970,24572,2570,26113,47209,93906,42456,38473,27934,37435,74380,60419,77117,83283,78277,34644,38722,5524,41312,39223,63178,22022,41708,39099,64980,85724,87510,57409,52789,78400,58767,88199,65119,29321,66465,37606,55002,16024,45942,90622,65557,64827,78746,99763,83251,99386,32219,53418,18438,18052,20177,65369,40040,21233,14366,77878,6270,23534,24296,59724,68015,57392,11236,4050,91269,29413,86861,51269,62514,10487,24539,4143,2465,95236,1818,90067,67660,9402,6264,59378,69295,55860,83670,94796,97825,20839,32841,3103,76527,15046,19950,60424,20107,27758,50131,78451,17553,30294,7137,89863,76790,10376,42405,24042,17368,43186,12466,40814,64467,86027,58216,37333,2694,85479,88118,38169,23763,49604,27842,40507,18056,77094,12448,99187,40129,77375,64532,30484,70859,71738,40590,28488,82335,81913,42399,25298,10311,25487,98845,80367,43292,78979,68613,98455,15305,59067,89363,36910,99183,93235,3557,21248,51560,99592,10882,81432,11516,37148,68708,66909,40792,27538,86828,17850,45993,619,44370,6046,60407,36747,99406,1375,28299,79561,12858,55178,91436,25197,41526,26254,19676,74983,36545,37072,26598,93888,77208,14049,46726,52077,71305,98154,14163,91159,15424,10395,48767,11833,21597,61800,27202,46290,70487,81993,24060,98529,57707,67780,13144,31806,3844,74874,72107,49597,36794,39564,1419,8804,99509,82949,51031,80418,46483,34295,6374,20221,21022,35861,35519,73341,91472,39919,32257,98696,36261,42154,54853,77548,43356,38181,52140,55588,3078,39834,32156,23826,14471,7211,77714,65904,37512,12264,73885,67841,65643,74344,12454,40802,82866,47035,41198,79224,57728,75176,72645,76948,97649,33369,78324,860,45640,9848,62211,82670,28670,50477,84076,52412,92092,20842,11484,18756,53630,91981,84505,96635,18661,41722,68988,81426,15542,51355,33856,95156,85706,77830,50565,92173,72342,78960,77834,38569,30957,64385,74480,90102,90084,34841,70803,70621,45226,26642,31704,19426,63074,87633,57510,99004,84796,9413,34428,58067,56838,29057,72359,53829,1645,76446,52677,2241,70001,47590,4698,74219,48636,15884,62198,94205,89154,79262,24178,6121,7432,15611,12299,18718,53602,80739,50815,37153,60326,13444,67373,67351,13693,79201,58313,85533,40351,33341,55012,89457,73389,87808,39348,68646,43997,38656,4627,6321,89319,12870,63682,31216,78779,70091,39221,90582,77144,69405,63260,33194,60600,88989,53328,63071,17533,65797,36363,81934,48436,38886,59283,12137,4573,21436,33573,57911,58165,38013,89818,39121,86540,64619,70583,92168,78790,61303,687,31143,88360,17130,91352,70585,22118,15132,89944,71414,19389,10336,51812,46983,21079,46708,17461,33643,66401,58619,82105,26593,96654,31091,20650,66227,71633,90299,55005,83372,70664,7847,5234,66468,64816,72858,73184,53134,93120,55700,45207,54337,99176,52839,38299,26037,76441,16143,18443,38039,74543,23259,95329,69534,44578,39667,75730,86704,81564,74035,64565,80850,21903,58294,83904,11014,75738,70351,97630,23381,79146,17759,3228,3864,8519,42417,63702,86234,3444,43540,20727,89556,10309,93835,64939,27782,36811,15588,3922,69929,18507,85700,34696,4801,7755,40054,15039,46887,98413,95749,96847,91105,15057,42693,7414,28424,74433,76638,45557,54298,45148,47113,16633,70687,87507,89699,72864,42738,66117,52284,90306,83464,6251,7757,88829,68736,24211,30970,71389,6864,36160,68170,99755,44599,52746,43056,49254,76218,90456,86844,2646,79574,84428,14563,2253,4642,56654,45156,89419,23687,77433,13149,97439,21329,66130,23901,57362,65292,32402,65660,10097,11882,91691,79234,61490,23373,40076,65341,55293,51799,71086,72188,82970,60229,71514,74505,4422,45019,76134,36822,48204,18231,45333,83566,79029,67160,71792,86309,46592,58616,62153,48727,80932,42362,64780,7898,71569,72472,43870,72044,18711,40711,46091,99675,50764,92937,85403,61572,77910,9138,89325,4088,19445,41109,55375,61149,76778,87769,14997,12624,46999,34643,16056,63027,78557,28047,70,85506,93073,86694,38274,41062,67144,76755,76826,90113,40131,56771,4435,11786,17057,67249,20446,97872,87994,14892,10597,52467,94450,54221,80673,2856,26061,70254,32621,84148,56776,56173,80072,51506,48711,34201,76808,21727,46935,99733,54800,70590,79794,2243,10078,2274,64915,33949,79118,72535,48229,35336,33667,26628,79,55793,59712,12507,94131,63787,62940,40684,24970,36428,574,44493,82045,13040,83747,32154,98463,93785,83227,87826,21484,27549,62351,54328,58609,38266,30423,82560,55462,64663,51018,55022,89959,75741,19127,4990,79751,37199,84477,72153,83090,26478,75645,25864,11111,69695,36235,78583,53519,85978,61587,32727,16531,82418,35484,51256,30012,50772,90911,69912,33830,76969,10557,36337,42741,54007,57873,54796,94382,50059,22089,67650,3106,70725,56802,23665,39573,92691,22221,62356,84243,9439,83389,23253,38858,92153,33557,19448,71038,50691,35294,82677,28723,50281,16155,43654,85296,52006,58414,96859,33762,35413,69173,14810,80795,63618,75453,35194,29103,32285,22094,10435,48024,85761,12148,61647,24519,81916,80580,55525,52403,95346,22261,42823,22370,56675,136,59919,40078,88479,55566,28183,64992,26442,667,70231,19649,78284,97263,13857,96646,86566,31393,40183,9484,37964,98443,85440,31812,51403,64581,56037,29124,21868,99649,60664,95658,41592,46527,73552,64869,22165,67802,91412,67033,12907,80730,72073,34335,17502,41594,46851,25718,98276,82346,53286,4866,7121,1968,83079,60315,65344,15336,63286,8215,80870,95140,69346,11792,38295,88647,53931,85318,31576,67935,31454,45782,21799,84540,68807,14475,3723,93027,52428,50964,97565,83953,94062,39100,17572,55034,44351,62893,19489,13044,21838,69296,18376,14886,33932,11870,87019,47534,88523,50963,85891,56832,54753,82827,62486,92808,13114,77521,34253,48329,9319,66095,9031,7828,49447,50421,49533,30448,88241,82990,38990,12182,92777,73092,57228,70692,46646,98238,41973,25578,99759,25767,32166,42052,73711,28646,57905,11267,29869,9786,90090,95391,25837,87904,93424,31810,8192,56181,85704,8636,11873,13549,86715,84715,8660,97155,78709,49498,60429,79585,43441,74804,50763,33590,64639,65415,66850,98097,83871,48987,66746,3334,58399,42389,79340,92614,58597,19142,84308,87099,85601,13090,72752,63915,15533,26093,2037,46509,18203,61895,70348,64450,67892,55482,24486,28432,6051,91524,34691,45644,28307,42590,22495,92237,605,48392,47042,10868,32311,40380,48833,26105,82086,20195,77817,40776,78015,352,29914,72438,54674,16261,49603,86857,60784,22060,21922,24037,73550,75341,77446,39010,14973,76886,94896,79110,70042,56592,41608,94619,65447,15075,29068,92078,28453,8849,12072,60302,72140,47764,15658,61077,38952,33703,7408,44395,93319,32040,10441,72929,88417,82050,80902,20442,5359,10952,11522,53883,37705,70477,31278,70528,94094,37085,93989,84311,91426,36094,65340,26427,66280,11634,49315,37840,94472,96282,87984,12725,15434,97606,18625,18062,28583,82311,42954,40097,49349,98442,68525,45229,70075,63663,83186,50248,53568,37864,31235,48805,20497,14556,31709,46946,29434,15194,55858,23521,84201,33763,42623,8663,62519,39837,2123,52506,87644,45927,68450,61037,98104,16780,92050,61025,11338,85426,29498,78041,91042,72413,32734,34242,62350,467,41509,4983,14809,11119,54214,99723,3556,29832,79089,38106,7136,56038,95792,61442,71203,36707,69165,39358,44464,55135,30130,33559,12216,66791,79077,63083,42729,7566,85147,92228,85840,32843,94803,48704,10436,15933,21444,3298,67631,5788,28736,95768,13424,68874,74135,12879,75156,6220,83527,93429,26705,33148,96535,27672,60027,94278,67091,21518,8368,8284,31636,80845,3688,89513,7062,67869,43167,9065,22318,85470,80483,85709,79330,44177,80351,79749,18533,42231,54785,25708,99662,52558,80420,2807,44714,89581,75630,70808,57821,84547,70717,27750,36374,84255,82814,35983,28348,1496,22048,13472,13888,5840,40239,20843,5300,16078,13371,17946,64606,91847,94807,12293,86558,77769,27867,76869,59268,16177,75225,71115,11040,67471,13218,29929,69984,78975,30741,42767,90143,95242,6188,74627,71396,12435,38148,23990,92040,90006,20492,1806,80626,55398,75330,52269,17914,68186,6439,63348,39710,45946,45394,47029,62507,83335,75792,46253,57704,74548,10583,32071,36135,72854,82855,80663,92289,76166,31700,34577,62289,82574,57294,7997,76427,46982,59663,103,88793,79935,54232,1236,52600,88936,33869,87145,97336,80842,30792,93340,84439,30586,34683,99976,95485,95248,86397,5880,95810,49947,51222,99503,17897,25924,72447,5292,85974,75983,86373,57071,54051,37635,69290,44657,48642,20452,36020,8262,38523,20925,32836,38470,27440,88220,33672,39699,13834,21475,65327,98890,79308,1702,50890,45083,26957,47955,51741,89334,91126,59284,30235,14562,69598,86601,14424,95574,23511,77485,10136,11521,47060,62955,36985,36483,93509,27539,33857,99274,76184,56950,83029,75148,55632,76695,46804,59247,87168,9099,95876,1355,64036,50331,70359,87862,63641,61582,90830,64417,62892,52711,67538,17970,56661,23045,526,82791,15008,72524,75837,30644,46234,87195,70146,22601,42731,57906,16132,51923,15991,72094,83450,55447,29846,51916,10875,34929,6056,5437,25452,55843,29476,32336,10473,81685,94863,96963,76541,45684,49309,82609,82213,13062,59191,42452,45544,91389,92496,54158,87372,70188,20672,71925,28198,9992,81763,34383,63881,11571,81424,7532,99478,10713,97689,75004,49910,70151,92290,49018,72815,91951,12140,85227,83998,81505,27769,65030,49401,34679,75008,49002,27718,55950,60345,97885,88364,10325,15539,25602,12147,79887,74734,72862,41150,49200,68036,80495,65154,86378,15468,17100,52319,81636,9778,58147,56483,58538,6105,27664,23456,95306,98960,32242,9764,33526,28215,47779,12881,12267,45594,61394,31820,85153,93856,27865,27896,12174,41645,63046,1248,71691,32117,61324,71554,57002,6672,10719,42369,75046,8100,86482,93405,17595,78530,59749,16158,20211,17921,42594,90779,75198,81037,16176,42222,68821,5911,87403,79213,20847,7715,2064,61873,22047,77757,8339,19955,80702,54143,73812,66862,74591,37345,10217,43972,54202,42447,35206,18471,56143,6265,42309,412,27189,90721,99850,17286,84461,98156,1680,52866,38416,71609,46090,35077,26640,9929,96104,38251,54523,5565,44016,19996,88848,33691,12899,74521,77260,59894,4740,19727,55958,63490,80343,81737,95614,4034,62699,38595,87422,74934,77153,99840,67102,54536,21548,42713,58553,95258,91638,71519,50093,87699,55214,77344,61439,15801,23262,38777,19340,50668,36754,43624,11627,10273,61008,35779,93494,48167,83880,31007,87115,92150,37998,26428,25990,46556,68698,79466,52505,70409,22082,79875,74213,79289,85752,90142,37682,36097,17864,3021,40157,88896,20518,36310,63444,32945,11709,19889,62744,20761,3821,51483,36507,81410,64700,12316,94597,16239,30030,21234,22458,70669,33736,12004,45924,25144,30736,41307,8298,7667,54858,39652,66226,4477,26119,74549,57158,84032,57995,76776,82581,79156,87001,83298,88616,30183,62221,6741,78270,65297,16454,44819,27650,82817,40460,19198,9976,31281,28428,1825,71071,69045,26135,84891,36254,7596,75854,69106,32335,17136,63351,24819,54,11135,25927,48468,91709,70429,51886,92708,565,20285,3460,21109,53808,12425,17102,24183,51088,68153,20012,47211,25656,97781,95075,46480,58413,24873,29072,11136,18797,96620,32975,41964,70182,33692,15360,80814,75934,39408,62929,66811,69911,68911,20202,33778,61148,71181,43623,32624,16487,38622,27284,1749,31779,62506,48907,71759,60017,98317,5908,40602,26994,51085,84933,3189,63940,88425,39375,46759,68569,56149,28150,47467,33723,78868,9690,58155,20971,85934,48234,71588,97767,33950,59553,30879,71427,23706,50489,32862,58680,57126,81775,3987,2709,19666,86173,58398,57604,82259,70137,2521,32634,93978,59530,42533,4039,65253,56603,31728,98168,53870,46883,10443,52252,21895,21690,663,5463,47152,69266,46053,25524,12630,70622,62018,96346,40226,88540,85685,90031,42390,42712,99252,30166,5456,6832,99947,13776,13801,44239,88458,91171,85456,33146,5735,43236,51678,45647,78175,8930,31838,43425,95143,8722,41751,64742,39912,27233,35946,34795,36127,8803,53498,68307,41613,10185,16785,21089,82211,48664,21278,37363,95966,42943,52136,38434,54716,3580,57971,97378,72985,63454,80163,29307,87742,62729,38264,97813,76530,83630,96165,13108,46130,26083,85762,51380,50803,99534,51761,49871,98872,92585,24979,91107,16937,29249,37903,56767,84819,75353,50081,60503,49013,77281,97390,27981,36143,35713,51131,50447,27329,6863,93416,65034,19031,21876,50540,23830,6950,5702,86523,66891,81502,62732,71408,80641,10994,377,87348,10829,50126,89314,60584,74531,4275,26804,21232,50612,13292,17185,998,80679,14597,38867,48138,12832,76836,63850,11034,14263,18398,14132,30490,88584,45280,62501,33712,47216,59033,23528,75458,53479,56814,50885,61827,66758,97459,51671,41005,9747,33113,47830,10020,65356,99638,9567,31261,84904,2769,21170,6584,67278,43510,31289,33753,13910,1452,97228,6492,35080,9541,34522,18018,8968,57530,99670,52768,68753,22123,45032,45138,70303,74258,86320,17563,21207,24323,78828,92535,192,11712,82082,59880,16855,53988,4481,42726,33283,12953,33170,89806,20758,16191,99352,95993,99384,98151,39890,99789,54885,31174,65702,70139,86135,65748,12065,15267,62490,87411,53653,82895,41159,88824,31638,41519,63733,36153,73986,92643,14231,57371,15495,63114,70435,8000,10141,87106,89059,96050,50710,88821,14152,79534,44843,73507,28185,30098,28732,86331,4819,92512,62291,84490,33765,68197,41177,92695,72851,87435,77128,48084,77498,10045,50648,49242,57608,43206,92847,39967,21190,40350,3830,30711,3340,75315,3901,37714,79662,83774,5014,84202,55528,17703,32469,13196,21008,78596,59408,34367,10169,42396,31607,98893,96004,230,55909,52172,26266,4697,70154,15978,35268,34443,16272,91470,29401,54301,6058,91708,13390,74867,10,87720,10869,69379,74173,84989,90661,45907,39636,50345,79207,13928,64849,50739,68604,76738,12312,70932,15125,70037,4617,73427,86551,917,76823,39823,20097,29348,24447,52621,4543,85577,31086,40869,26357,9819,92321,64649,38099,62102,80083,45880,48709,79741,18636,46259,46785,81093,16194,62697,98346,361,95083,56459,51726,93461,89375,96525,95154,86584,10495,64204,36210,82874,53776,26709,75012,20420,79782,23300,22501,35360,71095,18846,67729,46815,88510,26815,24691,18714,28157,20800,27598,45722,64239,70415,92890,11543,90459,33110,50239,8138,40426,17022,63450,91906,47023,67734,92400,7563,59100,55163,24879,15817,74444,31384,20715,52144,43301,18339,71225,52426,81589,93414,21947,11805,54595,14795,87275,51395,97621,40182,97612,6068,79558,99472,11157,14519,12240,52024,18861,5750,19505,60950,59032,84187,64256,60816,2008,63476,93141,8644,55936,37117,154,95893,53783,75767,20897,50597,77539,57054,62556,84961,5789,70260,9795,41214,60751,14225,69031,94514,24474,81406,78014,54574,75144,49497,49608,65351,26729,75759,7477,63501,18687,19,86956,58333,23985,69619,44165,69745,55968,45664,44867,71979,12269,17138,24252,82825,59536,10518,49922,22021,15726,71699,77489,73713,93024,69652,61232,81848,785,79004,58233,11326,40089,18840,95325,5318,25018,56290,16944,73075,54429,14624,4379,19753,89073,63079,12992,38534,62035,34890,89005,76099,1057,93952,11192,99365,63369,44699,34341,53200,75478,61801,40552,59086,84821,99066,64986,6499,70750,6385,65020,55192,77545,49305,98344,41037,83753,97648,20866,64590,23120,52476,17483,1868,14237,97099,73097,22331,50724,18705,69407,88081,97123,70398,62161,85951,93497,14957,90264,44589,90145,3941,25741,14343,99884,96915,77677,4299,49259,67762,47471,58904,59779,15630,93054,95002,26704,46125,40817,88395,34433,55092,77499,90954,37288,82652,32557,10806,49932,19831,80368,76092,20898,31745,55454,83692,48617,98678,314,45560,97205,68666,38126,45267,45057,80835,94613,87075,5659,91272,93129,77453,16025,87820,37279,51580,75799,80127,3247,65968,36424,11923,86747,58993,34427,50106,73317,19759,14946,42281,99721,22868,46012,50401,74367,53715,2845,82321,2509,65745,51871,40685,68343,22994,98030,45971,75354,51434,37836,34229,63131,75243,8555,19329,4920,57007,24580,18208,2835,42509,17616,2209,82960,6065,47095,51020,97761,81407,34445,6696,51926,46200,46472,7471,2146,29158,39962,5601,43046,97797,14314,2379,36898,32659,7415,99704,19952,21086,77172,45808,1436,66750,12701,32657,90413,72951,26940,80492,86613,37988,26348,96899,27677,69020,32033,22510,67141,92141,99869,77948,12834,92267,34699,92199,31470,56030,11507,97952,79575,70353,17215,88377,69105,63879,17234,91265,43557,24579,16926,75433,79826,58021,69740,32664,83218,54149,32282,1862,25042,89511,45865,55766,22731,12516,20636,2177,10644,91233,54915,96581,86052,87958,37775,48491,8484,57360,9436,42793,16631,66670,82840,63534,54925,53628,2302,29099,63182,97249,35143,18099,13991,5915,88326,80881,55982,15435,13199,1678,31600,66822,14846,647,46611,84075,58962,71946,66681,45605,29367,26865,36790,82180,99929,81676,53431,78476,83589,25107,50041,61993,4923,83746,93635,27759,19098,29203,99758,58813,27977,11629,27390,97749,9470,96313,83357,46380,22113,54359,80798,70619,16293,18207,58057,18283,34542,36855,52993,43119,90313,49292,92272,32017,98208,85617,65850,2563,95673,82979,5544,62637,34047,15213,55406,65605,3572,55145,84435,94688,5509,41743,85430,24165,44662,7926,75622,79171,33646,50010,26997,44448,23979,31687,54823,66192,58416,38433,16994,18858,89139,30767,15795,77804,99227,1900,29192,94654,9961,4390,37757,96084,55449,61309,18748,89199,10664,74605,87648,91392,68552,92639,19353,74061,54069,5063,94260,64121,75893,88975,17279,84570,85291,63503,83892,55465,42377,89588,62756,85924,5822,81297,3796,91207,54189,56240,13240,84357,6542,35236,6559,35928,79473,62344,32295,24715,56784,57927,32525,51945,73627,20093,46298,17727,135,63437,36286,40919,91407,18297,72650,15068,87383,41990,82133,66104,46063,3774,3227,85552,94315,43708,7673,68274,47644,48564,5280,6776,18912,73490,18834,39955,45950,29975,14116,23053,66165,17045,42103,71622,13534,69003,59014,8200,93525,49519,73775,14476,35819,54224,91642,19837,91599,14341,11601,30073,74327,16046,98303,85471,80147,34444,8901,52555,66202,34234,63036,77986,69973,83021,86348,28367,86390,2065,63324,63224,79258,74277,16586,7413,41226,63362,71074,86062,76320,54351,12887,16219,5647,86690,45975,75736,98248,74198,86792,36705,97303,31249,60884,99445,82061,30179,20467,59342,28093,41956,42580,9335,83038,7154,66639,38338,48839,51193,65124,28360,47696,72856,80465,80262,16542,96292,73921,65261,54073,92482,23602,42193,74735,73819,9882,31350,89387,31056,53367,30581,40579,75201,6299,88730,72644,21279,12972,79274,55440,27470,82165,64695,86848,53368,1940,44644,66520,29366,23329,70341,56725,54418,48284,13507,11115,86475,21322,11851,1274,59174,7245,80892,29943,25831,54285,10918,61620,37406,23155,60975,362,68004,79684,9318,78188,86614,13034,1210,5891,46207,96990,41491,90837,94614,62933,47800,30403,76557,28520,20823,12781,45061,19372,58893,39560,7767,22301,30478,14316,19907,99220,76149,38291,78419,78425,56373,57765,68961,51159,28110,63019,85985,64176,16255,25306,75355,74361,66261,69218,71832,53977,9851,83932,9226,26616,86711,57679,51299,35146,85044,76368,2655,30575,9466,78163,94710,43889,47454,92353,64749,9431,63063,95830,2585,26565,8473,1512,49792,9916,21560,81428,3656,70007,85608,36896,39013,3381,21340,9841,66690,95012,10156,35691,48754,20994,25982,58769,4779,9218,81699,80241,62078,42347,2418,93448,84721,89968,56033,198,76909,81568,82282,74711,22549,50204,42843,61350,85719,28843,47034,46465,56147,34153,58989,14961,4456,4070,79517,39239,66341,2084,47670,4176,81989,90545,63256,5944,58252,46356,63345,64399,95686,96424,58882,90917,63634,69630,98806,40141,19472,92218,70068,56425,68264,13833,28325,90448,25588,98060,27737,52728,76190,33883,204,88205,43728,54052,20865,71397,95858,95699,40142,33630,65566,21551,24680,42538,49716,78383,13194,63737,87724,96298,50353,81050,54899,90572,96958,61015,15372,84064,74146,59102,82739,22280,18224,91437,4016,68933,46991,16524,85655,6073,18770,44444,19564,9243,35559,63226,8343,64597,34734,49247,25072,17223,71996,25860,59223,13053,9694,31997,75174,49544,24793,51670,38232,72110,23411,35382,28936,4444,44402,38425,49080,98437,4452,53193,52336,19024,19541,72272,591,97516,32672,28038,27475,48986,74434,97836,76895,75202,22692,6814,97387,23756,31613,40422,93708,47742,80423,53191,77363,28214,74918,8844,22691,69886,4502,75850,39464,96288,7090,90726,32573,93557,23476,36694,80455,10793,64973,97995,76951,42700,85200,45159,71072,39117,80784,12389,65319,27055,78644,81095,92416,93096,22916,88519,62520,53010,79521,3427,85407,55485,70532,42412,35687,94484,68,50903,60606,13625,63889,34394,78575,83886,79459,15922,23533,86774,11233,5671,11140,80137,13055,33450,72516,78920,55883,1303,25981,54738,25455,38765,83632,4111,73482,53690,49330,90266,69633,50844,42960,86091,8117,974,67350,62147,77479,97861,84860,1722,49731,2498,20188,38095,97040,56185,12801,55537,35027,2556,99873,94162,88810,58687,18160,90974,29995,86945,68037,14734,5967,59171,88339,84802,32078,97167,26857,29999,46698,21833,32938,72253,51367,1743,93731,57410,60933,64424,73111,17935,46777,58396,37531,22224,64984,8,87565,70773,92866,17397,90050,95514,40628,97768,30547,34334,98523,62959,44575,5153,61,41517,27484,73245,42500,3144,38647,11218,71823,24600,75531,87010,30077,43551,89267,56443,57700,46810,29357,77909,34185,84062,97646,32036,65060,78293,9078,58539,84468,89072,46593,68854,71540,56107,65699,56641,36817,77307,58709,12500,89819,73604,34751,18887,53040,24389,60400,99955,34997,18843,96420,34712,29422,906,6615,56956,14223,10462,77456,84223,54274,91813,43126,4570,65856,80500,47971,34384,10542,47199,86323,5578,95611,86164,27383,15994,74771,76687,60021,32153,71867,53034,52647,88870,99340,59800,51441,20563,11324,43657,29256,57327,90107,26909,20579,45345,12395,23039,17243,15850,27862,86193,47079,78934,83708,10531,91699,40912,37404,6472,4257,73729,88893,62633,48740,58667,31573,4971,58387,99175,57529,17993,74225,60427,42137,88478,1917,17035,68506,94159,94511,76124,81861,6928,8789,59462,80716,49821,34869,34281,6525,98842,42086,8507,90343,13913,18870,27160,75591,43931,83434,33554,17255,26879,53244,74797,42936,64551,29327,84893,63809,70049,33494,5059,88208,42924,53661,61391,82403,15093,96736,27855,71403,54116,85429,66663,38314,98626,98540,67245,9706,60814,46059,13937,57139,92086,6113,2410,8665,27988,51534,11539,24464,47624,83715,56212,39456,74810,96469,61036,9341,8108,52454,67047,62900,47496,79632,70550,41881,4248,85399,7145,65961,19970,64393,81730,79769,51518,63570,21875,21356,22589,52569,27765,30597,24081,16368,36144,39732,31421,42748,1571,12852,64928,86535,24427,86553,1135,40265,36008,45937,62592,18332,72834,5050,19378,31348,89530,85300,17039,31096,52974,71851,96159,94193,77668,32128,16053,73585,54079,79579,45460,12056,59220,82396,99251,6361,28905,59275,31353,59492,24441,680,35127,78333,47841,16883,87058,71733,8516,99409,81959,50819,80122,29731,68761,13413,69559,80975,84899,56235,11015,14933,27054,99764,21519,17493,56762,88316,99612,66213,44382,73565,74455,16841,6514,2342,79884,96192,87391,87863,77235,31589,56882,59495,4903,253,29796,14156,88664,48639,65629,98003,16059,68871,18751,25101,27545,59186,53042,83134,8427,71927,89060,16038,56720,6754,9614,6025,74587,65722,8143,68510,40319,99314,57219,79821,15908,9834,98758,50263,81205,75744,3695,76568,98085,84685,12894,27912,71812,98665,20849,31763,84565,44422,62466,54108,5466,54485,96862,23869,263,99966,38078,86401,4744,26645,83801,49400,68252,59852,30830,32642,25188,48458,79424,55458,38875,9983,65627,21670,337,7434,69563,99659,88407,10522,96366,61932,63522,69082,1511,82109,51302,74403,50098,53747,52655,73325,82085,7758,53307,45987,95918,72617,70554,37589,1060,11050,88025,41370,22622,94919,35060,7647,99235,47017,13273,83297,12829,49961,77573,16187,38216,90958,90893,90678,60102,15338,75659,39836,69564,50857,21788,97745,30950,81150,18396,49895,97185,60648,22172,42805,51348,11155,1223,15610,58128,35993,40789,44623,56699,57783,72884,62006,56061,41221,98923,69918,1441,8372,69118,52509,41769,39946,17365,42920,90947,37258,98793,86685,82068,19100,61032,44196,42832,3253,27508,86933,76762,49430,15489,9966,83305,66660,55104,16299,85051,72324,19787,33041,54650,84281,26629,499,83274,40021,48258,18589,41740,16853,17963,37086,68496,30766,23851,13864,26684,32523,88976,49784,12805,26496,57258,5522,86952,87390,54288,7984,43010,36543,45169,50698,52497,41344,11592,53512,40888,71267,42069,72574,21609,34477,8610,31291,85726,22420,7461,568,82204,98571,99474,27454,96333,48131,15532,92838,23973,26085,42484,81625,46359,36006,71877,17694,32068,20260,78373,59287,99260,27837,15804,38871,88703,39669,64968,3226,31990,77215,7595,51696,41291,82239,43290,12474,37879,74435,2972,52594,39594,84380,81650,18478,18490,55786,83124,81143,44881,57092,82095,18647,24516,34594,18616,73938,36784,73511,46111,16898,69869,59837,99874,44432,98246,64747,42304,20080,59780,26985,22649,61740,2055,58750,72594,77353,12610,54816,18798,45704,597,51495,35097,98999,2066,35317,64527,18569,26755,4747,43265,22940,91062,99007,82610,39791,87420,92702,39231,22098,31537,17531,14779,43443,96640,64685,25872,16646,29749,59080,13652,78321,56259,40253,22802,38279,80698,59305,36252,34373,97312,55117,58702,96102,41995,57990,23368,11211,60135,90702,42696,67751,61607,54614,91649,31425,93176,15011,95957,66878,44315,60696,52029,48094,58881,25783,89644,82889,47637,9093,52376,24768,58212,70179,54641,14444,67129,60661,66679,36236,36940,75294,22517,71975,58311,23245,6654,8124,21255,2593,87147,85815,7808,49567,12965,76967,58826,88526,54539,32089,83802,225,87104,60870,26352,96314,62767,19626,63287,65948,4718,97580,39383,56854,95575,69770,27535,81045,69975,4491,26670,78691,34062,11139,1300,93294,86929,63567,53714,80633,50914,54168,94812,90256,62484,85112,50065,46806,39693,5553,11056,12576,67894,44280,13018,2437,10600,13768,7608,94990,16615,83731,27494,20028,97596,82069,63668,16880,30510,97126,69446,3236,434,29100,60002,54698,68920,11440,13523,29179,46952,82218,36395,60992,38038,69872,42189,60497,45201,7286,67031,9546,17680,5396,19807,99337,33913,20493,87172,67220,85730,91045,53365,16294,34102,61040,38259,45893,30628,50701,71944,58471,48465,36618,88764,85684,5082,11038,49052,50169,64267,2455,66806,21533,5628,8958,78517,45824,58004,22493,22653,97579,12253,1809,86014,3375,49578,99136,15926,76271,26540,50515,31028,10796,3654,35351,66470,77200,14423,73502,17376,22707,59266,24476,48151,39896,46080,63485,27296,65755,22500,77069,82297,91660,90952,82546,7700,77765,70048,41016,85306,19590,29847,30083,24061,96892,45448,50541,44779,15741,19629,4132,11514,99331,9759,97063,37308,14257,12966,88906,90878,30108,44718,14261,27282,77527,50960,96265,19729,38062,40,13637,92948,64614,4662,87802,82378,98658,44188,28358,31961,85123,99812,40474,7545,82982,40477,12919,11019,51453,40820,8477,73959,77061,29508,98709,24279,20167,64879,2406,13609,93499,64032,60526,38606,18700,22410,57433,55105,6328,46434,13464,42090,29245,28188,62417,86677,33374,9446,96035,34968,89410,61107,32278,14113,70795,95050,87449,36295,62689,84952,39786,86499,83120,51817,2557,90635,81672,56614,41376,83732,856,69979,5902,28955,9870,43820,71133,96993,57838,72055,14431,70916,96974,15184,60531,75793,17436,78033,77414,48145,14018,58788,82301,88138,82810,11771,68495,75325,25830,72050,8780,6326,1070,64364,49568,47059,10514,3053,51320,43416,31009,84347,85108,6658,98646,987,88880,95688,76430,131,27992,30184,79862,51062,72764,91396,62809,9817,91099,732,80919,32189,86236,88953,82472,77637,9781,43170,54847,78825,5561,6394,74445,25064,92500,67864,54139,27797,61750,25377,70641,74289,54548,41773,52413,44084,49513,41552,56229,48749,44450,98717,6401,39559,89853,53778,4052,2794,96555,11749,8055,86653,82561,59444,18017,93251,3833,61603,41057,36596,65986,56954,88704,87741,89249,94117,33673,7637,7464,23918,44653,56060,93021,1583,44064,24576,74414,66314,40282,69643,69177,42818,24672,12999,9385,7379,23959,86755,33597,62015,42357,85162,74579,69763,94985,58612,32751,37465,80130,63291,46613,54712,30739,17446,80694,47043,68391,4604,89151,10386,21544,78841,8504,92799,14852,42425,83432,51336,34661,4614,77249,49841,36560,98813,49860,63519,62469,52205,39198,67342,35396,8137,53221,35180,34211,38253,62141,9564,39785,29473,74448,81393,6664,92032,88266,91281,31489,33806,38927,19251,96557,20074,52897,46332,39333,99221,11450,71589,97849,31500,69125,36151,40564,89578,59615,30070,43278,82655,9663,10619,81255,87211,53464,1796,90673,79591,2206,9135,68651,45625,28566,58602,69079,52237,37297,6189,93786,81054,42888,25096,34298,27335,70993,81802,58846,86083,68171,4164,61799,33435,48883,22645,15729,14833,25054,36748,1691,66022,811,43666,48457,35389,45287,56579,76197,94074,16768,34464,43862,91020,63288,20537,47304,16192,2621,59862,36161,22577,73951,66398,65339,11531,53314,79650,37517,98348,46822,71959,99035,54824,92957,84350,90558,5183,95590,95754,84328,53825,32799,12758,71436,45598,15577,42121,26292,2043,3650,73202,52570,20551,20525,90885,78673,84478,26668,27857,29028,47640,77853,8584,41899,90568,39868,81747,85006,26193,34447,40057,68981,3731,36102,4372,22241,35647,95254,40009,10095,60722,27064,7618,52571,97069,75117,57944,49236,81859,62881,73821,73204,67295,36506,3628,46974,8593,86803,66466,22012,25365,9705,10480,51525,54984,26099,31928,45801,99278,94713,590,61675,38073,97857,17861,30143,42754,32263,49329,25706,451,23143,98222,71769,80949,76444,80639,80401,14048,89691,39513,22242,63104,87639,8369,6680,90407,65216,65150,67609,6102,26989,21679,74286,75932,76816,82232,58762,47036,17067,91226,75474,95376,63298,58292,42550,1089,80726,7061,90211,91711,87252,43420,9265,16952,81490,62048,5414,92491,75543,19045,32504,50655,89440,76930,51782,33556,63713,50636,72931,97001,68444,26177,12355,17699,87208,43742,96439,99489,72134,42148,71886,39658,49974,46715,48812,33568,66807,64881,85378,94200,61377,67338,2303,33094,15773,85489,57506,9204,42972,45699,63433,72452,21984,90541,39689,45314,49886,31935,79834,13708,46188,8933,31829,11240,11886,90653,21900,40849,7444,98074,27986,71992,73061,31475,30684,16566,20262,95138,76268,39255,57753,14522,11703,29730,58013,56732,46039,70991,69232,63289,30664,7840,75346,26074,55954,67702,53530,61456,77536,53908,3110,80583,72562,90009,62846,33017,55067,82834,28785,79011,96130,75226,57766,20755,96049,19677,36522,78245,2104,21309,4695,40704,45930,15697,8847,12950,32318,30287,32487,9039,15111,75062,64549,522,69163,76996,88812,94929,54907,84768,61604,2752,90367,16163,25301,61882,47889,48399,70931,59417,83016,55301,9782,22978,31019,69355,53486,82637,51679,81572,47596,10025,6341,67138,86776,76584,4585,74349,18071,55617,40859,25085,56714,1240,22957,9164,85504,35787,39157,57155,29959,13042,18213,29639,57934,36069,89738,17519,63248,73255,20116,10492,77365,3573,79636,13800,62378,17366,71091,78166,90150,86555,28261,69701,58324,68239,47573,26388,73848,75007,6742,51831,45701,94649,63271,77384,11563,62370,84050,90521,45167,5526,34701,58580,89248,92903,80099,48828,86547,26698,84778,42335,53529,11347,80167,9358,36031,31146,83593,97406,89156,45045,88176,41273,13340,40841,61618,25381,20808,35209,26390,84554,43452,47916,30920,79536,11883,16725,85630,92004,88835,63520,62832,68230,17418,69627,44161,42591,36539,93760,29119,14043,87439,13611,16511,4018,69358,85794,31054,88003,90621,12875,7513,70982,63290,62996,22843,71776,51606,83868,83800,80866,7565,17940,13035,13106,33361,11002,44286,4033,42465,24733,84452,10247,24770,57147,91602,9407,98201,521,95601,25059,44929,13615,37339,1172,61859,883,50014,8499,17306,50235,19574,43509,57874,61934,93249,74695,81609,96471,18123,19052,22031,11711,99949,55420,46869,79416,2129,17170,22054,62210,97709,43108,4171,64360,23033,72917,13124,68420,27142,36199,75370,63484,83373,66774,34722,97124,7066,99731,52242,68573,59968,47987,93870,62225,9095,36987,8096,60109,92906,93137,27706,39542,90164,6201,97017,71304,1029,19265,24518,76054,28471,73350,26212,68321,35305,69663,16517,65480,22426,85884,84362,54425,34994,69849,28270,62199,50645,5585,77686,68125,19478,33300,4793,46211,4408,28033,78656,39527,53496,47033,85595,73681,17458,18932,72306,92432,79600,75031,74908,23394,19269,40311,53083,48571,62371,70036,78677,81323,94894,3703,63643,34251,5140,2317,38046,94500,59453,1765,50842,72497,65832,97994,7999,33620,38069,83726,34385,97443,21908,45085,49062,50358,48253,19775,15463,89276,66883,3640,90463,20128,35448,5354,15001,13725,2147,33948,75215,97343,63637,56989,52293,7593,15534,96405,53344,35759,53669,37076,98453,9612,55983,30809,13457,26745,67205,85028,52724,9419,95225,21133,68400,94922,41583,51570,96699,36524,46365,78703,44604,26536,71883,82493,9393,80087,53129,7312,83425,26090,64432,37719,26128,12634,39021,93834,20351,13926,33604,81404,93082,85021,1891,41382,4475,27182,15909,15669,89304,72416,17116,32396,75099,90320,66745,90705,11028,3211,18667,10220,75120,67046,61566,58330,60253,84614,79938,5543,82046,9350,1784,52683,75584,27825,99468,31712,7913,54918,90769,16710,62487,6685,54098,29302,27161,88988,71718,49426,81224,2797,8189,47410,32941,27929,61862,46466,4098,49224,93814,80619,15186,63397,70444,57475,19491,31129,90587,30269,76056,69430,84467,25082,3689,22046,7285,62534,50136,21430,65190,36400,44730,71732,73312,73894,3906,51566,77842,85602,89688,49484,497,62538,51733,81387,6900,41421,22515,1637,91943,68428,98878,19116,61019,99401,1536,77432,76466,79126,14278,15059,21772,71207,94793,62395,62684,832,18087,50452,18235,369,97841,51072,45525,65275,35219,87454,36108,67786,28991,19589,82224,62691,5720,55907,59818,69629,92723,33731,51466,59930,766,50736,69200,45472,29278,62586,19860,34794,30529,35640,16300,7013,20232,24670,22513,1757,79168,21637,15169,49673,65658,54068,84454,75381,76270,83254,21097,12886,85916,66367,87061,80649,55231,7883,3636,88489,74489,38033,23434,29746,99502,42407,23591,29375,52955,4334,73741,25775,93317,23267,32521,41073,19542,47193,4723,17830,72926,87704,32625,62984,529,55175,82026,33191,30256,22328,94780,39337,63536,58755,36750,79182,74809,6935,22226,30723,4634,91505,97429,99776,44528,95227,94505,8759,96600,87409,18630,95064,38511,98335,84175,47984,33530,81602,2247,30313,94467,33565,39939,90193,93976,70627,37911,71440,52619,11762,46628,69591,15935,39871,58010,77586,39664,88715,96743,6631,33485,63828,91068,83530,52432,33503,37027,57540,50595,2305,92117,78947,87492,47528,68459,84054,71308,94816,84968,88904,35200,15732,11746,55287,16783,43150,88710,41004,85660,78959,15100,60010,3467,31399,88820,64545,83478,27100,20732,30192,32684,46467,19659,23608,91075,75511,8848,14233,56982,32834,14786,780,79923,20200,67583,77888,97867,2698,66307,8726,38177,40508,60727,46314,22714,99289,65929,31545,94362,52095,11605,32558,75231,95711,64353,93385,36961,14403,51191,78686,11657,80247,63794,68951,37046,29410,21946,28769,43716,22169,73922,40405,26877,92463,34844,41888,42664,68810,4936,42080,20310,17061,49098,56640,22032,82271,4063,82819,32966,20617,17161,25293,92939,42021,94799,32748,60015,64051,40693,56261,71988,83175,25269,43655,43199,56135,49979,79831,34109,79013,22861,97214,99928,11286,14068,69388,80278,25590,7736,61059,33161,81628,65208,94243,27796,18333,79480,20669,19405,16658,82872,21511,35668,22427,74677,46310,44374,68852,35020,29712,95271,86458,20795,70749,20315,96105,35605,39637,89865,88735,37146,59851,8813,88862,41641,829,57298,15547,24435,51775,85607,78842,16623,67559,30829,17283,87896,12071,24753,58130,9280,28434,72673,52385,158,31959,14086,16460,80115,14434,48496,54472,39697,83931,28615,50398,30356,96973,92818,4898,60556,67301,70686,67219,75623,78976,54020,24848,43421,49695,43940,33426,58747,37912,40664,39691,40434,53251,65656,50644,6148,58771,63750,13951,3741,30289,40243,42644,15028,10446,9536,71007,71669,98102,28559,72011,51246,58552,90770,51309,35371,96116,58590,80216,80987,63860,67317,95442,57403,94175,73476,9587,60651,721,72337,46945,33319,47874,18414,60785,46665,19510,82582,23206,70738,55708,94519,35096,88982,56549,28826,55438,28543,1120,78038,60922,5958,54433,72885,62443,47594,79716,24885,91438,24570,10284,16881,86836,82359,62135,27878,51000,29018,71455,37965,14089,81498,90495,52281,32218,78702,33023,54259,11922,68851,54703,47777,38197,82210,21970,4320,94626,78088,24187,32182,16061,25480,44795,91553,41427,2067,71196,73228,28874,72353,40518,67884,30438,36071,43431,51809,91368,66186,59410,78745,79969,78884,92410,24601,14342,52611,88200,31411,37632,65584,30278,88076,382,43211,63644,38363,93014,15749,41627,17499,77906,32686,45778,21941,41611,53153,72193,70317,58455,73728,81673,31247,8021,15570,76267,96766,58622,8133,77741,75164,8988,49175,50424,51641,11628,7540,80125,93035,94805,81069,22924,42479,24688,53855,48565,37340,69476,4140,77591,28983,54386,27270,75936,61435,51410,8424,82616,40880,15892,53891,7302,67961,32332,63216,29038,46057,80287,39298,67699,63500,61612,58745,54275,44979,4506,45811,45373,19961,77505,81261,80590,29909,86293,56267,28384,15894,78932,18954,95599,39425,45505,19927,4683,75456,2459,38570,80654,52996,9440,65199,56113,98757,32702,46118,30134,22194,88327,12762,46827,75496,79949,91665,46388,88830,1182,4431,95629,56537,72016,90538,2707,33551,47051,16870,7430,48943,94178,42056,54705,46056,13788,18707,84275,14738,40113,144,15999,39316,43895,71533,7915,64618,97798,57818,87423,81899,98747,83271,11785,13793,35549,71270,37533,74554,95506,23102,95035,1307,55543,5800,39802,15844,80970,91319,98623,25521,23349,79657,46468,38532,8478,92740,55989,92137,67230,49633,67654,98930,33196,78609,21932,1675,23145,30228,44976,78083,39225,97973,7908,38326,54225,32910,42562,64118,8708,49342,88874,54670,55044,15686,78479,63072,21701,86618,61899,35238,62190,65161,71916,52443,33006,11637,4976,52414,4105,37653,17715,36011,54877,68633,68390,46235,46425,4117,27278,72512,89860,51788,43258,44192,14701,60999,65429,96576,56429,96341,75368,11617,87603,17427,70242,78405,31963,29650,22815,21181,39434,6636,48768,23360,10839,1724,93180,90604,86108,67906,88772,52103,66505,86944,8456,62627,42000,70393,9665,83792,90833,40727,78183,39587,80477,38347,57363,37581,79905,50856,91222,95038,10468,8654,83718,92437,41351,93399,6520,62489,72706,53416,48309,81178,93338,184,6703,91571,75228,58980,53021,22057,74363,72064,65185,8316,46929,42870,64952,55315,11114,40594,99143,1301,8126,2737,45694,27476,17073,85887,55926,98217,31349,67458,95672,52342,91869,60545,22968,6954,70489,65788,35805,25360,88864,91002,45002,30067,65322,15629,22441,44859,34611,98444,57450,71839,51958,80092,26643,23294,44687,55313,28985,81764,91750,98050,59512,70450,45718,85765,54276,77809,63964,56458,65514,63253,80490,60223,89560,78566,67420,89928,50564,79134,83174,95152,55215,49822,78366,44458,31,20547,32361,13054,16491,6082,82545,30456,56584,49699,62385,61545,51427,60572,26895,29620,75271,50779,28046,31549,31448,27940,99030,99084,50176,63084,81452,44952,27510,67874,23584,14992,33356,89761,5322,91933,2540,70495,80269,14387,83385,98345,77044,69252,96291,92698,44085,33610,21178,22698,23734,18551,76744,79904,22687,81175,17181,34168,29034,79520,11671,58456,75236,54822,11222,69873,37364,15668,1594,63598,32147,77511,36986,52130,27273,37479,68169,36778,22715,62664,9626,47869,79946,58666,39612,68919,24477,58457,34116,75066,36408,71209,50402,12344,50339,67673,64856,18355,21103,57712,88256,51588,51393,68517,87653,4623,1877,46204,9808,13797,33866,58827,3537,27848,98612,86093,70203,25499,73597,14032,38333,58407,92279,8331,58550,64478,60398,88198,26293,54724,98260,41768,2704,44414,8476,30791,4838,27428,19628,43037,91011,75110,63923,76080,42994,33323,45468,84567,31599,83926,66260,88859,80220,33014,92917,98447,42951,98150,84511,100,87367,47381,41466,17805,95714,94114,60342,31580,31954,87473,8783,7233,24808,90449,51511,92795,39288,98084,29661,7053,43775,88047,84500,61755,29542,39645,43082,68454,48552,79881,9890,92000,79667,25659,18994,97731,570,8060,87166,14741,45583,74425,2558,97005,4483,62413,99372,46313,27871,75111,62,84600,40108,8615,30793,62086,34299,42978,53202,5195,82226,25328,20286,78063,35721,14338,33055,39059,45917,22899,82847,97244,66254,87023,24182,28057,20466,88542,12492,78588,99305,17503,47425,55026,26843,49106,290,96888,90124,99767,94339,10089,76379,88091,37841,41192,58215,10727,85022,25615,69339,62022,12199,70676,925,65121,66613,33741,4428,71406,98044,83243,51084,55241,10478,63333,58637,53183,64788,73599,38273,91956,27122,86883,63651,12872,96007,21990,33549,67607,24239,69983,66157,86111,54936,6344,99055,85969,6813,15645,83991,21943,19700,8420,66110,78184,18874,93940,98297,9932,15807,92938,67515,90042,37462,66021,2176,24798,91971,60561,12132,60013,9200,77970,15330,10470,84292,12792,21225,79972,11799,57534,43135,55675,24840,86761,42314,12195,33783,20790,78387,87785,54096,41674,76593,55339,4224,13653,14994,49845,58342,27377,33268,69120,21453,19661,35455,40777,94126,6366,32644,24410,66887,38808,4115,50673,63656,94620,36269,22474,32900,47334,23124,48414,74388,98204,91752,18556,8680,10267,34403,92284,96114,8419,21142,17862,96389,58731,81708,39731,28628,98327,76032,31506,86724,73410,56683,52754,4460,16873,25393,28487,4113,3520,28915,23857,5651,98396,59929,26740,90098,60562,20996,20894,46569,35163,26011,18328,7790,87587,58710,70746,7215,7355,98402,29127,51963,79218,67807,39974,90638,73047,92572,24483,1073,18132,58058,29906,94470,11428,87883,49103,24549,86209,6140,6930,30121,80670,64806,59226,17745,78316,72251,17349,5281,10942,2141,30080,63073,39161,84260,7626,49690,69611,64579,42397,29279,57178,66224,47025,22619,68301,67943,1810,11861,71353,46371,94264,71011,64554,32849,37765,47261,42305,74995,73949,87731,71179,53057,47878,98114,32757,480,86878,76170,26317,7097,31841,32786,61060,1045,879,36952,36376,41463,49115,35682,72519,49327,96642,6057,30197,40913,73873,64535,25476,86046,67059,63626,2675,48139,79677,11464,59415,87885,82857,32610,59678,90794,16139,92984,19560,40416,83855,81236,74635,21582,70936,1996,91762,98705,98318,75365,32385,68514,3962,3917,63130,32563,69861,89643,62191,54859,50968,37744,10824,75088,74589,33709,20532,67642,53532,73525,89024,39042,26993,55827,24020,94442,94813,74290,14072,65343,70416,71422,82663,65887,32297,92087,56862,24803,27938,6873,65200,98371,73314,37701,9974,50641,1222,41287,95826,94637,86448,21524,62393,67905,73043,64995,96653,10656,20481,62642,96496,42501,52384,16677,45127,45288,61171,80306,39007,56690,31515,91628,88416,9886,20820,52871,95217,80303,32571,91324,97948,85926,70684,11468,70126,66560,2119,96627,88255,18019,1358,89592,28442,99393,86272,27851,78906,62973,32987,94334,7189,94164,94214,81679,416,90693,5955,11314,13630,25702,5289,71695,15264,19337,78719,69650,89131,22337,66308,65995,11055,89844,19972,10978,91402,3812,96377,38652,74379,81445,34441,81048,25362,9155,43946,34957,93244,2637,2440,44136,62091,92559,23834,92892,90895,34311,40233,17471,17106,91410,66949,68632,31970,16252,23677,82630,94457,50987,61964,39299,5793,13906,48641,44000,66540,35577,75779,27883,16130,89978,63846,67962,54860,15525,62631,33318,88557,32614,50476,4825,65749,6618,51067,71298,9266,54750,79922,72082,64853,98315,51757,68477,20323,62762,49554,63166,28343,67567,21099,97484,82446,16562,88341,22966,84991,82022,88398,81690,6345,98023,48153,64567,6649,16889,98833,52797,90694,43816,80400,60701,50496,33688,46821,18489,18202,10841,49881,51138,8905,84458,15879,58851,56905,7583,11783,74615,38832,32765,88695,11020,72047,56464,63912,98349,89215,44838,85921,59853,83664,72876,67880,28275,85481,97020,25032,60046,84533,65982,72861,92911,75386,28870,99879,5268,67692,83818,35246,21148,85332,22446,19391,80040,45737,46764,37129,67118,34256,84498,28752,48485,58122,72773,61568,70700,5906,91521,51847,89869,37222,64934,32847,15763,16243,74909,19492,75586,69977,56567,52113,17400,33676,68804,92875,65625,16175,43621,26858,52549,33768,93696,44418,95121,26650,46776,19683,92556,55851,23125,5443,4366,24213,37225,35386,85648,10291,39462,72295,96425,45479,95539,85513,31824,7112,60258,67111,16396,67960,77559,5238,61205,66057,88419,56367,64483,36585,27985,14928,69304,97448,69679,15398,36053,50087,63913,20215,44040,23656,2591,19915,30820,71464,85739,77397,57343,43577,40368,29042,21566,92786,37869,42525,49026,59993,24207,59434,24930,66617,74374,18439,28747,71547,15480,92550,57204,42947,22019,17333,88755,72119,48001,46738,93968,31767,20048,17646,74242,91086,56036,68349,16861,94413,33209,62783,32491,30343,93711,14052,93922,19027,23421,61046,57653,86552,13539,14655,22557,26559,49301,79341,44649,68714,23805,39600,47646,13571,53132,45601,37740,93354,86815,52011,15483,43763,85918,73150,4930,384,18649,92344,19221,78394,7833,56430,43319,10720,37696,64821,41404,59359,45506,42743,84941,50629,46940,55634,34914,96970,30765,87961,38850,42742,80191,87669,17266,87977,83439,30703,56807,40072,41794,70191,3894,74269,56355,68975,18792,53283,13250,62577,49271,50922,84203,25498,65871,21971,99413,80562,75869,567,22447,58548,50967,64257,79956,98691,79594,29109,37283,33483,78142,17386,64163,38860,18993,95047,82914,5740,54711,12400,19967,51624,67348,36121,50422,2951,67275,74811,2094,22029,20548,53100,72699,74564,38783,45271,2381,42630,64359,41077,80578,51417,78840,5962,87026,8875,20125,73602,47683,24292,60383,77509,64198,46866,17206,71104,86222,40303,85674,98374,95549,63790,50009,32868,31038,24430,26777,16532,68209,6666,60271,93097,19274,48541,18928,19552,98043,22093,43568,17481,2932,43334,51344,58086,88832,33005,15996,7294,88193,34754,51625,798,16234,94241,44989,79040,9995,25717,7529,27326,33641,25880,46202,56772,30479,92221,49077,1638,95744,80468,57849,95118,86941,67693,49569,94377,69647,32354,89273,12010,25817,55159,622,74619,98803,18812,22684,83351,69928,13972,10613,31241,71218,84133,39707,77693,3972,49091,95353,7195,85744,46201,93869,61259,51258,67913,36576,63094,22464,83184,15760,80809,80179,88401,56231,9027,66293,71009,27522,13606,35417,91799,91910,47453,7183,18313,12208,50391,33826,34263,65589,20852,52229,67011,68937,69458,84111,50546,62946,69225,97395,17489,7644,56266,95913,64604,86215,11138,90179,51738,54057,28138,50498,56238,77377,9008,49700,25495,27976,77075,51083,36936,22076,67203,77907,57554,3745,3238,96929,17754,1886,82012,3548,30516,53853,22765,64906,52817,62375,46128,85710,95450,57265,33903,31684,13648,74962,69139,36029,36230,1865,51182,73973,22437,55085,14212,84346,16674,89098,94765,16134,49489,15803,43497,97430,90879,99849,97563,31227,52716,90024,71087,58484,54529,88277,42719,73278,30424,88287,7192,77462,820,39216,13717,26505,56190,31739,98381,57401,66553,93421,98807,9743,8910,16796,44968,82137,29406,26420,28101,67784,83804,61918,68147,31427,84811,61868,52891,4215,56145,43378,19062,46585,23703,99348,74802,4362,46721,76523,89630,13512,19503,25243,41685,88588,60087,84248,57514,23093,98354,61044,56809,40608,11766,63970,83605,664,25313,25163,41911,47944,32256,37747,42448,65237,10800,7731,5876,76020,27571,36321,7555,12833,8210,60797,7034,88791,67925,68985,61627,50188,90709,15765,36270,46920,53902,67726,18506,29254,74937,26374,21894,42160,36532,87973,48964,12742,44946,16233,51851,71352,89263,95358,53322,68060,51293,91790,83947,51049,47911,81435,4438,60059,75,21272,15029,32034,52435,34855,49648,95690,9949,33567,40607,3401,16731,30825,6276,95839,94042,95991,4640,48802,24220,56415,25505,96515,11940,49207,93217,37243,34050,94622,72966,16004,29632,7445,36828,98642,36661,81340,22833,84783,26620,94716,23355,89833,75200,25840,93365,77843,97987,47934,86594,60312,25691,11081,18532,15019,69837,6273,30233,84832,20094,11449,26397,81671,88847,50722,54690,34723,12716,11710,65267,38510,54156,65505,11609,59391,12053,94743,32770,44916,3475,87253,72910,97897,64285,45497,26790,77859,3945,74292,41304,38057,51609,10807,97823,90418,79446,23554,44157,67154,37564,96793,41247,33810,56001,31188,20550,26522,40629,16882,81446,1564,69326,29913,15343,31396,68030,67400,82008,46206,59687,19429,13879,38093,28809,35825,29425,67189,11365,15868,42967,19724,16554,31588,28744,89568,41723,37068,49227,22986,56082,77616,15888,25437,7562,21509,13697,9666,13461,45494,74621,34942,12385,15373,60449,35274,91409,29361,23831,49387,56514,96612,99371,57536,65790,97368,2767,93824,86674,21193,68366,86927,85104,62916,70326,94330,50522,35649,9511,32662,17235,70617,9054,13569,84336,91537,67040,10331,26953,62895,40528,49620,51914,95587,7660,1270,18189,34319,84875,38937,44170,60638,58436,24245,52524,90252,19740,87007,3709,55383,42153,38183,35560,67344,75224,8738,13139,36375,87635,21651,3644,31343,5521,66118,29214,2798,14331,10768,33986,45296,96869,6279,98127,4152,17671,1396,81727,48240,55940,94675,11825,25387,46620,97786,94263,18463,41702,39842,26531,26176,4733,64195,24674,75735,63233,34208,83347,87125,86483,34330,54037,45882,85264,22923,82063,74681,70831,59123,14667,59151,49246,23007,23531,23168,25507,50367,7873,2816,89438,35002,78408,43059,27542,66131,70678,56505,82794,88490,63507,52162,64611,36368,21100,61688,91315,49388,20605,52436,51956,76855,97672,1986,68090,29733,71621,73746,68150,58458,60947,97629,6852,98991,22430,48446,35536,9332,53644,71083,43642,93638,86858,11185,25694,9553,52117,44934,35261,7196,49475,89883,68426,82688,80586,15793,32697,91115,24403,84569,9144,36631,4303,18344,48840,92070,85099,52510,5150,59578,11728,53016,96824,21395,59349,2321,83492,50709,45054,97697,22735,61992,58671,78443,82499,9563,96489,16736,27906,11768,92690,8442,11781,99925,46590,14416,20479,88332,24844,64307,62671,59128,37444,45626,84398,59983,15066,66559,41170,41447,17014,65746,50713,79470,38846,52158,39676,36180,79092,66137,31047,87232,66781,67873,43886,77785,21476,41081,40515,25631,98370,96121,88107,52254,93918,96774,51933,73893,51438,75734,38825,8361,78766,74571,25140,75084,98324,40658,10549,49406,94569,53760,42321,92891,37816,97681,83920,9967,54114,89655,2560,23801,14092,62602,87809,72591,43291,68723,33846,87072,57916,78475,53419,42620,58510,64044,35135,41862,19072,39243,35227,15106,62925,23134,97863,75692,93837,4806,3642,58403,68435,60431,44135,22379,30593,79088,94811,17438,47790,30066,1282,48295,85898,27610,56535,99455,91514,39835,42560,81125,5990,95959,30115,98992,65101,3392,33816,28822,61576,97729,44094,26619,60460,78700,94534,32886,85385,11885,41144,69684,65911,45128,95240,92320,75276,53543,60334,71548,61560,15103,94660,72201,54014,71283,3033,86914,95684,63361,8635,43944,95892,98692,58951,29614,55709,78839,75655,74193,10081,79885,54962,79375,21761,6984,77319,84729,62677,16136,75652,50497,33332,30746,74109,29247,78280,83639,47602,54483,47218,10834,4096,20386,42854,65031,77459,86412,47265,60695,73609,43490,28939,62576,95626,21459,51597,945,17889,89753,26891,46242,94829,87551,77795,99799,75072,42714,3961,59131,1897,92673,7520,52917,87985,41064,40914,90016,73058,64791,3942,67944,78993,31394,3522,36158,60686,59736,80158,66514,47839,97809,62252,10788,95383,76919,97068,51513,83519,92973,30744,17644,17954,4036,13011,70892,7927,69116,50646,16235,52755,98714,16498,84241,10263,13396,19763,71768,76152,73026,84627,41696,59445,69724,57509,53738,18304,25746,88598,13761,83408,61757,19694,98353,12756,83602,17350,26599,53194,10826,69943,62848,20941,67014,4754,51107,10642,21793,8387,14848,5554,98787,42459,86504,52498,68271,35460,63678,64977,27916,49053,58488,98417,59241,87739,11659,51413,41200,98357,35542,29922,81055,15631,18369,15191,74188,80942,50275,96064,71284,73039,89000,94403,28636,8414,69124,56228,35445,54944,25035,87120,46985,81510,85521,54819,79817,63992,30773,31905,21989,95851,12974,92212,58357,63584,91133,18822,4065,64174,98445,32143,19121,4875,95783,15413,84813,8686,23827,33440,55850,62553,77673,30541,92184,90645,41188,23550,75605,26002,84425,42561,15699,3794,94820,26062,72010,94830,27210,87571,23057,34223,68021,30307,25421,89416,62478,79175,57465,86260,80533,82804,19873,68211,74149,77719,93404,36322,29420,83834,4768,41523,35042,1829,65764,73855,27770,48174,95758,63060,19942,5552,29971,27227,94410,71266,17048,18410,89307,95203,56630,21030,73301,92817,21654,28061,20999,54194,52104,67107,50230,62628,51905,98213,62829,80226,83567,58551,34523,68767,8864,24285,81517,2260,1450,84259,61935,4007,96055,18475,84408,50374,56793,47407,65244,2503,80764,19195,69246,23874,56533,40144,95717,72491,70816,84204,59707,71127,83242,97481,47946,74141,59822,58105,87828,95721,26589,26162,35011,28187,12073,11223,52464,1548,43960,2644,29907,73032,50479,75908,11944,43393,60044,54090,80827,71460,22751,70856,58812,10264,24711,78,71098,58913,31440,71146,32224,51234,31544,51937,86840,1403,71463,52073,2377,14580,94429,41234,76105,13256,70811,81373,2666,22196,3042,49618,15220,39193,15142,47921,58657,58459,53846,72463,90375,89502,15208,33656,31298,51188,17460,4831,88964,21455,83225,38149,50554,98319,4790,59539,5661,3442,289,93751,48852,62561,42890,70577,69168,55795,14312,83246,84844,66274,65402,13668,61669,70963,58976,11534,1893,18990,51172,32544,96909,9926,8035,39766,13404,21982,99315,3009,40198,90170,7070,18060,44710,89179,83512,19154,82263,24734,44854,20972,66716,55479,58388,78189,80720,651,89121,50853,79981,29343,70540,39654,75023,65593,72105,74360,38436,82374,74815,51989,34426,95797,42548,48643,69055,80567,86203,58307,45663,30122,97945,24204,11237,12298,21779,27661,48133,23556,80656,55070,83276,84119,20377,3963,9906,15461,68551,53765,88086,76592,13821,70843,35376,25954,28548,99907,93916,60575,87593,75181,79718,85631,62675,90019,22803,14615,10052,63022,91595,97806,26153,31316,48220,29517,33004,48373,9056,47439,20307,69436,97125,20746,29725,16359,59281,61094,5641,10640,89066,46180,72919,49541,44240,47195,13068,1212,28258,97341,42939,98792,6037,15421,15217,74488,66364,83573,24991,34746,34089,11540,50788,70832,26206,14672,94642,29447,4024,17053,33506,31531,32648,36405,3161,34032,12484,35036,26071,84683,59884,77942,16750,80925,61625,50587,70780,75836,23338,90592,55345,67155,13943,55282,76841,44804,58003,3873,64098,41878,94299,5699,27840,25756,57959,43700,19734,67782,11339,68164,63026,50882,62963,11714,87214,58845,7963,54220,82730,99826,1306,35091,3115,32824,11432,61454,61363,40307,23398,17434,45518,88931,70613,23274,79069,31187,23931,64925,8103,30040,52386,23741,88040,49353,66839,12585,25058,17782,28106,78164,45847,20946,67282,19328,52300,48888,83403,77917,35823,28211,26543,60635,66649,96416,81933,30188,14898,98897,85043,32863,26837,10809,54115,64547,88384,77225,94677,12066,7429,88261,31977,18063,20240,54779,97029,83112,75210,36212,17007,6853,75094,4595,20774,26860,46995,35487,13514,55975,32264,59441,77089,42631,90936,76933,46208,51929,47028,12975,23508,82382,3536,69378,89494,66440,49652,32315,99153,75416,7263,20818,1772,52056,57682,4962,4410,80348,44505,55534,27060,7378,35830,30114,70533,40048,54087,77005,66080,85010,61181,59900,7173,89652,78343,68905,52965,35644,60054,10845,30159,398,99920,73619,20119,42612,58718,52388,84288,63939,95618,25826,11713,75905,97684,86580,66382,43320,27754,13870,26432,81157,25950,17853,40755,58940,3075,27524,92164,4995,54272,47948,64268,15283,70837,62634,60935,65532,66278,35299,25369,8074,52350,39520,4616,83135,76226,39864,98503,97418,65818,11478,42543,89849,20825,28091,7703,64255,323,98493,87733,19333,25047,2917,57404,12192,23170,19995,67783,14330,39402,41770,78379,87333,74060,23333,78910,76490,7878,28698,27553,3728,1690,73933,92175,84612,89051,11182,62718,54620,73976,20821,76428,69674,2205,54250,96543,44048,2193,59878,9865,52417,25532,87035,20138,89271,55966,1500,98,76812,44155,60716,67464,89663,14733,32273,26904,15367,17476,32773,38459,99067,72986,6339,87588,79105,84920,87830,87997,62715,95490,88792,81437,9009,73965,89233,83457,58935,20604,38161,79367,49927,50317,72030,6804,19322,8199,64480,42934,50246,36485,64964,52491,74608,38331,29175,81643,5006,48608,70515,34388,33529,23035,56102,90901,58621,7019,94348,12473,30582,90684,18399,38281,38166,3506,45336,56241,16663,96545,30126,77454,54018,7822,77705,60131,28722,96271,37347,91731,36386,45883,91659,24882,83444,86466,26290,13504,65111,9334,80211,99256,26048,11739,58049,7952,78861,86765,84447,28085,52330,31835,39826,27052,23566,97936,35174,21373,74310,6196,74747,21707,30170,40738,58423,68904,49215,90074,88268,36815,65264,20559,29547,77659,56002,88876,31179,91513,54159,3560,22190,39274,96573,74164,68635,20171,49766,38289,94572,26899,45974,9333,70980,68831,84338,54390,34512,68026,28658,50219,93343,41541,63090,10427,49553,8349,37782,63212,47337,88127,8950,70600,59575,14178,81700,40126,14362,12480,32198,14909,87539,80174,47115,24111,7989,27733,57794,23906,90997,48262,25955,96916,67598,74714,15618,49025,21809,50063,58325,72725,23348,72596,15079,6770,53631,48739,31816,79630,90710,44251,59527,3811,96520,3902,99953,77896,21237,33016,86281,94750,72868,47138,70589,55734,23739,90282,2527,94695,67215,54289,56895,74790,57563,34248,1361,58440,50363,13037,12957,23573,25948,72367,24473,69023,13162,91183,58855,23743,75068,73768,45422,63462,62923,97030,75873,80895,40292,70356,11688,88471,14659,38848,12660,20429,12883,50267,8321,50121,72737,51339,70792,66204,9076,85832,66834,41337,68064,23277,44043,97331,98570,7323,79427,43844,83255,98578,87468,74437,30443,68579,39733,29358,29262,99562,8093,26603,22879,81715,32339,76246,68453,12068,14771,66701,82331,49907,65420,51823,24074,68011,24705,78811,62237,76225,73703,57441,74552,42074,21996,95065,29514,83144,33508,15776,24811,29548,75401,47449,15020,54820,96123,9481,80160,81201,7349,18709,22938,69330,62435,31483,52311,86507,95439,18486,20731,51776,44538,95042,57709,45261,55332,4921,89251,61282,44709,62863,99059,49576,40520,58354,66598,87619,1444,24591,93306,9245,26516,20123,24181,63863,85338,87315,20178,90870,8141,80336,83409,25477,25946,59108,70208,5005,207,76067,986,101,46420,45509,26417,21747,79478,6027,21391,38414,14002,88974,70122,90481,66362,19399,43771,46183,94246,19839,90318,94493,66008,19730,96453,6,62390,38503,38847,94504,91225,47761,75280,62910,31243,80273,57193,44482,39276,96089,68470,93130,66481,83278,78874,37861,41433,7382,81983,43618,50017,79235,80829,36357,8265,98393,23412,88962,14800,82925,53273,45305,14354,30712,18040,6700,55947,15289,12747,23449,89523,45821,73999,61731,95713,66741,78768,28743,3198,72334,10474,97837,89461,99373,21584,25397,34527,92207,12775,96871,90453,57338,2022,33969,12766,53220,57969,98449,84011,25371,61050,97887,1779,27696,86924,20974,99542,59610,98967,91550,45797,39311,49348,65937,66345,67467,93407,11583,78009,86778,85644,13317,77161,20698,69947,76782,34095,74594,86333,3921,56477,16480,58909,88529,78613,28848,96039,85270,40965,89356,37707,24845,23880,36234,13762,13695,9637,58985,55015,65843,49465,22425,89916,59945,13445,21569,99809,89988,47120,43295,66903,42472,55439,76260,52169,1253,99499,9607,14145,35152,76931,62164,91322,11008,54367,96391,15692,82261,98533,35792,17172,37026,38932,51148,38167,76199,74251,39840,64811,84427,51071,84212,29503,26554,55659,27197,16653,93263,28353,29838,34810,90221,20648,59104,56286,36409,9545,27144,53397,29930,63334,62452,23234,27678,55774,1026,86326,92717,32922,64410,54410,15391,84068,62800,88314,7004,44645,67953,99125,56027,33965,33327,38944,39463,9285,10521,57891,68757,21689,12745,77865,45851,80180,79861,64378,97972,74911,8902,14334,20463,40967,96245,79621,25292,64696,92822,71226,96979,72526,57733,54801,25512,22598,41017,49619,22505,90863,66848,24900,81622,48900,8129,23230,35952,23641,22188,44813,26932,84687,77314,9658,16419,787,14538,89952,48097,56619,36026,15174,71429,43411,21285,96154,19295,77369,47380,5497,80962,84696,79810,815,56926,74231,14583,49757,3287,62212,91538,34267,34586,6732,31996,37441,48820,16339,22733,46094,35746,81371,15781,87573,43450,22962,19575,15670,22140,17381,18521,48827,62672,63854,5874,81190,43553,65677,26294,51050,85952,86510,13558,59411,82219,7534,39079,42802,44127,39927,27564,25841,70109,71461,88120,94449,37245,87394,55981,80862,80365,91935,50334,91152,44070,29826,54256,73817,22455,59649,16568,29168,60959,18568,86098,65676,16449,82242,39966,56315,73144,22103,239,51736,16247,91554,51428,95604,75382,70722,51800,67133,47166,1388,21806,51418,22566,69485,92255,73148,260,26965,26829,5135,30714,85146,27736,71500,78286,77696,48669,52364,86219,89300,82077,47685,64095,34873,24013,10714,9238,27253,66026,29218,33786,67277,48540,35969,95458,4482,82578,75457,15253,21434,66030,65236,44171,17338,82220,8786,79712,65604,98399,59932,41997,85023,96327,43535,45062,77156,8697,88551,46387,20576,34502,30853,38703,99984,31093,94219,41504,6124,71415,45033,74473,40039,52494,45629,36066,19632,72162,59362,72243,55249,77507,18634,80624,39765,34633,27369,67546,56308,58884,10928,31297,73205,36124,79706,63691,96752,90430,82636,39148,49436,61327,65256,56709,61985,63979,47270,10566,55845,62844,88838,61387,3559,35430,24778,88428,59767,1798,29345,25226,49612,80595,77452,45429,79315,29490,88740,67075,74568,2586,92066,87205,9742,95223,29801,16039,99317,35136,723,52441,88627,74224,46834,75373,81331,29710,60506,97290,51519,15661,59369,242,67426,11039,53259,1646,5618,57167,36412,49116,33190,27407,37506,7041,59979,62673,17980,86782,14496,7664,77562,33098,76630,15775,41811,83520,8634,97480,3100,45852,46345,45100,66835,44358,54869,66524,49613,52320,68855,84216,61546,32178,68234,10165,86420,76039,1408,43561,26952,14838,15613,27393,59141,64344,51931,28141,91004,78869,58477,4783,70174,55725,93,81208,92017,6293,94302,82432,38876,38079,78856,3164,40651,19397,11853,81925,56268,46148,50170,23650,82991,53000,22822,33419,65071,82101,27636,84644,94187,18301,38115,79641,37646,70942,58346,14546,41767,17891,79854,27692,795,16494,59024,9713,80391,60371,56396,73445,74705,83114,29743,34765,38100,95006,62201,99581,87347,72325,82040,16317,40898,15660,53677,36992,91196,44144,74856,49893,46576,84624,86628,76211,62525,24532,19769,44042,72748,21611,81930,83187,59,66730,30994,34603,73779,39357,4854,23515,81477,914,20649,73780,84985,30919,30558,85271,6895,55572,74872,76480,39674,38452,40194,83728,73533,28213,1492,41909,21019,49056,25533,56369,31832,9036,5071,4026,90877,40037,87840,44106,22638,14861,608,66407,60410,2287,22099,64162,16610,2885,60553,83571,56408,45813,84184,42975,53356,89026,10348,58485,71791,10449,96808,236,48993,31686,78550,3953,66789,86152,76257,99771,57281,17795,27337,34562,87494,14751,62876,45727,70860,66020,63857,2999,20782,42481,62308,70171,71511,41824,5002,38088,18161,47091,97450,51160,39443,89455,84007,5427,41993,27979,36854,92681,23487,50060,32220,26680,16754,85993,9514,74184,22272,31857,47081,46004,23219,23006,29475,13098,45734,53781,2511,55426,68007,3886,33792,82653,40179,2124,54371,65353,98781,28741,22770,55861,62244,74787,97,4842,25663,95414,28304,4023,97388,8046,56948,49636,89767,97033,46505,49833,67619,59679,79291,54448,6548,84907,61536,16954,81287,11235,69395,12390,74515,82669,38231,67820,27338,3431,3936,13867,78736,7569,32495,3452,14550,39125,645,72136,15214,60275,85722,56703,31611,40561,7598,5419,12242,21614,70369,92436,14302,93236,38500,52980,3690,44032,66231,10628,50570,3338,90681,25339,36004,62706,33489,89480,87190,21370,7194,79195,34083,16975,54867,20434,48341,30627,92301,96126,63852,81800,49735,38969,97520,43958,94306,35447,41224,12540,5878,94353,80194,27804,78000,23138,26147,68509,92101,49391,58296,16544,78822,47610,5400,62030,1170,49853,71223,28303,27703,89697,50474,39970,98103,4763,79921,36656,37725,18127,19319,99008,22372,85701,96323,48012,1668,88242,19010,76801,15126,93269,6062,2036,54123,74678,79952,21393,50294,84197,97238,45181,86292,95040,7033,2344,76729,42352,51141,40626,32649,22820,85928,14791,43092,799,47725,46633,91364,62992,34465,57142,95034,14857,63959,10270,97201,62998,23435,52422,82389,40413,58290,660,64858,65205,7550,87581,52325,37997,36272,2477,68246,21126,44810,47355,83367,76620,60208,21456,98577,95070,27546,71557,75526,91766,76214,98569,71661,64646,56512,95978,30461,82731,10101,43695,30169,76004,98790,16887,48361,47133,75139,77576,94942,49806,30556,31313,44811,62630,14506,83122,29170,96748,54273,82364,93937,35516,71114,5583,63612,36095,17429,57727,90441,55468,92122,55224,22056,44724,90944,66193,38550,38036,89473,28430,24217,28100,16250,99137,87931,11134,79468,81363,36195,9492,78929,87744,68907,64214,88759,19290,92029,97833,55639,68586,40981,53741,15587,65888,52067,95021,62902,46019,18261,59083,46916,6788,29317,57355,3621,46686,42051,46615,98907,42932,67200,78462,71922,48213,95767,77181,71630,46115,87490,38210,56589,65209,97951,38727,28718,38502,11585,27213,77918,80463,63878,5012,95166,95220,48984,52004,81620,87526,77575,85789,80308,20737,22829,71953,77030,65758,65103,6907,74698,1945,34824,18247,46198,61506,53216,57858,35601,73920,60239,22579,39217,3999,80853,47706,51577,53867,87181,61839,30199,299,99162,47981,11788,89822,91616,11773,76205,89217,91165,96099,58257,95483,61137,56446,38300,16093,20882,65690,70219,88142,69086,81677,45115,24759,59760,11499,62465,4803,22987,85170,27405,51716,43965,41869,57446,43653,21124,11330,34552,8169,17026,58301,89976,55669,36397,91434,8267,18424,95890,29169,70021,1570,53399,89011,37426,92421,45526,33003,62145,86285,5164,81890,37356,29885,12776,53484,95407,52420,61066,86986,21134,38356,7440,15249,97172,19816,95438,82158,75581,53832,70695,26013,91923,88688,38105,1401,80883,91732,47456,57052,86147,8179,86392,80038,92604,54026,58282,31881,75953,27031,17974,88888,76711,5163,54921,36413,25436,72365,24267,90292,42225,19819,6392,79839,97895,91262,15198,89055,56484,15190,89615,71874,1400,79802,67687,80929,1535,19004,35244,21263,43635,73054,78169,59771,56657,17768,30427,19452,38026,62841,74991,79464,55787,87100,83982,65465,82642,15712,61834,57237,26457,96587,98200,84556,29161,26022,41,77195,60956,90457,32531,91880,42902,1109,76216,48369,57903,10184,20599,58669,44628,77704,3645,29891,65922,285,74578,23825,66938,69222,84686,60998,21807,3346,99886,66252,35933,9382,52206,25781,72032,61912,18474,54739,54192,80486,2335,39307,94509,41039,83435,64441,96829,86332,839,11591,35228,4463,37332,45572,50906,19451,48723,42130,93720,29017,67447,45213,16314,884,19793,42834,46574,49966,95740,79024,24761,40127,18366,1167,84545,7480,35995,24777,18022,55401,99554,98424,94481,86263,83171,29783,44333,96762,85516,41231,23507,59470,65673,69765,65808,50427,71164,19906,40501,63123,11122,14680,37962,23399,1328,13488,76024,72017,82034,81247,35278,38056,54661,95593,76139,19826,91676,36597,22225,26566,23181,73668,26762,32580,27269,53764,36594,42427,39355,81470,68300,27532,93569,8590,65088,9584,11800,34174,42278,74562,22177,50729,2729,59777,31533,6884,83510,87329,20282,85172,42287,54188,66867,9337,62287,42015,74314,21261,54380,5283,83475,72482,35722,62611,37417,43204,45620,82249,68941,16863,37881,30147,21198,82017,22931,22303,29217,77440,58038,84026,44353,85485,15767,74285,4794,41639,38692,53531,21571,94682,45697,20170,50507,91035,24894,73723,62797,26163,21621,54097,84806,77563,91835,93316,97960,23485,1268,17242,97949,69322,63373,35867,54352,39810,54642,9062,60236,76359,92427,7884,52692,53105,20035,478,2828,27420,20031,23685,3649,11425,99476,37191,84352,73735,51235,78214,92972,79635,76387,33331,43159,48431,33898,40661,44238,91084,63318,79666,24850,50762,58069,45154,68549,82412,93676,71177,51106,67188,33099,47169,41852,76409,68402,48667,88973,52411,9674,84356,40638,66615,45270,70976,29689,46347,60477,94870,44200,26647,20850,88918,48935,61348,69038,44041,70063,50385,3163,35822,25185,12328,37003,80671,83321,30797,98620,55933,74104,50990,31697,63325,75310,58287,46139,39138,25585,86966,99589,46884,78029,37105,75758,68571,98329,27493,9914,67769,2705,78006,52328,86282,75929,44146,39368,2605,48684,54640,49661,91706,19425,89365,46745,96552,82289,73305,3151,82103,45415,82147,5390,10404,81241,54024,1903,49186,39191,52572,22970,70763,94967,6796,59959,84131,78448,30979,25478,29973,97280,32088,99948,40767,37674,60133,60541,81206,31318,14427,45393,34847,29044,57683,25442,69930,58102,72396,22947,57910,13593,18090,54503,36311,39041,92355,77603,42135,74921,8755,94814,20909,33746,73783,15556,10493,49500,45632,97499,80307,26660,85490,81881,87235,28267,77256,77490,10584,12076,11177,27185,65222,41966,24588,84210,48977,41515,57721,12275,76677,30865,37023,72749,33681,57565,29146,70946,17559,98264,25554,17298,7147,38971,69916,93074,6402,98526,57339,26030,90026,39180,1435,77121,21343,84694,83074,28482,18352,97446,30591,32746,91917,86172,64004,56651,99591,58230,45795,26376,74268,97411,94236,75828,25240,66365,31002,17248,94079,31296,82317,48719,72852,33352,27897,33481,52829,15022,24137,98314,4134,87800,26730,44173,88692,65347,67557,15321,98018,47305,5490,5884,82945,82207,58418,92338,12488,19283,93511,90904,19805,24769,86859,87953,65776,48064,33158,14727,54210,65197,77140,27649,33406,94763,11742,80030,2098,77142,29581,55767,3683,9013,73584,59850,33090,8876,90727,83769,23625,72754,20630,26026,82448,29187,97656,45260,54942,91863,95573,52820,85328,89746,95153,85742,96914,53984,52043,30898,48942,33189,72714,17802,50501,55514,79463,51897,6043,89100,89082,28725,66757,69580,24998,67826,27760,66448,12567,22673,28470,50539,21624,58380,247,89158,65373,91277,70563,69011,96266,69444,58662,96475,1922,45351,6614,8183,66709,64202,17587,94310,86139,44046,51296,65195,61557,80142,65284,95202,97999,92927,93554,14542,44107,49033,49878,2225,62564,93004,37944,32234,12796,98979,13296,2979,67624,6650,57160,25754,45920,16550,28242,67797,40415,71206,94123,11079,48164,75411,81518,53475,2042,87675,73643,9320,51685,16363,88080,69178,3306,78843,27781,88897,38612,39314,51551,39814,91132,69532,51319,39858,30674,66351,51356,79733,37985,95478,53455,178,81738,13305,74059,17201,24096,59267,38621,31675,24693,31030,17709,67898,77651,27593,74820,99300,50205,66180,13517,66158,31766,25862,85175,75030,17650,33107,49195,4870,93143,38064,26915,64440,70332,43839,23594,6752,73199,71089,81697,4609,16965,75821,26383,54680,21616,78777,89797,18960,94032,80497,38323,11271,30317,56867,66183,60215,70662,84486,54105,33171,81805,32976,97696,52393,16907,53372,85143,72531,28019,30760,32453,77431,54405,42361,88103,85066,51578,88856,90610,66425,91053,45982,52527,16100,62831,90248,40726,88794,49238,15517,54457,47191,31436,99822,80255,22361,55864,73119,579,40923,59282,62389,35191,1298,87937,33448,86077,26216,45698,31265,23793,85127,90311,79038,25601,34993,78078,57695,25770,89338,58595,91878,50664,46149,85705,1372,26443,67540,75832,69215,67909,47444,87956,52778,59028,93311,28351,18384,82859,81412,59783,87618,13368,28394,73363,49012,92618,16450,38557,92637,67542,82909,19279,63615,10444,76471,45859,65338,17492,16637,46191,3007,88291,70271,62036,84342,4118,53706,46658,64422,65139,34631,71722,8893,50369,72066,46915,30291,8817,89187,74247,42979,33952,93190,51329,91425,48519,41405,41563,54349,28284,34455,22304,64232,92703,39165,53656,15974,90523,93917,58093,18420,27726,36222,54771,60310,73717,58748,13559,40517,7071,13722,41353,80187,19223,74294,20976,19865,3437,13164,34308,65012,50184,68226,22740,61443,91658,332,55225,62662,76201,70966,76937,88123,54375,16140,28693,32459,25015,174,14029,89742,67899,20136,41135,5304,52091,41754,31608,12143,11066,885,36849,45682,86340,70097,42928,28172,70568,22921,91061,96044,10440,3152,80021,80452,14900,45677,24017,95457,29269,58450,25106,22086,55777,6104,5056,78885,67532,63646,18430,3214,25895,79713,88368,88815,77529,9213,24254,59101,18145,84096,52949,29875,20092,90480,79316,5040,88694,15272,71119,66566,32766,24856,15149,72400,47461,99574,45955,50821,63657,63266,73911,67950,51730,7340,46084,8715,6238,26594,47978,47792,96978,1885,66950,79889,29808,28373,47604,29058,757,28252,85935,40059,58200,62810,37412,38120,86345,43390,16537,34064,51112,75438,55785,57213,22090,43950,15916,31464,78026,47544,95643,92504,61949,7470,50220,83152,94099,37565,48895,7753,28974,29133,65789,91712,98655,18119,86382,49167,49308,70490,5776,88947,97774,9845,9003,92328,24617,24594,14154,31155,10976,11043,94991,78501,79067,6860,82183,46718,73521,38558,64935,72141,85774,23806,89206,18379,74163,6837,86667,7656,74175,69263,7533,45604,73699,6965,64184,20015,17926,30630,21907,68265,73311,2896,22137,10650,24671,57710,30662,74823,20179,75775,79555,35254,77218,80333,62230,61371,96211,13212,10392,21851,68130,69249,84827,98592,64338,25266,3361,38310,14370,19430,85204,53917,22595,3187,38763,90741,2842,91694,41147,86581,17789,34495,83205,71639,36043,4621,43408,51032,59323,18323,5453,52126,42964,85519,92319,76295,9148,44820,20449,15077,10633,79501,38626,76114,17734,55188,62313,45901,52659,14804,69574,41779,16953,87583,28059,91690,81815,98647,34106,73362,55303,41703,79251,9101,54985,7047,40091,78733,98797,1074,89417,43951,58639,24261,11261,23849,10734,99558,69320,30665,9784,98472,31408,8072,69530,47661,4237,62251,18285,28731,44219,34276,94632,73188,51223,10970,27141,33679,19618,38201,13039,65105,75345,57201,19650,40133,91131,44860,72161,10586,64617,46678,24802,96906,80646,4972,60815,22977,5811,95894,75733,59421,93261,45247,97258,43616,72843,4830,9610,66152,18310,24747,26737,97261,26405,4213,45025,96421,33256,36894,70338,7210,79762,26334,65206,93903,55702,12710,12106,23115,72529,82362,70953,41201,26056,16540,35429,18496,81271,31162,68538,11676,50004,75414,47433,64965,69399,29194,27500,61266,65270,442,70316,61630,53087,77876,65919,37595,16389,151,26307,85372,29104,58832,73221,61063,6364,58711,50733,65019,54255,66997,40475,62028,75663,52962,95901,6347,83752,10974,93709,43571,99239,50883,89972,23581,4061,70456,22163,21043,29659,47766,46763,59934,31664,99978,53196,56009,77771,2954,47783,80705,28758,91858,14881,39224,97597,99824,86942,49596,62084,97216,20354,27399,7317,74407,72794,35418,71600,80843,64266,8914,68888,10716,24099,70432,13013,65544,93987,48505,4367,48275,73642,58370,25204,35828,40051,62076,67579,18137,51231,46390,23054,59210,838,45732,98867,51700,66121,17167,40086,14294,56488,69686,7645,70597,95944,36995,62786,67285,96947,68516,74475,42213,70281,13185,19156,60384,62573,23492,71520,55499,97010,13432,78368,44547,7903,67502,11995,87241,87629,93882,95103,68048,61696,21738,88449,29285,31095,24744,60910,8582,24297,47096,50751,11560,9330,80888,60291,65441,16128,72541,11837,82215,20029,26259,76818,26017,87364,20131,76248,12827,85451,84601,39502,12347,44461,95878,96626,99778,70709,24986,12424,44088,59713,42887,91942,55842,3857,64369,20618,47617,73391,83852,66591,42175,60033,99545,40958,61818,44472,93605,5344,47649,2184,47153,64762,65445,93527,43679,37421,32935,95848,62931,36993,49890,45253,15847,70851,91208,61584,29023,40219,31237,82300,54308,47972,9579,67265,88195,21483,21004,42527,53809,2910,43941,72310,53798,16581,70961,15689,27893,7080,80587,70155,32122,72420,53037,22490,86170,30963,99748,85220,38150,19310,72093,31874,23197,38040,56689,83643,31321,2763,76189,61285,19956,93382,38087,26769,23201,98446,36627,6458,25383,17150,1322,15636,81768,28474,86517,13227,42444,54626,94085,24405,35572,74112,49245,54362,17373,79407,60094,79720,82459,48339,6228,31892,91632,61591,77841,7187,64114,48018,4304,41211,43908,81528,82962,10412,87305,93303,88454,10138,69392,38827,71974,35337,10230,13012,80918,63697,23647,64994,29342,60738,3978,38718,53279,1574,97039,5188,51322,61289,51210,2667,97643,67571,78348,34217,73044,23237,51810,38094,21748,16614,3184,27180,74260,15635,28069,47470,93874,16980,94101,64286,8693,83418,41581,36786,66556,71310,77248,21073,45705,17524,24883,71631,62512,2548,9494,20403,91365,14756,44539,90218,73216,49493,29992,49365,46604,83521,90957,41540,52601,37317,75222,93841,71811,70769,6644,34378,91234,34430,23172,12409,3843,42901,17292,23870,56088,39651,23905,20406,53788,30615,38585,55288,41707,78105,45676,32232,72822,97623,56393,13576,54122,4426,41375,89250,38934,29191,97009,14500,80545,81169,54335,66476,25825,74250,17236,24201,38245,18827,62066,88148,41525,72687,45728,29599,71043,52579,78897,8641,26045,98055,26714,25515,68615,78626,60821,89868,71067,66863,21304,95577,42091,36243,24291,44129,76040,92073,79353,27978,18491,14895,44338,34489,18357,73473,50189,89606,85286,98656,99792,73464,44313,60286,32479,19561,22134,62728,24990,8628,27460,5023,10010,98555,47707,4159,54336,77104,37549,13845,94201,37906,52973,36134,99262,90884,5460,83364,18531,2187,31973,14839,23213,75317,73168,52203,94517,25211,99449,10285,47313,31783,82680,26080,73498,44071,33183,85499,77126,43879,81130,22783,34619,65899,37872,1532,89816,37515,24631,72499,25326,61629,3067,11674,1028,93203,65428,64107,41106,51340,30565,97240,91603,43681,6473,72636,22143,44253,67698,7603,35871,66028,48595,11869,91211,9685,22877,62763,95897,2598,90484,78969,93598,87849,52844,29076,15255,40158,19014,3320,79742,97129,45147,66182,14350,53795,21326,42782,13545,72669,77858,50262,3900,88959,5678,72999,5663,99259,78908,47122,26948,27675,18084,91154,25856,15724,29876,54742,87582,41444,14083,79049,52826,61203,92311,57930,99864,6552,51012,59446,6435,40261,51421,7690,24765,95556,75751,20682,84626,14184,6478,64411,81376,77810,42334,49478,5371,98994,28817,62319,98802,82427,12608,5212,53542,79488,61022,33563,34016,97765,59425,57194,47711,41072,3182,7159,78411,44896,96464,7230,22887,6440,39373,77309,76893,16578,80860,95013,72328,95680,51594,38318,88747,96570,29207,60162,3081,53315,49174,80806,88992,50796,1292,74609,38249,22717,19296,68747,40428,77623,64473,55631,39515,73469,92257,71058,37832,5090,59124,773,87294,84307,54296,33863,40892,27051,71402,62352,38017,51532,40804,33623,98186,70989,64138,79091,27297,90396,85544,14489,73191,54630,19068,20796,71717,67747,80780,41502,37553,27422,39606,31358,76574,23265,79538,41512,1418,94860,75218,35288,48445,12859,16318,96812,49176,78406,83235,31564,4389,50310,48014,39009,16466,59795,88642,40391,84153,6218,52981,51023,49214,91743,76493,65621,10176,50225,58585,17790,92615,11665,99909,54417,44707,81675,53343,51729,48756,4167,2156,61615,86148,68553,23061,87332,10940,69784,36807,6517,1277,11475,32940,67217,83543,58606,4359,74154,74569,20047,20664,51973,81176,89662,29566,37690,41700,58522,79371,46441,79072,55548,92148,50240,78460,13321,81386,68313,6034,46168,46659,74524,18417,61519,79523,93674,58144,79868,64562,7750,44366,59901,73822,74356,65881,76770,44322,80221,23713,87698,11352,50754,67848,27651,83454,67243,7896,92359,1128,5290,49949,20564,99540,33061,24616,38618,4425,86643,59639,53288,49963,34798,81559,50417,76522,52733,39745,5036,35991,7639,86341,88499,58545,94948,26682,22743,9740,7472,61397,35134,31883,88624,11158,67879,32777,31412,57068,91385,5372,19026,59931,38239,25701,53091,64960,69425,58779,13604,54709,46129,72598,59179,71782,30686,94836,45166,7426,25007,23797,69670,93195,88879,47406,99535,6606,41520,5332,81268,25833,2576,52816,41772,53474,52371,62428,73330,87369,43733,70549,21197,56942,66258,59571,44467,17654,7333,82905,56015,28724,5167,49532,39393,77022,63502,22593,58210,10883,51331,47905,7985,40854,12433,42708,68726,1598,67984,96144,96091,39763,78285,6993,26161,66174,7311,71684,21059,58977,7367,90345,30096,23059,6202,12561,6734,31069,67814,54658,14637,30212,92452,59027,21071,45513,32501,8409,536,62722,11565,48337,86813,45844,68812,18620,19756,69101,29751,48111,7625,42167,90111,41713,37516,13454,19821,49162,46368,45172,55008,45849,63937,1768,32305,75327,55344,967,8825,86695,67710,49206,93926,75866,67828,10672,24294,98359,44441,69982,52969,97509,37145,32331,78783,67886,86682,47990,86101,70861,37756,89624,82516,82119,25265,98874,21613,45040,51759,50581,15493,42073,4982,76844,57435,20468,12411,53724,64703,94357,94839,95015,66265,13435,91702,99338,66896,82126,4868,59725,295,47734,5660,93931,7391,64065,32054,60602,72166,50516,18915,25014,99747,75166,26445,60083,88669,74452,26841,3892,38002,1252,13687,32129,53523,35156,56165,59995,6156,2102,55330,33820,32533,12041,53415,99872,70880,15535,13087,37172,71774,49408,46066,62223,55498,67765,16814,73457,95069,7423,27249,12565,40041,4661,88263,87563,41843,56988,20988,13554,53975,91121,27747,38724,79256,55004,80012,36534,34289,1221,38753,16549,91065,47013,43241,38506,18456,97701,949,22708,40313,16485,81318,46990,57286,13939,57083,28007,25283,1787,58110,37891,97089,27875,43445,5180,23210,55346,5131,39230,98598,77169,93972,60279,93491,16660,14627,53436,19403,40177,19433,66544,51850,56263,54070,70028,32370,90101,9619,90165,43303,70806,22171,18131,60128,27941,15788,12984,84509,35181,13780,78289,2433,1370,18573,17573,91773,59718,16595,90647,90520,43260,20561,33914,95125,14421,83655,98581,99919,88388,27394,62335,76144,395,77367,74559,66013,3976,64481,75546,67392,87727,81305,1421,89512,81506,75212,96483,22459,76212,27374,13047,12169,34498,14306,59085,27588,38842,26710,27785,54075,92021,52089,75472,99281,76284,89042,93833,18604,68057,89177,11716,65116,9248,90559,87087,92235,59219,5573,75583,28763,65820,67427,13981,75323,63374,38021,71379,81002,86159,76164,70957,26211,94960,98731,8934,32337,3603,93999,2487,22291,82632,9598,10115,31196,56676,10214,97337,98305,34834,12771,51370,84877,22720,22712,82467,24517,93049,44945,24641,99056,88046,48741,2270,72145,35859,87340,52532,67628,26053,85830,61023,81549,35171,32988,8574,83737,65057,66933,23789,39204,48473,87339,80101,73250,56782,24582,44621,5649,24436,90492,9823,32507,32007,55908,47802,14164,74721,30953,19490,96262,29625,25827,27660,82252,97740,27811,48652,62807,34799,39261,48190,27487,73005,85392,94936,23988,53294,71551,68742,54164,31504,2559,91401,71881,41930,76719,84580,96820,72440,76926,15287,82926,28839,6823,74668,77115,15465,54855,41096,99494,19474,53623,80434,47480,125,35629,47275,59782,68447,9365,27662,69944,47772,25851,71704,21151,45702,57648,29798,80791,11319,23350,49717,7375,75922,23065,29013,28103,24286,21154,10077,74254,78128,71487,74342,56016,50514,29893,83721,40345,69871,51200,36590,51013,46655,52083,44137,57396,46816,77716,95525,49157,222,33487,93704,86907,97762,79929,93644,52232,85103,56633,44142,49438,98425,84465,44643,12272,74974,30417,60837,96907,48463,4112,69654,87129,68789,95369,85753,76924,81944,18502,61041,20465,43748,43552,80710,24899,8916,13145,71428,11529,3056,63844,72008,50436,1215,97415,20199,64223,50858,63499,52052,92060,41776,23987,36712,66636,55606,26324,95303,80024,90294,43410,14479,98767,43011,74280,406,60632,49977,51345,60658,88470,32809,87076,72092,89909,30155,14572,36538,23946,95037,45188,20663,19707,10728,40551,80909,23984,8470,73906,30060,95408,77346,33658,8306,75366,94092,82460,89981,47219,86126,36606,76578,28638,77609,71685,47235,86224,66061,96009,92135,25443,93521,12504,76978,85512,55673,6600,71928,12778,21919,67198,43564,55220,58103,7998,5555,33663,67785,44314,1607,20544,41446,94984,69824,54101,40672,46399,51384,17636,87651,97497,64563,32433,10371,56497,81746,93802,23220,43774,38805,17831,42438,54598,23605,56078,82081,41407,81607,2349,16456,10939,37522,65728,55297,95448,28395,8656,79204,70594,77713,71920,14418,45904,92210,5609,66766,92885,63549,42093,32964,83093,21541,79376,51488,11259,32104,50088,39480,25816,26510,94837,46891,17638,89101,6131,73065,8623,50324,75961,14351,70232,67310,40317,53205,15706,20017,53515,6400,66734,29495,99325,98924,17707,40170,27205,98420,27839,93757,8317,90810,55127,9803,40736,88814,36789,30189,41840,72199,55307,52526,75544,85198,56073,40352,70015,25316,97250,30814,71893,84382,3148,48905,41216,60652,88292,10887,75102,95239,53312,2183,43316,41424,94698,8881,40360,52630,67805,92987,7560,64120,63395,98701,55717,73786,32225,47819,51116,58629,21804,53236,2761,16424,12531,44446,67156,70752,80446,50159,1650,98153,68485,2736,24053,68325,44273,94868,86179,95086,8785,69267,28904,75973,40553,83980,74837,19138,84462,83332,80265,62080,57610,61515,64559,54745,35811,767,4221,26191,436,43761,75943,74298,55068,83355,90201,58368,63,84788,34989,36017,6746,36552,5327,21045,83482,59338,7278,12187,99140,82966,69219,31875,47730,90999,94459,90148,48279,82678,47927,50605,33627,54975,88655,79108,36800,62658,81420,28957,19165,95215,13493,26151,45221,88662,15411,76451,49645,76697,72296,89950,90040,98397,9121,75282,16225,33617,76159,1259,3368,37838,78688,26747,87006,91533,69852,29756,13049,33693,8565,44781,4403,78569,4919,21729,80520,87726,74385,73339,48619,79692,99618,49444,659,26250,14454,77979,58807,55030,7328,67364,23667,7820,57532,67165,95238,70835,71200,84309,31158,53995,96195,23016,43760,42483,27457,23609,31374,90734,24895,8018,40951,575,9313,49441,64346,7084,76333,67517,55257,25215,32818,64084,52587,73240,49761,19409,9046,78534,32919,14960,18695,43453,23123,43039,55770,41709,61478,72256,85135,97362,71316,47699,14253,14827,34347,52608,65175,82498,96219,20565,61436,7351,78878,5244,21662,47688,99787,22365,7446,99669,41265,74877,76760,69714,88308,12372,187,63218,72052,71245,15944,93719,86875,78863,9779,70167,61119,46413,15963,34870,58182,22142,79505,28728,73733,93517,96011,91983,51630,87102,34043,13179,42976,11398,66228,11932,59548,46951,79479,83955,35815,50457,74312,86626,84286,5458,55203,95723,83706,27109,27286,30772,7043,40931,11230,39296,85080,37847,1086,49684,77154,61694,59332,70698,40832,8101,82420,45110,43398,31049,43233,7844,70570,44556,58561,83138,77447,47856,8258,87947,62546,92417,72660,78047,41203,74079,75486,64819,35094,36133,74334,89442,72793,86880,32598,85152,98889,88760,93655,13152,92370,3112,46268,25296,92083,93855,34492,59960,69495,72176,67252,6943,24838,67574,29759,48950,31410,11049,55730,65141,79695,25223,76730,17594,63149,4644,72694,8235,76821,11394,83701,57196,52787,57374,7769,75220,70474,58383,51424,58061,3839,70867,87256,19124,37361,63802,78556,6294,51949,21935,92300,32014,13968,55679,27373,53394,27771,38872,41255,9854,58611,5202,38351,78278,44605,95304,34438,24700,81484,59770,95299,85432,31145,47397,98501,33818,24569,11029,1453,27935,35066,98083,72277,8411,36240,39427,45068,93221,68719,26771,65262,11007,61508,30846,25257,93345,53862,41339,87289,10872,22383,63932,57101,88682,32270,57782,85814,89241,88919,70605,90820,28105,15960,231,83219,65145,6411,71044,61417,71529,89456,81421,4239,1047,32806,92154,72630,21680,46824,7393,550,94415,89205,68471,25345,54576,7805,14673,4447,77959,53735,25376,93804,78058,21176,77589,96111,13945,88065,20869,86729,90053,88999,37953,83426,17549,98376,2359,25778,55408,98311,57691,59289,28451,74952,19859,48141,31571,18704,21765,65083,91997,84440,75041,46501,25812,92039,1050,45823,52216,90439,37774,79360,35999,62298,20210,66683,89906,99421,93301,60542,42170,76034,20522,26258,74016,13171,24299,42534,68013,64447,3303,7474,66171,38811,80456,43606,24499,92484,24540,47460,37642,77242,30607,48922,83516,93733,58474,63777,45866,18182,24944,28446,22919,9304,69156,54282,11647,30777,43741,77475,43438,21918,20873,94898,77971,10168,25633,75052,88017,14169,12977,98316,68661,86036,81784,21743,90416,34039,86963,93630,41848,96100,35540,18529,13299,47012,62231,48587,47055,44288,44126,30352,46641,29946,38689,19960,71145,25879,5537,49770,49899,48932,89891,11173,73166,84848,43098,99322,90178,8899,66001,45579,19213,85773,82212,35365,20924,42616,36116,866,30234,43270,7411,49767,55733,68654,53823,55168,67555,73131,94567,69648,2731,83306,99890,31385,86210,13724,93691,2161,49111,2087,4811,55655,7024,84836,7850,12599,82043,96175,28754,9982,74241,75288,90483,92726,27775,56787,37336,91484,92356,6415,93160,88707,49589,79388,54957,67635,88771,20639,85248,10005,30131,71237,30978,24630,50462,48195,13806,22434,67270,94926,13310,12244,96023,31554,71846,86184,15358,86138,49617,97771,7839,80612,44357,2150,624,5690,69313,84257,34203,81638,94921,35633,71705,67720,59746,264,68813,54136,80034,68857,91302,84438,25061,89790,52395,73952,52062,81990,59301,72178,85853,54458,26389,13659,92041,90751,44914,94379,28383,89884,34260,21980,35381,26903,2525,64484,12477,48302,26322,13325,52189,18721,27560,82646,61586,83805,44609,48196,89022,32376,75123,3565,59654,98040,40534,37808,55436,75600,92930,164,9228,86146,3419,89559,60194,93142,33874,25087,75089,98818,31609,9733,53876,98139,1468,43503,66410,58916,19547,13777,9812,11303,16374,48214,77814,95987,4899,30646,18425,96215,19984,53329,79115,3513,98825,58932,33355,85375,56698,83039,74767,35462,95674,89925,95662,63980,58349,41414,99133,16935,34421,75818,56673,8977,20430,68891,46457,22547,84314,46689,56146,82092,52779,53334,97550,53865,50745,15015,79775,28801,57739,65488,71035,98199,23812,17546,19871,69505,56402,85030,16999,45857,8638,54484,17322,75671,23895,87987,11164,90402,97473,63204,88069,49903,27220,17716,34200,21194,53736,22023,52805,39390,4312,60311,30346,81627,4632,56481,33574,61821,94676,888,34825,9306,42328,44033,67817,16464,69980,61884,47269,78232,92586,78165,74847,9022,35040,18762,5621,70660,31725,18779,74065,6898,54332,66244,20868,44939,99667,45853,14062,67622,91278,45669,24030,97073,37284,84881,89337,81732,85436,13056,63631,11672,26924,34073,53614,12376,24460,72266,82718,85315,92056,12382,38035,11734,68834,33670,43865,86796,10818,56136,77122,50621,92367,71655,5863,30150,47908,42381,95546,21187,94513,37125,26956,7486,44504,66374,1892,36651,57104,33391,95976,13187,74616,68697,90137,48863,49884,79752,6023,51439,38475,45567,68728,45706,38211,63294,48998,85792,76913,15410,43172,90546,26778,97508,18001,95902,17134,98052,30531,1113,74187,79300,60567,82360,51959,86265,74336,73048,98988,84318,85992,71194,16468,13775,83877,81883,37273,74490,96986,75435,19742,40925,51640,8295,25484,17793,94914,12402,94523,89109,18885,26875,13492,31584,27942,3003,60712,23232,40419,2803,96318,1238,6168,28771,34478,48817,98650,58116,8624,64386,57970,8300,79181,31456,89193,26114,97021,39580,66626,41960,41510,66579,81352,2584,38369,69678,28533,25898,64143,58724,45864,40273,46694,76380,62131,36662,26991,94258,80810,84464,45760,93988,18466,95068,86435,73854,70649,83443,79062,51791,25725,99922,78363,2003,11109,61361,95404,88930,45119,60482,7055,22322,61708,46788,70404,91596,68145,55481,27458,37678,29518,59939,96792,14199,55312,63168,58056,53710,83496,4255,95158,71989,73849,3409,5581,35149,85210,3764,28310,57296,64309,58109,5418,46953,25191,35583,89877,72987,52638,33204,86349,52786,82811,65151,47739,48721,44648,39841,32926,74997,3530,73187,83486,7108,76507,69569,44500,39203,7708,86232,59505,91232,26693,76891,95952,14461,15734,82121,87667,89479,50502,89589,15197,972,36600,83925,77588,91885,25622,46888,14657,2543,45992,28862,1411,88889,45603,24163,39189,66731,78781,79166,88438,54454,65129,61349,41961,58658,49543,99082,81398,29899,83966,53821,65770,19828,44296,92623,22028,94105,26335,21595,4484,85940,55875,74560,48934,39720,11099,25127,60277,51576,30952,15199,97889,75874,93492,2441,37091,43026,642,68629,2271,74674,83525,12114,34059,41528,64676,20159,21857,5512,35704,44294,68445,84104,948,68610,67613,13856,34700,38174,48237,58933,98572,77236,49069,84234,55890,88097,81385,45315,36466,81704,16210,11730,20273,1611,79951,11247,95317,15043,58651,65104,610,34037,62038,24274,90387,29185,65578,38781,17865,14474,47282,86739,33852,7955,48829,21944,63824,16763,10227,19989,71815,50535,49134,22368,96448,8855,76355,7235,41026,97132,38837,7918,17537,51122,42215,27133,77465,44766,97268,85350,50392,84833,75032,73760,42699,359,68529,63826,62802,15275,38287,64024,33219,24981,77914,17303,22051,7630,35050,19558,53071,79437,95509,15625,82841,55066,73090,92837,96284,25808,98221,99267,90168,46249,49270,54817,50991,78313,24384,51040,64573,23752,75415,54774,2149,24785,65452,43476,60857,47614,86746,92506,53987,42303,8290,23445,49980,29651,31649,44272,70734,18963,11328,86294,38879,36546,93075,15070,8467,7696,51832,33153,25605,23794,44225,96027,75391,74902,14578,62105,48442,80032,40834,26764,23142,81324,9432,59353,27910,82623,53108,87508,84258,25922,67595,53316,19175,98644,10327,61979,5531,73060,40688,37990,53620,64680,49940,61836,92226,42129,39712,98121,95208,69917,57625,98707,24931,23402,25027,7743,1226,66927,96127,30758,68690,82253,4488,98495,81756,99997,26088,19536,99342,99551,73037,67942,36881,76997,48227,93079,40610,75720,55896,70476,77739,57320,97075,35616,66078,60749,4464,47767,67159,60633,66872,36610,17718,48495,27620,87522,89286,75238,99959,87421,50437,48526,15107,322,45765,44216,87135,32274,86484,2755,59051,70396,86329,89809,98735,92139,35018,34096,32993,13136,62447,45101,77187,77846,14399,39259,309,59011,98251,23633,5753,61961,25209,27017,69660,12993,78417,91246,47997,30275,33449,1655,40878,14389,27211,65005,55326,84055,54522,43313,97394,6540,93202,1494,53905,27298,38548,62431,25416,28002,74761,14182,36755,48236,93790,2545,9633,59454,9192,54558,88701,64200,56452,77222,22496,38142,68354,251,40225,94887,48159,39022,41675,61602,5802,40346,66952,14843,65791,91317,26046,94336,87729,45614,18738,5842,65814,92573,15511,32228,31798,5314,85118,2568,92498,41838,95272,11205,89861,56969,92446,56925,23111,60654,44723,22230,60129,32721,33104,8894,39754,83790,93799,62072,4663,12563,44788,60235,62181,62235,24742,18530,63100,7063,95572,12694,84449,63566,1525,54399,46961,51924,5347,37592,42885,22690,12734,43648,73756,36557,45367,78635,66142,68371,76103,37507,42363,43519,24230,55277,54242,20445,65956,28576,81088,78493,25772,74825,12529,42730,22772,31242,84526,93398,36229,86205,30485,8439,65928,33518,68625,22092,56340,8130,1404,91261,39244,38083,96375,19110,10250,78377,21427,91400,31602,69236,3250,90637,44846,19744,1295,73051,25596,52416,33662,66276,66402,91884,71132,85779,34879,17273,6041,84755,84078,14982,27511,79176,54482,93820,45099,65609,73049,83362,60580,22766,4457,32094,78064,91678,92476,12218,34801,44803,37366,51091,18248,23064,95850,75227,98274,19420,38577,23295,52975,51218,41194,52636,62256,57741,81298,29082,33664,40903,11021,55253,29541,10699,1942,99214,72486,39441,13704,6070,73096,27517,75070,58549,60009,17849,79090,94864,4246,19285,68518,10246,33320,55571,46670,12384,70222,7277,26562,43384,26912,7274,98955,83467,1888,70933,75538,69434,82399,71147,63724,898,12616,92564,88265,99155,85416,74278,71171,84841,13519,9642,84107,13010,99485,79327,4809,45573,25119,85448,20747,76643,32131,24134,15671,16308,94364,20919,95117,94081,69474,64759,15120,53017,87902,62739,52987,78909,15685,49382,77678,43104,84060,5826,30778,55266,16315,57009,11194,78227,49170,44208,11462,90384,34534,775,34272,11098,82104,17452,8543,81280,3996,21783,23089,66726,97575,9729,76742,22293,71360,9210,16114,8490,95563,61221,92116,62215,80714,49390,77383,71744,44754,49314,99813,4886,42658,49424,12828,70411,53471,41891,6475,68703,16453,2046,88354,94902,11880,95431,54660,34540,47124,5430,1980,9151,95315,19180,32414,31125,28131,91021,23459,76596,10907,92363,90087,73651,24615,73647,38904,86021,23287,61943,43843,62864,18150,4448,40775,74045,41001,2899,84773,28012,9004,79082,76761,23288,96321,58306,99316,78722,80574,78162,91268,11489,7558,2795,74758,77818,21269,86896,31103,3722,72216,62136,24982,88232,60464,75690,91721,51391,32261,36999,19568,81523,56219,97405,53440,87074,7171,85586,48983,66428,94501,15898,82240,977,71638,92263,90432,93483,75909,46113,23231,68974,57785,1644,90967,17497,58642,7182,86078,79687,71741,64079,48555,20577,29233,42682,60726,74863,89095,31707,83793,44698,84239,70413,42981,84122,2431,9352,87301,76849,73677,46460,93839,1519,61043,41163,77113,1482,27351,30888,61447,17016,96662,97734,48048,55877,43582,63128,41240,15883,96067,88777,47237,9169,15623,17199,88729,49333,58486,25066,39396,73321,22245,1641,10155,47650,26509,96921,92245,92540,97532,5716,89302,13329,96142,10933,68310,11677,17767,41746,42791,78621,41569,4785,21620,55173,43107,40095,58160,76539,98307,64130,18043,12631,12308,17282,85141,78103,44890,39660,99765,67794,38228,1926,12356,48923,77727,88298,16329,74384,29964,45862,91982,35511,5160,17435,45093,54513,62261,31098,87557,21546,54797,66148,45742,4716,66743,32700,29687,10575,46683,52767,66172,37510,88508,86387,63966,55039,72551,74353,75217,86930,81225,80924,91404,15833,77423,21937,2347,70801,51076,61104,72776,70842,34310,64372,84912,32985,63950,70688,39838,87175,78720,15122,19513,1255,76449,49752,16741,45836,25878,15256,73303,56601,78082,59450,79157,82100,83196,20146,88857,16215,78933,82557,70447,63688,76650,75018,86664,28584,53443,68594,93105,41759,31989,85866,358,86516,7648,9185,61472,10850,9820,13987,60074,51136,9774,48776,88784,710,46073,1770,15211,91342,89493,32275,82176,29867,96043,42391,66951,68457,50831,7877,37764,54076,82586,74138,45595,92001,22960,60540,26563,43956,76137,33009,57480,7599,56836,8403,5926,78651,648,89343,24901,52933,33745,25589,86156,75933,10996,35680,37896,22133,36474,54320,81202,32494,9887,26848,84029,49104,64189,19735,37321,79992,51335,88650,42889,80800,58944,71539,88240,34042,57256,65458,11984,45341,48326,51442,81670,71020,14415,60434,35352,50697,48911,24958,68242,51497,85537,46437,25386,29717,1894,68168,59517,88984,62077,26641,68744,7439,50632,88386,47146,81243,8340,81751,44312,70771,5961,87180,48653,56858,5066,408,84673,27713,21085,34920,36681,41131,73114,86339,90425,15135,39530,87728,60954,53219,81555,77428,59612,69004,10783,6739,70658,52562,82492,39857,63435,66350,76280,3073,61352,76989,14218,37500,98163,71518,49760,10590,82142,69412,91927,86254,57491,91130,59522,34412,26919,65967,46532,99681,28514,35357,3884,15298,41936,78072,93748,61684,44460,8252,73208,34747,14577,62421,19643,15181,71647,50242,75727,16425,47140,14552,22411,75601,43996,25618,43440,56150,50799,98028,64129,46159,22785,16804,19615,6119,25873,50076,22176,77605,59273,97493,75958,49190,23696,41423,17604,40983,85804,61158,11830,69794,44484,7483,17220,62920,40542,59686,98916,14419,10175,4516,21129,69752,15985,85771,79412,38108,53223,61357,55473,48162,4636,71190,92473,47308,65015,46529,2211,34379,47846,19257,45021,71505,65521,25562,29472,45511,56713,5102,54917,82391,5413,38747,58336,85913,41950,94462,83212,87266,26708,39473,28663,94292,41157,93207,63629,99715,67352,47687,95160,33829,45396,98545,21863,28888,86010,16672,74222,59874,39743,61194,78396,84886,24942,11806,58825,38031,51979,3197,31575,5117,37217,48376,93954,65555,25920,53633,56741,52596,88923,45257,76457,68583,89354,29047,21873,83568,72882,43532,14938,86561,97490,96305,26079,40761,19460,90791,4558,86656,18520,22120,81207,70606,33106,50511,49646,70420,13792,63398,18833,83558,77080,38272,85150,38831,14851,20300,13393,98559,10107,79117,56418,34391,37933,50532,40195,91370,15332,2143,25699,6998,58322,81459,61849,46349,73074,24125,34999,17238,45149,43543,59084,51548,82555,70685,54692,38836,35821,7132,65238,42842,78369,70123,72281,55254,12030,35133,68846,13131,15601,9427,89165,43758,5943,40024,24283,73751,69989,52912,90835,34587,39534,6924,63870,52694,94107,45450,95107,92547,60662,24408,77492,8896,55322,49021,57059,76809,59230,75485,66016,35556,43536,81866,21780,3260,15521,29513,26392,79618,77640,94351,4501,75689,64835,61465,12925,78170,33018,95096,94510,8841,71082,7938,79883,50901,18390,16421,60078,28807,93395,26733,28153,91621,11305,17523,45988,9583,68043,63464,34472,23055,77564,3356,16845,40756,1794,72404,51157,21784,36813,91200,36588,36444,82659,49472,12684,96393,99469,45268,1929,2784,23026,73099,20708,30844,54111,53207,93673,36334,84617,81582,58359,2103,23346,68220,25947,69354,72053,55816,17800,28847,86198,89367,6153,44783,47638,50108,47111,76,73931,35089,39845,68137,68406,7996,66170,1020,27602,17571,89122,37219,68091,12542,21619,65368,99867,1471,32379,51619,91160,11151,73072,8363,3005,39549,4345,33139,24188,56931,65864,54046,47212,45198,70276,76673,77967,68149,82509,78562,54973,28088,1002,27169,86162,34800,8681,52894,20511,20181,52025,63469,5469,84298,67211,45696,99164,6064,21242,9083,58528,5225,47631,88168,13008,36592,25942,84172,62523,39655,76712,97489,43033,27994,85894,77800,53306,15065,84358,51960,99537,34604,96551,43155,46895,79494,16383,63004,95222,34170,33832,10649,64265,59096,28272,81597,76045,21164,42551,98403,83446,71070,43477,39774,91266,85525,47396,69772,49678,91358,66585,10934,20301,52591,85673,25626,20023,47026,39474,89637,84853,24760,51360,58192,53514,62958,47743,49097,93601,49777,52280,68798,32481,98299,98183,91454,17219,46831,57015,992,80358,28203,69671,89197,36313,98937,50166,75514,73033,2774,25849,35493,36842,55800,89037,98697,36346,43407,35708,50783,70711,89132,12099,10125,9891,14514,71256,35738,13258,24395,28339,99038,14523,74291,20471,11631,79147,25148,15754,8840,34287,37349,68476,31075,38778,50836,65917,51351,73018,36840,67791,60987,28097,43222,54312,1584,39979,27281,16759,87149,65833,48232,98951,17304,40167,28965,3762,71491,15215,39678,17773,71482,25551,91974,77323,36804,44143,10954,94122,81151,91677,76633,51007,29578,40682,19467,28879,48328,35129,36509,3367,65650,24788,8859,57790,17991,80837,27904,447,91060,45245,84047,57045,55939,3416,9139,58189,1397,72171,38789,76707,62011,99161,53289,61263,59701,40356,6017,57393,9187,11947,30754,41661,70090,56738,16349,14567,56316,44790,93150,52715,84988,6927,57780,89990,24943,10413,23759,11943,36377,65941,6380,40160,81615,78545,54331,67490,98532,46414,69747,29464,90761,34327,86399,98770,16098,54262,48861,27746,7082,58673,86307,81586,82961,2565,13474,34677,175,30245,5068,30669,45277,78916,62187,5034,64787,91445,2224,15229,99195,12330,56250,98962,816,36209,41570,25176,79071,60159,50652,44844,73143,26006,92058,69848,29805,32596,50206,80571,88005,92181,95412,94877,19312,47165,57862,21161,53545,93366,16499,88289,82531,81248,98056,2742,28330,25576,45770,41412,63392,43928,45233,67173,55169,87427,28319,29608,31897,6371,8532,16777,63941,75389,62721,14069,42282,35878,7204,5959,60034,15491,49006,27174,28650,79085,91340,51365,69041,43215,96436,60880,85433,55036,10708,49456,85911,2311,37612,8740,45439,13900,52689,10582,46220,97562,70383,83684,76003,61766,27218,43826,80159,73515,62625,40634,97538,38530,53579,64638,82439,47639,68044,44654,78008,76263,70740,34449,37976,95808,28694,58869,10593,52734,95773,41753,44574,99414,73532,72343,12620,40848,67324,44232,16092,43052,94097,19131,29325,94375,32132,7582,14439,8116,21273,26618,94325,89299,85097,58183,35984,77056,93431,75540,1151,45310,29471,93819,64924,35518,79202,77993,92709,58955,88877,53650,63056,18072,3105,91978,67498,93268,54559,2874,53925,85683,26950,55358,16111,40342,89291,40970,36950,48148,83048,66327,28246,31008,22882,43665,32909,29701,41562,41755,37295,2168,70114,53426,88089,54868,19210,51204,84359,73753,87187,79793,87121,93427,81231,49416,10118,54112,42199,45713,28001,5898,66989,29804,35007,95260,12740,68650,46653,82775,15652,69795,50016,19382,49366,88404,65963,97325,26958,33384,58424,74264,83445,84228,18157,56375,96782,95057,40148,63313,97095,47598,20090,24282,24214,55672,60452,31641,21905,38922,55037,10653,13552,37866,73434,31024,22800,29162,53159,62226,2291,4569,53893,45446,87679,70915,11191,24488,73091,64384,9041,36141,24146,26929,32248,55990,89771,39381,39432,32692,5924,17425,486,1588,7917,34469,76094,81431,53712,82657,12141,97628,4146,14019,88749,44513,83562,25070,41340,12232,75146,41904,59473,79573,53625,9776,46535,52685,34313,11141,16806,282,88605,50069,66894,92537,62096,35230,81265,13479,46444,78666,23695,71841,42520,10615,84496,8232,38878,44034,92919,66751,14241,60389,35665,98600,68783,23453,30208,92236,60569,2050,52118,97718,52373,33592,54338,64982,14186,82805,30753,91867,3756,333,97191,23642,12743,98693,10840,54673,39110,49632,9447,85870,19256,31306,44488,68576,52961,98905,23380,506,87351,7304,97067,74685,9562,84379,58604,90499,51883,32124,40920,90518,31777,70304,862,68127,2886,46846,21354,66168,18205,48171,72450,47676,2293,53400,552,3094,53901,43245,81970,22034,72381,61640,9580,65432,25686,93349,91688,16857,46791,83833,89414,39883,3721,19625,89352,49208,12533,65626,97738,46026,95319,19442,740,38679,51454,60876,77466,51257,76600,47532,91576,53254,79221,35284,52684,36768,25603,89582,12108,4992,7473,21298,97938,50979,64820,33309,98829,97256,82469,99105,22349,86259,62907,2401,64807,17509,39706,24151,45440,89484,46436,20654,62981,59187,56091,85828,16772,73761,69963,39278,21297,70582,54093,38880,29479,48712,92234,81882,4872,56702,70177,91905,30304,63735,77788,69691,91925,21002,36147,8810,41139,97758,78770,9310,31198,10208,24442,3104,43572,41392,61437,15906,15546,83901,17451,58569,2049,43489,48503,39071,87784,20644,18910,39585,41612,83702,32420,63999,25542,28425,2358,24757,11120,66582,60165,29962,56816,8564,77680,15281,79845,33785,8272,48150,41576,18886,55988,85515,8568,52607,31363,35304,30043,63235,18835,69128,50804,18653,23844,94809,22463,99843,3358,36542,75994,58520,2140,3025,65423,60182,32788,91291,23204,85725,56911,33188,38609,61432,86615,93453,4153,11092,32461,25464,3087,90162,58314,40010,58683,1855,94281,705,70244,59951,35881,55284,690,47349,88330,70300,48696,11775,83776,97046,94102,43422,1688,62483,83429,32142,11911,81077,9348,22375,95095,70377,96544,25390,542,69279,77738,81366,74638,51111,84534,22025,19887,62229,9981,5812,39757,10862,37482,14463,14464,10152,72561,12920,96367,6021,63506,47960,26749,75554,56674,87455,15964,50575,68328,70318,77627,57384,4738,7497,38987,66998,68763,30657,85465,5221,59597,17225,19656,58903,6320,21683,68725,70059,21450,64616,9509,61369,36251,5291,86357,4440,29576,68969,24445,96157,65314,79303,14574,72683,53360,15452,86720,4847,16716,20556,3403,80910,84900,1556,97518,72390,55511,53896,30497,1481,90953,34743,70519,46088,8750,18995,94096,21917,44928,3347,22006,84595,29067,19093,11835,40700,46038,66694,19964,752,25103,63525,34326,48732,31630,34739,16347,25358,78810,8458,13347,71175,75250,81396,64154,17308,64354,11446,24750,28549,20989,29045,75045,46513,45500,75621,90988,90528,93982,75265,91289,63089,22624,77715,43670,52468,52666,19196,92910,59021,47239,11750,50576,16764,9672,60612,81972,53035,74313,44255,17615,12059,82656,851,59824,31631,90772,17525,74107,54434,24079,66420,35962,55226,11417,78048,85085,8058,80085,96690,89427,80502,33082,48219,79430,90401,41597,84242,58149,62616,30631,26558,13069,34685,43507,21048,53454,25654,58537,82221,64688,62521,85989,64471,67591,59499,88113,59105,62724,15606,62296,80005,43784,61878,38247,50896,88725,92562,71,50027,36218,62683,44214,19916,63383,31222,49241,26340,46857,2740,72912,67882,40490,75074,45531,30738,55119,50667,1398,80693,51254,20903,810,6160,94634,20889,4505,5886,29961,72666,6407,98550,22856,76345,14707,80286,84609,66065,23011,88271,56737,88376,82031,21348,27520,47214,789,95696,11453,38733,39169,72735,1097,78890,47387,36191,61833,7199,81941,28554,27019,13222,2722,59685,8592,53122,43369,22667,52719,63155,67455,38780,23379,60006,26402,75566,54521,48577,94328,75716,76394,6851,72806,98184,9798,79386,5216,5353,71102,37637,36120,27413,71555,61841,60039,90722,47868,95411,27429,70522,49985,52656,19189,7410,90440,2512,37275,28851,80097,10433,89070,73823,25312,19610,3804,43344,58172,66375,33008,160,89136,71743,27684,98911,17958,32565,4721,32083,58695,90960,66325,90086,93033,46110,10755,51991,4493,82205,68842,430,55495,79267,42033,40538,5703,19446,1539,68065,42331,47823,21302,37596,70294,61552,82888,18252,62597,33048,39183,97315,98285,7437,15825,47652,98100,22945,72085,90420,77430,76991,44879,81233,57759,19799,46972,48546,90008,24512,17096,23947,52906,68817,19170,81457,50333,93200,66230,69494,10747,21145,23692,58920,90659,33177,74095,36290,69939,3516,65067,72366,10242,39976,27192,45330,54228,71894,35426,61280,54064,86457,49153,1410,4263,15683,75677,35070,32881,10624,6386,69475,25379,32568,77189,64577,97830,20275,71184,11900,61940,21204,92711,48676,84312,88684,52479,36979,1946,59549,67484,19697,66132,68598,41408,17091,10853,46626,48897,58661,27114,16791,78421,81836,67706,36333,41777,17918,15441,55186,14609,3852,21072,94396,44375,80309,16626,74074,9940,20771,78435,53044,29365,80719,33050,87580,14990,94605,83287,28021,58806,13774,24683,74970,24385,19158,61573,48168,19593,3492,72101,59738,80454,56376,96143,83570,38129,65392,99021,4705,97243,675,79031,85235,5755,3209,7890,7203,11832,56475,78671,33168,76532,83320,28969,12365,53617,28122,7957,53970,17662,75221,73943,83607,85757,43267,69751,57049,46391,18682,1036,92686,70836,26140,74266,69138,11290,41710,79281,69468,96462,72797,18606,95703,79582,4271,10211,78091,14710,23489,79140,91378,26095,25414,5441,61663,55608,91416,88221,96194,45661,825,64284,1055,69676,46138,18947,37299,50198,74123,58518,61144,81211,95872,404,26229,78098,31615,65644,6526,67625,96070,49936,44647,2093,474,48953,56756,95430,38458,24835,14114,27345,48206,69502,39609,40459,24326,35407,11690,48102,633,18547,90581,52618,67161,73748,44183,56184,98081,87292,5579,29821,99407,51744,98724,83924,91911,13163,84132,52922,39687,20422,78403,83761,9640,4305,47979,21467,49223,60005,86175,26836,62734,7065,13469,43634,91650,83126,89124,9084,62516,58512,35552,46750,3616,31550,84749,39952,71451,59568,76078,85059,66545,45568,77874,51245,53509,33262,57235,9515,4398,65288,8077,96578,35660,92488,35795,13815,41943,36513,83150,92632,70315,3129,98152,93934,27327,61169,41866,58468,44533,2372,24315,77415,69189,14525,37897,66763,6319,21349,91390,14818,17124,87169,17012,10886,87407,22127,67560,47358,12662,96987,94759,27579,72750,47204,93614,13277,50090,6665,63091,82341,38950,2423,36666,69092,76546,24004,30135,1718,26675,79785,95609,51701,78699,40959,93196,70941,58321,27902,10599,26622,20180,48362,89293,80467,43757,7246,30072,48364,69345,88493,82035,50663,63386,53826,93970,75108,1783,61489,15860,90414,78233,5935,26931,64781,42250,80543,94202,50,75976,34001,30244,99390,34411,73170,77844,49926,73571,75459,17310,39407,5957,36521,62170,3817,16878,40152,8239,98470,29537,53395,28222,8508,66454,70603,47797,48429,29487,79724,70471,54806,23163,36912,87707,6917,28519,58097,24866,53843,27780,52402,32063,49101,28858,74576,68438,96106,17331,41489,54080,33690,57099,246,67359,72976,24821,27776,34186,36677,61086,21773,20499,32120,41738,1079,51699,58653,96567,70866,23632,63279,81409,8835,41984,8479,16668,70908,31691,6975,77706,94386,18980,37837,14547,12653,42618,98428,78848,14095,70591,19431,95677,40673,78193,32509,50949,4883,42139,92065,48781,35689,11377,45108,70002,90872,69954,90920,17085,38543,64832,81179,57205,3651,90598,38282,48183,843,74551,68120,80540,77952,58696,34282,75628,37138,30042,46814,30321,97769,40161,90686,55273,12088,80727,66154,32604,83618,45898,36139,69987,24708,20781,11150,88861,30204,10447,34532,93740,3529,86645,61100,4162,45826,87331,68318,53456,84101,34019,68281,30580,19623,32018,83660,76208,84120,56046,93457,83654,78710,89564,81885,42030,96898,26674,32869,77836,86769,93166,93475,25788,12110,60314,94106,9010,98977,34711,80557,97233,22035,98652,31083,19307,67911,65942,17705,60144,35431,1286,67208,36462,49808,24328,92693,78469,20237,31099,77849,37391,7448,64912,49734,22269,14251,45074,99514,27674,87605,27290,85834,77847,83107,97494,4308,29116,82285,89618,83720,6701,95803,10803,62312,4486,76417,95055,94206,60981,57550,49158,61817,89703,10533,98499,93487,88980,4807,25693,38630,64142,95698,96394,75143,58591,90289,3838,76061,14319,607,57747,69006,34638,48982,67868,32255,92651,79808,64122,62207,48303,41712,57547,91403,78845,72297,92869,77722,28940,43038,36714,15641,82651,64211,69483,92835,15951,26027,98876,71777,79259,24234,79443,91789,54564,60603,54509,23941,89563,27784,54914,84930,34812,41371,78060,66176,24176,70661,13337,93633,81443,86868,95972,16538,51470,92853,92653,39570,23879,8779,39153,62555,2078,56098,41251,50407,42039,90213,90198,97026,84331,10608,69187,62982,70560,45210,42118,37563,86072,39764,48430,53282,41080,36487,86587,96971,82692,60980,11517,5685,53691,61487,26537,38492,19654,72935,69953,35651,53497,78676,56162,17059,44199,55756,29988,71561,97805,27403,78808,31165,90316,1931,87055,74004,77742,72106,302,27503,93580,78131,26866,28932,4674,99893,26297,12016,29163,59039,53584,55414,63761,81198,4189,15967,97451,97920,13613,79019,90554,88796,91310,83546,63070,39342,56029,25091,92601,80175,61167,386,88713,47898,62590,46412,89573,45921,69199,13350,80995,5783,94958,16214,3750,71728,16921,72433,75662,63599,12661,85759,82843,47420,98282,2983,29394,39235,12130,24622,4565,5078,38329,34099,56726,29915,21513,569,61874,63933,48801,34899,42610,89330,47832,67610,88712,83008,61533,53658,50037,5809,89841,55736,53940,20162,30945,6523,48314,70465,69601,3775,1249,87637,29938,97183,25278,66685,43160,32438,23446,33524,67685,29966,80182,52501,84794,77330,58152,5452,83339,35405,72560,25714,25916,71783,96839,9970,36889,9141,29382,93613,17204,23697,41532,10455,45916,50449,70986,82278,63650,90498,94271,68850,35425,65454,27181,16824,16879,39863,31863,25167,38319,92144,47075,41417,89155,52039,13380,24731,23144,65794,41999,60120,40857,76029,63701,96473,2063,6645,20940,13,26734,76963,57467,97100,98363,18656,21721,84089,22039,56711,94231,22901,54926,3925,75731,18897,11369,89881,60387,10794,31751,84126,66405,7581,19645,70249,50149,53721,69826,94342,33994,94383,35607,11736,72449,99851,43471,72374,19118,68141,91568,38668,47623,70535,19555,47632,5688,57436,21939,95507,80494,29293,39597,19585,89991,69080,99264,6695,60707,74323,35541,30273,61368,87040,48864,77417,27199,35083,31407,33157,91656,52181,45593,53499,81578,27659,38143,83616,11630,25246,33668,93165,92061,31437,45539,92524,32286,4014,11570,76188,821,22591,39196,75057,53737,57623,38912,46728,14828,53049,33725,25655,34187,13093,37180,74712,48022,58241,63601,70611,30061,27585,78402,54756,72309,29423,24555,50816,75229,27198,90409,91664,30776,96565,98214,96701,50734,80006,84322,64222,40600,3795,73687,77203,54599,62827,72509,18543,89901,40227,20172,91653,85330,78958,98209,28460,93960,86672,58502,51284,59625,28902,70079,8757,68295,15005,72777,3159,80462,7329,7876,96781,48282,44588,21792,91544,42043,8878,43311,84542,83523,39535,84389,23258,72994,35334,60217,35606,11683,67588,53914,80525,1701,23736,94083,71026,95470,61534,29533,64193,4276,31893,90909,65378,25553,38380,81830,85008,8514,824,81935,71651,4240,94069,1413,19063,67521,60583,19108,59455,12545,35491,3608,37728,4479,37127,57515,42387,91634,17149,53491,64538,43821,1160,63098,68693,71713,99079,65735,66886,9211,76202,92505,72163,90677,71640,94208,25169,77214,64131,96866,30308,30942,78070,20785,91420,18460,54366,26220,13925,5882,6013,71507,47690,69481,13287,75617,46873,67227,80512,6789,32592,13773,18783,97277,14006,74799,48073,61531,46384,58734,94904,85864,65964,66504,86253,65657,77850,93145,63197,35566,49762,11456,80077,85404,54204,56409,46162,24333,99487,62768,23352,98433,89824,8531,32660,28900,73769,74249,60762,60061,89656,50758,48464,60227,17517,60948,48924,81807,69253,13448,27117,78401,70813,24431,89384,70016,27264,60849,26367,21864,73408,47611,46329,30618,21259,19511,271,73540,81985,17407,44690,7754,77119,40485,74933,27363,27495,58047,41122,52137,97780,59555,41691,3383,29370,85000,74185,7811,28286,51633,25154,69037,44832,62808,10999,89096,91686,87844,3245,15238,94792,76696,57209,54865,98115,51402,14644,97715,14919,84650,80608,55171,1293,80794,17359,68818,35120,75668,6416,48877,93946,43639,18499,61890,31270,72878,48573,90613,12464,74759,61567,532,21314,95914,73871,94230,25791,79321,41070,30487,19782,69422,3288,6554,46930,26236,94855,88389,11642,40893,64389,47522,36922,30236,45885,72614,39566,66188,55995,80264,76615,28259,73439,56320,19597,84269,31458,28020,42880,31569,32825,26166,40287,38028,95631,40620,79154,46016,32781,85236,23490,86410,90118,65940,61808,41389,76528,18790,84879,44953,91251,3646,72170,76623,82230,55206,31274,15487,14690,90284,92529,7122,40420,51016,63921,48378,1640,32567,69207,1740,20529,97181,56079,70132,15418,38474,46766,8550,27186,27801,50307,79020,46640,74492,44764,27828,34787,95712,16985,52632,98119,62124,20187,82932,43053,99170,38524,65620,23916,7940,23386,92526,79137,18553,14891,86787,55300,64686,74527,82123,93595,33340,87935,32785,79334,57841,46306,36824,58421,29653,448,73578,57774,76901,88233,3213,14465,47879,22563,66039,67902,80556,83844,74031,1726,67326,36106,36893,6244,52919,46533,27204,80594,89669,30241,39341,20612,83613,33279,51583,4922,81774,12597,26044,57599,57288,97523,90473,82946,83908,76911,4810,38516,75067,6549,87365,95036,60919,97742,4131,89505,98976,32696,92146,36947,6261,83667,77621,77404,34981,41507,77924,14866,25048,19361,6963,7353,3605,84158,13137,22200,42971,4777,52196,88929,78559,85554,28121,63121,86542,60024,39036,54624,93703,7200,62575,73611,91771,87160,78358,93329,91916,46439,42522,22393,66662,68994,58099,58917,89625,57273,1789,48471,68292,74085,9286,18949,65269,77736,61276,60435,89938,14230,44598,33517,65507,76276,57776,13167,46213,46496,29431,11318,15475,86723,99284,47591,23926,76585,95427,96189,46045,93279,60551,57451,66800,56659,38325,81392,96917,39177,76736,53123,64155,11409,16495,21405,8743,2805,13873,51717,91371,67042,82726,3609,35885,90493,5475,19500,5836,12471,76604,70240,3802,5450,70101,66492,7256,98434,90379,30542,26983,92157,6679,10203,2537,42184,91449,28476,66729,38603,91141,29134,27898,43212,52469,15114,72848,6518,7037,97316,58280,8815,72054,15426,9435,31471,29393,79405,39900,11131,49515,63649,27289,71948,88396,55713,48997,18666,31634,2170,3997,91902,22268,60544,85875,40889,89777,32350,67980,90128,34876,70029,8929,87313,95294,45703,52068,73414,8453,2830,38435,51290,59838,19652,76777,88783,83323,83662,30670,77960,86947,18561,48873,64455,82823,77540,24244,40623,49599,61076,41839,61027,45029,62976,17030,59354,78156,87143,72703,66218,86923,11274,89226,623,1200,35547,60075,12396,74614,76290,4598,91360,89240,41061,81066,46405,92082,61968,66093,53026,24647,28735,59464,69731,97880,62286,25804,60791,84700,17828,29577,91969,56007,95392,96606,46579,79439,47145,93526,78154,25228,48512,13909,78426,80377,71345,34974,34342,20433,65254,47405,50877,32114,37750,66378,77234,73847,53672,12751,82714,63284,40433,36498,72702,88010,62134,83241,30563,83423,32549,29055,8739,81032,68437,1973,63232,94659,95493,73360,8310,96566,16620,28208,92998,33737,28854,66248,43783,33750,41821,62667,90569,61071,43166,93091,78327,51550,57157,70736,55901,96588,9168,50921,33338,7992,43883,51014,5875,74501,54512,65349,6964,51763,29295,61395,28158,99853,19507,2648,69250,71395,6913,4555,79990,60699,76621,99392,40927,38055,70384,43607,36467,6899,16245,89775,83117,91795,10510,84550,86163,47161,83026,57904,83288,83005,19760,1260,65337,32775,77698,86637,75044,99089,39294,85837,67257,58419,99600,78032,56933,42667,69210,12348,55010,59135,86404,34744,75356,28962,846,96855,91440,44194,82231,9921,96255,41588,88913,90189,94458,31011,78122,97964,68820,85970,9678,3944,79225,55962,23097,72628,39317,61953,14753,13594,76833,74947,19193,34381,58739,60568,33392,48714,2296,88439,15427,97664,81273,60905,38588,92823,79944,53820,48621,86241,56792,85041,81886,66195,71332,79227,65091,54307,32314,61126,27336,65113,78455,30904,61209,87359,74706,77011,61380,81742,19261,69428,83883,82619,97932,6001,96885,30613,72953,13798,36582,47515,57866,85988,11961,75841,69158,84419,95054,24073,30727,87366,43643,58008,52658,63065,82543,98725,35082,77902,3031,12350,3632,52065,70891,64312,23414,91558,943,17788,88743,55018,19709,868,16403,9070,33322,34618,47702,10241,80246,25025,53388,84384,75412,9645,32069,53525,12983,76392,14762,98621,61159,17155,13362,79652,49791,37164,49364,51179,28700,78075,68389,14516,42113,34121,78148,29836,72364,79355,54293,89214,6278,56084,58339,35436,88348,19778,98586,25093,51047,71182,48000,57268,68796,48207,73145,85181,82603,58783,95234,51658,88666,10830,80300,70011,29662,56594,23614,24628,69435,37630,58995,65714,98969,62163,25022,11142,41483,93058,19277,12051,52573,95691,24813,76685,35531,46949,14616,81740,90369,1162,81110,15839,94304,47771,12903,33591,91393,52445,4889,97652,5991,16273,97545,49048,84299,66370,24058,93369,35854,88424,4978,49660,66115,73453,36137,32343,38546,84546,10775,34646,7014,41959,31678,96712,37123,13257,71370,31392,32503,83345,28823,23753,85226,62146,17120,73396,56161,83535,55133,3099,34681,39429,26110,76846,93232,44210,59483,48823,64593,26418,58794,99904,49404,18629,59253,57263,43822,86743,30507,57901,95995,32744,85696,67299,330,2071,4249,58919,96663,17328,79828,61893,22382,97535,45295,27365,94762,83179,91172,86668,3131,19897,52534,56845,33112,38685,51082,13605,67907,57275,57980,67377,68216,18925,57470,77629,35710,7746,87594,90755,66561,84951,88334,51312,67796,39589,49361,30661,91176,29598,93618,49449,25766,68066,23923,96201,46493,59692,34925,91182,79008,77872,25198,46104,2485,19900,89287,17582,12812,82712,99354,2627,89730,85273,29833,15316,61286,50215,19563,32587,56605,81694,59178,46581,44502,26396,89430,35013,7339,31552,27455,12581,29617,5674,98819,72146,18877,70418,84834,58031,55013,57017,95296,89257,46652,17253,26003,66573,46746,7322,25581,27067,25511,99417,92111,48228,76559,66317,97085,24506,21762,32669,78950,27128,88337,71536,62497,23980,88808,88367,80604,48119,73304,66612,64278,87895,6737,39776,13028,39986,36785,59920,87089,9147,66533,84399,17302,38320,70770,76458,96268,7586,79214,16827,30432,1597,22152,3783,43263,14396,52629,5297,96745,64203,95177,79495,4205,89882,28040,5151,42367,61051,20546,69487,37859,85177,20736,59020,64394,42625,96537,88541,81822,84082,4049,23221,94741,55868,16473,99818,42811,68254,86692,45875,8583,1359,70907,7301,43350,15653,79192,43544,71272,97482,49168,74011,54668,66629,44760,62688,47586,69,55235,53242,21501,85348,39324,16847,93936,9661,47712,40229,5158,15453,80576,86388,48612,59262,77416,66339,26302,94492,79866,63015,55095,71709,65826,19846,41426,63623,29562,25026,85383,98970,89386,71331,37256,15564,52394,41542,12748,98698,46848,61924,34896,11872,33649,42652,58624,38725,32924,67103,14780,90723,62585,98067,3923,40488,7720,82662,79145,69245,20778,43269,28491,13658,14217,81329,19530,30079,98721,8917,1339,27247,7698,85688,76852,16173,65903,20424,831,11814,25258,57493,53933,98663,11727,19102,19540,84034,52256,84670,92247,77556,99083,87013,23098,40709,22492,55329,96015,20408,56596,74428,52358,17256,50114,82541,5049,47082,5431,78486,98436,46958,41948,70565,63275,46085,3366,94233,33941,1430,95908,14135,5294,57693,11687,23199,75364,43071,46868,54174,2329,4174,77953,3040,61635,30784,15476,19658,42792,42223,51411,54924,32759,4544,80062,78870,87060,66870,54041,13071,1711,33162,57005,93133,3265,63478,91187,63402,83641,93320,58150,98042,49848,39374,20956,29628,72928,49487,92369,85889,87079,45312,59010,35711,4365,32613,10932,99446,95180,90557,90798,14187,95176,39344,56248,57979,40643,13544,79522,16629,15396,55945,8080,43120,77584,9342,27915,17968,24663,49268,29762,69303,84015,36419,72425,27996,95529,68206,73357,58928,3179,17129,94433,40929,9753,66342,37882,33827,33411,16126,87450,83631,81766,38048,56892,77930,91210,29270,76859,89871,17515,31771,6195,44763,96681,36188,94225,53210,841,86472,66749,40186,20248,54072,51444,36719,18129,76340,75116,70885,95134,51502,56117,83648,57107,92394,50382,47390,70862,82996,90116,81691,69465,56003,90869,83544,91091,95950,85536,76520,32984,49698,11899,16433,55076,52343,54987,8431,86473,57187,8287,28749,31870,39879,81039,93863,68443,16843,60216,4637,9297,5011,85295,99470,55667,72657,27066,4797,36622,12895,12450,84277,41748,8545,26289,7202,71205,75204,58327,16144,38190,62730,809,73672,39619,56610,5519,53027,22329,72412,47710,22081,7051,56447,4067,86773,51452,23964,68407,58503,74528,65614,37489,90427,98837,50806,19576,20566,99661,2650,1659,83750,81684,12314,92967,69878,73829,41470,9799,25949,94270,53705,88939,73624,50716,28328,29167,70267,1533,71423,18360,23684,3746,73458,98800,70639,68114,64006,33088,81320,7377,74546,2202,11836,19501,93373,52430,27869,93127,6612,94239,14945,13130,54478,72468,6845,64464,77984,18749,62649,39442,85966,98129,15603,21421,93184,15404,63126,4421,26050,63237,84847,14087,24611,34069,62322,27537,95342,21439,14070,927,28675,278,20169,34012,42449,21532,88677,50988,4392,85896,52729,21847,9739,93753,58288,19607,79406,15439,50738,88262,43377,72640,76988,16742,39281,33346,59641,66901,13894,53296,2404,60037,63138,33174,58560,70349,6075,20884,14008,27951,32454,84621,36502,12468,88422,1345,70346,97051,26233,36175,83942,68668,44907,6780,95708,21543,87239,41859,61837,50171,91579,61223,985,93315,16541,21289,91620,6947,87003,61876,21290,79174,96336,86043,15342,77295,52568,73288,26463,70457,57437,79396,81499,42837,32210,83713,33936,60660,27187,20615,61903,74828,6063,64502,27998,94512,36633,32476,67418,36774,27639,71737,40760,41630,4011,27557,13844,1108,27378,21819,47838,98972,62306,5715,54569,92811,83538,409,57164,14379,77622,25773,69503,17682,82209,33817,33439,8483,72615,18670,47733,16228,69515,29830,34058,54507,10420,20209,1908,4093,78096,30401,8460,3271,46796,24633,83097,34808,57983,24833,61219,16058,28645,47560,31659,8472,67477,85639,38345,84808,8560,88444,15637,5245,33797,86262,41309,64600,75641,60589,96759,30519,89500,23519,91826,71607,73686,33456,45575,67852,60173,66238,39158,92292,68081,32446,69787,49909,8157,95785,24416,54963,13627,72534,84633,50340,96370,9571,88359,80689,87368,81021,43626,4030,77291,28005,28866,45307,50429,29,8915,57132,72244,93275,25774,26440,6794,44640,40950,67675,66969,29324,3010,96794,62133,23580,90589,93590,40022,73320,88013,3576,48670,72631,15035,59130,81229,94728,70269,77518,32197,26728,92402,95301,95201,80950,31921,12007,67924,32223,59298,32398,80597,66236,29761,88524,47385,78052,67092,86946,37649,66657,72471,28232,42244,93622,45660,70066,34268,15537,50718,3544,99863,79757,35921,9958,25348,5664,19211,4589,95104,91639,66322,53375,88816,9345,96264,97783,18904,49545,14635,34592,65299,325,48312,41372,98849,90105,89062,21498,66498,7813,69858,71168,75292,43580,40826,23409,75871,90020,21039,55600,59757,94924,23760,57217,11737,7770,6342,3119,33471,7005,90998,35812,40863,9126,55084,10686,47735,67043,24421,24989,69180,40769,59509,44530,90666,25116,88437,68628,79102,18937,6616,47804,12569,22892,96306,5956,41225,42554,9171,98375,69665,99735,3705,91032,99666,5104,50519,19937,20344,68032,76722,71970,69406,28539,37282,91849,45173,83054,76751,98250,21376,85124,22991,18903,99805,61555,97917,47149,84409,16597,80755,38732,97862,75270,95970,12651,35749,63028,99878,44154,37877,82430,53561,71357,51292,3717,47957,90361,51277,85558,28009,4912,84810,45202,87934,57583,78600,96466,37186,77006,81809,73874,20312,60192,6844,82054,66631,44651,53878,47429,52041,18407,84020,51692,52381,84632,12897,27577,97620,89888,10854,91630,18984,19862,18020,66849,14954,2221,48372,41560,6360,17900,24105,12170,82227,38963,10920,53662,66241,35527,53260,2052,26356,2412,56097,27119,17175,83611,15496,87493,31985,37327,11655,43842,14457,99749,69104,48570,64715,28798,41140,1243,34866,76163,35452,29696,29816,94080,88595,54016,20526,94615,60871,89213,50583,88430,34232,53291,81356,35144,17269,30450,74168,22475,25407,84555,75114,2633,42161,86068,9140,65696,97663,82146,69612,45855,64039,68936,57135,48288,31035,8808,85947,59745,71254,4902,20008,71602,8524,33596,81955,227,74953,18188,84689,55176,38398,27960,23031,32001,35677,38371,93510,10900,74796,31650,9611,91950,1311,60832,99320,18791,7000,4988,79048,53769,14438,43792,84765,73905,49622,55603,52623,85531,69776,1563,14177,94485,60309,98728,93519,37382,96912,19879,48124,60582,76517,82673,77855,52566,77835,55922,56025,78151,67049,35979,74765,18807,23020,66240,7252,22020,8612,29145,58956,67300,85646,71763,40452,61485,28130,10751,60360,90670,47909,21796,96873,3835,38895,2033,55790,32951,23233,96385,5433,81561,5320,37456,8271,28979,30425,35771,45466,99914,32371,62203,45779,58790,60438,98118,69150,27323,59740,74040,70745,2053,82395,34533,70552,52285,38754,96414,39187,15679,221,24144,9081,56438,17267,45956,22694,95277,8061,15277,60846,8591,8134,83650,12697,83614,80257,92744,74,2841,64301,98057,64748,46093,852,52482,6117,64468,45559,24142,8670,30491,56685,71804,59294,51035,65289,50015,86788,40881,59996,49096,53934,22162,62926,71208,17617,53331,65328,20848,37007,4472,11101,35627,9460,16560,7018,36673,82902,74140,12936,45869,4445,86453,37631,84417,40221,22212,33172,15828,73422,2207,51186,26104,26226,27705,71513,31341,8713,59017,540,75421,41000,73421,96913,96619,80682,75055,8969,79955,24409,89743,56747,10032,25038,26757,38677,31671,64866,77062,64644,31451,64630,43885,43229,92719,79791,67887,45912,14890,43168,81200,66736,69247,15743,10489,16083,87749,46025,51825,62511,52503,82770,5977,69221,79219,73542,84960,99500,36122,64242,35970,62424,42036,44010,5410,74850,29957,202,52709,48547,84174,71323,48626,31738,55870,15034,2881,42833,40343,61300,91682,75504,82286,8049,16976,77712,6500,29637,40772,45003,49655,88160,85885,55400,20458,92499,57462,75448,26215,68299,92051,1491,29528,62513,21035,41244,91430,9734,74637,88203,95233,49083,22252,70919,75911,56394,11265,18147,61875,29770,73262,71213,75063,38675,75539,47635,90664,55618,63092,74097,20460,70575,79583,17457,62058,99595,1622,69362,96033,5917,79009,83826,20352,78235,49516,92009,85776,65685,53953,18251,37078,36065,89127,48536,26341,12514,90903,50350,5973,98648,85288,12562,47697,31823,56688,38218,31052,19931,8758,68023,9233,42356,99606,53165,62749,72949,36766,21385,39521,32483,91245,63139,63752,99882,21757,1697,12580,81258,37120,9537,61539,3041,55213,18522,12157,372,66326,85358,87004,94031,3064,48660,97223,63766,6513,68198,45258,70949,35216,70926,53849,43548,29311,33180,28070,53377,66770,67127,90052,83398,83666,13778,89434,42654,17176,57933,38285,38213,52723,74028,14536,54978,56064,15751,68986,32373,44007,17526,24063,30502,33571,32416,60307,63783,94522,11358,65202,83840,10889,6083,99398,63162,59167,43084,3274,1233,61382,10554,43981,6969,59551,99866,66972,58784,59494,47281,57698,81862,72973,43424,70032,49355,94974,55969,7621,10820,48318,13238,75604,70894,55986,77244,30018,56935,76503,10074,54979,33714,64003,6298,23674,17875,89390,36994,47465,17896,11198,1634,69910,19519,86509,67140,88987,1937,96454,71285,49280,40423,35688,90307,76066,91298,26797,62174,9429,92308,18894,83625,57352,68519,43081,74402,81736,69140,89265,77726,26907,89349,32081,16138,75064,55761,54706,24425,14267,10677,61558,53811,96805,69285,8598,37607,43113,91162,5877,49687,29130,7309,46446,75806,689,16172,47871,21216,31496,95241,27359,95033,85178,12946,39878,4123,52914,15443,73008,19523,54185,62073,71222,2912,24562,95429,55179,63674,34922,55043,22179,8098,14705,30434,29379,77911,96001,53013,2531,49495,18892,74858,16021,40180,1384,89899,91375,24069,13481,27740,86233,77889,6580,24269,86443,38854,98412,43652,83033,86661,73450,11980,79975,58801,25355,16829,94253,1024,1001,37833,55017,34375,87910,74636,38312,93356,32915,47545,22754,43701,28859,43521,69091,7812,61826,73923,75737,10114,28684,15193,50074,34622,1791,6992,36967,44224,59427,42296,72757,84653,8850,97800,41127,63625,40489,2903,3249,1775,77201,47626,63336,37857,34717,22603,40210,63432,75898,37434,29089,54840,21182,35671,65847,47452,19692,35626,88236,16974,71140,63096,88926,63456,14999,23018,5739,61938,43482,31789,11871,89552,23850,30915,30258,2990,31787,87787,72386,35748,15148,67533,98229,20833,15673,44252,20733,23721,696,20089,98695,44381,89138,41409,83799,20957,61186,70366,2597,62743,6085,85116,95580,21923,35696,10364,56354,57543,67587,18030,37449,68481,90395,28635,20168,2772,88758,7099,0,62397,84671,89579,65805,43484,85212,64425,15702,5841,24329,97428,76265,91466,20337,86273,29171,12369,32021,57432,91464,15104,15709,32341,53232,87613,33910,41380,63230,11567,46184,40406,61809,48657,27527,35765,3095,49888,12874,80752,37835,46861,19239,14716,17479,85179,32865,13327,56273,340,40341,30810,61337,37666,26834,92333,43598,91615,83116,23362,62526,85581,28341,86560,99205,29465,3278,62524,87943,29790,26183,53392,96310,71022,92592,51667,212,58925,60089,50812,31058,84354,32325,98963,51261,28083,27918,25343,23162,54283,39832,30532,8390,35800,8831,14557,40825,45458,50594,9793,55451,93179,49461,36853,87037,89503,26111,87177,85304,28417,86100,78529,33402,86033,96232,66818,79193,28257,22883,48088,88112,37069,10602,69990,79255,26182,244,71201,69350,81825,80790,11130,30997,33111,25432,3822,31840,86943,76000,91073,49022,11921,38529,4905,17631,58115,42156,17770,32237,45381,39055,33200,7186,56284,54183,87295,76031,39361,35963,65506,88882,60265,17806,83714,50157,96519,41403,83350,90907,59626,8527,94437,20444,50715,81472,82338,96918,41238,70962,26494,62009,92169,90928,34927,87393,171,69442,32323,90388,83853,57488,20014,53005,98788,5236,99426,34637,69994,18683,81142,63745,93750,96021,24206,78097,93500,36684,65433,25259,55285,29983,51977,22974,34990,7829,18107,97826,27569,38412,83127,48649,45094,72408,12802,15792,49723,49972,13521,38919,85216,3789,59723,87110,18029,24797,96517,7633,7801,46554,7571,8618,81087,67183,45211,33207,17964,97300,86468,57368,43530,69923,47440,29551,52098,85069,60893,90082,38974,1126,72007,71388,80573,44548,86469,38508,32527,92638,70629,95746,8154,41610,73926,1720,26001,67923,36414,8719,62905,44044,67076,85959,43749,47097,42172,425,18164,41402,15376,60891,87850,43610,80676,61738,49511,2858,59458,70422,78795,14363,64631,93081,80953,62414,65523,34593,76006,34067,31246,10401,31834,23151,97619,91432,6908,35109,94908,52800,7786,73658,61954,77990,14214,59676,21704,79532,4087,30902,97531,68780,76275,24437,48926,3134,67221,31132,8325,93544,25142,33575,10680,48127,92859,20013,96559,11816,99344,55889,3149,41432,86035,52603,15023,35936,63035,73381,5644,65130,30782,21861,5927,1654,99228,2833,92541,32276,39770,58641,291,92620,20005,87556,81958,82624,39819,35841,30113,17218,9840,41079,62271,701,12877,92602,18245,73239,43181,64289,1620,684,9474,67818,31805,11306,90411,18907,84582,39287,50440,22529,41025,4584,38528,85637,83401,18449,56803,18505,74014,59475,27232,11594,56530,33944,40862,5145,61951,36023,54110,63487,23448,78473,10627,16428,95231,94946,74795,51447,49941,87535,94277,28945,58020,17,81844,123,95924,62654,81567,88640,58186,27666,46794,60390,54757,97294,91804,70601,29263,32026,50694,48140,90270,45650,459,39518,64539,93229,31182,98411,33070,88036,67131,28525,64969,81136,10995,57796,75112,77748,92694,11106,1905,82113,52178,28825,80889,34325,44409,49156,1999,23610,12948,58899,72662,738,9825,11569,99218,96229,73103,60795,81695,54491,91648,22823,62515,3343,93111,70209,85457,71876,23391,58083,48086,85095,1919,20888,82408,96534,67656,85912,38283,42812,17714,38430,25460,76961,96849,65803,74352,73440,59645,56133,60563,72169,15664,15956,24259,60340,23558,91539,73618,47665,20584,48770,3653,52396,19548,21993,35620,30230,36568,30091,15454,89323,8150,64461,88061,93140,97192,16447,67332,17626,38695,61262,66708,38386,83452,92232,45736,80750,42980,16253,74030,24221,3388,10234,627,77851,58633,94732,89288,71531,46638,91305,51185,46487,88180,95985,26883,88498,68636,75180,84284,21915,6586,59855,2180,8022,74999,21808,75892,49676,75935,43045,39031,94680,35643,58447,97284,18435,50774,71143,36438,48239,43633,77992,50848,63792,36099,47274,89870,69167,92079,21168,54028,81480,13690,91837,27163,2571,58927,34247,20435,68449,4774,57756,79335,83542,76502,29282,48751,25262,2085,75289,93260,16346,31180,88381,76845,2964,33193,85400,6396,31033,91395,39213,6756,47936,88006,55587,8600,99154,50509,1139,88851,87855,50607,74917,95178,77348,53962,46146,56465,70587,32653,80603,84758,87153,48115,47045,89208,80050,42102,96217,17628,20279,75750,27386,56884,45424,89081,77572,89341,87500,8240,85599,52187,87714,71417,82203,50534,56822,17384,22831,34694,35480,9952,55009,71197,72267,43254,33791,74182,21490,3679,834,33465,29591,10560,22787,54095,72006,54679,75348,69112,97946,67240,82264,67993,94593,47159,27266,50573,39504,60156,19053,87777,72568,21776,23877,49663,37948,57272,21752,56971,5701,76278,79966,23568,52167,4267,49832,13597,60678,33144,74474,53861,77672,81977,59632,96943,1587,35444,96985,98664,88956,96257,55746,78879,58295,46778,53407,95834,74588,17362,88580,91536,54861,33862,75868,71247,51750,29981,30219,44175,10268,94235,22801,41235,69991,42243,62703,9244,10764,6524,13312,93198,83490,66294,25742,37815,37992,66437,24687,77125,17334,62245,32677,2190,23112,27999,6309,49693,87097,39493,53445,33543,33375,8243,63137,90276,99932,75535,13486,86485,115,52590,7326,60490,3312,68648,31004,90083,23074,84507,88745,21995,89134,12772,36933,8655,49117,88867,59902,18065,63935,99377,94591,89030,14651,66605,67847,49145,83203,53682,93849,94098,45118,7672,9464,89917,20622,80100,10789,41219,65697,9134,9700,77684,12329,32428,87317,61745,81981,68103,28581,9570,49748,39421,18326,75171,92010,57580,87696,94883,77297,84873,70826,29466,43028,60250,24101,69271,47333,48099,95287,15612,37425,4965,310,62218,30939,54186,33463,54649,59442,37576,84081,73570,19693,66960,58567,90225,21236,39017,15292,36260,27333,4233,84063,27832,71807,73161,92202,35877,98106,53127,69952,94480,89228,83322,31568,58635,98941,60395,93781,5206,84001,32601,17002,13048,46563,91428,51446,15571,92341,28054,7395,55483,98745,14045,6714,45968,92345,87228,71303,62258,8251,23354,88952,61683,73935,38267,82307,10636,86512,78478,76443,69061,19224,5979,81668,83967,28260,55688,87380,96886,279,93899,29644,82027,2031,190,72332,99961,77530,63310,44888,92760,10240,22042,61739,24012,57463,14834,93743,19733,96214,23358,47388,26299,3349,56291,92240,62349,5778,74956,83921,91502,5031,14148,47752,85117,11219,20970,39232,108,21258,91362,39546,89322,79569,37537,36482,78629,51877,29732,76560,88614,56839,95984,90970,83536,10579,15873,68730,98093,70988,13715,26253,83151,85024,68856,84035,13291,65816,9928,43566,72684,65066,77191,31185,1845,60527,93947,14,66539,15782,25149,75047,52107,46520,61853,8398,33325,26576,85193,38234,57457,70947,53257,50177,5518,90392,10750,2719,74296,76179,74998,96950,91252,63610,30763,13565,57484,32052,87940,73977,47945,53569,48113,85114,75717,5567,6254,29305,18745,86446,81254,69828,19514,35047,36938,35223,33865,11401,95502,21786,39150,78708,96256,87410,35416,19406,98816,91890,43697,24952,13819,59075,6453,30893,94899,9403,91573,9469,54107,68291,7924,57090,94933,70672,8230,82003,48511,66290,17664,13678,32835,56729,36494,82246,13501,59814,82837,29561,85937,93277,27453,10581,58426,10098,32956,24737,80904,58659,15233,67520,90428,3359,19029,63176,18169,38180,52602,69000,42263,17892,11051,66166,94589,12351,20166,4230,14845,90786,98722,54651,76726,71372,34612,60555,29613,33622,99868,43205,18290,43349,24089,79675,22497,45005,31994,48393,67501,29739,42152,66724,82169,39989,58406,43893,46228,1966,367,69183,71240,97816,2041,77681,64212,13075,49798,93447,34501,65010,94715,51063,72653,33666,85795,7619,61005,7389,19242,72451,16617,96757,83637,44237,67709,86201,21855,14520,30545,63452,9381,51595,84516,93025,51749,43587,5605,90172,21466,22718,64904,43009,43834,39627,27984,14723,57787,74207,29594,14986,37130,70314,58997,57239,46769,94305,59206,3876,95401,4532,78046,38599,51819,68005,85294,68849,26738,29585,2355,2250,59231,41537,73805,25724,17316,60155,28751,98144,9321,92380,57982,30800,86860,12423,18534,43103,62353,56909,89942,25318,79358,52008,23603,74835,72982,80123,24375,97848,57754,6313,9351,75912,61322,18158,13589,64761,45334,18567,3960,64724,44726,14991,37843,88311,44735,87534,58698,59883,5392,45137,93648,37579,16643,96614,58566,5630,47857,44197,90088,47929,73841,1304,75092,7777,78399,32241,60213,61580,32833,70659,13391,87484,88222,87091,54798,45463,32749,2867,15280,83563,70742,39614,61392,31022,73582,79510,61864,78380,24120,60288,98888,99734,13367,11891,15897,78181,92515,64510,64485,66036,53023,29874,53748,39119,74089,441,24567,10564,79296,94203,34364,41986,35185,56523,89268,18003,18759,25653,96989,89403,18250,79194,48490,62733,97000,54954,97064,74526,11511,92085,65240,31492,90977,13895,37523,89129,45710,90774,37052,31642,90001,46321,74032,14035,64725,33357,68140,51602,92790,12418,66100,12109,3210,29353,16042,56431,62838,63624,49154,20076,315,90444,4450,66832,11127,88550,82957,70579,80430,51546,32020,7707,2876,11047,69299,98339,76215,2994,33562,488,30039,91707,85615,16720,61244,73056,99036,59696,72576,68180,10532,69341,51113,16188,57375,68240,27123,99119,92170,81903,87250,90174,3614,35335,90543,71048,8337,66934,20594,31628,80242,30444,96224,50466,80955,3135,54265,79596,931,62570,84604,52832,42066,6791,24913,26617,5931,93881,43914,47101,94818,61822,75824,42757,9368,87756,53151,50520,5971,20661,4490,64345,41496,4301,61498,45039,75471,49650,41336,32778,94392,50183,81290,20699,42761,31406,10944,91110,52934,88562,43904,73546,47902,21832,80854,35777,9097,75853,52576,24033,19243,166,97251,56302,41082,36700,45565,43480,58026,19347,71825,45998,3850,78829,17213,31473,22079,66452,42923,69587,44636,50973,88196,63764,63270,74378,18876,615,36571,14209,96977,65501,54379,96754,89052,84017,79503,55342,56937,69974,4879,32554,73908,93353,958,52230,51066,51569,99530,11086,30742,40943,74900,43772,59398,80275,73432,91785,8799,2652,38102,48417,43921,55801,33611,28146,47584,21102,77643,24228,74302,39514,56819,44885,72049,50273,75532,17484,30702,41090,70412,36111,68488,69696,37520,40250,69728,75534,31208,11972,994,7623,27330,52074,63355,30271,84553,75564,97517,92666,15166,80935,85482,56918,27795,24399,37192,85016,4799,96447,3627,79121,65021,66335,23754,49431,99462,73524,20329,91366,59388,69706,37276,59192,22104,78678,81163,2642,24509,28171,90283,14837,24954,68416,95685,33267,76186,51697,81469,94237,28571,13004,69497,14611,41008,10965,9421,85728,83422,4047,90185,95255,84424,34230,13251,55078,27947,73299,48849,46143,78113,35857,692,91229,99131,51915,36330,87546,36595,78751,2480,3474,66588,80607,1661,67730,87090,74979,99399,11632,97703,18693,13085,63842,42762,42691,91501,81832,8033,53926,26370,26208,67303,51541,73937,54922,31648,50482,22608,89003,39238,94132,81122,61364,71069,32904,43525,68395,39723,1957,4669,55204,5365,557,62363,94087,9931,6890,25850,30909,77759,30752,22992,61840,5803,755,72674,69687,49476,59750,63636,58508,33496,47994,45940,15074,31327,71092,93226,97209,66242,4415,54193,84351,97142,69809,24566,1066,89391,69032,35666,64675,49815,95617,42312,65515,51324,11789,70168,93401,1523,95092,97965,27701,11147,47756,59050,23154,66932,44204,34188,41034,89951,46396,71470,9472,26459,12908,51538,87111,91247,38802,25728,21829,14742,18582,71878,92594,8095,29482,27562,79163,26805,3947,55772,93437,91387,50568,29976,48688,84748,53195,16708,95146,420,85692,95569,81603,75098,2631,96497,33976,48656,12074,73631,95745,24189,65417,76995,39253,69937,89905,1652,13342,98290,2015,27566,80565,28415,41015,34617,2834,72098,60233,94269,67643,84079,6118,80549,98531,55276,94291,41718,11915,20606,3687,80305,17405,4110,89245,54946,8417,37916,97025,41910,84,99018,46237,36730,30222,38101,60292,81929,95862,53310,95779,12605,59288,76101,78375,57781,82590,93619,42024,11707,41322,49396,28472,77410,64790,90667,68073,67078,44089,13749,36280,66090,95341,23121,61861,13820,29818,39137,31462,6858,16010,12934,80973,17268,34788,26347,86311,93717,75860,68432,6009,73721,72003,73237,82273,79833,25282,94435,97116,13248,77439,93131,31526,64168,83221,76994,49566,72995,7635,23407,62530,57813,76957,79980,51677,31896,147,63420,84950,15323,3552,41937,81867,22148,87021,58036,52671,41957,20151,35760,47317,2998,77786,14902,11541,11379,26155,35332,14678,48427,68590,48707,40400,57587,89472,83679,38383,43524,3982,54892,78696,41830,24054,80409,41976,41816,61706,18436,53606,40558,2940,61972,18747,21540,95961,65232,32873,44878,7941,27049,20637,51404,32602,51673,22613,59008,3002,99903,56886,69070,90352,63894,82963,44052,54263,9194,4545,99987,25829,5148,37319,24454,69524,18500,42147,85822,63751,71847,52662,91467,23913,80493,44826,14629,63272,6534,10237,64582,78611,9071,91057,11163,57280,44974,32933,13933,15507,23370,47181,35987,27215,64659,84672,3093,81135,68200,25329,21250,18125,44823,24592,15986,61467,50950,61339,57686,93845,38940,3400,84722,34117,2840,71017,63181,76974,80157,66924,29384,24727,7,87381,6588,94587,60928,2931,46199,64045,33131,68900,73186,11452,92646,28494,86652,36296,1616,91871,31610,41882,46428,77886,39106,90304,78067,30492,7248,19422,88105,85122,71692,31748,65920,27043,24482,84304,85107,39247,46820,79449,35488,24858,73400,7350,3950,31818,71157,83814,77728,28567,58278,98037,31683,6792,85945,73510,58372,71543,36909,84564,52294,587,49421,4959,16249,32803,2300,720,95586,44516,70370,51039,65229,35835,1916,34770,11841,60073,14663,6629,81425,40331,21277,68308,68790,43191,56076,96876,89525,97974,51969,34891,57137,48637,2319,46028,82528,37248,64878,85305,34202,56288,93411,12221,5381,30124,7354,80644,82913,49811,91168,41212,12194,73773,60153,60501,83281,51514,23636,30157,91274,14918,25392,9707,49326,89450,63350,52370,92459,80129,4031,28563,35731,74082,22064,8073,2693,29780,4393,87911,92094,38461,8274,35568,84512,18282,35545,7289,29699,82788,88164,92378,86753,42645,48198,4776,54119,90773,2403,26868,33772,47231,68027,98736,88819,82713,57386,92966,15018,59688,46054,26842,40260,49764,84237,77149,30144,74643,43094,98401,61622,73586,34301,52492,79461,93693,72444,76819,47525,42650,63196,75563,54653,6109,30922,12161,63394,56093,49363,48134,42899,19308,21123,36969,18717,98032,13001,78753,82877,29940,53060,81532,27913,45616,93328,38956,8457,15622,51934,32896,58757,72060,15540,83344,43209,51108,88853,61702,63376,62529,1150,64642,76460,62938,53256,85681,86440,16417,9089,8643,13247,76181,47553,88171,63381,6395,42694,62318,47481,43573,26820,9863,98706,30437,63600,96776,2045,92844,27473,19646,75375,50387,65565,52258,60918,40895,18540,71418,37741,71088,8521,67686,94734,27777,16703,36731,89219,91827,94702,17375,74764,68733,89783,78695,57786,45234,88333,26100,14265,84387,80104,32148,46105,72225,54813,79170,19461,66358,68370,5808,37993,29381,27990,7782,1027,27162,23470,34143,55074,14447,42482,48246,9556,52431,4892,55429,45990,87226,82402,88807,32585,2659,923,59418,36457,15895,63508,44249,5007,85345,80249,9479,26699,75913,97287,57221,60713,52227,30852,26610,53487,698,11384,36495,786,69799,82721,22701,50659,19400,9412,90080,97904,83970,70446,73040,56031,63732,96182,4376,83560,48975,69843,44741,88932,17454,57535,83231,86864,34917,39565,66251,10163,33925,83824,77259,41665,11831,82893,15117,33046,19648,90114,28239,87134,36988,35154,95280,38413,87051,62159,96450,42124,27262,46377,82956,92929,60226,73622,99832,28288,8542,81550,98599,6445,48041,17209,42336,36480,17880,91090,76172,16905,70062,62040,72075,48815,72956,66429,19840,97928,7874,26377,53616,29439,72128,19071,27408,19825,77601,15638,42516,8620,25911,21342,44612,31387,53586,44855,14507,78466,99834,18416,25865,7258,55366,79973,1663,2515,60774,6469,64520,23269,93304,66581,76071,42128,93913,91083,19875,63117,38290,87248,92754,33342,19249,99916,39897,17337,97297,36533,78820,2596,85379,95702,42241,42400,16260,17948,16341,78504,11893,59068,62139,47722,68759,13280,6634,62109,4185,72730,94798,46733,59755,83147,75022,40599,56968,72126,72993,4633,85459,36760,491,73659,34556,55876,22119,6583,15578,555,50190,63969,57524,75977,80969,33037,71326,70844,80897,83628,29012,21114,69044,42826,70706,88130,75273,64710,21214,91507,21710,80105,23549,40013,21607,34550,86409,94638,58915,26938,99608,89320,25891,40624,39149,79566,72428,95682,29657,61248,9177,21060,85084,35774,86657,25661,24046,50086,27267,9216,87446,98840,55804,54856,59110,93548,98266,27480,57166,85694,89108,28458,20184,6384,58151,62405,49384,23569,76683,98639,72241,24205,36876,1181,64165,4667,495,17876,93020,80371,41067,30666,99272,70917,10036,14346,34737,94507,74400,32972,50574,22371,16069,8613,17276,81257,11801,44394,15936,4009,96738,74023,40025,98469,10166,58958,76723,84558,85168,29750,54109,69656,65883,97698,20915,36838,32581,35024,21844,41987,77707,84095,44429,21767,96940,83775,86679,55148,62282,16572,3428,71084,66494,45398,29371,27808,907,81100,82071,50790,14036,14353,27300,32041,66003,51201,56692,38957,38029,45510,77502,65947,37455,74405,20883,89057,94184,52525,97076,17649,30394,44557,79165,24546,82812,40555,23727,90151,77820,63558,29461,73494,66797,9224,15604,71862,27370,11533,12615,8377,43852,98786,22857,36825,34305,72321,17036,41059,84043,93593,85781,35889,96162,2486,17599,93085,92610,28499,44267,37376,20044,61727,71073,84665,46173,13738,82144,71108,61396,14737,3797,35513,24365,92745,89858,13931,4289,20020,7570,20516,64333,87045,38611,59652,26453,30808,14260,5136,57252,83109,6115,94850,64656,50876,49189,47784,18013,30092,38857,77725,11506,43130,60640,40069,76065,96972,56361,54369,28329,8562,62339,44752,97892,76467,78206,69064,36276,90990,91465,73774,58123,6098,60694,1064,58326,99522,44291,6783,2228,60697,71093,17079,5858,17907,75400,86785,10606,46707,61777,32513,51133,48779,82675,44109,73093,63042,62681,56868,14247,75138,25915,87430,72802,70789,1380,89820,72847,6916,65489,94296,4861,94494,20117,1280,11258,89116,27308,3218,15682,34817,44702,49836,73994,70744,71612,82245,55807,57726,71757,5257,26869,48211,88801,33715,47301,94944,77165,32110,17688,69433,19192,51535,23865,77968,18821,97447,97265,90117,385,55048,25757,85293,64140,50370,96728,10630,2786,10908,78192,85223,55741,79026,72532,89683,56131,19731,23619,29870,79617,8292,81235,910,37570,86248,6243,30200,70855,83836,64763,59379,40438,98341,21674,2900,85793,65076,96237,34285,23002,28849,80325,54734,74973,63839,21118,15026,76768,78713,54722,24136,15675,5819,78141,5502,60564,60462,42164,18669,65828,51494,23192,49231,28391,50873,51308,51375,25886,55923,28699,71466,46650,59563,86970,8291,37116,52543,89443,83723,50178,81875,42497,14467,99011,33080,28762,95954,15144,58222,99308,81500,31612,38446,31869,59689,40945,1760,43242,33292,68861,46979,29763,38756,29640,58823,34597,85844,79489,94226,43924,28841,47956,96355,75470,73762,10758,82233,54701,99241,54270,34149,99931,39404,86505,18574,11454,81812,99169,7791,34852,9760,53090,34878,51784,36432,11763,7651,37919,63113,26504,66062,71546,51058,50747,63296,38881,72610,71112,94110,16232,92807,88019,14944,6352,22298,10598,92527,69443,76015,44130,81429,18184,52811,77604,96030,32837,99486,22320,50529,25552,88652,58375,22509,49564,80939,37031,3788,47437,93537,21457,28166,88753,27608,80554,8459,20109,59451,37322,17737,81778,78506,73213,83548,22699,59061,78133,22004,15202,18015,88660,73322,80041,32436,76073,49885,98847,54555,64668,87338,92588,33025,19728,50670,21515,95354,94725,81888,27090,72320,41725,35229,50650,38909,75887,92277,62104,28597,38297,46048,42663,53911,42217,4630,3132,11275,66754,49570,11470,68639,19886,29556,10618,46491,44740,746,10739,29115,45139,29457,9369,89740,78393,60663,78907,76669,89477,46005,20555,33126,76482,58863,61255,21852,12961,21471,13416,89960,96528,4142,57485,22958,58934,97834,43727,3943,87525,41294,73862,61029,98711,12991,71437,21408,51251,26303,37793,63786,36736,46704,69368,99648,78903,45251,36460,77301,28412,89486,86731,21173,30193,30214,1461,61271,2034,82983,64588,47384,15069,32047,9016,54304,94528,78061,9722,31398,96650,34003,40128,84044,59973,6444,29880,23374,39621,7661,80937,79317,34518,86965,73149,11080,68791,5197,91330,43250,17189,21720,37292,27366,26454,8313,11239,35400,60220,19143,38381,95029,16534,89715,38721,36752,73392,17639,10300,19613,62849,55994,60776,36767,28574,49877,39229,94172,86937,52948,22449,20864,4247,37280,30924,22732,19315,81394,716,35207,21684,84250,54896,16851,42774,93386,87346,11669,8688,22949,82097,66813,94709,16082,88126,48718,38743,78049,56754,97752,3372,67781,26248,23003,38926,14668,51824,98333,38399,32690,29597,94289,71535,79859,21913,82028,67743,18829,74912,56519,60702,42856,30720,17885,13401,77345,99784,65622,85441,73342,46546,39503,58732,15098,15600,86486,20887,97735,49537,1392,78571,43125,94745,19264,5873,79743,36163,49552,5760,50642,10225,64160,18888,79518,88380,52048,61418,4433,74106,8846,12089,34807,66119,67390,33744,35729,70363,83336,18116,50571,49879,84865,45645,28043,47477,50693,1943,97570,49946,81648,90381,5021,51010,65978,19544,88981,11653,26962,64446,8553,36224,69185,52301,10195,92617,98926,48551,16461,74399,88869,46258,49335,43376,4862,90466,67276,85763,63544,90758,52863,71668,9367,47566,49874,37271,36394,10084,63008,54526,30884,42898,92374,74465,28903,94648,85131,21991,93064,48135,35458,88654,47599,20624,70210,26893,86277,96890,31756,26149,34573,7716,80284,20543,60440,71778,26353,54825,1763,46880,15505,81184,6176,61406,48110,71319,63360,88680,16825,78577,3872,78111,46903,93205,39781,26853,48999,96427,51484,89623,53777,73556,85362,17447,54179,87230,93440,7826,49830,62272,27648,47763,20025,86557,10159,94380,39209,14273,86346,93739,99070,44265,2252,57226,42157,4353,84647,61311,1309,22659,60260,92401,18933,39902,16782,78410,69642,25963,8866,56783,15250,4158,69269,89657,41698,24233,93560,39963,86166,91582,65134,74670,55912,6633,78404,70878,26126,70968,42439,33150,4748,77054,24701,84789,85083,85980,98094,24076,14649,45834,94272,96592,10061,51374,98372,38514,66511,96910,28673,23141,55141,12049,66980,65880,94859,45807,68601,81070,17971,22926,88538,91640,52290,97653,39593,67020,66164,28266,90612,25689,86204,1528,69875,70237,77782,42248,65036,36626,85509,35401,56963,92052,1251,70707,78886,32289,79897,81317,30823,18694,38225,99268,63528,81493,2677,4904,90829,22948,74078,26185,45079,45602,26330,9692,22665,94925,88151,58077,88211,70723,26651,73353,78749,85522,56686,3370,13208,50492,66054,78705,6952,85412,13859,97677,70204,97695,68421,77120,46232,95809,89047,8016,31109,25646,56936,17981,66916,33812,15567,65383,55997,71198,33142,55880,45909,77419,12055,88472,35340,99945,37580,16467,42068,40424,6872,32522,31239,7994,68257,42463,19637,88224,31256,11584,24119,46324,37053,3535,90002,84804,70729,62480,56684,3194,20960,29843,52451,88049,3208,2283,53339,86853,22415,66092,92649,92269,80964,72224,60057,59070,44229,70838,1579,1462,5948,60301,42722,79285,65877,58272,29998,44079,27859,77320,53946,33928,82559,69575,93391,92241,26133,9023,33358,69543,94448,18706,19359,12857,68652,53873,37030,95747,37384,7697,27170,68883,68662,67281,51081,792,48535,54898,72059,25563,74929,53118,78866,83063,5138,42339,25229,95960,2026,54152,91894,85791,64987,29897,97359,89398,62835,38121,72597,85311,3242,86850,45724,47495,59062,42683,5,54414,383,22848,38790,40234,46595,5838,11654,50732,25753,23577,69600,55497,63899,35858,74120,83979,12258,63132,64197,73870,10721,75802,58819,52878,43892,29335,28532,15870,20371,5072,22799,61505,2528,59057,13868,39972,49711,74814,48783,52615,14688,38080,12979,42921,97707,33719,23228,3251,54129,89411,21914,50354,45363,32827,91963,21699,12593,4120,51347,9179,62361,23320,82322,6303,36407,23056,20805,61477,75475,83352,20792,81391,93242,74442,78236,39582,26052,83843,60303,95381,78130,74487,91581,47523,37920,80681,4737,74700,13586,61626,84787,47572,44164,69154,48625,82938,16664,86602,13872,77957,70650,84678,14553,40216,83468,50488,58902,84746,96079,99954,51328,20568,34892,27634,33683,93059,73678,83000,98404,40934,14766,53802,80075,85240,33044,65698,17151,37141,65223,7856,68256,44851,75794,76903,50686,12145,85687,27836,5062,32636,12180,69397,75422,69573,90608,53651,80314,37585,58963,62842,58258,15109,34895,4729,1009,12121,96348,43325,92215,97879,69113,68906,91511,44610,59691,71051,66097,28846,10079,35698,10099,6535,21933,44346,50153,17908,84400,33908,24082,46540,3964,32670,13988,73983,32186,14380,62587,58808,43723,13213,47999,9710,63106,956,83060,33516,88414,98780,41295,38025,29266,50957,29446,57985,84775,19115,69726,1979,74337,30658,47747,80831,39569,4684,89616,73062,97478,90591,1395,42346,78639,54392,87523,30908,3124,15770,62284,5953,32185,85125,93177,20124,26188,64769,74910,88828,16393,39185,76317,12173,98031,65084,13193,82208,83588,28072,81951,22981,19496,52798,52940,35741,27519,50696,6797,78094,24490,12325,46147,86938,26649,98519,40372,42614,51149,13635,45178,41254,21462,54378,21878,67862,90597,84692,76789,42108,32410,77437,3476,24497,57949,84144,7776,51227,2490,38263,30075,60753,74530,30640,81097,37111,81189,86767,20744,80064,6022,62075,52053,1751,95763,82894,33654,97824,38801,53773,86994,37834,3439,44552,31509,84261,70638,76587,14631,55636,94790,29925,24824,82535,11283,43583,46663,39544,29706,19522,67402,24005,47203,74676,13694,65898,81525,90522,87634,89999,4000,12885,28294,8873,30426,26466,14963,65483,38321,21065,68966,19104,31061,35734,32136,70887,11675,51075,87819,27391,73770,46427,83561,51952,89516,57893,64089,64091,30691,88188,70454,80094,23792,18746,54766,2859,5805,57195,77551,54768,13631,95106,26886,63630,60112,61336,17404,30400,93897,53785,32227,34943,78554,75500,28759,43021,45047,42571,28496,42814,2872,96179,45535,97722,61301,16580,254,44992,65701,18442,19551,80699,96896,79030,22935,81360,41117,14676,21641,64517,37156,79728,23066,52808,30482,77243,43386,76461,78851,16815,35501,45951,14912,70782,99643,85946,48074,60626,39517,97348,91886,91353,61782,7775,59038,28603,24360,76795,26928,94824,15536,62614,25616,75154,63363,40640,26796,47093,85011,129,32797,65999,55757,15095,78757,76699,96401,4260,33576,98380,3625,69501,89298,28498,86573,49912,33615,44148,82513,95375,71271,21606,12063,92067,56111,56755,13915,99087,43740,74010,19473,61030,49921,72182,16224,99802,15429,40598,75494,2873,62813,47244,3532,10229,71799,39794,89678,94475,26490,56718,13366,25368,61325,76597,22274,9006,75952,18652,49496,14967,92605,74570,94551,64245,8721,52764,69659,74282,22980,4461,88751,19455,52648,84536,31121,64793,72232,54049,69753,95735,34536,8630,1863,70364,56221,21889,38782,79560,44964,72830,23860,30771,54754,72214,75150,10891,65384,28534,34291,10723,51980,98289,93788,80431,23518,41362,2419,60262,41132,41298,97270,48388,55960,35237,15335,89802,43868,53102,78570,58100,41268,88459,68550,34238,60168,24109,90853,68922,86266,78723,4856,81400,11645,32822,63993,72765,7104,468,25051,68925,88355,48910,21205,63169,73307,47943,86130,76916,39665,37818,48030,7970,39555,10956,8264,66373,40753,95936,34241,80407,81222,25900,77799,51948,24433,54395,89238,61021,67708,52565,6466,9846,42045,7841,36294,98409,60847,15987,30812,35895,57051,93007,26082,1687,16701,84036,10667,92821,87247,60125,82398,27288,13484,32400,76459,84681,87983,16702,30559,79750,46598,35290,73351,22310,9996,49686,81358,3561,99158,30454,77468,40505,74818,81227,78978,96724,66432,93581,19149,4612,74746,8263,67248,40900,86206,85508,63555,48447,54294,872,45612,14098,96060,60624,12682,10393,91556,91023,63010,31672,99696,45673,83313,30270,78464,97705,91829,96434,6810,68155,30319,62883,715,22313,12749,91018,3301,39740,73280,93408,87622,83404,24250,35454,4735,40450,62321,66387,43217,98101,75992,23777,1747,56048,9157,18230,533,65320,70644,97417,64523,71597,57224,71656,68964,4878,75814,42806,88878,52964,28856,75653,40808,81177,95905,38540,85199,87251,99724,82149,77051,59327,99199,82927,73012,53921,2826,50746,35584,20132,27437,67996,39801,41398,7972,14695,53957,94643,70620,28321,50955,33225,27791,83006,47196,83739,10349,34015,91601,57761,7096,65750,54530,28678,47842,20724,1422,33222,87161,37915,57039,32404,33821,1204,79003,85942,18726,87487,24673,74158,4001,11546,40294,22934,50947,21862,96363,2077,18006,5780,15995,71121,67512,72538,16284,24542,39246,5340,52635,28174,29074,82900,49931,15394,50849,1508,7142,10878,99980,52120,71449,84651,30787,90508,72678,70051,9399,94155,32725,40731,8985,13480,17467,63704,56808,49781,76940,93944,88145,48385,18983,45939,42037,43912,79711,95943,75264,17950,68691,65721,64633,79548,9649,14888,97726,99728,56478,13946,72656,57649,74830,93853,29652,67867,292,33215,41343,87545,42657,91687,7243,92133,43686,30480,25743,64323,52125,64021,18249,24149,68960,53727,57325,50614,20186,94301,42471,50197,59081,63309,44213,23683,16875,32259,7835,34856,86726,79245,13673,29802,9688,40168,7175,56618,36152,48017,88539,2482,96290,74780,42332,70482,9389,12107,58811,42190,6048,71425,34652,36320,77941,96658,50934,19504,26987,50415,77932,82332,66156,33149,4032,11562,11298,99076,17028,17655,93044,38877,11888,18967,2848,42226,72470,98395,66955,833,86451,58465,95515,81003,41680,38407,55765,49925,40765,58810,18348,53618,22262,19969,13204,3782,69114,58746,83847,93932,26355,54876,94574,65868,49849,81869,65905,450,91213,13935,57941,26410,97842,87432,46954,49577,94495,21005,34065,50915,89253,9919,84150,60082,83912,14697,76537,99180,16103,89044,47251,29333,1371,70562,52438,6308,34513,24933,41462,76388,34041,51785,5099,8341,4148,66796,1577,97549,66643,64831,97050,62852,89428,10430,95842,57285,74664,16896,13358,57180,88661,61925,44045,45842,55822,34309,13138,63020,82978,73644,74887,47272,1808,93570,66930,29215,70531,74976,80260,91379,99596,30301,91156,26263,22592,99836,80338,14255,28555,29648,66096,76796,9011,52184,93883,59193,46559,345,42116,62988,75121,10821,47246,51807,50002,18992,3932,13123,4960,44633,71583,47331,33847,88548,64420,34156,71785,99389,86425,13099,30,8816,25088,22512,66286,12689,64936,56964,27334,79945,18566,38392,89907,60494,74493,75025,99988,32539,10861,750,43947,25418,3638,63124,98169,20784,39956,60504,88108,74896,46182,43559,6921,92924,87382,98624,74861,12387,37739,57439,64179,11600,64240,20306,40379,12926,52462,78441,79253,84469,51213,58715,99791,12632,59503,70159,76011,49592,93831,23601,6769,35273,77270,90825,97246,15257,53155,70766,46163,8790,51021,1,54911,49944,2327,98475,71248,95687,34026,54432,16713,26086,50144,74042,48780,41365,57814,92879,46673,16665,89855,17413,37385,27982,35302,82196,93420,63815,62021,51828,70320,96959,61673,93597,55054,77641,92357,46528,17147,85302,24059,89504,56281,46328,54547,55516,50601,15572,94332,50935,83308,23148,64282,30660,78378,35544,92007,78137,96493,13221,88722,96666,84640,42852,9364,96132,73463,60763,29865,70189,59474,87543,2922,68088,84974,57307,16476,11524,12814,58582,82627,4300,81631,93806,80288,98602,2770,87693,36257,13083,94854,83010,16277,29354,92249,73086,31104,66211,24235,24398,84443,47941,93151,88372,5261,30700,97714,82644,58558,41493,4552,1206,83237,36501,87320,20019,18899,67325,40373,59958,56880,21432,61593,94546,43405,89890,53404,52310,79435,84710,77046,95720,73907,49255,18401,75891,97792,43857,98462,8275,17307,79799,72489,97006,12122,62543,8512,43088,75009,39936,55267,82429,57499,22629,52351,89045,57348,79231,35648,39722,82869,78438,85880,68478,72988,26228,98360,53744,80584,74113,41267,13399,91139,18955,89023,23091,38485,56951,85750,24313,58689,28315,24123,81557,43736,95484,75882,83105,91555,85532,12378,8579,62567,15633,25044,1819,27221,59127,78767,79661,23425,59161,59520,5109,23406,85843,82965,31507,70758,27112,52458,63281,44318,7216,54480,78759,68746,29837,61020,2425,88776,88718,45026,54497,10746,33696,41457,61978,55256,82214,72944,84978,31677,40031,37689,55668,1374,9595,21446,43896,2389,50130,29664,64414,82452,37427,30483,24565,13072,188,95473,72522,14445,23579,93175,67657,51930,58527,48243,99471,53833,41471,13082,80658,49991,69071,56204,54934,77848,23175,47194,64691,58323,43488,60734,43338,79726,38353,39571,45910,22737,60081,34816,86428,65162,29483,3266,73098,48076,97990,24972,78374,52090,31980,31414,44789,84757,63365,91733,34151,17498,55828,79977,47860,54625,44606,16201,76254,16065,81584,31085,43077,5718,55538,96309,90393,82393,95802,8115,91104,54994,8939,62224,32111,74466,66574,17844,36345,66283,20676,60069,56764,76453,32517,34756,69698,18070,48434,40879,26081,90914,63188,14003,95397,60441,48221,16365,89898,15334,84660,20000,66513,40751,70442,85154,17361,99839,39369,84589,58188,66705,77779,25216,97930,30561,75726,13027,618,74884,86379,62444,15319,62052,443,27536,69100,41847,12559,70178,24121,80413,44618,62558,51006,49934,4074,89147,38913,97309,66495,99003,29242,9001,74256,58712,28643,7422,508,82349,48825,95479,71810,58191,25932,97055,48916,24336,70218,64280,92925,28973,84013,32380,27195,4567,60488,19641,43364,37300,90014,73365,42883,50830,3331,15902,82691,97178,94722,51134,644,70925,38027,40262,43611,7482,16692,74053,79150,51766,674,38042,43694,46264,64392,634,2201,86591,26287,71907,19657,79686,56790,1407,58511,26007,62694,81194,46526,32200,64340,41173,92295,35023,11819,75082,78001,89795,60358,63763,41945,15091,75268,88789,71864,77139,95212,59087,56510,26273,30941,59843,32338,31360,15200,22545,14344,96410,63685,62189,24316,8992,99452,62420,82340,8191,30086,73667,5009,828,83156,34483,29411,83540,24593,19228,9654,61723,47939,43154,72369,20783,86766,96561,70523,3784,46221,15843,26010,89496,32151,34468,47276,66984,24589,97543,91312,34561,72772,69500,97027,20207,19067,15865,41814,75941,64993,84944,25806,31662,52776,90867,92624,15558,24973,15462,6171,24218,2756,64648,59849,32594,83610,56444,24993,286,10293,39005,12639,35240,49538,2000,45120,15383,83273,59312,64552,6761,91016,68101,77926,22138,64817,44700,9755,6912,25732,34549,13767,56856,28399,46294,28407,61401,7038,67890,48795,93681,50822,67266,26719,59252,72015,12960,32921,98615,50426,51982,53636,70166,93032,15701,71173,56217,77593,37496,31764,21310,62167,5949,26033,48576,14877,34340,44112,8038,4417,99718,70581,56293,7792,49014,77625,96756,63047,75126,99236,24722,24268,14201,53824,96103,60065,28634,51005,7657,80414,54012,50606,90812,16794,87216,8845,25901,8201,71552,13377,96279,78066,64576,40589,29069,77775,39451,28278,60357,91540,7343,32222,96772,86107,20009,67432,45814,69933,53029,76577,75035,50826,43810,77638,68884,1800,3502,15830,88891,48620,67388,85925,36791,22954,81811,34094,30949,57517,19173,11544,72118,59912,31622,43871,47809,90000,29078,89382,54180,13155,22548,77472,14987,64042,23691,40235,95633,72925,77655,37894,81792,65094,47418,20214,45209,49642,62865,14481,16081,16503,26194,31221,1034,19225,40493,57613,86503,59690,87946,27709,14604,87716,79183,20101,93543,14732,69202,47084,67611,18715,33427,77109,22925,28206,32612,95649,52581,46240,96053,75705,47185,97615,61118,72778,85285,86922,13563,42127,44277,97254,35372,2860,81007,43688,73558,13855,83622,14452,73972,60882,73335,98784,31668,29982,37534,40636,3969,94739,11759,2280,89212,93247,67413,37661,10049,92208,61554,84581,68049,81218,28281,46255,59149,86042,99817,48029,2577,37680,16877,13614,61195,27843,49442,48869,42058,43781,25356,96946,5742,22627,68111,41925,74834,52902,89102,19276,84100,67645,14847,93352,20540,32763,1217,63796,47197,55553,27599,25110,17084,2122,12825,18238,91295,84532,52489,5606,77683,52775,23732,791,38951,74049,14517,2566,41182,75190,88323,72746,91038,20356,33689,29889,41827,69342,64153,44104,70553,96507,50226,44722,98158,4529,50321,8480,74891,64846,4648,48803,27749,68938,37787,22953,59159,57865,66205,5084,47277,84130,20082,287,15279,19920,88366,70093,80777,41949,99564,13370,53540,42514,72086,94529,47000,53409,62418,28660,37884,76984,59726,42403,3111,93591,39526,26000,42279,19605,28526,95800,3663,44981,80776,39245,68792,27341,40941,42953,38292,59211,74377,87043,5772,51530,800,96846,56552,80066,20890,49549,82618,67822,23514,73710,27652,67881,73385,13180,9188,88324,10316,36846,36396,41141,14224,21592,33978,53099,13202,65251,59720,35321,13356,25384,30055,2199,32294,73554,71457,39438,12723,26530,49990,46055,57507,34046,15073,79590,85783,32439,23488,58329,87561,27727,47775,79073,32811,93735,7531,17089,50327,10587,9824,71723,42723,98636,87444,52730,29728,95501,36566,7417,91275,36872,35699,74167,62155,41561,45262,58141,34205,46383,27129,31976,47398,70890,76194,79462,53607,44958,36693,26200,97587,88473,97164,19240,39968,35298,19278,62033,13211,57387,64785,34832,20871,59092,79370,90445,16886,57389,84084,62233,66658,10604,66833,5684,30732,31220,90147,18519,77408,70224,19804,51913,38365,64583,27863,70602,79772,24926,76943,95060,63054,99889,22435,55183,22306,46364,37844,66873,78281,89648,52105,55258,73763,21315,79445,86571,91518,38882,3494,6329,27343,66622,62311,63829,59424,25275,83206,21866,449,74981,68376,94160,64754,34068,5010,39111,83291,95855,82485,19890,51373,74050,30467,58156,71677,76312,62065,87861,82809,32244,55522,53158,19704,99178,89840,87036,22476,25267,52055,20739,57471,65916,5000,37419,43024,91765,9815,80768,13118,98136,49664,35461,19395,21848,80484,66318,2471,14703,57398,27212,50163,44011,21853,99565,83644,22989,42711,40075,76356,36420,45309,29945,65719,85169,621,74774,72588,18541,10675,88423,8889,8374,17739,35570,61429,52033,22893,48668,38277,24945,23471,73722,66232,3825,91893,63840,50316,25370,71960,51743,69056,53875,32308,99896,34144,82256,35598,53081,51780,34389,23014,85352,77366,78234,58777,92366,98834,65093,6877,91822,52855,33412,91788,61898,29555,17920,17069,5425,54654,4037,37684,72921,56520,73698,81509,66953,49146,44260,77766,73892,68194,29344,45761,32756,81239,91744,89704,5091,17766,34195,47141,56436,98482,67646,32856,79898,21184,51173,39139,79669,14074,17989,57730,45082,74073,17403,89832,78962,14460,36510,83572,15799,82428,21872,47215,78595,96101,46114,2513,16730,32876,14485,6578,81274,77209,52212,36685,3500,67125,79477,73122,38562,57420,82881,8020,73373,55334,66462,26539,93776,65285,58600,53969,31736,90776,51537,85632,48409,25440,3450,81997,49658,14724,33607,84252,28250,31912,63716,56883,99995,34615,98932,90368,57539,50372,19946,31915,1774,64148,68978,1232,99046,91235,61666,47585,31147,91228,34947,56353,47985,56645,84958,54496,3860,25468,53128,1071,58221,554,72790,68712,44669,26385,82130,55422,24557,12763,26028,57229,98943,53847,56251,31574,89555,3730,56103,98860,21387,54948,80042,12255,45581,42794,99173,47459,5607,85833,6809,9901,14907,48963,90400,72801,72786,67017,77098,79441,21438,39301,85213,21977,28617,3443,16516,735,64454,48397,97220,77332,50084,79572,98915,14596,9143,78865,7031,26159,41168,6246,69053,57089,41071,55493,97898,4244,93642,47726,29538,54508,30649,50620,71131,51637,76274,98247,96607,31231,29046,47559,59488,97467,59842,81210,9586,11599,74939,6550,59071,3540,64518,24484,97328,27646,86833,33432,98798,51283,35707,54436,81891,46336,59683,12853,84087,96924,86351,60060,55185,62655,78860,65606,1915,99319,6346,69649,2475,79425,66801,73235,18742,78140,4767,83047,74206,83598,94447,56403,58708,1797,81614,96358,24968,97603,45655,63616,29008,1178,19722,4938,72810,75700,80117,36115,41031,98173,90279,31623,68072,2889,20361,38517,20419,30886,85717,26892,50191,41108,14683,2520,11217,59200,62451,74990,63000,2616,93038,91817,863,36227,77801,72692,52998,86470,61214,12987,88068,34370,45235,13822,45457,98595,58114,45447,12146,73372,14936,26873,72842,93187,38330,55791,95226,75675,42669,9535,25075,69576,79484,17290,84799,91429,31995,79610,28075,1559,82477,63960,18185,16641,12186,9090,40544,59216,35054,70285,53786,41099,78011,95492,80874,11246,37970,88351,79233,64938,99808,72665,57672,95689,34356,82593,92701,20085,49958,91138,73340,60294,60819,42935,6922,2083,53274,22456,24366,90342,68177,93443,12440,82526,72651,51069,66390,29132,25125,85359,18872,24959,71571,22781,20760,16154,63542,55106,13706,25665,53796,19882,68603,98917,47884,63007,42419,43208,67979,76418,72035,5508,3058,82151,75155,94154,35117,25062,31219,61431,56119,94552,41677,2925,85229,44451,71837,76378,81652,40027,2851,81817,87077,28827,70693,74036,66309,51199,11946,85031,32870,17184,95094,74514,20318,70250,25557,53674,57156,37814,71835,7830,43676,97651,43111,75856,50282,81644,91636,87771,14819,22390,65427,34887,87428,65228,88798,84365,25444,79186,75925,71863,44971,22009,59150,46193,9669,49266,4949,73333,6461,83929,6502,55824,63801,34995,67871,30671,7267,49038,69555,59334,44329,13245,98235,32795,8566,74084,35775,92634,60637,13243,5370,78093,76619,51313,27482,14588,43825,7133,4913,17513,2226,8302,45492,57019,58644,20473,28240,26054,33265,62966,27265,93522,65527,49267,98510,94337,81006,25180,34902,43309,81456,49712,23337,26304,93051,33552,86621,90690,59074,51961,34596,90482,9769,616,99544,99505,42042,15731,87887,30129,52741,64273,13058,78518,56903,54044,21291,35897,26597,24888,3352,65724,464,38962,70670,90309,75172,91531,94439,50484,49016,46925,5799,20720,47352,90296,47768,18334,60519,49759,87981,6949,46623,3195,14328,86498,173,69704,71003,92055,68863,51431,91128,79034,76008,9118,13588,27005,60853,55676,30877,35955,57190,70193,75038,98556,66361,29445,44083,65743,92893,87373,78003,3612,6730,13508,63575,53359,51455,67534,16005,10294,23675,21424,2448,40998,82251,92205,43015,15554,87892,36465,34380,74694,82461,47015,89083,61517,26638,26685,54319,83067,78937,67954,90552,34733,94438,65355,29054,74417,59428,78627,65425,94938,86359,52356,66372,28819,82157,86405,59401,86174,65624,13074,55132,96660,30827,5646,47720,61120,26187,84114,31345,59662,72775,53574,13181,70350,74854,48778,85183,78367,10690,52870,71062,9622,10174,41970,62061,37354,46140,40529,81242,92346,89383,48662,38981,53398,73901,55977,5434,52096,93791,66923,65931,81010,73655,74439,96944,90547,90340,86639,42081,46214,714,53093,67719,74894,61038,24098,83377,21167,61889,97314,31166,44615,51745,51605,79314,56391,73413,65548,36200,71909,13663,91729,18929,74752,21774,75980,2191,84583,30344,68859,33931,82243,94060,87857,62695,87558,20457,59576,21010,65619,43496,65908,89752,73106,42526,91461,75867,67226,16323,66297,91823,5797,66201,24301,81855,66563,68885,44456,57269,91215,1284,81871,64326,91347,48785,56407,98990,24980,19553,53998,15304,69284,8106,69834,65734,79506,5077,31843,45044,53295,54794,83515,85755,44098,63347,91418,89876,89328,31809,11362,71509,4935,41111,26025,97750,52824,64900,22637,90470,85109,46636,22084,75877,38698,83080,29774,88634,36107,57260,22742,3770,743,7765,99533,68559,73845,74055,37540,69744,52707,60499,9534,24243,7515,74421,17822,99247,96698,93505,77382,47627,26611,18871,13912,96296,17609,25513,49009,59232,15259,49243,49114,95339,48178,91831,2074,65849,52005,24699,43534,14677,86642,98000,30288,5972,69329,49573,7266,69950,9609,17550,29041,37329,72659,3196,37383,88077,60680,33616,92072,637,25037,41923,43731,96356,30014,25887,17677,92941,49120,77494,52978,21049,81880,10506,56042,76371,75635,44778,6507,44880,52150,59638,3026,92025,73826,70586,73980,46947,50665,58678,74321,99921,88993,15721,93549,13699,70731,28155,88720,98694,6532,18924,40176,55820,86589,8418,97047,69420,11858,19036,17883,90446,51981,23072,28799,37124,98516,92779,39895,21986,6417,37677,68001,48087,82198,26431,20660,37420,2314,20877,75079,40204,40714,98580,63622,42276,62293,54717,16196,25798,48057,49294,48738,7892,70805,553,88026,12976,68758,86398,55164,89880,80119,70777,22218,93564,82943,14897,11999,87399,81515,66355,12271,26785,86798,64868,66444,31585,22095,56127,89626,76922,35292,3592,22377,4079,88226,65024,90865,69730,22910,69681,51856,60625,52474,83995,64893,339,97133,61598,95772,57373,53327,50945,11206,65165,79250,35338,47877,37721,39430,1514,90144,33176,3706,22290,44966,56476,74595,81960,57544,67537,75900,41688,63859,75428,59898,81698,37103,4906,69971,90961,47793,95700,15188,83743,64507,74308,25935,68117,76390,5287,39182,92806,72548,85634,80760,19018,22392,68765,69718,96178,10044,60778,61556,3593,5476,30795,38958,74381,30436,67681,51022,40047,72270,86020,70488,20809,23617,66562,32508,37582,21642,72246,19234,42578,26627,17839,88673,9255,74784,68465,78059,17154,39759,14188,84902,8885,76992,92675,21881,97139,17143,61146,55024,35295,18583,69519,62748,30069,98975,58254,39447,11620,38497,66019,2541,44227,74613,33473,18926,63633,22244,77837,59007,53111,72708,79318,73996,78306,92955,1442,39089,51491,38573,88041,21287,31910,63220,45925,90110,50553,98387,69372,79822,20133,77292,83621,81813,44453,44894,43161,86973,65958,35177,77250,10209,52276,95278,18918,1918,42988,72155,95584,48516,89886,9363,15678,49647,23463,5855,69680,56591,25637,70121,24084,76187,20069,56271,20489,70952,18102,67312,1657,64921,99586,56620,38317,2488,86710,29373,1114,80555,77371,4958,21516,94171,29615,52360,27059,37073,36442,3594,55664,15827,99240,87157,28924,44697,44877,91098,51768,21559,43565,55517,87674,67349,30578,96602,70506,68607,4503,97877,68781,94408,52495,53064,93456,8712,25820,99798,14030,30696,84816,67842,66482,41890,44174,72770,28461,66048,95926,82808,35021,50279,77280,98138,81637,85697,72938,44006,88012,83770,36903,1428,66126,99188,99933,26203,38710,6191,37081,88257,22886,36347,5952,97332,54269,16908,52,37545,84675,29819,30015,874,16070,30980,49528,99063,18664,38642,51126,42236,84480,67450,36072,72680,78636,49288,3948,51070,10461,40114,95364,27063,92433,91143,17710,27787,38444,91960,2422,87286,46719,36525,15757,96452,86616,8388,14539,80596,72825,45193,82734,94308,99753,60645,33097,86998,26139,86017,38286,87686,10561,23989,45319,98502,32735,92294,45957,31546,16993,65294,54893,86422,24548,15002,43541,94631,44550,76682,68533,83872,17250,88607,41474,33233,26732,1866,83315,72087,62156,10941,45609,87897,63025,40565,8727,489,15823,64764,53621,82053,81199,2214,25978,80280,14441,27183,83417,14675,15687,31621,86417,90326,31080,41436,64486,19587,97931,84366,4145,14007,61321,28796,21127,788,54947,39862,97385,4608,94843,68123,13691,89684,81782,45430,60599,12404,4933,87789,16489,45215,20372,12970,69646,2222,70567,11088,35348,49916,96299,11213,2497,62408,41670,87491,61891,91779,1670,13634,37114,87768,35900,26260,37305,10927,68330,61530,93873,55210,265,90921,59142,88352,49623,28530,32928,73560,23553,38955,4373,60285,3051,32324,69073,1389,56480,33245,61090,65684,46485,72528,89900,75636,24725,37309,18363,91843,5781,41875,12720,47837,76947,50384,91842,35364,59325,22243,8772,55805,59961,32502,85782,66074,62047,2879,94109,3510,32430,53983,27171,12671,2967,20049,29064,25660,75926,28772,85582,2870,44009,88602,85823,37824,10551,96403,10215,29313,31037,75430,64501,14906,58343,79991,5171,81485,77338,87138,62394,34018,33884,70654,6420,81953,81963,41951,34079,64732,93758,31590,88775,6379,76945,76741,62440,44963,64498,7845,56949,17923,40252,11033,75513,53252,72601,10457,45781,37768,17726,51680,41053,98313,16174,94903,23351,61564,35342,88592,94804,96202,29715,35824,15997,62660,50245,29595,61488,67405,65352,22761,36434,31126,5351,38451,32871,60836,65424,45845,77188,97624,59188,87261,72276,50442,72149,83831,45391,74453,77040,5897,82521,34224,54677,35255,72578,24219,44169,41982,74262,85453,48286,31943,27126,27166,39741,85667,42112,31488,53002,69002,78444,95818,29125,87773,90085,1190,33798,44022,16469,85625,72906,75988,62709,18095,3072,53642,75372,5499,13357,3847,22388,60409,37932,307,8062,25540,66978,87283,71720,46326,34458,51242,75399,18423,99210,57621,63814,81753,72398,17380,59806,60099,48104,76386,7880,59177,11132,27563,61045,10797,6835,41204,50036,65732,57840,84838,8161,26822,13573,17270,97324,90372,876,94061,94963,34911,84069,11973,12917,78304,67497,12505,48222,48681,56368,49211,78891,54702,92746,41506,78081,77965,12210,45400,67246,71674,3348,96549,8242,14143,76301,10133,62071,26782,16958,62692,54563,78737,5860,5168,10418,66392,38118,90808,20057,66512,53719,63460,99507,5315,85036,81479,68017,66698,45931,36991,12164,41046,38991,94540,67395,85658,52515,13285,61448,91626,39378,74701,89929,9247,91791,85994,8163,17570,72983,97998,94417,86974,88375,93454,46664,21266,8563,40784,56974,938,21054,53989,98687,87604,26268,52160,13705,63505,93585,25547,12923,57238,23195,45953,16687,50861,3713,8011,19437,86389,61509,8312,85961,98654,67680,34087,96451,91452,8865,3166,19488,12485,67376,42266,1606,65025,50201,3096,43986,12757,96902,80272,52236,98342,78392,94862,72494,87324,87124,25779,70900,64914,39906,3583,20065,56821,82865,33601,66620,85517,27318,72239,3281,23832,31796,29059,46407,56075,21359,59337,62550,91241,46024,51028,10463,42950,96172,9673,2686,30206,50441,2927,32753,19346,98748,22460,30969,45726,28291,57405,73835,85827,97147,82262,39714,99969,29037,8764,31837,9154,96045,12263,67368,59258,10962,70092,46223,126,44067,54277,44336,50895,41778,98143,83808,93832,53913,70636,27356,14242,36711,21223,19114,1936,93828,46360,75498,88886,74883,64339,44443,26553,72681,53576,81314,36061,73179,17275,73327,44532,267,27625,13899,12345,28182,36762,90973,9409,37652,85049,63328,44913,49250,56693,61383,51504,85950,52985,69997,17025,67703,19662,5986,74686,66140,8595,42709,30651,22044,66149,68563,96633,9375,79359,35318,92542,60653,73189,41121,76674,42258,29298,96718,33117,31063,5384,95560,47130,96002,87630,45017,93210,30560,48291,19373,35899,15842,63219,30715,80302,63358,37137,90377,61880,30685,63869,6944,73868,29854,41739,32369,92233,71281,250,31432,20764,33787,29086,7134,24199,96691,38788,60618,5235,61274,15378,76556,89558,36968,7164,57459,59588,22231,62605,93939,53589,18523,66397,66385,49807,12520,47543,35917,5698,48661,16316,55403,73164,4227,52288,67222,67428,76857,25406,42740,78498,52857,76892,36500,70921,43549,32313,15309,26999,47348,66528,35175,96710,32262,83905,2175,43554,54582,33838,18965,35035,12472,33295,83084,72383,16124,40683,72934,58131,80263,12963,86044,60214,16127,1879,18480,96611,24014,90506,69700,93248,98822,72437,43193,82937,93919,96075,16016,88186,51725,6765,12222,25285,64281,96016,91681,33257,40527,45243,13346,47182,79222,96474,60804,74726,86894,64990,85382,47556,3521,72423,84093,68167,29958,71424,47359,64496,60794,3578,21334,68442,18242,18526,58531,12490,78237,65172,83652,27847,60812,38894,82532,85591,61052,5273,7093,973,53627,34020,28226,34172,26214,83172,56450,74131,22650,12117,5934,51414,65575,74888,10631,18609,14521,91590,80585,98591,79693,75324,20503,26502,36871,12636,76883,2639,58154,10445,80356,43855,51467,84549,15154,40768,40162,4762,85165,33232,81974,82958,16739,4060,19336,60237,64194,61703,14650,90585,48679,87345,43287,9106,69084,69688,1827,43354,71385,33400,12178,85063,19526,88678,16379,4618,67177,42319,6431,46876,59290,93867,33648,84460,66497,81816,87162,45122,47309,80789,25759,34413,80692,5435,725,61614,92945,32782,70977,65167,93094,40248,38077,83453,15270,12465,68770,47630,39846,37094,48860,56851,21655,11176,59259,14477,37367,70076,93041,1733,9160,79587,90583,71128,93167,37850,42485,1529,4149,26471,60996,57251,43219,73117,89004,91218,56080,71342,80893,34284,47833,42583,67013,32457,14392,70403,50969,46781,80974,55063,20208,5511,27465,16809,71845,37811,24841,20997,50596,66602,12335,12291,22600,64192,6892,6702,69460,656,63675,35596,91522,13741,33429,46185,5407,6137,86479,43811,57191,82039,78274,21795,87794,38784,1649,27793,70148,88818,9732,41829,728,3606,50208,81563,99637,73562,23742,71530,30172,14571,2649,89956,54313,34803,29248,8534,6312,61679,14381,42350,95561,28709,5223,16801,89867,16220,38602,36601,77232,71050,39490,64610,65307,11287,93136,70791,42563,67987,65146,98954,12830,51316,59994,14325,61002,95462,91611,49989,16159,66767,99942,24503,44262,60742,65608,96198,44031,60248,43805,53039,87327,73537,82987,53355,69462,68367,33211,80185,89642,82999,39309,25139,80369,6310,66895,79549,9428,42302,60284,39523,54998,11815,58124,3402,51097,98159,51038,73846,49199,97462,65822,20693,97733,81495,48533,87995,35224,41315,87761,5751,5165,63994,12008,48488,98507,461,28202,36517,65516,49651,40868,66124,59297,70756,45528,74067,84371,67513,95345,2469,3231,40189,33109,2747,63865,37926,44327,84883,2229,50128,43079,46,53285,21238,91173,5985,77205,4498,59903,98187,61422,53451,11747,12353,77570,20674,25614,2916,54321,9442,58584,62819,35683,3408,73648,28910,29794,57382,98334,58207,64177,93714,2906,78330,29680,60914,60045,47587,79691,85452,98946,5987,81858,7958,16678,71908,55480,91240,42476,71025,29859,85943,54849,61341,87575,83646,3376,43394,69039,70252,9383,76440,2478,88787,25612,86165,53555,19772,48273,64647,43936,84701,32667,97491,8277,21888,76735,80061,1537,3931,73579,81012,54398,12362,52599,77150,64662,68959,94550,40627,15467,34776,75216,14671,41180,89162,82355,8430,98452,74869,18535,52531,76038,59794,37654,91054,98630,51920,68305,59366,15431,8256,74457,36323,28594,93245,56199,1263,65271,22597,50250,14246,58578,80847,96585,62584,13869,61981,66411,73872,64112,37713,61234,34137,64948,18562,52771,9042,12536,57434,21580,7392,6116,69903,35923,1195,78582,47963,30495,29685,9287,58730,1356,76756,61446,99094,36456,26688,65305,84576,90479,68987,11041,28305,83334,53731,43500,94385,67717,7961,83036,33685,87713,92963,54895,18138,17539,82540,34093,55242,71941,2333,22482,62368,76357,68710,44266,63192,44517,27023,87353,60894,93062,91456,96485,96163,93169,21084,14815,95742,9262,99160,89535,261,33203,60354,16774,43032,80020,72315,82376,67510,21709,16055,27228,56938,8065,79384,83603,21890,84475,22697,86608,85545,89305,46666,58196,12692,38888,86132,94996,63051,61343,72769,48725,8951,73470,57482,49995,89028,75569,42944,35938,95971,93962,99212,93787,6094,98553,97730,1884,91542,7737,18729,27756,27468,6546,29848,30117,7152,91356,44206,27251,78946,96789,36856,60396,84411,11000,21337,88071,20610,88632,42547,69294,30648,59264,47142,2494,38014,76837,72903,3292,36763,89611,67334,94953,8186,27509,59112,40026,36735,90963,21185,85495,33634,77017,59927,74483,92669,84266,20735,1746,71945,42182,57929,69293,78612,89770,3394,19664,36418,29144,10253,29111,21468,65048,18769,57114,9064,12097,14060,41711,50580,54666,6678,34678,21602,65090,84140,83083,26802,32299,70013,12054,22264,55924,62986,34150,89420,8407,39812,13905,48173,10318,56020,5993,3220,29586,78793,29631,5231,93362,97859,99254,70206,43669,96019,53535,40323,85967,92174,6628,35058,85423,45928,56338,86182,13814,67705,3076,2635,37703,26419,10127,17888,52097,16589,21953,73522,70064,83551,18585,22040,44825,30292,52316,79696,98195,25261,97158,87982,50162,58982,9971,47840,50116,48480,74330,48797,26702,3097,28236,49375,19926,96813,45164,54612,49051,77923,84849,11936,71608,78359,21188,30864,1497,89189,18462,12854,27138,70112,7745,19543,88736,2138,69123,16285,27070,28972,6162,36688,20677,57058,49131,51260,85187,4154,50043,21883,72727,53819,36459,73234,52114,99248,1390,91150,44198,54744,51241,33096,20064,22709,22753,83469,11103,47173,17422,97330,43030,97927,88015,69216,51262,38061,17011,40987,40306,48322,57381,17832,76475,43359,16148,80461,89908,84935,75947,72034,96147,72385,79185,92804,63556,99657,3539,97266,74848,50326,90334,54897,18036,38453,42746,42807,21678,21976,826,64959,18875,7396,73068,17751,5770,65573,19863,59103,51562,38979,76200,18882,90330,49747,58847,65798,45584,30340,52780,48917,90959,94409,26572,49964,55915,57423,85333,63145,57657,42245,79609,5995,41953,14093,68039,79847,45745,28271,69868,19844,87108,48049,46495,81810,53960,75487,22125,98075,80771,63596,16697,95024,6670,65574,47917,66676,19357,92812,97941,20597,56507,95263,52641,55150,65047,40486,67940,75333,84706,50989,59879,29478,14318,30181,64836,46879,94768,72812,95552,25763,86456,74642,11393,42579,40974,81803,44864,63982,36834,33789,54081,37888,67353,25799,28051,70910,15227,88898,87690,38422,7219,22561,38408,18204,53138,78020,80081,41704,72058,82981,4524,14149,28952,66136,16292,77095,14632,12486,85702,82884,72700,52031,80441,63247,24345,87431,3992,10799,14133,98232,45455,64544,28702,76554,7897,18273,75765,4327,93553,92794,50419,81665,36587,61743,99436,46222,35313,4533,39673,46403,56539,30619,28757,84294,94547,82910,38571,70284,51758,80347,43881,82048,72766,26318,87547,52674,29264,56318,66897,76824,93442,31116,85666,38640,58197,16102,75085,43636,47988,36664,39252,96174,12235,89290,32084,79725,94212,95885,42626,47893,27402,69948,34206,76403,26199,15698,24526,35187,68706,7891,44580,14835,28347,55992,16405,85865,98996,71924,61948,6193,5759,3296,1684,16095,2812,37398,39692,4469,31276,79440,52389,58900,26414,91796,22366,67361,18128,93798,57097,70024,7169,51767,86218,55390,3017,93643,31656,36584,2529,64080,63033,1703,98001,17598,48380,93979,64469,22503,16612,37805,35599,88399,63243,942,27499,8986,20608,67381,31626,57415,3233,44492,57915,87632,85780,70612,70485,72439,32590,44399,28521,19303,73291,25220,32851,83581,21364,56580,67991,69416,13743,8826,40819,31287,22213,29877,36658,30398,13005,55978,29083,6905,82903,42732,42613,46565,50244,39069,21338,4575,4946,83249,70270,29683,8646,55633,32482,44158,67573,29052,51724,87872,4370,28433,36549,10540,79857,4841,83651,81357,26859,10873,13217,48606,99633,97170,4537,44768,27304,21454,53638,21138,84166,63086,8667,69278,25957,51015,65099,50252,69922,22741,48862,47675,99613,58965,28115,34165,8482,98868,16906,65938,23701,2676,14582,76693,29890,50552,93983,81370,88804,46343,34348,22832,10337,46662,56621,69669,84191,75756,23260,16676,1984,97344,95718,4746,2127,66917,24126,66076,92120,24036,33819,77845,71006,33894,13875,31102,24581,98423,79801,80695,6875,66270,16325,34886,61010,33430,91919,306,41293,55314,92288,35956,31175,70336,54191,36103,18549,63808,77950,41116,22985,55943,56109,84147,4761,15021,26320,91304,10460,26305,23247,19037,39271,92211,22550,47820,14880,13278,23720,54560,8231,23229,4787,70938,61963,37939,81025,17486,26412,57848,38246,2173,45670,12942,90922,17748,7521,52453,17088,29200,68156,80254,94656,80593,85376,21007,82118,58570,39398,93825,41241,35098,5333,51306,72978,60720,3564,32709,30101,30063,79827,60228,81164,58986,44228,16910,48052,97914,93259,41916,11027,86247,20088,92264,95360,70546,92119,685,71865,93336,31868,52742,31793,16051,93933,7044,79143,48260,62314,68238,92517,71053,28112,80189,49232,88900,47052,54284,75707,28385,30031,45131,19311,47330,52225,43850,78931,28003,20289,51917,94006,45656,63738,44184,10224,3798,90512,79313,2286,68159,55838,12777,98061,13841,39894,53056,83160,43491,83131,58802,3224,60255,84522,58082,95131,87020,10812,516,39662,21220,38134,85254,95863,89622,58493,49809,39948,66713,97979,75309,43148,27007,79279,45130,17949,61974,83759,12573,78623,79943,31527,45276,63405,50983,31012,83903,67549,530,91901,67110,5726,38034,91145,28689,26455,70392,77227,87287,45098,45386,30493,20798,19176,81278,70475,63029,4706,77652,18284,61689,40725,38070,25821,16963,8190,36630,85241,26744,24479,85244,98815,41129,44099,68312,599,78453,6619,83913,40409,83612,12289,4216,10595,99898,59148,26121,84049,60532,78832,52063,84977,58482,1904,62003,76800,28473,30399,61769,94250,57758,88894,51090,9873,48176,7450,48844,64664,14297,75076,52198,67663,54834,39400,63003,89694,57476,60923,40211,77048,51942,49782,2720,76676,96670,19041,72909,63308,82186,69685,80384,23858,4413,49615,54815,32251,83089,60913,31097,4863,67423,51796,29671,81223,14816,67466,82277,8756,2400,4020,59272,89120,27214,77014,85500,20531,81288,33710,19800,51027,53991,80887,20938,35564,96357,14373,49928,18394,70881,7385,52247,50731,31045,38923,15838,15285,99965,586,28624,31733,46032,98855,50082,28361,68046,11917,48841,66427,73657,60422,3935,62400,27242,40839,56695,5563,58737,18434,85033,83722,96347,86722,8045,94242,97013,3342,85381,80166,84655,26941,81182,6759,29488,91947,83420,20056,74129,4399,25160,5471,62044,14715,8949,69551,15282,44731,93394,64147,81351,90711,15078,94791,13596,66010,77626,50092,27735,75962,67280,87791,81115,26333,93508,8432,67279,1954,57458,91216,2014,89168,58000,55929,45817,58721,78217,3059,86190,90017,22102,19064,54459,94655,73455,58175,55327,88998,19706,8319,98109,2783,10149,96239,94103,67124,62833,72156,33726,7074,76613,13794,67223,86604,57257,19206,6536,96526,98066,43788,82947,67416,75281,28374,77145,27125,86967,92136,64719,19427,94176,21047,26144,20321,47102,58568,65148,11625,73837,88294,48132,73518,9372,41927,4601,15720,96069,36572,89553,8279,42573,19647,97888,42365,35073,31294,96185,12746,2153,15295,67514,83634,4679,78784,48125,34551,83211,61855,40797,22147,71512,59242,48962,48904,6699,90880,34405,37781,44299,70955,18377,33840,97289,28938,10515,77929,64840,72152,4346,149,28837,64751,86089,80506,40896,26847,23838,22207,89685,60543,8960,80729,80082,88035,46909,41492,24197,74468,84619,40218,32372,3412,6806,66621,44278,57332,79903,53834,67545,77436,1821,27586,31647,4397,41435,50656,14101,67575,94749,14021,96158,95576,5976,55003,43218,81137,39087,95927,7151,8171,42410,54839,8356,46818,96301,62002,23909,75253,25427,12090,40560,5342,853,4028,43508,48225,1664,81722,85797,8015,39388,12412,17478,55071,87471,32346,36644,24513,68718,93579,81152,89856,63016,92068,98866,37159,58350,71658,54684,52979,36132,23359,90718,59073,11087,8685,78025,41175,81326,64953,76473,58785,50320,96190,98614,74753,41248,99497,30774,66353,73684,9723,40911,11117,47242,45366,5888,34716,66597,88260,37206,64388,60988,88155,72023,57108,55336,1993,17464,70484,30770,39511,15948,2407,71968,35996,11373,72441,97993,12123,4602,34640,23537,58034,60272,951,15524,18281,23498,40809,67931,69682,86081,11053,50533,20634,56976,68624,7825,60066,21413,87377,83601,93732,29776,75870,63781,19829,44303,27397,30496,45515,86754,70757,29828,21521,29807,72721,32902,50862,66089,1196,34849,53872,83672,64352,64172,43859,74161,2007,55651,5478,21887,89439,3286,99216,18803,52984,98524,20205,43152,64920,47621,95332,38171,57777,74293,31232,12085,22438,26124,87621,62183,95168,90057,46431,74052,25712,29602,50625,63307,90817,58923,85991,3329,573,89339,71753,80170,33134,22816,56106,46691,29441,74174,86638,81666,11744,93905,33330,34642,76423,87916,62956,79356,9112,80039,12860,66234,15402,87876,77833,25571,71601,14747,86207,96052,91093,60779,6674,10544,63661,92864,46743,33854,65329,23887,49087,31529,70410,22210,13147,50530,11093,43213,19166,75803,35567,46429,65953,54207,34035,40017,54451,83911,9697,22444,19377,3725,90228,10353,27022,46617,96935,60886,29062,19330,44390,17162,7659,73850,31734,34848,93654,63553,89031,40778,69193,18847,63457,49601,15067,52542,32916,27414,15764,77792,5039,42496,14139,43210,93502,45194,14107,2489,48406,36168,86119,69533,46203,42202,7206,25092,94324,62859,1504,79084,9903,45923,37788,72618,13418,41460,87903,51487,10330,1895,97440,72559,49935,77682,77825,88500,24324,88185,39751,63931,44987,59432,20586,63793,47791,79807,75512,99981,33486,6467,76835,76599,27826,16983,37341,56072,16802,21963,94418,97355,88059,54291,36975,98898,22457,69402,56798,76562,427,26644,10949,74857,47539,74007,24583,12341,67644,57100,58362,66257,26787,53080,78332,1873,93840,80911,68735,48545,31328,81897,91493,83988,83586,73019,74675,46002,92832,91780,44037,52327,4280,96734,21639,9646,7406,42107,75547,72970,41730,45406,92591,63390,88507,38954,53643,53476,19231,46219,41078,90983,86322,7604,10394,2443,49631,95257,8773,75959,39030,57061,18154,67262,93966,82638,34880,84236,22811,65872,81712,24361,97881,80553,96991,50786,94005,11797,35055,59856,41438,44771,18944,25199,14264,61671,73530,78260,92354,5142,56770,72473,52400,7025,3824,64488,62885,97271,8244,79027,60897,10387,42329,96459,32943,11589,93001,11926,49446,15223,6785,91180,44039,93775,18187,12922,42227,42474,63191,80214,24341,92273,44069,12246,99630,94044,39263,24145,13999,77558,40990,4728,59022,35971,88101,98087,53390,81640,71324,18764,38405,12717,56044,456,96206,47762,22546,65775,26218,24752,8965,11526,29682,87527,45182,19017,58517,22567,59863,66395,2345,45354,72072,51270,95821,1041,28096,15531,65300,48560,6369,2987,46107,10955,61854,65409,79350,13810,34692,45489,61136,8301,27623,90364,39406,26864,84850,81508,18950,22588,28134,33490,27415,70868,28527,36002,4672,30936,8795,18431,24094,22842,12728,55998,44419,73634,83360,96638,16722,72252,76168,68976,12307,64829,37228,22669,5966,99819,14708,15576,42418,84728,24917,8675,91080,88244,7925,67341,28808,8557,18943,47377,89351,24686,470,40997,15655,47431,43753,65559,51400,28199,79978,65022,44893,84306,42176,32980,5686,84994,27074,41946,12142,6301,89432,1449,2614,4232,60631,34390,51104,80475,64178,68641,88219,13721,96767,51852,42716,72371,31532,47328,17395,414,95444,53648,33349,73021,42436,18111,42224,53701,87358,55576,44909,9765,3268,69607,23286,79976,81060,76582,69504,15981,86463,39181,17866,86763,35118,849,1080,44195,1782,40894,4710,93436,72031,6078,26813,89478,20127,46937,73886,4473,89303,10802,48933,59448,9773,1667,9229,98939,5374,73891,27502,67877,64876,55262,43905,39853,23735,3204,67507,36098,5446,68469,81011,88865,39047,50337,15821,51614,43387,21685,36274,94431,30894,63340,32738,97004,40954,76487,25713,93274,44522,89902,2780,16683,92528,25800,69090,10571,34402,55621,44678,81879,14414,10534,96891,31455,83395,7346,40953,17194,44921,82475,84940,45805,91509,96222,66006,3447,45206,46700,83832,71910,68255,91294,77620,1093,85089,42510,92265,41054,56866,31046,43980,12184,3684,57274,18105,13079,42848,28117,60184,74456,18317,19578,99636,95734,70003,35563,23293,80575,3069,96152,95638,21926,62928,19620,21601,38454,21394,97022,61645,28312,58174,75879,71232,37034,64230,22540,96241,85810,99527,10703,44895,60723,36908,44903,52473,54967,25217,51158,8359,36492,6106,96795,16604,49458,49341,19123,55467,43144,14915,41176,15276,10736,69710,45436,26751,51429,24496,9528,93695,28867,1250,67634,37855,87220,58179,47765,70551,98557,35005,84348,92343,27731,1758,84561,38849,66125,59950,83003,351,54866,17341,13971,95847,14979,71486,21647,33853,55551,67204,92538,53325,24236,31476,62295,64713,18243,24070,90713,73962,34668,80551,75812,40885,17291,62698,74777,45892,65924,82951,46285,60097,94581,41395,2866,80060,80355,18518,90398,5391,29673,83442,89807,20058,62310,18476,60614,68504,64760,20348,55304,16085,46727,7213,39567,76050,66576,20633,30807,43609,63467,89091,51899,25378,13236,21961,18391,74443,60169,24200,25046,79021,21874,82818,95565,89700,15407,13503,94075,67024,61680,43750,25556,96739,17815,1459,25943,89333,89284,68008,34915,49225,49370,51723,26652,35529,81277,72144,12570,68342,28558,92134,51599,66549,57750,80770,5037,29532,26316,24420,48172,40071,42961,81020,53806,44677,50322,58442,57835,3851,61187,53973,43297,38449,56999,36803,62127,67495,35410,19182,41477,26718,55444,88723,56370,48404,4138,45121,4045,15911,43975,89754,55391,72658,69195,79545,4732,99103,80736,95846,88800,42535,36788,31583,16307,17978,18038,72190,90136,77831,47516,97109,78774,27131,81853,23733,36087,93661,88442,34178,6706,96076,89111,64009,56043,11699,69431,35839,59732,90412,14855,98112,65567,61227,34249,17058,80516,91512,47307,62060,49897,58472,98676,93578,93084,23292,48892,20975,44978,56509,17288,70748,47965,86097,93665,89613,6184,85997,6648,97566,81710,57443,55318,87879,3272,70467,36914,45445,51878,82898,37104,56742,2062,72173,90950,55919,31836,15882,6755,90783,2499,79619,81976,86157,68560,62953,11166,43935,6147,58765,16989,99298,86625,82649,3436,18631,64568,63843,44898,44689,55839,24950,80916,84717,61905,39131,39681,15192,31217,45966,42681,51406,81952,39016,48891,67593,83431,16343,86954,70922,45691,88671,28652,64218,24771,39616,69754,76240,96733,6181,63604,65925,47787,63705,19784,43273,15512,94618,80362,59591,33775,62726,41631,18220,60590,97397,56191,65350,43288,29704,77537,10194,17379,36745,65983,66300,38983,50820,76804,68359,91238,50792,83076,93139,12364,72254,39015,90995,89264,39365,81907,16303,10157,13030,70430,16527,97691,36977,38807,17311,27596,90793,29261,904,58129,31062,47340,19090,91190,40524,53894,64355,77483,52199,62017,43807,61907,39476,91926,90876,72738,48501,39783,55596,80517,18200,33600,85734,79851,98844,83082,88349,56024,86508,13654,66503,45519,27578,31987,30112,97441,47736,97845,33639,94828,97267,38229,88045,62340,49883,38075,78136,93003,43799,28244,23902,72637,32535,98684,80318,57408,97856,19603,10616,10881,97986,46408,2399,77781,63640,98831,9801,60365,72539,93864,1203,10863,37771,99215,77457,16439,70009,34574,25944,11656,96208,22900,70337,94422,68253,96867,94486,46046,42909,11455,4755,24212,68104,77449,58088,51195,61210,49923,56498,86936,88765,98875,47083,10888,82954,46492,17899,541,5121,64357,21630,16104,70104,23876,4527,62755,17354,11557,24306,77854,13224,69863,30761,44711,29888,6901,33404,26529,89734,79792,65976,45031,40795,12006,3445,65486,6818,76133,47268,59106,60161,32798,24393,52842,74125,16867,82011,90478,72890,56200,14061,50022,33495,40680,85277,80741,79983,61170,36518,73732,37583,40874,88094,88440,63728,92633,96787,36068,32293,6683,66199,77731,17378,72742,8903,75998,35211,29177,92453,32118,49151,93671,598,22651,10877,75571,32691,32737,78648,18180,71343,55627,60157,2809,38045,48412,37066,33510,35069,55184,86502,8211,89893,32609,41102,34292,31661,3829,5313,77421,73425,52578,35782,90548,62380,29474,73192,63893,72518,91164,78780,68188,18536,65422,95642,24796,87082,64433,86756,5025,86550,96538,26624,43646,37963,52907,83874,7530,53465,24710,48199,53678,82732,42589,93755,6653,59023,26267,90436,61648,9991,94234,38205,54518,66460,46109,96541,99650,23634,2958,8416,54361,41383,73020,10251,91651,51910,93389,77497,77823,24634,63920,63013,72729,94174,57372,71735,31860,94356,18081,28064,68963,99110,39734,6979,77676,49598,56561,58887,77594,51652,93538,334,79988,10198,93390,2285,57109,47150,39553,55121,11210,17700,59896,85287,42394,76158,28746,94293,87334,91029,10453,78202,33399,56578,56627,51073,9652,87221,72117,93282,30847,39179,36032,94708,57419,97585,53144,67615,67489,6687,26900,13853,47798,29414,23645,51561,99020,50611,34906,85435,43308,78731,10899,77812,53264,16076,64476,78799,62492,56189,51857,57021,9604,71993,61006,36553,72845,35543,56708,25536,33694,64262,96514,89392,78578,49795,91199,80718,82967,75299,61989,2658,78152,87948,87278,18199,96637,57523,6625,1502,5312,60417,42744,55450,32688,68665,87254,22024,27239,13471,80758,66031,69179,26366,86223,52315,61631,59938,24523,53804,10380,29415,75326,73718,97351,43418,86381,75205,91377,87589,69441,81028,43977,17180,63742,42238,70699,3193,49209,19103,13962,22062,36964,36046,79917,31203,89485,23670,96432,89174,25353,10103,97753,24273,73242,34766,50870,73284,989,23375,2395,91821,85731,95706,53383,14619,73752,32059,808,96388,9400,86465,33774,19415,15624,82006,19773,44627,62297,24006,49440,58775,13639,62334,78948,1218,95311,83458,87245,36291,76169,38701,60848,98047,87920,77444,15594,94018,3861,10424,95610,88280,70525,86649,50527,17289,70675,52624,73683,69466,36529,63848,79472,43872,83846,38627,9794,56855,68808,68434,68429,31901,58921,49976,74338,73513,94247,41812,95124,54606,72036,2760,40083,44244,76980,20385,43659,28857,57503,66329,73171,33417,43909,82191,89106,67535,69191,1138,3840,59239,28220,34049,42584,84708,37236,30388,38911,305,36454,2634,77976,68408,81104,94,11334,96249,28283,29951,86459,36781,7691,80581,50946,47826,58830,9250,62184,85540,93015,51086,22791,97371,84005,14799,54176,23046,41341,33519,36013,63971,83204,49562,55453,76019,69134,95941,80292,37087,15354,33528,52035,78630,67175,39983,79284,8882,9879,48280,4104,96118,46469,93254,10389,72350,94549,26399,93550,81419,72747,14939,18446,96513,82848,24135,23236,56511,90657,88110,81619,6307,26585,544,63172,11613,68319,13802,98541,50289,12526,34376,87186,29849,53457,48108,27201,54906,89570,3813,57314,59002,54400,14640,35764,84622,12736,65218,1352,13489,36902,64890,94742,92260,95465,87740,16183,97145,92784,39649,40649,47991,13135,58699,94740,39921,72260,1869,69275,13070,42142,29277,45919,13803,18010,66381,27240,41274,53442,78803,43702,13907,47719,2416,60092,13885,63909,35076,71614,65479,50992,70753,11383,50994,10014,69511,28362,72543,61420,64236,58371,67082,34218,79374,61937,85772,31768,14929,27416,59731,88651,72942,49371,55251,98287,54943,46667,39006,65525,37240,50548,96371,95288,64810,39908,2625,27605,51376,87184,64442,13698,62903,93559,41283,40154,36489,4090,3780,61967,20487,38684,42824,23227,79431,24083,21222,13551,44632,68895,28308,14079,62267,8911,11472,8704,19515,35515,42986,61206,19137,43517,20063,19350,40155,51946,5516,35565,86150,92736,43590,38795,45569,37014,23367,47514,3057,24154,64183,69213,78352,4557,97657,95007,46341,62032,88503,79607,73025,88881,12261,17976,50841,42755,31445,19598,5220,73495,48655,45378,50338,98719,42211,62899,70671,28124,71153,83502,79500,84154,50040,24987,95655,64314,57133,30677,78268,21978,22477,95887,86612,93609,34655,72753,20192,88696,49649,18793,7573,44635,21564,29883,70774,38770,37312,69492,86562,13499,88963,68208,47872,36758,97909,79832,20060,26811,40451,47062,23038,15105,40304,15286,39666,33735,74899,91654,62794,81575,90730,97274,12494,37900,17356,18033,92379,22908,92487,11273,85682,49334,2553,18045,80605,88128,78364,91345,53352,64105,56960,33187,1596,68889,19402,75695,77506,96569,16142,39634,84296,14899,78619,49803,63530,76910,34885,83909,74432,49955,56717,37083,86949,34214,63768,13927,46122,53237,28280,57407,94273,37984,68968,74201,76141,10255,52953,86432,81422,78787,12337,2348,98659,62911,33272,53478,83178,32107,22027,91264,4691,86167,92389,58365,44437,9751,12223,9362,44693,55487,50971,44692,66963,96186,78859,77760,26276,66529,26346,76878,69133,79074,83270,23289,8774,5432,39978,35510,55295,92002,62059,95422,8054,32842,8964,78966,8696,26450,32006,67790,5397,34904,34969,86364,23910,6096,8907,60890,80952,70818,56383,22971,56412,64096,71377,99025,89680,91482,27024,9513,46612,76545,28887,19822,40487,59917,74826,92742,12003,25458,38498,67768,67969,33230,3234,47805,13219,82754,22323,65049,45791,39334,80001,95328,24876,16803,61459,66011,55392,10997,70135,86716,33015,25818,96825,62720,39371,78176,60432,43127,25997,28177,92102,14336,25703,7059,52784,65933,97674,18437,28794,66696,53526,10482,79592,45563,97777,86530,45402,5161,55072,63586,34791,44063,63378,3910,16112,29061,4760,32656,24828,1409,83509,76499,81161,76235,27618,18539,15796,27680,18730,63587,62879,47494,6275,29085,169,36779,61575,20103,95998,29437,30267,6519,46649,14009,29405,42062,708,36216,81522,22580,14235,21650,53233,10912,98272,28734,88170,56997,73403,13259,5067,47285,36941,50207,76564,81036,90078,50834,11137,77066,47815,61528,84528,18306,36185,35406,13373,32171,9946,38758,56148,819,63203,45136,96177,91952,23503,45389,29289,72329,11444,71933,26492,97699,31639,59180,98588,37097,96945,84531,60608,49892,75607,65225,46702,14159,13406,37013,51166,61500,26067,24754,2815,77580,90133,13216,42218,82342,91932,76027,98919,29773,74862,61543,26927,14202,85299,63110,97588,20428,25620,30035,81623,21213,27707,11596,17817,65642,97506,50047,71985,10085,32816,66499,36655,59237,88114,19710,41660,82141,42001,40293,66697,96037,18331,7564,3531,69876,63856,14758,40622,3049,99428,83471,43090,52143,92091,1347,50181,97108,95695,59233,54854,33833,44406,48866,81156,52012,39867,31758,61393,63550,79075,34628,65846,27436,37977,35374,17390,62332,32743,29942,77015,37498,49263,74153,72943,78296,54733,89036,68741,42320,92567,86085,44983,29619,7771,21012,28201,79290,28368,22271,68173,20902,11064,88822,49894,44379,91854,16816,24501,54752,75966,53696,16924,65033,62020,23418,6295,40800,91015,42283,14813,85708,4539,51884,36609,38280,12986,61281,26564,57938,39749,28510,47372,43678,24940,98010,17475,45238,3624,92340,75013,94373,41264,21858,7359,62741,50067,68098,27881,34840,97988,89510,24957,14822,46571,35667,57010,60616,32236,57612,8935,13553,22248,58360,60319,38196,31382,53654,68716,57545,86074,3937,89146,62727,16942,44668,68809,10189,73449,79910,89729,69985,60585,97079,13262,80095,74284,23881,72151,29684,67233,22247,38060,83683,34506,1158,68306,78488,80558,45320,22173,2421,70113,63497,17565,55837,50657,38748,55361,2911,7453,9560,32196,43346,12017,82844,47040,42288,19792,77534,20596,41871,92590,60732,81864,4203,18830,20638,8735,60729,12027,66483,23428,65035,45945,37422,3501,4769,60091,41729,6982,54971,37566,26557,42822,63322,71469,50049,99270,16793,5658,65987,72233,48072,38410,64950,32123,51864,26694,80363,91087,32931,405,97852,85087,60936,7842,19484,96553,23780,28681,697,45009,75995,78302,66108,50753,67396,57402,35831,75461,66146,16519,30882,60581,98105,98295,24337,62111,33531,97454,81382,61492,63645,40938,57717,57344,74510,83069,10852,69338,72889,28790,83552,96110,11175,12744,77391,4597,30606,13709,81560,46083,21769,55905,18685,35205,73167,36934,91373,4956,72215,23200,40408,12596,17611,75162,22794,48616,39465,1764,87962,7843,17819,89904,97225,54334,51165,18166,47031,76868,85881,25855,83848,7616,88092,41715,82552,54446,6290,86467,68704,6050,28814,69013,57249,39350,8657,32190,44233,49667,29553,80197,47208,81705,9360,97166,42970,48894,39377,90771,63635,81155,13602,92936,10162,76772,7781,13161,29646,80236,42739,43766,4850,90579,78565,59511,82879,52538,69935,89666,30076,58786,64190,85968,64123,69581,78395,46037,93523,92291,35743,28711,83025,74372,26091,59307,97014,15802,63579,51263,90882,28195,86783,40174,38666,68956,81096,87189,56817,94144,19764,66879,1562,64899,98679,43732,68348,7783,90338,90288,88067,80299,59079,32463,79426,68352,19738,86830,99403,32409,34324,91580,31629,30931,93707,96780,70175,30280,8178,33608,22543,36570,31541,98852,10374,34566,70879,82766,43118,83795,10530,57086,74545,84010,57123,36535,57483,83244,31595,44732,67331,94420,59042,79830,69344,87645,35486,4628,26713,35470,25187,18092,17148,26544,92,85975,11846,51805,5582,20814,1379,75188,28630,95813,73946,72403,42640,34729,48644,6958,93688,84998,92636,98925,45421,25664,41156,88679,1332,7160,82701,97174,36832,1826,32606,34467,77033,22199,73447,1224,4058,28565,98956,96509,27778,12544,52610,71002,90241,16591,53624,42143,44335,4690,68468,55918,84938,35078,40305,84146,81912,52606,98947,80078,90486,24444,29477,50851,71064,17593,45443,77661,8081,90461,59953,41807,75810,21147,8059,43620,49580,93276,46416,49398,87259,26681,24675,95390,48553,95362,132,99276,52110,96831,36643,92815,96688,30562,6994,5252,92445,52867,79858,34931,91209,72259,74046,24242,42050,2820,46409,62323,80664,50304,37032,7553,3310,27002,31312,84733,49902,5028,27080,37062,33876,45623,81262,88056,66112,70117,89958,6724,62936,86192,55124,94884,61955,40806,76739,17173,31933,62257,7761,68954,34219,38202,93112,66441,42876,80532,91283,5695,4210,83676,53949,34031,42787,20515,12780,44616,4932,60331,93159,38555,86393,12714,76204,84099,48477,81527,18977,52783,10546,81799,55753,84731,87743,56337,90096,47443,80406,97434,87530,3147,82333,77282,22384,15084,33570,56092,29049,30442,85502,94414,11123,57110,46758,80643,23439,49721,25373,76506,7631,3133,64027,81395,95318,92408,45275,17466,50503,84180,83342,82584,74629,69111,62653,27887,411,35404,693,98766,37519,68472,83402,17983,70445,99756,18444,32722,80948,60710,71013,61994,18867,68561,70192,45521,92565,40448,29552,5382,99102,1958,29852,24340,70846,29530,97574,79139,16727,8001,22996,45012,97803,63708,94020,72554,67731,91397,1405,28608,34963,75464,86103,3449,15027,73212,28273,62560,709,24057,26945,59005,91545,15659,14901,88691,79159,50175,87584,51893,85751,59395,88583,32706,58852,25853,96540,21366,3113,90351,89025,95446,78251,91399,85225,1685,59955,72635,92778,31369,31666,16536,72245,43004,49988,16729,66128,43266,77568,21276,80706,51450,90752,58679,3207,12893,68822,94216,49381,68290,2306,17535,41919,27619,68089,2721,7969,22380,57827,91758,66313,39940,3300,91637,921,69517,76962,32845,65174,42674,54570,3397,34154,16342,28162,73046,63039,38184,80906,64542,88658,95962,53104,14462,49960,74766,89172,77650,9063,74737,23324,6033,73138,10072,91186,12915,99532,10938,39965,15501,34329,95351,79721,32954,13796,42680,13271,80865,17114,31389,56670,92450,99766,10832,54662,6437,37109,11681,3729,32291,79849,24694,20052,5098,13308,44842,17029,98306,83371,27332,51092,4375,43919,30892,81041,81920,47814,85986,10778,30350,77557,54919,91548,43475,11299,7316,57752,50053,9347,78776,46984,13375,66790,84745,47723,59250,49503,22710,89892,195,47518,48919,95133,25961,60007,14549,32145,33650,73209,41649,36757,91097,42291,42029,8967,17622,41227,71659,6957,2368,15880,8995,33675,40245,41143,80891,89569,12175,22851,84441,78266,153,72696,42636,81325,96117,78134,73004,52081,55460,77032,72495,96136,49169,15814,95736,25109,26375,54544,6262,94730,74655,56827,46752,56660,47751,54131,40570,86647,34222,33053,14448,36769,11023,98561,58888,42171,86418,64482,75359,60940,70147,12840,78601,24681,5018,42341,39954,8444,35065,72785,93108,37399,43797,4941,10559,98448,29622,51247,92034,17930,34975,64320,64019,37247,49136,93765,52307,74728,4286,55611,68676,77138,27400,45763,77829,8769,23501,6317,72255,8105,4085,67422,54799,72091,29066,43765,9254,94482,72278,29032,3120,67171,53162,91641,33997,62862,50523,89745,24679,80982,24246,40794,90339,54510,21891,84658,64654,47855,1183,26354,94610,96376,18149,87912,95005,91948,72319,37518,94849,5529,94778,15654,11149,82343,24025,40355,56120,11996,70596,13753,2089,1423,50089,29663,5398,25205,48702,74792,42055,91500,8843,58948,36244,69229,5376,17277,83337,78287,14885,33436,98116,36475,57828,78750,93747,11214,19259,32536,16390,64085,86169,45112,98497,1188,13882,92609,20149,90560,78698,81783,84090,65737,25599,25250,66707,22058,59271,74044,4947,3252,26578,24100,26679,41791,21231,26676,82084,50933,82156,90404,47949,68866,760,2788,45142,43890,51861,35341,13239,94077,75885,96423,46224,26411,87915,79763,53150,26775,87795,4128,34697,97285,52010,59797,21239,6601,59705,8370,48584,18041,4578,57246,53582,80106,6643,96615,85787,85363,18395,23715,7048,96934,78747,85019,79911,60690,14185,78158,49536,28200,16179,61996,53887,97934,28810,43185,32776,79702,9397,73222,22849,94156,93163,52134,52757,26406,37214,31361,77206,54442,96090,88850,22010,94290,69959,14940,69152,59238,10773,74846,86127,24935,82007,40510,75589,17020,85191,54032,15506,18280,98065,24718,11658,90064,9186,20768,18732,3868,14285,33421,68799,89800,75053,19191,23974,61813,39933,11336,19125,64537,86590,67001,25824,50362,13206,71019,37889,76405,84676,28479,41971,14028,5143,3229,33578,52347,5506,34836,75021,25002,41368,6801,73742,17676,60967,55441,89557,1549,97604,93387,46677,51250,32468,57112,93216,83860,4013,89184,45783,49629,38755,38843,2808,27950,60881,23291,98390,11225,20705,82184,75609,59144,31330,46003,98940,90072,5483,37001,19609,67620,55047,67176,61193,35025,60470,32072,55377,23783,10252,40791,57027,2313,59000,27498,96962,23246,16652,97382,84016,54515,52533,7011,32016,27352,24241,19432,59229,52348,46674,55654,29709,60961,33527,35221,82102,7901,80539,39817,95827,30390,99820,50952,76472,56889,24138,90233,21802,87930,25451,50125,70518,60744,40334,29110,54421,77450,28024,17312,53284,25445,7198,73650,43227,38020,45404,85449,26051,55219,78051,53546,75965,61725,46681,88325,52593,69030,67253,41484,39499,30449,59620,97103,82298,14436,11881,55646,90365,34228,92932,74081,94367,86231,71149,65372,3448,74339,56852,63978,93323,71956,23655,94712,77692,19008,5904,81649,53646,3525,61109,71665,22633,92422,54498,14692,57870,83493,35528,42295,27880,95141,6285,99579,47695,53780,30152,38489,83907,70787,80243,50913,77176,24787,37170,94189,76140,26874,2749,11956,7539,75644,47157,98871,35853,74634,75258,29300,46233,14433,40276,75285,64029,43937,31786,21155,24049,88350,25219,87835,64932,97542,12257,99757,44593,91041,16790,28596,31224,27669,73759,33143,62336,46034,54691,16671,14842,55984,42220,32762,18868,65900,74157,30616,17998,90290,6003,42165,92954,3678,22186,40397,40312,69010,68195,72629,40284,20006,87213,77360,39124,62386,75149,81106,15498,25299,84878,52567,16352,55852,43197,85799,88675,16218,46993,2001,40361,61381,66769,11793,52061,1643,59834,27909,21826,47579,11243,80518,96880,36899,41979,62678,16799,88638,12125,37706,78864,64999,18155,4864,95592,69526,61550,10070,22826,26261,70819,97483,3154,45707,92981,82083,12640,54001,71931,36203,21756,78936,8094,91446,89759,90468,49462,89672,43257,19922,51762,43216,79783,47490,2618,70905,16838,87730,92465,89847,88409,45306,91205,70277,42216,36971,48515,20129,13046,95836,77493,3989,96207,59699,48819,10060,17972,502,82381,24493,64037,86870,44571,46608,88162,60063,15885,81441,5657,39494,30811,14639,2496,5134,49017,54340,8833,66941,89181,27048,78653,54287,69172,20722,34524,84369,88591,21179,27173,21859,19363,31512,60524,2492,16271,7295,1573,27641,3570,66531,98226,28971,57666,36696,24038,95764,69603,27572,72585,85171,48558,51252,30910,70272,85073,24215,87277,51714,98364,5423,33119,4144,84196,57626,13997,86908,78665,54212,62265,12475,55773,49625,93465,93741,38864,51938,22937,79414,54506,44036,86979,42586,43961,69942,16256,12038,38431,10274,71282,99556,43040,71673,22063,94167,59285,95997,77182,25395,35944,75970,95522,89733,4409,45184,45654,99441,31950,42606,81739,38959,62540,40376,95498,63234,64077,30757,97335,72933,44454,81721,69522,70721,80749,7181,83791,83081,74631,11685,29520,19119,72602,77240,80717,24775,27895,14981,59431,74719,48647,58620,82547,89737,8585,11527,15297,4855,78980,76571,96548,12301,55509,7185,32616,58817,49257,4722,79124,14375,63594,74326,68231,68945,61760,40291,44847,37660,8027,93374,17374,36704,39260,53492,70233,94872,40115,17037,92501,58085,73541,97869,81558,84897,25761,76606,13626,31244,27621,97903,58019,64082,18970,67550,48051,12009,86849,42544,56388,6918,15809,64124,75619,22342,52686,38930,27854,8087,39037,10683,82689,6039,74904,93862,62860,18645,6086,66547,79958,53007,78526,3373,33040,79519,93656,35074,56624,46305,13670,16587,76366,11588,52879,93334,89239,90799,83727,15657,66105,13538,47744,2054,46519,36319,35419,36672,41191,53321,79347,65879,85551,39626,99234,95786,2602,28726,46730,45350,53675,64438,30913,61245,10333,63827,77288,63977,49469,60951,95264,55126,56433,81128,94968,32575,82892,14903,59633,4022,18555,23855,99790,75944,24969,74654,7674,31365,6996,33064,83303,26192,40952,51646,26137,1269,73944,35009,14034,97617,8147,30410,35440,3415,80458,41228,83139,86632,61807,40302,72074,41120,43809,10391,52552,37185,46582,35428,16105,7126,65500,81197,15797,54528,54015,80544,59637,10943,83839,64854,11095,48939,80399,16217,47088,72307,65440,99410,81347,59173,58530,63632,564,5250,9405,24374,97449,46078,45144,14406,47853,74769,55411,36353,34704,92568,86993,72869,94199,15920,88875,13426,98133,66995,43025,75132,88405,45342,72828,83019,44525,78844,46515,24862,96707,57359,25805,17701,32663,47648,74785,55722,42993,73100,67795,34005,51459,90231,15735,78952,95443,74544,98278,49205,91861,10876,97511,23592,83125,54479,74500,70293,54354,91770,50028,54486,68375,58303,87478,9007,24749,62041,96041,13065,33902,83864,57956,67321,40678,79012,55140,30469,55108,25069,97686,96953,86519,78902,85879,13103,89423,83341,31133,86895,6710,66570,60683,31172,46135,10740,79164,72915,76266,24114,40637,58697,52034,81743,9986,5198,61638,23224,62600,55244,75771,16190,78301,25124,18023,45840,28951,71291,71898,7253,11960,65915,43738,86670,10641,15244,76285,630,5019,59892,11493,16839,87502,8602,11457,13036,92423,73555,61124,28733,71690,67789,47993,33270,3283,49948,97899,6206,18598,17062,22973,24635,34953,48966,28484,21286,78964,49968,77010,8468,52904,77805,18221,41742,93501,46927,12397,48680,49422,23410,57500,46395,63837,25671,71156,67088,86812,27835,66958,70419,67346,65207,59443,8489,7978,95435,56559,10379,32393,18380,36556,37286,72237,2968,24533,66496,4652,22807,60878,89526,80270,59189,5899,13509,45806,89967,20845,97291,57619,95977,83897,6587,17271,26872,70186,45347,85256,78594,86039,1475,79613,8118,43423,74513,92391,17779,67522,41272,2592,99569,57399,61458,64848,34572,57594,16169,29202,2962,1836,97061,29334,8621,85342,33813,17752,58996,1742,70616,38019,12339,96760,99700,52848,14378,9433,20723,47989,21196,47408,57464,89378,10012,59295,55399,69781,47854,86487,24558,33868,87655,77882,81487,28621,18472,36423,94086,75674,84867,75016,43012,11480,41162,59036,70468,29351,79676,68482,26601,86452,75800,48370,74048,45934,71293,1707,49502,6316,24629,9714,33231,8692,7760,78996,27176,1165,18613,17239,67856,58507,14115,83959,98936,52304,50869,21693,64698,55841,7373,28084,71458,49281,10594,39869,67670,4715,79760,18587,37241,91627,21785,19465,17771,51052,55459,30663,88773,38238,18799,67580,79238,2326,88310,51536,91005,51682,65268,16957,70652,4624,83547,85120,23755,13409,14031,85906,28898,49638,39481,71273,83166,83387,3463,94930,27360,91027,38441,1967,34965,65387,64303,41640,35402,28489,76051,93772,75420,25291,48631,66315,36974,60862,63988,6945,44515,51572,34731,22300,19033,8083,81293,30281,2758,7931,85727,7276,18488,67314,35119,52016,57740,63905,56823,41499,38340,26329,30048,25797,54011,85576,1978,19562,3579,86095,88122,56553,31889,37938,73614,77177,87909,48816,76706,9026,79915,94527,70564,18343,21633,44570,56820,48009,31688,35855,27099,10625,14332,48978,54003,31791,38931,87463,55724,36417,8837,45874,50020,75593,5517,65739,12241,98718,97958,32895,80252,35483,37951,89014,50874,3766,17811,21800,37428,46517,67193,59296,33287,46376,1083,55687,85424,56198,77193,82490,12901,70959,87685,30089,25409,74156,57505,39353,37807,82629,83035,4789,39326,50161,39356,66446,16752,91811,3994,54875,91000,66829,60050,15341,67528,5364,6143,65255,27891,41422,33032,48330,16784,20347,59861,34053,25449,62853,22222,9417,32347,41518,34407,81828,81249,54415,90650,2434,31487,65449,70847,83794,42348,38861,68832,75329,95613,51224,26807,9657,19083,88762,11405,86240,37851,86365,77607,86804,75297,23899,15876,57644,97801,60012,66423,34024,36957,51695,41823,77341,25063,15694,68731,91231,80342,40002,93647,3126,8765,7180,90839,63161,16525,51773,19681,67425,7228,48082,4394,47047,84014,36488,41646,42195,83963,54104,73767,81975,13324,79867,60299,98459,96636,65266,68952,56276,22904,33011,48710,29007,29666,21677,74151,26174,68544,9601,18958,62498,73691,96669,35258,82237,98488,86564,79895,18152,98582,10135,80173,81923,87229,60865,48585,89850,84136,33479,25400,14300,25295,83165,73388,81849,556,62068,79050,66947,38560,95886,47821,34599,7766,40187,70086,77392,85278,41010,44078,80065,11156,31606,32741,55745,9271,56247,26933,19000,60879,80896,3379,91204,142,47974,89744,90941,36723,96205,82682,33410,26351,80168,51720,88131,75596,87697,47118,77807,83888,86740,6054,40968,75603,96131,71646,13233,40749,7629,65996,32595,48045,25157,24657,58481,45976,31740,41352,68115,24310,14625,99323,95777,38130,60282,40961,34714,25447,87109,20517,97120,26808,95460,2609,1440,11817,64786,5127,37727,57819,48882,73547,18214,80811,66488,38941,59058,71117,56463,87416,33793,41043,40052,54113,9839,64313,69314,73258,94266,46660,18361,62388,6387,993,31397,57128,21618,18622,34349,39820,23486,74426,87709,64288,27966,58725,28664,16619,37611,10543,50749,50847,79877,15725,66391,60254,77001,33363,64109,91092,51898,18393,56178,51094,43502,27277,38975,88038,58218,54949,25913,84663,62277,58809,40667,4095,28988,58098,24448,78053,36481,22998,67724,62056,87176,64910,65115,64297,67697,6210,97007,85579,74660,51616,49258,63655,85825,29947,88600,5081,86471,96270,77935,59293,76082,90126,46942,9555,83376,26525,5044,72505,20222,29496,21044,51387,93462,14456,50418,72084,81145,64814,76258,44684,36937,35894,91349,80266,84229,73765,22796,19588,20478,86913,778,20439,41301,44226,99181,59257,20695,6622,65637,7939,67904,23996,64161,25099,62442,52085,49914,2569,51872,64158,31794,7102,84042,52990,91671,49325,30396,19746,46250,96343,54292,94889,32542,70282,4693,34966,50910,74430,69866,76970,49358,67267,64601,96428,49507,88167,4309,83661,12002,99226,30916,41040,4968,59245,54575,22256,34910,31251,27613,54678,27097,16618,94694,82548,86588,24226,89692,24423,61236,41658,59716,15878,16248,48443,78663,33049,36201,53952,42467,39102,30059,57057,53061,65599,58084,40644,33060,74680,97436,40701,43588,71036,44858,45331,27676,86352,28229,67032,1489,53472,92127,55154,42083,87457,14529,7091,30445,55872,54002,14451,15965,30253,87907,33917,1035,21931,189,38393,91970,13661,24553,92129,26184,5965,89659,62087,43927,6388,19747,26615,49479,4591,79402,76373,32060,81013,95098,94895,39805,58727,73538,74267,91738,60525,46784,82612,76968,10722,41897,53477,95300,11934,7315,97650,28961,79299,55490,8842,16984,34328,68077,29817,79275,72240,18728,48788,92140,40757,78951,64765,35456,35934,56502,38349,99031,24654,43830,21527,51221,41018,97134,80560,11094,42249,23772,98651,4285,63897,55155,79773,96661,24440,3702,75920,3158,89254,56457,77860,84157,59034,2894,36129,53909,35283,99141,76718,30682,83289,16570,10177,49624,67201,847,29338,24266,31657,84970,28692,31112,71619,4639,22096,73548,65836,65301,43785,17725,91382,94343,11616,37215,61730,90423,96740,4081,69046,99376,7495,28637,47996,89448,69767,87963,23067,11856,11929,92803,17004,27698,3914,1094,91815,45915,73035,60493,57317,81482,65496,60911,81153,92988,23976,79570,65490,36698,91478,8149,87117,11555,17258,6567,88556,18359,48790,79059,59775,54594,51287,41774,86805,16718,96685,40463,96113,83460,2264,51626,47829,36776,75352,14785,62162,54761,94127,63190,61732,30457,20752,20943,24191,83878,85391,78195,51651,36805,48107,80053,1700,68372,34862,86879,50880,29243,82055,91077,1124,52470,13584,90462,60706,91256,99963,54089,56214,70779,21015,99106,12606,27850,18126,53058,63569,2891,42105,87498,89539,84720,22289,48632,66422,89682,93723,1219,49654,56466,15119,66994,36516,29480,9241,84712,75050,47966,69478,76072,54175,78123,12303,79394,78263,60902,67623,56896,8526,19479,10659,38117,26291,59120,25735,58895,57165,46334,41659,52761,98506,24550,92314,80199,83549,64316,31715,604,37610,18413,68219,20070,79379,44932,51659,91549,26378,13877,11412,26998,18945,4805,97119,44475,48090,21782,61192,69584,15768,20748,33274,43129,65241,7032,50801,58889,13485,95169,77135,95072,85990,62242,606,46293,80469,33653,80640,49987,93065,88665,98513,57143,13948,11633,26205,3423,32144,69606,38390,68151,80417,7980,60392,79266,1501,78057,85035,15056,68923,72734,91285,81101,89627,49471,772,70142,56801,98340,11701,78816,97322,55577,9575,18104,21115,73705,71367,46271,80109,61856,77221,7433,60907,74192,85676,93861,22516,30956,50615,5186,4470,71012,33438,77839,76434,70077,36301,96639,42653,58066,26888,86269,4405,18782,37174,81067,2365,46194,73941,12496,12283,30415,91909,60241,35250,49395,61798,70864,65406,67723,46914,24639,65751,92027,32307,77634,99258,15722,28713,3508,30869,62366,35505,41939,65323,42646,27130,19569,53490,69897,23385,99456,62822,43339,28935,67333,61471,21332,11939,59496,33467,58374,44435,70504,7103,87032,90874,2713,9307,89126,62840,43671,78288,34147,98547,52177,52818,27889,63425,96621,63963,94557,75981,48677,58476,24971,40206,50959,69337,16695,64716,72112,76850,49173,43538,69371,46756,80231,86221,19262,82152,90642,53637,44178,26605,6151,35301,21189,37311,43644,56825,79364,48941,59680,42286,75291,10035,70530,44186,37853,25210,74659,84429,26736,39672,99345,1801,29755,19152,68336,31320,27442,46209,24643,29963,4242,26015,60579,84895,72327,3807,66012,55212,85475,98862,5270,69786,78514,72418,29977,3629,62968,51792,60191,3453,87343,99892,97625,61927,98637,59355,64380,12499,59623,89751,97081,78500,55101,18227,3028,14544,88766,98633,78087,10833,67999,11001,27032,12245,3787,65645,83691,14641,43773,44405,79964,92654,89399,7250,8119,76573,47847,75930,7711,45484,71818,50158,46770,41886,56768,42423,20421,44242,78016,74965,41013,53157,84268,23740,91998,22187,31117,80830,2717,86698,63080,59809,20360,45006,1795,61196,68931,22835,1261,40657,67065,11096,75303,15124,44424,45678,2268,503,62581,90451,54470,13316,65712,62243,99552,78209,43329,3180,12420,13349,30549,56352,89006,25289,86515,71202,9582,65219,43366,59697,91567,3875,31018,20201,35026,81344,4261,62811,99191,69025,1631,59397,69516,9420,17887,25635,3499,46097,99332,60305,56174,69357,16062,25889,93577,40217,21636,13531,39562,93588,64054,31376,79014,78682,51498,58024,87126,51051,37908,56336,73197,28456,28466,30335,33979,14935,72502,18743,28420,22422,20896,94795,97610,31113,55928,37823,76420,31195,92663,17414,59383,26401,77710,42874,3660,82390,94065,69255,24312,86082,91625,31750,1256,58202,41596,12215,15794,27948,74383,20194,9699,89550,96324,53863,8913,23744,81455,15856,38737,21284,85598,98070,1939,51399,36339,23618,93332,66269,76041,62939,22744,99001,63012,90858,92033,24224,8202,57198,17339,16770,17678,12524,42813,71039,18194,7950,7954,5765,88172,6080,73338,87155,69387,74214,74789,40641,15031,38680,33201,11606,64348,89487,87928,34882,1647,21461,1247,76299,64188,91833,52762,39008,98191,26571,52943,76934,10488,29972,19383,54663,79100,71577,48130,5835,10022,1149,38493,25115,68713,85635,20392,28427,72454,31039,40549,75864,31240,51999,71805,37557,21401,86549,23361,55466,12604,49357,2771,57678,23366,73696,93715,19355,16788,60790,51854,14077,4572,3243,40139,43685,78540,35594,91900,17070,12305,69404,71998,80568,78917,3698,49818,38576,47344,43072,81948,19934,95049,92486,64053,77709,73466,15866,67696,87063,45070,1075,97102,16482,66376,72293,91332,58843,16382,16184,40867,90132,32821,13986,78290,15380,80820,97236,39469,41342,5832,55721,78398,71526,21357,68595,58685,83627,73569,51524,72197,87483,40407,78926,5762,49736,47414,25402,28921,54147,30501,33019,6460,91372,92121,86819,58341,74806,48706,66044,14484,7638,16008,43882,61946,18635,75747,18657,97991,34657,11974,25152,75119,61208,99913,22850,84170,25904,86932,15201,56881,55594,33625,73879,70424,45536,952,33288,99200,35427,28524,77543,28344,39086,33730,96992,45219,5844,21183,18112,22583,76426,73594,99501,12713,9939,69264,42788,82709,41647,60942,3398,70999,7967,40873,52037,38131,85848,49320,10011,82295,69043,99794,36578,99349,77484,95395,39097,21146,49765,63489,26760,85594,45964,96957,84597,55595,20734,65063,75724,28165,87754,86217,57151,28137,38047,39865,59152,77086,44398,9124,68990,94361,48289,91584,34304,66111,25017,78706,2723,60835,66113,472,2048,44555,19316,35906,35799,700,92327,71041,44050,74169,1147,14826,2980,22292,77983,58234,30598,10969,6240,72339,33084,43715,39629,76575,25241,57011,93155,80530,77611,88774,29075,8148,50111,71923,30688,54902,74886,84620,26658,70106,67231,80088,50977,84003,83002,96644,60536,36173,48683,6563,25363,14864,78986,53734,83061,40921,10143,13191,43527,21896,41360,73290,69856,46302,17169,31651,60932,89784,12643,8269,59016,67788,58405,45979,92849,52437,39151,44211,82759,96040,34835,36683,69915,51253,32098,58345,98419,68338,67641,82973,59808,62544,46797,33842,21815,18044,93759,90507,70724,234,27704,42075,27047,28784,34466,45205,60711,30707,57660,12279,63770,24249,74824,76670,19911,96080,30295,53187,14352,79383,40398,36691,99926,28573,81461,47497,1792,27762,22648,73715,29340,7421,7369,14601,20368,80387,81884,65547,14140,43479,35585,43860,50639,69614,74739,42608,93898,73295,85584,68132,35929,52507,79912,20574,27908,95101,13676,91040,18346,47044,74401,83042,3155,15877,87968,58006,41810,33940,81653,83729,32728,80224,48804,13980,16916,94875,97997,1590,85428,96641,55776,80801,49973,67965,95052,24927,46117,89196,31442,63642,28234,58431,94257,67339,34365,98365,4350,78877,133,94630,17603,23188,91477,56168,18049,37179,48708,36265,40322,17697,38960,20122,52544,9069,27700,62288,33371,59889,94533,96216,11366,74940,72896,33951,71364,51297,13520,36919,76021,89723,78108,50336,53224,14825,30617,96478,72048,19939,58703,7860,45297,20153,22052,24809,91992,46782,8517,60780,16031,13817,52456,41889,50720,41442,13759,4083,62219,88296,37958,40805,80977,76017,81158,69411,42252,77658,31804,74756,35902,21561,34881,48146,76318,11903,22655,96244,11918,85662,77146,89889,6767,84862,63303,93616,56811,42841,6493,52727,18408,29397,9950,88958,36939,38711,91074,572,49105,46060,11037,16723,61228,53560,15945,71174,90332,52968,50039,5405,784,63710,70087,27852,71897,91123,16611,80613,38168,96521,559,15875,80201,51533,56227,56416,42922,53198,83964,2277,77956,18452,99541,20861,38896,46013,44776,713,40150,85768,47521,88516,95822,48039,72818,49855,17769,11954,46010,38830,56237,61466,37702,99027,58159,95534,8570,94322,30016,85614,83937,21658,69057,74731,14395,45524,88927,35271,59339,43223,42386,63412,87158,61641,43207,10961,71078,93393,4103,82065,40255,69423,96025,52947,45868,70099,44021,93603,11184,41511,46041,88535,38455,98180,45833,16753,98286,92143,18905,88178,52750,14252,68908,22870,74882,72918,77018,42300,46510,51721,771,92840,99807,28800,7143,10924,27073,12043,33764,83686,37526,91619,88996,48375,25068,78728,25428,30312,13134,72356,15563,42895,25340,74002,41500,37494,64229,64435,96750,40329,85075,6093,72271,77204,8219,70072,81902,85413,93884,98230,72621,35632,85466,49843,25731,4332,17829,70486,56307,81838,21732,71227,53524,21352,98172,8443,20477,94994,57589,33089,68950,43673,51715,56035,33871,8943,5527,59605,38964,61095,88910,14119,51372,53275,70387,60436,18780,91036,78849,96705,81433,54333,78027,96293,44301,99973,50965,24995,51691,29123,88909,62687,52763,92689,79093,13562,69820,92860,62914,2919,77561,66740,6419,78468,1759,16507,55695,13826,75927,91908,72388,49998,88191,61272,38693,78938,26264,42373,69052,24607,38989,8946,38145,61541,98675,4349,72744,33957,73890,51604,49410,62578,85645,97161,44295,92093,95198,59733,94113,48313,30110,63816,43124,97558,76436,94570,193,62596,72853,6504,43246,85070,97037,23419,98487,68540,76062,62942,49510,86235,86317,20616,68688,80394,35252,85790,64592,59299,56332,78303,75445,76923,50829,43798,71475,92761,90644,4178,21384,35950,77630,85593,46009,21158,23500,78056,1246,12629,67345,6291,98427,64072,70089,4395,43013,75826,83043,95216,93423,17314,85902,67563,75594,33316,21567,17408,53182,4711,69078,36469,85366,42996,65524,69382,61427,43187,33314,39063,14527,91725,63676,73523,28342,66310,19421,99713,38741,17749,26312,33695,86524,15442,71477,93188,69336,34857,67365,34528,54504,92222,69921,36591,72160,61540,27271,7504,73607,23546,45610,51620,50473,54038,57023,1737,81744,23917,75778,9704,16229,75274,76070,57655,47287,63236,38366,32500,27856,86160,99050,64329,56432,61213,90022,87860,80058,76479,36186,58239,27477,94378,57638,98565,48906,5176,13223,49095,8326,68721,47226,87310,1876,89097,47597,63996,64570,49692,64962,52500,29565,18098,19823,15108,28313,3013,26117,85657,2208,49492,9811,88636,67728,30242,63337,28139,36526,47669,59886,59351,76799,54019,52220,59056,33825,82580,25098,88839,5317,321,95150,42240,12641,63225,5278,85460,34048,92106,2914,71432,26327,33156,13150,65381,94222,912,81416,2216,91380,14125,71592,73909,11597,39218,97419,3870,14495,89757,99652,19669,9288,20701,70815,70187,58289,96810,27682,60264,928,99309,45048,95888,66864,36140,89596,93716,18605,86489,45922,47104,74727,98769,90533,18151,26727,35573,2641,35694,70500,68507,25838,72132,77253,91181,42493,44024,52082,27079,53749,4564,29736,91276,53247,52405,90847,39959,14873,33631,51214,81991,55274,39318,97184,28073,46136,49065,3826,39310,29181,45687,26387,46729,61608,11894,36839,18570,11061,50168,47175,91904,22875,86445,52821,23745,41802,77283,66604,86961,64116,5960,50058,55857,3091,67810,63911,37025,18163,67690,31886,12732,81448,32912,51966,75481,24086,99568,73776,12695,9532,65891,14011,23263,72728,86822,68660,13510,89347,10086,83119,48459,41799,46849,87550,13178,77443,31625,43968,91819,90037,86686,87389,79252,78564,46809,46561,90697,42531,40975,90915,68455,88623,59893,57466,37020,28365,60679,27794,7505,93490,62089,80501,39583,54619,37975,52151,54777,86415,46890,15928,92732,40432,52461,78988,99566,74431,11925,26552,71103,59176,18881,2091,62362,91296,16959,84966,92053,69599,18765,92022,24027,25541,64753,55218,33273,89603,90011,24781,240,85788,61351,99430,28730,22045,74415,98190,44339,58599,9881,631,15791,15416,69473,97821,2674,13141,70124,60426,36581,29904,93212,16080,61294,46008,44350,72172,19571,75899,93607,32655,23529,67773,29589,4386,11200,34320,15917,32831,85713,43307,99113,63299,94955,68695,43976,95322,89608,52296,39066,9445,78485,88534,17588,8626,14610,25300,98004,66215,98082,36093,32471,48855,43327,28192,97775,27412,57984,8546,23841,30881,13506,29519,90756,92978,81804,3732,30966,23127,46174,48033,71997,77241,66087,86684,17352,69683,14782,33186,84037,69865,21268,45731,64403,38992,67481,40813,83386,39904,23559,56,64263,83106,97380,73861,5610,90750,1287,39601,46856,17126,76131,25874,33165,79323,4084,51388,50223,89724,85371,37077,4927,69396,71447,48424,5594,52698,50672,51974,57650,35755,80650,1131,77916,19884,10040,50926,65865,20589,95860,75396,39426,70793,34933,53898,83304,24762,91859,99518,52115,66973,73739,38800,62977,14781,37394,32991,69132,11577,12618,54999,28605,28081,24963,67932,75003,47654,99142,9927,10092,95940,18889,54873,23152,93985,69310,18557,646,2299,31161,50918,4333,40480,79361,74226,49970,53298,37453,85669,73277,64136,18292,44498,36105,8405,78818,43403,97212,78730,26839,74130,38761,4689,84041,44734,65671,35220,48117,69628,84127,4824,62200,79765,33934,85526,77868,58464,14327,35303,5851,13852,52379,37960,71682,24646,140,57917,40396,62935,52380,33385,98605,31972,35028,98673,68940,93699,48069,64376,62626,8702,36613,355,64279,28538,72798,42207,64826,63976,64243,60698,10766,9067,72930,1463,94636,28943,78998,2604,83811,97660,56445,85852,9589,35068,43446,27368,55194,14856,45395,30327,80799,55248,8540,23415,48663,36024,52265,77787,96283,13261,58045,75611,32486,19653,69291,42358,21885,32752,30570,85434,4750,30202,38076,42896,80734,48080,33407,70381,6753,69854,2516,1991,20475,37784,61774,83945,77987,28619,52001,79638,54316,45,48317,18341,80188,18246,57654,35344,34288,90641,29113,79820,60946,89961,26280,76700,54226,89441,78797,92225,65936,51710,26138,63670,9576,97169,72409,84971,7678,33802,49102,22734,52936,49967,13599,45390,60823,23775,22399,54280,50671,71152,52910,33705,5829,31562,26788,25790,87308,41604,4751,47861,52582,82334,39792,60062,1706,32708,35581,44535,13908,64735,65821,27595,93663,78558,2926,31156,31130,47010,33334,35423,4151,39033,58587,49565,12432,34728,51180,99660,13207,11849,72552,52588,53358,39935,78174,61493,30973,56677,41152,49090,85901,79672,82160,31105,58677,75239,34814,91433,14254,61685,6014,58126,81898,6018,85585,34884,85346,55584,56180,8217,66809,78502,3185,94419,57454,86578,69804,50152,82482,93910,80239,19450,36983,979,87344,58373,25875,47628,73442,70158,88553,97702,74596,26175,27949,49705,64304,91284,45060,16479,94359,2266,9667,1625,85265,92990,85360,58480,45501,36255,96013,88901,7747,45786,54502,99923,83960,4416,32710,12764,18110,9116,39916,99686,87179,29768,71853,73013,37210,96280,69438,11724,83300,60076,2374,69240,40145,8450,3035,39905,17635,32272,92648,12873,1315,82323,41800,47127,76749,38946,36358,64855,56034,15766,71884,4069,2768,5020,15165,6408,3849,10238,53374,4568,33788,34460,16028,7111,9990,22424,38933,99335,68324,93821,58001,33511,94579,38156,90539,12098,35355,66450,7785,76641,23116,67752,92705,86559,47881,37876,44696,44166,32961,80225,1745,81034,49302,22625,13581,53006,78522,29944,65528,84801,16185,30044,43778,22282,12183,36686,63367,80086,41009,96458,18546,31724,25041,41822,26489,77409,32470,19904,80322,56626,84137,61264,15389,28838,39938,95182,2318,44747,62249,98958,41873,69001,12029,38715,95085,99451,92278,51684,65688,8299,75640,62114,69604,58293,38509,90676,99543,10403,41270,69493,39830,97024,35747,30038,12179,73273,139,7650,73367,59157,50035,64669,1907,59790,19130,77754,51564,30473,69015,55097,39588,80337,69089,65078,31856,98509,13714,60607,72688,19418,96920,94969,65000,54881,21723,10539,75254,96197,56694,47137,45756,99910,2554,31867,92785,32704,25337,36956,87610,56052,12000,78187,65651,75255,13808,71715,49572,10352,47811,28071,78921,52502,32593,51881,95489,53450,61358,5361,50344,45863,64022,582,64768,92323,26855,15221,76512,46292,38445,97584,68439,410,72326,82462,85861,48349,74822,44469,97222,73689,32221,95279,7579,61611,31498,61633,18428,55699,76346,70354,37264,14501,8589,85322,54991,75875,65549,24258,3107,3304,93958,24776,87540,59089,36128,29198,62467,88955,55895,15092,50827,23992,47932,30194,19766,31311,94076,39688,21377,89080,30196,8819,72857,50257,98021,81605,3420,30489,36727,59922,98385,37980,78631,53485,39773,4660,76714,63183,35808,2453,45195,2981,41918,99854,49351,42247,33042,15704,34843,99080,20914,21410,78095,7968,52478,49590,43586,87541,68865,81579,64319,50623,90373,56847,12442,55456,67068,36379,57250,83647,30464,19457,17720,91715,4420,98494,72148,91119,55,6505,72213,95211,62357,15137,25424,63314,14356,50500,8176,52404,58462,95935,11144,51300,8868,4381,11807,41302,84329,62197,21321,41549,523,95291,96092,90159,17210,8648,2035,46837,21203,62063,5210,63496,83049,87752,14535,14551,28907,75637,44156,21925,8145,31273,85867,26202,46064,99123,49737,83918,16037,76636,4629,54462,50305,73993,4566,17325,72704,31422,39265,9701,93144,91515,67825,26227,81776,11574,50025,19979,28238,6150,46747,96711,16116,30719,12555,17174,65472,11012,24196,65932,41478,49656,77321,78089,59482,47913,55040,64170,15923,92020,96482,40824,22763,44413,14717,97676,2136,61553,50115,13940,85562,70839,93186,97878,5085,35272,72303,24369,48958,80704,93291,92509,80526,5918,6247,15009,15845,31423,71719,97590,75385,56349,5729,15750,35730,42675,29433,24965,9495,26109,41317,87894,93098,23302,36562,90106,11353,27685,35319,18479,68052,52392,41087,44942,11845,97528,38567,17428,92310,5682,88137,487,83397,46682,16638,78748,23009,71687,15158,76096,96378,7384,39248,79322,50707,8664,58626,37040,15127,22952,2947,43755,36226,354,6987,9074,87056,9392,65478,3954,64556,88884,34354,85370,30962,48746,90346,47400,52831,95032,12981,53433,55684,69149,44817,81377,70238,5401,5560,13632,84659,73479,74641,58605,80222,69884,90696,37397,60484,8760,50618,4638,4006,56066,80352,70958,85849,55813,58245,39020,22748,16291,2850,1136,53030,1956,65723,71813,6438,7155,48764,77549,14050,12683,320,92352,104,13656,79333,30354,82660,97342,56508,71412,28393,28080,55677,13537,28884,73347,43285,56054,20325,84803,51739,99876,81118,10662,51987,99944,26577,99280,19085,7307,1578,94616,41792,29785,65810,21892,93331,93995,93377,19858,37746,71528,47058,31335,76684,17294,18713,68898,29093,20362,14335,25183,74203,60139,75993,41934,54160,75033,82351,51458,32864,74656,90881,35557,92922,81174,48530,63349,11720,20859,57182,54688,22671,17823,10301,43492,57087,96673,62485,8164,57006,54493,24763,87280,2429,83311,5894,67184,39806,61218,57222,73998,21764,78875,7699,41907,66449,14409,42489,90577,15318,29901,49797,24449,97554,61538,45508,48701,38024,73050,2134,14450,77951,3891,12319,57731,19573,45190,27604,28421,33466,27118,81322,73704,61330,34949,98765,85269,92747,87408,53214,76462,81030,52813,30848,33290,80084,2819,90716,26955,9328,37954,77936,23083,97766,37967,67126,60232,66299,79152,42679,33545,98779,95252,45809,12134,93838,38623,2732,7291,74927,43449,41394,79511,51099,86899,62227,72389,6768,15545,97599,38582,37253,77373,79668,70884,60514,34670,78649,4646,66653,34662,85015,69109,24758,64103,55221,96999,25558,64726,95778,21367,63447,66506,42781,5224,61751,49296,25815,10477,71626,99806,36037,68097,23539,17554,57708,68915,91483,35907,68241,95602,83973,20303,74913,55869,65539,28241,48765,35798,83285,82755,42749,67745,64117,56745,31851,43417,46680,95955,89283,75230,24574,31556,64709,35941,91825,1648,18269,53152,79815,91918,49900,80294,7017,64888,5887,39519,34548,32939,30395,65318,96320,92230,5810,54343,73080,23562,2118,21341,2564,50224,11636,37307,36966,8794,97479,46552,34314,5562,52415,30296,62545,49527,33799,63049,75115,65455,57093,11795,29122,76831,22498,25256,87062,29497,21041,17762,81826,79615,94767,76088,17285,42567,82998,18159,23644,29301,90987,37945,86818,96598,24288,26094,57793,25639,90975,14757,64134,11726,44287,62007,3820,89779,40492,49204,34588,89896,70640,62772,51943,13942,19690,18744,63871,39742,79351,47205,41290,1628,12446,37584,58162,94746,18240,97059,73567,1780,41032,19084,76664,21534,29949,63740,27044,60982,57220,8452,2725,62884,5299,87970,59586,49415,45587,79496,93600,86958,93713,58132,39166,66732,92953,40890,87945,78712,93818,60899,23574,22311,72643,70368,54567,22544,2012,77,72212,58901,55652,31557,33963,92103,14118,18542,31663,74145,98256,9033,82919,21254,30383,12020,29159,65693,60140,28167,3940,95755,87113,49042,92976,29121,93148,180,63769,704,30768,67667,41195,92813,6338,13249,48433,34080,61360,72908,51358,75680,58281,22239,27035,52312,33755,30840,72677,53751,35251,42882,1934,28204,70466,33301,52257,21909,74498,77523,49724,79452,12172,85250,82968,47202,76536,77083,30309,35032,54477,3173,41305,85447,16682,11664,49383,26179,85877,44791,64976,95981,55609,77743,16091,48898,3946,22499,31201,71235,92411,25151,98069,66316,6225,56545,79485,38925,9072,2671,28978,70604,62754,63184,2174,39024,46761,57417,37622,38527,8749,61001,78412,38385,56570,84407,47234,56877,58655,50942,89400,2328,77685,12398,40584,74844,52766,13595,68848,8956,15728,66798,76100,97288,82563,62554,7929,55854,91406,82120,3360,17455,84628,53032,72487,73719,93842,79803,48713,13298,77647,47374,94454,33281,32488,92905,72639,20157,33878,41364,88972,56598,95173,87867,65895,9660,6061,3697,86909,69450,6382,38536,69131,56201,59119,62847,44355,97556,77335,1692,89920,61421,17305,41965,90308,71290,13220,69035,80657,18559,54550,55477,82135,43495,30203,940,96171,24097,64555,69419,60874,7933,26809,38580,19443,209,39028,39159,79930,49997,72523,88612,94901,86820,6840,46348,16488,85121,80245,37202,14844,546,19212,34991,38158,2279,77312,48408,15798,27653,32597,53354,30154,75678,13666,326,17259,74931,41440,86314,98120,92276,36007,14512,64291,84890,66114,20619,87531,83148,59998,72914,76791,64038,7605,53262,9,59423,10646,66623,99777,41456,61734,45523,68658,6324,61877,48423,49284,40103,35044,8288,18374,5070,19767,89451,21229,39412,62650,24379,38472,42798,58017,46606,98585,95900,82871,85324,19365,93227,82372,76037,25545,16402,58618,27159,84790,1342,22685,26479,54531,36547,73665,46297,53250,65,46453,40828,85561,45871,59518,26286,91683,37043,7452,98485,84423,27695,28691,16097,25546,87512,38389,34399,84959,60268,63677,16521,5833,22265,58039,49750,28314,64723,76563,47350,37320,4380,61511,12658,67815,36178,49666,58007,26381,30470,55217,30050,1878,63835,8575,55198,89741,57931,3887,1318,58890,78311,78254,76448,40440,57558,75081,52303,38049,11769,33480,74071,96504,6579,45075,95986,39134,86336,77577,76896,80237,65896,16465,13710,74098,67648,73260,22872,98223,44491,39709,82014,60523,32183,93267,96061,10322,22779,8354,68999,96384,77334,73101,53581,76227,57954,99273,62154,58444,15129,32564,34119,86874,51239,98468,54923,71731,22830,26535,30905,58544,65902,97910,27673,6757,49529,77399,35260,62670,32779,89094,12589,97423,99104,33289,57468,59053,16442,30161,84747,58028,95710,38598,84337,89117,22955,52939,15503,56196,79239,55116,96769,67939,73326,396,66607,23225,58237,47200,72530,46165,36179,41655,2681,32177,30246,47923,71399,20948,91986,45767,7363,50635,56844,76223,15560,38154,40388,72165,96883,87553,29265,85874,92108,91633,43933,76238,75384,31817,88492,91025,26042,52643,89788,64247,19172,73896,50346,64370,50454,46881,17808,45077,93106,31066,163,36022,70559,22555,61700,64615,67429,98454,66038,1048,39472,10004,14932,90370,2267,70433,47541,30041,72346,18853,18838,55649,13811,41662,37614,85180,68588,22525,94064,78273,80448,33721,53292,12456,88497,74661,19985,1550,52903,50684,38793,55789,75745,89789,16289,51632,19380,72838,56835,42270,9456,50030,81711,89687,41572,12900,72422,85587,68887,89834,49340,86648,59533,22609,54169,95425,6390,15515,30943,25143,93088,51197,16734,76873,31521,2739,97318,72525,2166,70213,66187,73069,88129,43752,46711,8315,60164,17444,23096,65598,95814,48386,97654,46278,51034,1524,65411,49044,66993,38477,43437,92350,50283,11610,26851,25419,62097,10767,29718,29258,46082,93956,1852,45042,57918,81232,8364,88159,21547,81286,6040,74841,70681,81471,76288,82413,84067,18101,66815,97548,95281,1881,63366,64667,65009,30358,94623,66715,60974,53145,726,8185,40043,4535,39483,62027,68505,48093,54403,22156,14321,92349,14874,724,11776,59677,97787,930,2468,2552,36561,11228,39029,3086,74237,51318,40058,50203,72341,80315,80374,92415,43019,84165,75590,85105,82279,93367,43381,45325,39360,64670,52836,94066,14937,65054,44279,52372,12346,29593,89670,25364,34948,40710,39112,73477,95250,35966,83070,26897,5568,53612,31884,90160,59812,21098,34450,120,63620,78834,67778,47867,16451,65529,43718,84206,69394,30494,584,22767,31932,63543,74160,81915,47217,77969,99290,7909,73359,22585,93744,54071,98022,43022,30836,92767,98036,62450,13865,2945,93109,66245,48537,29139,92372,29201,11486,26677,99116,5455,29868,80134,17040,26012,63948,86911,55959,70053,37235,86570,33027,86866,23191,53075,97916,38352,41153,27004,25638,10354,93430,3101,67500,74462,49213,48915,50931,83917,69083,27224,38636,22539,54281,81044,32087,75991,63175,33275,4311,22367,66014,55491,69819,42292,59910,71040,54127,7794,60428,28042,59631,27597,11167,22237,43324,29182,48343,81369,37250,20658,26592,89707,51627,53119,8763,62300,64419,95761,41609,97626,69981,45298,85807,94287,89202,66363,91899,76307,39943,54077,13836,99423,19338,39104,99139,91570,37902,11615,90260,79122,4606,62328,94689,38883,49160,85936,71110,51689,68458,182,80812,8328,6808,16758,25945,51521,97870,51048,17424,58848,3172,16891,17324,95488,58390,84065,41533,97105,56574,66874,88434,96634,28917,44055,21563,24237,44347,18455,77275,432,67809,48023,15925,88509,98157,80627,37759,5768,68083,15326,40856,22299,74080,38617,20234,45751,34162,18760,54920,13174,27819,10964,36653,92876,1354,54408,3635,70253,20100,39419,24068,7287,88496,97595,76412,10146,63930,99150,43979,83559,99266,23769,68346,87890,29550,90943,51192,99088,3114,54793,64796,82696,12256,75894,55190,48208,99303,98594,69201,92772,32187,68745,98196,56471,32243,51629,32790,37293,84648,43255,93810,17884,52521,22026,75945,16048,84823,30995,91007,38018,56536,39648,44081,37914,65248,25003,11896,18422,99711,57867,29499,10673,38658,5692,40353,76548,2215,21082,37237,12478,65971,15422,35875,71257,74666,65612,97306,52180,9314,3142,70883,666,57576,82266,89533,16202,13437,56769,82500,47376,64970,36075,51349,46374,90986,93347,71126,61344,72154,913,56223,80899,87917,79336,89346,16558,49602,39401,49494,61374,9861,6720,62696,83809,44554,31223,99935,91096,75306,61224,16149,69085,65939,30430,60978,19304,30634,68997,85249,34831,52560,14181,8690,96063,8166,16567,17761,91391,74369,5328,9483,12077,2259,27702,7537,69737,91106,39690,65393,87813,48413,51243,91830,77174,11291,11777,56280,58438,86825,54901,14817,27389,12768,97197,12082,70035,78546,28687,5336,96622,59546,23912,42574,5406,45870,85071,56751,82344,7100,17433,24050,81791,54229,94878,69905,90955,36162,68924,58772,73675,44230,20917,39793,29647,90738,57978,58382,50835,21531,15086,93415,24552,62632,18641,13304,57912,45384,61610,30107,71453,8353,11349,17760,53059,91337,18577,25005,78999,31354,98165,6733,33264,79199,67196,63329,58194,52708,3282,36746,19516,8966,87631,8752,9311,12800,71378,70503,29787,29095,83154,71504,12201,8437,38794,28889,36949,94326,31184,96467,43962,62057,33151,26004,48525,97452,78050,66692,48435,30550,29634,76305,90408,23165,22524,28422,73375,22315,57601,56220,63590,38839,62216,59659,6869,24229,16977,30420,59556,22485,90249,86906,22635,86478,10415,71468,3080,36958,61820,35864,84392,62000,17724,16840,52450,57795,88048,59515,20718,6071,84395,17630,21940,65198,76410,11180,53084,30465,74343,93295,8541,7549,70824,24684,7135,66485,64885,12035,51962,88338,52522,24158,83044,95636,84574,99431,96926,7073,76905,73626,56453,90224,5603,52753,71900,37783,71063,13397,38278,790,15145,14854,36756,56789,48972,33521,46671,41056,5547,41854,8617,91490,48384,3895,94714,37163,62273,71306,88699,61796,43910,5501,83279,67629,74148,90097,29241,71311,49796,82752,72280,23049,28593,92896,28934,8609,26328,67439,11124,36148,35646,65779,18962,23437,57526,56410,11312,30085,82861,49956,44695,82379,5057,3720,49397,86299,31380,48614,33116,65970,22267,7683,82281,35690,87414,31034,97367,54170,84220,82073,61207,77207,34979,47069,19968,58749,53438,19894,96319,29290,70391,76343,59978,61122,81192,16007,85620,83688,32629,6688,33779,41695,68317,49055,79292,83699,15677,13336,15438,91457,71229,52883,2582,9391,93823,49665,20991,92152,60471,57119,68410,44622,312,77258,60370,12715,32,92429,55264,40821,66417,53280,23893,62651,44641,95681,74461,74890,13843,56115,90490,42655,62106,4325,5399,58261,61747,65184,11741,25700,72411,43597,67242,7991,67518,15966,55503,52341,94880,14405,20459,74582,91384,11866,8537,70057,63747,82565,65482,21437,65596,83440,81049,9227,19412,2522,27686,9220,7717,58892,98368,59433,50513,30643,70708,55796,93018,6155,67968,79032,12181,28161,27708,13952,75789,28775,41085,89732,77427,20643,82668,63327,67358,6566,72442,92309,42200,22769,91140,36870,67735,64512,94014,72436,90665,58316,8175,95588,35010,11723,18727,82989,85858,37886,33159,20504,95704,25510,23596,35817,64620,51237,55052,48305,78180,71855,30311,46192,93532,1729,95512,42371,32288,82299,80044,31497,19660,10726,74288,29928,91487,73859,50756,73499,90217,90964,54449,79653,8078,39085,22943,10414,85665,14768,25309,89576,59805,10798,79482,53775,32739,99689,97211,9475,41841,80994,34457,81720,96082,237,29250,30142,94366,33350,58392,45143,46489,25172,58338,12594,35986,16348,69017,24812,60391,91109,52374,26036,99992,39874,69996,90566,75011,74271,33173,72363,94446,22736,23109,3893,86295,77798,51573,81029,24000,41350,61704,92949,64487,70328,62551,33896,5992,40516,27075,1312,8039,48638,79987,1144,4008,61491,33123,98643,36799,64954,32093,70689,70920,44624,26078,34192,66312,90280,37209,63791,41547,9810,3880,34698,90614,68175,7292,72222,58706,77938,9965,50703,62382,1329,29016,11689,87370,51869,58952,22483,92428,35466,37736,81367,26803,18286,38986,12227,5129,6972,78269,98054,33544,50231,57129,17684,7397,61298,26827,92503,85205,65989,40870,59796,45831,2392,83873,29426,60510,8957,64916,82589,58728,18016,11598,51492,12185,7827,36703,58885,30163,45263,87612,80359,81547,30176,17848,79442,69796,57577,45183,37334,80118,88485,34686,38262,9486,71545,92149,86842,58713,7741,62346,30345,33991,52197,35310,28409,54972,36659,9325,42078,32671,3898,65635,49563,98944,79698,28535,43690,65169,25108,70514,65028,86800,18233,62118,55469,86969,89064,99707,84471,70788,39379,41681,19499,63427,88245,59269,1601,68673,5592,44310,36362,18371,41796,95668,99703,94476,43178,69829,94881,69742,78092,42310,62874,51461,28840,1935,80113,69723,73081,2710,80638,12217,37572,37801,43856,76173,98243,80335,96286,6786,40595,13727,57354,988,75938,82658,11402,6961,94665,76135,30989,52923,80637,79892,11754,90236,50810,70478,63788,49962,11070,7158,63961,61588,32519,72195,74885,87682,98653,6008,54251,32091,1595,64258,38901,52483,29853,16997,1591,45884,85564,38140,56853,31566,72997,84740,3374,33801,36181,15415,99960,45838,68480,31941,66160,29590,77517,14941,16609,7686,10601,78445,74354,47482,57486,46955,25658,46301,40606,78738,42150,12933,29797,42689,39639,87165,36844,86623,75523,88032,15859,41587,59436,5191,2290,13172,39696,83101,38172,48665,68413,33967,20269,46860,97959,88229,38840,94035,53112,32729,28616,8036,79778,45387,39643,4814,40336,39058,6281,81591,32411,28142,5700,55432,21346,90640,88698,7366,6929,56544,50723,3793,70642,77508,44850,16331,50295,19797,62618,80859,47160,31282,97756,48008,78850,21775,79454,56828,67018,31262,65984,10801,2975,18961,7072,67081,59743,7508,818,29894,83411,95812,74275,33536,27045,41808,84396,61190,81529,79349,26122,4025,60115,80978,62941,46921,922,85209,8309,84295,73489,76763,46902,35296,81604,96510,32429,22129,44479,40877,50298,61544,71951,92871,53815,85310,43802,3776,66964,20753,56341,88018,92750,6762,99526,49917,65914,61068,70197,3669,57400,54644,32977,11341,7612,69636,16733,44344,82283,14047,77379,62317,53784,24677,24575,10752,38207,43402,49459,47190,30094,1364,98649,90452,41577,7362,22527,2244,55402,49813,42592,4536,54732,61310,57810,15345,48363,81139,63548,51436,33954,77351,91290,18979,44584,95891,5190,55938,2827,66088,54206,32415,89040,61075,35796,73094,44639,85693,19080,59340,92630,65494,86237,63619,80344,82159,36308,29744,55937,52852,46358,77538,36352,73038,18335,20482,49198,63274,6617,18254,63683,58701,92826,97189,88030,94335,25939,71930,42468,24022,20108,45073,52353,94808,85267,21379,90803,75872,62470,49412,94764,38624,51879,15707,87568,95909,43372,47107,30446,60549,89633,15147,22350,79628,25486,15874,20190,15719,91805,48261,95775,62169,27930,3165,73995,7868,84535,50859,59763,62095,32394,98854,49126,70426,86324,79631,91841,65046,38250,30573,68296,43326,98294,21199,81372,64408,2697,71320,15395,34945,603,22523,73488,94045,14962,63411,47320,89021,95370,8050,80319,26944,9806,7982,61486,5120,78637,72083,80474,5724,89389,28352,46560,90163,36436,16180,25252,18239,20947,84613,90806,67347,44720,78991,52744,70401,69779,58033,28780,83034,69951,91629,87596,75170,25776,90856,16230,45967,58193,45028,9777,6667,32745,7040,80014,58871,10984,64558,41430,9222,40116,28462,14105,64674,39249,37045,93233,23341,35358,55416,12493,5159,64187,41981,34750,96446,8308,9354,60801,75311,60820,34029,56785,29346,13067,92659,40935,46049,47243,58042,59924,45938,94787,74945,86094,7654,24480,14802,33885,29349,3084,45948,75825,60421,83419,65511,29939,84484,25057,54608,35778,17590,63975,5584,39107,76241,54376,66988,93801,30926,16865,93358,9196,77649,43751,47738,94027,87836,14684,20655,84106,81204,45720,34473,91572,5571,4945,50293,10596,44149,14665,55620,8728,85247,43560,8645,7600,1117,52574,86000,11434,45346,87772,5124,38346,88165,64645,22564,7129,63565,78247,9087,45442,3673,31846,88806,91242,98828,58134,58135,54039,9232,5017,51275,58754,31257,9086,10130,92642,36564,72916,80,33771,27900,54456,91585,96246,78474,50463,70096,41926,50687,86917,21033,37688,37700,51095,95474,96518,85647,77239,89125,41924,81790,48673,96672,23536,26821,97239,49313,93206,96693,79345,66041,29142,25677,74037,6745,96486,73079,96295,61776,80080,81966,82223,69276,59759,55802,8714,93026,812,52749,99439,11054,70785,10972,7525,40506,7086,20345,50863,14595,53573,11048,16437,17024,57711,7092,92627,8069,35705,28247,21493,87549,78463,53199,50352,34516,94397,31603,18938,94731,74029,17042,7541,81216,80383,29658,95541,73787,55910,99597,79096,2640,78495,23429,31106,19447,19631,1085,14554,29310,28031,12512,89695,88476,8746,28376,33101,11764,99265,27151,69335,1666,27492,84332,12422,7046,78388,27435,41963,88317,31878,65064,72670,16006,41091,80680,37830,3915,21325,15582,74180,98968,25999,29858,74200,2097,67957,51592,49233,19129,49725,65607,93953,43684,92728,33452,89123,33823,92730,14245,35095,81302,91212,45355,85769,5026,92084,49148,40201,89793,61548,66200,33294,4676,92943,8042,7467,83767,48338,21316,64489,44717,21904,40586,61083,15094,34038,16309,78983,54360,31765,70875,57056,12607,89244,39550,84105,37909,7871,88945,26604,86153,59227,32608,95648,77290,45943,37431,45755,6132,39283,31183,24309,50380,84300,20588,11465,75083,918,20143,43815,14323,75949,62026,40677,41900,22253,61952,73864,3333,38705,81238,99225,97241,33732,67779,81283,65926,6925,32783,99242,57603,82392,31551,81681,77905,12479,96234,1177,48731,67835,76732,47319,99179,10648,45408,37112,24735,76435,60251,75071,50808,9390,66975,950,99069,40012,2013,97804,11914,71773,8266,72285,13516,194,42555,13142,3657,67146,67599,88111,69065,66525,39143,55605,22418,35115,71541,73130,41051,70972,76243,29534,23198,97363,42600,94662,57946,20051,23668,26363,19506,37548,668,78118,60211,43256,17060,78923,35478,41690,8142,17080,84492,5938,14658,4571,6620,85327,46389,85498,65615,84573,20391,49463,55016,41717,81928,59221,67637,99584,62878,84442,93949,78515,84404,45246,88569,14606,44564,10678,435,45175,70814,69283,41036,52193,76851,12913,29965,71844,95001,71585,70696,26798,38368,66122,92756,16213,4979,13352,1925,20688,8355,27679,98352,59728,50471,84278,19034,36860,58999,23875,88004,8297,70634,52344,51077,75780,19978,40541,77441,471,32085,24091,5861,10002,28345,77921,28882,44613,16515,97817,6180,95324,7361,18678,6362,45958,15566,88925,19407,3321,86255,21715,16636,29316,38222,83272,64182,81214,51816,88871,44110,28737,24599,85749,73190,66086,61444,78880,22836,90207,26189,55014,50879,51169,66007,16227,763,61113,66271,78539,78775,85718,346,41292,21666,81439,66377,93789,69932,8329,76946,4441,45759,29286,54092,66996,4137,96,28770,11976,52251,77768,23321,62985,82592,33612,33269,66965,27431,41282,15666,83229,37633,48912,54455,16170,11215,84270,12914,60280,72129,47053,21957,11695,4097,55549,6564,33198,34781,77617,83363,79871,50556,9322,13080,76862,15361,58821,67937,90071,44425,17928,43375,33699,54611,44328,83041,12434,28169,74536,11682,20578,64113,40247,88813,363,52359,79739,22869,37878,43162,29399,23136,98298,91846,76977,85962,95459,8981,11289,32201,26424,6967,34158,14358,72501,30174,2362,73649,35530,453,99000,39739,54342,23241,55859,26977,1314,78190,60290,46067,24373,62031,18628,35112,64071,97985,40977,36360,10120,30299,70312,9448,62464,33202,57428,88223,13032,3145,85064,60468,96236,60103,32566,48235,61402,72021,62826,58906,43271,28683,94917,99382,18497,6030,27237,37230,85004,82507,23773,9127,77007,16767,41764,75754,72121,90472,26249,99138,1723,43020,92042,29638,90993,44973,84579,93342,36445,59636,56344,81138,57520,12443,83984,7789,67859,72387,63463,39054,24032,86841,36942,34030,93296,43691,41354,71059,256,59122,84188,3090,76084,17441,36682,50609,28065,43464,83555,66134,21206,29493,90631,24112,27654,13043,42285,49210,59363,77315,94538,39370,19679,44608,55247,72758,65110,51457,72608,36448,9516,50585,39349,92315,26034,43696,32326,15030,7331,13744,62213,65397,23690,59331,76501,56310,54603,18074,29727,4265,92424,1030,25668,64892,1432,14272,79301,92776,33409,27879,46768,45502,30637,49079,8111,80473,32086,50026,33497,53174,82089,84837,42602,20456,81117,90607,13494,25727,23582,32061,53713,28216,34422,47260,4943,62795,99880,1383,14575,54759,96882,77293,44160,55817,52241,69254,45474,55069,82005,36921,66275,49882,34674,70149,66366,23311,32605,65077,16934,75444,55575,60278,58386,57253,58523,32253,2957,61888,13748,36447,56269,60244,89895,33036,44802,41332,60296,44378,91270,57113,89689,83658,54195,61233,72732,85723,47128,66999,39035,64459,97693,73461,65545,31461,83214,1175,97304,8366,56870,62115,16310,87385,53619,7857,78968,37656,36634,55502,12588,21688,39659,51089,73358,20110,37375,40231,29980,88379,63021,59564,27739,20681,11898,152,83951,62171,77733,34002,55974,24016,63455,34312,80248,17158,94775,34159,70934,49844,86110,87647,75104,62792,59744,6498,26506,68927,17131,37446,46065,58211,29096,50142,81038,47588,28438,96900,54693,60929,49540,77388,74893,61714,17402,27714,79634,39644,23944,87599,8441,9136,96289,44153,32158,77723,72302,3952,803,11765,12165,41236,22906,37846,84267,59534,83938,6280,35064,9183,76291,49614,58275,10283,90371,56405,82702,72124,18750,55788,58660,99233,54323,40563,76678,58774,48766,78895,33684,77776,62079,66596,58908,35870,41055,87243,27254,43518,32619,58912,84962,24208,10645,89736,71485,33546,49010,93434,50647,73932,26097,31774,62294,66762,6646,80635,67090,51873,23951,28507,40258,86087,42480,28163,92475,63755,18153,88016,32348,35087,16475,33315,17659,32998,62572,2711,72992,79970,95286,16968,45187,93410,22405,14088,31872,16919,67688,47295,8952,97831,82195,68105,86075,27459,34710,15377,32946,89798,93725,44915,48143,55202,6669,57310,9712,80230,10555,24140,28901,10200,31043,76955,80121,44797,22570,68128,81786,31048,20978,12104,4914,14983,21402,27968,18545,18219,893,46580,25575,63759,40739,42952,59528,94427,33926,61225,15449,24721,95127,21023,80858,72264,1156,58404,21494,93392,22764,21665,82802,90502,77550,48259,73465,48425,96445,10906,61596,97369,33379,37624,96872,10614,28802,84185,79633,41790,64010,73022,29193,14662,42146,79531,1521,33069,97810,95477,52982,74482,52072,89119,94275,29923,14027,42835,53518,30701,63180,88921,34600,23837,6069,6716,8741,6847,69437,6399,71788,94761,89983,38572,2741,93996,73709,89815,85999,66986,9521,87133,35898,70507,50543,23119,35846,94729,39605,46635,69778,1377,14012,78376,40963,74039,97163,1129,59199,95963,10762,81276,34118,47046,65183,91845,12070,39428,10592,96457,61215,47266,52913,71315,29189,85282,37108,78300,84481,45337,79853,53255,87447,9339,4538,35860,75614,45428,69527,59952,96511,26364,41706,65838,59107,23079,59404,32934,2510,13021,12032,14037,4195,78831,86354,90058,39330,23343,20687,80797,66712,91944,61305,62338,62062,8207,80708,87923,92800,60634,1427,4937,58121,74409,60132,84061,50272,95309,520,20415,57659,86527,27576,57414,30347,36496,67914,80154,52926,93422,87452,93164,52785,52644,35199,17017,38716,24653,41161,22643,30120,73887,71714,74779,96656,37058,35195,79114,25670,6357,88831,3259,18067,7416,91421,199,85873,16724,72969,42760,38597,93017,1059,90836,70502,71250,8862,14754,6544,97727,31100,97815,70298,83170,90725,27642,51932,20603,83333,19691,39729,75277,35012,47885,58555,48389,49662,95505,46276,3395,99010,10226,89673,1883,55165,33239,31693,54027,44263,39468,41345,62195,50062,91017,30412,72104,18959,68329,80403,156,65435,71405,53422,7694,34233,99968,76463,43786,54420,44020,25146,85038,27111,8652,58645,75924,23699,39205,77735,34152,77945,75037,23013,27640,3733,28705,65647,44352,43134,27095,98525,93409,14921,78019,30429,5634,26343,94298,9805,35548,59094,12287,91667,91704,10363,45816,4973,35392,62624,95151,80513,38464,84982,42925,61362,85222,92409,1021,5968,48623,52770,55873,48607,79629,94185,41944,67854,88648,63143,24596,48123,33324,1977,68899,65518,17046,1091,46281,77347,50982,5714,18167,73526,19470,88488,66646,80291,93827,8649,75790,42235,14075,38720,10528,67840,1425,52976,64100,13533,40283,51997,87417,39391,39146,94779,36190,68279,78563,7109,29456,98814,23423,69702,96444,10945,72886,2056,77136,45960,93231,81696,90038,78043,98279,26507,75743,85176,76709,17746,11986,66859,43173,6081,10757,47651,27939,89541,19344,70569,5889,48970,47964,71911,40536,20067,24916,94962,22602,38767,79337,36920,35809,83416,58092,57868,41256,13954,12048,59143,21645,80331,5662,51986,72840,44383,26221,45553,77101,64431,24598,84305,21077,23643,24397,99679,96361,82764,73274,11579,83301,50113,41208,70297,24358,23202,6920,1112,52886,89636,10950,65407,53495,68116,35490,33237,28894,19159,64979,10429,13681,30959,82887,82194,84403,67025,3585,10422,55053,66744,54729,27741,1350,26600,87627,27556,18758,9800,30421,13364,79467,69926,31703,84820,34578,64151,25514,58879,22494,85565,44954,41615,6675,88215,28816,5916,99483,98137,7113,56207,30137,3455,67152,29609,88397,92749,93507,99411,7345,88361,28833,60038,6981,87375,16721,41864,34182,90875,78307,10090,71766,42937,6831,47562,30146,97042,99380,14401,11513,78617,83374,65564,94204,38601,6413,27552,96411,21119,72004,6862,34448,50898,57084,66725,42095,11731,24780,84605,35803,61803,18817,3534,57627,79805,54737,89973,6867,17723,62468,53502,51894,37012,38970,69026,53840,27314,44545,78552,85514,5388,50241,2555,81551,13633,21051,15371,93780,52925,73324,29698,79816,22363,85214,32301,35099,72872,2473,42752,68479,55932,93357,13995,76136,89803,9510,7772,1847,59435,40947,3451,35500,73929,32514,66856,4494,73402,84117,72870,65854,13754,28405,11466,46265,48734,17786,74982,31141,18909,3469,92334,71896,13319,65065,29784,53222,71967,68029,53591,68738,78106,80390,41895,18818,93955,68357,52851,3404,25518,46112,64636,65214,68686,42772,45775,27890,38203,24730,28941,28455,69297,55696,88527,20278,7509,33474,56525,11949,93561,74967,89039,75203,14917,32434,13376,80311,528,18493,88795,96674,18639,59888,27427,69262,16913,52645,82434,95973,54808,96657,47962,74798,9080,97107,96465,59047,88235,7799,93826,92508,26784,58541,23864,4554,12571,14603,21474,54593,37402,6211,59489,492,2613,90540,65194,17468,46172,47271,68217,57008,90891,44862,43894,5907,71008,55610,9616,37463,30756,86592,34738,93171,87429,51044,75128,74070,41074,37059,33754,2855,69554,14789,37460,79550,51486,87881,38357,77316,21558,78077,17557,44190,56518,90797,42541,6800,83230,712,30779,71525,29708,42861,17177,29560,54305,72174,56047,77212,25433,71527,13378,41369,36663,18768,24102,10837,68806,21156,5999,54066,30463,67618,17692,15983,76513,81565,67019,64321,54134,75184,18688,86611,2073,97023,17608,98629,60798,50966,33955,54083,14548,92771,896,28976,4107,24764,87419,30537,48752,2678,88382,29176,4130,87442,33541,53667,48068,8998,52108,2452,84871,37187,94055,24603,14109,64324,19848,20542,79999,29635,12375,8198,84571,37267,80003,18388,39057,23493,67115,97141,26743,65716,32095,8104,7607,155,47252,54394,82247,67060,13205,32109,1381,6999,4784,24026,88064,63876,65736,79717,64779,70165,93121,95923,81306,27917,38559,19222,48004,85164,73017,67915,45035,5505,43923,2792,48666,67912,58693,36806,57842,50080,4873,57850,65583,71636,97476,70557,34653,87518,57460,87758,7764,60927,82384,66178,82886,27050,84635,20530,82076,3637,90918,13564,56254,54468,31171,54055,62663,92731,31431,42505,5477,72894,88132,6511,95683,31057,63102,40064,57562,6214,27190,98671,57528,74429,23971,21416,54639,31831,90824,21308,89989,76316,54241,88063,99467,3108,98756,72761,18660,92253,93071,27946,42031,89943,51206,60906,99941,57909,71214,58979,81688,58176,2148,76627,1969,55324,96706,45452,11680,24875,64421,19814,69206,68456,36559,22605,98178,10520,63150,77600,38792,33472,50259,28560,94394,68333,141,84969,10909,24009,71187,54145,3781,72417,8010,16162,96893,44385,3542,2810,34520,70899,21942,32266,93935,86200,82465,11469,31907,86125,44462,3483,49403,12100,7865,45160,49981,78871,3934,71662,52616,14858,17320,47167,46614,26116,26861,64704,70417,14759,30029,65188,65059,22219,63077,64628,25868,45639,75450,98438,11488,66976,62723,39901,48498,8573,98827,35673,25629,53980,57573,93380,56887,73771,26255,53050,59905,30471,85012,82304,74017,49559,5539,7083,95519,18228,55871,18296,32627,76398,84641,54505,40374,52217,42779,46291,7130,76481,72739,25380,88074,33413,41356,15349,82057,54211,69925,59866,80016,58562,56865,84485,70472,41115,34584,8699,59405,65889,57988,50455,36316,92979,63276,32839,6432,64974,46151,86271,61112,38479,47112,39162,69190,54803,50899,24150,68700,490,77664,18612,76609,54327,10904,53604,56011,69058,13740,12408,92213,27467,63880,83294,62552,59867,7058,73662,10037,38535,19768,22146,12940,26049,8629,97975,32813,36667,56065,40109,2447,93110,46522,36220,2275,60629,59813,51060,68392,92814,37355,34783,98622,34177,76171,95953,65324,45344,22888,796,84320,13711,34358,73971,86823,66527,94578,11607,22470,85661,40207,91985,10753,11692,75017,97425,25276,6990,35618,96715,89852,19651,58227,18089,43706,73162,57706,7118,99702,4509,66991,77991,34851,37828,56945,56775,93599,35201,11169,81658,90010,17812,31324,26759,62821,6318,97647,28647,94240,26724,31303,81910,21449,83220,61936,88385,61496,35114,71490,9948,48937,97819,21520,20152,41114,81019,58255,79246,46175,17851,54643,49802,60986,3734,97269,19998,87939,32541,84167,84194,24554,89409,80645,56647,64524,68187,57245,73754,81062,75267,3554,36259,97152,20789,167,6204,99078,19901,57117,24932,56233,12959,69885,14382,88109,61819,77262,81590,46911,87014,89231,81334,18922,37362,34515,72038,95524,51668,76690,48720,37655,34659,98456,68870,70033,11333,33243,50420,28509,15929,454,39197,36041,78353,22116,77071,80232,16211,86582,12152,29356,9517,56264,58170,51481,42151,12876,18848,19798,49043,47870,50412,39096,31826,51496,35610,63715,57106,99433,36642,53213,21578,34907,92014,64,97381,62579,86321,63399,23928,40937,57078,95020,28398,79128,66455,16884,86128,89067,371,75592,46400,94256,44975,48605,86793,85274,35574,58226,5626,72046,79869,44508,60047,85468,61956,62101,94037,77937,84530,85419,21842,72026,80943,50837,94684,88344,59215,28023,84772,66052,16630,67086,81343,35439,28127,81749,50930,31333,89421,20766,62148,17299,16817,94001,72709,13014,14977,58967,47845,76217,15590,69690,79018,90633,43332,67120,52190,70823,92656,39080,66550,49616,68332,61707,50445,12795,67551,69995,55993,11411,27346,19570,8880,74068,71625,50202,72898,2955,87225,78584,56643,83068,10948,73027,37358,32401,51853,97640,96624,81403,8221,36463,21673,63956,49336,25448,95511,66287,33087,67855,35291,55781,77438,23852,73323,84596,77255,99685,28556,66855,60731,69802,32955,98090,4594,83902,33145,99694,48410,64851,35912,68702,54964,51970,35670,54184,20253,38707,68970,69223,77793,15173,26235,26115,92908,31362,82896,99729,61643,75169,64248,81876,92881,95640,39308,61522,76249,49073,7518,10235,14593,19194,75049,79926,7296,4603,11431,46076,44935,73947,95467,12379,21920,54045,60368,83392,77324,10231,29974,70234,75406,2491,37710,79602,91146,4208,7449,53241,98440,3309,99517,41977,53745,39798,44866,10494,18699,4168,33594,48539,39747,62430,25121,98909,29670,45216,10980,83024,91519,91163,28834,73251,8761,66786,47259,15742,1310,30037,72062,12349,78039,64692,23866,81545,19737,47483,52791,37439,93452,71833,30026,66942,87577,74502,20046,83494,40617,9989,73869,23322,77263,25680,63617,37314,84807,911,73252,62937,57188,80324,4414,42123,56327,19469,82222,71340,3760,13838,68841,16026,72379,24697,34487,46737,53702,22428,2887,59236,20623,85113,63393,33258,72795,29314,82107,35388,36978,76547,75247,29329,64061,35739,81718,65247,10158,19200,10126,82959,97924,75848,24157,42187,42536,40310,33794,86426,3524,39323,95386,80108,39327,77286,18710,26976,80696,41988,91059,54632,22346,80685,77925,77245,43925,81592,51279,83707,25190,98291,64949,99282,41636,60745,64996,61690,27877,4423,27292,46047,20112,21420,73147,98185,964,53858,67945,27124,26800,17101,77933,28551,79447,59394,17072,76408,14016,57632,23153,88217,46124,53844,52660,73534,17668,74550,57170,60578,11505,6659,97370,32417,10245,11126,71195,21839,56953,10207,45046,50840,29332,55138,20324,21347,55240,17439,62049,95542,18966,87620,97533,13645,5218,33800,19712,64259,65873,21224,89058,58315,91117,50997,53864,15153,19009,89402,5003,3170,20450,10326,46701,74117,75380,89086,89422,93080,27729,75232,11916,4918,16885,49453,75956,54708,54261,99364,55562,81330,4844,12439,33780,70181,84858,14298,76733,55985,56303,527,21017,1623,99848,72741,98410,39043,22327,38109,48321,74419,23663,20367,12547,9165,80176,19815,56901,12013,27396,91499,22674,2821,54713,37555,69096,97675,5989,83673,31395,85337,58535,69782,80437,13294,17426,87831,61851,23671,47600,38890,11473,63210,35443,98088,22439,79577,45537,68678,19187,47412,23813,76993,70548,37194,8494,63066,20629,52772,6978,38791,75160,20707,11618,64057,7394,45846,95491,70343,30717,72051,94604,79343,16306,69536,1793,23626,76766,89528,86714,76602,93680,37762,63144,42668,16888,92867,51114,78543,24992,4742,66247,63483,8536,57179,59461,69147,53271,29985,50588,12932,13026,79277,59088,1600,61331,23770,79104,30802,53822,59162,83129,82433,83504,22538,43498,6272,30576,71995,91940,95656,27567,8787,26271,36823,52688,71587,87210,40430,89182,14437,92159,15052,4385,16955,91336,77504,28388,26288,89515,72788,53197,60605,86268,19965,80786,909,59573,73087,25577,33056,47607,781,77512,30710,33182,74942,93646,29735,83906,39977,79242,1193,8961,21660,16017,80008,9550,26308,90509,12982,91026,93575,68977,54535,13682,98538,27655,43413,43460,79584,24071,45790,62398,30992,61376,19171,68298,12392,75136,10183,42705,69713,81009,70858,37413,78900,17144,65192,1948,80957,45214,62387,90034,24937,4141,74778,77522,74724,49228,80408,97498,23572,35612,24573,31776,37378,58032,49786,37005,33444,97923,90173,51278,86821,23997,1169,13274,64591,44685,77252,87600,66515,34579,95017,74134,81785,89646,32235,75000,21992,28545,90514,16778,44093,40746,37467,67857,69470,79095,94088,78345,22419,216,59848,66484,49714,51025,54222,54153,70735,86593,83378,29795,57445,9999,25980,50902,96227,4077,15362,87212,28418,48589,65112,71004,84450,61988,30726,44377,49427,81647,30326,4427,16129,35740,24494,4579,24390,27805,9590,90109,45037,29468,94664,77963,67038,95082,65053,61930,82375,42672,42100,13998,14004,80253,8193,52690,21823,91039,48296,11523,21671,72515,15419,30734,75599,3806,3700,32211,31123,28276,57719,36579,6223,77646,19732,26975,45065,86191,60359,34753,27764,62403,94562,42414,24090,54730,25074,30413,34718,62509,49548,3318,36638,52308,51527,27452,14100,22072,54884,7726,43780,55692,14770,24327,74743,55110,19157,68511,51189,63238,78242,6463,35049,69302,38200,14137,24168,39387,48416,51553,89272,98026,4116,12590,88702,73695,25721,58309,14203,60379,16205,95265,53238,96983,6481,65812,35086,35523,32465,80140,7575,97485,31944,73690,45503,24051,96908,89074,56422,22805,9025,91177,41138,20927,93722,57279,8984,7993,78139,88934,39985,21262,63833,44947,40023,2897,75739,16592,89599,34124,75343,43617,27937,52649,30330,66414,29352,87858,7288,30629,27120,78589,2189,10603,11071,33905,77815,36198,88480,32375,76949,34125,25771,48838,61315,5445,90119,87657,32419,73840,81300,75075,37415,43511,38098,69733,62416,59480,12280,9284,81466,75529,53718,52357,3607,65534,2923,61802,71016,13827,27146,44494,66820,301,78953,27256,26542,38659,58534,52299,72299,24001,77131,70710,42850,26435,16696,9771,61971,42254,73904,31152,27681,30167,82093,99737,16458,49847,27077,98957,30932,34742,13669,49850,95028,92662,8281,44428,70423,51713,42149,95600,64801,42020,56063,94421,94961,13369,91757,41876,1426,11666,97286,45533,66755,87650,66393,82497,55177,20788,90780,84575,69143,44938,2524,36268,63024,98099,29583,60171,44407,39319,92275,81779,66948,12809,35603,75499,91439,6425,5754,99292,78499,38829,51806,26766,73215,10465,20642,9231,2680,3255,5201,70985,61440,20614,11640,91891,71111,51649,56715,8446,65306,97820,68053,13016,43711,47323,20114,48532,96088,86964,92099,4821,34044,64930,28387,82940,63115,39942,58799,51554,96799,73496,32413,40238,82506,74968,69119,47041,12670,38561,21821,69498,59412,52901,38191,1944,40203,7156,7364,30588,41582,33140,35033,17719,38316,45496,55174,36713,20313,8358,99438,39540,23738,73329,51978,78943,59832,78919,5791,29112,62449,33478,11603,80330,76129,2308,31861,9507,53009,90775,44772,48402,35916,54023,42778,22263,90184,57935,74155,32418,63545,89246,69851,41809,25751,55855,87050,48504,57943,84231,97622,16107,6598,69881,93854,3878,97296,10279,94841,88645,60052,75552,76145,61892,23611,94800,15464,67044,99712,44569,25517,5420,45715,38336,5053,27561,11279,87988,88406,62588,56984,52340,41716,6838,30523,49880,22786,30731,50405,87505,43298,40042,32695,35503,3897,2811,55532,76825,93138,26232,107,17371,62379,27379,26806,99708,86865,99901,42603,27926,6689,39208,5673,16266,30440,25969,15958,23276,7934,72217,50284,26277,25218,41486,57303,61786,58526,61655,79580,90789,88572,90991,34127,84805,77170,16410,53077,793,8026,635,55382,6376,70190,79294,53679,9554,5027,19419,73071,23040,8927,59389,48422,26655,50904,40077,65541,93370,20480,33927,15016,57618,82558,5030,46068,17996,23776,95461,15890,42092,24571,78196,15718,94019,65860,25132,95436,94430,50410,75713,38873,74019,12154,63087,19531,54846,145,50285,65291,81926,30385,59915,56139,24039,35390,19945,86514,43073,25153,34142,12191,24260,90410,53693,25674,51834,61852,71216,13300,61651,80766,44367,57442,11501,14767,17222,90814,80442,85029,99687,4278,77254,7641,31523,68381,72194,75861,12647,69867,78838,97614,21313,54647,7953,34286,48592,17833,62569,74618,54542,89924,16420,58451,77002,88610,99424,47634,34977,92608,85869,75574,94940,99658,11281,10491,59508,37735,18197,24627,57053,50431,431,91450,42598,12819,47151,92635,6232,21294,82741,68794,46238,41798,15331,32556,60380,84664,49339,11538,85671,84235,66412,88313,26209,64756,38313,61138,72945,70230,95081,53828,16034,42374,17034,61220,2017,84393,22157,92969,34346,19512,26832,47899,64887,26301,38359,87602,44930,56736,63338,25161,9605,12818,81296,60123,89412,52040,46997,12452,34235,66064,20876,86697,57444,59368,65405,78440,21735,39893,73645,49303,75990,3613,82354,42385,8322,35377,44365,21854,65646,32999,40193,72844,41958,54546,73590,84918,32306,61081,92124,31802,56565,22330,61049,78337,87821,61179,17855,78185,52957,40748,76192,25134,27072,78135,10372,13293,73398,21676,89749,9780,5839,78694,91193,65580,83879,91698,11810,53226,33602,86312,52179,28649,74935,28674,43485,85578,81707,63580,52271,88247,41600,21028,57225,67263,78815,13557,40326,42475,44284,43578,67436,35212,23943,11852,30303,37598,36720,83232,35282,95276,61279,98155,9984,67380,10410,26077,10434,25274,85349,49749,59519,40980,19246,61722,654,66338,73390,49262,68360,47131,26979,71299,83020,87670,5814,60350,62505,183,19438,72570,67148,75888,63892,74217,69457,85720,3790,67955,52219,37440,27293,51100,94124,3377,9434,77055,4179,46095,96998,2924,61162,17589,37165,21324,84646,43719,65017,22814,42532,44180,1228,86962,64933,69833,21399,89750,98527,87319,22827,14442,93836,219,91862,91223,91063,69212,73415,43903,49610,90978,54977,19185,87786,55167,14391,75301,35945,62143,95388,64101,89166,48715,64334,56345,66169,50558,33376,91961,65628,13787,75107,68530,1823,12939,23239,23107,61919,41146,77808,81264,67407,26533,74333,17872,45477,19101,48315,94999,35849,99653,308,93335,36831,4355,47284,62343,2775,68316,7330,63370,28911,67302,39957,31194,51940,44430,90982,32852,21728,66611,45087,80990,20817,93376,52564,98645,29760,48476,49986,53707,22644,46703,42595,17321,89380,81295,50916,77565,73807,71441,44857,38023,79882,43531,364,60926,53458,74603,31293,62780,46973,27135,93668,36997,27226,39641,66150,49859,3313,41045,94039,90701,55531,69938,35441,13295,88024,56215,90962,30605,79901,40872,2974,63419,57952,92958,79754,87804,18964,92985,59741,45683,8167,32216,40029,54322,91964,11097,5655,16969,71107,30996,16585,38230,54807,70995,55521,17082,60320,32555,86808,56049,91953,61184,53229,93911,19579,99402,68108,86750,75788,96632,68995,5749,53452,75657,96790,90624,41605,78331,58391,91907,11733,42990,17944,93384,59587,91120,94072,37335,67753,59923,29621,24303,6373,48671,24707,36426,45008,82980,20501,17198,12156,88599,83977,92196,22150,51618,59648,57624,20921,1040,86806,25389,96964,68869,45114,15949,25793,21243,87448,88902,63251,25053,53935,10015,39958,28875,68074,30341,42345,65421,18148,58897,84618,27191,70665,24504,36732,1166,74845,37667,16125,5013,7149,24706,75907,17097,41124,83550,66575,69024,66262,56295,20341,32204,51146,20527,85686,36404,46462,55292,92455,94701,20721,23021,67476,19022,9855,86298,69333,43347,39556,94028,72647,87476,48035,16216,88468,71219,86659,27258,84401,95409,33184,17750,82860,69790,98068,26158,42670,52954,49787,61687,58978,65296,43280,75395,31326,38135,13505,73632,551,12528,47258,69130,79589,95750,31862,15294,93627,44642,72867,10023,4136,63465,25310,16295,97077,35202,87845,99163,31065,55243,77790,70625,16492,52049,86847,3588,39413,35399,73744,52650,56172,19667,81932,35151,73336,24767,2082,13612,95385,14329,79240,77981,33469,56371,45410,28872,15800,10971,23249,60920,12270,73206,69758,54607,89878,82553,38655,93636,99420,18731,1266,60539,50586,54532,2854,37551,545,93168,63368,81132,71913,6286,98386,16137,20245,34269,82415,29955,14995,28495,87312,17077,67604,17890,11770,91227,92442,93890,69360,33738,42384,35093,23621,77274,30221,73078,28263,41373,70599,6953,76866,6793,71498,33305,84742,91280,12755,56301,10770,5892,68677,79422,55650,46279,89053,73794,5984,47577,24541,91125,91333,48067,57364,95771,94030,95873,5362,54874,68284,38400,56110,65959,17262,16106,41783,68875,66418,94054,55916,40830,98350,67434,75819,67812,12313,77317,56581,7127,60170,59793,12467,81468,93063,80615,68368,63847,32647,94488,39322,31945,13994,73913,54297,29455,90781,23897,13309,28129,60453,68422,98422,82779,22238,81554,93451,98210,41868,80648,33505,68501,19869,20395,25193,38628,92874,68880,5338,41607,5831,98343,67293,65552,40742,82489,29886,43177,21360,34648,69159,40845,25338,13345,84654,27432,28922,42126,27478,55475,95284,13731,55542,14636,98610,30679,69069,31578,68260,23873,4072,50975,71758,19291,26881,47546,28659,47419,30862,35387,18655,20982,84955,26854,83421,50012,91820,85308,38305,8426,90337,30100,59386,78482,49024,47731,85927,70157,42773,86008,46252,84330,94347,75425,78640,25823,19160,60873,74230,1708,23925,59987,20646,55418,40788,80592,7735,95487,97555,1157,89369,10154,72599,79155,79326,49393,71109,59801,4908,77407,59788,21504,78802,76515,92462,74357,13086,89764,46969,32329,47782,49068,34806,85323,23815,70265,99203,83936,9174,94395,28552,44471,88272,16165,74391,3744,6144,935,97456,94786,33707,77060,1755,36818,27614,43672,26546,30687,56669,64404,59926,1580,42401,50872,90626,27001,29043,17669,28760,36450,47755,9476,80833,67030,81979,27971,57546,70701,45551,23722,13451,26473,54474,52592,30566,21589,44594,77073,62834,99676,38404,66637,34337,71558,62186,99222,61308,30414,81052,38968,83943,35608,62990,57975,32826,25147,59429,84948,41481,51266,15344,27087,31930,21487,49643,45290,51448,71772,76880,3977,71130,6349,13783,27995,89977,37638,15835,55496,47007,25559,80195,44455,14435,60861,58491,29778,40618,87688,50669,10611,88603,50397,96417,42084,76350,56652,6989,24173,3668,6260,64367,60830,44396,43131,20910,69540,85189,47754,46841,47155,2069,47937,28909,30759,2117,91043,84163,90537,39053,69811,13692,5230,93043,22469,35802,15347,53857,18982,27116,66453,45302,34790,4727,42751,89965,59486,49689,46870,67058,64046,99404,2726,7314,38059,19094,48290,39444,23080,31803,39389,82948,26265,21902,2934,77884,71055,60622,63581,44438,32878,89370,54235,65081,66371,56243,13985,859,5602,86276,89778,45693,6735,93378,13184,85368,45311,39937,22305,52970,25404,97065,36435,71077,99318,20611,20990,11196,48821,69027,11414,47375,36827,16305,7251,89476,70937,75840,30929,78987,52819,36205,8674,33454,92959,91286,2324,24222,67284,67838,23451,69890,6441,78689,71358,95644,1159,92854,28881,41625,3707,16691,8973,5866,34589,34227,57803,54419,9884,82523,81840,47510,38633,5533,90152,95788,28947,12081,97194,78690,60332,54260,30022,15447,52669,77173,15562,429,26368,54983,94443,40001,57149,68424,61617,8362,38001,1417,48744,48407,23257,85090,28209,91316,51327,15716,23052,3610,34918,7685,65316,61793,88363,21528,8131,86730,27140,91968,78487,61412,35911,81621,45419,15672,75304,2028,41879,70733,63853,47825,42661,35964,51908,75417,69424,2446,93679,72567,55951,43969,13671,96297,32963,36861,11595,14291,8695,45231,86226,24110,42809,27601,69211,2130,43948,36926,45200,90066,42351,98483,64739,6209,75307,93800,98016,98059,29516,80256,98628,92461,37668,67052,99615,9468,3273,85876,63429,57900,65164,76897,57440,86683,99693,65733,43787,71605,43302,40473,62617,82517,41667,86955,73506,8496,9849,10865,1715,81639,6358,10777,88373,49378,91751,13846,2155,14234,83045,75424,56209,24984,2921,32499,76594,10744,75261,76279,32995,38738,15471,43983,89587,14693,66009,52213,32134,9636,97210,73475,65906,69694,47009,60207,85020,43277,62253,73791,27816,31139,4739,72230,80582,66564,73014,16209,2481,26173,76233,32877,28914,34055,95910,66792,16594,69832,64902,32075,21818,96261,6820,97070,1299,51754,38065,59557,98392,9110,62495,51508,71579,94650,4817,30948,40230,39140,78873,58529,74307,42690,52559,92548,65283,80917,76432,68263,37856,85806,27107,1095,1553,42676,65909,96797,66034,45686,77899,21952,69042,78116,393,93768,93816,48189,73588,22107,2072,97642,69141,75223,35449,95357,5919,41089,42453,21898,54078,66586,39694,31913,85695,7386,46007,33507,93417,83954,88156,70683,58284,98035,31685,49322,36795,29665,79729,6323,98566,9425,4770,31356,29421,23652,17187,4963,74667,50323,88903,34514,3219,25587,37244,68779,54278,8922,61346,85275,76042,96278,97942,24192,46679,83264,86577,25931,13664,88943,26926,20844,50006,94151,81741,68715,10201,80402,69513,99146,43918,208,38704,48572,63910,9698,66189,50962,58461,3327,39988,52861,80738,17683,42727,37110,34680,62974,66684,59589,25792,40843,52263,16996,69514,20246,53585,84682,88293,1846,83240,52782,33136,9539,21744,40003,8767,52553,52840,46089,742,59082,55023,42162,41335,94311,15032,27194,94585,1696,98058,97788,88622,19924,71430,73725,12193,79401,23802,54144,44712,22541,1527,44917,29571,21136,92631,27779,21018,56799,47701,98166,92259,64056,65680,98273,69142,43262,75946,6494,98515,38015,78351,42079,71972,94052,19868,61724,52434,45996,1626,22443,51203,47108,17675,10572,8241,91134,43649,2904,23520,27438,85290,60022,14797,66888,48058,71873,16222,24362,5733,95077,19572,19385,63146,12947,27441,67313,71166,11329,46926,33498,89394,43341,74393,73968,45283,2918,87413,84420,23222,9327,94276,74725,75903,10843,39877,3430,98918,95297,89285,57146,35992,13431,85801,86362,90743,47806,83330,16561,20055,79542,72429,98216,83788,55581,57687,32808,87576,52334,89490,63344,51432,5697,5194,90081,60969,85745,55971,24495,30265,4823,14216,42257,53874,36530,10147,79819,97846,21141,72955,72392,68862,37232,56613,83318,12441,60325,21265,67525,22939,28176,82316,71578,15852,14473,78544,94970,30293,13384,93149,41210,18572,97939,21369,21157,91806,25166,40254,49086,19019,53729,40338,41381,51568,41741,23938,14849,76154,72698,12158,65618,42815,24726,21705,754,68921,75858,71296,2346,10748,88957,10134,36169,75718,61378,76525,79236,18299,19668,38526,77047,64746,81186,68339,59185,39002,39233,52100,70786,11908,7172,75488,31305,95844,10501,66695,48454,16258,4625,59356,84560,25233,56163,44674,60673,58603,90720,17988,48179,17711,80669,30087,54974,13496,23285,78228,89766,72476,67704,46392,57138,12326,55417,26794,95471,61654,10113,96623,34980,76705,85621,24909,16430,22722,96311,28066,99442,3752,11966,77702,70543,90298,46980,93880,34735,68474,43101,56977,94979,25242,61053,29004,81632,59116,8861,8289,21731,24289,51983,53553,9214,11403,19559,89810,23336,15399,36170,71786,22276,72142,81962,45648,37898,9170,82596,3417,8146,88544,84829,76672,16265,40181,73797,93474,33770,78826,96342,88117,48109,3261,69244,34123,82468,31268,9190,67578,82924,40575,78362,25506,72711,97541,33888,84333,57694,98431,38258,73437,16357,9629,18651,11442,36256,40512,69166,99306,43047,57614,35138,14141,41174,14568,12906,78432,82013,15183,80703,32872,26661,53685,93830,83981,16423,69736,18406,6230,70964,6418,92286,79908,60925,80410,4771,94874,74236,82454,24612,83466,46482,90465,66191,96233,18734,21375,70344,55196,33476,98560,85802,99458,52790,50487,49810,85979,226,5736,90855,14869,20189,39947,34525,49669,27688,77962,71808,8448,479,84437,75971,89585,52825,79984,62422,11884,82807,10305,77064,89201,71574,36670,11978,91523,84517,51209,59118,25564,29627,58340,70984,85454,67296,84501,53930,1171,91327,1473,63753,85729,2116,18012,73566,14279,47977,83534,9113,23339,48686,87164,51565,51843,80709,90321,57498,25985,23571,83819,89762,17041,67496,76785,98377,59865,7780,58719,4822,90274,89107,37603,22755,9608,94644,75403,22197,85809,44676,84521,78385,11010,46855,14191,44025,46845,69251,93069,90672,67770,24290,25966,15889,9936,80510,55283,69964,66145,90176,17606,86839,84494,40540,45036,15458,60887,87005,51288,41105,88846,96951,44607,71317,51789,34504,28143,65762,25940,47427,75948,93031,44524,44125,95115,91767,19148,25260,94563,16836,86334,3011,98752,86249,79417,19686,78532,59764,44162,30748,51711,93640,94897,5229,7191,20399,30104,98017,44911,59622,69447,72710,7054,24426,97319,86252,11590,85851,31570,3599,74870,80700,90838,12813,90204,1455,40752,82051,56547,71814,36722,30286,81606,93400,24720,47466,58990,937,49216,23095,78497,51820,21955,11381,72378,84375,98029,51489,42428,40960,64693,63041,43505,24047,50221,29895,90733,81378,57998,43613,87980,73781,24177,88466,15,38719,47740,57582,40582,11463,90035,82796,27845,69205,67941,40706,8259,90905,3336,7710,79645,57593,86837,97564,54762,67811,53345,8203,46588,39599,36359,4548,9957,44937,80128,36293,46910,78002,48440,51742,15265,52045,20390,61390,18481,31042,49534,87402,39312,72587,47549,45530,96248,6305,92043,30187,55423,63207,82723,29769,16932,71350,49555,67572,59370,91494,15779,32888,73795,23032,86374,55113,20620,89768,54810,56413,54932,75427,2944,42926,14966,86229,79418,20575,29823,91606,60500,57,73219,30883,20598,48628,40702,61772,71538,40328,33396,42280,89141,61370,39860,46344,38243,11812,86228,17500,84931,31920,54181,23709,50236,97568,7778,98887,25627,29810,2869,41522,64358,3643,93449,31847,54835,21557,76376,31917,12371,13463,70050,8434,76740,44892,42023,85563,66722,36154,89894,33364,68793,47536,92616,45435,37809,56081,26491,11288,8503,40662,9278,23662,47542,47593,16497,90809,6968,7802,32359,63533,38424,99632,86541,33208,15551,23310,26070,34114,27967,37403,28542,94774,52421,59364,97074,53890,51950,83012,98011,53558,19874,78213,82015,35471,21152,91957,66756,84963,77890,49824,80132,57347,44829,82831,75251,39613,23908,90433,35345,48603,73478,13866,25745,3856,30220,30243,71144,33206,48059,54377,88378,45308,20719,65866,86513,13268,77590,97408,80579,71861,47778,31332,91887,19178,96169,2125,50702,18458,51291,79346,60515,86086,98535,28269,86567,76865,93225,43628,54381,67833,75989,98710,21625,47086,86511,4101,10819,24985,36619,89169,45599,98203,42376,87905,7585,71689,32032,34727,89364,51037,673,60718,7341,69099,40609,46987,35951,87499,23186,39144,32162,15473,25331,3955,6490,68166,50584,46992,24278,12366,76754,92684,92383,56028,15703,58163,76255,18514,37218,29469,93866,24147,31778,46978,40994,90796,19169,90742,44997,75972,25548,62680,35961,64250,71903,68649,76002,11975,94391,24966,84762,41028,52523,78813,29084,3575,79035,55237,88486,18808,52259,57055,37561,35981,82756,83413,36830,54476,30153,40652,80735,25011,44840,92584,29811,12292,78315,30722,35370,15649,72826,741,90912,36415,91224,40070,10116,98051,87451,78447,21810,41490,65466,89426,97301,64875,88181,79263,78718,957,90564,86831,14623,7106,54891,90434,5645,69734,24890,49132,8085,97094,48354,20198,44049,79544,38554,53148,89654,27936,94785,57397,9059,56501,61574,47326,87438,42111,13423,36309,81209,44440,66666,26518,58018,76686,61828,13700,27874,51499,47264,59213,20832,51947,98908,48245,25043,87765,5152,70251,24370,67369,82060,22181,26582,77895,99614,44940,81723,47933,96242,76353,30557,96294,96761,81630,25595,27456,78945,50371,57925,9847,35597,69839,97113,84751,7101,27711,84083,98554,77024,62333,5599,26103,41275,14893,47620,54056,71748,32194,51408,60944,79509,60721,83884,67763,55967,71803,17157,20741,4173,3466,31290,2025,12205,27547,65921,27905,30323,21218,29502,18004,7902,58858,10483,21934,70205,95080,95044,38726,69319,23118,93083,60414,75916,35507,45076,6409,73446,23506,53094,34538,50389,67174,74238,44300,65334,41494,5933,23023,7499,10507,67793,97645,64040,76839,59936,63406,68129,24974,59134,40744,51543,96330,43042,43419,33218,56500,10385,3345,27426,72177,71976,14172,86071,6296,62736,23342,73261,76540,1273,60792,17145,42198,6673,75587,29926,87998,91870,19917,92652,84861,52874,78798,23892,35411,57361,24595,37577,14748,67978,23396,41789,97354,19007,9526,70081,80281,66552,74248,75477,67274,83859,59463,97893,90565,36895,9519,95026,28926,58554,6748,40674,21626,21865,63217,95867,77031,13575,68739,11568,20287,26059,33260,86926,62967,92769,18752,38973,75597,25628,35948,31190,81566,21140,96550,26484,58453,15932,20054,40272,68334,33539,18143,47417,25503,59217,16022,1981,33605,85888,83764,64828,72695,36602,34351,21398,89566,37738,95008,28350,39778,58143,40454,62915,31543,89499,23948,37574,35893,44319,45244,36389,31339,45066,13547,39286,78727,49775,49061,9818,6157,12318,92206,52535,23816,84279,12419,36935,84025,46015,49965,59820,67021,58752,2831,65388,89521,8151,32025,56343,1276,25936,28503,42426,45488,65477,36342,95675,13579,98771,79937,90532,82767,96848,21358,26217,36000,90740,9908,84121,55681,21464,64712,49588,56096,72291,4326,27809,51657,40886,21230,96317,68596,72649,58981,89677,16345,69076,90065,61720,85397,50212,10879,24311,11652,98772,31964,7671,56454,18883,43054,65491,13623,69760,64221,6135,79680,34197,54980,36278,14934,21700,27257,54988,51875,49143,27285,23106,50680,42734,81120,52047,91354,55545,89277,79368,14042,89931,5722,12033,81166,77306,92665,90129,20358,86360,80124,28651,84053,51361,97503,96768,61966,49177,48699,65592,21452,45425,94463,38050,77158,87350,57989,6729,88961,3109,51433,87959,54760,51665,39971,36689,46001,43963,36096,8640,6128,28602,94210,83189,65215,99950,65128,67167,25964,59377,72344,96765,58178,85232,54106,18781,88714,76474,49906,40394,3405,55489,3659,75797,55058,53461,37445,94886,38635,71005,28475,38613,58742,14355,59594,8397,78604,66936,32774,68460,31535,70380,40499,66143,95503,27841,4489,4828,87899,80112,11461,45091,96085,79642,37239,37532,31082,87485,58579,40034,1566,42061,90600,91144,68322,70283,42355,4258,71510,48175,23126,93629,88483,55832,17278,19028,40625,53427,75048,39262,30475,78349,47253,82749,37234,29752,38456,1237,41928,23205,89424,67772,18805,91753,33512,9809,18832,13620,8007,18440,66704,58834,84774,40712,85546,28477,81833,40267,68085,18844,16087,56829,4446,65041,6948,87073,71586,17190,70408,44221,3877,82330,31513,16945,93230,12739,76887,81380,50180,88946,98877,51474,39574,67800,74529,43203,88284,2361,42687,23958,79438,16707,99908,9558,64586,96193,17986,16569,25020,17445,66538,32029,42838,50435,86569,92715,52433,27406,36246,16644,46802,39761,93045,9878,58305,48695,76550,32658,54697,67414,53564,21096,75073,46295,86719,44096,75613,60505,14053,48822,53342,24450,43594,61661,48774,90415,73275,68860,98458,20635,56128,3048,31983,53076,36612,60957,42673,86634,19509,46245,62909,96704,63468,76516,8057,14430,89544,93234,75521,36344,15748,17326,79890,60458,32203,53699,65706,43504,97188,19715,65667,78846,12315,72191,20692,18253,49933,85831,45186,77999,82024,21846,75515,99691,56313,79297,91066,60557,30373,58850,89975,7862,24052,99202,22693,77350,30171,74086,48185,2113,37658,70345,84779,30755,10709,331,58248,45899,31871,66024,24350,27899,92189,55372,37867,10855,33585,26169,95650,56707,30036,39175,52305,26407,592,82025,95451,53423,30408,86289,46950,84021,26812,60909,12124,24348,80872,43768,61452,47404,47201,78480,20272,99086,74195,93973,7455,7709,23561,2232,22164,31519,52828,59069,61413,65366,30654,68000,10523,21435,62867,43176,91809,92382,60000,37870,65224,65863,32996,3307,84004,33553,45358,72159,33343,58445,10437,96591,55033,87119,51228,3737,17410,93029,21916,86707,17415,52960,73313,95793,39928,2295,39686,59967,3771,41266,84983,38786,63576,55653,91072,64206,9956,40354,93009,89971,92258,51183,58831,86900,26391,32546,79432,30873,13911,75328,93604,3956,28403,82124,81921,55393,25323,96129,9240,72492,43499,30695,47210,71355,28156,10350,38818,78292,80546,99201,57064,45264,44001,45151,30599,1557,54453,5779,36479,8051,81365,43243,84466,52207,42340,2192,40979,55570,49994,94261,110,4655,5589,42028,38114,93243,31993,35090,87204,14913,41579,24907,83994,73272,54621,46602,2182,93822,67843,5262,1739,92625,20227,24010,2212,54452,83396,56164,84735,42098,3322,69844,5467,83786,54755,26538,92971,4694,90247,94913,26310,58228,76086,92713,54804,92016,11950,9305,37416,61462,7591,44080,45999,25752,98435,56226,89035,71604,77387,9922,32681,84771,24892,23972,14924,95378,39258,96303,11813,92246,18454,68345,61701,68038,15248,48114,37301,22702,50798,72841,25508,11011,32146,38119,28745,41250,86474,82030,68802,46196,24678,33796,90127,71590,25322,95782,95790,71698,65588,50985,74100,45176,43704,44541,12770,38947,3509,26118,2942,64063,64156,87434,95171,41701,7015,11436,66103,93957,5804,83778,64050,27164,24545,41271,91149,11304,33021,38116,97307,88922,39800,75553,52419,56347,39003,46661,82854,56324,90513,4888,31416,83870,31405,34774,18914,44306,6489,28783,99405,32046,22078,48889,29596,50247,47485,29419,30128,39640,38139,77025,41974,43926,72125,64733,49128,9731,43353,66702,39011,59854,43006,47529,50613,90553,54031,55278,96108,10191,51615,74159,54021,65634,35974,61697,79601,6446,64519,33238,41578,54439,2796,59521,47224,68785,56697,66333,8809,84373,71233,76644,89295,2800,95063,34796,87374,8195,18795,15867,90894,35140,72547,66628,2589,59277,18385,13095,72229,99096,58079,3740,14669,26720,69998,74252,88254,7028,20769,2733,33942,14472,89027,42611,68720,92479,76413,7552,25481,38481,41903,81397,95221,12791,30238,71186,77922,22033,53011,86827,34237,75964,7824,63030,2449,13529,2114,62462,40008,22568,86987,33758,44812,52868,5994,82422,4985,64427,59941,98259,8248,59422,53554,65359,33154,17406,48391,27367,21295,65809,70720,97242,73003,64150,36315,95193,88938,58318,50846,16929,4129,76889,36771,79261,73431,67669,33962,5723,67255,31676,90753,68617,63107,577,66651,22646,75262,38350,70848,79016,17687,46521,44650,97420,51995,7971,74860,86887,73283,62034,48981,71901,32769,59190,95123,3486,55130,3480,78805,22114,67007,47492,37410,41263,11700,76649,47629,96524,64905,33253,7232,89945,90246,44289,21508,80821,80438,72787,80460,29056,81870,36706,62119,45375,43907,66340,63436,79507,63952,29463,87757,37481,83040,85279,52718,41029,99081,14820,76337,96046,83213,37940,24475,33052,40332,71450,55554,99034,84190,77012,73536,6638,66913,73670,53318,76123,52054,63986,36946,57028,54391,7424,35615,51653,18171,19113,68503,73211,33405,40966,67004,53004,2088,71183,9964,81473,10451,54628,86736,47555,83946,24174,69895,36857,23904,89262,38007,75863,93565,85373,75567,45388,1173,86779,48021,72000,95366,18267,13402,18295,13284,87976,75768,25394,82667,14599,91263,44076,81313,59567,42638,90606,17661,16719,27544,3284,6442,98677,75183,3974,94711,64008,15626,6711,39152,80426,96955,48544,83465,15961,95964,29322,39973,17925,46077,60896,75257,16493,90240,89514,2261,70850,51249,63821,61018,39090,67975,72071,24256,75928,94964,7123,87068,60593,28861,5747,23936,77090,25647,52788,47389,48320,78654,4719,10790,18786,90333,38227,77669,56225,92536,99515,63396,22376,83277,17852,20822,91328,96713,79939,77184,43735,96480,12336,71176,30504,5748,19812,25688,57967,39854,58205,56234,33335,5356,80823,92574,57631,27844,20595,21921,59899,64772,91724,733,7282,27663,11253,38217,88461,11448,92664,24939,69658,58509,5566,84872,62766,19435,29141,96881,40537,12025,34134,74272,80636,51465,42940,55619,69282,22535,4782,3186,65640,14200,16917,39484,86802,5311,96719,19723,48985,66606,69626,97908,76148,75822,20381,58467,23676,98284,92325,25272,30263,50494,90996,4944,87378,13225,10605,3200,97247,73126,54664,95946,98207,49289,92494,54125,49008,6510,91996,35658,25645,17522,55670,37628,59671,98128,33935,66761,96523,67777,14425,20904,80961,33347,22889,24658,48470,96153,16735,12,56144,24383,18796,54443,50459,53659,4574,57574,79694,70040,32974,42261,49122,32460,40633,75634,93586,46120,86154,78429,16237,38235,10953,28813,99042,105,36848,21083,85535,23543,23532,43105,85819,90069,94885,27092,58395,44168,12129,85289,97835,63477,97746,89054,73669,85600,81986,16711,74751,32887,36675,47314,29697,23981,18776,42803,98989,47488,48590,54243,85948,79730,77977,64244,81102,88306,92828,2857,94909,38328,75272,89032,75729,74412,64909,80867,38085,42913,9029,85568,19835,56888,58475,77460,28654,31708,93594,12290,51412,90979,81781,42984,91069,66380,85908,28045,98567,5038,69432,70781,34264,90766,64058,31288,74800,78855,95639,85039,65679,28513,85,73053,61423,99434,16998,31916,54556,62081,46027,38713,61790,54499,36258,15157,75167,31822,31463,11356,31118,65720,81660,95545,20050,82773,71917,10345,26127,84602,95415,5843,97281,84240,30125,84217,39062,6245,7029,83326,71158,97822,783,78295,67239,43132,71467,90047,44706,83479,18215,77300,59665,24367,29027,67990,73115,84092,70691,91048,87652,41757,51936,51510,97374,16651,38341,76347,26499,22891,80999,86145,46284,32102,3153,65957,47773,90599,4967,6941,54239,51837,32137,10698,80559,63261,59565,30004,77613,41428,47078,11346,76588,98283,71076,38209,81762,6861,37278,88914,61748,5717,14755,91764,80478,11186,90209,81381,47464,7602,93147,20967,63518,47024,54203,87712,4053,89469,57606,33307,62932,97980,38487,116,68212,88075,12548,75454,65149,19023,15973,35475,86599,15931,30921,45747,12765,12300,14497,91044,70255,99829,26422,91566,24915,78465,14630,80090,23937,2162,56300,61616,63973,27404,20427,78334,55294,96149,9182,67603,15014,33373,60630,99524,69750,25758,26816,60839,85486,25164,21632,5474,34451,91594,25845,24535,56658,15204,68466,52841,80873,45352,22352,12338,15366,96267,25970,45692,60667,42059,70274,25705,70714,42706,59748,86673,42178,92960,25697,63474,62750,8578,4786,33000,23522,7749,18615,59943,48209,71986,73692,81835,27815,59668,23565,44798,15226,60628,94245,73714,39352,68868,82325,16689,93623,22661,71694,19745,54182,44360,32631,20228,59376,1313,84265,64966,53916,22993,15927,60665,68554,52149,70451,86738,98751,41564,41598,11743,42233,62782,31493,87901,93327,13477,12944,44473,85972,90180,48742,68491,53253,80043,95791,83583,16422,80148,36399,1817,54695,46381,28999,5141,87482,16964,87303,63609,17871,27712,28672,77463,16856,66056,80882,27103,79809,8220,27689,93255,10408,33859,88578,97913,14652,52283,12453,66851,18209,394,31319,63133,29238,82716,77802,44985,95413,63415,56130,59365,11809,20308,10355,10623,97793,1913,2669,62603,59836,6551,16583,75040,83894,96500,74948,68879,77326,91147,68055,11906,12650,94771,24724,10700,25482,81729,55394,55396,38193,70517,78896,46724,43562,36877,15824,52127,9942,21525,86288,35793,90216,16757,95419,94213,17791,56179,30139,79800,30737,26753,74832,719,42416,39306,67712,31418,28714,62423,31873,54747,30389,62236,94531,42768,83476,2265,47311,95394,47455,65885,90828,49864,93479,66066,57845,87127,21445,71066,74075,67824,15723,3777,19680,45090,40546,60586,19802,99217,86689,82828,71779,3549,29312,51764,46799,76639,10236,48226,88769,83838,94303,4781,29228,33633,41363,86076,370,68788,8351,5580,95659,93529,71987,87325,72907,40978,93539,75298,18550,36945,41076,90504,33701,58167,22658,34822,19999,85572,3739,13059,3355,93314,49582,95219,44512,37959,10317,52226,88346,44630,26613,56972,14084,42433,43110,32537,24072,68463,37672,37075,78537,63949,63934,96879,66083,71749,23077,17780,40930,32096,82267,50984,83564,90076,26141,38275,31801,18956,46286,69699,58108,45069,68244,60655,60796,79962,11293,319,30455,99952,65513,20632,77190,39101,38596,31218,51992,11297,86531,4835,20400,64653,82515,98995,1472,99107,64133,40562,82785,52349,17642,10324,85559,12754,7140,93170,3046,60714,33081,11422,37048,284,16203,44887,49522,37255,71563,16523,62108,35190,27506,30603,4788,95130,96441,66967,17315,95022,67163,17241,45328,5498,4318,10689,94402,94576,56646,91088,44715,15975,39340,11804,4510,16748,98007,44293,22491,75618,57628,73181,36925,73800,95934,20813,98147,53261,82370,41326,29834,85895,74194,83663,55665,55913,76369,49887,62610,36382,60181,72419,54553,35836,24406,17803,98549,46645,77357,39748,21472,69789,75774,40783,1730,8283,38687,56053,20263,64706,94354,8587,27944,42432,35022,23818,66173,2991,18560,29309,76553,44757,79896,50993,63962,16221,56914,95975,19302,65437,20174,45361,72116,4620,82,37424,75786,16982,70704,47394,56321,65004,64845,88058,31110,43234,72740,49957,80922,94100,5675,82020,88741,16704,28517,6142,11827,74566,58504,28322,14192,66939,7546,96840,70301,80721,32828,76469,69054,83656,11118,67917,25555,18659,46780,87942,32925,67151,98796,99159,44203,19843,22749,65556,68705,95167,57876,77059,24897,91575,64135,43640,74110,71556,58304,80979,28607,64711,76628,67636,643,67451,17870,34436,55694,56360,79487,31467,6389,47581,47403,26024,25237,72394,12374,65108,42524,62445,89344,89577,44030,92191,56804,96231,57383,48053,75650,58308,91113,8002,2653,22478,59030,75847,70287,44972,24186,48814,25687,67893,92447,36016,90171,27398,71573,68489,29898,72719,63874,26040,45714,84981,93002,86718,63306,41205,92375,72954,60692,22209,8303,33213,44086,78446,95259,90347,13050,77803,4500,96020,22049,32191,97495,66357,94548,61092,46720,48155,93991,87336,24023,48697,29154,80838,90859,17527,76659,15946,29772,76786,73298,17982,9954,72807,38387,49269,75533,64812,77476,65243,84189,44999,49992,1163,61353,69321,51645,71701,12103,60476,10137,91010,49411,96763,73256,40102,303,86574,43801,51892,41222,88194,83687,50825,56996,43717,95854,74147,86151,30362,10745,92558,46317,87236,90262,63927,34736,25650,27501,74687,87031,36040,78112,11360,29432,60636,29600,52554,1088,63807,2075,57681,9499,58929,42808,38817,97546,22560,55250,56428,57203,13969,7496,95380,46511,56566,11667,89649,8019,40330,89113,87152,48956,70593,98227,21983,90674,28404,31614,28298,89425,41223,25023,72496,51490,71643,47641,12391,3015,56735,6787,83379,67117,72620,6304,82762,34400,49434,79838,971,88568,2371,53,89093,80905,26882,39630,88899,11270,37604,98611,20900,22504,57942,61737,50011,12457,67430,28136,92640,28253,70904,34040,76648,26069,23371,56045,87725,90251,18841,87847,83149,56328,47592,36089,6971,54776,52892,2370,7193,3230,18386,80617,11859,4317,69389,18093,31383,63050,59532,96120,81772,57553,20819,49380,10988,6462,16943,95974,14147,22401,9975,89075,21588,7283,52210,94663,55427,42556,73844,68535,90811,79719,78674,79413,8706,92254,7611,30858,62738,902,20217,18011,23128,76338,78512,80507,90550,4743,68084,5421,70987,36887,15390,82733,35888,3865,80466,55656,48230,18173,13232,54552,81613,80424,17666,60973,38189,41624,50465,96604,98215,42908,8778,27417,14111,5761,7360,55050,17103,22416,86433,30960,60098,73328,37499,49110,45476,66461,65277,61476,61973,96816,20626,53015,45248,51307,66447,5166,92599,79554,44955,6255,45256,17967,99037,48149,56885,23751,38806,15054,5246,24184,39027,69727,9726,1953,17911,6173,72316,46423,84446,22623,58332,96539,58145,62157,40112,25641,85335,94784,4926,60693,29781,10216,71809,17898,60068,4291,62571,28842,53655,76335,49918,83695,27965,16645,5792,38335,53045,92894,50101,34647,35263,4934,96936,27305,83822,20249,98576,66880,47662,20519,54306,69605,99394,66321,2029,63812,97600,61069,28522,58924,32994,67816,34081,24640,17625,23029,13518,47476,14863,53851,63438,80972,24676,41092,85656,21458,94046,76484,17685,68942,42559,91666,85890,80290,34785,12311,96470,12811,22533,31186,43514,66944,27803,35586,40786,76007,5429,87532,63200,95621,70324,9868,5378,42507,65166,31694,30466,45672,81556,76773,79306,39048,12214,83359,46970,68397,71287,44900,59887,27287,15115,49730,99271,7990,26196,16275,31593,97706,57270,89001,20653,40721,28255,53942,52202,41420,64379,81144,95833,66332,22489,61424,87192,4324,8486,75344,82698,69622,23034,44264,49467,39173,51064,53538,23047,69421,25749,37524,31953,67473,94724,26372,41884,61845,96184,69463,20571,57977,77451,37804,24388,88966,29912,43878,92845,23190,13884,45628,80036,25726,18266,10464,24339,28541,69440,88443,2701,97173,23796,85618,22813,75664,3396,13760,56474,75127,76058,13020,64477,7937,25311,30051,80217,64102,83506,34924,21404,7947,54883,77313,57968,68536,35061,30378,47249,43605,99496,50443,53927,74420,43595,30227,27340,38016,61237,12036,55963,81596,14420,31955,92660,16666,56358,28873,59111,71635,60040,77862,90389,99299,50791,40275,88625,60892,17416,18971,16013,72633,9356,29388,41437,18997,7740,67470,8571,25009,54173,3206,28600,59276,84245,30397,47248,473,55533,60051,20033,38906,97759,53807,20241,80184,85699,63904,58320,85326,30021,64802,81717,58759,12019,79571,72380,22594,13430,66830,98775,82536,84917,29824,39760,50785,84374,94879,14398,81573,68275,20024,38915,86712,13275,57231,60104,73557,9885,15494,90344,20370,95209,85336,96390,87753,60252,78102,78735,17317,5763,23248,57847,87016,87717,8064,1385,70365,57806,13183,83269,28006,92458,97540,67463,30528,79836,11044,53460,34839,71603,82150,72536,11553,90939,33026,764,36845,26485,98373,39420,46411,8155,61134,81193,84638,41920,66356,6639,79627,88674,82345,85960,7081,53357,16890,17137,33988,39226,69764,89713,595,58961,17997,37469,57896,26120,69049,58157,53147,54587,19594,50154,78036,71962,34273,30324,19624,19398,63346,6274,60388,64683,76393,91782,25917,2234,4752,40850,24544,80313,9578,28205,32360,4668,46549,92934,20230,561,22124,27184,84734,19751,14197,49542,87349,13818,58753,59222,3143,63729,97156,2905,60831,27030,79436,7342,97248,2100,41328,47087,37468,66106,30781,5901,14166,87705,95093,67206,41020,2294,69381,96605,84586,46577,82671,7684,1639,39657,60465,12988,87154,66282,82072,73429,68892,13029,19219,41098,89255,72351,62652,15769,33586,71294,64035,45769,81141,96887,18592,55964,93889,13282,78219,73910,31169,60854,81806,46765,73953,94390,37274,17163,37619,39856,95338,38268,2142,76055,50425,92388,23193,45680,14998,49020,39108,24264,67475,2871,34023,68326,36136,47605,36751,72287,89413,26190,64171,19449,65985,14001,80960,77352,55325,60348,31250,96694,32003,90910,34833,61114,19678,609,36138,16378,42912,37956,73182,59982,91972,23607,83075,37063,58087,44943,56040,9411,79421,699,64803,40209,40698,20581,66721,81068,59819,93013,24665,49328,40957,6325,91118,62182,36868,77063,5204,23962,56068,17580,64975,20440,6088,30854,20895,90028,7201,57311,33718,99977,57664,11065,70309,44746,11212,49904,96819,36288,92385,19087,69507,64396,71387,85246,8734,46331,32861,45015,63179,78253,10109,37535,2493,75284,76091,64199,98640,49763,99628,46106,9038,81384,49579,34446,23084,85156,52026,85344,70056,69486,27773,26986,35988,34767,93324,6000,76727,22302,71971,28015,81438,99012,85129,97208,59321,2976,99246,41694,13449,47732,11808,60333,3060,86429,56138,70110,46693,35424,23961,26064,53761,8980,8676,29927,72507,16290,36990,30211,58672,18719,93061,51177,65553,2573,16123,40745,5937,30391,81072,96995,20145,96802,44499,74422,23397,12797,27105,50172,35368,17401,5681,13051,64465,39293,86040,62854,18117,28092,40668,9396,22881,72368,33999,25683,73881,96218,4884,90588,81339,79537,44924,54036,50948,62685,40421,81017,54215,57284,38162,96725,83325,80350,3065,30991,18691,30672,16496,44250,63820,90382,20697,74889,57997,66641,49491,33326,34649,68543,26947,74025,41316,24272,78308,83167,15771,97711,66281,43202,71101,86948,56961,37541,46923,29071,56169,2993,24650,59766,85915,31433,68699,62666,34250,85351,39257,55354,26934,65666,58670,14310,97818,84027,63127,1076,44551,43412,78667,69265,54578,58201,45266,33661,69539,63451,73966,47002,46074,4035,35204,23672,35379,72312,40136,82111,61313,2743,72200,94867,69571,82829,91197,74583,43014,53730,63743,20160,74229,50209,72819,33075,29315,46962,6297,61269,93650,21924,76759,76228,58400,87990,60257,99435,2727,36996,31149,65997,3098,61154,39211,55589,53142,87793,73472,47336,66812,30231,89887,68755,24432,59574,42718,17538,26969,74350,75095,39215,45052,67701,58127,85955,95931,4046,59280,75639,42089,61537,55228,30689,6406,49550,97404,2445,55921,99974,6623,8908,59352,76488,94532,23114,85133,24169,58814,74993,21948,94590,31026,18218,47206,93998,8625,70319,28463,38466,42521,91855,60979,52146,6707,28787,96708,13498,89200,59562,38418,32328,39851,85530,1802,67973,51858,31962,51845,84835,84946,58842,56632,41184,7859,87398,52046,74204,82440,12943,66534,10006,87146,64005,51350,71697,56577,9725,76385,56558,16401,275,80963,91797,90099,16869,66289,25159,71167,42582,40297,75719,51660,34112,67389,41209,54940,16860,47511,80139,52773,59914,15663,13591,1731,17164,53871,79116,39920,41901,85756,37149,6284,85817,4411,49999,20535,86526,20271,36814,53088,70184,74006,80386,69531,55144,71716,78481,9028,43244,48450,23454,11549,99983,68070,37511,84842,6533,23540,56705,85963,77919,94323,95533,47926,87778,43289,77653,87396,82921,16787,6581,3039,53463,8052,15504,86284,91308,95951,85855,86318,55663,73302,10848,64205,10692,69198,74773,22312,1669,77648,89,26765,70342,52224,65793,71354,42840,27483,25991,95010,28028,84514,4580,99097,29505,40491,86536,32569,22211,68826,33284,57447,73225,12930,47006,69715,24834,85201,98033,95109,74709,84161,55385,19232,82257,82411,6427,10428,4364,51608,60609,70969,37029,77039,8745,56541,95181,94957,20404,3631,38869,2863,17389,74263,76336,53570,87465,87011,32252,63413,75937,60028,75429,27388,42359,54355,1698,30917,89932,27358,79101,40327,94700,87798,78536,93632,52017,73697,86403,4471,34998,58516,6447,69610,35285,22421,10431,85155,94489,28423,97667,94071,37907,52890,63255,61613,95811,68972,8205,23185,44261,96834,27261,99594,25411,94947,40773,52465,79524,34216,31071,25247,16267,74842,73617,98514,51043,73200,71958,67153,94192,23822,77216,50919,87702,6166,70473,1961,37409,85026,46819,10272,41113,28690,34598,95865,34921,9737,20874,91510,96889,90680,1429,57426,53098,24248,66974,18763,32344,9988,91006,52737,8829,44969,68109,98332,43575,63323,15737,71118,86741,30032,6370,48083,11441,23296,17518,91745,82556,29073,25662,15266,70869,6414,77514,57859,92519,55187,1367,23149,98761,7905,1321,66179,78259,40554,53031,75165,70455,37792,83503,47089,24035,13192,34404,51422,46618,58209,57469,52147,23932,41684,87868,92781,18931,26974,29960,30213,78328,60783,25529,21021,11251,8380,37931,4476,50251,33867,65281,34972,12676,69771,69777,22440,86877,61770,82062,93533,61464,94954,56952,27260,73778,34061,71329,59906,83391,84415,68331,70607,69877,73793,71210,85672,81005,70566,35062,25024,30380,51153,82292,11910,33394,47227,14432,53346,84537,71368,76660,47487,19147,55678,2615,15469,9037,41065,90524,95932,50403,17075,77477,61267,56927,49939,8435,43368,11686,53201,5636,70025,83014,58577,92883,877,93865,12696,45543,73332,25998,20570,95527,28464,10239,34414,31266,14322,10916,3716,65892,5022,91346,36064,95967,10990,88139,45750,63481,75694,63998,58874,52951,91793,297,35016,46239,52909,40268,42131,48191,99647,39628,57548,203,67523,87676,35415,37497,29515,18810,50708,25168,35844,66678,26108,1373,40232,59547,9624,22750,41797,81074,99015,86367,79025,33001,63401,61177,50956,1229,97293,10066,46415,73493,68566,82348,86129,49047,34189,20767,9373,52853,26963,21074,19682,37697,39339,24624,56527,99888,51230,85386,88448,68178,66416,39145,11188,89508,71964,10197,98328,49007,45152,49221,97358,55200,14161,60595,96479,21912,39737,44619,80753,17023,76737,62778,53413,31267,88239,13566,63164,79678,5980,21312,25200,83284,5970,87818,53842,90892,19674,93896,32850,20539,62828,71888,52575,17693,54387,57804,30704,29546,35203,56625,70491,61103,19788,36074,14283,15656,76877,91414,89033,61316,66647,41795,1007,23087,66457,2428,91975,47608,99780,64989,33961,21554,43973,85538,57661,3326,64149,75332,9748,97414,52333,54426,88911,71301,71683,25412,63379,21095,16832,40918,46933,33310,87884,3958,64797,80196,48026,35908,85638,16350,91479,79247,59560,49504,72013,63573,69018,35504,10265,55120,40479,64971,61926,40429,49984,59829,5408,35896,94794,54047,56979,99224,12687,25704,93281,42488,60249,42997,78109,34660,38538,79254,19781,87302,33720,76667,70762,93256,74980,881,96119,11532,49702,84784,79097,85932,2390,96966,12037,5535,44897,61017,34361,99599,7281,21495,968,66229,424,39201,61842,34300,82041,96408,11129,72582,39506,96304,77279,42847,78177,18510,9145,50342,44373,68782,64650,58574,21768,77996,7627,54719,41734,97512,33118,74607,42159,640,1077,44830,87067,51505,63245,24225,21627,23438,54146,57895,43164,50566,31014,34155,47479,41075,39094,35279,88446,30272,25280,82473,21555,23458,36464,1558,62542,24185,9457,10547,52721,28980,11670,22417,31391,78114,6348,16298,40655,49276,75811,72464,16301,57844,61657,81703,30186,96269,42973,24999,70405,57993,13428,92381,11284,39799,95157,91807,34715,34190,79130,28844,52664,1975,21300,51622,54995,74124,46189,61230,63195,50232,64505,91896,46338,40851,6145,87475,59132,14559,56550,44809,28880,40122,98921,71666,72103,28435,59704,36206,99744,86449,52809,25225,15302,48813,90898,13188,71761,20378,30590,33366,39424,71764,61168,16395,81124,15565,6926,99750,99353,12677,13786,16773,29842,18307,83307,66478,97356,58576,96329,52550,89065,24128,26686,83537,25882,8254,47286,21822,20652,91442,58012,58402,85818,40754,90467,3044,98292,73077,4686,75244,83223,11424,72679,99739,62376,52752,11397,90888,99768,82172,56958,46853,40928,49057,11942,30914,3362,28262,56018,26793,23427,53062,68283,81937,47445,10694,65178,11165,1725,58542,73539,87057,66015,41257,22189,84732,73139,62629,56712,53248,73178,72866,93273,80756,39227,43442,30548,13824,2394,70394,27127,20423,54591,20536,58264,27924,10772,37316,96930,56849,17567,9258,23994,12061,69966,23702,21646,67261,51846,73798,62788,51405,59977,1505,95356,51571,52540,50818,69115,45658,48648,57830,28366,2288,66590,57000,3680,20091,37726,22201,78314,9917,74691,55474,64789,98321,8891,71756,14555,58675,15187,765,40576,53793,64548,63201,10091,23177,89799,25760,31938,35973,38897,24466,68225,87919,98799,64023,22636,51781,96903,40065,9377,56451,23256,32480,42894,15646,43342,47003,56560,12659,21249,98071,87579,56985,32792,46187,12503,9091,10212,88646,26416,83856,4391,14205,35977,81846,56132,75665,344,68059,24130,33700,74320,64863,77287,55229,97273,58353,84198,76603,54358,8784,82451,57817,64225,74058,75135,61231,90578,24843,26707,43884,80186,60025,49950,41112,53396,79151,36484,14914,37913,22404,20288,13546,37923,53319,80289,3842,78261,53605,74679,10925,38153,87,53511,13650,72273,98973,68441,18109,8912,69464,18663,63431,56521,78804,49196,23786,7895,30207,41165,78592,85253,30571,2237,58286,30226,81282,56257,59154,99068,39872,57357,2430,45646,19755,71787,4094,9770,95581,37776,35489,64800,76570,28025,62949,91135,71028,77500,31424,43335,55413,80046,43887,13766,32138,12916,58302,23312,60985,63321,44147,61823,31269,75595,76784,77359,54166,52215,21581,40982,38702,99572,33229,60901,49182,10069,67096,78040,20934,13254,23853,49771,157,31947,51003,92238,14728,70449,87095,13719,30574,38009,84587,88686,63108,24741,53929,79850,95516,84383,65086,31934,6842,26898,50692,33390,48520,5845,44904,49304,30001,3562,64470,29579,27565,9312,19671,15970,99370,56384,98768,47914,46503,69838,82876,77210,77268,98883,43853,28144,57958,25357,55007,49054,49234,20717,35242,17095,17228,28642,62820,14449,16533,88845,24997,89013,57302,45881,18198,83657,70608,6624,86155,76704,62460,86544,43133,94011,11063,35071,82634,61495,11951,16749,56681,54440,6902,77074,50485,54423,12373,24905,9572,7506,445,90139,22847,64491,52551,89110,37450,76326,71524,83580,14790,23273,33354,70778,62193,40288,19754,2581,16706,45252,43312,30940,66940,62598,44818,80421,82907,20513,67684,20558,85668,75579,84859,19741,82672,8223,12115,34491,20331,69311,82715,99347,71999,42542,99770,49738,71663,21159,22776,65935,4211,48301,23712,88057,43474,44546,9754,65443,37167,17924,79106,5345,26526,69137,87874,6066,56585,73740,79045,39507,14803,49050,53211,33886,78729,628,92897,30577,69712,97947,87379,11772,75467,71258,53188,84472,52793,66198,42697,74651,71983,59292,42892,16820,27448,5274,6522,11154,4086,29369,5848,98089,47491,15585,66652,87755,71562,8616,54393,23965,88727,27864,65558,99576,73308,19963,55239,40648,53086,66990,36884,92603,60508,96168,64727,24668,65290,12511,87870,84888,1454,86834,10302,50299,45397,51756,11072,43432,23856,8162,65861,10432,15170,60516,12462,47852,762,19205,18558,28579,25496,25914,31233,41473,52352,75855,3433,78317,84179,57636,12414,21460,84864,75890,10710,98530,61400,37578,1901,56105,90044,84831,19928,12083,13210,54167,93812,74736,21400,10573,17347,49512,53673,63069,15753,40399,22324,99894,96247,42136,33555,58905,54475,77368,4313,28863,58984,25899,78912,34959,61243,18206,25870,17421,55131,96204,37371,73435,3664,75019,23544,7510,5534,23068,54218,87363,39975,55814,85390,49943,40000,97421,22205,70797,23365,88708,25890,24332,5689,60993,57951,66075,52233,54373,64132,46226,37942,48122,118,94553,69491,31510,37372,22378,61682,83410,90157,18278,90848,19517,69408,63627,280,73997,26663,48333,42523,74301,60810,37022,5368,56680,51017,63546,28601,74132,12862,45481,22317,67409,51216,45461,53671,67652,20393,30705,8204,46637,98712,64585,48630,81008,8730,96059,33226,41825,51337,78005,61998,58164,10681,33629,6123,57233,77230,99198,8120,69375,83091,63690,89279,75960,8212,56414,58310,79051,13883,50604,19713,19366,40521,10524,2804,58998,10780,35103,19549,36660,59709,67445,19622,51902,59717,92419,7888,65487,52959,7045,36052,36923,53947,73462,566,3117,18096,65259,51314,20944,4175,99283,90526,93480,74584,94461,99716,25490,32037,67714,42865,95787,34992,16755,55853,80647,58918,38575,80415,10161,73803,80855,86910,46844,10765,24659,55555,47729,22526,14299,8577,99804,7459,24975,17449,20679,93923,65391,15212,38938,64495,5595,18007,27464,5635,44744,21514,44782,79056,93770,70118,94352,78381,36821,30252,30314,22880,27606,67901,96616,65715,30890,51838,30799,24577,64341,99343,98249,13175,67761,25349,2703,35910,81542,34544,6555,97148,26337,5557,1843,28806,11083,71439,70545,66826,88521,14950,38908,15736,73294,34424,28053,66583,48483,26055,34535,78391,2105,94566,45456,45983,62679,53733,85748,43967,33515,93350,50409,45651,7572,36976,75688,21552,66359,32169,17755,74054,61965,87159,72304,6610,26556,75090,46774,62693,57247,12086,85619,35311,96932,90551,77162,52887,42703,13707,48858,21906,95544,59316,60430,42963,62364,13323,49852,14120,62796,49783,45364,93472,43824,51019,60594,67136,47475,91559,37140,9618,56929,10213,5746,88315,62930,67536,12498,58075,25565,10967,68616,90366,17318,31988,57812,65944,36054,24041,81217,64463,46651,2384,62989,36416,2011,16377,90804,71409,96837,84726,32455,72045,55892,980,27136,99053,74951,71473,58043,49945,95641,58818,56995,41329,90226,37131,61229,98481,62716,14922,6455,71977,68113,91155,82539,6936,19619,50850,62266,38421,94628,58947,91201,15518,89638,78914,79083,68106,769,9650,11089,33904,47849,7628,61705,65085,61915,2843,45339,32992,36801,83430,43331,43622,54495,7308,93657,57487,9736,14466,4122,43078,85707,38735,82049,92674,58412,82488,47054,48365,71652,17214,22581,82972,42434,10545,53594,19177,99917,55057,42298,96056,59426,30621,68737,55862,50416,21634,39335,35763,13965,33234,80569,7734,33054,75851,8158,85046,9735,2946,65858,51971,81598,48830,60806,84593,48217,27570,84639,82449,59544,32543,62053,16182,779,54299,77772,32680,59029,48395,64678,24159,88299,1098,47530,58015,87944,23707,83517,75740,277,98811,26653,69471,92028,18139,65672,43035,86856,35173,85192,24164,92613,40191,53879,64956,56920,22149,99101,51061,97776,84456,39453,35438,28436,88420,5264,39509,51918,8509,94757,25016,48353,48105,42179,90203,57248,421,36044,75795,30472,44468,86721,51343,22628,22556,82890,12664,20290,41894,80589,40011,35883,68674,36929,41782,69624,71265,36891,84703,3701,8304,37348,36569,31390,21192,67383,14080,56864,78256,35256,65782,4197,77151,19885,61549,9111,32435,71274,18337,43949,71742,91237,40645,53717,97361,47571,99803,52452,57511,77171,458,80611,58410,72682,65572,83316,53757,14509,59261,9738,93052,6483,14010,55953,99900,79241,8112,98520,42271,89725,31381,10538,32654,13060,66847,10018,22871,75522,83817,4193,12497,53961,41327,94783,30592,84914,23000,99419,66846,79953,49715,19566,27922,2895,65613,89192,72964,30387,93493,76306,17140,91746,57306,50600,71289,72689,57034,16564,45289,42962,98850,27056,59063,30376,90362,39222,20314,53948,99291,48694,4560,22863,89854,61984,86480,38929,39750,57513,45709,9599,98773,98983,34434,71410,68797,48382,21371,46557,42827,14288,57907,91013,3918,67633,20856,78168,13033,74794,16388,31635,26579,25857,90617,60293,20486,31968,42549,9203,34996,57276,40461,44523,33564,77480,33923,57771,79870,77464,34160,9294,13832,93504,18820,59706,89350,25413,70395,15816,17083,33035,82591,30215,31643,22756,1330,11542,22727,4542,75405,68773,17953,20238,95733,13351,13052,34567,67896,32755,31176,91689,75377,16971,13854,9223,84451,52014,27082,73961,83427,87666,56733,29582,14796,76661,84115,23327,83181,94388,8023,61668,61072,86335,7009,85871,5132,78664,12799,15317,97668,39219,3504,99193,20609,39545,33244,37475,31465,65713,91723,27121,7383,44507,8324,11895,76519,53501,7115,51698,25690,99194,54022,36264,48062,4871,22682,1572,62384,66255,10951,4220,41595,79880,85032,73116,60970,59787,9178,89838,28371,67442,87081,51941,39077,39816,46401,42221,92743,33071,88518,28868,58681,71426,53945,8603,69957,38772,84855,80178,82534,10340,47192,80162,48737,2880,85217,35628,85402,74653,14360,41761,29417,92553,81226,40062,90818,782,64275,11758,33235,74479,38773,79942,6315,57278,71919,13361,87871,19468,93710,99378,87516,90735,40592,60274,17901,30975,77141,7796,82600,67767,34623,43404,42115,56022,29864,31400,36085,6529,99852,83077,75725,7738,10687,36302,25361,10398,79737,82643,75418,69808,9951,98782,81453,97150,74116,11060,83528,73512,38271,29604,38631,72961,36508,26706,82090,56664,69803,25574,35038,5593,52094,88392,32628,31207,75951,48755,87954,49954,45359,55157,70994,13772,79795,24609,92758,63001,86770,53613,52131,59909,92214,94932,13526,51163,4316,7536,62178,65725,47919,47220,54572,41321,29299,64351,48394,56363,54447,99951,8955,39663,5125,9197,797,50413,33614,24953,76195,18324,56298,73743,64327,18448,59695,5339,15381,41443,7222,3496,92852,10660,73520,87034,22077,86650,71834,18565,76174,44337,37618,8333,71348,8736,25071,64347,61850,75940,99334,89660,39399,2847,81401,76538,45890,52159,40944,93813,74971,98603,47178,49362,8237,80923,4837,14765,5133,54088,47303,47188,22336,27259,49520,2765,95725,39922,12136,98881,95373,59324,41758,15583,16745,48184,87851,73653,59868,98619,42022,5309,80620,47561,59948,7951,88403,46152,45403,26918,22016,37115,82098,26244,51747,91468,86619,8498,28929,91979,11172,76224,68380,86855,16047,63867,43906,67568,18338,96379,11017,94890,18141,71817,45542,55367,90815,33259,23223,55591,82479,51842,65042,57641,98518,24602,81761,3497,26914,26541,47291,19021,64745,54198,20534,15406,26581,56998,85098,89329,46116,85134,50461,970,86080,7197,17109,4673,81414,42393,96503,93562,5046,28685,25192,8493,12921,86521,79232,31128,67552,24066,36275,39199,14745,40597,33760,81534,17191,21112,14714,861,43615,49409,61902,12956,89446,14486,17396,99016,43779,63326,23975,53287,49993,96771,81411,46236,10058,96994,70295,7894,56213,77567,28828,33387,16647,51610,7815,26023,89401,37665,26231,80782,2706,26779,50243,18850,24530,12752,97333,26776,68099,86133,14339,14226,82463,78963,54638,77773,26742,20765,41505,90455,66047,39994,30861,74803,7932,96806,9628,10351,35621,73605,34500,43264,36982,97962,91669,25028,37613,18319,5914,53547,19528,90682,19796,10589,47938,82310,22285,48160,6459,29140,80711,80138,81154,78876,37663,3150,56304,37147,47953,45249,82974,75118,36453,16705,6471,13333,48878,24461,62043,33520,58829,25834,44276,85320,74671,13475,24964,54029,50936,45413,5620,53003,74355,86871,29825,60787,65966,7945,22852,15780,88143,1244,10296,30875,99520,99605,31926,63473,57125,40478,98934,38893,38644,79842,10290,22614,58838,39269,55550,68669,43663,41449,84699,28886,80839,17141,97829,40691,17456,54704,68893,44181,51207,47770,44105,12848,95,75884,73268,84070,9376,32464,55704,72860,82883,54749,85455,77175,46838,99005,8410,39397,79740,56305,25434,22071,78561,29775,78132,91273,25268,43323,34435,8608,88463,327,46899,44595,71390,45588,845,67889,1677,51383,31721,27743,37639,24531,58911,55476,10814,25810,31581,50938,19685,12188,38306,38670,34624,88768,20984,91012,50634,86925,65837,49505,58770,78597,41731,9724,10880,63804,65171,84280,57976,80310,89171,79786,68196,10269,54592,97253,30062,70027,30900,73635,92721,64087,94753,9898,81562,28750,58564,15060,55647,86873,17257,85550,33990,4692,87957,33974,62309,67813,44114,55265,93388,62326,17578,42455,25459,33250,49015,60760,76287,88581,7636,14743,7800,47677,24351,83463,70911,63154,641,41482,9491,87521,48165,64886,95979,22668,317,98789,16117,45822,37620,73608,41151,7190,9272,54788,77866,84997,69846,51036,7002,25909,41818,9796,90007,25502,58950,86921,32260,80244,58361,97028,83299,25570,46137,36536,28729,90627,54781,21172,11296,80429,76076,39130,38301,85427,11528,67694,27525,37096,72407,94733,33637,57829,17420,74114,49137,41497,20918,50683,92502,55359,42316,91898,59761,40619,51479,58868,83258,28410,61356,23081,49517,53562,45719,63757,40679,1767,11552,10303,24170,27196,58866,64011,37514,57262,6167,19184,85353,92805,31031,44626,92171,62836,18082,5055,82336,43365,11624,56495,33386,47615,21556,34318,30891,96096,87335,55660,58244,46370,14189,17367,76097,20081,52195,98980,97302,81661,12495,33566,26300,96651,64479,59830,36354,12527,16940,84124,6412,16019,55590,19293,48967,46696,63142,71321,91427,75576,23535,29584,65336,29879,28604,24481,4671,35403,91726,17369,99672,87406,43585,88050,74881,51,50678,17943,20545,98660,77740,31053,9548,78692,35451,29183,55641,57001,47851,52508,7262,59999,14706,45376,75829,65878,74303,64922,21256,64594,1923,8877,85777,4082,65346,66910,76273,12463,72600,72391,11497,77198,16930,81253,68003,51401,24302,14429,8895,24203,91451,59249,19774,42575,85478,10963,1896,90331,57586,71253,45529,36271,87183,14236,32588,24818,96811,71654,87258,97634,88421,41917,85886,57913,85560,99639,98573,16547,43837,35758,92791,32787,27907,78472,67971,38649,23465,42272,55714,57651,22234,66752,46676,73128,76906,14256,93213,49059,19411,9613,80668,62742,50866,7374,51140,44834,22711,68051,1534,53389,99990,3092,7447,68816,65364,4125,77328,44767,28528,35104,16506,4551,10356,27884,18716,3256,7806,53956,96412,70140,501,18789,15333,25097,58856,92577,79614,93992,80153,80747,73825,78782,20147,5559,30349,68838,42048,864,89069,28265,64067,65535,59538,7454,96730,43358,5679,39839,11257,46591,98045,57607,48056,75142,1754,86980,28992,94244,38012,49100,75371,98848,40737,61749,23714,28797,17647,65582,2282,26470,5157,44982,27443,81127,32874,48599,91248,81611,44562,67661,81917,31743,73969,93684,58029,92104,48930,59798,69623,22792,54517,23814,68276,79286,9336,76043,8572,38086,6289,44465,75704,44748,71724,81918,29275,35072,58839,31670,9821,73816,25926,3032,28295,86826,79931,23301,78580,92522,68163,94025,69707,36515,581,7544,68827,81654,98148,55705,94125,86194,11013,45613,85431,55585,97501,51259,40033,1143,65333,6779,17505,89269,48909,37423,34793,40571,29722,91984,1283,52228,46141,29205,18427,5032,94227,20963,53668,11193,69171,33621,17624,19813,85627,19981,38518,89722,60245,37050,72382,57038,12535,66825,46813,29081,53708,43712,18451,55867,46894,32119,63679,34277,66928,84911,50227,93531,87747,70800,76708,81669,24831,11110,75398,66804,87098,76894,26313,49508,89554,95323,79041,78428,18614,7594,12868,16072,58262,8887,87233,98804,14151,78013,33065,43075,14670,1242,22676,17965,5449,51396,34580,889,67948,32576,19227,6760,45717,87260,25375,22288,19281,81600,61832,81170,85037,47170,30608,10190,86045,78325,10866,87914,44831,99177,19608,44269,93727,61606,27745,20261,20096,22703,14698,62302,8495,76565,53467,54237,13851,6090,58692,41441,87112,49251,89597,26016,80144,67870,29449,77354,42462,21120,12437,80675,89711,60178,91094,26371,22675,73833,93649,99847,23129,46101,87695,17232,31279,77305,49971,28777,50897,61048,47463,29174,82650,51794,30764,42486,20407,87282,37755,69899,44800,62305,12688,682,51611,64919,71018,76497,84942,19318,68751,65649,11421,50396,47232,48523,46086,24372,29851,90605,95172,62620,45133,89721,63803,71902,73561,17115,59315,8338,36835,86631,66728,43454,33977,31811,57791,76016,20242,72375,6577,22183,72283,41679,15455,62130,41230,85057,39126,50699,59580,70421,52702,61014,94645,39861,11199,38949,73925,96828,54199,37905,96073,6882,29209,3291,71220,73544,36306,65176,51779,13388,55540,71325,98865,22037,79552,8285,39367,40774,23884,48095,59059,57996,47692,90297,36616,52801,12377,73856,23978,24156,33224,40171,54187,23444,59859,73545,41325,86441,59357,1469,3299,92552,2526,54631,43993,38147,29953,58158,15589,84824,21817,40456,82551,1930,3014,38774,87425,70918,61175,47294,76757,1333,52759,65410,78299,52194,18548,26717,85100,66854,73371,26550,20520,62773,92933,73315,51598,50085,40876,31848,68878,55353,23868,25128,58231,90155,1023,48549,34270,51925,38664,93534,52155,4970,71760,15831,3763,58428,64196,66464,68087,86270,7742,25227,79796,33628,94153,71892,82483,67128,97453,22606,68567,91748,36298,71939,47391,44873,72799,45004,62441,24344,76374,24563,69773,95334,50450,52806,66330,18177,34113,34033,9671,41218,96796,31572,57069,55771,92430,30821,84656,89372,3188,96381,45124,33125,34368,42138,69351,51371,14428,78954,62978,40829,86028,54258,4133,70437,41439,45222,25730,57073,87640,88491,29905,59529,84006,51909,94535,19423,67322,76442,47686,15239,30816,68764,72611,81196,56780,74143,30986,727,85977,51118,27113,63156,60991,26735,29641,96857,57718,94852,55000,72715,23510,63439,71727,7577,95801,5341,37414,41387,84293,73231,23042,52924,18086,82602,73790,93675,42183,75468,66059,84615,23254,23598,4563,9766,1735,76098,71882,17551,51046,9208,86275,12324,2198,56112,13530,31859,4253,3518,70107,55690,77612,53866,62912,91485,50195,25630,22448,82676,66162,37019,83193,15346,93724,73486,65382,60672,20380,35469,20302,82839,95292,88312,49331,76083,80146,34689,93774,94564,55507,69909,88567,2594,6456,3020,30569,34916,70069,78847,13189,55561,41565,51790,62116,87456,35225,81633,68009,6486,55671,61729,54132,92581,67355,4688,26901,17618,39495,11889,22151,43619,92516,70352,37389,19567,86572,64213,29165,60019,23179,85239,70065,59064,61897,65853,68152,92248,60247,30859,34553,82577,31536,8793,36014,7836,58213,52877,88907,73271,42502,39558,46315,86118,36307,77887,11482,37647,88533,19994,86353,65239,66546,64721,35751,52002,28518,43589,53437,21166,14064,69315,38545,15312,96449,86598,46212,41628,82751,58479,78642,16281,76618,56074,2278,32161,82442,72063,93555,23271,67995,16320,12525,39382,20942,507,93478,91253,44828,17113,97611,61105,26614,49108,85207,7214,27667,65408,27028,33964,66922,47781,97514,40654,57987,36605,59828,27252,5945,76746,52092,13890,65536,70483,32077,67063,35056,9040,13394,53469,33907,18581,56171,3390,77266,20437,65156,10811,81364,24789,3351,93506,94426,1970,43351,20267,78762,7567,96273,93418,52182,40915,24864,67626,90708,2070,88415,66177,56258,5154,9979,18311,38322,25344,10529,27693,64234,22175,34258,27761,12855,15189,11860,46474,2338,9303,91776,22254,86024,3459,82621,35167,82681,74322,52858,93879,19699,1776,84866,19151,80398,43953,81519,18626,3235,18723,44459,25332,15303,21979,86666,49337,9044,736,62566,24515,48806,51702,74047,75656,15139,76375,41527,60592,9788,65193,44869,3357,74122,887,97372,10377,79328,64898,39924,39536,11178,31226,55887,87572,91592,37184,98738,87137,75813,30106,93146,89216,27349,3641,86177,25100,22855,22672,32854,74733,49804,39822,76979,25695,62952,48019,13381,10859,121,32497,95205,58684,31770,4833,39073,14798,45895,17784,60209,12990,97522,68772,65517,88564,51801,41097,1752,8607,87237,89048,94349,14916,21644,6476,9998,64842,92396,50817,75363,34656,45685,94699,87578,20135,68280,29841,34620,93156,75530,30889,17274,13781,2051,89112,73045,44673,28591,81569,179,80779,26498,94252,95938,6372,2508,7205,53993,56691,26486,79173,48563,14211,58107,30027,31567,5169,21841,21505,92920,4348,71875,74366,86358,97392,47144,93460,37213,77196,49785,43579,28876,73471,17738,11307,85048,75246,91151,35539,89543,27590,13468,28355,80489,75703,62583,90567,47292,22521,63739,46096,82797,5745,48336,48513,77129,38125,71129,85770,33855,60802,79094,82873,48645,21811,7693,79968,52466,36764,17249,71251,99962,13541,47011,2971,35079,23766,77223,24914,10102,27446,90989,89851,69136,61173,25869,8216,11,16593,5119,43515,68929,39190,98904,72733,95899,31839,94691,7320,57242,41550,12824,42995,41574,43091,9659,48006,24851,52447,87595,97195,69579,70882,73412,14868,25469,91730,35479,36900,91774,78525,62855,34952,7519,20951,76724,52517,97234,6327,30678,6353,27068,82899,65038,86280,99827,55025,98322,7823,68119,90317,35832,40719,66714,71015,16462,86579,63540,22918,25429,94145,50286,83353,22700,96727,20494,23466,18433,41737,2115,40096,19809,16605,69029,84040,93371,74287,70481,34958,37704,61838,7858,33328,61901,79648,85115,48582,74121,90576,78143,70073,77356,55565,88620,37395,62255,79460,99511,64643,88264,20175,67087,12577,57802,70578,69097,39685,5196,74115,50592,32716,39076,75208,26314,92467,19935,78194,31645,35554,40135,17010,62107,80715,13438,57571,44393,93851,76908,16330,691,82481,460,50117,88951,89488,15274,77163,84684,43667,42508,65831,60908,39931,13387,55712,40271,80931,6684,5116,58002,9270,18662,99437,3332,8029,74389,12522,84355,71142,9602,95840,94606,86230,34021,99800,19902,60218,71328,84661,18595,12904,28077,392,63428,24719,65095,99588,41027,24387,32382,48777,10729,90563,83709,26275,78017,47716,12850,73456,50467,61711,39917,54286,28883,26667,84009,48368,9592,83349,19612,60362,46449,67989,95804,37813,10731,76191,4229,4043,85987,16150,31653,23184,8396,61778,10321,20742,18879,45638,82916,80360,21661,95283,13459,87853,55378,48834,830,35788,99473,17835,21228,30102,44839,77134,78974,33652,95179,57020,31705,32591,84814,94755,17263,95917,5302,81374,25989,39347,24855,68740,37899,81520,35354,21171,47297,22364,84221,86708,74240,3123,49546,82417,18920,50480,1235,68464,47221,10105,8942,73064,56379,80392,44805,4891,43664,51161,84145,66493,2144,1092,3246,77614,60498,77974,50705,4792,78794,46594,34591,66677,47500,70407,3590,17261,12674,87992,397,56635,72990,38377,65400,82308,9716,95482,1860,24343,88201,73474,7662,30331,43836,71047,50150,90754,74270,79499,22876,1721,86968,53209,15977,25013,7488,10730,98288,55091,45830,98277,66869,26908,72634,32789,49041,50404,13720,65655,31459,89332,46964,88177,84402,35575,93056,22184,84353,52589,86520,68599,92426,57264,92185,78414,31646,5266,16920,68532,97641,99288,4407,20071,81716,5687,79918,2779,64834,6839,10497,13686,44994,31351,54941,38440,99024,42607,85698,26665,30034,41269,76261,35420,97747,89811,57098,86617,10448,46312,8063,27609,47666,27040,90122,78065,27589,7946,19351,96029,45772,14024,98383,99186,67387,94983,10550,44872,27302,79270,54635,60675,13823,44769,91055,47741,32520,95164,74279,88231,38844,99680,54154,31505,57962,64665,68527,70047,16394,13112,32694,57494,25722,55835,64658,9398,42982,32949,44304,44097,67225,45291,56485,36954,44481,88593,76780,39579,34780,66587,56208,22153,24143,75666,15919,683,30006,72002,49530,46385,42518,2844,1617,40196,34204,19933,32176,25784,16685,52679,61744,46455,74325,672,73356,72592,55720,41651,90574,87519,35769,70226,97708,57236,65562,60329,72504,67002,80651,27491,32292,10361,75093,53528,93683,37262,27744,97398,10822,81788,74534,81511,98723,91760,91394,13446,52872,88184,93172,20359,88055,16529,52440,50654,30867,78090,6718,60020,10244,83062,64443,15634,75773,67080,85418,71938,7049,69620,76182,86902,65394,403,16009,38787,93459,27989,74994,99028,47679,35838,32345,64702,57722,57312,88102,34748,58217,68483,69657,64566,73293,11696,89220,36915,61212,37994,40349,23750,52804,65096,82363,2387,66284,45828,7680,2959,18895,84178,91129,41453,6332,83829,81359,6004,52204,19880,47098,66388,78413,26339,61409,45056,37760,40241,78807,33491,12023,88044,39675,46713,35726,85309,73297,26871,86843,53106,41472,64041,16747,67098,39847,39207,67589,35901,29060,80857,99665,11619,68374,20659,24472,87362,34762,99937,63664,12702,26970,90275,18819,22008,48444,55356,12113,11389,8520,89639,94112,93199,31154,6110,48946,20121,17133,93621,419,89962,53772,4163,44121,37586,8974,56791,80841,81292,21227,74411,68548,72481,32399,53054,29223,49720,777,34842,68355,92992,13041,48945,47225,30488,30148,36284,8529,97257,82792,24772,28149,2108,23101,19204,48951,64428,63492,22341,61147,97569,23075,84412,80027,70913,50563,62144,59613,51722,66753,47342,20254,90747,85167,61238,54831,21219,49901,34582,62320,20118,26964,8177,95526,59895,65260,38003,88023,8666,27222,80304,78911,25669,12332,91623,1955,47428,93558,67438,31858,40197,46311,70263,81119,23431,4714,95996,13344,15759,55434,46402,45405,36577,10684,21573,18028,76277,52672,56815,90138,28445,47824,69095,41921,35904,15662,35602,92194,10111,63741,85494,21296,90823,97839,80022,45800,13158,24528,43447,76421,54017,73364,8030,55488,37715,18654,99745,26697,73269,1465,81016,95067,97128,77470,41095,42065,59657,94163,46484,31701,62793,85438,34954,57880,22206,9353,3778,81927,88827,40533,50311,88575,17394,85897,43153,84324,50674,28296,88601,1830,61398,82367,45335,57926,36207,75762,649,6883,50123,95625,88969,90355,66866,27972,99946,5263,32440,96382,707,1191,92735,36250,95883,51323,26671,16502,71446,99519,48976,18617,32551,33851,57899,3526,62459,18327,55518,37910,14094,94658,70357,14071,82426,63836,69448,1402,47030,35330,45007,49558,91497,15087,5048,90232,44875,67970,81689,14558,17205,89936,51437,28036,9075,20027,16064,68383,6903,37205,58300,75419,59877,52687,45843,15160,52044,96243,59204,70111,79774,40539,2021,47780,35949,75815,76329,45878,92914,57452,35521,15363,71819,40663,36338,79369,4588,99668,70162,86733,47848,89698,27188,33255,74969,94982,13385,27463,80759,19663,60118,2632,74716,19078,80552,807,14127,84738,58546,84363,65097,42054,25666,27086,40550,31010,11963,40604,78510,20451,75508,59523,45370,44728,21423,61342,62972,78520,58583,28454,53053,30506,45265,61518,18050,62806,89355,54665,17561,3022,79044,68475,46261,12428,56840,44861,51866,53520,83103,75446,77827,66983,5614,46335,15273,83162,67456,31719,4297,88667,38491,78197,29745,4396,21433,15474,81904,64942,71339,99432,46957,32193,96677,29220,38709,86824,69722,67181,33875,72690,56564,6596,24478,20738,59572,3957,37067,21828,83182,36604,73276,83095,92570,44234,67259,695,81099,45171,57742,56724,91546,29916,55573,16440,46435,31827,93093,25619,34366,57940,39297,49683,13922,84470,68513,8099,14293,62094,4534,76935,31792,40605,59918,95097,98961,85633,78675,46714,25319,22398,30982,83862,19990,63875,55616,93886,54364,66536,83263,283,24529,15041,40781,7089,33722,9052,7689,62987,27622,58968,758,93000,74051,4048,66,8710,91865,72963,16455,17459,36233,34867,4654,11938,41664,1348,83858,21320,61885,90285,60090,29506,38221,30384,63654,13920,72604,50375,91966,43966,98347,48304,73640,70944,77402,63209,69361,36897,36422,6723,71848,4342,80655,58575,21929,26038,32640,78454,61806,8716,52292,46181,15209,54121,10053,32163,52286,42354,79212,50411,50824,67382,16546,26178,76971,73172,31759,54736,28655,64641,16813,87611,45323,18174,55384,9506,25194,40653,17592,94134,8136,91458,23710,22788,26573,34060,20292,7479,30923,76381,81035,93860,46829,66509,47223,44247,89583,60588,43693,54438,80116,81379,62070,17838,74227,24695,19783,53488,36726,76167,12686,24921,14407,43371,39512,22928,70865,96077,87823,8278,12719,901,43795,16406,71852,43614,93489,41133,34265,40782,90319,21608,56534,23272,67926,32477,25976,75896,23513,39813,54912,28930,27980,17240,26009,88451,66419,34322,12358,11824,23071,38900,18578,65014,33220,57282,32884,5846,84448,54826,21798,50364,53557,23389,8383,27638,2217,28667,94612,4925,39848,89198,79893,14033,11660,28408,86816,69645,91101,39346,22017,43016,24263,26703,4056,24784,62815,84002,9267,28196,64755,30546,95041,6136,63900,24859,78721,67713,44019,20749,8580,5782,86940,41469,90899,78622,93428,30298,35913,64139,94602,53470,83192,70572,41136,31991,53114,80432,88027,65630,10585,26150,45944,63562,47100,90844,85549,62645,84176,50508,23240,89641,85547,52537,74710,27152,85747,35862,37949,36744,20011,33717,58435,18124,73563,93660,84125,73574,98135,14773,98457,52584,44348,68717,37476,41397,56656,97352,65313,91741,45913,32678,62372,112,60518,18356,29219,55520,3719,60199,82358,49261,12415,62690,77004,82464,1008,90883,1513,26789,4840,25494,85233,83989,73884,84225,64382,60382,95194,1816,46808,37269,75153,34431,62830,58796,47753,68612,69613,21831,80958,58219,86728,89997,12133,94703,69720,51935,99232,11839,58169,74633,14739,85003,68800,71318,57746,54997,94571,94130,3881,72762,62426,38776,88786,62705,34283,76348,75331,63919,71057,12149,16404,77877,80151,34621,30937,15903,2135,90059,77132,64795,22617,64997,73355,34707,52278,88746,94412,47880,21591,54165,80832,15962,26840,5732,22106,79704,8748,69967,24106,9913,68593,23903,6422,30342,16086,71584,93764,90305,25519,10761,2352,45978,57267,26664,54870,17541,33103,50013,9934,72089,31192,76511,30728,40269,71611,37734,24078,990,9438,42662,57692,63208,55848,35153,44671,46169,99185,11252,37917,11755,45776,37310,69174,39092,98680,93977,61407,70536,75024,53536,60960,43493,76477,19441,39577,64624,51162,82004,86402,37036,51928,82495,11374,5254,17756,99444,41762,88318,49385,66908,86225,26574,4315,80054,73747,77903,50900,46262,54238,48223,65602,36192,73424,77473,10792,55846,91078,99906,52586,80514,41050,77880,70323,17686,94815,22208,92031,66209,4183,59847,25908,95739,44868,74139,21669,16819,21029,88836,89814,97598,40124,60154,90268,67860,98320,91662,24983,69067,52930,61759,7718,40801,49825,39345,3337,61812,38892,30392,38566,74228,538,2456,71401,25842,29799,69257,98351,11983,10779,37763,13302,24904,30697,1106,14324,19298,69175,13750,73818,12938,7869,37166,38164,80783,335,49556,95359,90728,72652,55931,31286,60643,32511,73957,90795,15123,89748,29376,80209,15161,50444,69068,83975,30796,70876,23218,97770,34164,77763,17237,79525,35409,1103,82862,62704,51740,52977,76952,37493,86688,76631,72565,79674,46299,75482,68971,87459,58078,80868,41947,37272,96476,97636,30260,3819,60945,8647,92712,97357,41068,64599,2852,67254,75196,62446,64260,80004,14170,4147,80049,84973,54818,96006,68556,93567,2024,71483,69635,83678,52383,15982,49609,97539,71750,35785,34829,20893,29025,18987,74506,27573,30790,67122,28662,9109,10186,54953,75320,62436,85775,70161,75014,57081,31472,60189,95904,99294,4518,71984,43399,16956,36808,88093,75684,40295,5853,71582,24003,27962,73159,98902,84815,70956,12627,73804,28349,83383,40164,97796,96187,52681,84156,58334,9620,42570,40149,30232,52639,53317,90886,78516,49790,45051,92012,89801,42720,93173,15445,32817,83697,83675,51346,31466,43469,52186,26336,17099,97264,45480,94718,65623,7669,28323,42446,63215,28175,3667,58378,74478,44065,15310,66023,50868,96337,8415,87520,535,55261,27534,98034,6914,10937,87967,45433,50268,77238,24045,22015,68243,2949,25485,61908,18321,8549,89726,6819,57945,71745,51921,62292,65475,69499,23700,62510,57919,40614,1234,29623,50109,35019,81108,94209,89203,53387,98880,73736,7306,68031,5275,18842,4458,33093,58347,29087,36930,97613,77486,74021,60114,38081,2380,37789,95019,94832,96764,35537,19557,3290,57668,96679,29462,57775,73975,82079,42445,46928,28788,92962,17987,59201,57732,41580,36972,41589,62868,29235,15222,50280,95282,82155,50891,16992,64208,97062,65234,11342,74347,47280,33619,27541,42515,959,16416,74221,96687,13956,81180,15432,67617,75404,47507,518,10280,95518,54329,56765,74851,52696,18271,27575,53649,84812,43800,31514,15573,32381,65138,1052,70538,72556,51988,91071,3670,74836,59962,66077,7012,42299,59986,25184,91357,23637,36328,97252,40418,96263,49192,48624,42974,38276,99560,93339,68762,63265,33890,11445,22812,73124,37996,28452,20086,88070,89720,2343,95724,65876,6169,21078,98024,59055,38708,95475,7986,47995,88329,78433,47749,35522,7943,22774,38463,16826,99991,98218,42958,6355,97217,12820,34782,31248,93736,99450,61306,35634,76858,83730,72076,96003,17018,89534,18142,31122,53116,6856,47442,62415,5075,59974,89953,8400,14591,2154,65106,34962,32175,80769,51102,39738,45787,15947,65773,11952,58397,74966,66249,96868,57350,47835,51125,41501,65135,86421,16023,74255,25352,60938,45711,75002,11508,41883,7064,30229,31967,96982,33534,17743,92038,46486,74647,51704,66799,35259,3328,49722,82437,30008,85571,16990,86064,3598,47576,6256,52166,63987,23455,29409,86238,6915,39610,30058,26781,37636,56166,29694,52680,81,93040,19980,67202,36593,38835,60479,5276,85054,76689,26332,65360,52561,7503,49526,4577,53043,3018,31477,54318,48509,53950,262,87636,19292,67707,63849,80732,61780,75235,18291,92313,66474,47176,21969,67930,21425,55492,33166,18367,15207,89921,96827,12139,84128,88066,84679,53412,3407,47472,32023,57855,21014,32796,46811,24162,98479,24794,21422,16603,38478,82511,12679,90902,30103,55317,22227,8464,52876,38219,81863,99448,39068,41893,51001,30584,58016,22055,35124,11818,30379,94399,43734,29063,52634,78407,96836,57875,23135,46231,8009,32894,64034,29276,92704,67590,65522,12896,23363,88960,22729,55238,96148,26092,22897,20224,80861,42041,68917,54000,71228,76433,19938,67290,53186,18031,21169,52298,59525,51398,51392,63011,72648,96095,86537,2040,58044,90222,99943,69270,49571,59629,80282,31895,69509,15597,93927,64227,55526,50073,60838,86099,6621,5643,72517,60445,94918,94119,5640,84317,61365,11460,63718,98505,75687,35277,63241,68814,99075,62951,32890,70912,14349,1227,1445,59372,12980,4820,82302,45653,27348,48566,58778,81321,92714,36314,54811,41239,65098,3815,2702,35587,85636,40699,2330,59218,37458,17031,87822,29721,81023,99124,73516,6570,99491,61831,78207,28000,23600,9253,56648,56622,13168,83370,68323,80954,16694,70136,59643,7528,81667,73133,83923,47501,43929,62202,99296,63613,31534,6821,83742,22620,39436,74413,26722,61099,10733,83526,9215,58478,37615,92511,84584,41455,89218,82189,75408,75409,30849,96726,60537,77688,5794,32633,50478,42615,93070,92190,76236,50526,6331,88621,15417,26136,6076,59244,48010,60968,42804,69544,80757,5076,12898,90851,14295,70131,41524,3062,903,94468,96345,84173,20139,13837,81692,80213,14440,24019,14524,2213,28357,23861,73764,17027,76702,46570,10502,53097,3128,14666,87891,40106,39944,10895,94286,30458,16207,81467,86706,55956,57566,42402,42110,4200,35182,60261,38965,7365,94543,27177,91111,46375,11433,60270,51818,8614,43835,64434,95530,93010,11504,35067,82447,49709,2376,71374,28104,37368,96097,92011,72164,21869,1014,63061,68597,60485,94600,28575,95147,43709,73877,880,31957,44852,72268,65159,33879,30831,25083,54683,64998,79811,26326,75145,7695,1005,19806,57869,4745,54163,93678,41110,3828,26245,11578,30716,41207,85931,48622,61297,14183,77624,53170,73866,56496,2839,58729,21174,53794,39065,24160,96068,94705,22626,28536,96716,7110,28449,69798,47715,93481,70775,9833,53800,2096,74427,67191,10192,58119,70971,70906,46494,80297,37477,59113,83050,73007,16431,91647,45700,32207,97176,54117,20026,92827,4135,13532,33706,15905,30512,20793,34695,6889,33058,88426,84846,75397,43000,33501,75460,76009,78711,98146,72755,63658,63902,46451,65377,19217,75783,34830,13113,59044,68236,848,37132,37099,9912,32584,46282,86633,40615,16714,42264,4451,84527,98895,76843,97561,42049,34894,54118,86982,84769,71307,62432,90100,48396,24956,52007,34838,17178,17353,77689,26477,35306,20759,56090,97232,84750,61204,73334,29337,70199,81195,5834,1983,72586,94497,68277,94327,14569,45679,6556,56978,13307,63292,20283,15820,99513,217,28755,80531,96251,36883,58875,61609,26666,56193,62341,13006,47018,14041,28179,38749,32050,23316,60769,55879,82784,48266,24651,53052,80921,86772,34419,86897,76810,89463,48569,31911,81418,43791,19074,90238,76365,30453,64493,44298,95916,66619,72566,37989,12790,17764,70458,78616,4734,19721,66301,21724,26089,27858,63293,96212,53190,51311,27814,83267,12294,98543,77856,84074,93612,17613,30145,85518,29629,2699,6713,97080,23819,72456,18314,39725,1615,80674,69490,45199,68122,20754,79928,86424,12709,61781,75283,40852,67286,53121,21539,26692,61779,97559,19248,31295,7834,22128,10026,76119,28032,28707,86136,79616,83591,1331,37374,57313,81335,91882,36443,84218,54234,64283,51688,51520,75999,5241,18047,2629,54365,30217,82199,74812,55661,76282,36440,70743,60297,41817,45635,44951,79127,96850,98835,58256,60308,33834,62771,64444,7241,97091,42572,49978,26152,46251,82929,10261,59956,60759,25422,61879,28378,8874,50356,12489,32711,59330,36385,11829,26063,67199,91271,88210,91930,2539,47037,43737,94554,55160,59485,45908,84690,6015,71965,2535,45030,98774,82939,28346,59013,68768,93318,18580,31347,87279,41941,23704,66759,328,12304,32230,47072,39492,10400,29705,98096,83949,12583,72722,42816,59840,64528,22825,95310,3232,6870,34423,21536,43995,59821,35791,18195,86829,20498,17093,29090,38826,90760,64049,84058,96122,42917,31674,26112,17645,67976,85339,75439,44027,45548,37505,89084,86455,60705,85219,78970,47616,38103,19049,33558,60548,83807,96221,36648,21392,71828,9935,22358,89468,98838,30612,83518,59946,67112,81337,52332,65571,18217,66489,4736,80852,16369,55750,86437,77445,7020,5847,63886,92841,81073,146,28013,64430,64217,18061,4520,30842,10034,31420,4682,57834,47229,71061,74992,8184,92520,91552,40695,14046,1230,55088,87238,36289,23967,43310,91250,46938,67379,63785,56357,33532,68774,51957,1987,76160,16577,92507,95417,23062,21594,92868,39422,70108,10073,76580,87839,64018,99699,12042,1517,46497,5237,11779,257,32155,65102,34036,76344,5615,77519,82640,81714,36176,20233,51585,44145,23104,22988,3523,36649,98132,22170,35164,92003,47257,62268,51055,2460,97121,69577,29029,41938,47421,12282,79979,31908,13902,46445,70275,12167,59246,61975,99463,50727,47569,36678,38750,33382,8926,10867,71822,83898,69518,25111,92670,49109,92532,2220,54208,57301,1100,30274,64873,37064,93915,30003,23778,11702,80577,3205,32965,82290,50980,28553,31050,80652,93662,25104,4521,74602,77471,67229,7420,36281,41553,50019,80223,49983,77111,4218,92166,26911,33477,596,2047,47799,9359,58607,1043,23945,98716,9814,17627,86059,21091,11924,7886,85805,35512,13941,72067,91435,83199,99972,87199,22683,33759,80047,5974,96784,83415,59205,18387,57183,75801,82836,24938,35624,79844,12994,80825,8500,62150,83191,14587,24929,27020,25748,48996,40905,10328,31340,12601,53008,20144,36637,75339,43109,42513,44761,12602,22670,31215,19134,55338,39903,31301,46963,75260,56863,43769,23615,96494,46296,15408,26863,60573,55310,59072,45607,38432,36204,57366,50775,32316,25785,92768,59799,36486,20021,14482,14586,93767,2978,81856,4384,6111,87354,5850,84283,49139,53513,4791,54613,43171,8376,2334,28320,71000,73185,3867,77571,67527,95554,56154,59183,59165,61624,40635,7254,36890,92162,55743,63097,22780,62392,348,70330,87955,89628,56490,26814,2544,8898,60127,43095,95363,1910,15943,88227,6558,41487,3493,26625,76646,70690,60300,5710,3175,28890,88520,88860,18940,99145,48060,63062,34303,60971,21488,70259,4369,42647,43627,98489,16060,63357,53239,69241,18051,39537,55840,49869,86481,67268,70006,64015,82052,91569,81765,61922,59703,17917,18579,15822,39241,49644,1476,93197,75101,41155,29700,37315,27275,73369,65230,59335,45642,71269,48880,54833,90534,95547,9323,20696,60204,92858,43864,33603,93204,40140,9015,13672,77393,44035,12865,36079,56602,9566,71594,10228,62635,67640,59076,88465,46755,98763,64395,7762,22214,9146,86775,51170,93520,68498,95607,34072,83400,11310,10511,65075,92997,91448,28369,89497,99357,62890,51026,83783,37556,64166,26373,9401,40088,64336,33147,54676,3863,23113,44029,64503,68621,19095,81160,90759,73196,61411,82778,25359,53168,73808,30518,26748,48508,38104,33228,73419,24832,83470,68233,77863,25871,22584,34280,96583,17200,91287,37629,27993,16351,49129,7075,2005,18898,37724,82955,61632,98407,52282,45969,67036,33133,71393,63564,1134,4556,41002,60160,29917,4653,54412,91962,60858,64090,99051,82786,57189,6885,44986,30045,4467,40111,47489,65884,63539,23629,14976,73629,20252,56608,56671,44167,42005,11981,83514,11209,61726,77654,88249,53125,32442,36668,51601,19776,7225,30750,56644,3054,62196,44518,63800,11030,79076,11322,95789,18948,20560,46230,49037,55510,63185,80010,79475,4194,14971,99742,60770,201,70273,32383,73418,41673,34129,20625,45887,64271,59570,43567,1547,29020,62093,49256,32930,45608,63194,91577,57991,47517,65800,68760,58593,74497,15040,57321,88517,613,65687,71679,32115,67647,2058,16563,78581,30310,42323,92802,57379,64651,59156,53771,30676,13897,83592,50577,72720,34240,62503,2984,37542,83202,79382,61977,14647,95853,65069,94198,67566,44397,79144,38324,10987,96094,23563,81942,98666,49029,60190,12237,33702,12403,1394,50066,18852,88586,73927,62359,97915,9129,94524,25045,59608,17171,41324,35630,83757,94363,29391,55350,2915,42609,6521,68524,46030,6007,23821,84795,15143,30116,38803,5209,30498,49282,93843,53692,19016,35789,82168,3602,14372,14927,74720,49253,18969,54790,36247,94539,32066,40705,93541,52622,50855,83594,96395,60077,55874,68829,73104,86251,26672,58112,16354,6363,32456,50140,22158,4387,62964,30300,74507,43389,46786,41629,65258,77618,41232,17913,47961,20797,46372,75878,40220,24791,23183,73120,16866,18345,38376,25182,71252,70930,72354,86854,8399,13677,83051,52642,42539,23995,92952,22951,82067,76252,78030,24007,95175,26923,14333,71054,67446,62246,78725,99127,83113,5548,5128,47332,86291,65611,67056,83368,79982,89274,25491,41787,5303,57703,40715,18785,11181,41978,78494,27630,61385,5951,58946,76489,16509,22920,39363,36155,25598,43248,85298,3546,756,35553,19453,34452,14725,59043,69040,86892,16556,85159,15484,84097,37552,37464,90654,67370,69469,68577,27818,80283,21718,58118,26831,38796,5950,74416,17229,53164,99655,38917,47105,87269,86411,60338,67829,35914,4264,56606,38008,85163,16700,41284,25787,60289,51674,37530,85920,84910,85812,22818,50458,34212,70657,47339,64602,38945,79624,1343,85628,90985,23682,26588,93484,95384,49814,69366,74723,89620,63152,26768,18039,22695,97505,36865,53593,48748,94058,21064,62837,56526,20981,19300,30002,19538,18055,51904,72022,83108,83668,16876,71034,44521,63749,82385,14106,9212,43939,79066,31782,52916,65585,89787,88676,9050,24376,61871,34333,50094,45464,24590,76364,88582,63125,95188,24107,16333,18788,43990,85738,10206,93677,60483,80898,94667,68262,14806,52710,19794,61646,97716,87267,27783,92242,19203,74034,95948,37216,48550,33560,80018,47343,64961,62980,13003,82280,11413,55020,94220,76798,17472,73738,45102,8990,42077,61123,95774,97807,74645,74517,28492,93547,94300,63563,68182,4677,24133,96042,30544,56970,7966,94943,75157,84289,28748,21879,19556,23037,20161,42717,5978,39695,90852,31386,10024,32932,26167,82494,8970,12162,69621,26981,39797,51115,50104,31090,96775,79198,38591,9924,69334,32698,60108,52539,68358,96844,4703,1565,15237,10204,88770,49551,10856,83096,63628,56667,40192,34244,32247,91056,51226,6561,58594,88905,3160,68174,35967,32603,55424,39093,30216,6828,80538,98861,27091,39001,17564,4860,51471,54150,61715,13363,57966,7977,60085,93321,20553,76822,50021,96238,16726,40764,18122,79605,52174,67411,56719,43123,60411,96170,99740,74212,97144,42429,87918,59440,74062,33946,33901,67039,77251,72068,91631,43322,87542,73136,27568,70935,84979,40061,37590,74246,95990,61583,78074,58356,93103,6846,9969,95308,2231,54519,8034,78267,80093,56312,32358,66795,26774,48791,31308,22639,85846,34511,73577,57473,24689,106,64047,29230,19705,48594,86391,23401,28740,12268,665,54324,6655,84949,97602,68881,85964,58328,94002,15047,19795,59747,79184,29803,69356,70329,93152,59540,84123,86016,3604,71023,11371,7157,74234,19039,86644,73374,35752,5632,18079,77828,71420,39500,27697,98913,4523,50695,60093,36197,26636,63725,4212,73241,67608,85185,12880,78549,81877,11355,18085,28017,39329,27963,49600,40214,61585,88924,21510,8260,29580,2068,57965,90244,36623,58250,8931,24868,12251,17667,76912,70741,37852,73497,82010,67015,59490,49343,25921,6222,908,28049,53854,24511,45617,80667,40985,29862,4352,79932,12663,91267,82626,36425,52324,91812,68644,61482,8853,2272,31524,75711,70998,43722,86296,75286,2960,49672,76001,48635,63151,12678,43596,81536,57805,72345,59004,95449,34128,80864,76351,45444,67561,46323,3862,6811,73641,82583,83123,21175,39716,17047,93125,71170,95999,6227,8538,67920,41682,13096,57807,59465,27179,92048,58146,79223,52781,96939,9079,9159,28572,99510,43156,79766,28982,19992,68980,27153,53320,56158,78905,3511,84168,70440,35165,98606,94141,73024,26632,49525,43803,93762,23807,2023,92318,99598,43396,58776,96183,77516,93397,86214,14146,97755,59254,11998,83286,77928,22122,78250,29404,38547,15513,36615,78100,33784,90887,71286,69537,48969,53539,68033,34014,5532,46805,61202,92203,16596,99466,32579,72257,15448,90700,21733,19150,17087,31453,17202,95630,47395,65401,18836,28537,20387,18347,65576,1604,86675,52070,75256,63214,85463,43714,10576,86073,4909,52238,15696,6661,6138,79086,34138,46550,82975,41128,61660,47812,86493,59393,45959,21576,95377,37287,6676,74748,16474,38206,90590,86030,46710,52266,31277,21076,29994,5815,47671,9630,5170,4225,72192,62858,67832,6421,20447,817,27656,30099,73233,61111,8227,92986,16122,94479,87298,99938,48486,77488,1349,89041,33039,43083,2476,64014,17984,47177,37921,22666,24773,47382,58204,54687,70873,96151,28500,63512,63719,95273,56779,24874,44302,30553,25113,21361,8724,87342,9283,83462,87227,5110,57145,13758,18042,46817,11171,68608,87234,40098,40866,84800,87848,47262,82122,92219,21003,25609,76753,93272,64294,68679,60649,53459,94033,95331,761,42454,64608,12623,22554,39448,69347,10313,72743,64978,28440,71391,30419,28795,97474,25435,1952,42983,44254,28916,1214,65418,54060,18637,87906,68681,54231,98948,53723,10472,62331,18287,36317,90616,94721,26230,4834,30266,73247,22486,36048,25462,40798,81121,85252,63903,2853,21622,99211,54838,39969,84830,23019,54637,40445,31986,47435,32240,31946,86286,5964,93658,43388,41861,21451,84091,60520,88062,80983,27156,25080,18554,79058,45168,89602,4581,32687,96560,1122,45516,92797,81018,22284,12910,38360,10973,65633,47327,514,67998,90476,56744,3399,31438,84094,62908,44421,90265,51855,46373,56460,2417,24467,7269,80218,13272,26349,95161,48763,76668,10784,6130,56392,46156,38293,61933,16043,69318,57716,45657,77633,4207,21036,24786,70768,49547,76334,58740,59579,8687,81388,76626,53384,23867,42145,8013,44259,29231,20412,47474,32019,14801,51972,25965,24330,32127,76059,22534,86600,69887,29522,38520,22528,98749,68142,97426,42918,6365,32356,49682,55718,46907,30460,89085,58840,7810,12652,18320,39999,87517,1168,42825,58763,46913,79149,20353,16895,10562,78889,24605,60621,67499,59060,33983,86780,66808,29990,12912,21830,7866,62857,92544,77097,76803,53036,21824,65638,91879,61504,8389,10016,42239,58246,75748,43674,62220,41591,32024,65235,23764,45766,45926,162,81230,40137,12410,42349,74245,13747,8963,96956,46757,10607,30182,98500,98846,53410,6777,25803,9035,83950,29284,48798,20729,89405,5001,1799,6178,54616,12160,78505,99553,29642,47312,91761,49191,11990,96156,97101,37995,71700,74394,34139,34888,48100,77019,48357,44592,98685,29070,24967,85092,1376,93432,15811,85257,58153,65170,15502,8834,78215,61717,13338,23711,29693,33909,86227,65413,68521,16088,75982,96164,9105,80707,32570,63895,34671,90245,55269,84247,55407,54727,89020,19424,49691,57890,62757,26754,40734,36039,88099,88837,4339,36327,45155,3495,57579,28595,1460,59997,35773,1192,31690,32097,37277,50970,96146,74704,87626,58499,97687,9198,37904,39843,36679,65543,13587,21713,22278,88281,16654,95716,53812,5058,69860,70371,67264,31337,31271,51672,76647,28224,35703,55051,36401,96365,62601,81947,23150,46023,34709,43102,25475,3382,38186,49755,98682,87750,85930,84786,80271,96364,62784,17287,44330,54872,10378,83327,20342,31730,99986,25747,38855,94652,9910,54731,63560,43061,32643,10864,28708,35517,61333,11325,24342,36406,40134,59604,75551,37055,56869,89043,71161,33393,84594,32867,21649,31499,47110,94355,19703,88994,19428,38429,31971,29255,97138,51147,38176,18733,24510,63991,5089,70462,97043,12297,60808,26495,38411,82250,48420,89593,30023,17660,44128,8159,5757,50545,64714,9152,26350,24520,2107,2309,35474,49454,92412,25417,22632,46044,93271,8286,68903,560,20068,47713,52850,4950,66190,90868,9832,98161,84967,98546,34541,11459,18893,70375,13825,515,68637,57669,53177,70630,44410,61860,95843,56448,47589,63458,87012,27450,82568,61900,74805,37718,15061,54348,57908,1264,81709,64451,76591,6784,95537,36182,10008,13064,77099,12317,18951,60647,82601,66875,89164,16800,886,55881,33199,15643,6192,77555,60443,15642,20538,90422,71816,35613,68858,31717,99495,46327,69818,68096,41676,73459,13990,63967,95669,72605,61150,17602,25847,58271,33002,72184,11907,50287,4882,99993,56623,13166,19698,85893,77596,42025,37057,17934,72158,85606,2907,28457,25604,17799,53753,60619,63957,23099,67585,11207,67850,52231,87524,16548,3933,60222,48518,24275,28582,49486,76185,87341,51523,96413,10617,9374,9355,86356,58898,39992,93997,30647,50603,57801,48091,59209,75349,61088,34632,51445,68600,91915,4029,10901,74593,99189,61451,67093,89604,72399,16902,48784,6508,66603,93162,60339,89776,52814,40656,72042,99858,86375,15307,49819,27725,78801,35166,39206,25177,49379,56417,68344,46722,63774,5813,90671,43158,86488,19030,74099,54374,28282,90253,43200,65509,47458,63111,13655,52486,91459,71172,8892,44408,55486,83854,36906,40574,98041,38269,15581,72376,74102,65395,23420,43183,59308,53994,83210,59145,99559,47393,80451,50617,74652,36184,93308,12543,37041,49634,65600,79312,74624,2519,68531,72668,28095,2572,87217,64941,52375,27433,99654,23526,38851,85461,35702,31965,6854,51650,11561,71045,49685,75026,29048,6099,45088,58065,11828,99871,9651,97230,17128,87426,19120,4619,46878,79682,54965,72603,57042,55935,28695,10123,24321,92759,84776,15740,62502,77455,77276,17629,3314,91279,6790,23063,79197,25854,88453,33502,33277,97086,60374,42208,92513,69184,69841,75469,76404,99100,18824,72873,28895,21389,57377,61201,78212,24805,7907,70236,46705,73451,38853,87297,56947,60343,16121,33953,35697,40403,20554,56094,51129,49975,11862,67679,58589,96965,72426,96751,11292,2538,50559,35829,61011,98391,71160,966,53609,4901,71840,50628,32192,66840,86158,17450,69398,52896,37825,76313,58220,96418,46976,52013,97679,38838,77628,58037,46775,57738,44758,31016,25769,12057,60507,14040,31068,22838,79654,94806,19498,7026,84200,44092,26039,51574,47906,5545,71081,7719,7724,95148,66479,85973,49727,8851,68399,65918,16642,51190,31485,88133,76298,23729,57394,37644,78531,82931,88604,54244,30156,75696,98257,80618,66459,38373,90767,9173,19957,55028,45411,68656,64697,69934,17584,48187,44664,97784,95880,72513,8139,74978,56986,2718,55644,41464,62659,62014,95337,12657,22507,28334,50386,96253,28400,9756,48952,19853,65315,91255,43240,33727,57079,3715,14774,80802,45303,85597,71950,13081,93914,74471,69148,70173,77178,30538,54059,40904,17364,74477,72043,52409,51563,2789,86460,31388,65374,52408,63773,38804,48760,45482,79649,29649,40466,38650,5496,70680,13009,60053,17656,34406,88502,7854,46337,77566,29881,23008,27424,79753,63559,72220,80397,90800,43668,63515,10827,40860,51555,4371,91103,18156,35322,84719,92600,67071,37119,20193,76416,36802,92113,15738,1709,29396,5864,4139,68902,46523,11159,88721,17388,44786,1632,78243,61928,67453,46277,41179,50095,78427,86891,78633,915,31238,28317,47691,3414,78701,83115,68499,73989,13860,76505,91736,45041,76914,49733,83158,97427,40741,64110,76314,10935,57537,2466,29711,77954,16939,6515,57322,2861,20985,28459,67034,11067,43526,17496,38604,80205,78329,90328,5394,35137,93803,99912,79714,6282,22834,35361,22374,25145,60049,13120,79129,24457,22677,8940,88561,94091,57662,71567,60151,28614,81995,25549,11244,65092,80274,16988,34169,31032,56071,69520,15134,9937,30360,91031,54689,79138,67649,47750,68335,45825,75295,37925,66151,50591,13984,69857,94802,73882,5079,47148,29418,57964,26130,18677,69774,80227,19250,39491,72837,87503,70427,27320,27134,66844,47663,13332,99738,61870,73652,15167,44412,33378,56176,97571,51366,68061,4337,18372,82988,61692,15425,45914,69553,77092,80938,87080,48387,71693,73734,69370,5996,63944,40314,21275,7165,50393,14545,9547,82694,41158,92200,94668,14870,24320,98609,14769,37006,17552,7401,14229,38870,86196,35131,4294,80907,24117,44591,24103,36156,86811,62367,31150,5035,48908,68388,68118,46217,84169,51386,43528,45902,74460,30641,25244,65399,24960,23171,37121,2039,77520,69176,20490,15428,19362,57024,11388,9414,41348,84046,31716,67952,86606,62046,39034,46340,28041,81909,52900,44785,30447,37751,45596,98140,92397,44625,81494,86950,33579,33377,54248,66334,48311,99975,27062,78149,55461,98331,46309,78684,55763,23747,45451,75883,49688,29827,48075,85195,39482,47748,40447,81105,93300,50567,55064,49316,24021,47794,98450,64918,77264,41310,73757,50379,59263,95805,11100,37748,54864,38388,70119,63922,81662,44652,32135,59309,34101,71242,60674,30801,47531,24606,41011,62427,2121,31211,21643,53770,68671,91644,75770,22784,76496,41863,55431,12931,95030,42756,95405,81945,94338,16463,92692,80145,32950,63504,99330,95000,62969,15640,69888,48758,24131,98715,88246,48157,48575,3421,86303,66892,28622,9166,83239,38775,594,98537,13970,18492,31539,19485,30878,45954,95295,79381,45316,57518,40720,98198,85388,81114,75125,1769,88937,75390,51244,74211,92628,57376,53681,13978,86372,73121,92598,13266,87641,88173,54863,85415,60324,92183,33360,51369,68490,15826,34025,19011,42398,11364,95762,71859,25822,835,74496,86264,85712,42634,34397,84928,14784,14193,33240,484,51628,54894,61601,78126,38583,68034,98783,53012,76797,78527,25523,17796,69256,27628,7120,84488,43031,78658,7587,30832,5485,93689,1302,20691,52363,9493,24766,71537,15617,78434,53722,52275,17165,14228,4651,89735,10741,57378,89313,9790,19601,5251,48360,75503,40404,42010,51198,61502,7882,5484,29363,1353,44889,20355,61073,53918,6149,45566,20694,56008,12502,13101,83961,45377,38006,73945,42460,96901,79000,13408,66906,89549,50269,42205,86790,32284,21500,83835,25195,59419,52597,62496,77072,89948,43002,41555,23784,3386,9489,1964,47288,75852,34777,61913,87501,17231,68414,7727,51772,46303,589,83078,9682,54976,5416,2738,86058,34175,10320,54223,30623,64180,79005,15369,83262,93850,38136,12955,31598,19364,27987,62894,16792,96140,58804,86400,88141,38821,30775,95799,22514,29252,19046,27037,55001,64985,29845,73232,90802,39768,45024,49248,15713,83500,6662,67101,35754,45546,98406,77267,31604,58495,89029,45412,20165,23309,75178,5047,57974,94229,36282,72183,60856,36403,81949,70082,72510,76549,57575,18272,32150,19215,34690,11520,81924,81594,41699,95207,25937,77635,30583,8836,44054,66970,99057,5385,85316,51208,70172,57642,64561,88626,35150,24093,63929,19888,24696,93552,6973,85784,23935,40441,97968,60107,8923,44108,32866,50761,71710,54728,48562,99971,54006,76710,38519,43840,21235,47858,80190,43955,16049,39670,24193,83866,5253,19580,35003,67149,55055,18210,68409,36084,19497,76419,8890,65295,61753,88594,80276,60646,72168,28765,90691,9617,32368,7721,82912,1965,60867,12727,15230,98950,28377,34557,88393,77271,26856,74519,5629,90108,30007,71949,22552,89966,22828,32683,19012,22837,91325,10106,72895,41780,36692,3988,72490,94821,30302,63099,21186,78930,65663,86781,61571,93921,66144,63647,54573,4512,70382,14367,46739,69512,27742,11032,79079,54852,92861,61132,213,22615,39510,38553,69739,46918,32936,74105,51194,70310,13478,87833,44990,8041,85442,47183,20376,23898,97377,57014,56283,92362,3262,49011,98777,636,74397,84056,12386,54783,67210,10112,68667,7257,80354,10222,97438,64387,7768,65210,42529,33247,80941,36709,15460,51839,20973,48705,79006,48700,6677,41638,78872,39445,40932,35873,91914,18658,53082,19339,1543,7220,50023,30084,44509,13745,7748,3859,65874,36652,74094,77331,2179,50276,31087,53687,88536,96981,35818,99313,50555,38769,25786,7242,5912,23842,2297,41788,65023,97179,54929,64152,51042,64722,86134,78670,81491,34539,10504,57637,28753,22964,24232,35982,46807,9963,69904,79647,20322,11717,87171,72544,21362,34581,87900,11503,64413,9085,4412,34006,43920,62563,60934,72731,77096,51217,84341,88259,70195,23173,45498,32632,62194,75069,67601,69769,23956,66779,76717,23725,88286,21480,68564,80505,13982,19048,53986,5486,64927,84215,55957,48611,55523,85996,51586,87000,22266,17530,99459,55337,57012,56155,68076,51964,90029,41252,20552,1063,77426,55811,83698,3929,22621,72759,55182,34726,59437,36189,47508,51994,4957,55809,81215,97058,576,37483,38241,32848,52018,48197,34601,1327,95048,919,19688,69204,9176,93132,51944,38734,11438,41475,86597,82272,72135,41813,61804,29489,75585,3293,90792,63841,40055,42366,47486,42688,61805,76872,84224,24352,95852,21648,70975,10610,57617,97922,51840,8567,59392,70727,46322,87715,24251,51110,39331,5316,87846,15758,54882,85160,99367,25189,52366,52706,29224,80172,78204,43086,16892,58556,60328,31307,47822,35472,30348,63269,90300,25123,41311,99856,94673,41049,97594,53517,39109,92626,42660,35383,1474,91937,96034,74895,76543,2966,3275,66884,77547,42040,81501,8858,53758,62160,27101,5784,83703,65668,16588,79046,25858,38841,48517,18264,12978,34558,14469,94893,90443,29910,31210,69098,62714,33919,63488,9289,52803,35267,5507,2164,98271,87083,75410,23836,69088,5623,45232,23403,2483,32962,39475,52731,2864,76632,86019,65074,31212,59754,77660,48489,98859,3545,21667,77398,70389,95192,95195,19097,85716,92668,31482,99620,15136,19833,2619,40188,9500,94331,63776,65362,25765,40470,66687,70385,34547,76377,36109,87888,32740,71435,18146,93596,61007,68071,60404,90632,9730,92902,89462,8987,86050,99477,30527,46504,79362,95838,6970,80471,40151,95707,24823,32846,82813,10397,57643,48452,35675,88697,20775,81319,82635,47184,72372,79963,24714,20627,25497,79622,15271,84923,53434,40402,78704,33236,99482,92348,11435,83261,29606,36003,62646,28090,99582,27952,11427,669,83797,95494,89160,62622,39228,62373,43745,35359,73379,65274,36019,19073,15832,23460,9047,13359,14287,66601,63639,45558,81577,62374,92441,88941,53176,52154,85511,94586,37529,93651,60100,20953,36325,18445,48988,77378,28550,42313,87033,51719,66717,46941,47537,49839,28803,52427,68337,69882,23157,60642,56159,92024,38924,58367,7493,38868,96440,48482,32524,88512,79967,82605,44487,59976,88968,34941,90190,63206,83617,76478,74332,87711,96354,9689,15907,1849,85982,83253,27207,90925,67831,98764,25471,94021,32304,18212,20834,9925,57323,73916,62701,69227,48152,30681,39417,34410,10537,801,3434,69385,79348,57629,77278,41119,5604,38257,90153,30650,19539,28656,6709,93666,26835,51634,69036,77425,15941,67519,26019,49524,51769,30783,33973,91067,68158,82631,40392,96000,35320,60467,90417,40016,54735,95410,53065,71890,84141,60043,71957,25366,42737,43385,36695,7334,40224,1542,17399,67340,62222,40166,53665,9175,74950,16900,72292,62753,70954,37054,69609,28611,47409,97235,96596,78997,38112,84256,39581,56439,89227,78483,7756,55691,81585,74855,85042,130,85609,10124,62016,78068,16909,48066,40482,4102,67584,43261,18794,18801,89696,63692,5890,12680,39642,43849,81680,68266,97347,20084,92443,27276,92046,50064,23364,63246,67564,57095,66645,53632,35281,62527,6053,75578,2165,79053,98669,40087,99098,76938,26472,11052,88387,59228,17826,98130,38671,28923,73880,73112,2813,75954,1786,72317,50365,81733,16444,70967,12718,96967,99573,51105,36729,86983,69618,76514,97605,40846,85659,26439,64246,3258,19973,93078,20607,45018,93006,23922,72443,26602,93964,23717,90335,22572,90281,72937,81220,11502,90658,99621,56503,73766,34499,97694,57062,60826,14565,77526,78258,11337,34252,85389,7875,29450,85841,98986,62873,10144,44400,63830,48836,4186,60670,76095,84611,74640,3799,43710,54726,94674,8535,26817,5279,36918,41313,60728,65767,22130,55613,79179,59384,19132,70153,52260,27439,92764,59753,98179,89701,51589,85677,8462,30857,59584,61288,39116,87790,84936,4284,96083,76048,58319,89009,95061,55834,60843,43776,80808,31882,34475,11058,65484,73838,67297,9639,74572,85130,19056,47076,84479,96499,65279,42268,53473,90748,61848,99213,37452,70965,48161,99361,5415,45799,78350,29172,1499,93756,63262,11822,43838,4596,49239,40758,48793,18389,60943,11971,81090,32901,9424,67503,87908,77964,67079,57254,83850,51096,56401,50619,89781,47897,74592,68261,91318,4012,95372,73480,71495,81284,46126,88484,33007,46893,23924,18468,71565,24415,37657,47578,33468,62120,86054,99359,61033,65835,17432,95585,48020,26662,90194,61590,62615,40996,14570,58035,35329,43382,57316,11254,93016,30522,75361,75984,56385,93218,45022,48089,44159,64837,70537,35192,82533,48352,93351,42849,3012,59942,60811,55818,82875,7057,44,14740,60851,389,22117,51557,14530,66711,3181,49482,38985,22817,97136,12102,89605,34278,75987,81940,20905,19005,36292,94384,43018,9662,88253,30168,52112,37504,75808,31949,7861,9745,11587,73958,27806,40469,37351,50998,11418,56841,25894,35762,83236,91517,83626,16966,33686,23395,20828,64533,69661,14222,56628,34960,94692,29948,52873,19481,53425,1179,55637,99358,10171,76087,87092,44566,9867,80602,91800,46244,48856,11311,17049,72147,99673,90862,84303,74265,80059,67493,53066,14417,27699,10914,39603,3127,37328,37432,42777,8314,11300,41771,80328,8838,47322,34028,75769,9257,73860,91192,63354,63257,10929,82679,69898,17033,1610,78823,38542,2354,8214,91293,60684,59163,73383,80250,37685,88431,31746,88935,40056,60444,31713,69602,23303,96791,41107,68161,62125,11285,20115,93441,28419,50744,92923,11104,58805,4515,61746,10344,15085,55689,21681,53645,79324,11227,73423,79644,34494,17065,42735,29986,31924,87272,92036,72115,92766,28297,33749,11821,66426,32761,60175,37673,86807,40385,44497,91945,70241,54541,87281,60231,85711,93769,14931,57671,5187,66543,31178,95919,1478,65131,29120,1420,43808,2101,98231,35269,20038,62434,57744,46542,78789,26132,52528,32130,78080,82244,73878,88096,6047,92287,26683,1506,41323,32064,14190,71217,94752,32971,67005,78323,27291,21397,47575,91728,19079,43851,3691,72671,38669,64584,14359,2802,62259,43139,64607,98015,26242,91419,66842,30435,76611,46530,19923,98476,30798,9293,47681,87065,25245,80920,99049,177,80033,51638,39708,19958,13795,57878,69738,24104,84444,54602,86297,47247,22005,26237,60287,25084,2258,58649,44906,66569,67308,71593,80002,77076,31775,23440,27587,34666,91313,7580,68213,57963,38137,3727,6052,92842,47558,90261,80375,66206,2624,98098,85796,96210,89191,43116,28956,17794,37974,97276,63855,73967,91756,92824,61163,41975,85583,26930,93346,47714,84285,39128,93925,41606,35943,26917,94998,92490,17437,53537,59644,55137,60172,20585,82435,65179,3276,850,59656,89374,56860,54681,66785,72018,46783,83784,29544,90968,48913,66002,20140,41983,87965,22191,59727,55666,64094,68095,51342,95861,8588,95709,31559,57552,7942,72457,82274,7774,23137,59438,80598,58142,12075,42411,63673,89371,22166,3432,95756,95540,92774,2607,19096,83185,90934,6951,62504,51912,96203,68611,36149,10639,30818,1629,96481,72077,22866,51549,97488,30081,80534,33678,74713,51876,82800,98933,75846,68192,39996,67307,28512,65662,49862,4437,44356,5480,80665,65126,32707,23244,12206,95455,56334,44082,39870,26547,74665,53963,58505,23920,69588,42506,40324,99039,87356,83653,96484,82738,1575,25994,73810,34051,14196,97583,58936,44389,23122,181,92755,34386,51184,60903,73105,59360,26269,53966,80293,30078,66436,80326,88537,1125,27683,22283,46176,89586,9277,7491,29491,35107,28756,7390,99677,78587,72804,44563,64896,72208,30165,47550,41035,2375,37042,55452,95780,83857,30585,53951,13322,96399,56122,36690,47757,43569,70556,96692,11920,16287,86023,63908,18588,17300,13156,23708,79779,53816,93495,34576,92788,82664,82897,248,73264,35526,12968,25089,90036,48128,32661,74362,56636,22100,7402,98049,1870,79211,44369,72904,56100,18767,79965,68672,64377,97019,60110,45459,93572,77362,13297,77751,22074,25320,90191,30054,70651,95915,34161,52274,49626,21350,10312,16199,35840,53508,78660,31555,98189,74261,97659,33569,41845,1239,64737,20936,80515,99844,49072,25905,85086,9485,88144,10021,59046,46031,95634,47903,33152,16949,76269,30954,55279,56021,38712,49490,82870,1777,22308,15269,98882,10233,29137,98171,34011,81657,39026,47689,218,62638,3339,51145,14772,22259,20251,63721,54048,33933,34641,31378,38123,84503,73799,15337,23499,36563,85505,10469,24836,9827,46981,93574,44996,85596,92390,45549,68107,92863,45318,7010,42106,25953,3869,11309,34209,17000,77294,64805,28426,21999,67967,10383,32062,86386,92192,73084,12447,98703,49696,44485,81092,30127,94149,23921,20265,8365,32012,35915,2777,16259,28245,31520,65870,72150,97864,77897,22686,35222,27165,90788,26656,90094,55102,4887,39850,5731,31484,14315,10055,58743,33711,34243,43001,82275,40202,91727,37521,11530,28029,49834,2415,13966,2590,44117,18973,48954,10033,16573,7649,99727,20831,29740,27471,99072,49744,56222,68683,24124,43762,15459,91311,18673,46121,10858,48218,57413,47338,35178,67827,44124,80632,4055,48481,89565,97717,9552,90314,75137,7428,30513,53309,65761,56362,67386,32689,43147,99567,31403,9504,5631,60733,10647,68805,45873,23724,86258,3966,72791,35637,90933,97544,43036,75708,94142,37150,46157,20259,29430,73664,65869,10828,96062,48202,23182,37056,4064,67872,18114,58975,43867,97724,6997,8631,69547,84287,4880,33115,42989,23318,96773,19565,92706,41616,37436,26503,124,71099,88633,504,31285,34672,25528,94773,2996,52745,52905,62707,69941,98233,98142,9490,28044,67672,87746,81496,50185,39194,80816,95637,29006,97527,21803,26311,72096,44925,85839,72760,76206,13500,79264,2690,49088,86916,19864,67740,41898,69332,6253,78442,6506,26635,35001,35155,41358,70970,94469,38138,90570,60412,66640,45995,64734,96742,22232,79070,89926,22083,97461,46889,93037,79957,79389,6557,23960,18392,71934,60828,60746,39242,72981,78262,17840,57131,38607,79755,62260,61710,84345,3995,9002,7911,4434,52444,22575,83861,52595,857,66197,43282,48065,72941,13975,99640,95825,82087,43149,25401,15374,3903,11959,72122,2322,76720,72070,19655,10373,11485,87854,20332,58910,59031,13887,88394,81497,72301,38620,1288,62176,9718,43333,5331,5817,455,88169,35676,26165,44476,17071,90095,90141,5454,57244,18196,18162,58117,89152,10278,50887,36145,83762,2057,82356,8249,48843,10966,50958,89404,19749,30105,43157,17696,74179,30610,68351,30382,44919,10898,61521,71139,92995,29616,77038,78076,77211,26446,81475,10484,37270,20120,56965,8488,37204,56994,11145,64251,53664,78972,14153,28197,75791,91064,42498,55397,15352,76642,28949,3926,86202,48040,93104,46473,75776,78715,18854,97794,54696,92130,11105,59804,81031,30638,76322,38379,61226,95200,22728,78507,46541,21958,40411,19054,94404,10338,74423,5093,60352,90932,73535,24538,77927,53791,35309,89275,66979,76743,36336,95206,24462,97460,77385,2457,68539,41012,10712,82406,89407,21201,3335,70012,66267,99074,59592,18508,48340,62789,24978,21351,47769,51579,57567,9467,63838,62870,97929,5896,95622,74920,75693,81798,81796,64867,46871,72823,76207,69945,57481,13452,6878,23483,99539,31479,27716,76932,86438,33767,72940,26936,13785,34951,9941,90045,1997,10702,13932,40014,85268,60735,3718,36625,10769,73702,23512,86037,5883,24407,29136,94344,36262,33437,49001,10776,44231,10679,50143,57960,39178,18772,56746,11437,73348,97122,87783,69914,73296,23308,67487,73155,63695,43201,71711,99052,94735,5436,50400,60064,76245,95114,21820,6036,76715,64574,14564,39945,54809,10936,35783,86216,68803,43680,9635,88,49036,17652,47900,35432,83380,30173,66648,1719,47520,15549,31760,72693,32035,87148,81789,80728,76569,94228,53378,4804,39485,53180,34826,3016,78806,28274,36025,2320,60366,3052,10536,52921,67072,64416,52338,76921,22141,73900,46021,869,51531,93463,20495,72875,84030,95399,97396,55430,81462,32810,85140,21623,69328,94640,92991,59669,95898,59447,16181,86660,15514,40007,65577,45552,50787,66644,20899,56616,10476,8218,99585,81820,90586,49905,60001,22630,78989,15206,47882,9838,39907,56975,7150,47063,60559,74233,68204,32277,81084,54586,62965,26421,54566,17854,80767,38589,79776,37285,65757,75316,59479,30680,97227,18823,73815,10629,11057,96137,49220,24378,6725,12491,29753,13382,32685,49112,31850,9577,81061,38309,57502,82059,2628,37937,62290,18429,67180,48346,95831,12260,43888,94723,53904,44416,82538,69525,69708,614,40442,33916,11232,37016,26631,70841,4815,69316,12958,5086,80277,94928,22386,81450,22002,85138,56323,29166,67099,52060,49028,48293,34758,72474,99548,96877,67027,6545,1431,66046,50995,70940,62712,86583,14394,16737,58187,94690,69230,36833,11840,67509,17879,2316,9696,86680,69792,76052,56810,97791,86464,9384,57033,91928,79363,22967,5346,51202,81256,74358,95367,14645,47116,25608,68278,39508,85971,18066,35198,83851,43537,44342,89930,722,78459,37627,87361,57789,80165,45886,35111,35081,57920,18544,23169,82387,64673,28717,35233,26210,96590,84102,10921,28010,55630,94617,16483,10513,37800,3841,8982,67958,22586,11102,80007,53548,14244,54264,28892,85149,80210,18057,51167,61189,92587,46229,36981,92081,25912,32450,32858,6077,56277,34861,41206,44970,31548,11208,36913,50728,12459,48028,52822,74553,97313,32478,36820,4931,41912,87352,83346,18906,30011,70529,27721,3294,83399,37438,79732,49423,35978,1146,38157,71667,62112,62348,78992,77103,16198,4664,98126,98236,16090,20714,13355,85367,33956,41559,39277,90383,54933,53136,25202,52667,86663,80017,67213,26567,69182,87477,47563,47818,99881,54565,63510,38037,39113,57512,28411,79357,17929,31134,69889,56294,39078,98064,87889,6939,83717,57230,86377,74304,40365,61004,74541,41451,32875,68042,93012,53266,85778,21069,86304,65087,35006,1837,31209,43662,41277,73543,40707,13024,38822,75252,48921,38980,3550,52838,38654,24202,49045,37342,88197,64452,1265,75179,2730,7153,28937,98985,36427,41063,14952,65590,80488,98167,29678,67145,21503,51844,96800,79787,46803,75709,8962,98785,42707,73564,32802,17813,55512,87927,69209,27076,78772,39405,86199,77697,14385,8474,30053,23886,24502,81601,7380,21177,79515,57495,20183,96803,1788,44991,83474,58939,26262,55455,68777,88752,21714,82235,69743,92114,67750,69489,42177,59278,59457,16376,92940,78073,25739,47801,18865,65784,82441,88456,77857,69689,62456,35631,12773,9772,67424,21702,16797,36916,94008,65403,73107,1781,84199,10842,81701,26678,46654,94526,36742,64609,3418,44560,6424,2933,59969,8375,31637,62825,51675,86055,5900,24738,68356,15700,5856,35786,37698,61268,84436,39625,87139,72290,67936,57837,78127,17066,65829,65538,1477,17632,67094,93749,90354,99285,33086,6072,59468,11146,5913,31023,12699,44716,95218,73253,6405,91528,79993,82992,17614,69879,65118,93438,40377,67933,25467,99797,70212,79814,73858,2185,87052,76607,46877,92261,72563,38090,3837,91803,5612,19025,94966,49307,87869,88563,76120,60142,7642,72767,64375,91824,96700,93900,25934,11031,60141,53092,87555,84262,98551,94503,39380,56151,22537,64897,21396,94285,62165,6368,27853,79217,85144,23859,13092,65783,1592,9518,73834,55799,12823,27738,50432,55045,5713,5310,5666,55782,40120,42517,78110,41784,73610,81308,69735,43362,59885,36455,84767,40401,40184,57308,59658,87672,39046,56516,92825,97773,11396,47803,18754,81492,78179,30863,46508,68578,36076,16709,47222,94047,63700,45812,13455,26846,24382,39824,62149,22911,72542,32969,40435,85157,81843,18077,30111,58964,30481,62639,44139,24247,33185,60456,5189,53544,67260,17919,30180,81266,98708,54030,88609,7542,2256,95274,23694,42013,1164,93712,90628,44176,63760,55815,40907,341,30149,31813,92434,21737,47922,25327,62993,45545,64621,31359,62719,22316,74853,46042,66084,32055,413,72274,88269,97127,40431,23968,56597,80063,4741,34418,88615,68839,39072,83889,29952,73978,50046,31825,14274,86749,53848,83489,82977,92889,42265,98270,17713,80376,43400,91037,3577,36263,28648,18809,2203,95170,52425,90765,94023,15121,75823,49953,61773,15510,32112,57232,91645,26134,86832,2877,93126,80778,22356,53750,2249,36237,61445,41418,59243,13447,89763,3566,78182,48874,60377,27038,51008,98366,6697,40591,73796,66471,25094,33618,92793,36527,25423,97891,53869,34440,53709,27315,43550,75722,75259,69757,33195,84031,34136,45688,8709,12045,24411,57422,97118,33344,84896,91492,96017,85202,78409,78824,68631,83209,84688,74744,8110,2251,87873,89506,52302,76367,56387,79604,45146,79855,73674,66072,46260,54441,76401,37326,83245,64511,34934,15356,51939,63914,49583,24934,9259,5862,26008,13497,24257,27132,83163,97736,22913,25235,75086,13414,86991,14871,63583,17309,12508,23509,77699,95084,33135,59735,28853,45740,3938,17778,32249,96422,69414,63607,65741,6334,9349,13642,38739,3858,18952,63888,84674,13122,72318,19331,43869,73113,61085,57559,63945,14091,8796,34706,42999,97060,32989,68664,90714,18692,73802,23250,35717,97455,13896,86662,62559,87950,6125,58722,38071,54271,37430,25738,98755,52000,22397,8350,82822,99619,36045,59402,46353,79526,53347,86889,94262,66091,87017,5182,55635,19716,20053,47345,2608,82918,86007,38204,98938,31723,98400,73368,27957,60611,46587,20366,42945,20409,1921,91495,74516,77448,74696,21426,9480,83487,21299,94941,20502,64400,99730,24216,48,8530,92244,63118,73576,82453,92946,40779,60459,85292,45777,33276,31300,19636,98563,84901,74041,32333,21328,98668,50278,84491,4487,94104,79551,85981,17336,20045,51540,42087,5256,94629,64926,11332,46342,12510,31428,88248,43099,3038,86934,28386,96856,79269,66664,2507,77840,35589,59839,72571,70030,52928,4707,54130,48775,79060,71660,62711,37004,54746,47302,41693,7965,10725,59045,75895,70643,38236,47606,36733,92110,64397,11410,34543,58268,47844,14505,63537,79777,8070,82471,31904,32693,87781,11912,39607,48367,855,51907,65011,91469,62713,97843,42576,89843,55844,14017,82695,33129,99250,89258,31864,5642,75077,14980,47925,57029,33389,58166,35450,19883,46471,68864,30694,8812,92128,37509,30804,29844,54604,29297,81065,99339,2248,7622,15705,76328,21386,99355,21954,63703,68675,4829,95481,6582,20740,4989,39147,46597,53818,57351,73500,4404,56788,57763,81978,18594,23416,58195,21267,18263,62039,76234,75752,35231,39909,43122,76925,70871,61524,87812,71333,80079,75248,5207,45582,96678,62275,281,20441,66838,2849,86525,98740,1488,8941,21600,31101,25568,80745,41972,79408,34274,82573,24127,15364,40949,62488,32076,41303,92752,11268,10346,14720,67109,90242,47048,92209,40130,24453,2006,14830,57630,68202,91781,48716,85678,8839,63917,30240,6575,35015,84038,5479,34371,41167,16606,80439,47179,44596,84852,1262,63968,4226,67218,75897,86006,57892,64661,43796,84282,53130,2868,19708,69235,97229,74093,22246,10219,7105,55751,7460,90450,54671,20425,99989,40453,31833,59535,31415,28414,65738,74215,82187,10287,60134,98987,67232,76014,3121,88474,88995,72459,4388,59890,59456,46524,96240,95275,66352,14056,21403,79689,37478,49595,37957,19230,63614,2787,6597,59181,34017,56255,8031,88140,95583,72663,46631,45371,70214,71371,80380,38091,57287,34236,78255,99023,25884,83257,42745,57299,89063,73616,14179,64509,6224,45741,43604,16338,13023,79178,34323,83366,98801,72138,16947,55508,6340,99017,55645,80815,44681,32496,27248,37858,42862,98607,86629,6011,69775,90655,62269,37503,80427,68935,5222,15915,99157,48685,61399,88100,52725,18757,72771,80623,75839,59768,27479,81057,71798,88687,81905,29726,36015,9380,66782,5619,22706,13713,35315,52796,77467,14829,69546,36792,80215,32431,61987,10421,70872,99845,88204,96181,63516,33777,82074,78940,3030,66614,4700,50048,91230,13417,63592,9416,23208,78150,54627,32703,10180,74172,37786,71954,99885,36471,17753,89077,92466,13989,90167,8454,98019,23475,20678,1003,37892,77744,52717,91991,55355,39557,56253,16712,63377,35716,49483,23036,91857,50000,80971,19696,58610,16846,77816,95423,13751,16241,549,19387,57551,82725,79658,83194,13442,66516,53895,63088,32011,74986,6859,52701,99523,27110,95416,22969,92304,79611,77755,30851,22631,41246,16020,71136,49937,23731,80171,36239,36100,76725,97961,12704,12681,27083,18279,15808,19358,80945,13318,8144,53380,41425,66067,71906,74299,5929,69281,85493,54314,34568,47478,42194,18340,21777,18336,67289,53859,83914,11648,73460,74533,85592,77093,33128,90866,75923,46014,49840,34755,47172,33020,72831,68222,7117,77041,13949,50907,28829,12882,66523,90005,21708,60166,42057,74625,59765,97295,94927,18402,25399,96124,10456,13996,60864,78610,1515,94738,74306,25031,88370,91503,8673,14210,65591,9172,80537,83578,37193,88435,55227,66328,32279,81463,67529,43630,84590,71843,46627,39192,61991,54959,83094,65819,13341,33660,79278,78927,49677,75625,82697,67966,76942,23001,71376,24988,69673,13608,39548,21080,83604,49066,65140,49499,82976,76863,84238,91674,8581,71151,79502,52847,97921,13812,34521,73436,1658,65682,31579,2018,29521,62100,36365,4955,90832,30082,6698,46355,76303,29660,79556,54025,91076,74703,92809,75240,87046,67910,65370,1016,5112,77028,67106,59810,52950,82216,74408,24305,71276,83983,66161,58688,37669,57676,40382,33348,4766,95570,83161,51435,8347,11006,73693,96717,59270,50091,34097,13315,31784,31660,25388,65109,30693,93124,96649,33809,62518,2909,49630,63551,10295,78239,670,97971,28897,31124,85420,35655,53018,38819,32422,95921,95737,42801,10968,53910,37794,84360,625,71178,98188,83766,83999,95911,75917,72143,20078,43641,10661,21577,14528,24095,69324,46771,33593,93852,9094,4478,14078,85401,43632,46319,41719,11380,63602,12202,20335,90639,83394,74012,28599,46919,72033,46867,67235,56491,1713,23839,87586,56778,96968,45089,65601,85754,53754,4522,78724,82901,34545,98966,72888,54205,81793,71312,50740,69651,34191,9455,23798,54397,39671,57994,74876,55386,67504,6866,12518,90717,84497,68962,49506,51814,48597,37302,16922,57714,38513,83200,21251,10381,85882,23443,64210,80542,64448,64366,11985,16743,38648,41745,57833,47064,91989,26434,54571,78085,73129,72948,90469,75986,59114,64671,57309,78586,20683,58022,30964,15914,86197,8132,96574,51718,2893,83022,12783,15128,95627,40858,8127,73824,2691,71337,28402,52536,32493,54996,82569,23986,18412,48269,35852,53982,74026,68315,81171,47080,45789,78336,53577,11500,52545,37623,46801,20083,17293,15180,7370,71029,24419,6668,74699,88761,79909,94254,71754,12352,2413,14345,6640,5438,29903,78457,82502,41669,73177,47668,7784,87799,71065,36773,22982,55343,88585,9757,17568,55328,72065,31887,88611,2281,18364,97114,21692,44884,11153,79504,20010,92100,81430,81570,2995,98108,28931,78771,31375,26966,4749,29372,45841,72247,17442,53448,14618,1728,16512,44774,47163,82799,47366,7239,92161,35681,99369,28970,89935,64983,49272,81514,79553,64043,68630,2181,6375,67283,49898,16640,22257,46269,6433,21994,24498,14124,96854,29149,61408,72120,73401,71726,6603,54970,53603,48947,29339,67077,52845,8196,6337,14103,10362,79188,21137,90913,66674,14633,36277,63244,6708,68836,72712,55172,4170,78312,83971,62843,18048,45929,7128,87737,11761,51078,6886,11059,18059,32553,4222,46977,3965,42955,37266,23472,87488,3584,13252,52823,25679,6217,16738,81146,86380,31336,92687,40465,21682,39779,16014,38586,20920,74538,2438,38378,11316,90969,63305,37221,19220,29601,56216,1820,46584,79603,83388,89038,27788,78977,29989,77481,97038,517,96065,71991,76771,72821,89524,94333,80385,28592,73011,36078,30944,5752,67921,72820,36628,12060,17480,29526,25346,30500,15586,46699,23930,63140,61921,96351,43539,27631,87418,88767,35550,24155,28679,8261,59897,82880,15003,28118,2782,9687,32265,23305,66379,64543,38097,6911,57947,92965,82293,7752,7300,93859,57388,40689,63295,61990,96601,74329,8720,4199,31516,12741,71279,7077,17086,77780,33960,81203,3827,77602,76400,92377,64409,16933,3768,85758,80412,65448,43520,88809,7956,64944,3528,20154,71394,1049,56395,7788,34245,53912,1456,82125,99915,18755,9324,36540,19993,27959,70058,32682,17419,3371,52546,13320,55831,53481,4268,56590,49135,89467,45326,21200,68341,74064,22878,17933,56980,64569,34864,15241,29330,947,74171,2298,56983,37966,71550,49032,23781,97635,81911,68185,50164,47085,78809,33445,2822,55298,96530,79699,96501,30462,4916,32668,78755,48514,68385,87513,31819,19974,60378,56050,61145,42096,27309,92414,82906,37082,58101,74191,7347,45241,44733,47684,50390,8586,98012,13214,11722,14480,15862,34651,91680,53258,52972,38254,92399,85319,7981,23871,74518,86195,47907,98111,95671,10481,11992,85060,26281,4874,74581,33296,81984,78320,96952,41498,84548,59439,7949,31931,51274,35121,15089,68467,82798,68993,26833,68068,81188,11646,28140,29030,34363,28696,35325,60827,67683,94350,18724,8768,53881,88252,72202,1334,39762,44590,26527,73660,80740,80164,55794,67062,14044,85110,55112,36963,68289,7163,32340,78382,59990,28761,20436,75963,16186,20569,77975,57047,28375,8599,75685,20582,52881,59078,4816,5510,31191,95589,88560,40092,64308,61742,53430,25034,4900,4283,95004,45947,28119,4323,29331,86904,76370,51476,13482,15745,99253,57522,57568,97334,28776,64521,19600,57635,84510,64167,79187,75163,59846,18787,76566,73386,89406,21345,32309,53711,80206,78949,54648,61098,32807,12807,19324,47619,38657,52322,75865,7524,40290,89629,39300,29997,22466,14968,80141,51024,32474,20250,30366,1225,72624,16607,38256,14984,30735,324,35925,60639,16681,42795,99415,45794,11864,7124,26951,33815,91705,89716,32731,7166,35088,85933,92077,24740,23242,74542,94685,18935,55680,79843,91965,92305,25232,76107,87597,1278,54557,94041,18106,35590,68614,5024,33285,1522,86565,72012,41193,65107,9638,93433,20891,59208,1123,55470,91610,71599,43195,53740,29956,81064,60344,86361,16858,3786,90736,81181,85629,9408,69261,22462,31511,14589,98408,90535,52992,26961,98617,85276,23070,5683,94369,62886,26725,53566,32074,78862,12224,18293,42210,72879,89984,82255,75507,35617,5542,12927,85735,79465,71980,1660,86687,49521,58411,96568,66699,61653,47357,61028,48308,66109,47369,78397,70901,75710,70505,57159,82407,92782,49260,56440,28812,92751,50893,59992,96437,47776,10399,27451,9623,37060,61290,89436,55236,88663,52239,88119,18265,55557,24414,25341,79707,85411,27255,94499,83837,47493,69810,72549,4292,81415,11335,64356,37377,12226,50875,67132,83438,28569,21725,86149,41415,97052,45332,87979,55539,8805,77595,65704,17957,49805,6705,97627,22704,24620,81183,94440,82858,73982,87663,82820,93738,63170,40525,40299,13757,83705,80967,35869,3239,73654,197,14951,33408,87660,74491,97171,86187,51786,79812,89256,3743,60095,85836,35312,38939,32701,9524,69021,56806,56089,43076,92970,11732,8037,32319,25287,15651,92961,53663,43699,23846,66971,23494,11902,53429,43063,15156,37252,66116,40964,46378,54562,10028,12864,11399,70094,26763,82758,67195,73636,1585,17122,4187,30611,55363,34585,90849,27507,42965,55780,72607,79788,98197,13264,4092,15308,47129,95327,24287,56833,50996,93341,52387,96275,77424,72849,99634,87841,81486,13063,23890,25279,51707,62805,68028,26612,75632,74499,89429,88460,12460,20350,90312,98062,39961,50394,99762,50481,61256,31654,93592,73029,11945,69363,18133,98997,62541,13746,5872,68627,46812,73988,60781,34627,3939,77435,3920,42284,33766,19020,75830,95994,45514,75147,72088,43318,29525,79087,50355,39075,66706,31619,66243,86369,71981,92710,49172,72883,38358,2504,69144,44077,25165,76811,83086,71351,11340,64292,54347,79039,66246,37502,62055,28443,6146,48548,92142,64026,13190,42047,15864,16505,21221,39170,81098,66220,27071,62619,61198,27311,51304,47564,40393,67808,90919,12248,83796,23060,6627,95159,68350,66431,122,90458,53048,64504,2836,59933,59758,86069,30822,41429,2533,48256,6485,8936,70453,24709,51539,89137,69312,56943,21537,36885,70765,32005,43974,42461,34271,29260,28774,25607,83248,47807,73615,12176,20474,67182,57854,26430,51381,25039,3473,35031,10205,53265,46512,81524,86355,48046,81837,3136,6428,41019,73404,19002,2759,74091,92533,69292,24586,47240,87296,39142,41022,60623,2818,59279,7234,70541,72891,74977,53500,15806,68221,78171,35833,35525,13938,37862,44066,95513,47469,30626,69217,50173,75615,37352,33899,60617,42104,34336,22281,50099,85450,8296,62549,78458,97795,53915,63122,57102,89826,57192,69364,47362,28467,14249,37694,36283,87528,44553,26247,70026,27371,21131,43251,38823,52038,6824,51735,40298,20528,10535,35600,99366,8125,17398,46477,954,74658,54353,88303,61338,40942,56404,86431,13646,48177,18465,9021,45708,72899,28716,39414,89862,63524,25919,81275,22407,939,56924,47432,655,29771,27710,81159,77418,81383,29734,63767,99823,18917,3985,84193,23504,89591,1933,19092,82117,90223,39780,95555,88748,457,3169,48180,35534,94017,8828,61887,65330,60771,24872,12278,23737,11249,7962,8884,67170,22001,66442,7168,33077,29442,52617,63877,93682,11226,89161,21526,25405,48927,67119,54841,92873,86797,26780,4942,64613,85009,350,94297,32586,82724,93894,72480,1756,97907,47446,95496,58514,70870,53763,34984,4530,58572,32532,28004,64111,35959,59506,23551,953,74463,48478,3317,86603,60267,76838,68035,79493,4764,26880,20931,96911,73183,72308,75673,92005,8994,26767,99156,69410,97135,96976,99257,59776,28767,64332,24632,3505,15420,84077,29970,42851,97871,20231,11719,45284,29444,41714,11419,38619,81961,88300,29280,46133,97876,14058,1813,20992,48475,27846,43913,88528,61131,46288,96628,9876,80992,6032,44586,85001,65510,18229,47746,27216,66237,88543,36355,82776,39,13560,70464,55216,20892,62208,79514,32100,98552,51407,24359,6728,21094,74503,37298,46098,83740,44415,33966,11877,89681,19035,42122,5156,66710,39210,20396,29402,54775,82455,24584,21617,65379,41536,71624,37268,36421,25347,30568,65563,32736,92326,45426,74033,93924,40833,48717,7584,85651,70854,25696,79660,70895,61403,93536,98879,35546,41130,37625,47233,56515,46216,59719,7688,42491,85139,25789,92926,56649,97471,28356,67114,82192,62918,46357,21253,85542,45157,52633,10093,15815,36614,56524,42987,78347,28815,46578,55930,53974,20913,70400,93637,51464,68320,12254,52111,55062,82368,78319,65499,48949,10704,89232,69401,94592,13961,6026,31357,38600,72558,19015,84743,33248,32679,73444,50940,64315,52367,31055,7863,61865,41860,46830,94601,93795,85491,99563,83507,57048,48961,96048,72900,39305,49049,29118,19687,40286,64572,99013,80096,59954,27021,15818,86915,81449,42011,86545,45872,10884,90500,71375,18618,49788,52168,17119,56297,76464,9920,26488,21208,41851,36018,42929,94789,76308,71224,10256,43576,58581,46498,60888,50034,88085,62945,41299,85510,25208,62950,24652,40439,73970,27328,79994,46458,36371,72355,16911,15955,19179,29291,56846,43328,72349,40285,28977,63806,56653,10082,68378,28869,43689,80805,12476,50630,66233,20867,34077,94907,42382,86290,91383,64847,12005,50134,48116,42333,96529,42246,81026,7039,54302,94910,21880,96160,3949,10612,48507,13736,18989,73109,84707,61559,50927,1538,31587,70023,45399,55830,90273,94661,67711,53551,9797,40548,27219,50456,33416,57116,35538,17873,39735,76748,59807,80298,8522,59037,77758,78742,22472,22724,50681,83406,43645,10577,63653,11757,5393,63898,34554,43650,60803,79119,75159,39701,71580,11231,41434,87779,20134,72335,49769,82587,99546,916,91832,9239,96594,36770,40067,639,56442,70045,18136,28035,53405,25255,87684,74096,63341,57174,76389,28531,33422,99219,83143,67311,18684,77043,45343,49425,68520,53504,26520,920,56390,44223,46906,51352,64331,50706,17814,12557,49739,55090,21165,29509,78340,96703,8056,29996,33748,7271,41801,5827,66845,45649,30056,36452,44023,6538,27626,3742,19599,52941,76468,51325,38828,70783,20102,90619,31592,8187,85218,39677,88258,30503,33488,33329,66212,73140,93383,66592,40497,1603,51545,53019,77533,75816,59913,75876,31849,25692,99324,15762,49419,5114,66634,89261,9972,15437,98378,98704,84606,64622,47901,42375,83433,14082,36793,49774,78858,17757,80817,6772,80312,74283,17465,78508,42878,33636,15778,22647,97323,93551,76555,89260,26673,78641,28586,61674,6774,39552,66929,32080,15595,54751,72675,933,27139,63779,74916,28820,6464,8335,32462,17985,18936,60852,7489,52157,79458,76483,3350,71244,40300,96589,18342,84110,93444,24394,25138,39885,51132,48323,91422,74871,18712,88135,86702,46350,17990,65744,48973,88990,38240,14296,42656,29080,2606,94309,22085,13782,56504,50986,64030,67292,61461,86518,13923,9315,34609,44874,29935,63990,33708,31640,66551,82579,36965,73712,31111,57772,83944,32449,44317,85868,2587,50373,45590,11790,33781,22412,76703,97778,4896,42273,47004,85101,45380,18927,4969,92560,17679,84426,97981,36607,89128,10626,26657,95884,52518,91260,25239,44617,54622,78449,15000,12804,76363,45860,64783,10805,59125,55973,19146,67134,74623,85458,82645,9395,55019,31015,23376,30876,12808,21973,25539,9872,13353,61829,22467,47969,70469,17357,4643,10306,66558,57667,837,93615,72619,72466,49868,77940,90196,71122,900,27034,53126,52317,42796,62303,64550,42724,12849,29672,40119,11082,95433,98490,31689,32676,24180,72111,36624,58448,21038,6019,73623,45671,32832,6805,56296,18120,70390,13415,69352,31114,79028,81616,76183,48957,10910,69369,10817,74985,46564,81328,1976,22806,13374,41069,91474,4198,10993,2196,47694,50782,509,440,78216,22663,75672,16508,49639,91684,91202,35558,1363,69488,25586,46318,58782,87764,7655,49084,52122,27010,4256,15605,66288,1161,29766,39184,79271,98791,70889,60750,36329,99237,25236,83787,94641,55703,81355,54524,71499,35184,16340,49779,45132,95434,61335,56696,49298,71154,3551,93123,16212,12539,68473,90303,92132,15436,73002,98293,97529,11751,2090,95119,49161,25179,87070,10735,477,56116,37490,87564,11266,97983,12767,19209,76958,41066,58139,97321,1861,71842,50468,25525,32208,74446,30140,46748,78246,40730,64191,97422,18179,86261,87445,90516,56397,73939,31799,73828,30057,93920,45327,57425,46339,73409,84965,29347,37408,83484,57211,63032,15990,35102,14491,7670,93971,50068,63075,11879,84956,95741,47958,57162,69999,39744,65581,64777,60273,98670,17074,67830,81458,3912,75562,56382,60754,41584,52209,54682,77068,95469,98268,61637,33609,19493,12231,3085,19055,81390,50302,95510,53184,56242,77434,44536,60990,22810,90940,56706,44372,92904,91480,87309,72580,43253,4319,27594,73006,94952,50781,10030,84913,73156,53240,13919,92281,63160,8160,62283,59367,25426,54043,53599,15785,67097,48144,37443,43284,90575,92044,90131,67900,2612,6133,97349,83935,59147,61079,16859,10505,18942,4600,78283,55494,35625,17411,62407,63666,48142,5586,7116,75817,25286,99671,18130,91713,71465,90562,81980,23872,2662,12288,80631,6833,91775,6613,1612,91852,87659,7725,69258,63157,54862,89686,52272,95945,68139,56123,70580,24040,8047,43226,92878,40840,42353,34745,83522,82922,67530,83798,60386,80114,68365,18674,72887,37773,418,80296,70547,25591,87814,1676,98744,67600,69535,5708,25960,55744,74600,17583,30620,2420,20533,9366,2668,87996,12451,19487,13017,39866,17431,30257,81148,33803,21517,20777,40750,72057,3672,48252,66063,1518,92877,23538,32860,4818,97658,61894,69268,82309,90845,93368,97204,61791,82138,91174,88427,18170,50237,46081,49485,47625,80258,78901,98544,96629,64330,91670,976,45804,98820,19416,21572,54494,82036,53245,65570,72514,89167,10031,30375,17244,21241,98795,81252,57881,2408,43660,60259,83910,19440,44371,77958,59172,33970,1803,25117,54581,39067,74865,23616,37810,55701,41727,94280,57957,64660,52235,95726,97553,69813,10292,2076,3034,25698,52703,24936,27488,75290,92229,60587,66609,35276,31199,45357,96225,31206,85340,46275,40514,81417,92830,66673,43361,81259,69822,16334,65389,26711,46448,51087,92650,24280,15110,70031,68918,38198,86996,44737,1285,63696,14123,38563,71645,36012,58797,1013,16811,60111,79403,74954,90,94916,13629,4757,34863,92057,19508,1437,67605,768,22309,28570,86001,64963,18303,88267,82361,45839,73601,22178,55308,7807,43060,39056,33906,39554,24814,5774,31503,58089,15755,83941,4583,83414,97202,83485,63730,78519,29244,63359,67172,22236,25906,98263,36932,52401,61087,79806,46069,56087,47462,7249,1104,93807,35879,9843,13636,34088,11197,44529,66239,97399,9012,62461,99622,96904,29536,14176,19480,31680,95347,92155,61529,78024,61242,90200,61962,86168,18080,21899,76509,97666,21522,61047,54778,1510,34560,5123,78576,94224,69459,16391,31596,60056,4993,93237,88283,32159,29941,89310,30151,19719,31714,30402,74056,14131,60455,14348,7930,29195,92097,25580,46896,97364,67531,56757,28254,78509,72726,21849,74601,64104,99684,93587,27574,92201,90489,14270,50430,37865,5500,72261,25610,91892,58138,45803,65304,52323,12937,54686,7527,7613,24002,16146,2745,46741,19701,88912,74750,60877,10131,37198,52273,466,98873,57331,76013,59693,53666,35652,77358,66081,39984,76396,7167,95320,34909,76721,30972,38833,35356,27303,72221,87708,76089,3488,28768,60916,83755,50292,62994,37929,52888,57215,93253,51460,90842,25968,37946,63372,88555,72455,24842,64623,97193,51168,17212,48736,89296,79450,96316,82647,52069,77065,34415,70196,42698,79429,10857,72461,99547,6127,74371,98471,33169,31966,46475,1602,69208,74318,66071,95213,15375,39461,1015,94129,62889,68897,16407,17730,17107,35834,79541,63037,81133,75010,91243,30934,88079,29386,85850,35685,27789,99223,22296,38999,16035,37593,86102,97609,49896,95521,38730,10071,77778,7744,81588,95062,47527,5349,7610,2337,2109,33733,96443,59317,20838,65777,91431,75509,94259,80026,64001,76111,68401,54549,93817,73484,52738,25118,45527,20933,64093,12843,3446,3980,64972,61386,91001,97424,90353,36499,26404,51676,59784,86414,37254,56990,4480,67085,44118,18953,16264,9316,3905,27973,59708,3485,5981,63805,21333,39538,55472,31696,63297,8856,3801,11190,76694,44386,42857,48331,1671,94474,15050,63707,60717,42651,58533,32726,46548,255,84921,43274,25463,49445,39118,19394,1058,62869,79873,23323,95857,98025,2016,54384,7559,78513,5767,23,47816,46179,46572,70812,77750,43730,48959,56930,77966,6288,58983,72716,20106,64322,70510,88750,91506,15076,29128,17179,55309,6161,50679,41968,61241,91895,69831,61003,65308,95129,5106,64778,71494,49237,47505,90077,75809,58707,45681,19824,57645,81617,35145,81865,6482,1674,13829,44814,66816,42511,96895,58235,34409,14634,56278,38537,90649,7068,1887,26131,76936,32620,20704,85643,44053,18365,97472,76622,1560,68727,20799,20668,98063,99092,63038,82576,39446,24717,66764,55593,39325,94195,70702,75643,52748,77528,46500,63924,10903,20993,37107,4424,71001,99166,32205,5734,17558,45829,84519,71854,14970,53877,69667,53799,39611,8236,65993,54103,74126,43945,25030,27381,80541,63448,46854,16164,50155,67576,88054,25281,64449,53439,43804,91609,98261,82793,43066,13127,89176,49846,74807,80207,17226,44941,73201,78339,20901,84608,56437,84098,53103,53366,19477,77599,93288,17008,77560,46418,1424,30297,9290,22573,46325,8703,5909,5600,14290,39321,77333,55316,36221,24962,96112,81931,12703,82288,38315,54720,79189,49389,65173,57923,2890,40836,15081,81724,24322,44815,24623,38409,65960,46119,54409,15574,73331,54317,44572,66857,73918,75305,80019,91875,20397,32330,82740,51409,50912,22413,7919,6626,73708,43141,56348,66435,3216,56528,48846,36697,47499,40899,96580,81513,30564,22950,57004,94556,87461,17657,12436,83382,50777,83198,32889,84315,8870,26916,56906,19238,25651,67385,22332,60152,99625,9540,48567,92165,61061,36010,33083,90609,81819,85616,34730,38568,60086,30374,16717,51338,70379,93466,28302,24638,61366,74351,75426,65272,69946,28397,76817,85197,6465,82598,60321,33589,60405,23640,76297,8352,75342,50127,40156,53235,98460,53716,82700,64794,96586,38072,42422,46062,90349,81303,20706,86057,21442,69121,95256,54034,62214,21755,26954,64406,14608,68939,1025,40389,91095,39608,50145,15598,33729,15328,74574,65386,42969,52541,17942,77143,76447,15918,46586,35905,18236,49523,54580,70521,37687,29077,28712,44218,98539,14761,92915,15813,12909,1864,25813,94034,46643,8229,73443,6888,88525,85058,53299,53813,4282,51326,1387,75029,31044,80723,76117,30624,51516,70810,67294,49118,94584,83744,70228,81634,15112,5424,10552,11170,30745,81342,90474,47236,12481,48466,41041,58723,18073,66394,68184,54133,50174,20483,16337,59477,77079,7141,52015,62123,22745,55623,78248,5329,71362,87268,71576,30359,27720,63595,17382,30329,73666,64277,50839,31017,26756,69074,40639,68965,76567,79543,63858,42810,88082,36812,5493,77729,42063,90683,38736,71707,80025,47230,13031,27057,19341,84999,54551,56195,65504,83704,17342,72498,34741,22930,18222,82747,38144,70083,20374,13878,38175,14239,29872,58452,3479,96527,7462,66043,9889,54061,14023,24849,13386,40613,82522,60351,4003,50536,37433,16147,1281,68655,46283,77721,97379,83030,67760,56743,67070,26379,37296,34307,72871,5515,90062,16030,77939,56794,44784,76323,39758,95368,35588,78145,69050,80240,88883,83875,76840,20438,79626,11496,55823,32310,25130,79205,48428,28186,57768,55524,65930,69197,15083,1137,95293,35656,75524,13765,91839,62568,14308,91622,64201,89397,71113,78371,45230,1627,74170,63862,52313,82140,30958,53590,35520,29427,91720,94817,21107,38865,44871,80884,62769,24065,58041,69196,61512,66577,55942,33217,76302,85013,92912,86801,35650,39320,10151,62082,91881,35393,48881,40090,12144,21502,14926,24869,77636,84662,39772,48782,53393,44111,38996,48112,14284,82181,80737,36326,60008,8528,58822,84052,92373,48887,79608,40503,78125,78634,10874,13688,63082,32045,15497,60574,66900,98836,66823,92622,91990,9702,71797,17006,32898,18021,80511,32982,93468,39251,65675,25483,80966,93887,15251,53408,83137,95174,52268,30175,80803,20712,37447,8008,54401,66433,97748,34417,3767,69556,16270,72664,16414,33548,44631,88833,33457,14376,48484,5383,33989,12541,4917,50550,87130,376,29014,67028,31558,37947,82421,19635,73067,71616,60764,58113,93542,23658,88402,95937,62401,23954,75610,43759,76651,37670,1890,64115,1503,91772,3984,86700,8601,84552,88916,52223,22182,72488,93286,27283,51748,27521,32283,26447,94825,94666,95550,60900,41318,15080,43473,44807,55299,17344,51829,52864,4687,5130,74829,75661,19356,97935,8723,21834,9923,86325,72475,51693,56469,64625,22808,475,42487,61127,26937,68948,56467,18165,10425,81075,94565,85188,4234,51841,56449,61254,40995,3889,21877,25439,49703,52064,17532,10080,79287,70673,1081,9251,51582,20357,76229,18094,41445,71982,72751,62562,62264,3344,35856,83358,6876,82641,61662,87404,56137,6605,88031,25681,72553,77666,63784,97206,66368,94681,80535,77995,39038,58705,41906,96667,88356,22132,47021,25836,10314,9158,92197,36231,47574,8402,69549,61151,35593,2495,68493,72263,79891,82853,21409,2562,60029,16436,5213,8792,61599,84839,34362,13140,32389,21305,98480,37569,88410,78608,89661,15235,31173,3769,55849,26283,29156,3569,13160,80440,2660,48772,77050,85364,22228,58880,8280,60450,13467,97940,44688,88455,29792,77883,48743,89012,98953,91282,60143,83927,99761,23952,45401,16781,56424,70225,51885,70183,38549,97492,65980,79758,3907,14532,18896,65045,87664,23527,46898,96460,46864,50300,76028,18600,60317,81503,30974,89142,96135,64013,8863,30160,62536,5325,72814,36373,5676,16240,95520,802,34982,63078,2656,59935,98743,42552,69239,52875,51473,70120,82444,68729,92296,88391,32768,11977,33995,84727,28706,19268,82094,43814,58025,68653,19335,11077,51753,43142,10693,44957,50752,5409,15263,22532,3634,97149,53276,18368,36470,97950,83222,97578,36973,47049,12949,42451,39831,85260,94095,33493,68696,36862,14085,45053,54850,85575,99341,1155,6715,60924,99206,22819,44960,97082,12971,35132,93984,55598,13729,72835,28316,11242,7298,79848,40228,16438,91755,28950,56642,71347,91249,90041,76023,83111,90454,90435,95314,31140,26555,76561,97486,35700,14972,9533,28948,44074,2363,79268,46908,98949,11091,7646,59619,75807,70305,83636,96554,65390,2920,83575,38551,37223,90926,58957,16590,10442,37961,95692,44466,52099,4758,54346,13930,82684,14887,97779,61013,84987,5868,19606,52355,8633,88908,3622,20703,87689,32600,55275,63167,59126,50561,99555,27829,50888,97644,49413,64870,24903,82842,30009,91939,64908,77091,70821,93333,53370,17721,91838,68724,30351,90075,23716,87022,12047,63034,31974,29527,79671,24822,13078,74177,14208,83499,14958,69561,55136,20870,22250,39825,94496,39950,87759,2385,93036,15607,4281,19757,91033,96870,37875,64108,59721,92888,1378,61525,21331,51528,44856,21781,4302,52023,68502,97502,73042,56701,9133,45292,38976,59684,12138,57353,51229,71522,37885,84023,40337,39815,43677,36565,35591,99132,94249,45749,98568,25941,88641,9720,65945,72238,89475,81851,41980,85557,82570,19672,49842,88147,17387,8679,31127,20500,98856,19736,97560,7948,982,44680,52243,2414,35614,55891,3591,46035,4952,37101,68487,23261,67006,4465,45113,76662,54714,95078,43225,12724,46892,44611,6488,65705,37820,26465,16099,98824,4798,64841,83934,5930,22809,8140,6585,58914,16649,54773,22155,2010,82238,96005,30404,80871,47896,77893,37829,65348,46600,61260,53406,16967,28994,10578,5514,78685,21132,94188,92593,95247,45739,30749,44002,9018,98389,28830,21629,27582,745,4826,44205,86735,65508,75263,92578,5337,33367,82114,68694,11074,69639,9230,67721,67586,45116,99664,5305,34393,48991,59153,85938,13892,3043,29624,83177,96419,97409,54657,82248,46020,28967,79643,87922,74821,13226,21260,98730,45293,63906,92293,13458,19962,60703,46432,61523,91527,70715,13718,57755,13334,51143,33254,63706,92884,97338,60627,44780,39060,40690,32300,86939,50137,51771,45259,66035,15004,45877,29160,38054,75207,44282,17623,17094,68012,43954,22258,82524,83142,8014,40200,20651,26047,69117,63223,21604,17125,87173,2409,59507,98430,17959,96074,1399,91808,47524,19949,96804,78568,29440,58030,68823,1906,63671,81251,43115,67139,67479,16386,62887,99117,64951,55819,5624,26285,45353,20379,14656,38943,12759,98618,38797,22488,70705,7419,51289,69672,9791,69560,34126,53944,91876,6942,1096,78418,40509,17681,92834,52712,70080,61481,43198,9043,44290,6747,47864,94976,79483,12806,15593,95099,54968,61035,17355,38179,29416,43841,78384,47789,22596,58945,19495,24011,29686,35350,37922,97894,49138,84159,45963,3543,76861,41913,8658,65990,24825,38918,19954,76272,8348,98929,76424,57778,47565,76965,17708,45103,53489,78159,60997,16862,27230,15746,80946,3836,82826,73010,3458,98467,68565,32880,58726,61754,42686,84073,3089,37242,77342,95139,70127,5941,8510,79036,87710,56562,13580,5694,41870,18108,41724,33583,71856,31120,40999,55972,3174,78153,75437,85228,18232,4702,78282,48757,73292,48925,30579,95424,22912,16526,35813,42627,53301,9789,62409,35476,48527,42977,19280,3773,48285,42678,17868,7601,50512,64731,26521,44727,11550,35046,47099,68913,18312,571,65502,52124,43847,40948,17874,64536,61299,31929,14664,93697,35234,97087,67548,5523,57065,99705,1593,89331,7208,6955,59329,25501,19975,2245,11277,35757,87174,12967,15477,85919,5756,86436,94490,49372,50343,20346,31948,10439,11490,2463,40906,22664,87960,26584,74556,73876,45382,31409,2095,83180,80379,88797,96339,25723,27774,35960,14872,81079,5097,20311,46499,5240,17859,4511,89562,27694,3027,86538,96865,71918,5137,21754,98584,51712,49605,44090,68309,3879,70100,6736,12905,76605,52449,7023,64028,12560,14404,34900,52834,53587,1406,59673,13084,11844,35935,50029,69019,44222,5272,79455,68659,37224,70052,25952,38678,55032,57588,39596,97827,78881,13716,12116,48506,72029,65943,16850,46131,42780,70452,79378,63475,8948,3102,6537,81000,43008,5468,51507,60845,84668,37313,83640,38742,6205,63818,93692,66608,210,99773,98894,88799,44058,69359,11256,87866,12320,23298,97186,3406,43782,88029,41632,66589,56763,60868,78924,19591,25667,65949,1483,65002,1614,27751,71775,48865,63410,9205,59225,86002,13726,15385,29484,26413,4720,71261,9962,5504,93359,62975,19139,19065,20923,44235,58420,71192,57831,379,67798,27223,62329,96442,92360,58631,49593,99147,66053,60224,12666,48186,22657,87027,33293,58803,14490,23480,79391,88733,929,87570,83896,8959,6221,70928,56730,41530,15869,86383,82058,55360,48690,99570,4541,31283,18863,90277,72205,23983,37999,64823,57075,9344,50542,44062,4338,19789,78018,8925,80498,63958,89727,44387,59672,79344,12513,46847,91734,29011,20858,34771,77029,61677,99464,79581,95729,92700,4347,94776,90596,19050,75629,80956,65303,4270,27009,7733,87018,55419,89634,65416,89857,74949,32516,23176,22922,1621,24334,79142,22013,10823,95027,8401,98631,86315,13730,49501,45208,45547,71334,32391,37136,17785,32990,48885,41306,19051,53768,75392,18441,42458,33105,93669,10580,70223,34590,47890,99964,77675,61291,66415,51706,6035,13536,91692,38462,84797,90971,48462,60789,96254,34757,61093,20671,75660,43379,35816,38113,72816,27382,88447,69541,21092,25472,57689,53571,84164,97015,30845,76954,89631,44519,67186,11796,39410,68259,55755,94444,81436,65708,53860,84263,49312,86737,43625,46036,98336,21335,25012,27472,43827,85496,43988,55697,64684,74144,14883,6576,7336,40366,84413,17869,21116,37594,43845,52995,62471,69595,35213,48753,53435,16167,87096,22522,63711,39437,84714,85443,20416,67258,24355,85785,52519,27168,30540,77703,54931,71914,66882,28960,13603,13616,64516,85078,86727,72612,62330,23382,10193,34635,30826,41172,60349,63577,58446,41258,88514,72133,45820,41529,16326,73428,95532,34488,11415,12050,57416,9120,45217,67982,61904,19849,4293,2661,36657,43467,38512,9161,63417,11850,94063,63541,83354,41962,46644,26315,18766,42665,40729,2700,95819,41410,45876,62396,84518,89529,60577,23378,54500,55347,16360,39439,8238,19695,2930,87882,89536,32973,11572,75266,50688,5744,94498,88481,42234,94026,6038,95705,20297,58040,44750,15096,36864,16429,36146,89360,1296,64181,68446,47121,28277,2157,23392,74864,35657,60201,59467,9132,93670,19521,37845,78318,9388,81526,74960,15969,87116,61775,86494,79209,3633,9167,68393,85017,20962,5654,65375,21794,11901,36550,70258,20840,75051,22726,27723,342,46058,71189,61450,3037,65907,25441,62924,77718,82458,24996,2276,95968,21507,37251,97515,45738,27147,11321,14814,72977,17078,77355,44012,75827,94861,57177,36783,72357,8408,51890,35391,97496,56830,8938,6909,25456,7335,52971,86640,85325,28018,60401,75686,85263,15557,89087,77337,64891,14368,70399,9032,46800,10299,35059,6190,61565,41781,26943,85027,20756,67023,60687,55760,53762,13992,36214,92018,39650,63119,74575,98027,7920,68199,62531,87293,43247,55364,44207,78535,11811,5330,35920,29908,66819,68314,67291,49306,60875,15196,583,14653,6237,46516,64020,14499,55797,11036,86884,23110,42593,32905,69675,77349,97475,50908,53047,16938,74782,68873,72520,73685,33939,75527,79064,75413,62500,45606,4206,49870,12250,55270,97557,65729,95421,74022,20309,59202,5306,55970,14057,45600,49952,52218,56668,55812,59661,96714,12656,35217,94900,2988,44808,96949,66141,81664,68040,84118,28958,17392,38482,36367,39418,44503,82615,97310,78450,36242,20602,40917,21108,98241,30927,16628,16195,39632,96431,60188,32215,4680,50954,86013,57424,55779,68914,38507,47904,16372,6067,48474,17512,10041,52287,82414,64830,76384,87029,38615,25814,79309,14194,54171,66475,54828,43593,14721,524,35866,82882,23255,28998,43898,38199,32561,40687,83665,31159,46422,65358,28063,49867,48487,50643,68824,56987,70498,22854,46596,75760,96842,53726,52657,93729,84634,50602,29435,17284,92485,67367,2550,1854,61514,92172,39980,37587,95906,86366,57025,45301,39960,77110,30285,22445,43675,93298,87412,30441,6480,82265,32978,64241,30762,68580,17931,88218,50100,57620,25561,28835,94826,97376,24357,75985,48600,55775,67759,97896,5286,84652,44753,47073,49793,69102,86809,75939,54887,59498,20364,93223,813,60757,83072,80433,79112,79451,97386,20338,42587,98534,85541,13198,35057,45105,14173,28396,82520,17343,44936,70321,79700,1443,42364,9644,65371,21605,37536,56188,76115,31000,32489,92251,58800,57674,33769,7523,22450,68303,4546,11621,53333,50315,25120,38594,31315,92195,36701,23243,16559,18921,3203,49074,44977,15708,70886,73123,47557,73405,78124,85663,80521,21090,44060,70347,95463,66127,55732,73249,81964,77036,9019,73223,62612,74165,86120,46865,70164,18991,41590,27154,25162,98211,89546,74598,36267,31264,57823,38208,44452,12343,69993,5092,27515,56967,56529,76847,42067,95382,56955,73899,7944,36030,8491,17139,90046,59260,98356,18753,93060,10960,50929,38515,10271,86748,37459,30600,96779,91486,64141,21160,20980,68685,22562,73919,83356,23749,22294,47008,49150,12638,50312,2411,53063,63872,41556,54795,15968,32320,35940,88042,8406,42671,54568,96349,84840,72705,20929,78452,65018,72655,79433,87770,58700,17098,41534,61945,67981,12645,49273,43067,72782,80457,1039,31193,42060,93446,95116,12367,81113,45374,29438,50033,137,66775,52255,25450,61510,23166,49359,12794,77687,8379,82478,72583,65227,2884,63526,19670,86624,46589,81512,2595,90234,93782,68750,44072,14005,90464,53376,58836,84885,465,8525,47005,74539,87941,32528,57206,944,71606,72980,78356,57561,17809,83491,18325,27069,22506,83600,67012,80684,92688,8857,5625,12062,60644,57639,89447,98508,84551,59581,46367,66632,26252,40094,21763,15727,69242,21486,25251,93192,41535,68144,84577,8976,58267,34804,83712,47583,69729,47070,19971,99130,6381,47992,73028,2689,16367,42290,78220,25006,94282,79588,24087,91693,28953,45585,75555,21987,96505,29724,88230,31632,57341,23758,56126,92274,34944,29492,97785,56014,21417,53660,6487,28217,7405,2965,28625,47038,56891,300,31814,89180,27444,77386,55211,97673,28444,11525,10029,17005,30368,94977,27528,88944,14014,95025,8481,63955,51109,32907,7658,40926,17536,36058,74150,79770,99135,60011,51889,23290,63771,1031,46672,28243,7713,75974,34425,5080,83986,1714,52135,74186,34146,57811,5807,24075,58617,54827,17962,7574,96188,15152,7036,51833,5821,76354,59911,78672,38068,48448,21087,79586,24951,91444,46354,65551,27800,55648,23791,1470,63332,95249,11046,61764,84737,79120,85255,65182,65759,61359,75340,76524,66292,39403,40004,5570,74561,60335,5997,71850,57527,56615,82009,53206,65396,99651,1624,55096,60269,77711,22972,42836,94283,39488,9096,48070,23657,12691,90350,97858,35053,95136,83749,42605,6829,68701,35807,79781,16608,51737,78208,41856,13590,11201,93477,98160,60842,98667,79902,5613,24438,86316,3800,10654,77870,63832,82617,53595,87734,83781,42907,9561,92801,41543,73361,97744,20587,81478,28669,10982,93219,45107,87170,76239,10917,40085,98699,91565,92549,54543,56398,66305,98038,74244,96852,99663,31064,89315,44908,58393,30555,62013,89266,55080,99312,3708,93337,18739,52463,92671,53924,6775,42685,86413,65727,78854,88432,2312,54830,65742,22713,15730,69961,77311,46934,70010,15500,23022,82319,67178,54791,75465,10892,50332,39804,76431,3809,25090,39266,35772,43658,49317,63686,82188,87094,65213,63040,11913,25474,4713,5111,31699,63242,14923]
diff --git "a/leetcode/editor/cn/doc/submission/[870]\344\274\230\345\212\277\346\264\227\347\211\214387982927.txt" "b/leetcode/editor/cn/doc/submission/[870]\344\274\230\345\212\277\346\264\227\347\211\214387982927.txt"
deleted file mode 100644
index b5884a07..00000000
--- "a/leetcode/editor/cn/doc/submission/[870]\344\274\230\345\212\277\346\264\227\347\211\214387982927.txt"
+++ /dev/null
@@ -1,24 +0,0 @@
-class Solution:
- def advantageCount(self, nums1: List[int], nums2: List[int]) -> List[int]:
- n = len(nums1)
- mapping = defaultdict(list)
- for i in range(n):
- mapping[nums2[i]].append(i)
- nums1.sort()
- nums2.sort()
- ans = [0] * n
- l2, r2 = 0, n - 1
- for l1 in range(n):
- t = l2 if nums1[l1] > nums2[l2] else r2
- ans[mapping[nums2[t]].pop()] = nums1[l1]
- if t == l2:
- l2 += 1
- else:
- r2 -= 1
- return ans
-
-
-
-
-# runtime:240 ms
-# memory:44.7 MB
diff --git "a/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204377557425.txt" "b/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204377557425.txt"
deleted file mode 100644
index 6d1a597a..00000000
--- "a/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204377557425.txt"
+++ /dev/null
@@ -1,35 +0,0 @@
-class Solution:
- def partition(self, nums, left, right):
- x = nums[right]
- i = left - 1
- for j in range(left, right):
- if nums[j] <= x:
- i += 1
- nums[i], nums[j] = nums[j], nums[i]
- nums[i + 1], nums[right] = nums[right], nums[i + 1]
- return i + 1
-
- def sort(self, nums, left, right):
- if right <= left:
- return
- # 实现 left, right 范围内的排序
- p = self.partition(nums, left, right)
- self.sort(nums, left, p - 1)
- self.sort(nums, p + 1, right)
-
- def sortArray(self, nums: List[int]) -> List[int]:
- # 实现一个快速排序
- self.sort(nums, 0, len(nums) - 1)
- return nums
-
-
-
-# runtime:N/A
-# memory:N/A
-# total_testcases:18
-# total_correct:11
-# input_formatted:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,10046,10047,10048,10049,10050,10051,10052,10053,10054,10055,10056,10057,10058,10059,10060,10061,10062,10063,10064,10065,10066,10067,10068,10069,10070,10071,10072,10073,10074,10075,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,10086,10087,10088,10089,10090,10091,10092,10093,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,10116,10117,10118,10119,10120,10121,10122,10123,10124,10125,10126,10127,10128,10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139,10140,10141,10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153,10154,10155,10156,10157,10158,10159,10160,10161,10162,10163,10164,10165,10166,10167,10168,10169,10170,10171,10172,10173,10174,10175,10176,10177,10178,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,10190,10191,10192,10193,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,10205,10206,10207,10208,10209,10210,10211,10212,10213,10214,10215,10216,10217,10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229,10230,10231,10232,10233,10234,10235,10236,10237,10238,10239,10240,10241,10242,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,10253,10254,10255,10256,10257,10258,10259,10260,10261,10262,10263,10264,10265,10266,10267,10268,10269,10270,10271,10272,10273,10274,10275,10276,10277,10278,10279,10280,10281,10282,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295,10296,10297,10298,10299,10300,10301,10302,10303,10304,10305,10306,10307,10308,10309,10310,10311,10312,10313,10314,10315,10316,10317,10318,10319,10320,10321,10322,10323,10324,10325,10326,10327,10328,10329,10330,10331,10332,10333,10334,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,10348,10349,10350,10351,10352,10353,10354,10355,10356,10357,10358,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,10370,10371,10372,10373,10374,10375,10376,10377,10378,10379,10380,10381,10382,10383,10384,10385,10386,10387,10388,10389,10390,10391,10392,10393,10394,10395,10396,10397,10398,10399,10400,10401,10402,10403,10404,10405,10406,10407,10408,10409,10410,10411,10412,10413,10414,10415,10416,10417,10418,10419,10420,10421,10422,10423,10424,10425,10426,10427,10428,10429,10430,10431,10432,10433,10434,10435,10436,10437,10438,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,10450,10451,10452,10453,10454,10455,10456,10457,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10470,10471,10472,10473,10474,10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10485,10486,10487,10488,10489,10490,10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,10512,10513,10514,10515,10516,10517,10518,10519,10520,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10533,10534,10535,10536,10537,10538,10539,10540,10541,10542,10543,10544,10545,10546,10547,10548,10549,10550,10551,10552,10553,10554,10555,10556,10557,10558,10559,10560,10561,10562,10563,10564,10565,10566,10567,10568,10569,10570,10571,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,10605,10606,10607,10608,10609,10610,10611,10612,10613,10614,10615,10616,10617,10618,10619,10620,10621,10622,10623,10624,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,10637,10638,10639,10640,10641,10642,10643,10644,10645,10646,10647,10648,10649,10650,10651,10652,10653,10654,10655,10656,10657,10658,10659,10660,10661,10662,10663,10664,10665,10666,10667,10668,10669,10670,10671,10672,10673,10674,10675,10676,10677,10678,10679,10680,10681,10682,10683,10684,10685,10686,10687,10688,10689,10690,10691,10692,10693,10694,10695,10696,10697,10698,10699,10700,10701,10702,10703,10704,10705,10706,10707,10708,10709,10710,10711,10712,10713,10714,10715,10716,10717,10718,10719,10720,10721,10722,10723,10724,10725,10726,10727,10728,10729,10730,10731,10732,10733,10734,10735,10736,10737,10738,10739,10740,10741,10742,10743,10744,10745,10746,10747,10748,10749,10750,10751,10752,10753,10754,10755,10756,10757,10758,10759,10760,10761,10762,10763,10764,10765,10766,10767,10768,10769,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,10785,10786,10787,10788,10789,10790,10791,10792,10793,10794,10795,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,10810,10811,10812,10813,10814,10815,10816,10817,10818,10819,10820,10821,10822,10823,10824,10825,10826,10827,10828,10829,10830,10831,10832,10833,10834,10835,10836,10837,10838,10839,10840,10841,10842,10843,10844,10845,10846,10847,10848,10849,10850,10851,10852,10853,10854,10855,10856,10857,10858,10859,10860,10861,10862,10863,10864,10865,10866,10867,10868,10869,10870,10871,10872,10873,10874,10875,10876,10877,10878,10879,10880,10881,10882,10883,10884,10885,10886,10887,10888,10889,10890,10891,10892,10893,10894,10895,10896,10897,10898,10899,10900,10901,10902,10903,10904,10905,10906,10907,10908,10909,10910,10911,10912,10913,10914,10915,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,10929,10930,10931,10932,10933,10934,10935,10936,10937,10938,10939,10940,10941,10942,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10954,10955,10956,10957,10958,10959,10960,10961,10962,10963,10964,10965,10966,10967,10968,10969,10970,10971,10972,10973,10974,10975,10976,10977,10978,10979,10980,10981,10982,10983,10984,10985,10986,10987,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,10998,10999,11000,11001,11002,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,11031,11032,11033,11034,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045,11046,11047,11048,11049,11050,11051,11052,11053,11054,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11080,11081,11082,11083,11084,11085,11086,11087,11088,11089,11090,11091,11092,11093,11094,11095,11096,11097,11098,11099,11100,11101,11102,11103,11104,11105,11106,11107,11108,11109,11110,11111,11112,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11136,11137,11138,11139,11140,11141,11142,11143,11144,11145,11146,11147,11148,11149,11150,11151,11152,11153,11154,11155,11156,11157,11158,11159,11160,11161,11162,11163,11164,11165,11166,11167,11168,11169,11170,11171,11172,11173,11174,11175,11176,11177,11178,11179,11180,11181,11182,11183,11184,11185,11186,11187,11188,11189,11190,11191,11192,11193,11194,11195,11196,11197,11198,11199,11200,11201,11202,11203,11204,11205,11206,11207,11208,11209,11210,11211,11212,11213,11214,11215,11216,11217,11218,11219,11220,11221,11222,11223,11224,11225,11226,11227,11228,11229,11230,11231,11232,11233,11234,11235,11236,11237,11238,11239,11240,11241,11242,11243,11244,11245,11246,11247,11248,11249,11250,11251,11252,11253,11254,11255,11256,11257,11258,11259,11260,11261,11262,11263,11264,11265,11266,11267,11268,11269,11270,11271,11272,11273,11274,11275,11276,11277,11278,11279,11280,11281,11282,11283,11284,11285,11286,11287,11288,11289,11290,11291,11292,11293,11294,11295,11296,11297,11298,11299,11300,11301,11302,11303,11304,11305,11306,11307,11308,11309,11310,11311,11312,11313,11314,11315,11316,11317,11318,11319,11320,11321,11322,11323,11324,11325,11326,11327,11328,11329,11330,11331,11332,11333,11334,11335,11336,11337,11338,11339,11340,11341,11342,11343,11344,11345,11346,11347,11348,11349,11350,11351,11352,11353,11354,11355,11356,11357,11358,11359,11360,11361,11362,11363,11364,11365,11366,11367,11368,11369,11370,11371,11372,11373,11374,11375,11376,11377,11378,11379,11380,11381,11382,11383,11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396,11397,11398,11399,11400,11401,11402,11403,11404,11405,11406,11407,11408,11409,11410,11411,11412,11413,11414,11415,11416,11417,11418,11419,11420,11421,11422,11423,11424,11425,11426,11427,11428,11429,11430,11431,11432,11433,11434,11435,11436,11437,11438,11439,11440,11441,11442,11443,11444,11445,11446,11447,11448,11449,11450,11451,11452,11453,11454,11455,11456,11457,11458,11459,11460,11461,11462,11463,11464,11465,11466,11467,11468,11469,11470,11471,11472,11473,11474,11475,11476,11477,11478,11479,11480,11481,11482,11483,11484,11485,11486,11487,11488,11489,11490,11491,11492,11493,11494,11495,11496,11497,11498,11499,11500,11501,11502,11503,11504,11505,11506,11507,11508,11509,11510,11511,11512,11513,11514,11515,11516,11517,11518,11519,11520,11521,11522,11523,11524,11525,11526,11527,11528,11529,11530,11531,11532,11533,11534,11535,11536,11537,11538,11539,11540,11541,11542,11543,11544,11545,11546,11547,11548,11549,11550,11551,11552,11553,11554,11555,11556,11557,11558,11559,11560,11561,11562,11563,11564,11565,11566,11567,11568,11569,11570,11571,11572,11573,11574,11575,11576,11577,11578,11579,11580,11581,11582,11583,11584,11585,11586,11587,11588,11589,11590,11591,11592,11593,11594,11595,11596,11597,11598,11599,11600,11601,11602,11603,11604,11605,11606,11607,11608,11609,11610,11611,11612,11613,11614,11615,11616,11617,11618,11619,11620,11621,11622,11623,11624,11625,11626,11627,11628,11629,11630,11631,11632,11633,11634,11635,11636,11637,11638,11639,11640,11641,11642,11643,11644,11645,11646,11647,11648,11649,11650,11651,11652,11653,11654,11655,11656,11657,11658,11659,11660,11661,11662,11663,11664,11665,11666,11667,11668,11669,11670,11671,11672,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,11686,11687,11688,11689,11690,11691,11692,11693,11694,11695,11696,11697,11698,11699,11700,11701,11702,11703,11704,11705,11706,11707,11708,11709,11710,11711,11712,11713,11714,11715,11716,11717,11718,11719,11720,11721,11722,11723,11724,11725,11726,11727,11728,11729,11730,11731,11732,11733,11734,11735,11736,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747,11748,11749,11750,11751,11752,11753,11754,11755,11756,11757,11758,11759,11760,11761,11762,11763,11764,11765,11766,11767,11768,11769,11770,11771,11772,11773,11774,11775,11776,11777,11778,11779,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,11790,11791,11792,11793,11794,11795,11796,11797,11798,11799,11800,11801,11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812,11813,11814,11815,11816,11817,11818,11819,11820,11821,11822,11823,11824,11825,11826,11827,11828,11829,11830,11831,11832,11833,11834,11835,11836,11837,11838,11839,11840,11841,11842,11843,11844,11845,11846,11847,11848,11849,11850,11851,11852,11853,11854,11855,11856,11857,11858,11859,11860,11861,11862,11863,11864,11865,11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877,11878,11879,11880,11881,11882,11883,11884,11885,11886,11887,11888,11889,11890,11891,11892,11893,11894,11895,11896,11897,11898,11899,11900,11901,11902,11903,11904,11905,11906,11907,11908,11909,11910,11911,11912,11913,11914,11915,11916,11917,11918,11919,11920,11921,11922,11923,11924,11925,11926,11927,11928,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,11943,11944,11945,11946,11947,11948,11949,11950,11951,11952,11953,11954,11955,11956,11957,11958,11959,11960,11961,11962,11963,11964,11965,11966,11967,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,11994,11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124,12125,12126,12127,12128,12129,12130,12131,12132,12133,12134,12135,12136,12137,12138,12139,12140,12141,12142,12143,12144,12145,12146,12147,12148,12149,12150,12151,12152,12153,12154,12155,12156,12157,12158,12159,12160,12161,12162,12163,12164,12165,12166,12167,12168,12169,12170,12171,12172,12173,12174,12175,12176,12177,12178,12179,12180,12181,12182,12183,12184,12185,12186,12187,12188,12189,12190,12191,12192,12193,12194,12195,12196,12197,12198,12199,12200,12201,12202,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12217,12218,12219,12220,12221,12222,12223,12224,12225,12226,12227,12228,12229,12230,12231,12232,12233,12234,12235,12236,12237,12238,12239,12240,12241,12242,12243,12244,12245,12246,12247,12248,12249,12250,12251,12252,12253,12254,12255,12256,12257,12258,12259,12260,12261,12262,12263,12264,12265,12266,12267,12268,12269,12270,12271,12272,12273,12274,12275,12276,12277,12278,12279,12280,12281,12282,12283,12284,12285,12286,12287,12288,12289,12290,12291,12292,12293,12294,12295,12296,12297,12298,12299,12300,12301,12302,12303,12304,12305,12306,12307,12308,12309,12310,12311,12312,12313,12314,12315,12316,12317,12318,12319,12320,12321,12322,12323,12324,12325,12326,12327,12328,12329,12330,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12352,12353,12354,12355,12356,12357,12358,12359,12360,12361,12362,12363,12364,12365,12366,12367,12368,12369,12370,12371,12372,12373,12374,12375,12376,12377,12378,12379,12380,12381,12382,12383,12384,12385,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397,12398,12399,12400,12401,12402,12403,12404,12405,12406,12407,12408,12409,12410,12411,12412,12413,12414,12415,12416,12417,12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12446,12447,12448,12449,12450,12451,12452,12453,12454,12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494,12495,12496,12497,12498,12499,12500,12501,12502,12503,12504,12505,12506,12507,12508,12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519,12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,12532,12533,12534,12535,12536,12537,12538,12539,12540,12541,12542,12543,12544,12545,12546,12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,12564,12565,12566,12567,12568,12569,12570,12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,12584,12585,12586,12587,12588,12589,12590,12591,12592,12593,12594,12595,12596,12597,12598,12599,12600,12601,12602,12603,12604,12605,12606,12607,12608,12609,12610,12611,12612,12613,12614,12615,12616,12617,12618,12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631,12632,12633,12634,12635,12636,12637,12638,12639,12640,12641,12642,12643,12644,12645,12646,12647,12648,12649,12650,12651,12652,12653,12654,12655,12656,12657,12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,12670,12671,12672,12673,12674,12675,12676,12677,12678,12679,12680,12681,12682,12683,12684,12685,12686,12687,12688,12689,12690,12691,12692,12693,12694,12695,12696,12697,12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708,12709,12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726,12727,12728,12729,12730,12731,12732,12733,12734,12735,12736,12737,12738,12739,12740,12741,12742,12743,12744,12745,12746,12747,12748,12749,12750,12751,12752,12753,12754,12755,12756,12757,12758,12759,12760,12761,12762,12763,12764,12765,12766,12767,12768,12769,12770,12771,12772,12773,12774,12775,12776,12777,12778,12779,12780,12781,12782,12783,12784,12785,12786,12787,12788,12789,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,12803,12804,12805,12806,12807,12808,12809,12810,12811,12812,12813,12814,12815,12816,12817,12818,12819,12820,12821,12822,12823,12824,12825,12826,12827,12828,12829,12830,12831,12832,12833,12834,12835,12836,12837,12838,12839,12840,12841,12842,12843,12844,12845,12846,12847,12848,12849,12850,12851,12852,12853,12854,12855,12856,12857,12858,12859,12860,12861,12862,12863,12864,12865,12866,12867,12868,12869,12870,12871,12872,12873,12874,12875,12876,12877,12878,12879,12880,12881,12882,12883,12884,12885,12886,12887,12888,12889,12890,12891,12892,12893,12894,12895,12896,12897,12898,12899,12900,12901,12902,12903,12904,12905,12906,12907,12908,12909,12910,12911,12912,12913,12914,12915,12916,12917,12918,12919,12920,12921,12922,12923,12924,12925,12926,12927,12928,12929,12930,12931,12932,12933,12934,12935,12936,12937,12938,12939,12940,12941,12942,12943,12944,12945,12946,12947,12948,12949,12950,12951,12952,12953,12954,12955,12956,12957,12958,12959,12960,12961,12962,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,12977,12978,12979,12980,12981,12982,12983,12984,12985,12986,12987,12988,12989,12990,12991,12992,12993,12994,12995,12996,12997,12998,12999,13000,13001,13002,13003,13004,13005,13006,13007,13008,13009,13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,13023,13024,13025,13026,13027,13028,13029,13030,13031,13032,13033,13034,13035,13036,13037,13038,13039,13040,13041,13042,13043,13044,13045,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,13069,13070,13071,13072,13073,13074,13075,13076,13077,13078,13079,13080,13081,13082,13083,13084,13085,13086,13087,13088,13089,13090,13091,13092,13093,13094,13095,13096,13097,13098,13099,13100,13101,13102,13103,13104,13105,13106,13107,13108,13109,13110,13111,13112,13113,13114,13115,13116,13117,13118,13119,13120,13121,13122,13123,13124,13125,13126,13127,13128,13129,13130,13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,13155,13156,13157,13158,13159,13160,13161,13162,13163,13164,13165,13166,13167,13168,13169,13170,13171,13172,13173,13174,13175,13176,13177,13178,13179,13180,13181,13182,13183,13184,13185,13186,13187,13188,13189,13190,13191,13192,13193,13194,13195,13196,13197,13198,13199,13200,13201,13202,13203,13204,13205,13206,13207,13208,13209,13210,13211,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,13222,13223,13224,13225,13226,13227,13228,13229,13230,13231,13232,13233,13234,13235,13236,13237,13238,13239,13240,13241,13242,13243,13244,13245,13246,13247,13248,13249,13250,13251,13252,13253,13254,13255,13256,13257,13258,13259,13260,13261,13262,13263,13264,13265,13266,13267,13268,13269,13270,13271,13272,13273,13274,13275,13276,13277,13278,13279,13280,13281,13282,13283,13284,13285,13286,13287,13288,13289,13290,13291,13292,13293,13294,13295,13296,13297,13298,13299,13300,13301,13302,13303,13304,13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317,13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330,13331,13332,13333,13334,13335,13336,13337,13338,13339,13340,13341,13342,13343,13344,13345,13346,13347,13348,13349,13350,13351,13352,13353,13354,13355,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736,13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,13749,13750,13751,13752,13753,13754,13755,13756,13757,13758,13759,13760,13761,13762,13763,13764,13765,13766,13767,13768,13769,13770,13771,13772,13773,13774,13775,13776,13777,13778,13779,13780,13781,13782,13783,13784,13785,13786,13787,13788,13789,13790,13791,13792,13793,13794,13795,13796,13797,13798,13799,13800,13801,13802,13803,13804,13805,13806,13807,13808,13809,13810,13811,13812,13813,13814,13815,13816,13817,13818,13819,13820,13821,13822,13823,13824,13825,13826,13827,13828,13829,13830,13831,13832,13833,13834,13835,13836,13837,13838,13839,13840,13841,13842,13843,13844,13845,13846,13847,13848,13849,13850,13851,13852,13853,13854,13855,13856,13857,13858,13859,13860,13861,13862,13863,13864,13865,13866,13867,13868,13869,13870,13871,13872,13873,13874,13875,13876,13877,13878,13879,13880,13881,13882,13883,13884,13885,13886,13887,13888,13889,13890,13891,13892,13893,13894,13895,13896,13897,13898,13899,13900,13901,13902,13903,13904,13905,13906,13907,13908,13909,13910,13911,13912,13913,13914,13915,13916,13917,13918,13919,13920,13921,13922,13923,13924,13925,13926,13927,13928,13929,13930,13931,13932,13933,13934,13935,13936,13937,13938,13939,13940,13941,13942,13943,13944,13945,13946,13947,13948,13949,13950,13951,13952,13953,13954,13955,13956,13957,13958,13959,13960,13961,13962,13963,13964,13965,13966,13967,13968,13969,13970,13971,13972,13973,13974,13975,13976,13977,13978,13979,13980,13981,13982,13983,13984,13985,13986,13987,13988,13989,13990,13991,13992,13993,13994,13995,13996,13997,13998,13999,14000,14001,14002,14003,14004,14005,14006,14007,14008,14009,14010,14011,14012,14013,14014,14015,14016,14017,14018,14019,14020,14021,14022,14023,14024,14025,14026,14027,14028,14029,14030,14031,14032,14033,14034,14035,14036,14037,14038,14039,14040,14041,14042,14043,14044,14045,14046,14047,14048,14049,14050,14051,14052,14053,14054,14055,14056,14057,14058,14059,14060,14061,14062,14063,14064,14065,14066,14067,14068,14069,14070,14071,14072,14073,14074,14075,14076,14077,14078,14079,14080,14081,14082,14083,14084,14085,14086,14087,14088,14089,14090,14091,14092,14093,14094,14095,14096,14097,14098,14099,14100,14101,14102,14103,14104,14105,14106,14107,14108,14109,14110,14111,14112,14113,14114,14115,14116,14117,14118,14119,14120,14121,14122,14123,14124,14125,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14136,14137,14138,14139,14140,14141,14142,14143,14144,14145,14146,14147,14148,14149,14150,14151,14152,14153,14154,14155,14156,14157,14158,14159,14160,14161,14162,14163,14164,14165,14166,14167,14168,14169,14170,14171,14172,14173,14174,14175,14176,14177,14178,14179,14180,14181,14182,14183,14184,14185,14186,14187,14188,14189,14190,14191,14192,14193,14194,14195,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205,14206,14207,14208,14209,14210,14211,14212,14213,14214,14215,14216,14217,14218,14219,14220,14221,14222,14223,14224,14225,14226,14227,14228,14229,14230,14231,14232,14233,14234,14235,14236,14237,14238,14239,14240,14241,14242,14243,14244,14245,14246,14247,14248,14249,14250,14251,14252,14253,14254,14255,14256,14257,14258,14259,14260,14261,14262,14263,14264,14265,14266,14267,14268,14269,14270,14271,14272,14273,14274,14275,14276,14277,14278,14279,14280,14281,14282,14283,14284,14285,14286,14287,14288,14289,14290,14291,14292,14293,14294,14295,14296,14297,14298,14299,14300,14301,14302,14303,14304,14305,14306,14307,14308,14309,14310,14311,14312,14313,14314,14315,14316,14317,14318,14319,14320,14321,14322,14323,14324,14325,14326,14327,14328,14329,14330,14331,14332,14333,14334,14335,14336,14337,14338,14339,14340,14341,14342,14343,14344,14345,14346,14347,14348,14349,14350,14351,14352,14353,14354,14355,14356,14357,14358,14359,14360,14361,14362,14363,14364,14365,14366,14367,14368,14369,14370,14371,14372,14373,14374,14375,14376,14377,14378,14379,14380,14381,14382,14383,14384,14385,14386,14387,14388,14389,14390,14391,14392,14393,14394,14395,14396,14397,14398,14399,14400,14401,14402,14403,14404,14405,14406,14407,14408,14409,14410,14411,14412,14413,14414,14415,14416,14417,14418,14419,14420,14421,14422,14423,14424,14425,14426,14427,14428,14429,14430,14431,14432,14433,14434,14435,14436,14437,14438,14439,14440,14441,14442,14443,14444,14445,14446,14447,14448,14449,14450,14451,14452,14453,14454,14455,14456,14457,14458,14459,14460,14461,14462,14463,14464,14465,14466,14467,14468,14469,14470,14471,14472,14473,14474,14475,14476,14477,14478,14479,14480,14481,14482,14483,14484,14485,14486,14487,14488,14489,14490,14491,14492,14493,14494,14495,14496,14497,14498,14499,14500,14501,14502,14503,14504,14505,14506,14507,14508,14509,14510,14511,14512,14513,14514,14515,14516,14517,14518,14519,14520,14521,14522,14523,14524,14525,14526,14527,14528,14529,14530,14531,14532,14533,14534,14535,14536,14537,14538,14539,14540,14541,14542,14543,14544,14545,14546,14547,14548,14549,14550,14551,14552,14553,14554,14555,14556,14557,14558,14559,14560,14561,14562,14563,14564,14565,14566,14567,14568,14569,14570,14571,14572,14573,14574,14575,14576,14577,14578,14579,14580,14581,14582,14583,14584,14585,14586,14587,14588,14589,14590,14591,14592,14593,14594,14595,14596,14597,14598,14599,14600,14601,14602,14603,14604,14605,14606,14607,14608,14609,14610,14611,14612,14613,14614,14615,14616,14617,14618,14619,14620,14621,14622,14623,14624,14625,14626,14627,14628,14629,14630,14631,14632,14633,14634,14635,14636,14637,14638,14639,14640,14641,14642,14643,14644,14645,14646,14647,14648,14649,14650,14651,14652,14653,14654,14655,14656,14657,14658,14659,14660,14661,14662,14663,14664,14665,14666,14667,14668,14669,14670,14671,14672,14673,14674,14675,14676,14677,14678,14679,14680,14681,14682,14683,14684,14685,14686,14687,14688,14689,14690,14691,14692,14693,14694,14695,14696,14697,14698,14699,14700,14701,14702,14703,14704,14705,14706,14707,14708,14709,14710,14711,14712,14713,14714,14715,14716,14717,14718,14719,14720,14721,14722,14723,14724,14725,14726,14727,14728,14729,14730,14731,14732,14733,14734,14735,14736,14737,14738,14739,14740,14741,14742,14743,14744,14745,14746,14747,14748,14749,14750,14751,14752,14753,14754,14755,14756,14757,14758,14759,14760,14761,14762,14763,14764,14765,14766,14767,14768,14769,14770,14771,14772,14773,14774,14775,14776,14777,14778,14779,14780,14781,14782,14783,14784,14785,14786,14787,14788,14789,14790,14791,14792,14793,14794,14795,14796,14797,14798,14799,14800,14801,14802,14803,14804,14805,14806,14807,14808,14809,14810,14811,14812,14813,14814,14815,14816,14817,14818,14819,14820,14821,14822,14823,14824,14825,14826,14827,14828,14829,14830,14831,14832,14833,14834,14835,14836,14837,14838,14839,14840,14841,14842,14843,14844,14845,14846,14847,14848,14849,14850,14851,14852,14853,14854,14855,14856,14857,14858,14859,14860,14861,14862,14863,14864,14865,14866,14867,14868,14869,14870,14871,14872,14873,14874,14875,14876,14877,14878,14879,14880,14881,14882,14883,14884,14885,14886,14887,14888,14889,14890,14891,14892,14893,14894,14895,14896,14897,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14911,14912,14913,14914,14915,14916,14917,14918,14919,14920,14921,14922,14923,14924,14925,14926,14927,14928,14929,14930,14931,14932,14933,14934,14935,14936,14937,14938,14939,14940,14941,14942,14943,14944,14945,14946,14947,14948,14949,14950,14951,14952,14953,14954,14955,14956,14957,14958,14959,14960,14961,14962,14963,14964,14965,14966,14967,14968,14969,14970,14971,14972,14973,14974,14975,14976,14977,14978,14979,14980,14981,14982,14983,14984,14985,14986,14987,14988,14989,14990,14991,14992,14993,14994,14995,14996,14997,14998,14999,15000,15001,15002,15003,15004,15005,15006,15007,15008,15009,15010,15011,15012,15013,15014,15015,15016,15017,15018,15019,15020,15021,15022,15023,15024,15025,15026,15027,15028,15029,15030,15031,15032,15033,15034,15035,15036,15037,15038,15039,15040,15041,15042,15043,15044,15045,15046,15047,15048,15049,15050,15051,15052,15053,15054,15055,15056,15057,15058,15059,15060,15061,15062,15063,15064,15065,15066,15067,15068,15069,15070,15071,15072,15073,15074,15075,15076,15077,15078,15079,15080,15081,15082,15083,15084,15085,15086,15087,15088,15089,15090,15091,15092,15093,15094,15095,15096,15097,15098,15099,15100,15101,15102,15103,15104,15105,15106,15107,15108,15109,15110,15111,15112,15113,15114,15115,15116,15117,15118,15119,15120,15121,15122,15123,15124,15125,15126,15127,15128,15129,15130,15131,15132,15133,15134,15135,15136,15137,15138,15139,15140,15141,15142,15143,15144,15145,15146,15147,15148,15149,15150,15151,15152,15153,15154,15155,15156,15157,15158,15159,15160,15161,15162,15163,15164,15165,15166,15167,15168,15169,15170,15171,15172,15173,15174,15175,15176,15177,15178,15179,15180,15181,15182,15183,15184,15185,15186,15187,15188,15189,15190,15191,15192,15193,15194,15195,15196,15197,15198,15199,15200,15201,15202,15203,15204,15205,15206,15207,15208,15209,15210,15211,15212,15213,15214,15215,15216,15217,15218,15219,15220,15221,15222,15223,15224,15225,15226,15227,15228,15229,15230,15231,15232,15233,15234,15235,15236,15237,15238,15239,15240,15241,15242,15243,15244,15245,15246,15247,15248,15249,15250,15251,15252,15253,15254,15255,15256,15257,15258,15259,15260,15261,15262,15263,15264,15265,15266,15267,15268,15269,15270,15271,15272,15273,15274,15275,15276,15277,15278,15279,15280,15281,15282,15283,15284,15285,15286,15287,15288,15289,15290,15291,15292,15293,15294,15295,15296,15297,15298,15299,15300,15301,15302,15303,15304,15305,15306,15307,15308,15309,15310,15311,15312,15313,15314,15315,15316,15317,15318,15319,15320,15321,15322,15323,15324,15325,15326,15327,15328,15329,15330,15331,15332,15333,15334,15335,15336,15337,15338,15339,15340,15341,15342,15343,15344,15345,15346,15347,15348,15349,15350,15351,15352,15353,15354,15355,15356,15357,15358,15359,15360,15361,15362,15363,15364,15365,15366,15367,15368,15369,15370,15371,15372,15373,15374,15375,15376,15377,15378,15379,15380,15381,15382,15383,15384,15385,15386,15387,15388,15389,15390,15391,15392,15393,15394,15395,15396,15397,15398,15399,15400,15401,15402,15403,15404,15405,15406,15407,15408,15409,15410,15411,15412,15413,15414,15415,15416,15417,15418,15419,15420,15421,15422,15423,15424,15425,15426,15427,15428,15429,15430,15431,15432,15433,15434,15435,15436,15437,15438,15439,15440,15441,15442,15443,15444,15445,15446,15447,15448,15449,15450,15451,15452,15453,15454,15455,15456,15457,15458,15459,15460,15461,15462,15463,15464,15465,15466,15467,15468,15469,15470,15471,15472,15473,15474,15475,15476,15477,15478,15479,15480,15481,15482,15483,15484,15485,15486,15487,15488,15489,15490,15491,15492,15493,15494,15495,15496,15497,15498,15499,15500,15501,15502,15503,15504,15505,15506,15507,15508,15509,15510,15511,15512,15513,15514,15515,15516,15517,15518,15519,15520,15521,15522,15523,15524,15525,15526,15527,15528,15529,15530,15531,15532,15533,15534,15535,15536,15537,15538,15539,15540,15541,15542,15543,15544,15545,15546,15547,15548,15549,15550,15551,15552,15553,15554,15555,15556,15557,15558,15559,15560,15561,15562,15563,15564,15565,15566,15567,15568,15569,15570,15571,15572,15573,15574,15575,15576,15577,15578,15579,15580,15581,15582,15583,15584,15585,15586,15587,15588,15589,15590,15591,15592,15593,15594,15595,15596,15597,15598,15599,15600,15601,15602,15603,15604,15605,15606,15607,15608,15609,15610,15611,15612,15613,15614,15615,15616,15617,15618,15619,15620,15621,15622,15623,15624,15625,15626,15627,15628,15629,15630,15631,15632,15633,15634,15635,15636,15637,15638,15639,15640,15641,15642,15643,15644,15645,15646,15647,15648,15649,15650,15651,15652,15653,15654,15655,15656,15657,15658,15659,15660,15661,15662,15663,15664,15665,15666,15667,15668,15669,15670,15671,15672,15673,15674,15675,15676,15677,15678,15679,15680,15681,15682,15683,15684,15685,15686,15687,15688,15689,15690,15691,15692,15693,15694,15695,15696,15697,15698,15699,15700,15701,15702,15703,15704,15705,15706,15707,15708,15709,15710,15711,15712,15713,15714,15715,15716,15717,15718,15719,15720,15721,15722,15723,15724,15725,15726,15727,15728,15729,15730,15731,15732,15733,15734,15735,15736,15737,15738,15739,15740,15741,15742,15743,15744,15745,15746,15747,15748,15749,15750,15751,15752,15753,15754,15755,15756,15757,15758,15759,15760,15761,15762,15763,15764,15765,15766,15767,15768,15769,15770,15771,15772,15773,15774,15775,15776,15777,15778,15779,15780,15781,15782,15783,15784,15785,15786,15787,15788,15789,15790,15791,15792,15793,15794,15795,15796,15797,15798,15799,15800,15801,15802,15803,15804,15805,15806,15807,15808,15809,15810,15811,15812,15813,15814,15815,15816,15817,15818,15819,15820,15821,15822,15823,15824,15825,15826,15827,15828,15829,15830,15831,15832,15833,15834,15835,15836,15837,15838,15839,15840,15841,15842,15843,15844,15845,15846,15847,15848,15849,15850,15851,15852,15853,15854,15855,15856,15857,15858,15859,15860,15861,15862,15863,15864,15865,15866,15867,15868,15869,15870,15871,15872,15873,15874,15875,15876,15877,15878,15879,15880,15881,15882,15883,15884,15885,15886,15887,15888,15889,15890,15891,15892,15893,15894,15895,15896,15897,15898,15899,15900,15901,15902,15903,15904,15905,15906,15907,15908,15909,15910,15911,15912,15913,15914,15915,15916,15917,15918,15919,15920,15921,15922,15923,15924,15925,15926,15927,15928,15929,15930,15931,15932,15933,15934,15935,15936,15937,15938,15939,15940,15941,15942,15943,15944,15945,15946,15947,15948,15949,15950,15951,15952,15953,15954,15955,15956,15957,15958,15959,15960,15961,15962,15963,15964,15965,15966,15967,15968,15969,15970,15971,15972,15973,15974,15975,15976,15977,15978,15979,15980,15981,15982,15983,15984,15985,15986,15987,15988,15989,15990,15991,15992,15993,15994,15995,15996,15997,15998,15999,16000,16001,16002,16003,16004,16005,16006,16007,16008,16009,16010,16011,16012,16013,16014,16015,16016,16017,16018,16019,16020,16021,16022,16023,16024,16025,16026,16027,16028,16029,16030,16031,16032,16033,16034,16035,16036,16037,16038,16039,16040,16041,16042,16043,16044,16045,16046,16047,16048,16049,16050,16051,16052,16053,16054,16055,16056,16057,16058,16059,16060,16061,16062,16063,16064,16065,16066,16067,16068,16069,16070,16071,16072,16073,16074,16075,16076,16077,16078,16079,16080,16081,16082,16083,16084,16085,16086,16087,16088,16089,16090,16091,16092,16093,16094,16095,16096,16097,16098,16099,16100,16101,16102,16103,16104,16105,16106,16107,16108,16109,16110,16111,16112,16113,16114,16115,16116,16117,16118,16119,16120,16121,16122,16123,16124,16125,16126,16127,16128,16129,16130,16131,16132,16133,16134,16135,16136,16137,16138,16139,16140,16141,16142,16143,16144,16145,16146,16147,16148,16149,16150,16151,16152,16153,16154,16155,16156,16157,16158,16159,16160,16161,16162,16163,16164,16165,16166,16167,16168,16169,16170,16171,16172,16173,16174,16175,16176,16177,16178,16179,16180,16181,16182,16183,16184,16185,16186,16187,16188,16189,16190,16191,16192,16193,16194,16195,16196,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16223,16224,16225,16226,16227,16228,16229,16230,16231,16232,16233,16234,16235,16236,16237,16238,16239,16240,16241,16242,16243,16244,16245,16246,16247,16248,16249,16250,16251,16252,16253,16254,16255,16256,16257,16258,16259,16260,16261,16262,16263,16264,16265,16266,16267,16268,16269,16270,16271,16272,16273,16274,16275,16276,16277,16278,16279,16280,16281,16282,16283,16284,16285,16286,16287,16288,16289,16290,16291,16292,16293,16294,16295,16296,16297,16298,16299,16300,16301,16302,16303,16304,16305,16306,16307,16308,16309,16310,16311,16312,16313,16314,16315,16316,16317,16318,16319,16320,16321,16322,16323,16324,16325,16326,16327,16328,16329,16330,16331,16332,16333,16334,16335,16336,16337,16338,16339,16340,16341,16342,16343,16344,16345,16346,16347,16348,16349,16350,16351,16352,16353,16354,16355,16356,16357,16358,16359,16360,16361,16362,16363,16364,16365,16366,16367,16368,16369,16370,16371,16372,16373,16374,16375,16376,16377,16378,16379,16380,16381,16382,16383,16384,16385,16386,16387,16388,16389,16390,16391,16392,16393,16394,16395,16396,16397,16398,16399,16400,16401,16402,16403,16404,16405,16406,16407,16408,16409,16410,16411,16412,16413,16414,16415,16416,16417,16418,16419,16420,16421,16422,16423,16424,16425,16426,16427,16428,16429,16430,16431,16432,16433,16434,16435,16436,16437,16438,16439,16440,16441,16442,16443,16444,16445,16446,16447,16448,16449,16450,16451,16452,16453,16454,16455,16456,16457,16458,16459,16460,16461,16462,16463,16464,16465,16466,16467,16468,16469,16470,16471,16472,16473,16474,16475,16476,16477,16478,16479,16480,16481,16482,16483,16484,16485,16486,16487,16488,16489,16490,16491,16492,16493,16494,16495,16496,16497,16498,16499,16500,16501,16502,16503,16504,16505,16506,16507,16508,16509,16510,16511,16512,16513,16514,16515,16516,16517,16518,16519,16520,16521,16522,16523,16524,16525,16526,16527,16528,16529,16530,16531,16532,16533,16534,16535,16536,16537,16538,16539,16540,16541,16542,16543,16544,16545,16546,16547,16548,16549,16550,16551,16552,16553,16554,16555,16556,16557,16558,16559,16560,16561,16562,16563,16564,16565,16566,16567,16568,16569,16570,16571,16572,16573,16574,16575,16576,16577,16578,16579,16580,16581,16582,16583,16584,16585,16586,16587,16588,16589,16590,16591,16592,16593,16594,16595,16596,16597,16598,16599,16600,16601,16602,16603,16604,16605,16606,16607,16608,16609,16610,16611,16612,16613,16614,16615,16616,16617,16618,16619,16620,16621,16622,16623,16624,16625,16626,16627,16628,16629,16630,16631,16632,16633,16634,16635,16636,16637,16638,16639,16640,16641,16642,16643,16644,16645,16646,16647,16648,16649,16650,16651,16652,16653,16654,16655,16656,16657,16658,16659,16660,16661,16662,16663,16664,16665,16666,16667,16668,16669,16670,16671,16672,16673,16674,16675,16676,16677,16678,16679,16680,16681,16682,16683,16684,16685,16686,16687,16688,16689,16690,16691,16692,16693,16694,16695,16696,16697,16698,16699,16700,16701,16702,16703,16704,16705,16706,16707,16708,16709,16710,16711,16712,16713,16714,16715,16716,16717,16718,16719,16720,16721,16722,16723,16724,16725,16726,16727,16728,16729,16730,16731,16732,16733,16734,16735,16736,16737,16738,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749,16750,16751,16752,16753,16754,16755,16756,16757,16758,16759,16760,16761,16762,16763,16764,16765,16766,16767,16768,16769,16770,16771,16772,16773,16774,16775,16776,16777,16778,16779,16780,16781,16782,16783,16784,16785,16786,16787,16788,16789,16790,16791,16792,16793,16794,16795,16796,16797,16798,16799,16800,16801,16802,16803,16804,16805,16806,16807,16808,16809,16810,16811,16812,16813,16814,16815,16816,16817,16818,16819,16820,16821,16822,16823,16824,16825,16826,16827,16828,16829,16830,16831,16832,16833,16834,16835,16836,16837,16838,16839,16840,16841,16842,16843,16844,16845,16846,16847,16848,16849,16850,16851,16852,16853,16854,16855,16856,16857,16858,16859,16860,16861,16862,16863,16864,16865,16866,16867,16868,16869,16870,16871,16872,16873,16874,16875,16876,16877,16878,16879,16880,16881,16882,16883,16884,16885,16886,16887,16888,16889,16890,16891,16892,16893,16894,16895,16896,16897,16898,16899,16900,16901,16902,16903,16904,16905,16906,16907,16908,16909,16910,16911,16912,16913,16914,16915,16916,16917,16918,16919,16920,16921,16922,16923,16924,16925,16926,16927,16928,16929,16930,16931,16932,16933,16934,16935,16936,16937,16938,16939,16940,16941,16942,16943,16944,16945,16946,16947,16948,16949,16950,16951,16952,16953,16954,16955,16956,16957,16958,16959,16960,16961,16962,16963,16964,16965,16966,16967,16968,16969,16970,16971,16972,16973,16974,16975,16976,16977,16978,16979,16980,16981,16982,16983,16984,16985,16986,16987,16988,16989,16990,16991,16992,16993,16994,16995,16996,16997,16998,16999,17000,17001,17002,17003,17004,17005,17006,17007,17008,17009,17010,17011,17012,17013,17014,17015,17016,17017,17018,17019,17020,17021,17022,17023,17024,17025,17026,17027,17028,17029,17030,17031,17032,17033,17034,17035,17036,17037,17038,17039,17040,17041,17042,17043,17044,17045,17046,17047,17048,17049,17050,17051,17052,17053,17054,17055,17056,17057,17058,17059,17060,17061,17062,17063,17064,17065,17066,17067,17068,17069,17070,17071,17072,17073,17074,17075,17076,17077,17078,17079,17080,17081,17082,17083,17084,17085,17086,17087,17088,17089,17090,17091,17092,17093,17094,17095,17096,17097,17098,17099,17100,17101,17102,17103,17104,17105,17106,17107,17108,17109,17110,17111,17112,17113,17114,17115,17116,17117,17118,17119,17120,17121,17122,17123,17124,17125,17126,17127,17128,17129,17130,17131,17132,17133,17134,17135,17136,17137,17138,17139,17140,17141,17142,17143,17144,17145,17146,17147,17148,17149,17150,17151,17152,17153,17154,17155,17156,17157,17158,17159,17160,17161,17162,17163,17164,17165,17166,17167,17168,17169,17170,17171,17172,17173,17174,17175,17176,17177,17178,17179,17180,17181,17182,17183,17184,17185,17186,17187,17188,17189,17190,17191,17192,17193,17194,17195,17196,17197,17198,17199,17200,17201,17202,17203,17204,17205,17206,17207,17208,17209,17210,17211,17212,17213,17214,17215,17216,17217,17218,17219,17220,17221,17222,17223,17224,17225,17226,17227,17228,17229,17230,17231,17232,17233,17234,17235,17236,17237,17238,17239,17240,17241,17242,17243,17244,17245,17246,17247,17248,17249,17250,17251,17252,17253,17254,17255,17256,17257,17258,17259,17260,17261,17262,17263,17264,17265,17266,17267,17268,17269,17270,17271,17272,17273,17274,17275,17276,17277,17278,17279,17280,17281,17282,17283,17284,17285,17286,17287,17288,17289,17290,17291,17292,17293,17294,17295,17296,17297,17298,17299,17300,17301,17302,17303,17304,17305,17306,17307,17308,17309,17310,17311,17312,17313,17314,17315,17316,17317,17318,17319,17320,17321,17322,17323,17324,17325,17326,17327,17328,17329,17330,17331,17332,17333,17334,17335,17336,17337,17338,17339,17340,17341,17342,17343,17344,17345,17346,17347,17348,17349,17350,17351,17352,17353,17354,17355,17356,17357,17358,17359,17360,17361,17362,17363,17364,17365,17366,17367,17368,17369,17370,17371,17372,17373,17374,17375,17376,17377,17378,17379,17380,17381,17382,17383,17384,17385,17386,17387,17388,17389,17390,17391,17392,17393,17394,17395,17396,17397,17398,17399,17400,17401,17402,17403,17404,17405,17406,17407,17408,17409,17410,17411,17412,17413,17414,17415,17416,17417,17418,17419,17420,17421,17422,17423,17424,17425,17426,17427,17428,17429,17430,17431,17432,17433,17434,17435,17436,17437,17438,17439,17440,17441,17442,17443,17444,17445,17446,17447,17448,17449,17450,17451,17452,17453,17454,17455,17456,17457,17458,17459,17460,17461,17462,17463,17464,17465,17466,17467,17468,17469,17470,17471,17472,17473,17474,17475,17476,17477,17478,17479,17480,17481,17482,17483,17484,17485,17486,17487,17488,17489,17490,17491,17492,17493,17494,17495,17496,17497,17498,17499,17500,17501,17502,17503,17504,17505,17506,17507,17508,17509,17510,17511,17512,17513,17514,17515,17516,17517,17518,17519,17520,17521,17522,17523,17524,17525,17526,17527,17528,17529,17530,17531,17532,17533,17534,17535,17536,17537,17538,17539,17540,17541,17542,17543,17544,17545,17546,17547,17548,17549,17550,17551,17552,17553,17554,17555,17556,17557,17558,17559,17560,17561,17562,17563,17564,17565,17566,17567,17568,17569,17570,17571,17572,17573,17574,17575,17576,17577,17578,17579,17580,17581,17582,17583,17584,17585,17586,17587,17588,17589,17590,17591,17592,17593,17594,17595,17596,17597,17598,17599,17600,17601,17602,17603,17604,17605,17606,17607,17608,17609,17610,17611,17612,17613,17614,17615,17616,17617,17618,17619,17620,17621,17622,17623,17624,17625,17626,17627,17628,17629,17630,17631,17632,17633,17634,17635,17636,17637,17638,17639,17640,17641,17642,17643,17644,17645,17646,17647,17648,17649,17650,17651,17652,17653,17654,17655,17656,17657,17658,17659,17660,17661,17662,17663,17664,17665,17666,17667,17668,17669,17670,17671,17672,17673,17674,17675,17676,17677,17678,17679,17680,17681,17682,17683,17684,17685,17686,17687,17688,17689,17690,17691,17692,17693,17694,17695,17696,17697,17698,17699,17700,17701,17702,17703,17704,17705,17706,17707,17708,17709,17710,17711,17712,17713,17714,17715,17716,17717,17718,17719,17720,17721,17722,17723,17724,17725,17726,17727,17728,17729,17730,17731,17732,17733,17734,17735,17736,17737,17738,17739,17740,17741,17742,17743,17744,17745,17746,17747,17748,17749,17750,17751,17752,17753,17754,17755,17756,17757,17758,17759,17760,17761,17762,17763,17764,17765,17766,17767,17768,17769,17770,17771,17772,17773,17774,17775,17776,17777,17778,17779,17780,17781,17782,17783,17784,17785,17786,17787,17788,17789,17790,17791,17792,17793,17794,17795,17796,17797,17798,17799,17800,17801,17802,17803,17804,17805,17806,17807,17808,17809,17810,17811,17812,17813,17814,17815,17816,17817,17818,17819,17820,17821,17822,17823,17824,17825,17826,17827,17828,17829,17830,17831,17832,17833,17834,17835,17836,17837,17838,17839,17840,17841,17842,17843,17844,17845,17846,17847,17848,17849,17850,17851,17852,17853,17854,17855,17856,17857,17858,17859,17860,17861,17862,17863,17864,17865,17866,17867,17868,17869,17870,17871,17872,17873,17874,17875,17876,17877,17878,17879,17880,17881,17882,17883,17884,17885,17886,17887,17888,17889,17890,17891,17892,17893,17894,17895,17896,17897,17898,17899,17900,17901,17902,17903,17904,17905,17906,17907,17908,17909,17910,17911,17912,17913,17914,17915,17916,17917,17918,17919,17920,17921,17922,17923,17924,17925,17926,17927,17928,17929,17930,17931,17932,17933,17934,17935,17936,17937,17938,17939,17940,17941,17942,17943,17944,17945,17946,17947,17948,17949,17950,17951,17952,17953,17954,17955,17956,17957,17958,17959,17960,17961,17962,17963,17964,17965,17966,17967,17968,17969,17970,17971,17972,17973,17974,17975,17976,17977,17978,17979,17980,17981,17982,17983,17984,17985,17986,17987,17988,17989,17990,17991,17992,17993,17994,17995,17996,17997,17998,17999,18000,18001,18002,18003,18004,18005,18006,18007,18008,18009,18010,18011,18012,18013,18014,18015,18016,18017,18018,18019,18020,18021,18022,18023,18024,18025,18026,18027,18028,18029,18030,18031,18032,18033,18034,18035,18036,18037,18038,18039,18040,18041,18042,18043,18044,18045,18046,18047,18048,18049,18050,18051,18052,18053,18054,18055,18056,18057,18058,18059,18060,18061,18062,18063,18064,18065,18066,18067,18068,18069,18070,18071,18072,18073,18074,18075,18076,18077,18078,18079,18080,18081,18082,18083,18084,18085,18086,18087,18088,18089,18090,18091,18092,18093,18094,18095,18096,18097,18098,18099,18100,18101,18102,18103,18104,18105,18106,18107,18108,18109,18110,18111,18112,18113,18114,18115,18116,18117,18118,18119,18120,18121,18122,18123,18124,18125,18126,18127,18128,18129,18130,18131,18132,18133,18134,18135,18136,18137,18138,18139,18140,18141,18142,18143,18144,18145,18146,18147,18148,18149,18150,18151,18152,18153,18154,18155,18156,18157,18158,18159,18160,18161,18162,18163,18164,18165,18166,18167,18168,18169,18170,18171,18172,18173,18174,18175,18176,18177,18178,18179,18180,18181,18182,18183,18184,18185,18186,18187,18188,18189,18190,18191,18192,18193,18194,18195,18196,18197,18198,18199,18200,18201,18202,18203,18204,18205,18206,18207,18208,18209,18210,18211,18212,18213,18214,18215,18216,18217,18218,18219,18220,18221,18222,18223,18224,18225,18226,18227,18228,18229,18230,18231,18232,18233,18234,18235,18236,18237,18238,18239,18240,18241,18242,18243,18244,18245,18246,18247,18248,18249,18250,18251,18252,18253,18254,18255,18256,18257,18258,18259,18260,18261,18262,18263,18264,18265,18266,18267,18268,18269,18270,18271,18272,18273,18274,18275,18276,18277,18278,18279,18280,18281,18282,18283,18284,18285,18286,18287,18288,18289,18290,18291,18292,18293,18294,18295,18296,18297,18298,18299,18300,18301,18302,18303,18304,18305,18306,18307,18308,18309,18310,18311,18312,18313,18314,18315,18316,18317,18318,18319,18320,18321,18322,18323,18324,18325,18326,18327,18328,18329,18330,18331,18332,18333,18334,18335,18336,18337,18338,18339,18340,18341,18342,18343,18344,18345,18346,18347,18348,18349,18350,18351,18352,18353,18354,18355,18356,18357,18358,18359,18360,18361,18362,18363,18364,18365,18366,18367,18368,18369,18370,18371,18372,18373,18374,18375,18376,18377,18378,18379,18380,18381,18382,18383,18384,18385,18386,18387,18388,18389,18390,18391,18392,18393,18394,18395,18396,18397,18398,18399,18400,18401,18402,18403,18404,18405,18406,18407,18408,18409,18410,18411,18412,18413,18414,18415,18416,18417,18418,18419,18420,18421,18422,18423,18424,18425,18426,18427,18428,18429,18430,18431,18432,18433,18434,18435,18436,18437,18438,18439,18440,18441,18442,18443,18444,18445,18446,18447,18448,18449,18450,18451,18452,18453,18454,18455,18456,18457,18458,18459,18460,18461,18462,18463,18464,18465,18466,18467,18468,18469,18470,18471,18472,18473,18474,18475,18476,18477,18478,18479,18480,18481,18482,18483,18484,18485,18486,18487,18488,18489,18490,18491,18492,18493,18494,18495,18496,18497,18498,18499,18500,18501,18502,18503,18504,18505,18506,18507,18508,18509,18510,18511,18512,18513,18514,18515,18516,18517,18518,18519,18520,18521,18522,18523,18524,18525,18526,18527,18528,18529,18530,18531,18532,18533,18534,18535,18536,18537,18538,18539,18540,18541,18542,18543,18544,18545,18546,18547,18548,18549,18550,18551,18552,18553,18554,18555,18556,18557,18558,18559,18560,18561,18562,18563,18564,18565,18566,18567,18568,18569,18570,18571,18572,18573,18574,18575,18576,18577,18578,18579,18580,18581,18582,18583,18584,18585,18586,18587,18588,18589,18590,18591,18592,18593,18594,18595,18596,18597,18598,18599,18600,18601,18602,18603,18604,18605,18606,18607,18608,18609,18610,18611,18612,18613,18614,18615,18616,18617,18618,18619,18620,18621,18622,18623,18624,18625,18626,18627,18628,18629,18630,18631,18632,18633,18634,18635,18636,18637,18638,18639,18640,18641,18642,18643,18644,18645,18646,18647,18648,18649,18650,18651,18652,18653,18654,18655,18656,18657,18658,18659,18660,18661,18662,18663,18664,18665,18666,18667,18668,18669,18670,18671,18672,18673,18674,18675,18676,18677,18678,18679,18680,18681,18682,18683,18684,18685,18686,18687,18688,18689,18690,18691,18692,18693,18694,18695,18696,18697,18698,18699,18700,18701,18702,18703,18704,18705,18706,18707,18708,18709,18710,18711,18712,18713,18714,18715,18716,18717,18718,18719,18720,18721,18722,18723,18724,18725,18726,18727,18728,18729,18730,18731,18732,18733,18734,18735,18736,18737,18738,18739,18740,18741,18742,18743,18744,18745,18746,18747,18748,18749,18750,18751,18752,18753,18754,18755,18756,18757,18758,18759,18760,18761,18762,18763,18764,18765,18766,18767,18768,18769,18770,18771,18772,18773,18774,18775,18776,18777,18778,18779,18780,18781,18782,18783,18784,18785,18786,18787,18788,18789,18790,18791,18792,18793,18794,18795,18796,18797,18798,18799,18800,18801,18802,18803,18804,18805,18806,18807,18808,18809,18810,18811,18812,18813,18814,18815,18816,18817,18818,18819,18820,18821,18822,18823,18824,18825,18826,18827,18828,18829,18830,18831,18832,18833,18834,18835,18836,18837,18838,18839,18840,18841,18842,18843,18844,18845,18846,18847,18848,18849,18850,18851,18852,18853,18854,18855,18856,18857,18858,18859,18860,18861,18862,18863,18864,18865,18866,18867,18868,18869,18870,18871,18872,18873,18874,18875,18876,18877,18878,18879,18880,18881,18882,18883,18884,18885,18886,18887,18888,18889,18890,18891,18892,18893,18894,18895,18896,18897,18898,18899,18900,18901,18902,18903,18904,18905,18906,18907,18908,18909,18910,18911,18912,18913,18914,18915,18916,18917,18918,18919,18920,18921,18922,18923,18924,18925,18926,18927,18928,18929,18930,18931,18932,18933,18934,18935,18936,18937,18938,18939,18940,18941,18942,18943,18944,18945,18946,18947,18948,18949,18950,18951,18952,18953,18954,18955,18956,18957,18958,18959,18960,18961,18962,18963,18964,18965,18966,18967,18968,18969,18970,18971,18972,18973,18974,18975,18976,18977,18978,18979,18980,18981,18982,18983,18984,18985,18986,18987,18988,18989,18990,18991,18992,18993,18994,18995,18996,18997,18998,18999,19000,19001,19002,19003,19004,19005,19006,19007,19008,19009,19010,19011,19012,19013,19014,19015,19016,19017,19018,19019,19020,19021,19022,19023,19024,19025,19026,19027,19028,19029,19030,19031,19032,19033,19034,19035,19036,19037,19038,19039,19040,19041,19042,19043,19044,19045,19046,19047,19048,19049,19050,19051,19052,19053,19054,19055,19056,19057,19058,19059,19060,19061,19062,19063,19064,19065,19066,19067,19068,19069,19070,19071,19072,19073,19074,19075,19076,19077,19078,19079,19080,19081,19082,19083,19084,19085,19086,19087,19088,19089,19090,19091,19092,19093,19094,19095,19096,19097,19098,19099,19100,19101,19102,19103,19104,19105,19106,19107,19108,19109,19110,19111,19112,19113,19114,19115,19116,19117,19118,19119,19120,19121,19122,19123,19124,19125,19126,19127,19128,19129,19130,19131,19132,19133,19134,19135,19136,19137,19138,19139,19140,19141,19142,19143,19144,19145,19146,19147,19148,19149,19150,19151,19152,19153,19154,19155,19156,19157,19158,19159,19160,19161,19162,19163,19164,19165,19166,19167,19168,19169,19170,19171,19172,19173,19174,19175,19176,19177,19178,19179,19180,19181,19182,19183,19184,19185,19186,19187,19188,19189,19190,19191,19192,19193,19194,19195,19196,19197,19198,19199,19200,19201,19202,19203,19204,19205,19206,19207,19208,19209,19210,19211,19212,19213,19214,19215,19216,19217,19218,19219,19220,19221,19222,19223,19224,19225,19226,19227,19228,19229,19230,19231,19232,19233,19234,19235,19236,19237,19238,19239,19240,19241,19242,19243,19244,19245,19246,19247,19248,19249,19250,19251,19252,19253,19254,19255,19256,19257,19258,19259,19260,19261,19262,19263,19264,19265,19266,19267,19268,19269,19270,19271,19272,19273,19274,19275,19276,19277,19278,19279,19280,19281,19282,19283,19284,19285,19286,19287,19288,19289,19290,19291,19292,19293,19294,19295,19296,19297,19298,19299,19300,19301,19302,19303,19304,19305,19306,19307,19308,19309,19310,19311,19312,19313,19314,19315,19316,19317,19318,19319,19320,19321,19322,19323,19324,19325,19326,19327,19328,19329,19330,19331,19332,19333,19334,19335,19336,19337,19338,19339,19340,19341,19342,19343,19344,19345,19346,19347,19348,19349,19350,19351,19352,19353,19354,19355,19356,19357,19358,19359,19360,19361,19362,19363,19364,19365,19366,19367,19368,19369,19370,19371,19372,19373,19374,19375,19376,19377,19378,19379,19380,19381,19382,19383,19384,19385,19386,19387,19388,19389,19390,19391,19392,19393,19394,19395,19396,19397,19398,19399,19400,19401,19402,19403,19404,19405,19406,19407,19408,19409,19410,19411,19412,19413,19414,19415,19416,19417,19418,19419,19420,19421,19422,19423,19424,19425,19426,19427,19428,19429,19430,19431,19432,19433,19434,19435,19436,19437,19438,19439,19440,19441,19442,19443,19444,19445,19446,19447,19448,19449,19450,19451,19452,19453,19454,19455,19456,19457,19458,19459,19460,19461,19462,19463,19464,19465,19466,19467,19468,19469,19470,19471,19472,19473,19474,19475,19476,19477,19478,19479,19480,19481,19482,19483,19484,19485,19486,19487,19488,19489,19490,19491,19492,19493,19494,19495,19496,19497,19498,19499,19500,19501,19502,19503,19504,19505,19506,19507,19508,19509,19510,19511,19512,19513,19514,19515,19516,19517,19518,19519,19520,19521,19522,19523,19524,19525,19526,19527,19528,19529,19530,19531,19532,19533,19534,19535,19536,19537,19538,19539,19540,19541,19542,19543,19544,19545,19546,19547,19548,19549,19550,19551,19552,19553,19554,19555,19556,19557,19558,19559,19560,19561,19562,19563,19564,19565,19566,19567,19568,19569,19570,19571,19572,19573,19574,19575,19576,19577,19578,19579,19580,19581,19582,19583,19584,19585,19586,19587,19588,19589,19590,19591,19592,19593,19594,19595,19596,19597,19598,19599,19600,19601,19602,19603,19604,19605,19606,19607,19608,19609,19610,19611,19612,19613,19614,19615,19616,19617,19618,19619,19620,19621,19622,19623,19624,19625,19626,19627,19628,19629,19630,19631,19632,19633,19634,19635,19636,19637,19638,19639,19640,19641,19642,19643,19644,19645,19646,19647,19648,19649,19650,19651,19652,19653,19654,19655,19656,19657,19658,19659,19660,19661,19662,19663,19664,19665,19666,19667,19668,19669,19670,19671,19672,19673,19674,19675,19676,19677,19678,19679,19680,19681,19682,19683,19684,19685,19686,19687,19688,19689,19690,19691,19692,19693,19694,19695,19696,19697,19698,19699,19700,19701,19702,19703,19704,19705,19706,19707,19708,19709,19710,19711,19712,19713,19714,19715,19716,19717,19718,19719,19720,19721,19722,19723,19724,19725,19726,19727,19728,19729,19730,19731,19732,19733,19734,19735,19736,19737,19738,19739,19740,19741,19742,19743,19744,19745,19746,19747,19748,19749,19750,19751,19752,19753,19754,19755,19756,19757,19758,19759,19760,19761,19762,19763,19764,19765,19766,19767,19768,19769,19770,19771,19772,19773,19774,19775,19776,19777,19778,19779,19780,19781,19782,19783,19784,19785,19786,19787,19788,19789,19790,19791,19792,19793,19794,19795,19796,19797,19798,19799,19800,19801,19802,19803,19804,19805,19806,19807,19808,19809,19810,19811,19812,19813,19814,19815,19816,19817,19818,19819,19820,19821,19822,19823,19824,19825,19826,19827,19828,19829,19830,19831,19832,19833,19834,19835,19836,19837,19838,19839,19840,19841,19842,19843,19844,19845,19846,19847,19848,19849,19850,19851,19852,19853,19854,19855,19856,19857,19858,19859,19860,19861,19862,19863,19864,19865,19866,19867,19868,19869,19870,19871,19872,19873,19874,19875,19876,19877,19878,19879,19880,19881,19882,19883,19884,19885,19886,19887,19888,19889,19890,19891,19892,19893,19894,19895,19896,19897,19898,19899,19900,19901,19902,19903,19904,19905,19906,19907,19908,19909,19910,19911,19912,19913,19914,19915,19916,19917,19918,19919,19920,19921,19922,19923,19924,19925,19926,19927,19928,19929,19930,19931,19932,19933,19934,19935,19936,19937,19938,19939,19940,19941,19942,19943,19944,19945,19946,19947,19948,19949,19950,19951,19952,19953,19954,19955,19956,19957,19958,19959,19960,19961,19962,19963,19964,19965,19966,19967,19968,19969,19970,19971,19972,19973,19974,19975,19976,19977,19978,19979,19980,19981,19982,19983,19984,19985,19986,19987,19988,19989,19990,19991,19992,19993,19994,19995,19996,19997,19998,19999,20000,20001,20002,20003,20004,20005,20006,20007,20008,20009,20010,20011,20012,20013,20014,20015,20016,20017,20018,20019,20020,20021,20022,20023,20024,20025,20026,20027,20028,20029,20030,20031,20032,20033,20034,20035,20036,20037,20038,20039,20040,20041,20042,20043,20044,20045,20046,20047,20048,20049,20050,20051,20052,20053,20054,20055,20056,20057,20058,20059,20060,20061,20062,20063,20064,20065,20066,20067,20068,20069,20070,20071,20072,20073,20074,20075,20076,20077,20078,20079,20080,20081,20082,20083,20084,20085,20086,20087,20088,20089,20090,20091,20092,20093,20094,20095,20096,20097,20098,20099,20100,20101,20102,20103,20104,20105,20106,20107,20108,20109,20110,20111,20112,20113,20114,20115,20116,20117,20118,20119,20120,20121,20122,20123,20124,20125,20126,20127,20128,20129,20130,20131,20132,20133,20134,20135,20136,20137,20138,20139,20140,20141,20142,20143,20144,20145,20146,20147,20148,20149,20150,20151,20152,20153,20154,20155,20156,20157,20158,20159,20160,20161,20162,20163,20164,20165,20166,20167,20168,20169,20170,20171,20172,20173,20174,20175,20176,20177,20178,20179,20180,20181,20182,20183,20184,20185,20186,20187,20188,20189,20190,20191,20192,20193,20194,20195,20196,20197,20198,20199,20200,20201,20202,20203,20204,20205,20206,20207,20208,20209,20210,20211,20212,20213,20214,20215,20216,20217,20218,20219,20220,20221,20222,20223,20224,20225,20226,20227,20228,20229,20230,20231,20232,20233,20234,20235,20236,20237,20238,20239,20240,20241,20242,20243,20244,20245,20246,20247,20248,20249,20250,20251,20252,20253,20254,20255,20256,20257,20258,20259,20260,20261,20262,20263,20264,20265,20266,20267,20268,20269,20270,20271,20272,20273,20274,20275,20276,20277,20278,20279,20280,20281,20282,20283,20284,20285,20286,20287,20288,20289,20290,20291,20292,20293,20294,20295,20296,20297,20298,20299,20300,20301,20302,20303,20304,20305,20306,20307,20308,20309,20310,20311,20312,20313,20314,20315,20316,20317,20318,20319,20320,20321,20322,20323,20324,20325,20326,20327,20328,20329,20330,20331,20332,20333,20334,20335,20336,20337,20338,20339,20340,20341,20342,20343,20344,20345,20346,20347,20348,20349,20350,20351,20352,20353,20354,20355,20356,20357,20358,20359,20360,20361,20362,20363,20364,20365,20366,20367,20368,20369,20370,20371,20372,20373,20374,20375,20376,20377,20378,20379,20380,20381,20382,20383,20384,20385,20386,20387,20388,20389,20390,20391,20392,20393,20394,20395,20396,20397,20398,20399,20400,20401,20402,20403,20404,20405,20406,20407,20408,20409,20410,20411,20412,20413,20414,20415,20416,20417,20418,20419,20420,20421,20422,20423,20424,20425,20426,20427,20428,20429,20430,20431,20432,20433,20434,20435,20436,20437,20438,20439,20440,20441,20442,20443,20444,20445,20446,20447,20448,20449,20450,20451,20452,20453,20454,20455,20456,20457,20458,20459,20460,20461,20462,20463,20464,20465,20466,20467,20468,20469,20470,20471,20472,20473,20474,20475,20476,20477,20478,20479,20480,20481,20482,20483,20484,20485,20486,20487,20488,20489,20490,20491,20492,20493,20494,20495,20496,20497,20498,20499,20500,20501,20502,20503,20504,20505,20506,20507,20508,20509,20510,20511,20512,20513,20514,20515,20516,20517,20518,20519,20520,20521,20522,20523,20524,20525,20526,20527,20528,20529,20530,20531,20532,20533,20534,20535,20536,20537,20538,20539,20540,20541,20542,20543,20544,20545,20546,20547,20548,20549,20550,20551,20552,20553,20554,20555,20556,20557,20558,20559,20560,20561,20562,20563,20564,20565,20566,20567,20568,20569,20570,20571,20572,20573,20574,20575,20576,20577,20578,20579,20580,20581,20582,20583,20584,20585,20586,20587,20588,20589,20590,20591,20592,20593,20594,20595,20596,20597,20598,20599,20600,20601,20602,20603,20604,20605,20606,20607,20608,20609,20610,20611,20612,20613,20614,20615,20616,20617,20618,20619,20620,20621,20622,20623,20624,20625,20626,20627,20628,20629,20630,20631,20632,20633,20634,20635,20636,20637,20638,20639,20640,20641,20642,20643,20644,20645,20646,20647,20648,20649,20650,20651,20652,20653,20654,20655,20656,20657,20658,20659,20660,20661,20662,20663,20664,20665,20666,20667,20668,20669,20670,20671,20672,20673,20674,20675,20676,20677,20678,20679,20680,20681,20682,20683,20684,20685,20686,20687,20688,20689,20690,20691,20692,20693,20694,20695,20696,20697,20698,20699,20700,20701,20702,20703,20704,20705,20706,20707,20708,20709,20710,20711,20712,20713,20714,20715,20716,20717,20718,20719,20720,20721,20722,20723,20724,20725,20726,20727,20728,20729,20730,20731,20732,20733,20734,20735,20736,20737,20738,20739,20740,20741,20742,20743,20744,20745,20746,20747,20748,20749,20750,20751,20752,20753,20754,20755,20756,20757,20758,20759,20760,20761,20762,20763,20764,20765,20766,20767,20768,20769,20770,20771,20772,20773,20774,20775,20776,20777,20778,20779,20780,20781,20782,20783,20784,20785,20786,20787,20788,20789,20790,20791,20792,20793,20794,20795,20796,20797,20798,20799,20800,20801,20802,20803,20804,20805,20806,20807,20808,20809,20810,20811,20812,20813,20814,20815,20816,20817,20818,20819,20820,20821,20822,20823,20824,20825,20826,20827,20828,20829,20830,20831,20832,20833,20834,20835,20836,20837,20838,20839,20840,20841,20842,20843,20844,20845,20846,20847,20848,20849,20850,20851,20852,20853,20854,20855,20856,20857,20858,20859,20860,20861,20862,20863,20864,20865,20866,20867,20868,20869,20870,20871,20872,20873,20874,20875,20876,20877,20878,20879,20880,20881,20882,20883,20884,20885,20886,20887,20888,20889,20890,20891,20892,20893,20894,20895,20896,20897,20898,20899,20900,20901,20902,20903,20904,20905,20906,20907,20908,20909,20910,20911,20912,20913,20914,20915,20916,20917,20918,20919,20920,20921,20922,20923,20924,20925,20926,20927,20928,20929,20930,20931,20932,20933,20934,20935,20936,20937,20938,20939,20940,20941,20942,20943,20944,20945,20946,20947,20948,20949,20950,20951,20952,20953,20954,20955,20956,20957,20958,20959,20960,20961,20962,20963,20964,20965,20966,20967,20968,20969,20970,20971,20972,20973,20974,20975,20976,20977,20978,20979,20980,20981,20982,20983,20984,20985,20986,20987,20988,20989,20990,20991,20992,20993,20994,20995,20996,20997,20998,20999,21000,21001,21002,21003,21004,21005,21006,21007,21008,21009,21010,21011,21012,21013,21014,21015,21016,21017,21018,21019,21020,21021,21022,21023,21024,21025,21026,21027,21028,21029,21030,21031,21032,21033,21034,21035,21036,21037,21038,21039,21040,21041,21042,21043,21044,21045,21046,21047,21048,21049,21050,21051,21052,21053,21054,21055,21056,21057,21058,21059,21060,21061,21062,21063,21064,21065,21066,21067,21068,21069,21070,21071,21072,21073,21074,21075,21076,21077,21078,21079,21080,21081,21082,21083,21084,21085,21086,21087,21088,21089,21090,21091,21092,21093,21094,21095,21096,21097,21098,21099,21100,21101,21102,21103,21104,21105,21106,21107,21108,21109,21110,21111,21112,21113,21114,21115,21116,21117,21118,21119,21120,21121,21122,21123,21124,21125,21126,21127,21128,21129,21130,21131,21132,21133,21134,21135,21136,21137,21138,21139,21140,21141,21142,21143,21144,21145,21146,21147,21148,21149,21150,21151,21152,21153,21154,21155,21156,21157,21158,21159,21160,21161,21162,21163,21164,21165,21166,21167,21168,21169,21170,21171,21172,21173,21174,21175,21176,21177,21178,21179,21180,21181,21182,21183,21184,21185,21186,21187,21188,21189,21190,21191,21192,21193,21194,21195,21196,21197,21198,21199,21200,21201,21202,21203,21204,21205,21206,21207,21208,21209,21210,21211,21212,21213,21214,21215,21216,21217,21218,21219,21220,21221,21222,21223,21224,21225,21226,21227,21228,21229,21230,21231,21232,21233,21234,21235,21236,21237,21238,21239,21240,21241,21242,21243,21244,21245,21246,21247,21248,21249,21250,21251,21252,21253,21254,21255,21256,21257,21258,21259,21260,21261,21262,21263,21264,21265,21266,21267,21268,21269,21270,21271,21272,21273,21274,21275,21276,21277,21278,21279,21280,21281,21282,21283,21284,21285,21286,21287,21288,21289,21290,21291,21292,21293,21294,21295,21296,21297,21298,21299,21300,21301,21302,21303,21304,21305,21306,21307,21308,21309,21310,21311,21312,21313,21314,21315,21316,21317,21318,21319,21320,21321,21322,21323,21324,21325,21326,21327,21328,21329,21330,21331,21332,21333,21334,21335,21336,21337,21338,21339,21340,21341,21342,21343,21344,21345,21346,21347,21348,21349,21350,21351,21352,21353,21354,21355,21356,21357,21358,21359,21360,21361,21362,21363,21364,21365,21366,21367,21368,21369,21370,21371,21372,21373,21374,21375,21376,21377,21378,21379,21380,21381,21382,21383,21384,21385,21386,21387,21388,21389,21390,21391,21392,21393,21394,21395,21396,21397,21398,21399,21400,21401,21402,21403,21404,21405,21406,21407,21408,21409,21410,21411,21412,21413,21414,21415,21416,21417,21418,21419,21420,21421,21422,21423,21424,21425,21426,21427,21428,21429,21430,21431,21432,21433,21434,21435,21436,21437,21438,21439,21440,21441,21442,21443,21444,21445,21446,21447,21448,21449,21450,21451,21452,21453,21454,21455,21456,21457,21458,21459,21460,21461,21462,21463,21464,21465,21466,21467,21468,21469,21470,21471,21472,21473,21474,21475,21476,21477,21478,21479,21480,21481,21482,21483,21484,21485,21486,21487,21488,21489,21490,21491,21492,21493,21494,21495,21496,21497,21498,21499,21500,21501,21502,21503,21504,21505,21506,21507,21508,21509,21510,21511,21512,21513,21514,21515,21516,21517,21518,21519,21520,21521,21522,21523,21524,21525,21526,21527,21528,21529,21530,21531,21532,21533,21534,21535,21536,21537,21538,21539,21540,21541,21542,21543,21544,21545,21546,21547,21548,21549,21550,21551,21552,21553,21554,21555,21556,21557,21558,21559,21560,21561,21562,21563,21564,21565,21566,21567,21568,21569,21570,21571,21572,21573,21574,21575,21576,21577,21578,21579,21580,21581,21582,21583,21584,21585,21586,21587,21588,21589,21590,21591,21592,21593,21594,21595,21596,21597,21598,21599,21600,21601,21602,21603,21604,21605,21606,21607,21608,21609,21610,21611,21612,21613,21614,21615,21616,21617,21618,21619,21620,21621,21622,21623,21624,21625,21626,21627,21628,21629,21630,21631,21632,21633,21634,21635,21636,21637,21638,21639,21640,21641,21642,21643,21644,21645,21646,21647,21648,21649,21650,21651,21652,21653,21654,21655,21656,21657,21658,21659,21660,21661,21662,21663,21664,21665,21666,21667,21668,21669,21670,21671,21672,21673,21674,21675,21676,21677,21678,21679,21680,21681,21682,21683,21684,21685,21686,21687,21688,21689,21690,21691,21692,21693,21694,21695,21696,21697,21698,21699,21700,21701,21702,21703,21704,21705,21706,21707,21708,21709,21710,21711,21712,21713,21714,21715,21716,21717,21718,21719,21720,21721,21722,21723,21724,21725,21726,21727,21728,21729,21730,21731,21732,21733,21734,21735,21736,21737,21738,21739,21740,21741,21742,21743,21744,21745,21746,21747,21748,21749,21750,21751,21752,21753,21754,21755,21756,21757,21758,21759,21760,21761,21762,21763,21764,21765,21766,21767,21768,21769,21770,21771,21772,21773,21774,21775,21776,21777,21778,21779,21780,21781,21782,21783,21784,21785,21786,21787,21788,21789,21790,21791,21792,21793,21794,21795,21796,21797,21798,21799,21800,21801,21802,21803,21804,21805,21806,21807,21808,21809,21810,21811,21812,21813,21814,21815,21816,21817,21818,21819,21820,21821,21822,21823,21824,21825,21826,21827,21828,21829,21830,21831,21832,21833,21834,21835,21836,21837,21838,21839,21840,21841,21842,21843,21844,21845,21846,21847,21848,21849,21850,21851,21852,21853,21854,21855,21856,21857,21858,21859,21860,21861,21862,21863,21864,21865,21866,21867,21868,21869,21870,21871,21872,21873,21874,21875,21876,21877,21878,21879,21880,21881,21882,21883,21884,21885,21886,21887,21888,21889,21890,21891,21892,21893,21894,21895,21896,21897,21898,21899,21900,21901,21902,21903,21904,21905,21906,21907,21908,21909,21910,21911,21912,21913,21914,21915,21916,21917,21918,21919,21920,21921,21922,21923,21924,21925,21926,21927,21928,21929,21930,21931,21932,21933,21934,21935,21936,21937,21938,21939,21940,21941,21942,21943,21944,21945,21946,21947,21948,21949,21950,21951,21952,21953,21954,21955,21956,21957,21958,21959,21960,21961,21962,21963,21964,21965,21966,21967,21968,21969,21970,21971,21972,21973,21974,21975,21976,21977,21978,21979,21980,21981,21982,21983,21984,21985,21986,21987,21988,21989,21990,21991,21992,21993,21994,21995,21996,21997,21998,21999,22000,22001,22002,22003,22004,22005,22006,22007,22008,22009,22010,22011,22012,22013,22014,22015,22016,22017,22018,22019,22020,22021,22022,22023,22024,22025,22026,22027,22028,22029,22030,22031,22032,22033,22034,22035,22036,22037,22038,22039,22040,22041,22042,22043,22044,22045,22046,22047,22048,22049,22050,22051,22052,22053,22054,22055,22056,22057,22058,22059,22060,22061,22062,22063,22064,22065,22066,22067,22068,22069,22070,22071,22072,22073,22074,22075,22076,22077,22078,22079,22080,22081,22082,22083,22084,22085,22086,22087,22088,22089,22090,22091,22092,22093,22094,22095,22096,22097,22098,22099,22100,22101,22102,22103,22104,22105,22106,22107,22108,22109,22110,22111,22112,22113,22114,22115,22116,22117,22118,22119,22120,22121,22122,22123,22124,22125,22126,22127,22128,22129,22130,22131,22132,22133,22134,22135,22136,22137,22138,22139,22140,22141,22142,22143,22144,22145,22146,22147,22148,22149,22150,22151,22152,22153,22154,22155,22156,22157,22158,22159,22160,22161,22162,22163,22164,22165,22166,22167,22168,22169,22170,22171,22172,22173,22174,22175,22176,22177,22178,22179,22180,22181,22182,22183,22184,22185,22186,22187,22188,22189,22190,22191,22192,22193,22194,22195,22196,22197,22198,22199,22200,22201,22202,22203,22204,22205,22206,22207,22208,22209,22210,22211,22212,22213,22214,22215,22216,22217,22218,22219,22220,22221,22222,22223,22224,22225,22226,22227,22228,22229,22230,22231,22232,22233,22234,22235,22236,22237,22238,22239,22240,22241,22242,22243,22244,22245,22246,22247,22248,22249,22250,22251,22252,22253,22254,22255,22256,22257,22258,22259,22260,22261,22262,22263,22264,22265,22266,22267,22268,22269,22270,22271,22272,22273,22274,22275,22276,22277,22278,22279,22280,22281,22282,22283,22284,22285,22286,22287,22288,22289,22290,22291,22292,22293,22294,22295,22296,22297,22298,22299,22300,22301,22302,22303,22304,22305,22306,22307,22308,22309,22310,22311,22312,22313,22314,22315,22316,22317,22318,22319,22320,22321,22322,22323,22324,22325,22326,22327,22328,22329,22330,22331,22332,22333,22334,22335,22336,22337,22338,22339,22340,22341,22342,22343,22344,22345,22346,22347,22348,22349,22350,22351,22352,22353,22354,22355,22356,22357,22358,22359,22360,22361,22362,22363,22364,22365,22366,22367,22368,22369,22370,22371,22372,22373,22374,22375,22376,22377,22378,22379,22380,22381,22382,22383,22384,22385,22386,22387,22388,22389,22390,22391,22392,22393,22394,22395,22396,22397,22398,22399,22400,22401,22402,22403,22404,22405,22406,22407,22408,22409,22410,22411,22412,22413,22414,22415,22416,22417,22418,22419,22420,22421,22422,22423,22424,22425,22426,22427,22428,22429,22430,22431,22432,22433,22434,22435,22436,22437,22438,22439,22440,22441,22442,22443,22444,22445,22446,22447,22448,22449,22450,22451,22452,22453,22454,22455,22456,22457,22458,22459,22460,22461,22462,22463,22464,22465,22466,22467,22468,22469,22470,22471,22472,22473,22474,22475,22476,22477,22478,22479,22480,22481,22482,22483,22484,22485,22486,22487,22488,22489,22490,22491,22492,22493,22494,22495,22496,22497,22498,22499,22500,22501,22502,22503,22504,22505,22506,22507,22508,22509,22510,22511,22512,22513,22514,22515,22516,22517,22518,22519,22520,22521,22522,22523,22524,22525,22526,22527,22528,22529,22530,22531,22532,22533,22534,22535,22536,22537,22538,22539,22540,22541,22542,22543,22544,22545,22546,22547,22548,22549,22550,22551,22552,22553,22554,22555,22556,22557,22558,22559,22560,22561,22562,22563,22564,22565,22566,22567,22568,22569,22570,22571,22572,22573,22574,22575,22576,22577,22578,22579,22580,22581,22582,22583,22584,22585,22586,22587,22588,22589,22590,22591,22592,22593,22594,22595,22596,22597,22598,22599,22600,22601,22602,22603,22604,22605,22606,22607,22608,22609,22610,22611,22612,22613,22614,22615,22616,22617,22618,22619,22620,22621,22622,22623,22624,22625,22626,22627,22628,22629,22630,22631,22632,22633,22634,22635,22636,22637,22638,22639,22640,22641,22642,22643,22644,22645,22646,22647,22648,22649,22650,22651,22652,22653,22654,22655,22656,22657,22658,22659,22660,22661,22662,22663,22664,22665,22666,22667,22668,22669,22670,22671,22672,22673,22674,22675,22676,22677,22678,22679,22680,22681,22682,22683,22684,22685,22686,22687,22688,22689,22690,22691,22692,22693,22694,22695,22696,22697,22698,22699,22700,22701,22702,22703,22704,22705,22706,22707,22708,22709,22710,22711,22712,22713,22714,22715,22716,22717,22718,22719,22720,22721,22722,22723,22724,22725,22726,22727,22728,22729,22730,22731,22732,22733,22734,22735,22736,22737,22738,22739,22740,22741,22742,22743,22744,22745,22746,22747,22748,22749,22750,22751,22752,22753,22754,22755,22756,22757,22758,22759,22760,22761,22762,22763,22764,22765,22766,22767,22768,22769,22770,22771,22772,22773,22774,22775,22776,22777,22778,22779,22780,22781,22782,22783,22784,22785,22786,22787,22788,22789,22790,22791,22792,22793,22794,22795,22796,22797,22798,22799,22800,22801,22802,22803,22804,22805,22806,22807,22808,22809,22810,22811,22812,22813,22814,22815,22816,22817,22818,22819,22820,22821,22822,22823,22824,22825,22826,22827,22828,22829,22830,22831,22832,22833,22834,22835,22836,22837,22838,22839,22840,22841,22842,22843,22844,22845,22846,22847,22848,22849,22850,22851,22852,22853,22854,22855,22856,22857,22858,22859,22860,22861,22862,22863,22864,22865,22866,22867,22868,22869,22870,22871,22872,22873,22874,22875,22876,22877,22878,22879,22880,22881,22882,22883,22884,22885,22886,22887,22888,22889,22890,22891,22892,22893,22894,22895,22896,22897,22898,22899,22900,22901,22902,22903,22904,22905,22906,22907,22908,22909,22910,22911,22912,22913,22914,22915,22916,22917,22918,22919,22920,22921,22922,22923,22924,22925,22926,22927,22928,22929,22930,22931,22932,22933,22934,22935,22936,22937,22938,22939,22940,22941,22942,22943,22944,22945,22946,22947,22948,22949,22950,22951,22952,22953,22954,22955,22956,22957,22958,22959,22960,22961,22962,22963,22964,22965,22966,22967,22968,22969,22970,22971,22972,22973,22974,22975,22976,22977,22978,22979,22980,22981,22982,22983,22984,22985,22986,22987,22988,22989,22990,22991,22992,22993,22994,22995,22996,22997,22998,22999,23000,23001,23002,23003,23004,23005,23006,23007,23008,23009,23010,23011,23012,23013,23014,23015,23016,23017,23018,23019,23020,23021,23022,23023,23024,23025,23026,23027,23028,23029,23030,23031,23032,23033,23034,23035,23036,23037,23038,23039,23040,23041,23042,23043,23044,23045,23046,23047,23048,23049,23050,23051,23052,23053,23054,23055,23056,23057,23058,23059,23060,23061,23062,23063,23064,23065,23066,23067,23068,23069,23070,23071,23072,23073,23074,23075,23076,23077,23078,23079,23080,23081,23082,23083,23084,23085,23086,23087,23088,23089,23090,23091,23092,23093,23094,23095,23096,23097,23098,23099,23100,23101,23102,23103,23104,23105,23106,23107,23108,23109,23110,23111,23112,23113,23114,23115,23116,23117,23118,23119,23120,23121,23122,23123,23124,23125,23126,23127,23128,23129,23130,23131,23132,23133,23134,23135,23136,23137,23138,23139,23140,23141,23142,23143,23144,23145,23146,23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23161,23162,23163,23164,23165,23166,23167,23168,23169,23170,23171,23172,23173,23174,23175,23176,23177,23178,23179,23180,23181,23182,23183,23184,23185,23186,23187,23188,23189,23190,23191,23192,23193,23194,23195,23196,23197,23198,23199,23200,23201,23202,23203,23204,23205,23206,23207,23208,23209,23210,23211,23212,23213,23214,23215,23216,23217,23218,23219,23220,23221,23222,23223,23224,23225,23226,23227,23228,23229,23230,23231,23232,23233,23234,23235,23236,23237,23238,23239,23240,23241,23242,23243,23244,23245,23246,23247,23248,23249,23250,23251,23252,23253,23254,23255,23256,23257,23258,23259,23260,23261,23262,23263,23264,23265,23266,23267,23268,23269,23270,23271,23272,23273,23274,23275,23276,23277,23278,23279,23280,23281,23282,23283,23284,23285,23286,23287,23288,23289,23290,23291,23292,23293,23294,23295,23296,23297,23298,23299,23300,23301,23302,23303,23304,23305,23306,23307,23308,23309,23310,23311,23312,23313,23314,23315,23316,23317,23318,23319,23320,23321,23322,23323,23324,23325,23326,23327,23328,23329,23330,23331,23332,23333,23334,23335,23336,23337,23338,23339,23340,23341,23342,23343,23344,23345,23346,23347,23348,23349,23350,23351,23352,23353,23354,23355,23356,23357,23358,23359,23360,23361,23362,23363,23364,23365,23366,23367,23368,23369,23370,23371,23372,23373,23374,23375,23376,23377,23378,23379,23380,23381,23382,23383,23384,23385,23386,23387,23388,23389,23390,23391,23392,23393,23394,23395,23396,23397,23398,23399,23400,23401,23402,23403,23404,23405,23406,23407,23408,23409,23410,23411,23412,23413,23414,23415,23416,23417,23418,23419,23420,23421,23422,23423,23424,23425,23426,23427,23428,23429,23430,23431,23432,23433,23434,23435,23436,23437,23438,23439,23440,23441,23442,23443,23444,23445,23446,23447,23448,23449,23450,23451,23452,23453,23454,23455,23456,23457,23458,23459,23460,23461,23462,23463,23464,23465,23466,23467,23468,23469,23470,23471,23472,23473,23474,23475,23476,23477,23478,23479,23480,23481,23482,23483,23484,23485,23486,23487,23488,23489,23490,23491,23492,23493,23494,23495,23496,23497,23498,23499,23500,23501,23502,23503,23504,23505,23506,23507,23508,23509,23510,23511,23512,23513,23514,23515,23516,23517,23518,23519,23520,23521,23522,23523,23524,23525,23526,23527,23528,23529,23530,23531,23532,23533,23534,23535,23536,23537,23538,23539,23540,23541,23542,23543,23544,23545,23546,23547,23548,23549,23550,23551,23552,23553,23554,23555,23556,23557,23558,23559,23560,23561,23562,23563,23564,23565,23566,23567,23568,23569,23570,23571,23572,23573,23574,23575,23576,23577,23578,23579,23580,23581,23582,23583,23584,23585,23586,23587,23588,23589,23590,23591,23592,23593,23594,23595,23596,23597,23598,23599,23600,23601,23602,23603,23604,23605,23606,23607,23608,23609,23610,23611,23612,23613,23614,23615,23616,23617,23618,23619,23620,23621,23622,23623,23624,23625,23626,23627,23628,23629,23630,23631,23632,23633,23634,23635,23636,23637,23638,23639,23640,23641,23642,23643,23644,23645,23646,23647,23648,23649,23650,23651,23652,23653,23654,23655,23656,23657,23658,23659,23660,23661,23662,23663,23664,23665,23666,23667,23668,23669,23670,23671,23672,23673,23674,23675,23676,23677,23678,23679,23680,23681,23682,23683,23684,23685,23686,23687,23688,23689,23690,23691,23692,23693,23694,23695,23696,23697,23698,23699,23700,23701,23702,23703,23704,23705,23706,23707,23708,23709,23710,23711,23712,23713,23714,23715,23716,23717,23718,23719,23720,23721,23722,23723,23724,23725,23726,23727,23728,23729,23730,23731,23732,23733,23734,23735,23736,23737,23738,23739,23740,23741,23742,23743,23744,23745,23746,23747,23748,23749,23750,23751,23752,23753,23754,23755,23756,23757,23758,23759,23760,23761,23762,23763,23764,23765,23766,23767,23768,23769,23770,23771,23772,23773,23774,23775,23776,23777,23778,23779,23780,23781,23782,23783,23784,23785,23786,23787,23788,23789,23790,23791,23792,23793,23794,23795,23796,23797,23798,23799,23800,23801,23802,23803,23804,23805,23806,23807,23808,23809,23810,23811,23812,23813,23814,23815,23816,23817,23818,23819,23820,23821,23822,23823,23824,23825,23826,23827,23828,23829,23830,23831,23832,23833,23834,23835,23836,23837,23838,23839,23840,23841,23842,23843,23844,23845,23846,23847,23848,23849,23850,23851,23852,23853,23854,23855,23856,23857,23858,23859,23860,23861,23862,23863,23864,23865,23866,23867,23868,23869,23870,23871,23872,23873,23874,23875,23876,23877,23878,23879,23880,23881,23882,23883,23884,23885,23886,23887,23888,23889,23890,23891,23892,23893,23894,23895,23896,23897,23898,23899,23900,23901,23902,23903,23904,23905,23906,23907,23908,23909,23910,23911,23912,23913,23914,23915,23916,23917,23918,23919,23920,23921,23922,23923,23924,23925,23926,23927,23928,23929,23930,23931,23932,23933,23934,23935,23936,23937,23938,23939,23940,23941,23942,23943,23944,23945,23946,23947,23948,23949,23950,23951,23952,23953,23954,23955,23956,23957,23958,23959,23960,23961,23962,23963,23964,23965,23966,23967,23968,23969,23970,23971,23972,23973,23974,23975,23976,23977,23978,23979,23980,23981,23982,23983,23984,23985,23986,23987,23988,23989,23990,23991,23992,23993,23994,23995,23996,23997,23998,23999,24000,24001,24002,24003,24004,24005,24006,24007,24008,24009,24010,24011,24012,24013,24014,24015,24016,24017,24018,24019,24020,24021,24022,24023,24024,24025,24026,24027,24028,24029,24030,24031,24032,24033,24034,24035,24036,24037,24038,24039,24040,24041,24042,24043,24044,24045,24046,24047,24048,24049,24050,24051,24052,24053,24054,24055,24056,24057,24058,24059,24060,24061,24062,24063,24064,24065,24066,24067,24068,24069,24070,24071,24072,24073,24074,24075,24076,24077,24078,24079,24080,24081,24082,24083,24084,24085,24086,24087,24088,24089,24090,24091,24092,24093,24094,24095,24096,24097,24098,24099,24100,24101,24102,24103,24104,24105,24106,24107,24108,24109,24110,24111,24112,24113,24114,24115,24116,24117,24118,24119,24120,24121,24122,24123,24124,24125,24126,24127,24128,24129,24130,24131,24132,24133,24134,24135,24136,24137,24138,24139,24140,24141,24142,24143,24144,24145,24146,24147,24148,24149,24150,24151,24152,24153,24154,24155,24156,24157,24158,24159,24160,24161,24162,24163,24164,24165,24166,24167,24168,24169,24170,24171,24172,24173,24174,24175,24176,24177,24178,24179,24180,24181,24182,24183,24184,24185,24186,24187,24188,24189,24190,24191,24192,24193,24194,24195,24196,24197,24198,24199,24200,24201,24202,24203,24204,24205,24206,24207,24208,24209,24210,24211,24212,24213,24214,24215,24216,24217,24218,24219,24220,24221,24222,24223,24224,24225,24226,24227,24228,24229,24230,24231,24232,24233,24234,24235,24236,24237,24238,24239,24240,24241,24242,24243,24244,24245,24246,24247,24248,24249,24250,24251,24252,24253,24254,24255,24256,24257,24258,24259,24260,24261,24262,24263,24264,24265,24266,24267,24268,24269,24270,24271,24272,24273,24274,24275,24276,24277,24278,24279,24280,24281,24282,24283,24284,24285,24286,24287,24288,24289,24290,24291,24292,24293,24294,24295,24296,24297,24298,24299,24300,24301,24302,24303,24304,24305,24306,24307,24308,24309,24310,24311,24312,24313,24314,24315,24316,24317,24318,24319,24320,24321,24322,24323,24324,24325,24326,24327,24328,24329,24330,24331,24332,24333,24334,24335,24336,24337,24338,24339,24340,24341,24342,24343,24344,24345,24346,24347,24348,24349,24350,24351,24352,24353,24354,24355,24356,24357,24358,24359,24360,24361,24362,24363,24364,24365,24366,24367,24368,24369,24370,24371,24372,24373,24374,24375,24376,24377,24378,24379,24380,24381,24382,24383,24384,24385,24386,24387,24388,24389,24390,24391,24392,24393,24394,24395,24396,24397,24398,24399,24400,24401,24402,24403,24404,24405,24406,24407,24408,24409,24410,24411,24412,24413,24414,24415,24416,24417,24418,24419,24420,24421,24422,24423,24424,24425,24426,24427,24428,24429,24430,24431,24432,24433,24434,24435,24436,24437,24438,24439,24440,24441,24442,24443,24444,24445,24446,24447,24448,24449,24450,24451,24452,24453,24454,24455,24456,24457,24458,24459,24460,24461,24462,24463,24464,24465,24466,24467,24468,24469,24470,24471,24472,24473,24474,24475,24476,24477,24478,24479,24480,24481,24482,24483,24484,24485,24486,24487,24488,24489,24490,24491,24492,24493,24494,24495,24496,24497,24498,24499,24500,24501,24502,24503,24504,24505,24506,24507,24508,24509,24510,24511,24512,24513,24514,24515,24516,24517,24518,24519,24520,24521,24522,24523,24524,24525,24526,24527,24528,24529,24530,24531,24532,24533,24534,24535,24536,24537,24538,24539,24540,24541,24542,24543,24544,24545,24546,24547,24548,24549,24550,24551,24552,24553,24554,24555,24556,24557,24558,24559,24560,24561,24562,24563,24564,24565,24566,24567,24568,24569,24570,24571,24572,24573,24574,24575,24576,24577,24578,24579,24580,24581,24582,24583,24584,24585,24586,24587,24588,24589,24590,24591,24592,24593,24594,24595,24596,24597,24598,24599,24600,24601,24602,24603,24604,24605,24606,24607,24608,24609,24610,24611,24612,24613,24614,24615,24616,24617,24618,24619,24620,24621,24622,24623,24624,24625,24626,24627,24628,24629,24630,24631,24632,24633,24634,24635,24636,24637,24638,24639,24640,24641,24642,24643,24644,24645,24646,24647,24648,24649,24650,24651,24652,24653,24654,24655,24656,24657,24658,24659,24660,24661,24662,24663,24664,24665,24666,24667,24668,24669,24670,24671,24672,24673,24674,24675,24676,24677,24678,24679,24680,24681,24682,24683,24684,24685,24686,24687,24688,24689,24690,24691,24692,24693,24694,24695,24696,24697,24698,24699,24700,24701,24702,24703,24704,24705,24706,24707,24708,24709,24710,24711,24712,24713,24714,24715,24716,24717,24718,24719,24720,24721,24722,24723,24724,24725,24726,24727,24728,24729,24730,24731,24732,24733,24734,24735,24736,24737,24738,24739,24740,24741,24742,24743,24744,24745,24746,24747,24748,24749,24750,24751,24752,24753,24754,24755,24756,24757,24758,24759,24760,24761,24762,24763,24764,24765,24766,24767,24768,24769,24770,24771,24772,24773,24774,24775,24776,24777,24778,24779,24780,24781,24782,24783,24784,24785,24786,24787,24788,24789,24790,24791,24792,24793,24794,24795,24796,24797,24798,24799,24800,24801,24802,24803,24804,24805,24806,24807,24808,24809,24810,24811,24812,24813,24814,24815,24816,24817,24818,24819,24820,24821,24822,24823,24824,24825,24826,24827,24828,24829,24830,24831,24832,24833,24834,24835,24836,24837,24838,24839,24840,24841,24842,24843,24844,24845,24846,24847,24848,24849,24850,24851,24852,24853,24854,24855,24856,24857,24858,24859,24860,24861,24862,24863,24864,24865,24866,24867,24868,24869,24870,24871,24872,24873,24874,24875,24876,24877,24878,24879,24880,24881,24882,24883,24884,24885,24886,24887,24888,24889,24890,24891,24892,24893,24894,24895,24896,24897,24898,24899,24900,24901,24902,24903,24904,24905,24906,24907,24908,24909,24910,24911,24912,24913,24914,24915,24916,24917,24918,24919,24920,24921,24922,24923,24924,24925,24926,24927,24928,24929,24930,24931,24932,24933,24934,24935,24936,24937,24938,24939,24940,24941,24942,24943,24944,24945,24946,24947,24948,24949,24950,24951,24952,24953,24954,24955,24956,24957,24958,24959,24960,24961,24962,24963,24964,24965,24966,24967,24968,24969,24970,24971,24972,24973,24974,24975,24976,24977,24978,24979,24980,24981,24982,24983,24984,24985,24986,24987,24988,24989,24990,24991,24992,24993,24994,24995,24996,24997,24998,24999,25000,25001,25002,25003,25004,25005,25006,25007,25008,25009,25010,25011,25012,25013,25014,25015,25016,25017,25018,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25029,25030,25031,25032,25033,25034,25035,25036,25037,25038,25039,25040,25041,25042,25043,25044,25045,25046,25047,25048,25049,25050,25051,25052,25053,25054,25055,25056,25057,25058,25059,25060,25061,25062,25063,25064,25065,25066,25067,25068,25069,25070,25071,25072,25073,25074,25075,25076,25077,25078,25079,25080,25081,25082,25083,25084,25085,25086,25087,25088,25089,25090,25091,25092,25093,25094,25095,25096,25097,25098,25099,25100,25101,25102,25103,25104,25105,25106,25107,25108,25109,25110,25111,25112,25113,25114,25115,25116,25117,25118,25119,25120,25121,25122,25123,25124,25125,25126,25127,25128,25129,25130,25131,25132,25133,25134,25135,25136,25137,25138,25139,25140,25141,25142,25143,25144,25145,25146,25147,25148,25149,25150,25151,25152,25153,25154,25155,25156,25157,25158,25159,25160,25161,25162,25163,25164,25165,25166,25167,25168,25169,25170,25171,25172,25173,25174,25175,25176,25177,25178,25179,25180,25181,25182,25183,25184,25185,25186,25187,25188,25189,25190,25191,25192,25193,25194,25195,25196,25197,25198,25199,25200,25201,25202,25203,25204,25205,25206,25207,25208,25209,25210,25211,25212,25213,25214,25215,25216,25217,25218,25219,25220,25221,25222,25223,25224,25225,25226,25227,25228,25229,25230,25231,25232,25233,25234,25235,25236,25237,25238,25239,25240,25241,25242,25243,25244,25245,25246,25247,25248,25249,25250,25251,25252,25253,25254,25255,25256,25257,25258,25259,25260,25261,25262,25263,25264,25265,25266,25267,25268,25269,25270,25271,25272,25273,25274,25275,25276,25277,25278,25279,25280,25281,25282,25283,25284,25285,25286,25287,25288,25289,25290,25291,25292,25293,25294,25295,25296,25297,25298,25299,25300,25301,25302,25303,25304,25305,25306,25307,25308,25309,25310,25311,25312,25313,25314,25315,25316,25317,25318,25319,25320,25321,25322,25323,25324,25325,25326,25327,25328,25329,25330,25331,25332,25333,25334,25335,25336,25337,25338,25339,25340,25341,25342,25343,25344,25345,25346,25347,25348,25349,25350,25351,25352,25353,25354,25355,25356,25357,25358,25359,25360,25361,25362,25363,25364,25365,25366,25367,25368,25369,25370,25371,25372,25373,25374,25375,25376,25377,25378,25379,25380,25381,25382,25383,25384,25385,25386,25387,25388,25389,25390,25391,25392,25393,25394,25395,25396,25397,25398,25399,25400,25401,25402,25403,25404,25405,25406,25407,25408,25409,25410,25411,25412,25413,25414,25415,25416,25417,25418,25419,25420,25421,25422,25423,25424,25425,25426,25427,25428,25429,25430,25431,25432,25433,25434,25435,25436,25437,25438,25439,25440,25441,25442,25443,25444,25445,25446,25447,25448,25449,25450,25451,25452,25453,25454,25455,25456,25457,25458,25459,25460,25461,25462,25463,25464,25465,25466,25467,25468,25469,25470,25471,25472,25473,25474,25475,25476,25477,25478,25479,25480,25481,25482,25483,25484,25485,25486,25487,25488,25489,25490,25491,25492,25493,25494,25495,25496,25497,25498,25499,25500,25501,25502,25503,25504,25505,25506,25507,25508,25509,25510,25511,25512,25513,25514,25515,25516,25517,25518,25519,25520,25521,25522,25523,25524,25525,25526,25527,25528,25529,25530,25531,25532,25533,25534,25535,25536,25537,25538,25539,25540,25541,25542,25543,25544,25545,25546,25547,25548,25549,25550,25551,25552,25553,25554,25555,25556,25557,25558,25559,25560,25561,25562,25563,25564,25565,25566,25567,25568,25569,25570,25571,25572,25573,25574,25575,25576,25577,25578,25579,25580,25581,25582,25583,25584,25585,25586,25587,25588,25589,25590,25591,25592,25593,25594,25595,25596,25597,25598,25599,25600,25601,25602,25603,25604,25605,25606,25607,25608,25609,25610,25611,25612,25613,25614,25615,25616,25617,25618,25619,25620,25621,25622,25623,25624,25625,25626,25627,25628,25629,25630,25631,25632,25633,25634,25635,25636,25637,25638,25639,25640,25641,25642,25643,25644,25645,25646,25647,25648,25649,25650,25651,25652,25653,25654,25655,25656,25657,25658,25659,25660,25661,25662,25663,25664,25665,25666,25667,25668,25669,25670,25671,25672,25673,25674,25675,25676,25677,25678,25679,25680,25681,25682,25683,25684,25685,25686,25687,25688,25689,25690,25691,25692,25693,25694,25695,25696,25697,25698,25699,25700,25701,25702,25703,25704,25705,25706,25707,25708,25709,25710,25711,25712,25713,25714,25715,25716,25717,25718,25719,25720,25721,25722,25723,25724,25725,25726,25727,25728,25729,25730,25731,25732,25733,25734,25735,25736,25737,25738,25739,25740,25741,25742,25743,25744,25745,25746,25747,25748,25749,25750,25751,25752,25753,25754,25755,25756,25757,25758,25759,25760,25761,25762,25763,25764,25765,25766,25767,25768,25769,25770,25771,25772,25773,25774,25775,25776,25777,25778,25779,25780,25781,25782,25783,25784,25785,25786,25787,25788,25789,25790,25791,25792,25793,25794,25795,25796,25797,25798,25799,25800,25801,25802,25803,25804,25805,25806,25807,25808,25809,25810,25811,25812,25813,25814,25815,25816,25817,25818,25819,25820,25821,25822,25823,25824,25825,25826,25827,25828,25829,25830,25831,25832,25833,25834,25835,25836,25837,25838,25839,25840,25841,25842,25843,25844,25845,25846,25847,25848,25849,25850,25851,25852,25853,25854,25855,25856,25857,25858,25859,25860,25861,25862,25863,25864,25865,25866,25867,25868,25869,25870,25871,25872,25873,25874,25875,25876,25877,25878,25879,25880,25881,25882,25883,25884,25885,25886,25887,25888,25889,25890,25891,25892,25893,25894,25895,25896,25897,25898,25899,25900,25901,25902,25903,25904,25905,25906,25907,25908,25909,25910,25911,25912,25913,25914,25915,25916,25917,25918,25919,25920,25921,25922,25923,25924,25925,25926,25927,25928,25929,25930,25931,25932,25933,25934,25935,25936,25937,25938,25939,25940,25941,25942,25943,25944,25945,25946,25947,25948,25949,25950,25951,25952,25953,25954,25955,25956,25957,25958,25959,25960,25961,25962,25963,25964,25965,25966,25967,25968,25969,25970,25971,25972,25973,25974,25975,25976,25977,25978,25979,25980,25981,25982,25983,25984,25985,25986,25987,25988,25989,25990,25991,25992,25993,25994,25995,25996,25997,25998,25999,26000,26001,26002,26003,26004,26005,26006,26007,26008,26009,26010,26011,26012,26013,26014,26015,26016,26017,26018,26019,26020,26021,26022,26023,26024,26025,26026,26027,26028,26029,26030,26031,26032,26033,26034,26035,26036,26037,26038,26039,26040,26041,26042,26043,26044,26045,26046,26047,26048,26049,26050,26051,26052,26053,26054,26055,26056,26057,26058,26059,26060,26061,26062,26063,26064,26065,26066,26067,26068,26069,26070,26071,26072,26073,26074,26075,26076,26077,26078,26079,26080,26081,26082,26083,26084,26085,26086,26087,26088,26089,26090,26091,26092,26093,26094,26095,26096,26097,26098,26099,26100,26101,26102,26103,26104,26105,26106,26107,26108,26109,26110,26111,26112,26113,26114,26115,26116,26117,26118,26119,26120,26121,26122,26123,26124,26125,26126,26127,26128,26129,26130,26131,26132,26133,26134,26135,26136,26137,26138,26139,26140,26141,26142,26143,26144,26145,26146,26147,26148,26149,26150,26151,26152,26153,26154,26155,26156,26157,26158,26159,26160,26161,26162,26163,26164,26165,26166,26167,26168,26169,26170,26171,26172,26173,26174,26175,26176,26177,26178,26179,26180,26181,26182,26183,26184,26185,26186,26187,26188,26189,26190,26191,26192,26193,26194,26195,26196,26197,26198,26199,26200,26201,26202,26203,26204,26205,26206,26207,26208,26209,26210,26211,26212,26213,26214,26215,26216,26217,26218,26219,26220,26221,26222,26223,26224,26225,26226,26227,26228,26229,26230,26231,26232,26233,26234,26235,26236,26237,26238,26239,26240,26241,26242,26243,26244,26245,26246,26247,26248,26249,26250,26251,26252,26253,26254,26255,26256,26257,26258,26259,26260,26261,26262,26263,26264,26265,26266,26267,26268,26269,26270,26271,26272,26273,26274,26275,26276,26277,26278,26279,26280,26281,26282,26283,26284,26285,26286,26287,26288,26289,26290,26291,26292,26293,26294,26295,26296,26297,26298,26299,26300,26301,26302,26303,26304,26305,26306,26307,26308,26309,26310,26311,26312,26313,26314,26315,26316,26317,26318,26319,26320,26321,26322,26323,26324,26325,26326,26327,26328,26329,26330,26331,26332,26333,26334,26335,26336,26337,26338,26339,26340,26341,26342,26343,26344,26345,26346,26347,26348,26349,26350,26351,26352,26353,26354,26355,26356,26357,26358,26359,26360,26361,26362,26363,26364,26365,26366,26367,26368,26369,26370,26371,26372,26373,26374,26375,26376,26377,26378,26379,26380,26381,26382,26383,26384,26385,26386,26387,26388,26389,26390,26391,26392,26393,26394,26395,26396,26397,26398,26399,26400,26401,26402,26403,26404,26405,26406,26407,26408,26409,26410,26411,26412,26413,26414,26415,26416,26417,26418,26419,26420,26421,26422,26423,26424,26425,26426,26427,26428,26429,26430,26431,26432,26433,26434,26435,26436,26437,26438,26439,26440,26441,26442,26443,26444,26445,26446,26447,26448,26449,26450,26451,26452,26453,26454,26455,26456,26457,26458,26459,26460,26461,26462,26463,26464,26465,26466,26467,26468,26469,26470,26471,26472,26473,26474,26475,26476,26477,26478,26479,26480,26481,26482,26483,26484,26485,26486,26487,26488,26489,26490,26491,26492,26493,26494,26495,26496,26497,26498,26499,26500,26501,26502,26503,26504,26505,26506,26507,26508,26509,26510,26511,26512,26513,26514,26515,26516,26517,26518,26519,26520,26521,26522,26523,26524,26525,26526,26527,26528,26529,26530,26531,26532,26533,26534,26535,26536,26537,26538,26539,26540,26541,26542,26543,26544,26545,26546,26547,26548,26549,26550,26551,26552,26553,26554,26555,26556,26557,26558,26559,26560,26561,26562,26563,26564,26565,26566,26567,26568,26569,26570,26571,26572,26573,26574,26575,26576,26577,26578,26579,26580,26581,26582,26583,26584,26585,26586,26587,26588,26589,26590,26591,26592,26593,26594,26595,26596,26597,26598,26599,26600,26601,26602,26603,26604,26605,26606,26607,26608,26609,26610,26611,26612,26613,26614,26615,26616,26617,26618,26619,26620,26621,26622,26623,26624,26625,26626,26627,26628,26629,26630,26631,26632,26633,26634,26635,26636,26637,26638,26639,26640,26641,26642,26643,26644,26645,26646,26647,26648,26649,26650,26651,26652,26653,26654,26655,26656,26657,26658,26659,26660,26661,26662,26663,26664,26665,26666,26667,26668,26669,26670,26671,26672,26673,26674,26675,26676,26677,26678,26679,26680,26681,26682,26683,26684,26685,26686,26687,26688,26689,26690,26691,26692,26693,26694,26695,26696,26697,26698,26699,26700,26701,26702,26703,26704,26705,26706,26707,26708,26709,26710,26711,26712,26713,26714,26715,26716,26717,26718,26719,26720,26721,26722,26723,26724,26725,26726,26727,26728,26729,26730,26731,26732,26733,26734,26735,26736,26737,26738,26739,26740,26741,26742,26743,26744,26745,26746,26747,26748,26749,26750,26751,26752,26753,26754,26755,26756,26757,26758,26759,26760,26761,26762,26763,26764,26765,26766,26767,26768,26769,26770,26771,26772,26773,26774,26775,26776,26777,26778,26779,26780,26781,26782,26783,26784,26785,26786,26787,26788,26789,26790,26791,26792,26793,26794,26795,26796,26797,26798,26799,26800,26801,26802,26803,26804,26805,26806,26807,26808,26809,26810,26811,26812,26813,26814,26815,26816,26817,26818,26819,26820,26821,26822,26823,26824,26825,26826,26827,26828,26829,26830,26831,26832,26833,26834,26835,26836,26837,26838,26839,26840,26841,26842,26843,26844,26845,26846,26847,26848,26849,26850,26851,26852,26853,26854,26855,26856,26857,26858,26859,26860,26861,26862,26863,26864,26865,26866,26867,26868,26869,26870,26871,26872,26873,26874,26875,26876,26877,26878,26879,26880,26881,26882,26883,26884,26885,26886,26887,26888,26889,26890,26891,26892,26893,26894,26895,26896,26897,26898,26899,26900,26901,26902,26903,26904,26905,26906,26907,26908,26909,26910,26911,26912,26913,26914,26915,26916,26917,26918,26919,26920,26921,26922,26923,26924,26925,26926,26927,26928,26929,26930,26931,26932,26933,26934,26935,26936,26937,26938,26939,26940,26941,26942,26943,26944,26945,26946,26947,26948,26949,26950,26951,26952,26953,26954,26955,26956,26957,26958,26959,26960,26961,26962,26963,26964,26965,26966,26967,26968,26969,26970,26971,26972,26973,26974,26975,26976,26977,26978,26979,26980,26981,26982,26983,26984,26985,26986,26987,26988,26989,26990,26991,26992,26993,26994,26995,26996,26997,26998,26999,27000,27001,27002,27003,27004,27005,27006,27007,27008,27009,27010,27011,27012,27013,27014,27015,27016,27017,27018,27019,27020,27021,27022,27023,27024,27025,27026,27027,27028,27029,27030,27031,27032,27033,27034,27035,27036,27037,27038,27039,27040,27041,27042,27043,27044,27045,27046,27047,27048,27049,27050,27051,27052,27053,27054,27055,27056,27057,27058,27059,27060,27061,27062,27063,27064,27065,27066,27067,27068,27069,27070,27071,27072,27073,27074,27075,27076,27077,27078,27079,27080,27081,27082,27083,27084,27085,27086,27087,27088,27089,27090,27091,27092,27093,27094,27095,27096,27097,27098,27099,27100,27101,27102,27103,27104,27105,27106,27107,27108,27109,27110,27111,27112,27113,27114,27115,27116,27117,27118,27119,27120,27121,27122,27123,27124,27125,27126,27127,27128,27129,27130,27131,27132,27133,27134,27135,27136,27137,27138,27139,27140,27141,27142,27143,27144,27145,27146,27147,27148,27149,27150,27151,27152,27153,27154,27155,27156,27157,27158,27159,27160,27161,27162,27163,27164,27165,27166,27167,27168,27169,27170,27171,27172,27173,27174,27175,27176,27177,27178,27179,27180,27181,27182,27183,27184,27185,27186,27187,27188,27189,27190,27191,27192,27193,27194,27195,27196,27197,27198,27199,27200,27201,27202,27203,27204,27205,27206,27207,27208,27209,27210,27211,27212,27213,27214,27215,27216,27217,27218,27219,27220,27221,27222,27223,27224,27225,27226,27227,27228,27229,27230,27231,27232,27233,27234,27235,27236,27237,27238,27239,27240,27241,27242,27243,27244,27245,27246,27247,27248,27249,27250,27251,27252,27253,27254,27255,27256,27257,27258,27259,27260,27261,27262,27263,27264,27265,27266,27267,27268,27269,27270,27271,27272,27273,27274,27275,27276,27277,27278,27279,27280,27281,27282,27283,27284,27285,27286,27287,27288,27289,27290,27291,27292,27293,27294,27295,27296,27297,27298,27299,27300,27301,27302,27303,27304,27305,27306,27307,27308,27309,27310,27311,27312,27313,27314,27315,27316,27317,27318,27319,27320,27321,27322,27323,27324,27325,27326,27327,27328,27329,27330,27331,27332,27333,27334,27335,27336,27337,27338,27339,27340,27341,27342,27343,27344,27345,27346,27347,27348,27349,27350,27351,27352,27353,27354,27355,27356,27357,27358,27359,27360,27361,27362,27363,27364,27365,27366,27367,27368,27369,27370,27371,27372,27373,27374,27375,27376,27377,27378,27379,27380,27381,27382,27383,27384,27385,27386,27387,27388,27389,27390,27391,27392,27393,27394,27395,27396,27397,27398,27399,27400,27401,27402,27403,27404,27405,27406,27407,27408,27409,27410,27411,27412,27413,27414,27415,27416,27417,27418,27419,27420,27421,27422,27423,27424,27425,27426,27427,27428,27429,27430,27431,27432,27433,27434,27435,27436,27437,27438,27439,27440,27441,27442,27443,27444,27445,27446,27447,27448,27449,27450,27451,27452,27453,27454,27455,27456,27457,27458,27459,27460,27461,27462,27463,27464,27465,27466,27467,27468,27469,27470,27471,27472,27473,27474,27475,27476,27477,27478,27479,27480,27481,27482,27483,27484,27485,27486,27487,27488,27489,27490,27491,27492,27493,27494,27495,27496,27497,27498,27499,27500,27501,27502,27503,27504,27505,27506,27507,27508,27509,27510,27511,27512,27513,27514,27515,27516,27517,27518,27519,27520,27521,27522,27523,27524,27525,27526,27527,27528,27529,27530,27531,27532,27533,27534,27535,27536,27537,27538,27539,27540,27541,27542,27543,27544,27545,27546,27547,27548,27549,27550,27551,27552,27553,27554,27555,27556,27557,27558,27559,27560,27561,27562,27563,27564,27565,27566,27567,27568,27569,27570,27571,27572,27573,27574,27575,27576,27577,27578,27579,27580,27581,27582,27583,27584,27585,27586,27587,27588,27589,27590,27591,27592,27593,27594,27595,27596,27597,27598,27599,27600,27601,27602,27603,27604,27605,27606,27607,27608,27609,27610,27611,27612,27613,27614,27615,27616,27617,27618,27619,27620,27621,27622,27623,27624,27625,27626,27627,27628,27629,27630,27631,27632,27633,27634,27635,27636,27637,27638,27639,27640,27641,27642,27643,27644,27645,27646,27647,27648,27649,27650,27651,27652,27653,27654,27655,27656,27657,27658,27659,27660,27661,27662,27663,27664,27665,27666,27667,27668,27669,27670,27671,27672,27673,27674,27675,27676,27677,27678,27679,27680,27681,27682,27683,27684,27685,27686,27687,27688,27689,27690,27691,27692,27693,27694,27695,27696,27697,27698,27699,27700,27701,27702,27703,27704,27705,27706,27707,27708,27709,27710,27711,27712,27713,27714,27715,27716,27717,27718,27719,27720,27721,27722,27723,27724,27725,27726,27727,27728,27729,27730,27731,27732,27733,27734,27735,27736,27737,27738,27739,27740,27741,27742,27743,27744,27745,27746,27747,27748,27749,27750,27751,27752,27753,27754,27755,27756,27757,27758,27759,27760,27761,27762,27763,27764,27765,27766,27767,27768,27769,27770,27771,27772,27773,27774,27775,27776,27777,27778,27779,27780,27781,27782,27783,27784,27785,27786,27787,27788,27789,27790,27791,27792,27793,27794,27795,27796,27797,27798,27799,27800,27801,27802,27803,27804,27805,27806,27807,27808,27809,27810,27811,27812,27813,27814,27815,27816,27817,27818,27819,27820,27821,27822,27823,27824,27825,27826,27827,27828,27829,27830,27831,27832,27833,27834,27835,27836,27837,27838,27839,27840,27841,27842,27843,27844,27845,27846,27847,27848,27849,27850,27851,27852,27853,27854,27855,27856,27857,27858,27859,27860,27861,27862,27863,27864,27865,27866,27867,27868,27869,27870,27871,27872,27873,27874,27875,27876,27877,27878,27879,27880,27881,27882,27883,27884,27885,27886,27887,27888,27889,27890,27891,27892,27893,27894,27895,27896,27897,27898,27899,27900,27901,27902,27903,27904,27905,27906,27907,27908,27909,27910,27911,27912,27913,27914,27915,27916,27917,27918,27919,27920,27921,27922,27923,27924,27925,27926,27927,27928,27929,27930,27931,27932,27933,27934,27935,27936,27937,27938,27939,27940,27941,27942,27943,27944,27945,27946,27947,27948,27949,27950,27951,27952,27953,27954,27955,27956,27957,27958,27959,27960,27961,27962,27963,27964,27965,27966,27967,27968,27969,27970,27971,27972,27973,27974,27975,27976,27977,27978,27979,27980,27981,27982,27983,27984,27985,27986,27987,27988,27989,27990,27991,27992,27993,27994,27995,27996,27997,27998,27999,28000,28001,28002,28003,28004,28005,28006,28007,28008,28009,28010,28011,28012,28013,28014,28015,28016,28017,28018,28019,28020,28021,28022,28023,28024,28025,28026,28027,28028,28029,28030,28031,28032,28033,28034,28035,28036,28037,28038,28039,28040,28041,28042,28043,28044,28045,28046,28047,28048,28049,28050,28051,28052,28053,28054,28055,28056,28057,28058,28059,28060,28061,28062,28063,28064,28065,28066,28067,28068,28069,28070,28071,28072,28073,28074,28075,28076,28077,28078,28079,28080,28081,28082,28083,28084,28085,28086,28087,28088,28089,28090,28091,28092,28093,28094,28095,28096,28097,28098,28099,28100,28101,28102,28103,28104,28105,28106,28107,28108,28109,28110,28111,28112,28113,28114,28115,28116,28117,28118,28119,28120,28121,28122,28123,28124,28125,28126,28127,28128,28129,28130,28131,28132,28133,28134,28135,28136,28137,28138,28139,28140,28141,28142,28143,28144,28145,28146,28147,28148,28149,28150,28151,28152,28153,28154,28155,28156,28157,28158,28159,28160,28161,28162,28163,28164,28165,28166,28167,28168,28169,28170,28171,28172,28173,28174,28175,28176,28177,28178,28179,28180,28181,28182,28183,28184,28185,28186,28187,28188,28189,28190,28191,28192,28193,28194,28195,28196,28197,28198,28199,28200,28201,28202,28203,28204,28205,28206,28207,28208,28209,28210,28211,28212,28213,28214,28215,28216,28217,28218,28219,28220,28221,28222,28223,28224,28225,28226,28227,28228,28229,28230,28231,28232,28233,28234,28235,28236,28237,28238,28239,28240,28241,28242,28243,28244,28245,28246,28247,28248,28249,28250,28251,28252,28253,28254,28255,28256,28257,28258,28259,28260,28261,28262,28263,28264,28265,28266,28267,28268,28269,28270,28271,28272,28273,28274,28275,28276,28277,28278,28279,28280,28281,28282,28283,28284,28285,28286,28287,28288,28289,28290,28291,28292,28293,28294,28295,28296,28297,28298,28299,28300,28301,28302,28303,28304,28305,28306,28307,28308,28309,28310,28311,28312,28313,28314,28315,28316,28317,28318,28319,28320,28321,28322,28323,28324,28325,28326,28327,28328,28329,28330,28331,28332,28333,28334,28335,28336,28337,28338,28339,28340,28341,28342,28343,28344,28345,28346,28347,28348,28349,28350,28351,28352,28353,28354,28355,28356,28357,28358,28359,28360,28361,28362,28363,28364,28365,28366,28367,28368,28369,28370,28371,28372,28373,28374,28375,28376,28377,28378,28379,28380,28381,28382,28383,28384,28385,28386,28387,28388,28389,28390,28391,28392,28393,28394,28395,28396,28397,28398,28399,28400,28401,28402,28403,28404,28405,28406,28407,28408,28409,28410,28411,28412,28413,28414,28415,28416,28417,28418,28419,28420,28421,28422,28423,28424,28425,28426,28427,28428,28429,28430,28431,28432,28433,28434,28435,28436,28437,28438,28439,28440,28441,28442,28443,28444,28445,28446,28447,28448,28449,28450,28451,28452,28453,28454,28455,28456,28457,28458,28459,28460,28461,28462,28463,28464,28465,28466,28467,28468,28469,28470,28471,28472,28473,28474,28475,28476,28477,28478,28479,28480,28481,28482,28483,28484,28485,28486,28487,28488,28489,28490,28491,28492,28493,28494,28495,28496,28497,28498,28499,28500,28501,28502,28503,28504,28505,28506,28507,28508,28509,28510,28511,28512,28513,28514,28515,28516,28517,28518,28519,28520,28521,28522,28523,28524,28525,28526,28527,28528,28529,28530,28531,28532,28533,28534,28535,28536,28537,28538,28539,28540,28541,28542,28543,28544,28545,28546,28547,28548,28549,28550,28551,28552,28553,28554,28555,28556,28557,28558,28559,28560,28561,28562,28563,28564,28565,28566,28567,28568,28569,28570,28571,28572,28573,28574,28575,28576,28577,28578,28579,28580,28581,28582,28583,28584,28585,28586,28587,28588,28589,28590,28591,28592,28593,28594,28595,28596,28597,28598,28599,28600,28601,28602,28603,28604,28605,28606,28607,28608,28609,28610,28611,28612,28613,28614,28615,28616,28617,28618,28619,28620,28621,28622,28623,28624,28625,28626,28627,28628,28629,28630,28631,28632,28633,28634,28635,28636,28637,28638,28639,28640,28641,28642,28643,28644,28645,28646,28647,28648,28649,28650,28651,28652,28653,28654,28655,28656,28657,28658,28659,28660,28661,28662,28663,28664,28665,28666,28667,28668,28669,28670,28671,28672,28673,28674,28675,28676,28677,28678,28679,28680,28681,28682,28683,28684,28685,28686,28687,28688,28689,28690,28691,28692,28693,28694,28695,28696,28697,28698,28699,28700,28701,28702,28703,28704,28705,28706,28707,28708,28709,28710,28711,28712,28713,28714,28715,28716,28717,28718,28719,28720,28721,28722,28723,28724,28725,28726,28727,28728,28729,28730,28731,28732,28733,28734,28735,28736,28737,28738,28739,28740,28741,28742,28743,28744,28745,28746,28747,28748,28749,28750,28751,28752,28753,28754,28755,28756,28757,28758,28759,28760,28761,28762,28763,28764,28765,28766,28767,28768,28769,28770,28771,28772,28773,28774,28775,28776,28777,28778,28779,28780,28781,28782,28783,28784,28785,28786,28787,28788,28789,28790,28791,28792,28793,28794,28795,28796,28797,28798,28799,28800,28801,28802,28803,28804,28805,28806,28807,28808,28809,28810,28811,28812,28813,28814,28815,28816,28817,28818,28819,28820,28821,28822,28823,28824,28825,28826,28827,28828,28829,28830,28831,28832,28833,28834,28835,28836,28837,28838,28839,28840,28841,28842,28843,28844,28845,28846,28847,28848,28849,28850,28851,28852,28853,28854,28855,28856,28857,28858,28859,28860,28861,28862,28863,28864,28865,28866,28867,28868,28869,28870,28871,28872,28873,28874,28875,28876,28877,28878,28879,28880,28881,28882,28883,28884,28885,28886,28887,28888,28889,28890,28891,28892,28893,28894,28895,28896,28897,28898,28899,28900,28901,28902,28903,28904,28905,28906,28907,28908,28909,28910,28911,28912,28913,28914,28915,28916,28917,28918,28919,28920,28921,28922,28923,28924,28925,28926,28927,28928,28929,28930,28931,28932,28933,28934,28935,28936,28937,28938,28939,28940,28941,28942,28943,28944,28945,28946,28947,28948,28949,28950,28951,28952,28953,28954,28955,28956,28957,28958,28959,28960,28961,28962,28963,28964,28965,28966,28967,28968,28969,28970,28971,28972,28973,28974,28975,28976,28977,28978,28979,28980,28981,28982,28983,28984,28985,28986,28987,28988,28989,28990,28991,28992,28993,28994,28995,28996,28997,28998,28999,29000,29001,29002,29003,29004,29005,29006,29007,29008,29009,29010,29011,29012,29013,29014,29015,29016,29017,29018,29019,29020,29021,29022,29023,29024,29025,29026,29027,29028,29029,29030,29031,29032,29033,29034,29035,29036,29037,29038,29039,29040,29041,29042,29043,29044,29045,29046,29047,29048,29049,29050,29051,29052,29053,29054,29055,29056,29057,29058,29059,29060,29061,29062,29063,29064,29065,29066,29067,29068,29069,29070,29071,29072,29073,29074,29075,29076,29077,29078,29079,29080,29081,29082,29083,29084,29085,29086,29087,29088,29089,29090,29091,29092,29093,29094,29095,29096,29097,29098,29099,29100,29101,29102,29103,29104,29105,29106,29107,29108,29109,29110,29111,29112,29113,29114,29115,29116,29117,29118,29119,29120,29121,29122,29123,29124,29125,29126,29127,29128,29129,29130,29131,29132,29133,29134,29135,29136,29137,29138,29139,29140,29141,29142,29143,29144,29145,29146,29147,29148,29149,29150,29151,29152,29153,29154,29155,29156,29157,29158,29159,29160,29161,29162,29163,29164,29165,29166,29167,29168,29169,29170,29171,29172,29173,29174,29175,29176,29177,29178,29179,29180,29181,29182,29183,29184,29185,29186,29187,29188,29189,29190,29191,29192,29193,29194,29195,29196,29197,29198,29199,29200,29201,29202,29203,29204,29205,29206,29207,29208,29209,29210,29211,29212,29213,29214,29215,29216,29217,29218,29219,29220,29221,29222,29223,29224,29225,29226,29227,29228,29229,29230,29231,29232,29233,29234,29235,29236,29237,29238,29239,29240,29241,29242,29243,29244,29245,29246,29247,29248,29249,29250,29251,29252,29253,29254,29255,29256,29257,29258,29259,29260,29261,29262,29263,29264,29265,29266,29267,29268,29269,29270,29271,29272,29273,29274,29275,29276,29277,29278,29279,29280,29281,29282,29283,29284,29285,29286,29287,29288,29289,29290,29291,29292,29293,29294,29295,29296,29297,29298,29299,29300,29301,29302,29303,29304,29305,29306,29307,29308,29309,29310,29311,29312,29313,29314,29315,29316,29317,29318,29319,29320,29321,29322,29323,29324,29325,29326,29327,29328,29329,29330,29331,29332,29333,29334,29335,29336,29337,29338,29339,29340,29341,29342,29343,29344,29345,29346,29347,29348,29349,29350,29351,29352,29353,29354,29355,29356,29357,29358,29359,29360,29361,29362,29363,29364,29365,29366,29367,29368,29369,29370,29371,29372,29373,29374,29375,29376,29377,29378,29379,29380,29381,29382,29383,29384,29385,29386,29387,29388,29389,29390,29391,29392,29393,29394,29395,29396,29397,29398,29399,29400,29401,29402,29403,29404,29405,29406,29407,29408,29409,29410,29411,29412,29413,29414,29415,29416,29417,29418,29419,29420,29421,29422,29423,29424,29425,29426,29427,29428,29429,29430,29431,29432,29433,29434,29435,29436,29437,29438,29439,29440,29441,29442,29443,29444,29445,29446,29447,29448,29449,29450,29451,29452,29453,29454,29455,29456,29457,29458,29459,29460,29461,29462,29463,29464,29465,29466,29467,29468,29469,29470,29471,29472,29473,29474,29475,29476,29477,29478,29479,29480,29481,29482,29483,29484,29485,29486,29487,29488,29489,29490,29491,29492,29493,29494,29495,29496,29497,29498,29499,29500,29501,29502,29503,29504,29505,29506,29507,29508,29509,29510,29511,29512,29513,29514,29515,29516,29517,29518,29519,29520,29521,29522,29523,29524,29525,29526,29527,29528,29529,29530,29531,29532,29533,29534,29535,29536,29537,29538,29539,29540,29541,29542,29543,29544,29545,29546,29547,29548,29549,29550,29551,29552,29553,29554,29555,29556,29557,29558,29559,29560,29561,29562,29563,29564,29565,29566,29567,29568,29569,29570,29571,29572,29573,29574,29575,29576,29577,29578,29579,29580,29581,29582,29583,29584,29585,29586,29587,29588,29589,29590,29591,29592,29593,29594,29595,29596,29597,29598,29599,29600,29601,29602,29603,29604,29605,29606,29607,29608,29609,29610,29611,29612,29613,29614,29615,29616,29617,29618,29619,29620,29621,29622,29623,29624,29625,29626,29627,29628,29629,29630,29631,29632,29633,29634,29635,29636,29637,29638,29639,29640,29641,29642,29643,29644,29645,29646,29647,29648,29649,29650,29651,29652,29653,29654,29655,29656,29657,29658,29659,29660,29661,29662,29663,29664,29665,29666,29667,29668,29669,29670,29671,29672,29673,29674,29675,29676,29677,29678,29679,29680,29681,29682,29683,29684,29685,29686,29687,29688,29689,29690,29691,29692,29693,29694,29695,29696,29697,29698,29699,29700,29701,29702,29703,29704,29705,29706,29707,29708,29709,29710,29711,29712,29713,29714,29715,29716,29717,29718,29719,29720,29721,29722,29723,29724,29725,29726,29727,29728,29729,29730,29731,29732,29733,29734,29735,29736,29737,29738,29739,29740,29741,29742,29743,29744,29745,29746,29747,29748,29749,29750,29751,29752,29753,29754,29755,29756,29757,29758,29759,29760,29761,29762,29763,29764,29765,29766,29767,29768,29769,29770,29771,29772,29773,29774,29775,29776,29777,29778,29779,29780,29781,29782,29783,29784,29785,29786,29787,29788,29789,29790,29791,29792,29793,29794,29795,29796,29797,29798,29799,29800,29801,29802,29803,29804,29805,29806,29807,29808,29809,29810,29811,29812,29813,29814,29815,29816,29817,29818,29819,29820,29821,29822,29823,29824,29825,29826,29827,29828,29829,29830,29831,29832,29833,29834,29835,29836,29837,29838,29839,29840,29841,29842,29843,29844,29845,29846,29847,29848,29849,29850,29851,29852,29853,29854,29855,29856,29857,29858,29859,29860,29861,29862,29863,29864,29865,29866,29867,29868,29869,29870,29871,29872,29873,29874,29875,29876,29877,29878,29879,29880,29881,29882,29883,29884,29885,29886,29887,29888,29889,29890,29891,29892,29893,29894,29895,29896,29897,29898,29899,29900,29901,29902,29903,29904,29905,29906,29907,29908,29909,29910,29911,29912,29913,29914,29915,29916,29917,29918,29919,29920,29921,29922,29923,29924,29925,29926,29927,29928,29929,29930,29931,29932,29933,29934,29935,29936,29937,29938,29939,29940,29941,29942,29943,29944,29945,29946,29947,29948,29949,29950,29951,29952,29953,29954,29955,29956,29957,29958,29959,29960,29961,29962,29963,29964,29965,29966,29967,29968,29969,29970,29971,29972,29973,29974,29975,29976,29977,29978,29979,29980,29981,29982,29983,29984,29985,29986,29987,29988,29989,29990,29991,29992,29993,29994,29995,29996,29997,29998,29999,30000,30001,30002,30003,30004,30005,30006,30007,30008,30009,30010,30011,30012,30013,30014,30015,30016,30017,30018,30019,30020,30021,30022,30023,30024,30025,30026,30027,30028,30029,30030,30031,30032,30033,30034,30035,30036,30037,30038,30039,30040,30041,30042,30043,30044,30045,30046,30047,30048,30049,30050,30051,30052,30053,30054,30055,30056,30057,30058,30059,30060,30061,30062,30063,30064,30065,30066,30067,30068,30069,30070,30071,30072,30073,30074,30075,30076,30077,30078,30079,30080,30081,30082,30083,30084,30085,30086,30087,30088,30089,30090,30091,30092,30093,30094,30095,30096,30097,30098,30099,30100,30101,30102,30103,30104,30105,30106,30107,30108,30109,30110,30111,30112,30113,30114,30115,30116,30117,30118,30119,30120,30121,30122,30123,30124,30125,30126,30127,30128,30129,30130,30131,30132,30133,30134,30135,30136,30137,30138,30139,30140,30141,30142,30143,30144,30145,30146,30147,30148,30149,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30168,30169,30170,30171,30172,30173,30174,30175,30176,30177,30178,30179,30180,30181,30182,30183,30184,30185,30186,30187,30188,30189,30190,30191,30192,30193,30194,30195,30196,30197,30198,30199,30200,30201,30202,30203,30204,30205,30206,30207,30208,30209,30210,30211,30212,30213,30214,30215,30216,30217,30218,30219,30220,30221,30222,30223,30224,30225,30226,30227,30228,30229,30230,30231,30232,30233,30234,30235,30236,30237,30238,30239,30240,30241,30242,30243,30244,30245,30246,30247,30248,30249,30250,30251,30252,30253,30254,30255,30256,30257,30258,30259,30260,30261,30262,30263,30264,30265,30266,30267,30268,30269,30270,30271,30272,30273,30274,30275,30276,30277,30278,30279,30280,30281,30282,30283,30284,30285,30286,30287,30288,30289,30290,30291,30292,30293,30294,30295,30296,30297,30298,30299,30300,30301,30302,30303,30304,30305,30306,30307,30308,30309,30310,30311,30312,30313,30314,30315,30316,30317,30318,30319,30320,30321,30322,30323,30324,30325,30326,30327,30328,30329,30330,30331,30332,30333,30334,30335,30336,30337,30338,30339,30340,30341,30342,30343,30344,30345,30346,30347,30348,30349,30350,30351,30352,30353,30354,30355,30356,30357,30358,30359,30360,30361,30362,30363,30364,30365,30366,30367,30368,30369,30370,30371,30372,30373,30374,30375,30376,30377,30378,30379,30380,30381,30382,30383,30384,30385,30386,30387,30388,30389,30390,30391,30392,30393,30394,30395,30396,30397,30398,30399,30400,30401,30402,30403,30404,30405,30406,30407,30408,30409,30410,30411,30412,30413,30414,30415,30416,30417,30418,30419,30420,30421,30422,30423,30424,30425,30426,30427,30428,30429,30430,30431,30432,30433,30434,30435,30436,30437,30438,30439,30440,30441,30442,30443,30444,30445,30446,30447,30448,30449,30450,30451,30452,30453,30454,30455,30456,30457,30458,30459,30460,30461,30462,30463,30464,30465,30466,30467,30468,30469,30470,30471,30472,30473,30474,30475,30476,30477,30478,30479,30480,30481,30482,30483,30484,30485,30486,30487,30488,30489,30490,30491,30492,30493,30494,30495,30496,30497,30498,30499,30500,30501,30502,30503,30504,30505,30506,30507,30508,30509,30510,30511,30512,30513,30514,30515,30516,30517,30518,30519,30520,30521,30522,30523,30524,30525,30526,30527,30528,30529,30530,30531,30532,30533,30534,30535,30536,30537,30538,30539,30540,30541,30542,30543,30544,30545,30546,30547,30548,30549,30550,30551,30552,30553,30554,30555,30556,30557,30558,30559,30560,30561,30562,30563,30564,30565,30566,30567,30568,30569,30570,30571,30572,30573,30574,30575,30576,30577,30578,30579,30580,30581,30582,30583,30584,30585,30586,30587,30588,30589,30590,30591,30592,30593,30594,30595,30596,30597,30598,30599,30600,30601,30602,30603,30604,30605,30606,30607,30608,30609,30610,30611,30612,30613,30614,30615,30616,30617,30618,30619,30620,30621,30622,30623,30624,30625,30626,30627,30628,30629,30630,30631,30632,30633,30634,30635,30636,30637,30638,30639,30640,30641,30642,30643,30644,30645,30646,30647,30648,30649,30650,30651,30652,30653,30654,30655,30656,30657,30658,30659,30660,30661,30662,30663,30664,30665,30666,30667,30668,30669,30670,30671,30672,30673,30674,30675,30676,30677,30678,30679,30680,30681,30682,30683,30684,30685,30686,30687,30688,30689,30690,30691,30692,30693,30694,30695,30696,30697,30698,30699,30700,30701,30702,30703,30704,30705,30706,30707,30708,30709,30710,30711,30712,30713,30714,30715,30716,30717,30718,30719,30720,30721,30722,30723,30724,30725,30726,30727,30728,30729,30730,30731,30732,30733,30734,30735,30736,30737,30738,30739,30740,30741,30742,30743,30744,30745,30746,30747,30748,30749,30750,30751,30752,30753,30754,30755,30756,30757,30758,30759,30760,30761,30762,30763,30764,30765,30766,30767,30768,30769,30770,30771,30772,30773,30774,30775,30776,30777,30778,30779,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30795,30796,30797,30798,30799,30800,30801,30802,30803,30804,30805,30806,30807,30808,30809,30810,30811,30812,30813,30814,30815,30816,30817,30818,30819,30820,30821,30822,30823,30824,30825,30826,30827,30828,30829,30830,30831,30832,30833,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30845,30846,30847,30848,30849,30850,30851,30852,30853,30854,30855,30856,30857,30858,30859,30860,30861,30862,30863,30864,30865,30866,30867,30868,30869,30870,30871,30872,30873,30874,30875,30876,30877,30878,30879,30880,30881,30882,30883,30884,30885,30886,30887,30888,30889,30890,30891,30892,30893,30894,30895,30896,30897,30898,30899,30900,30901,30902,30903,30904,30905,30906,30907,30908,30909,30910,30911,30912,30913,30914,30915,30916,30917,30918,30919,30920,30921,30922,30923,30924,30925,30926,30927,30928,30929,30930,30931,30932,30933,30934,30935,30936,30937,30938,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30950,30951,30952,30953,30954,30955,30956,30957,30958,30959,30960,30961,30962,30963,30964,30965,30966,30967,30968,30969,30970,30971,30972,30973,30974,30975,30976,30977,30978,30979,30980,30981,30982,30983,30984,30985,30986,30987,30988,30989,30990,30991,30992,30993,30994,30995,30996,30997,30998,30999,31000,31001,31002,31003,31004,31005,31006,31007,31008,31009,31010,31011,31012,31013,31014,31015,31016,31017,31018,31019,31020,31021,31022,31023,31024,31025,31026,31027,31028,31029,31030,31031,31032,31033,31034,31035,31036,31037,31038,31039,31040,31041,31042,31043,31044,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31060,31061,31062,31063,31064,31065,31066,31067,31068,31069,31070,31071,31072,31073,31074,31075,31076,31077,31078,31079,31080,31081,31082,31083,31084,31085,31086,31087,31088,31089,31090,31091,31092,31093,31094,31095,31096,31097,31098,31099,31100,31101,31102,31103,31104,31105,31106,31107,31108,31109,31110,31111,31112,31113,31114,31115,31116,31117,31118,31119,31120,31121,31122,31123,31124,31125,31126,31127,31128,31129,31130,31131,31132,31133,31134,31135,31136,31137,31138,31139,31140,31141,31142,31143,31144,31145,31146,31147,31148,31149,31150,31151,31152,31153,31154,31155,31156,31157,31158,31159,31160,31161,31162,31163,31164,31165,31166,31167,31168,31169,31170,31171,31172,31173,31174,31175,31176,31177,31178,31179,31180,31181,31182,31183,31184,31185,31186,31187,31188,31189,31190,31191,31192,31193,31194,31195,31196,31197,31198,31199,31200,31201,31202,31203,31204,31205,31206,31207,31208,31209,31210,31211,31212,31213,31214,31215,31216,31217,31218,31219,31220,31221,31222,31223,31224,31225,31226,31227,31228,31229,31230,31231,31232,31233,31234,31235,31236,31237,31238,31239,31240,31241,31242,31243,31244,31245,31246,31247,31248,31249,31250,31251,31252,31253,31254,31255,31256,31257,31258,31259,31260,31261,31262,31263,31264,31265,31266,31267,31268,31269,31270,31271,31272,31273,31274,31275,31276,31277,31278,31279,31280,31281,31282,31283,31284,31285,31286,31287,31288,31289,31290,31291,31292,31293,31294,31295,31296,31297,31298,31299,31300,31301,31302,31303,31304,31305,31306,31307,31308,31309,31310,31311,31312,31313,31314,31315,31316,31317,31318,31319,31320,31321,31322,31323,31324,31325,31326,31327,31328,31329,31330,31331,31332,31333,31334,31335,31336,31337,31338,31339,31340,31341,31342,31343,31344,31345,31346,31347,31348,31349,31350,31351,31352,31353,31354,31355,31356,31357,31358,31359,31360,31361,31362,31363,31364,31365,31366,31367,31368,31369,31370,31371,31372,31373,31374,31375,31376,31377,31378,31379,31380,31381,31382,31383,31384,31385,31386,31387,31388,31389,31390,31391,31392,31393,31394,31395,31396,31397,31398,31399,31400,31401,31402,31403,31404,31405,31406,31407,31408,31409,31410,31411,31412,31413,31414,31415,31416,31417,31418,31419,31420,31421,31422,31423,31424,31425,31426,31427,31428,31429,31430,31431,31432,31433,31434,31435,31436,31437,31438,31439,31440,31441,31442,31443,31444,31445,31446,31447,31448,31449,31450,31451,31452,31453,31454,31455,31456,31457,31458,31459,31460,31461,31462,31463,31464,31465,31466,31467,31468,31469,31470,31471,31472,31473,31474,31475,31476,31477,31478,31479,31480,31481,31482,31483,31484,31485,31486,31487,31488,31489,31490,31491,31492,31493,31494,31495,31496,31497,31498,31499,31500,31501,31502,31503,31504,31505,31506,31507,31508,31509,31510,31511,31512,31513,31514,31515,31516,31517,31518,31519,31520,31521,31522,31523,31524,31525,31526,31527,31528,31529,31530,31531,31532,31533,31534,31535,31536,31537,31538,31539,31540,31541,31542,31543,31544,31545,31546,31547,31548,31549,31550,31551,31552,31553,31554,31555,31556,31557,31558,31559,31560,31561,31562,31563,31564,31565,31566,31567,31568,31569,31570,31571,31572,31573,31574,31575,31576,31577,31578,31579,31580,31581,31582,31583,31584,31585,31586,31587,31588,31589,31590,31591,31592,31593,31594,31595,31596,31597,31598,31599,31600,31601,31602,31603,31604,31605,31606,31607,31608,31609,31610,31611,31612,31613,31614,31615,31616,31617,31618,31619,31620,31621,31622,31623,31624,31625,31626,31627,31628,31629,31630,31631,31632,31633,31634,31635,31636,31637,31638,31639,31640,31641,31642,31643,31644,31645,31646,31647,31648,31649,31650,31651,31652,31653,31654,31655,31656,31657,31658,31659,31660,31661,31662,31663,31664,31665,31666,31667,31668,31669,31670,31671,31672,31673,31674,31675,31676,31677,31678,31679,31680,31681,31682,31683,31684,31685,31686,31687,31688,31689,31690,31691,31692,31693,31694,31695,31696,31697,31698,31699,31700,31701,31702,31703,31704,31705,31706,31707,31708,31709,31710,31711,31712,31713,31714,31715,31716,31717,31718,31719,31720,31721,31722,31723,31724,31725,31726,31727,31728,31729,31730,31731,31732,31733,31734,31735,31736,31737,31738,31739,31740,31741,31742,31743,31744,31745,31746,31747,31748,31749,31750,31751,31752,31753,31754,31755,31756,31757,31758,31759,31760,31761,31762,31763,31764,31765,31766,31767,31768,31769,31770,31771,31772,31773,31774,31775,31776,31777,31778,31779,31780,31781,31782,31783,31784,31785,31786,31787,31788,31789,31790,31791,31792,31793,31794,31795,31796,31797,31798,31799,31800,31801,31802,31803,31804,31805,31806,31807,31808,31809,31810,31811,31812,31813,31814,31815,31816,31817,31818,31819,31820,31821,31822,31823,31824,31825,31826,31827,31828,31829,31830,31831,31832,31833,31834,31835,31836,31837,31838,31839,31840,31841,31842,31843,31844,31845,31846,31847,31848,31849,31850,31851,31852,31853,31854,31855,31856,31857,31858,31859,31860,31861,31862,31863,31864,31865,31866,31867,31868,31869,31870,31871,31872,31873,31874,31875,31876,31877,31878,31879,31880,31881,31882,31883,31884,31885,31886,31887,31888,31889,31890,31891,31892,31893,31894,31895,31896,31897,31898,31899,31900,31901,31902,31903,31904,31905,31906,31907,31908,31909,31910,31911,31912,31913,31914,31915,31916,31917,31918,31919,31920,31921,31922,31923,31924,31925,31926,31927,31928,31929,31930,31931,31932,31933,31934,31935,31936,31937,31938,31939,31940,31941,31942,31943,31944,31945,31946,31947,31948,31949,31950,31951,31952,31953,31954,31955,31956,31957,31958,31959,31960,31961,31962,31963,31964,31965,31966,31967,31968,31969,31970,31971,31972,31973,31974,31975,31976,31977,31978,31979,31980,31981,31982,31983,31984,31985,31986,31987,31988,31989,31990,31991,31992,31993,31994,31995,31996,31997,31998,31999,32000,32001,32002,32003,32004,32005,32006,32007,32008,32009,32010,32011,32012,32013,32014,32015,32016,32017,32018,32019,32020,32021,32022,32023,32024,32025,32026,32027,32028,32029,32030,32031,32032,32033,32034,32035,32036,32037,32038,32039,32040,32041,32042,32043,32044,32045,32046,32047,32048,32049,32050,32051,32052,32053,32054,32055,32056,32057,32058,32059,32060,32061,32062,32063,32064,32065,32066,32067,32068,32069,32070,32071,32072,32073,32074,32075,32076,32077,32078,32079,32080,32081,32082,32083,32084,32085,32086,32087,32088,32089,32090,32091,32092,32093,32094,32095,32096,32097,32098,32099,32100,32101,32102,32103,32104,32105,32106,32107,32108,32109,32110,32111,32112,32113,32114,32115,32116,32117,32118,32119,32120,32121,32122,32123,32124,32125,32126,32127,32128,32129,32130,32131,32132,32133,32134,32135,32136,32137,32138,32139,32140,32141,32142,32143,32144,32145,32146,32147,32148,32149,32150,32151,32152,32153,32154,32155,32156,32157,32158,32159,32160,32161,32162,32163,32164,32165,32166,32167,32168,32169,32170,32171,32172,32173,32174,32175,32176,32177,32178,32179,32180,32181,32182,32183,32184,32185,32186,32187,32188,32189,32190,32191,32192,32193,32194,32195,32196,32197,32198,32199,32200,32201,32202,32203,32204,32205,32206,32207,32208,32209,32210,32211,32212,32213,32214,32215,32216,32217,32218,32219,32220,32221,32222,32223,32224,32225,32226,32227,32228,32229,32230,32231,32232,32233,32234,32235,32236,32237,32238,32239,32240,32241,32242,32243,32244,32245,32246,32247,32248,32249,32250,32251,32252,32253,32254,32255,32256,32257,32258,32259,32260,32261,32262,32263,32264,32265,32266,32267,32268,32269,32270,32271,32272,32273,32274,32275,32276,32277,32278,32279,32280,32281,32282,32283,32284,32285,32286,32287,32288,32289,32290,32291,32292,32293,32294,32295,32296,32297,32298,32299,32300,32301,32302,32303,32304,32305,32306,32307,32308,32309,32310,32311,32312,32313,32314,32315,32316,32317,32318,32319,32320,32321,32322,32323,32324,32325,32326,32327,32328,32329,32330,32331,32332,32333,32334,32335,32336,32337,32338,32339,32340,32341,32342,32343,32344,32345,32346,32347,32348,32349,32350,32351,32352,32353,32354,32355,32356,32357,32358,32359,32360,32361,32362,32363,32364,32365,32366,32367,32368,32369,32370,32371,32372,32373,32374,32375,32376,32377,32378,32379,32380,32381,32382,32383,32384,32385,32386,32387,32388,32389,32390,32391,32392,32393,32394,32395,32396,32397,32398,32399,32400,32401,32402,32403,32404,32405,32406,32407,32408,32409,32410,32411,32412,32413,32414,32415,32416,32417,32418,32419,32420,32421,32422,32423,32424,32425,32426,32427,32428,32429,32430,32431,32432,32433,32434,32435,32436,32437,32438,32439,32440,32441,32442,32443,32444,32445,32446,32447,32448,32449,32450,32451,32452,32453,32454,32455,32456,32457,32458,32459,32460,32461,32462,32463,32464,32465,32466,32467,32468,32469,32470,32471,32472,32473,32474,32475,32476,32477,32478,32479,32480,32481,32482,32483,32484,32485,32486,32487,32488,32489,32490,32491,32492,32493,32494,32495,32496,32497,32498,32499,32500,32501,32502,32503,32504,32505,32506,32507,32508,32509,32510,32511,32512,32513,32514,32515,32516,32517,32518,32519,32520,32521,32522,32523,32524,32525,32526,32527,32528,32529,32530,32531,32532,32533,32534,32535,32536,32537,32538,32539,32540,32541,32542,32543,32544,32545,32546,32547,32548,32549,32550,32551,32552,32553,32554,32555,32556,32557,32558,32559,32560,32561,32562,32563,32564,32565,32566,32567,32568,32569,32570,32571,32572,32573,32574,32575,32576,32577,32578,32579,32580,32581,32582,32583,32584,32585,32586,32587,32588,32589,32590,32591,32592,32593,32594,32595,32596,32597,32598,32599,32600,32601,32602,32603,32604,32605,32606,32607,32608,32609,32610,32611,32612,32613,32614,32615,32616,32617,32618,32619,32620,32621,32622,32623,32624,32625,32626,32627,32628,32629,32630,32631,32632,32633,32634,32635,32636,32637,32638,32639,32640,32641,32642,32643,32644,32645,32646,32647,32648,32649,32650,32651,32652,32653,32654,32655,32656,32657,32658,32659,32660,32661,32662,32663,32664,32665,32666,32667,32668,32669,32670,32671,32672,32673,32674,32675,32676,32677,32678,32679,32680,32681,32682,32683,32684,32685,32686,32687,32688,32689,32690,32691,32692,32693,32694,32695,32696,32697,32698,32699,32700,32701,32702,32703,32704,32705,32706,32707,32708,32709,32710,32711,32712,32713,32714,32715,32716,32717,32718,32719,32720,32721,32722,32723,32724,32725,32726,32727,32728,32729,32730,32731,32732,32733,32734,32735,32736,32737,32738,32739,32740,32741,32742,32743,32744,32745,32746,32747,32748,32749,32750,32751,32752,32753,32754,32755,32756,32757,32758,32759,32760,32761,32762,32763,32764,32765,32766,32767,32768,32769,32770,32771,32772,32773,32774,32775,32776,32777,32778,32779,32780,32781,32782,32783,32784,32785,32786,32787,32788,32789,32790,32791,32792,32793,32794,32795,32796,32797,32798,32799,32800,32801,32802,32803,32804,32805,32806,32807,32808,32809,32810,32811,32812,32813,32814,32815,32816,32817,32818,32819,32820,32821,32822,32823,32824,32825,32826,32827,32828,32829,32830,32831,32832,32833,32834,32835,32836,32837,32838,32839,32840,32841,32842,32843,32844,32845,32846,32847,32848,32849,32850,32851,32852,32853,32854,32855,32856,32857,32858,32859,32860,32861,32862,32863,32864,32865,32866,32867,32868,32869,32870,32871,32872,32873,32874,32875,32876,32877,32878,32879,32880,32881,32882,32883,32884,32885,32886,32887,32888,32889,32890,32891,32892,32893,32894,32895,32896,32897,32898,32899,32900,32901,32902,32903,32904,32905,32906,32907,32908,32909,32910,32911,32912,32913,32914,32915,32916,32917,32918,32919,32920,32921,32922,32923,32924,32925,32926,32927,32928,32929,32930,32931,32932,32933,32934,32935,32936,32937,32938,32939,32940,32941,32942,32943,32944,32945,32946,32947,32948,32949,32950,32951,32952,32953,32954,32955,32956,32957,32958,32959,32960,32961,32962,32963,32964,32965,32966,32967,32968,32969,32970,32971,32972,32973,32974,32975,32976,32977,32978,32979,32980,32981,32982,32983,32984,32985,32986,32987,32988,32989,32990,32991,32992,32993,32994,32995,32996,32997,32998,32999,33000,33001,33002,33003,33004,33005,33006,33007,33008,33009,33010,33011,33012,33013,33014,33015,33016,33017,33018,33019,33020,33021,33022,33023,33024,33025,33026,33027,33028,33029,33030,33031,33032,33033,33034,33035,33036,33037,33038,33039,33040,33041,33042,33043,33044,33045,33046,33047,33048,33049,33050,33051,33052,33053,33054,33055,33056,33057,33058,33059,33060,33061,33062,33063,33064,33065,33066,33067,33068,33069,33070,33071,33072,33073,33074,33075,33076,33077,33078,33079,33080,33081,33082,33083,33084,33085,33086,33087,33088,33089,33090,33091,33092,33093,33094,33095,33096,33097,33098,33099,33100,33101,33102,33103,33104,33105,33106,33107,33108,33109,33110,33111,33112,33113,33114,33115,33116,33117,33118,33119,33120,33121,33122,33123,33124,33125,33126,33127,33128,33129,33130,33131,33132,33133,33134,33135,33136,33137,33138,33139,33140,33141,33142,33143,33144,33145,33146,33147,33148,33149,33150,33151,33152,33153,33154,33155,33156,33157,33158,33159,33160,33161,33162,33163,33164,33165,33166,33167,33168,33169,33170,33171,33172,33173,33174,33175,33176,33177,33178,33179,33180,33181,33182,33183,33184,33185,33186,33187,33188,33189,33190,33191,33192,33193,33194,33195,33196,33197,33198,33199,33200,33201,33202,33203,33204,33205,33206,33207,33208,33209,33210,33211,33212,33213,33214,33215,33216,33217,33218,33219,33220,33221,33222,33223,33224,33225,33226,33227,33228,33229,33230,33231,33232,33233,33234,33235,33236,33237,33238,33239,33240,33241,33242,33243,33244,33245,33246,33247,33248,33249,33250,33251,33252,33253,33254,33255,33256,33257,33258,33259,33260,33261,33262,33263,33264,33265,33266,33267,33268,33269,33270,33271,33272,33273,33274,33275,33276,33277,33278,33279,33280,33281,33282,33283,33284,33285,33286,33287,33288,33289,33290,33291,33292,33293,33294,33295,33296,33297,33298,33299,33300,33301,33302,33303,33304,33305,33306,33307,33308,33309,33310,33311,33312,33313,33314,33315,33316,33317,33318,33319,33320,33321,33322,33323,33324,33325,33326,33327,33328,33329,33330,33331,33332,33333,33334,33335,33336,33337,33338,33339,33340,33341,33342,33343,33344,33345,33346,33347,33348,33349,33350,33351,33352,33353,33354,33355,33356,33357,33358,33359,33360,33361,33362,33363,33364,33365,33366,33367,33368,33369,33370,33371,33372,33373,33374,33375,33376,33377,33378,33379,33380,33381,33382,33383,33384,33385,33386,33387,33388,33389,33390,33391,33392,33393,33394,33395,33396,33397,33398,33399,33400,33401,33402,33403,33404,33405,33406,33407,33408,33409,33410,33411,33412,33413,33414,33415,33416,33417,33418,33419,33420,33421,33422,33423,33424,33425,33426,33427,33428,33429,33430,33431,33432,33433,33434,33435,33436,33437,33438,33439,33440,33441,33442,33443,33444,33445,33446,33447,33448,33449,33450,33451,33452,33453,33454,33455,33456,33457,33458,33459,33460,33461,33462,33463,33464,33465,33466,33467,33468,33469,33470,33471,33472,33473,33474,33475,33476,33477,33478,33479,33480,33481,33482,33483,33484,33485,33486,33487,33488,33489,33490,33491,33492,33493,33494,33495,33496,33497,33498,33499,33500,33501,33502,33503,33504,33505,33506,33507,33508,33509,33510,33511,33512,33513,33514,33515,33516,33517,33518,33519,33520,33521,33522,33523,33524,33525,33526,33527,33528,33529,33530,33531,33532,33533,33534,33535,33536,33537,33538,33539,33540,33541,33542,33543,33544,33545,33546,33547,33548,33549,33550,33551,33552,33553,33554,33555,33556,33557,33558,33559,33560,33561,33562,33563,33564,33565,33566,33567,33568,33569,33570,33571,33572,33573,33574,33575,33576,33577,33578,33579,33580,33581,33582,33583,33584,33585,33586,33587,33588,33589,33590,33591,33592,33593,33594,33595,33596,33597,33598,33599,33600,33601,33602,33603,33604,33605,33606,33607,33608,33609,33610,33611,33612,33613,33614,33615,33616,33617,33618,33619,33620,33621,33622,33623,33624,33625,33626,33627,33628,33629,33630,33631,33632,33633,33634,33635,33636,33637,33638,33639,33640,33641,33642,33643,33644,33645,33646,33647,33648,33649,33650,33651,33652,33653,33654,33655,33656,33657,33658,33659,33660,33661,33662,33663,33664,33665,33666,33667,33668,33669,33670,33671,33672,33673,33674,33675,33676,33677,33678,33679,33680,33681,33682,33683,33684,33685,33686,33687,33688,33689,33690,33691,33692,33693,33694,33695,33696,33697,33698,33699,33700,33701,33702,33703,33704,33705,33706,33707,33708,33709,33710,33711,33712,33713,33714,33715,33716,33717,33718,33719,33720,33721,33722,33723,33724,33725,33726,33727,33728,33729,33730,33731,33732,33733,33734,33735,33736,33737,33738,33739,33740,33741,33742,33743,33744,33745,33746,33747,33748,33749,33750,33751,33752,33753,33754,33755,33756,33757,33758,33759,33760,33761,33762,33763,33764,33765,33766,33767,33768,33769,33770,33771,33772,33773,33774,33775,33776,33777,33778,33779,33780,33781,33782,33783,33784,33785,33786,33787,33788,33789,33790,33791,33792,33793,33794,33795,33796,33797,33798,33799,33800,33801,33802,33803,33804,33805,33806,33807,33808,33809,33810,33811,33812,33813,33814,33815,33816,33817,33818,33819,33820,33821,33822,33823,33824,33825,33826,33827,33828,33829,33830,33831,33832,33833,33834,33835,33836,33837,33838,33839,33840,33841,33842,33843,33844,33845,33846,33847,33848,33849,33850,33851,33852,33853,33854,33855,33856,33857,33858,33859,33860,33861,33862,33863,33864,33865,33866,33867,33868,33869,33870,33871,33872,33873,33874,33875,33876,33877,33878,33879,33880,33881,33882,33883,33884,33885,33886,33887,33888,33889,33890,33891,33892,33893,33894,33895,33896,33897,33898,33899,33900,33901,33902,33903,33904,33905,33906,33907,33908,33909,33910,33911,33912,33913,33914,33915,33916,33917,33918,33919,33920,33921,33922,33923,33924,33925,33926,33927,33928,33929,33930,33931,33932,33933,33934,33935,33936,33937,33938,33939,33940,33941,33942,33943,33944,33945,33946,33947,33948,33949,33950,33951,33952,33953,33954,33955,33956,33957,33958,33959,33960,33961,33962,33963,33964,33965,33966,33967,33968,33969,33970,33971,33972,33973,33974,33975,33976,33977,33978,33979,33980,33981,33982,33983,33984,33985,33986,33987,33988,33989,33990,33991,33992,33993,33994,33995,33996,33997,33998,33999,34000,34001,34002,34003,34004,34005,34006,34007,34008,34009,34010,34011,34012,34013,34014,34015,34016,34017,34018,34019,34020,34021,34022,34023,34024,34025,34026,34027,34028,34029,34030,34031,34032,34033,34034,34035,34036,34037,34038,34039,34040,34041,34042,34043,34044,34045,34046,34047,34048,34049,34050,34051,34052,34053,34054,34055,34056,34057,34058,34059,34060,34061,34062,34063,34064,34065,34066,34067,34068,34069,34070,34071,34072,34073,34074,34075,34076,34077,34078,34079,34080,34081,34082,34083,34084,34085,34086,34087,34088,34089,34090,34091,34092,34093,34094,34095,34096,34097,34098,34099,34100,34101,34102,34103,34104,34105,34106,34107,34108,34109,34110,34111,34112,34113,34114,34115,34116,34117,34118,34119,34120,34121,34122,34123,34124,34125,34126,34127,34128,34129,34130,34131,34132,34133,34134,34135,34136,34137,34138,34139,34140,34141,34142,34143,34144,34145,34146,34147,34148,34149,34150,34151,34152,34153,34154,34155,34156,34157,34158,34159,34160,34161,34162,34163,34164,34165,34166,34167,34168,34169,34170,34171,34172,34173,34174,34175,34176,34177,34178,34179,34180,34181,34182,34183,34184,34185,34186,34187,34188,34189,34190,34191,34192,34193,34194,34195,34196,34197,34198,34199,34200,34201,34202,34203,34204,34205,34206,34207,34208,34209,34210,34211,34212,34213,34214,34215,34216,34217,34218,34219,34220,34221,34222,34223,34224,34225,34226,34227,34228,34229,34230,34231,34232,34233,34234,34235,34236,34237,34238,34239,34240,34241,34242,34243,34244,34245,34246,34247,34248,34249,34250,34251,34252,34253,34254,34255,34256,34257,34258,34259,34260,34261,34262,34263,34264,34265,34266,34267,34268,34269,34270,34271,34272,34273,34274,34275,34276,34277,34278,34279,34280,34281,34282,34283,34284,34285,34286,34287,34288,34289,34290,34291,34292,34293,34294,34295,34296,34297,34298,34299,34300,34301,34302,34303,34304,34305,34306,34307,34308,34309,34310,34311,34312,34313,34314,34315,34316,34317,34318,34319,34320,34321,34322,34323,34324,34325,34326,34327,34328,34329,34330,34331,34332,34333,34334,34335,34336,34337,34338,34339,34340,34341,34342,34343,34344,34345,34346,34347,34348,34349,34350,34351,34352,34353,34354,34355,34356,34357,34358,34359,34360,34361,34362,34363,34364,34365,34366,34367,34368,34369,34370,34371,34372,34373,34374,34375,34376,34377,34378,34379,34380,34381,34382,34383,34384,34385,34386,34387,34388,34389,34390,34391,34392,34393,34394,34395,34396,34397,34398,34399,34400,34401,34402,34403,34404,34405,34406,34407,34408,34409,34410,34411,34412,34413,34414,34415,34416,34417,34418,34419,34420,34421,34422,34423,34424,34425,34426,34427,34428,34429,34430,34431,34432,34433,34434,34435,34436,34437,34438,34439,34440,34441,34442,34443,34444,34445,34446,34447,34448,34449,34450,34451,34452,34453,34454,34455,34456,34457,34458,34459,34460,34461,34462,34463,34464,34465,34466,34467,34468,34469,34470,34471,34472,34473,34474,34475,34476,34477,34478,34479,34480,34481,34482,34483,34484,34485,34486,34487,34488,34489,34490,34491,34492,34493,34494,34495,34496,34497,34498,34499,34500,34501,34502,34503,34504,34505,34506,34507,34508,34509,34510,34511,34512,34513,34514,34515,34516,34517,34518,34519,34520,34521,34522,34523,34524,34525,34526,34527,34528,34529,34530,34531,34532,34533,34534,34535,34536,34537,34538,34539,34540,34541,34542,34543,34544,34545,34546,34547,34548,34549,34550,34551,34552,34553,34554,34555,34556,34557,34558,34559,34560,34561,34562,34563,34564,34565,34566,34567,34568,34569,34570,34571,34572,34573,34574,34575,34576,34577,34578,34579,34580,34581,34582,34583,34584,34585,34586,34587,34588,34589,34590,34591,34592,34593,34594,34595,34596,34597,34598,34599,34600,34601,34602,34603,34604,34605,34606,34607,34608,34609,34610,34611,34612,34613,34614,34615,34616,34617,34618,34619,34620,34621,34622,34623,34624,34625,34626,34627,34628,34629,34630,34631,34632,34633,34634,34635,34636,34637,34638,34639,34640,34641,34642,34643,34644,34645,34646,34647,34648,34649,34650,34651,34652,34653,34654,34655,34656,34657,34658,34659,34660,34661,34662,34663,34664,34665,34666,34667,34668,34669,34670,34671,34672,34673,34674,34675,34676,34677,34678,34679,34680,34681,34682,34683,34684,34685,34686,34687,34688,34689,34690,34691,34692,34693,34694,34695,34696,34697,34698,34699,34700,34701,34702,34703,34704,34705,34706,34707,34708,34709,34710,34711,34712,34713,34714,34715,34716,34717,34718,34719,34720,34721,34722,34723,34724,34725,34726,34727,34728,34729,34730,34731,34732,34733,34734,34735,34736,34737,34738,34739,34740,34741,34742,34743,34744,34745,34746,34747,34748,34749,34750,34751,34752,34753,34754,34755,34756,34757,34758,34759,34760,34761,34762,34763,34764,34765,34766,34767,34768,34769,34770,34771,34772,34773,34774,34775,34776,34777,34778,34779,34780,34781,34782,34783,34784,34785,34786,34787,34788,34789,34790,34791,34792,34793,34794,34795,34796,34797,34798,34799,34800,34801,34802,34803,34804,34805,34806,34807,34808,34809,34810,34811,34812,34813,34814,34815,34816,34817,34818,34819,34820,34821,34822,34823,34824,34825,34826,34827,34828,34829,34830,34831,34832,34833,34834,34835,34836,34837,34838,34839,34840,34841,34842,34843,34844,34845,34846,34847,34848,34849,34850,34851,34852,34853,34854,34855,34856,34857,34858,34859,34860,34861,34862,34863,34864,34865,34866,34867,34868,34869,34870,34871,34872,34873,34874,34875,34876,34877,34878,34879,34880,34881,34882,34883,34884,34885,34886,34887,34888,34889,34890,34891,34892,34893,34894,34895,34896,34897,34898,34899,34900,34901,34902,34903,34904,34905,34906,34907,34908,34909,34910,34911,34912,34913,34914,34915,34916,34917,34918,34919,34920,34921,34922,34923,34924,34925,34926,34927,34928,34929,34930,34931,34932,34933,34934,34935,34936,34937,34938,34939,34940,34941,34942,34943,34944,34945,34946,34947,34948,34949,34950,34951,34952,34953,34954,34955,34956,34957,34958,34959,34960,34961,34962,34963,34964,34965,34966,34967,34968,34969,34970,34971,34972,34973,34974,34975,34976,34977,34978,34979,34980,34981,34982,34983,34984,34985,34986,34987,34988,34989,34990,34991,34992,34993,34994,34995,34996,34997,34998,34999,35000,35001,35002,35003,35004,35005,35006,35007,35008,35009,35010,35011,35012,35013,35014,35015,35016,35017,35018,35019,35020,35021,35022,35023,35024,35025,35026,35027,35028,35029,35030,35031,35032,35033,35034,35035,35036,35037,35038,35039,35040,35041,35042,35043,35044,35045,35046,35047,35048,35049,35050,35051,35052,35053,35054,35055,35056,35057,35058,35059,35060,35061,35062,35063,35064,35065,35066,35067,35068,35069,35070,35071,35072,35073,35074,35075,35076,35077,35078,35079,35080,35081,35082,35083,35084,35085,35086,35087,35088,35089,35090,35091,35092,35093,35094,35095,35096,35097,35098,35099,35100,35101,35102,35103,35104,35105,35106,35107,35108,35109,35110,35111,35112,35113,35114,35115,35116,35117,35118,35119,35120,35121,35122,35123,35124,35125,35126,35127,35128,35129,35130,35131,35132,35133,35134,35135,35136,35137,35138,35139,35140,35141,35142,35143,35144,35145,35146,35147,35148,35149,35150,35151,35152,35153,35154,35155,35156,35157,35158,35159,35160,35161,35162,35163,35164,35165,35166,35167,35168,35169,35170,35171,35172,35173,35174,35175,35176,35177,35178,35179,35180,35181,35182,35183,35184,35185,35186,35187,35188,35189,35190,35191,35192,35193,35194,35195,35196,35197,35198,35199,35200,35201,35202,35203,35204,35205,35206,35207,35208,35209,35210,35211,35212,35213,35214,35215,35216,35217,35218,35219,35220,35221,35222,35223,35224,35225,35226,35227,35228,35229,35230,35231,35232,35233,35234,35235,35236,35237,35238,35239,35240,35241,35242,35243,35244,35245,35246,35247,35248,35249,35250,35251,35252,35253,35254,35255,35256,35257,35258,35259,35260,35261,35262,35263,35264,35265,35266,35267,35268,35269,35270,35271,35272,35273,35274,35275,35276,35277,35278,35279,35280,35281,35282,35283,35284,35285,35286,35287,35288,35289,35290,35291,35292,35293,35294,35295,35296,35297,35298,35299,35300,35301,35302,35303,35304,35305,35306,35307,35308,35309,35310,35311,35312,35313,35314,35315,35316,35317,35318,35319,35320,35321,35322,35323,35324,35325,35326,35327,35328,35329,35330,35331,35332,35333,35334,35335,35336,35337,35338,35339,35340,35341,35342,35343,35344,35345,35346,35347,35348,35349,35350,35351,35352,35353,35354,35355,35356,35357,35358,35359,35360,35361,35362,35363,35364,35365,35366,35367,35368,35369,35370,35371,35372,35373,35374,35375,35376,35377,35378,35379,35380,35381,35382,35383,35384,35385,35386,35387,35388,35389,35390,35391,35392,35393,35394,35395,35396,35397,35398,35399,35400,35401,35402,35403,35404,35405,35406,35407,35408,35409,35410,35411,35412,35413,35414,35415,35416,35417,35418,35419,35420,35421,35422,35423,35424,35425,35426,35427,35428,35429,35430,35431,35432,35433,35434,35435,35436,35437,35438,35439,35440,35441,35442,35443,35444,35445,35446,35447,35448,35449,35450,35451,35452,35453,35454,35455,35456,35457,35458,35459,35460,35461,35462,35463,35464,35465,35466,35467,35468,35469,35470,35471,35472,35473,35474,35475,35476,35477,35478,35479,35480,35481,35482,35483,35484,35485,35486,35487,35488,35489,35490,35491,35492,35493,35494,35495,35496,35497,35498,35499,35500,35501,35502,35503,35504,35505,35506,35507,35508,35509,35510,35511,35512,35513,35514,35515,35516,35517,35518,35519,35520,35521,35522,35523,35524,35525,35526,35527,35528,35529,35530,35531,35532,35533,35534,35535,35536,35537,35538,35539,35540,35541,35542,35543,35544,35545,35546,35547,35548,35549,35550,35551,35552,35553,35554,35555,35556,35557,35558,35559,35560,35561,35562,35563,35564,35565,35566,35567,35568,35569,35570,35571,35572,35573,35574,35575,35576,35577,35578,35579,35580,35581,35582,35583,35584,35585,35586,35587,35588,35589,35590,35591,35592,35593,35594,35595,35596,35597,35598,35599,35600,35601,35602,35603,35604,35605,35606,35607,35608,35609,35610,35611,35612,35613,35614,35615,35616,35617,35618,35619,35620,35621,35622,35623,35624,35625,35626,35627,35628,35629,35630,35631,35632,35633,35634,35635,35636,35637,35638,35639,35640,35641,35642,35643,35644,35645,35646,35647,35648,35649,35650,35651,35652,35653,35654,35655,35656,35657,35658,35659,35660,35661,35662,35663,35664,35665,35666,35667,35668,35669,35670,35671,35672,35673,35674,35675,35676,35677,35678,35679,35680,35681,35682,35683,35684,35685,35686,35687,35688,35689,35690,35691,35692,35693,35694,35695,35696,35697,35698,35699,35700,35701,35702,35703,35704,35705,35706,35707,35708,35709,35710,35711,35712,35713,35714,35715,35716,35717,35718,35719,35720,35721,35722,35723,35724,35725,35726,35727,35728,35729,35730,35731,35732,35733,35734,35735,35736,35737,35738,35739,35740,35741,35742,35743,35744,35745,35746,35747,35748,35749,35750,35751,35752,35753,35754,35755,35756,35757,35758,35759,35760,35761,35762,35763,35764,35765,35766,35767,35768,35769,35770,35771,35772,35773,35774,35775,35776,35777,35778,35779,35780,35781,35782,35783,35784,35785,35786,35787,35788,35789,35790,35791,35792,35793,35794,35795,35796,35797,35798,35799,35800,35801,35802,35803,35804,35805,35806,35807,35808,35809,35810,35811,35812,35813,35814,35815,35816,35817,35818,35819,35820,35821,35822,35823,35824,35825,35826,35827,35828,35829,35830,35831,35832,35833,35834,35835,35836,35837,35838,35839,35840,35841,35842,35843,35844,35845,35846,35847,35848,35849,35850,35851,35852,35853,35854,35855,35856,35857,35858,35859,35860,35861,35862,35863,35864,35865,35866,35867,35868,35869,35870,35871,35872,35873,35874,35875,35876,35877,35878,35879,35880,35881,35882,35883,35884,35885,35886,35887,35888,35889,35890,35891,35892,35893,35894,35895,35896,35897,35898,35899,35900,35901,35902,35903,35904,35905,35906,35907,35908,35909,35910,35911,35912,35913,35914,35915,35916,35917,35918,35919,35920,35921,35922,35923,35924,35925,35926,35927,35928,35929,35930,35931,35932,35933,35934,35935,35936,35937,35938,35939,35940,35941,35942,35943,35944,35945,35946,35947,35948,35949,35950,35951,35952,35953,35954,35955,35956,35957,35958,35959,35960,35961,35962,35963,35964,35965,35966,35967,35968,35969,35970,35971,35972,35973,35974,35975,35976,35977,35978,35979,35980,35981,35982,35983,35984,35985,35986,35987,35988,35989,35990,35991,35992,35993,35994,35995,35996,35997,35998,35999,36000,36001,36002,36003,36004,36005,36006,36007,36008,36009,36010,36011,36012,36013,36014,36015,36016,36017,36018,36019,36020,36021,36022,36023,36024,36025,36026,36027,36028,36029,36030,36031,36032,36033,36034,36035,36036,36037,36038,36039,36040,36041,36042,36043,36044,36045,36046,36047,36048,36049,36050,36051,36052,36053,36054,36055,36056,36057,36058,36059,36060,36061,36062,36063,36064,36065,36066,36067,36068,36069,36070,36071,36072,36073,36074,36075,36076,36077,36078,36079,36080,36081,36082,36083,36084,36085,36086,36087,36088,36089,36090,36091,36092,36093,36094,36095,36096,36097,36098,36099,36100,36101,36102,36103,36104,36105,36106,36107,36108,36109,36110,36111,36112,36113,36114,36115,36116,36117,36118,36119,36120,36121,36122,36123,36124,36125,36126,36127,36128,36129,36130,36131,36132,36133,36134,36135,36136,36137,36138,36139,36140,36141,36142,36143,36144,36145,36146,36147,36148,36149,36150,36151,36152,36153,36154,36155,36156,36157,36158,36159,36160,36161,36162,36163,36164,36165,36166,36167,36168,36169,36170,36171,36172,36173,36174,36175,36176,36177,36178,36179,36180,36181,36182,36183,36184,36185,36186,36187,36188,36189,36190,36191,36192,36193,36194,36195,36196,36197,36198,36199,36200,36201,36202,36203,36204,36205,36206,36207,36208,36209,36210,36211,36212,36213,36214,36215,36216,36217,36218,36219,36220,36221,36222,36223,36224,36225,36226,36227,36228,36229,36230,36231,36232,36233,36234,36235,36236,36237,36238,36239,36240,36241,36242,36243,36244,36245,36246,36247,36248,36249,36250,36251,36252,36253,36254,36255,36256,36257,36258,36259,36260,36261,36262,36263,36264,36265,36266,36267,36268,36269,36270,36271,36272,36273,36274,36275,36276,36277,36278,36279,36280,36281,36282,36283,36284,36285,36286,36287,36288,36289,36290,36291,36292,36293,36294,36295,36296,36297,36298,36299,36300,36301,36302,36303,36304,36305,36306,36307,36308,36309,36310,36311,36312,36313,36314,36315,36316,36317,36318,36319,36320,36321,36322,36323,36324,36325,36326,36327,36328,36329,36330,36331,36332,36333,36334,36335,36336,36337,36338,36339,36340,36341,36342,36343,36344,36345,36346,36347,36348,36349,36350,36351,36352,36353,36354,36355,36356,36357,36358,36359,36360,36361,36362,36363,36364,36365,36366,36367,36368,36369,36370,36371,36372,36373,36374,36375,36376,36377,36378,36379,36380,36381,36382,36383,36384,36385,36386,36387,36388,36389,36390,36391,36392,36393,36394,36395,36396,36397,36398,36399,36400,36401,36402,36403,36404,36405,36406,36407,36408,36409,36410,36411,36412,36413,36414,36415,36416,36417,36418,36419,36420,36421,36422,36423,36424,36425,36426,36427,36428,36429,36430,36431,36432,36433,36434,36435,36436,36437,36438,36439,36440,36441,36442,36443,36444,36445,36446,36447,36448,36449,36450,36451,36452,36453,36454,36455,36456,36457,36458,36459,36460,36461,36462,36463,36464,36465,36466,36467,36468,36469,36470,36471,36472,36473,36474,36475,36476,36477,36478,36479,36480,36481,36482,36483,36484,36485,36486,36487,36488,36489,36490,36491,36492,36493,36494,36495,36496,36497,36498,36499,36500,36501,36502,36503,36504,36505,36506,36507,36508,36509,36510,36511,36512,36513,36514,36515,36516,36517,36518,36519,36520,36521,36522,36523,36524,36525,36526,36527,36528,36529,36530,36531,36532,36533,36534,36535,36536,36537,36538,36539,36540,36541,36542,36543,36544,36545,36546,36547,36548,36549,36550,36551,36552,36553,36554,36555,36556,36557,36558,36559,36560,36561,36562,36563,36564,36565,36566,36567,36568,36569,36570,36571,36572,36573,36574,36575,36576,36577,36578,36579,36580,36581,36582,36583,36584,36585,36586,36587,36588,36589,36590,36591,36592,36593,36594,36595,36596,36597,36598,36599,36600,36601,36602,36603,36604,36605,36606,36607,36608,36609,36610,36611,36612,36613,36614,36615,36616,36617,36618,36619,36620,36621,36622,36623,36624,36625,36626,36627,36628,36629,36630,36631,36632,36633,36634,36635,36636,36637,36638,36639,36640,36641,36642,36643,36644,36645,36646,36647,36648,36649,36650,36651,36652,36653,36654,36655,36656,36657,36658,36659,36660,36661,36662,36663,36664,36665,36666,36667,36668,36669,36670,36671,36672,36673,36674,36675,36676,36677,36678,36679,36680,36681,36682,36683,36684,36685,36686,36687,36688,36689,36690,36691,36692,36693,36694,36695,36696,36697,36698,36699,36700,36701,36702,36703,36704,36705,36706,36707,36708,36709,36710,36711,36712,36713,36714,36715,36716,36717,36718,36719,36720,36721,36722,36723,36724,36725,36726,36727,36728,36729,36730,36731,36732,36733,36734,36735,36736,36737,36738,36739,36740,36741,36742,36743,36744,36745,36746,36747,36748,36749,36750,36751,36752,36753,36754,36755,36756,36757,36758,36759,36760,36761,36762,36763,36764,36765,36766,36767,36768,36769,36770,36771,36772,36773,36774,36775,36776,36777,36778,36779,36780,36781,36782,36783,36784,36785,36786,36787,36788,36789,36790,36791,36792,36793,36794,36795,36796,36797,36798,36799,36800,36801,36802,36803,36804,36805,36806,36807,36808,36809,36810,36811,36812,36813,36814,36815,36816,36817,36818,36819,36820,36821,36822,36823,36824,36825,36826,36827,36828,36829,36830,36831,36832,36833,36834,36835,36836,36837,36838,36839,36840,36841,36842,36843,36844,36845,36846,36847,36848,36849,36850,36851,36852,36853,36854,36855,36856,36857,36858,36859,36860,36861,36862,36863,36864,36865,36866,36867,36868,36869,36870,36871,36872,36873,36874,36875,36876,36877,36878,36879,36880,36881,36882,36883,36884,36885,36886,36887,36888,36889,36890,36891,36892,36893,36894,36895,36896,36897,36898,36899,36900,36901,36902,36903,36904,36905,36906,36907,36908,36909,36910,36911,36912,36913,36914,36915,36916,36917,36918,36919,36920,36921,36922,36923,36924,36925,36926,36927,36928,36929,36930,36931,36932,36933,36934,36935,36936,36937,36938,36939,36940,36941,36942,36943,36944,36945,36946,36947,36948,36949,36950,36951,36952,36953,36954,36955,36956,36957,36958,36959,36960,36961,36962,36963,36964,36965,36966,36967,36968,36969,36970,36971,36972,36973,36974,36975,36976,36977,36978,36979,36980,36981,36982,36983,36984,36985,36986,36987,36988,36989,36990,36991,36992,36993,36994,36995,36996,36997,36998,36999,37000,37001,37002,37003,37004,37005,37006,37007,37008,37009,37010,37011,37012,37013,37014,37015,37016,37017,37018,37019,37020,37021,37022,37023,37024,37025,37026,37027,37028,37029,37030,37031,37032,37033,37034,37035,37036,37037,37038,37039,37040,37041,37042,37043,37044,37045,37046,37047,37048,37049,37050,37051,37052,37053,37054,37055,37056,37057,37058,37059,37060,37061,37062,37063,37064,37065,37066,37067,37068,37069,37070,37071,37072,37073,37074,37075,37076,37077,37078,37079,37080,37081,37082,37083,37084,37085,37086,37087,37088,37089,37090,37091,37092,37093,37094,37095,37096,37097,37098,37099,37100,37101,37102,37103,37104,37105,37106,37107,37108,37109,37110,37111,37112,37113,37114,37115,37116,37117,37118,37119,37120,37121,37122,37123,37124,37125,37126,37127,37128,37129,37130,37131,37132,37133,37134,37135,37136,37137,37138,37139,37140,37141,37142,37143,37144,37145,37146,37147,37148,37149,37150,37151,37152,37153,37154,37155,37156,37157,37158,37159,37160,37161,37162,37163,37164,37165,37166,37167,37168,37169,37170,37171,37172,37173,37174,37175,37176,37177,37178,37179,37180,37181,37182,37183,37184,37185,37186,37187,37188,37189,37190,37191,37192,37193,37194,37195,37196,37197,37198,37199,37200,37201,37202,37203,37204,37205,37206,37207,37208,37209,37210,37211,37212,37213,37214,37215,37216,37217,37218,37219,37220,37221,37222,37223,37224,37225,37226,37227,37228,37229,37230,37231,37232,37233,37234,37235,37236,37237,37238,37239,37240,37241,37242,37243,37244,37245,37246,37247,37248,37249,37250,37251,37252,37253,37254,37255,37256,37257,37258,37259,37260,37261,37262,37263,37264,37265,37266,37267,37268,37269,37270,37271,37272,37273,37274,37275,37276,37277,37278,37279,37280,37281,37282,37283,37284,37285,37286,37287,37288,37289,37290,37291,37292,37293,37294,37295,37296,37297,37298,37299,37300,37301,37302,37303,37304,37305,37306,37307,37308,37309,37310,37311,37312,37313,37314,37315,37316,37317,37318,37319,37320,37321,37322,37323,37324,37325,37326,37327,37328,37329,37330,37331,37332,37333,37334,37335,37336,37337,37338,37339,37340,37341,37342,37343,37344,37345,37346,37347,37348,37349,37350,37351,37352,37353,37354,37355,37356,37357,37358,37359,37360,37361,37362,37363,37364,37365,37366,37367,37368,37369,37370,37371,37372,37373,37374,37375,37376,37377,37378,37379,37380,37381,37382,37383,37384,37385,37386,37387,37388,37389,37390,37391,37392,37393,37394,37395,37396,37397,37398,37399,37400,37401,37402,37403,37404,37405,37406,37407,37408,37409,37410,37411,37412,37413,37414,37415,37416,37417,37418,37419,37420,37421,37422,37423,37424,37425,37426,37427,37428,37429,37430,37431,37432,37433,37434,37435,37436,37437,37438,37439,37440,37441,37442,37443,37444,37445,37446,37447,37448,37449,37450,37451,37452,37453,37454,37455,37456,37457,37458,37459,37460,37461,37462,37463,37464,37465,37466,37467,37468,37469,37470,37471,37472,37473,37474,37475,37476,37477,37478,37479,37480,37481,37482,37483,37484,37485,37486,37487,37488,37489,37490,37491,37492,37493,37494,37495,37496,37497,37498,37499,37500,37501,37502,37503,37504,37505,37506,37507,37508,37509,37510,37511,37512,37513,37514,37515,37516,37517,37518,37519,37520,37521,37522,37523,37524,37525,37526,37527,37528,37529,37530,37531,37532,37533,37534,37535,37536,37537,37538,37539,37540,37541,37542,37543,37544,37545,37546,37547,37548,37549,37550,37551,37552,37553,37554,37555,37556,37557,37558,37559,37560,37561,37562,37563,37564,37565,37566,37567,37568,37569,37570,37571,37572,37573,37574,37575,37576,37577,37578,37579,37580,37581,37582,37583,37584,37585,37586,37587,37588,37589,37590,37591,37592,37593,37594,37595,37596,37597,37598,37599,37600,37601,37602,37603,37604,37605,37606,37607,37608,37609,37610,37611,37612,37613,37614,37615,37616,37617,37618,37619,37620,37621,37622,37623,37624,37625,37626,37627,37628,37629,37630,37631,37632,37633,37634,37635,37636,37637,37638,37639,37640,37641,37642,37643,37644,37645,37646,37647,37648,37649,37650,37651,37652,37653,37654,37655,37656,37657,37658,37659,37660,37661,37662,37663,37664,37665,37666,37667,37668,37669,37670,37671,37672,37673,37674,37675,37676,37677,37678,37679,37680,37681,37682,37683,37684,37685,37686,37687,37688,37689,37690,37691,37692,37693,37694,37695,37696,37697,37698,37699,37700,37701,37702,37703,37704,37705,37706,37707,37708,37709,37710,37711,37712,37713,37714,37715,37716,37717,37718,37719,37720,37721,37722,37723,37724,37725,37726,37727,37728,37729,37730,37731,37732,37733,37734,37735,37736,37737,37738,37739,37740,37741,37742,37743,37744,37745,37746,37747,37748,37749,37750,37751,37752,37753,37754,37755,37756,37757,37758,37759,37760,37761,37762,37763,37764,37765,37766,37767,37768,37769,37770,37771,37772,37773,37774,37775,37776,37777,37778,37779,37780,37781,37782,37783,37784,37785,37786,37787,37788,37789,37790,37791,37792,37793,37794,37795,37796,37797,37798,37799,37800,37801,37802,37803,37804,37805,37806,37807,37808,37809,37810,37811,37812,37813,37814,37815,37816,37817,37818,37819,37820,37821,37822,37823,37824,37825,37826,37827,37828,37829,37830,37831,37832,37833,37834,37835,37836,37837,37838,37839,37840,37841,37842,37843,37844,37845,37846,37847,37848,37849,37850,37851,37852,37853,37854,37855,37856,37857,37858,37859,37860,37861,37862,37863,37864,37865,37866,37867,37868,37869,37870,37871,37872,37873,37874,37875,37876,37877,37878,37879,37880,37881,37882,37883,37884,37885,37886,37887,37888,37889,37890,37891,37892,37893,37894,37895,37896,37897,37898,37899,37900,37901,37902,37903,37904,37905,37906,37907,37908,37909,37910,37911,37912,37913,37914,37915,37916,37917,37918,37919,37920,37921,37922,37923,37924,37925,37926,37927,37928,37929,37930,37931,37932,37933,37934,37935,37936,37937,37938,37939,37940,37941,37942,37943,37944,37945,37946,37947,37948,37949,37950,37951,37952,37953,37954,37955,37956,37957,37958,37959,37960,37961,37962,37963,37964,37965,37966,37967,37968,37969,37970,37971,37972,37973,37974,37975,37976,37977,37978,37979,37980,37981,37982,37983,37984,37985,37986,37987,37988,37989,37990,37991,37992,37993,37994,37995,37996,37997,37998,37999,38000,38001,38002,38003,38004,38005,38006,38007,38008,38009,38010,38011,38012,38013,38014,38015,38016,38017,38018,38019,38020,38021,38022,38023,38024,38025,38026,38027,38028,38029,38030,38031,38032,38033,38034,38035,38036,38037,38038,38039,38040,38041,38042,38043,38044,38045,38046,38047,38048,38049,38050,38051,38052,38053,38054,38055,38056,38057,38058,38059,38060,38061,38062,38063,38064,38065,38066,38067,38068,38069,38070,38071,38072,38073,38074,38075,38076,38077,38078,38079,38080,38081,38082,38083,38084,38085,38086,38087,38088,38089,38090,38091,38092,38093,38094,38095,38096,38097,38098,38099,38100,38101,38102,38103,38104,38105,38106,38107,38108,38109,38110,38111,38112,38113,38114,38115,38116,38117,38118,38119,38120,38121,38122,38123,38124,38125,38126,38127,38128,38129,38130,38131,38132,38133,38134,38135,38136,38137,38138,38139,38140,38141,38142,38143,38144,38145,38146,38147,38148,38149,38150,38151,38152,38153,38154,38155,38156,38157,38158,38159,38160,38161,38162,38163,38164,38165,38166,38167,38168,38169,38170,38171,38172,38173,38174,38175,38176,38177,38178,38179,38180,38181,38182,38183,38184,38185,38186,38187,38188,38189,38190,38191,38192,38193,38194,38195,38196,38197,38198,38199,38200,38201,38202,38203,38204,38205,38206,38207,38208,38209,38210,38211,38212,38213,38214,38215,38216,38217,38218,38219,38220,38221,38222,38223,38224,38225,38226,38227,38228,38229,38230,38231,38232,38233,38234,38235,38236,38237,38238,38239,38240,38241,38242,38243,38244,38245,38246,38247,38248,38249,38250,38251,38252,38253,38254,38255,38256,38257,38258,38259,38260,38261,38262,38263,38264,38265,38266,38267,38268,38269,38270,38271,38272,38273,38274,38275,38276,38277,38278,38279,38280,38281,38282,38283,38284,38285,38286,38287,38288,38289,38290,38291,38292,38293,38294,38295,38296,38297,38298,38299,38300,38301,38302,38303,38304,38305,38306,38307,38308,38309,38310,38311,38312,38313,38314,38315,38316,38317,38318,38319,38320,38321,38322,38323,38324,38325,38326,38327,38328,38329,38330,38331,38332,38333,38334,38335,38336,38337,38338,38339,38340,38341,38342,38343,38344,38345,38346,38347,38348,38349,38350,38351,38352,38353,38354,38355,38356,38357,38358,38359,38360,38361,38362,38363,38364,38365,38366,38367,38368,38369,38370,38371,38372,38373,38374,38375,38376,38377,38378,38379,38380,38381,38382,38383,38384,38385,38386,38387,38388,38389,38390,38391,38392,38393,38394,38395,38396,38397,38398,38399,38400,38401,38402,38403,38404,38405,38406,38407,38408,38409,38410,38411,38412,38413,38414,38415,38416,38417,38418,38419,38420,38421,38422,38423,38424,38425,38426,38427,38428,38429,38430,38431,38432,38433,38434,38435,38436,38437,38438,38439,38440,38441,38442,38443,38444,38445,38446,38447,38448,38449,38450,38451,38452,38453,38454,38455,38456,38457,38458,38459,38460,38461,38462,38463,38464,38465,38466,38467,38468,38469,38470,38471,38472,38473,38474,38475,38476,38477,38478,38479,38480,38481,38482,38483,38484,38485,38486,38487,38488,38489,38490,38491,38492,38493,38494,38495,38496,38497,38498,38499,38500,38501,38502,38503,38504,38505,38506,38507,38508,38509,38510,38511,38512,38513,38514,38515,38516,38517,38518,38519,38520,38521,38522,38523,38524,38525,38526,38527,38528,38529,38530,38531,38532,38533,38534,38535,38536,38537,38538,38539,38540,38541,38542,38543,38544,38545,38546,38547,38548,38549,38550,38551,38552,38553,38554,38555,38556,38557,38558,38559,38560,38561,38562,38563,38564,38565,38566,38567,38568,38569,38570,38571,38572,38573,38574,38575,38576,38577,38578,38579,38580,38581,38582,38583,38584,38585,38586,38587,38588,38589,38590,38591,38592,38593,38594,38595,38596,38597,38598,38599,38600,38601,38602,38603,38604,38605,38606,38607,38608,38609,38610,38611,38612,38613,38614,38615,38616,38617,38618,38619,38620,38621,38622,38623,38624,38625,38626,38627,38628,38629,38630,38631,38632,38633,38634,38635,38636,38637,38638,38639,38640,38641,38642,38643,38644,38645,38646,38647,38648,38649,38650,38651,38652,38653,38654,38655,38656,38657,38658,38659,38660,38661,38662,38663,38664,38665,38666,38667,38668,38669,38670,38671,38672,38673,38674,38675,38676,38677,38678,38679,38680,38681,38682,38683,38684,38685,38686,38687,38688,38689,38690,38691,38692,38693,38694,38695,38696,38697,38698,38699,38700,38701,38702,38703,38704,38705,38706,38707,38708,38709,38710,38711,38712,38713,38714,38715,38716,38717,38718,38719,38720,38721,38722,38723,38724,38725,38726,38727,38728,38729,38730,38731,38732,38733,38734,38735,38736,38737,38738,38739,38740,38741,38742,38743,38744,38745,38746,38747,38748,38749,38750,38751,38752,38753,38754,38755,38756,38757,38758,38759,38760,38761,38762,38763,38764,38765,38766,38767,38768,38769,38770,38771,38772,38773,38774,38775,38776,38777,38778,38779,38780,38781,38782,38783,38784,38785,38786,38787,38788,38789,38790,38791,38792,38793,38794,38795,38796,38797,38798,38799,38800,38801,38802,38803,38804,38805,38806,38807,38808,38809,38810,38811,38812,38813,38814,38815,38816,38817,38818,38819,38820,38821,38822,38823,38824,38825,38826,38827,38828,38829,38830,38831,38832,38833,38834,38835,38836,38837,38838,38839,38840,38841,38842,38843,38844,38845,38846,38847,38848,38849,38850,38851,38852,38853,38854,38855,38856,38857,38858,38859,38860,38861,38862,38863,38864,38865,38866,38867,38868,38869,38870,38871,38872,38873,38874,38875,38876,38877,38878,38879,38880,38881,38882,38883,38884,38885,38886,38887,38888,38889,38890,38891,38892,38893,38894,38895,38896,38897,38898,38899,38900,38901,38902,38903,38904,38905,38906,38907,38908,38909,38910,38911,38912,38913,38914,38915,38916,38917,38918,38919,38920,38921,38922,38923,38924,38925,38926,38927,38928,38929,38930,38931,38932,38933,38934,38935,38936,38937,38938,38939,38940,38941,38942,38943,38944,38945,38946,38947,38948,38949,38950,38951,38952,38953,38954,38955,38956,38957,38958,38959,38960,38961,38962,38963,38964,38965,38966,38967,38968,38969,38970,38971,38972,38973,38974,38975,38976,38977,38978,38979,38980,38981,38982,38983,38984,38985,38986,38987,38988,38989,38990,38991,38992,38993,38994,38995,38996,38997,38998,38999,39000,39001,39002,39003,39004,39005,39006,39007,39008,39009,39010,39011,39012,39013,39014,39015,39016,39017,39018,39019,39020,39021,39022,39023,39024,39025,39026,39027,39028,39029,39030,39031,39032,39033,39034,39035,39036,39037,39038,39039,39040,39041,39042,39043,39044,39045,39046,39047,39048,39049,39050,39051,39052,39053,39054,39055,39056,39057,39058,39059,39060,39061,39062,39063,39064,39065,39066,39067,39068,39069,39070,39071,39072,39073,39074,39075,39076,39077,39078,39079,39080,39081,39082,39083,39084,39085,39086,39087,39088,39089,39090,39091,39092,39093,39094,39095,39096,39097,39098,39099,39100,39101,39102,39103,39104,39105,39106,39107,39108,39109,39110,39111,39112,39113,39114,39115,39116,39117,39118,39119,39120,39121,39122,39123,39124,39125,39126,39127,39128,39129,39130,39131,39132,39133,39134,39135,39136,39137,39138,39139,39140,39141,39142,39143,39144,39145,39146,39147,39148,39149,39150,39151,39152,39153,39154,39155,39156,39157,39158,39159,39160,39161,39162,39163,39164,39165,39166,39167,39168,39169,39170,39171,39172,39173,39174,39175,39176,39177,39178,39179,39180,39181,39182,39183,39184,39185,39186,39187,39188,39189,39190,39191,39192,39193,39194,39195,39196,39197,39198,39199,39200,39201,39202,39203,39204,39205,39206,39207,39208,39209,39210,39211,39212,39213,39214,39215,39216,39217,39218,39219,39220,39221,39222,39223,39224,39225,39226,39227,39228,39229,39230,39231,39232,39233,39234,39235,39236,39237,39238,39239,39240,39241,39242,39243,39244,39245,39246,39247,39248,39249,39250,39251,39252,39253,39254,39255,39256,39257,39258,39259,39260,39261,39262,39263,39264,39265,39266,39267,39268,39269,39270,39271,39272,39273,39274,39275,39276,39277,39278,39279,39280,39281,39282,39283,39284,39285,39286,39287,39288,39289,39290,39291,39292,39293,39294,39295,39296,39297,39298,39299,39300,39301,39302,39303,39304,39305,39306,39307,39308,39309,39310,39311,39312,39313,39314,39315,39316,39317,39318,39319,39320,39321,39322,39323,39324,39325,39326,39327,39328,39329,39330,39331,39332,39333,39334,39335,39336,39337,39338,39339,39340,39341,39342,39343,39344,39345,39346,39347,39348,39349,39350,39351,39352,39353,39354,39355,39356,39357,39358,39359,39360,39361,39362,39363,39364,39365,39366,39367,39368,39369,39370,39371,39372,39373,39374,39375,39376,39377,39378,39379,39380,39381,39382,39383,39384,39385,39386,39387,39388,39389,39390,39391,39392,39393,39394,39395,39396,39397,39398,39399,39400,39401,39402,39403,39404,39405,39406,39407,39408,39409,39410,39411,39412,39413,39414,39415,39416,39417,39418,39419,39420,39421,39422,39423,39424,39425,39426,39427,39428,39429,39430,39431,39432,39433,39434,39435,39436,39437,39438,39439,39440,39441,39442,39443,39444,39445,39446,39447,39448,39449,39450,39451,39452,39453,39454,39455,39456,39457,39458,39459,39460,39461,39462,39463,39464,39465,39466,39467,39468,39469,39470,39471,39472,39473,39474,39475,39476,39477,39478,39479,39480,39481,39482,39483,39484,39485,39486,39487,39488,39489,39490,39491,39492,39493,39494,39495,39496,39497,39498,39499,39500,39501,39502,39503,39504,39505,39506,39507,39508,39509,39510,39511,39512,39513,39514,39515,39516,39517,39518,39519,39520,39521,39522,39523,39524,39525,39526,39527,39528,39529,39530,39531,39532,39533,39534,39535,39536,39537,39538,39539,39540,39541,39542,39543,39544,39545,39546,39547,39548,39549,39550,39551,39552,39553,39554,39555,39556,39557,39558,39559,39560,39561,39562,39563,39564,39565,39566,39567,39568,39569,39570,39571,39572,39573,39574,39575,39576,39577,39578,39579,39580,39581,39582,39583,39584,39585,39586,39587,39588,39589,39590,39591,39592,39593,39594,39595,39596,39597,39598,39599,39600,39601,39602,39603,39604,39605,39606,39607,39608,39609,39610,39611,39612,39613,39614,39615,39616,39617,39618,39619,39620,39621,39622,39623,39624,39625,39626,39627,39628,39629,39630,39631,39632,39633,39634,39635,39636,39637,39638,39639,39640,39641,39642,39643,39644,39645,39646,39647,39648,39649,39650,39651,39652,39653,39654,39655,39656,39657,39658,39659,39660,39661,39662,39663,39664,39665,39666,39667,39668,39669,39670,39671,39672,39673,39674,39675,39676,39677,39678,39679,39680,39681,39682,39683,39684,39685,39686,39687,39688,39689,39690,39691,39692,39693,39694,39695,39696,39697,39698,39699,39700,39701,39702,39703,39704,39705,39706,39707,39708,39709,39710,39711,39712,39713,39714,39715,39716,39717,39718,39719,39720,39721,39722,39723,39724,39725,39726,39727,39728,39729,39730,39731,39732,39733,39734,39735,39736,39737,39738,39739,39740,39741,39742,39743,39744,39745,39746,39747,39748,39749,39750,39751,39752,39753,39754,39755,39756,39757,39758,39759,39760,39761,39762,39763,39764,39765,39766,39767,39768,39769,39770,39771,39772,39773,39774,39775,39776,39777,39778,39779,39780,39781,39782,39783,39784,39785,39786,39787,39788,39789,39790,39791,39792,39793,39794,39795,39796,39797,39798,39799,39800,39801,39802,39803,39804,39805,39806,39807,39808,39809,39810,39811,39812,39813,39814,39815,39816,39817,39818,39819,39820,39821,39822,39823,39824,39825,39826,39827,39828,39829,39830,39831,39832,39833,39834,39835,39836,39837,39838,39839,39840,39841,39842,39843,39844,39845,39846,39847,39848,39849,39850,39851,39852,39853,39854,39855,39856,39857,39858,39859,39860,39861,39862,39863,39864,39865,39866,39867,39868,39869,39870,39871,39872,39873,39874,39875,39876,39877,39878,39879,39880,39881,39882,39883,39884,39885,39886,39887,39888,39889,39890,39891,39892,39893,39894,39895,39896,39897,39898,39899,39900,39901,39902,39903,39904,39905,39906,39907,39908,39909,39910,39911,39912,39913,39914,39915,39916,39917,39918,39919,39920,39921,39922,39923,39924,39925,39926,39927,39928,39929,39930,39931,39932,39933,39934,39935,39936,39937,39938,39939,39940,39941,39942,39943,39944,39945,39946,39947,39948,39949,39950,39951,39952,39953,39954,39955,39956,39957,39958,39959,39960,39961,39962,39963,39964,39965,39966,39967,39968,39969,39970,39971,39972,39973,39974,39975,39976,39977,39978,39979,39980,39981,39982,39983,39984,39985,39986,39987,39988,39989,39990,39991,39992,39993,39994,39995,39996,39997,39998,39999,40000,40001,40002,40003,40004,40005,40006,40007,40008,40009,40010,40011,40012,40013,40014,40015,40016,40017,40018,40019,40020,40021,40022,40023,40024,40025,40026,40027,40028,40029,40030,40031,40032,40033,40034,40035,40036,40037,40038,40039,40040,40041,40042,40043,40044,40045,40046,40047,40048,40049,40050,40051,40052,40053,40054,40055,40056,40057,40058,40059,40060,40061,40062,40063,40064,40065,40066,40067,40068,40069,40070,40071,40072,40073,40074,40075,40076,40077,40078,40079,40080,40081,40082,40083,40084,40085,40086,40087,40088,40089,40090,40091,40092,40093,40094,40095,40096,40097,40098,40099,40100,40101,40102,40103,40104,40105,40106,40107,40108,40109,40110,40111,40112,40113,40114,40115,40116,40117,40118,40119,40120,40121,40122,40123,40124,40125,40126,40127,40128,40129,40130,40131,40132,40133,40134,40135,40136,40137,40138,40139,40140,40141,40142,40143,40144,40145,40146,40147,40148,40149,40150,40151,40152,40153,40154,40155,40156,40157,40158,40159,40160,40161,40162,40163,40164,40165,40166,40167,40168,40169,40170,40171,40172,40173,40174,40175,40176,40177,40178,40179,40180,40181,40182,40183,40184,40185,40186,40187,40188,40189,40190,40191,40192,40193,40194,40195,40196,40197,40198,40199,40200,40201,40202,40203,40204,40205,40206,40207,40208,40209,40210,40211,40212,40213,40214,40215,40216,40217,40218,40219,40220,40221,40222,40223,40224,40225,40226,40227,40228,40229,40230,40231,40232,40233,40234,40235,40236,40237,40238,40239,40240,40241,40242,40243,40244,40245,40246,40247,40248,40249,40250,40251,40252,40253,40254,40255,40256,40257,40258,40259,40260,40261,40262,40263,40264,40265,40266,40267,40268,40269,40270,40271,40272,40273,40274,40275,40276,40277,40278,40279,40280,40281,40282,40283,40284,40285,40286,40287,40288,40289,40290,40291,40292,40293,40294,40295,40296,40297,40298,40299,40300,40301,40302,40303,40304,40305,40306,40307,40308,40309,40310,40311,40312,40313,40314,40315,40316,40317,40318,40319,40320,40321,40322,40323,40324,40325,40326,40327,40328,40329,40330,40331,40332,40333,40334,40335,40336,40337,40338,40339,40340,40341,40342,40343,40344,40345,40346,40347,40348,40349,40350,40351,40352,40353,40354,40355,40356,40357,40358,40359,40360,40361,40362,40363,40364,40365,40366,40367,40368,40369,40370,40371,40372,40373,40374,40375,40376,40377,40378,40379,40380,40381,40382,40383,40384,40385,40386,40387,40388,40389,40390,40391,40392,40393,40394,40395,40396,40397,40398,40399,40400,40401,40402,40403,40404,40405,40406,40407,40408,40409,40410,40411,40412,40413,40414,40415,40416,40417,40418,40419,40420,40421,40422,40423,40424,40425,40426,40427,40428,40429,40430,40431,40432,40433,40434,40435,40436,40437,40438,40439,40440,40441,40442,40443,40444,40445,40446,40447,40448,40449,40450,40451,40452,40453,40454,40455,40456,40457,40458,40459,40460,40461,40462,40463,40464,40465,40466,40467,40468,40469,40470,40471,40472,40473,40474,40475,40476,40477,40478,40479,40480,40481,40482,40483,40484,40485,40486,40487,40488,40489,40490,40491,40492,40493,40494,40495,40496,40497,40498,40499,40500,40501,40502,40503,40504,40505,40506,40507,40508,40509,40510,40511,40512,40513,40514,40515,40516,40517,40518,40519,40520,40521,40522,40523,40524,40525,40526,40527,40528,40529,40530,40531,40532,40533,40534,40535,40536,40537,40538,40539,40540,40541,40542,40543,40544,40545,40546,40547,40548,40549,40550,40551,40552,40553,40554,40555,40556,40557,40558,40559,40560,40561,40562,40563,40564,40565,40566,40567,40568,40569,40570,40571,40572,40573,40574,40575,40576,40577,40578,40579,40580,40581,40582,40583,40584,40585,40586,40587,40588,40589,40590,40591,40592,40593,40594,40595,40596,40597,40598,40599,40600,40601,40602,40603,40604,40605,40606,40607,40608,40609,40610,40611,40612,40613,40614,40615,40616,40617,40618,40619,40620,40621,40622,40623,40624,40625,40626,40627,40628,40629,40630,40631,40632,40633,40634,40635,40636,40637,40638,40639,40640,40641,40642,40643,40644,40645,40646,40647,40648,40649,40650,40651,40652,40653,40654,40655,40656,40657,40658,40659,40660,40661,40662,40663,40664,40665,40666,40667,40668,40669,40670,40671,40672,40673,40674,40675,40676,40677,40678,40679,40680,40681,40682,40683,40684,40685,40686,40687,40688,40689,40690,40691,40692,40693,40694,40695,40696,40697,40698,40699,40700,40701,40702,40703,40704,40705,40706,40707,40708,40709,40710,40711,40712,40713,40714,40715,40716,40717,40718,40719,40720,40721,40722,40723,40724,40725,40726,40727,40728,40729,40730,40731,40732,40733,40734,40735,40736,40737,40738,40739,40740,40741,40742,40743,40744,40745,40746,40747,40748,40749,40750,40751,40752,40753,40754,40755,40756,40757,40758,40759,40760,40761,40762,40763,40764,40765,40766,40767,40768,40769,40770,40771,40772,40773,40774,40775,40776,40777,40778,40779,40780,40781,40782,40783,40784,40785,40786,40787,40788,40789,40790,40791,40792,40793,40794,40795,40796,40797,40798,40799,40800,40801,40802,40803,40804,40805,40806,40807,40808,40809,40810,40811,40812,40813,40814,40815,40816,40817,40818,40819,40820,40821,40822,40823,40824,40825,40826,40827,40828,40829,40830,40831,40832,40833,40834,40835,40836,40837,40838,40839,40840,40841,40842,40843,40844,40845,40846,40847,40848,40849,40850,40851,40852,40853,40854,40855,40856,40857,40858,40859,40860,40861,40862,40863,40864,40865,40866,40867,40868,40869,40870,40871,40872,40873,40874,40875,40876,40877,40878,40879,40880,40881,40882,40883,40884,40885,40886,40887,40888,40889,40890,40891,40892,40893,40894,40895,40896,40897,40898,40899,40900,40901,40902,40903,40904,40905,40906,40907,40908,40909,40910,40911,40912,40913,40914,40915,40916,40917,40918,40919,40920,40921,40922,40923,40924,40925,40926,40927,40928,40929,40930,40931,40932,40933,40934,40935,40936,40937,40938,40939,40940,40941,40942,40943,40944,40945,40946,40947,40948,40949,40950,40951,40952,40953,40954,40955,40956,40957,40958,40959,40960,40961,40962,40963,40964,40965,40966,40967,40968,40969,40970,40971,40972,40973,40974,40975,40976,40977,40978,40979,40980,40981,40982,40983,40984,40985,40986,40987,40988,40989,40990,40991,40992,40993,40994,40995,40996,40997,40998,40999,41000,41001,41002,41003,41004,41005,41006,41007,41008,41009,41010,41011,41012,41013,41014,41015,41016,41017,41018,41019,41020,41021,41022,41023,41024,41025,41026,41027,41028,41029,41030,41031,41032,41033,41034,41035,41036,41037,41038,41039,41040,41041,41042,41043,41044,41045,41046,41047,41048,41049,41050,41051,41052,41053,41054,41055,41056,41057,41058,41059,41060,41061,41062,41063,41064,41065,41066,41067,41068,41069,41070,41071,41072,41073,41074,41075,41076,41077,41078,41079,41080,41081,41082,41083,41084,41085,41086,41087,41088,41089,41090,41091,41092,41093,41094,41095,41096,41097,41098,41099,41100,41101,41102,41103,41104,41105,41106,41107,41108,41109,41110,41111,41112,41113,41114,41115,41116,41117,41118,41119,41120,41121,41122,41123,41124,41125,41126,41127,41128,41129,41130,41131,41132,41133,41134,41135,41136,41137,41138,41139,41140,41141,41142,41143,41144,41145,41146,41147,41148,41149,41150,41151,41152,41153,41154,41155,41156,41157,41158,41159,41160,41161,41162,41163,41164,41165,41166,41167,41168,41169,41170,41171,41172,41173,41174,41175,41176,41177,41178,41179,41180,41181,41182,41183,41184,41185,41186,41187,41188,41189,41190,41191,41192,41193,41194,41195,41196,41197,41198,41199,41200,41201,41202,41203,41204,41205,41206,41207,41208,41209,41210,41211,41212,41213,41214,41215,41216,41217,41218,41219,41220,41221,41222,41223,41224,41225,41226,41227,41228,41229,41230,41231,41232,41233,41234,41235,41236,41237,41238,41239,41240,41241,41242,41243,41244,41245,41246,41247,41248,41249,41250,41251,41252,41253,41254,41255,41256,41257,41258,41259,41260,41261,41262,41263,41264,41265,41266,41267,41268,41269,41270,41271,41272,41273,41274,41275,41276,41277,41278,41279,41280,41281,41282,41283,41284,41285,41286,41287,41288,41289,41290,41291,41292,41293,41294,41295,41296,41297,41298,41299,41300,41301,41302,41303,41304,41305,41306,41307,41308,41309,41310,41311,41312,41313,41314,41315,41316,41317,41318,41319,41320,41321,41322,41323,41324,41325,41326,41327,41328,41329,41330,41331,41332,41333,41334,41335,41336,41337,41338,41339,41340,41341,41342,41343,41344,41345,41346,41347,41348,41349,41350,41351,41352,41353,41354,41355,41356,41357,41358,41359,41360,41361,41362,41363,41364,41365,41366,41367,41368,41369,41370,41371,41372,41373,41374,41375,41376,41377,41378,41379,41380,41381,41382,41383,41384,41385,41386,41387,41388,41389,41390,41391,41392,41393,41394,41395,41396,41397,41398,41399,41400,41401,41402,41403,41404,41405,41406,41407,41408,41409,41410,41411,41412,41413,41414,41415,41416,41417,41418,41419,41420,41421,41422,41423,41424,41425,41426,41427,41428,41429,41430,41431,41432,41433,41434,41435,41436,41437,41438,41439,41440,41441,41442,41443,41444,41445,41446,41447,41448,41449,41450,41451,41452,41453,41454,41455,41456,41457,41458,41459,41460,41461,41462,41463,41464,41465,41466,41467,41468,41469,41470,41471,41472,41473,41474,41475,41476,41477,41478,41479,41480,41481,41482,41483,41484,41485,41486,41487,41488,41489,41490,41491,41492,41493,41494,41495,41496,41497,41498,41499,41500,41501,41502,41503,41504,41505,41506,41507,41508,41509,41510,41511,41512,41513,41514,41515,41516,41517,41518,41519,41520,41521,41522,41523,41524,41525,41526,41527,41528,41529,41530,41531,41532,41533,41534,41535,41536,41537,41538,41539,41540,41541,41542,41543,41544,41545,41546,41547,41548,41549,41550,41551,41552,41553,41554,41555,41556,41557,41558,41559,41560,41561,41562,41563,41564,41565,41566,41567,41568,41569,41570,41571,41572,41573,41574,41575,41576,41577,41578,41579,41580,41581,41582,41583,41584,41585,41586,41587,41588,41589,41590,41591,41592,41593,41594,41595,41596,41597,41598,41599,41600,41601,41602,41603,41604,41605,41606,41607,41608,41609,41610,41611,41612,41613,41614,41615,41616,41617,41618,41619,41620,41621,41622,41623,41624,41625,41626,41627,41628,41629,41630,41631,41632,41633,41634,41635,41636,41637,41638,41639,41640,41641,41642,41643,41644,41645,41646,41647,41648,41649,41650,41651,41652,41653,41654,41655,41656,41657,41658,41659,41660,41661,41662,41663,41664,41665,41666,41667,41668,41669,41670,41671,41672,41673,41674,41675,41676,41677,41678,41679,41680,41681,41682,41683,41684,41685,41686,41687,41688,41689,41690,41691,41692,41693,41694,41695,41696,41697,41698,41699,41700,41701,41702,41703,41704,41705,41706,41707,41708,41709,41710,41711,41712,41713,41714,41715,41716,41717,41718,41719,41720,41721,41722,41723,41724,41725,41726,41727,41728,41729,41730,41731,41732,41733,41734,41735,41736,41737,41738,41739,41740,41741,41742,41743,41744,41745,41746,41747,41748,41749,41750,41751,41752,41753,41754,41755,41756,41757,41758,41759,41760,41761,41762,41763,41764,41765,41766,41767,41768,41769,41770,41771,41772,41773,41774,41775,41776,41777,41778,41779,41780,41781,41782,41783,41784,41785,41786,41787,41788,41789,41790,41791,41792,41793,41794,41795,41796,41797,41798,41799,41800,41801,41802,41803,41804,41805,41806,41807,41808,41809,41810,41811,41812,41813,41814,41815,41816,41817,41818,41819,41820,41821,41822,41823,41824,41825,41826,41827,41828,41829,41830,41831,41832,41833,41834,41835,41836,41837,41838,41839,41840,41841,41842,41843,41844,41845,41846,41847,41848,41849,41850,41851,41852,41853,41854,41855,41856,41857,41858,41859,41860,41861,41862,41863,41864,41865,41866,41867,41868,41869,41870,41871,41872,41873,41874,41875,41876,41877,41878,41879,41880,41881,41882,41883,41884,41885,41886,41887,41888,41889,41890,41891,41892,41893,41894,41895,41896,41897,41898,41899,41900,41901,41902,41903,41904,41905,41906,41907,41908,41909,41910,41911,41912,41913,41914,41915,41916,41917,41918,41919,41920,41921,41922,41923,41924,41925,41926,41927,41928,41929,41930,41931,41932,41933,41934,41935,41936,41937,41938,41939,41940,41941,41942,41943,41944,41945,41946,41947,41948,41949,41950,41951,41952,41953,41954,41955,41956,41957,41958,41959,41960,41961,41962,41963,41964,41965,41966,41967,41968,41969,41970,41971,41972,41973,41974,41975,41976,41977,41978,41979,41980,41981,41982,41983,41984,41985,41986,41987,41988,41989,41990,41991,41992,41993,41994,41995,41996,41997,41998,41999,42000,42001,42002,42003,42004,42005,42006,42007,42008,42009,42010,42011,42012,42013,42014,42015,42016,42017,42018,42019,42020,42021,42022,42023,42024,42025,42026,42027,42028,42029,42030,42031,42032,42033,42034,42035,42036,42037,42038,42039,42040,42041,42042,42043,42044,42045,42046,42047,42048,42049,42050,42051,42052,42053,42054,42055,42056,42057,42058,42059,42060,42061,42062,42063,42064,42065,42066,42067,42068,42069,42070,42071,42072,42073,42074,42075,42076,42077,42078,42079,42080,42081,42082,42083,42084,42085,42086,42087,42088,42089,42090,42091,42092,42093,42094,42095,42096,42097,42098,42099,42100,42101,42102,42103,42104,42105,42106,42107,42108,42109,42110,42111,42112,42113,42114,42115,42116,42117,42118,42119,42120,42121,42122,42123,42124,42125,42126,42127,42128,42129,42130,42131,42132,42133,42134,42135,42136,42137,42138,42139,42140,42141,42142,42143,42144,42145,42146,42147,42148,42149,42150,42151,42152,42153,42154,42155,42156,42157,42158,42159,42160,42161,42162,42163,42164,42165,42166,42167,42168,42169,42170,42171,42172,42173,42174,42175,42176,42177,42178,42179,42180,42181,42182,42183,42184,42185,42186,42187,42188,42189,42190,42191,42192,42193,42194,42195,42196,42197,42198,42199,42200,42201,42202,42203,42204,42205,42206,42207,42208,42209,42210,42211,42212,42213,42214,42215,42216,42217,42218,42219,42220,42221,42222,42223,42224,42225,42226,42227,42228,42229,42230,42231,42232,42233,42234,42235,42236,42237,42238,42239,42240,42241,42242,42243,42244,42245,42246,42247,42248,42249,42250,42251,42252,42253,42254,42255,42256,42257,42258,42259,42260,42261,42262,42263,42264,42265,42266,42267,42268,42269,42270,42271,42272,42273,42274,42275,42276,42277,42278,42279,42280,42281,42282,42283,42284,42285,42286,42287,42288,42289,42290,42291,42292,42293,42294,42295,42296,42297,42298,42299,42300,42301,42302,42303,42304,42305,42306,42307,42308,42309,42310,42311,42312,42313,42314,42315,42316,42317,42318,42319,42320,42321,42322,42323,42324,42325,42326,42327,42328,42329,42330,42331,42332,42333,42334,42335,42336,42337,42338,42339,42340,42341,42342,42343,42344,42345,42346,42347,42348,42349,42350,42351,42352,42353,42354,42355,42356,42357,42358,42359,42360,42361,42362,42363,42364,42365,42366,42367,42368,42369,42370,42371,42372,42373,42374,42375,42376,42377,42378,42379,42380,42381,42382,42383,42384,42385,42386,42387,42388,42389,42390,42391,42392,42393,42394,42395,42396,42397,42398,42399,42400,42401,42402,42403,42404,42405,42406,42407,42408,42409,42410,42411,42412,42413,42414,42415,42416,42417,42418,42419,42420,42421,42422,42423,42424,42425,42426,42427,42428,42429,42430,42431,42432,42433,42434,42435,42436,42437,42438,42439,42440,42441,42442,42443,42444,42445,42446,42447,42448,42449,42450,42451,42452,42453,42454,42455,42456,42457,42458,42459,42460,42461,42462,42463,42464,42465,42466,42467,42468,42469,42470,42471,42472,42473,42474,42475,42476,42477,42478,42479,42480,42481,42482,42483,42484,42485,42486,42487,42488,42489,42490,42491,42492,42493,42494,42495,42496,42497,42498,42499,42500,42501,42502,42503,42504,42505,42506,42507,42508,42509,42510,42511,42512,42513,42514,42515,42516,42517,42518,42519,42520,42521,42522,42523,42524,42525,42526,42527,42528,42529,42530,42531,42532,42533,42534,42535,42536,42537,42538,42539,42540,42541,42542,42543,42544,42545,42546,42547,42548,42549,42550,42551,42552,42553,42554,42555,42556,42557,42558,42559,42560,42561,42562,42563,42564,42565,42566,42567,42568,42569,42570,42571,42572,42573,42574,42575,42576,42577,42578,42579,42580,42581,42582,42583,42584,42585,42586,42587,42588,42589,42590,42591,42592,42593,42594,42595,42596,42597,42598,42599,42600,42601,42602,42603,42604,42605,42606,42607,42608,42609,42610,42611,42612,42613,42614,42615,42616,42617,42618,42619,42620,42621,42622,42623,42624,42625,42626,42627,42628,42629,42630,42631,42632,42633,42634,42635,42636,42637,42638,42639,42640,42641,42642,42643,42644,42645,42646,42647,42648,42649,42650,42651,42652,42653,42654,42655,42656,42657,42658,42659,42660,42661,42662,42663,42664,42665,42666,42667,42668,42669,42670,42671,42672,42673,42674,42675,42676,42677,42678,42679,42680,42681,42682,42683,42684,42685,42686,42687,42688,42689,42690,42691,42692,42693,42694,42695,42696,42697,42698,42699,42700,42701,42702,42703,42704,42705,42706,42707,42708,42709,42710,42711,42712,42713,42714,42715,42716,42717,42718,42719,42720,42721,42722,42723,42724,42725,42726,42727,42728,42729,42730,42731,42732,42733,42734,42735,42736,42737,42738,42739,42740,42741,42742,42743,42744,42745,42746,42747,42748,42749,42750,42751,42752,42753,42754,42755,42756,42757,42758,42759,42760,42761,42762,42763,42764,42765,42766,42767,42768,42769,42770,42771,42772,42773,42774,42775,42776,42777,42778,42779,42780,42781,42782,42783,42784,42785,42786,42787,42788,42789,42790,42791,42792,42793,42794,42795,42796,42797,42798,42799,42800,42801,42802,42803,42804,42805,42806,42807,42808,42809,42810,42811,42812,42813,42814,42815,42816,42817,42818,42819,42820,42821,42822,42823,42824,42825,42826,42827,42828,42829,42830,42831,42832,42833,42834,42835,42836,42837,42838,42839,42840,42841,42842,42843,42844,42845,42846,42847,42848,42849,42850,42851,42852,42853,42854,42855,42856,42857,42858,42859,42860,42861,42862,42863,42864,42865,42866,42867,42868,42869,42870,42871,42872,42873,42874,42875,42876,42877,42878,42879,42880,42881,42882,42883,42884,42885,42886,42887,42888,42889,42890,42891,42892,42893,42894,42895,42896,42897,42898,42899,42900,42901,42902,42903,42904,42905,42906,42907,42908,42909,42910,42911,42912,42913,42914,42915,42916,42917,42918,42919,42920,42921,42922,42923,42924,42925,42926,42927,42928,42929,42930,42931,42932,42933,42934,42935,42936,42937,42938,42939,42940,42941,42942,42943,42944,42945,42946,42947,42948,42949,42950,42951,42952,42953,42954,42955,42956,42957,42958,42959,42960,42961,42962,42963,42964,42965,42966,42967,42968,42969,42970,42971,42972,42973,42974,42975,42976,42977,42978,42979,42980,42981,42982,42983,42984,42985,42986,42987,42988,42989,42990,42991,42992,42993,42994,42995,42996,42997,42998,42999,43000,43001,43002,43003,43004,43005,43006,43007,43008,43009,43010,43011,43012,43013,43014,43015,43016,43017,43018,43019,43020,43021,43022,43023,43024,43025,43026,43027,43028,43029,43030,43031,43032,43033,43034,43035,43036,43037,43038,43039,43040,43041,43042,43043,43044,43045,43046,43047,43048,43049,43050,43051,43052,43053,43054,43055,43056,43057,43058,43059,43060,43061,43062,43063,43064,43065,43066,43067,43068,43069,43070,43071,43072,43073,43074,43075,43076,43077,43078,43079,43080,43081,43082,43083,43084,43085,43086,43087,43088,43089,43090,43091,43092,43093,43094,43095,43096,43097,43098,43099,43100,43101,43102,43103,43104,43105,43106,43107,43108,43109,43110,43111,43112,43113,43114,43115,43116,43117,43118,43119,43120,43121,43122,43123,43124,43125,43126,43127,43128,43129,43130,43131,43132,43133,43134,43135,43136,43137,43138,43139,43140,43141,43142,43143,43144,43145,43146,43147,43148,43149,43150,43151,43152,43153,43154,43155,43156,43157,43158,43159,43160,43161,43162,43163,43164,43165,43166,43167,43168,43169,43170,43171,43172,43173,43174,43175,43176,43177,43178,43179,43180,43181,43182,43183,43184,43185,43186,43187,43188,43189,43190,43191,43192,43193,43194,43195,43196,43197,43198,43199,43200,43201,43202,43203,43204,43205,43206,43207,43208,43209,43210,43211,43212,43213,43214,43215,43216,43217,43218,43219,43220,43221,43222,43223,43224,43225,43226,43227,43228,43229,43230,43231,43232,43233,43234,43235,43236,43237,43238,43239,43240,43241,43242,43243,43244,43245,43246,43247,43248,43249,43250,43251,43252,43253,43254,43255,43256,43257,43258,43259,43260,43261,43262,43263,43264,43265,43266,43267,43268,43269,43270,43271,43272,43273,43274,43275,43276,43277,43278,43279,43280,43281,43282,43283,43284,43285,43286,43287,43288,43289,43290,43291,43292,43293,43294,43295,43296,43297,43298,43299,43300,43301,43302,43303,43304,43305,43306,43307,43308,43309,43310,43311,43312,43313,43314,43315,43316,43317,43318,43319,43320,43321,43322,43323,43324,43325,43326,43327,43328,43329,43330,43331,43332,43333,43334,43335,43336,43337,43338,43339,43340,43341,43342,43343,43344,43345,43346,43347,43348,43349,43350,43351,43352,43353,43354,43355,43356,43357,43358,43359,43360,43361,43362,43363,43364,43365,43366,43367,43368,43369,43370,43371,43372,43373,43374,43375,43376,43377,43378,43379,43380,43381,43382,43383,43384,43385,43386,43387,43388,43389,43390,43391,43392,43393,43394,43395,43396,43397,43398,43399,43400,43401,43402,43403,43404,43405,43406,43407,43408,43409,43410,43411,43412,43413,43414,43415,43416,43417,43418,43419,43420,43421,43422,43423,43424,43425,43426,43427,43428,43429,43430,43431,43432,43433,43434,43435,43436,43437,43438,43439,43440,43441,43442,43443,43444,43445,43446,43447,43448,43449,43450,43451,43452,43453,43454,43455,43456,43457,43458,43459,43460,43461,43462,43463,43464,43465,43466,43467,43468,43469,43470,43471,43472,43473,43474,43475,43476,43477,43478,43479,43480,43481,43482,43483,43484,43485,43486,43487,43488,43489,43490,43491,43492,43493,43494,43495,43496,43497,43498,43499,43500,43501,43502,43503,43504,43505,43506,43507,43508,43509,43510,43511,43512,43513,43514,43515,43516,43517,43518,43519,43520,43521,43522,43523,43524,43525,43526,43527,43528,43529,43530,43531,43532,43533,43534,43535,43536,43537,43538,43539,43540,43541,43542,43543,43544,43545,43546,43547,43548,43549,43550,43551,43552,43553,43554,43555,43556,43557,43558,43559,43560,43561,43562,43563,43564,43565,43566,43567,43568,43569,43570,43571,43572,43573,43574,43575,43576,43577,43578,43579,43580,43581,43582,43583,43584,43585,43586,43587,43588,43589,43590,43591,43592,43593,43594,43595,43596,43597,43598,43599,43600,43601,43602,43603,43604,43605,43606,43607,43608,43609,43610,43611,43612,43613,43614,43615,43616,43617,43618,43619,43620,43621,43622,43623,43624,43625,43626,43627,43628,43629,43630,43631,43632,43633,43634,43635,43636,43637,43638,43639,43640,43641,43642,43643,43644,43645,43646,43647,43648,43649,43650,43651,43652,43653,43654,43655,43656,43657,43658,43659,43660,43661,43662,43663,43664,43665,43666,43667,43668,43669,43670,43671,43672,43673,43674,43675,43676,43677,43678,43679,43680,43681,43682,43683,43684,43685,43686,43687,43688,43689,43690,43691,43692,43693,43694,43695,43696,43697,43698,43699,43700,43701,43702,43703,43704,43705,43706,43707,43708,43709,43710,43711,43712,43713,43714,43715,43716,43717,43718,43719,43720,43721,43722,43723,43724,43725,43726,43727,43728,43729,43730,43731,43732,43733,43734,43735,43736,43737,43738,43739,43740,43741,43742,43743,43744,43745,43746,43747,43748,43749,43750,43751,43752,43753,43754,43755,43756,43757,43758,43759,43760,43761,43762,43763,43764,43765,43766,43767,43768,43769,43770,43771,43772,43773,43774,43775,43776,43777,43778,43779,43780,43781,43782,43783,43784,43785,43786,43787,43788,43789,43790,43791,43792,43793,43794,43795,43796,43797,43798,43799,43800,43801,43802,43803,43804,43805,43806,43807,43808,43809,43810,43811,43812,43813,43814,43815,43816,43817,43818,43819,43820,43821,43822,43823,43824,43825,43826,43827,43828,43829,43830,43831,43832,43833,43834,43835,43836,43837,43838,43839,43840,43841,43842,43843,43844,43845,43846,43847,43848,43849,43850,43851,43852,43853,43854,43855,43856,43857,43858,43859,43860,43861,43862,43863,43864,43865,43866,43867,43868,43869,43870,43871,43872,43873,43874,43875,43876,43877,43878,43879,43880,43881,43882,43883,43884,43885,43886,43887,43888,43889,43890,43891,43892,43893,43894,43895,43896,43897,43898,43899,43900,43901,43902,43903,43904,43905,43906,43907,43908,43909,43910,43911,43912,43913,43914,43915,43916,43917,43918,43919,43920,43921,43922,43923,43924,43925,43926,43927,43928,43929,43930,43931,43932,43933,43934,43935,43936,43937,43938,43939,43940,43941,43942,43943,43944,43945,43946,43947,43948,43949,43950,43951,43952,43953,43954,43955,43956,43957,43958,43959,43960,43961,43962,43963,43964,43965,43966,43967,43968,43969,43970,43971,43972,43973,43974,43975,43976,43977,43978,43979,43980,43981,43982,43983,43984,43985,43986,43987,43988,43989,43990,43991,43992,43993,43994,43995,43996,43997,43998,43999,44000,44001,44002,44003,44004,44005,44006,44007,44008,44009,44010,44011,44012,44013,44014,44015,44016,44017,44018,44019,44020,44021,44022,44023,44024,44025,44026,44027,44028,44029,44030,44031,44032,44033,44034,44035,44036,44037,44038,44039,44040,44041,44042,44043,44044,44045,44046,44047,44048,44049,44050,44051,44052,44053,44054,44055,44056,44057,44058,44059,44060,44061,44062,44063,44064,44065,44066,44067,44068,44069,44070,44071,44072,44073,44074,44075,44076,44077,44078,44079,44080,44081,44082,44083,44084,44085,44086,44087,44088,44089,44090,44091,44092,44093,44094,44095,44096,44097,44098,44099,44100,44101,44102,44103,44104,44105,44106,44107,44108,44109,44110,44111,44112,44113,44114,44115,44116,44117,44118,44119,44120,44121,44122,44123,44124,44125,44126,44127,44128,44129,44130,44131,44132,44133,44134,44135,44136,44137,44138,44139,44140,44141,44142,44143,44144,44145,44146,44147,44148,44149,44150,44151,44152,44153,44154,44155,44156,44157,44158,44159,44160,44161,44162,44163,44164,44165,44166,44167,44168,44169,44170,44171,44172,44173,44174,44175,44176,44177,44178,44179,44180,44181,44182,44183,44184,44185,44186,44187,44188,44189,44190,44191,44192,44193,44194,44195,44196,44197,44198,44199,44200,44201,44202,44203,44204,44205,44206,44207,44208,44209,44210,44211,44212,44213,44214,44215,44216,44217,44218,44219,44220,44221,44222,44223,44224,44225,44226,44227,44228,44229,44230,44231,44232,44233,44234,44235,44236,44237,44238,44239,44240,44241,44242,44243,44244,44245,44246,44247,44248,44249,44250,44251,44252,44253,44254,44255,44256,44257,44258,44259,44260,44261,44262,44263,44264,44265,44266,44267,44268,44269,44270,44271,44272,44273,44274,44275,44276,44277,44278,44279,44280,44281,44282,44283,44284,44285,44286,44287,44288,44289,44290,44291,44292,44293,44294,44295,44296,44297,44298,44299,44300,44301,44302,44303,44304,44305,44306,44307,44308,44309,44310,44311,44312,44313,44314,44315,44316,44317,44318,44319,44320,44321,44322,44323,44324,44325,44326,44327,44328,44329,44330,44331,44332,44333,44334,44335,44336,44337,44338,44339,44340,44341,44342,44343,44344,44345,44346,44347,44348,44349,44350,44351,44352,44353,44354,44355,44356,44357,44358,44359,44360,44361,44362,44363,44364,44365,44366,44367,44368,44369,44370,44371,44372,44373,44374,44375,44376,44377,44378,44379,44380,44381,44382,44383,44384,44385,44386,44387,44388,44389,44390,44391,44392,44393,44394,44395,44396,44397,44398,44399,44400,44401,44402,44403,44404,44405,44406,44407,44408,44409,44410,44411,44412,44413,44414,44415,44416,44417,44418,44419,44420,44421,44422,44423,44424,44425,44426,44427,44428,44429,44430,44431,44432,44433,44434,44435,44436,44437,44438,44439,44440,44441,44442,44443,44444,44445,44446,44447,44448,44449,44450,44451,44452,44453,44454,44455,44456,44457,44458,44459,44460,44461,44462,44463,44464,44465,44466,44467,44468,44469,44470,44471,44472,44473,44474,44475,44476,44477,44478,44479,44480,44481,44482,44483,44484,44485,44486,44487,44488,44489,44490,44491,44492,44493,44494,44495,44496,44497,44498,44499,44500,44501,44502,44503,44504,44505,44506,44507,44508,44509,44510,44511,44512,44513,44514,44515,44516,44517,44518,44519,44520,44521,44522,44523,44524,44525,44526,44527,44528,44529,44530,44531,44532,44533,44534,44535,44536,44537,44538,44539,44540,44541,44542,44543,44544,44545,44546,44547,44548,44549,44550,44551,44552,44553,44554,44555,44556,44557,44558,44559,44560,44561,44562,44563,44564,44565,44566,44567,44568,44569,44570,44571,44572,44573,44574,44575,44576,44577,44578,44579,44580,44581,44582,44583,44584,44585,44586,44587,44588,44589,44590,44591,44592,44593,44594,44595,44596,44597,44598,44599,44600,44601,44602,44603,44604,44605,44606,44607,44608,44609,44610,44611,44612,44613,44614,44615,44616,44617,44618,44619,44620,44621,44622,44623,44624,44625,44626,44627,44628,44629,44630,44631,44632,44633,44634,44635,44636,44637,44638,44639,44640,44641,44642,44643,44644,44645,44646,44647,44648,44649,44650,44651,44652,44653,44654,44655,44656,44657,44658,44659,44660,44661,44662,44663,44664,44665,44666,44667,44668,44669,44670,44671,44672,44673,44674,44675,44676,44677,44678,44679,44680,44681,44682,44683,44684,44685,44686,44687,44688,44689,44690,44691,44692,44693,44694,44695,44696,44697,44698,44699,44700,44701,44702,44703,44704,44705,44706,44707,44708,44709,44710,44711,44712,44713,44714,44715,44716,44717,44718,44719,44720,44721,44722,44723,44724,44725,44726,44727,44728,44729,44730,44731,44732,44733,44734,44735,44736,44737,44738,44739,44740,44741,44742,44743,44744,44745,44746,44747,44748,44749,44750,44751,44752,44753,44754,44755,44756,44757,44758,44759,44760,44761,44762,44763,44764,44765,44766,44767,44768,44769,44770,44771,44772,44773,44774,44775,44776,44777,44778,44779,44780,44781,44782,44783,44784,44785,44786,44787,44788,44789,44790,44791,44792,44793,44794,44795,44796,44797,44798,44799,44800,44801,44802,44803,44804,44805,44806,44807,44808,44809,44810,44811,44812,44813,44814,44815,44816,44817,44818,44819,44820,44821,44822,44823,44824,44825,44826,44827,44828,44829,44830,44831,44832,44833,44834,44835,44836,44837,44838,44839,44840,44841,44842,44843,44844,44845,44846,44847,44848,44849,44850,44851,44852,44853,44854,44855,44856,44857,44858,44859,44860,44861,44862,44863,44864,44865,44866,44867,44868,44869,44870,44871,44872,44873,44874,44875,44876,44877,44878,44879,44880,44881,44882,44883,44884,44885,44886,44887,44888,44889,44890,44891,44892,44893,44894,44895,44896,44897,44898,44899,44900,44901,44902,44903,44904,44905,44906,44907,44908,44909,44910,44911,44912,44913,44914,44915,44916,44917,44918,44919,44920,44921,44922,44923,44924,44925,44926,44927,44928,44929,44930,44931,44932,44933,44934,44935,44936,44937,44938,44939,44940,44941,44942,44943,44944,44945,44946,44947,44948,44949,44950,44951,44952,44953,44954,44955,44956,44957,44958,44959,44960,44961,44962,44963,44964,44965,44966,44967,44968,44969,44970,44971,44972,44973,44974,44975,44976,44977,44978,44979,44980,44981,44982,44983,44984,44985,44986,44987,44988,44989,44990,44991,44992,44993,44994,44995,44996,44997,44998,44999,45000,45001,45002,45003,45004,45005,45006,45007,45008,45009,45010,45011,45012,45013,45014,45015,45016,45017,45018,45019,45020,45021,45022,45023,45024,45025,45026,45027,45028,45029,45030,45031,45032,45033,45034,45035,45036,45037,45038,45039,45040,45041,45042,45043,45044,45045,45046,45047,45048,45049,45050,45051,45052,45053,45054,45055,45056,45057,45058,45059,45060,45061,45062,45063,45064,45065,45066,45067,45068,45069,45070,45071,45072,45073,45074,45075,45076,45077,45078,45079,45080,45081,45082,45083,45084,45085,45086,45087,45088,45089,45090,45091,45092,45093,45094,45095,45096,45097,45098,45099,45100,45101,45102,45103,45104,45105,45106,45107,45108,45109,45110,45111,45112,45113,45114,45115,45116,45117,45118,45119,45120,45121,45122,45123,45124,45125,45126,45127,45128,45129,45130,45131,45132,45133,45134,45135,45136,45137,45138,45139,45140,45141,45142,45143,45144,45145,45146,45147,45148,45149,45150,45151,45152,45153,45154,45155,45156,45157,45158,45159,45160,45161,45162,45163,45164,45165,45166,45167,45168,45169,45170,45171,45172,45173,45174,45175,45176,45177,45178,45179,45180,45181,45182,45183,45184,45185,45186,45187,45188,45189,45190,45191,45192,45193,45194,45195,45196,45197,45198,45199,45200,45201,45202,45203,45204,45205,45206,45207,45208,45209,45210,45211,45212,45213,45214,45215,45216,45217,45218,45219,45220,45221,45222,45223,45224,45225,45226,45227,45228,45229,45230,45231,45232,45233,45234,45235,45236,45237,45238,45239,45240,45241,45242,45243,45244,45245,45246,45247,45248,45249,45250,45251,45252,45253,45254,45255,45256,45257,45258,45259,45260,45261,45262,45263,45264,45265,45266,45267,45268,45269,45270,45271,45272,45273,45274,45275,45276,45277,45278,45279,45280,45281,45282,45283,45284,45285,45286,45287,45288,45289,45290,45291,45292,45293,45294,45295,45296,45297,45298,45299,45300,45301,45302,45303,45304,45305,45306,45307,45308,45309,45310,45311,45312,45313,45314,45315,45316,45317,45318,45319,45320,45321,45322,45323,45324,45325,45326,45327,45328,45329,45330,45331,45332,45333,45334,45335,45336,45337,45338,45339,45340,45341,45342,45343,45344,45345,45346,45347,45348,45349,45350,45351,45352,45353,45354,45355,45356,45357,45358,45359,45360,45361,45362,45363,45364,45365,45366,45367,45368,45369,45370,45371,45372,45373,45374,45375,45376,45377,45378,45379,45380,45381,45382,45383,45384,45385,45386,45387,45388,45389,45390,45391,45392,45393,45394,45395,45396,45397,45398,45399,45400,45401,45402,45403,45404,45405,45406,45407,45408,45409,45410,45411,45412,45413,45414,45415,45416,45417,45418,45419,45420,45421,45422,45423,45424,45425,45426,45427,45428,45429,45430,45431,45432,45433,45434,45435,45436,45437,45438,45439,45440,45441,45442,45443,45444,45445,45446,45447,45448,45449,45450,45451,45452,45453,45454,45455,45456,45457,45458,45459,45460,45461,45462,45463,45464,45465,45466,45467,45468,45469,45470,45471,45472,45473,45474,45475,45476,45477,45478,45479,45480,45481,45482,45483,45484,45485,45486,45487,45488,45489,45490,45491,45492,45493,45494,45495,45496,45497,45498,45499,45500,45501,45502,45503,45504,45505,45506,45507,45508,45509,45510,45511,45512,45513,45514,45515,45516,45517,45518,45519,45520,45521,45522,45523,45524,45525,45526,45527,45528,45529,45530,45531,45532,45533,45534,45535,45536,45537,45538,45539,45540,45541,45542,45543,45544,45545,45546,45547,45548,45549,45550,45551,45552,45553,45554,45555,45556,45557,45558,45559,45560,45561,45562,45563,45564,45565,45566,45567,45568,45569,45570,45571,45572,45573,45574,45575,45576,45577,45578,45579,45580,45581,45582,45583,45584,45585,45586,45587,45588,45589,45590,45591,45592,45593,45594,45595,45596,45597,45598,45599,45600,45601,45602,45603,45604,45605,45606,45607,45608,45609,45610,45611,45612,45613,45614,45615,45616,45617,45618,45619,45620,45621,45622,45623,45624,45625,45626,45627,45628,45629,45630,45631,45632,45633,45634,45635,45636,45637,45638,45639,45640,45641,45642,45643,45644,45645,45646,45647,45648,45649,45650,45651,45652,45653,45654,45655,45656,45657,45658,45659,45660,45661,45662,45663,45664,45665,45666,45667,45668,45669,45670,45671,45672,45673,45674,45675,45676,45677,45678,45679,45680,45681,45682,45683,45684,45685,45686,45687,45688,45689,45690,45691,45692,45693,45694,45695,45696,45697,45698,45699,45700,45701,45702,45703,45704,45705,45706,45707,45708,45709,45710,45711,45712,45713,45714,45715,45716,45717,45718,45719,45720,45721,45722,45723,45724,45725,45726,45727,45728,45729,45730,45731,45732,45733,45734,45735,45736,45737,45738,45739,45740,45741,45742,45743,45744,45745,45746,45747,45748,45749,45750,45751,45752,45753,45754,45755,45756,45757,45758,45759,45760,45761,45762,45763,45764,45765,45766,45767,45768,45769,45770,45771,45772,45773,45774,45775,45776,45777,45778,45779,45780,45781,45782,45783,45784,45785,45786,45787,45788,45789,45790,45791,45792,45793,45794,45795,45796,45797,45798,45799,45800,45801,45802,45803,45804,45805,45806,45807,45808,45809,45810,45811,45812,45813,45814,45815,45816,45817,45818,45819,45820,45821,45822,45823,45824,45825,45826,45827,45828,45829,45830,45831,45832,45833,45834,45835,45836,45837,45838,45839,45840,45841,45842,45843,45844,45845,45846,45847,45848,45849,45850,45851,45852,45853,45854,45855,45856,45857,45858,45859,45860,45861,45862,45863,45864,45865,45866,45867,45868,45869,45870,45871,45872,45873,45874,45875,45876,45877,45878,45879,45880,45881,45882,45883,45884,45885,45886,45887,45888,45889,45890,45891,45892,45893,45894,45895,45896,45897,45898,45899,45900,45901,45902,45903,45904,45905,45906,45907,45908,45909,45910,45911,45912,45913,45914,45915,45916,45917,45918,45919,45920,45921,45922,45923,45924,45925,45926,45927,45928,45929,45930,45931,45932,45933,45934,45935,45936,45937,45938,45939,45940,45941,45942,45943,45944,45945,45946,45947,45948,45949,45950,45951,45952,45953,45954,45955,45956,45957,45958,45959,45960,45961,45962,45963,45964,45965,45966,45967,45968,45969,45970,45971,45972,45973,45974,45975,45976,45977,45978,45979,45980,45981,45982,45983,45984,45985,45986,45987,45988,45989,45990,45991,45992,45993,45994,45995,45996,45997,45998,45999,46000,46001,46002,46003,46004,46005,46006,46007,46008,46009,46010,46011,46012,46013,46014,46015,46016,46017,46018,46019,46020,46021,46022,46023,46024,46025,46026,46027,46028,46029,46030,46031,46032,46033,46034,46035,46036,46037,46038,46039,46040,46041,46042,46043,46044,46045,46046,46047,46048,46049,46050,46051,46052,46053,46054,46055,46056,46057,46058,46059,46060,46061,46062,46063,46064,46065,46066,46067,46068,46069,46070,46071,46072,46073,46074,46075,46076,46077,46078,46079,46080,46081,46082,46083,46084,46085,46086,46087,46088,46089,46090,46091,46092,46093,46094,46095,46096,46097,46098,46099,46100,46101,46102,46103,46104,46105,46106,46107,46108,46109,46110,46111,46112,46113,46114,46115,46116,46117,46118,46119,46120,46121,46122,46123,46124,46125,46126,46127,46128,46129,46130,46131,46132,46133,46134,46135,46136,46137,46138,46139,46140,46141,46142,46143,46144,46145,46146,46147,46148,46149,46150,46151,46152,46153,46154,46155,46156,46157,46158,46159,46160,46161,46162,46163,46164,46165,46166,46167,46168,46169,46170,46171,46172,46173,46174,46175,46176,46177,46178,46179,46180,46181,46182,46183,46184,46185,46186,46187,46188,46189,46190,46191,46192,46193,46194,46195,46196,46197,46198,46199,46200,46201,46202,46203,46204,46205,46206,46207,46208,46209,46210,46211,46212,46213,46214,46215,46216,46217,46218,46219,46220,46221,46222,46223,46224,46225,46226,46227,46228,46229,46230,46231,46232,46233,46234,46235,46236,46237,46238,46239,46240,46241,46242,46243,46244,46245,46246,46247,46248,46249,46250,46251,46252,46253,46254,46255,46256,46257,46258,46259,46260,46261,46262,46263,46264,46265,46266,46267,46268,46269,46270,46271,46272,46273,46274,46275,46276,46277,46278,46279,46280,46281,46282,46283,46284,46285,46286,46287,46288,46289,46290,46291,46292,46293,46294,46295,46296,46297,46298,46299,46300,46301,46302,46303,46304,46305,46306,46307,46308,46309,46310,46311,46312,46313,46314,46315,46316,46317,46318,46319,46320,46321,46322,46323,46324,46325,46326,46327,46328,46329,46330,46331,46332,46333,46334,46335,46336,46337,46338,46339,46340,46341,46342,46343,46344,46345,46346,46347,46348,46349,46350,46351,46352,46353,46354,46355,46356,46357,46358,46359,46360,46361,46362,46363,46364,46365,46366,46367,46368,46369,46370,46371,46372,46373,46374,46375,46376,46377,46378,46379,46380,46381,46382,46383,46384,46385,46386,46387,46388,46389,46390,46391,46392,46393,46394,46395,46396,46397,46398,46399,46400,46401,46402,46403,46404,46405,46406,46407,46408,46409,46410,46411,46412,46413,46414,46415,46416,46417,46418,46419,46420,46421,46422,46423,46424,46425,46426,46427,46428,46429,46430,46431,46432,46433,46434,46435,46436,46437,46438,46439,46440,46441,46442,46443,46444,46445,46446,46447,46448,46449,46450,46451,46452,46453,46454,46455,46456,46457,46458,46459,46460,46461,46462,46463,46464,46465,46466,46467,46468,46469,46470,46471,46472,46473,46474,46475,46476,46477,46478,46479,46480,46481,46482,46483,46484,46485,46486,46487,46488,46489,46490,46491,46492,46493,46494,46495,46496,46497,46498,46499,46500,46501,46502,46503,46504,46505,46506,46507,46508,46509,46510,46511,46512,46513,46514,46515,46516,46517,46518,46519,46520,46521,46522,46523,46524,46525,46526,46527,46528,46529,46530,46531,46532,46533,46534,46535,46536,46537,46538,46539,46540,46541,46542,46543,46544,46545,46546,46547,46548,46549,46550,46551,46552,46553,46554,46555,46556,46557,46558,46559,46560,46561,46562,46563,46564,46565,46566,46567,46568,46569,46570,46571,46572,46573,46574,46575,46576,46577,46578,46579,46580,46581,46582,46583,46584,46585,46586,46587,46588,46589,46590,46591,46592,46593,46594,46595,46596,46597,46598,46599,46600,46601,46602,46603,46604,46605,46606,46607,46608,46609,46610,46611,46612,46613,46614,46615,46616,46617,46618,46619,46620,46621,46622,46623,46624,46625,46626,46627,46628,46629,46630,46631,46632,46633,46634,46635,46636,46637,46638,46639,46640,46641,46642,46643,46644,46645,46646,46647,46648,46649,46650,46651,46652,46653,46654,46655,46656,46657,46658,46659,46660,46661,46662,46663,46664,46665,46666,46667,46668,46669,46670,46671,46672,46673,46674,46675,46676,46677,46678,46679,46680,46681,46682,46683,46684,46685,46686,46687,46688,46689,46690,46691,46692,46693,46694,46695,46696,46697,46698,46699,46700,46701,46702,46703,46704,46705,46706,46707,46708,46709,46710,46711,46712,46713,46714,46715,46716,46717,46718,46719,46720,46721,46722,46723,46724,46725,46726,46727,46728,46729,46730,46731,46732,46733,46734,46735,46736,46737,46738,46739,46740,46741,46742,46743,46744,46745,46746,46747,46748,46749,46750,46751,46752,46753,46754,46755,46756,46757,46758,46759,46760,46761,46762,46763,46764,46765,46766,46767,46768,46769,46770,46771,46772,46773,46774,46775,46776,46777,46778,46779,46780,46781,46782,46783,46784,46785,46786,46787,46788,46789,46790,46791,46792,46793,46794,46795,46796,46797,46798,46799,46800,46801,46802,46803,46804,46805,46806,46807,46808,46809,46810,46811,46812,46813,46814,46815,46816,46817,46818,46819,46820,46821,46822,46823,46824,46825,46826,46827,46828,46829,46830,46831,46832,46833,46834,46835,46836,46837,46838,46839,46840,46841,46842,46843,46844,46845,46846,46847,46848,46849,46850,46851,46852,46853,46854,46855,46856,46857,46858,46859,46860,46861,46862,46863,46864,46865,46866,46867,46868,46869,46870,46871,46872,46873,46874,46875,46876,46877,46878,46879,46880,46881,46882,46883,46884,46885,46886,46887,46888,46889,46890,46891,46892,46893,46894,46895,46896,46897,46898,46899,46900,46901,46902,46903,46904,46905,46906,46907,46908,46909,46910,46911,46912,46913,46914,46915,46916,46917,46918,46919,46920,46921,46922,46923,46924,46925,46926,46927,46928,46929,46930,46931,46932,46933,46934,46935,46936,46937,46938,46939,46940,46941,46942,46943,46944,46945,46946,46947,46948,46949,46950,46951,46952,46953,46954,46955,46956,46957,46958,46959,46960,46961,46962,46963,46964,46965,46966,46967,46968,46969,46970,46971,46972,46973,46974,46975,46976,46977,46978,46979,46980,46981,46982,46983,46984,46985,46986,46987,46988,46989,46990,46991,46992,46993,46994,46995,46996,46997,46998,46999,47000,47001,47002,47003,47004,47005,47006,47007,47008,47009,47010,47011,47012,47013,47014,47015,47016,47017,47018,47019,47020,47021,47022,47023,47024,47025,47026,47027,47028,47029,47030,47031,47032,47033,47034,47035,47036,47037,47038,47039,47040,47041,47042,47043,47044,47045,47046,47047,47048,47049,47050,47051,47052,47053,47054,47055,47056,47057,47058,47059,47060,47061,47062,47063,47064,47065,47066,47067,47068,47069,47070,47071,47072,47073,47074,47075,47076,47077,47078,47079,47080,47081,47082,47083,47084,47085,47086,47087,47088,47089,47090,47091,47092,47093,47094,47095,47096,47097,47098,47099,47100,47101,47102,47103,47104,47105,47106,47107,47108,47109,47110,47111,47112,47113,47114,47115,47116,47117,47118,47119,47120,47121,47122,47123,47124,47125,47126,47127,47128,47129,47130,47131,47132,47133,47134,47135,47136,47137,47138,47139,47140,47141,47142,47143,47144,47145,47146,47147,47148,47149,47150,47151,47152,47153,47154,47155,47156,47157,47158,47159,47160,47161,47162,47163,47164,47165,47166,47167,47168,47169,47170,47171,47172,47173,47174,47175,47176,47177,47178,47179,47180,47181,47182,47183,47184,47185,47186,47187,47188,47189,47190,47191,47192,47193,47194,47195,47196,47197,47198,47199,47200,47201,47202,47203,47204,47205,47206,47207,47208,47209,47210,47211,47212,47213,47214,47215,47216,47217,47218,47219,47220,47221,47222,47223,47224,47225,47226,47227,47228,47229,47230,47231,47232,47233,47234,47235,47236,47237,47238,47239,47240,47241,47242,47243,47244,47245,47246,47247,47248,47249,47250,47251,47252,47253,47254,47255,47256,47257,47258,47259,47260,47261,47262,47263,47264,47265,47266,47267,47268,47269,47270,47271,47272,47273,47274,47275,47276,47277,47278,47279,47280,47281,47282,47283,47284,47285,47286,47287,47288,47289,47290,47291,47292,47293,47294,47295,47296,47297,47298,47299,47300,47301,47302,47303,47304,47305,47306,47307,47308,47309,47310,47311,47312,47313,47314,47315,47316,47317,47318,47319,47320,47321,47322,47323,47324,47325,47326,47327,47328,47329,47330,47331,47332,47333,47334,47335,47336,47337,47338,47339,47340,47341,47342,47343,47344,47345,47346,47347,47348,47349,47350,47351,47352,47353,47354,47355,47356,47357,47358,47359,47360,47361,47362,47363,47364,47365,47366,47367,47368,47369,47370,47371,47372,47373,47374,47375,47376,47377,47378,47379,47380,47381,47382,47383,47384,47385,47386,47387,47388,47389,47390,47391,47392,47393,47394,47395,47396,47397,47398,47399,47400,47401,47402,47403,47404,47405,47406,47407,47408,47409,47410,47411,47412,47413,47414,47415,47416,47417,47418,47419,47420,47421,47422,47423,47424,47425,47426,47427,47428,47429,47430,47431,47432,47433,47434,47435,47436,47437,47438,47439,47440,47441,47442,47443,47444,47445,47446,47447,47448,47449,47450,47451,47452,47453,47454,47455,47456,47457,47458,47459,47460,47461,47462,47463,47464,47465,47466,47467,47468,47469,47470,47471,47472,47473,47474,47475,47476,47477,47478,47479,47480,47481,47482,47483,47484,47485,47486,47487,47488,47489,47490,47491,47492,47493,47494,47495,47496,47497,47498,47499,47500,47501,47502,47503,47504,47505,47506,47507,47508,47509,47510,47511,47512,47513,47514,47515,47516,47517,47518,47519,47520,47521,47522,47523,47524,47525,47526,47527,47528,47529,47530,47531,47532,47533,47534,47535,47536,47537,47538,47539,47540,47541,47542,47543,47544,47545,47546,47547,47548,47549,47550,47551,47552,47553,47554,47555,47556,47557,47558,47559,47560,47561,47562,47563,47564,47565,47566,47567,47568,47569,47570,47571,47572,47573,47574,47575,47576,47577,47578,47579,47580,47581,47582,47583,47584,47585,47586,47587,47588,47589,47590,47591,47592,47593,47594,47595,47596,47597,47598,47599,47600,47601,47602,47603,47604,47605,47606,47607,47608,47609,47610,47611,47612,47613,47614,47615,47616,47617,47618,47619,47620,47621,47622,47623,47624,47625,47626,47627,47628,47629,47630,47631,47632,47633,47634,47635,47636,47637,47638,47639,47640,47641,47642,47643,47644,47645,47646,47647,47648,47649,47650,47651,47652,47653,47654,47655,47656,47657,47658,47659,47660,47661,47662,47663,47664,47665,47666,47667,47668,47669,47670,47671,47672,47673,47674,47675,47676,47677,47678,47679,47680,47681,47682,47683,47684,47685,47686,47687,47688,47689,47690,47691,47692,47693,47694,47695,47696,47697,47698,47699,47700,47701,47702,47703,47704,47705,47706,47707,47708,47709,47710,47711,47712,47713,47714,47715,47716,47717,47718,47719,47720,47721,47722,47723,47724,47725,47726,47727,47728,47729,47730,47731,47732,47733,47734,47735,47736,47737,47738,47739,47740,47741,47742,47743,47744,47745,47746,47747,47748,47749,47750,47751,47752,47753,47754,47755,47756,47757,47758,47759,47760,47761,47762,47763,47764,47765,47766,47767,47768,47769,47770,47771,47772,47773,47774,47775,47776,47777,47778,47779,47780,47781,47782,47783,47784,47785,47786,47787,47788,47789,47790,47791,47792,47793,47794,47795,47796,47797,47798,47799,47800,47801,47802,47803,47804,47805,47806,47807,47808,47809,47810,47811,47812,47813,47814,47815,47816,47817,47818,47819,47820,47821,47822,47823,47824,47825,47826,47827,47828,47829,47830,47831,47832,47833,47834,47835,47836,47837,47838,47839,47840,47841,47842,47843,47844,47845,47846,47847,47848,47849,47850,47851,47852,47853,47854,47855,47856,47857,47858,47859,47860,47861,47862,47863,47864,47865,47866,47867,47868,47869,47870,47871,47872,47873,47874,47875,47876,47877,47878,47879,47880,47881,47882,47883,47884,47885,47886,47887,47888,47889,47890,47891,47892,47893,47894,47895,47896,47897,47898,47899,47900,47901,47902,47903,47904,47905,47906,47907,47908,47909,47910,47911,47912,47913,47914,47915,47916,47917,47918,47919,47920,47921,47922,47923,47924,47925,47926,47927,47928,47929,47930,47931,47932,47933,47934,47935,47936,47937,47938,47939,47940,47941,47942,47943,47944,47945,47946,47947,47948,47949,47950,47951,47952,47953,47954,47955,47956,47957,47958,47959,47960,47961,47962,47963,47964,47965,47966,47967,47968,47969,47970,47971,47972,47973,47974,47975,47976,47977,47978,47979,47980,47981,47982,47983,47984,47985,47986,47987,47988,47989,47990,47991,47992,47993,47994,47995,47996,47997,47998,47999,48000,48001,48002,48003,48004,48005,48006,48007,48008,48009,48010,48011,48012,48013,48014,48015,48016,48017,48018,48019,48020,48021,48022,48023,48024,48025,48026,48027,48028,48029,48030,48031,48032,48033,48034,48035,48036,48037,48038,48039,48040,48041,48042,48043,48044,48045,48046,48047,48048,48049,48050,48051,48052,48053,48054,48055,48056,48057,48058,48059,48060,48061,48062,48063,48064,48065,48066,48067,48068,48069,48070,48071,48072,48073,48074,48075,48076,48077,48078,48079,48080,48081,48082,48083,48084,48085,48086,48087,48088,48089,48090,48091,48092,48093,48094,48095,48096,48097,48098,48099,48100,48101,48102,48103,48104,48105,48106,48107,48108,48109,48110,48111,48112,48113,48114,48115,48116,48117,48118,48119,48120,48121,48122,48123,48124,48125,48126,48127,48128,48129,48130,48131,48132,48133,48134,48135,48136,48137,48138,48139,48140,48141,48142,48143,48144,48145,48146,48147,48148,48149,48150,48151,48152,48153,48154,48155,48156,48157,48158,48159,48160,48161,48162,48163,48164,48165,48166,48167,48168,48169,48170,48171,48172,48173,48174,48175,48176,48177,48178,48179,48180,48181,48182,48183,48184,48185,48186,48187,48188,48189,48190,48191,48192,48193,48194,48195,48196,48197,48198,48199,48200,48201,48202,48203,48204,48205,48206,48207,48208,48209,48210,48211,48212,48213,48214,48215,48216,48217,48218,48219,48220,48221,48222,48223,48224,48225,48226,48227,48228,48229,48230,48231,48232,48233,48234,48235,48236,48237,48238,48239,48240,48241,48242,48243,48244,48245,48246,48247,48248,48249,48250,48251,48252,48253,48254,48255,48256,48257,48258,48259,48260,48261,48262,48263,48264,48265,48266,48267,48268,48269,48270,48271,48272,48273,48274,48275,48276,48277,48278,48279,48280,48281,48282,48283,48284,48285,48286,48287,48288,48289,48290,48291,48292,48293,48294,48295,48296,48297,48298,48299,48300,48301,48302,48303,48304,48305,48306,48307,48308,48309,48310,48311,48312,48313,48314,48315,48316,48317,48318,48319,48320,48321,48322,48323,48324,48325,48326,48327,48328,48329,48330,48331,48332,48333,48334,48335,48336,48337,48338,48339,48340,48341,48342,48343,48344,48345,48346,48347,48348,48349,48350,48351,48352,48353,48354,48355,48356,48357,48358,48359,48360,48361,48362,48363,48364,48365,48366,48367,48368,48369,48370,48371,48372,48373,48374,48375,48376,48377,48378,48379,48380,48381,48382,48383,48384,48385,48386,48387,48388,48389,48390,48391,48392,48393,48394,48395,48396,48397,48398,48399,48400,48401,48402,48403,48404,48405,48406,48407,48408,48409,48410,48411,48412,48413,48414,48415,48416,48417,48418,48419,48420,48421,48422,48423,48424,48425,48426,48427,48428,48429,48430,48431,48432,48433,48434,48435,48436,48437,48438,48439,48440,48441,48442,48443,48444,48445,48446,48447,48448,48449,48450,48451,48452,48453,48454,48455,48456,48457,48458,48459,48460,48461,48462,48463,48464,48465,48466,48467,48468,48469,48470,48471,48472,48473,48474,48475,48476,48477,48478,48479,48480,48481,48482,48483,48484,48485,48486,48487,48488,48489,48490,48491,48492,48493,48494,48495,48496,48497,48498,48499,48500,48501,48502,48503,48504,48505,48506,48507,48508,48509,48510,48511,48512,48513,48514,48515,48516,48517,48518,48519,48520,48521,48522,48523,48524,48525,48526,48527,48528,48529,48530,48531,48532,48533,48534,48535,48536,48537,48538,48539,48540,48541,48542,48543,48544,48545,48546,48547,48548,48549,48550,48551,48552,48553,48554,48555,48556,48557,48558,48559,48560,48561,48562,48563,48564,48565,48566,48567,48568,48569,48570,48571,48572,48573,48574,48575,48576,48577,48578,48579,48580,48581,48582,48583,48584,48585,48586,48587,48588,48589,48590,48591,48592,48593,48594,48595,48596,48597,48598,48599,48600,48601,48602,48603,48604,48605,48606,48607,48608,48609,48610,48611,48612,48613,48614,48615,48616,48617,48618,48619,48620,48621,48622,48623,48624,48625,48626,48627,48628,48629,48630,48631,48632,48633,48634,48635,48636,48637,48638,48639,48640,48641,48642,48643,48644,48645,48646,48647,48648,48649,48650,48651,48652,48653,48654,48655,48656,48657,48658,48659,48660,48661,48662,48663,48664,48665,48666,48667,48668,48669,48670,48671,48672,48673,48674,48675,48676,48677,48678,48679,48680,48681,48682,48683,48684,48685,48686,48687,48688,48689,48690,48691,48692,48693,48694,48695,48696,48697,48698,48699,48700,48701,48702,48703,48704,48705,48706,48707,48708,48709,48710,48711,48712,48713,48714,48715,48716,48717,48718,48719,48720,48721,48722,48723,48724,48725,48726,48727,48728,48729,48730,48731,48732,48733,48734,48735,48736,48737,48738,48739,48740,48741,48742,48743,48744,48745,48746,48747,48748,48749,48750,48751,48752,48753,48754,48755,48756,48757,48758,48759,48760,48761,48762,48763,48764,48765,48766,48767,48768,48769,48770,48771,48772,48773,48774,48775,48776,48777,48778,48779,48780,48781,48782,48783,48784,48785,48786,48787,48788,48789,48790,48791,48792,48793,48794,48795,48796,48797,48798,48799,48800,48801,48802,48803,48804,48805,48806,48807,48808,48809,48810,48811,48812,48813,48814,48815,48816,48817,48818,48819,48820,48821,48822,48823,48824,48825,48826,48827,48828,48829,48830,48831,48832,48833,48834,48835,48836,48837,48838,48839,48840,48841,48842,48843,48844,48845,48846,48847,48848,48849,48850,48851,48852,48853,48854,48855,48856,48857,48858,48859,48860,48861,48862,48863,48864,48865,48866,48867,48868,48869,48870,48871,48872,48873,48874,48875,48876,48877,48878,48879,48880,48881,48882,48883,48884,48885,48886,48887,48888,48889,48890,48891,48892,48893,48894,48895,48896,48897,48898,48899,48900,48901,48902,48903,48904,48905,48906,48907,48908,48909,48910,48911,48912,48913,48914,48915,48916,48917,48918,48919,48920,48921,48922,48923,48924,48925,48926,48927,48928,48929,48930,48931,48932,48933,48934,48935,48936,48937,48938,48939,48940,48941,48942,48943,48944,48945,48946,48947,48948,48949,48950,48951,48952,48953,48954,48955,48956,48957,48958,48959,48960,48961,48962,48963,48964,48965,48966,48967,48968,48969,48970,48971,48972,48973,48974,48975,48976,48977,48978,48979,48980,48981,48982,48983,48984,48985,48986,48987,48988,48989,48990,48991,48992,48993,48994,48995,48996,48997,48998,48999,49000,49001,49002,49003,49004,49005,49006,49007,49008,49009,49010,49011,49012,49013,49014,49015,49016,49017,49018,49019,49020,49021,49022,49023,49024,49025,49026,49027,49028,49029,49030,49031,49032,49033,49034,49035,49036,49037,49038,49039,49040,49041,49042,49043,49044,49045,49046,49047,49048,49049,49050,49051,49052,49053,49054,49055,49056,49057,49058,49059,49060,49061,49062,49063,49064,49065,49066,49067,49068,49069,49070,49071,49072,49073,49074,49075,49076,49077,49078,49079,49080,49081,49082,49083,49084,49085,49086,49087,49088,49089,49090,49091,49092,49093,49094,49095,49096,49097,49098,49099,49100,49101,49102,49103,49104,49105,49106,49107,49108,49109,49110,49111,49112,49113,49114,49115,49116,49117,49118,49119,49120,49121,49122,49123,49124,49125,49126,49127,49128,49129,49130,49131,49132,49133,49134,49135,49136,49137,49138,49139,49140,49141,49142,49143,49144,49145,49146,49147,49148,49149,49150,49151,49152,49153,49154,49155,49156,49157,49158,49159,49160,49161,49162,49163,49164,49165,49166,49167,49168,49169,49170,49171,49172,49173,49174,49175,49176,49177,49178,49179,49180,49181,49182,49183,49184,49185,49186,49187,49188,49189,49190,49191,49192,49193,49194,49195,49196,49197,49198,49199,49200,49201,49202,49203,49204,49205,49206,49207,49208,49209,49210,49211,49212,49213,49214,49215,49216,49217,49218,49219,49220,49221,49222,49223,49224,49225,49226,49227,49228,49229,49230,49231,49232,49233,49234,49235,49236,49237,49238,49239,49240,49241,49242,49243,49244,49245,49246,49247,49248,49249,49250,49251,49252,49253,49254,49255,49256,49257,49258,49259,49260,49261,49262,49263,49264,49265,49266,49267,49268,49269,49270,49271,49272,49273,49274,49275,49276,49277,49278,49279,49280,49281,49282,49283,49284,49285,49286,49287,49288,49289,49290,49291,49292,49293,49294,49295,49296,49297,49298,49299,49300,49301,49302,49303,49304,49305,49306,49307,49308,49309,49310,49311,49312,49313,49314,49315,49316,49317,49318,49319,49320,49321,49322,49323,49324,49325,49326,49327,49328,49329,49330,49331,49332,49333,49334,49335,49336,49337,49338,49339,49340,49341,49342,49343,49344,49345,49346,49347,49348,49349,49350,49351,49352,49353,49354,49355,49356,49357,49358,49359,49360,49361,49362,49363,49364,49365,49366,49367,49368,49369,49370,49371,49372,49373,49374,49375,49376,49377,49378,49379,49380,49381,49382,49383,49384,49385,49386,49387,49388,49389,49390,49391,49392,49393,49394,49395,49396,49397,49398,49399,49400,49401,49402,49403,49404,49405,49406,49407,49408,49409,49410,49411,49412,49413,49414,49415,49416,49417,49418,49419,49420,49421,49422,49423,49424,49425,49426,49427,49428,49429,49430,49431,49432,49433,49434,49435,49436,49437,49438,49439,49440,49441,49442,49443,49444,49445,49446,49447,49448,49449,49450,49451,49452,49453,49454,49455,49456,49457,49458,49459,49460,49461,49462,49463,49464,49465,49466,49467,49468,49469,49470,49471,49472,49473,49474,49475,49476,49477,49478,49479,49480,49481,49482,49483,49484,49485,49486,49487,49488,49489,49490,49491,49492,49493,49494,49495,49496,49497,49498,49499,49500,49501,49502,49503,49504,49505,49506,49507,49508,49509,49510,49511,49512,49513,49514,49515,49516,49517,49518,49519,49520,49521,49522,49523,49524,49525,49526,49527,49528,49529,49530,49531,49532,49533,49534,49535,49536,49537,49538,49539,49540,49541,49542,49543,49544,49545,49546,49547,49548,49549,49550,49551,49552,49553,49554,49555,49556,49557,49558,49559,49560,49561,49562,49563,49564,49565,49566,49567,49568,49569,49570,49571,49572,49573,49574,49575,49576,49577,49578,49579,49580,49581,49582,49583,49584,49585,49586,49587,49588,49589,49590,49591,49592,49593,49594,49595,49596,49597,49598,49599,49600,49601,49602,49603,49604,49605,49606,49607,49608,49609,49610,49611,49612,49613,49614,49615,49616,49617,49618,49619,49620,49621,49622,49623,49624,49625,49626,49627,49628,49629,49630,49631,49632,49633,49634,49635,49636,49637,49638,49639,49640,49641,49642,49643,49644,49645,49646,49647,49648,49649,49650,49651,49652,49653,49654,49655,49656,49657,49658,49659,49660,49661,49662,49663,49664,49665,49666,49667,49668,49669,49670,49671,49672,49673,49674,49675,49676,49677,49678,49679,49680,49681,49682,49683,49684,49685,49686,49687,49688,49689,49690,49691,49692,49693,49694,49695,49696,49697,49698,49699,49700,49701,49702,49703,49704,49705,49706,49707,49708,49709,49710,49711,49712,49713,49714,49715,49716,49717,49718,49719,49720,49721,49722,49723,49724,49725,49726,49727,49728,49729,49730,49731,49732,49733,49734,49735,49736,49737,49738,49739,49740,49741,49742,49743,49744,49745,49746,49747,49748,49749,49750,49751,49752,49753,49754,49755,49756,49757,49758,49759,49760,49761,49762,49763,49764,49765,49766,49767,49768,49769,49770,49771,49772,49773,49774,49775,49776,49777,49778,49779,49780,49781,49782,49783,49784,49785,49786,49787,49788,49789,49790,49791,49792,49793,49794,49795,49796,49797,49798,49799,49800,49801,49802,49803,49804,49805,49806,49807,49808,49809,49810,49811,49812,49813,49814,49815,49816,49817,49818,49819,49820,49821,49822,49823,49824,49825,49826,49827,49828,49829,49830,49831,49832,49833,49834,49835,49836,49837,49838,49839,49840,49841,49842,49843,49844,49845,49846,49847,49848,49849,49850,49851,49852,49853,49854,49855,49856,49857,49858,49859,49860,49861,49862,49863,49864,49865,49866,49867,49868,49869,49870,49871,49872,49873,49874,49875,49876,49877,49878,49879,49880,49881,49882,49883,49884,49885,49886,49887,49888,49889,49890,49891,49892,49893,49894,49895,49896,49897,49898,49899,49900,49901,49902,49903,49904,49905,49906,49907,49908,49909,49910,49911,49912,49913,49914,49915,49916,49917,49918,49919,49920,49921,49922,49923,49924,49925,49926,49927,49928,49929,49930,49931,49932,49933,49934,49935,49936,49937,49938,49939,49940,49941,49942,49943,49944,49945,49946,49947,49948,49949,49950,49951,49952,49953,49954,49955,49956,49957,49958,49959,49960,49961,49962,49963,49964,49965,49966,49967,49968,49969,49970,49971,49972,49973,49974,49975,49976,49977,49978,49979,49980,49981,49982,49983,49984,49985,49986,49987,49988,49989,49990,49991,49992,49993,49994,49995,49996,49997,49998,49999,50000]
-# expected_output:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,10046,10047,10048,10049,10050,10051,10052,10053,10054,10055,10056,10057,10058,10059,10060,10061,10062,10063,10064,10065,10066,10067,10068,10069,10070,10071,10072,10073,10074,10075,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,10086,10087,10088,10089,10090,10091,10092,10093,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,10116,10117,10118,10119,10120,10121,10122,10123,10124,10125,10126,10127,10128,10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139,10140,10141,10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153,10154,10155,10156,10157,10158,10159,10160,10161,10162,10163,10164,10165,10166,10167,10168,10169,10170,10171,10172,10173,10174,10175,10176,10177,10178,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,10190,10191,10192,10193,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,10205,10206,10207,10208,10209,10210,10211,10212,10213,10214,10215,10216,10217,10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229,10230,10231,10232,10233,10234,10235,10236,10237,10238,10239,10240,10241,10242,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,10253,10254,10255,10256,10257,10258,10259,10260,10261,10262,10263,10264,10265,10266,10267,10268,10269,10270,10271,10272,10273,10274,10275,10276,10277,10278,10279,10280,10281,10282,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295,10296,10297,10298,10299,10300,10301,10302,10303,10304,10305,10306,10307,10308,10309,10310,10311,10312,10313,10314,10315,10316,10317,10318,10319,10320,10321,10322,10323,10324,10325,10326,10327,10328,10329,10330,10331,10332,10333,10334,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,10348,10349,10350,10351,10352,10353,10354,10355,10356,10357,10358,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,10370,10371,10372,10373,10374,10375,10376,10377,10378,10379,10380,10381,10382,10383,10384,10385,10386,10387,10388,10389,10390,10391,10392,10393,10394,10395,10396,10397,10398,10399,10400,10401,10402,10403,10404,10405,10406,10407,10408,10409,10410,10411,10412,10413,10414,10415,10416,10417,10418,10419,10420,10421,10422,10423,10424,10425,10426,10427,10428,10429,10430,10431,10432,10433,10434,10435,10436,10437,10438,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,10450,10451,10452,10453,10454,10455,10456,10457,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10470,10471,10472,10473,10474,10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10485,10486,10487,10488,10489,10490,10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,10512,10513,10514,10515,10516,10517,10518,10519,10520,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10533,10534,10535,10536,10537,10538,10539,10540,10541,10542,10543,10544,10545,10546,10547,10548,10549,10550,10551,10552,10553,10554,10555,10556,10557,10558,10559,10560,10561,10562,10563,10564,10565,10566,10567,10568,10569,10570,10571,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,10605,10606,10607,10608,10609,10610,10611,10612,10613,10614,10615,10616,10617,10618,10619,10620,10621,10622,10623,10624,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,10637,10638,10639,10640,10641,10642,10643,10644,10645,10646,10647,10648,10649,10650,10651,10652,10653,10654,10655,10656,10657,10658,10659,10660,10661,10662,10663,10664,10665,10666,10667,10668,10669,10670,10671,10672,10673,10674,10675,10676,10677,10678,10679,10680,10681,10682,10683,10684,10685,10686,10687,10688,10689,10690,10691,10692,10693,10694,10695,10696,10697,10698,10699,10700,10701,10702,10703,10704,10705,10706,10707,10708,10709,10710,10711,10712,10713,10714,10715,10716,10717,10718,10719,10720,10721,10722,10723,10724,10725,10726,10727,10728,10729,10730,10731,10732,10733,10734,10735,10736,10737,10738,10739,10740,10741,10742,10743,10744,10745,10746,10747,10748,10749,10750,10751,10752,10753,10754,10755,10756,10757,10758,10759,10760,10761,10762,10763,10764,10765,10766,10767,10768,10769,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,10785,10786,10787,10788,10789,10790,10791,10792,10793,10794,10795,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,10810,10811,10812,10813,10814,10815,10816,10817,10818,10819,10820,10821,10822,10823,10824,10825,10826,10827,10828,10829,10830,10831,10832,10833,10834,10835,10836,10837,10838,10839,10840,10841,10842,10843,10844,10845,10846,10847,10848,10849,10850,10851,10852,10853,10854,10855,10856,10857,10858,10859,10860,10861,10862,10863,10864,10865,10866,10867,10868,10869,10870,10871,10872,10873,10874,10875,10876,10877,10878,10879,10880,10881,10882,10883,10884,10885,10886,10887,10888,10889,10890,10891,10892,10893,10894,10895,10896,10897,10898,10899,10900,10901,10902,10903,10904,10905,10906,10907,10908,10909,10910,10911,10912,10913,10914,10915,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,10929,10930,10931,10932,10933,10934,10935,10936,10937,10938,10939,10940,10941,10942,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10954,10955,10956,10957,10958,10959,10960,10961,10962,10963,10964,10965,10966,10967,10968,10969,10970,10971,10972,10973,10974,10975,10976,10977,10978,10979,10980,10981,10982,10983,10984,10985,10986,10987,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,10998,10999,11000,11001,11002,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,11031,11032,11033,11034,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045,11046,11047,11048,11049,11050,11051,11052,11053,11054,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11080,11081,11082,11083,11084,11085,11086,11087,11088,11089,11090,11091,11092,11093,11094,11095,11096,11097,11098,11099,11100,11101,11102,11103,11104,11105,11106,11107,11108,11109,11110,11111,11112,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11136,11137,11138,11139,11140,11141,11142,11143,11144,11145,11146,11147,11148,11149,11150,11151,11152,11153,11154,11155,11156,11157,11158,11159,11160,11161,11162,11163,11164,11165,11166,11167,11168,11169,11170,11171,11172,11173,11174,11175,11176,11177,11178,11179,11180,11181,11182,11183,11184,11185,11186,11187,11188,11189,11190,11191,11192,11193,11194,11195,11196,11197,11198,11199,11200,11201,11202,11203,11204,11205,11206,11207,11208,11209,11210,11211,11212,11213,11214,11215,11216,11217,11218,11219,11220,11221,11222,11223,11224,11225,11226,11227,11228,11229,11230,11231,11232,11233,11234,11235,11236,11237,11238,11239,11240,11241,11242,11243,11244,11245,11246,11247,11248,11249,11250,11251,11252,11253,11254,11255,11256,11257,11258,11259,11260,11261,11262,11263,11264,11265,11266,11267,11268,11269,11270,11271,11272,11273,11274,11275,11276,11277,11278,11279,11280,11281,11282,11283,11284,11285,11286,11287,11288,11289,11290,11291,11292,11293,11294,11295,11296,11297,11298,11299,11300,11301,11302,11303,11304,11305,11306,11307,11308,11309,11310,11311,11312,11313,11314,11315,11316,11317,11318,11319,11320,11321,11322,11323,11324,11325,11326,11327,11328,11329,11330,11331,11332,11333,11334,11335,11336,11337,11338,11339,11340,11341,11342,11343,11344,11345,11346,11347,11348,11349,11350,11351,11352,11353,11354,11355,11356,11357,11358,11359,11360,11361,11362,11363,11364,11365,11366,11367,11368,11369,11370,11371,11372,11373,11374,11375,11376,11377,11378,11379,11380,11381,11382,11383,11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396,11397,11398,11399,11400,11401,11402,11403,11404,11405,11406,11407,11408,11409,11410,11411,11412,11413,11414,11415,11416,11417,11418,11419,11420,11421,11422,11423,11424,11425,11426,11427,11428,11429,11430,11431,11432,11433,11434,11435,11436,11437,11438,11439,11440,11441,11442,11443,11444,11445,11446,11447,11448,11449,11450,11451,11452,11453,11454,11455,11456,11457,11458,11459,11460,11461,11462,11463,11464,11465,11466,11467,11468,11469,11470,11471,11472,11473,11474,11475,11476,11477,11478,11479,11480,11481,11482,11483,11484,11485,11486,11487,11488,11489,11490,11491,11492,11493,11494,11495,11496,11497,11498,11499,11500,11501,11502,11503,11504,11505,11506,11507,11508,11509,11510,11511,11512,11513,11514,11515,11516,11517,11518,11519,11520,11521,11522,11523,11524,11525,11526,11527,11528,11529,11530,11531,11532,11533,11534,11535,11536,11537,11538,11539,11540,11541,11542,11543,11544,11545,11546,11547,11548,11549,11550,11551,11552,11553,11554,11555,11556,11557,11558,11559,11560,11561,11562,11563,11564,11565,11566,11567,11568,11569,11570,11571,11572,11573,11574,11575,11576,11577,11578,11579,11580,11581,11582,11583,11584,11585,11586,11587,11588,11589,11590,11591,11592,11593,11594,11595,11596,11597,11598,11599,11600,11601,11602,11603,11604,11605,11606,11607,11608,11609,11610,11611,11612,11613,11614,11615,11616,11617,11618,11619,11620,11621,11622,11623,11624,11625,11626,11627,11628,11629,11630,11631,11632,11633,11634,11635,11636,11637,11638,11639,11640,11641,11642,11643,11644,11645,11646,11647,11648,11649,11650,11651,11652,11653,11654,11655,11656,11657,11658,11659,11660,11661,11662,11663,11664,11665,11666,11667,11668,11669,11670,11671,11672,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,11686,11687,11688,11689,11690,11691,11692,11693,11694,11695,11696,11697,11698,11699,11700,11701,11702,11703,11704,11705,11706,11707,11708,11709,11710,11711,11712,11713,11714,11715,11716,11717,11718,11719,11720,11721,11722,11723,11724,11725,11726,11727,11728,11729,11730,11731,11732,11733,11734,11735,11736,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747,11748,11749,11750,11751,11752,11753,11754,11755,11756,11757,11758,11759,11760,11761,11762,11763,11764,11765,11766,11767,11768,11769,11770,11771,11772,11773,11774,11775,11776,11777,11778,11779,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,11790,11791,11792,11793,11794,11795,11796,11797,11798,11799,11800,11801,11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812,11813,11814,11815,11816,11817,11818,11819,11820,11821,11822,11823,11824,11825,11826,11827,11828,11829,11830,11831,11832,11833,11834,11835,11836,11837,11838,11839,11840,11841,11842,11843,11844,11845,11846,11847,11848,11849,11850,11851,11852,11853,11854,11855,11856,11857,11858,11859,11860,11861,11862,11863,11864,11865,11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877,11878,11879,11880,11881,11882,11883,11884,11885,11886,11887,11888,11889,11890,11891,11892,11893,11894,11895,11896,11897,11898,11899,11900,11901,11902,11903,11904,11905,11906,11907,11908,11909,11910,11911,11912,11913,11914,11915,11916,11917,11918,11919,11920,11921,11922,11923,11924,11925,11926,11927,11928,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,11943,11944,11945,11946,11947,11948,11949,11950,11951,11952,11953,11954,11955,11956,11957,11958,11959,11960,11961,11962,11963,11964,11965,11966,11967,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,11994,11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124,12125,12126,12127,12128,12129,12130,12131,12132,12133,12134,12135,12136,12137,12138,12139,12140,12141,12142,12143,12144,12145,12146,12147,12148,12149,12150,12151,12152,12153,12154,12155,12156,12157,12158,12159,12160,12161,12162,12163,12164,12165,12166,12167,12168,12169,12170,12171,12172,12173,12174,12175,12176,12177,12178,12179,12180,12181,12182,12183,12184,12185,12186,12187,12188,12189,12190,12191,12192,12193,12194,12195,12196,12197,12198,12199,12200,12201,12202,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12217,12218,12219,12220,12221,12222,12223,12224,12225,12226,12227,12228,12229,12230,12231,12232,12233,12234,12235,12236,12237,12238,12239,12240,12241,12242,12243,12244,12245,12246,12247,12248,12249,12250,12251,12252,12253,12254,12255,12256,12257,12258,12259,12260,12261,12262,12263,12264,12265,12266,12267,12268,12269,12270,12271,12272,12273,12274,12275,12276,12277,12278,12279,12280,12281,12282,12283,12284,12285,12286,12287,12288,12289,12290,12291,12292,12293,12294,12295,12296,12297,12298,12299,12300,12301,12302,12303,12304,12305,12306,12307,12308,12309,12310,12311,12312,12313,12314,12315,12316,12317,12318,12319,12320,12321,12322,12323,12324,12325,12326,12327,12328,12329,12330,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12352,12353,12354,12355,12356,12357,12358,12359,12360,12361,12362,12363,12364,12365,12366,12367,12368,12369,12370,12371,12372,12373,12374,12375,12376,12377,12378,12379,12380,12381,12382,12383,12384,12385,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397,12398,12399,12400,12401,12402,12403,12404,12405,12406,12407,12408,12409,12410,12411,12412,12413,12414,12415,12416,12417,12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12446,12447,12448,12449,12450,12451,12452,12453,12454,12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494,12495,12496,12497,12498,12499,12500,12501,12502,12503,12504,12505,12506,12507,12508,12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519,12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,12532,12533,12534,12535,12536,12537,12538,12539,12540,12541,12542,12543,12544,12545,12546,12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,12564,12565,12566,12567,12568,12569,12570,12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,12584,12585,12586,12587,12588,12589,12590,12591,12592,12593,12594,12595,12596,12597,12598,12599,12600,12601,12602,12603,12604,12605,12606,12607,12608,12609,12610,12611,12612,12613,12614,12615,12616,12617,12618,12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631,12632,12633,12634,12635,12636,12637,12638,12639,12640,12641,12642,12643,12644,12645,12646,12647,12648,12649,12650,12651,12652,12653,12654,12655,12656,12657,12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,12670,12671,12672,12673,12674,12675,12676,12677,12678,12679,12680,12681,12682,12683,12684,12685,12686,12687,12688,12689,12690,12691,12692,12693,12694,12695,12696,12697,12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708,12709,12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726,12727,12728,12729,12730,12731,12732,12733,12734,12735,12736,12737,12738,12739,12740,12741,12742,12743,12744,12745,12746,12747,12748,12749,12750,12751,12752,12753,12754,12755,12756,12757,12758,12759,12760,12761,12762,12763,12764,12765,12766,12767,12768,12769,12770,12771,12772,12773,12774,12775,12776,12777,12778,12779,12780,12781,12782,12783,12784,12785,12786,12787,12788,12789,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,12803,12804,12805,12806,12807,12808,12809,12810,12811,12812,12813,12814,12815,12816,12817,12818,12819,12820,12821,12822,12823,12824,12825,12826,12827,12828,12829,12830,12831,12832,12833,12834,12835,12836,12837,12838,12839,12840,12841,12842,12843,12844,12845,12846,12847,12848,12849,12850,12851,12852,12853,12854,12855,12856,12857,12858,12859,12860,12861,12862,12863,12864,12865,12866,12867,12868,12869,12870,12871,12872,12873,12874,12875,12876,12877,12878,12879,12880,12881,12882,12883,12884,12885,12886,12887,12888,12889,12890,12891,12892,12893,12894,12895,12896,12897,12898,12899,12900,12901,12902,12903,12904,12905,12906,12907,12908,12909,12910,12911,12912,12913,12914,12915,12916,12917,12918,12919,12920,12921,12922,12923,12924,12925,12926,12927,12928,12929,12930,12931,12932,12933,12934,12935,12936,12937,12938,12939,12940,12941,12942,12943,12944,12945,12946,12947,12948,12949,12950,12951,12952,12953,12954,12955,12956,12957,12958,12959,12960,12961,12962,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,12977,12978,12979,12980,12981,12982,12983,12984,12985,12986,12987,12988,12989,12990,12991,12992,12993,12994,12995,12996,12997,12998,12999,13000,13001,13002,13003,13004,13005,13006,13007,13008,13009,13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,13023,13024,13025,13026,13027,13028,13029,13030,13031,13032,13033,13034,13035,13036,13037,13038,13039,13040,13041,13042,13043,13044,13045,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,13069,13070,13071,13072,13073,13074,13075,13076,13077,13078,13079,13080,13081,13082,13083,13084,13085,13086,13087,13088,13089,13090,13091,13092,13093,13094,13095,13096,13097,13098,13099,13100,13101,13102,13103,13104,13105,13106,13107,13108,13109,13110,13111,13112,13113,13114,13115,13116,13117,13118,13119,13120,13121,13122,13123,13124,13125,13126,13127,13128,13129,13130,13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,13155,13156,13157,13158,13159,13160,13161,13162,13163,13164,13165,13166,13167,13168,13169,13170,13171,13172,13173,13174,13175,13176,13177,13178,13179,13180,13181,13182,13183,13184,13185,13186,13187,13188,13189,13190,13191,13192,13193,13194,13195,13196,13197,13198,13199,13200,13201,13202,13203,13204,13205,13206,13207,13208,13209,13210,13211,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,13222,13223,13224,13225,13226,13227,13228,13229,13230,13231,13232,13233,13234,13235,13236,13237,13238,13239,13240,13241,13242,13243,13244,13245,13246,13247,13248,13249,13250,13251,13252,13253,13254,13255,13256,13257,13258,13259,13260,13261,13262,13263,13264,13265,13266,13267,13268,13269,13270,13271,13272,13273,13274,13275,13276,13277,13278,13279,13280,13281,13282,13283,13284,13285,13286,13287,13288,13289,13290,13291,13292,13293,13294,13295,13296,13297,13298,13299,13300,13301,13302,13303,13304,13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317,13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330,13331,13332,13333,13334,13335,13336,13337,13338,13339,13340,13341,13342,13343,13344,13345,13346,13347,13348,13349,13350,13351,13352,13353,13354,13355,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736,13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,13749,13750,13751,13752,13753,13754,13755,13756,13757,13758,13759,13760,13761,13762,13763,13764,13765,13766,13767,13768,13769,13770,13771,13772,13773,13774,13775,13776,13777,13778,13779,13780,13781,13782,13783,13784,13785,13786,13787,13788,13789,13790,13791,13792,13793,13794,13795,13796,13797,13798,13799,13800,13801,13802,13803,13804,13805,13806,13807,13808,13809,13810,13811,13812,13813,13814,13815,13816,13817,13818,13819,13820,13821,13822,13823,13824,13825,13826,13827,13828,13829,13830,13831,13832,13833,13834,13835,13836,13837,13838,13839,13840,13841,13842,13843,13844,13845,13846,13847,13848,13849,13850,13851,13852,13853,13854,13855,13856,13857,13858,13859,13860,13861,13862,13863,13864,13865,13866,13867,13868,13869,13870,13871,13872,13873,13874,13875,13876,13877,13878,13879,13880,13881,13882,13883,13884,13885,13886,13887,13888,13889,13890,13891,13892,13893,13894,13895,13896,13897,13898,13899,13900,13901,13902,13903,13904,13905,13906,13907,13908,13909,13910,13911,13912,13913,13914,13915,13916,13917,13918,13919,13920,13921,13922,13923,13924,13925,13926,13927,13928,13929,13930,13931,13932,13933,13934,13935,13936,13937,13938,13939,13940,13941,13942,13943,13944,13945,13946,13947,13948,13949,13950,13951,13952,13953,13954,13955,13956,13957,13958,13959,13960,13961,13962,13963,13964,13965,13966,13967,13968,13969,13970,13971,13972,13973,13974,13975,13976,13977,13978,13979,13980,13981,13982,13983,13984,13985,13986,13987,13988,13989,13990,13991,13992,13993,13994,13995,13996,13997,13998,13999,14000,14001,14002,14003,14004,14005,14006,14007,14008,14009,14010,14011,14012,14013,14014,14015,14016,14017,14018,14019,14020,14021,14022,14023,14024,14025,14026,14027,14028,14029,14030,14031,14032,14033,14034,14035,14036,14037,14038,14039,14040,14041,14042,14043,14044,14045,14046,14047,14048,14049,14050,14051,14052,14053,14054,14055,14056,14057,14058,14059,14060,14061,14062,14063,14064,14065,14066,14067,14068,14069,14070,14071,14072,14073,14074,14075,14076,14077,14078,14079,14080,14081,14082,14083,14084,14085,14086,14087,14088,14089,14090,14091,14092,14093,14094,14095,14096,14097,14098,14099,14100,14101,14102,14103,14104,14105,14106,14107,14108,14109,14110,14111,14112,14113,14114,14115,14116,14117,14118,14119,14120,14121,14122,14123,14124,14125,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14136,14137,14138,14139,14140,14141,14142,14143,14144,14145,14146,14147,14148,14149,14150,14151,14152,14153,14154,14155,14156,14157,14158,14159,14160,14161,14162,14163,14164,14165,14166,14167,14168,14169,14170,14171,14172,14173,14174,14175,14176,14177,14178,14179,14180,14181,14182,14183,14184,14185,14186,14187,14188,14189,14190,14191,14192,14193,14194,14195,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205,14206,14207,14208,14209,14210,14211,14212,14213,14214,14215,14216,14217,14218,14219,14220,14221,14222,14223,14224,14225,14226,14227,14228,14229,14230,14231,14232,14233,14234,14235,14236,14237,14238,14239,14240,14241,14242,14243,14244,14245,14246,14247,14248,14249,14250,14251,14252,14253,14254,14255,14256,14257,14258,14259,14260,14261,14262,14263,14264,14265,14266,14267,14268,14269,14270,14271,14272,14273,14274,14275,14276,14277,14278,14279,14280,14281,14282,14283,14284,14285,14286,14287,14288,14289,14290,14291,14292,14293,14294,14295,14296,14297,14298,14299,14300,14301,14302,14303,14304,14305,14306,14307,14308,14309,14310,14311,14312,14313,14314,14315,14316,14317,14318,14319,14320,14321,14322,14323,14324,14325,14326,14327,14328,14329,14330,14331,14332,14333,14334,14335,14336,14337,14338,14339,14340,14341,14342,14343,14344,14345,14346,14347,14348,14349,14350,14351,14352,14353,14354,14355,14356,14357,14358,14359,14360,14361,14362,14363,14364,14365,14366,14367,14368,14369,14370,14371,14372,14373,14374,14375,14376,14377,14378,14379,14380,14381,14382,14383,14384,14385,14386,14387,14388,14389,14390,14391,14392,14393,14394,14395,14396,14397,14398,14399,14400,14401,14402,14403,14404,14405,14406,14407,14408,14409,14410,14411,14412,14413,14414,14415,14416,14417,14418,14419,14420,14421,14422,14423,14424,14425,14426,14427,14428,14429,14430,14431,14432,14433,14434,14435,14436,14437,14438,14439,14440,14441,14442,14443,14444,14445,14446,14447,14448,14449,14450,14451,14452,14453,14454,14455,14456,14457,14458,14459,14460,14461,14462,14463,14464,14465,14466,14467,14468,14469,14470,14471,14472,14473,14474,14475,14476,14477,14478,14479,14480,14481,14482,14483,14484,14485,14486,14487,14488,14489,14490,14491,14492,14493,14494,14495,14496,14497,14498,14499,14500,14501,14502,14503,14504,14505,14506,14507,14508,14509,14510,14511,14512,14513,14514,14515,14516,14517,14518,14519,14520,14521,14522,14523,14524,14525,14526,14527,14528,14529,14530,14531,14532,14533,14534,14535,14536,14537,14538,14539,14540,14541,14542,14543,14544,14545,14546,14547,14548,14549,14550,14551,14552,14553,14554,14555,14556,14557,14558,14559,14560,14561,14562,14563,14564,14565,14566,14567,14568,14569,14570,14571,14572,14573,14574,14575,14576,14577,14578,14579,14580,14581,14582,14583,14584,14585,14586,14587,14588,14589,14590,14591,14592,14593,14594,14595,14596,14597,14598,14599,14600,14601,14602,14603,14604,14605,14606,14607,14608,14609,14610,14611,14612,14613,14614,14615,14616,14617,14618,14619,14620,14621,14622,14623,14624,14625,14626,14627,14628,14629,14630,14631,14632,14633,14634,14635,14636,14637,14638,14639,14640,14641,14642,14643,14644,14645,14646,14647,14648,14649,14650,14651,14652,14653,14654,14655,14656,14657,14658,14659,14660,14661,14662,14663,14664,14665,14666,14667,14668,14669,14670,14671,14672,14673,14674,14675,14676,14677,14678,14679,14680,14681,14682,14683,14684,14685,14686,14687,14688,14689,14690,14691,14692,14693,14694,14695,14696,14697,14698,14699,14700,14701,14702,14703,14704,14705,14706,14707,14708,14709,14710,14711,14712,14713,14714,14715,14716,14717,14718,14719,14720,14721,14722,14723,14724,14725,14726,14727,14728,14729,14730,14731,14732,14733,14734,14735,14736,14737,14738,14739,14740,14741,14742,14743,14744,14745,14746,14747,14748,14749,14750,14751,14752,14753,14754,14755,14756,14757,14758,14759,14760,14761,14762,14763,14764,14765,14766,14767,14768,14769,14770,14771,14772,14773,14774,14775,14776,14777,14778,14779,14780,14781,14782,14783,14784,14785,14786,14787,14788,14789,14790,14791,14792,14793,14794,14795,14796,14797,14798,14799,14800,14801,14802,14803,14804,14805,14806,14807,14808,14809,14810,14811,14812,14813,14814,14815,14816,14817,14818,14819,14820,14821,14822,14823,14824,14825,14826,14827,14828,14829,14830,14831,14832,14833,14834,14835,14836,14837,14838,14839,14840,14841,14842,14843,14844,14845,14846,14847,14848,14849,14850,14851,14852,14853,14854,14855,14856,14857,14858,14859,14860,14861,14862,14863,14864,14865,14866,14867,14868,14869,14870,14871,14872,14873,14874,14875,14876,14877,14878,14879,14880,14881,14882,14883,14884,14885,14886,14887,14888,14889,14890,14891,14892,14893,14894,14895,14896,14897,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14911,14912,14913,14914,14915,14916,14917,14918,14919,14920,14921,14922,14923,14924,14925,14926,14927,14928,14929,14930,14931,14932,14933,14934,14935,14936,14937,14938,14939,14940,14941,14942,14943,14944,14945,14946,14947,14948,14949,14950,14951,14952,14953,14954,14955,14956,14957,14958,14959,14960,14961,14962,14963,14964,14965,14966,14967,14968,14969,14970,14971,14972,14973,14974,14975,14976,14977,14978,14979,14980,14981,14982,14983,14984,14985,14986,14987,14988,14989,14990,14991,14992,14993,14994,14995,14996,14997,14998,14999,15000,15001,15002,15003,15004,15005,15006,15007,15008,15009,15010,15011,15012,15013,15014,15015,15016,15017,15018,15019,15020,15021,15022,15023,15024,15025,15026,15027,15028,15029,15030,15031,15032,15033,15034,15035,15036,15037,15038,15039,15040,15041,15042,15043,15044,15045,15046,15047,15048,15049,15050,15051,15052,15053,15054,15055,15056,15057,15058,15059,15060,15061,15062,15063,15064,15065,15066,15067,15068,15069,15070,15071,15072,15073,15074,15075,15076,15077,15078,15079,15080,15081,15082,15083,15084,15085,15086,15087,15088,15089,15090,15091,15092,15093,15094,15095,15096,15097,15098,15099,15100,15101,15102,15103,15104,15105,15106,15107,15108,15109,15110,15111,15112,15113,15114,15115,15116,15117,15118,15119,15120,15121,15122,15123,15124,15125,15126,15127,15128,15129,15130,15131,15132,15133,15134,15135,15136,15137,15138,15139,15140,15141,15142,15143,15144,15145,15146,15147,15148,15149,15150,15151,15152,15153,15154,15155,15156,15157,15158,15159,15160,15161,15162,15163,15164,15165,15166,15167,15168,15169,15170,15171,15172,15173,15174,15175,15176,15177,15178,15179,15180,15181,15182,15183,15184,15185,15186,15187,15188,15189,15190,15191,15192,15193,15194,15195,15196,15197,15198,15199,15200,15201,15202,15203,15204,15205,15206,15207,15208,15209,15210,15211,15212,15213,15214,15215,15216,15217,15218,15219,15220,15221,15222,15223,15224,15225,15226,15227,15228,15229,15230,15231,15232,15233,15234,15235,15236,15237,15238,15239,15240,15241,15242,15243,15244,15245,15246,15247,15248,15249,15250,15251,15252,15253,15254,15255,15256,15257,15258,15259,15260,15261,15262,15263,15264,15265,15266,15267,15268,15269,15270,15271,15272,15273,15274,15275,15276,15277,15278,15279,15280,15281,15282,15283,15284,15285,15286,15287,15288,15289,15290,15291,15292,15293,15294,15295,15296,15297,15298,15299,15300,15301,15302,15303,15304,15305,15306,15307,15308,15309,15310,15311,15312,15313,15314,15315,15316,15317,15318,15319,15320,15321,15322,15323,15324,15325,15326,15327,15328,15329,15330,15331,15332,15333,15334,15335,15336,15337,15338,15339,15340,15341,15342,15343,15344,15345,15346,15347,15348,15349,15350,15351,15352,15353,15354,15355,15356,15357,15358,15359,15360,15361,15362,15363,15364,15365,15366,15367,15368,15369,15370,15371,15372,15373,15374,15375,15376,15377,15378,15379,15380,15381,15382,15383,15384,15385,15386,15387,15388,15389,15390,15391,15392,15393,15394,15395,15396,15397,15398,15399,15400,15401,15402,15403,15404,15405,15406,15407,15408,15409,15410,15411,15412,15413,15414,15415,15416,15417,15418,15419,15420,15421,15422,15423,15424,15425,15426,15427,15428,15429,15430,15431,15432,15433,15434,15435,15436,15437,15438,15439,15440,15441,15442,15443,15444,15445,15446,15447,15448,15449,15450,15451,15452,15453,15454,15455,15456,15457,15458,15459,15460,15461,15462,15463,15464,15465,15466,15467,15468,15469,15470,15471,15472,15473,15474,15475,15476,15477,15478,15479,15480,15481,15482,15483,15484,15485,15486,15487,15488,15489,15490,15491,15492,15493,15494,15495,15496,15497,15498,15499,15500,15501,15502,15503,15504,15505,15506,15507,15508,15509,15510,15511,15512,15513,15514,15515,15516,15517,15518,15519,15520,15521,15522,15523,15524,15525,15526,15527,15528,15529,15530,15531,15532,15533,15534,15535,15536,15537,15538,15539,15540,15541,15542,15543,15544,15545,15546,15547,15548,15549,15550,15551,15552,15553,15554,15555,15556,15557,15558,15559,15560,15561,15562,15563,15564,15565,15566,15567,15568,15569,15570,15571,15572,15573,15574,15575,15576,15577,15578,15579,15580,15581,15582,15583,15584,15585,15586,15587,15588,15589,15590,15591,15592,15593,15594,15595,15596,15597,15598,15599,15600,15601,15602,15603,15604,15605,15606,15607,15608,15609,15610,15611,15612,15613,15614,15615,15616,15617,15618,15619,15620,15621,15622,15623,15624,15625,15626,15627,15628,15629,15630,15631,15632,15633,15634,15635,15636,15637,15638,15639,15640,15641,15642,15643,15644,15645,15646,15647,15648,15649,15650,15651,15652,15653,15654,15655,15656,15657,15658,15659,15660,15661,15662,15663,15664,15665,15666,15667,15668,15669,15670,15671,15672,15673,15674,15675,15676,15677,15678,15679,15680,15681,15682,15683,15684,15685,15686,15687,15688,15689,15690,15691,15692,15693,15694,15695,15696,15697,15698,15699,15700,15701,15702,15703,15704,15705,15706,15707,15708,15709,15710,15711,15712,15713,15714,15715,15716,15717,15718,15719,15720,15721,15722,15723,15724,15725,15726,15727,15728,15729,15730,15731,15732,15733,15734,15735,15736,15737,15738,15739,15740,15741,15742,15743,15744,15745,15746,15747,15748,15749,15750,15751,15752,15753,15754,15755,15756,15757,15758,15759,15760,15761,15762,15763,15764,15765,15766,15767,15768,15769,15770,15771,15772,15773,15774,15775,15776,15777,15778,15779,15780,15781,15782,15783,15784,15785,15786,15787,15788,15789,15790,15791,15792,15793,15794,15795,15796,15797,15798,15799,15800,15801,15802,15803,15804,15805,15806,15807,15808,15809,15810,15811,15812,15813,15814,15815,15816,15817,15818,15819,15820,15821,15822,15823,15824,15825,15826,15827,15828,15829,15830,15831,15832,15833,15834,15835,15836,15837,15838,15839,15840,15841,15842,15843,15844,15845,15846,15847,15848,15849,15850,15851,15852,15853,15854,15855,15856,15857,15858,15859,15860,15861,15862,15863,15864,15865,15866,15867,15868,15869,15870,15871,15872,15873,15874,15875,15876,15877,15878,15879,15880,15881,15882,15883,15884,15885,15886,15887,15888,15889,15890,15891,15892,15893,15894,15895,15896,15897,15898,15899,15900,15901,15902,15903,15904,15905,15906,15907,15908,15909,15910,15911,15912,15913,15914,15915,15916,15917,15918,15919,15920,15921,15922,15923,15924,15925,15926,15927,15928,15929,15930,15931,15932,15933,15934,15935,15936,15937,15938,15939,15940,15941,15942,15943,15944,15945,15946,15947,15948,15949,15950,15951,15952,15953,15954,15955,15956,15957,15958,15959,15960,15961,15962,15963,15964,15965,15966,15967,15968,15969,15970,15971,15972,15973,15974,15975,15976,15977,15978,15979,15980,15981,15982,15983,15984,15985,15986,15987,15988,15989,15990,15991,15992,15993,15994,15995,15996,15997,15998,15999,16000,16001,16002,16003,16004,16005,16006,16007,16008,16009,16010,16011,16012,16013,16014,16015,16016,16017,16018,16019,16020,16021,16022,16023,16024,16025,16026,16027,16028,16029,16030,16031,16032,16033,16034,16035,16036,16037,16038,16039,16040,16041,16042,16043,16044,16045,16046,16047,16048,16049,16050,16051,16052,16053,16054,16055,16056,16057,16058,16059,16060,16061,16062,16063,16064,16065,16066,16067,16068,16069,16070,16071,16072,16073,16074,16075,16076,16077,16078,16079,16080,16081,16082,16083,16084,16085,16086,16087,16088,16089,16090,16091,16092,16093,16094,16095,16096,16097,16098,16099,16100,16101,16102,16103,16104,16105,16106,16107,16108,16109,16110,16111,16112,16113,16114,16115,16116,16117,16118,16119,16120,16121,16122,16123,16124,16125,16126,16127,16128,16129,16130,16131,16132,16133,16134,16135,16136,16137,16138,16139,16140,16141,16142,16143,16144,16145,16146,16147,16148,16149,16150,16151,16152,16153,16154,16155,16156,16157,16158,16159,16160,16161,16162,16163,16164,16165,16166,16167,16168,16169,16170,16171,16172,16173,16174,16175,16176,16177,16178,16179,16180,16181,16182,16183,16184,16185,16186,16187,16188,16189,16190,16191,16192,16193,16194,16195,16196,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16223,16224,16225,16226,16227,16228,16229,16230,16231,16232,16233,16234,16235,16236,16237,16238,16239,16240,16241,16242,16243,16244,16245,16246,16247,16248,16249,16250,16251,16252,16253,16254,16255,16256,16257,16258,16259,16260,16261,16262,16263,16264,16265,16266,16267,16268,16269,16270,16271,16272,16273,16274,16275,16276,16277,16278,16279,16280,16281,16282,16283,16284,16285,16286,16287,16288,16289,16290,16291,16292,16293,16294,16295,16296,16297,16298,16299,16300,16301,16302,16303,16304,16305,16306,16307,16308,16309,16310,16311,16312,16313,16314,16315,16316,16317,16318,16319,16320,16321,16322,16323,16324,16325,16326,16327,16328,16329,16330,16331,16332,16333,16334,16335,16336,16337,16338,16339,16340,16341,16342,16343,16344,16345,16346,16347,16348,16349,16350,16351,16352,16353,16354,16355,16356,16357,16358,16359,16360,16361,16362,16363,16364,16365,16366,16367,16368,16369,16370,16371,16372,16373,16374,16375,16376,16377,16378,16379,16380,16381,16382,16383,16384,16385,16386,16387,16388,16389,16390,16391,16392,16393,16394,16395,16396,16397,16398,16399,16400,16401,16402,16403,16404,16405,16406,16407,16408,16409,16410,16411,16412,16413,16414,16415,16416,16417,16418,16419,16420,16421,16422,16423,16424,16425,16426,16427,16428,16429,16430,16431,16432,16433,16434,16435,16436,16437,16438,16439,16440,16441,16442,16443,16444,16445,16446,16447,16448,16449,16450,16451,16452,16453,16454,16455,16456,16457,16458,16459,16460,16461,16462,16463,16464,16465,16466,16467,16468,16469,16470,16471,16472,16473,16474,16475,16476,16477,16478,16479,16480,16481,16482,16483,16484,16485,16486,16487,16488,16489,16490,16491,16492,16493,16494,16495,16496,16497,16498,16499,16500,16501,16502,16503,16504,16505,16506,16507,16508,16509,16510,16511,16512,16513,16514,16515,16516,16517,16518,16519,16520,16521,16522,16523,16524,16525,16526,16527,16528,16529,16530,16531,16532,16533,16534,16535,16536,16537,16538,16539,16540,16541,16542,16543,16544,16545,16546,16547,16548,16549,16550,16551,16552,16553,16554,16555,16556,16557,16558,16559,16560,16561,16562,16563,16564,16565,16566,16567,16568,16569,16570,16571,16572,16573,16574,16575,16576,16577,16578,16579,16580,16581,16582,16583,16584,16585,16586,16587,16588,16589,16590,16591,16592,16593,16594,16595,16596,16597,16598,16599,16600,16601,16602,16603,16604,16605,16606,16607,16608,16609,16610,16611,16612,16613,16614,16615,16616,16617,16618,16619,16620,16621,16622,16623,16624,16625,16626,16627,16628,16629,16630,16631,16632,16633,16634,16635,16636,16637,16638,16639,16640,16641,16642,16643,16644,16645,16646,16647,16648,16649,16650,16651,16652,16653,16654,16655,16656,16657,16658,16659,16660,16661,16662,16663,16664,16665,16666,16667,16668,16669,16670,16671,16672,16673,16674,16675,16676,16677,16678,16679,16680,16681,16682,16683,16684,16685,16686,16687,16688,16689,16690,16691,16692,16693,16694,16695,16696,16697,16698,16699,16700,16701,16702,16703,16704,16705,16706,16707,16708,16709,16710,16711,16712,16713,16714,16715,16716,16717,16718,16719,16720,16721,16722,16723,16724,16725,16726,16727,16728,16729,16730,16731,16732,16733,16734,16735,16736,16737,16738,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749,16750,16751,16752,16753,16754,16755,16756,16757,16758,16759,16760,16761,16762,16763,16764,16765,16766,16767,16768,16769,16770,16771,16772,16773,16774,16775,16776,16777,16778,16779,16780,16781,16782,16783,16784,16785,16786,16787,16788,16789,16790,16791,16792,16793,16794,16795,16796,16797,16798,16799,16800,16801,16802,16803,16804,16805,16806,16807,16808,16809,16810,16811,16812,16813,16814,16815,16816,16817,16818,16819,16820,16821,16822,16823,16824,16825,16826,16827,16828,16829,16830,16831,16832,16833,16834,16835,16836,16837,16838,16839,16840,16841,16842,16843,16844,16845,16846,16847,16848,16849,16850,16851,16852,16853,16854,16855,16856,16857,16858,16859,16860,16861,16862,16863,16864,16865,16866,16867,16868,16869,16870,16871,16872,16873,16874,16875,16876,16877,16878,16879,16880,16881,16882,16883,16884,16885,16886,16887,16888,16889,16890,16891,16892,16893,16894,16895,16896,16897,16898,16899,16900,16901,16902,16903,16904,16905,16906,16907,16908,16909,16910,16911,16912,16913,16914,16915,16916,16917,16918,16919,16920,16921,16922,16923,16924,16925,16926,16927,16928,16929,16930,16931,16932,16933,16934,16935,16936,16937,16938,16939,16940,16941,16942,16943,16944,16945,16946,16947,16948,16949,16950,16951,16952,16953,16954,16955,16956,16957,16958,16959,16960,16961,16962,16963,16964,16965,16966,16967,16968,16969,16970,16971,16972,16973,16974,16975,16976,16977,16978,16979,16980,16981,16982,16983,16984,16985,16986,16987,16988,16989,16990,16991,16992,16993,16994,16995,16996,16997,16998,16999,17000,17001,17002,17003,17004,17005,17006,17007,17008,17009,17010,17011,17012,17013,17014,17015,17016,17017,17018,17019,17020,17021,17022,17023,17024,17025,17026,17027,17028,17029,17030,17031,17032,17033,17034,17035,17036,17037,17038,17039,17040,17041,17042,17043,17044,17045,17046,17047,17048,17049,17050,17051,17052,17053,17054,17055,17056,17057,17058,17059,17060,17061,17062,17063,17064,17065,17066,17067,17068,17069,17070,17071,17072,17073,17074,17075,17076,17077,17078,17079,17080,17081,17082,17083,17084,17085,17086,17087,17088,17089,17090,17091,17092,17093,17094,17095,17096,17097,17098,17099,17100,17101,17102,17103,17104,17105,17106,17107,17108,17109,17110,17111,17112,17113,17114,17115,17116,17117,17118,17119,17120,17121,17122,17123,17124,17125,17126,17127,17128,17129,17130,17131,17132,17133,17134,17135,17136,17137,17138,17139,17140,17141,17142,17143,17144,17145,17146,17147,17148,17149,17150,17151,17152,17153,17154,17155,17156,17157,17158,17159,17160,17161,17162,17163,17164,17165,17166,17167,17168,17169,17170,17171,17172,17173,17174,17175,17176,17177,17178,17179,17180,17181,17182,17183,17184,17185,17186,17187,17188,17189,17190,17191,17192,17193,17194,17195,17196,17197,17198,17199,17200,17201,17202,17203,17204,17205,17206,17207,17208,17209,17210,17211,17212,17213,17214,17215,17216,17217,17218,17219,17220,17221,17222,17223,17224,17225,17226,17227,17228,17229,17230,17231,17232,17233,17234,17235,17236,17237,17238,17239,17240,17241,17242,17243,17244,17245,17246,17247,17248,17249,17250,17251,17252,17253,17254,17255,17256,17257,17258,17259,17260,17261,17262,17263,17264,17265,17266,17267,17268,17269,17270,17271,17272,17273,17274,17275,17276,17277,17278,17279,17280,17281,17282,17283,17284,17285,17286,17287,17288,17289,17290,17291,17292,17293,17294,17295,17296,17297,17298,17299,17300,17301,17302,17303,17304,17305,17306,17307,17308,17309,17310,17311,17312,17313,17314,17315,17316,17317,17318,17319,17320,17321,17322,17323,17324,17325,17326,17327,17328,17329,17330,17331,17332,17333,17334,17335,17336,17337,17338,17339,17340,17341,17342,17343,17344,17345,17346,17347,17348,17349,17350,17351,17352,17353,17354,17355,17356,17357,17358,17359,17360,17361,17362,17363,17364,17365,17366,17367,17368,17369,17370,17371,17372,17373,17374,17375,17376,17377,17378,17379,17380,17381,17382,17383,17384,17385,17386,17387,17388,17389,17390,17391,17392,17393,17394,17395,17396,17397,17398,17399,17400,17401,17402,17403,17404,17405,17406,17407,17408,17409,17410,17411,17412,17413,17414,17415,17416,17417,17418,17419,17420,17421,17422,17423,17424,17425,17426,17427,17428,17429,17430,17431,17432,17433,17434,17435,17436,17437,17438,17439,17440,17441,17442,17443,17444,17445,17446,17447,17448,17449,17450,17451,17452,17453,17454,17455,17456,17457,17458,17459,17460,17461,17462,17463,17464,17465,17466,17467,17468,17469,17470,17471,17472,17473,17474,17475,17476,17477,17478,17479,17480,17481,17482,17483,17484,17485,17486,17487,17488,17489,17490,17491,17492,17493,17494,17495,17496,17497,17498,17499,17500,17501,17502,17503,17504,17505,17506,17507,17508,17509,17510,17511,17512,17513,17514,17515,17516,17517,17518,17519,17520,17521,17522,17523,17524,17525,17526,17527,17528,17529,17530,17531,17532,17533,17534,17535,17536,17537,17538,17539,17540,17541,17542,17543,17544,17545,17546,17547,17548,17549,17550,17551,17552,17553,17554,17555,17556,17557,17558,17559,17560,17561,17562,17563,17564,17565,17566,17567,17568,17569,17570,17571,17572,17573,17574,17575,17576,17577,17578,17579,17580,17581,17582,17583,17584,17585,17586,17587,17588,17589,17590,17591,17592,17593,17594,17595,17596,17597,17598,17599,17600,17601,17602,17603,17604,17605,17606,17607,17608,17609,17610,17611,17612,17613,17614,17615,17616,17617,17618,17619,17620,17621,17622,17623,17624,17625,17626,17627,17628,17629,17630,17631,17632,17633,17634,17635,17636,17637,17638,17639,17640,17641,17642,17643,17644,17645,17646,17647,17648,17649,17650,17651,17652,17653,17654,17655,17656,17657,17658,17659,17660,17661,17662,17663,17664,17665,17666,17667,17668,17669,17670,17671,17672,17673,17674,17675,17676,17677,17678,17679,17680,17681,17682,17683,17684,17685,17686,17687,17688,17689,17690,17691,17692,17693,17694,17695,17696,17697,17698,17699,17700,17701,17702,17703,17704,17705,17706,17707,17708,17709,17710,17711,17712,17713,17714,17715,17716,17717,17718,17719,17720,17721,17722,17723,17724,17725,17726,17727,17728,17729,17730,17731,17732,17733,17734,17735,17736,17737,17738,17739,17740,17741,17742,17743,17744,17745,17746,17747,17748,17749,17750,17751,17752,17753,17754,17755,17756,17757,17758,17759,17760,17761,17762,17763,17764,17765,17766,17767,17768,17769,17770,17771,17772,17773,17774,17775,17776,17777,17778,17779,17780,17781,17782,17783,17784,17785,17786,17787,17788,17789,17790,17791,17792,17793,17794,17795,17796,17797,17798,17799,17800,17801,17802,17803,17804,17805,17806,17807,17808,17809,17810,17811,17812,17813,17814,17815,17816,17817,17818,17819,17820,17821,17822,17823,17824,17825,17826,17827,17828,17829,17830,17831,17832,17833,17834,17835,17836,17837,17838,17839,17840,17841,17842,17843,17844,17845,17846,17847,17848,17849,17850,17851,17852,17853,17854,17855,17856,17857,17858,17859,17860,17861,17862,17863,17864,17865,17866,17867,17868,17869,17870,17871,17872,17873,17874,17875,17876,17877,17878,17879,17880,17881,17882,17883,17884,17885,17886,17887,17888,17889,17890,17891,17892,17893,17894,17895,17896,17897,17898,17899,17900,17901,17902,17903,17904,17905,17906,17907,17908,17909,17910,17911,17912,17913,17914,17915,17916,17917,17918,17919,17920,17921,17922,17923,17924,17925,17926,17927,17928,17929,17930,17931,17932,17933,17934,17935,17936,17937,17938,17939,17940,17941,17942,17943,17944,17945,17946,17947,17948,17949,17950,17951,17952,17953,17954,17955,17956,17957,17958,17959,17960,17961,17962,17963,17964,17965,17966,17967,17968,17969,17970,17971,17972,17973,17974,17975,17976,17977,17978,17979,17980,17981,17982,17983,17984,17985,17986,17987,17988,17989,17990,17991,17992,17993,17994,17995,17996,17997,17998,17999,18000,18001,18002,18003,18004,18005,18006,18007,18008,18009,18010,18011,18012,18013,18014,18015,18016,18017,18018,18019,18020,18021,18022,18023,18024,18025,18026,18027,18028,18029,18030,18031,18032,18033,18034,18035,18036,18037,18038,18039,18040,18041,18042,18043,18044,18045,18046,18047,18048,18049,18050,18051,18052,18053,18054,18055,18056,18057,18058,18059,18060,18061,18062,18063,18064,18065,18066,18067,18068,18069,18070,18071,18072,18073,18074,18075,18076,18077,18078,18079,18080,18081,18082,18083,18084,18085,18086,18087,18088,18089,18090,18091,18092,18093,18094,18095,18096,18097,18098,18099,18100,18101,18102,18103,18104,18105,18106,18107,18108,18109,18110,18111,18112,18113,18114,18115,18116,18117,18118,18119,18120,18121,18122,18123,18124,18125,18126,18127,18128,18129,18130,18131,18132,18133,18134,18135,18136,18137,18138,18139,18140,18141,18142,18143,18144,18145,18146,18147,18148,18149,18150,18151,18152,18153,18154,18155,18156,18157,18158,18159,18160,18161,18162,18163,18164,18165,18166,18167,18168,18169,18170,18171,18172,18173,18174,18175,18176,18177,18178,18179,18180,18181,18182,18183,18184,18185,18186,18187,18188,18189,18190,18191,18192,18193,18194,18195,18196,18197,18198,18199,18200,18201,18202,18203,18204,18205,18206,18207,18208,18209,18210,18211,18212,18213,18214,18215,18216,18217,18218,18219,18220,18221,18222,18223,18224,18225,18226,18227,18228,18229,18230,18231,18232,18233,18234,18235,18236,18237,18238,18239,18240,18241,18242,18243,18244,18245,18246,18247,18248,18249,18250,18251,18252,18253,18254,18255,18256,18257,18258,18259,18260,18261,18262,18263,18264,18265,18266,18267,18268,18269,18270,18271,18272,18273,18274,18275,18276,18277,18278,18279,18280,18281,18282,18283,18284,18285,18286,18287,18288,18289,18290,18291,18292,18293,18294,18295,18296,18297,18298,18299,18300,18301,18302,18303,18304,18305,18306,18307,18308,18309,18310,18311,18312,18313,18314,18315,18316,18317,18318,18319,18320,18321,18322,18323,18324,18325,18326,18327,18328,18329,18330,18331,18332,18333,18334,18335,18336,18337,18338,18339,18340,18341,18342,18343,18344,18345,18346,18347,18348,18349,18350,18351,18352,18353,18354,18355,18356,18357,18358,18359,18360,18361,18362,18363,18364,18365,18366,18367,18368,18369,18370,18371,18372,18373,18374,18375,18376,18377,18378,18379,18380,18381,18382,18383,18384,18385,18386,18387,18388,18389,18390,18391,18392,18393,18394,18395,18396,18397,18398,18399,18400,18401,18402,18403,18404,18405,18406,18407,18408,18409,18410,18411,18412,18413,18414,18415,18416,18417,18418,18419,18420,18421,18422,18423,18424,18425,18426,18427,18428,18429,18430,18431,18432,18433,18434,18435,18436,18437,18438,18439,18440,18441,18442,18443,18444,18445,18446,18447,18448,18449,18450,18451,18452,18453,18454,18455,18456,18457,18458,18459,18460,18461,18462,18463,18464,18465,18466,18467,18468,18469,18470,18471,18472,18473,18474,18475,18476,18477,18478,18479,18480,18481,18482,18483,18484,18485,18486,18487,18488,18489,18490,18491,18492,18493,18494,18495,18496,18497,18498,18499,18500,18501,18502,18503,18504,18505,18506,18507,18508,18509,18510,18511,18512,18513,18514,18515,18516,18517,18518,18519,18520,18521,18522,18523,18524,18525,18526,18527,18528,18529,18530,18531,18532,18533,18534,18535,18536,18537,18538,18539,18540,18541,18542,18543,18544,18545,18546,18547,18548,18549,18550,18551,18552,18553,18554,18555,18556,18557,18558,18559,18560,18561,18562,18563,18564,18565,18566,18567,18568,18569,18570,18571,18572,18573,18574,18575,18576,18577,18578,18579,18580,18581,18582,18583,18584,18585,18586,18587,18588,18589,18590,18591,18592,18593,18594,18595,18596,18597,18598,18599,18600,18601,18602,18603,18604,18605,18606,18607,18608,18609,18610,18611,18612,18613,18614,18615,18616,18617,18618,18619,18620,18621,18622,18623,18624,18625,18626,18627,18628,18629,18630,18631,18632,18633,18634,18635,18636,18637,18638,18639,18640,18641,18642,18643,18644,18645,18646,18647,18648,18649,18650,18651,18652,18653,18654,18655,18656,18657,18658,18659,18660,18661,18662,18663,18664,18665,18666,18667,18668,18669,18670,18671,18672,18673,18674,18675,18676,18677,18678,18679,18680,18681,18682,18683,18684,18685,18686,18687,18688,18689,18690,18691,18692,18693,18694,18695,18696,18697,18698,18699,18700,18701,18702,18703,18704,18705,18706,18707,18708,18709,18710,18711,18712,18713,18714,18715,18716,18717,18718,18719,18720,18721,18722,18723,18724,18725,18726,18727,18728,18729,18730,18731,18732,18733,18734,18735,18736,18737,18738,18739,18740,18741,18742,18743,18744,18745,18746,18747,18748,18749,18750,18751,18752,18753,18754,18755,18756,18757,18758,18759,18760,18761,18762,18763,18764,18765,18766,18767,18768,18769,18770,18771,18772,18773,18774,18775,18776,18777,18778,18779,18780,18781,18782,18783,18784,18785,18786,18787,18788,18789,18790,18791,18792,18793,18794,18795,18796,18797,18798,18799,18800,18801,18802,18803,18804,18805,18806,18807,18808,18809,18810,18811,18812,18813,18814,18815,18816,18817,18818,18819,18820,18821,18822,18823,18824,18825,18826,18827,18828,18829,18830,18831,18832,18833,18834,18835,18836,18837,18838,18839,18840,18841,18842,18843,18844,18845,18846,18847,18848,18849,18850,18851,18852,18853,18854,18855,18856,18857,18858,18859,18860,18861,18862,18863,18864,18865,18866,18867,18868,18869,18870,18871,18872,18873,18874,18875,18876,18877,18878,18879,18880,18881,18882,18883,18884,18885,18886,18887,18888,18889,18890,18891,18892,18893,18894,18895,18896,18897,18898,18899,18900,18901,18902,18903,18904,18905,18906,18907,18908,18909,18910,18911,18912,18913,18914,18915,18916,18917,18918,18919,18920,18921,18922,18923,18924,18925,18926,18927,18928,18929,18930,18931,18932,18933,18934,18935,18936,18937,18938,18939,18940,18941,18942,18943,18944,18945,18946,18947,18948,18949,18950,18951,18952,18953,18954,18955,18956,18957,18958,18959,18960,18961,18962,18963,18964,18965,18966,18967,18968,18969,18970,18971,18972,18973,18974,18975,18976,18977,18978,18979,18980,18981,18982,18983,18984,18985,18986,18987,18988,18989,18990,18991,18992,18993,18994,18995,18996,18997,18998,18999,19000,19001,19002,19003,19004,19005,19006,19007,19008,19009,19010,19011,19012,19013,19014,19015,19016,19017,19018,19019,19020,19021,19022,19023,19024,19025,19026,19027,19028,19029,19030,19031,19032,19033,19034,19035,19036,19037,19038,19039,19040,19041,19042,19043,19044,19045,19046,19047,19048,19049,19050,19051,19052,19053,19054,19055,19056,19057,19058,19059,19060,19061,19062,19063,19064,19065,19066,19067,19068,19069,19070,19071,19072,19073,19074,19075,19076,19077,19078,19079,19080,19081,19082,19083,19084,19085,19086,19087,19088,19089,19090,19091,19092,19093,19094,19095,19096,19097,19098,19099,19100,19101,19102,19103,19104,19105,19106,19107,19108,19109,19110,19111,19112,19113,19114,19115,19116,19117,19118,19119,19120,19121,19122,19123,19124,19125,19126,19127,19128,19129,19130,19131,19132,19133,19134,19135,19136,19137,19138,19139,19140,19141,19142,19143,19144,19145,19146,19147,19148,19149,19150,19151,19152,19153,19154,19155,19156,19157,19158,19159,19160,19161,19162,19163,19164,19165,19166,19167,19168,19169,19170,19171,19172,19173,19174,19175,19176,19177,19178,19179,19180,19181,19182,19183,19184,19185,19186,19187,19188,19189,19190,19191,19192,19193,19194,19195,19196,19197,19198,19199,19200,19201,19202,19203,19204,19205,19206,19207,19208,19209,19210,19211,19212,19213,19214,19215,19216,19217,19218,19219,19220,19221,19222,19223,19224,19225,19226,19227,19228,19229,19230,19231,19232,19233,19234,19235,19236,19237,19238,19239,19240,19241,19242,19243,19244,19245,19246,19247,19248,19249,19250,19251,19252,19253,19254,19255,19256,19257,19258,19259,19260,19261,19262,19263,19264,19265,19266,19267,19268,19269,19270,19271,19272,19273,19274,19275,19276,19277,19278,19279,19280,19281,19282,19283,19284,19285,19286,19287,19288,19289,19290,19291,19292,19293,19294,19295,19296,19297,19298,19299,19300,19301,19302,19303,19304,19305,19306,19307,19308,19309,19310,19311,19312,19313,19314,19315,19316,19317,19318,19319,19320,19321,19322,19323,19324,19325,19326,19327,19328,19329,19330,19331,19332,19333,19334,19335,19336,19337,19338,19339,19340,19341,19342,19343,19344,19345,19346,19347,19348,19349,19350,19351,19352,19353,19354,19355,19356,19357,19358,19359,19360,19361,19362,19363,19364,19365,19366,19367,19368,19369,19370,19371,19372,19373,19374,19375,19376,19377,19378,19379,19380,19381,19382,19383,19384,19385,19386,19387,19388,19389,19390,19391,19392,19393,19394,19395,19396,19397,19398,19399,19400,19401,19402,19403,19404,19405,19406,19407,19408,19409,19410,19411,19412,19413,19414,19415,19416,19417,19418,19419,19420,19421,19422,19423,19424,19425,19426,19427,19428,19429,19430,19431,19432,19433,19434,19435,19436,19437,19438,19439,19440,19441,19442,19443,19444,19445,19446,19447,19448,19449,19450,19451,19452,19453,19454,19455,19456,19457,19458,19459,19460,19461,19462,19463,19464,19465,19466,19467,19468,19469,19470,19471,19472,19473,19474,19475,19476,19477,19478,19479,19480,19481,19482,19483,19484,19485,19486,19487,19488,19489,19490,19491,19492,19493,19494,19495,19496,19497,19498,19499,19500,19501,19502,19503,19504,19505,19506,19507,19508,19509,19510,19511,19512,19513,19514,19515,19516,19517,19518,19519,19520,19521,19522,19523,19524,19525,19526,19527,19528,19529,19530,19531,19532,19533,19534,19535,19536,19537,19538,19539,19540,19541,19542,19543,19544,19545,19546,19547,19548,19549,19550,19551,19552,19553,19554,19555,19556,19557,19558,19559,19560,19561,19562,19563,19564,19565,19566,19567,19568,19569,19570,19571,19572,19573,19574,19575,19576,19577,19578,19579,19580,19581,19582,19583,19584,19585,19586,19587,19588,19589,19590,19591,19592,19593,19594,19595,19596,19597,19598,19599,19600,19601,19602,19603,19604,19605,19606,19607,19608,19609,19610,19611,19612,19613,19614,19615,19616,19617,19618,19619,19620,19621,19622,19623,19624,19625,19626,19627,19628,19629,19630,19631,19632,19633,19634,19635,19636,19637,19638,19639,19640,19641,19642,19643,19644,19645,19646,19647,19648,19649,19650,19651,19652,19653,19654,19655,19656,19657,19658,19659,19660,19661,19662,19663,19664,19665,19666,19667,19668,19669,19670,19671,19672,19673,19674,19675,19676,19677,19678,19679,19680,19681,19682,19683,19684,19685,19686,19687,19688,19689,19690,19691,19692,19693,19694,19695,19696,19697,19698,19699,19700,19701,19702,19703,19704,19705,19706,19707,19708,19709,19710,19711,19712,19713,19714,19715,19716,19717,19718,19719,19720,19721,19722,19723,19724,19725,19726,19727,19728,19729,19730,19731,19732,19733,19734,19735,19736,19737,19738,19739,19740,19741,19742,19743,19744,19745,19746,19747,19748,19749,19750,19751,19752,19753,19754,19755,19756,19757,19758,19759,19760,19761,19762,19763,19764,19765,19766,19767,19768,19769,19770,19771,19772,19773,19774,19775,19776,19777,19778,19779,19780,19781,19782,19783,19784,19785,19786,19787,19788,19789,19790,19791,19792,19793,19794,19795,19796,19797,19798,19799,19800,19801,19802,19803,19804,19805,19806,19807,19808,19809,19810,19811,19812,19813,19814,19815,19816,19817,19818,19819,19820,19821,19822,19823,19824,19825,19826,19827,19828,19829,19830,19831,19832,19833,19834,19835,19836,19837,19838,19839,19840,19841,19842,19843,19844,19845,19846,19847,19848,19849,19850,19851,19852,19853,19854,19855,19856,19857,19858,19859,19860,19861,19862,19863,19864,19865,19866,19867,19868,19869,19870,19871,19872,19873,19874,19875,19876,19877,19878,19879,19880,19881,19882,19883,19884,19885,19886,19887,19888,19889,19890,19891,19892,19893,19894,19895,19896,19897,19898,19899,19900,19901,19902,19903,19904,19905,19906,19907,19908,19909,19910,19911,19912,19913,19914,19915,19916,19917,19918,19919,19920,19921,19922,19923,19924,19925,19926,19927,19928,19929,19930,19931,19932,19933,19934,19935,19936,19937,19938,19939,19940,19941,19942,19943,19944,19945,19946,19947,19948,19949,19950,19951,19952,19953,19954,19955,19956,19957,19958,19959,19960,19961,19962,19963,19964,19965,19966,19967,19968,19969,19970,19971,19972,19973,19974,19975,19976,19977,19978,19979,19980,19981,19982,19983,19984,19985,19986,19987,19988,19989,19990,19991,19992,19993,19994,19995,19996,19997,19998,19999,20000,20001,20002,20003,20004,20005,20006,20007,20008,20009,20010,20011,20012,20013,20014,20015,20016,20017,20018,20019,20020,20021,20022,20023,20024,20025,20026,20027,20028,20029,20030,20031,20032,20033,20034,20035,20036,20037,20038,20039,20040,20041,20042,20043,20044,20045,20046,20047,20048,20049,20050,20051,20052,20053,20054,20055,20056,20057,20058,20059,20060,20061,20062,20063,20064,20065,20066,20067,20068,20069,20070,20071,20072,20073,20074,20075,20076,20077,20078,20079,20080,20081,20082,20083,20084,20085,20086,20087,20088,20089,20090,20091,20092,20093,20094,20095,20096,20097,20098,20099,20100,20101,20102,20103,20104,20105,20106,20107,20108,20109,20110,20111,20112,20113,20114,20115,20116,20117,20118,20119,20120,20121,20122,20123,20124,20125,20126,20127,20128,20129,20130,20131,20132,20133,20134,20135,20136,20137,20138,20139,20140,20141,20142,20143,20144,20145,20146,20147,20148,20149,20150,20151,20152,20153,20154,20155,20156,20157,20158,20159,20160,20161,20162,20163,20164,20165,20166,20167,20168,20169,20170,20171,20172,20173,20174,20175,20176,20177,20178,20179,20180,20181,20182,20183,20184,20185,20186,20187,20188,20189,20190,20191,20192,20193,20194,20195,20196,20197,20198,20199,20200,20201,20202,20203,20204,20205,20206,20207,20208,20209,20210,20211,20212,20213,20214,20215,20216,20217,20218,20219,20220,20221,20222,20223,20224,20225,20226,20227,20228,20229,20230,20231,20232,20233,20234,20235,20236,20237,20238,20239,20240,20241,20242,20243,20244,20245,20246,20247,20248,20249,20250,20251,20252,20253,20254,20255,20256,20257,20258,20259,20260,20261,20262,20263,20264,20265,20266,20267,20268,20269,20270,20271,20272,20273,20274,20275,20276,20277,20278,20279,20280,20281,20282,20283,20284,20285,20286,20287,20288,20289,20290,20291,20292,20293,20294,20295,20296,20297,20298,20299,20300,20301,20302,20303,20304,20305,20306,20307,20308,20309,20310,20311,20312,20313,20314,20315,20316,20317,20318,20319,20320,20321,20322,20323,20324,20325,20326,20327,20328,20329,20330,20331,20332,20333,20334,20335,20336,20337,20338,20339,20340,20341,20342,20343,20344,20345,20346,20347,20348,20349,20350,20351,20352,20353,20354,20355,20356,20357,20358,20359,20360,20361,20362,20363,20364,20365,20366,20367,20368,20369,20370,20371,20372,20373,20374,20375,20376,20377,20378,20379,20380,20381,20382,20383,20384,20385,20386,20387,20388,20389,20390,20391,20392,20393,20394,20395,20396,20397,20398,20399,20400,20401,20402,20403,20404,20405,20406,20407,20408,20409,20410,20411,20412,20413,20414,20415,20416,20417,20418,20419,20420,20421,20422,20423,20424,20425,20426,20427,20428,20429,20430,20431,20432,20433,20434,20435,20436,20437,20438,20439,20440,20441,20442,20443,20444,20445,20446,20447,20448,20449,20450,20451,20452,20453,20454,20455,20456,20457,20458,20459,20460,20461,20462,20463,20464,20465,20466,20467,20468,20469,20470,20471,20472,20473,20474,20475,20476,20477,20478,20479,20480,20481,20482,20483,20484,20485,20486,20487,20488,20489,20490,20491,20492,20493,20494,20495,20496,20497,20498,20499,20500,20501,20502,20503,20504,20505,20506,20507,20508,20509,20510,20511,20512,20513,20514,20515,20516,20517,20518,20519,20520,20521,20522,20523,20524,20525,20526,20527,20528,20529,20530,20531,20532,20533,20534,20535,20536,20537,20538,20539,20540,20541,20542,20543,20544,20545,20546,20547,20548,20549,20550,20551,20552,20553,20554,20555,20556,20557,20558,20559,20560,20561,20562,20563,20564,20565,20566,20567,20568,20569,20570,20571,20572,20573,20574,20575,20576,20577,20578,20579,20580,20581,20582,20583,20584,20585,20586,20587,20588,20589,20590,20591,20592,20593,20594,20595,20596,20597,20598,20599,20600,20601,20602,20603,20604,20605,20606,20607,20608,20609,20610,20611,20612,20613,20614,20615,20616,20617,20618,20619,20620,20621,20622,20623,20624,20625,20626,20627,20628,20629,20630,20631,20632,20633,20634,20635,20636,20637,20638,20639,20640,20641,20642,20643,20644,20645,20646,20647,20648,20649,20650,20651,20652,20653,20654,20655,20656,20657,20658,20659,20660,20661,20662,20663,20664,20665,20666,20667,20668,20669,20670,20671,20672,20673,20674,20675,20676,20677,20678,20679,20680,20681,20682,20683,20684,20685,20686,20687,20688,20689,20690,20691,20692,20693,20694,20695,20696,20697,20698,20699,20700,20701,20702,20703,20704,20705,20706,20707,20708,20709,20710,20711,20712,20713,20714,20715,20716,20717,20718,20719,20720,20721,20722,20723,20724,20725,20726,20727,20728,20729,20730,20731,20732,20733,20734,20735,20736,20737,20738,20739,20740,20741,20742,20743,20744,20745,20746,20747,20748,20749,20750,20751,20752,20753,20754,20755,20756,20757,20758,20759,20760,20761,20762,20763,20764,20765,20766,20767,20768,20769,20770,20771,20772,20773,20774,20775,20776,20777,20778,20779,20780,20781,20782,20783,20784,20785,20786,20787,20788,20789,20790,20791,20792,20793,20794,20795,20796,20797,20798,20799,20800,20801,20802,20803,20804,20805,20806,20807,20808,20809,20810,20811,20812,20813,20814,20815,20816,20817,20818,20819,20820,20821,20822,20823,20824,20825,20826,20827,20828,20829,20830,20831,20832,20833,20834,20835,20836,20837,20838,20839,20840,20841,20842,20843,20844,20845,20846,20847,20848,20849,20850,20851,20852,20853,20854,20855,20856,20857,20858,20859,20860,20861,20862,20863,20864,20865,20866,20867,20868,20869,20870,20871,20872,20873,20874,20875,20876,20877,20878,20879,20880,20881,20882,20883,20884,20885,20886,20887,20888,20889,20890,20891,20892,20893,20894,20895,20896,20897,20898,20899,20900,20901,20902,20903,20904,20905,20906,20907,20908,20909,20910,20911,20912,20913,20914,20915,20916,20917,20918,20919,20920,20921,20922,20923,20924,20925,20926,20927,20928,20929,20930,20931,20932,20933,20934,20935,20936,20937,20938,20939,20940,20941,20942,20943,20944,20945,20946,20947,20948,20949,20950,20951,20952,20953,20954,20955,20956,20957,20958,20959,20960,20961,20962,20963,20964,20965,20966,20967,20968,20969,20970,20971,20972,20973,20974,20975,20976,20977,20978,20979,20980,20981,20982,20983,20984,20985,20986,20987,20988,20989,20990,20991,20992,20993,20994,20995,20996,20997,20998,20999,21000,21001,21002,21003,21004,21005,21006,21007,21008,21009,21010,21011,21012,21013,21014,21015,21016,21017,21018,21019,21020,21021,21022,21023,21024,21025,21026,21027,21028,21029,21030,21031,21032,21033,21034,21035,21036,21037,21038,21039,21040,21041,21042,21043,21044,21045,21046,21047,21048,21049,21050,21051,21052,21053,21054,21055,21056,21057,21058,21059,21060,21061,21062,21063,21064,21065,21066,21067,21068,21069,21070,21071,21072,21073,21074,21075,21076,21077,21078,21079,21080,21081,21082,21083,21084,21085,21086,21087,21088,21089,21090,21091,21092,21093,21094,21095,21096,21097,21098,21099,21100,21101,21102,21103,21104,21105,21106,21107,21108,21109,21110,21111,21112,21113,21114,21115,21116,21117,21118,21119,21120,21121,21122,21123,21124,21125,21126,21127,21128,21129,21130,21131,21132,21133,21134,21135,21136,21137,21138,21139,21140,21141,21142,21143,21144,21145,21146,21147,21148,21149,21150,21151,21152,21153,21154,21155,21156,21157,21158,21159,21160,21161,21162,21163,21164,21165,21166,21167,21168,21169,21170,21171,21172,21173,21174,21175,21176,21177,21178,21179,21180,21181,21182,21183,21184,21185,21186,21187,21188,21189,21190,21191,21192,21193,21194,21195,21196,21197,21198,21199,21200,21201,21202,21203,21204,21205,21206,21207,21208,21209,21210,21211,21212,21213,21214,21215,21216,21217,21218,21219,21220,21221,21222,21223,21224,21225,21226,21227,21228,21229,21230,21231,21232,21233,21234,21235,21236,21237,21238,21239,21240,21241,21242,21243,21244,21245,21246,21247,21248,21249,21250,21251,21252,21253,21254,21255,21256,21257,21258,21259,21260,21261,21262,21263,21264,21265,21266,21267,21268,21269,21270,21271,21272,21273,21274,21275,21276,21277,21278,21279,21280,21281,21282,21283,21284,21285,21286,21287,21288,21289,21290,21291,21292,21293,21294,21295,21296,21297,21298,21299,21300,21301,21302,21303,21304,21305,21306,21307,21308,21309,21310,21311,21312,21313,21314,21315,21316,21317,21318,21319,21320,21321,21322,21323,21324,21325,21326,21327,21328,21329,21330,21331,21332,21333,21334,21335,21336,21337,21338,21339,21340,21341,21342,21343,21344,21345,21346,21347,21348,21349,21350,21351,21352,21353,21354,21355,21356,21357,21358,21359,21360,21361,21362,21363,21364,21365,21366,21367,21368,21369,21370,21371,21372,21373,21374,21375,21376,21377,21378,21379,21380,21381,21382,21383,21384,21385,21386,21387,21388,21389,21390,21391,21392,21393,21394,21395,21396,21397,21398,21399,21400,21401,21402,21403,21404,21405,21406,21407,21408,21409,21410,21411,21412,21413,21414,21415,21416,21417,21418,21419,21420,21421,21422,21423,21424,21425,21426,21427,21428,21429,21430,21431,21432,21433,21434,21435,21436,21437,21438,21439,21440,21441,21442,21443,21444,21445,21446,21447,21448,21449,21450,21451,21452,21453,21454,21455,21456,21457,21458,21459,21460,21461,21462,21463,21464,21465,21466,21467,21468,21469,21470,21471,21472,21473,21474,21475,21476,21477,21478,21479,21480,21481,21482,21483,21484,21485,21486,21487,21488,21489,21490,21491,21492,21493,21494,21495,21496,21497,21498,21499,21500,21501,21502,21503,21504,21505,21506,21507,21508,21509,21510,21511,21512,21513,21514,21515,21516,21517,21518,21519,21520,21521,21522,21523,21524,21525,21526,21527,21528,21529,21530,21531,21532,21533,21534,21535,21536,21537,21538,21539,21540,21541,21542,21543,21544,21545,21546,21547,21548,21549,21550,21551,21552,21553,21554,21555,21556,21557,21558,21559,21560,21561,21562,21563,21564,21565,21566,21567,21568,21569,21570,21571,21572,21573,21574,21575,21576,21577,21578,21579,21580,21581,21582,21583,21584,21585,21586,21587,21588,21589,21590,21591,21592,21593,21594,21595,21596,21597,21598,21599,21600,21601,21602,21603,21604,21605,21606,21607,21608,21609,21610,21611,21612,21613,21614,21615,21616,21617,21618,21619,21620,21621,21622,21623,21624,21625,21626,21627,21628,21629,21630,21631,21632,21633,21634,21635,21636,21637,21638,21639,21640,21641,21642,21643,21644,21645,21646,21647,21648,21649,21650,21651,21652,21653,21654,21655,21656,21657,21658,21659,21660,21661,21662,21663,21664,21665,21666,21667,21668,21669,21670,21671,21672,21673,21674,21675,21676,21677,21678,21679,21680,21681,21682,21683,21684,21685,21686,21687,21688,21689,21690,21691,21692,21693,21694,21695,21696,21697,21698,21699,21700,21701,21702,21703,21704,21705,21706,21707,21708,21709,21710,21711,21712,21713,21714,21715,21716,21717,21718,21719,21720,21721,21722,21723,21724,21725,21726,21727,21728,21729,21730,21731,21732,21733,21734,21735,21736,21737,21738,21739,21740,21741,21742,21743,21744,21745,21746,21747,21748,21749,21750,21751,21752,21753,21754,21755,21756,21757,21758,21759,21760,21761,21762,21763,21764,21765,21766,21767,21768,21769,21770,21771,21772,21773,21774,21775,21776,21777,21778,21779,21780,21781,21782,21783,21784,21785,21786,21787,21788,21789,21790,21791,21792,21793,21794,21795,21796,21797,21798,21799,21800,21801,21802,21803,21804,21805,21806,21807,21808,21809,21810,21811,21812,21813,21814,21815,21816,21817,21818,21819,21820,21821,21822,21823,21824,21825,21826,21827,21828,21829,21830,21831,21832,21833,21834,21835,21836,21837,21838,21839,21840,21841,21842,21843,21844,21845,21846,21847,21848,21849,21850,21851,21852,21853,21854,21855,21856,21857,21858,21859,21860,21861,21862,21863,21864,21865,21866,21867,21868,21869,21870,21871,21872,21873,21874,21875,21876,21877,21878,21879,21880,21881,21882,21883,21884,21885,21886,21887,21888,21889,21890,21891,21892,21893,21894,21895,21896,21897,21898,21899,21900,21901,21902,21903,21904,21905,21906,21907,21908,21909,21910,21911,21912,21913,21914,21915,21916,21917,21918,21919,21920,21921,21922,21923,21924,21925,21926,21927,21928,21929,21930,21931,21932,21933,21934,21935,21936,21937,21938,21939,21940,21941,21942,21943,21944,21945,21946,21947,21948,21949,21950,21951,21952,21953,21954,21955,21956,21957,21958,21959,21960,21961,21962,21963,21964,21965,21966,21967,21968,21969,21970,21971,21972,21973,21974,21975,21976,21977,21978,21979,21980,21981,21982,21983,21984,21985,21986,21987,21988,21989,21990,21991,21992,21993,21994,21995,21996,21997,21998,21999,22000,22001,22002,22003,22004,22005,22006,22007,22008,22009,22010,22011,22012,22013,22014,22015,22016,22017,22018,22019,22020,22021,22022,22023,22024,22025,22026,22027,22028,22029,22030,22031,22032,22033,22034,22035,22036,22037,22038,22039,22040,22041,22042,22043,22044,22045,22046,22047,22048,22049,22050,22051,22052,22053,22054,22055,22056,22057,22058,22059,22060,22061,22062,22063,22064,22065,22066,22067,22068,22069,22070,22071,22072,22073,22074,22075,22076,22077,22078,22079,22080,22081,22082,22083,22084,22085,22086,22087,22088,22089,22090,22091,22092,22093,22094,22095,22096,22097,22098,22099,22100,22101,22102,22103,22104,22105,22106,22107,22108,22109,22110,22111,22112,22113,22114,22115,22116,22117,22118,22119,22120,22121,22122,22123,22124,22125,22126,22127,22128,22129,22130,22131,22132,22133,22134,22135,22136,22137,22138,22139,22140,22141,22142,22143,22144,22145,22146,22147,22148,22149,22150,22151,22152,22153,22154,22155,22156,22157,22158,22159,22160,22161,22162,22163,22164,22165,22166,22167,22168,22169,22170,22171,22172,22173,22174,22175,22176,22177,22178,22179,22180,22181,22182,22183,22184,22185,22186,22187,22188,22189,22190,22191,22192,22193,22194,22195,22196,22197,22198,22199,22200,22201,22202,22203,22204,22205,22206,22207,22208,22209,22210,22211,22212,22213,22214,22215,22216,22217,22218,22219,22220,22221,22222,22223,22224,22225,22226,22227,22228,22229,22230,22231,22232,22233,22234,22235,22236,22237,22238,22239,22240,22241,22242,22243,22244,22245,22246,22247,22248,22249,22250,22251,22252,22253,22254,22255,22256,22257,22258,22259,22260,22261,22262,22263,22264,22265,22266,22267,22268,22269,22270,22271,22272,22273,22274,22275,22276,22277,22278,22279,22280,22281,22282,22283,22284,22285,22286,22287,22288,22289,22290,22291,22292,22293,22294,22295,22296,22297,22298,22299,22300,22301,22302,22303,22304,22305,22306,22307,22308,22309,22310,22311,22312,22313,22314,22315,22316,22317,22318,22319,22320,22321,22322,22323,22324,22325,22326,22327,22328,22329,22330,22331,22332,22333,22334,22335,22336,22337,22338,22339,22340,22341,22342,22343,22344,22345,22346,22347,22348,22349,22350,22351,22352,22353,22354,22355,22356,22357,22358,22359,22360,22361,22362,22363,22364,22365,22366,22367,22368,22369,22370,22371,22372,22373,22374,22375,22376,22377,22378,22379,22380,22381,22382,22383,22384,22385,22386,22387,22388,22389,22390,22391,22392,22393,22394,22395,22396,22397,22398,22399,22400,22401,22402,22403,22404,22405,22406,22407,22408,22409,22410,22411,22412,22413,22414,22415,22416,22417,22418,22419,22420,22421,22422,22423,22424,22425,22426,22427,22428,22429,22430,22431,22432,22433,22434,22435,22436,22437,22438,22439,22440,22441,22442,22443,22444,22445,22446,22447,22448,22449,22450,22451,22452,22453,22454,22455,22456,22457,22458,22459,22460,22461,22462,22463,22464,22465,22466,22467,22468,22469,22470,22471,22472,22473,22474,22475,22476,22477,22478,22479,22480,22481,22482,22483,22484,22485,22486,22487,22488,22489,22490,22491,22492,22493,22494,22495,22496,22497,22498,22499,22500,22501,22502,22503,22504,22505,22506,22507,22508,22509,22510,22511,22512,22513,22514,22515,22516,22517,22518,22519,22520,22521,22522,22523,22524,22525,22526,22527,22528,22529,22530,22531,22532,22533,22534,22535,22536,22537,22538,22539,22540,22541,22542,22543,22544,22545,22546,22547,22548,22549,22550,22551,22552,22553,22554,22555,22556,22557,22558,22559,22560,22561,22562,22563,22564,22565,22566,22567,22568,22569,22570,22571,22572,22573,22574,22575,22576,22577,22578,22579,22580,22581,22582,22583,22584,22585,22586,22587,22588,22589,22590,22591,22592,22593,22594,22595,22596,22597,22598,22599,22600,22601,22602,22603,22604,22605,22606,22607,22608,22609,22610,22611,22612,22613,22614,22615,22616,22617,22618,22619,22620,22621,22622,22623,22624,22625,22626,22627,22628,22629,22630,22631,22632,22633,22634,22635,22636,22637,22638,22639,22640,22641,22642,22643,22644,22645,22646,22647,22648,22649,22650,22651,22652,22653,22654,22655,22656,22657,22658,22659,22660,22661,22662,22663,22664,22665,22666,22667,22668,22669,22670,22671,22672,22673,22674,22675,22676,22677,22678,22679,22680,22681,22682,22683,22684,22685,22686,22687,22688,22689,22690,22691,22692,22693,22694,22695,22696,22697,22698,22699,22700,22701,22702,22703,22704,22705,22706,22707,22708,22709,22710,22711,22712,22713,22714,22715,22716,22717,22718,22719,22720,22721,22722,22723,22724,22725,22726,22727,22728,22729,22730,22731,22732,22733,22734,22735,22736,22737,22738,22739,22740,22741,22742,22743,22744,22745,22746,22747,22748,22749,22750,22751,22752,22753,22754,22755,22756,22757,22758,22759,22760,22761,22762,22763,22764,22765,22766,22767,22768,22769,22770,22771,22772,22773,22774,22775,22776,22777,22778,22779,22780,22781,22782,22783,22784,22785,22786,22787,22788,22789,22790,22791,22792,22793,22794,22795,22796,22797,22798,22799,22800,22801,22802,22803,22804,22805,22806,22807,22808,22809,22810,22811,22812,22813,22814,22815,22816,22817,22818,22819,22820,22821,22822,22823,22824,22825,22826,22827,22828,22829,22830,22831,22832,22833,22834,22835,22836,22837,22838,22839,22840,22841,22842,22843,22844,22845,22846,22847,22848,22849,22850,22851,22852,22853,22854,22855,22856,22857,22858,22859,22860,22861,22862,22863,22864,22865,22866,22867,22868,22869,22870,22871,22872,22873,22874,22875,22876,22877,22878,22879,22880,22881,22882,22883,22884,22885,22886,22887,22888,22889,22890,22891,22892,22893,22894,22895,22896,22897,22898,22899,22900,22901,22902,22903,22904,22905,22906,22907,22908,22909,22910,22911,22912,22913,22914,22915,22916,22917,22918,22919,22920,22921,22922,22923,22924,22925,22926,22927,22928,22929,22930,22931,22932,22933,22934,22935,22936,22937,22938,22939,22940,22941,22942,22943,22944,22945,22946,22947,22948,22949,22950,22951,22952,22953,22954,22955,22956,22957,22958,22959,22960,22961,22962,22963,22964,22965,22966,22967,22968,22969,22970,22971,22972,22973,22974,22975,22976,22977,22978,22979,22980,22981,22982,22983,22984,22985,22986,22987,22988,22989,22990,22991,22992,22993,22994,22995,22996,22997,22998,22999,23000,23001,23002,23003,23004,23005,23006,23007,23008,23009,23010,23011,23012,23013,23014,23015,23016,23017,23018,23019,23020,23021,23022,23023,23024,23025,23026,23027,23028,23029,23030,23031,23032,23033,23034,23035,23036,23037,23038,23039,23040,23041,23042,23043,23044,23045,23046,23047,23048,23049,23050,23051,23052,23053,23054,23055,23056,23057,23058,23059,23060,23061,23062,23063,23064,23065,23066,23067,23068,23069,23070,23071,23072,23073,23074,23075,23076,23077,23078,23079,23080,23081,23082,23083,23084,23085,23086,23087,23088,23089,23090,23091,23092,23093,23094,23095,23096,23097,23098,23099,23100,23101,23102,23103,23104,23105,23106,23107,23108,23109,23110,23111,23112,23113,23114,23115,23116,23117,23118,23119,23120,23121,23122,23123,23124,23125,23126,23127,23128,23129,23130,23131,23132,23133,23134,23135,23136,23137,23138,23139,23140,23141,23142,23143,23144,23145,23146,23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23161,23162,23163,23164,23165,23166,23167,23168,23169,23170,23171,23172,23173,23174,23175,23176,23177,23178,23179,23180,23181,23182,23183,23184,23185,23186,23187,23188,23189,23190,23191,23192,23193,23194,23195,23196,23197,23198,23199,23200,23201,23202,23203,23204,23205,23206,23207,23208,23209,23210,23211,23212,23213,23214,23215,23216,23217,23218,23219,23220,23221,23222,23223,23224,23225,23226,23227,23228,23229,23230,23231,23232,23233,23234,23235,23236,23237,23238,23239,23240,23241,23242,23243,23244,23245,23246,23247,23248,23249,23250,23251,23252,23253,23254,23255,23256,23257,23258,23259,23260,23261,23262,23263,23264,23265,23266,23267,23268,23269,23270,23271,23272,23273,23274,23275,23276,23277,23278,23279,23280,23281,23282,23283,23284,23285,23286,23287,23288,23289,23290,23291,23292,23293,23294,23295,23296,23297,23298,23299,23300,23301,23302,23303,23304,23305,23306,23307,23308,23309,23310,23311,23312,23313,23314,23315,23316,23317,23318,23319,23320,23321,23322,23323,23324,23325,23326,23327,23328,23329,23330,23331,23332,23333,23334,23335,23336,23337,23338,23339,23340,23341,23342,23343,23344,23345,23346,23347,23348,23349,23350,23351,23352,23353,23354,23355,23356,23357,23358,23359,23360,23361,23362,23363,23364,23365,23366,23367,23368,23369,23370,23371,23372,23373,23374,23375,23376,23377,23378,23379,23380,23381,23382,23383,23384,23385,23386,23387,23388,23389,23390,23391,23392,23393,23394,23395,23396,23397,23398,23399,23400,23401,23402,23403,23404,23405,23406,23407,23408,23409,23410,23411,23412,23413,23414,23415,23416,23417,23418,23419,23420,23421,23422,23423,23424,23425,23426,23427,23428,23429,23430,23431,23432,23433,23434,23435,23436,23437,23438,23439,23440,23441,23442,23443,23444,23445,23446,23447,23448,23449,23450,23451,23452,23453,23454,23455,23456,23457,23458,23459,23460,23461,23462,23463,23464,23465,23466,23467,23468,23469,23470,23471,23472,23473,23474,23475,23476,23477,23478,23479,23480,23481,23482,23483,23484,23485,23486,23487,23488,23489,23490,23491,23492,23493,23494,23495,23496,23497,23498,23499,23500,23501,23502,23503,23504,23505,23506,23507,23508,23509,23510,23511,23512,23513,23514,23515,23516,23517,23518,23519,23520,23521,23522,23523,23524,23525,23526,23527,23528,23529,23530,23531,23532,23533,23534,23535,23536,23537,23538,23539,23540,23541,23542,23543,23544,23545,23546,23547,23548,23549,23550,23551,23552,23553,23554,23555,23556,23557,23558,23559,23560,23561,23562,23563,23564,23565,23566,23567,23568,23569,23570,23571,23572,23573,23574,23575,23576,23577,23578,23579,23580,23581,23582,23583,23584,23585,23586,23587,23588,23589,23590,23591,23592,23593,23594,23595,23596,23597,23598,23599,23600,23601,23602,23603,23604,23605,23606,23607,23608,23609,23610,23611,23612,23613,23614,23615,23616,23617,23618,23619,23620,23621,23622,23623,23624,23625,23626,23627,23628,23629,23630,23631,23632,23633,23634,23635,23636,23637,23638,23639,23640,23641,23642,23643,23644,23645,23646,23647,23648,23649,23650,23651,23652,23653,23654,23655,23656,23657,23658,23659,23660,23661,23662,23663,23664,23665,23666,23667,23668,23669,23670,23671,23672,23673,23674,23675,23676,23677,23678,23679,23680,23681,23682,23683,23684,23685,23686,23687,23688,23689,23690,23691,23692,23693,23694,23695,23696,23697,23698,23699,23700,23701,23702,23703,23704,23705,23706,23707,23708,23709,23710,23711,23712,23713,23714,23715,23716,23717,23718,23719,23720,23721,23722,23723,23724,23725,23726,23727,23728,23729,23730,23731,23732,23733,23734,23735,23736,23737,23738,23739,23740,23741,23742,23743,23744,23745,23746,23747,23748,23749,23750,23751,23752,23753,23754,23755,23756,23757,23758,23759,23760,23761,23762,23763,23764,23765,23766,23767,23768,23769,23770,23771,23772,23773,23774,23775,23776,23777,23778,23779,23780,23781,23782,23783,23784,23785,23786,23787,23788,23789,23790,23791,23792,23793,23794,23795,23796,23797,23798,23799,23800,23801,23802,23803,23804,23805,23806,23807,23808,23809,23810,23811,23812,23813,23814,23815,23816,23817,23818,23819,23820,23821,23822,23823,23824,23825,23826,23827,23828,23829,23830,23831,23832,23833,23834,23835,23836,23837,23838,23839,23840,23841,23842,23843,23844,23845,23846,23847,23848,23849,23850,23851,23852,23853,23854,23855,23856,23857,23858,23859,23860,23861,23862,23863,23864,23865,23866,23867,23868,23869,23870,23871,23872,23873,23874,23875,23876,23877,23878,23879,23880,23881,23882,23883,23884,23885,23886,23887,23888,23889,23890,23891,23892,23893,23894,23895,23896,23897,23898,23899,23900,23901,23902,23903,23904,23905,23906,23907,23908,23909,23910,23911,23912,23913,23914,23915,23916,23917,23918,23919,23920,23921,23922,23923,23924,23925,23926,23927,23928,23929,23930,23931,23932,23933,23934,23935,23936,23937,23938,23939,23940,23941,23942,23943,23944,23945,23946,23947,23948,23949,23950,23951,23952,23953,23954,23955,23956,23957,23958,23959,23960,23961,23962,23963,23964,23965,23966,23967,23968,23969,23970,23971,23972,23973,23974,23975,23976,23977,23978,23979,23980,23981,23982,23983,23984,23985,23986,23987,23988,23989,23990,23991,23992,23993,23994,23995,23996,23997,23998,23999,24000,24001,24002,24003,24004,24005,24006,24007,24008,24009,24010,24011,24012,24013,24014,24015,24016,24017,24018,24019,24020,24021,24022,24023,24024,24025,24026,24027,24028,24029,24030,24031,24032,24033,24034,24035,24036,24037,24038,24039,24040,24041,24042,24043,24044,24045,24046,24047,24048,24049,24050,24051,24052,24053,24054,24055,24056,24057,24058,24059,24060,24061,24062,24063,24064,24065,24066,24067,24068,24069,24070,24071,24072,24073,24074,24075,24076,24077,24078,24079,24080,24081,24082,24083,24084,24085,24086,24087,24088,24089,24090,24091,24092,24093,24094,24095,24096,24097,24098,24099,24100,24101,24102,24103,24104,24105,24106,24107,24108,24109,24110,24111,24112,24113,24114,24115,24116,24117,24118,24119,24120,24121,24122,24123,24124,24125,24126,24127,24128,24129,24130,24131,24132,24133,24134,24135,24136,24137,24138,24139,24140,24141,24142,24143,24144,24145,24146,24147,24148,24149,24150,24151,24152,24153,24154,24155,24156,24157,24158,24159,24160,24161,24162,24163,24164,24165,24166,24167,24168,24169,24170,24171,24172,24173,24174,24175,24176,24177,24178,24179,24180,24181,24182,24183,24184,24185,24186,24187,24188,24189,24190,24191,24192,24193,24194,24195,24196,24197,24198,24199,24200,24201,24202,24203,24204,24205,24206,24207,24208,24209,24210,24211,24212,24213,24214,24215,24216,24217,24218,24219,24220,24221,24222,24223,24224,24225,24226,24227,24228,24229,24230,24231,24232,24233,24234,24235,24236,24237,24238,24239,24240,24241,24242,24243,24244,24245,24246,24247,24248,24249,24250,24251,24252,24253,24254,24255,24256,24257,24258,24259,24260,24261,24262,24263,24264,24265,24266,24267,24268,24269,24270,24271,24272,24273,24274,24275,24276,24277,24278,24279,24280,24281,24282,24283,24284,24285,24286,24287,24288,24289,24290,24291,24292,24293,24294,24295,24296,24297,24298,24299,24300,24301,24302,24303,24304,24305,24306,24307,24308,24309,24310,24311,24312,24313,24314,24315,24316,24317,24318,24319,24320,24321,24322,24323,24324,24325,24326,24327,24328,24329,24330,24331,24332,24333,24334,24335,24336,24337,24338,24339,24340,24341,24342,24343,24344,24345,24346,24347,24348,24349,24350,24351,24352,24353,24354,24355,24356,24357,24358,24359,24360,24361,24362,24363,24364,24365,24366,24367,24368,24369,24370,24371,24372,24373,24374,24375,24376,24377,24378,24379,24380,24381,24382,24383,24384,24385,24386,24387,24388,24389,24390,24391,24392,24393,24394,24395,24396,24397,24398,24399,24400,24401,24402,24403,24404,24405,24406,24407,24408,24409,24410,24411,24412,24413,24414,24415,24416,24417,24418,24419,24420,24421,24422,24423,24424,24425,24426,24427,24428,24429,24430,24431,24432,24433,24434,24435,24436,24437,24438,24439,24440,24441,24442,24443,24444,24445,24446,24447,24448,24449,24450,24451,24452,24453,24454,24455,24456,24457,24458,24459,24460,24461,24462,24463,24464,24465,24466,24467,24468,24469,24470,24471,24472,24473,24474,24475,24476,24477,24478,24479,24480,24481,24482,24483,24484,24485,24486,24487,24488,24489,24490,24491,24492,24493,24494,24495,24496,24497,24498,24499,24500,24501,24502,24503,24504,24505,24506,24507,24508,24509,24510,24511,24512,24513,24514,24515,24516,24517,24518,24519,24520,24521,24522,24523,24524,24525,24526,24527,24528,24529,24530,24531,24532,24533,24534,24535,24536,24537,24538,24539,24540,24541,24542,24543,24544,24545,24546,24547,24548,24549,24550,24551,24552,24553,24554,24555,24556,24557,24558,24559,24560,24561,24562,24563,24564,24565,24566,24567,24568,24569,24570,24571,24572,24573,24574,24575,24576,24577,24578,24579,24580,24581,24582,24583,24584,24585,24586,24587,24588,24589,24590,24591,24592,24593,24594,24595,24596,24597,24598,24599,24600,24601,24602,24603,24604,24605,24606,24607,24608,24609,24610,24611,24612,24613,24614,24615,24616,24617,24618,24619,24620,24621,24622,24623,24624,24625,24626,24627,24628,24629,24630,24631,24632,24633,24634,24635,24636,24637,24638,24639,24640,24641,24642,24643,24644,24645,24646,24647,24648,24649,24650,24651,24652,24653,24654,24655,24656,24657,24658,24659,24660,24661,24662,24663,24664,24665,24666,24667,24668,24669,24670,24671,24672,24673,24674,24675,24676,24677,24678,24679,24680,24681,24682,24683,24684,24685,24686,24687,24688,24689,24690,24691,24692,24693,24694,24695,24696,24697,24698,24699,24700,24701,24702,24703,24704,24705,24706,24707,24708,24709,24710,24711,24712,24713,24714,24715,24716,24717,24718,24719,24720,24721,24722,24723,24724,24725,24726,24727,24728,24729,24730,24731,24732,24733,24734,24735,24736,24737,24738,24739,24740,24741,24742,24743,24744,24745,24746,24747,24748,24749,24750,24751,24752,24753,24754,24755,24756,24757,24758,24759,24760,24761,24762,24763,24764,24765,24766,24767,24768,24769,24770,24771,24772,24773,24774,24775,24776,24777,24778,24779,24780,24781,24782,24783,24784,24785,24786,24787,24788,24789,24790,24791,24792,24793,24794,24795,24796,24797,24798,24799,24800,24801,24802,24803,24804,24805,24806,24807,24808,24809,24810,24811,24812,24813,24814,24815,24816,24817,24818,24819,24820,24821,24822,24823,24824,24825,24826,24827,24828,24829,24830,24831,24832,24833,24834,24835,24836,24837,24838,24839,24840,24841,24842,24843,24844,24845,24846,24847,24848,24849,24850,24851,24852,24853,24854,24855,24856,24857,24858,24859,24860,24861,24862,24863,24864,24865,24866,24867,24868,24869,24870,24871,24872,24873,24874,24875,24876,24877,24878,24879,24880,24881,24882,24883,24884,24885,24886,24887,24888,24889,24890,24891,24892,24893,24894,24895,24896,24897,24898,24899,24900,24901,24902,24903,24904,24905,24906,24907,24908,24909,24910,24911,24912,24913,24914,24915,24916,24917,24918,24919,24920,24921,24922,24923,24924,24925,24926,24927,24928,24929,24930,24931,24932,24933,24934,24935,24936,24937,24938,24939,24940,24941,24942,24943,24944,24945,24946,24947,24948,24949,24950,24951,24952,24953,24954,24955,24956,24957,24958,24959,24960,24961,24962,24963,24964,24965,24966,24967,24968,24969,24970,24971,24972,24973,24974,24975,24976,24977,24978,24979,24980,24981,24982,24983,24984,24985,24986,24987,24988,24989,24990,24991,24992,24993,24994,24995,24996,24997,24998,24999,25000,25001,25002,25003,25004,25005,25006,25007,25008,25009,25010,25011,25012,25013,25014,25015,25016,25017,25018,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25029,25030,25031,25032,25033,25034,25035,25036,25037,25038,25039,25040,25041,25042,25043,25044,25045,25046,25047,25048,25049,25050,25051,25052,25053,25054,25055,25056,25057,25058,25059,25060,25061,25062,25063,25064,25065,25066,25067,25068,25069,25070,25071,25072,25073,25074,25075,25076,25077,25078,25079,25080,25081,25082,25083,25084,25085,25086,25087,25088,25089,25090,25091,25092,25093,25094,25095,25096,25097,25098,25099,25100,25101,25102,25103,25104,25105,25106,25107,25108,25109,25110,25111,25112,25113,25114,25115,25116,25117,25118,25119,25120,25121,25122,25123,25124,25125,25126,25127,25128,25129,25130,25131,25132,25133,25134,25135,25136,25137,25138,25139,25140,25141,25142,25143,25144,25145,25146,25147,25148,25149,25150,25151,25152,25153,25154,25155,25156,25157,25158,25159,25160,25161,25162,25163,25164,25165,25166,25167,25168,25169,25170,25171,25172,25173,25174,25175,25176,25177,25178,25179,25180,25181,25182,25183,25184,25185,25186,25187,25188,25189,25190,25191,25192,25193,25194,25195,25196,25197,25198,25199,25200,25201,25202,25203,25204,25205,25206,25207,25208,25209,25210,25211,25212,25213,25214,25215,25216,25217,25218,25219,25220,25221,25222,25223,25224,25225,25226,25227,25228,25229,25230,25231,25232,25233,25234,25235,25236,25237,25238,25239,25240,25241,25242,25243,25244,25245,25246,25247,25248,25249,25250,25251,25252,25253,25254,25255,25256,25257,25258,25259,25260,25261,25262,25263,25264,25265,25266,25267,25268,25269,25270,25271,25272,25273,25274,25275,25276,25277,25278,25279,25280,25281,25282,25283,25284,25285,25286,25287,25288,25289,25290,25291,25292,25293,25294,25295,25296,25297,25298,25299,25300,25301,25302,25303,25304,25305,25306,25307,25308,25309,25310,25311,25312,25313,25314,25315,25316,25317,25318,25319,25320,25321,25322,25323,25324,25325,25326,25327,25328,25329,25330,25331,25332,25333,25334,25335,25336,25337,25338,25339,25340,25341,25342,25343,25344,25345,25346,25347,25348,25349,25350,25351,25352,25353,25354,25355,25356,25357,25358,25359,25360,25361,25362,25363,25364,25365,25366,25367,25368,25369,25370,25371,25372,25373,25374,25375,25376,25377,25378,25379,25380,25381,25382,25383,25384,25385,25386,25387,25388,25389,25390,25391,25392,25393,25394,25395,25396,25397,25398,25399,25400,25401,25402,25403,25404,25405,25406,25407,25408,25409,25410,25411,25412,25413,25414,25415,25416,25417,25418,25419,25420,25421,25422,25423,25424,25425,25426,25427,25428,25429,25430,25431,25432,25433,25434,25435,25436,25437,25438,25439,25440,25441,25442,25443,25444,25445,25446,25447,25448,25449,25450,25451,25452,25453,25454,25455,25456,25457,25458,25459,25460,25461,25462,25463,25464,25465,25466,25467,25468,25469,25470,25471,25472,25473,25474,25475,25476,25477,25478,25479,25480,25481,25482,25483,25484,25485,25486,25487,25488,25489,25490,25491,25492,25493,25494,25495,25496,25497,25498,25499,25500,25501,25502,25503,25504,25505,25506,25507,25508,25509,25510,25511,25512,25513,25514,25515,25516,25517,25518,25519,25520,25521,25522,25523,25524,25525,25526,25527,25528,25529,25530,25531,25532,25533,25534,25535,25536,25537,25538,25539,25540,25541,25542,25543,25544,25545,25546,25547,25548,25549,25550,25551,25552,25553,25554,25555,25556,25557,25558,25559,25560,25561,25562,25563,25564,25565,25566,25567,25568,25569,25570,25571,25572,25573,25574,25575,25576,25577,25578,25579,25580,25581,25582,25583,25584,25585,25586,25587,25588,25589,25590,25591,25592,25593,25594,25595,25596,25597,25598,25599,25600,25601,25602,25603,25604,25605,25606,25607,25608,25609,25610,25611,25612,25613,25614,25615,25616,25617,25618,25619,25620,25621,25622,25623,25624,25625,25626,25627,25628,25629,25630,25631,25632,25633,25634,25635,25636,25637,25638,25639,25640,25641,25642,25643,25644,25645,25646,25647,25648,25649,25650,25651,25652,25653,25654,25655,25656,25657,25658,25659,25660,25661,25662,25663,25664,25665,25666,25667,25668,25669,25670,25671,25672,25673,25674,25675,25676,25677,25678,25679,25680,25681,25682,25683,25684,25685,25686,25687,25688,25689,25690,25691,25692,25693,25694,25695,25696,25697,25698,25699,25700,25701,25702,25703,25704,25705,25706,25707,25708,25709,25710,25711,25712,25713,25714,25715,25716,25717,25718,25719,25720,25721,25722,25723,25724,25725,25726,25727,25728,25729,25730,25731,25732,25733,25734,25735,25736,25737,25738,25739,25740,25741,25742,25743,25744,25745,25746,25747,25748,25749,25750,25751,25752,25753,25754,25755,25756,25757,25758,25759,25760,25761,25762,25763,25764,25765,25766,25767,25768,25769,25770,25771,25772,25773,25774,25775,25776,25777,25778,25779,25780,25781,25782,25783,25784,25785,25786,25787,25788,25789,25790,25791,25792,25793,25794,25795,25796,25797,25798,25799,25800,25801,25802,25803,25804,25805,25806,25807,25808,25809,25810,25811,25812,25813,25814,25815,25816,25817,25818,25819,25820,25821,25822,25823,25824,25825,25826,25827,25828,25829,25830,25831,25832,25833,25834,25835,25836,25837,25838,25839,25840,25841,25842,25843,25844,25845,25846,25847,25848,25849,25850,25851,25852,25853,25854,25855,25856,25857,25858,25859,25860,25861,25862,25863,25864,25865,25866,25867,25868,25869,25870,25871,25872,25873,25874,25875,25876,25877,25878,25879,25880,25881,25882,25883,25884,25885,25886,25887,25888,25889,25890,25891,25892,25893,25894,25895,25896,25897,25898,25899,25900,25901,25902,25903,25904,25905,25906,25907,25908,25909,25910,25911,25912,25913,25914,25915,25916,25917,25918,25919,25920,25921,25922,25923,25924,25925,25926,25927,25928,25929,25930,25931,25932,25933,25934,25935,25936,25937,25938,25939,25940,25941,25942,25943,25944,25945,25946,25947,25948,25949,25950,25951,25952,25953,25954,25955,25956,25957,25958,25959,25960,25961,25962,25963,25964,25965,25966,25967,25968,25969,25970,25971,25972,25973,25974,25975,25976,25977,25978,25979,25980,25981,25982,25983,25984,25985,25986,25987,25988,25989,25990,25991,25992,25993,25994,25995,25996,25997,25998,25999,26000,26001,26002,26003,26004,26005,26006,26007,26008,26009,26010,26011,26012,26013,26014,26015,26016,26017,26018,26019,26020,26021,26022,26023,26024,26025,26026,26027,26028,26029,26030,26031,26032,26033,26034,26035,26036,26037,26038,26039,26040,26041,26042,26043,26044,26045,26046,26047,26048,26049,26050,26051,26052,26053,26054,26055,26056,26057,26058,26059,26060,26061,26062,26063,26064,26065,26066,26067,26068,26069,26070,26071,26072,26073,26074,26075,26076,26077,26078,26079,26080,26081,26082,26083,26084,26085,26086,26087,26088,26089,26090,26091,26092,26093,26094,26095,26096,26097,26098,26099,26100,26101,26102,26103,26104,26105,26106,26107,26108,26109,26110,26111,26112,26113,26114,26115,26116,26117,26118,26119,26120,26121,26122,26123,26124,26125,26126,26127,26128,26129,26130,26131,26132,26133,26134,26135,26136,26137,26138,26139,26140,26141,26142,26143,26144,26145,26146,26147,26148,26149,26150,26151,26152,26153,26154,26155,26156,26157,26158,26159,26160,26161,26162,26163,26164,26165,26166,26167,26168,26169,26170,26171,26172,26173,26174,26175,26176,26177,26178,26179,26180,26181,26182,26183,26184,26185,26186,26187,26188,26189,26190,26191,26192,26193,26194,26195,26196,26197,26198,26199,26200,26201,26202,26203,26204,26205,26206,26207,26208,26209,26210,26211,26212,26213,26214,26215,26216,26217,26218,26219,26220,26221,26222,26223,26224,26225,26226,26227,26228,26229,26230,26231,26232,26233,26234,26235,26236,26237,26238,26239,26240,26241,26242,26243,26244,26245,26246,26247,26248,26249,26250,26251,26252,26253,26254,26255,26256,26257,26258,26259,26260,26261,26262,26263,26264,26265,26266,26267,26268,26269,26270,26271,26272,26273,26274,26275,26276,26277,26278,26279,26280,26281,26282,26283,26284,26285,26286,26287,26288,26289,26290,26291,26292,26293,26294,26295,26296,26297,26298,26299,26300,26301,26302,26303,26304,26305,26306,26307,26308,26309,26310,26311,26312,26313,26314,26315,26316,26317,26318,26319,26320,26321,26322,26323,26324,26325,26326,26327,26328,26329,26330,26331,26332,26333,26334,26335,26336,26337,26338,26339,26340,26341,26342,26343,26344,26345,26346,26347,26348,26349,26350,26351,26352,26353,26354,26355,26356,26357,26358,26359,26360,26361,26362,26363,26364,26365,26366,26367,26368,26369,26370,26371,26372,26373,26374,26375,26376,26377,26378,26379,26380,26381,26382,26383,26384,26385,26386,26387,26388,26389,26390,26391,26392,26393,26394,26395,26396,26397,26398,26399,26400,26401,26402,26403,26404,26405,26406,26407,26408,26409,26410,26411,26412,26413,26414,26415,26416,26417,26418,26419,26420,26421,26422,26423,26424,26425,26426,26427,26428,26429,26430,26431,26432,26433,26434,26435,26436,26437,26438,26439,26440,26441,26442,26443,26444,26445,26446,26447,26448,26449,26450,26451,26452,26453,26454,26455,26456,26457,26458,26459,26460,26461,26462,26463,26464,26465,26466,26467,26468,26469,26470,26471,26472,26473,26474,26475,26476,26477,26478,26479,26480,26481,26482,26483,26484,26485,26486,26487,26488,26489,26490,26491,26492,26493,26494,26495,26496,26497,26498,26499,26500,26501,26502,26503,26504,26505,26506,26507,26508,26509,26510,26511,26512,26513,26514,26515,26516,26517,26518,26519,26520,26521,26522,26523,26524,26525,26526,26527,26528,26529,26530,26531,26532,26533,26534,26535,26536,26537,26538,26539,26540,26541,26542,26543,26544,26545,26546,26547,26548,26549,26550,26551,26552,26553,26554,26555,26556,26557,26558,26559,26560,26561,26562,26563,26564,26565,26566,26567,26568,26569,26570,26571,26572,26573,26574,26575,26576,26577,26578,26579,26580,26581,26582,26583,26584,26585,26586,26587,26588,26589,26590,26591,26592,26593,26594,26595,26596,26597,26598,26599,26600,26601,26602,26603,26604,26605,26606,26607,26608,26609,26610,26611,26612,26613,26614,26615,26616,26617,26618,26619,26620,26621,26622,26623,26624,26625,26626,26627,26628,26629,26630,26631,26632,26633,26634,26635,26636,26637,26638,26639,26640,26641,26642,26643,26644,26645,26646,26647,26648,26649,26650,26651,26652,26653,26654,26655,26656,26657,26658,26659,26660,26661,26662,26663,26664,26665,26666,26667,26668,26669,26670,26671,26672,26673,26674,26675,26676,26677,26678,26679,26680,26681,26682,26683,26684,26685,26686,26687,26688,26689,26690,26691,26692,26693,26694,26695,26696,26697,26698,26699,26700,26701,26702,26703,26704,26705,26706,26707,26708,26709,26710,26711,26712,26713,26714,26715,26716,26717,26718,26719,26720,26721,26722,26723,26724,26725,26726,26727,26728,26729,26730,26731,26732,26733,26734,26735,26736,26737,26738,26739,26740,26741,26742,26743,26744,26745,26746,26747,26748,26749,26750,26751,26752,26753,26754,26755,26756,26757,26758,26759,26760,26761,26762,26763,26764,26765,26766,26767,26768,26769,26770,26771,26772,26773,26774,26775,26776,26777,26778,26779,26780,26781,26782,26783,26784,26785,26786,26787,26788,26789,26790,26791,26792,26793,26794,26795,26796,26797,26798,26799,26800,26801,26802,26803,26804,26805,26806,26807,26808,26809,26810,26811,26812,26813,26814,26815,26816,26817,26818,26819,26820,26821,26822,26823,26824,26825,26826,26827,26828,26829,26830,26831,26832,26833,26834,26835,26836,26837,26838,26839,26840,26841,26842,26843,26844,26845,26846,26847,26848,26849,26850,26851,26852,26853,26854,26855,26856,26857,26858,26859,26860,26861,26862,26863,26864,26865,26866,26867,26868,26869,26870,26871,26872,26873,26874,26875,26876,26877,26878,26879,26880,26881,26882,26883,26884,26885,26886,26887,26888,26889,26890,26891,26892,26893,26894,26895,26896,26897,26898,26899,26900,26901,26902,26903,26904,26905,26906,26907,26908,26909,26910,26911,26912,26913,26914,26915,26916,26917,26918,26919,26920,26921,26922,26923,26924,26925,26926,26927,26928,26929,26930,26931,26932,26933,26934,26935,26936,26937,26938,26939,26940,26941,26942,26943,26944,26945,26946,26947,26948,26949,26950,26951,26952,26953,26954,26955,26956,26957,26958,26959,26960,26961,26962,26963,26964,26965,26966,26967,26968,26969,26970,26971,26972,26973,26974,26975,26976,26977,26978,26979,26980,26981,26982,26983,26984,26985,26986,26987,26988,26989,26990,26991,26992,26993,26994,26995,26996,26997,26998,26999,27000,27001,27002,27003,27004,27005,27006,27007,27008,27009,27010,27011,27012,27013,27014,27015,27016,27017,27018,27019,27020,27021,27022,27023,27024,27025,27026,27027,27028,27029,27030,27031,27032,27033,27034,27035,27036,27037,27038,27039,27040,27041,27042,27043,27044,27045,27046,27047,27048,27049,27050,27051,27052,27053,27054,27055,27056,27057,27058,27059,27060,27061,27062,27063,27064,27065,27066,27067,27068,27069,27070,27071,27072,27073,27074,27075,27076,27077,27078,27079,27080,27081,27082,27083,27084,27085,27086,27087,27088,27089,27090,27091,27092,27093,27094,27095,27096,27097,27098,27099,27100,27101,27102,27103,27104,27105,27106,27107,27108,27109,27110,27111,27112,27113,27114,27115,27116,27117,27118,27119,27120,27121,27122,27123,27124,27125,27126,27127,27128,27129,27130,27131,27132,27133,27134,27135,27136,27137,27138,27139,27140,27141,27142,27143,27144,27145,27146,27147,27148,27149,27150,27151,27152,27153,27154,27155,27156,27157,27158,27159,27160,27161,27162,27163,27164,27165,27166,27167,27168,27169,27170,27171,27172,27173,27174,27175,27176,27177,27178,27179,27180,27181,27182,27183,27184,27185,27186,27187,27188,27189,27190,27191,27192,27193,27194,27195,27196,27197,27198,27199,27200,27201,27202,27203,27204,27205,27206,27207,27208,27209,27210,27211,27212,27213,27214,27215,27216,27217,27218,27219,27220,27221,27222,27223,27224,27225,27226,27227,27228,27229,27230,27231,27232,27233,27234,27235,27236,27237,27238,27239,27240,27241,27242,27243,27244,27245,27246,27247,27248,27249,27250,27251,27252,27253,27254,27255,27256,27257,27258,27259,27260,27261,27262,27263,27264,27265,27266,27267,27268,27269,27270,27271,27272,27273,27274,27275,27276,27277,27278,27279,27280,27281,27282,27283,27284,27285,27286,27287,27288,27289,27290,27291,27292,27293,27294,27295,27296,27297,27298,27299,27300,27301,27302,27303,27304,27305,27306,27307,27308,27309,27310,27311,27312,27313,27314,27315,27316,27317,27318,27319,27320,27321,27322,27323,27324,27325,27326,27327,27328,27329,27330,27331,27332,27333,27334,27335,27336,27337,27338,27339,27340,27341,27342,27343,27344,27345,27346,27347,27348,27349,27350,27351,27352,27353,27354,27355,27356,27357,27358,27359,27360,27361,27362,27363,27364,27365,27366,27367,27368,27369,27370,27371,27372,27373,27374,27375,27376,27377,27378,27379,27380,27381,27382,27383,27384,27385,27386,27387,27388,27389,27390,27391,27392,27393,27394,27395,27396,27397,27398,27399,27400,27401,27402,27403,27404,27405,27406,27407,27408,27409,27410,27411,27412,27413,27414,27415,27416,27417,27418,27419,27420,27421,27422,27423,27424,27425,27426,27427,27428,27429,27430,27431,27432,27433,27434,27435,27436,27437,27438,27439,27440,27441,27442,27443,27444,27445,27446,27447,27448,27449,27450,27451,27452,27453,27454,27455,27456,27457,27458,27459,27460,27461,27462,27463,27464,27465,27466,27467,27468,27469,27470,27471,27472,27473,27474,27475,27476,27477,27478,27479,27480,27481,27482,27483,27484,27485,27486,27487,27488,27489,27490,27491,27492,27493,27494,27495,27496,27497,27498,27499,27500,27501,27502,27503,27504,27505,27506,27507,27508,27509,27510,27511,27512,27513,27514,27515,27516,27517,27518,27519,27520,27521,27522,27523,27524,27525,27526,27527,27528,27529,27530,27531,27532,27533,27534,27535,27536,27537,27538,27539,27540,27541,27542,27543,27544,27545,27546,27547,27548,27549,27550,27551,27552,27553,27554,27555,27556,27557,27558,27559,27560,27561,27562,27563,27564,27565,27566,27567,27568,27569,27570,27571,27572,27573,27574,27575,27576,27577,27578,27579,27580,27581,27582,27583,27584,27585,27586,27587,27588,27589,27590,27591,27592,27593,27594,27595,27596,27597,27598,27599,27600,27601,27602,27603,27604,27605,27606,27607,27608,27609,27610,27611,27612,27613,27614,27615,27616,27617,27618,27619,27620,27621,27622,27623,27624,27625,27626,27627,27628,27629,27630,27631,27632,27633,27634,27635,27636,27637,27638,27639,27640,27641,27642,27643,27644,27645,27646,27647,27648,27649,27650,27651,27652,27653,27654,27655,27656,27657,27658,27659,27660,27661,27662,27663,27664,27665,27666,27667,27668,27669,27670,27671,27672,27673,27674,27675,27676,27677,27678,27679,27680,27681,27682,27683,27684,27685,27686,27687,27688,27689,27690,27691,27692,27693,27694,27695,27696,27697,27698,27699,27700,27701,27702,27703,27704,27705,27706,27707,27708,27709,27710,27711,27712,27713,27714,27715,27716,27717,27718,27719,27720,27721,27722,27723,27724,27725,27726,27727,27728,27729,27730,27731,27732,27733,27734,27735,27736,27737,27738,27739,27740,27741,27742,27743,27744,27745,27746,27747,27748,27749,27750,27751,27752,27753,27754,27755,27756,27757,27758,27759,27760,27761,27762,27763,27764,27765,27766,27767,27768,27769,27770,27771,27772,27773,27774,27775,27776,27777,27778,27779,27780,27781,27782,27783,27784,27785,27786,27787,27788,27789,27790,27791,27792,27793,27794,27795,27796,27797,27798,27799,27800,27801,27802,27803,27804,27805,27806,27807,27808,27809,27810,27811,27812,27813,27814,27815,27816,27817,27818,27819,27820,27821,27822,27823,27824,27825,27826,27827,27828,27829,27830,27831,27832,27833,27834,27835,27836,27837,27838,27839,27840,27841,27842,27843,27844,27845,27846,27847,27848,27849,27850,27851,27852,27853,27854,27855,27856,27857,27858,27859,27860,27861,27862,27863,27864,27865,27866,27867,27868,27869,27870,27871,27872,27873,27874,27875,27876,27877,27878,27879,27880,27881,27882,27883,27884,27885,27886,27887,27888,27889,27890,27891,27892,27893,27894,27895,27896,27897,27898,27899,27900,27901,27902,27903,27904,27905,27906,27907,27908,27909,27910,27911,27912,27913,27914,27915,27916,27917,27918,27919,27920,27921,27922,27923,27924,27925,27926,27927,27928,27929,27930,27931,27932,27933,27934,27935,27936,27937,27938,27939,27940,27941,27942,27943,27944,27945,27946,27947,27948,27949,27950,27951,27952,27953,27954,27955,27956,27957,27958,27959,27960,27961,27962,27963,27964,27965,27966,27967,27968,27969,27970,27971,27972,27973,27974,27975,27976,27977,27978,27979,27980,27981,27982,27983,27984,27985,27986,27987,27988,27989,27990,27991,27992,27993,27994,27995,27996,27997,27998,27999,28000,28001,28002,28003,28004,28005,28006,28007,28008,28009,28010,28011,28012,28013,28014,28015,28016,28017,28018,28019,28020,28021,28022,28023,28024,28025,28026,28027,28028,28029,28030,28031,28032,28033,28034,28035,28036,28037,28038,28039,28040,28041,28042,28043,28044,28045,28046,28047,28048,28049,28050,28051,28052,28053,28054,28055,28056,28057,28058,28059,28060,28061,28062,28063,28064,28065,28066,28067,28068,28069,28070,28071,28072,28073,28074,28075,28076,28077,28078,28079,28080,28081,28082,28083,28084,28085,28086,28087,28088,28089,28090,28091,28092,28093,28094,28095,28096,28097,28098,28099,28100,28101,28102,28103,28104,28105,28106,28107,28108,28109,28110,28111,28112,28113,28114,28115,28116,28117,28118,28119,28120,28121,28122,28123,28124,28125,28126,28127,28128,28129,28130,28131,28132,28133,28134,28135,28136,28137,28138,28139,28140,28141,28142,28143,28144,28145,28146,28147,28148,28149,28150,28151,28152,28153,28154,28155,28156,28157,28158,28159,28160,28161,28162,28163,28164,28165,28166,28167,28168,28169,28170,28171,28172,28173,28174,28175,28176,28177,28178,28179,28180,28181,28182,28183,28184,28185,28186,28187,28188,28189,28190,28191,28192,28193,28194,28195,28196,28197,28198,28199,28200,28201,28202,28203,28204,28205,28206,28207,28208,28209,28210,28211,28212,28213,28214,28215,28216,28217,28218,28219,28220,28221,28222,28223,28224,28225,28226,28227,28228,28229,28230,28231,28232,28233,28234,28235,28236,28237,28238,28239,28240,28241,28242,28243,28244,28245,28246,28247,28248,28249,28250,28251,28252,28253,28254,28255,28256,28257,28258,28259,28260,28261,28262,28263,28264,28265,28266,28267,28268,28269,28270,28271,28272,28273,28274,28275,28276,28277,28278,28279,28280,28281,28282,28283,28284,28285,28286,28287,28288,28289,28290,28291,28292,28293,28294,28295,28296,28297,28298,28299,28300,28301,28302,28303,28304,28305,28306,28307,28308,28309,28310,28311,28312,28313,28314,28315,28316,28317,28318,28319,28320,28321,28322,28323,28324,28325,28326,28327,28328,28329,28330,28331,28332,28333,28334,28335,28336,28337,28338,28339,28340,28341,28342,28343,28344,28345,28346,28347,28348,28349,28350,28351,28352,28353,28354,28355,28356,28357,28358,28359,28360,28361,28362,28363,28364,28365,28366,28367,28368,28369,28370,28371,28372,28373,28374,28375,28376,28377,28378,28379,28380,28381,28382,28383,28384,28385,28386,28387,28388,28389,28390,28391,28392,28393,28394,28395,28396,28397,28398,28399,28400,28401,28402,28403,28404,28405,28406,28407,28408,28409,28410,28411,28412,28413,28414,28415,28416,28417,28418,28419,28420,28421,28422,28423,28424,28425,28426,28427,28428,28429,28430,28431,28432,28433,28434,28435,28436,28437,28438,28439,28440,28441,28442,28443,28444,28445,28446,28447,28448,28449,28450,28451,28452,28453,28454,28455,28456,28457,28458,28459,28460,28461,28462,28463,28464,28465,28466,28467,28468,28469,28470,28471,28472,28473,28474,28475,28476,28477,28478,28479,28480,28481,28482,28483,28484,28485,28486,28487,28488,28489,28490,28491,28492,28493,28494,28495,28496,28497,28498,28499,28500,28501,28502,28503,28504,28505,28506,28507,28508,28509,28510,28511,28512,28513,28514,28515,28516,28517,28518,28519,28520,28521,28522,28523,28524,28525,28526,28527,28528,28529,28530,28531,28532,28533,28534,28535,28536,28537,28538,28539,28540,28541,28542,28543,28544,28545,28546,28547,28548,28549,28550,28551,28552,28553,28554,28555,28556,28557,28558,28559,28560,28561,28562,28563,28564,28565,28566,28567,28568,28569,28570,28571,28572,28573,28574,28575,28576,28577,28578,28579,28580,28581,28582,28583,28584,28585,28586,28587,28588,28589,28590,28591,28592,28593,28594,28595,28596,28597,28598,28599,28600,28601,28602,28603,28604,28605,28606,28607,28608,28609,28610,28611,28612,28613,28614,28615,28616,28617,28618,28619,28620,28621,28622,28623,28624,28625,28626,28627,28628,28629,28630,28631,28632,28633,28634,28635,28636,28637,28638,28639,28640,28641,28642,28643,28644,28645,28646,28647,28648,28649,28650,28651,28652,28653,28654,28655,28656,28657,28658,28659,28660,28661,28662,28663,28664,28665,28666,28667,28668,28669,28670,28671,28672,28673,28674,28675,28676,28677,28678,28679,28680,28681,28682,28683,28684,28685,28686,28687,28688,28689,28690,28691,28692,28693,28694,28695,28696,28697,28698,28699,28700,28701,28702,28703,28704,28705,28706,28707,28708,28709,28710,28711,28712,28713,28714,28715,28716,28717,28718,28719,28720,28721,28722,28723,28724,28725,28726,28727,28728,28729,28730,28731,28732,28733,28734,28735,28736,28737,28738,28739,28740,28741,28742,28743,28744,28745,28746,28747,28748,28749,28750,28751,28752,28753,28754,28755,28756,28757,28758,28759,28760,28761,28762,28763,28764,28765,28766,28767,28768,28769,28770,28771,28772,28773,28774,28775,28776,28777,28778,28779,28780,28781,28782,28783,28784,28785,28786,28787,28788,28789,28790,28791,28792,28793,28794,28795,28796,28797,28798,28799,28800,28801,28802,28803,28804,28805,28806,28807,28808,28809,28810,28811,28812,28813,28814,28815,28816,28817,28818,28819,28820,28821,28822,28823,28824,28825,28826,28827,28828,28829,28830,28831,28832,28833,28834,28835,28836,28837,28838,28839,28840,28841,28842,28843,28844,28845,28846,28847,28848,28849,28850,28851,28852,28853,28854,28855,28856,28857,28858,28859,28860,28861,28862,28863,28864,28865,28866,28867,28868,28869,28870,28871,28872,28873,28874,28875,28876,28877,28878,28879,28880,28881,28882,28883,28884,28885,28886,28887,28888,28889,28890,28891,28892,28893,28894,28895,28896,28897,28898,28899,28900,28901,28902,28903,28904,28905,28906,28907,28908,28909,28910,28911,28912,28913,28914,28915,28916,28917,28918,28919,28920,28921,28922,28923,28924,28925,28926,28927,28928,28929,28930,28931,28932,28933,28934,28935,28936,28937,28938,28939,28940,28941,28942,28943,28944,28945,28946,28947,28948,28949,28950,28951,28952,28953,28954,28955,28956,28957,28958,28959,28960,28961,28962,28963,28964,28965,28966,28967,28968,28969,28970,28971,28972,28973,28974,28975,28976,28977,28978,28979,28980,28981,28982,28983,28984,28985,28986,28987,28988,28989,28990,28991,28992,28993,28994,28995,28996,28997,28998,28999,29000,29001,29002,29003,29004,29005,29006,29007,29008,29009,29010,29011,29012,29013,29014,29015,29016,29017,29018,29019,29020,29021,29022,29023,29024,29025,29026,29027,29028,29029,29030,29031,29032,29033,29034,29035,29036,29037,29038,29039,29040,29041,29042,29043,29044,29045,29046,29047,29048,29049,29050,29051,29052,29053,29054,29055,29056,29057,29058,29059,29060,29061,29062,29063,29064,29065,29066,29067,29068,29069,29070,29071,29072,29073,29074,29075,29076,29077,29078,29079,29080,29081,29082,29083,29084,29085,29086,29087,29088,29089,29090,29091,29092,29093,29094,29095,29096,29097,29098,29099,29100,29101,29102,29103,29104,29105,29106,29107,29108,29109,29110,29111,29112,29113,29114,29115,29116,29117,29118,29119,29120,29121,29122,29123,29124,29125,29126,29127,29128,29129,29130,29131,29132,29133,29134,29135,29136,29137,29138,29139,29140,29141,29142,29143,29144,29145,29146,29147,29148,29149,29150,29151,29152,29153,29154,29155,29156,29157,29158,29159,29160,29161,29162,29163,29164,29165,29166,29167,29168,29169,29170,29171,29172,29173,29174,29175,29176,29177,29178,29179,29180,29181,29182,29183,29184,29185,29186,29187,29188,29189,29190,29191,29192,29193,29194,29195,29196,29197,29198,29199,29200,29201,29202,29203,29204,29205,29206,29207,29208,29209,29210,29211,29212,29213,29214,29215,29216,29217,29218,29219,29220,29221,29222,29223,29224,29225,29226,29227,29228,29229,29230,29231,29232,29233,29234,29235,29236,29237,29238,29239,29240,29241,29242,29243,29244,29245,29246,29247,29248,29249,29250,29251,29252,29253,29254,29255,29256,29257,29258,29259,29260,29261,29262,29263,29264,29265,29266,29267,29268,29269,29270,29271,29272,29273,29274,29275,29276,29277,29278,29279,29280,29281,29282,29283,29284,29285,29286,29287,29288,29289,29290,29291,29292,29293,29294,29295,29296,29297,29298,29299,29300,29301,29302,29303,29304,29305,29306,29307,29308,29309,29310,29311,29312,29313,29314,29315,29316,29317,29318,29319,29320,29321,29322,29323,29324,29325,29326,29327,29328,29329,29330,29331,29332,29333,29334,29335,29336,29337,29338,29339,29340,29341,29342,29343,29344,29345,29346,29347,29348,29349,29350,29351,29352,29353,29354,29355,29356,29357,29358,29359,29360,29361,29362,29363,29364,29365,29366,29367,29368,29369,29370,29371,29372,29373,29374,29375,29376,29377,29378,29379,29380,29381,29382,29383,29384,29385,29386,29387,29388,29389,29390,29391,29392,29393,29394,29395,29396,29397,29398,29399,29400,29401,29402,29403,29404,29405,29406,29407,29408,29409,29410,29411,29412,29413,29414,29415,29416,29417,29418,29419,29420,29421,29422,29423,29424,29425,29426,29427,29428,29429,29430,29431,29432,29433,29434,29435,29436,29437,29438,29439,29440,29441,29442,29443,29444,29445,29446,29447,29448,29449,29450,29451,29452,29453,29454,29455,29456,29457,29458,29459,29460,29461,29462,29463,29464,29465,29466,29467,29468,29469,29470,29471,29472,29473,29474,29475,29476,29477,29478,29479,29480,29481,29482,29483,29484,29485,29486,29487,29488,29489,29490,29491,29492,29493,29494,29495,29496,29497,29498,29499,29500,29501,29502,29503,29504,29505,29506,29507,29508,29509,29510,29511,29512,29513,29514,29515,29516,29517,29518,29519,29520,29521,29522,29523,29524,29525,29526,29527,29528,29529,29530,29531,29532,29533,29534,29535,29536,29537,29538,29539,29540,29541,29542,29543,29544,29545,29546,29547,29548,29549,29550,29551,29552,29553,29554,29555,29556,29557,29558,29559,29560,29561,29562,29563,29564,29565,29566,29567,29568,29569,29570,29571,29572,29573,29574,29575,29576,29577,29578,29579,29580,29581,29582,29583,29584,29585,29586,29587,29588,29589,29590,29591,29592,29593,29594,29595,29596,29597,29598,29599,29600,29601,29602,29603,29604,29605,29606,29607,29608,29609,29610,29611,29612,29613,29614,29615,29616,29617,29618,29619,29620,29621,29622,29623,29624,29625,29626,29627,29628,29629,29630,29631,29632,29633,29634,29635,29636,29637,29638,29639,29640,29641,29642,29643,29644,29645,29646,29647,29648,29649,29650,29651,29652,29653,29654,29655,29656,29657,29658,29659,29660,29661,29662,29663,29664,29665,29666,29667,29668,29669,29670,29671,29672,29673,29674,29675,29676,29677,29678,29679,29680,29681,29682,29683,29684,29685,29686,29687,29688,29689,29690,29691,29692,29693,29694,29695,29696,29697,29698,29699,29700,29701,29702,29703,29704,29705,29706,29707,29708,29709,29710,29711,29712,29713,29714,29715,29716,29717,29718,29719,29720,29721,29722,29723,29724,29725,29726,29727,29728,29729,29730,29731,29732,29733,29734,29735,29736,29737,29738,29739,29740,29741,29742,29743,29744,29745,29746,29747,29748,29749,29750,29751,29752,29753,29754,29755,29756,29757,29758,29759,29760,29761,29762,29763,29764,29765,29766,29767,29768,29769,29770,29771,29772,29773,29774,29775,29776,29777,29778,29779,29780,29781,29782,29783,29784,29785,29786,29787,29788,29789,29790,29791,29792,29793,29794,29795,29796,29797,29798,29799,29800,29801,29802,29803,29804,29805,29806,29807,29808,29809,29810,29811,29812,29813,29814,29815,29816,29817,29818,29819,29820,29821,29822,29823,29824,29825,29826,29827,29828,29829,29830,29831,29832,29833,29834,29835,29836,29837,29838,29839,29840,29841,29842,29843,29844,29845,29846,29847,29848,29849,29850,29851,29852,29853,29854,29855,29856,29857,29858,29859,29860,29861,29862,29863,29864,29865,29866,29867,29868,29869,29870,29871,29872,29873,29874,29875,29876,29877,29878,29879,29880,29881,29882,29883,29884,29885,29886,29887,29888,29889,29890,29891,29892,29893,29894,29895,29896,29897,29898,29899,29900,29901,29902,29903,29904,29905,29906,29907,29908,29909,29910,29911,29912,29913,29914,29915,29916,29917,29918,29919,29920,29921,29922,29923,29924,29925,29926,29927,29928,29929,29930,29931,29932,29933,29934,29935,29936,29937,29938,29939,29940,29941,29942,29943,29944,29945,29946,29947,29948,29949,29950,29951,29952,29953,29954,29955,29956,29957,29958,29959,29960,29961,29962,29963,29964,29965,29966,29967,29968,29969,29970,29971,29972,29973,29974,29975,29976,29977,29978,29979,29980,29981,29982,29983,29984,29985,29986,29987,29988,29989,29990,29991,29992,29993,29994,29995,29996,29997,29998,29999,30000,30001,30002,30003,30004,30005,30006,30007,30008,30009,30010,30011,30012,30013,30014,30015,30016,30017,30018,30019,30020,30021,30022,30023,30024,30025,30026,30027,30028,30029,30030,30031,30032,30033,30034,30035,30036,30037,30038,30039,30040,30041,30042,30043,30044,30045,30046,30047,30048,30049,30050,30051,30052,30053,30054,30055,30056,30057,30058,30059,30060,30061,30062,30063,30064,30065,30066,30067,30068,30069,30070,30071,30072,30073,30074,30075,30076,30077,30078,30079,30080,30081,30082,30083,30084,30085,30086,30087,30088,30089,30090,30091,30092,30093,30094,30095,30096,30097,30098,30099,30100,30101,30102,30103,30104,30105,30106,30107,30108,30109,30110,30111,30112,30113,30114,30115,30116,30117,30118,30119,30120,30121,30122,30123,30124,30125,30126,30127,30128,30129,30130,30131,30132,30133,30134,30135,30136,30137,30138,30139,30140,30141,30142,30143,30144,30145,30146,30147,30148,30149,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30168,30169,30170,30171,30172,30173,30174,30175,30176,30177,30178,30179,30180,30181,30182,30183,30184,30185,30186,30187,30188,30189,30190,30191,30192,30193,30194,30195,30196,30197,30198,30199,30200,30201,30202,30203,30204,30205,30206,30207,30208,30209,30210,30211,30212,30213,30214,30215,30216,30217,30218,30219,30220,30221,30222,30223,30224,30225,30226,30227,30228,30229,30230,30231,30232,30233,30234,30235,30236,30237,30238,30239,30240,30241,30242,30243,30244,30245,30246,30247,30248,30249,30250,30251,30252,30253,30254,30255,30256,30257,30258,30259,30260,30261,30262,30263,30264,30265,30266,30267,30268,30269,30270,30271,30272,30273,30274,30275,30276,30277,30278,30279,30280,30281,30282,30283,30284,30285,30286,30287,30288,30289,30290,30291,30292,30293,30294,30295,30296,30297,30298,30299,30300,30301,30302,30303,30304,30305,30306,30307,30308,30309,30310,30311,30312,30313,30314,30315,30316,30317,30318,30319,30320,30321,30322,30323,30324,30325,30326,30327,30328,30329,30330,30331,30332,30333,30334,30335,30336,30337,30338,30339,30340,30341,30342,30343,30344,30345,30346,30347,30348,30349,30350,30351,30352,30353,30354,30355,30356,30357,30358,30359,30360,30361,30362,30363,30364,30365,30366,30367,30368,30369,30370,30371,30372,30373,30374,30375,30376,30377,30378,30379,30380,30381,30382,30383,30384,30385,30386,30387,30388,30389,30390,30391,30392,30393,30394,30395,30396,30397,30398,30399,30400,30401,30402,30403,30404,30405,30406,30407,30408,30409,30410,30411,30412,30413,30414,30415,30416,30417,30418,30419,30420,30421,30422,30423,30424,30425,30426,30427,30428,30429,30430,30431,30432,30433,30434,30435,30436,30437,30438,30439,30440,30441,30442,30443,30444,30445,30446,30447,30448,30449,30450,30451,30452,30453,30454,30455,30456,30457,30458,30459,30460,30461,30462,30463,30464,30465,30466,30467,30468,30469,30470,30471,30472,30473,30474,30475,30476,30477,30478,30479,30480,30481,30482,30483,30484,30485,30486,30487,30488,30489,30490,30491,30492,30493,30494,30495,30496,30497,30498,30499,30500,30501,30502,30503,30504,30505,30506,30507,30508,30509,30510,30511,30512,30513,30514,30515,30516,30517,30518,30519,30520,30521,30522,30523,30524,30525,30526,30527,30528,30529,30530,30531,30532,30533,30534,30535,30536,30537,30538,30539,30540,30541,30542,30543,30544,30545,30546,30547,30548,30549,30550,30551,30552,30553,30554,30555,30556,30557,30558,30559,30560,30561,30562,30563,30564,30565,30566,30567,30568,30569,30570,30571,30572,30573,30574,30575,30576,30577,30578,30579,30580,30581,30582,30583,30584,30585,30586,30587,30588,30589,30590,30591,30592,30593,30594,30595,30596,30597,30598,30599,30600,30601,30602,30603,30604,30605,30606,30607,30608,30609,30610,30611,30612,30613,30614,30615,30616,30617,30618,30619,30620,30621,30622,30623,30624,30625,30626,30627,30628,30629,30630,30631,30632,30633,30634,30635,30636,30637,30638,30639,30640,30641,30642,30643,30644,30645,30646,30647,30648,30649,30650,30651,30652,30653,30654,30655,30656,30657,30658,30659,30660,30661,30662,30663,30664,30665,30666,30667,30668,30669,30670,30671,30672,30673,30674,30675,30676,30677,30678,30679,30680,30681,30682,30683,30684,30685,30686,30687,30688,30689,30690,30691,30692,30693,30694,30695,30696,30697,30698,30699,30700,30701,30702,30703,30704,30705,30706,30707,30708,30709,30710,30711,30712,30713,30714,30715,30716,30717,30718,30719,30720,30721,30722,30723,30724,30725,30726,30727,30728,30729,30730,30731,30732,30733,30734,30735,30736,30737,30738,30739,30740,30741,30742,30743,30744,30745,30746,30747,30748,30749,30750,30751,30752,30753,30754,30755,30756,30757,30758,30759,30760,30761,30762,30763,30764,30765,30766,30767,30768,30769,30770,30771,30772,30773,30774,30775,30776,30777,30778,30779,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30795,30796,30797,30798,30799,30800,30801,30802,30803,30804,30805,30806,30807,30808,30809,30810,30811,30812,30813,30814,30815,30816,30817,30818,30819,30820,30821,30822,30823,30824,30825,30826,30827,30828,30829,30830,30831,30832,30833,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30845,30846,30847,30848,30849,30850,30851,30852,30853,30854,30855,30856,30857,30858,30859,30860,30861,30862,30863,30864,30865,30866,30867,30868,30869,30870,30871,30872,30873,30874,30875,30876,30877,30878,30879,30880,30881,30882,30883,30884,30885,30886,30887,30888,30889,30890,30891,30892,30893,30894,30895,30896,30897,30898,30899,30900,30901,30902,30903,30904,30905,30906,30907,30908,30909,30910,30911,30912,30913,30914,30915,30916,30917,30918,30919,30920,30921,30922,30923,30924,30925,30926,30927,30928,30929,30930,30931,30932,30933,30934,30935,30936,30937,30938,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30950,30951,30952,30953,30954,30955,30956,30957,30958,30959,30960,30961,30962,30963,30964,30965,30966,30967,30968,30969,30970,30971,30972,30973,30974,30975,30976,30977,30978,30979,30980,30981,30982,30983,30984,30985,30986,30987,30988,30989,30990,30991,30992,30993,30994,30995,30996,30997,30998,30999,31000,31001,31002,31003,31004,31005,31006,31007,31008,31009,31010,31011,31012,31013,31014,31015,31016,31017,31018,31019,31020,31021,31022,31023,31024,31025,31026,31027,31028,31029,31030,31031,31032,31033,31034,31035,31036,31037,31038,31039,31040,31041,31042,31043,31044,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31060,31061,31062,31063,31064,31065,31066,31067,31068,31069,31070,31071,31072,31073,31074,31075,31076,31077,31078,31079,31080,31081,31082,31083,31084,31085,31086,31087,31088,31089,31090,31091,31092,31093,31094,31095,31096,31097,31098,31099,31100,31101,31102,31103,31104,31105,31106,31107,31108,31109,31110,31111,31112,31113,31114,31115,31116,31117,31118,31119,31120,31121,31122,31123,31124,31125,31126,31127,31128,31129,31130,31131,31132,31133,31134,31135,31136,31137,31138,31139,31140,31141,31142,31143,31144,31145,31146,31147,31148,31149,31150,31151,31152,31153,31154,31155,31156,31157,31158,31159,31160,31161,31162,31163,31164,31165,31166,31167,31168,31169,31170,31171,31172,31173,31174,31175,31176,31177,31178,31179,31180,31181,31182,31183,31184,31185,31186,31187,31188,31189,31190,31191,31192,31193,31194,31195,31196,31197,31198,31199,31200,31201,31202,31203,31204,31205,31206,31207,31208,31209,31210,31211,31212,31213,31214,31215,31216,31217,31218,31219,31220,31221,31222,31223,31224,31225,31226,31227,31228,31229,31230,31231,31232,31233,31234,31235,31236,31237,31238,31239,31240,31241,31242,31243,31244,31245,31246,31247,31248,31249,31250,31251,31252,31253,31254,31255,31256,31257,31258,31259,31260,31261,31262,31263,31264,31265,31266,31267,31268,31269,31270,31271,31272,31273,31274,31275,31276,31277,31278,31279,31280,31281,31282,31283,31284,31285,31286,31287,31288,31289,31290,31291,31292,31293,31294,31295,31296,31297,31298,31299,31300,31301,31302,31303,31304,31305,31306,31307,31308,31309,31310,31311,31312,31313,31314,31315,31316,31317,31318,31319,31320,31321,31322,31323,31324,31325,31326,31327,31328,31329,31330,31331,31332,31333,31334,31335,31336,31337,31338,31339,31340,31341,31342,31343,31344,31345,31346,31347,31348,31349,31350,31351,31352,31353,31354,31355,31356,31357,31358,31359,31360,31361,31362,31363,31364,31365,31366,31367,31368,31369,31370,31371,31372,31373,31374,31375,31376,31377,31378,31379,31380,31381,31382,31383,31384,31385,31386,31387,31388,31389,31390,31391,31392,31393,31394,31395,31396,31397,31398,31399,31400,31401,31402,31403,31404,31405,31406,31407,31408,31409,31410,31411,31412,31413,31414,31415,31416,31417,31418,31419,31420,31421,31422,31423,31424,31425,31426,31427,31428,31429,31430,31431,31432,31433,31434,31435,31436,31437,31438,31439,31440,31441,31442,31443,31444,31445,31446,31447,31448,31449,31450,31451,31452,31453,31454,31455,31456,31457,31458,31459,31460,31461,31462,31463,31464,31465,31466,31467,31468,31469,31470,31471,31472,31473,31474,31475,31476,31477,31478,31479,31480,31481,31482,31483,31484,31485,31486,31487,31488,31489,31490,31491,31492,31493,31494,31495,31496,31497,31498,31499,31500,31501,31502,31503,31504,31505,31506,31507,31508,31509,31510,31511,31512,31513,31514,31515,31516,31517,31518,31519,31520,31521,31522,31523,31524,31525,31526,31527,31528,31529,31530,31531,31532,31533,31534,31535,31536,31537,31538,31539,31540,31541,31542,31543,31544,31545,31546,31547,31548,31549,31550,31551,31552,31553,31554,31555,31556,31557,31558,31559,31560,31561,31562,31563,31564,31565,31566,31567,31568,31569,31570,31571,31572,31573,31574,31575,31576,31577,31578,31579,31580,31581,31582,31583,31584,31585,31586,31587,31588,31589,31590,31591,31592,31593,31594,31595,31596,31597,31598,31599,31600,31601,31602,31603,31604,31605,31606,31607,31608,31609,31610,31611,31612,31613,31614,31615,31616,31617,31618,31619,31620,31621,31622,31623,31624,31625,31626,31627,31628,31629,31630,31631,31632,31633,31634,31635,31636,31637,31638,31639,31640,31641,31642,31643,31644,31645,31646,31647,31648,31649,31650,31651,31652,31653,31654,31655,31656,31657,31658,31659,31660,31661,31662,31663,31664,31665,31666,31667,31668,31669,31670,31671,31672,31673,31674,31675,31676,31677,31678,31679,31680,31681,31682,31683,31684,31685,31686,31687,31688,31689,31690,31691,31692,31693,31694,31695,31696,31697,31698,31699,31700,31701,31702,31703,31704,31705,31706,31707,31708,31709,31710,31711,31712,31713,31714,31715,31716,31717,31718,31719,31720,31721,31722,31723,31724,31725,31726,31727,31728,31729,31730,31731,31732,31733,31734,31735,31736,31737,31738,31739,31740,31741,31742,31743,31744,31745,31746,31747,31748,31749,31750,31751,31752,31753,31754,31755,31756,31757,31758,31759,31760,31761,31762,31763,31764,31765,31766,31767,31768,31769,31770,31771,31772,31773,31774,31775,31776,31777,31778,31779,31780,31781,31782,31783,31784,31785,31786,31787,31788,31789,31790,31791,31792,31793,31794,31795,31796,31797,31798,31799,31800,31801,31802,31803,31804,31805,31806,31807,31808,31809,31810,31811,31812,31813,31814,31815,31816,31817,31818,31819,31820,31821,31822,31823,31824,31825,31826,31827,31828,31829,31830,31831,31832,31833,31834,31835,31836,31837,31838,31839,31840,31841,31842,31843,31844,31845,31846,31847,31848,31849,31850,31851,31852,31853,31854,31855,31856,31857,31858,31859,31860,31861,31862,31863,31864,31865,31866,31867,31868,31869,31870,31871,31872,31873,31874,31875,31876,31877,31878,31879,31880,31881,31882,31883,31884,31885,31886,31887,31888,31889,31890,31891,31892,31893,31894,31895,31896,31897,31898,31899,31900,31901,31902,31903,31904,31905,31906,31907,31908,31909,31910,31911,31912,31913,31914,31915,31916,31917,31918,31919,31920,31921,31922,31923,31924,31925,31926,31927,31928,31929,31930,31931,31932,31933,31934,31935,31936,31937,31938,31939,31940,31941,31942,31943,31944,31945,31946,31947,31948,31949,31950,31951,31952,31953,31954,31955,31956,31957,31958,31959,31960,31961,31962,31963,31964,31965,31966,31967,31968,31969,31970,31971,31972,31973,31974,31975,31976,31977,31978,31979,31980,31981,31982,31983,31984,31985,31986,31987,31988,31989,31990,31991,31992,31993,31994,31995,31996,31997,31998,31999,32000,32001,32002,32003,32004,32005,32006,32007,32008,32009,32010,32011,32012,32013,32014,32015,32016,32017,32018,32019,32020,32021,32022,32023,32024,32025,32026,32027,32028,32029,32030,32031,32032,32033,32034,32035,32036,32037,32038,32039,32040,32041,32042,32043,32044,32045,32046,32047,32048,32049,32050,32051,32052,32053,32054,32055,32056,32057,32058,32059,32060,32061,32062,32063,32064,32065,32066,32067,32068,32069,32070,32071,32072,32073,32074,32075,32076,32077,32078,32079,32080,32081,32082,32083,32084,32085,32086,32087,32088,32089,32090,32091,32092,32093,32094,32095,32096,32097,32098,32099,32100,32101,32102,32103,32104,32105,32106,32107,32108,32109,32110,32111,32112,32113,32114,32115,32116,32117,32118,32119,32120,32121,32122,32123,32124,32125,32126,32127,32128,32129,32130,32131,32132,32133,32134,32135,32136,32137,32138,32139,32140,32141,32142,32143,32144,32145,32146,32147,32148,32149,32150,32151,32152,32153,32154,32155,32156,32157,32158,32159,32160,32161,32162,32163,32164,32165,32166,32167,32168,32169,32170,32171,32172,32173,32174,32175,32176,32177,32178,32179,32180,32181,32182,32183,32184,32185,32186,32187,32188,32189,32190,32191,32192,32193,32194,32195,32196,32197,32198,32199,32200,32201,32202,32203,32204,32205,32206,32207,32208,32209,32210,32211,32212,32213,32214,32215,32216,32217,32218,32219,32220,32221,32222,32223,32224,32225,32226,32227,32228,32229,32230,32231,32232,32233,32234,32235,32236,32237,32238,32239,32240,32241,32242,32243,32244,32245,32246,32247,32248,32249,32250,32251,32252,32253,32254,32255,32256,32257,32258,32259,32260,32261,32262,32263,32264,32265,32266,32267,32268,32269,32270,32271,32272,32273,32274,32275,32276,32277,32278,32279,32280,32281,32282,32283,32284,32285,32286,32287,32288,32289,32290,32291,32292,32293,32294,32295,32296,32297,32298,32299,32300,32301,32302,32303,32304,32305,32306,32307,32308,32309,32310,32311,32312,32313,32314,32315,32316,32317,32318,32319,32320,32321,32322,32323,32324,32325,32326,32327,32328,32329,32330,32331,32332,32333,32334,32335,32336,32337,32338,32339,32340,32341,32342,32343,32344,32345,32346,32347,32348,32349,32350,32351,32352,32353,32354,32355,32356,32357,32358,32359,32360,32361,32362,32363,32364,32365,32366,32367,32368,32369,32370,32371,32372,32373,32374,32375,32376,32377,32378,32379,32380,32381,32382,32383,32384,32385,32386,32387,32388,32389,32390,32391,32392,32393,32394,32395,32396,32397,32398,32399,32400,32401,32402,32403,32404,32405,32406,32407,32408,32409,32410,32411,32412,32413,32414,32415,32416,32417,32418,32419,32420,32421,32422,32423,32424,32425,32426,32427,32428,32429,32430,32431,32432,32433,32434,32435,32436,32437,32438,32439,32440,32441,32442,32443,32444,32445,32446,32447,32448,32449,32450,32451,32452,32453,32454,32455,32456,32457,32458,32459,32460,32461,32462,32463,32464,32465,32466,32467,32468,32469,32470,32471,32472,32473,32474,32475,32476,32477,32478,32479,32480,32481,32482,32483,32484,32485,32486,32487,32488,32489,32490,32491,32492,32493,32494,32495,32496,32497,32498,32499,32500,32501,32502,32503,32504,32505,32506,32507,32508,32509,32510,32511,32512,32513,32514,32515,32516,32517,32518,32519,32520,32521,32522,32523,32524,32525,32526,32527,32528,32529,32530,32531,32532,32533,32534,32535,32536,32537,32538,32539,32540,32541,32542,32543,32544,32545,32546,32547,32548,32549,32550,32551,32552,32553,32554,32555,32556,32557,32558,32559,32560,32561,32562,32563,32564,32565,32566,32567,32568,32569,32570,32571,32572,32573,32574,32575,32576,32577,32578,32579,32580,32581,32582,32583,32584,32585,32586,32587,32588,32589,32590,32591,32592,32593,32594,32595,32596,32597,32598,32599,32600,32601,32602,32603,32604,32605,32606,32607,32608,32609,32610,32611,32612,32613,32614,32615,32616,32617,32618,32619,32620,32621,32622,32623,32624,32625,32626,32627,32628,32629,32630,32631,32632,32633,32634,32635,32636,32637,32638,32639,32640,32641,32642,32643,32644,32645,32646,32647,32648,32649,32650,32651,32652,32653,32654,32655,32656,32657,32658,32659,32660,32661,32662,32663,32664,32665,32666,32667,32668,32669,32670,32671,32672,32673,32674,32675,32676,32677,32678,32679,32680,32681,32682,32683,32684,32685,32686,32687,32688,32689,32690,32691,32692,32693,32694,32695,32696,32697,32698,32699,32700,32701,32702,32703,32704,32705,32706,32707,32708,32709,32710,32711,32712,32713,32714,32715,32716,32717,32718,32719,32720,32721,32722,32723,32724,32725,32726,32727,32728,32729,32730,32731,32732,32733,32734,32735,32736,32737,32738,32739,32740,32741,32742,32743,32744,32745,32746,32747,32748,32749,32750,32751,32752,32753,32754,32755,32756,32757,32758,32759,32760,32761,32762,32763,32764,32765,32766,32767,32768,32769,32770,32771,32772,32773,32774,32775,32776,32777,32778,32779,32780,32781,32782,32783,32784,32785,32786,32787,32788,32789,32790,32791,32792,32793,32794,32795,32796,32797,32798,32799,32800,32801,32802,32803,32804,32805,32806,32807,32808,32809,32810,32811,32812,32813,32814,32815,32816,32817,32818,32819,32820,32821,32822,32823,32824,32825,32826,32827,32828,32829,32830,32831,32832,32833,32834,32835,32836,32837,32838,32839,32840,32841,32842,32843,32844,32845,32846,32847,32848,32849,32850,32851,32852,32853,32854,32855,32856,32857,32858,32859,32860,32861,32862,32863,32864,32865,32866,32867,32868,32869,32870,32871,32872,32873,32874,32875,32876,32877,32878,32879,32880,32881,32882,32883,32884,32885,32886,32887,32888,32889,32890,32891,32892,32893,32894,32895,32896,32897,32898,32899,32900,32901,32902,32903,32904,32905,32906,32907,32908,32909,32910,32911,32912,32913,32914,32915,32916,32917,32918,32919,32920,32921,32922,32923,32924,32925,32926,32927,32928,32929,32930,32931,32932,32933,32934,32935,32936,32937,32938,32939,32940,32941,32942,32943,32944,32945,32946,32947,32948,32949,32950,32951,32952,32953,32954,32955,32956,32957,32958,32959,32960,32961,32962,32963,32964,32965,32966,32967,32968,32969,32970,32971,32972,32973,32974,32975,32976,32977,32978,32979,32980,32981,32982,32983,32984,32985,32986,32987,32988,32989,32990,32991,32992,32993,32994,32995,32996,32997,32998,32999,33000,33001,33002,33003,33004,33005,33006,33007,33008,33009,33010,33011,33012,33013,33014,33015,33016,33017,33018,33019,33020,33021,33022,33023,33024,33025,33026,33027,33028,33029,33030,33031,33032,33033,33034,33035,33036,33037,33038,33039,33040,33041,33042,33043,33044,33045,33046,33047,33048,33049,33050,33051,33052,33053,33054,33055,33056,33057,33058,33059,33060,33061,33062,33063,33064,33065,33066,33067,33068,33069,33070,33071,33072,33073,33074,33075,33076,33077,33078,33079,33080,33081,33082,33083,33084,33085,33086,33087,33088,33089,33090,33091,33092,33093,33094,33095,33096,33097,33098,33099,33100,33101,33102,33103,33104,33105,33106,33107,33108,33109,33110,33111,33112,33113,33114,33115,33116,33117,33118,33119,33120,33121,33122,33123,33124,33125,33126,33127,33128,33129,33130,33131,33132,33133,33134,33135,33136,33137,33138,33139,33140,33141,33142,33143,33144,33145,33146,33147,33148,33149,33150,33151,33152,33153,33154,33155,33156,33157,33158,33159,33160,33161,33162,33163,33164,33165,33166,33167,33168,33169,33170,33171,33172,33173,33174,33175,33176,33177,33178,33179,33180,33181,33182,33183,33184,33185,33186,33187,33188,33189,33190,33191,33192,33193,33194,33195,33196,33197,33198,33199,33200,33201,33202,33203,33204,33205,33206,33207,33208,33209,33210,33211,33212,33213,33214,33215,33216,33217,33218,33219,33220,33221,33222,33223,33224,33225,33226,33227,33228,33229,33230,33231,33232,33233,33234,33235,33236,33237,33238,33239,33240,33241,33242,33243,33244,33245,33246,33247,33248,33249,33250,33251,33252,33253,33254,33255,33256,33257,33258,33259,33260,33261,33262,33263,33264,33265,33266,33267,33268,33269,33270,33271,33272,33273,33274,33275,33276,33277,33278,33279,33280,33281,33282,33283,33284,33285,33286,33287,33288,33289,33290,33291,33292,33293,33294,33295,33296,33297,33298,33299,33300,33301,33302,33303,33304,33305,33306,33307,33308,33309,33310,33311,33312,33313,33314,33315,33316,33317,33318,33319,33320,33321,33322,33323,33324,33325,33326,33327,33328,33329,33330,33331,33332,33333,33334,33335,33336,33337,33338,33339,33340,33341,33342,33343,33344,33345,33346,33347,33348,33349,33350,33351,33352,33353,33354,33355,33356,33357,33358,33359,33360,33361,33362,33363,33364,33365,33366,33367,33368,33369,33370,33371,33372,33373,33374,33375,33376,33377,33378,33379,33380,33381,33382,33383,33384,33385,33386,33387,33388,33389,33390,33391,33392,33393,33394,33395,33396,33397,33398,33399,33400,33401,33402,33403,33404,33405,33406,33407,33408,33409,33410,33411,33412,33413,33414,33415,33416,33417,33418,33419,33420,33421,33422,33423,33424,33425,33426,33427,33428,33429,33430,33431,33432,33433,33434,33435,33436,33437,33438,33439,33440,33441,33442,33443,33444,33445,33446,33447,33448,33449,33450,33451,33452,33453,33454,33455,33456,33457,33458,33459,33460,33461,33462,33463,33464,33465,33466,33467,33468,33469,33470,33471,33472,33473,33474,33475,33476,33477,33478,33479,33480,33481,33482,33483,33484,33485,33486,33487,33488,33489,33490,33491,33492,33493,33494,33495,33496,33497,33498,33499,33500,33501,33502,33503,33504,33505,33506,33507,33508,33509,33510,33511,33512,33513,33514,33515,33516,33517,33518,33519,33520,33521,33522,33523,33524,33525,33526,33527,33528,33529,33530,33531,33532,33533,33534,33535,33536,33537,33538,33539,33540,33541,33542,33543,33544,33545,33546,33547,33548,33549,33550,33551,33552,33553,33554,33555,33556,33557,33558,33559,33560,33561,33562,33563,33564,33565,33566,33567,33568,33569,33570,33571,33572,33573,33574,33575,33576,33577,33578,33579,33580,33581,33582,33583,33584,33585,33586,33587,33588,33589,33590,33591,33592,33593,33594,33595,33596,33597,33598,33599,33600,33601,33602,33603,33604,33605,33606,33607,33608,33609,33610,33611,33612,33613,33614,33615,33616,33617,33618,33619,33620,33621,33622,33623,33624,33625,33626,33627,33628,33629,33630,33631,33632,33633,33634,33635,33636,33637,33638,33639,33640,33641,33642,33643,33644,33645,33646,33647,33648,33649,33650,33651,33652,33653,33654,33655,33656,33657,33658,33659,33660,33661,33662,33663,33664,33665,33666,33667,33668,33669,33670,33671,33672,33673,33674,33675,33676,33677,33678,33679,33680,33681,33682,33683,33684,33685,33686,33687,33688,33689,33690,33691,33692,33693,33694,33695,33696,33697,33698,33699,33700,33701,33702,33703,33704,33705,33706,33707,33708,33709,33710,33711,33712,33713,33714,33715,33716,33717,33718,33719,33720,33721,33722,33723,33724,33725,33726,33727,33728,33729,33730,33731,33732,33733,33734,33735,33736,33737,33738,33739,33740,33741,33742,33743,33744,33745,33746,33747,33748,33749,33750,33751,33752,33753,33754,33755,33756,33757,33758,33759,33760,33761,33762,33763,33764,33765,33766,33767,33768,33769,33770,33771,33772,33773,33774,33775,33776,33777,33778,33779,33780,33781,33782,33783,33784,33785,33786,33787,33788,33789,33790,33791,33792,33793,33794,33795,33796,33797,33798,33799,33800,33801,33802,33803,33804,33805,33806,33807,33808,33809,33810,33811,33812,33813,33814,33815,33816,33817,33818,33819,33820,33821,33822,33823,33824,33825,33826,33827,33828,33829,33830,33831,33832,33833,33834,33835,33836,33837,33838,33839,33840,33841,33842,33843,33844,33845,33846,33847,33848,33849,33850,33851,33852,33853,33854,33855,33856,33857,33858,33859,33860,33861,33862,33863,33864,33865,33866,33867,33868,33869,33870,33871,33872,33873,33874,33875,33876,33877,33878,33879,33880,33881,33882,33883,33884,33885,33886,33887,33888,33889,33890,33891,33892,33893,33894,33895,33896,33897,33898,33899,33900,33901,33902,33903,33904,33905,33906,33907,33908,33909,33910,33911,33912,33913,33914,33915,33916,33917,33918,33919,33920,33921,33922,33923,33924,33925,33926,33927,33928,33929,33930,33931,33932,33933,33934,33935,33936,33937,33938,33939,33940,33941,33942,33943,33944,33945,33946,33947,33948,33949,33950,33951,33952,33953,33954,33955,33956,33957,33958,33959,33960,33961,33962,33963,33964,33965,33966,33967,33968,33969,33970,33971,33972,33973,33974,33975,33976,33977,33978,33979,33980,33981,33982,33983,33984,33985,33986,33987,33988,33989,33990,33991,33992,33993,33994,33995,33996,33997,33998,33999,34000,34001,34002,34003,34004,34005,34006,34007,34008,34009,34010,34011,34012,34013,34014,34015,34016,34017,34018,34019,34020,34021,34022,34023,34024,34025,34026,34027,34028,34029,34030,34031,34032,34033,34034,34035,34036,34037,34038,34039,34040,34041,34042,34043,34044,34045,34046,34047,34048,34049,34050,34051,34052,34053,34054,34055,34056,34057,34058,34059,34060,34061,34062,34063,34064,34065,34066,34067,34068,34069,34070,34071,34072,34073,34074,34075,34076,34077,34078,34079,34080,34081,34082,34083,34084,34085,34086,34087,34088,34089,34090,34091,34092,34093,34094,34095,34096,34097,34098,34099,34100,34101,34102,34103,34104,34105,34106,34107,34108,34109,34110,34111,34112,34113,34114,34115,34116,34117,34118,34119,34120,34121,34122,34123,34124,34125,34126,34127,34128,34129,34130,34131,34132,34133,34134,34135,34136,34137,34138,34139,34140,34141,34142,34143,34144,34145,34146,34147,34148,34149,34150,34151,34152,34153,34154,34155,34156,34157,34158,34159,34160,34161,34162,34163,34164,34165,34166,34167,34168,34169,34170,34171,34172,34173,34174,34175,34176,34177,34178,34179,34180,34181,34182,34183,34184,34185,34186,34187,34188,34189,34190,34191,34192,34193,34194,34195,34196,34197,34198,34199,34200,34201,34202,34203,34204,34205,34206,34207,34208,34209,34210,34211,34212,34213,34214,34215,34216,34217,34218,34219,34220,34221,34222,34223,34224,34225,34226,34227,34228,34229,34230,34231,34232,34233,34234,34235,34236,34237,34238,34239,34240,34241,34242,34243,34244,34245,34246,34247,34248,34249,34250,34251,34252,34253,34254,34255,34256,34257,34258,34259,34260,34261,34262,34263,34264,34265,34266,34267,34268,34269,34270,34271,34272,34273,34274,34275,34276,34277,34278,34279,34280,34281,34282,34283,34284,34285,34286,34287,34288,34289,34290,34291,34292,34293,34294,34295,34296,34297,34298,34299,34300,34301,34302,34303,34304,34305,34306,34307,34308,34309,34310,34311,34312,34313,34314,34315,34316,34317,34318,34319,34320,34321,34322,34323,34324,34325,34326,34327,34328,34329,34330,34331,34332,34333,34334,34335,34336,34337,34338,34339,34340,34341,34342,34343,34344,34345,34346,34347,34348,34349,34350,34351,34352,34353,34354,34355,34356,34357,34358,34359,34360,34361,34362,34363,34364,34365,34366,34367,34368,34369,34370,34371,34372,34373,34374,34375,34376,34377,34378,34379,34380,34381,34382,34383,34384,34385,34386,34387,34388,34389,34390,34391,34392,34393,34394,34395,34396,34397,34398,34399,34400,34401,34402,34403,34404,34405,34406,34407,34408,34409,34410,34411,34412,34413,34414,34415,34416,34417,34418,34419,34420,34421,34422,34423,34424,34425,34426,34427,34428,34429,34430,34431,34432,34433,34434,34435,34436,34437,34438,34439,34440,34441,34442,34443,34444,34445,34446,34447,34448,34449,34450,34451,34452,34453,34454,34455,34456,34457,34458,34459,34460,34461,34462,34463,34464,34465,34466,34467,34468,34469,34470,34471,34472,34473,34474,34475,34476,34477,34478,34479,34480,34481,34482,34483,34484,34485,34486,34487,34488,34489,34490,34491,34492,34493,34494,34495,34496,34497,34498,34499,34500,34501,34502,34503,34504,34505,34506,34507,34508,34509,34510,34511,34512,34513,34514,34515,34516,34517,34518,34519,34520,34521,34522,34523,34524,34525,34526,34527,34528,34529,34530,34531,34532,34533,34534,34535,34536,34537,34538,34539,34540,34541,34542,34543,34544,34545,34546,34547,34548,34549,34550,34551,34552,34553,34554,34555,34556,34557,34558,34559,34560,34561,34562,34563,34564,34565,34566,34567,34568,34569,34570,34571,34572,34573,34574,34575,34576,34577,34578,34579,34580,34581,34582,34583,34584,34585,34586,34587,34588,34589,34590,34591,34592,34593,34594,34595,34596,34597,34598,34599,34600,34601,34602,34603,34604,34605,34606,34607,34608,34609,34610,34611,34612,34613,34614,34615,34616,34617,34618,34619,34620,34621,34622,34623,34624,34625,34626,34627,34628,34629,34630,34631,34632,34633,34634,34635,34636,34637,34638,34639,34640,34641,34642,34643,34644,34645,34646,34647,34648,34649,34650,34651,34652,34653,34654,34655,34656,34657,34658,34659,34660,34661,34662,34663,34664,34665,34666,34667,34668,34669,34670,34671,34672,34673,34674,34675,34676,34677,34678,34679,34680,34681,34682,34683,34684,34685,34686,34687,34688,34689,34690,34691,34692,34693,34694,34695,34696,34697,34698,34699,34700,34701,34702,34703,34704,34705,34706,34707,34708,34709,34710,34711,34712,34713,34714,34715,34716,34717,34718,34719,34720,34721,34722,34723,34724,34725,34726,34727,34728,34729,34730,34731,34732,34733,34734,34735,34736,34737,34738,34739,34740,34741,34742,34743,34744,34745,34746,34747,34748,34749,34750,34751,34752,34753,34754,34755,34756,34757,34758,34759,34760,34761,34762,34763,34764,34765,34766,34767,34768,34769,34770,34771,34772,34773,34774,34775,34776,34777,34778,34779,34780,34781,34782,34783,34784,34785,34786,34787,34788,34789,34790,34791,34792,34793,34794,34795,34796,34797,34798,34799,34800,34801,34802,34803,34804,34805,34806,34807,34808,34809,34810,34811,34812,34813,34814,34815,34816,34817,34818,34819,34820,34821,34822,34823,34824,34825,34826,34827,34828,34829,34830,34831,34832,34833,34834,34835,34836,34837,34838,34839,34840,34841,34842,34843,34844,34845,34846,34847,34848,34849,34850,34851,34852,34853,34854,34855,34856,34857,34858,34859,34860,34861,34862,34863,34864,34865,34866,34867,34868,34869,34870,34871,34872,34873,34874,34875,34876,34877,34878,34879,34880,34881,34882,34883,34884,34885,34886,34887,34888,34889,34890,34891,34892,34893,34894,34895,34896,34897,34898,34899,34900,34901,34902,34903,34904,34905,34906,34907,34908,34909,34910,34911,34912,34913,34914,34915,34916,34917,34918,34919,34920,34921,34922,34923,34924,34925,34926,34927,34928,34929,34930,34931,34932,34933,34934,34935,34936,34937,34938,34939,34940,34941,34942,34943,34944,34945,34946,34947,34948,34949,34950,34951,34952,34953,34954,34955,34956,34957,34958,34959,34960,34961,34962,34963,34964,34965,34966,34967,34968,34969,34970,34971,34972,34973,34974,34975,34976,34977,34978,34979,34980,34981,34982,34983,34984,34985,34986,34987,34988,34989,34990,34991,34992,34993,34994,34995,34996,34997,34998,34999,35000,35001,35002,35003,35004,35005,35006,35007,35008,35009,35010,35011,35012,35013,35014,35015,35016,35017,35018,35019,35020,35021,35022,35023,35024,35025,35026,35027,35028,35029,35030,35031,35032,35033,35034,35035,35036,35037,35038,35039,35040,35041,35042,35043,35044,35045,35046,35047,35048,35049,35050,35051,35052,35053,35054,35055,35056,35057,35058,35059,35060,35061,35062,35063,35064,35065,35066,35067,35068,35069,35070,35071,35072,35073,35074,35075,35076,35077,35078,35079,35080,35081,35082,35083,35084,35085,35086,35087,35088,35089,35090,35091,35092,35093,35094,35095,35096,35097,35098,35099,35100,35101,35102,35103,35104,35105,35106,35107,35108,35109,35110,35111,35112,35113,35114,35115,35116,35117,35118,35119,35120,35121,35122,35123,35124,35125,35126,35127,35128,35129,35130,35131,35132,35133,35134,35135,35136,35137,35138,35139,35140,35141,35142,35143,35144,35145,35146,35147,35148,35149,35150,35151,35152,35153,35154,35155,35156,35157,35158,35159,35160,35161,35162,35163,35164,35165,35166,35167,35168,35169,35170,35171,35172,35173,35174,35175,35176,35177,35178,35179,35180,35181,35182,35183,35184,35185,35186,35187,35188,35189,35190,35191,35192,35193,35194,35195,35196,35197,35198,35199,35200,35201,35202,35203,35204,35205,35206,35207,35208,35209,35210,35211,35212,35213,35214,35215,35216,35217,35218,35219,35220,35221,35222,35223,35224,35225,35226,35227,35228,35229,35230,35231,35232,35233,35234,35235,35236,35237,35238,35239,35240,35241,35242,35243,35244,35245,35246,35247,35248,35249,35250,35251,35252,35253,35254,35255,35256,35257,35258,35259,35260,35261,35262,35263,35264,35265,35266,35267,35268,35269,35270,35271,35272,35273,35274,35275,35276,35277,35278,35279,35280,35281,35282,35283,35284,35285,35286,35287,35288,35289,35290,35291,35292,35293,35294,35295,35296,35297,35298,35299,35300,35301,35302,35303,35304,35305,35306,35307,35308,35309,35310,35311,35312,35313,35314,35315,35316,35317,35318,35319,35320,35321,35322,35323,35324,35325,35326,35327,35328,35329,35330,35331,35332,35333,35334,35335,35336,35337,35338,35339,35340,35341,35342,35343,35344,35345,35346,35347,35348,35349,35350,35351,35352,35353,35354,35355,35356,35357,35358,35359,35360,35361,35362,35363,35364,35365,35366,35367,35368,35369,35370,35371,35372,35373,35374,35375,35376,35377,35378,35379,35380,35381,35382,35383,35384,35385,35386,35387,35388,35389,35390,35391,35392,35393,35394,35395,35396,35397,35398,35399,35400,35401,35402,35403,35404,35405,35406,35407,35408,35409,35410,35411,35412,35413,35414,35415,35416,35417,35418,35419,35420,35421,35422,35423,35424,35425,35426,35427,35428,35429,35430,35431,35432,35433,35434,35435,35436,35437,35438,35439,35440,35441,35442,35443,35444,35445,35446,35447,35448,35449,35450,35451,35452,35453,35454,35455,35456,35457,35458,35459,35460,35461,35462,35463,35464,35465,35466,35467,35468,35469,35470,35471,35472,35473,35474,35475,35476,35477,35478,35479,35480,35481,35482,35483,35484,35485,35486,35487,35488,35489,35490,35491,35492,35493,35494,35495,35496,35497,35498,35499,35500,35501,35502,35503,35504,35505,35506,35507,35508,35509,35510,35511,35512,35513,35514,35515,35516,35517,35518,35519,35520,35521,35522,35523,35524,35525,35526,35527,35528,35529,35530,35531,35532,35533,35534,35535,35536,35537,35538,35539,35540,35541,35542,35543,35544,35545,35546,35547,35548,35549,35550,35551,35552,35553,35554,35555,35556,35557,35558,35559,35560,35561,35562,35563,35564,35565,35566,35567,35568,35569,35570,35571,35572,35573,35574,35575,35576,35577,35578,35579,35580,35581,35582,35583,35584,35585,35586,35587,35588,35589,35590,35591,35592,35593,35594,35595,35596,35597,35598,35599,35600,35601,35602,35603,35604,35605,35606,35607,35608,35609,35610,35611,35612,35613,35614,35615,35616,35617,35618,35619,35620,35621,35622,35623,35624,35625,35626,35627,35628,35629,35630,35631,35632,35633,35634,35635,35636,35637,35638,35639,35640,35641,35642,35643,35644,35645,35646,35647,35648,35649,35650,35651,35652,35653,35654,35655,35656,35657,35658,35659,35660,35661,35662,35663,35664,35665,35666,35667,35668,35669,35670,35671,35672,35673,35674,35675,35676,35677,35678,35679,35680,35681,35682,35683,35684,35685,35686,35687,35688,35689,35690,35691,35692,35693,35694,35695,35696,35697,35698,35699,35700,35701,35702,35703,35704,35705,35706,35707,35708,35709,35710,35711,35712,35713,35714,35715,35716,35717,35718,35719,35720,35721,35722,35723,35724,35725,35726,35727,35728,35729,35730,35731,35732,35733,35734,35735,35736,35737,35738,35739,35740,35741,35742,35743,35744,35745,35746,35747,35748,35749,35750,35751,35752,35753,35754,35755,35756,35757,35758,35759,35760,35761,35762,35763,35764,35765,35766,35767,35768,35769,35770,35771,35772,35773,35774,35775,35776,35777,35778,35779,35780,35781,35782,35783,35784,35785,35786,35787,35788,35789,35790,35791,35792,35793,35794,35795,35796,35797,35798,35799,35800,35801,35802,35803,35804,35805,35806,35807,35808,35809,35810,35811,35812,35813,35814,35815,35816,35817,35818,35819,35820,35821,35822,35823,35824,35825,35826,35827,35828,35829,35830,35831,35832,35833,35834,35835,35836,35837,35838,35839,35840,35841,35842,35843,35844,35845,35846,35847,35848,35849,35850,35851,35852,35853,35854,35855,35856,35857,35858,35859,35860,35861,35862,35863,35864,35865,35866,35867,35868,35869,35870,35871,35872,35873,35874,35875,35876,35877,35878,35879,35880,35881,35882,35883,35884,35885,35886,35887,35888,35889,35890,35891,35892,35893,35894,35895,35896,35897,35898,35899,35900,35901,35902,35903,35904,35905,35906,35907,35908,35909,35910,35911,35912,35913,35914,35915,35916,35917,35918,35919,35920,35921,35922,35923,35924,35925,35926,35927,35928,35929,35930,35931,35932,35933,35934,35935,35936,35937,35938,35939,35940,35941,35942,35943,35944,35945,35946,35947,35948,35949,35950,35951,35952,35953,35954,35955,35956,35957,35958,35959,35960,35961,35962,35963,35964,35965,35966,35967,35968,35969,35970,35971,35972,35973,35974,35975,35976,35977,35978,35979,35980,35981,35982,35983,35984,35985,35986,35987,35988,35989,35990,35991,35992,35993,35994,35995,35996,35997,35998,35999,36000,36001,36002,36003,36004,36005,36006,36007,36008,36009,36010,36011,36012,36013,36014,36015,36016,36017,36018,36019,36020,36021,36022,36023,36024,36025,36026,36027,36028,36029,36030,36031,36032,36033,36034,36035,36036,36037,36038,36039,36040,36041,36042,36043,36044,36045,36046,36047,36048,36049,36050,36051,36052,36053,36054,36055,36056,36057,36058,36059,36060,36061,36062,36063,36064,36065,36066,36067,36068,36069,36070,36071,36072,36073,36074,36075,36076,36077,36078,36079,36080,36081,36082,36083,36084,36085,36086,36087,36088,36089,36090,36091,36092,36093,36094,36095,36096,36097,36098,36099,36100,36101,36102,36103,36104,36105,36106,36107,36108,36109,36110,36111,36112,36113,36114,36115,36116,36117,36118,36119,36120,36121,36122,36123,36124,36125,36126,36127,36128,36129,36130,36131,36132,36133,36134,36135,36136,36137,36138,36139,36140,36141,36142,36143,36144,36145,36146,36147,36148,36149,36150,36151,36152,36153,36154,36155,36156,36157,36158,36159,36160,36161,36162,36163,36164,36165,36166,36167,36168,36169,36170,36171,36172,36173,36174,36175,36176,36177,36178,36179,36180,36181,36182,36183,36184,36185,36186,36187,36188,36189,36190,36191,36192,36193,36194,36195,36196,36197,36198,36199,36200,36201,36202,36203,36204,36205,36206,36207,36208,36209,36210,36211,36212,36213,36214,36215,36216,36217,36218,36219,36220,36221,36222,36223,36224,36225,36226,36227,36228,36229,36230,36231,36232,36233,36234,36235,36236,36237,36238,36239,36240,36241,36242,36243,36244,36245,36246,36247,36248,36249,36250,36251,36252,36253,36254,36255,36256,36257,36258,36259,36260,36261,36262,36263,36264,36265,36266,36267,36268,36269,36270,36271,36272,36273,36274,36275,36276,36277,36278,36279,36280,36281,36282,36283,36284,36285,36286,36287,36288,36289,36290,36291,36292,36293,36294,36295,36296,36297,36298,36299,36300,36301,36302,36303,36304,36305,36306,36307,36308,36309,36310,36311,36312,36313,36314,36315,36316,36317,36318,36319,36320,36321,36322,36323,36324,36325,36326,36327,36328,36329,36330,36331,36332,36333,36334,36335,36336,36337,36338,36339,36340,36341,36342,36343,36344,36345,36346,36347,36348,36349,36350,36351,36352,36353,36354,36355,36356,36357,36358,36359,36360,36361,36362,36363,36364,36365,36366,36367,36368,36369,36370,36371,36372,36373,36374,36375,36376,36377,36378,36379,36380,36381,36382,36383,36384,36385,36386,36387,36388,36389,36390,36391,36392,36393,36394,36395,36396,36397,36398,36399,36400,36401,36402,36403,36404,36405,36406,36407,36408,36409,36410,36411,36412,36413,36414,36415,36416,36417,36418,36419,36420,36421,36422,36423,36424,36425,36426,36427,36428,36429,36430,36431,36432,36433,36434,36435,36436,36437,36438,36439,36440,36441,36442,36443,36444,36445,36446,36447,36448,36449,36450,36451,36452,36453,36454,36455,36456,36457,36458,36459,36460,36461,36462,36463,36464,36465,36466,36467,36468,36469,36470,36471,36472,36473,36474,36475,36476,36477,36478,36479,36480,36481,36482,36483,36484,36485,36486,36487,36488,36489,36490,36491,36492,36493,36494,36495,36496,36497,36498,36499,36500,36501,36502,36503,36504,36505,36506,36507,36508,36509,36510,36511,36512,36513,36514,36515,36516,36517,36518,36519,36520,36521,36522,36523,36524,36525,36526,36527,36528,36529,36530,36531,36532,36533,36534,36535,36536,36537,36538,36539,36540,36541,36542,36543,36544,36545,36546,36547,36548,36549,36550,36551,36552,36553,36554,36555,36556,36557,36558,36559,36560,36561,36562,36563,36564,36565,36566,36567,36568,36569,36570,36571,36572,36573,36574,36575,36576,36577,36578,36579,36580,36581,36582,36583,36584,36585,36586,36587,36588,36589,36590,36591,36592,36593,36594,36595,36596,36597,36598,36599,36600,36601,36602,36603,36604,36605,36606,36607,36608,36609,36610,36611,36612,36613,36614,36615,36616,36617,36618,36619,36620,36621,36622,36623,36624,36625,36626,36627,36628,36629,36630,36631,36632,36633,36634,36635,36636,36637,36638,36639,36640,36641,36642,36643,36644,36645,36646,36647,36648,36649,36650,36651,36652,36653,36654,36655,36656,36657,36658,36659,36660,36661,36662,36663,36664,36665,36666,36667,36668,36669,36670,36671,36672,36673,36674,36675,36676,36677,36678,36679,36680,36681,36682,36683,36684,36685,36686,36687,36688,36689,36690,36691,36692,36693,36694,36695,36696,36697,36698,36699,36700,36701,36702,36703,36704,36705,36706,36707,36708,36709,36710,36711,36712,36713,36714,36715,36716,36717,36718,36719,36720,36721,36722,36723,36724,36725,36726,36727,36728,36729,36730,36731,36732,36733,36734,36735,36736,36737,36738,36739,36740,36741,36742,36743,36744,36745,36746,36747,36748,36749,36750,36751,36752,36753,36754,36755,36756,36757,36758,36759,36760,36761,36762,36763,36764,36765,36766,36767,36768,36769,36770,36771,36772,36773,36774,36775,36776,36777,36778,36779,36780,36781,36782,36783,36784,36785,36786,36787,36788,36789,36790,36791,36792,36793,36794,36795,36796,36797,36798,36799,36800,36801,36802,36803,36804,36805,36806,36807,36808,36809,36810,36811,36812,36813,36814,36815,36816,36817,36818,36819,36820,36821,36822,36823,36824,36825,36826,36827,36828,36829,36830,36831,36832,36833,36834,36835,36836,36837,36838,36839,36840,36841,36842,36843,36844,36845,36846,36847,36848,36849,36850,36851,36852,36853,36854,36855,36856,36857,36858,36859,36860,36861,36862,36863,36864,36865,36866,36867,36868,36869,36870,36871,36872,36873,36874,36875,36876,36877,36878,36879,36880,36881,36882,36883,36884,36885,36886,36887,36888,36889,36890,36891,36892,36893,36894,36895,36896,36897,36898,36899,36900,36901,36902,36903,36904,36905,36906,36907,36908,36909,36910,36911,36912,36913,36914,36915,36916,36917,36918,36919,36920,36921,36922,36923,36924,36925,36926,36927,36928,36929,36930,36931,36932,36933,36934,36935,36936,36937,36938,36939,36940,36941,36942,36943,36944,36945,36946,36947,36948,36949,36950,36951,36952,36953,36954,36955,36956,36957,36958,36959,36960,36961,36962,36963,36964,36965,36966,36967,36968,36969,36970,36971,36972,36973,36974,36975,36976,36977,36978,36979,36980,36981,36982,36983,36984,36985,36986,36987,36988,36989,36990,36991,36992,36993,36994,36995,36996,36997,36998,36999,37000,37001,37002,37003,37004,37005,37006,37007,37008,37009,37010,37011,37012,37013,37014,37015,37016,37017,37018,37019,37020,37021,37022,37023,37024,37025,37026,37027,37028,37029,37030,37031,37032,37033,37034,37035,37036,37037,37038,37039,37040,37041,37042,37043,37044,37045,37046,37047,37048,37049,37050,37051,37052,37053,37054,37055,37056,37057,37058,37059,37060,37061,37062,37063,37064,37065,37066,37067,37068,37069,37070,37071,37072,37073,37074,37075,37076,37077,37078,37079,37080,37081,37082,37083,37084,37085,37086,37087,37088,37089,37090,37091,37092,37093,37094,37095,37096,37097,37098,37099,37100,37101,37102,37103,37104,37105,37106,37107,37108,37109,37110,37111,37112,37113,37114,37115,37116,37117,37118,37119,37120,37121,37122,37123,37124,37125,37126,37127,37128,37129,37130,37131,37132,37133,37134,37135,37136,37137,37138,37139,37140,37141,37142,37143,37144,37145,37146,37147,37148,37149,37150,37151,37152,37153,37154,37155,37156,37157,37158,37159,37160,37161,37162,37163,37164,37165,37166,37167,37168,37169,37170,37171,37172,37173,37174,37175,37176,37177,37178,37179,37180,37181,37182,37183,37184,37185,37186,37187,37188,37189,37190,37191,37192,37193,37194,37195,37196,37197,37198,37199,37200,37201,37202,37203,37204,37205,37206,37207,37208,37209,37210,37211,37212,37213,37214,37215,37216,37217,37218,37219,37220,37221,37222,37223,37224,37225,37226,37227,37228,37229,37230,37231,37232,37233,37234,37235,37236,37237,37238,37239,37240,37241,37242,37243,37244,37245,37246,37247,37248,37249,37250,37251,37252,37253,37254,37255,37256,37257,37258,37259,37260,37261,37262,37263,37264,37265,37266,37267,37268,37269,37270,37271,37272,37273,37274,37275,37276,37277,37278,37279,37280,37281,37282,37283,37284,37285,37286,37287,37288,37289,37290,37291,37292,37293,37294,37295,37296,37297,37298,37299,37300,37301,37302,37303,37304,37305,37306,37307,37308,37309,37310,37311,37312,37313,37314,37315,37316,37317,37318,37319,37320,37321,37322,37323,37324,37325,37326,37327,37328,37329,37330,37331,37332,37333,37334,37335,37336,37337,37338,37339,37340,37341,37342,37343,37344,37345,37346,37347,37348,37349,37350,37351,37352,37353,37354,37355,37356,37357,37358,37359,37360,37361,37362,37363,37364,37365,37366,37367,37368,37369,37370,37371,37372,37373,37374,37375,37376,37377,37378,37379,37380,37381,37382,37383,37384,37385,37386,37387,37388,37389,37390,37391,37392,37393,37394,37395,37396,37397,37398,37399,37400,37401,37402,37403,37404,37405,37406,37407,37408,37409,37410,37411,37412,37413,37414,37415,37416,37417,37418,37419,37420,37421,37422,37423,37424,37425,37426,37427,37428,37429,37430,37431,37432,37433,37434,37435,37436,37437,37438,37439,37440,37441,37442,37443,37444,37445,37446,37447,37448,37449,37450,37451,37452,37453,37454,37455,37456,37457,37458,37459,37460,37461,37462,37463,37464,37465,37466,37467,37468,37469,37470,37471,37472,37473,37474,37475,37476,37477,37478,37479,37480,37481,37482,37483,37484,37485,37486,37487,37488,37489,37490,37491,37492,37493,37494,37495,37496,37497,37498,37499,37500,37501,37502,37503,37504,37505,37506,37507,37508,37509,37510,37511,37512,37513,37514,37515,37516,37517,37518,37519,37520,37521,37522,37523,37524,37525,37526,37527,37528,37529,37530,37531,37532,37533,37534,37535,37536,37537,37538,37539,37540,37541,37542,37543,37544,37545,37546,37547,37548,37549,37550,37551,37552,37553,37554,37555,37556,37557,37558,37559,37560,37561,37562,37563,37564,37565,37566,37567,37568,37569,37570,37571,37572,37573,37574,37575,37576,37577,37578,37579,37580,37581,37582,37583,37584,37585,37586,37587,37588,37589,37590,37591,37592,37593,37594,37595,37596,37597,37598,37599,37600,37601,37602,37603,37604,37605,37606,37607,37608,37609,37610,37611,37612,37613,37614,37615,37616,37617,37618,37619,37620,37621,37622,37623,37624,37625,37626,37627,37628,37629,37630,37631,37632,37633,37634,37635,37636,37637,37638,37639,37640,37641,37642,37643,37644,37645,37646,37647,37648,37649,37650,37651,37652,37653,37654,37655,37656,37657,37658,37659,37660,37661,37662,37663,37664,37665,37666,37667,37668,37669,37670,37671,37672,37673,37674,37675,37676,37677,37678,37679,37680,37681,37682,37683,37684,37685,37686,37687,37688,37689,37690,37691,37692,37693,37694,37695,37696,37697,37698,37699,37700,37701,37702,37703,37704,37705,37706,37707,37708,37709,37710,37711,37712,37713,37714,37715,37716,37717,37718,37719,37720,37721,37722,37723,37724,37725,37726,37727,37728,37729,37730,37731,37732,37733,37734,37735,37736,37737,37738,37739,37740,37741,37742,37743,37744,37745,37746,37747,37748,37749,37750,37751,37752,37753,37754,37755,37756,37757,37758,37759,37760,37761,37762,37763,37764,37765,37766,37767,37768,37769,37770,37771,37772,37773,37774,37775,37776,37777,37778,37779,37780,37781,37782,37783,37784,37785,37786,37787,37788,37789,37790,37791,37792,37793,37794,37795,37796,37797,37798,37799,37800,37801,37802,37803,37804,37805,37806,37807,37808,37809,37810,37811,37812,37813,37814,37815,37816,37817,37818,37819,37820,37821,37822,37823,37824,37825,37826,37827,37828,37829,37830,37831,37832,37833,37834,37835,37836,37837,37838,37839,37840,37841,37842,37843,37844,37845,37846,37847,37848,37849,37850,37851,37852,37853,37854,37855,37856,37857,37858,37859,37860,37861,37862,37863,37864,37865,37866,37867,37868,37869,37870,37871,37872,37873,37874,37875,37876,37877,37878,37879,37880,37881,37882,37883,37884,37885,37886,37887,37888,37889,37890,37891,37892,37893,37894,37895,37896,37897,37898,37899,37900,37901,37902,37903,37904,37905,37906,37907,37908,37909,37910,37911,37912,37913,37914,37915,37916,37917,37918,37919,37920,37921,37922,37923,37924,37925,37926,37927,37928,37929,37930,37931,37932,37933,37934,37935,37936,37937,37938,37939,37940,37941,37942,37943,37944,37945,37946,37947,37948,37949,37950,37951,37952,37953,37954,37955,37956,37957,37958,37959,37960,37961,37962,37963,37964,37965,37966,37967,37968,37969,37970,37971,37972,37973,37974,37975,37976,37977,37978,37979,37980,37981,37982,37983,37984,37985,37986,37987,37988,37989,37990,37991,37992,37993,37994,37995,37996,37997,37998,37999,38000,38001,38002,38003,38004,38005,38006,38007,38008,38009,38010,38011,38012,38013,38014,38015,38016,38017,38018,38019,38020,38021,38022,38023,38024,38025,38026,38027,38028,38029,38030,38031,38032,38033,38034,38035,38036,38037,38038,38039,38040,38041,38042,38043,38044,38045,38046,38047,38048,38049,38050,38051,38052,38053,38054,38055,38056,38057,38058,38059,38060,38061,38062,38063,38064,38065,38066,38067,38068,38069,38070,38071,38072,38073,38074,38075,38076,38077,38078,38079,38080,38081,38082,38083,38084,38085,38086,38087,38088,38089,38090,38091,38092,38093,38094,38095,38096,38097,38098,38099,38100,38101,38102,38103,38104,38105,38106,38107,38108,38109,38110,38111,38112,38113,38114,38115,38116,38117,38118,38119,38120,38121,38122,38123,38124,38125,38126,38127,38128,38129,38130,38131,38132,38133,38134,38135,38136,38137,38138,38139,38140,38141,38142,38143,38144,38145,38146,38147,38148,38149,38150,38151,38152,38153,38154,38155,38156,38157,38158,38159,38160,38161,38162,38163,38164,38165,38166,38167,38168,38169,38170,38171,38172,38173,38174,38175,38176,38177,38178,38179,38180,38181,38182,38183,38184,38185,38186,38187,38188,38189,38190,38191,38192,38193,38194,38195,38196,38197,38198,38199,38200,38201,38202,38203,38204,38205,38206,38207,38208,38209,38210,38211,38212,38213,38214,38215,38216,38217,38218,38219,38220,38221,38222,38223,38224,38225,38226,38227,38228,38229,38230,38231,38232,38233,38234,38235,38236,38237,38238,38239,38240,38241,38242,38243,38244,38245,38246,38247,38248,38249,38250,38251,38252,38253,38254,38255,38256,38257,38258,38259,38260,38261,38262,38263,38264,38265,38266,38267,38268,38269,38270,38271,38272,38273,38274,38275,38276,38277,38278,38279,38280,38281,38282,38283,38284,38285,38286,38287,38288,38289,38290,38291,38292,38293,38294,38295,38296,38297,38298,38299,38300,38301,38302,38303,38304,38305,38306,38307,38308,38309,38310,38311,38312,38313,38314,38315,38316,38317,38318,38319,38320,38321,38322,38323,38324,38325,38326,38327,38328,38329,38330,38331,38332,38333,38334,38335,38336,38337,38338,38339,38340,38341,38342,38343,38344,38345,38346,38347,38348,38349,38350,38351,38352,38353,38354,38355,38356,38357,38358,38359,38360,38361,38362,38363,38364,38365,38366,38367,38368,38369,38370,38371,38372,38373,38374,38375,38376,38377,38378,38379,38380,38381,38382,38383,38384,38385,38386,38387,38388,38389,38390,38391,38392,38393,38394,38395,38396,38397,38398,38399,38400,38401,38402,38403,38404,38405,38406,38407,38408,38409,38410,38411,38412,38413,38414,38415,38416,38417,38418,38419,38420,38421,38422,38423,38424,38425,38426,38427,38428,38429,38430,38431,38432,38433,38434,38435,38436,38437,38438,38439,38440,38441,38442,38443,38444,38445,38446,38447,38448,38449,38450,38451,38452,38453,38454,38455,38456,38457,38458,38459,38460,38461,38462,38463,38464,38465,38466,38467,38468,38469,38470,38471,38472,38473,38474,38475,38476,38477,38478,38479,38480,38481,38482,38483,38484,38485,38486,38487,38488,38489,38490,38491,38492,38493,38494,38495,38496,38497,38498,38499,38500,38501,38502,38503,38504,38505,38506,38507,38508,38509,38510,38511,38512,38513,38514,38515,38516,38517,38518,38519,38520,38521,38522,38523,38524,38525,38526,38527,38528,38529,38530,38531,38532,38533,38534,38535,38536,38537,38538,38539,38540,38541,38542,38543,38544,38545,38546,38547,38548,38549,38550,38551,38552,38553,38554,38555,38556,38557,38558,38559,38560,38561,38562,38563,38564,38565,38566,38567,38568,38569,38570,38571,38572,38573,38574,38575,38576,38577,38578,38579,38580,38581,38582,38583,38584,38585,38586,38587,38588,38589,38590,38591,38592,38593,38594,38595,38596,38597,38598,38599,38600,38601,38602,38603,38604,38605,38606,38607,38608,38609,38610,38611,38612,38613,38614,38615,38616,38617,38618,38619,38620,38621,38622,38623,38624,38625,38626,38627,38628,38629,38630,38631,38632,38633,38634,38635,38636,38637,38638,38639,38640,38641,38642,38643,38644,38645,38646,38647,38648,38649,38650,38651,38652,38653,38654,38655,38656,38657,38658,38659,38660,38661,38662,38663,38664,38665,38666,38667,38668,38669,38670,38671,38672,38673,38674,38675,38676,38677,38678,38679,38680,38681,38682,38683,38684,38685,38686,38687,38688,38689,38690,38691,38692,38693,38694,38695,38696,38697,38698,38699,38700,38701,38702,38703,38704,38705,38706,38707,38708,38709,38710,38711,38712,38713,38714,38715,38716,38717,38718,38719,38720,38721,38722,38723,38724,38725,38726,38727,38728,38729,38730,38731,38732,38733,38734,38735,38736,38737,38738,38739,38740,38741,38742,38743,38744,38745,38746,38747,38748,38749,38750,38751,38752,38753,38754,38755,38756,38757,38758,38759,38760,38761,38762,38763,38764,38765,38766,38767,38768,38769,38770,38771,38772,38773,38774,38775,38776,38777,38778,38779,38780,38781,38782,38783,38784,38785,38786,38787,38788,38789,38790,38791,38792,38793,38794,38795,38796,38797,38798,38799,38800,38801,38802,38803,38804,38805,38806,38807,38808,38809,38810,38811,38812,38813,38814,38815,38816,38817,38818,38819,38820,38821,38822,38823,38824,38825,38826,38827,38828,38829,38830,38831,38832,38833,38834,38835,38836,38837,38838,38839,38840,38841,38842,38843,38844,38845,38846,38847,38848,38849,38850,38851,38852,38853,38854,38855,38856,38857,38858,38859,38860,38861,38862,38863,38864,38865,38866,38867,38868,38869,38870,38871,38872,38873,38874,38875,38876,38877,38878,38879,38880,38881,38882,38883,38884,38885,38886,38887,38888,38889,38890,38891,38892,38893,38894,38895,38896,38897,38898,38899,38900,38901,38902,38903,38904,38905,38906,38907,38908,38909,38910,38911,38912,38913,38914,38915,38916,38917,38918,38919,38920,38921,38922,38923,38924,38925,38926,38927,38928,38929,38930,38931,38932,38933,38934,38935,38936,38937,38938,38939,38940,38941,38942,38943,38944,38945,38946,38947,38948,38949,38950,38951,38952,38953,38954,38955,38956,38957,38958,38959,38960,38961,38962,38963,38964,38965,38966,38967,38968,38969,38970,38971,38972,38973,38974,38975,38976,38977,38978,38979,38980,38981,38982,38983,38984,38985,38986,38987,38988,38989,38990,38991,38992,38993,38994,38995,38996,38997,38998,38999,39000,39001,39002,39003,39004,39005,39006,39007,39008,39009,39010,39011,39012,39013,39014,39015,39016,39017,39018,39019,39020,39021,39022,39023,39024,39025,39026,39027,39028,39029,39030,39031,39032,39033,39034,39035,39036,39037,39038,39039,39040,39041,39042,39043,39044,39045,39046,39047,39048,39049,39050,39051,39052,39053,39054,39055,39056,39057,39058,39059,39060,39061,39062,39063,39064,39065,39066,39067,39068,39069,39070,39071,39072,39073,39074,39075,39076,39077,39078,39079,39080,39081,39082,39083,39084,39085,39086,39087,39088,39089,39090,39091,39092,39093,39094,39095,39096,39097,39098,39099,39100,39101,39102,39103,39104,39105,39106,39107,39108,39109,39110,39111,39112,39113,39114,39115,39116,39117,39118,39119,39120,39121,39122,39123,39124,39125,39126,39127,39128,39129,39130,39131,39132,39133,39134,39135,39136,39137,39138,39139,39140,39141,39142,39143,39144,39145,39146,39147,39148,39149,39150,39151,39152,39153,39154,39155,39156,39157,39158,39159,39160,39161,39162,39163,39164,39165,39166,39167,39168,39169,39170,39171,39172,39173,39174,39175,39176,39177,39178,39179,39180,39181,39182,39183,39184,39185,39186,39187,39188,39189,39190,39191,39192,39193,39194,39195,39196,39197,39198,39199,39200,39201,39202,39203,39204,39205,39206,39207,39208,39209,39210,39211,39212,39213,39214,39215,39216,39217,39218,39219,39220,39221,39222,39223,39224,39225,39226,39227,39228,39229,39230,39231,39232,39233,39234,39235,39236,39237,39238,39239,39240,39241,39242,39243,39244,39245,39246,39247,39248,39249,39250,39251,39252,39253,39254,39255,39256,39257,39258,39259,39260,39261,39262,39263,39264,39265,39266,39267,39268,39269,39270,39271,39272,39273,39274,39275,39276,39277,39278,39279,39280,39281,39282,39283,39284,39285,39286,39287,39288,39289,39290,39291,39292,39293,39294,39295,39296,39297,39298,39299,39300,39301,39302,39303,39304,39305,39306,39307,39308,39309,39310,39311,39312,39313,39314,39315,39316,39317,39318,39319,39320,39321,39322,39323,39324,39325,39326,39327,39328,39329,39330,39331,39332,39333,39334,39335,39336,39337,39338,39339,39340,39341,39342,39343,39344,39345,39346,39347,39348,39349,39350,39351,39352,39353,39354,39355,39356,39357,39358,39359,39360,39361,39362,39363,39364,39365,39366,39367,39368,39369,39370,39371,39372,39373,39374,39375,39376,39377,39378,39379,39380,39381,39382,39383,39384,39385,39386,39387,39388,39389,39390,39391,39392,39393,39394,39395,39396,39397,39398,39399,39400,39401,39402,39403,39404,39405,39406,39407,39408,39409,39410,39411,39412,39413,39414,39415,39416,39417,39418,39419,39420,39421,39422,39423,39424,39425,39426,39427,39428,39429,39430,39431,39432,39433,39434,39435,39436,39437,39438,39439,39440,39441,39442,39443,39444,39445,39446,39447,39448,39449,39450,39451,39452,39453,39454,39455,39456,39457,39458,39459,39460,39461,39462,39463,39464,39465,39466,39467,39468,39469,39470,39471,39472,39473,39474,39475,39476,39477,39478,39479,39480,39481,39482,39483,39484,39485,39486,39487,39488,39489,39490,39491,39492,39493,39494,39495,39496,39497,39498,39499,39500,39501,39502,39503,39504,39505,39506,39507,39508,39509,39510,39511,39512,39513,39514,39515,39516,39517,39518,39519,39520,39521,39522,39523,39524,39525,39526,39527,39528,39529,39530,39531,39532,39533,39534,39535,39536,39537,39538,39539,39540,39541,39542,39543,39544,39545,39546,39547,39548,39549,39550,39551,39552,39553,39554,39555,39556,39557,39558,39559,39560,39561,39562,39563,39564,39565,39566,39567,39568,39569,39570,39571,39572,39573,39574,39575,39576,39577,39578,39579,39580,39581,39582,39583,39584,39585,39586,39587,39588,39589,39590,39591,39592,39593,39594,39595,39596,39597,39598,39599,39600,39601,39602,39603,39604,39605,39606,39607,39608,39609,39610,39611,39612,39613,39614,39615,39616,39617,39618,39619,39620,39621,39622,39623,39624,39625,39626,39627,39628,39629,39630,39631,39632,39633,39634,39635,39636,39637,39638,39639,39640,39641,39642,39643,39644,39645,39646,39647,39648,39649,39650,39651,39652,39653,39654,39655,39656,39657,39658,39659,39660,39661,39662,39663,39664,39665,39666,39667,39668,39669,39670,39671,39672,39673,39674,39675,39676,39677,39678,39679,39680,39681,39682,39683,39684,39685,39686,39687,39688,39689,39690,39691,39692,39693,39694,39695,39696,39697,39698,39699,39700,39701,39702,39703,39704,39705,39706,39707,39708,39709,39710,39711,39712,39713,39714,39715,39716,39717,39718,39719,39720,39721,39722,39723,39724,39725,39726,39727,39728,39729,39730,39731,39732,39733,39734,39735,39736,39737,39738,39739,39740,39741,39742,39743,39744,39745,39746,39747,39748,39749,39750,39751,39752,39753,39754,39755,39756,39757,39758,39759,39760,39761,39762,39763,39764,39765,39766,39767,39768,39769,39770,39771,39772,39773,39774,39775,39776,39777,39778,39779,39780,39781,39782,39783,39784,39785,39786,39787,39788,39789,39790,39791,39792,39793,39794,39795,39796,39797,39798,39799,39800,39801,39802,39803,39804,39805,39806,39807,39808,39809,39810,39811,39812,39813,39814,39815,39816,39817,39818,39819,39820,39821,39822,39823,39824,39825,39826,39827,39828,39829,39830,39831,39832,39833,39834,39835,39836,39837,39838,39839,39840,39841,39842,39843,39844,39845,39846,39847,39848,39849,39850,39851,39852,39853,39854,39855,39856,39857,39858,39859,39860,39861,39862,39863,39864,39865,39866,39867,39868,39869,39870,39871,39872,39873,39874,39875,39876,39877,39878,39879,39880,39881,39882,39883,39884,39885,39886,39887,39888,39889,39890,39891,39892,39893,39894,39895,39896,39897,39898,39899,39900,39901,39902,39903,39904,39905,39906,39907,39908,39909,39910,39911,39912,39913,39914,39915,39916,39917,39918,39919,39920,39921,39922,39923,39924,39925,39926,39927,39928,39929,39930,39931,39932,39933,39934,39935,39936,39937,39938,39939,39940,39941,39942,39943,39944,39945,39946,39947,39948,39949,39950,39951,39952,39953,39954,39955,39956,39957,39958,39959,39960,39961,39962,39963,39964,39965,39966,39967,39968,39969,39970,39971,39972,39973,39974,39975,39976,39977,39978,39979,39980,39981,39982,39983,39984,39985,39986,39987,39988,39989,39990,39991,39992,39993,39994,39995,39996,39997,39998,39999,40000,40001,40002,40003,40004,40005,40006,40007,40008,40009,40010,40011,40012,40013,40014,40015,40016,40017,40018,40019,40020,40021,40022,40023,40024,40025,40026,40027,40028,40029,40030,40031,40032,40033,40034,40035,40036,40037,40038,40039,40040,40041,40042,40043,40044,40045,40046,40047,40048,40049,40050,40051,40052,40053,40054,40055,40056,40057,40058,40059,40060,40061,40062,40063,40064,40065,40066,40067,40068,40069,40070,40071,40072,40073,40074,40075,40076,40077,40078,40079,40080,40081,40082,40083,40084,40085,40086,40087,40088,40089,40090,40091,40092,40093,40094,40095,40096,40097,40098,40099,40100,40101,40102,40103,40104,40105,40106,40107,40108,40109,40110,40111,40112,40113,40114,40115,40116,40117,40118,40119,40120,40121,40122,40123,40124,40125,40126,40127,40128,40129,40130,40131,40132,40133,40134,40135,40136,40137,40138,40139,40140,40141,40142,40143,40144,40145,40146,40147,40148,40149,40150,40151,40152,40153,40154,40155,40156,40157,40158,40159,40160,40161,40162,40163,40164,40165,40166,40167,40168,40169,40170,40171,40172,40173,40174,40175,40176,40177,40178,40179,40180,40181,40182,40183,40184,40185,40186,40187,40188,40189,40190,40191,40192,40193,40194,40195,40196,40197,40198,40199,40200,40201,40202,40203,40204,40205,40206,40207,40208,40209,40210,40211,40212,40213,40214,40215,40216,40217,40218,40219,40220,40221,40222,40223,40224,40225,40226,40227,40228,40229,40230,40231,40232,40233,40234,40235,40236,40237,40238,40239,40240,40241,40242,40243,40244,40245,40246,40247,40248,40249,40250,40251,40252,40253,40254,40255,40256,40257,40258,40259,40260,40261,40262,40263,40264,40265,40266,40267,40268,40269,40270,40271,40272,40273,40274,40275,40276,40277,40278,40279,40280,40281,40282,40283,40284,40285,40286,40287,40288,40289,40290,40291,40292,40293,40294,40295,40296,40297,40298,40299,40300,40301,40302,40303,40304,40305,40306,40307,40308,40309,40310,40311,40312,40313,40314,40315,40316,40317,40318,40319,40320,40321,40322,40323,40324,40325,40326,40327,40328,40329,40330,40331,40332,40333,40334,40335,40336,40337,40338,40339,40340,40341,40342,40343,40344,40345,40346,40347,40348,40349,40350,40351,40352,40353,40354,40355,40356,40357,40358,40359,40360,40361,40362,40363,40364,40365,40366,40367,40368,40369,40370,40371,40372,40373,40374,40375,40376,40377,40378,40379,40380,40381,40382,40383,40384,40385,40386,40387,40388,40389,40390,40391,40392,40393,40394,40395,40396,40397,40398,40399,40400,40401,40402,40403,40404,40405,40406,40407,40408,40409,40410,40411,40412,40413,40414,40415,40416,40417,40418,40419,40420,40421,40422,40423,40424,40425,40426,40427,40428,40429,40430,40431,40432,40433,40434,40435,40436,40437,40438,40439,40440,40441,40442,40443,40444,40445,40446,40447,40448,40449,40450,40451,40452,40453,40454,40455,40456,40457,40458,40459,40460,40461,40462,40463,40464,40465,40466,40467,40468,40469,40470,40471,40472,40473,40474,40475,40476,40477,40478,40479,40480,40481,40482,40483,40484,40485,40486,40487,40488,40489,40490,40491,40492,40493,40494,40495,40496,40497,40498,40499,40500,40501,40502,40503,40504,40505,40506,40507,40508,40509,40510,40511,40512,40513,40514,40515,40516,40517,40518,40519,40520,40521,40522,40523,40524,40525,40526,40527,40528,40529,40530,40531,40532,40533,40534,40535,40536,40537,40538,40539,40540,40541,40542,40543,40544,40545,40546,40547,40548,40549,40550,40551,40552,40553,40554,40555,40556,40557,40558,40559,40560,40561,40562,40563,40564,40565,40566,40567,40568,40569,40570,40571,40572,40573,40574,40575,40576,40577,40578,40579,40580,40581,40582,40583,40584,40585,40586,40587,40588,40589,40590,40591,40592,40593,40594,40595,40596,40597,40598,40599,40600,40601,40602,40603,40604,40605,40606,40607,40608,40609,40610,40611,40612,40613,40614,40615,40616,40617,40618,40619,40620,40621,40622,40623,40624,40625,40626,40627,40628,40629,40630,40631,40632,40633,40634,40635,40636,40637,40638,40639,40640,40641,40642,40643,40644,40645,40646,40647,40648,40649,40650,40651,40652,40653,40654,40655,40656,40657,40658,40659,40660,40661,40662,40663,40664,40665,40666,40667,40668,40669,40670,40671,40672,40673,40674,40675,40676,40677,40678,40679,40680,40681,40682,40683,40684,40685,40686,40687,40688,40689,40690,40691,40692,40693,40694,40695,40696,40697,40698,40699,40700,40701,40702,40703,40704,40705,40706,40707,40708,40709,40710,40711,40712,40713,40714,40715,40716,40717,40718,40719,40720,40721,40722,40723,40724,40725,40726,40727,40728,40729,40730,40731,40732,40733,40734,40735,40736,40737,40738,40739,40740,40741,40742,40743,40744,40745,40746,40747,40748,40749,40750,40751,40752,40753,40754,40755,40756,40757,40758,40759,40760,40761,40762,40763,40764,40765,40766,40767,40768,40769,40770,40771,40772,40773,40774,40775,40776,40777,40778,40779,40780,40781,40782,40783,40784,40785,40786,40787,40788,40789,40790,40791,40792,40793,40794,40795,40796,40797,40798,40799,40800,40801,40802,40803,40804,40805,40806,40807,40808,40809,40810,40811,40812,40813,40814,40815,40816,40817,40818,40819,40820,40821,40822,40823,40824,40825,40826,40827,40828,40829,40830,40831,40832,40833,40834,40835,40836,40837,40838,40839,40840,40841,40842,40843,40844,40845,40846,40847,40848,40849,40850,40851,40852,40853,40854,40855,40856,40857,40858,40859,40860,40861,40862,40863,40864,40865,40866,40867,40868,40869,40870,40871,40872,40873,40874,40875,40876,40877,40878,40879,40880,40881,40882,40883,40884,40885,40886,40887,40888,40889,40890,40891,40892,40893,40894,40895,40896,40897,40898,40899,40900,40901,40902,40903,40904,40905,40906,40907,40908,40909,40910,40911,40912,40913,40914,40915,40916,40917,40918,40919,40920,40921,40922,40923,40924,40925,40926,40927,40928,40929,40930,40931,40932,40933,40934,40935,40936,40937,40938,40939,40940,40941,40942,40943,40944,40945,40946,40947,40948,40949,40950,40951,40952,40953,40954,40955,40956,40957,40958,40959,40960,40961,40962,40963,40964,40965,40966,40967,40968,40969,40970,40971,40972,40973,40974,40975,40976,40977,40978,40979,40980,40981,40982,40983,40984,40985,40986,40987,40988,40989,40990,40991,40992,40993,40994,40995,40996,40997,40998,40999,41000,41001,41002,41003,41004,41005,41006,41007,41008,41009,41010,41011,41012,41013,41014,41015,41016,41017,41018,41019,41020,41021,41022,41023,41024,41025,41026,41027,41028,41029,41030,41031,41032,41033,41034,41035,41036,41037,41038,41039,41040,41041,41042,41043,41044,41045,41046,41047,41048,41049,41050,41051,41052,41053,41054,41055,41056,41057,41058,41059,41060,41061,41062,41063,41064,41065,41066,41067,41068,41069,41070,41071,41072,41073,41074,41075,41076,41077,41078,41079,41080,41081,41082,41083,41084,41085,41086,41087,41088,41089,41090,41091,41092,41093,41094,41095,41096,41097,41098,41099,41100,41101,41102,41103,41104,41105,41106,41107,41108,41109,41110,41111,41112,41113,41114,41115,41116,41117,41118,41119,41120,41121,41122,41123,41124,41125,41126,41127,41128,41129,41130,41131,41132,41133,41134,41135,41136,41137,41138,41139,41140,41141,41142,41143,41144,41145,41146,41147,41148,41149,41150,41151,41152,41153,41154,41155,41156,41157,41158,41159,41160,41161,41162,41163,41164,41165,41166,41167,41168,41169,41170,41171,41172,41173,41174,41175,41176,41177,41178,41179,41180,41181,41182,41183,41184,41185,41186,41187,41188,41189,41190,41191,41192,41193,41194,41195,41196,41197,41198,41199,41200,41201,41202,41203,41204,41205,41206,41207,41208,41209,41210,41211,41212,41213,41214,41215,41216,41217,41218,41219,41220,41221,41222,41223,41224,41225,41226,41227,41228,41229,41230,41231,41232,41233,41234,41235,41236,41237,41238,41239,41240,41241,41242,41243,41244,41245,41246,41247,41248,41249,41250,41251,41252,41253,41254,41255,41256,41257,41258,41259,41260,41261,41262,41263,41264,41265,41266,41267,41268,41269,41270,41271,41272,41273,41274,41275,41276,41277,41278,41279,41280,41281,41282,41283,41284,41285,41286,41287,41288,41289,41290,41291,41292,41293,41294,41295,41296,41297,41298,41299,41300,41301,41302,41303,41304,41305,41306,41307,41308,41309,41310,41311,41312,41313,41314,41315,41316,41317,41318,41319,41320,41321,41322,41323,41324,41325,41326,41327,41328,41329,41330,41331,41332,41333,41334,41335,41336,41337,41338,41339,41340,41341,41342,41343,41344,41345,41346,41347,41348,41349,41350,41351,41352,41353,41354,41355,41356,41357,41358,41359,41360,41361,41362,41363,41364,41365,41366,41367,41368,41369,41370,41371,41372,41373,41374,41375,41376,41377,41378,41379,41380,41381,41382,41383,41384,41385,41386,41387,41388,41389,41390,41391,41392,41393,41394,41395,41396,41397,41398,41399,41400,41401,41402,41403,41404,41405,41406,41407,41408,41409,41410,41411,41412,41413,41414,41415,41416,41417,41418,41419,41420,41421,41422,41423,41424,41425,41426,41427,41428,41429,41430,41431,41432,41433,41434,41435,41436,41437,41438,41439,41440,41441,41442,41443,41444,41445,41446,41447,41448,41449,41450,41451,41452,41453,41454,41455,41456,41457,41458,41459,41460,41461,41462,41463,41464,41465,41466,41467,41468,41469,41470,41471,41472,41473,41474,41475,41476,41477,41478,41479,41480,41481,41482,41483,41484,41485,41486,41487,41488,41489,41490,41491,41492,41493,41494,41495,41496,41497,41498,41499,41500,41501,41502,41503,41504,41505,41506,41507,41508,41509,41510,41511,41512,41513,41514,41515,41516,41517,41518,41519,41520,41521,41522,41523,41524,41525,41526,41527,41528,41529,41530,41531,41532,41533,41534,41535,41536,41537,41538,41539,41540,41541,41542,41543,41544,41545,41546,41547,41548,41549,41550,41551,41552,41553,41554,41555,41556,41557,41558,41559,41560,41561,41562,41563,41564,41565,41566,41567,41568,41569,41570,41571,41572,41573,41574,41575,41576,41577,41578,41579,41580,41581,41582,41583,41584,41585,41586,41587,41588,41589,41590,41591,41592,41593,41594,41595,41596,41597,41598,41599,41600,41601,41602,41603,41604,41605,41606,41607,41608,41609,41610,41611,41612,41613,41614,41615,41616,41617,41618,41619,41620,41621,41622,41623,41624,41625,41626,41627,41628,41629,41630,41631,41632,41633,41634,41635,41636,41637,41638,41639,41640,41641,41642,41643,41644,41645,41646,41647,41648,41649,41650,41651,41652,41653,41654,41655,41656,41657,41658,41659,41660,41661,41662,41663,41664,41665,41666,41667,41668,41669,41670,41671,41672,41673,41674,41675,41676,41677,41678,41679,41680,41681,41682,41683,41684,41685,41686,41687,41688,41689,41690,41691,41692,41693,41694,41695,41696,41697,41698,41699,41700,41701,41702,41703,41704,41705,41706,41707,41708,41709,41710,41711,41712,41713,41714,41715,41716,41717,41718,41719,41720,41721,41722,41723,41724,41725,41726,41727,41728,41729,41730,41731,41732,41733,41734,41735,41736,41737,41738,41739,41740,41741,41742,41743,41744,41745,41746,41747,41748,41749,41750,41751,41752,41753,41754,41755,41756,41757,41758,41759,41760,41761,41762,41763,41764,41765,41766,41767,41768,41769,41770,41771,41772,41773,41774,41775,41776,41777,41778,41779,41780,41781,41782,41783,41784,41785,41786,41787,41788,41789,41790,41791,41792,41793,41794,41795,41796,41797,41798,41799,41800,41801,41802,41803,41804,41805,41806,41807,41808,41809,41810,41811,41812,41813,41814,41815,41816,41817,41818,41819,41820,41821,41822,41823,41824,41825,41826,41827,41828,41829,41830,41831,41832,41833,41834,41835,41836,41837,41838,41839,41840,41841,41842,41843,41844,41845,41846,41847,41848,41849,41850,41851,41852,41853,41854,41855,41856,41857,41858,41859,41860,41861,41862,41863,41864,41865,41866,41867,41868,41869,41870,41871,41872,41873,41874,41875,41876,41877,41878,41879,41880,41881,41882,41883,41884,41885,41886,41887,41888,41889,41890,41891,41892,41893,41894,41895,41896,41897,41898,41899,41900,41901,41902,41903,41904,41905,41906,41907,41908,41909,41910,41911,41912,41913,41914,41915,41916,41917,41918,41919,41920,41921,41922,41923,41924,41925,41926,41927,41928,41929,41930,41931,41932,41933,41934,41935,41936,41937,41938,41939,41940,41941,41942,41943,41944,41945,41946,41947,41948,41949,41950,41951,41952,41953,41954,41955,41956,41957,41958,41959,41960,41961,41962,41963,41964,41965,41966,41967,41968,41969,41970,41971,41972,41973,41974,41975,41976,41977,41978,41979,41980,41981,41982,41983,41984,41985,41986,41987,41988,41989,41990,41991,41992,41993,41994,41995,41996,41997,41998,41999,42000,42001,42002,42003,42004,42005,42006,42007,42008,42009,42010,42011,42012,42013,42014,42015,42016,42017,42018,42019,42020,42021,42022,42023,42024,42025,42026,42027,42028,42029,42030,42031,42032,42033,42034,42035,42036,42037,42038,42039,42040,42041,42042,42043,42044,42045,42046,42047,42048,42049,42050,42051,42052,42053,42054,42055,42056,42057,42058,42059,42060,42061,42062,42063,42064,42065,42066,42067,42068,42069,42070,42071,42072,42073,42074,42075,42076,42077,42078,42079,42080,42081,42082,42083,42084,42085,42086,42087,42088,42089,42090,42091,42092,42093,42094,42095,42096,42097,42098,42099,42100,42101,42102,42103,42104,42105,42106,42107,42108,42109,42110,42111,42112,42113,42114,42115,42116,42117,42118,42119,42120,42121,42122,42123,42124,42125,42126,42127,42128,42129,42130,42131,42132,42133,42134,42135,42136,42137,42138,42139,42140,42141,42142,42143,42144,42145,42146,42147,42148,42149,42150,42151,42152,42153,42154,42155,42156,42157,42158,42159,42160,42161,42162,42163,42164,42165,42166,42167,42168,42169,42170,42171,42172,42173,42174,42175,42176,42177,42178,42179,42180,42181,42182,42183,42184,42185,42186,42187,42188,42189,42190,42191,42192,42193,42194,42195,42196,42197,42198,42199,42200,42201,42202,42203,42204,42205,42206,42207,42208,42209,42210,42211,42212,42213,42214,42215,42216,42217,42218,42219,42220,42221,42222,42223,42224,42225,42226,42227,42228,42229,42230,42231,42232,42233,42234,42235,42236,42237,42238,42239,42240,42241,42242,42243,42244,42245,42246,42247,42248,42249,42250,42251,42252,42253,42254,42255,42256,42257,42258,42259,42260,42261,42262,42263,42264,42265,42266,42267,42268,42269,42270,42271,42272,42273,42274,42275,42276,42277,42278,42279,42280,42281,42282,42283,42284,42285,42286,42287,42288,42289,42290,42291,42292,42293,42294,42295,42296,42297,42298,42299,42300,42301,42302,42303,42304,42305,42306,42307,42308,42309,42310,42311,42312,42313,42314,42315,42316,42317,42318,42319,42320,42321,42322,42323,42324,42325,42326,42327,42328,42329,42330,42331,42332,42333,42334,42335,42336,42337,42338,42339,42340,42341,42342,42343,42344,42345,42346,42347,42348,42349,42350,42351,42352,42353,42354,42355,42356,42357,42358,42359,42360,42361,42362,42363,42364,42365,42366,42367,42368,42369,42370,42371,42372,42373,42374,42375,42376,42377,42378,42379,42380,42381,42382,42383,42384,42385,42386,42387,42388,42389,42390,42391,42392,42393,42394,42395,42396,42397,42398,42399,42400,42401,42402,42403,42404,42405,42406,42407,42408,42409,42410,42411,42412,42413,42414,42415,42416,42417,42418,42419,42420,42421,42422,42423,42424,42425,42426,42427,42428,42429,42430,42431,42432,42433,42434,42435,42436,42437,42438,42439,42440,42441,42442,42443,42444,42445,42446,42447,42448,42449,42450,42451,42452,42453,42454,42455,42456,42457,42458,42459,42460,42461,42462,42463,42464,42465,42466,42467,42468,42469,42470,42471,42472,42473,42474,42475,42476,42477,42478,42479,42480,42481,42482,42483,42484,42485,42486,42487,42488,42489,42490,42491,42492,42493,42494,42495,42496,42497,42498,42499,42500,42501,42502,42503,42504,42505,42506,42507,42508,42509,42510,42511,42512,42513,42514,42515,42516,42517,42518,42519,42520,42521,42522,42523,42524,42525,42526,42527,42528,42529,42530,42531,42532,42533,42534,42535,42536,42537,42538,42539,42540,42541,42542,42543,42544,42545,42546,42547,42548,42549,42550,42551,42552,42553,42554,42555,42556,42557,42558,42559,42560,42561,42562,42563,42564,42565,42566,42567,42568,42569,42570,42571,42572,42573,42574,42575,42576,42577,42578,42579,42580,42581,42582,42583,42584,42585,42586,42587,42588,42589,42590,42591,42592,42593,42594,42595,42596,42597,42598,42599,42600,42601,42602,42603,42604,42605,42606,42607,42608,42609,42610,42611,42612,42613,42614,42615,42616,42617,42618,42619,42620,42621,42622,42623,42624,42625,42626,42627,42628,42629,42630,42631,42632,42633,42634,42635,42636,42637,42638,42639,42640,42641,42642,42643,42644,42645,42646,42647,42648,42649,42650,42651,42652,42653,42654,42655,42656,42657,42658,42659,42660,42661,42662,42663,42664,42665,42666,42667,42668,42669,42670,42671,42672,42673,42674,42675,42676,42677,42678,42679,42680,42681,42682,42683,42684,42685,42686,42687,42688,42689,42690,42691,42692,42693,42694,42695,42696,42697,42698,42699,42700,42701,42702,42703,42704,42705,42706,42707,42708,42709,42710,42711,42712,42713,42714,42715,42716,42717,42718,42719,42720,42721,42722,42723,42724,42725,42726,42727,42728,42729,42730,42731,42732,42733,42734,42735,42736,42737,42738,42739,42740,42741,42742,42743,42744,42745,42746,42747,42748,42749,42750,42751,42752,42753,42754,42755,42756,42757,42758,42759,42760,42761,42762,42763,42764,42765,42766,42767,42768,42769,42770,42771,42772,42773,42774,42775,42776,42777,42778,42779,42780,42781,42782,42783,42784,42785,42786,42787,42788,42789,42790,42791,42792,42793,42794,42795,42796,42797,42798,42799,42800,42801,42802,42803,42804,42805,42806,42807,42808,42809,42810,42811,42812,42813,42814,42815,42816,42817,42818,42819,42820,42821,42822,42823,42824,42825,42826,42827,42828,42829,42830,42831,42832,42833,42834,42835,42836,42837,42838,42839,42840,42841,42842,42843,42844,42845,42846,42847,42848,42849,42850,42851,42852,42853,42854,42855,42856,42857,42858,42859,42860,42861,42862,42863,42864,42865,42866,42867,42868,42869,42870,42871,42872,42873,42874,42875,42876,42877,42878,42879,42880,42881,42882,42883,42884,42885,42886,42887,42888,42889,42890,42891,42892,42893,42894,42895,42896,42897,42898,42899,42900,42901,42902,42903,42904,42905,42906,42907,42908,42909,42910,42911,42912,42913,42914,42915,42916,42917,42918,42919,42920,42921,42922,42923,42924,42925,42926,42927,42928,42929,42930,42931,42932,42933,42934,42935,42936,42937,42938,42939,42940,42941,42942,42943,42944,42945,42946,42947,42948,42949,42950,42951,42952,42953,42954,42955,42956,42957,42958,42959,42960,42961,42962,42963,42964,42965,42966,42967,42968,42969,42970,42971,42972,42973,42974,42975,42976,42977,42978,42979,42980,42981,42982,42983,42984,42985,42986,42987,42988,42989,42990,42991,42992,42993,42994,42995,42996,42997,42998,42999,43000,43001,43002,43003,43004,43005,43006,43007,43008,43009,43010,43011,43012,43013,43014,43015,43016,43017,43018,43019,43020,43021,43022,43023,43024,43025,43026,43027,43028,43029,43030,43031,43032,43033,43034,43035,43036,43037,43038,43039,43040,43041,43042,43043,43044,43045,43046,43047,43048,43049,43050,43051,43052,43053,43054,43055,43056,43057,43058,43059,43060,43061,43062,43063,43064,43065,43066,43067,43068,43069,43070,43071,43072,43073,43074,43075,43076,43077,43078,43079,43080,43081,43082,43083,43084,43085,43086,43087,43088,43089,43090,43091,43092,43093,43094,43095,43096,43097,43098,43099,43100,43101,43102,43103,43104,43105,43106,43107,43108,43109,43110,43111,43112,43113,43114,43115,43116,43117,43118,43119,43120,43121,43122,43123,43124,43125,43126,43127,43128,43129,43130,43131,43132,43133,43134,43135,43136,43137,43138,43139,43140,43141,43142,43143,43144,43145,43146,43147,43148,43149,43150,43151,43152,43153,43154,43155,43156,43157,43158,43159,43160,43161,43162,43163,43164,43165,43166,43167,43168,43169,43170,43171,43172,43173,43174,43175,43176,43177,43178,43179,43180,43181,43182,43183,43184,43185,43186,43187,43188,43189,43190,43191,43192,43193,43194,43195,43196,43197,43198,43199,43200,43201,43202,43203,43204,43205,43206,43207,43208,43209,43210,43211,43212,43213,43214,43215,43216,43217,43218,43219,43220,43221,43222,43223,43224,43225,43226,43227,43228,43229,43230,43231,43232,43233,43234,43235,43236,43237,43238,43239,43240,43241,43242,43243,43244,43245,43246,43247,43248,43249,43250,43251,43252,43253,43254,43255,43256,43257,43258,43259,43260,43261,43262,43263,43264,43265,43266,43267,43268,43269,43270,43271,43272,43273,43274,43275,43276,43277,43278,43279,43280,43281,43282,43283,43284,43285,43286,43287,43288,43289,43290,43291,43292,43293,43294,43295,43296,43297,43298,43299,43300,43301,43302,43303,43304,43305,43306,43307,43308,43309,43310,43311,43312,43313,43314,43315,43316,43317,43318,43319,43320,43321,43322,43323,43324,43325,43326,43327,43328,43329,43330,43331,43332,43333,43334,43335,43336,43337,43338,43339,43340,43341,43342,43343,43344,43345,43346,43347,43348,43349,43350,43351,43352,43353,43354,43355,43356,43357,43358,43359,43360,43361,43362,43363,43364,43365,43366,43367,43368,43369,43370,43371,43372,43373,43374,43375,43376,43377,43378,43379,43380,43381,43382,43383,43384,43385,43386,43387,43388,43389,43390,43391,43392,43393,43394,43395,43396,43397,43398,43399,43400,43401,43402,43403,43404,43405,43406,43407,43408,43409,43410,43411,43412,43413,43414,43415,43416,43417,43418,43419,43420,43421,43422,43423,43424,43425,43426,43427,43428,43429,43430,43431,43432,43433,43434,43435,43436,43437,43438,43439,43440,43441,43442,43443,43444,43445,43446,43447,43448,43449,43450,43451,43452,43453,43454,43455,43456,43457,43458,43459,43460,43461,43462,43463,43464,43465,43466,43467,43468,43469,43470,43471,43472,43473,43474,43475,43476,43477,43478,43479,43480,43481,43482,43483,43484,43485,43486,43487,43488,43489,43490,43491,43492,43493,43494,43495,43496,43497,43498,43499,43500,43501,43502,43503,43504,43505,43506,43507,43508,43509,43510,43511,43512,43513,43514,43515,43516,43517,43518,43519,43520,43521,43522,43523,43524,43525,43526,43527,43528,43529,43530,43531,43532,43533,43534,43535,43536,43537,43538,43539,43540,43541,43542,43543,43544,43545,43546,43547,43548,43549,43550,43551,43552,43553,43554,43555,43556,43557,43558,43559,43560,43561,43562,43563,43564,43565,43566,43567,43568,43569,43570,43571,43572,43573,43574,43575,43576,43577,43578,43579,43580,43581,43582,43583,43584,43585,43586,43587,43588,43589,43590,43591,43592,43593,43594,43595,43596,43597,43598,43599,43600,43601,43602,43603,43604,43605,43606,43607,43608,43609,43610,43611,43612,43613,43614,43615,43616,43617,43618,43619,43620,43621,43622,43623,43624,43625,43626,43627,43628,43629,43630,43631,43632,43633,43634,43635,43636,43637,43638,43639,43640,43641,43642,43643,43644,43645,43646,43647,43648,43649,43650,43651,43652,43653,43654,43655,43656,43657,43658,43659,43660,43661,43662,43663,43664,43665,43666,43667,43668,43669,43670,43671,43672,43673,43674,43675,43676,43677,43678,43679,43680,43681,43682,43683,43684,43685,43686,43687,43688,43689,43690,43691,43692,43693,43694,43695,43696,43697,43698,43699,43700,43701,43702,43703,43704,43705,43706,43707,43708,43709,43710,43711,43712,43713,43714,43715,43716,43717,43718,43719,43720,43721,43722,43723,43724,43725,43726,43727,43728,43729,43730,43731,43732,43733,43734,43735,43736,43737,43738,43739,43740,43741,43742,43743,43744,43745,43746,43747,43748,43749,43750,43751,43752,43753,43754,43755,43756,43757,43758,43759,43760,43761,43762,43763,43764,43765,43766,43767,43768,43769,43770,43771,43772,43773,43774,43775,43776,43777,43778,43779,43780,43781,43782,43783,43784,43785,43786,43787,43788,43789,43790,43791,43792,43793,43794,43795,43796,43797,43798,43799,43800,43801,43802,43803,43804,43805,43806,43807,43808,43809,43810,43811,43812,43813,43814,43815,43816,43817,43818,43819,43820,43821,43822,43823,43824,43825,43826,43827,43828,43829,43830,43831,43832,43833,43834,43835,43836,43837,43838,43839,43840,43841,43842,43843,43844,43845,43846,43847,43848,43849,43850,43851,43852,43853,43854,43855,43856,43857,43858,43859,43860,43861,43862,43863,43864,43865,43866,43867,43868,43869,43870,43871,43872,43873,43874,43875,43876,43877,43878,43879,43880,43881,43882,43883,43884,43885,43886,43887,43888,43889,43890,43891,43892,43893,43894,43895,43896,43897,43898,43899,43900,43901,43902,43903,43904,43905,43906,43907,43908,43909,43910,43911,43912,43913,43914,43915,43916,43917,43918,43919,43920,43921,43922,43923,43924,43925,43926,43927,43928,43929,43930,43931,43932,43933,43934,43935,43936,43937,43938,43939,43940,43941,43942,43943,43944,43945,43946,43947,43948,43949,43950,43951,43952,43953,43954,43955,43956,43957,43958,43959,43960,43961,43962,43963,43964,43965,43966,43967,43968,43969,43970,43971,43972,43973,43974,43975,43976,43977,43978,43979,43980,43981,43982,43983,43984,43985,43986,43987,43988,43989,43990,43991,43992,43993,43994,43995,43996,43997,43998,43999,44000,44001,44002,44003,44004,44005,44006,44007,44008,44009,44010,44011,44012,44013,44014,44015,44016,44017,44018,44019,44020,44021,44022,44023,44024,44025,44026,44027,44028,44029,44030,44031,44032,44033,44034,44035,44036,44037,44038,44039,44040,44041,44042,44043,44044,44045,44046,44047,44048,44049,44050,44051,44052,44053,44054,44055,44056,44057,44058,44059,44060,44061,44062,44063,44064,44065,44066,44067,44068,44069,44070,44071,44072,44073,44074,44075,44076,44077,44078,44079,44080,44081,44082,44083,44084,44085,44086,44087,44088,44089,44090,44091,44092,44093,44094,44095,44096,44097,44098,44099,44100,44101,44102,44103,44104,44105,44106,44107,44108,44109,44110,44111,44112,44113,44114,44115,44116,44117,44118,44119,44120,44121,44122,44123,44124,44125,44126,44127,44128,44129,44130,44131,44132,44133,44134,44135,44136,44137,44138,44139,44140,44141,44142,44143,44144,44145,44146,44147,44148,44149,44150,44151,44152,44153,44154,44155,44156,44157,44158,44159,44160,44161,44162,44163,44164,44165,44166,44167,44168,44169,44170,44171,44172,44173,44174,44175,44176,44177,44178,44179,44180,44181,44182,44183,44184,44185,44186,44187,44188,44189,44190,44191,44192,44193,44194,44195,44196,44197,44198,44199,44200,44201,44202,44203,44204,44205,44206,44207,44208,44209,44210,44211,44212,44213,44214,44215,44216,44217,44218,44219,44220,44221,44222,44223,44224,44225,44226,44227,44228,44229,44230,44231,44232,44233,44234,44235,44236,44237,44238,44239,44240,44241,44242,44243,44244,44245,44246,44247,44248,44249,44250,44251,44252,44253,44254,44255,44256,44257,44258,44259,44260,44261,44262,44263,44264,44265,44266,44267,44268,44269,44270,44271,44272,44273,44274,44275,44276,44277,44278,44279,44280,44281,44282,44283,44284,44285,44286,44287,44288,44289,44290,44291,44292,44293,44294,44295,44296,44297,44298,44299,44300,44301,44302,44303,44304,44305,44306,44307,44308,44309,44310,44311,44312,44313,44314,44315,44316,44317,44318,44319,44320,44321,44322,44323,44324,44325,44326,44327,44328,44329,44330,44331,44332,44333,44334,44335,44336,44337,44338,44339,44340,44341,44342,44343,44344,44345,44346,44347,44348,44349,44350,44351,44352,44353,44354,44355,44356,44357,44358,44359,44360,44361,44362,44363,44364,44365,44366,44367,44368,44369,44370,44371,44372,44373,44374,44375,44376,44377,44378,44379,44380,44381,44382,44383,44384,44385,44386,44387,44388,44389,44390,44391,44392,44393,44394,44395,44396,44397,44398,44399,44400,44401,44402,44403,44404,44405,44406,44407,44408,44409,44410,44411,44412,44413,44414,44415,44416,44417,44418,44419,44420,44421,44422,44423,44424,44425,44426,44427,44428,44429,44430,44431,44432,44433,44434,44435,44436,44437,44438,44439,44440,44441,44442,44443,44444,44445,44446,44447,44448,44449,44450,44451,44452,44453,44454,44455,44456,44457,44458,44459,44460,44461,44462,44463,44464,44465,44466,44467,44468,44469,44470,44471,44472,44473,44474,44475,44476,44477,44478,44479,44480,44481,44482,44483,44484,44485,44486,44487,44488,44489,44490,44491,44492,44493,44494,44495,44496,44497,44498,44499,44500,44501,44502,44503,44504,44505,44506,44507,44508,44509,44510,44511,44512,44513,44514,44515,44516,44517,44518,44519,44520,44521,44522,44523,44524,44525,44526,44527,44528,44529,44530,44531,44532,44533,44534,44535,44536,44537,44538,44539,44540,44541,44542,44543,44544,44545,44546,44547,44548,44549,44550,44551,44552,44553,44554,44555,44556,44557,44558,44559,44560,44561,44562,44563,44564,44565,44566,44567,44568,44569,44570,44571,44572,44573,44574,44575,44576,44577,44578,44579,44580,44581,44582,44583,44584,44585,44586,44587,44588,44589,44590,44591,44592,44593,44594,44595,44596,44597,44598,44599,44600,44601,44602,44603,44604,44605,44606,44607,44608,44609,44610,44611,44612,44613,44614,44615,44616,44617,44618,44619,44620,44621,44622,44623,44624,44625,44626,44627,44628,44629,44630,44631,44632,44633,44634,44635,44636,44637,44638,44639,44640,44641,44642,44643,44644,44645,44646,44647,44648,44649,44650,44651,44652,44653,44654,44655,44656,44657,44658,44659,44660,44661,44662,44663,44664,44665,44666,44667,44668,44669,44670,44671,44672,44673,44674,44675,44676,44677,44678,44679,44680,44681,44682,44683,44684,44685,44686,44687,44688,44689,44690,44691,44692,44693,44694,44695,44696,44697,44698,44699,44700,44701,44702,44703,44704,44705,44706,44707,44708,44709,44710,44711,44712,44713,44714,44715,44716,44717,44718,44719,44720,44721,44722,44723,44724,44725,44726,44727,44728,44729,44730,44731,44732,44733,44734,44735,44736,44737,44738,44739,44740,44741,44742,44743,44744,44745,44746,44747,44748,44749,44750,44751,44752,44753,44754,44755,44756,44757,44758,44759,44760,44761,44762,44763,44764,44765,44766,44767,44768,44769,44770,44771,44772,44773,44774,44775,44776,44777,44778,44779,44780,44781,44782,44783,44784,44785,44786,44787,44788,44789,44790,44791,44792,44793,44794,44795,44796,44797,44798,44799,44800,44801,44802,44803,44804,44805,44806,44807,44808,44809,44810,44811,44812,44813,44814,44815,44816,44817,44818,44819,44820,44821,44822,44823,44824,44825,44826,44827,44828,44829,44830,44831,44832,44833,44834,44835,44836,44837,44838,44839,44840,44841,44842,44843,44844,44845,44846,44847,44848,44849,44850,44851,44852,44853,44854,44855,44856,44857,44858,44859,44860,44861,44862,44863,44864,44865,44866,44867,44868,44869,44870,44871,44872,44873,44874,44875,44876,44877,44878,44879,44880,44881,44882,44883,44884,44885,44886,44887,44888,44889,44890,44891,44892,44893,44894,44895,44896,44897,44898,44899,44900,44901,44902,44903,44904,44905,44906,44907,44908,44909,44910,44911,44912,44913,44914,44915,44916,44917,44918,44919,44920,44921,44922,44923,44924,44925,44926,44927,44928,44929,44930,44931,44932,44933,44934,44935,44936,44937,44938,44939,44940,44941,44942,44943,44944,44945,44946,44947,44948,44949,44950,44951,44952,44953,44954,44955,44956,44957,44958,44959,44960,44961,44962,44963,44964,44965,44966,44967,44968,44969,44970,44971,44972,44973,44974,44975,44976,44977,44978,44979,44980,44981,44982,44983,44984,44985,44986,44987,44988,44989,44990,44991,44992,44993,44994,44995,44996,44997,44998,44999,45000,45001,45002,45003,45004,45005,45006,45007,45008,45009,45010,45011,45012,45013,45014,45015,45016,45017,45018,45019,45020,45021,45022,45023,45024,45025,45026,45027,45028,45029,45030,45031,45032,45033,45034,45035,45036,45037,45038,45039,45040,45041,45042,45043,45044,45045,45046,45047,45048,45049,45050,45051,45052,45053,45054,45055,45056,45057,45058,45059,45060,45061,45062,45063,45064,45065,45066,45067,45068,45069,45070,45071,45072,45073,45074,45075,45076,45077,45078,45079,45080,45081,45082,45083,45084,45085,45086,45087,45088,45089,45090,45091,45092,45093,45094,45095,45096,45097,45098,45099,45100,45101,45102,45103,45104,45105,45106,45107,45108,45109,45110,45111,45112,45113,45114,45115,45116,45117,45118,45119,45120,45121,45122,45123,45124,45125,45126,45127,45128,45129,45130,45131,45132,45133,45134,45135,45136,45137,45138,45139,45140,45141,45142,45143,45144,45145,45146,45147,45148,45149,45150,45151,45152,45153,45154,45155,45156,45157,45158,45159,45160,45161,45162,45163,45164,45165,45166,45167,45168,45169,45170,45171,45172,45173,45174,45175,45176,45177,45178,45179,45180,45181,45182,45183,45184,45185,45186,45187,45188,45189,45190,45191,45192,45193,45194,45195,45196,45197,45198,45199,45200,45201,45202,45203,45204,45205,45206,45207,45208,45209,45210,45211,45212,45213,45214,45215,45216,45217,45218,45219,45220,45221,45222,45223,45224,45225,45226,45227,45228,45229,45230,45231,45232,45233,45234,45235,45236,45237,45238,45239,45240,45241,45242,45243,45244,45245,45246,45247,45248,45249,45250,45251,45252,45253,45254,45255,45256,45257,45258,45259,45260,45261,45262,45263,45264,45265,45266,45267,45268,45269,45270,45271,45272,45273,45274,45275,45276,45277,45278,45279,45280,45281,45282,45283,45284,45285,45286,45287,45288,45289,45290,45291,45292,45293,45294,45295,45296,45297,45298,45299,45300,45301,45302,45303,45304,45305,45306,45307,45308,45309,45310,45311,45312,45313,45314,45315,45316,45317,45318,45319,45320,45321,45322,45323,45324,45325,45326,45327,45328,45329,45330,45331,45332,45333,45334,45335,45336,45337,45338,45339,45340,45341,45342,45343,45344,45345,45346,45347,45348,45349,45350,45351,45352,45353,45354,45355,45356,45357,45358,45359,45360,45361,45362,45363,45364,45365,45366,45367,45368,45369,45370,45371,45372,45373,45374,45375,45376,45377,45378,45379,45380,45381,45382,45383,45384,45385,45386,45387,45388,45389,45390,45391,45392,45393,45394,45395,45396,45397,45398,45399,45400,45401,45402,45403,45404,45405,45406,45407,45408,45409,45410,45411,45412,45413,45414,45415,45416,45417,45418,45419,45420,45421,45422,45423,45424,45425,45426,45427,45428,45429,45430,45431,45432,45433,45434,45435,45436,45437,45438,45439,45440,45441,45442,45443,45444,45445,45446,45447,45448,45449,45450,45451,45452,45453,45454,45455,45456,45457,45458,45459,45460,45461,45462,45463,45464,45465,45466,45467,45468,45469,45470,45471,45472,45473,45474,45475,45476,45477,45478,45479,45480,45481,45482,45483,45484,45485,45486,45487,45488,45489,45490,45491,45492,45493,45494,45495,45496,45497,45498,45499,45500,45501,45502,45503,45504,45505,45506,45507,45508,45509,45510,45511,45512,45513,45514,45515,45516,45517,45518,45519,45520,45521,45522,45523,45524,45525,45526,45527,45528,45529,45530,45531,45532,45533,45534,45535,45536,45537,45538,45539,45540,45541,45542,45543,45544,45545,45546,45547,45548,45549,45550,45551,45552,45553,45554,45555,45556,45557,45558,45559,45560,45561,45562,45563,45564,45565,45566,45567,45568,45569,45570,45571,45572,45573,45574,45575,45576,45577,45578,45579,45580,45581,45582,45583,45584,45585,45586,45587,45588,45589,45590,45591,45592,45593,45594,45595,45596,45597,45598,45599,45600,45601,45602,45603,45604,45605,45606,45607,45608,45609,45610,45611,45612,45613,45614,45615,45616,45617,45618,45619,45620,45621,45622,45623,45624,45625,45626,45627,45628,45629,45630,45631,45632,45633,45634,45635,45636,45637,45638,45639,45640,45641,45642,45643,45644,45645,45646,45647,45648,45649,45650,45651,45652,45653,45654,45655,45656,45657,45658,45659,45660,45661,45662,45663,45664,45665,45666,45667,45668,45669,45670,45671,45672,45673,45674,45675,45676,45677,45678,45679,45680,45681,45682,45683,45684,45685,45686,45687,45688,45689,45690,45691,45692,45693,45694,45695,45696,45697,45698,45699,45700,45701,45702,45703,45704,45705,45706,45707,45708,45709,45710,45711,45712,45713,45714,45715,45716,45717,45718,45719,45720,45721,45722,45723,45724,45725,45726,45727,45728,45729,45730,45731,45732,45733,45734,45735,45736,45737,45738,45739,45740,45741,45742,45743,45744,45745,45746,45747,45748,45749,45750,45751,45752,45753,45754,45755,45756,45757,45758,45759,45760,45761,45762,45763,45764,45765,45766,45767,45768,45769,45770,45771,45772,45773,45774,45775,45776,45777,45778,45779,45780,45781,45782,45783,45784,45785,45786,45787,45788,45789,45790,45791,45792,45793,45794,45795,45796,45797,45798,45799,45800,45801,45802,45803,45804,45805,45806,45807,45808,45809,45810,45811,45812,45813,45814,45815,45816,45817,45818,45819,45820,45821,45822,45823,45824,45825,45826,45827,45828,45829,45830,45831,45832,45833,45834,45835,45836,45837,45838,45839,45840,45841,45842,45843,45844,45845,45846,45847,45848,45849,45850,45851,45852,45853,45854,45855,45856,45857,45858,45859,45860,45861,45862,45863,45864,45865,45866,45867,45868,45869,45870,45871,45872,45873,45874,45875,45876,45877,45878,45879,45880,45881,45882,45883,45884,45885,45886,45887,45888,45889,45890,45891,45892,45893,45894,45895,45896,45897,45898,45899,45900,45901,45902,45903,45904,45905,45906,45907,45908,45909,45910,45911,45912,45913,45914,45915,45916,45917,45918,45919,45920,45921,45922,45923,45924,45925,45926,45927,45928,45929,45930,45931,45932,45933,45934,45935,45936,45937,45938,45939,45940,45941,45942,45943,45944,45945,45946,45947,45948,45949,45950,45951,45952,45953,45954,45955,45956,45957,45958,45959,45960,45961,45962,45963,45964,45965,45966,45967,45968,45969,45970,45971,45972,45973,45974,45975,45976,45977,45978,45979,45980,45981,45982,45983,45984,45985,45986,45987,45988,45989,45990,45991,45992,45993,45994,45995,45996,45997,45998,45999,46000,46001,46002,46003,46004,46005,46006,46007,46008,46009,46010,46011,46012,46013,46014,46015,46016,46017,46018,46019,46020,46021,46022,46023,46024,46025,46026,46027,46028,46029,46030,46031,46032,46033,46034,46035,46036,46037,46038,46039,46040,46041,46042,46043,46044,46045,46046,46047,46048,46049,46050,46051,46052,46053,46054,46055,46056,46057,46058,46059,46060,46061,46062,46063,46064,46065,46066,46067,46068,46069,46070,46071,46072,46073,46074,46075,46076,46077,46078,46079,46080,46081,46082,46083,46084,46085,46086,46087,46088,46089,46090,46091,46092,46093,46094,46095,46096,46097,46098,46099,46100,46101,46102,46103,46104,46105,46106,46107,46108,46109,46110,46111,46112,46113,46114,46115,46116,46117,46118,46119,46120,46121,46122,46123,46124,46125,46126,46127,46128,46129,46130,46131,46132,46133,46134,46135,46136,46137,46138,46139,46140,46141,46142,46143,46144,46145,46146,46147,46148,46149,46150,46151,46152,46153,46154,46155,46156,46157,46158,46159,46160,46161,46162,46163,46164,46165,46166,46167,46168,46169,46170,46171,46172,46173,46174,46175,46176,46177,46178,46179,46180,46181,46182,46183,46184,46185,46186,46187,46188,46189,46190,46191,46192,46193,46194,46195,46196,46197,46198,46199,46200,46201,46202,46203,46204,46205,46206,46207,46208,46209,46210,46211,46212,46213,46214,46215,46216,46217,46218,46219,46220,46221,46222,46223,46224,46225,46226,46227,46228,46229,46230,46231,46232,46233,46234,46235,46236,46237,46238,46239,46240,46241,46242,46243,46244,46245,46246,46247,46248,46249,46250,46251,46252,46253,46254,46255,46256,46257,46258,46259,46260,46261,46262,46263,46264,46265,46266,46267,46268,46269,46270,46271,46272,46273,46274,46275,46276,46277,46278,46279,46280,46281,46282,46283,46284,46285,46286,46287,46288,46289,46290,46291,46292,46293,46294,46295,46296,46297,46298,46299,46300,46301,46302,46303,46304,46305,46306,46307,46308,46309,46310,46311,46312,46313,46314,46315,46316,46317,46318,46319,46320,46321,46322,46323,46324,46325,46326,46327,46328,46329,46330,46331,46332,46333,46334,46335,46336,46337,46338,46339,46340,46341,46342,46343,46344,46345,46346,46347,46348,46349,46350,46351,46352,46353,46354,46355,46356,46357,46358,46359,46360,46361,46362,46363,46364,46365,46366,46367,46368,46369,46370,46371,46372,46373,46374,46375,46376,46377,46378,46379,46380,46381,46382,46383,46384,46385,46386,46387,46388,46389,46390,46391,46392,46393,46394,46395,46396,46397,46398,46399,46400,46401,46402,46403,46404,46405,46406,46407,46408,46409,46410,46411,46412,46413,46414,46415,46416,46417,46418,46419,46420,46421,46422,46423,46424,46425,46426,46427,46428,46429,46430,46431,46432,46433,46434,46435,46436,46437,46438,46439,46440,46441,46442,46443,46444,46445,46446,46447,46448,46449,46450,46451,46452,46453,46454,46455,46456,46457,46458,46459,46460,46461,46462,46463,46464,46465,46466,46467,46468,46469,46470,46471,46472,46473,46474,46475,46476,46477,46478,46479,46480,46481,46482,46483,46484,46485,46486,46487,46488,46489,46490,46491,46492,46493,46494,46495,46496,46497,46498,46499,46500,46501,46502,46503,46504,46505,46506,46507,46508,46509,46510,46511,46512,46513,46514,46515,46516,46517,46518,46519,46520,46521,46522,46523,46524,46525,46526,46527,46528,46529,46530,46531,46532,46533,46534,46535,46536,46537,46538,46539,46540,46541,46542,46543,46544,46545,46546,46547,46548,46549,46550,46551,46552,46553,46554,46555,46556,46557,46558,46559,46560,46561,46562,46563,46564,46565,46566,46567,46568,46569,46570,46571,46572,46573,46574,46575,46576,46577,46578,46579,46580,46581,46582,46583,46584,46585,46586,46587,46588,46589,46590,46591,46592,46593,46594,46595,46596,46597,46598,46599,46600,46601,46602,46603,46604,46605,46606,46607,46608,46609,46610,46611,46612,46613,46614,46615,46616,46617,46618,46619,46620,46621,46622,46623,46624,46625,46626,46627,46628,46629,46630,46631,46632,46633,46634,46635,46636,46637,46638,46639,46640,46641,46642,46643,46644,46645,46646,46647,46648,46649,46650,46651,46652,46653,46654,46655,46656,46657,46658,46659,46660,46661,46662,46663,46664,46665,46666,46667,46668,46669,46670,46671,46672,46673,46674,46675,46676,46677,46678,46679,46680,46681,46682,46683,46684,46685,46686,46687,46688,46689,46690,46691,46692,46693,46694,46695,46696,46697,46698,46699,46700,46701,46702,46703,46704,46705,46706,46707,46708,46709,46710,46711,46712,46713,46714,46715,46716,46717,46718,46719,46720,46721,46722,46723,46724,46725,46726,46727,46728,46729,46730,46731,46732,46733,46734,46735,46736,46737,46738,46739,46740,46741,46742,46743,46744,46745,46746,46747,46748,46749,46750,46751,46752,46753,46754,46755,46756,46757,46758,46759,46760,46761,46762,46763,46764,46765,46766,46767,46768,46769,46770,46771,46772,46773,46774,46775,46776,46777,46778,46779,46780,46781,46782,46783,46784,46785,46786,46787,46788,46789,46790,46791,46792,46793,46794,46795,46796,46797,46798,46799,46800,46801,46802,46803,46804,46805,46806,46807,46808,46809,46810,46811,46812,46813,46814,46815,46816,46817,46818,46819,46820,46821,46822,46823,46824,46825,46826,46827,46828,46829,46830,46831,46832,46833,46834,46835,46836,46837,46838,46839,46840,46841,46842,46843,46844,46845,46846,46847,46848,46849,46850,46851,46852,46853,46854,46855,46856,46857,46858,46859,46860,46861,46862,46863,46864,46865,46866,46867,46868,46869,46870,46871,46872,46873,46874,46875,46876,46877,46878,46879,46880,46881,46882,46883,46884,46885,46886,46887,46888,46889,46890,46891,46892,46893,46894,46895,46896,46897,46898,46899,46900,46901,46902,46903,46904,46905,46906,46907,46908,46909,46910,46911,46912,46913,46914,46915,46916,46917,46918,46919,46920,46921,46922,46923,46924,46925,46926,46927,46928,46929,46930,46931,46932,46933,46934,46935,46936,46937,46938,46939,46940,46941,46942,46943,46944,46945,46946,46947,46948,46949,46950,46951,46952,46953,46954,46955,46956,46957,46958,46959,46960,46961,46962,46963,46964,46965,46966,46967,46968,46969,46970,46971,46972,46973,46974,46975,46976,46977,46978,46979,46980,46981,46982,46983,46984,46985,46986,46987,46988,46989,46990,46991,46992,46993,46994,46995,46996,46997,46998,46999,47000,47001,47002,47003,47004,47005,47006,47007,47008,47009,47010,47011,47012,47013,47014,47015,47016,47017,47018,47019,47020,47021,47022,47023,47024,47025,47026,47027,47028,47029,47030,47031,47032,47033,47034,47035,47036,47037,47038,47039,47040,47041,47042,47043,47044,47045,47046,47047,47048,47049,47050,47051,47052,47053,47054,47055,47056,47057,47058,47059,47060,47061,47062,47063,47064,47065,47066,47067,47068,47069,47070,47071,47072,47073,47074,47075,47076,47077,47078,47079,47080,47081,47082,47083,47084,47085,47086,47087,47088,47089,47090,47091,47092,47093,47094,47095,47096,47097,47098,47099,47100,47101,47102,47103,47104,47105,47106,47107,47108,47109,47110,47111,47112,47113,47114,47115,47116,47117,47118,47119,47120,47121,47122,47123,47124,47125,47126,47127,47128,47129,47130,47131,47132,47133,47134,47135,47136,47137,47138,47139,47140,47141,47142,47143,47144,47145,47146,47147,47148,47149,47150,47151,47152,47153,47154,47155,47156,47157,47158,47159,47160,47161,47162,47163,47164,47165,47166,47167,47168,47169,47170,47171,47172,47173,47174,47175,47176,47177,47178,47179,47180,47181,47182,47183,47184,47185,47186,47187,47188,47189,47190,47191,47192,47193,47194,47195,47196,47197,47198,47199,47200,47201,47202,47203,47204,47205,47206,47207,47208,47209,47210,47211,47212,47213,47214,47215,47216,47217,47218,47219,47220,47221,47222,47223,47224,47225,47226,47227,47228,47229,47230,47231,47232,47233,47234,47235,47236,47237,47238,47239,47240,47241,47242,47243,47244,47245,47246,47247,47248,47249,47250,47251,47252,47253,47254,47255,47256,47257,47258,47259,47260,47261,47262,47263,47264,47265,47266,47267,47268,47269,47270,47271,47272,47273,47274,47275,47276,47277,47278,47279,47280,47281,47282,47283,47284,47285,47286,47287,47288,47289,47290,47291,47292,47293,47294,47295,47296,47297,47298,47299,47300,47301,47302,47303,47304,47305,47306,47307,47308,47309,47310,47311,47312,47313,47314,47315,47316,47317,47318,47319,47320,47321,47322,47323,47324,47325,47326,47327,47328,47329,47330,47331,47332,47333,47334,47335,47336,47337,47338,47339,47340,47341,47342,47343,47344,47345,47346,47347,47348,47349,47350,47351,47352,47353,47354,47355,47356,47357,47358,47359,47360,47361,47362,47363,47364,47365,47366,47367,47368,47369,47370,47371,47372,47373,47374,47375,47376,47377,47378,47379,47380,47381,47382,47383,47384,47385,47386,47387,47388,47389,47390,47391,47392,47393,47394,47395,47396,47397,47398,47399,47400,47401,47402,47403,47404,47405,47406,47407,47408,47409,47410,47411,47412,47413,47414,47415,47416,47417,47418,47419,47420,47421,47422,47423,47424,47425,47426,47427,47428,47429,47430,47431,47432,47433,47434,47435,47436,47437,47438,47439,47440,47441,47442,47443,47444,47445,47446,47447,47448,47449,47450,47451,47452,47453,47454,47455,47456,47457,47458,47459,47460,47461,47462,47463,47464,47465,47466,47467,47468,47469,47470,47471,47472,47473,47474,47475,47476,47477,47478,47479,47480,47481,47482,47483,47484,47485,47486,47487,47488,47489,47490,47491,47492,47493,47494,47495,47496,47497,47498,47499,47500,47501,47502,47503,47504,47505,47506,47507,47508,47509,47510,47511,47512,47513,47514,47515,47516,47517,47518,47519,47520,47521,47522,47523,47524,47525,47526,47527,47528,47529,47530,47531,47532,47533,47534,47535,47536,47537,47538,47539,47540,47541,47542,47543,47544,47545,47546,47547,47548,47549,47550,47551,47552,47553,47554,47555,47556,47557,47558,47559,47560,47561,47562,47563,47564,47565,47566,47567,47568,47569,47570,47571,47572,47573,47574,47575,47576,47577,47578,47579,47580,47581,47582,47583,47584,47585,47586,47587,47588,47589,47590,47591,47592,47593,47594,47595,47596,47597,47598,47599,47600,47601,47602,47603,47604,47605,47606,47607,47608,47609,47610,47611,47612,47613,47614,47615,47616,47617,47618,47619,47620,47621,47622,47623,47624,47625,47626,47627,47628,47629,47630,47631,47632,47633,47634,47635,47636,47637,47638,47639,47640,47641,47642,47643,47644,47645,47646,47647,47648,47649,47650,47651,47652,47653,47654,47655,47656,47657,47658,47659,47660,47661,47662,47663,47664,47665,47666,47667,47668,47669,47670,47671,47672,47673,47674,47675,47676,47677,47678,47679,47680,47681,47682,47683,47684,47685,47686,47687,47688,47689,47690,47691,47692,47693,47694,47695,47696,47697,47698,47699,47700,47701,47702,47703,47704,47705,47706,47707,47708,47709,47710,47711,47712,47713,47714,47715,47716,47717,47718,47719,47720,47721,47722,47723,47724,47725,47726,47727,47728,47729,47730,47731,47732,47733,47734,47735,47736,47737,47738,47739,47740,47741,47742,47743,47744,47745,47746,47747,47748,47749,47750,47751,47752,47753,47754,47755,47756,47757,47758,47759,47760,47761,47762,47763,47764,47765,47766,47767,47768,47769,47770,47771,47772,47773,47774,47775,47776,47777,47778,47779,47780,47781,47782,47783,47784,47785,47786,47787,47788,47789,47790,47791,47792,47793,47794,47795,47796,47797,47798,47799,47800,47801,47802,47803,47804,47805,47806,47807,47808,47809,47810,47811,47812,47813,47814,47815,47816,47817,47818,47819,47820,47821,47822,47823,47824,47825,47826,47827,47828,47829,47830,47831,47832,47833,47834,47835,47836,47837,47838,47839,47840,47841,47842,47843,47844,47845,47846,47847,47848,47849,47850,47851,47852,47853,47854,47855,47856,47857,47858,47859,47860,47861,47862,47863,47864,47865,47866,47867,47868,47869,47870,47871,47872,47873,47874,47875,47876,47877,47878,47879,47880,47881,47882,47883,47884,47885,47886,47887,47888,47889,47890,47891,47892,47893,47894,47895,47896,47897,47898,47899,47900,47901,47902,47903,47904,47905,47906,47907,47908,47909,47910,47911,47912,47913,47914,47915,47916,47917,47918,47919,47920,47921,47922,47923,47924,47925,47926,47927,47928,47929,47930,47931,47932,47933,47934,47935,47936,47937,47938,47939,47940,47941,47942,47943,47944,47945,47946,47947,47948,47949,47950,47951,47952,47953,47954,47955,47956,47957,47958,47959,47960,47961,47962,47963,47964,47965,47966,47967,47968,47969,47970,47971,47972,47973,47974,47975,47976,47977,47978,47979,47980,47981,47982,47983,47984,47985,47986,47987,47988,47989,47990,47991,47992,47993,47994,47995,47996,47997,47998,47999,48000,48001,48002,48003,48004,48005,48006,48007,48008,48009,48010,48011,48012,48013,48014,48015,48016,48017,48018,48019,48020,48021,48022,48023,48024,48025,48026,48027,48028,48029,48030,48031,48032,48033,48034,48035,48036,48037,48038,48039,48040,48041,48042,48043,48044,48045,48046,48047,48048,48049,48050,48051,48052,48053,48054,48055,48056,48057,48058,48059,48060,48061,48062,48063,48064,48065,48066,48067,48068,48069,48070,48071,48072,48073,48074,48075,48076,48077,48078,48079,48080,48081,48082,48083,48084,48085,48086,48087,48088,48089,48090,48091,48092,48093,48094,48095,48096,48097,48098,48099,48100,48101,48102,48103,48104,48105,48106,48107,48108,48109,48110,48111,48112,48113,48114,48115,48116,48117,48118,48119,48120,48121,48122,48123,48124,48125,48126,48127,48128,48129,48130,48131,48132,48133,48134,48135,48136,48137,48138,48139,48140,48141,48142,48143,48144,48145,48146,48147,48148,48149,48150,48151,48152,48153,48154,48155,48156,48157,48158,48159,48160,48161,48162,48163,48164,48165,48166,48167,48168,48169,48170,48171,48172,48173,48174,48175,48176,48177,48178,48179,48180,48181,48182,48183,48184,48185,48186,48187,48188,48189,48190,48191,48192,48193,48194,48195,48196,48197,48198,48199,48200,48201,48202,48203,48204,48205,48206,48207,48208,48209,48210,48211,48212,48213,48214,48215,48216,48217,48218,48219,48220,48221,48222,48223,48224,48225,48226,48227,48228,48229,48230,48231,48232,48233,48234,48235,48236,48237,48238,48239,48240,48241,48242,48243,48244,48245,48246,48247,48248,48249,48250,48251,48252,48253,48254,48255,48256,48257,48258,48259,48260,48261,48262,48263,48264,48265,48266,48267,48268,48269,48270,48271,48272,48273,48274,48275,48276,48277,48278,48279,48280,48281,48282,48283,48284,48285,48286,48287,48288,48289,48290,48291,48292,48293,48294,48295,48296,48297,48298,48299,48300,48301,48302,48303,48304,48305,48306,48307,48308,48309,48310,48311,48312,48313,48314,48315,48316,48317,48318,48319,48320,48321,48322,48323,48324,48325,48326,48327,48328,48329,48330,48331,48332,48333,48334,48335,48336,48337,48338,48339,48340,48341,48342,48343,48344,48345,48346,48347,48348,48349,48350,48351,48352,48353,48354,48355,48356,48357,48358,48359,48360,48361,48362,48363,48364,48365,48366,48367,48368,48369,48370,48371,48372,48373,48374,48375,48376,48377,48378,48379,48380,48381,48382,48383,48384,48385,48386,48387,48388,48389,48390,48391,48392,48393,48394,48395,48396,48397,48398,48399,48400,48401,48402,48403,48404,48405,48406,48407,48408,48409,48410,48411,48412,48413,48414,48415,48416,48417,48418,48419,48420,48421,48422,48423,48424,48425,48426,48427,48428,48429,48430,48431,48432,48433,48434,48435,48436,48437,48438,48439,48440,48441,48442,48443,48444,48445,48446,48447,48448,48449,48450,48451,48452,48453,48454,48455,48456,48457,48458,48459,48460,48461,48462,48463,48464,48465,48466,48467,48468,48469,48470,48471,48472,48473,48474,48475,48476,48477,48478,48479,48480,48481,48482,48483,48484,48485,48486,48487,48488,48489,48490,48491,48492,48493,48494,48495,48496,48497,48498,48499,48500,48501,48502,48503,48504,48505,48506,48507,48508,48509,48510,48511,48512,48513,48514,48515,48516,48517,48518,48519,48520,48521,48522,48523,48524,48525,48526,48527,48528,48529,48530,48531,48532,48533,48534,48535,48536,48537,48538,48539,48540,48541,48542,48543,48544,48545,48546,48547,48548,48549,48550,48551,48552,48553,48554,48555,48556,48557,48558,48559,48560,48561,48562,48563,48564,48565,48566,48567,48568,48569,48570,48571,48572,48573,48574,48575,48576,48577,48578,48579,48580,48581,48582,48583,48584,48585,48586,48587,48588,48589,48590,48591,48592,48593,48594,48595,48596,48597,48598,48599,48600,48601,48602,48603,48604,48605,48606,48607,48608,48609,48610,48611,48612,48613,48614,48615,48616,48617,48618,48619,48620,48621,48622,48623,48624,48625,48626,48627,48628,48629,48630,48631,48632,48633,48634,48635,48636,48637,48638,48639,48640,48641,48642,48643,48644,48645,48646,48647,48648,48649,48650,48651,48652,48653,48654,48655,48656,48657,48658,48659,48660,48661,48662,48663,48664,48665,48666,48667,48668,48669,48670,48671,48672,48673,48674,48675,48676,48677,48678,48679,48680,48681,48682,48683,48684,48685,48686,48687,48688,48689,48690,48691,48692,48693,48694,48695,48696,48697,48698,48699,48700,48701,48702,48703,48704,48705,48706,48707,48708,48709,48710,48711,48712,48713,48714,48715,48716,48717,48718,48719,48720,48721,48722,48723,48724,48725,48726,48727,48728,48729,48730,48731,48732,48733,48734,48735,48736,48737,48738,48739,48740,48741,48742,48743,48744,48745,48746,48747,48748,48749,48750,48751,48752,48753,48754,48755,48756,48757,48758,48759,48760,48761,48762,48763,48764,48765,48766,48767,48768,48769,48770,48771,48772,48773,48774,48775,48776,48777,48778,48779,48780,48781,48782,48783,48784,48785,48786,48787,48788,48789,48790,48791,48792,48793,48794,48795,48796,48797,48798,48799,48800,48801,48802,48803,48804,48805,48806,48807,48808,48809,48810,48811,48812,48813,48814,48815,48816,48817,48818,48819,48820,48821,48822,48823,48824,48825,48826,48827,48828,48829,48830,48831,48832,48833,48834,48835,48836,48837,48838,48839,48840,48841,48842,48843,48844,48845,48846,48847,48848,48849,48850,48851,48852,48853,48854,48855,48856,48857,48858,48859,48860,48861,48862,48863,48864,48865,48866,48867,48868,48869,48870,48871,48872,48873,48874,48875,48876,48877,48878,48879,48880,48881,48882,48883,48884,48885,48886,48887,48888,48889,48890,48891,48892,48893,48894,48895,48896,48897,48898,48899,48900,48901,48902,48903,48904,48905,48906,48907,48908,48909,48910,48911,48912,48913,48914,48915,48916,48917,48918,48919,48920,48921,48922,48923,48924,48925,48926,48927,48928,48929,48930,48931,48932,48933,48934,48935,48936,48937,48938,48939,48940,48941,48942,48943,48944,48945,48946,48947,48948,48949,48950,48951,48952,48953,48954,48955,48956,48957,48958,48959,48960,48961,48962,48963,48964,48965,48966,48967,48968,48969,48970,48971,48972,48973,48974,48975,48976,48977,48978,48979,48980,48981,48982,48983,48984,48985,48986,48987,48988,48989,48990,48991,48992,48993,48994,48995,48996,48997,48998,48999,49000,49001,49002,49003,49004,49005,49006,49007,49008,49009,49010,49011,49012,49013,49014,49015,49016,49017,49018,49019,49020,49021,49022,49023,49024,49025,49026,49027,49028,49029,49030,49031,49032,49033,49034,49035,49036,49037,49038,49039,49040,49041,49042,49043,49044,49045,49046,49047,49048,49049,49050,49051,49052,49053,49054,49055,49056,49057,49058,49059,49060,49061,49062,49063,49064,49065,49066,49067,49068,49069,49070,49071,49072,49073,49074,49075,49076,49077,49078,49079,49080,49081,49082,49083,49084,49085,49086,49087,49088,49089,49090,49091,49092,49093,49094,49095,49096,49097,49098,49099,49100,49101,49102,49103,49104,49105,49106,49107,49108,49109,49110,49111,49112,49113,49114,49115,49116,49117,49118,49119,49120,49121,49122,49123,49124,49125,49126,49127,49128,49129,49130,49131,49132,49133,49134,49135,49136,49137,49138,49139,49140,49141,49142,49143,49144,49145,49146,49147,49148,49149,49150,49151,49152,49153,49154,49155,49156,49157,49158,49159,49160,49161,49162,49163,49164,49165,49166,49167,49168,49169,49170,49171,49172,49173,49174,49175,49176,49177,49178,49179,49180,49181,49182,49183,49184,49185,49186,49187,49188,49189,49190,49191,49192,49193,49194,49195,49196,49197,49198,49199,49200,49201,49202,49203,49204,49205,49206,49207,49208,49209,49210,49211,49212,49213,49214,49215,49216,49217,49218,49219,49220,49221,49222,49223,49224,49225,49226,49227,49228,49229,49230,49231,49232,49233,49234,49235,49236,49237,49238,49239,49240,49241,49242,49243,49244,49245,49246,49247,49248,49249,49250,49251,49252,49253,49254,49255,49256,49257,49258,49259,49260,49261,49262,49263,49264,49265,49266,49267,49268,49269,49270,49271,49272,49273,49274,49275,49276,49277,49278,49279,49280,49281,49282,49283,49284,49285,49286,49287,49288,49289,49290,49291,49292,49293,49294,49295,49296,49297,49298,49299,49300,49301,49302,49303,49304,49305,49306,49307,49308,49309,49310,49311,49312,49313,49314,49315,49316,49317,49318,49319,49320,49321,49322,49323,49324,49325,49326,49327,49328,49329,49330,49331,49332,49333,49334,49335,49336,49337,49338,49339,49340,49341,49342,49343,49344,49345,49346,49347,49348,49349,49350,49351,49352,49353,49354,49355,49356,49357,49358,49359,49360,49361,49362,49363,49364,49365,49366,49367,49368,49369,49370,49371,49372,49373,49374,49375,49376,49377,49378,49379,49380,49381,49382,49383,49384,49385,49386,49387,49388,49389,49390,49391,49392,49393,49394,49395,49396,49397,49398,49399,49400,49401,49402,49403,49404,49405,49406,49407,49408,49409,49410,49411,49412,49413,49414,49415,49416,49417,49418,49419,49420,49421,49422,49423,49424,49425,49426,49427,49428,49429,49430,49431,49432,49433,49434,49435,49436,49437,49438,49439,49440,49441,49442,49443,49444,49445,49446,49447,49448,49449,49450,49451,49452,49453,49454,49455,49456,49457,49458,49459,49460,49461,49462,49463,49464,49465,49466,49467,49468,49469,49470,49471,49472,49473,49474,49475,49476,49477,49478,49479,49480,49481,49482,49483,49484,49485,49486,49487,49488,49489,49490,49491,49492,49493,49494,49495,49496,49497,49498,49499,49500,49501,49502,49503,49504,49505,49506,49507,49508,49509,49510,49511,49512,49513,49514,49515,49516,49517,49518,49519,49520,49521,49522,49523,49524,49525,49526,49527,49528,49529,49530,49531,49532,49533,49534,49535,49536,49537,49538,49539,49540,49541,49542,49543,49544,49545,49546,49547,49548,49549,49550,49551,49552,49553,49554,49555,49556,49557,49558,49559,49560,49561,49562,49563,49564,49565,49566,49567,49568,49569,49570,49571,49572,49573,49574,49575,49576,49577,49578,49579,49580,49581,49582,49583,49584,49585,49586,49587,49588,49589,49590,49591,49592,49593,49594,49595,49596,49597,49598,49599,49600,49601,49602,49603,49604,49605,49606,49607,49608,49609,49610,49611,49612,49613,49614,49615,49616,49617,49618,49619,49620,49621,49622,49623,49624,49625,49626,49627,49628,49629,49630,49631,49632,49633,49634,49635,49636,49637,49638,49639,49640,49641,49642,49643,49644,49645,49646,49647,49648,49649,49650,49651,49652,49653,49654,49655,49656,49657,49658,49659,49660,49661,49662,49663,49664,49665,49666,49667,49668,49669,49670,49671,49672,49673,49674,49675,49676,49677,49678,49679,49680,49681,49682,49683,49684,49685,49686,49687,49688,49689,49690,49691,49692,49693,49694,49695,49696,49697,49698,49699,49700,49701,49702,49703,49704,49705,49706,49707,49708,49709,49710,49711,49712,49713,49714,49715,49716,49717,49718,49719,49720,49721,49722,49723,49724,49725,49726,49727,49728,49729,49730,49731,49732,49733,49734,49735,49736,49737,49738,49739,49740,49741,49742,49743,49744,49745,49746,49747,49748,49749,49750,49751,49752,49753,49754,49755,49756,49757,49758,49759,49760,49761,49762,49763,49764,49765,49766,49767,49768,49769,49770,49771,49772,49773,49774,49775,49776,49777,49778,49779,49780,49781,49782,49783,49784,49785,49786,49787,49788,49789,49790,49791,49792,49793,49794,49795,49796,49797,49798,49799,49800,49801,49802,49803,49804,49805,49806,49807,49808,49809,49810,49811,49812,49813,49814,49815,49816,49817,49818,49819,49820,49821,49822,49823,49824,49825,49826,49827,49828,49829,49830,49831,49832,49833,49834,49835,49836,49837,49838,49839,49840,49841,49842,49843,49844,49845,49846,49847,49848,49849,49850,49851,49852,49853,49854,49855,49856,49857,49858,49859,49860,49861,49862,49863,49864,49865,49866,49867,49868,49869,49870,49871,49872,49873,49874,49875,49876,49877,49878,49879,49880,49881,49882,49883,49884,49885,49886,49887,49888,49889,49890,49891,49892,49893,49894,49895,49896,49897,49898,49899,49900,49901,49902,49903,49904,49905,49906,49907,49908,49909,49910,49911,49912,49913,49914,49915,49916,49917,49918,49919,49920,49921,49922,49923,49924,49925,49926,49927,49928,49929,49930,49931,49932,49933,49934,49935,49936,49937,49938,49939,49940,49941,49942,49943,49944,49945,49946,49947,49948,49949,49950,49951,49952,49953,49954,49955,49956,49957,49958,49959,49960,49961,49962,49963,49964,49965,49966,49967,49968,49969,49970,49971,49972,49973,49974,49975,49976,49977,49978,49979,49980,49981,49982,49983,49984,49985,49986,49987,49988,49989,49990,49991,49992,49993,49994,49995,49996,49997,49998,49999,50000]
-# code_output:
-# runtime_error:
-# last_testcase:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,10046,10047,10048,10049,10050,10051,10052,10053,10054,10055,10056,10057,10058,10059,10060,10061,10062,10063,10064,10065,10066,10067,10068,10069,10070,10071,10072,10073,10074,10075,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,10086,10087,10088,10089,10090,10091,10092,10093,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,10116,10117,10118,10119,10120,10121,10122,10123,10124,10125,10126,10127,10128,10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139,10140,10141,10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153,10154,10155,10156,10157,10158,10159,10160,10161,10162,10163,10164,10165,10166,10167,10168,10169,10170,10171,10172,10173,10174,10175,10176,10177,10178,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,10190,10191,10192,10193,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,10205,10206,10207,10208,10209,10210,10211,10212,10213,10214,10215,10216,10217,10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229,10230,10231,10232,10233,10234,10235,10236,10237,10238,10239,10240,10241,10242,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,10253,10254,10255,10256,10257,10258,10259,10260,10261,10262,10263,10264,10265,10266,10267,10268,10269,10270,10271,10272,10273,10274,10275,10276,10277,10278,10279,10280,10281,10282,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295,10296,10297,10298,10299,10300,10301,10302,10303,10304,10305,10306,10307,10308,10309,10310,10311,10312,10313,10314,10315,10316,10317,10318,10319,10320,10321,10322,10323,10324,10325,10326,10327,10328,10329,10330,10331,10332,10333,10334,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,10348,10349,10350,10351,10352,10353,10354,10355,10356,10357,10358,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,10370,10371,10372,10373,10374,10375,10376,10377,10378,10379,10380,10381,10382,10383,10384,10385,10386,10387,10388,10389,10390,10391,10392,10393,10394,10395,10396,10397,10398,10399,10400,10401,10402,10403,10404,10405,10406,10407,10408,10409,10410,10411,10412,10413,10414,10415,10416,10417,10418,10419,10420,10421,10422,10423,10424,10425,10426,10427,10428,10429,10430,10431,10432,10433,10434,10435,10436,10437,10438,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,10450,10451,10452,10453,10454,10455,10456,10457,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10470,10471,10472,10473,10474,10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10485,10486,10487,10488,10489,10490,10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,10512,10513,10514,10515,10516,10517,10518,10519,10520,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10533,10534,10535,10536,10537,10538,10539,10540,10541,10542,10543,10544,10545,10546,10547,10548,10549,10550,10551,10552,10553,10554,10555,10556,10557,10558,10559,10560,10561,10562,10563,10564,10565,10566,10567,10568,10569,10570,10571,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,10605,10606,10607,10608,10609,10610,10611,10612,10613,10614,10615,10616,10617,10618,10619,10620,10621,10622,10623,10624,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,10637,10638,10639,10640,10641,10642,10643,10644,10645,10646,10647,10648,10649,10650,10651,10652,10653,10654,10655,10656,10657,10658,10659,10660,10661,10662,10663,10664,10665,10666,10667,10668,10669,10670,10671,10672,10673,10674,10675,10676,10677,10678,10679,10680,10681,10682,10683,10684,10685,10686,10687,10688,10689,10690,10691,10692,10693,10694,10695,10696,10697,10698,10699,10700,10701,10702,10703,10704,10705,10706,10707,10708,10709,10710,10711,10712,10713,10714,10715,10716,10717,10718,10719,10720,10721,10722,10723,10724,10725,10726,10727,10728,10729,10730,10731,10732,10733,10734,10735,10736,10737,10738,10739,10740,10741,10742,10743,10744,10745,10746,10747,10748,10749,10750,10751,10752,10753,10754,10755,10756,10757,10758,10759,10760,10761,10762,10763,10764,10765,10766,10767,10768,10769,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,10785,10786,10787,10788,10789,10790,10791,10792,10793,10794,10795,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,10810,10811,10812,10813,10814,10815,10816,10817,10818,10819,10820,10821,10822,10823,10824,10825,10826,10827,10828,10829,10830,10831,10832,10833,10834,10835,10836,10837,10838,10839,10840,10841,10842,10843,10844,10845,10846,10847,10848,10849,10850,10851,10852,10853,10854,10855,10856,10857,10858,10859,10860,10861,10862,10863,10864,10865,10866,10867,10868,10869,10870,10871,10872,10873,10874,10875,10876,10877,10878,10879,10880,10881,10882,10883,10884,10885,10886,10887,10888,10889,10890,10891,10892,10893,10894,10895,10896,10897,10898,10899,10900,10901,10902,10903,10904,10905,10906,10907,10908,10909,10910,10911,10912,10913,10914,10915,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,10929,10930,10931,10932,10933,10934,10935,10936,10937,10938,10939,10940,10941,10942,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10954,10955,10956,10957,10958,10959,10960,10961,10962,10963,10964,10965,10966,10967,10968,10969,10970,10971,10972,10973,10974,10975,10976,10977,10978,10979,10980,10981,10982,10983,10984,10985,10986,10987,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,10998,10999,11000,11001,11002,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,11031,11032,11033,11034,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045,11046,11047,11048,11049,11050,11051,11052,11053,11054,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11080,11081,11082,11083,11084,11085,11086,11087,11088,11089,11090,11091,11092,11093,11094,11095,11096,11097,11098,11099,11100,11101,11102,11103,11104,11105,11106,11107,11108,11109,11110,11111,11112,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11136,11137,11138,11139,11140,11141,11142,11143,11144,11145,11146,11147,11148,11149,11150,11151,11152,11153,11154,11155,11156,11157,11158,11159,11160,11161,11162,11163,11164,11165,11166,11167,11168,11169,11170,11171,11172,11173,11174,11175,11176,11177,11178,11179,11180,11181,11182,11183,11184,11185,11186,11187,11188,11189,11190,11191,11192,11193,11194,11195,11196,11197,11198,11199,11200,11201,11202,11203,11204,11205,11206,11207,11208,11209,11210,11211,11212,11213,11214,11215,11216,11217,11218,11219,11220,11221,11222,11223,11224,11225,11226,11227,11228,11229,11230,11231,11232,11233,11234,11235,11236,11237,11238,11239,11240,11241,11242,11243,11244,11245,11246,11247,11248,11249,11250,11251,11252,11253,11254,11255,11256,11257,11258,11259,11260,11261,11262,11263,11264,11265,11266,11267,11268,11269,11270,11271,11272,11273,11274,11275,11276,11277,11278,11279,11280,11281,11282,11283,11284,11285,11286,11287,11288,11289,11290,11291,11292,11293,11294,11295,11296,11297,11298,11299,11300,11301,11302,11303,11304,11305,11306,11307,11308,11309,11310,11311,11312,11313,11314,11315,11316,11317,11318,11319,11320,11321,11322,11323,11324,11325,11326,11327,11328,11329,11330,11331,11332,11333,11334,11335,11336,11337,11338,11339,11340,11341,11342,11343,11344,11345,11346,11347,11348,11349,11350,11351,11352,11353,11354,11355,11356,11357,11358,11359,11360,11361,11362,11363,11364,11365,11366,11367,11368,11369,11370,11371,11372,11373,11374,11375,11376,11377,11378,11379,11380,11381,11382,11383,11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396,11397,11398,11399,11400,11401,11402,11403,11404,11405,11406,11407,11408,11409,11410,11411,11412,11413,11414,11415,11416,11417,11418,11419,11420,11421,11422,11423,11424,11425,11426,11427,11428,11429,11430,11431,11432,11433,11434,11435,11436,11437,11438,11439,11440,11441,11442,11443,11444,11445,11446,11447,11448,11449,11450,11451,11452,11453,11454,11455,11456,11457,11458,11459,11460,11461,11462,11463,11464,11465,11466,11467,11468,11469,11470,11471,11472,11473,11474,11475,11476,11477,11478,11479,11480,11481,11482,11483,11484,11485,11486,11487,11488,11489,11490,11491,11492,11493,11494,11495,11496,11497,11498,11499,11500,11501,11502,11503,11504,11505,11506,11507,11508,11509,11510,11511,11512,11513,11514,11515,11516,11517,11518,11519,11520,11521,11522,11523,11524,11525,11526,11527,11528,11529,11530,11531,11532,11533,11534,11535,11536,11537,11538,11539,11540,11541,11542,11543,11544,11545,11546,11547,11548,11549,11550,11551,11552,11553,11554,11555,11556,11557,11558,11559,11560,11561,11562,11563,11564,11565,11566,11567,11568,11569,11570,11571,11572,11573,11574,11575,11576,11577,11578,11579,11580,11581,11582,11583,11584,11585,11586,11587,11588,11589,11590,11591,11592,11593,11594,11595,11596,11597,11598,11599,11600,11601,11602,11603,11604,11605,11606,11607,11608,11609,11610,11611,11612,11613,11614,11615,11616,11617,11618,11619,11620,11621,11622,11623,11624,11625,11626,11627,11628,11629,11630,11631,11632,11633,11634,11635,11636,11637,11638,11639,11640,11641,11642,11643,11644,11645,11646,11647,11648,11649,11650,11651,11652,11653,11654,11655,11656,11657,11658,11659,11660,11661,11662,11663,11664,11665,11666,11667,11668,11669,11670,11671,11672,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,11686,11687,11688,11689,11690,11691,11692,11693,11694,11695,11696,11697,11698,11699,11700,11701,11702,11703,11704,11705,11706,11707,11708,11709,11710,11711,11712,11713,11714,11715,11716,11717,11718,11719,11720,11721,11722,11723,11724,11725,11726,11727,11728,11729,11730,11731,11732,11733,11734,11735,11736,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747,11748,11749,11750,11751,11752,11753,11754,11755,11756,11757,11758,11759,11760,11761,11762,11763,11764,11765,11766,11767,11768,11769,11770,11771,11772,11773,11774,11775,11776,11777,11778,11779,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,11790,11791,11792,11793,11794,11795,11796,11797,11798,11799,11800,11801,11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812,11813,11814,11815,11816,11817,11818,11819,11820,11821,11822,11823,11824,11825,11826,11827,11828,11829,11830,11831,11832,11833,11834,11835,11836,11837,11838,11839,11840,11841,11842,11843,11844,11845,11846,11847,11848,11849,11850,11851,11852,11853,11854,11855,11856,11857,11858,11859,11860,11861,11862,11863,11864,11865,11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877,11878,11879,11880,11881,11882,11883,11884,11885,11886,11887,11888,11889,11890,11891,11892,11893,11894,11895,11896,11897,11898,11899,11900,11901,11902,11903,11904,11905,11906,11907,11908,11909,11910,11911,11912,11913,11914,11915,11916,11917,11918,11919,11920,11921,11922,11923,11924,11925,11926,11927,11928,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,11943,11944,11945,11946,11947,11948,11949,11950,11951,11952,11953,11954,11955,11956,11957,11958,11959,11960,11961,11962,11963,11964,11965,11966,11967,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,11994,11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124,12125,12126,12127,12128,12129,12130,12131,12132,12133,12134,12135,12136,12137,12138,12139,12140,12141,12142,12143,12144,12145,12146,12147,12148,12149,12150,12151,12152,12153,12154,12155,12156,12157,12158,12159,12160,12161,12162,12163,12164,12165,12166,12167,12168,12169,12170,12171,12172,12173,12174,12175,12176,12177,12178,12179,12180,12181,12182,12183,12184,12185,12186,12187,12188,12189,12190,12191,12192,12193,12194,12195,12196,12197,12198,12199,12200,12201,12202,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12217,12218,12219,12220,12221,12222,12223,12224,12225,12226,12227,12228,12229,12230,12231,12232,12233,12234,12235,12236,12237,12238,12239,12240,12241,12242,12243,12244,12245,12246,12247,12248,12249,12250,12251,12252,12253,12254,12255,12256,12257,12258,12259,12260,12261,12262,12263,12264,12265,12266,12267,12268,12269,12270,12271,12272,12273,12274,12275,12276,12277,12278,12279,12280,12281,12282,12283,12284,12285,12286,12287,12288,12289,12290,12291,12292,12293,12294,12295,12296,12297,12298,12299,12300,12301,12302,12303,12304,12305,12306,12307,12308,12309,12310,12311,12312,12313,12314,12315,12316,12317,12318,12319,12320,12321,12322,12323,12324,12325,12326,12327,12328,12329,12330,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12352,12353,12354,12355,12356,12357,12358,12359,12360,12361,12362,12363,12364,12365,12366,12367,12368,12369,12370,12371,12372,12373,12374,12375,12376,12377,12378,12379,12380,12381,12382,12383,12384,12385,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397,12398,12399,12400,12401,12402,12403,12404,12405,12406,12407,12408,12409,12410,12411,12412,12413,12414,12415,12416,12417,12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12446,12447,12448,12449,12450,12451,12452,12453,12454,12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494,12495,12496,12497,12498,12499,12500,12501,12502,12503,12504,12505,12506,12507,12508,12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519,12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,12532,12533,12534,12535,12536,12537,12538,12539,12540,12541,12542,12543,12544,12545,12546,12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,12564,12565,12566,12567,12568,12569,12570,12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,12584,12585,12586,12587,12588,12589,12590,12591,12592,12593,12594,12595,12596,12597,12598,12599,12600,12601,12602,12603,12604,12605,12606,12607,12608,12609,12610,12611,12612,12613,12614,12615,12616,12617,12618,12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631,12632,12633,12634,12635,12636,12637,12638,12639,12640,12641,12642,12643,12644,12645,12646,12647,12648,12649,12650,12651,12652,12653,12654,12655,12656,12657,12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,12670,12671,12672,12673,12674,12675,12676,12677,12678,12679,12680,12681,12682,12683,12684,12685,12686,12687,12688,12689,12690,12691,12692,12693,12694,12695,12696,12697,12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708,12709,12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726,12727,12728,12729,12730,12731,12732,12733,12734,12735,12736,12737,12738,12739,12740,12741,12742,12743,12744,12745,12746,12747,12748,12749,12750,12751,12752,12753,12754,12755,12756,12757,12758,12759,12760,12761,12762,12763,12764,12765,12766,12767,12768,12769,12770,12771,12772,12773,12774,12775,12776,12777,12778,12779,12780,12781,12782,12783,12784,12785,12786,12787,12788,12789,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,12803,12804,12805,12806,12807,12808,12809,12810,12811,12812,12813,12814,12815,12816,12817,12818,12819,12820,12821,12822,12823,12824,12825,12826,12827,12828,12829,12830,12831,12832,12833,12834,12835,12836,12837,12838,12839,12840,12841,12842,12843,12844,12845,12846,12847,12848,12849,12850,12851,12852,12853,12854,12855,12856,12857,12858,12859,12860,12861,12862,12863,12864,12865,12866,12867,12868,12869,12870,12871,12872,12873,12874,12875,12876,12877,12878,12879,12880,12881,12882,12883,12884,12885,12886,12887,12888,12889,12890,12891,12892,12893,12894,12895,12896,12897,12898,12899,12900,12901,12902,12903,12904,12905,12906,12907,12908,12909,12910,12911,12912,12913,12914,12915,12916,12917,12918,12919,12920,12921,12922,12923,12924,12925,12926,12927,12928,12929,12930,12931,12932,12933,12934,12935,12936,12937,12938,12939,12940,12941,12942,12943,12944,12945,12946,12947,12948,12949,12950,12951,12952,12953,12954,12955,12956,12957,12958,12959,12960,12961,12962,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,12977,12978,12979,12980,12981,12982,12983,12984,12985,12986,12987,12988,12989,12990,12991,12992,12993,12994,12995,12996,12997,12998,12999,13000,13001,13002,13003,13004,13005,13006,13007,13008,13009,13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,13023,13024,13025,13026,13027,13028,13029,13030,13031,13032,13033,13034,13035,13036,13037,13038,13039,13040,13041,13042,13043,13044,13045,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,13069,13070,13071,13072,13073,13074,13075,13076,13077,13078,13079,13080,13081,13082,13083,13084,13085,13086,13087,13088,13089,13090,13091,13092,13093,13094,13095,13096,13097,13098,13099,13100,13101,13102,13103,13104,13105,13106,13107,13108,13109,13110,13111,13112,13113,13114,13115,13116,13117,13118,13119,13120,13121,13122,13123,13124,13125,13126,13127,13128,13129,13130,13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,13155,13156,13157,13158,13159,13160,13161,13162,13163,13164,13165,13166,13167,13168,13169,13170,13171,13172,13173,13174,13175,13176,13177,13178,13179,13180,13181,13182,13183,13184,13185,13186,13187,13188,13189,13190,13191,13192,13193,13194,13195,13196,13197,13198,13199,13200,13201,13202,13203,13204,13205,13206,13207,13208,13209,13210,13211,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,13222,13223,13224,13225,13226,13227,13228,13229,13230,13231,13232,13233,13234,13235,13236,13237,13238,13239,13240,13241,13242,13243,13244,13245,13246,13247,13248,13249,13250,13251,13252,13253,13254,13255,13256,13257,13258,13259,13260,13261,13262,13263,13264,13265,13266,13267,13268,13269,13270,13271,13272,13273,13274,13275,13276,13277,13278,13279,13280,13281,13282,13283,13284,13285,13286,13287,13288,13289,13290,13291,13292,13293,13294,13295,13296,13297,13298,13299,13300,13301,13302,13303,13304,13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317,13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330,13331,13332,13333,13334,13335,13336,13337,13338,13339,13340,13341,13342,13343,13344,13345,13346,13347,13348,13349,13350,13351,13352,13353,13354,13355,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736,13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,13749,13750,13751,13752,13753,13754,13755,13756,13757,13758,13759,13760,13761,13762,13763,13764,13765,13766,13767,13768,13769,13770,13771,13772,13773,13774,13775,13776,13777,13778,13779,13780,13781,13782,13783,13784,13785,13786,13787,13788,13789,13790,13791,13792,13793,13794,13795,13796,13797,13798,13799,13800,13801,13802,13803,13804,13805,13806,13807,13808,13809,13810,13811,13812,13813,13814,13815,13816,13817,13818,13819,13820,13821,13822,13823,13824,13825,13826,13827,13828,13829,13830,13831,13832,13833,13834,13835,13836,13837,13838,13839,13840,13841,13842,13843,13844,13845,13846,13847,13848,13849,13850,13851,13852,13853,13854,13855,13856,13857,13858,13859,13860,13861,13862,13863,13864,13865,13866,13867,13868,13869,13870,13871,13872,13873,13874,13875,13876,13877,13878,13879,13880,13881,13882,13883,13884,13885,13886,13887,13888,13889,13890,13891,13892,13893,13894,13895,13896,13897,13898,13899,13900,13901,13902,13903,13904,13905,13906,13907,13908,13909,13910,13911,13912,13913,13914,13915,13916,13917,13918,13919,13920,13921,13922,13923,13924,13925,13926,13927,13928,13929,13930,13931,13932,13933,13934,13935,13936,13937,13938,13939,13940,13941,13942,13943,13944,13945,13946,13947,13948,13949,13950,13951,13952,13953,13954,13955,13956,13957,13958,13959,13960,13961,13962,13963,13964,13965,13966,13967,13968,13969,13970,13971,13972,13973,13974,13975,13976,13977,13978,13979,13980,13981,13982,13983,13984,13985,13986,13987,13988,13989,13990,13991,13992,13993,13994,13995,13996,13997,13998,13999,14000,14001,14002,14003,14004,14005,14006,14007,14008,14009,14010,14011,14012,14013,14014,14015,14016,14017,14018,14019,14020,14021,14022,14023,14024,14025,14026,14027,14028,14029,14030,14031,14032,14033,14034,14035,14036,14037,14038,14039,14040,14041,14042,14043,14044,14045,14046,14047,14048,14049,14050,14051,14052,14053,14054,14055,14056,14057,14058,14059,14060,14061,14062,14063,14064,14065,14066,14067,14068,14069,14070,14071,14072,14073,14074,14075,14076,14077,14078,14079,14080,14081,14082,14083,14084,14085,14086,14087,14088,14089,14090,14091,14092,14093,14094,14095,14096,14097,14098,14099,14100,14101,14102,14103,14104,14105,14106,14107,14108,14109,14110,14111,14112,14113,14114,14115,14116,14117,14118,14119,14120,14121,14122,14123,14124,14125,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14136,14137,14138,14139,14140,14141,14142,14143,14144,14145,14146,14147,14148,14149,14150,14151,14152,14153,14154,14155,14156,14157,14158,14159,14160,14161,14162,14163,14164,14165,14166,14167,14168,14169,14170,14171,14172,14173,14174,14175,14176,14177,14178,14179,14180,14181,14182,14183,14184,14185,14186,14187,14188,14189,14190,14191,14192,14193,14194,14195,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205,14206,14207,14208,14209,14210,14211,14212,14213,14214,14215,14216,14217,14218,14219,14220,14221,14222,14223,14224,14225,14226,14227,14228,14229,14230,14231,14232,14233,14234,14235,14236,14237,14238,14239,14240,14241,14242,14243,14244,14245,14246,14247,14248,14249,14250,14251,14252,14253,14254,14255,14256,14257,14258,14259,14260,14261,14262,14263,14264,14265,14266,14267,14268,14269,14270,14271,14272,14273,14274,14275,14276,14277,14278,14279,14280,14281,14282,14283,14284,14285,14286,14287,14288,14289,14290,14291,14292,14293,14294,14295,14296,14297,14298,14299,14300,14301,14302,14303,14304,14305,14306,14307,14308,14309,14310,14311,14312,14313,14314,14315,14316,14317,14318,14319,14320,14321,14322,14323,14324,14325,14326,14327,14328,14329,14330,14331,14332,14333,14334,14335,14336,14337,14338,14339,14340,14341,14342,14343,14344,14345,14346,14347,14348,14349,14350,14351,14352,14353,14354,14355,14356,14357,14358,14359,14360,14361,14362,14363,14364,14365,14366,14367,14368,14369,14370,14371,14372,14373,14374,14375,14376,14377,14378,14379,14380,14381,14382,14383,14384,14385,14386,14387,14388,14389,14390,14391,14392,14393,14394,14395,14396,14397,14398,14399,14400,14401,14402,14403,14404,14405,14406,14407,14408,14409,14410,14411,14412,14413,14414,14415,14416,14417,14418,14419,14420,14421,14422,14423,14424,14425,14426,14427,14428,14429,14430,14431,14432,14433,14434,14435,14436,14437,14438,14439,14440,14441,14442,14443,14444,14445,14446,14447,14448,14449,14450,14451,14452,14453,14454,14455,14456,14457,14458,14459,14460,14461,14462,14463,14464,14465,14466,14467,14468,14469,14470,14471,14472,14473,14474,14475,14476,14477,14478,14479,14480,14481,14482,14483,14484,14485,14486,14487,14488,14489,14490,14491,14492,14493,14494,14495,14496,14497,14498,14499,14500,14501,14502,14503,14504,14505,14506,14507,14508,14509,14510,14511,14512,14513,14514,14515,14516,14517,14518,14519,14520,14521,14522,14523,14524,14525,14526,14527,14528,14529,14530,14531,14532,14533,14534,14535,14536,14537,14538,14539,14540,14541,14542,14543,14544,14545,14546,14547,14548,14549,14550,14551,14552,14553,14554,14555,14556,14557,14558,14559,14560,14561,14562,14563,14564,14565,14566,14567,14568,14569,14570,14571,14572,14573,14574,14575,14576,14577,14578,14579,14580,14581,14582,14583,14584,14585,14586,14587,14588,14589,14590,14591,14592,14593,14594,14595,14596,14597,14598,14599,14600,14601,14602,14603,14604,14605,14606,14607,14608,14609,14610,14611,14612,14613,14614,14615,14616,14617,14618,14619,14620,14621,14622,14623,14624,14625,14626,14627,14628,14629,14630,14631,14632,14633,14634,14635,14636,14637,14638,14639,14640,14641,14642,14643,14644,14645,14646,14647,14648,14649,14650,14651,14652,14653,14654,14655,14656,14657,14658,14659,14660,14661,14662,14663,14664,14665,14666,14667,14668,14669,14670,14671,14672,14673,14674,14675,14676,14677,14678,14679,14680,14681,14682,14683,14684,14685,14686,14687,14688,14689,14690,14691,14692,14693,14694,14695,14696,14697,14698,14699,14700,14701,14702,14703,14704,14705,14706,14707,14708,14709,14710,14711,14712,14713,14714,14715,14716,14717,14718,14719,14720,14721,14722,14723,14724,14725,14726,14727,14728,14729,14730,14731,14732,14733,14734,14735,14736,14737,14738,14739,14740,14741,14742,14743,14744,14745,14746,14747,14748,14749,14750,14751,14752,14753,14754,14755,14756,14757,14758,14759,14760,14761,14762,14763,14764,14765,14766,14767,14768,14769,14770,14771,14772,14773,14774,14775,14776,14777,14778,14779,14780,14781,14782,14783,14784,14785,14786,14787,14788,14789,14790,14791,14792,14793,14794,14795,14796,14797,14798,14799,14800,14801,14802,14803,14804,14805,14806,14807,14808,14809,14810,14811,14812,14813,14814,14815,14816,14817,14818,14819,14820,14821,14822,14823,14824,14825,14826,14827,14828,14829,14830,14831,14832,14833,14834,14835,14836,14837,14838,14839,14840,14841,14842,14843,14844,14845,14846,14847,14848,14849,14850,14851,14852,14853,14854,14855,14856,14857,14858,14859,14860,14861,14862,14863,14864,14865,14866,14867,14868,14869,14870,14871,14872,14873,14874,14875,14876,14877,14878,14879,14880,14881,14882,14883,14884,14885,14886,14887,14888,14889,14890,14891,14892,14893,14894,14895,14896,14897,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14911,14912,14913,14914,14915,14916,14917,14918,14919,14920,14921,14922,14923,14924,14925,14926,14927,14928,14929,14930,14931,14932,14933,14934,14935,14936,14937,14938,14939,14940,14941,14942,14943,14944,14945,14946,14947,14948,14949,14950,14951,14952,14953,14954,14955,14956,14957,14958,14959,14960,14961,14962,14963,14964,14965,14966,14967,14968,14969,14970,14971,14972,14973,14974,14975,14976,14977,14978,14979,14980,14981,14982,14983,14984,14985,14986,14987,14988,14989,14990,14991,14992,14993,14994,14995,14996,14997,14998,14999,15000,15001,15002,15003,15004,15005,15006,15007,15008,15009,15010,15011,15012,15013,15014,15015,15016,15017,15018,15019,15020,15021,15022,15023,15024,15025,15026,15027,15028,15029,15030,15031,15032,15033,15034,15035,15036,15037,15038,15039,15040,15041,15042,15043,15044,15045,15046,15047,15048,15049,15050,15051,15052,15053,15054,15055,15056,15057,15058,15059,15060,15061,15062,15063,15064,15065,15066,15067,15068,15069,15070,15071,15072,15073,15074,15075,15076,15077,15078,15079,15080,15081,15082,15083,15084,15085,15086,15087,15088,15089,15090,15091,15092,15093,15094,15095,15096,15097,15098,15099,15100,15101,15102,15103,15104,15105,15106,15107,15108,15109,15110,15111,15112,15113,15114,15115,15116,15117,15118,15119,15120,15121,15122,15123,15124,15125,15126,15127,15128,15129,15130,15131,15132,15133,15134,15135,15136,15137,15138,15139,15140,15141,15142,15143,15144,15145,15146,15147,15148,15149,15150,15151,15152,15153,15154,15155,15156,15157,15158,15159,15160,15161,15162,15163,15164,15165,15166,15167,15168,15169,15170,15171,15172,15173,15174,15175,15176,15177,15178,15179,15180,15181,15182,15183,15184,15185,15186,15187,15188,15189,15190,15191,15192,15193,15194,15195,15196,15197,15198,15199,15200,15201,15202,15203,15204,15205,15206,15207,15208,15209,15210,15211,15212,15213,15214,15215,15216,15217,15218,15219,15220,15221,15222,15223,15224,15225,15226,15227,15228,15229,15230,15231,15232,15233,15234,15235,15236,15237,15238,15239,15240,15241,15242,15243,15244,15245,15246,15247,15248,15249,15250,15251,15252,15253,15254,15255,15256,15257,15258,15259,15260,15261,15262,15263,15264,15265,15266,15267,15268,15269,15270,15271,15272,15273,15274,15275,15276,15277,15278,15279,15280,15281,15282,15283,15284,15285,15286,15287,15288,15289,15290,15291,15292,15293,15294,15295,15296,15297,15298,15299,15300,15301,15302,15303,15304,15305,15306,15307,15308,15309,15310,15311,15312,15313,15314,15315,15316,15317,15318,15319,15320,15321,15322,15323,15324,15325,15326,15327,15328,15329,15330,15331,15332,15333,15334,15335,15336,15337,15338,15339,15340,15341,15342,15343,15344,15345,15346,15347,15348,15349,15350,15351,15352,15353,15354,15355,15356,15357,15358,15359,15360,15361,15362,15363,15364,15365,15366,15367,15368,15369,15370,15371,15372,15373,15374,15375,15376,15377,15378,15379,15380,15381,15382,15383,15384,15385,15386,15387,15388,15389,15390,15391,15392,15393,15394,15395,15396,15397,15398,15399,15400,15401,15402,15403,15404,15405,15406,15407,15408,15409,15410,15411,15412,15413,15414,15415,15416,15417,15418,15419,15420,15421,15422,15423,15424,15425,15426,15427,15428,15429,15430,15431,15432,15433,15434,15435,15436,15437,15438,15439,15440,15441,15442,15443,15444,15445,15446,15447,15448,15449,15450,15451,15452,15453,15454,15455,15456,15457,15458,15459,15460,15461,15462,15463,15464,15465,15466,15467,15468,15469,15470,15471,15472,15473,15474,15475,15476,15477,15478,15479,15480,15481,15482,15483,15484,15485,15486,15487,15488,15489,15490,15491,15492,15493,15494,15495,15496,15497,15498,15499,15500,15501,15502,15503,15504,15505,15506,15507,15508,15509,15510,15511,15512,15513,15514,15515,15516,15517,15518,15519,15520,15521,15522,15523,15524,15525,15526,15527,15528,15529,15530,15531,15532,15533,15534,15535,15536,15537,15538,15539,15540,15541,15542,15543,15544,15545,15546,15547,15548,15549,15550,15551,15552,15553,15554,15555,15556,15557,15558,15559,15560,15561,15562,15563,15564,15565,15566,15567,15568,15569,15570,15571,15572,15573,15574,15575,15576,15577,15578,15579,15580,15581,15582,15583,15584,15585,15586,15587,15588,15589,15590,15591,15592,15593,15594,15595,15596,15597,15598,15599,15600,15601,15602,15603,15604,15605,15606,15607,15608,15609,15610,15611,15612,15613,15614,15615,15616,15617,15618,15619,15620,15621,15622,15623,15624,15625,15626,15627,15628,15629,15630,15631,15632,15633,15634,15635,15636,15637,15638,15639,15640,15641,15642,15643,15644,15645,15646,15647,15648,15649,15650,15651,15652,15653,15654,15655,15656,15657,15658,15659,15660,15661,15662,15663,15664,15665,15666,15667,15668,15669,15670,15671,15672,15673,15674,15675,15676,15677,15678,15679,15680,15681,15682,15683,15684,15685,15686,15687,15688,15689,15690,15691,15692,15693,15694,15695,15696,15697,15698,15699,15700,15701,15702,15703,15704,15705,15706,15707,15708,15709,15710,15711,15712,15713,15714,15715,15716,15717,15718,15719,15720,15721,15722,15723,15724,15725,15726,15727,15728,15729,15730,15731,15732,15733,15734,15735,15736,15737,15738,15739,15740,15741,15742,15743,15744,15745,15746,15747,15748,15749,15750,15751,15752,15753,15754,15755,15756,15757,15758,15759,15760,15761,15762,15763,15764,15765,15766,15767,15768,15769,15770,15771,15772,15773,15774,15775,15776,15777,15778,15779,15780,15781,15782,15783,15784,15785,15786,15787,15788,15789,15790,15791,15792,15793,15794,15795,15796,15797,15798,15799,15800,15801,15802,15803,15804,15805,15806,15807,15808,15809,15810,15811,15812,15813,15814,15815,15816,15817,15818,15819,15820,15821,15822,15823,15824,15825,15826,15827,15828,15829,15830,15831,15832,15833,15834,15835,15836,15837,15838,15839,15840,15841,15842,15843,15844,15845,15846,15847,15848,15849,15850,15851,15852,15853,15854,15855,15856,15857,15858,15859,15860,15861,15862,15863,15864,15865,15866,15867,15868,15869,15870,15871,15872,15873,15874,15875,15876,15877,15878,15879,15880,15881,15882,15883,15884,15885,15886,15887,15888,15889,15890,15891,15892,15893,15894,15895,15896,15897,15898,15899,15900,15901,15902,15903,15904,15905,15906,15907,15908,15909,15910,15911,15912,15913,15914,15915,15916,15917,15918,15919,15920,15921,15922,15923,15924,15925,15926,15927,15928,15929,15930,15931,15932,15933,15934,15935,15936,15937,15938,15939,15940,15941,15942,15943,15944,15945,15946,15947,15948,15949,15950,15951,15952,15953,15954,15955,15956,15957,15958,15959,15960,15961,15962,15963,15964,15965,15966,15967,15968,15969,15970,15971,15972,15973,15974,15975,15976,15977,15978,15979,15980,15981,15982,15983,15984,15985,15986,15987,15988,15989,15990,15991,15992,15993,15994,15995,15996,15997,15998,15999,16000,16001,16002,16003,16004,16005,16006,16007,16008,16009,16010,16011,16012,16013,16014,16015,16016,16017,16018,16019,16020,16021,16022,16023,16024,16025,16026,16027,16028,16029,16030,16031,16032,16033,16034,16035,16036,16037,16038,16039,16040,16041,16042,16043,16044,16045,16046,16047,16048,16049,16050,16051,16052,16053,16054,16055,16056,16057,16058,16059,16060,16061,16062,16063,16064,16065,16066,16067,16068,16069,16070,16071,16072,16073,16074,16075,16076,16077,16078,16079,16080,16081,16082,16083,16084,16085,16086,16087,16088,16089,16090,16091,16092,16093,16094,16095,16096,16097,16098,16099,16100,16101,16102,16103,16104,16105,16106,16107,16108,16109,16110,16111,16112,16113,16114,16115,16116,16117,16118,16119,16120,16121,16122,16123,16124,16125,16126,16127,16128,16129,16130,16131,16132,16133,16134,16135,16136,16137,16138,16139,16140,16141,16142,16143,16144,16145,16146,16147,16148,16149,16150,16151,16152,16153,16154,16155,16156,16157,16158,16159,16160,16161,16162,16163,16164,16165,16166,16167,16168,16169,16170,16171,16172,16173,16174,16175,16176,16177,16178,16179,16180,16181,16182,16183,16184,16185,16186,16187,16188,16189,16190,16191,16192,16193,16194,16195,16196,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16223,16224,16225,16226,16227,16228,16229,16230,16231,16232,16233,16234,16235,16236,16237,16238,16239,16240,16241,16242,16243,16244,16245,16246,16247,16248,16249,16250,16251,16252,16253,16254,16255,16256,16257,16258,16259,16260,16261,16262,16263,16264,16265,16266,16267,16268,16269,16270,16271,16272,16273,16274,16275,16276,16277,16278,16279,16280,16281,16282,16283,16284,16285,16286,16287,16288,16289,16290,16291,16292,16293,16294,16295,16296,16297,16298,16299,16300,16301,16302,16303,16304,16305,16306,16307,16308,16309,16310,16311,16312,16313,16314,16315,16316,16317,16318,16319,16320,16321,16322,16323,16324,16325,16326,16327,16328,16329,16330,16331,16332,16333,16334,16335,16336,16337,16338,16339,16340,16341,16342,16343,16344,16345,16346,16347,16348,16349,16350,16351,16352,16353,16354,16355,16356,16357,16358,16359,16360,16361,16362,16363,16364,16365,16366,16367,16368,16369,16370,16371,16372,16373,16374,16375,16376,16377,16378,16379,16380,16381,16382,16383,16384,16385,16386,16387,16388,16389,16390,16391,16392,16393,16394,16395,16396,16397,16398,16399,16400,16401,16402,16403,16404,16405,16406,16407,16408,16409,16410,16411,16412,16413,16414,16415,16416,16417,16418,16419,16420,16421,16422,16423,16424,16425,16426,16427,16428,16429,16430,16431,16432,16433,16434,16435,16436,16437,16438,16439,16440,16441,16442,16443,16444,16445,16446,16447,16448,16449,16450,16451,16452,16453,16454,16455,16456,16457,16458,16459,16460,16461,16462,16463,16464,16465,16466,16467,16468,16469,16470,16471,16472,16473,16474,16475,16476,16477,16478,16479,16480,16481,16482,16483,16484,16485,16486,16487,16488,16489,16490,16491,16492,16493,16494,16495,16496,16497,16498,16499,16500,16501,16502,16503,16504,16505,16506,16507,16508,16509,16510,16511,16512,16513,16514,16515,16516,16517,16518,16519,16520,16521,16522,16523,16524,16525,16526,16527,16528,16529,16530,16531,16532,16533,16534,16535,16536,16537,16538,16539,16540,16541,16542,16543,16544,16545,16546,16547,16548,16549,16550,16551,16552,16553,16554,16555,16556,16557,16558,16559,16560,16561,16562,16563,16564,16565,16566,16567,16568,16569,16570,16571,16572,16573,16574,16575,16576,16577,16578,16579,16580,16581,16582,16583,16584,16585,16586,16587,16588,16589,16590,16591,16592,16593,16594,16595,16596,16597,16598,16599,16600,16601,16602,16603,16604,16605,16606,16607,16608,16609,16610,16611,16612,16613,16614,16615,16616,16617,16618,16619,16620,16621,16622,16623,16624,16625,16626,16627,16628,16629,16630,16631,16632,16633,16634,16635,16636,16637,16638,16639,16640,16641,16642,16643,16644,16645,16646,16647,16648,16649,16650,16651,16652,16653,16654,16655,16656,16657,16658,16659,16660,16661,16662,16663,16664,16665,16666,16667,16668,16669,16670,16671,16672,16673,16674,16675,16676,16677,16678,16679,16680,16681,16682,16683,16684,16685,16686,16687,16688,16689,16690,16691,16692,16693,16694,16695,16696,16697,16698,16699,16700,16701,16702,16703,16704,16705,16706,16707,16708,16709,16710,16711,16712,16713,16714,16715,16716,16717,16718,16719,16720,16721,16722,16723,16724,16725,16726,16727,16728,16729,16730,16731,16732,16733,16734,16735,16736,16737,16738,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749,16750,16751,16752,16753,16754,16755,16756,16757,16758,16759,16760,16761,16762,16763,16764,16765,16766,16767,16768,16769,16770,16771,16772,16773,16774,16775,16776,16777,16778,16779,16780,16781,16782,16783,16784,16785,16786,16787,16788,16789,16790,16791,16792,16793,16794,16795,16796,16797,16798,16799,16800,16801,16802,16803,16804,16805,16806,16807,16808,16809,16810,16811,16812,16813,16814,16815,16816,16817,16818,16819,16820,16821,16822,16823,16824,16825,16826,16827,16828,16829,16830,16831,16832,16833,16834,16835,16836,16837,16838,16839,16840,16841,16842,16843,16844,16845,16846,16847,16848,16849,16850,16851,16852,16853,16854,16855,16856,16857,16858,16859,16860,16861,16862,16863,16864,16865,16866,16867,16868,16869,16870,16871,16872,16873,16874,16875,16876,16877,16878,16879,16880,16881,16882,16883,16884,16885,16886,16887,16888,16889,16890,16891,16892,16893,16894,16895,16896,16897,16898,16899,16900,16901,16902,16903,16904,16905,16906,16907,16908,16909,16910,16911,16912,16913,16914,16915,16916,16917,16918,16919,16920,16921,16922,16923,16924,16925,16926,16927,16928,16929,16930,16931,16932,16933,16934,16935,16936,16937,16938,16939,16940,16941,16942,16943,16944,16945,16946,16947,16948,16949,16950,16951,16952,16953,16954,16955,16956,16957,16958,16959,16960,16961,16962,16963,16964,16965,16966,16967,16968,16969,16970,16971,16972,16973,16974,16975,16976,16977,16978,16979,16980,16981,16982,16983,16984,16985,16986,16987,16988,16989,16990,16991,16992,16993,16994,16995,16996,16997,16998,16999,17000,17001,17002,17003,17004,17005,17006,17007,17008,17009,17010,17011,17012,17013,17014,17015,17016,17017,17018,17019,17020,17021,17022,17023,17024,17025,17026,17027,17028,17029,17030,17031,17032,17033,17034,17035,17036,17037,17038,17039,17040,17041,17042,17043,17044,17045,17046,17047,17048,17049,17050,17051,17052,17053,17054,17055,17056,17057,17058,17059,17060,17061,17062,17063,17064,17065,17066,17067,17068,17069,17070,17071,17072,17073,17074,17075,17076,17077,17078,17079,17080,17081,17082,17083,17084,17085,17086,17087,17088,17089,17090,17091,17092,17093,17094,17095,17096,17097,17098,17099,17100,17101,17102,17103,17104,17105,17106,17107,17108,17109,17110,17111,17112,17113,17114,17115,17116,17117,17118,17119,17120,17121,17122,17123,17124,17125,17126,17127,17128,17129,17130,17131,17132,17133,17134,17135,17136,17137,17138,17139,17140,17141,17142,17143,17144,17145,17146,17147,17148,17149,17150,17151,17152,17153,17154,17155,17156,17157,17158,17159,17160,17161,17162,17163,17164,17165,17166,17167,17168,17169,17170,17171,17172,17173,17174,17175,17176,17177,17178,17179,17180,17181,17182,17183,17184,17185,17186,17187,17188,17189,17190,17191,17192,17193,17194,17195,17196,17197,17198,17199,17200,17201,17202,17203,17204,17205,17206,17207,17208,17209,17210,17211,17212,17213,17214,17215,17216,17217,17218,17219,17220,17221,17222,17223,17224,17225,17226,17227,17228,17229,17230,17231,17232,17233,17234,17235,17236,17237,17238,17239,17240,17241,17242,17243,17244,17245,17246,17247,17248,17249,17250,17251,17252,17253,17254,17255,17256,17257,17258,17259,17260,17261,17262,17263,17264,17265,17266,17267,17268,17269,17270,17271,17272,17273,17274,17275,17276,17277,17278,17279,17280,17281,17282,17283,17284,17285,17286,17287,17288,17289,17290,17291,17292,17293,17294,17295,17296,17297,17298,17299,17300,17301,17302,17303,17304,17305,17306,17307,17308,17309,17310,17311,17312,17313,17314,17315,17316,17317,17318,17319,17320,17321,17322,17323,17324,17325,17326,17327,17328,17329,17330,17331,17332,17333,17334,17335,17336,17337,17338,17339,17340,17341,17342,17343,17344,17345,17346,17347,17348,17349,17350,17351,17352,17353,17354,17355,17356,17357,17358,17359,17360,17361,17362,17363,17364,17365,17366,17367,17368,17369,17370,17371,17372,17373,17374,17375,17376,17377,17378,17379,17380,17381,17382,17383,17384,17385,17386,17387,17388,17389,17390,17391,17392,17393,17394,17395,17396,17397,17398,17399,17400,17401,17402,17403,17404,17405,17406,17407,17408,17409,17410,17411,17412,17413,17414,17415,17416,17417,17418,17419,17420,17421,17422,17423,17424,17425,17426,17427,17428,17429,17430,17431,17432,17433,17434,17435,17436,17437,17438,17439,17440,17441,17442,17443,17444,17445,17446,17447,17448,17449,17450,17451,17452,17453,17454,17455,17456,17457,17458,17459,17460,17461,17462,17463,17464,17465,17466,17467,17468,17469,17470,17471,17472,17473,17474,17475,17476,17477,17478,17479,17480,17481,17482,17483,17484,17485,17486,17487,17488,17489,17490,17491,17492,17493,17494,17495,17496,17497,17498,17499,17500,17501,17502,17503,17504,17505,17506,17507,17508,17509,17510,17511,17512,17513,17514,17515,17516,17517,17518,17519,17520,17521,17522,17523,17524,17525,17526,17527,17528,17529,17530,17531,17532,17533,17534,17535,17536,17537,17538,17539,17540,17541,17542,17543,17544,17545,17546,17547,17548,17549,17550,17551,17552,17553,17554,17555,17556,17557,17558,17559,17560,17561,17562,17563,17564,17565,17566,17567,17568,17569,17570,17571,17572,17573,17574,17575,17576,17577,17578,17579,17580,17581,17582,17583,17584,17585,17586,17587,17588,17589,17590,17591,17592,17593,17594,17595,17596,17597,17598,17599,17600,17601,17602,17603,17604,17605,17606,17607,17608,17609,17610,17611,17612,17613,17614,17615,17616,17617,17618,17619,17620,17621,17622,17623,17624,17625,17626,17627,17628,17629,17630,17631,17632,17633,17634,17635,17636,17637,17638,17639,17640,17641,17642,17643,17644,17645,17646,17647,17648,17649,17650,17651,17652,17653,17654,17655,17656,17657,17658,17659,17660,17661,17662,17663,17664,17665,17666,17667,17668,17669,17670,17671,17672,17673,17674,17675,17676,17677,17678,17679,17680,17681,17682,17683,17684,17685,17686,17687,17688,17689,17690,17691,17692,17693,17694,17695,17696,17697,17698,17699,17700,17701,17702,17703,17704,17705,17706,17707,17708,17709,17710,17711,17712,17713,17714,17715,17716,17717,17718,17719,17720,17721,17722,17723,17724,17725,17726,17727,17728,17729,17730,17731,17732,17733,17734,17735,17736,17737,17738,17739,17740,17741,17742,17743,17744,17745,17746,17747,17748,17749,17750,17751,17752,17753,17754,17755,17756,17757,17758,17759,17760,17761,17762,17763,17764,17765,17766,17767,17768,17769,17770,17771,17772,17773,17774,17775,17776,17777,17778,17779,17780,17781,17782,17783,17784,17785,17786,17787,17788,17789,17790,17791,17792,17793,17794,17795,17796,17797,17798,17799,17800,17801,17802,17803,17804,17805,17806,17807,17808,17809,17810,17811,17812,17813,17814,17815,17816,17817,17818,17819,17820,17821,17822,17823,17824,17825,17826,17827,17828,17829,17830,17831,17832,17833,17834,17835,17836,17837,17838,17839,17840,17841,17842,17843,17844,17845,17846,17847,17848,17849,17850,17851,17852,17853,17854,17855,17856,17857,17858,17859,17860,17861,17862,17863,17864,17865,17866,17867,17868,17869,17870,17871,17872,17873,17874,17875,17876,17877,17878,17879,17880,17881,17882,17883,17884,17885,17886,17887,17888,17889,17890,17891,17892,17893,17894,17895,17896,17897,17898,17899,17900,17901,17902,17903,17904,17905,17906,17907,17908,17909,17910,17911,17912,17913,17914,17915,17916,17917,17918,17919,17920,17921,17922,17923,17924,17925,17926,17927,17928,17929,17930,17931,17932,17933,17934,17935,17936,17937,17938,17939,17940,17941,17942,17943,17944,17945,17946,17947,17948,17949,17950,17951,17952,17953,17954,17955,17956,17957,17958,17959,17960,17961,17962,17963,17964,17965,17966,17967,17968,17969,17970,17971,17972,17973,17974,17975,17976,17977,17978,17979,17980,17981,17982,17983,17984,17985,17986,17987,17988,17989,17990,17991,17992,17993,17994,17995,17996,17997,17998,17999,18000,18001,18002,18003,18004,18005,18006,18007,18008,18009,18010,18011,18012,18013,18014,18015,18016,18017,18018,18019,18020,18021,18022,18023,18024,18025,18026,18027,18028,18029,18030,18031,18032,18033,18034,18035,18036,18037,18038,18039,18040,18041,18042,18043,18044,18045,18046,18047,18048,18049,18050,18051,18052,18053,18054,18055,18056,18057,18058,18059,18060,18061,18062,18063,18064,18065,18066,18067,18068,18069,18070,18071,18072,18073,18074,18075,18076,18077,18078,18079,18080,18081,18082,18083,18084,18085,18086,18087,18088,18089,18090,18091,18092,18093,18094,18095,18096,18097,18098,18099,18100,18101,18102,18103,18104,18105,18106,18107,18108,18109,18110,18111,18112,18113,18114,18115,18116,18117,18118,18119,18120,18121,18122,18123,18124,18125,18126,18127,18128,18129,18130,18131,18132,18133,18134,18135,18136,18137,18138,18139,18140,18141,18142,18143,18144,18145,18146,18147,18148,18149,18150,18151,18152,18153,18154,18155,18156,18157,18158,18159,18160,18161,18162,18163,18164,18165,18166,18167,18168,18169,18170,18171,18172,18173,18174,18175,18176,18177,18178,18179,18180,18181,18182,18183,18184,18185,18186,18187,18188,18189,18190,18191,18192,18193,18194,18195,18196,18197,18198,18199,18200,18201,18202,18203,18204,18205,18206,18207,18208,18209,18210,18211,18212,18213,18214,18215,18216,18217,18218,18219,18220,18221,18222,18223,18224,18225,18226,18227,18228,18229,18230,18231,18232,18233,18234,18235,18236,18237,18238,18239,18240,18241,18242,18243,18244,18245,18246,18247,18248,18249,18250,18251,18252,18253,18254,18255,18256,18257,18258,18259,18260,18261,18262,18263,18264,18265,18266,18267,18268,18269,18270,18271,18272,18273,18274,18275,18276,18277,18278,18279,18280,18281,18282,18283,18284,18285,18286,18287,18288,18289,18290,18291,18292,18293,18294,18295,18296,18297,18298,18299,18300,18301,18302,18303,18304,18305,18306,18307,18308,18309,18310,18311,18312,18313,18314,18315,18316,18317,18318,18319,18320,18321,18322,18323,18324,18325,18326,18327,18328,18329,18330,18331,18332,18333,18334,18335,18336,18337,18338,18339,18340,18341,18342,18343,18344,18345,18346,18347,18348,18349,18350,18351,18352,18353,18354,18355,18356,18357,18358,18359,18360,18361,18362,18363,18364,18365,18366,18367,18368,18369,18370,18371,18372,18373,18374,18375,18376,18377,18378,18379,18380,18381,18382,18383,18384,18385,18386,18387,18388,18389,18390,18391,18392,18393,18394,18395,18396,18397,18398,18399,18400,18401,18402,18403,18404,18405,18406,18407,18408,18409,18410,18411,18412,18413,18414,18415,18416,18417,18418,18419,18420,18421,18422,18423,18424,18425,18426,18427,18428,18429,18430,18431,18432,18433,18434,18435,18436,18437,18438,18439,18440,18441,18442,18443,18444,18445,18446,18447,18448,18449,18450,18451,18452,18453,18454,18455,18456,18457,18458,18459,18460,18461,18462,18463,18464,18465,18466,18467,18468,18469,18470,18471,18472,18473,18474,18475,18476,18477,18478,18479,18480,18481,18482,18483,18484,18485,18486,18487,18488,18489,18490,18491,18492,18493,18494,18495,18496,18497,18498,18499,18500,18501,18502,18503,18504,18505,18506,18507,18508,18509,18510,18511,18512,18513,18514,18515,18516,18517,18518,18519,18520,18521,18522,18523,18524,18525,18526,18527,18528,18529,18530,18531,18532,18533,18534,18535,18536,18537,18538,18539,18540,18541,18542,18543,18544,18545,18546,18547,18548,18549,18550,18551,18552,18553,18554,18555,18556,18557,18558,18559,18560,18561,18562,18563,18564,18565,18566,18567,18568,18569,18570,18571,18572,18573,18574,18575,18576,18577,18578,18579,18580,18581,18582,18583,18584,18585,18586,18587,18588,18589,18590,18591,18592,18593,18594,18595,18596,18597,18598,18599,18600,18601,18602,18603,18604,18605,18606,18607,18608,18609,18610,18611,18612,18613,18614,18615,18616,18617,18618,18619,18620,18621,18622,18623,18624,18625,18626,18627,18628,18629,18630,18631,18632,18633,18634,18635,18636,18637,18638,18639,18640,18641,18642,18643,18644,18645,18646,18647,18648,18649,18650,18651,18652,18653,18654,18655,18656,18657,18658,18659,18660,18661,18662,18663,18664,18665,18666,18667,18668,18669,18670,18671,18672,18673,18674,18675,18676,18677,18678,18679,18680,18681,18682,18683,18684,18685,18686,18687,18688,18689,18690,18691,18692,18693,18694,18695,18696,18697,18698,18699,18700,18701,18702,18703,18704,18705,18706,18707,18708,18709,18710,18711,18712,18713,18714,18715,18716,18717,18718,18719,18720,18721,18722,18723,18724,18725,18726,18727,18728,18729,18730,18731,18732,18733,18734,18735,18736,18737,18738,18739,18740,18741,18742,18743,18744,18745,18746,18747,18748,18749,18750,18751,18752,18753,18754,18755,18756,18757,18758,18759,18760,18761,18762,18763,18764,18765,18766,18767,18768,18769,18770,18771,18772,18773,18774,18775,18776,18777,18778,18779,18780,18781,18782,18783,18784,18785,18786,18787,18788,18789,18790,18791,18792,18793,18794,18795,18796,18797,18798,18799,18800,18801,18802,18803,18804,18805,18806,18807,18808,18809,18810,18811,18812,18813,18814,18815,18816,18817,18818,18819,18820,18821,18822,18823,18824,18825,18826,18827,18828,18829,18830,18831,18832,18833,18834,18835,18836,18837,18838,18839,18840,18841,18842,18843,18844,18845,18846,18847,18848,18849,18850,18851,18852,18853,18854,18855,18856,18857,18858,18859,18860,18861,18862,18863,18864,18865,18866,18867,18868,18869,18870,18871,18872,18873,18874,18875,18876,18877,18878,18879,18880,18881,18882,18883,18884,18885,18886,18887,18888,18889,18890,18891,18892,18893,18894,18895,18896,18897,18898,18899,18900,18901,18902,18903,18904,18905,18906,18907,18908,18909,18910,18911,18912,18913,18914,18915,18916,18917,18918,18919,18920,18921,18922,18923,18924,18925,18926,18927,18928,18929,18930,18931,18932,18933,18934,18935,18936,18937,18938,18939,18940,18941,18942,18943,18944,18945,18946,18947,18948,18949,18950,18951,18952,18953,18954,18955,18956,18957,18958,18959,18960,18961,18962,18963,18964,18965,18966,18967,18968,18969,18970,18971,18972,18973,18974,18975,18976,18977,18978,18979,18980,18981,18982,18983,18984,18985,18986,18987,18988,18989,18990,18991,18992,18993,18994,18995,18996,18997,18998,18999,19000,19001,19002,19003,19004,19005,19006,19007,19008,19009,19010,19011,19012,19013,19014,19015,19016,19017,19018,19019,19020,19021,19022,19023,19024,19025,19026,19027,19028,19029,19030,19031,19032,19033,19034,19035,19036,19037,19038,19039,19040,19041,19042,19043,19044,19045,19046,19047,19048,19049,19050,19051,19052,19053,19054,19055,19056,19057,19058,19059,19060,19061,19062,19063,19064,19065,19066,19067,19068,19069,19070,19071,19072,19073,19074,19075,19076,19077,19078,19079,19080,19081,19082,19083,19084,19085,19086,19087,19088,19089,19090,19091,19092,19093,19094,19095,19096,19097,19098,19099,19100,19101,19102,19103,19104,19105,19106,19107,19108,19109,19110,19111,19112,19113,19114,19115,19116,19117,19118,19119,19120,19121,19122,19123,19124,19125,19126,19127,19128,19129,19130,19131,19132,19133,19134,19135,19136,19137,19138,19139,19140,19141,19142,19143,19144,19145,19146,19147,19148,19149,19150,19151,19152,19153,19154,19155,19156,19157,19158,19159,19160,19161,19162,19163,19164,19165,19166,19167,19168,19169,19170,19171,19172,19173,19174,19175,19176,19177,19178,19179,19180,19181,19182,19183,19184,19185,19186,19187,19188,19189,19190,19191,19192,19193,19194,19195,19196,19197,19198,19199,19200,19201,19202,19203,19204,19205,19206,19207,19208,19209,19210,19211,19212,19213,19214,19215,19216,19217,19218,19219,19220,19221,19222,19223,19224,19225,19226,19227,19228,19229,19230,19231,19232,19233,19234,19235,19236,19237,19238,19239,19240,19241,19242,19243,19244,19245,19246,19247,19248,19249,19250,19251,19252,19253,19254,19255,19256,19257,19258,19259,19260,19261,19262,19263,19264,19265,19266,19267,19268,19269,19270,19271,19272,19273,19274,19275,19276,19277,19278,19279,19280,19281,19282,19283,19284,19285,19286,19287,19288,19289,19290,19291,19292,19293,19294,19295,19296,19297,19298,19299,19300,19301,19302,19303,19304,19305,19306,19307,19308,19309,19310,19311,19312,19313,19314,19315,19316,19317,19318,19319,19320,19321,19322,19323,19324,19325,19326,19327,19328,19329,19330,19331,19332,19333,19334,19335,19336,19337,19338,19339,19340,19341,19342,19343,19344,19345,19346,19347,19348,19349,19350,19351,19352,19353,19354,19355,19356,19357,19358,19359,19360,19361,19362,19363,19364,19365,19366,19367,19368,19369,19370,19371,19372,19373,19374,19375,19376,19377,19378,19379,19380,19381,19382,19383,19384,19385,19386,19387,19388,19389,19390,19391,19392,19393,19394,19395,19396,19397,19398,19399,19400,19401,19402,19403,19404,19405,19406,19407,19408,19409,19410,19411,19412,19413,19414,19415,19416,19417,19418,19419,19420,19421,19422,19423,19424,19425,19426,19427,19428,19429,19430,19431,19432,19433,19434,19435,19436,19437,19438,19439,19440,19441,19442,19443,19444,19445,19446,19447,19448,19449,19450,19451,19452,19453,19454,19455,19456,19457,19458,19459,19460,19461,19462,19463,19464,19465,19466,19467,19468,19469,19470,19471,19472,19473,19474,19475,19476,19477,19478,19479,19480,19481,19482,19483,19484,19485,19486,19487,19488,19489,19490,19491,19492,19493,19494,19495,19496,19497,19498,19499,19500,19501,19502,19503,19504,19505,19506,19507,19508,19509,19510,19511,19512,19513,19514,19515,19516,19517,19518,19519,19520,19521,19522,19523,19524,19525,19526,19527,19528,19529,19530,19531,19532,19533,19534,19535,19536,19537,19538,19539,19540,19541,19542,19543,19544,19545,19546,19547,19548,19549,19550,19551,19552,19553,19554,19555,19556,19557,19558,19559,19560,19561,19562,19563,19564,19565,19566,19567,19568,19569,19570,19571,19572,19573,19574,19575,19576,19577,19578,19579,19580,19581,19582,19583,19584,19585,19586,19587,19588,19589,19590,19591,19592,19593,19594,19595,19596,19597,19598,19599,19600,19601,19602,19603,19604,19605,19606,19607,19608,19609,19610,19611,19612,19613,19614,19615,19616,19617,19618,19619,19620,19621,19622,19623,19624,19625,19626,19627,19628,19629,19630,19631,19632,19633,19634,19635,19636,19637,19638,19639,19640,19641,19642,19643,19644,19645,19646,19647,19648,19649,19650,19651,19652,19653,19654,19655,19656,19657,19658,19659,19660,19661,19662,19663,19664,19665,19666,19667,19668,19669,19670,19671,19672,19673,19674,19675,19676,19677,19678,19679,19680,19681,19682,19683,19684,19685,19686,19687,19688,19689,19690,19691,19692,19693,19694,19695,19696,19697,19698,19699,19700,19701,19702,19703,19704,19705,19706,19707,19708,19709,19710,19711,19712,19713,19714,19715,19716,19717,19718,19719,19720,19721,19722,19723,19724,19725,19726,19727,19728,19729,19730,19731,19732,19733,19734,19735,19736,19737,19738,19739,19740,19741,19742,19743,19744,19745,19746,19747,19748,19749,19750,19751,19752,19753,19754,19755,19756,19757,19758,19759,19760,19761,19762,19763,19764,19765,19766,19767,19768,19769,19770,19771,19772,19773,19774,19775,19776,19777,19778,19779,19780,19781,19782,19783,19784,19785,19786,19787,19788,19789,19790,19791,19792,19793,19794,19795,19796,19797,19798,19799,19800,19801,19802,19803,19804,19805,19806,19807,19808,19809,19810,19811,19812,19813,19814,19815,19816,19817,19818,19819,19820,19821,19822,19823,19824,19825,19826,19827,19828,19829,19830,19831,19832,19833,19834,19835,19836,19837,19838,19839,19840,19841,19842,19843,19844,19845,19846,19847,19848,19849,19850,19851,19852,19853,19854,19855,19856,19857,19858,19859,19860,19861,19862,19863,19864,19865,19866,19867,19868,19869,19870,19871,19872,19873,19874,19875,19876,19877,19878,19879,19880,19881,19882,19883,19884,19885,19886,19887,19888,19889,19890,19891,19892,19893,19894,19895,19896,19897,19898,19899,19900,19901,19902,19903,19904,19905,19906,19907,19908,19909,19910,19911,19912,19913,19914,19915,19916,19917,19918,19919,19920,19921,19922,19923,19924,19925,19926,19927,19928,19929,19930,19931,19932,19933,19934,19935,19936,19937,19938,19939,19940,19941,19942,19943,19944,19945,19946,19947,19948,19949,19950,19951,19952,19953,19954,19955,19956,19957,19958,19959,19960,19961,19962,19963,19964,19965,19966,19967,19968,19969,19970,19971,19972,19973,19974,19975,19976,19977,19978,19979,19980,19981,19982,19983,19984,19985,19986,19987,19988,19989,19990,19991,19992,19993,19994,19995,19996,19997,19998,19999,20000,20001,20002,20003,20004,20005,20006,20007,20008,20009,20010,20011,20012,20013,20014,20015,20016,20017,20018,20019,20020,20021,20022,20023,20024,20025,20026,20027,20028,20029,20030,20031,20032,20033,20034,20035,20036,20037,20038,20039,20040,20041,20042,20043,20044,20045,20046,20047,20048,20049,20050,20051,20052,20053,20054,20055,20056,20057,20058,20059,20060,20061,20062,20063,20064,20065,20066,20067,20068,20069,20070,20071,20072,20073,20074,20075,20076,20077,20078,20079,20080,20081,20082,20083,20084,20085,20086,20087,20088,20089,20090,20091,20092,20093,20094,20095,20096,20097,20098,20099,20100,20101,20102,20103,20104,20105,20106,20107,20108,20109,20110,20111,20112,20113,20114,20115,20116,20117,20118,20119,20120,20121,20122,20123,20124,20125,20126,20127,20128,20129,20130,20131,20132,20133,20134,20135,20136,20137,20138,20139,20140,20141,20142,20143,20144,20145,20146,20147,20148,20149,20150,20151,20152,20153,20154,20155,20156,20157,20158,20159,20160,20161,20162,20163,20164,20165,20166,20167,20168,20169,20170,20171,20172,20173,20174,20175,20176,20177,20178,20179,20180,20181,20182,20183,20184,20185,20186,20187,20188,20189,20190,20191,20192,20193,20194,20195,20196,20197,20198,20199,20200,20201,20202,20203,20204,20205,20206,20207,20208,20209,20210,20211,20212,20213,20214,20215,20216,20217,20218,20219,20220,20221,20222,20223,20224,20225,20226,20227,20228,20229,20230,20231,20232,20233,20234,20235,20236,20237,20238,20239,20240,20241,20242,20243,20244,20245,20246,20247,20248,20249,20250,20251,20252,20253,20254,20255,20256,20257,20258,20259,20260,20261,20262,20263,20264,20265,20266,20267,20268,20269,20270,20271,20272,20273,20274,20275,20276,20277,20278,20279,20280,20281,20282,20283,20284,20285,20286,20287,20288,20289,20290,20291,20292,20293,20294,20295,20296,20297,20298,20299,20300,20301,20302,20303,20304,20305,20306,20307,20308,20309,20310,20311,20312,20313,20314,20315,20316,20317,20318,20319,20320,20321,20322,20323,20324,20325,20326,20327,20328,20329,20330,20331,20332,20333,20334,20335,20336,20337,20338,20339,20340,20341,20342,20343,20344,20345,20346,20347,20348,20349,20350,20351,20352,20353,20354,20355,20356,20357,20358,20359,20360,20361,20362,20363,20364,20365,20366,20367,20368,20369,20370,20371,20372,20373,20374,20375,20376,20377,20378,20379,20380,20381,20382,20383,20384,20385,20386,20387,20388,20389,20390,20391,20392,20393,20394,20395,20396,20397,20398,20399,20400,20401,20402,20403,20404,20405,20406,20407,20408,20409,20410,20411,20412,20413,20414,20415,20416,20417,20418,20419,20420,20421,20422,20423,20424,20425,20426,20427,20428,20429,20430,20431,20432,20433,20434,20435,20436,20437,20438,20439,20440,20441,20442,20443,20444,20445,20446,20447,20448,20449,20450,20451,20452,20453,20454,20455,20456,20457,20458,20459,20460,20461,20462,20463,20464,20465,20466,20467,20468,20469,20470,20471,20472,20473,20474,20475,20476,20477,20478,20479,20480,20481,20482,20483,20484,20485,20486,20487,20488,20489,20490,20491,20492,20493,20494,20495,20496,20497,20498,20499,20500,20501,20502,20503,20504,20505,20506,20507,20508,20509,20510,20511,20512,20513,20514,20515,20516,20517,20518,20519,20520,20521,20522,20523,20524,20525,20526,20527,20528,20529,20530,20531,20532,20533,20534,20535,20536,20537,20538,20539,20540,20541,20542,20543,20544,20545,20546,20547,20548,20549,20550,20551,20552,20553,20554,20555,20556,20557,20558,20559,20560,20561,20562,20563,20564,20565,20566,20567,20568,20569,20570,20571,20572,20573,20574,20575,20576,20577,20578,20579,20580,20581,20582,20583,20584,20585,20586,20587,20588,20589,20590,20591,20592,20593,20594,20595,20596,20597,20598,20599,20600,20601,20602,20603,20604,20605,20606,20607,20608,20609,20610,20611,20612,20613,20614,20615,20616,20617,20618,20619,20620,20621,20622,20623,20624,20625,20626,20627,20628,20629,20630,20631,20632,20633,20634,20635,20636,20637,20638,20639,20640,20641,20642,20643,20644,20645,20646,20647,20648,20649,20650,20651,20652,20653,20654,20655,20656,20657,20658,20659,20660,20661,20662,20663,20664,20665,20666,20667,20668,20669,20670,20671,20672,20673,20674,20675,20676,20677,20678,20679,20680,20681,20682,20683,20684,20685,20686,20687,20688,20689,20690,20691,20692,20693,20694,20695,20696,20697,20698,20699,20700,20701,20702,20703,20704,20705,20706,20707,20708,20709,20710,20711,20712,20713,20714,20715,20716,20717,20718,20719,20720,20721,20722,20723,20724,20725,20726,20727,20728,20729,20730,20731,20732,20733,20734,20735,20736,20737,20738,20739,20740,20741,20742,20743,20744,20745,20746,20747,20748,20749,20750,20751,20752,20753,20754,20755,20756,20757,20758,20759,20760,20761,20762,20763,20764,20765,20766,20767,20768,20769,20770,20771,20772,20773,20774,20775,20776,20777,20778,20779,20780,20781,20782,20783,20784,20785,20786,20787,20788,20789,20790,20791,20792,20793,20794,20795,20796,20797,20798,20799,20800,20801,20802,20803,20804,20805,20806,20807,20808,20809,20810,20811,20812,20813,20814,20815,20816,20817,20818,20819,20820,20821,20822,20823,20824,20825,20826,20827,20828,20829,20830,20831,20832,20833,20834,20835,20836,20837,20838,20839,20840,20841,20842,20843,20844,20845,20846,20847,20848,20849,20850,20851,20852,20853,20854,20855,20856,20857,20858,20859,20860,20861,20862,20863,20864,20865,20866,20867,20868,20869,20870,20871,20872,20873,20874,20875,20876,20877,20878,20879,20880,20881,20882,20883,20884,20885,20886,20887,20888,20889,20890,20891,20892,20893,20894,20895,20896,20897,20898,20899,20900,20901,20902,20903,20904,20905,20906,20907,20908,20909,20910,20911,20912,20913,20914,20915,20916,20917,20918,20919,20920,20921,20922,20923,20924,20925,20926,20927,20928,20929,20930,20931,20932,20933,20934,20935,20936,20937,20938,20939,20940,20941,20942,20943,20944,20945,20946,20947,20948,20949,20950,20951,20952,20953,20954,20955,20956,20957,20958,20959,20960,20961,20962,20963,20964,20965,20966,20967,20968,20969,20970,20971,20972,20973,20974,20975,20976,20977,20978,20979,20980,20981,20982,20983,20984,20985,20986,20987,20988,20989,20990,20991,20992,20993,20994,20995,20996,20997,20998,20999,21000,21001,21002,21003,21004,21005,21006,21007,21008,21009,21010,21011,21012,21013,21014,21015,21016,21017,21018,21019,21020,21021,21022,21023,21024,21025,21026,21027,21028,21029,21030,21031,21032,21033,21034,21035,21036,21037,21038,21039,21040,21041,21042,21043,21044,21045,21046,21047,21048,21049,21050,21051,21052,21053,21054,21055,21056,21057,21058,21059,21060,21061,21062,21063,21064,21065,21066,21067,21068,21069,21070,21071,21072,21073,21074,21075,21076,21077,21078,21079,21080,21081,21082,21083,21084,21085,21086,21087,21088,21089,21090,21091,21092,21093,21094,21095,21096,21097,21098,21099,21100,21101,21102,21103,21104,21105,21106,21107,21108,21109,21110,21111,21112,21113,21114,21115,21116,21117,21118,21119,21120,21121,21122,21123,21124,21125,21126,21127,21128,21129,21130,21131,21132,21133,21134,21135,21136,21137,21138,21139,21140,21141,21142,21143,21144,21145,21146,21147,21148,21149,21150,21151,21152,21153,21154,21155,21156,21157,21158,21159,21160,21161,21162,21163,21164,21165,21166,21167,21168,21169,21170,21171,21172,21173,21174,21175,21176,21177,21178,21179,21180,21181,21182,21183,21184,21185,21186,21187,21188,21189,21190,21191,21192,21193,21194,21195,21196,21197,21198,21199,21200,21201,21202,21203,21204,21205,21206,21207,21208,21209,21210,21211,21212,21213,21214,21215,21216,21217,21218,21219,21220,21221,21222,21223,21224,21225,21226,21227,21228,21229,21230,21231,21232,21233,21234,21235,21236,21237,21238,21239,21240,21241,21242,21243,21244,21245,21246,21247,21248,21249,21250,21251,21252,21253,21254,21255,21256,21257,21258,21259,21260,21261,21262,21263,21264,21265,21266,21267,21268,21269,21270,21271,21272,21273,21274,21275,21276,21277,21278,21279,21280,21281,21282,21283,21284,21285,21286,21287,21288,21289,21290,21291,21292,21293,21294,21295,21296,21297,21298,21299,21300,21301,21302,21303,21304,21305,21306,21307,21308,21309,21310,21311,21312,21313,21314,21315,21316,21317,21318,21319,21320,21321,21322,21323,21324,21325,21326,21327,21328,21329,21330,21331,21332,21333,21334,21335,21336,21337,21338,21339,21340,21341,21342,21343,21344,21345,21346,21347,21348,21349,21350,21351,21352,21353,21354,21355,21356,21357,21358,21359,21360,21361,21362,21363,21364,21365,21366,21367,21368,21369,21370,21371,21372,21373,21374,21375,21376,21377,21378,21379,21380,21381,21382,21383,21384,21385,21386,21387,21388,21389,21390,21391,21392,21393,21394,21395,21396,21397,21398,21399,21400,21401,21402,21403,21404,21405,21406,21407,21408,21409,21410,21411,21412,21413,21414,21415,21416,21417,21418,21419,21420,21421,21422,21423,21424,21425,21426,21427,21428,21429,21430,21431,21432,21433,21434,21435,21436,21437,21438,21439,21440,21441,21442,21443,21444,21445,21446,21447,21448,21449,21450,21451,21452,21453,21454,21455,21456,21457,21458,21459,21460,21461,21462,21463,21464,21465,21466,21467,21468,21469,21470,21471,21472,21473,21474,21475,21476,21477,21478,21479,21480,21481,21482,21483,21484,21485,21486,21487,21488,21489,21490,21491,21492,21493,21494,21495,21496,21497,21498,21499,21500,21501,21502,21503,21504,21505,21506,21507,21508,21509,21510,21511,21512,21513,21514,21515,21516,21517,21518,21519,21520,21521,21522,21523,21524,21525,21526,21527,21528,21529,21530,21531,21532,21533,21534,21535,21536,21537,21538,21539,21540,21541,21542,21543,21544,21545,21546,21547,21548,21549,21550,21551,21552,21553,21554,21555,21556,21557,21558,21559,21560,21561,21562,21563,21564,21565,21566,21567,21568,21569,21570,21571,21572,21573,21574,21575,21576,21577,21578,21579,21580,21581,21582,21583,21584,21585,21586,21587,21588,21589,21590,21591,21592,21593,21594,21595,21596,21597,21598,21599,21600,21601,21602,21603,21604,21605,21606,21607,21608,21609,21610,21611,21612,21613,21614,21615,21616,21617,21618,21619,21620,21621,21622,21623,21624,21625,21626,21627,21628,21629,21630,21631,21632,21633,21634,21635,21636,21637,21638,21639,21640,21641,21642,21643,21644,21645,21646,21647,21648,21649,21650,21651,21652,21653,21654,21655,21656,21657,21658,21659,21660,21661,21662,21663,21664,21665,21666,21667,21668,21669,21670,21671,21672,21673,21674,21675,21676,21677,21678,21679,21680,21681,21682,21683,21684,21685,21686,21687,21688,21689,21690,21691,21692,21693,21694,21695,21696,21697,21698,21699,21700,21701,21702,21703,21704,21705,21706,21707,21708,21709,21710,21711,21712,21713,21714,21715,21716,21717,21718,21719,21720,21721,21722,21723,21724,21725,21726,21727,21728,21729,21730,21731,21732,21733,21734,21735,21736,21737,21738,21739,21740,21741,21742,21743,21744,21745,21746,21747,21748,21749,21750,21751,21752,21753,21754,21755,21756,21757,21758,21759,21760,21761,21762,21763,21764,21765,21766,21767,21768,21769,21770,21771,21772,21773,21774,21775,21776,21777,21778,21779,21780,21781,21782,21783,21784,21785,21786,21787,21788,21789,21790,21791,21792,21793,21794,21795,21796,21797,21798,21799,21800,21801,21802,21803,21804,21805,21806,21807,21808,21809,21810,21811,21812,21813,21814,21815,21816,21817,21818,21819,21820,21821,21822,21823,21824,21825,21826,21827,21828,21829,21830,21831,21832,21833,21834,21835,21836,21837,21838,21839,21840,21841,21842,21843,21844,21845,21846,21847,21848,21849,21850,21851,21852,21853,21854,21855,21856,21857,21858,21859,21860,21861,21862,21863,21864,21865,21866,21867,21868,21869,21870,21871,21872,21873,21874,21875,21876,21877,21878,21879,21880,21881,21882,21883,21884,21885,21886,21887,21888,21889,21890,21891,21892,21893,21894,21895,21896,21897,21898,21899,21900,21901,21902,21903,21904,21905,21906,21907,21908,21909,21910,21911,21912,21913,21914,21915,21916,21917,21918,21919,21920,21921,21922,21923,21924,21925,21926,21927,21928,21929,21930,21931,21932,21933,21934,21935,21936,21937,21938,21939,21940,21941,21942,21943,21944,21945,21946,21947,21948,21949,21950,21951,21952,21953,21954,21955,21956,21957,21958,21959,21960,21961,21962,21963,21964,21965,21966,21967,21968,21969,21970,21971,21972,21973,21974,21975,21976,21977,21978,21979,21980,21981,21982,21983,21984,21985,21986,21987,21988,21989,21990,21991,21992,21993,21994,21995,21996,21997,21998,21999,22000,22001,22002,22003,22004,22005,22006,22007,22008,22009,22010,22011,22012,22013,22014,22015,22016,22017,22018,22019,22020,22021,22022,22023,22024,22025,22026,22027,22028,22029,22030,22031,22032,22033,22034,22035,22036,22037,22038,22039,22040,22041,22042,22043,22044,22045,22046,22047,22048,22049,22050,22051,22052,22053,22054,22055,22056,22057,22058,22059,22060,22061,22062,22063,22064,22065,22066,22067,22068,22069,22070,22071,22072,22073,22074,22075,22076,22077,22078,22079,22080,22081,22082,22083,22084,22085,22086,22087,22088,22089,22090,22091,22092,22093,22094,22095,22096,22097,22098,22099,22100,22101,22102,22103,22104,22105,22106,22107,22108,22109,22110,22111,22112,22113,22114,22115,22116,22117,22118,22119,22120,22121,22122,22123,22124,22125,22126,22127,22128,22129,22130,22131,22132,22133,22134,22135,22136,22137,22138,22139,22140,22141,22142,22143,22144,22145,22146,22147,22148,22149,22150,22151,22152,22153,22154,22155,22156,22157,22158,22159,22160,22161,22162,22163,22164,22165,22166,22167,22168,22169,22170,22171,22172,22173,22174,22175,22176,22177,22178,22179,22180,22181,22182,22183,22184,22185,22186,22187,22188,22189,22190,22191,22192,22193,22194,22195,22196,22197,22198,22199,22200,22201,22202,22203,22204,22205,22206,22207,22208,22209,22210,22211,22212,22213,22214,22215,22216,22217,22218,22219,22220,22221,22222,22223,22224,22225,22226,22227,22228,22229,22230,22231,22232,22233,22234,22235,22236,22237,22238,22239,22240,22241,22242,22243,22244,22245,22246,22247,22248,22249,22250,22251,22252,22253,22254,22255,22256,22257,22258,22259,22260,22261,22262,22263,22264,22265,22266,22267,22268,22269,22270,22271,22272,22273,22274,22275,22276,22277,22278,22279,22280,22281,22282,22283,22284,22285,22286,22287,22288,22289,22290,22291,22292,22293,22294,22295,22296,22297,22298,22299,22300,22301,22302,22303,22304,22305,22306,22307,22308,22309,22310,22311,22312,22313,22314,22315,22316,22317,22318,22319,22320,22321,22322,22323,22324,22325,22326,22327,22328,22329,22330,22331,22332,22333,22334,22335,22336,22337,22338,22339,22340,22341,22342,22343,22344,22345,22346,22347,22348,22349,22350,22351,22352,22353,22354,22355,22356,22357,22358,22359,22360,22361,22362,22363,22364,22365,22366,22367,22368,22369,22370,22371,22372,22373,22374,22375,22376,22377,22378,22379,22380,22381,22382,22383,22384,22385,22386,22387,22388,22389,22390,22391,22392,22393,22394,22395,22396,22397,22398,22399,22400,22401,22402,22403,22404,22405,22406,22407,22408,22409,22410,22411,22412,22413,22414,22415,22416,22417,22418,22419,22420,22421,22422,22423,22424,22425,22426,22427,22428,22429,22430,22431,22432,22433,22434,22435,22436,22437,22438,22439,22440,22441,22442,22443,22444,22445,22446,22447,22448,22449,22450,22451,22452,22453,22454,22455,22456,22457,22458,22459,22460,22461,22462,22463,22464,22465,22466,22467,22468,22469,22470,22471,22472,22473,22474,22475,22476,22477,22478,22479,22480,22481,22482,22483,22484,22485,22486,22487,22488,22489,22490,22491,22492,22493,22494,22495,22496,22497,22498,22499,22500,22501,22502,22503,22504,22505,22506,22507,22508,22509,22510,22511,22512,22513,22514,22515,22516,22517,22518,22519,22520,22521,22522,22523,22524,22525,22526,22527,22528,22529,22530,22531,22532,22533,22534,22535,22536,22537,22538,22539,22540,22541,22542,22543,22544,22545,22546,22547,22548,22549,22550,22551,22552,22553,22554,22555,22556,22557,22558,22559,22560,22561,22562,22563,22564,22565,22566,22567,22568,22569,22570,22571,22572,22573,22574,22575,22576,22577,22578,22579,22580,22581,22582,22583,22584,22585,22586,22587,22588,22589,22590,22591,22592,22593,22594,22595,22596,22597,22598,22599,22600,22601,22602,22603,22604,22605,22606,22607,22608,22609,22610,22611,22612,22613,22614,22615,22616,22617,22618,22619,22620,22621,22622,22623,22624,22625,22626,22627,22628,22629,22630,22631,22632,22633,22634,22635,22636,22637,22638,22639,22640,22641,22642,22643,22644,22645,22646,22647,22648,22649,22650,22651,22652,22653,22654,22655,22656,22657,22658,22659,22660,22661,22662,22663,22664,22665,22666,22667,22668,22669,22670,22671,22672,22673,22674,22675,22676,22677,22678,22679,22680,22681,22682,22683,22684,22685,22686,22687,22688,22689,22690,22691,22692,22693,22694,22695,22696,22697,22698,22699,22700,22701,22702,22703,22704,22705,22706,22707,22708,22709,22710,22711,22712,22713,22714,22715,22716,22717,22718,22719,22720,22721,22722,22723,22724,22725,22726,22727,22728,22729,22730,22731,22732,22733,22734,22735,22736,22737,22738,22739,22740,22741,22742,22743,22744,22745,22746,22747,22748,22749,22750,22751,22752,22753,22754,22755,22756,22757,22758,22759,22760,22761,22762,22763,22764,22765,22766,22767,22768,22769,22770,22771,22772,22773,22774,22775,22776,22777,22778,22779,22780,22781,22782,22783,22784,22785,22786,22787,22788,22789,22790,22791,22792,22793,22794,22795,22796,22797,22798,22799,22800,22801,22802,22803,22804,22805,22806,22807,22808,22809,22810,22811,22812,22813,22814,22815,22816,22817,22818,22819,22820,22821,22822,22823,22824,22825,22826,22827,22828,22829,22830,22831,22832,22833,22834,22835,22836,22837,22838,22839,22840,22841,22842,22843,22844,22845,22846,22847,22848,22849,22850,22851,22852,22853,22854,22855,22856,22857,22858,22859,22860,22861,22862,22863,22864,22865,22866,22867,22868,22869,22870,22871,22872,22873,22874,22875,22876,22877,22878,22879,22880,22881,22882,22883,22884,22885,22886,22887,22888,22889,22890,22891,22892,22893,22894,22895,22896,22897,22898,22899,22900,22901,22902,22903,22904,22905,22906,22907,22908,22909,22910,22911,22912,22913,22914,22915,22916,22917,22918,22919,22920,22921,22922,22923,22924,22925,22926,22927,22928,22929,22930,22931,22932,22933,22934,22935,22936,22937,22938,22939,22940,22941,22942,22943,22944,22945,22946,22947,22948,22949,22950,22951,22952,22953,22954,22955,22956,22957,22958,22959,22960,22961,22962,22963,22964,22965,22966,22967,22968,22969,22970,22971,22972,22973,22974,22975,22976,22977,22978,22979,22980,22981,22982,22983,22984,22985,22986,22987,22988,22989,22990,22991,22992,22993,22994,22995,22996,22997,22998,22999,23000,23001,23002,23003,23004,23005,23006,23007,23008,23009,23010,23011,23012,23013,23014,23015,23016,23017,23018,23019,23020,23021,23022,23023,23024,23025,23026,23027,23028,23029,23030,23031,23032,23033,23034,23035,23036,23037,23038,23039,23040,23041,23042,23043,23044,23045,23046,23047,23048,23049,23050,23051,23052,23053,23054,23055,23056,23057,23058,23059,23060,23061,23062,23063,23064,23065,23066,23067,23068,23069,23070,23071,23072,23073,23074,23075,23076,23077,23078,23079,23080,23081,23082,23083,23084,23085,23086,23087,23088,23089,23090,23091,23092,23093,23094,23095,23096,23097,23098,23099,23100,23101,23102,23103,23104,23105,23106,23107,23108,23109,23110,23111,23112,23113,23114,23115,23116,23117,23118,23119,23120,23121,23122,23123,23124,23125,23126,23127,23128,23129,23130,23131,23132,23133,23134,23135,23136,23137,23138,23139,23140,23141,23142,23143,23144,23145,23146,23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23161,23162,23163,23164,23165,23166,23167,23168,23169,23170,23171,23172,23173,23174,23175,23176,23177,23178,23179,23180,23181,23182,23183,23184,23185,23186,23187,23188,23189,23190,23191,23192,23193,23194,23195,23196,23197,23198,23199,23200,23201,23202,23203,23204,23205,23206,23207,23208,23209,23210,23211,23212,23213,23214,23215,23216,23217,23218,23219,23220,23221,23222,23223,23224,23225,23226,23227,23228,23229,23230,23231,23232,23233,23234,23235,23236,23237,23238,23239,23240,23241,23242,23243,23244,23245,23246,23247,23248,23249,23250,23251,23252,23253,23254,23255,23256,23257,23258,23259,23260,23261,23262,23263,23264,23265,23266,23267,23268,23269,23270,23271,23272,23273,23274,23275,23276,23277,23278,23279,23280,23281,23282,23283,23284,23285,23286,23287,23288,23289,23290,23291,23292,23293,23294,23295,23296,23297,23298,23299,23300,23301,23302,23303,23304,23305,23306,23307,23308,23309,23310,23311,23312,23313,23314,23315,23316,23317,23318,23319,23320,23321,23322,23323,23324,23325,23326,23327,23328,23329,23330,23331,23332,23333,23334,23335,23336,23337,23338,23339,23340,23341,23342,23343,23344,23345,23346,23347,23348,23349,23350,23351,23352,23353,23354,23355,23356,23357,23358,23359,23360,23361,23362,23363,23364,23365,23366,23367,23368,23369,23370,23371,23372,23373,23374,23375,23376,23377,23378,23379,23380,23381,23382,23383,23384,23385,23386,23387,23388,23389,23390,23391,23392,23393,23394,23395,23396,23397,23398,23399,23400,23401,23402,23403,23404,23405,23406,23407,23408,23409,23410,23411,23412,23413,23414,23415,23416,23417,23418,23419,23420,23421,23422,23423,23424,23425,23426,23427,23428,23429,23430,23431,23432,23433,23434,23435,23436,23437,23438,23439,23440,23441,23442,23443,23444,23445,23446,23447,23448,23449,23450,23451,23452,23453,23454,23455,23456,23457,23458,23459,23460,23461,23462,23463,23464,23465,23466,23467,23468,23469,23470,23471,23472,23473,23474,23475,23476,23477,23478,23479,23480,23481,23482,23483,23484,23485,23486,23487,23488,23489,23490,23491,23492,23493,23494,23495,23496,23497,23498,23499,23500,23501,23502,23503,23504,23505,23506,23507,23508,23509,23510,23511,23512,23513,23514,23515,23516,23517,23518,23519,23520,23521,23522,23523,23524,23525,23526,23527,23528,23529,23530,23531,23532,23533,23534,23535,23536,23537,23538,23539,23540,23541,23542,23543,23544,23545,23546,23547,23548,23549,23550,23551,23552,23553,23554,23555,23556,23557,23558,23559,23560,23561,23562,23563,23564,23565,23566,23567,23568,23569,23570,23571,23572,23573,23574,23575,23576,23577,23578,23579,23580,23581,23582,23583,23584,23585,23586,23587,23588,23589,23590,23591,23592,23593,23594,23595,23596,23597,23598,23599,23600,23601,23602,23603,23604,23605,23606,23607,23608,23609,23610,23611,23612,23613,23614,23615,23616,23617,23618,23619,23620,23621,23622,23623,23624,23625,23626,23627,23628,23629,23630,23631,23632,23633,23634,23635,23636,23637,23638,23639,23640,23641,23642,23643,23644,23645,23646,23647,23648,23649,23650,23651,23652,23653,23654,23655,23656,23657,23658,23659,23660,23661,23662,23663,23664,23665,23666,23667,23668,23669,23670,23671,23672,23673,23674,23675,23676,23677,23678,23679,23680,23681,23682,23683,23684,23685,23686,23687,23688,23689,23690,23691,23692,23693,23694,23695,23696,23697,23698,23699,23700,23701,23702,23703,23704,23705,23706,23707,23708,23709,23710,23711,23712,23713,23714,23715,23716,23717,23718,23719,23720,23721,23722,23723,23724,23725,23726,23727,23728,23729,23730,23731,23732,23733,23734,23735,23736,23737,23738,23739,23740,23741,23742,23743,23744,23745,23746,23747,23748,23749,23750,23751,23752,23753,23754,23755,23756,23757,23758,23759,23760,23761,23762,23763,23764,23765,23766,23767,23768,23769,23770,23771,23772,23773,23774,23775,23776,23777,23778,23779,23780,23781,23782,23783,23784,23785,23786,23787,23788,23789,23790,23791,23792,23793,23794,23795,23796,23797,23798,23799,23800,23801,23802,23803,23804,23805,23806,23807,23808,23809,23810,23811,23812,23813,23814,23815,23816,23817,23818,23819,23820,23821,23822,23823,23824,23825,23826,23827,23828,23829,23830,23831,23832,23833,23834,23835,23836,23837,23838,23839,23840,23841,23842,23843,23844,23845,23846,23847,23848,23849,23850,23851,23852,23853,23854,23855,23856,23857,23858,23859,23860,23861,23862,23863,23864,23865,23866,23867,23868,23869,23870,23871,23872,23873,23874,23875,23876,23877,23878,23879,23880,23881,23882,23883,23884,23885,23886,23887,23888,23889,23890,23891,23892,23893,23894,23895,23896,23897,23898,23899,23900,23901,23902,23903,23904,23905,23906,23907,23908,23909,23910,23911,23912,23913,23914,23915,23916,23917,23918,23919,23920,23921,23922,23923,23924,23925,23926,23927,23928,23929,23930,23931,23932,23933,23934,23935,23936,23937,23938,23939,23940,23941,23942,23943,23944,23945,23946,23947,23948,23949,23950,23951,23952,23953,23954,23955,23956,23957,23958,23959,23960,23961,23962,23963,23964,23965,23966,23967,23968,23969,23970,23971,23972,23973,23974,23975,23976,23977,23978,23979,23980,23981,23982,23983,23984,23985,23986,23987,23988,23989,23990,23991,23992,23993,23994,23995,23996,23997,23998,23999,24000,24001,24002,24003,24004,24005,24006,24007,24008,24009,24010,24011,24012,24013,24014,24015,24016,24017,24018,24019,24020,24021,24022,24023,24024,24025,24026,24027,24028,24029,24030,24031,24032,24033,24034,24035,24036,24037,24038,24039,24040,24041,24042,24043,24044,24045,24046,24047,24048,24049,24050,24051,24052,24053,24054,24055,24056,24057,24058,24059,24060,24061,24062,24063,24064,24065,24066,24067,24068,24069,24070,24071,24072,24073,24074,24075,24076,24077,24078,24079,24080,24081,24082,24083,24084,24085,24086,24087,24088,24089,24090,24091,24092,24093,24094,24095,24096,24097,24098,24099,24100,24101,24102,24103,24104,24105,24106,24107,24108,24109,24110,24111,24112,24113,24114,24115,24116,24117,24118,24119,24120,24121,24122,24123,24124,24125,24126,24127,24128,24129,24130,24131,24132,24133,24134,24135,24136,24137,24138,24139,24140,24141,24142,24143,24144,24145,24146,24147,24148,24149,24150,24151,24152,24153,24154,24155,24156,24157,24158,24159,24160,24161,24162,24163,24164,24165,24166,24167,24168,24169,24170,24171,24172,24173,24174,24175,24176,24177,24178,24179,24180,24181,24182,24183,24184,24185,24186,24187,24188,24189,24190,24191,24192,24193,24194,24195,24196,24197,24198,24199,24200,24201,24202,24203,24204,24205,24206,24207,24208,24209,24210,24211,24212,24213,24214,24215,24216,24217,24218,24219,24220,24221,24222,24223,24224,24225,24226,24227,24228,24229,24230,24231,24232,24233,24234,24235,24236,24237,24238,24239,24240,24241,24242,24243,24244,24245,24246,24247,24248,24249,24250,24251,24252,24253,24254,24255,24256,24257,24258,24259,24260,24261,24262,24263,24264,24265,24266,24267,24268,24269,24270,24271,24272,24273,24274,24275,24276,24277,24278,24279,24280,24281,24282,24283,24284,24285,24286,24287,24288,24289,24290,24291,24292,24293,24294,24295,24296,24297,24298,24299,24300,24301,24302,24303,24304,24305,24306,24307,24308,24309,24310,24311,24312,24313,24314,24315,24316,24317,24318,24319,24320,24321,24322,24323,24324,24325,24326,24327,24328,24329,24330,24331,24332,24333,24334,24335,24336,24337,24338,24339,24340,24341,24342,24343,24344,24345,24346,24347,24348,24349,24350,24351,24352,24353,24354,24355,24356,24357,24358,24359,24360,24361,24362,24363,24364,24365,24366,24367,24368,24369,24370,24371,24372,24373,24374,24375,24376,24377,24378,24379,24380,24381,24382,24383,24384,24385,24386,24387,24388,24389,24390,24391,24392,24393,24394,24395,24396,24397,24398,24399,24400,24401,24402,24403,24404,24405,24406,24407,24408,24409,24410,24411,24412,24413,24414,24415,24416,24417,24418,24419,24420,24421,24422,24423,24424,24425,24426,24427,24428,24429,24430,24431,24432,24433,24434,24435,24436,24437,24438,24439,24440,24441,24442,24443,24444,24445,24446,24447,24448,24449,24450,24451,24452,24453,24454,24455,24456,24457,24458,24459,24460,24461,24462,24463,24464,24465,24466,24467,24468,24469,24470,24471,24472,24473,24474,24475,24476,24477,24478,24479,24480,24481,24482,24483,24484,24485,24486,24487,24488,24489,24490,24491,24492,24493,24494,24495,24496,24497,24498,24499,24500,24501,24502,24503,24504,24505,24506,24507,24508,24509,24510,24511,24512,24513,24514,24515,24516,24517,24518,24519,24520,24521,24522,24523,24524,24525,24526,24527,24528,24529,24530,24531,24532,24533,24534,24535,24536,24537,24538,24539,24540,24541,24542,24543,24544,24545,24546,24547,24548,24549,24550,24551,24552,24553,24554,24555,24556,24557,24558,24559,24560,24561,24562,24563,24564,24565,24566,24567,24568,24569,24570,24571,24572,24573,24574,24575,24576,24577,24578,24579,24580,24581,24582,24583,24584,24585,24586,24587,24588,24589,24590,24591,24592,24593,24594,24595,24596,24597,24598,24599,24600,24601,24602,24603,24604,24605,24606,24607,24608,24609,24610,24611,24612,24613,24614,24615,24616,24617,24618,24619,24620,24621,24622,24623,24624,24625,24626,24627,24628,24629,24630,24631,24632,24633,24634,24635,24636,24637,24638,24639,24640,24641,24642,24643,24644,24645,24646,24647,24648,24649,24650,24651,24652,24653,24654,24655,24656,24657,24658,24659,24660,24661,24662,24663,24664,24665,24666,24667,24668,24669,24670,24671,24672,24673,24674,24675,24676,24677,24678,24679,24680,24681,24682,24683,24684,24685,24686,24687,24688,24689,24690,24691,24692,24693,24694,24695,24696,24697,24698,24699,24700,24701,24702,24703,24704,24705,24706,24707,24708,24709,24710,24711,24712,24713,24714,24715,24716,24717,24718,24719,24720,24721,24722,24723,24724,24725,24726,24727,24728,24729,24730,24731,24732,24733,24734,24735,24736,24737,24738,24739,24740,24741,24742,24743,24744,24745,24746,24747,24748,24749,24750,24751,24752,24753,24754,24755,24756,24757,24758,24759,24760,24761,24762,24763,24764,24765,24766,24767,24768,24769,24770,24771,24772,24773,24774,24775,24776,24777,24778,24779,24780,24781,24782,24783,24784,24785,24786,24787,24788,24789,24790,24791,24792,24793,24794,24795,24796,24797,24798,24799,24800,24801,24802,24803,24804,24805,24806,24807,24808,24809,24810,24811,24812,24813,24814,24815,24816,24817,24818,24819,24820,24821,24822,24823,24824,24825,24826,24827,24828,24829,24830,24831,24832,24833,24834,24835,24836,24837,24838,24839,24840,24841,24842,24843,24844,24845,24846,24847,24848,24849,24850,24851,24852,24853,24854,24855,24856,24857,24858,24859,24860,24861,24862,24863,24864,24865,24866,24867,24868,24869,24870,24871,24872,24873,24874,24875,24876,24877,24878,24879,24880,24881,24882,24883,24884,24885,24886,24887,24888,24889,24890,24891,24892,24893,24894,24895,24896,24897,24898,24899,24900,24901,24902,24903,24904,24905,24906,24907,24908,24909,24910,24911,24912,24913,24914,24915,24916,24917,24918,24919,24920,24921,24922,24923,24924,24925,24926,24927,24928,24929,24930,24931,24932,24933,24934,24935,24936,24937,24938,24939,24940,24941,24942,24943,24944,24945,24946,24947,24948,24949,24950,24951,24952,24953,24954,24955,24956,24957,24958,24959,24960,24961,24962,24963,24964,24965,24966,24967,24968,24969,24970,24971,24972,24973,24974,24975,24976,24977,24978,24979,24980,24981,24982,24983,24984,24985,24986,24987,24988,24989,24990,24991,24992,24993,24994,24995,24996,24997,24998,24999,25000,25001,25002,25003,25004,25005,25006,25007,25008,25009,25010,25011,25012,25013,25014,25015,25016,25017,25018,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25029,25030,25031,25032,25033,25034,25035,25036,25037,25038,25039,25040,25041,25042,25043,25044,25045,25046,25047,25048,25049,25050,25051,25052,25053,25054,25055,25056,25057,25058,25059,25060,25061,25062,25063,25064,25065,25066,25067,25068,25069,25070,25071,25072,25073,25074,25075,25076,25077,25078,25079,25080,25081,25082,25083,25084,25085,25086,25087,25088,25089,25090,25091,25092,25093,25094,25095,25096,25097,25098,25099,25100,25101,25102,25103,25104,25105,25106,25107,25108,25109,25110,25111,25112,25113,25114,25115,25116,25117,25118,25119,25120,25121,25122,25123,25124,25125,25126,25127,25128,25129,25130,25131,25132,25133,25134,25135,25136,25137,25138,25139,25140,25141,25142,25143,25144,25145,25146,25147,25148,25149,25150,25151,25152,25153,25154,25155,25156,25157,25158,25159,25160,25161,25162,25163,25164,25165,25166,25167,25168,25169,25170,25171,25172,25173,25174,25175,25176,25177,25178,25179,25180,25181,25182,25183,25184,25185,25186,25187,25188,25189,25190,25191,25192,25193,25194,25195,25196,25197,25198,25199,25200,25201,25202,25203,25204,25205,25206,25207,25208,25209,25210,25211,25212,25213,25214,25215,25216,25217,25218,25219,25220,25221,25222,25223,25224,25225,25226,25227,25228,25229,25230,25231,25232,25233,25234,25235,25236,25237,25238,25239,25240,25241,25242,25243,25244,25245,25246,25247,25248,25249,25250,25251,25252,25253,25254,25255,25256,25257,25258,25259,25260,25261,25262,25263,25264,25265,25266,25267,25268,25269,25270,25271,25272,25273,25274,25275,25276,25277,25278,25279,25280,25281,25282,25283,25284,25285,25286,25287,25288,25289,25290,25291,25292,25293,25294,25295,25296,25297,25298,25299,25300,25301,25302,25303,25304,25305,25306,25307,25308,25309,25310,25311,25312,25313,25314,25315,25316,25317,25318,25319,25320,25321,25322,25323,25324,25325,25326,25327,25328,25329,25330,25331,25332,25333,25334,25335,25336,25337,25338,25339,25340,25341,25342,25343,25344,25345,25346,25347,25348,25349,25350,25351,25352,25353,25354,25355,25356,25357,25358,25359,25360,25361,25362,25363,25364,25365,25366,25367,25368,25369,25370,25371,25372,25373,25374,25375,25376,25377,25378,25379,25380,25381,25382,25383,25384,25385,25386,25387,25388,25389,25390,25391,25392,25393,25394,25395,25396,25397,25398,25399,25400,25401,25402,25403,25404,25405,25406,25407,25408,25409,25410,25411,25412,25413,25414,25415,25416,25417,25418,25419,25420,25421,25422,25423,25424,25425,25426,25427,25428,25429,25430,25431,25432,25433,25434,25435,25436,25437,25438,25439,25440,25441,25442,25443,25444,25445,25446,25447,25448,25449,25450,25451,25452,25453,25454,25455,25456,25457,25458,25459,25460,25461,25462,25463,25464,25465,25466,25467,25468,25469,25470,25471,25472,25473,25474,25475,25476,25477,25478,25479,25480,25481,25482,25483,25484,25485,25486,25487,25488,25489,25490,25491,25492,25493,25494,25495,25496,25497,25498,25499,25500,25501,25502,25503,25504,25505,25506,25507,25508,25509,25510,25511,25512,25513,25514,25515,25516,25517,25518,25519,25520,25521,25522,25523,25524,25525,25526,25527,25528,25529,25530,25531,25532,25533,25534,25535,25536,25537,25538,25539,25540,25541,25542,25543,25544,25545,25546,25547,25548,25549,25550,25551,25552,25553,25554,25555,25556,25557,25558,25559,25560,25561,25562,25563,25564,25565,25566,25567,25568,25569,25570,25571,25572,25573,25574,25575,25576,25577,25578,25579,25580,25581,25582,25583,25584,25585,25586,25587,25588,25589,25590,25591,25592,25593,25594,25595,25596,25597,25598,25599,25600,25601,25602,25603,25604,25605,25606,25607,25608,25609,25610,25611,25612,25613,25614,25615,25616,25617,25618,25619,25620,25621,25622,25623,25624,25625,25626,25627,25628,25629,25630,25631,25632,25633,25634,25635,25636,25637,25638,25639,25640,25641,25642,25643,25644,25645,25646,25647,25648,25649,25650,25651,25652,25653,25654,25655,25656,25657,25658,25659,25660,25661,25662,25663,25664,25665,25666,25667,25668,25669,25670,25671,25672,25673,25674,25675,25676,25677,25678,25679,25680,25681,25682,25683,25684,25685,25686,25687,25688,25689,25690,25691,25692,25693,25694,25695,25696,25697,25698,25699,25700,25701,25702,25703,25704,25705,25706,25707,25708,25709,25710,25711,25712,25713,25714,25715,25716,25717,25718,25719,25720,25721,25722,25723,25724,25725,25726,25727,25728,25729,25730,25731,25732,25733,25734,25735,25736,25737,25738,25739,25740,25741,25742,25743,25744,25745,25746,25747,25748,25749,25750,25751,25752,25753,25754,25755,25756,25757,25758,25759,25760,25761,25762,25763,25764,25765,25766,25767,25768,25769,25770,25771,25772,25773,25774,25775,25776,25777,25778,25779,25780,25781,25782,25783,25784,25785,25786,25787,25788,25789,25790,25791,25792,25793,25794,25795,25796,25797,25798,25799,25800,25801,25802,25803,25804,25805,25806,25807,25808,25809,25810,25811,25812,25813,25814,25815,25816,25817,25818,25819,25820,25821,25822,25823,25824,25825,25826,25827,25828,25829,25830,25831,25832,25833,25834,25835,25836,25837,25838,25839,25840,25841,25842,25843,25844,25845,25846,25847,25848,25849,25850,25851,25852,25853,25854,25855,25856,25857,25858,25859,25860,25861,25862,25863,25864,25865,25866,25867,25868,25869,25870,25871,25872,25873,25874,25875,25876,25877,25878,25879,25880,25881,25882,25883,25884,25885,25886,25887,25888,25889,25890,25891,25892,25893,25894,25895,25896,25897,25898,25899,25900,25901,25902,25903,25904,25905,25906,25907,25908,25909,25910,25911,25912,25913,25914,25915,25916,25917,25918,25919,25920,25921,25922,25923,25924,25925,25926,25927,25928,25929,25930,25931,25932,25933,25934,25935,25936,25937,25938,25939,25940,25941,25942,25943,25944,25945,25946,25947,25948,25949,25950,25951,25952,25953,25954,25955,25956,25957,25958,25959,25960,25961,25962,25963,25964,25965,25966,25967,25968,25969,25970,25971,25972,25973,25974,25975,25976,25977,25978,25979,25980,25981,25982,25983,25984,25985,25986,25987,25988,25989,25990,25991,25992,25993,25994,25995,25996,25997,25998,25999,26000,26001,26002,26003,26004,26005,26006,26007,26008,26009,26010,26011,26012,26013,26014,26015,26016,26017,26018,26019,26020,26021,26022,26023,26024,26025,26026,26027,26028,26029,26030,26031,26032,26033,26034,26035,26036,26037,26038,26039,26040,26041,26042,26043,26044,26045,26046,26047,26048,26049,26050,26051,26052,26053,26054,26055,26056,26057,26058,26059,26060,26061,26062,26063,26064,26065,26066,26067,26068,26069,26070,26071,26072,26073,26074,26075,26076,26077,26078,26079,26080,26081,26082,26083,26084,26085,26086,26087,26088,26089,26090,26091,26092,26093,26094,26095,26096,26097,26098,26099,26100,26101,26102,26103,26104,26105,26106,26107,26108,26109,26110,26111,26112,26113,26114,26115,26116,26117,26118,26119,26120,26121,26122,26123,26124,26125,26126,26127,26128,26129,26130,26131,26132,26133,26134,26135,26136,26137,26138,26139,26140,26141,26142,26143,26144,26145,26146,26147,26148,26149,26150,26151,26152,26153,26154,26155,26156,26157,26158,26159,26160,26161,26162,26163,26164,26165,26166,26167,26168,26169,26170,26171,26172,26173,26174,26175,26176,26177,26178,26179,26180,26181,26182,26183,26184,26185,26186,26187,26188,26189,26190,26191,26192,26193,26194,26195,26196,26197,26198,26199,26200,26201,26202,26203,26204,26205,26206,26207,26208,26209,26210,26211,26212,26213,26214,26215,26216,26217,26218,26219,26220,26221,26222,26223,26224,26225,26226,26227,26228,26229,26230,26231,26232,26233,26234,26235,26236,26237,26238,26239,26240,26241,26242,26243,26244,26245,26246,26247,26248,26249,26250,26251,26252,26253,26254,26255,26256,26257,26258,26259,26260,26261,26262,26263,26264,26265,26266,26267,26268,26269,26270,26271,26272,26273,26274,26275,26276,26277,26278,26279,26280,26281,26282,26283,26284,26285,26286,26287,26288,26289,26290,26291,26292,26293,26294,26295,26296,26297,26298,26299,26300,26301,26302,26303,26304,26305,26306,26307,26308,26309,26310,26311,26312,26313,26314,26315,26316,26317,26318,26319,26320,26321,26322,26323,26324,26325,26326,26327,26328,26329,26330,26331,26332,26333,26334,26335,26336,26337,26338,26339,26340,26341,26342,26343,26344,26345,26346,26347,26348,26349,26350,26351,26352,26353,26354,26355,26356,26357,26358,26359,26360,26361,26362,26363,26364,26365,26366,26367,26368,26369,26370,26371,26372,26373,26374,26375,26376,26377,26378,26379,26380,26381,26382,26383,26384,26385,26386,26387,26388,26389,26390,26391,26392,26393,26394,26395,26396,26397,26398,26399,26400,26401,26402,26403,26404,26405,26406,26407,26408,26409,26410,26411,26412,26413,26414,26415,26416,26417,26418,26419,26420,26421,26422,26423,26424,26425,26426,26427,26428,26429,26430,26431,26432,26433,26434,26435,26436,26437,26438,26439,26440,26441,26442,26443,26444,26445,26446,26447,26448,26449,26450,26451,26452,26453,26454,26455,26456,26457,26458,26459,26460,26461,26462,26463,26464,26465,26466,26467,26468,26469,26470,26471,26472,26473,26474,26475,26476,26477,26478,26479,26480,26481,26482,26483,26484,26485,26486,26487,26488,26489,26490,26491,26492,26493,26494,26495,26496,26497,26498,26499,26500,26501,26502,26503,26504,26505,26506,26507,26508,26509,26510,26511,26512,26513,26514,26515,26516,26517,26518,26519,26520,26521,26522,26523,26524,26525,26526,26527,26528,26529,26530,26531,26532,26533,26534,26535,26536,26537,26538,26539,26540,26541,26542,26543,26544,26545,26546,26547,26548,26549,26550,26551,26552,26553,26554,26555,26556,26557,26558,26559,26560,26561,26562,26563,26564,26565,26566,26567,26568,26569,26570,26571,26572,26573,26574,26575,26576,26577,26578,26579,26580,26581,26582,26583,26584,26585,26586,26587,26588,26589,26590,26591,26592,26593,26594,26595,26596,26597,26598,26599,26600,26601,26602,26603,26604,26605,26606,26607,26608,26609,26610,26611,26612,26613,26614,26615,26616,26617,26618,26619,26620,26621,26622,26623,26624,26625,26626,26627,26628,26629,26630,26631,26632,26633,26634,26635,26636,26637,26638,26639,26640,26641,26642,26643,26644,26645,26646,26647,26648,26649,26650,26651,26652,26653,26654,26655,26656,26657,26658,26659,26660,26661,26662,26663,26664,26665,26666,26667,26668,26669,26670,26671,26672,26673,26674,26675,26676,26677,26678,26679,26680,26681,26682,26683,26684,26685,26686,26687,26688,26689,26690,26691,26692,26693,26694,26695,26696,26697,26698,26699,26700,26701,26702,26703,26704,26705,26706,26707,26708,26709,26710,26711,26712,26713,26714,26715,26716,26717,26718,26719,26720,26721,26722,26723,26724,26725,26726,26727,26728,26729,26730,26731,26732,26733,26734,26735,26736,26737,26738,26739,26740,26741,26742,26743,26744,26745,26746,26747,26748,26749,26750,26751,26752,26753,26754,26755,26756,26757,26758,26759,26760,26761,26762,26763,26764,26765,26766,26767,26768,26769,26770,26771,26772,26773,26774,26775,26776,26777,26778,26779,26780,26781,26782,26783,26784,26785,26786,26787,26788,26789,26790,26791,26792,26793,26794,26795,26796,26797,26798,26799,26800,26801,26802,26803,26804,26805,26806,26807,26808,26809,26810,26811,26812,26813,26814,26815,26816,26817,26818,26819,26820,26821,26822,26823,26824,26825,26826,26827,26828,26829,26830,26831,26832,26833,26834,26835,26836,26837,26838,26839,26840,26841,26842,26843,26844,26845,26846,26847,26848,26849,26850,26851,26852,26853,26854,26855,26856,26857,26858,26859,26860,26861,26862,26863,26864,26865,26866,26867,26868,26869,26870,26871,26872,26873,26874,26875,26876,26877,26878,26879,26880,26881,26882,26883,26884,26885,26886,26887,26888,26889,26890,26891,26892,26893,26894,26895,26896,26897,26898,26899,26900,26901,26902,26903,26904,26905,26906,26907,26908,26909,26910,26911,26912,26913,26914,26915,26916,26917,26918,26919,26920,26921,26922,26923,26924,26925,26926,26927,26928,26929,26930,26931,26932,26933,26934,26935,26936,26937,26938,26939,26940,26941,26942,26943,26944,26945,26946,26947,26948,26949,26950,26951,26952,26953,26954,26955,26956,26957,26958,26959,26960,26961,26962,26963,26964,26965,26966,26967,26968,26969,26970,26971,26972,26973,26974,26975,26976,26977,26978,26979,26980,26981,26982,26983,26984,26985,26986,26987,26988,26989,26990,26991,26992,26993,26994,26995,26996,26997,26998,26999,27000,27001,27002,27003,27004,27005,27006,27007,27008,27009,27010,27011,27012,27013,27014,27015,27016,27017,27018,27019,27020,27021,27022,27023,27024,27025,27026,27027,27028,27029,27030,27031,27032,27033,27034,27035,27036,27037,27038,27039,27040,27041,27042,27043,27044,27045,27046,27047,27048,27049,27050,27051,27052,27053,27054,27055,27056,27057,27058,27059,27060,27061,27062,27063,27064,27065,27066,27067,27068,27069,27070,27071,27072,27073,27074,27075,27076,27077,27078,27079,27080,27081,27082,27083,27084,27085,27086,27087,27088,27089,27090,27091,27092,27093,27094,27095,27096,27097,27098,27099,27100,27101,27102,27103,27104,27105,27106,27107,27108,27109,27110,27111,27112,27113,27114,27115,27116,27117,27118,27119,27120,27121,27122,27123,27124,27125,27126,27127,27128,27129,27130,27131,27132,27133,27134,27135,27136,27137,27138,27139,27140,27141,27142,27143,27144,27145,27146,27147,27148,27149,27150,27151,27152,27153,27154,27155,27156,27157,27158,27159,27160,27161,27162,27163,27164,27165,27166,27167,27168,27169,27170,27171,27172,27173,27174,27175,27176,27177,27178,27179,27180,27181,27182,27183,27184,27185,27186,27187,27188,27189,27190,27191,27192,27193,27194,27195,27196,27197,27198,27199,27200,27201,27202,27203,27204,27205,27206,27207,27208,27209,27210,27211,27212,27213,27214,27215,27216,27217,27218,27219,27220,27221,27222,27223,27224,27225,27226,27227,27228,27229,27230,27231,27232,27233,27234,27235,27236,27237,27238,27239,27240,27241,27242,27243,27244,27245,27246,27247,27248,27249,27250,27251,27252,27253,27254,27255,27256,27257,27258,27259,27260,27261,27262,27263,27264,27265,27266,27267,27268,27269,27270,27271,27272,27273,27274,27275,27276,27277,27278,27279,27280,27281,27282,27283,27284,27285,27286,27287,27288,27289,27290,27291,27292,27293,27294,27295,27296,27297,27298,27299,27300,27301,27302,27303,27304,27305,27306,27307,27308,27309,27310,27311,27312,27313,27314,27315,27316,27317,27318,27319,27320,27321,27322,27323,27324,27325,27326,27327,27328,27329,27330,27331,27332,27333,27334,27335,27336,27337,27338,27339,27340,27341,27342,27343,27344,27345,27346,27347,27348,27349,27350,27351,27352,27353,27354,27355,27356,27357,27358,27359,27360,27361,27362,27363,27364,27365,27366,27367,27368,27369,27370,27371,27372,27373,27374,27375,27376,27377,27378,27379,27380,27381,27382,27383,27384,27385,27386,27387,27388,27389,27390,27391,27392,27393,27394,27395,27396,27397,27398,27399,27400,27401,27402,27403,27404,27405,27406,27407,27408,27409,27410,27411,27412,27413,27414,27415,27416,27417,27418,27419,27420,27421,27422,27423,27424,27425,27426,27427,27428,27429,27430,27431,27432,27433,27434,27435,27436,27437,27438,27439,27440,27441,27442,27443,27444,27445,27446,27447,27448,27449,27450,27451,27452,27453,27454,27455,27456,27457,27458,27459,27460,27461,27462,27463,27464,27465,27466,27467,27468,27469,27470,27471,27472,27473,27474,27475,27476,27477,27478,27479,27480,27481,27482,27483,27484,27485,27486,27487,27488,27489,27490,27491,27492,27493,27494,27495,27496,27497,27498,27499,27500,27501,27502,27503,27504,27505,27506,27507,27508,27509,27510,27511,27512,27513,27514,27515,27516,27517,27518,27519,27520,27521,27522,27523,27524,27525,27526,27527,27528,27529,27530,27531,27532,27533,27534,27535,27536,27537,27538,27539,27540,27541,27542,27543,27544,27545,27546,27547,27548,27549,27550,27551,27552,27553,27554,27555,27556,27557,27558,27559,27560,27561,27562,27563,27564,27565,27566,27567,27568,27569,27570,27571,27572,27573,27574,27575,27576,27577,27578,27579,27580,27581,27582,27583,27584,27585,27586,27587,27588,27589,27590,27591,27592,27593,27594,27595,27596,27597,27598,27599,27600,27601,27602,27603,27604,27605,27606,27607,27608,27609,27610,27611,27612,27613,27614,27615,27616,27617,27618,27619,27620,27621,27622,27623,27624,27625,27626,27627,27628,27629,27630,27631,27632,27633,27634,27635,27636,27637,27638,27639,27640,27641,27642,27643,27644,27645,27646,27647,27648,27649,27650,27651,27652,27653,27654,27655,27656,27657,27658,27659,27660,27661,27662,27663,27664,27665,27666,27667,27668,27669,27670,27671,27672,27673,27674,27675,27676,27677,27678,27679,27680,27681,27682,27683,27684,27685,27686,27687,27688,27689,27690,27691,27692,27693,27694,27695,27696,27697,27698,27699,27700,27701,27702,27703,27704,27705,27706,27707,27708,27709,27710,27711,27712,27713,27714,27715,27716,27717,27718,27719,27720,27721,27722,27723,27724,27725,27726,27727,27728,27729,27730,27731,27732,27733,27734,27735,27736,27737,27738,27739,27740,27741,27742,27743,27744,27745,27746,27747,27748,27749,27750,27751,27752,27753,27754,27755,27756,27757,27758,27759,27760,27761,27762,27763,27764,27765,27766,27767,27768,27769,27770,27771,27772,27773,27774,27775,27776,27777,27778,27779,27780,27781,27782,27783,27784,27785,27786,27787,27788,27789,27790,27791,27792,27793,27794,27795,27796,27797,27798,27799,27800,27801,27802,27803,27804,27805,27806,27807,27808,27809,27810,27811,27812,27813,27814,27815,27816,27817,27818,27819,27820,27821,27822,27823,27824,27825,27826,27827,27828,27829,27830,27831,27832,27833,27834,27835,27836,27837,27838,27839,27840,27841,27842,27843,27844,27845,27846,27847,27848,27849,27850,27851,27852,27853,27854,27855,27856,27857,27858,27859,27860,27861,27862,27863,27864,27865,27866,27867,27868,27869,27870,27871,27872,27873,27874,27875,27876,27877,27878,27879,27880,27881,27882,27883,27884,27885,27886,27887,27888,27889,27890,27891,27892,27893,27894,27895,27896,27897,27898,27899,27900,27901,27902,27903,27904,27905,27906,27907,27908,27909,27910,27911,27912,27913,27914,27915,27916,27917,27918,27919,27920,27921,27922,27923,27924,27925,27926,27927,27928,27929,27930,27931,27932,27933,27934,27935,27936,27937,27938,27939,27940,27941,27942,27943,27944,27945,27946,27947,27948,27949,27950,27951,27952,27953,27954,27955,27956,27957,27958,27959,27960,27961,27962,27963,27964,27965,27966,27967,27968,27969,27970,27971,27972,27973,27974,27975,27976,27977,27978,27979,27980,27981,27982,27983,27984,27985,27986,27987,27988,27989,27990,27991,27992,27993,27994,27995,27996,27997,27998,27999,28000,28001,28002,28003,28004,28005,28006,28007,28008,28009,28010,28011,28012,28013,28014,28015,28016,28017,28018,28019,28020,28021,28022,28023,28024,28025,28026,28027,28028,28029,28030,28031,28032,28033,28034,28035,28036,28037,28038,28039,28040,28041,28042,28043,28044,28045,28046,28047,28048,28049,28050,28051,28052,28053,28054,28055,28056,28057,28058,28059,28060,28061,28062,28063,28064,28065,28066,28067,28068,28069,28070,28071,28072,28073,28074,28075,28076,28077,28078,28079,28080,28081,28082,28083,28084,28085,28086,28087,28088,28089,28090,28091,28092,28093,28094,28095,28096,28097,28098,28099,28100,28101,28102,28103,28104,28105,28106,28107,28108,28109,28110,28111,28112,28113,28114,28115,28116,28117,28118,28119,28120,28121,28122,28123,28124,28125,28126,28127,28128,28129,28130,28131,28132,28133,28134,28135,28136,28137,28138,28139,28140,28141,28142,28143,28144,28145,28146,28147,28148,28149,28150,28151,28152,28153,28154,28155,28156,28157,28158,28159,28160,28161,28162,28163,28164,28165,28166,28167,28168,28169,28170,28171,28172,28173,28174,28175,28176,28177,28178,28179,28180,28181,28182,28183,28184,28185,28186,28187,28188,28189,28190,28191,28192,28193,28194,28195,28196,28197,28198,28199,28200,28201,28202,28203,28204,28205,28206,28207,28208,28209,28210,28211,28212,28213,28214,28215,28216,28217,28218,28219,28220,28221,28222,28223,28224,28225,28226,28227,28228,28229,28230,28231,28232,28233,28234,28235,28236,28237,28238,28239,28240,28241,28242,28243,28244,28245,28246,28247,28248,28249,28250,28251,28252,28253,28254,28255,28256,28257,28258,28259,28260,28261,28262,28263,28264,28265,28266,28267,28268,28269,28270,28271,28272,28273,28274,28275,28276,28277,28278,28279,28280,28281,28282,28283,28284,28285,28286,28287,28288,28289,28290,28291,28292,28293,28294,28295,28296,28297,28298,28299,28300,28301,28302,28303,28304,28305,28306,28307,28308,28309,28310,28311,28312,28313,28314,28315,28316,28317,28318,28319,28320,28321,28322,28323,28324,28325,28326,28327,28328,28329,28330,28331,28332,28333,28334,28335,28336,28337,28338,28339,28340,28341,28342,28343,28344,28345,28346,28347,28348,28349,28350,28351,28352,28353,28354,28355,28356,28357,28358,28359,28360,28361,28362,28363,28364,28365,28366,28367,28368,28369,28370,28371,28372,28373,28374,28375,28376,28377,28378,28379,28380,28381,28382,28383,28384,28385,28386,28387,28388,28389,28390,28391,28392,28393,28394,28395,28396,28397,28398,28399,28400,28401,28402,28403,28404,28405,28406,28407,28408,28409,28410,28411,28412,28413,28414,28415,28416,28417,28418,28419,28420,28421,28422,28423,28424,28425,28426,28427,28428,28429,28430,28431,28432,28433,28434,28435,28436,28437,28438,28439,28440,28441,28442,28443,28444,28445,28446,28447,28448,28449,28450,28451,28452,28453,28454,28455,28456,28457,28458,28459,28460,28461,28462,28463,28464,28465,28466,28467,28468,28469,28470,28471,28472,28473,28474,28475,28476,28477,28478,28479,28480,28481,28482,28483,28484,28485,28486,28487,28488,28489,28490,28491,28492,28493,28494,28495,28496,28497,28498,28499,28500,28501,28502,28503,28504,28505,28506,28507,28508,28509,28510,28511,28512,28513,28514,28515,28516,28517,28518,28519,28520,28521,28522,28523,28524,28525,28526,28527,28528,28529,28530,28531,28532,28533,28534,28535,28536,28537,28538,28539,28540,28541,28542,28543,28544,28545,28546,28547,28548,28549,28550,28551,28552,28553,28554,28555,28556,28557,28558,28559,28560,28561,28562,28563,28564,28565,28566,28567,28568,28569,28570,28571,28572,28573,28574,28575,28576,28577,28578,28579,28580,28581,28582,28583,28584,28585,28586,28587,28588,28589,28590,28591,28592,28593,28594,28595,28596,28597,28598,28599,28600,28601,28602,28603,28604,28605,28606,28607,28608,28609,28610,28611,28612,28613,28614,28615,28616,28617,28618,28619,28620,28621,28622,28623,28624,28625,28626,28627,28628,28629,28630,28631,28632,28633,28634,28635,28636,28637,28638,28639,28640,28641,28642,28643,28644,28645,28646,28647,28648,28649,28650,28651,28652,28653,28654,28655,28656,28657,28658,28659,28660,28661,28662,28663,28664,28665,28666,28667,28668,28669,28670,28671,28672,28673,28674,28675,28676,28677,28678,28679,28680,28681,28682,28683,28684,28685,28686,28687,28688,28689,28690,28691,28692,28693,28694,28695,28696,28697,28698,28699,28700,28701,28702,28703,28704,28705,28706,28707,28708,28709,28710,28711,28712,28713,28714,28715,28716,28717,28718,28719,28720,28721,28722,28723,28724,28725,28726,28727,28728,28729,28730,28731,28732,28733,28734,28735,28736,28737,28738,28739,28740,28741,28742,28743,28744,28745,28746,28747,28748,28749,28750,28751,28752,28753,28754,28755,28756,28757,28758,28759,28760,28761,28762,28763,28764,28765,28766,28767,28768,28769,28770,28771,28772,28773,28774,28775,28776,28777,28778,28779,28780,28781,28782,28783,28784,28785,28786,28787,28788,28789,28790,28791,28792,28793,28794,28795,28796,28797,28798,28799,28800,28801,28802,28803,28804,28805,28806,28807,28808,28809,28810,28811,28812,28813,28814,28815,28816,28817,28818,28819,28820,28821,28822,28823,28824,28825,28826,28827,28828,28829,28830,28831,28832,28833,28834,28835,28836,28837,28838,28839,28840,28841,28842,28843,28844,28845,28846,28847,28848,28849,28850,28851,28852,28853,28854,28855,28856,28857,28858,28859,28860,28861,28862,28863,28864,28865,28866,28867,28868,28869,28870,28871,28872,28873,28874,28875,28876,28877,28878,28879,28880,28881,28882,28883,28884,28885,28886,28887,28888,28889,28890,28891,28892,28893,28894,28895,28896,28897,28898,28899,28900,28901,28902,28903,28904,28905,28906,28907,28908,28909,28910,28911,28912,28913,28914,28915,28916,28917,28918,28919,28920,28921,28922,28923,28924,28925,28926,28927,28928,28929,28930,28931,28932,28933,28934,28935,28936,28937,28938,28939,28940,28941,28942,28943,28944,28945,28946,28947,28948,28949,28950,28951,28952,28953,28954,28955,28956,28957,28958,28959,28960,28961,28962,28963,28964,28965,28966,28967,28968,28969,28970,28971,28972,28973,28974,28975,28976,28977,28978,28979,28980,28981,28982,28983,28984,28985,28986,28987,28988,28989,28990,28991,28992,28993,28994,28995,28996,28997,28998,28999,29000,29001,29002,29003,29004,29005,29006,29007,29008,29009,29010,29011,29012,29013,29014,29015,29016,29017,29018,29019,29020,29021,29022,29023,29024,29025,29026,29027,29028,29029,29030,29031,29032,29033,29034,29035,29036,29037,29038,29039,29040,29041,29042,29043,29044,29045,29046,29047,29048,29049,29050,29051,29052,29053,29054,29055,29056,29057,29058,29059,29060,29061,29062,29063,29064,29065,29066,29067,29068,29069,29070,29071,29072,29073,29074,29075,29076,29077,29078,29079,29080,29081,29082,29083,29084,29085,29086,29087,29088,29089,29090,29091,29092,29093,29094,29095,29096,29097,29098,29099,29100,29101,29102,29103,29104,29105,29106,29107,29108,29109,29110,29111,29112,29113,29114,29115,29116,29117,29118,29119,29120,29121,29122,29123,29124,29125,29126,29127,29128,29129,29130,29131,29132,29133,29134,29135,29136,29137,29138,29139,29140,29141,29142,29143,29144,29145,29146,29147,29148,29149,29150,29151,29152,29153,29154,29155,29156,29157,29158,29159,29160,29161,29162,29163,29164,29165,29166,29167,29168,29169,29170,29171,29172,29173,29174,29175,29176,29177,29178,29179,29180,29181,29182,29183,29184,29185,29186,29187,29188,29189,29190,29191,29192,29193,29194,29195,29196,29197,29198,29199,29200,29201,29202,29203,29204,29205,29206,29207,29208,29209,29210,29211,29212,29213,29214,29215,29216,29217,29218,29219,29220,29221,29222,29223,29224,29225,29226,29227,29228,29229,29230,29231,29232,29233,29234,29235,29236,29237,29238,29239,29240,29241,29242,29243,29244,29245,29246,29247,29248,29249,29250,29251,29252,29253,29254,29255,29256,29257,29258,29259,29260,29261,29262,29263,29264,29265,29266,29267,29268,29269,29270,29271,29272,29273,29274,29275,29276,29277,29278,29279,29280,29281,29282,29283,29284,29285,29286,29287,29288,29289,29290,29291,29292,29293,29294,29295,29296,29297,29298,29299,29300,29301,29302,29303,29304,29305,29306,29307,29308,29309,29310,29311,29312,29313,29314,29315,29316,29317,29318,29319,29320,29321,29322,29323,29324,29325,29326,29327,29328,29329,29330,29331,29332,29333,29334,29335,29336,29337,29338,29339,29340,29341,29342,29343,29344,29345,29346,29347,29348,29349,29350,29351,29352,29353,29354,29355,29356,29357,29358,29359,29360,29361,29362,29363,29364,29365,29366,29367,29368,29369,29370,29371,29372,29373,29374,29375,29376,29377,29378,29379,29380,29381,29382,29383,29384,29385,29386,29387,29388,29389,29390,29391,29392,29393,29394,29395,29396,29397,29398,29399,29400,29401,29402,29403,29404,29405,29406,29407,29408,29409,29410,29411,29412,29413,29414,29415,29416,29417,29418,29419,29420,29421,29422,29423,29424,29425,29426,29427,29428,29429,29430,29431,29432,29433,29434,29435,29436,29437,29438,29439,29440,29441,29442,29443,29444,29445,29446,29447,29448,29449,29450,29451,29452,29453,29454,29455,29456,29457,29458,29459,29460,29461,29462,29463,29464,29465,29466,29467,29468,29469,29470,29471,29472,29473,29474,29475,29476,29477,29478,29479,29480,29481,29482,29483,29484,29485,29486,29487,29488,29489,29490,29491,29492,29493,29494,29495,29496,29497,29498,29499,29500,29501,29502,29503,29504,29505,29506,29507,29508,29509,29510,29511,29512,29513,29514,29515,29516,29517,29518,29519,29520,29521,29522,29523,29524,29525,29526,29527,29528,29529,29530,29531,29532,29533,29534,29535,29536,29537,29538,29539,29540,29541,29542,29543,29544,29545,29546,29547,29548,29549,29550,29551,29552,29553,29554,29555,29556,29557,29558,29559,29560,29561,29562,29563,29564,29565,29566,29567,29568,29569,29570,29571,29572,29573,29574,29575,29576,29577,29578,29579,29580,29581,29582,29583,29584,29585,29586,29587,29588,29589,29590,29591,29592,29593,29594,29595,29596,29597,29598,29599,29600,29601,29602,29603,29604,29605,29606,29607,29608,29609,29610,29611,29612,29613,29614,29615,29616,29617,29618,29619,29620,29621,29622,29623,29624,29625,29626,29627,29628,29629,29630,29631,29632,29633,29634,29635,29636,29637,29638,29639,29640,29641,29642,29643,29644,29645,29646,29647,29648,29649,29650,29651,29652,29653,29654,29655,29656,29657,29658,29659,29660,29661,29662,29663,29664,29665,29666,29667,29668,29669,29670,29671,29672,29673,29674,29675,29676,29677,29678,29679,29680,29681,29682,29683,29684,29685,29686,29687,29688,29689,29690,29691,29692,29693,29694,29695,29696,29697,29698,29699,29700,29701,29702,29703,29704,29705,29706,29707,29708,29709,29710,29711,29712,29713,29714,29715,29716,29717,29718,29719,29720,29721,29722,29723,29724,29725,29726,29727,29728,29729,29730,29731,29732,29733,29734,29735,29736,29737,29738,29739,29740,29741,29742,29743,29744,29745,29746,29747,29748,29749,29750,29751,29752,29753,29754,29755,29756,29757,29758,29759,29760,29761,29762,29763,29764,29765,29766,29767,29768,29769,29770,29771,29772,29773,29774,29775,29776,29777,29778,29779,29780,29781,29782,29783,29784,29785,29786,29787,29788,29789,29790,29791,29792,29793,29794,29795,29796,29797,29798,29799,29800,29801,29802,29803,29804,29805,29806,29807,29808,29809,29810,29811,29812,29813,29814,29815,29816,29817,29818,29819,29820,29821,29822,29823,29824,29825,29826,29827,29828,29829,29830,29831,29832,29833,29834,29835,29836,29837,29838,29839,29840,29841,29842,29843,29844,29845,29846,29847,29848,29849,29850,29851,29852,29853,29854,29855,29856,29857,29858,29859,29860,29861,29862,29863,29864,29865,29866,29867,29868,29869,29870,29871,29872,29873,29874,29875,29876,29877,29878,29879,29880,29881,29882,29883,29884,29885,29886,29887,29888,29889,29890,29891,29892,29893,29894,29895,29896,29897,29898,29899,29900,29901,29902,29903,29904,29905,29906,29907,29908,29909,29910,29911,29912,29913,29914,29915,29916,29917,29918,29919,29920,29921,29922,29923,29924,29925,29926,29927,29928,29929,29930,29931,29932,29933,29934,29935,29936,29937,29938,29939,29940,29941,29942,29943,29944,29945,29946,29947,29948,29949,29950,29951,29952,29953,29954,29955,29956,29957,29958,29959,29960,29961,29962,29963,29964,29965,29966,29967,29968,29969,29970,29971,29972,29973,29974,29975,29976,29977,29978,29979,29980,29981,29982,29983,29984,29985,29986,29987,29988,29989,29990,29991,29992,29993,29994,29995,29996,29997,29998,29999,30000,30001,30002,30003,30004,30005,30006,30007,30008,30009,30010,30011,30012,30013,30014,30015,30016,30017,30018,30019,30020,30021,30022,30023,30024,30025,30026,30027,30028,30029,30030,30031,30032,30033,30034,30035,30036,30037,30038,30039,30040,30041,30042,30043,30044,30045,30046,30047,30048,30049,30050,30051,30052,30053,30054,30055,30056,30057,30058,30059,30060,30061,30062,30063,30064,30065,30066,30067,30068,30069,30070,30071,30072,30073,30074,30075,30076,30077,30078,30079,30080,30081,30082,30083,30084,30085,30086,30087,30088,30089,30090,30091,30092,30093,30094,30095,30096,30097,30098,30099,30100,30101,30102,30103,30104,30105,30106,30107,30108,30109,30110,30111,30112,30113,30114,30115,30116,30117,30118,30119,30120,30121,30122,30123,30124,30125,30126,30127,30128,30129,30130,30131,30132,30133,30134,30135,30136,30137,30138,30139,30140,30141,30142,30143,30144,30145,30146,30147,30148,30149,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30168,30169,30170,30171,30172,30173,30174,30175,30176,30177,30178,30179,30180,30181,30182,30183,30184,30185,30186,30187,30188,30189,30190,30191,30192,30193,30194,30195,30196,30197,30198,30199,30200,30201,30202,30203,30204,30205,30206,30207,30208,30209,30210,30211,30212,30213,30214,30215,30216,30217,30218,30219,30220,30221,30222,30223,30224,30225,30226,30227,30228,30229,30230,30231,30232,30233,30234,30235,30236,30237,30238,30239,30240,30241,30242,30243,30244,30245,30246,30247,30248,30249,30250,30251,30252,30253,30254,30255,30256,30257,30258,30259,30260,30261,30262,30263,30264,30265,30266,30267,30268,30269,30270,30271,30272,30273,30274,30275,30276,30277,30278,30279,30280,30281,30282,30283,30284,30285,30286,30287,30288,30289,30290,30291,30292,30293,30294,30295,30296,30297,30298,30299,30300,30301,30302,30303,30304,30305,30306,30307,30308,30309,30310,30311,30312,30313,30314,30315,30316,30317,30318,30319,30320,30321,30322,30323,30324,30325,30326,30327,30328,30329,30330,30331,30332,30333,30334,30335,30336,30337,30338,30339,30340,30341,30342,30343,30344,30345,30346,30347,30348,30349,30350,30351,30352,30353,30354,30355,30356,30357,30358,30359,30360,30361,30362,30363,30364,30365,30366,30367,30368,30369,30370,30371,30372,30373,30374,30375,30376,30377,30378,30379,30380,30381,30382,30383,30384,30385,30386,30387,30388,30389,30390,30391,30392,30393,30394,30395,30396,30397,30398,30399,30400,30401,30402,30403,30404,30405,30406,30407,30408,30409,30410,30411,30412,30413,30414,30415,30416,30417,30418,30419,30420,30421,30422,30423,30424,30425,30426,30427,30428,30429,30430,30431,30432,30433,30434,30435,30436,30437,30438,30439,30440,30441,30442,30443,30444,30445,30446,30447,30448,30449,30450,30451,30452,30453,30454,30455,30456,30457,30458,30459,30460,30461,30462,30463,30464,30465,30466,30467,30468,30469,30470,30471,30472,30473,30474,30475,30476,30477,30478,30479,30480,30481,30482,30483,30484,30485,30486,30487,30488,30489,30490,30491,30492,30493,30494,30495,30496,30497,30498,30499,30500,30501,30502,30503,30504,30505,30506,30507,30508,30509,30510,30511,30512,30513,30514,30515,30516,30517,30518,30519,30520,30521,30522,30523,30524,30525,30526,30527,30528,30529,30530,30531,30532,30533,30534,30535,30536,30537,30538,30539,30540,30541,30542,30543,30544,30545,30546,30547,30548,30549,30550,30551,30552,30553,30554,30555,30556,30557,30558,30559,30560,30561,30562,30563,30564,30565,30566,30567,30568,30569,30570,30571,30572,30573,30574,30575,30576,30577,30578,30579,30580,30581,30582,30583,30584,30585,30586,30587,30588,30589,30590,30591,30592,30593,30594,30595,30596,30597,30598,30599,30600,30601,30602,30603,30604,30605,30606,30607,30608,30609,30610,30611,30612,30613,30614,30615,30616,30617,30618,30619,30620,30621,30622,30623,30624,30625,30626,30627,30628,30629,30630,30631,30632,30633,30634,30635,30636,30637,30638,30639,30640,30641,30642,30643,30644,30645,30646,30647,30648,30649,30650,30651,30652,30653,30654,30655,30656,30657,30658,30659,30660,30661,30662,30663,30664,30665,30666,30667,30668,30669,30670,30671,30672,30673,30674,30675,30676,30677,30678,30679,30680,30681,30682,30683,30684,30685,30686,30687,30688,30689,30690,30691,30692,30693,30694,30695,30696,30697,30698,30699,30700,30701,30702,30703,30704,30705,30706,30707,30708,30709,30710,30711,30712,30713,30714,30715,30716,30717,30718,30719,30720,30721,30722,30723,30724,30725,30726,30727,30728,30729,30730,30731,30732,30733,30734,30735,30736,30737,30738,30739,30740,30741,30742,30743,30744,30745,30746,30747,30748,30749,30750,30751,30752,30753,30754,30755,30756,30757,30758,30759,30760,30761,30762,30763,30764,30765,30766,30767,30768,30769,30770,30771,30772,30773,30774,30775,30776,30777,30778,30779,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30795,30796,30797,30798,30799,30800,30801,30802,30803,30804,30805,30806,30807,30808,30809,30810,30811,30812,30813,30814,30815,30816,30817,30818,30819,30820,30821,30822,30823,30824,30825,30826,30827,30828,30829,30830,30831,30832,30833,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30845,30846,30847,30848,30849,30850,30851,30852,30853,30854,30855,30856,30857,30858,30859,30860,30861,30862,30863,30864,30865,30866,30867,30868,30869,30870,30871,30872,30873,30874,30875,30876,30877,30878,30879,30880,30881,30882,30883,30884,30885,30886,30887,30888,30889,30890,30891,30892,30893,30894,30895,30896,30897,30898,30899,30900,30901,30902,30903,30904,30905,30906,30907,30908,30909,30910,30911,30912,30913,30914,30915,30916,30917,30918,30919,30920,30921,30922,30923,30924,30925,30926,30927,30928,30929,30930,30931,30932,30933,30934,30935,30936,30937,30938,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30950,30951,30952,30953,30954,30955,30956,30957,30958,30959,30960,30961,30962,30963,30964,30965,30966,30967,30968,30969,30970,30971,30972,30973,30974,30975,30976,30977,30978,30979,30980,30981,30982,30983,30984,30985,30986,30987,30988,30989,30990,30991,30992,30993,30994,30995,30996,30997,30998,30999,31000,31001,31002,31003,31004,31005,31006,31007,31008,31009,31010,31011,31012,31013,31014,31015,31016,31017,31018,31019,31020,31021,31022,31023,31024,31025,31026,31027,31028,31029,31030,31031,31032,31033,31034,31035,31036,31037,31038,31039,31040,31041,31042,31043,31044,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31060,31061,31062,31063,31064,31065,31066,31067,31068,31069,31070,31071,31072,31073,31074,31075,31076,31077,31078,31079,31080,31081,31082,31083,31084,31085,31086,31087,31088,31089,31090,31091,31092,31093,31094,31095,31096,31097,31098,31099,31100,31101,31102,31103,31104,31105,31106,31107,31108,31109,31110,31111,31112,31113,31114,31115,31116,31117,31118,31119,31120,31121,31122,31123,31124,31125,31126,31127,31128,31129,31130,31131,31132,31133,31134,31135,31136,31137,31138,31139,31140,31141,31142,31143,31144,31145,31146,31147,31148,31149,31150,31151,31152,31153,31154,31155,31156,31157,31158,31159,31160,31161,31162,31163,31164,31165,31166,31167,31168,31169,31170,31171,31172,31173,31174,31175,31176,31177,31178,31179,31180,31181,31182,31183,31184,31185,31186,31187,31188,31189,31190,31191,31192,31193,31194,31195,31196,31197,31198,31199,31200,31201,31202,31203,31204,31205,31206,31207,31208,31209,31210,31211,31212,31213,31214,31215,31216,31217,31218,31219,31220,31221,31222,31223,31224,31225,31226,31227,31228,31229,31230,31231,31232,31233,31234,31235,31236,31237,31238,31239,31240,31241,31242,31243,31244,31245,31246,31247,31248,31249,31250,31251,31252,31253,31254,31255,31256,31257,31258,31259,31260,31261,31262,31263,31264,31265,31266,31267,31268,31269,31270,31271,31272,31273,31274,31275,31276,31277,31278,31279,31280,31281,31282,31283,31284,31285,31286,31287,31288,31289,31290,31291,31292,31293,31294,31295,31296,31297,31298,31299,31300,31301,31302,31303,31304,31305,31306,31307,31308,31309,31310,31311,31312,31313,31314,31315,31316,31317,31318,31319,31320,31321,31322,31323,31324,31325,31326,31327,31328,31329,31330,31331,31332,31333,31334,31335,31336,31337,31338,31339,31340,31341,31342,31343,31344,31345,31346,31347,31348,31349,31350,31351,31352,31353,31354,31355,31356,31357,31358,31359,31360,31361,31362,31363,31364,31365,31366,31367,31368,31369,31370,31371,31372,31373,31374,31375,31376,31377,31378,31379,31380,31381,31382,31383,31384,31385,31386,31387,31388,31389,31390,31391,31392,31393,31394,31395,31396,31397,31398,31399,31400,31401,31402,31403,31404,31405,31406,31407,31408,31409,31410,31411,31412,31413,31414,31415,31416,31417,31418,31419,31420,31421,31422,31423,31424,31425,31426,31427,31428,31429,31430,31431,31432,31433,31434,31435,31436,31437,31438,31439,31440,31441,31442,31443,31444,31445,31446,31447,31448,31449,31450,31451,31452,31453,31454,31455,31456,31457,31458,31459,31460,31461,31462,31463,31464,31465,31466,31467,31468,31469,31470,31471,31472,31473,31474,31475,31476,31477,31478,31479,31480,31481,31482,31483,31484,31485,31486,31487,31488,31489,31490,31491,31492,31493,31494,31495,31496,31497,31498,31499,31500,31501,31502,31503,31504,31505,31506,31507,31508,31509,31510,31511,31512,31513,31514,31515,31516,31517,31518,31519,31520,31521,31522,31523,31524,31525,31526,31527,31528,31529,31530,31531,31532,31533,31534,31535,31536,31537,31538,31539,31540,31541,31542,31543,31544,31545,31546,31547,31548,31549,31550,31551,31552,31553,31554,31555,31556,31557,31558,31559,31560,31561,31562,31563,31564,31565,31566,31567,31568,31569,31570,31571,31572,31573,31574,31575,31576,31577,31578,31579,31580,31581,31582,31583,31584,31585,31586,31587,31588,31589,31590,31591,31592,31593,31594,31595,31596,31597,31598,31599,31600,31601,31602,31603,31604,31605,31606,31607,31608,31609,31610,31611,31612,31613,31614,31615,31616,31617,31618,31619,31620,31621,31622,31623,31624,31625,31626,31627,31628,31629,31630,31631,31632,31633,31634,31635,31636,31637,31638,31639,31640,31641,31642,31643,31644,31645,31646,31647,31648,31649,31650,31651,31652,31653,31654,31655,31656,31657,31658,31659,31660,31661,31662,31663,31664,31665,31666,31667,31668,31669,31670,31671,31672,31673,31674,31675,31676,31677,31678,31679,31680,31681,31682,31683,31684,31685,31686,31687,31688,31689,31690,31691,31692,31693,31694,31695,31696,31697,31698,31699,31700,31701,31702,31703,31704,31705,31706,31707,31708,31709,31710,31711,31712,31713,31714,31715,31716,31717,31718,31719,31720,31721,31722,31723,31724,31725,31726,31727,31728,31729,31730,31731,31732,31733,31734,31735,31736,31737,31738,31739,31740,31741,31742,31743,31744,31745,31746,31747,31748,31749,31750,31751,31752,31753,31754,31755,31756,31757,31758,31759,31760,31761,31762,31763,31764,31765,31766,31767,31768,31769,31770,31771,31772,31773,31774,31775,31776,31777,31778,31779,31780,31781,31782,31783,31784,31785,31786,31787,31788,31789,31790,31791,31792,31793,31794,31795,31796,31797,31798,31799,31800,31801,31802,31803,31804,31805,31806,31807,31808,31809,31810,31811,31812,31813,31814,31815,31816,31817,31818,31819,31820,31821,31822,31823,31824,31825,31826,31827,31828,31829,31830,31831,31832,31833,31834,31835,31836,31837,31838,31839,31840,31841,31842,31843,31844,31845,31846,31847,31848,31849,31850,31851,31852,31853,31854,31855,31856,31857,31858,31859,31860,31861,31862,31863,31864,31865,31866,31867,31868,31869,31870,31871,31872,31873,31874,31875,31876,31877,31878,31879,31880,31881,31882,31883,31884,31885,31886,31887,31888,31889,31890,31891,31892,31893,31894,31895,31896,31897,31898,31899,31900,31901,31902,31903,31904,31905,31906,31907,31908,31909,31910,31911,31912,31913,31914,31915,31916,31917,31918,31919,31920,31921,31922,31923,31924,31925,31926,31927,31928,31929,31930,31931,31932,31933,31934,31935,31936,31937,31938,31939,31940,31941,31942,31943,31944,31945,31946,31947,31948,31949,31950,31951,31952,31953,31954,31955,31956,31957,31958,31959,31960,31961,31962,31963,31964,31965,31966,31967,31968,31969,31970,31971,31972,31973,31974,31975,31976,31977,31978,31979,31980,31981,31982,31983,31984,31985,31986,31987,31988,31989,31990,31991,31992,31993,31994,31995,31996,31997,31998,31999,32000,32001,32002,32003,32004,32005,32006,32007,32008,32009,32010,32011,32012,32013,32014,32015,32016,32017,32018,32019,32020,32021,32022,32023,32024,32025,32026,32027,32028,32029,32030,32031,32032,32033,32034,32035,32036,32037,32038,32039,32040,32041,32042,32043,32044,32045,32046,32047,32048,32049,32050,32051,32052,32053,32054,32055,32056,32057,32058,32059,32060,32061,32062,32063,32064,32065,32066,32067,32068,32069,32070,32071,32072,32073,32074,32075,32076,32077,32078,32079,32080,32081,32082,32083,32084,32085,32086,32087,32088,32089,32090,32091,32092,32093,32094,32095,32096,32097,32098,32099,32100,32101,32102,32103,32104,32105,32106,32107,32108,32109,32110,32111,32112,32113,32114,32115,32116,32117,32118,32119,32120,32121,32122,32123,32124,32125,32126,32127,32128,32129,32130,32131,32132,32133,32134,32135,32136,32137,32138,32139,32140,32141,32142,32143,32144,32145,32146,32147,32148,32149,32150,32151,32152,32153,32154,32155,32156,32157,32158,32159,32160,32161,32162,32163,32164,32165,32166,32167,32168,32169,32170,32171,32172,32173,32174,32175,32176,32177,32178,32179,32180,32181,32182,32183,32184,32185,32186,32187,32188,32189,32190,32191,32192,32193,32194,32195,32196,32197,32198,32199,32200,32201,32202,32203,32204,32205,32206,32207,32208,32209,32210,32211,32212,32213,32214,32215,32216,32217,32218,32219,32220,32221,32222,32223,32224,32225,32226,32227,32228,32229,32230,32231,32232,32233,32234,32235,32236,32237,32238,32239,32240,32241,32242,32243,32244,32245,32246,32247,32248,32249,32250,32251,32252,32253,32254,32255,32256,32257,32258,32259,32260,32261,32262,32263,32264,32265,32266,32267,32268,32269,32270,32271,32272,32273,32274,32275,32276,32277,32278,32279,32280,32281,32282,32283,32284,32285,32286,32287,32288,32289,32290,32291,32292,32293,32294,32295,32296,32297,32298,32299,32300,32301,32302,32303,32304,32305,32306,32307,32308,32309,32310,32311,32312,32313,32314,32315,32316,32317,32318,32319,32320,32321,32322,32323,32324,32325,32326,32327,32328,32329,32330,32331,32332,32333,32334,32335,32336,32337,32338,32339,32340,32341,32342,32343,32344,32345,32346,32347,32348,32349,32350,32351,32352,32353,32354,32355,32356,32357,32358,32359,32360,32361,32362,32363,32364,32365,32366,32367,32368,32369,32370,32371,32372,32373,32374,32375,32376,32377,32378,32379,32380,32381,32382,32383,32384,32385,32386,32387,32388,32389,32390,32391,32392,32393,32394,32395,32396,32397,32398,32399,32400,32401,32402,32403,32404,32405,32406,32407,32408,32409,32410,32411,32412,32413,32414,32415,32416,32417,32418,32419,32420,32421,32422,32423,32424,32425,32426,32427,32428,32429,32430,32431,32432,32433,32434,32435,32436,32437,32438,32439,32440,32441,32442,32443,32444,32445,32446,32447,32448,32449,32450,32451,32452,32453,32454,32455,32456,32457,32458,32459,32460,32461,32462,32463,32464,32465,32466,32467,32468,32469,32470,32471,32472,32473,32474,32475,32476,32477,32478,32479,32480,32481,32482,32483,32484,32485,32486,32487,32488,32489,32490,32491,32492,32493,32494,32495,32496,32497,32498,32499,32500,32501,32502,32503,32504,32505,32506,32507,32508,32509,32510,32511,32512,32513,32514,32515,32516,32517,32518,32519,32520,32521,32522,32523,32524,32525,32526,32527,32528,32529,32530,32531,32532,32533,32534,32535,32536,32537,32538,32539,32540,32541,32542,32543,32544,32545,32546,32547,32548,32549,32550,32551,32552,32553,32554,32555,32556,32557,32558,32559,32560,32561,32562,32563,32564,32565,32566,32567,32568,32569,32570,32571,32572,32573,32574,32575,32576,32577,32578,32579,32580,32581,32582,32583,32584,32585,32586,32587,32588,32589,32590,32591,32592,32593,32594,32595,32596,32597,32598,32599,32600,32601,32602,32603,32604,32605,32606,32607,32608,32609,32610,32611,32612,32613,32614,32615,32616,32617,32618,32619,32620,32621,32622,32623,32624,32625,32626,32627,32628,32629,32630,32631,32632,32633,32634,32635,32636,32637,32638,32639,32640,32641,32642,32643,32644,32645,32646,32647,32648,32649,32650,32651,32652,32653,32654,32655,32656,32657,32658,32659,32660,32661,32662,32663,32664,32665,32666,32667,32668,32669,32670,32671,32672,32673,32674,32675,32676,32677,32678,32679,32680,32681,32682,32683,32684,32685,32686,32687,32688,32689,32690,32691,32692,32693,32694,32695,32696,32697,32698,32699,32700,32701,32702,32703,32704,32705,32706,32707,32708,32709,32710,32711,32712,32713,32714,32715,32716,32717,32718,32719,32720,32721,32722,32723,32724,32725,32726,32727,32728,32729,32730,32731,32732,32733,32734,32735,32736,32737,32738,32739,32740,32741,32742,32743,32744,32745,32746,32747,32748,32749,32750,32751,32752,32753,32754,32755,32756,32757,32758,32759,32760,32761,32762,32763,32764,32765,32766,32767,32768,32769,32770,32771,32772,32773,32774,32775,32776,32777,32778,32779,32780,32781,32782,32783,32784,32785,32786,32787,32788,32789,32790,32791,32792,32793,32794,32795,32796,32797,32798,32799,32800,32801,32802,32803,32804,32805,32806,32807,32808,32809,32810,32811,32812,32813,32814,32815,32816,32817,32818,32819,32820,32821,32822,32823,32824,32825,32826,32827,32828,32829,32830,32831,32832,32833,32834,32835,32836,32837,32838,32839,32840,32841,32842,32843,32844,32845,32846,32847,32848,32849,32850,32851,32852,32853,32854,32855,32856,32857,32858,32859,32860,32861,32862,32863,32864,32865,32866,32867,32868,32869,32870,32871,32872,32873,32874,32875,32876,32877,32878,32879,32880,32881,32882,32883,32884,32885,32886,32887,32888,32889,32890,32891,32892,32893,32894,32895,32896,32897,32898,32899,32900,32901,32902,32903,32904,32905,32906,32907,32908,32909,32910,32911,32912,32913,32914,32915,32916,32917,32918,32919,32920,32921,32922,32923,32924,32925,32926,32927,32928,32929,32930,32931,32932,32933,32934,32935,32936,32937,32938,32939,32940,32941,32942,32943,32944,32945,32946,32947,32948,32949,32950,32951,32952,32953,32954,32955,32956,32957,32958,32959,32960,32961,32962,32963,32964,32965,32966,32967,32968,32969,32970,32971,32972,32973,32974,32975,32976,32977,32978,32979,32980,32981,32982,32983,32984,32985,32986,32987,32988,32989,32990,32991,32992,32993,32994,32995,32996,32997,32998,32999,33000,33001,33002,33003,33004,33005,33006,33007,33008,33009,33010,33011,33012,33013,33014,33015,33016,33017,33018,33019,33020,33021,33022,33023,33024,33025,33026,33027,33028,33029,33030,33031,33032,33033,33034,33035,33036,33037,33038,33039,33040,33041,33042,33043,33044,33045,33046,33047,33048,33049,33050,33051,33052,33053,33054,33055,33056,33057,33058,33059,33060,33061,33062,33063,33064,33065,33066,33067,33068,33069,33070,33071,33072,33073,33074,33075,33076,33077,33078,33079,33080,33081,33082,33083,33084,33085,33086,33087,33088,33089,33090,33091,33092,33093,33094,33095,33096,33097,33098,33099,33100,33101,33102,33103,33104,33105,33106,33107,33108,33109,33110,33111,33112,33113,33114,33115,33116,33117,33118,33119,33120,33121,33122,33123,33124,33125,33126,33127,33128,33129,33130,33131,33132,33133,33134,33135,33136,33137,33138,33139,33140,33141,33142,33143,33144,33145,33146,33147,33148,33149,33150,33151,33152,33153,33154,33155,33156,33157,33158,33159,33160,33161,33162,33163,33164,33165,33166,33167,33168,33169,33170,33171,33172,33173,33174,33175,33176,33177,33178,33179,33180,33181,33182,33183,33184,33185,33186,33187,33188,33189,33190,33191,33192,33193,33194,33195,33196,33197,33198,33199,33200,33201,33202,33203,33204,33205,33206,33207,33208,33209,33210,33211,33212,33213,33214,33215,33216,33217,33218,33219,33220,33221,33222,33223,33224,33225,33226,33227,33228,33229,33230,33231,33232,33233,33234,33235,33236,33237,33238,33239,33240,33241,33242,33243,33244,33245,33246,33247,33248,33249,33250,33251,33252,33253,33254,33255,33256,33257,33258,33259,33260,33261,33262,33263,33264,33265,33266,33267,33268,33269,33270,33271,33272,33273,33274,33275,33276,33277,33278,33279,33280,33281,33282,33283,33284,33285,33286,33287,33288,33289,33290,33291,33292,33293,33294,33295,33296,33297,33298,33299,33300,33301,33302,33303,33304,33305,33306,33307,33308,33309,33310,33311,33312,33313,33314,33315,33316,33317,33318,33319,33320,33321,33322,33323,33324,33325,33326,33327,33328,33329,33330,33331,33332,33333,33334,33335,33336,33337,33338,33339,33340,33341,33342,33343,33344,33345,33346,33347,33348,33349,33350,33351,33352,33353,33354,33355,33356,33357,33358,33359,33360,33361,33362,33363,33364,33365,33366,33367,33368,33369,33370,33371,33372,33373,33374,33375,33376,33377,33378,33379,33380,33381,33382,33383,33384,33385,33386,33387,33388,33389,33390,33391,33392,33393,33394,33395,33396,33397,33398,33399,33400,33401,33402,33403,33404,33405,33406,33407,33408,33409,33410,33411,33412,33413,33414,33415,33416,33417,33418,33419,33420,33421,33422,33423,33424,33425,33426,33427,33428,33429,33430,33431,33432,33433,33434,33435,33436,33437,33438,33439,33440,33441,33442,33443,33444,33445,33446,33447,33448,33449,33450,33451,33452,33453,33454,33455,33456,33457,33458,33459,33460,33461,33462,33463,33464,33465,33466,33467,33468,33469,33470,33471,33472,33473,33474,33475,33476,33477,33478,33479,33480,33481,33482,33483,33484,33485,33486,33487,33488,33489,33490,33491,33492,33493,33494,33495,33496,33497,33498,33499,33500,33501,33502,33503,33504,33505,33506,33507,33508,33509,33510,33511,33512,33513,33514,33515,33516,33517,33518,33519,33520,33521,33522,33523,33524,33525,33526,33527,33528,33529,33530,33531,33532,33533,33534,33535,33536,33537,33538,33539,33540,33541,33542,33543,33544,33545,33546,33547,33548,33549,33550,33551,33552,33553,33554,33555,33556,33557,33558,33559,33560,33561,33562,33563,33564,33565,33566,33567,33568,33569,33570,33571,33572,33573,33574,33575,33576,33577,33578,33579,33580,33581,33582,33583,33584,33585,33586,33587,33588,33589,33590,33591,33592,33593,33594,33595,33596,33597,33598,33599,33600,33601,33602,33603,33604,33605,33606,33607,33608,33609,33610,33611,33612,33613,33614,33615,33616,33617,33618,33619,33620,33621,33622,33623,33624,33625,33626,33627,33628,33629,33630,33631,33632,33633,33634,33635,33636,33637,33638,33639,33640,33641,33642,33643,33644,33645,33646,33647,33648,33649,33650,33651,33652,33653,33654,33655,33656,33657,33658,33659,33660,33661,33662,33663,33664,33665,33666,33667,33668,33669,33670,33671,33672,33673,33674,33675,33676,33677,33678,33679,33680,33681,33682,33683,33684,33685,33686,33687,33688,33689,33690,33691,33692,33693,33694,33695,33696,33697,33698,33699,33700,33701,33702,33703,33704,33705,33706,33707,33708,33709,33710,33711,33712,33713,33714,33715,33716,33717,33718,33719,33720,33721,33722,33723,33724,33725,33726,33727,33728,33729,33730,33731,33732,33733,33734,33735,33736,33737,33738,33739,33740,33741,33742,33743,33744,33745,33746,33747,33748,33749,33750,33751,33752,33753,33754,33755,33756,33757,33758,33759,33760,33761,33762,33763,33764,33765,33766,33767,33768,33769,33770,33771,33772,33773,33774,33775,33776,33777,33778,33779,33780,33781,33782,33783,33784,33785,33786,33787,33788,33789,33790,33791,33792,33793,33794,33795,33796,33797,33798,33799,33800,33801,33802,33803,33804,33805,33806,33807,33808,33809,33810,33811,33812,33813,33814,33815,33816,33817,33818,33819,33820,33821,33822,33823,33824,33825,33826,33827,33828,33829,33830,33831,33832,33833,33834,33835,33836,33837,33838,33839,33840,33841,33842,33843,33844,33845,33846,33847,33848,33849,33850,33851,33852,33853,33854,33855,33856,33857,33858,33859,33860,33861,33862,33863,33864,33865,33866,33867,33868,33869,33870,33871,33872,33873,33874,33875,33876,33877,33878,33879,33880,33881,33882,33883,33884,33885,33886,33887,33888,33889,33890,33891,33892,33893,33894,33895,33896,33897,33898,33899,33900,33901,33902,33903,33904,33905,33906,33907,33908,33909,33910,33911,33912,33913,33914,33915,33916,33917,33918,33919,33920,33921,33922,33923,33924,33925,33926,33927,33928,33929,33930,33931,33932,33933,33934,33935,33936,33937,33938,33939,33940,33941,33942,33943,33944,33945,33946,33947,33948,33949,33950,33951,33952,33953,33954,33955,33956,33957,33958,33959,33960,33961,33962,33963,33964,33965,33966,33967,33968,33969,33970,33971,33972,33973,33974,33975,33976,33977,33978,33979,33980,33981,33982,33983,33984,33985,33986,33987,33988,33989,33990,33991,33992,33993,33994,33995,33996,33997,33998,33999,34000,34001,34002,34003,34004,34005,34006,34007,34008,34009,34010,34011,34012,34013,34014,34015,34016,34017,34018,34019,34020,34021,34022,34023,34024,34025,34026,34027,34028,34029,34030,34031,34032,34033,34034,34035,34036,34037,34038,34039,34040,34041,34042,34043,34044,34045,34046,34047,34048,34049,34050,34051,34052,34053,34054,34055,34056,34057,34058,34059,34060,34061,34062,34063,34064,34065,34066,34067,34068,34069,34070,34071,34072,34073,34074,34075,34076,34077,34078,34079,34080,34081,34082,34083,34084,34085,34086,34087,34088,34089,34090,34091,34092,34093,34094,34095,34096,34097,34098,34099,34100,34101,34102,34103,34104,34105,34106,34107,34108,34109,34110,34111,34112,34113,34114,34115,34116,34117,34118,34119,34120,34121,34122,34123,34124,34125,34126,34127,34128,34129,34130,34131,34132,34133,34134,34135,34136,34137,34138,34139,34140,34141,34142,34143,34144,34145,34146,34147,34148,34149,34150,34151,34152,34153,34154,34155,34156,34157,34158,34159,34160,34161,34162,34163,34164,34165,34166,34167,34168,34169,34170,34171,34172,34173,34174,34175,34176,34177,34178,34179,34180,34181,34182,34183,34184,34185,34186,34187,34188,34189,34190,34191,34192,34193,34194,34195,34196,34197,34198,34199,34200,34201,34202,34203,34204,34205,34206,34207,34208,34209,34210,34211,34212,34213,34214,34215,34216,34217,34218,34219,34220,34221,34222,34223,34224,34225,34226,34227,34228,34229,34230,34231,34232,34233,34234,34235,34236,34237,34238,34239,34240,34241,34242,34243,34244,34245,34246,34247,34248,34249,34250,34251,34252,34253,34254,34255,34256,34257,34258,34259,34260,34261,34262,34263,34264,34265,34266,34267,34268,34269,34270,34271,34272,34273,34274,34275,34276,34277,34278,34279,34280,34281,34282,34283,34284,34285,34286,34287,34288,34289,34290,34291,34292,34293,34294,34295,34296,34297,34298,34299,34300,34301,34302,34303,34304,34305,34306,34307,34308,34309,34310,34311,34312,34313,34314,34315,34316,34317,34318,34319,34320,34321,34322,34323,34324,34325,34326,34327,34328,34329,34330,34331,34332,34333,34334,34335,34336,34337,34338,34339,34340,34341,34342,34343,34344,34345,34346,34347,34348,34349,34350,34351,34352,34353,34354,34355,34356,34357,34358,34359,34360,34361,34362,34363,34364,34365,34366,34367,34368,34369,34370,34371,34372,34373,34374,34375,34376,34377,34378,34379,34380,34381,34382,34383,34384,34385,34386,34387,34388,34389,34390,34391,34392,34393,34394,34395,34396,34397,34398,34399,34400,34401,34402,34403,34404,34405,34406,34407,34408,34409,34410,34411,34412,34413,34414,34415,34416,34417,34418,34419,34420,34421,34422,34423,34424,34425,34426,34427,34428,34429,34430,34431,34432,34433,34434,34435,34436,34437,34438,34439,34440,34441,34442,34443,34444,34445,34446,34447,34448,34449,34450,34451,34452,34453,34454,34455,34456,34457,34458,34459,34460,34461,34462,34463,34464,34465,34466,34467,34468,34469,34470,34471,34472,34473,34474,34475,34476,34477,34478,34479,34480,34481,34482,34483,34484,34485,34486,34487,34488,34489,34490,34491,34492,34493,34494,34495,34496,34497,34498,34499,34500,34501,34502,34503,34504,34505,34506,34507,34508,34509,34510,34511,34512,34513,34514,34515,34516,34517,34518,34519,34520,34521,34522,34523,34524,34525,34526,34527,34528,34529,34530,34531,34532,34533,34534,34535,34536,34537,34538,34539,34540,34541,34542,34543,34544,34545,34546,34547,34548,34549,34550,34551,34552,34553,34554,34555,34556,34557,34558,34559,34560,34561,34562,34563,34564,34565,34566,34567,34568,34569,34570,34571,34572,34573,34574,34575,34576,34577,34578,34579,34580,34581,34582,34583,34584,34585,34586,34587,34588,34589,34590,34591,34592,34593,34594,34595,34596,34597,34598,34599,34600,34601,34602,34603,34604,34605,34606,34607,34608,34609,34610,34611,34612,34613,34614,34615,34616,34617,34618,34619,34620,34621,34622,34623,34624,34625,34626,34627,34628,34629,34630,34631,34632,34633,34634,34635,34636,34637,34638,34639,34640,34641,34642,34643,34644,34645,34646,34647,34648,34649,34650,34651,34652,34653,34654,34655,34656,34657,34658,34659,34660,34661,34662,34663,34664,34665,34666,34667,34668,34669,34670,34671,34672,34673,34674,34675,34676,34677,34678,34679,34680,34681,34682,34683,34684,34685,34686,34687,34688,34689,34690,34691,34692,34693,34694,34695,34696,34697,34698,34699,34700,34701,34702,34703,34704,34705,34706,34707,34708,34709,34710,34711,34712,34713,34714,34715,34716,34717,34718,34719,34720,34721,34722,34723,34724,34725,34726,34727,34728,34729,34730,34731,34732,34733,34734,34735,34736,34737,34738,34739,34740,34741,34742,34743,34744,34745,34746,34747,34748,34749,34750,34751,34752,34753,34754,34755,34756,34757,34758,34759,34760,34761,34762,34763,34764,34765,34766,34767,34768,34769,34770,34771,34772,34773,34774,34775,34776,34777,34778,34779,34780,34781,34782,34783,34784,34785,34786,34787,34788,34789,34790,34791,34792,34793,34794,34795,34796,34797,34798,34799,34800,34801,34802,34803,34804,34805,34806,34807,34808,34809,34810,34811,34812,34813,34814,34815,34816,34817,34818,34819,34820,34821,34822,34823,34824,34825,34826,34827,34828,34829,34830,34831,34832,34833,34834,34835,34836,34837,34838,34839,34840,34841,34842,34843,34844,34845,34846,34847,34848,34849,34850,34851,34852,34853,34854,34855,34856,34857,34858,34859,34860,34861,34862,34863,34864,34865,34866,34867,34868,34869,34870,34871,34872,34873,34874,34875,34876,34877,34878,34879,34880,34881,34882,34883,34884,34885,34886,34887,34888,34889,34890,34891,34892,34893,34894,34895,34896,34897,34898,34899,34900,34901,34902,34903,34904,34905,34906,34907,34908,34909,34910,34911,34912,34913,34914,34915,34916,34917,34918,34919,34920,34921,34922,34923,34924,34925,34926,34927,34928,34929,34930,34931,34932,34933,34934,34935,34936,34937,34938,34939,34940,34941,34942,34943,34944,34945,34946,34947,34948,34949,34950,34951,34952,34953,34954,34955,34956,34957,34958,34959,34960,34961,34962,34963,34964,34965,34966,34967,34968,34969,34970,34971,34972,34973,34974,34975,34976,34977,34978,34979,34980,34981,34982,34983,34984,34985,34986,34987,34988,34989,34990,34991,34992,34993,34994,34995,34996,34997,34998,34999,35000,35001,35002,35003,35004,35005,35006,35007,35008,35009,35010,35011,35012,35013,35014,35015,35016,35017,35018,35019,35020,35021,35022,35023,35024,35025,35026,35027,35028,35029,35030,35031,35032,35033,35034,35035,35036,35037,35038,35039,35040,35041,35042,35043,35044,35045,35046,35047,35048,35049,35050,35051,35052,35053,35054,35055,35056,35057,35058,35059,35060,35061,35062,35063,35064,35065,35066,35067,35068,35069,35070,35071,35072,35073,35074,35075,35076,35077,35078,35079,35080,35081,35082,35083,35084,35085,35086,35087,35088,35089,35090,35091,35092,35093,35094,35095,35096,35097,35098,35099,35100,35101,35102,35103,35104,35105,35106,35107,35108,35109,35110,35111,35112,35113,35114,35115,35116,35117,35118,35119,35120,35121,35122,35123,35124,35125,35126,35127,35128,35129,35130,35131,35132,35133,35134,35135,35136,35137,35138,35139,35140,35141,35142,35143,35144,35145,35146,35147,35148,35149,35150,35151,35152,35153,35154,35155,35156,35157,35158,35159,35160,35161,35162,35163,35164,35165,35166,35167,35168,35169,35170,35171,35172,35173,35174,35175,35176,35177,35178,35179,35180,35181,35182,35183,35184,35185,35186,35187,35188,35189,35190,35191,35192,35193,35194,35195,35196,35197,35198,35199,35200,35201,35202,35203,35204,35205,35206,35207,35208,35209,35210,35211,35212,35213,35214,35215,35216,35217,35218,35219,35220,35221,35222,35223,35224,35225,35226,35227,35228,35229,35230,35231,35232,35233,35234,35235,35236,35237,35238,35239,35240,35241,35242,35243,35244,35245,35246,35247,35248,35249,35250,35251,35252,35253,35254,35255,35256,35257,35258,35259,35260,35261,35262,35263,35264,35265,35266,35267,35268,35269,35270,35271,35272,35273,35274,35275,35276,35277,35278,35279,35280,35281,35282,35283,35284,35285,35286,35287,35288,35289,35290,35291,35292,35293,35294,35295,35296,35297,35298,35299,35300,35301,35302,35303,35304,35305,35306,35307,35308,35309,35310,35311,35312,35313,35314,35315,35316,35317,35318,35319,35320,35321,35322,35323,35324,35325,35326,35327,35328,35329,35330,35331,35332,35333,35334,35335,35336,35337,35338,35339,35340,35341,35342,35343,35344,35345,35346,35347,35348,35349,35350,35351,35352,35353,35354,35355,35356,35357,35358,35359,35360,35361,35362,35363,35364,35365,35366,35367,35368,35369,35370,35371,35372,35373,35374,35375,35376,35377,35378,35379,35380,35381,35382,35383,35384,35385,35386,35387,35388,35389,35390,35391,35392,35393,35394,35395,35396,35397,35398,35399,35400,35401,35402,35403,35404,35405,35406,35407,35408,35409,35410,35411,35412,35413,35414,35415,35416,35417,35418,35419,35420,35421,35422,35423,35424,35425,35426,35427,35428,35429,35430,35431,35432,35433,35434,35435,35436,35437,35438,35439,35440,35441,35442,35443,35444,35445,35446,35447,35448,35449,35450,35451,35452,35453,35454,35455,35456,35457,35458,35459,35460,35461,35462,35463,35464,35465,35466,35467,35468,35469,35470,35471,35472,35473,35474,35475,35476,35477,35478,35479,35480,35481,35482,35483,35484,35485,35486,35487,35488,35489,35490,35491,35492,35493,35494,35495,35496,35497,35498,35499,35500,35501,35502,35503,35504,35505,35506,35507,35508,35509,35510,35511,35512,35513,35514,35515,35516,35517,35518,35519,35520,35521,35522,35523,35524,35525,35526,35527,35528,35529,35530,35531,35532,35533,35534,35535,35536,35537,35538,35539,35540,35541,35542,35543,35544,35545,35546,35547,35548,35549,35550,35551,35552,35553,35554,35555,35556,35557,35558,35559,35560,35561,35562,35563,35564,35565,35566,35567,35568,35569,35570,35571,35572,35573,35574,35575,35576,35577,35578,35579,35580,35581,35582,35583,35584,35585,35586,35587,35588,35589,35590,35591,35592,35593,35594,35595,35596,35597,35598,35599,35600,35601,35602,35603,35604,35605,35606,35607,35608,35609,35610,35611,35612,35613,35614,35615,35616,35617,35618,35619,35620,35621,35622,35623,35624,35625,35626,35627,35628,35629,35630,35631,35632,35633,35634,35635,35636,35637,35638,35639,35640,35641,35642,35643,35644,35645,35646,35647,35648,35649,35650,35651,35652,35653,35654,35655,35656,35657,35658,35659,35660,35661,35662,35663,35664,35665,35666,35667,35668,35669,35670,35671,35672,35673,35674,35675,35676,35677,35678,35679,35680,35681,35682,35683,35684,35685,35686,35687,35688,35689,35690,35691,35692,35693,35694,35695,35696,35697,35698,35699,35700,35701,35702,35703,35704,35705,35706,35707,35708,35709,35710,35711,35712,35713,35714,35715,35716,35717,35718,35719,35720,35721,35722,35723,35724,35725,35726,35727,35728,35729,35730,35731,35732,35733,35734,35735,35736,35737,35738,35739,35740,35741,35742,35743,35744,35745,35746,35747,35748,35749,35750,35751,35752,35753,35754,35755,35756,35757,35758,35759,35760,35761,35762,35763,35764,35765,35766,35767,35768,35769,35770,35771,35772,35773,35774,35775,35776,35777,35778,35779,35780,35781,35782,35783,35784,35785,35786,35787,35788,35789,35790,35791,35792,35793,35794,35795,35796,35797,35798,35799,35800,35801,35802,35803,35804,35805,35806,35807,35808,35809,35810,35811,35812,35813,35814,35815,35816,35817,35818,35819,35820,35821,35822,35823,35824,35825,35826,35827,35828,35829,35830,35831,35832,35833,35834,35835,35836,35837,35838,35839,35840,35841,35842,35843,35844,35845,35846,35847,35848,35849,35850,35851,35852,35853,35854,35855,35856,35857,35858,35859,35860,35861,35862,35863,35864,35865,35866,35867,35868,35869,35870,35871,35872,35873,35874,35875,35876,35877,35878,35879,35880,35881,35882,35883,35884,35885,35886,35887,35888,35889,35890,35891,35892,35893,35894,35895,35896,35897,35898,35899,35900,35901,35902,35903,35904,35905,35906,35907,35908,35909,35910,35911,35912,35913,35914,35915,35916,35917,35918,35919,35920,35921,35922,35923,35924,35925,35926,35927,35928,35929,35930,35931,35932,35933,35934,35935,35936,35937,35938,35939,35940,35941,35942,35943,35944,35945,35946,35947,35948,35949,35950,35951,35952,35953,35954,35955,35956,35957,35958,35959,35960,35961,35962,35963,35964,35965,35966,35967,35968,35969,35970,35971,35972,35973,35974,35975,35976,35977,35978,35979,35980,35981,35982,35983,35984,35985,35986,35987,35988,35989,35990,35991,35992,35993,35994,35995,35996,35997,35998,35999,36000,36001,36002,36003,36004,36005,36006,36007,36008,36009,36010,36011,36012,36013,36014,36015,36016,36017,36018,36019,36020,36021,36022,36023,36024,36025,36026,36027,36028,36029,36030,36031,36032,36033,36034,36035,36036,36037,36038,36039,36040,36041,36042,36043,36044,36045,36046,36047,36048,36049,36050,36051,36052,36053,36054,36055,36056,36057,36058,36059,36060,36061,36062,36063,36064,36065,36066,36067,36068,36069,36070,36071,36072,36073,36074,36075,36076,36077,36078,36079,36080,36081,36082,36083,36084,36085,36086,36087,36088,36089,36090,36091,36092,36093,36094,36095,36096,36097,36098,36099,36100,36101,36102,36103,36104,36105,36106,36107,36108,36109,36110,36111,36112,36113,36114,36115,36116,36117,36118,36119,36120,36121,36122,36123,36124,36125,36126,36127,36128,36129,36130,36131,36132,36133,36134,36135,36136,36137,36138,36139,36140,36141,36142,36143,36144,36145,36146,36147,36148,36149,36150,36151,36152,36153,36154,36155,36156,36157,36158,36159,36160,36161,36162,36163,36164,36165,36166,36167,36168,36169,36170,36171,36172,36173,36174,36175,36176,36177,36178,36179,36180,36181,36182,36183,36184,36185,36186,36187,36188,36189,36190,36191,36192,36193,36194,36195,36196,36197,36198,36199,36200,36201,36202,36203,36204,36205,36206,36207,36208,36209,36210,36211,36212,36213,36214,36215,36216,36217,36218,36219,36220,36221,36222,36223,36224,36225,36226,36227,36228,36229,36230,36231,36232,36233,36234,36235,36236,36237,36238,36239,36240,36241,36242,36243,36244,36245,36246,36247,36248,36249,36250,36251,36252,36253,36254,36255,36256,36257,36258,36259,36260,36261,36262,36263,36264,36265,36266,36267,36268,36269,36270,36271,36272,36273,36274,36275,36276,36277,36278,36279,36280,36281,36282,36283,36284,36285,36286,36287,36288,36289,36290,36291,36292,36293,36294,36295,36296,36297,36298,36299,36300,36301,36302,36303,36304,36305,36306,36307,36308,36309,36310,36311,36312,36313,36314,36315,36316,36317,36318,36319,36320,36321,36322,36323,36324,36325,36326,36327,36328,36329,36330,36331,36332,36333,36334,36335,36336,36337,36338,36339,36340,36341,36342,36343,36344,36345,36346,36347,36348,36349,36350,36351,36352,36353,36354,36355,36356,36357,36358,36359,36360,36361,36362,36363,36364,36365,36366,36367,36368,36369,36370,36371,36372,36373,36374,36375,36376,36377,36378,36379,36380,36381,36382,36383,36384,36385,36386,36387,36388,36389,36390,36391,36392,36393,36394,36395,36396,36397,36398,36399,36400,36401,36402,36403,36404,36405,36406,36407,36408,36409,36410,36411,36412,36413,36414,36415,36416,36417,36418,36419,36420,36421,36422,36423,36424,36425,36426,36427,36428,36429,36430,36431,36432,36433,36434,36435,36436,36437,36438,36439,36440,36441,36442,36443,36444,36445,36446,36447,36448,36449,36450,36451,36452,36453,36454,36455,36456,36457,36458,36459,36460,36461,36462,36463,36464,36465,36466,36467,36468,36469,36470,36471,36472,36473,36474,36475,36476,36477,36478,36479,36480,36481,36482,36483,36484,36485,36486,36487,36488,36489,36490,36491,36492,36493,36494,36495,36496,36497,36498,36499,36500,36501,36502,36503,36504,36505,36506,36507,36508,36509,36510,36511,36512,36513,36514,36515,36516,36517,36518,36519,36520,36521,36522,36523,36524,36525,36526,36527,36528,36529,36530,36531,36532,36533,36534,36535,36536,36537,36538,36539,36540,36541,36542,36543,36544,36545,36546,36547,36548,36549,36550,36551,36552,36553,36554,36555,36556,36557,36558,36559,36560,36561,36562,36563,36564,36565,36566,36567,36568,36569,36570,36571,36572,36573,36574,36575,36576,36577,36578,36579,36580,36581,36582,36583,36584,36585,36586,36587,36588,36589,36590,36591,36592,36593,36594,36595,36596,36597,36598,36599,36600,36601,36602,36603,36604,36605,36606,36607,36608,36609,36610,36611,36612,36613,36614,36615,36616,36617,36618,36619,36620,36621,36622,36623,36624,36625,36626,36627,36628,36629,36630,36631,36632,36633,36634,36635,36636,36637,36638,36639,36640,36641,36642,36643,36644,36645,36646,36647,36648,36649,36650,36651,36652,36653,36654,36655,36656,36657,36658,36659,36660,36661,36662,36663,36664,36665,36666,36667,36668,36669,36670,36671,36672,36673,36674,36675,36676,36677,36678,36679,36680,36681,36682,36683,36684,36685,36686,36687,36688,36689,36690,36691,36692,36693,36694,36695,36696,36697,36698,36699,36700,36701,36702,36703,36704,36705,36706,36707,36708,36709,36710,36711,36712,36713,36714,36715,36716,36717,36718,36719,36720,36721,36722,36723,36724,36725,36726,36727,36728,36729,36730,36731,36732,36733,36734,36735,36736,36737,36738,36739,36740,36741,36742,36743,36744,36745,36746,36747,36748,36749,36750,36751,36752,36753,36754,36755,36756,36757,36758,36759,36760,36761,36762,36763,36764,36765,36766,36767,36768,36769,36770,36771,36772,36773,36774,36775,36776,36777,36778,36779,36780,36781,36782,36783,36784,36785,36786,36787,36788,36789,36790,36791,36792,36793,36794,36795,36796,36797,36798,36799,36800,36801,36802,36803,36804,36805,36806,36807,36808,36809,36810,36811,36812,36813,36814,36815,36816,36817,36818,36819,36820,36821,36822,36823,36824,36825,36826,36827,36828,36829,36830,36831,36832,36833,36834,36835,36836,36837,36838,36839,36840,36841,36842,36843,36844,36845,36846,36847,36848,36849,36850,36851,36852,36853,36854,36855,36856,36857,36858,36859,36860,36861,36862,36863,36864,36865,36866,36867,36868,36869,36870,36871,36872,36873,36874,36875,36876,36877,36878,36879,36880,36881,36882,36883,36884,36885,36886,36887,36888,36889,36890,36891,36892,36893,36894,36895,36896,36897,36898,36899,36900,36901,36902,36903,36904,36905,36906,36907,36908,36909,36910,36911,36912,36913,36914,36915,36916,36917,36918,36919,36920,36921,36922,36923,36924,36925,36926,36927,36928,36929,36930,36931,36932,36933,36934,36935,36936,36937,36938,36939,36940,36941,36942,36943,36944,36945,36946,36947,36948,36949,36950,36951,36952,36953,36954,36955,36956,36957,36958,36959,36960,36961,36962,36963,36964,36965,36966,36967,36968,36969,36970,36971,36972,36973,36974,36975,36976,36977,36978,36979,36980,36981,36982,36983,36984,36985,36986,36987,36988,36989,36990,36991,36992,36993,36994,36995,36996,36997,36998,36999,37000,37001,37002,37003,37004,37005,37006,37007,37008,37009,37010,37011,37012,37013,37014,37015,37016,37017,37018,37019,37020,37021,37022,37023,37024,37025,37026,37027,37028,37029,37030,37031,37032,37033,37034,37035,37036,37037,37038,37039,37040,37041,37042,37043,37044,37045,37046,37047,37048,37049,37050,37051,37052,37053,37054,37055,37056,37057,37058,37059,37060,37061,37062,37063,37064,37065,37066,37067,37068,37069,37070,37071,37072,37073,37074,37075,37076,37077,37078,37079,37080,37081,37082,37083,37084,37085,37086,37087,37088,37089,37090,37091,37092,37093,37094,37095,37096,37097,37098,37099,37100,37101,37102,37103,37104,37105,37106,37107,37108,37109,37110,37111,37112,37113,37114,37115,37116,37117,37118,37119,37120,37121,37122,37123,37124,37125,37126,37127,37128,37129,37130,37131,37132,37133,37134,37135,37136,37137,37138,37139,37140,37141,37142,37143,37144,37145,37146,37147,37148,37149,37150,37151,37152,37153,37154,37155,37156,37157,37158,37159,37160,37161,37162,37163,37164,37165,37166,37167,37168,37169,37170,37171,37172,37173,37174,37175,37176,37177,37178,37179,37180,37181,37182,37183,37184,37185,37186,37187,37188,37189,37190,37191,37192,37193,37194,37195,37196,37197,37198,37199,37200,37201,37202,37203,37204,37205,37206,37207,37208,37209,37210,37211,37212,37213,37214,37215,37216,37217,37218,37219,37220,37221,37222,37223,37224,37225,37226,37227,37228,37229,37230,37231,37232,37233,37234,37235,37236,37237,37238,37239,37240,37241,37242,37243,37244,37245,37246,37247,37248,37249,37250,37251,37252,37253,37254,37255,37256,37257,37258,37259,37260,37261,37262,37263,37264,37265,37266,37267,37268,37269,37270,37271,37272,37273,37274,37275,37276,37277,37278,37279,37280,37281,37282,37283,37284,37285,37286,37287,37288,37289,37290,37291,37292,37293,37294,37295,37296,37297,37298,37299,37300,37301,37302,37303,37304,37305,37306,37307,37308,37309,37310,37311,37312,37313,37314,37315,37316,37317,37318,37319,37320,37321,37322,37323,37324,37325,37326,37327,37328,37329,37330,37331,37332,37333,37334,37335,37336,37337,37338,37339,37340,37341,37342,37343,37344,37345,37346,37347,37348,37349,37350,37351,37352,37353,37354,37355,37356,37357,37358,37359,37360,37361,37362,37363,37364,37365,37366,37367,37368,37369,37370,37371,37372,37373,37374,37375,37376,37377,37378,37379,37380,37381,37382,37383,37384,37385,37386,37387,37388,37389,37390,37391,37392,37393,37394,37395,37396,37397,37398,37399,37400,37401,37402,37403,37404,37405,37406,37407,37408,37409,37410,37411,37412,37413,37414,37415,37416,37417,37418,37419,37420,37421,37422,37423,37424,37425,37426,37427,37428,37429,37430,37431,37432,37433,37434,37435,37436,37437,37438,37439,37440,37441,37442,37443,37444,37445,37446,37447,37448,37449,37450,37451,37452,37453,37454,37455,37456,37457,37458,37459,37460,37461,37462,37463,37464,37465,37466,37467,37468,37469,37470,37471,37472,37473,37474,37475,37476,37477,37478,37479,37480,37481,37482,37483,37484,37485,37486,37487,37488,37489,37490,37491,37492,37493,37494,37495,37496,37497,37498,37499,37500,37501,37502,37503,37504,37505,37506,37507,37508,37509,37510,37511,37512,37513,37514,37515,37516,37517,37518,37519,37520,37521,37522,37523,37524,37525,37526,37527,37528,37529,37530,37531,37532,37533,37534,37535,37536,37537,37538,37539,37540,37541,37542,37543,37544,37545,37546,37547,37548,37549,37550,37551,37552,37553,37554,37555,37556,37557,37558,37559,37560,37561,37562,37563,37564,37565,37566,37567,37568,37569,37570,37571,37572,37573,37574,37575,37576,37577,37578,37579,37580,37581,37582,37583,37584,37585,37586,37587,37588,37589,37590,37591,37592,37593,37594,37595,37596,37597,37598,37599,37600,37601,37602,37603,37604,37605,37606,37607,37608,37609,37610,37611,37612,37613,37614,37615,37616,37617,37618,37619,37620,37621,37622,37623,37624,37625,37626,37627,37628,37629,37630,37631,37632,37633,37634,37635,37636,37637,37638,37639,37640,37641,37642,37643,37644,37645,37646,37647,37648,37649,37650,37651,37652,37653,37654,37655,37656,37657,37658,37659,37660,37661,37662,37663,37664,37665,37666,37667,37668,37669,37670,37671,37672,37673,37674,37675,37676,37677,37678,37679,37680,37681,37682,37683,37684,37685,37686,37687,37688,37689,37690,37691,37692,37693,37694,37695,37696,37697,37698,37699,37700,37701,37702,37703,37704,37705,37706,37707,37708,37709,37710,37711,37712,37713,37714,37715,37716,37717,37718,37719,37720,37721,37722,37723,37724,37725,37726,37727,37728,37729,37730,37731,37732,37733,37734,37735,37736,37737,37738,37739,37740,37741,37742,37743,37744,37745,37746,37747,37748,37749,37750,37751,37752,37753,37754,37755,37756,37757,37758,37759,37760,37761,37762,37763,37764,37765,37766,37767,37768,37769,37770,37771,37772,37773,37774,37775,37776,37777,37778,37779,37780,37781,37782,37783,37784,37785,37786,37787,37788,37789,37790,37791,37792,37793,37794,37795,37796,37797,37798,37799,37800,37801,37802,37803,37804,37805,37806,37807,37808,37809,37810,37811,37812,37813,37814,37815,37816,37817,37818,37819,37820,37821,37822,37823,37824,37825,37826,37827,37828,37829,37830,37831,37832,37833,37834,37835,37836,37837,37838,37839,37840,37841,37842,37843,37844,37845,37846,37847,37848,37849,37850,37851,37852,37853,37854,37855,37856,37857,37858,37859,37860,37861,37862,37863,37864,37865,37866,37867,37868,37869,37870,37871,37872,37873,37874,37875,37876,37877,37878,37879,37880,37881,37882,37883,37884,37885,37886,37887,37888,37889,37890,37891,37892,37893,37894,37895,37896,37897,37898,37899,37900,37901,37902,37903,37904,37905,37906,37907,37908,37909,37910,37911,37912,37913,37914,37915,37916,37917,37918,37919,37920,37921,37922,37923,37924,37925,37926,37927,37928,37929,37930,37931,37932,37933,37934,37935,37936,37937,37938,37939,37940,37941,37942,37943,37944,37945,37946,37947,37948,37949,37950,37951,37952,37953,37954,37955,37956,37957,37958,37959,37960,37961,37962,37963,37964,37965,37966,37967,37968,37969,37970,37971,37972,37973,37974,37975,37976,37977,37978,37979,37980,37981,37982,37983,37984,37985,37986,37987,37988,37989,37990,37991,37992,37993,37994,37995,37996,37997,37998,37999,38000,38001,38002,38003,38004,38005,38006,38007,38008,38009,38010,38011,38012,38013,38014,38015,38016,38017,38018,38019,38020,38021,38022,38023,38024,38025,38026,38027,38028,38029,38030,38031,38032,38033,38034,38035,38036,38037,38038,38039,38040,38041,38042,38043,38044,38045,38046,38047,38048,38049,38050,38051,38052,38053,38054,38055,38056,38057,38058,38059,38060,38061,38062,38063,38064,38065,38066,38067,38068,38069,38070,38071,38072,38073,38074,38075,38076,38077,38078,38079,38080,38081,38082,38083,38084,38085,38086,38087,38088,38089,38090,38091,38092,38093,38094,38095,38096,38097,38098,38099,38100,38101,38102,38103,38104,38105,38106,38107,38108,38109,38110,38111,38112,38113,38114,38115,38116,38117,38118,38119,38120,38121,38122,38123,38124,38125,38126,38127,38128,38129,38130,38131,38132,38133,38134,38135,38136,38137,38138,38139,38140,38141,38142,38143,38144,38145,38146,38147,38148,38149,38150,38151,38152,38153,38154,38155,38156,38157,38158,38159,38160,38161,38162,38163,38164,38165,38166,38167,38168,38169,38170,38171,38172,38173,38174,38175,38176,38177,38178,38179,38180,38181,38182,38183,38184,38185,38186,38187,38188,38189,38190,38191,38192,38193,38194,38195,38196,38197,38198,38199,38200,38201,38202,38203,38204,38205,38206,38207,38208,38209,38210,38211,38212,38213,38214,38215,38216,38217,38218,38219,38220,38221,38222,38223,38224,38225,38226,38227,38228,38229,38230,38231,38232,38233,38234,38235,38236,38237,38238,38239,38240,38241,38242,38243,38244,38245,38246,38247,38248,38249,38250,38251,38252,38253,38254,38255,38256,38257,38258,38259,38260,38261,38262,38263,38264,38265,38266,38267,38268,38269,38270,38271,38272,38273,38274,38275,38276,38277,38278,38279,38280,38281,38282,38283,38284,38285,38286,38287,38288,38289,38290,38291,38292,38293,38294,38295,38296,38297,38298,38299,38300,38301,38302,38303,38304,38305,38306,38307,38308,38309,38310,38311,38312,38313,38314,38315,38316,38317,38318,38319,38320,38321,38322,38323,38324,38325,38326,38327,38328,38329,38330,38331,38332,38333,38334,38335,38336,38337,38338,38339,38340,38341,38342,38343,38344,38345,38346,38347,38348,38349,38350,38351,38352,38353,38354,38355,38356,38357,38358,38359,38360,38361,38362,38363,38364,38365,38366,38367,38368,38369,38370,38371,38372,38373,38374,38375,38376,38377,38378,38379,38380,38381,38382,38383,38384,38385,38386,38387,38388,38389,38390,38391,38392,38393,38394,38395,38396,38397,38398,38399,38400,38401,38402,38403,38404,38405,38406,38407,38408,38409,38410,38411,38412,38413,38414,38415,38416,38417,38418,38419,38420,38421,38422,38423,38424,38425,38426,38427,38428,38429,38430,38431,38432,38433,38434,38435,38436,38437,38438,38439,38440,38441,38442,38443,38444,38445,38446,38447,38448,38449,38450,38451,38452,38453,38454,38455,38456,38457,38458,38459,38460,38461,38462,38463,38464,38465,38466,38467,38468,38469,38470,38471,38472,38473,38474,38475,38476,38477,38478,38479,38480,38481,38482,38483,38484,38485,38486,38487,38488,38489,38490,38491,38492,38493,38494,38495,38496,38497,38498,38499,38500,38501,38502,38503,38504,38505,38506,38507,38508,38509,38510,38511,38512,38513,38514,38515,38516,38517,38518,38519,38520,38521,38522,38523,38524,38525,38526,38527,38528,38529,38530,38531,38532,38533,38534,38535,38536,38537,38538,38539,38540,38541,38542,38543,38544,38545,38546,38547,38548,38549,38550,38551,38552,38553,38554,38555,38556,38557,38558,38559,38560,38561,38562,38563,38564,38565,38566,38567,38568,38569,38570,38571,38572,38573,38574,38575,38576,38577,38578,38579,38580,38581,38582,38583,38584,38585,38586,38587,38588,38589,38590,38591,38592,38593,38594,38595,38596,38597,38598,38599,38600,38601,38602,38603,38604,38605,38606,38607,38608,38609,38610,38611,38612,38613,38614,38615,38616,38617,38618,38619,38620,38621,38622,38623,38624,38625,38626,38627,38628,38629,38630,38631,38632,38633,38634,38635,38636,38637,38638,38639,38640,38641,38642,38643,38644,38645,38646,38647,38648,38649,38650,38651,38652,38653,38654,38655,38656,38657,38658,38659,38660,38661,38662,38663,38664,38665,38666,38667,38668,38669,38670,38671,38672,38673,38674,38675,38676,38677,38678,38679,38680,38681,38682,38683,38684,38685,38686,38687,38688,38689,38690,38691,38692,38693,38694,38695,38696,38697,38698,38699,38700,38701,38702,38703,38704,38705,38706,38707,38708,38709,38710,38711,38712,38713,38714,38715,38716,38717,38718,38719,38720,38721,38722,38723,38724,38725,38726,38727,38728,38729,38730,38731,38732,38733,38734,38735,38736,38737,38738,38739,38740,38741,38742,38743,38744,38745,38746,38747,38748,38749,38750,38751,38752,38753,38754,38755,38756,38757,38758,38759,38760,38761,38762,38763,38764,38765,38766,38767,38768,38769,38770,38771,38772,38773,38774,38775,38776,38777,38778,38779,38780,38781,38782,38783,38784,38785,38786,38787,38788,38789,38790,38791,38792,38793,38794,38795,38796,38797,38798,38799,38800,38801,38802,38803,38804,38805,38806,38807,38808,38809,38810,38811,38812,38813,38814,38815,38816,38817,38818,38819,38820,38821,38822,38823,38824,38825,38826,38827,38828,38829,38830,38831,38832,38833,38834,38835,38836,38837,38838,38839,38840,38841,38842,38843,38844,38845,38846,38847,38848,38849,38850,38851,38852,38853,38854,38855,38856,38857,38858,38859,38860,38861,38862,38863,38864,38865,38866,38867,38868,38869,38870,38871,38872,38873,38874,38875,38876,38877,38878,38879,38880,38881,38882,38883,38884,38885,38886,38887,38888,38889,38890,38891,38892,38893,38894,38895,38896,38897,38898,38899,38900,38901,38902,38903,38904,38905,38906,38907,38908,38909,38910,38911,38912,38913,38914,38915,38916,38917,38918,38919,38920,38921,38922,38923,38924,38925,38926,38927,38928,38929,38930,38931,38932,38933,38934,38935,38936,38937,38938,38939,38940,38941,38942,38943,38944,38945,38946,38947,38948,38949,38950,38951,38952,38953,38954,38955,38956,38957,38958,38959,38960,38961,38962,38963,38964,38965,38966,38967,38968,38969,38970,38971,38972,38973,38974,38975,38976,38977,38978,38979,38980,38981,38982,38983,38984,38985,38986,38987,38988,38989,38990,38991,38992,38993,38994,38995,38996,38997,38998,38999,39000,39001,39002,39003,39004,39005,39006,39007,39008,39009,39010,39011,39012,39013,39014,39015,39016,39017,39018,39019,39020,39021,39022,39023,39024,39025,39026,39027,39028,39029,39030,39031,39032,39033,39034,39035,39036,39037,39038,39039,39040,39041,39042,39043,39044,39045,39046,39047,39048,39049,39050,39051,39052,39053,39054,39055,39056,39057,39058,39059,39060,39061,39062,39063,39064,39065,39066,39067,39068,39069,39070,39071,39072,39073,39074,39075,39076,39077,39078,39079,39080,39081,39082,39083,39084,39085,39086,39087,39088,39089,39090,39091,39092,39093,39094,39095,39096,39097,39098,39099,39100,39101,39102,39103,39104,39105,39106,39107,39108,39109,39110,39111,39112,39113,39114,39115,39116,39117,39118,39119,39120,39121,39122,39123,39124,39125,39126,39127,39128,39129,39130,39131,39132,39133,39134,39135,39136,39137,39138,39139,39140,39141,39142,39143,39144,39145,39146,39147,39148,39149,39150,39151,39152,39153,39154,39155,39156,39157,39158,39159,39160,39161,39162,39163,39164,39165,39166,39167,39168,39169,39170,39171,39172,39173,39174,39175,39176,39177,39178,39179,39180,39181,39182,39183,39184,39185,39186,39187,39188,39189,39190,39191,39192,39193,39194,39195,39196,39197,39198,39199,39200,39201,39202,39203,39204,39205,39206,39207,39208,39209,39210,39211,39212,39213,39214,39215,39216,39217,39218,39219,39220,39221,39222,39223,39224,39225,39226,39227,39228,39229,39230,39231,39232,39233,39234,39235,39236,39237,39238,39239,39240,39241,39242,39243,39244,39245,39246,39247,39248,39249,39250,39251,39252,39253,39254,39255,39256,39257,39258,39259,39260,39261,39262,39263,39264,39265,39266,39267,39268,39269,39270,39271,39272,39273,39274,39275,39276,39277,39278,39279,39280,39281,39282,39283,39284,39285,39286,39287,39288,39289,39290,39291,39292,39293,39294,39295,39296,39297,39298,39299,39300,39301,39302,39303,39304,39305,39306,39307,39308,39309,39310,39311,39312,39313,39314,39315,39316,39317,39318,39319,39320,39321,39322,39323,39324,39325,39326,39327,39328,39329,39330,39331,39332,39333,39334,39335,39336,39337,39338,39339,39340,39341,39342,39343,39344,39345,39346,39347,39348,39349,39350,39351,39352,39353,39354,39355,39356,39357,39358,39359,39360,39361,39362,39363,39364,39365,39366,39367,39368,39369,39370,39371,39372,39373,39374,39375,39376,39377,39378,39379,39380,39381,39382,39383,39384,39385,39386,39387,39388,39389,39390,39391,39392,39393,39394,39395,39396,39397,39398,39399,39400,39401,39402,39403,39404,39405,39406,39407,39408,39409,39410,39411,39412,39413,39414,39415,39416,39417,39418,39419,39420,39421,39422,39423,39424,39425,39426,39427,39428,39429,39430,39431,39432,39433,39434,39435,39436,39437,39438,39439,39440,39441,39442,39443,39444,39445,39446,39447,39448,39449,39450,39451,39452,39453,39454,39455,39456,39457,39458,39459,39460,39461,39462,39463,39464,39465,39466,39467,39468,39469,39470,39471,39472,39473,39474,39475,39476,39477,39478,39479,39480,39481,39482,39483,39484,39485,39486,39487,39488,39489,39490,39491,39492,39493,39494,39495,39496,39497,39498,39499,39500,39501,39502,39503,39504,39505,39506,39507,39508,39509,39510,39511,39512,39513,39514,39515,39516,39517,39518,39519,39520,39521,39522,39523,39524,39525,39526,39527,39528,39529,39530,39531,39532,39533,39534,39535,39536,39537,39538,39539,39540,39541,39542,39543,39544,39545,39546,39547,39548,39549,39550,39551,39552,39553,39554,39555,39556,39557,39558,39559,39560,39561,39562,39563,39564,39565,39566,39567,39568,39569,39570,39571,39572,39573,39574,39575,39576,39577,39578,39579,39580,39581,39582,39583,39584,39585,39586,39587,39588,39589,39590,39591,39592,39593,39594,39595,39596,39597,39598,39599,39600,39601,39602,39603,39604,39605,39606,39607,39608,39609,39610,39611,39612,39613,39614,39615,39616,39617,39618,39619,39620,39621,39622,39623,39624,39625,39626,39627,39628,39629,39630,39631,39632,39633,39634,39635,39636,39637,39638,39639,39640,39641,39642,39643,39644,39645,39646,39647,39648,39649,39650,39651,39652,39653,39654,39655,39656,39657,39658,39659,39660,39661,39662,39663,39664,39665,39666,39667,39668,39669,39670,39671,39672,39673,39674,39675,39676,39677,39678,39679,39680,39681,39682,39683,39684,39685,39686,39687,39688,39689,39690,39691,39692,39693,39694,39695,39696,39697,39698,39699,39700,39701,39702,39703,39704,39705,39706,39707,39708,39709,39710,39711,39712,39713,39714,39715,39716,39717,39718,39719,39720,39721,39722,39723,39724,39725,39726,39727,39728,39729,39730,39731,39732,39733,39734,39735,39736,39737,39738,39739,39740,39741,39742,39743,39744,39745,39746,39747,39748,39749,39750,39751,39752,39753,39754,39755,39756,39757,39758,39759,39760,39761,39762,39763,39764,39765,39766,39767,39768,39769,39770,39771,39772,39773,39774,39775,39776,39777,39778,39779,39780,39781,39782,39783,39784,39785,39786,39787,39788,39789,39790,39791,39792,39793,39794,39795,39796,39797,39798,39799,39800,39801,39802,39803,39804,39805,39806,39807,39808,39809,39810,39811,39812,39813,39814,39815,39816,39817,39818,39819,39820,39821,39822,39823,39824,39825,39826,39827,39828,39829,39830,39831,39832,39833,39834,39835,39836,39837,39838,39839,39840,39841,39842,39843,39844,39845,39846,39847,39848,39849,39850,39851,39852,39853,39854,39855,39856,39857,39858,39859,39860,39861,39862,39863,39864,39865,39866,39867,39868,39869,39870,39871,39872,39873,39874,39875,39876,39877,39878,39879,39880,39881,39882,39883,39884,39885,39886,39887,39888,39889,39890,39891,39892,39893,39894,39895,39896,39897,39898,39899,39900,39901,39902,39903,39904,39905,39906,39907,39908,39909,39910,39911,39912,39913,39914,39915,39916,39917,39918,39919,39920,39921,39922,39923,39924,39925,39926,39927,39928,39929,39930,39931,39932,39933,39934,39935,39936,39937,39938,39939,39940,39941,39942,39943,39944,39945,39946,39947,39948,39949,39950,39951,39952,39953,39954,39955,39956,39957,39958,39959,39960,39961,39962,39963,39964,39965,39966,39967,39968,39969,39970,39971,39972,39973,39974,39975,39976,39977,39978,39979,39980,39981,39982,39983,39984,39985,39986,39987,39988,39989,39990,39991,39992,39993,39994,39995,39996,39997,39998,39999,40000,40001,40002,40003,40004,40005,40006,40007,40008,40009,40010,40011,40012,40013,40014,40015,40016,40017,40018,40019,40020,40021,40022,40023,40024,40025,40026,40027,40028,40029,40030,40031,40032,40033,40034,40035,40036,40037,40038,40039,40040,40041,40042,40043,40044,40045,40046,40047,40048,40049,40050,40051,40052,40053,40054,40055,40056,40057,40058,40059,40060,40061,40062,40063,40064,40065,40066,40067,40068,40069,40070,40071,40072,40073,40074,40075,40076,40077,40078,40079,40080,40081,40082,40083,40084,40085,40086,40087,40088,40089,40090,40091,40092,40093,40094,40095,40096,40097,40098,40099,40100,40101,40102,40103,40104,40105,40106,40107,40108,40109,40110,40111,40112,40113,40114,40115,40116,40117,40118,40119,40120,40121,40122,40123,40124,40125,40126,40127,40128,40129,40130,40131,40132,40133,40134,40135,40136,40137,40138,40139,40140,40141,40142,40143,40144,40145,40146,40147,40148,40149,40150,40151,40152,40153,40154,40155,40156,40157,40158,40159,40160,40161,40162,40163,40164,40165,40166,40167,40168,40169,40170,40171,40172,40173,40174,40175,40176,40177,40178,40179,40180,40181,40182,40183,40184,40185,40186,40187,40188,40189,40190,40191,40192,40193,40194,40195,40196,40197,40198,40199,40200,40201,40202,40203,40204,40205,40206,40207,40208,40209,40210,40211,40212,40213,40214,40215,40216,40217,40218,40219,40220,40221,40222,40223,40224,40225,40226,40227,40228,40229,40230,40231,40232,40233,40234,40235,40236,40237,40238,40239,40240,40241,40242,40243,40244,40245,40246,40247,40248,40249,40250,40251,40252,40253,40254,40255,40256,40257,40258,40259,40260,40261,40262,40263,40264,40265,40266,40267,40268,40269,40270,40271,40272,40273,40274,40275,40276,40277,40278,40279,40280,40281,40282,40283,40284,40285,40286,40287,40288,40289,40290,40291,40292,40293,40294,40295,40296,40297,40298,40299,40300,40301,40302,40303,40304,40305,40306,40307,40308,40309,40310,40311,40312,40313,40314,40315,40316,40317,40318,40319,40320,40321,40322,40323,40324,40325,40326,40327,40328,40329,40330,40331,40332,40333,40334,40335,40336,40337,40338,40339,40340,40341,40342,40343,40344,40345,40346,40347,40348,40349,40350,40351,40352,40353,40354,40355,40356,40357,40358,40359,40360,40361,40362,40363,40364,40365,40366,40367,40368,40369,40370,40371,40372,40373,40374,40375,40376,40377,40378,40379,40380,40381,40382,40383,40384,40385,40386,40387,40388,40389,40390,40391,40392,40393,40394,40395,40396,40397,40398,40399,40400,40401,40402,40403,40404,40405,40406,40407,40408,40409,40410,40411,40412,40413,40414,40415,40416,40417,40418,40419,40420,40421,40422,40423,40424,40425,40426,40427,40428,40429,40430,40431,40432,40433,40434,40435,40436,40437,40438,40439,40440,40441,40442,40443,40444,40445,40446,40447,40448,40449,40450,40451,40452,40453,40454,40455,40456,40457,40458,40459,40460,40461,40462,40463,40464,40465,40466,40467,40468,40469,40470,40471,40472,40473,40474,40475,40476,40477,40478,40479,40480,40481,40482,40483,40484,40485,40486,40487,40488,40489,40490,40491,40492,40493,40494,40495,40496,40497,40498,40499,40500,40501,40502,40503,40504,40505,40506,40507,40508,40509,40510,40511,40512,40513,40514,40515,40516,40517,40518,40519,40520,40521,40522,40523,40524,40525,40526,40527,40528,40529,40530,40531,40532,40533,40534,40535,40536,40537,40538,40539,40540,40541,40542,40543,40544,40545,40546,40547,40548,40549,40550,40551,40552,40553,40554,40555,40556,40557,40558,40559,40560,40561,40562,40563,40564,40565,40566,40567,40568,40569,40570,40571,40572,40573,40574,40575,40576,40577,40578,40579,40580,40581,40582,40583,40584,40585,40586,40587,40588,40589,40590,40591,40592,40593,40594,40595,40596,40597,40598,40599,40600,40601,40602,40603,40604,40605,40606,40607,40608,40609,40610,40611,40612,40613,40614,40615,40616,40617,40618,40619,40620,40621,40622,40623,40624,40625,40626,40627,40628,40629,40630,40631,40632,40633,40634,40635,40636,40637,40638,40639,40640,40641,40642,40643,40644,40645,40646,40647,40648,40649,40650,40651,40652,40653,40654,40655,40656,40657,40658,40659,40660,40661,40662,40663,40664,40665,40666,40667,40668,40669,40670,40671,40672,40673,40674,40675,40676,40677,40678,40679,40680,40681,40682,40683,40684,40685,40686,40687,40688,40689,40690,40691,40692,40693,40694,40695,40696,40697,40698,40699,40700,40701,40702,40703,40704,40705,40706,40707,40708,40709,40710,40711,40712,40713,40714,40715,40716,40717,40718,40719,40720,40721,40722,40723,40724,40725,40726,40727,40728,40729,40730,40731,40732,40733,40734,40735,40736,40737,40738,40739,40740,40741,40742,40743,40744,40745,40746,40747,40748,40749,40750,40751,40752,40753,40754,40755,40756,40757,40758,40759,40760,40761,40762,40763,40764,40765,40766,40767,40768,40769,40770,40771,40772,40773,40774,40775,40776,40777,40778,40779,40780,40781,40782,40783,40784,40785,40786,40787,40788,40789,40790,40791,40792,40793,40794,40795,40796,40797,40798,40799,40800,40801,40802,40803,40804,40805,40806,40807,40808,40809,40810,40811,40812,40813,40814,40815,40816,40817,40818,40819,40820,40821,40822,40823,40824,40825,40826,40827,40828,40829,40830,40831,40832,40833,40834,40835,40836,40837,40838,40839,40840,40841,40842,40843,40844,40845,40846,40847,40848,40849,40850,40851,40852,40853,40854,40855,40856,40857,40858,40859,40860,40861,40862,40863,40864,40865,40866,40867,40868,40869,40870,40871,40872,40873,40874,40875,40876,40877,40878,40879,40880,40881,40882,40883,40884,40885,40886,40887,40888,40889,40890,40891,40892,40893,40894,40895,40896,40897,40898,40899,40900,40901,40902,40903,40904,40905,40906,40907,40908,40909,40910,40911,40912,40913,40914,40915,40916,40917,40918,40919,40920,40921,40922,40923,40924,40925,40926,40927,40928,40929,40930,40931,40932,40933,40934,40935,40936,40937,40938,40939,40940,40941,40942,40943,40944,40945,40946,40947,40948,40949,40950,40951,40952,40953,40954,40955,40956,40957,40958,40959,40960,40961,40962,40963,40964,40965,40966,40967,40968,40969,40970,40971,40972,40973,40974,40975,40976,40977,40978,40979,40980,40981,40982,40983,40984,40985,40986,40987,40988,40989,40990,40991,40992,40993,40994,40995,40996,40997,40998,40999,41000,41001,41002,41003,41004,41005,41006,41007,41008,41009,41010,41011,41012,41013,41014,41015,41016,41017,41018,41019,41020,41021,41022,41023,41024,41025,41026,41027,41028,41029,41030,41031,41032,41033,41034,41035,41036,41037,41038,41039,41040,41041,41042,41043,41044,41045,41046,41047,41048,41049,41050,41051,41052,41053,41054,41055,41056,41057,41058,41059,41060,41061,41062,41063,41064,41065,41066,41067,41068,41069,41070,41071,41072,41073,41074,41075,41076,41077,41078,41079,41080,41081,41082,41083,41084,41085,41086,41087,41088,41089,41090,41091,41092,41093,41094,41095,41096,41097,41098,41099,41100,41101,41102,41103,41104,41105,41106,41107,41108,41109,41110,41111,41112,41113,41114,41115,41116,41117,41118,41119,41120,41121,41122,41123,41124,41125,41126,41127,41128,41129,41130,41131,41132,41133,41134,41135,41136,41137,41138,41139,41140,41141,41142,41143,41144,41145,41146,41147,41148,41149,41150,41151,41152,41153,41154,41155,41156,41157,41158,41159,41160,41161,41162,41163,41164,41165,41166,41167,41168,41169,41170,41171,41172,41173,41174,41175,41176,41177,41178,41179,41180,41181,41182,41183,41184,41185,41186,41187,41188,41189,41190,41191,41192,41193,41194,41195,41196,41197,41198,41199,41200,41201,41202,41203,41204,41205,41206,41207,41208,41209,41210,41211,41212,41213,41214,41215,41216,41217,41218,41219,41220,41221,41222,41223,41224,41225,41226,41227,41228,41229,41230,41231,41232,41233,41234,41235,41236,41237,41238,41239,41240,41241,41242,41243,41244,41245,41246,41247,41248,41249,41250,41251,41252,41253,41254,41255,41256,41257,41258,41259,41260,41261,41262,41263,41264,41265,41266,41267,41268,41269,41270,41271,41272,41273,41274,41275,41276,41277,41278,41279,41280,41281,41282,41283,41284,41285,41286,41287,41288,41289,41290,41291,41292,41293,41294,41295,41296,41297,41298,41299,41300,41301,41302,41303,41304,41305,41306,41307,41308,41309,41310,41311,41312,41313,41314,41315,41316,41317,41318,41319,41320,41321,41322,41323,41324,41325,41326,41327,41328,41329,41330,41331,41332,41333,41334,41335,41336,41337,41338,41339,41340,41341,41342,41343,41344,41345,41346,41347,41348,41349,41350,41351,41352,41353,41354,41355,41356,41357,41358,41359,41360,41361,41362,41363,41364,41365,41366,41367,41368,41369,41370,41371,41372,41373,41374,41375,41376,41377,41378,41379,41380,41381,41382,41383,41384,41385,41386,41387,41388,41389,41390,41391,41392,41393,41394,41395,41396,41397,41398,41399,41400,41401,41402,41403,41404,41405,41406,41407,41408,41409,41410,41411,41412,41413,41414,41415,41416,41417,41418,41419,41420,41421,41422,41423,41424,41425,41426,41427,41428,41429,41430,41431,41432,41433,41434,41435,41436,41437,41438,41439,41440,41441,41442,41443,41444,41445,41446,41447,41448,41449,41450,41451,41452,41453,41454,41455,41456,41457,41458,41459,41460,41461,41462,41463,41464,41465,41466,41467,41468,41469,41470,41471,41472,41473,41474,41475,41476,41477,41478,41479,41480,41481,41482,41483,41484,41485,41486,41487,41488,41489,41490,41491,41492,41493,41494,41495,41496,41497,41498,41499,41500,41501,41502,41503,41504,41505,41506,41507,41508,41509,41510,41511,41512,41513,41514,41515,41516,41517,41518,41519,41520,41521,41522,41523,41524,41525,41526,41527,41528,41529,41530,41531,41532,41533,41534,41535,41536,41537,41538,41539,41540,41541,41542,41543,41544,41545,41546,41547,41548,41549,41550,41551,41552,41553,41554,41555,41556,41557,41558,41559,41560,41561,41562,41563,41564,41565,41566,41567,41568,41569,41570,41571,41572,41573,41574,41575,41576,41577,41578,41579,41580,41581,41582,41583,41584,41585,41586,41587,41588,41589,41590,41591,41592,41593,41594,41595,41596,41597,41598,41599,41600,41601,41602,41603,41604,41605,41606,41607,41608,41609,41610,41611,41612,41613,41614,41615,41616,41617,41618,41619,41620,41621,41622,41623,41624,41625,41626,41627,41628,41629,41630,41631,41632,41633,41634,41635,41636,41637,41638,41639,41640,41641,41642,41643,41644,41645,41646,41647,41648,41649,41650,41651,41652,41653,41654,41655,41656,41657,41658,41659,41660,41661,41662,41663,41664,41665,41666,41667,41668,41669,41670,41671,41672,41673,41674,41675,41676,41677,41678,41679,41680,41681,41682,41683,41684,41685,41686,41687,41688,41689,41690,41691,41692,41693,41694,41695,41696,41697,41698,41699,41700,41701,41702,41703,41704,41705,41706,41707,41708,41709,41710,41711,41712,41713,41714,41715,41716,41717,41718,41719,41720,41721,41722,41723,41724,41725,41726,41727,41728,41729,41730,41731,41732,41733,41734,41735,41736,41737,41738,41739,41740,41741,41742,41743,41744,41745,41746,41747,41748,41749,41750,41751,41752,41753,41754,41755,41756,41757,41758,41759,41760,41761,41762,41763,41764,41765,41766,41767,41768,41769,41770,41771,41772,41773,41774,41775,41776,41777,41778,41779,41780,41781,41782,41783,41784,41785,41786,41787,41788,41789,41790,41791,41792,41793,41794,41795,41796,41797,41798,41799,41800,41801,41802,41803,41804,41805,41806,41807,41808,41809,41810,41811,41812,41813,41814,41815,41816,41817,41818,41819,41820,41821,41822,41823,41824,41825,41826,41827,41828,41829,41830,41831,41832,41833,41834,41835,41836,41837,41838,41839,41840,41841,41842,41843,41844,41845,41846,41847,41848,41849,41850,41851,41852,41853,41854,41855,41856,41857,41858,41859,41860,41861,41862,41863,41864,41865,41866,41867,41868,41869,41870,41871,41872,41873,41874,41875,41876,41877,41878,41879,41880,41881,41882,41883,41884,41885,41886,41887,41888,41889,41890,41891,41892,41893,41894,41895,41896,41897,41898,41899,41900,41901,41902,41903,41904,41905,41906,41907,41908,41909,41910,41911,41912,41913,41914,41915,41916,41917,41918,41919,41920,41921,41922,41923,41924,41925,41926,41927,41928,41929,41930,41931,41932,41933,41934,41935,41936,41937,41938,41939,41940,41941,41942,41943,41944,41945,41946,41947,41948,41949,41950,41951,41952,41953,41954,41955,41956,41957,41958,41959,41960,41961,41962,41963,41964,41965,41966,41967,41968,41969,41970,41971,41972,41973,41974,41975,41976,41977,41978,41979,41980,41981,41982,41983,41984,41985,41986,41987,41988,41989,41990,41991,41992,41993,41994,41995,41996,41997,41998,41999,42000,42001,42002,42003,42004,42005,42006,42007,42008,42009,42010,42011,42012,42013,42014,42015,42016,42017,42018,42019,42020,42021,42022,42023,42024,42025,42026,42027,42028,42029,42030,42031,42032,42033,42034,42035,42036,42037,42038,42039,42040,42041,42042,42043,42044,42045,42046,42047,42048,42049,42050,42051,42052,42053,42054,42055,42056,42057,42058,42059,42060,42061,42062,42063,42064,42065,42066,42067,42068,42069,42070,42071,42072,42073,42074,42075,42076,42077,42078,42079,42080,42081,42082,42083,42084,42085,42086,42087,42088,42089,42090,42091,42092,42093,42094,42095,42096,42097,42098,42099,42100,42101,42102,42103,42104,42105,42106,42107,42108,42109,42110,42111,42112,42113,42114,42115,42116,42117,42118,42119,42120,42121,42122,42123,42124,42125,42126,42127,42128,42129,42130,42131,42132,42133,42134,42135,42136,42137,42138,42139,42140,42141,42142,42143,42144,42145,42146,42147,42148,42149,42150,42151,42152,42153,42154,42155,42156,42157,42158,42159,42160,42161,42162,42163,42164,42165,42166,42167,42168,42169,42170,42171,42172,42173,42174,42175,42176,42177,42178,42179,42180,42181,42182,42183,42184,42185,42186,42187,42188,42189,42190,42191,42192,42193,42194,42195,42196,42197,42198,42199,42200,42201,42202,42203,42204,42205,42206,42207,42208,42209,42210,42211,42212,42213,42214,42215,42216,42217,42218,42219,42220,42221,42222,42223,42224,42225,42226,42227,42228,42229,42230,42231,42232,42233,42234,42235,42236,42237,42238,42239,42240,42241,42242,42243,42244,42245,42246,42247,42248,42249,42250,42251,42252,42253,42254,42255,42256,42257,42258,42259,42260,42261,42262,42263,42264,42265,42266,42267,42268,42269,42270,42271,42272,42273,42274,42275,42276,42277,42278,42279,42280,42281,42282,42283,42284,42285,42286,42287,42288,42289,42290,42291,42292,42293,42294,42295,42296,42297,42298,42299,42300,42301,42302,42303,42304,42305,42306,42307,42308,42309,42310,42311,42312,42313,42314,42315,42316,42317,42318,42319,42320,42321,42322,42323,42324,42325,42326,42327,42328,42329,42330,42331,42332,42333,42334,42335,42336,42337,42338,42339,42340,42341,42342,42343,42344,42345,42346,42347,42348,42349,42350,42351,42352,42353,42354,42355,42356,42357,42358,42359,42360,42361,42362,42363,42364,42365,42366,42367,42368,42369,42370,42371,42372,42373,42374,42375,42376,42377,42378,42379,42380,42381,42382,42383,42384,42385,42386,42387,42388,42389,42390,42391,42392,42393,42394,42395,42396,42397,42398,42399,42400,42401,42402,42403,42404,42405,42406,42407,42408,42409,42410,42411,42412,42413,42414,42415,42416,42417,42418,42419,42420,42421,42422,42423,42424,42425,42426,42427,42428,42429,42430,42431,42432,42433,42434,42435,42436,42437,42438,42439,42440,42441,42442,42443,42444,42445,42446,42447,42448,42449,42450,42451,42452,42453,42454,42455,42456,42457,42458,42459,42460,42461,42462,42463,42464,42465,42466,42467,42468,42469,42470,42471,42472,42473,42474,42475,42476,42477,42478,42479,42480,42481,42482,42483,42484,42485,42486,42487,42488,42489,42490,42491,42492,42493,42494,42495,42496,42497,42498,42499,42500,42501,42502,42503,42504,42505,42506,42507,42508,42509,42510,42511,42512,42513,42514,42515,42516,42517,42518,42519,42520,42521,42522,42523,42524,42525,42526,42527,42528,42529,42530,42531,42532,42533,42534,42535,42536,42537,42538,42539,42540,42541,42542,42543,42544,42545,42546,42547,42548,42549,42550,42551,42552,42553,42554,42555,42556,42557,42558,42559,42560,42561,42562,42563,42564,42565,42566,42567,42568,42569,42570,42571,42572,42573,42574,42575,42576,42577,42578,42579,42580,42581,42582,42583,42584,42585,42586,42587,42588,42589,42590,42591,42592,42593,42594,42595,42596,42597,42598,42599,42600,42601,42602,42603,42604,42605,42606,42607,42608,42609,42610,42611,42612,42613,42614,42615,42616,42617,42618,42619,42620,42621,42622,42623,42624,42625,42626,42627,42628,42629,42630,42631,42632,42633,42634,42635,42636,42637,42638,42639,42640,42641,42642,42643,42644,42645,42646,42647,42648,42649,42650,42651,42652,42653,42654,42655,42656,42657,42658,42659,42660,42661,42662,42663,42664,42665,42666,42667,42668,42669,42670,42671,42672,42673,42674,42675,42676,42677,42678,42679,42680,42681,42682,42683,42684,42685,42686,42687,42688,42689,42690,42691,42692,42693,42694,42695,42696,42697,42698,42699,42700,42701,42702,42703,42704,42705,42706,42707,42708,42709,42710,42711,42712,42713,42714,42715,42716,42717,42718,42719,42720,42721,42722,42723,42724,42725,42726,42727,42728,42729,42730,42731,42732,42733,42734,42735,42736,42737,42738,42739,42740,42741,42742,42743,42744,42745,42746,42747,42748,42749,42750,42751,42752,42753,42754,42755,42756,42757,42758,42759,42760,42761,42762,42763,42764,42765,42766,42767,42768,42769,42770,42771,42772,42773,42774,42775,42776,42777,42778,42779,42780,42781,42782,42783,42784,42785,42786,42787,42788,42789,42790,42791,42792,42793,42794,42795,42796,42797,42798,42799,42800,42801,42802,42803,42804,42805,42806,42807,42808,42809,42810,42811,42812,42813,42814,42815,42816,42817,42818,42819,42820,42821,42822,42823,42824,42825,42826,42827,42828,42829,42830,42831,42832,42833,42834,42835,42836,42837,42838,42839,42840,42841,42842,42843,42844,42845,42846,42847,42848,42849,42850,42851,42852,42853,42854,42855,42856,42857,42858,42859,42860,42861,42862,42863,42864,42865,42866,42867,42868,42869,42870,42871,42872,42873,42874,42875,42876,42877,42878,42879,42880,42881,42882,42883,42884,42885,42886,42887,42888,42889,42890,42891,42892,42893,42894,42895,42896,42897,42898,42899,42900,42901,42902,42903,42904,42905,42906,42907,42908,42909,42910,42911,42912,42913,42914,42915,42916,42917,42918,42919,42920,42921,42922,42923,42924,42925,42926,42927,42928,42929,42930,42931,42932,42933,42934,42935,42936,42937,42938,42939,42940,42941,42942,42943,42944,42945,42946,42947,42948,42949,42950,42951,42952,42953,42954,42955,42956,42957,42958,42959,42960,42961,42962,42963,42964,42965,42966,42967,42968,42969,42970,42971,42972,42973,42974,42975,42976,42977,42978,42979,42980,42981,42982,42983,42984,42985,42986,42987,42988,42989,42990,42991,42992,42993,42994,42995,42996,42997,42998,42999,43000,43001,43002,43003,43004,43005,43006,43007,43008,43009,43010,43011,43012,43013,43014,43015,43016,43017,43018,43019,43020,43021,43022,43023,43024,43025,43026,43027,43028,43029,43030,43031,43032,43033,43034,43035,43036,43037,43038,43039,43040,43041,43042,43043,43044,43045,43046,43047,43048,43049,43050,43051,43052,43053,43054,43055,43056,43057,43058,43059,43060,43061,43062,43063,43064,43065,43066,43067,43068,43069,43070,43071,43072,43073,43074,43075,43076,43077,43078,43079,43080,43081,43082,43083,43084,43085,43086,43087,43088,43089,43090,43091,43092,43093,43094,43095,43096,43097,43098,43099,43100,43101,43102,43103,43104,43105,43106,43107,43108,43109,43110,43111,43112,43113,43114,43115,43116,43117,43118,43119,43120,43121,43122,43123,43124,43125,43126,43127,43128,43129,43130,43131,43132,43133,43134,43135,43136,43137,43138,43139,43140,43141,43142,43143,43144,43145,43146,43147,43148,43149,43150,43151,43152,43153,43154,43155,43156,43157,43158,43159,43160,43161,43162,43163,43164,43165,43166,43167,43168,43169,43170,43171,43172,43173,43174,43175,43176,43177,43178,43179,43180,43181,43182,43183,43184,43185,43186,43187,43188,43189,43190,43191,43192,43193,43194,43195,43196,43197,43198,43199,43200,43201,43202,43203,43204,43205,43206,43207,43208,43209,43210,43211,43212,43213,43214,43215,43216,43217,43218,43219,43220,43221,43222,43223,43224,43225,43226,43227,43228,43229,43230,43231,43232,43233,43234,43235,43236,43237,43238,43239,43240,43241,43242,43243,43244,43245,43246,43247,43248,43249,43250,43251,43252,43253,43254,43255,43256,43257,43258,43259,43260,43261,43262,43263,43264,43265,43266,43267,43268,43269,43270,43271,43272,43273,43274,43275,43276,43277,43278,43279,43280,43281,43282,43283,43284,43285,43286,43287,43288,43289,43290,43291,43292,43293,43294,43295,43296,43297,43298,43299,43300,43301,43302,43303,43304,43305,43306,43307,43308,43309,43310,43311,43312,43313,43314,43315,43316,43317,43318,43319,43320,43321,43322,43323,43324,43325,43326,43327,43328,43329,43330,43331,43332,43333,43334,43335,43336,43337,43338,43339,43340,43341,43342,43343,43344,43345,43346,43347,43348,43349,43350,43351,43352,43353,43354,43355,43356,43357,43358,43359,43360,43361,43362,43363,43364,43365,43366,43367,43368,43369,43370,43371,43372,43373,43374,43375,43376,43377,43378,43379,43380,43381,43382,43383,43384,43385,43386,43387,43388,43389,43390,43391,43392,43393,43394,43395,43396,43397,43398,43399,43400,43401,43402,43403,43404,43405,43406,43407,43408,43409,43410,43411,43412,43413,43414,43415,43416,43417,43418,43419,43420,43421,43422,43423,43424,43425,43426,43427,43428,43429,43430,43431,43432,43433,43434,43435,43436,43437,43438,43439,43440,43441,43442,43443,43444,43445,43446,43447,43448,43449,43450,43451,43452,43453,43454,43455,43456,43457,43458,43459,43460,43461,43462,43463,43464,43465,43466,43467,43468,43469,43470,43471,43472,43473,43474,43475,43476,43477,43478,43479,43480,43481,43482,43483,43484,43485,43486,43487,43488,43489,43490,43491,43492,43493,43494,43495,43496,43497,43498,43499,43500,43501,43502,43503,43504,43505,43506,43507,43508,43509,43510,43511,43512,43513,43514,43515,43516,43517,43518,43519,43520,43521,43522,43523,43524,43525,43526,43527,43528,43529,43530,43531,43532,43533,43534,43535,43536,43537,43538,43539,43540,43541,43542,43543,43544,43545,43546,43547,43548,43549,43550,43551,43552,43553,43554,43555,43556,43557,43558,43559,43560,43561,43562,43563,43564,43565,43566,43567,43568,43569,43570,43571,43572,43573,43574,43575,43576,43577,43578,43579,43580,43581,43582,43583,43584,43585,43586,43587,43588,43589,43590,43591,43592,43593,43594,43595,43596,43597,43598,43599,43600,43601,43602,43603,43604,43605,43606,43607,43608,43609,43610,43611,43612,43613,43614,43615,43616,43617,43618,43619,43620,43621,43622,43623,43624,43625,43626,43627,43628,43629,43630,43631,43632,43633,43634,43635,43636,43637,43638,43639,43640,43641,43642,43643,43644,43645,43646,43647,43648,43649,43650,43651,43652,43653,43654,43655,43656,43657,43658,43659,43660,43661,43662,43663,43664,43665,43666,43667,43668,43669,43670,43671,43672,43673,43674,43675,43676,43677,43678,43679,43680,43681,43682,43683,43684,43685,43686,43687,43688,43689,43690,43691,43692,43693,43694,43695,43696,43697,43698,43699,43700,43701,43702,43703,43704,43705,43706,43707,43708,43709,43710,43711,43712,43713,43714,43715,43716,43717,43718,43719,43720,43721,43722,43723,43724,43725,43726,43727,43728,43729,43730,43731,43732,43733,43734,43735,43736,43737,43738,43739,43740,43741,43742,43743,43744,43745,43746,43747,43748,43749,43750,43751,43752,43753,43754,43755,43756,43757,43758,43759,43760,43761,43762,43763,43764,43765,43766,43767,43768,43769,43770,43771,43772,43773,43774,43775,43776,43777,43778,43779,43780,43781,43782,43783,43784,43785,43786,43787,43788,43789,43790,43791,43792,43793,43794,43795,43796,43797,43798,43799,43800,43801,43802,43803,43804,43805,43806,43807,43808,43809,43810,43811,43812,43813,43814,43815,43816,43817,43818,43819,43820,43821,43822,43823,43824,43825,43826,43827,43828,43829,43830,43831,43832,43833,43834,43835,43836,43837,43838,43839,43840,43841,43842,43843,43844,43845,43846,43847,43848,43849,43850,43851,43852,43853,43854,43855,43856,43857,43858,43859,43860,43861,43862,43863,43864,43865,43866,43867,43868,43869,43870,43871,43872,43873,43874,43875,43876,43877,43878,43879,43880,43881,43882,43883,43884,43885,43886,43887,43888,43889,43890,43891,43892,43893,43894,43895,43896,43897,43898,43899,43900,43901,43902,43903,43904,43905,43906,43907,43908,43909,43910,43911,43912,43913,43914,43915,43916,43917,43918,43919,43920,43921,43922,43923,43924,43925,43926,43927,43928,43929,43930,43931,43932,43933,43934,43935,43936,43937,43938,43939,43940,43941,43942,43943,43944,43945,43946,43947,43948,43949,43950,43951,43952,43953,43954,43955,43956,43957,43958,43959,43960,43961,43962,43963,43964,43965,43966,43967,43968,43969,43970,43971,43972,43973,43974,43975,43976,43977,43978,43979,43980,43981,43982,43983,43984,43985,43986,43987,43988,43989,43990,43991,43992,43993,43994,43995,43996,43997,43998,43999,44000,44001,44002,44003,44004,44005,44006,44007,44008,44009,44010,44011,44012,44013,44014,44015,44016,44017,44018,44019,44020,44021,44022,44023,44024,44025,44026,44027,44028,44029,44030,44031,44032,44033,44034,44035,44036,44037,44038,44039,44040,44041,44042,44043,44044,44045,44046,44047,44048,44049,44050,44051,44052,44053,44054,44055,44056,44057,44058,44059,44060,44061,44062,44063,44064,44065,44066,44067,44068,44069,44070,44071,44072,44073,44074,44075,44076,44077,44078,44079,44080,44081,44082,44083,44084,44085,44086,44087,44088,44089,44090,44091,44092,44093,44094,44095,44096,44097,44098,44099,44100,44101,44102,44103,44104,44105,44106,44107,44108,44109,44110,44111,44112,44113,44114,44115,44116,44117,44118,44119,44120,44121,44122,44123,44124,44125,44126,44127,44128,44129,44130,44131,44132,44133,44134,44135,44136,44137,44138,44139,44140,44141,44142,44143,44144,44145,44146,44147,44148,44149,44150,44151,44152,44153,44154,44155,44156,44157,44158,44159,44160,44161,44162,44163,44164,44165,44166,44167,44168,44169,44170,44171,44172,44173,44174,44175,44176,44177,44178,44179,44180,44181,44182,44183,44184,44185,44186,44187,44188,44189,44190,44191,44192,44193,44194,44195,44196,44197,44198,44199,44200,44201,44202,44203,44204,44205,44206,44207,44208,44209,44210,44211,44212,44213,44214,44215,44216,44217,44218,44219,44220,44221,44222,44223,44224,44225,44226,44227,44228,44229,44230,44231,44232,44233,44234,44235,44236,44237,44238,44239,44240,44241,44242,44243,44244,44245,44246,44247,44248,44249,44250,44251,44252,44253,44254,44255,44256,44257,44258,44259,44260,44261,44262,44263,44264,44265,44266,44267,44268,44269,44270,44271,44272,44273,44274,44275,44276,44277,44278,44279,44280,44281,44282,44283,44284,44285,44286,44287,44288,44289,44290,44291,44292,44293,44294,44295,44296,44297,44298,44299,44300,44301,44302,44303,44304,44305,44306,44307,44308,44309,44310,44311,44312,44313,44314,44315,44316,44317,44318,44319,44320,44321,44322,44323,44324,44325,44326,44327,44328,44329,44330,44331,44332,44333,44334,44335,44336,44337,44338,44339,44340,44341,44342,44343,44344,44345,44346,44347,44348,44349,44350,44351,44352,44353,44354,44355,44356,44357,44358,44359,44360,44361,44362,44363,44364,44365,44366,44367,44368,44369,44370,44371,44372,44373,44374,44375,44376,44377,44378,44379,44380,44381,44382,44383,44384,44385,44386,44387,44388,44389,44390,44391,44392,44393,44394,44395,44396,44397,44398,44399,44400,44401,44402,44403,44404,44405,44406,44407,44408,44409,44410,44411,44412,44413,44414,44415,44416,44417,44418,44419,44420,44421,44422,44423,44424,44425,44426,44427,44428,44429,44430,44431,44432,44433,44434,44435,44436,44437,44438,44439,44440,44441,44442,44443,44444,44445,44446,44447,44448,44449,44450,44451,44452,44453,44454,44455,44456,44457,44458,44459,44460,44461,44462,44463,44464,44465,44466,44467,44468,44469,44470,44471,44472,44473,44474,44475,44476,44477,44478,44479,44480,44481,44482,44483,44484,44485,44486,44487,44488,44489,44490,44491,44492,44493,44494,44495,44496,44497,44498,44499,44500,44501,44502,44503,44504,44505,44506,44507,44508,44509,44510,44511,44512,44513,44514,44515,44516,44517,44518,44519,44520,44521,44522,44523,44524,44525,44526,44527,44528,44529,44530,44531,44532,44533,44534,44535,44536,44537,44538,44539,44540,44541,44542,44543,44544,44545,44546,44547,44548,44549,44550,44551,44552,44553,44554,44555,44556,44557,44558,44559,44560,44561,44562,44563,44564,44565,44566,44567,44568,44569,44570,44571,44572,44573,44574,44575,44576,44577,44578,44579,44580,44581,44582,44583,44584,44585,44586,44587,44588,44589,44590,44591,44592,44593,44594,44595,44596,44597,44598,44599,44600,44601,44602,44603,44604,44605,44606,44607,44608,44609,44610,44611,44612,44613,44614,44615,44616,44617,44618,44619,44620,44621,44622,44623,44624,44625,44626,44627,44628,44629,44630,44631,44632,44633,44634,44635,44636,44637,44638,44639,44640,44641,44642,44643,44644,44645,44646,44647,44648,44649,44650,44651,44652,44653,44654,44655,44656,44657,44658,44659,44660,44661,44662,44663,44664,44665,44666,44667,44668,44669,44670,44671,44672,44673,44674,44675,44676,44677,44678,44679,44680,44681,44682,44683,44684,44685,44686,44687,44688,44689,44690,44691,44692,44693,44694,44695,44696,44697,44698,44699,44700,44701,44702,44703,44704,44705,44706,44707,44708,44709,44710,44711,44712,44713,44714,44715,44716,44717,44718,44719,44720,44721,44722,44723,44724,44725,44726,44727,44728,44729,44730,44731,44732,44733,44734,44735,44736,44737,44738,44739,44740,44741,44742,44743,44744,44745,44746,44747,44748,44749,44750,44751,44752,44753,44754,44755,44756,44757,44758,44759,44760,44761,44762,44763,44764,44765,44766,44767,44768,44769,44770,44771,44772,44773,44774,44775,44776,44777,44778,44779,44780,44781,44782,44783,44784,44785,44786,44787,44788,44789,44790,44791,44792,44793,44794,44795,44796,44797,44798,44799,44800,44801,44802,44803,44804,44805,44806,44807,44808,44809,44810,44811,44812,44813,44814,44815,44816,44817,44818,44819,44820,44821,44822,44823,44824,44825,44826,44827,44828,44829,44830,44831,44832,44833,44834,44835,44836,44837,44838,44839,44840,44841,44842,44843,44844,44845,44846,44847,44848,44849,44850,44851,44852,44853,44854,44855,44856,44857,44858,44859,44860,44861,44862,44863,44864,44865,44866,44867,44868,44869,44870,44871,44872,44873,44874,44875,44876,44877,44878,44879,44880,44881,44882,44883,44884,44885,44886,44887,44888,44889,44890,44891,44892,44893,44894,44895,44896,44897,44898,44899,44900,44901,44902,44903,44904,44905,44906,44907,44908,44909,44910,44911,44912,44913,44914,44915,44916,44917,44918,44919,44920,44921,44922,44923,44924,44925,44926,44927,44928,44929,44930,44931,44932,44933,44934,44935,44936,44937,44938,44939,44940,44941,44942,44943,44944,44945,44946,44947,44948,44949,44950,44951,44952,44953,44954,44955,44956,44957,44958,44959,44960,44961,44962,44963,44964,44965,44966,44967,44968,44969,44970,44971,44972,44973,44974,44975,44976,44977,44978,44979,44980,44981,44982,44983,44984,44985,44986,44987,44988,44989,44990,44991,44992,44993,44994,44995,44996,44997,44998,44999,45000,45001,45002,45003,45004,45005,45006,45007,45008,45009,45010,45011,45012,45013,45014,45015,45016,45017,45018,45019,45020,45021,45022,45023,45024,45025,45026,45027,45028,45029,45030,45031,45032,45033,45034,45035,45036,45037,45038,45039,45040,45041,45042,45043,45044,45045,45046,45047,45048,45049,45050,45051,45052,45053,45054,45055,45056,45057,45058,45059,45060,45061,45062,45063,45064,45065,45066,45067,45068,45069,45070,45071,45072,45073,45074,45075,45076,45077,45078,45079,45080,45081,45082,45083,45084,45085,45086,45087,45088,45089,45090,45091,45092,45093,45094,45095,45096,45097,45098,45099,45100,45101,45102,45103,45104,45105,45106,45107,45108,45109,45110,45111,45112,45113,45114,45115,45116,45117,45118,45119,45120,45121,45122,45123,45124,45125,45126,45127,45128,45129,45130,45131,45132,45133,45134,45135,45136,45137,45138,45139,45140,45141,45142,45143,45144,45145,45146,45147,45148,45149,45150,45151,45152,45153,45154,45155,45156,45157,45158,45159,45160,45161,45162,45163,45164,45165,45166,45167,45168,45169,45170,45171,45172,45173,45174,45175,45176,45177,45178,45179,45180,45181,45182,45183,45184,45185,45186,45187,45188,45189,45190,45191,45192,45193,45194,45195,45196,45197,45198,45199,45200,45201,45202,45203,45204,45205,45206,45207,45208,45209,45210,45211,45212,45213,45214,45215,45216,45217,45218,45219,45220,45221,45222,45223,45224,45225,45226,45227,45228,45229,45230,45231,45232,45233,45234,45235,45236,45237,45238,45239,45240,45241,45242,45243,45244,45245,45246,45247,45248,45249,45250,45251,45252,45253,45254,45255,45256,45257,45258,45259,45260,45261,45262,45263,45264,45265,45266,45267,45268,45269,45270,45271,45272,45273,45274,45275,45276,45277,45278,45279,45280,45281,45282,45283,45284,45285,45286,45287,45288,45289,45290,45291,45292,45293,45294,45295,45296,45297,45298,45299,45300,45301,45302,45303,45304,45305,45306,45307,45308,45309,45310,45311,45312,45313,45314,45315,45316,45317,45318,45319,45320,45321,45322,45323,45324,45325,45326,45327,45328,45329,45330,45331,45332,45333,45334,45335,45336,45337,45338,45339,45340,45341,45342,45343,45344,45345,45346,45347,45348,45349,45350,45351,45352,45353,45354,45355,45356,45357,45358,45359,45360,45361,45362,45363,45364,45365,45366,45367,45368,45369,45370,45371,45372,45373,45374,45375,45376,45377,45378,45379,45380,45381,45382,45383,45384,45385,45386,45387,45388,45389,45390,45391,45392,45393,45394,45395,45396,45397,45398,45399,45400,45401,45402,45403,45404,45405,45406,45407,45408,45409,45410,45411,45412,45413,45414,45415,45416,45417,45418,45419,45420,45421,45422,45423,45424,45425,45426,45427,45428,45429,45430,45431,45432,45433,45434,45435,45436,45437,45438,45439,45440,45441,45442,45443,45444,45445,45446,45447,45448,45449,45450,45451,45452,45453,45454,45455,45456,45457,45458,45459,45460,45461,45462,45463,45464,45465,45466,45467,45468,45469,45470,45471,45472,45473,45474,45475,45476,45477,45478,45479,45480,45481,45482,45483,45484,45485,45486,45487,45488,45489,45490,45491,45492,45493,45494,45495,45496,45497,45498,45499,45500,45501,45502,45503,45504,45505,45506,45507,45508,45509,45510,45511,45512,45513,45514,45515,45516,45517,45518,45519,45520,45521,45522,45523,45524,45525,45526,45527,45528,45529,45530,45531,45532,45533,45534,45535,45536,45537,45538,45539,45540,45541,45542,45543,45544,45545,45546,45547,45548,45549,45550,45551,45552,45553,45554,45555,45556,45557,45558,45559,45560,45561,45562,45563,45564,45565,45566,45567,45568,45569,45570,45571,45572,45573,45574,45575,45576,45577,45578,45579,45580,45581,45582,45583,45584,45585,45586,45587,45588,45589,45590,45591,45592,45593,45594,45595,45596,45597,45598,45599,45600,45601,45602,45603,45604,45605,45606,45607,45608,45609,45610,45611,45612,45613,45614,45615,45616,45617,45618,45619,45620,45621,45622,45623,45624,45625,45626,45627,45628,45629,45630,45631,45632,45633,45634,45635,45636,45637,45638,45639,45640,45641,45642,45643,45644,45645,45646,45647,45648,45649,45650,45651,45652,45653,45654,45655,45656,45657,45658,45659,45660,45661,45662,45663,45664,45665,45666,45667,45668,45669,45670,45671,45672,45673,45674,45675,45676,45677,45678,45679,45680,45681,45682,45683,45684,45685,45686,45687,45688,45689,45690,45691,45692,45693,45694,45695,45696,45697,45698,45699,45700,45701,45702,45703,45704,45705,45706,45707,45708,45709,45710,45711,45712,45713,45714,45715,45716,45717,45718,45719,45720,45721,45722,45723,45724,45725,45726,45727,45728,45729,45730,45731,45732,45733,45734,45735,45736,45737,45738,45739,45740,45741,45742,45743,45744,45745,45746,45747,45748,45749,45750,45751,45752,45753,45754,45755,45756,45757,45758,45759,45760,45761,45762,45763,45764,45765,45766,45767,45768,45769,45770,45771,45772,45773,45774,45775,45776,45777,45778,45779,45780,45781,45782,45783,45784,45785,45786,45787,45788,45789,45790,45791,45792,45793,45794,45795,45796,45797,45798,45799,45800,45801,45802,45803,45804,45805,45806,45807,45808,45809,45810,45811,45812,45813,45814,45815,45816,45817,45818,45819,45820,45821,45822,45823,45824,45825,45826,45827,45828,45829,45830,45831,45832,45833,45834,45835,45836,45837,45838,45839,45840,45841,45842,45843,45844,45845,45846,45847,45848,45849,45850,45851,45852,45853,45854,45855,45856,45857,45858,45859,45860,45861,45862,45863,45864,45865,45866,45867,45868,45869,45870,45871,45872,45873,45874,45875,45876,45877,45878,45879,45880,45881,45882,45883,45884,45885,45886,45887,45888,45889,45890,45891,45892,45893,45894,45895,45896,45897,45898,45899,45900,45901,45902,45903,45904,45905,45906,45907,45908,45909,45910,45911,45912,45913,45914,45915,45916,45917,45918,45919,45920,45921,45922,45923,45924,45925,45926,45927,45928,45929,45930,45931,45932,45933,45934,45935,45936,45937,45938,45939,45940,45941,45942,45943,45944,45945,45946,45947,45948,45949,45950,45951,45952,45953,45954,45955,45956,45957,45958,45959,45960,45961,45962,45963,45964,45965,45966,45967,45968,45969,45970,45971,45972,45973,45974,45975,45976,45977,45978,45979,45980,45981,45982,45983,45984,45985,45986,45987,45988,45989,45990,45991,45992,45993,45994,45995,45996,45997,45998,45999,46000,46001,46002,46003,46004,46005,46006,46007,46008,46009,46010,46011,46012,46013,46014,46015,46016,46017,46018,46019,46020,46021,46022,46023,46024,46025,46026,46027,46028,46029,46030,46031,46032,46033,46034,46035,46036,46037,46038,46039,46040,46041,46042,46043,46044,46045,46046,46047,46048,46049,46050,46051,46052,46053,46054,46055,46056,46057,46058,46059,46060,46061,46062,46063,46064,46065,46066,46067,46068,46069,46070,46071,46072,46073,46074,46075,46076,46077,46078,46079,46080,46081,46082,46083,46084,46085,46086,46087,46088,46089,46090,46091,46092,46093,46094,46095,46096,46097,46098,46099,46100,46101,46102,46103,46104,46105,46106,46107,46108,46109,46110,46111,46112,46113,46114,46115,46116,46117,46118,46119,46120,46121,46122,46123,46124,46125,46126,46127,46128,46129,46130,46131,46132,46133,46134,46135,46136,46137,46138,46139,46140,46141,46142,46143,46144,46145,46146,46147,46148,46149,46150,46151,46152,46153,46154,46155,46156,46157,46158,46159,46160,46161,46162,46163,46164,46165,46166,46167,46168,46169,46170,46171,46172,46173,46174,46175,46176,46177,46178,46179,46180,46181,46182,46183,46184,46185,46186,46187,46188,46189,46190,46191,46192,46193,46194,46195,46196,46197,46198,46199,46200,46201,46202,46203,46204,46205,46206,46207,46208,46209,46210,46211,46212,46213,46214,46215,46216,46217,46218,46219,46220,46221,46222,46223,46224,46225,46226,46227,46228,46229,46230,46231,46232,46233,46234,46235,46236,46237,46238,46239,46240,46241,46242,46243,46244,46245,46246,46247,46248,46249,46250,46251,46252,46253,46254,46255,46256,46257,46258,46259,46260,46261,46262,46263,46264,46265,46266,46267,46268,46269,46270,46271,46272,46273,46274,46275,46276,46277,46278,46279,46280,46281,46282,46283,46284,46285,46286,46287,46288,46289,46290,46291,46292,46293,46294,46295,46296,46297,46298,46299,46300,46301,46302,46303,46304,46305,46306,46307,46308,46309,46310,46311,46312,46313,46314,46315,46316,46317,46318,46319,46320,46321,46322,46323,46324,46325,46326,46327,46328,46329,46330,46331,46332,46333,46334,46335,46336,46337,46338,46339,46340,46341,46342,46343,46344,46345,46346,46347,46348,46349,46350,46351,46352,46353,46354,46355,46356,46357,46358,46359,46360,46361,46362,46363,46364,46365,46366,46367,46368,46369,46370,46371,46372,46373,46374,46375,46376,46377,46378,46379,46380,46381,46382,46383,46384,46385,46386,46387,46388,46389,46390,46391,46392,46393,46394,46395,46396,46397,46398,46399,46400,46401,46402,46403,46404,46405,46406,46407,46408,46409,46410,46411,46412,46413,46414,46415,46416,46417,46418,46419,46420,46421,46422,46423,46424,46425,46426,46427,46428,46429,46430,46431,46432,46433,46434,46435,46436,46437,46438,46439,46440,46441,46442,46443,46444,46445,46446,46447,46448,46449,46450,46451,46452,46453,46454,46455,46456,46457,46458,46459,46460,46461,46462,46463,46464,46465,46466,46467,46468,46469,46470,46471,46472,46473,46474,46475,46476,46477,46478,46479,46480,46481,46482,46483,46484,46485,46486,46487,46488,46489,46490,46491,46492,46493,46494,46495,46496,46497,46498,46499,46500,46501,46502,46503,46504,46505,46506,46507,46508,46509,46510,46511,46512,46513,46514,46515,46516,46517,46518,46519,46520,46521,46522,46523,46524,46525,46526,46527,46528,46529,46530,46531,46532,46533,46534,46535,46536,46537,46538,46539,46540,46541,46542,46543,46544,46545,46546,46547,46548,46549,46550,46551,46552,46553,46554,46555,46556,46557,46558,46559,46560,46561,46562,46563,46564,46565,46566,46567,46568,46569,46570,46571,46572,46573,46574,46575,46576,46577,46578,46579,46580,46581,46582,46583,46584,46585,46586,46587,46588,46589,46590,46591,46592,46593,46594,46595,46596,46597,46598,46599,46600,46601,46602,46603,46604,46605,46606,46607,46608,46609,46610,46611,46612,46613,46614,46615,46616,46617,46618,46619,46620,46621,46622,46623,46624,46625,46626,46627,46628,46629,46630,46631,46632,46633,46634,46635,46636,46637,46638,46639,46640,46641,46642,46643,46644,46645,46646,46647,46648,46649,46650,46651,46652,46653,46654,46655,46656,46657,46658,46659,46660,46661,46662,46663,46664,46665,46666,46667,46668,46669,46670,46671,46672,46673,46674,46675,46676,46677,46678,46679,46680,46681,46682,46683,46684,46685,46686,46687,46688,46689,46690,46691,46692,46693,46694,46695,46696,46697,46698,46699,46700,46701,46702,46703,46704,46705,46706,46707,46708,46709,46710,46711,46712,46713,46714,46715,46716,46717,46718,46719,46720,46721,46722,46723,46724,46725,46726,46727,46728,46729,46730,46731,46732,46733,46734,46735,46736,46737,46738,46739,46740,46741,46742,46743,46744,46745,46746,46747,46748,46749,46750,46751,46752,46753,46754,46755,46756,46757,46758,46759,46760,46761,46762,46763,46764,46765,46766,46767,46768,46769,46770,46771,46772,46773,46774,46775,46776,46777,46778,46779,46780,46781,46782,46783,46784,46785,46786,46787,46788,46789,46790,46791,46792,46793,46794,46795,46796,46797,46798,46799,46800,46801,46802,46803,46804,46805,46806,46807,46808,46809,46810,46811,46812,46813,46814,46815,46816,46817,46818,46819,46820,46821,46822,46823,46824,46825,46826,46827,46828,46829,46830,46831,46832,46833,46834,46835,46836,46837,46838,46839,46840,46841,46842,46843,46844,46845,46846,46847,46848,46849,46850,46851,46852,46853,46854,46855,46856,46857,46858,46859,46860,46861,46862,46863,46864,46865,46866,46867,46868,46869,46870,46871,46872,46873,46874,46875,46876,46877,46878,46879,46880,46881,46882,46883,46884,46885,46886,46887,46888,46889,46890,46891,46892,46893,46894,46895,46896,46897,46898,46899,46900,46901,46902,46903,46904,46905,46906,46907,46908,46909,46910,46911,46912,46913,46914,46915,46916,46917,46918,46919,46920,46921,46922,46923,46924,46925,46926,46927,46928,46929,46930,46931,46932,46933,46934,46935,46936,46937,46938,46939,46940,46941,46942,46943,46944,46945,46946,46947,46948,46949,46950,46951,46952,46953,46954,46955,46956,46957,46958,46959,46960,46961,46962,46963,46964,46965,46966,46967,46968,46969,46970,46971,46972,46973,46974,46975,46976,46977,46978,46979,46980,46981,46982,46983,46984,46985,46986,46987,46988,46989,46990,46991,46992,46993,46994,46995,46996,46997,46998,46999,47000,47001,47002,47003,47004,47005,47006,47007,47008,47009,47010,47011,47012,47013,47014,47015,47016,47017,47018,47019,47020,47021,47022,47023,47024,47025,47026,47027,47028,47029,47030,47031,47032,47033,47034,47035,47036,47037,47038,47039,47040,47041,47042,47043,47044,47045,47046,47047,47048,47049,47050,47051,47052,47053,47054,47055,47056,47057,47058,47059,47060,47061,47062,47063,47064,47065,47066,47067,47068,47069,47070,47071,47072,47073,47074,47075,47076,47077,47078,47079,47080,47081,47082,47083,47084,47085,47086,47087,47088,47089,47090,47091,47092,47093,47094,47095,47096,47097,47098,47099,47100,47101,47102,47103,47104,47105,47106,47107,47108,47109,47110,47111,47112,47113,47114,47115,47116,47117,47118,47119,47120,47121,47122,47123,47124,47125,47126,47127,47128,47129,47130,47131,47132,47133,47134,47135,47136,47137,47138,47139,47140,47141,47142,47143,47144,47145,47146,47147,47148,47149,47150,47151,47152,47153,47154,47155,47156,47157,47158,47159,47160,47161,47162,47163,47164,47165,47166,47167,47168,47169,47170,47171,47172,47173,47174,47175,47176,47177,47178,47179,47180,47181,47182,47183,47184,47185,47186,47187,47188,47189,47190,47191,47192,47193,47194,47195,47196,47197,47198,47199,47200,47201,47202,47203,47204,47205,47206,47207,47208,47209,47210,47211,47212,47213,47214,47215,47216,47217,47218,47219,47220,47221,47222,47223,47224,47225,47226,47227,47228,47229,47230,47231,47232,47233,47234,47235,47236,47237,47238,47239,47240,47241,47242,47243,47244,47245,47246,47247,47248,47249,47250,47251,47252,47253,47254,47255,47256,47257,47258,47259,47260,47261,47262,47263,47264,47265,47266,47267,47268,47269,47270,47271,47272,47273,47274,47275,47276,47277,47278,47279,47280,47281,47282,47283,47284,47285,47286,47287,47288,47289,47290,47291,47292,47293,47294,47295,47296,47297,47298,47299,47300,47301,47302,47303,47304,47305,47306,47307,47308,47309,47310,47311,47312,47313,47314,47315,47316,47317,47318,47319,47320,47321,47322,47323,47324,47325,47326,47327,47328,47329,47330,47331,47332,47333,47334,47335,47336,47337,47338,47339,47340,47341,47342,47343,47344,47345,47346,47347,47348,47349,47350,47351,47352,47353,47354,47355,47356,47357,47358,47359,47360,47361,47362,47363,47364,47365,47366,47367,47368,47369,47370,47371,47372,47373,47374,47375,47376,47377,47378,47379,47380,47381,47382,47383,47384,47385,47386,47387,47388,47389,47390,47391,47392,47393,47394,47395,47396,47397,47398,47399,47400,47401,47402,47403,47404,47405,47406,47407,47408,47409,47410,47411,47412,47413,47414,47415,47416,47417,47418,47419,47420,47421,47422,47423,47424,47425,47426,47427,47428,47429,47430,47431,47432,47433,47434,47435,47436,47437,47438,47439,47440,47441,47442,47443,47444,47445,47446,47447,47448,47449,47450,47451,47452,47453,47454,47455,47456,47457,47458,47459,47460,47461,47462,47463,47464,47465,47466,47467,47468,47469,47470,47471,47472,47473,47474,47475,47476,47477,47478,47479,47480,47481,47482,47483,47484,47485,47486,47487,47488,47489,47490,47491,47492,47493,47494,47495,47496,47497,47498,47499,47500,47501,47502,47503,47504,47505,47506,47507,47508,47509,47510,47511,47512,47513,47514,47515,47516,47517,47518,47519,47520,47521,47522,47523,47524,47525,47526,47527,47528,47529,47530,47531,47532,47533,47534,47535,47536,47537,47538,47539,47540,47541,47542,47543,47544,47545,47546,47547,47548,47549,47550,47551,47552,47553,47554,47555,47556,47557,47558,47559,47560,47561,47562,47563,47564,47565,47566,47567,47568,47569,47570,47571,47572,47573,47574,47575,47576,47577,47578,47579,47580,47581,47582,47583,47584,47585,47586,47587,47588,47589,47590,47591,47592,47593,47594,47595,47596,47597,47598,47599,47600,47601,47602,47603,47604,47605,47606,47607,47608,47609,47610,47611,47612,47613,47614,47615,47616,47617,47618,47619,47620,47621,47622,47623,47624,47625,47626,47627,47628,47629,47630,47631,47632,47633,47634,47635,47636,47637,47638,47639,47640,47641,47642,47643,47644,47645,47646,47647,47648,47649,47650,47651,47652,47653,47654,47655,47656,47657,47658,47659,47660,47661,47662,47663,47664,47665,47666,47667,47668,47669,47670,47671,47672,47673,47674,47675,47676,47677,47678,47679,47680,47681,47682,47683,47684,47685,47686,47687,47688,47689,47690,47691,47692,47693,47694,47695,47696,47697,47698,47699,47700,47701,47702,47703,47704,47705,47706,47707,47708,47709,47710,47711,47712,47713,47714,47715,47716,47717,47718,47719,47720,47721,47722,47723,47724,47725,47726,47727,47728,47729,47730,47731,47732,47733,47734,47735,47736,47737,47738,47739,47740,47741,47742,47743,47744,47745,47746,47747,47748,47749,47750,47751,47752,47753,47754,47755,47756,47757,47758,47759,47760,47761,47762,47763,47764,47765,47766,47767,47768,47769,47770,47771,47772,47773,47774,47775,47776,47777,47778,47779,47780,47781,47782,47783,47784,47785,47786,47787,47788,47789,47790,47791,47792,47793,47794,47795,47796,47797,47798,47799,47800,47801,47802,47803,47804,47805,47806,47807,47808,47809,47810,47811,47812,47813,47814,47815,47816,47817,47818,47819,47820,47821,47822,47823,47824,47825,47826,47827,47828,47829,47830,47831,47832,47833,47834,47835,47836,47837,47838,47839,47840,47841,47842,47843,47844,47845,47846,47847,47848,47849,47850,47851,47852,47853,47854,47855,47856,47857,47858,47859,47860,47861,47862,47863,47864,47865,47866,47867,47868,47869,47870,47871,47872,47873,47874,47875,47876,47877,47878,47879,47880,47881,47882,47883,47884,47885,47886,47887,47888,47889,47890,47891,47892,47893,47894,47895,47896,47897,47898,47899,47900,47901,47902,47903,47904,47905,47906,47907,47908,47909,47910,47911,47912,47913,47914,47915,47916,47917,47918,47919,47920,47921,47922,47923,47924,47925,47926,47927,47928,47929,47930,47931,47932,47933,47934,47935,47936,47937,47938,47939,47940,47941,47942,47943,47944,47945,47946,47947,47948,47949,47950,47951,47952,47953,47954,47955,47956,47957,47958,47959,47960,47961,47962,47963,47964,47965,47966,47967,47968,47969,47970,47971,47972,47973,47974,47975,47976,47977,47978,47979,47980,47981,47982,47983,47984,47985,47986,47987,47988,47989,47990,47991,47992,47993,47994,47995,47996,47997,47998,47999,48000,48001,48002,48003,48004,48005,48006,48007,48008,48009,48010,48011,48012,48013,48014,48015,48016,48017,48018,48019,48020,48021,48022,48023,48024,48025,48026,48027,48028,48029,48030,48031,48032,48033,48034,48035,48036,48037,48038,48039,48040,48041,48042,48043,48044,48045,48046,48047,48048,48049,48050,48051,48052,48053,48054,48055,48056,48057,48058,48059,48060,48061,48062,48063,48064,48065,48066,48067,48068,48069,48070,48071,48072,48073,48074,48075,48076,48077,48078,48079,48080,48081,48082,48083,48084,48085,48086,48087,48088,48089,48090,48091,48092,48093,48094,48095,48096,48097,48098,48099,48100,48101,48102,48103,48104,48105,48106,48107,48108,48109,48110,48111,48112,48113,48114,48115,48116,48117,48118,48119,48120,48121,48122,48123,48124,48125,48126,48127,48128,48129,48130,48131,48132,48133,48134,48135,48136,48137,48138,48139,48140,48141,48142,48143,48144,48145,48146,48147,48148,48149,48150,48151,48152,48153,48154,48155,48156,48157,48158,48159,48160,48161,48162,48163,48164,48165,48166,48167,48168,48169,48170,48171,48172,48173,48174,48175,48176,48177,48178,48179,48180,48181,48182,48183,48184,48185,48186,48187,48188,48189,48190,48191,48192,48193,48194,48195,48196,48197,48198,48199,48200,48201,48202,48203,48204,48205,48206,48207,48208,48209,48210,48211,48212,48213,48214,48215,48216,48217,48218,48219,48220,48221,48222,48223,48224,48225,48226,48227,48228,48229,48230,48231,48232,48233,48234,48235,48236,48237,48238,48239,48240,48241,48242,48243,48244,48245,48246,48247,48248,48249,48250,48251,48252,48253,48254,48255,48256,48257,48258,48259,48260,48261,48262,48263,48264,48265,48266,48267,48268,48269,48270,48271,48272,48273,48274,48275,48276,48277,48278,48279,48280,48281,48282,48283,48284,48285,48286,48287,48288,48289,48290,48291,48292,48293,48294,48295,48296,48297,48298,48299,48300,48301,48302,48303,48304,48305,48306,48307,48308,48309,48310,48311,48312,48313,48314,48315,48316,48317,48318,48319,48320,48321,48322,48323,48324,48325,48326,48327,48328,48329,48330,48331,48332,48333,48334,48335,48336,48337,48338,48339,48340,48341,48342,48343,48344,48345,48346,48347,48348,48349,48350,48351,48352,48353,48354,48355,48356,48357,48358,48359,48360,48361,48362,48363,48364,48365,48366,48367,48368,48369,48370,48371,48372,48373,48374,48375,48376,48377,48378,48379,48380,48381,48382,48383,48384,48385,48386,48387,48388,48389,48390,48391,48392,48393,48394,48395,48396,48397,48398,48399,48400,48401,48402,48403,48404,48405,48406,48407,48408,48409,48410,48411,48412,48413,48414,48415,48416,48417,48418,48419,48420,48421,48422,48423,48424,48425,48426,48427,48428,48429,48430,48431,48432,48433,48434,48435,48436,48437,48438,48439,48440,48441,48442,48443,48444,48445,48446,48447,48448,48449,48450,48451,48452,48453,48454,48455,48456,48457,48458,48459,48460,48461,48462,48463,48464,48465,48466,48467,48468,48469,48470,48471,48472,48473,48474,48475,48476,48477,48478,48479,48480,48481,48482,48483,48484,48485,48486,48487,48488,48489,48490,48491,48492,48493,48494,48495,48496,48497,48498,48499,48500,48501,48502,48503,48504,48505,48506,48507,48508,48509,48510,48511,48512,48513,48514,48515,48516,48517,48518,48519,48520,48521,48522,48523,48524,48525,48526,48527,48528,48529,48530,48531,48532,48533,48534,48535,48536,48537,48538,48539,48540,48541,48542,48543,48544,48545,48546,48547,48548,48549,48550,48551,48552,48553,48554,48555,48556,48557,48558,48559,48560,48561,48562,48563,48564,48565,48566,48567,48568,48569,48570,48571,48572,48573,48574,48575,48576,48577,48578,48579,48580,48581,48582,48583,48584,48585,48586,48587,48588,48589,48590,48591,48592,48593,48594,48595,48596,48597,48598,48599,48600,48601,48602,48603,48604,48605,48606,48607,48608,48609,48610,48611,48612,48613,48614,48615,48616,48617,48618,48619,48620,48621,48622,48623,48624,48625,48626,48627,48628,48629,48630,48631,48632,48633,48634,48635,48636,48637,48638,48639,48640,48641,48642,48643,48644,48645,48646,48647,48648,48649,48650,48651,48652,48653,48654,48655,48656,48657,48658,48659,48660,48661,48662,48663,48664,48665,48666,48667,48668,48669,48670,48671,48672,48673,48674,48675,48676,48677,48678,48679,48680,48681,48682,48683,48684,48685,48686,48687,48688,48689,48690,48691,48692,48693,48694,48695,48696,48697,48698,48699,48700,48701,48702,48703,48704,48705,48706,48707,48708,48709,48710,48711,48712,48713,48714,48715,48716,48717,48718,48719,48720,48721,48722,48723,48724,48725,48726,48727,48728,48729,48730,48731,48732,48733,48734,48735,48736,48737,48738,48739,48740,48741,48742,48743,48744,48745,48746,48747,48748,48749,48750,48751,48752,48753,48754,48755,48756,48757,48758,48759,48760,48761,48762,48763,48764,48765,48766,48767,48768,48769,48770,48771,48772,48773,48774,48775,48776,48777,48778,48779,48780,48781,48782,48783,48784,48785,48786,48787,48788,48789,48790,48791,48792,48793,48794,48795,48796,48797,48798,48799,48800,48801,48802,48803,48804,48805,48806,48807,48808,48809,48810,48811,48812,48813,48814,48815,48816,48817,48818,48819,48820,48821,48822,48823,48824,48825,48826,48827,48828,48829,48830,48831,48832,48833,48834,48835,48836,48837,48838,48839,48840,48841,48842,48843,48844,48845,48846,48847,48848,48849,48850,48851,48852,48853,48854,48855,48856,48857,48858,48859,48860,48861,48862,48863,48864,48865,48866,48867,48868,48869,48870,48871,48872,48873,48874,48875,48876,48877,48878,48879,48880,48881,48882,48883,48884,48885,48886,48887,48888,48889,48890,48891,48892,48893,48894,48895,48896,48897,48898,48899,48900,48901,48902,48903,48904,48905,48906,48907,48908,48909,48910,48911,48912,48913,48914,48915,48916,48917,48918,48919,48920,48921,48922,48923,48924,48925,48926,48927,48928,48929,48930,48931,48932,48933,48934,48935,48936,48937,48938,48939,48940,48941,48942,48943,48944,48945,48946,48947,48948,48949,48950,48951,48952,48953,48954,48955,48956,48957,48958,48959,48960,48961,48962,48963,48964,48965,48966,48967,48968,48969,48970,48971,48972,48973,48974,48975,48976,48977,48978,48979,48980,48981,48982,48983,48984,48985,48986,48987,48988,48989,48990,48991,48992,48993,48994,48995,48996,48997,48998,48999,49000,49001,49002,49003,49004,49005,49006,49007,49008,49009,49010,49011,49012,49013,49014,49015,49016,49017,49018,49019,49020,49021,49022,49023,49024,49025,49026,49027,49028,49029,49030,49031,49032,49033,49034,49035,49036,49037,49038,49039,49040,49041,49042,49043,49044,49045,49046,49047,49048,49049,49050,49051,49052,49053,49054,49055,49056,49057,49058,49059,49060,49061,49062,49063,49064,49065,49066,49067,49068,49069,49070,49071,49072,49073,49074,49075,49076,49077,49078,49079,49080,49081,49082,49083,49084,49085,49086,49087,49088,49089,49090,49091,49092,49093,49094,49095,49096,49097,49098,49099,49100,49101,49102,49103,49104,49105,49106,49107,49108,49109,49110,49111,49112,49113,49114,49115,49116,49117,49118,49119,49120,49121,49122,49123,49124,49125,49126,49127,49128,49129,49130,49131,49132,49133,49134,49135,49136,49137,49138,49139,49140,49141,49142,49143,49144,49145,49146,49147,49148,49149,49150,49151,49152,49153,49154,49155,49156,49157,49158,49159,49160,49161,49162,49163,49164,49165,49166,49167,49168,49169,49170,49171,49172,49173,49174,49175,49176,49177,49178,49179,49180,49181,49182,49183,49184,49185,49186,49187,49188,49189,49190,49191,49192,49193,49194,49195,49196,49197,49198,49199,49200,49201,49202,49203,49204,49205,49206,49207,49208,49209,49210,49211,49212,49213,49214,49215,49216,49217,49218,49219,49220,49221,49222,49223,49224,49225,49226,49227,49228,49229,49230,49231,49232,49233,49234,49235,49236,49237,49238,49239,49240,49241,49242,49243,49244,49245,49246,49247,49248,49249,49250,49251,49252,49253,49254,49255,49256,49257,49258,49259,49260,49261,49262,49263,49264,49265,49266,49267,49268,49269,49270,49271,49272,49273,49274,49275,49276,49277,49278,49279,49280,49281,49282,49283,49284,49285,49286,49287,49288,49289,49290,49291,49292,49293,49294,49295,49296,49297,49298,49299,49300,49301,49302,49303,49304,49305,49306,49307,49308,49309,49310,49311,49312,49313,49314,49315,49316,49317,49318,49319,49320,49321,49322,49323,49324,49325,49326,49327,49328,49329,49330,49331,49332,49333,49334,49335,49336,49337,49338,49339,49340,49341,49342,49343,49344,49345,49346,49347,49348,49349,49350,49351,49352,49353,49354,49355,49356,49357,49358,49359,49360,49361,49362,49363,49364,49365,49366,49367,49368,49369,49370,49371,49372,49373,49374,49375,49376,49377,49378,49379,49380,49381,49382,49383,49384,49385,49386,49387,49388,49389,49390,49391,49392,49393,49394,49395,49396,49397,49398,49399,49400,49401,49402,49403,49404,49405,49406,49407,49408,49409,49410,49411,49412,49413,49414,49415,49416,49417,49418,49419,49420,49421,49422,49423,49424,49425,49426,49427,49428,49429,49430,49431,49432,49433,49434,49435,49436,49437,49438,49439,49440,49441,49442,49443,49444,49445,49446,49447,49448,49449,49450,49451,49452,49453,49454,49455,49456,49457,49458,49459,49460,49461,49462,49463,49464,49465,49466,49467,49468,49469,49470,49471,49472,49473,49474,49475,49476,49477,49478,49479,49480,49481,49482,49483,49484,49485,49486,49487,49488,49489,49490,49491,49492,49493,49494,49495,49496,49497,49498,49499,49500,49501,49502,49503,49504,49505,49506,49507,49508,49509,49510,49511,49512,49513,49514,49515,49516,49517,49518,49519,49520,49521,49522,49523,49524,49525,49526,49527,49528,49529,49530,49531,49532,49533,49534,49535,49536,49537,49538,49539,49540,49541,49542,49543,49544,49545,49546,49547,49548,49549,49550,49551,49552,49553,49554,49555,49556,49557,49558,49559,49560,49561,49562,49563,49564,49565,49566,49567,49568,49569,49570,49571,49572,49573,49574,49575,49576,49577,49578,49579,49580,49581,49582,49583,49584,49585,49586,49587,49588,49589,49590,49591,49592,49593,49594,49595,49596,49597,49598,49599,49600,49601,49602,49603,49604,49605,49606,49607,49608,49609,49610,49611,49612,49613,49614,49615,49616,49617,49618,49619,49620,49621,49622,49623,49624,49625,49626,49627,49628,49629,49630,49631,49632,49633,49634,49635,49636,49637,49638,49639,49640,49641,49642,49643,49644,49645,49646,49647,49648,49649,49650,49651,49652,49653,49654,49655,49656,49657,49658,49659,49660,49661,49662,49663,49664,49665,49666,49667,49668,49669,49670,49671,49672,49673,49674,49675,49676,49677,49678,49679,49680,49681,49682,49683,49684,49685,49686,49687,49688,49689,49690,49691,49692,49693,49694,49695,49696,49697,49698,49699,49700,49701,49702,49703,49704,49705,49706,49707,49708,49709,49710,49711,49712,49713,49714,49715,49716,49717,49718,49719,49720,49721,49722,49723,49724,49725,49726,49727,49728,49729,49730,49731,49732,49733,49734,49735,49736,49737,49738,49739,49740,49741,49742,49743,49744,49745,49746,49747,49748,49749,49750,49751,49752,49753,49754,49755,49756,49757,49758,49759,49760,49761,49762,49763,49764,49765,49766,49767,49768,49769,49770,49771,49772,49773,49774,49775,49776,49777,49778,49779,49780,49781,49782,49783,49784,49785,49786,49787,49788,49789,49790,49791,49792,49793,49794,49795,49796,49797,49798,49799,49800,49801,49802,49803,49804,49805,49806,49807,49808,49809,49810,49811,49812,49813,49814,49815,49816,49817,49818,49819,49820,49821,49822,49823,49824,49825,49826,49827,49828,49829,49830,49831,49832,49833,49834,49835,49836,49837,49838,49839,49840,49841,49842,49843,49844,49845,49846,49847,49848,49849,49850,49851,49852,49853,49854,49855,49856,49857,49858,49859,49860,49861,49862,49863,49864,49865,49866,49867,49868,49869,49870,49871,49872,49873,49874,49875,49876,49877,49878,49879,49880,49881,49882,49883,49884,49885,49886,49887,49888,49889,49890,49891,49892,49893,49894,49895,49896,49897,49898,49899,49900,49901,49902,49903,49904,49905,49906,49907,49908,49909,49910,49911,49912,49913,49914,49915,49916,49917,49918,49919,49920,49921,49922,49923,49924,49925,49926,49927,49928,49929,49930,49931,49932,49933,49934,49935,49936,49937,49938,49939,49940,49941,49942,49943,49944,49945,49946,49947,49948,49949,49950,49951,49952,49953,49954,49955,49956,49957,49958,49959,49960,49961,49962,49963,49964,49965,49966,49967,49968,49969,49970,49971,49972,49973,49974,49975,49976,49977,49978,49979,49980,49981,49982,49983,49984,49985,49986,49987,49988,49989,49990,49991,49992,49993,49994,49995,49996,49997,49998,49999,50000]
diff --git "a/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204377557953.txt" "b/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204377557953.txt"
deleted file mode 100644
index d122f632..00000000
--- "a/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204377557953.txt"
+++ /dev/null
@@ -1,35 +0,0 @@
-class Solution:
- def partition(self, nums, left, right):
- x = nums[right]
- i = left - 1
- for j in range(left, right):
- if nums[j] < x:
- i += 1
- nums[i], nums[j] = nums[j], nums[i]
- nums[i + 1], nums[right] = nums[right], nums[i + 1]
- return i + 1
-
- def sort(self, nums, left, right):
- if right <= left:
- return
- # 实现 left, right 范围内的排序
- p = self.partition(nums, left, right)
- self.sort(nums, left, p - 1)
- self.sort(nums, p + 1, right)
-
- def sortArray(self, nums: List[int]) -> List[int]:
- # 实现一个快速排序
- self.sort(nums, 0, len(nums) - 1)
- return nums
-
-
-
-# runtime:N/A
-# memory:N/A
-# total_testcases:18
-# total_correct:11
-# input_formatted:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,10046,10047,10048,10049,10050,10051,10052,10053,10054,10055,10056,10057,10058,10059,10060,10061,10062,10063,10064,10065,10066,10067,10068,10069,10070,10071,10072,10073,10074,10075,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,10086,10087,10088,10089,10090,10091,10092,10093,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,10116,10117,10118,10119,10120,10121,10122,10123,10124,10125,10126,10127,10128,10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139,10140,10141,10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153,10154,10155,10156,10157,10158,10159,10160,10161,10162,10163,10164,10165,10166,10167,10168,10169,10170,10171,10172,10173,10174,10175,10176,10177,10178,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,10190,10191,10192,10193,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,10205,10206,10207,10208,10209,10210,10211,10212,10213,10214,10215,10216,10217,10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229,10230,10231,10232,10233,10234,10235,10236,10237,10238,10239,10240,10241,10242,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,10253,10254,10255,10256,10257,10258,10259,10260,10261,10262,10263,10264,10265,10266,10267,10268,10269,10270,10271,10272,10273,10274,10275,10276,10277,10278,10279,10280,10281,10282,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295,10296,10297,10298,10299,10300,10301,10302,10303,10304,10305,10306,10307,10308,10309,10310,10311,10312,10313,10314,10315,10316,10317,10318,10319,10320,10321,10322,10323,10324,10325,10326,10327,10328,10329,10330,10331,10332,10333,10334,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,10348,10349,10350,10351,10352,10353,10354,10355,10356,10357,10358,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,10370,10371,10372,10373,10374,10375,10376,10377,10378,10379,10380,10381,10382,10383,10384,10385,10386,10387,10388,10389,10390,10391,10392,10393,10394,10395,10396,10397,10398,10399,10400,10401,10402,10403,10404,10405,10406,10407,10408,10409,10410,10411,10412,10413,10414,10415,10416,10417,10418,10419,10420,10421,10422,10423,10424,10425,10426,10427,10428,10429,10430,10431,10432,10433,10434,10435,10436,10437,10438,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,10450,10451,10452,10453,10454,10455,10456,10457,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10470,10471,10472,10473,10474,10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10485,10486,10487,10488,10489,10490,10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,10512,10513,10514,10515,10516,10517,10518,10519,10520,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10533,10534,10535,10536,10537,10538,10539,10540,10541,10542,10543,10544,10545,10546,10547,10548,10549,10550,10551,10552,10553,10554,10555,10556,10557,10558,10559,10560,10561,10562,10563,10564,10565,10566,10567,10568,10569,10570,10571,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,10605,10606,10607,10608,10609,10610,10611,10612,10613,10614,10615,10616,10617,10618,10619,10620,10621,10622,10623,10624,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,10637,10638,10639,10640,10641,10642,10643,10644,10645,10646,10647,10648,10649,10650,10651,10652,10653,10654,10655,10656,10657,10658,10659,10660,10661,10662,10663,10664,10665,10666,10667,10668,10669,10670,10671,10672,10673,10674,10675,10676,10677,10678,10679,10680,10681,10682,10683,10684,10685,10686,10687,10688,10689,10690,10691,10692,10693,10694,10695,10696,10697,10698,10699,10700,10701,10702,10703,10704,10705,10706,10707,10708,10709,10710,10711,10712,10713,10714,10715,10716,10717,10718,10719,10720,10721,10722,10723,10724,10725,10726,10727,10728,10729,10730,10731,10732,10733,10734,10735,10736,10737,10738,10739,10740,10741,10742,10743,10744,10745,10746,10747,10748,10749,10750,10751,10752,10753,10754,10755,10756,10757,10758,10759,10760,10761,10762,10763,10764,10765,10766,10767,10768,10769,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,10785,10786,10787,10788,10789,10790,10791,10792,10793,10794,10795,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,10810,10811,10812,10813,10814,10815,10816,10817,10818,10819,10820,10821,10822,10823,10824,10825,10826,10827,10828,10829,10830,10831,10832,10833,10834,10835,10836,10837,10838,10839,10840,10841,10842,10843,10844,10845,10846,10847,10848,10849,10850,10851,10852,10853,10854,10855,10856,10857,10858,10859,10860,10861,10862,10863,10864,10865,10866,10867,10868,10869,10870,10871,10872,10873,10874,10875,10876,10877,10878,10879,10880,10881,10882,10883,10884,10885,10886,10887,10888,10889,10890,10891,10892,10893,10894,10895,10896,10897,10898,10899,10900,10901,10902,10903,10904,10905,10906,10907,10908,10909,10910,10911,10912,10913,10914,10915,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,10929,10930,10931,10932,10933,10934,10935,10936,10937,10938,10939,10940,10941,10942,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10954,10955,10956,10957,10958,10959,10960,10961,10962,10963,10964,10965,10966,10967,10968,10969,10970,10971,10972,10973,10974,10975,10976,10977,10978,10979,10980,10981,10982,10983,10984,10985,10986,10987,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,10998,10999,11000,11001,11002,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,11031,11032,11033,11034,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045,11046,11047,11048,11049,11050,11051,11052,11053,11054,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11080,11081,11082,11083,11084,11085,11086,11087,11088,11089,11090,11091,11092,11093,11094,11095,11096,11097,11098,11099,11100,11101,11102,11103,11104,11105,11106,11107,11108,11109,11110,11111,11112,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11136,11137,11138,11139,11140,11141,11142,11143,11144,11145,11146,11147,11148,11149,11150,11151,11152,11153,11154,11155,11156,11157,11158,11159,11160,11161,11162,11163,11164,11165,11166,11167,11168,11169,11170,11171,11172,11173,11174,11175,11176,11177,11178,11179,11180,11181,11182,11183,11184,11185,11186,11187,11188,11189,11190,11191,11192,11193,11194,11195,11196,11197,11198,11199,11200,11201,11202,11203,11204,11205,11206,11207,11208,11209,11210,11211,11212,11213,11214,11215,11216,11217,11218,11219,11220,11221,11222,11223,11224,11225,11226,11227,11228,11229,11230,11231,11232,11233,11234,11235,11236,11237,11238,11239,11240,11241,11242,11243,11244,11245,11246,11247,11248,11249,11250,11251,11252,11253,11254,11255,11256,11257,11258,11259,11260,11261,11262,11263,11264,11265,11266,11267,11268,11269,11270,11271,11272,11273,11274,11275,11276,11277,11278,11279,11280,11281,11282,11283,11284,11285,11286,11287,11288,11289,11290,11291,11292,11293,11294,11295,11296,11297,11298,11299,11300,11301,11302,11303,11304,11305,11306,11307,11308,11309,11310,11311,11312,11313,11314,11315,11316,11317,11318,11319,11320,11321,11322,11323,11324,11325,11326,11327,11328,11329,11330,11331,11332,11333,11334,11335,11336,11337,11338,11339,11340,11341,11342,11343,11344,11345,11346,11347,11348,11349,11350,11351,11352,11353,11354,11355,11356,11357,11358,11359,11360,11361,11362,11363,11364,11365,11366,11367,11368,11369,11370,11371,11372,11373,11374,11375,11376,11377,11378,11379,11380,11381,11382,11383,11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396,11397,11398,11399,11400,11401,11402,11403,11404,11405,11406,11407,11408,11409,11410,11411,11412,11413,11414,11415,11416,11417,11418,11419,11420,11421,11422,11423,11424,11425,11426,11427,11428,11429,11430,11431,11432,11433,11434,11435,11436,11437,11438,11439,11440,11441,11442,11443,11444,11445,11446,11447,11448,11449,11450,11451,11452,11453,11454,11455,11456,11457,11458,11459,11460,11461,11462,11463,11464,11465,11466,11467,11468,11469,11470,11471,11472,11473,11474,11475,11476,11477,11478,11479,11480,11481,11482,11483,11484,11485,11486,11487,11488,11489,11490,11491,11492,11493,11494,11495,11496,11497,11498,11499,11500,11501,11502,11503,11504,11505,11506,11507,11508,11509,11510,11511,11512,11513,11514,11515,11516,11517,11518,11519,11520,11521,11522,11523,11524,11525,11526,11527,11528,11529,11530,11531,11532,11533,11534,11535,11536,11537,11538,11539,11540,11541,11542,11543,11544,11545,11546,11547,11548,11549,11550,11551,11552,11553,11554,11555,11556,11557,11558,11559,11560,11561,11562,11563,11564,11565,11566,11567,11568,11569,11570,11571,11572,11573,11574,11575,11576,11577,11578,11579,11580,11581,11582,11583,11584,11585,11586,11587,11588,11589,11590,11591,11592,11593,11594,11595,11596,11597,11598,11599,11600,11601,11602,11603,11604,11605,11606,11607,11608,11609,11610,11611,11612,11613,11614,11615,11616,11617,11618,11619,11620,11621,11622,11623,11624,11625,11626,11627,11628,11629,11630,11631,11632,11633,11634,11635,11636,11637,11638,11639,11640,11641,11642,11643,11644,11645,11646,11647,11648,11649,11650,11651,11652,11653,11654,11655,11656,11657,11658,11659,11660,11661,11662,11663,11664,11665,11666,11667,11668,11669,11670,11671,11672,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,11686,11687,11688,11689,11690,11691,11692,11693,11694,11695,11696,11697,11698,11699,11700,11701,11702,11703,11704,11705,11706,11707,11708,11709,11710,11711,11712,11713,11714,11715,11716,11717,11718,11719,11720,11721,11722,11723,11724,11725,11726,11727,11728,11729,11730,11731,11732,11733,11734,11735,11736,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747,11748,11749,11750,11751,11752,11753,11754,11755,11756,11757,11758,11759,11760,11761,11762,11763,11764,11765,11766,11767,11768,11769,11770,11771,11772,11773,11774,11775,11776,11777,11778,11779,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,11790,11791,11792,11793,11794,11795,11796,11797,11798,11799,11800,11801,11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812,11813,11814,11815,11816,11817,11818,11819,11820,11821,11822,11823,11824,11825,11826,11827,11828,11829,11830,11831,11832,11833,11834,11835,11836,11837,11838,11839,11840,11841,11842,11843,11844,11845,11846,11847,11848,11849,11850,11851,11852,11853,11854,11855,11856,11857,11858,11859,11860,11861,11862,11863,11864,11865,11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877,11878,11879,11880,11881,11882,11883,11884,11885,11886,11887,11888,11889,11890,11891,11892,11893,11894,11895,11896,11897,11898,11899,11900,11901,11902,11903,11904,11905,11906,11907,11908,11909,11910,11911,11912,11913,11914,11915,11916,11917,11918,11919,11920,11921,11922,11923,11924,11925,11926,11927,11928,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,11943,11944,11945,11946,11947,11948,11949,11950,11951,11952,11953,11954,11955,11956,11957,11958,11959,11960,11961,11962,11963,11964,11965,11966,11967,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,11994,11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124,12125,12126,12127,12128,12129,12130,12131,12132,12133,12134,12135,12136,12137,12138,12139,12140,12141,12142,12143,12144,12145,12146,12147,12148,12149,12150,12151,12152,12153,12154,12155,12156,12157,12158,12159,12160,12161,12162,12163,12164,12165,12166,12167,12168,12169,12170,12171,12172,12173,12174,12175,12176,12177,12178,12179,12180,12181,12182,12183,12184,12185,12186,12187,12188,12189,12190,12191,12192,12193,12194,12195,12196,12197,12198,12199,12200,12201,12202,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12217,12218,12219,12220,12221,12222,12223,12224,12225,12226,12227,12228,12229,12230,12231,12232,12233,12234,12235,12236,12237,12238,12239,12240,12241,12242,12243,12244,12245,12246,12247,12248,12249,12250,12251,12252,12253,12254,12255,12256,12257,12258,12259,12260,12261,12262,12263,12264,12265,12266,12267,12268,12269,12270,12271,12272,12273,12274,12275,12276,12277,12278,12279,12280,12281,12282,12283,12284,12285,12286,12287,12288,12289,12290,12291,12292,12293,12294,12295,12296,12297,12298,12299,12300,12301,12302,12303,12304,12305,12306,12307,12308,12309,12310,12311,12312,12313,12314,12315,12316,12317,12318,12319,12320,12321,12322,12323,12324,12325,12326,12327,12328,12329,12330,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12352,12353,12354,12355,12356,12357,12358,12359,12360,12361,12362,12363,12364,12365,12366,12367,12368,12369,12370,12371,12372,12373,12374,12375,12376,12377,12378,12379,12380,12381,12382,12383,12384,12385,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397,12398,12399,12400,12401,12402,12403,12404,12405,12406,12407,12408,12409,12410,12411,12412,12413,12414,12415,12416,12417,12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12446,12447,12448,12449,12450,12451,12452,12453,12454,12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494,12495,12496,12497,12498,12499,12500,12501,12502,12503,12504,12505,12506,12507,12508,12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519,12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,12532,12533,12534,12535,12536,12537,12538,12539,12540,12541,12542,12543,12544,12545,12546,12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,12564,12565,12566,12567,12568,12569,12570,12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,12584,12585,12586,12587,12588,12589,12590,12591,12592,12593,12594,12595,12596,12597,12598,12599,12600,12601,12602,12603,12604,12605,12606,12607,12608,12609,12610,12611,12612,12613,12614,12615,12616,12617,12618,12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631,12632,12633,12634,12635,12636,12637,12638,12639,12640,12641,12642,12643,12644,12645,12646,12647,12648,12649,12650,12651,12652,12653,12654,12655,12656,12657,12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,12670,12671,12672,12673,12674,12675,12676,12677,12678,12679,12680,12681,12682,12683,12684,12685,12686,12687,12688,12689,12690,12691,12692,12693,12694,12695,12696,12697,12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708,12709,12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726,12727,12728,12729,12730,12731,12732,12733,12734,12735,12736,12737,12738,12739,12740,12741,12742,12743,12744,12745,12746,12747,12748,12749,12750,12751,12752,12753,12754,12755,12756,12757,12758,12759,12760,12761,12762,12763,12764,12765,12766,12767,12768,12769,12770,12771,12772,12773,12774,12775,12776,12777,12778,12779,12780,12781,12782,12783,12784,12785,12786,12787,12788,12789,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,12803,12804,12805,12806,12807,12808,12809,12810,12811,12812,12813,12814,12815,12816,12817,12818,12819,12820,12821,12822,12823,12824,12825,12826,12827,12828,12829,12830,12831,12832,12833,12834,12835,12836,12837,12838,12839,12840,12841,12842,12843,12844,12845,12846,12847,12848,12849,12850,12851,12852,12853,12854,12855,12856,12857,12858,12859,12860,12861,12862,12863,12864,12865,12866,12867,12868,12869,12870,12871,12872,12873,12874,12875,12876,12877,12878,12879,12880,12881,12882,12883,12884,12885,12886,12887,12888,12889,12890,12891,12892,12893,12894,12895,12896,12897,12898,12899,12900,12901,12902,12903,12904,12905,12906,12907,12908,12909,12910,12911,12912,12913,12914,12915,12916,12917,12918,12919,12920,12921,12922,12923,12924,12925,12926,12927,12928,12929,12930,12931,12932,12933,12934,12935,12936,12937,12938,12939,12940,12941,12942,12943,12944,12945,12946,12947,12948,12949,12950,12951,12952,12953,12954,12955,12956,12957,12958,12959,12960,12961,12962,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,12977,12978,12979,12980,12981,12982,12983,12984,12985,12986,12987,12988,12989,12990,12991,12992,12993,12994,12995,12996,12997,12998,12999,13000,13001,13002,13003,13004,13005,13006,13007,13008,13009,13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,13023,13024,13025,13026,13027,13028,13029,13030,13031,13032,13033,13034,13035,13036,13037,13038,13039,13040,13041,13042,13043,13044,13045,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,13069,13070,13071,13072,13073,13074,13075,13076,13077,13078,13079,13080,13081,13082,13083,13084,13085,13086,13087,13088,13089,13090,13091,13092,13093,13094,13095,13096,13097,13098,13099,13100,13101,13102,13103,13104,13105,13106,13107,13108,13109,13110,13111,13112,13113,13114,13115,13116,13117,13118,13119,13120,13121,13122,13123,13124,13125,13126,13127,13128,13129,13130,13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,13155,13156,13157,13158,13159,13160,13161,13162,13163,13164,13165,13166,13167,13168,13169,13170,13171,13172,13173,13174,13175,13176,13177,13178,13179,13180,13181,13182,13183,13184,13185,13186,13187,13188,13189,13190,13191,13192,13193,13194,13195,13196,13197,13198,13199,13200,13201,13202,13203,13204,13205,13206,13207,13208,13209,13210,13211,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,13222,13223,13224,13225,13226,13227,13228,13229,13230,13231,13232,13233,13234,13235,13236,13237,13238,13239,13240,13241,13242,13243,13244,13245,13246,13247,13248,13249,13250,13251,13252,13253,13254,13255,13256,13257,13258,13259,13260,13261,13262,13263,13264,13265,13266,13267,13268,13269,13270,13271,13272,13273,13274,13275,13276,13277,13278,13279,13280,13281,13282,13283,13284,13285,13286,13287,13288,13289,13290,13291,13292,13293,13294,13295,13296,13297,13298,13299,13300,13301,13302,13303,13304,13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317,13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330,13331,13332,13333,13334,13335,13336,13337,13338,13339,13340,13341,13342,13343,13344,13345,13346,13347,13348,13349,13350,13351,13352,13353,13354,13355,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736,13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,13749,13750,13751,13752,13753,13754,13755,13756,13757,13758,13759,13760,13761,13762,13763,13764,13765,13766,13767,13768,13769,13770,13771,13772,13773,13774,13775,13776,13777,13778,13779,13780,13781,13782,13783,13784,13785,13786,13787,13788,13789,13790,13791,13792,13793,13794,13795,13796,13797,13798,13799,13800,13801,13802,13803,13804,13805,13806,13807,13808,13809,13810,13811,13812,13813,13814,13815,13816,13817,13818,13819,13820,13821,13822,13823,13824,13825,13826,13827,13828,13829,13830,13831,13832,13833,13834,13835,13836,13837,13838,13839,13840,13841,13842,13843,13844,13845,13846,13847,13848,13849,13850,13851,13852,13853,13854,13855,13856,13857,13858,13859,13860,13861,13862,13863,13864,13865,13866,13867,13868,13869,13870,13871,13872,13873,13874,13875,13876,13877,13878,13879,13880,13881,13882,13883,13884,13885,13886,13887,13888,13889,13890,13891,13892,13893,13894,13895,13896,13897,13898,13899,13900,13901,13902,13903,13904,13905,13906,13907,13908,13909,13910,13911,13912,13913,13914,13915,13916,13917,13918,13919,13920,13921,13922,13923,13924,13925,13926,13927,13928,13929,13930,13931,13932,13933,13934,13935,13936,13937,13938,13939,13940,13941,13942,13943,13944,13945,13946,13947,13948,13949,13950,13951,13952,13953,13954,13955,13956,13957,13958,13959,13960,13961,13962,13963,13964,13965,13966,13967,13968,13969,13970,13971,13972,13973,13974,13975,13976,13977,13978,13979,13980,13981,13982,13983,13984,13985,13986,13987,13988,13989,13990,13991,13992,13993,13994,13995,13996,13997,13998,13999,14000,14001,14002,14003,14004,14005,14006,14007,14008,14009,14010,14011,14012,14013,14014,14015,14016,14017,14018,14019,14020,14021,14022,14023,14024,14025,14026,14027,14028,14029,14030,14031,14032,14033,14034,14035,14036,14037,14038,14039,14040,14041,14042,14043,14044,14045,14046,14047,14048,14049,14050,14051,14052,14053,14054,14055,14056,14057,14058,14059,14060,14061,14062,14063,14064,14065,14066,14067,14068,14069,14070,14071,14072,14073,14074,14075,14076,14077,14078,14079,14080,14081,14082,14083,14084,14085,14086,14087,14088,14089,14090,14091,14092,14093,14094,14095,14096,14097,14098,14099,14100,14101,14102,14103,14104,14105,14106,14107,14108,14109,14110,14111,14112,14113,14114,14115,14116,14117,14118,14119,14120,14121,14122,14123,14124,14125,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14136,14137,14138,14139,14140,14141,14142,14143,14144,14145,14146,14147,14148,14149,14150,14151,14152,14153,14154,14155,14156,14157,14158,14159,14160,14161,14162,14163,14164,14165,14166,14167,14168,14169,14170,14171,14172,14173,14174,14175,14176,14177,14178,14179,14180,14181,14182,14183,14184,14185,14186,14187,14188,14189,14190,14191,14192,14193,14194,14195,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205,14206,14207,14208,14209,14210,14211,14212,14213,14214,14215,14216,14217,14218,14219,14220,14221,14222,14223,14224,14225,14226,14227,14228,14229,14230,14231,14232,14233,14234,14235,14236,14237,14238,14239,14240,14241,14242,14243,14244,14245,14246,14247,14248,14249,14250,14251,14252,14253,14254,14255,14256,14257,14258,14259,14260,14261,14262,14263,14264,14265,14266,14267,14268,14269,14270,14271,14272,14273,14274,14275,14276,14277,14278,14279,14280,14281,14282,14283,14284,14285,14286,14287,14288,14289,14290,14291,14292,14293,14294,14295,14296,14297,14298,14299,14300,14301,14302,14303,14304,14305,14306,14307,14308,14309,14310,14311,14312,14313,14314,14315,14316,14317,14318,14319,14320,14321,14322,14323,14324,14325,14326,14327,14328,14329,14330,14331,14332,14333,14334,14335,14336,14337,14338,14339,14340,14341,14342,14343,14344,14345,14346,14347,14348,14349,14350,14351,14352,14353,14354,14355,14356,14357,14358,14359,14360,14361,14362,14363,14364,14365,14366,14367,14368,14369,14370,14371,14372,14373,14374,14375,14376,14377,14378,14379,14380,14381,14382,14383,14384,14385,14386,14387,14388,14389,14390,14391,14392,14393,14394,14395,14396,14397,14398,14399,14400,14401,14402,14403,14404,14405,14406,14407,14408,14409,14410,14411,14412,14413,14414,14415,14416,14417,14418,14419,14420,14421,14422,14423,14424,14425,14426,14427,14428,14429,14430,14431,14432,14433,14434,14435,14436,14437,14438,14439,14440,14441,14442,14443,14444,14445,14446,14447,14448,14449,14450,14451,14452,14453,14454,14455,14456,14457,14458,14459,14460,14461,14462,14463,14464,14465,14466,14467,14468,14469,14470,14471,14472,14473,14474,14475,14476,14477,14478,14479,14480,14481,14482,14483,14484,14485,14486,14487,14488,14489,14490,14491,14492,14493,14494,14495,14496,14497,14498,14499,14500,14501,14502,14503,14504,14505,14506,14507,14508,14509,14510,14511,14512,14513,14514,14515,14516,14517,14518,14519,14520,14521,14522,14523,14524,14525,14526,14527,14528,14529,14530,14531,14532,14533,14534,14535,14536,14537,14538,14539,14540,14541,14542,14543,14544,14545,14546,14547,14548,14549,14550,14551,14552,14553,14554,14555,14556,14557,14558,14559,14560,14561,14562,14563,14564,14565,14566,14567,14568,14569,14570,14571,14572,14573,14574,14575,14576,14577,14578,14579,14580,14581,14582,14583,14584,14585,14586,14587,14588,14589,14590,14591,14592,14593,14594,14595,14596,14597,14598,14599,14600,14601,14602,14603,14604,14605,14606,14607,14608,14609,14610,14611,14612,14613,14614,14615,14616,14617,14618,14619,14620,14621,14622,14623,14624,14625,14626,14627,14628,14629,14630,14631,14632,14633,14634,14635,14636,14637,14638,14639,14640,14641,14642,14643,14644,14645,14646,14647,14648,14649,14650,14651,14652,14653,14654,14655,14656,14657,14658,14659,14660,14661,14662,14663,14664,14665,14666,14667,14668,14669,14670,14671,14672,14673,14674,14675,14676,14677,14678,14679,14680,14681,14682,14683,14684,14685,14686,14687,14688,14689,14690,14691,14692,14693,14694,14695,14696,14697,14698,14699,14700,14701,14702,14703,14704,14705,14706,14707,14708,14709,14710,14711,14712,14713,14714,14715,14716,14717,14718,14719,14720,14721,14722,14723,14724,14725,14726,14727,14728,14729,14730,14731,14732,14733,14734,14735,14736,14737,14738,14739,14740,14741,14742,14743,14744,14745,14746,14747,14748,14749,14750,14751,14752,14753,14754,14755,14756,14757,14758,14759,14760,14761,14762,14763,14764,14765,14766,14767,14768,14769,14770,14771,14772,14773,14774,14775,14776,14777,14778,14779,14780,14781,14782,14783,14784,14785,14786,14787,14788,14789,14790,14791,14792,14793,14794,14795,14796,14797,14798,14799,14800,14801,14802,14803,14804,14805,14806,14807,14808,14809,14810,14811,14812,14813,14814,14815,14816,14817,14818,14819,14820,14821,14822,14823,14824,14825,14826,14827,14828,14829,14830,14831,14832,14833,14834,14835,14836,14837,14838,14839,14840,14841,14842,14843,14844,14845,14846,14847,14848,14849,14850,14851,14852,14853,14854,14855,14856,14857,14858,14859,14860,14861,14862,14863,14864,14865,14866,14867,14868,14869,14870,14871,14872,14873,14874,14875,14876,14877,14878,14879,14880,14881,14882,14883,14884,14885,14886,14887,14888,14889,14890,14891,14892,14893,14894,14895,14896,14897,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14911,14912,14913,14914,14915,14916,14917,14918,14919,14920,14921,14922,14923,14924,14925,14926,14927,14928,14929,14930,14931,14932,14933,14934,14935,14936,14937,14938,14939,14940,14941,14942,14943,14944,14945,14946,14947,14948,14949,14950,14951,14952,14953,14954,14955,14956,14957,14958,14959,14960,14961,14962,14963,14964,14965,14966,14967,14968,14969,14970,14971,14972,14973,14974,14975,14976,14977,14978,14979,14980,14981,14982,14983,14984,14985,14986,14987,14988,14989,14990,14991,14992,14993,14994,14995,14996,14997,14998,14999,15000,15001,15002,15003,15004,15005,15006,15007,15008,15009,15010,15011,15012,15013,15014,15015,15016,15017,15018,15019,15020,15021,15022,15023,15024,15025,15026,15027,15028,15029,15030,15031,15032,15033,15034,15035,15036,15037,15038,15039,15040,15041,15042,15043,15044,15045,15046,15047,15048,15049,15050,15051,15052,15053,15054,15055,15056,15057,15058,15059,15060,15061,15062,15063,15064,15065,15066,15067,15068,15069,15070,15071,15072,15073,15074,15075,15076,15077,15078,15079,15080,15081,15082,15083,15084,15085,15086,15087,15088,15089,15090,15091,15092,15093,15094,15095,15096,15097,15098,15099,15100,15101,15102,15103,15104,15105,15106,15107,15108,15109,15110,15111,15112,15113,15114,15115,15116,15117,15118,15119,15120,15121,15122,15123,15124,15125,15126,15127,15128,15129,15130,15131,15132,15133,15134,15135,15136,15137,15138,15139,15140,15141,15142,15143,15144,15145,15146,15147,15148,15149,15150,15151,15152,15153,15154,15155,15156,15157,15158,15159,15160,15161,15162,15163,15164,15165,15166,15167,15168,15169,15170,15171,15172,15173,15174,15175,15176,15177,15178,15179,15180,15181,15182,15183,15184,15185,15186,15187,15188,15189,15190,15191,15192,15193,15194,15195,15196,15197,15198,15199,15200,15201,15202,15203,15204,15205,15206,15207,15208,15209,15210,15211,15212,15213,15214,15215,15216,15217,15218,15219,15220,15221,15222,15223,15224,15225,15226,15227,15228,15229,15230,15231,15232,15233,15234,15235,15236,15237,15238,15239,15240,15241,15242,15243,15244,15245,15246,15247,15248,15249,15250,15251,15252,15253,15254,15255,15256,15257,15258,15259,15260,15261,15262,15263,15264,15265,15266,15267,15268,15269,15270,15271,15272,15273,15274,15275,15276,15277,15278,15279,15280,15281,15282,15283,15284,15285,15286,15287,15288,15289,15290,15291,15292,15293,15294,15295,15296,15297,15298,15299,15300,15301,15302,15303,15304,15305,15306,15307,15308,15309,15310,15311,15312,15313,15314,15315,15316,15317,15318,15319,15320,15321,15322,15323,15324,15325,15326,15327,15328,15329,15330,15331,15332,15333,15334,15335,15336,15337,15338,15339,15340,15341,15342,15343,15344,15345,15346,15347,15348,15349,15350,15351,15352,15353,15354,15355,15356,15357,15358,15359,15360,15361,15362,15363,15364,15365,15366,15367,15368,15369,15370,15371,15372,15373,15374,15375,15376,15377,15378,15379,15380,15381,15382,15383,15384,15385,15386,15387,15388,15389,15390,15391,15392,15393,15394,15395,15396,15397,15398,15399,15400,15401,15402,15403,15404,15405,15406,15407,15408,15409,15410,15411,15412,15413,15414,15415,15416,15417,15418,15419,15420,15421,15422,15423,15424,15425,15426,15427,15428,15429,15430,15431,15432,15433,15434,15435,15436,15437,15438,15439,15440,15441,15442,15443,15444,15445,15446,15447,15448,15449,15450,15451,15452,15453,15454,15455,15456,15457,15458,15459,15460,15461,15462,15463,15464,15465,15466,15467,15468,15469,15470,15471,15472,15473,15474,15475,15476,15477,15478,15479,15480,15481,15482,15483,15484,15485,15486,15487,15488,15489,15490,15491,15492,15493,15494,15495,15496,15497,15498,15499,15500,15501,15502,15503,15504,15505,15506,15507,15508,15509,15510,15511,15512,15513,15514,15515,15516,15517,15518,15519,15520,15521,15522,15523,15524,15525,15526,15527,15528,15529,15530,15531,15532,15533,15534,15535,15536,15537,15538,15539,15540,15541,15542,15543,15544,15545,15546,15547,15548,15549,15550,15551,15552,15553,15554,15555,15556,15557,15558,15559,15560,15561,15562,15563,15564,15565,15566,15567,15568,15569,15570,15571,15572,15573,15574,15575,15576,15577,15578,15579,15580,15581,15582,15583,15584,15585,15586,15587,15588,15589,15590,15591,15592,15593,15594,15595,15596,15597,15598,15599,15600,15601,15602,15603,15604,15605,15606,15607,15608,15609,15610,15611,15612,15613,15614,15615,15616,15617,15618,15619,15620,15621,15622,15623,15624,15625,15626,15627,15628,15629,15630,15631,15632,15633,15634,15635,15636,15637,15638,15639,15640,15641,15642,15643,15644,15645,15646,15647,15648,15649,15650,15651,15652,15653,15654,15655,15656,15657,15658,15659,15660,15661,15662,15663,15664,15665,15666,15667,15668,15669,15670,15671,15672,15673,15674,15675,15676,15677,15678,15679,15680,15681,15682,15683,15684,15685,15686,15687,15688,15689,15690,15691,15692,15693,15694,15695,15696,15697,15698,15699,15700,15701,15702,15703,15704,15705,15706,15707,15708,15709,15710,15711,15712,15713,15714,15715,15716,15717,15718,15719,15720,15721,15722,15723,15724,15725,15726,15727,15728,15729,15730,15731,15732,15733,15734,15735,15736,15737,15738,15739,15740,15741,15742,15743,15744,15745,15746,15747,15748,15749,15750,15751,15752,15753,15754,15755,15756,15757,15758,15759,15760,15761,15762,15763,15764,15765,15766,15767,15768,15769,15770,15771,15772,15773,15774,15775,15776,15777,15778,15779,15780,15781,15782,15783,15784,15785,15786,15787,15788,15789,15790,15791,15792,15793,15794,15795,15796,15797,15798,15799,15800,15801,15802,15803,15804,15805,15806,15807,15808,15809,15810,15811,15812,15813,15814,15815,15816,15817,15818,15819,15820,15821,15822,15823,15824,15825,15826,15827,15828,15829,15830,15831,15832,15833,15834,15835,15836,15837,15838,15839,15840,15841,15842,15843,15844,15845,15846,15847,15848,15849,15850,15851,15852,15853,15854,15855,15856,15857,15858,15859,15860,15861,15862,15863,15864,15865,15866,15867,15868,15869,15870,15871,15872,15873,15874,15875,15876,15877,15878,15879,15880,15881,15882,15883,15884,15885,15886,15887,15888,15889,15890,15891,15892,15893,15894,15895,15896,15897,15898,15899,15900,15901,15902,15903,15904,15905,15906,15907,15908,15909,15910,15911,15912,15913,15914,15915,15916,15917,15918,15919,15920,15921,15922,15923,15924,15925,15926,15927,15928,15929,15930,15931,15932,15933,15934,15935,15936,15937,15938,15939,15940,15941,15942,15943,15944,15945,15946,15947,15948,15949,15950,15951,15952,15953,15954,15955,15956,15957,15958,15959,15960,15961,15962,15963,15964,15965,15966,15967,15968,15969,15970,15971,15972,15973,15974,15975,15976,15977,15978,15979,15980,15981,15982,15983,15984,15985,15986,15987,15988,15989,15990,15991,15992,15993,15994,15995,15996,15997,15998,15999,16000,16001,16002,16003,16004,16005,16006,16007,16008,16009,16010,16011,16012,16013,16014,16015,16016,16017,16018,16019,16020,16021,16022,16023,16024,16025,16026,16027,16028,16029,16030,16031,16032,16033,16034,16035,16036,16037,16038,16039,16040,16041,16042,16043,16044,16045,16046,16047,16048,16049,16050,16051,16052,16053,16054,16055,16056,16057,16058,16059,16060,16061,16062,16063,16064,16065,16066,16067,16068,16069,16070,16071,16072,16073,16074,16075,16076,16077,16078,16079,16080,16081,16082,16083,16084,16085,16086,16087,16088,16089,16090,16091,16092,16093,16094,16095,16096,16097,16098,16099,16100,16101,16102,16103,16104,16105,16106,16107,16108,16109,16110,16111,16112,16113,16114,16115,16116,16117,16118,16119,16120,16121,16122,16123,16124,16125,16126,16127,16128,16129,16130,16131,16132,16133,16134,16135,16136,16137,16138,16139,16140,16141,16142,16143,16144,16145,16146,16147,16148,16149,16150,16151,16152,16153,16154,16155,16156,16157,16158,16159,16160,16161,16162,16163,16164,16165,16166,16167,16168,16169,16170,16171,16172,16173,16174,16175,16176,16177,16178,16179,16180,16181,16182,16183,16184,16185,16186,16187,16188,16189,16190,16191,16192,16193,16194,16195,16196,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16223,16224,16225,16226,16227,16228,16229,16230,16231,16232,16233,16234,16235,16236,16237,16238,16239,16240,16241,16242,16243,16244,16245,16246,16247,16248,16249,16250,16251,16252,16253,16254,16255,16256,16257,16258,16259,16260,16261,16262,16263,16264,16265,16266,16267,16268,16269,16270,16271,16272,16273,16274,16275,16276,16277,16278,16279,16280,16281,16282,16283,16284,16285,16286,16287,16288,16289,16290,16291,16292,16293,16294,16295,16296,16297,16298,16299,16300,16301,16302,16303,16304,16305,16306,16307,16308,16309,16310,16311,16312,16313,16314,16315,16316,16317,16318,16319,16320,16321,16322,16323,16324,16325,16326,16327,16328,16329,16330,16331,16332,16333,16334,16335,16336,16337,16338,16339,16340,16341,16342,16343,16344,16345,16346,16347,16348,16349,16350,16351,16352,16353,16354,16355,16356,16357,16358,16359,16360,16361,16362,16363,16364,16365,16366,16367,16368,16369,16370,16371,16372,16373,16374,16375,16376,16377,16378,16379,16380,16381,16382,16383,16384,16385,16386,16387,16388,16389,16390,16391,16392,16393,16394,16395,16396,16397,16398,16399,16400,16401,16402,16403,16404,16405,16406,16407,16408,16409,16410,16411,16412,16413,16414,16415,16416,16417,16418,16419,16420,16421,16422,16423,16424,16425,16426,16427,16428,16429,16430,16431,16432,16433,16434,16435,16436,16437,16438,16439,16440,16441,16442,16443,16444,16445,16446,16447,16448,16449,16450,16451,16452,16453,16454,16455,16456,16457,16458,16459,16460,16461,16462,16463,16464,16465,16466,16467,16468,16469,16470,16471,16472,16473,16474,16475,16476,16477,16478,16479,16480,16481,16482,16483,16484,16485,16486,16487,16488,16489,16490,16491,16492,16493,16494,16495,16496,16497,16498,16499,16500,16501,16502,16503,16504,16505,16506,16507,16508,16509,16510,16511,16512,16513,16514,16515,16516,16517,16518,16519,16520,16521,16522,16523,16524,16525,16526,16527,16528,16529,16530,16531,16532,16533,16534,16535,16536,16537,16538,16539,16540,16541,16542,16543,16544,16545,16546,16547,16548,16549,16550,16551,16552,16553,16554,16555,16556,16557,16558,16559,16560,16561,16562,16563,16564,16565,16566,16567,16568,16569,16570,16571,16572,16573,16574,16575,16576,16577,16578,16579,16580,16581,16582,16583,16584,16585,16586,16587,16588,16589,16590,16591,16592,16593,16594,16595,16596,16597,16598,16599,16600,16601,16602,16603,16604,16605,16606,16607,16608,16609,16610,16611,16612,16613,16614,16615,16616,16617,16618,16619,16620,16621,16622,16623,16624,16625,16626,16627,16628,16629,16630,16631,16632,16633,16634,16635,16636,16637,16638,16639,16640,16641,16642,16643,16644,16645,16646,16647,16648,16649,16650,16651,16652,16653,16654,16655,16656,16657,16658,16659,16660,16661,16662,16663,16664,16665,16666,16667,16668,16669,16670,16671,16672,16673,16674,16675,16676,16677,16678,16679,16680,16681,16682,16683,16684,16685,16686,16687,16688,16689,16690,16691,16692,16693,16694,16695,16696,16697,16698,16699,16700,16701,16702,16703,16704,16705,16706,16707,16708,16709,16710,16711,16712,16713,16714,16715,16716,16717,16718,16719,16720,16721,16722,16723,16724,16725,16726,16727,16728,16729,16730,16731,16732,16733,16734,16735,16736,16737,16738,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749,16750,16751,16752,16753,16754,16755,16756,16757,16758,16759,16760,16761,16762,16763,16764,16765,16766,16767,16768,16769,16770,16771,16772,16773,16774,16775,16776,16777,16778,16779,16780,16781,16782,16783,16784,16785,16786,16787,16788,16789,16790,16791,16792,16793,16794,16795,16796,16797,16798,16799,16800,16801,16802,16803,16804,16805,16806,16807,16808,16809,16810,16811,16812,16813,16814,16815,16816,16817,16818,16819,16820,16821,16822,16823,16824,16825,16826,16827,16828,16829,16830,16831,16832,16833,16834,16835,16836,16837,16838,16839,16840,16841,16842,16843,16844,16845,16846,16847,16848,16849,16850,16851,16852,16853,16854,16855,16856,16857,16858,16859,16860,16861,16862,16863,16864,16865,16866,16867,16868,16869,16870,16871,16872,16873,16874,16875,16876,16877,16878,16879,16880,16881,16882,16883,16884,16885,16886,16887,16888,16889,16890,16891,16892,16893,16894,16895,16896,16897,16898,16899,16900,16901,16902,16903,16904,16905,16906,16907,16908,16909,16910,16911,16912,16913,16914,16915,16916,16917,16918,16919,16920,16921,16922,16923,16924,16925,16926,16927,16928,16929,16930,16931,16932,16933,16934,16935,16936,16937,16938,16939,16940,16941,16942,16943,16944,16945,16946,16947,16948,16949,16950,16951,16952,16953,16954,16955,16956,16957,16958,16959,16960,16961,16962,16963,16964,16965,16966,16967,16968,16969,16970,16971,16972,16973,16974,16975,16976,16977,16978,16979,16980,16981,16982,16983,16984,16985,16986,16987,16988,16989,16990,16991,16992,16993,16994,16995,16996,16997,16998,16999,17000,17001,17002,17003,17004,17005,17006,17007,17008,17009,17010,17011,17012,17013,17014,17015,17016,17017,17018,17019,17020,17021,17022,17023,17024,17025,17026,17027,17028,17029,17030,17031,17032,17033,17034,17035,17036,17037,17038,17039,17040,17041,17042,17043,17044,17045,17046,17047,17048,17049,17050,17051,17052,17053,17054,17055,17056,17057,17058,17059,17060,17061,17062,17063,17064,17065,17066,17067,17068,17069,17070,17071,17072,17073,17074,17075,17076,17077,17078,17079,17080,17081,17082,17083,17084,17085,17086,17087,17088,17089,17090,17091,17092,17093,17094,17095,17096,17097,17098,17099,17100,17101,17102,17103,17104,17105,17106,17107,17108,17109,17110,17111,17112,17113,17114,17115,17116,17117,17118,17119,17120,17121,17122,17123,17124,17125,17126,17127,17128,17129,17130,17131,17132,17133,17134,17135,17136,17137,17138,17139,17140,17141,17142,17143,17144,17145,17146,17147,17148,17149,17150,17151,17152,17153,17154,17155,17156,17157,17158,17159,17160,17161,17162,17163,17164,17165,17166,17167,17168,17169,17170,17171,17172,17173,17174,17175,17176,17177,17178,17179,17180,17181,17182,17183,17184,17185,17186,17187,17188,17189,17190,17191,17192,17193,17194,17195,17196,17197,17198,17199,17200,17201,17202,17203,17204,17205,17206,17207,17208,17209,17210,17211,17212,17213,17214,17215,17216,17217,17218,17219,17220,17221,17222,17223,17224,17225,17226,17227,17228,17229,17230,17231,17232,17233,17234,17235,17236,17237,17238,17239,17240,17241,17242,17243,17244,17245,17246,17247,17248,17249,17250,17251,17252,17253,17254,17255,17256,17257,17258,17259,17260,17261,17262,17263,17264,17265,17266,17267,17268,17269,17270,17271,17272,17273,17274,17275,17276,17277,17278,17279,17280,17281,17282,17283,17284,17285,17286,17287,17288,17289,17290,17291,17292,17293,17294,17295,17296,17297,17298,17299,17300,17301,17302,17303,17304,17305,17306,17307,17308,17309,17310,17311,17312,17313,17314,17315,17316,17317,17318,17319,17320,17321,17322,17323,17324,17325,17326,17327,17328,17329,17330,17331,17332,17333,17334,17335,17336,17337,17338,17339,17340,17341,17342,17343,17344,17345,17346,17347,17348,17349,17350,17351,17352,17353,17354,17355,17356,17357,17358,17359,17360,17361,17362,17363,17364,17365,17366,17367,17368,17369,17370,17371,17372,17373,17374,17375,17376,17377,17378,17379,17380,17381,17382,17383,17384,17385,17386,17387,17388,17389,17390,17391,17392,17393,17394,17395,17396,17397,17398,17399,17400,17401,17402,17403,17404,17405,17406,17407,17408,17409,17410,17411,17412,17413,17414,17415,17416,17417,17418,17419,17420,17421,17422,17423,17424,17425,17426,17427,17428,17429,17430,17431,17432,17433,17434,17435,17436,17437,17438,17439,17440,17441,17442,17443,17444,17445,17446,17447,17448,17449,17450,17451,17452,17453,17454,17455,17456,17457,17458,17459,17460,17461,17462,17463,17464,17465,17466,17467,17468,17469,17470,17471,17472,17473,17474,17475,17476,17477,17478,17479,17480,17481,17482,17483,17484,17485,17486,17487,17488,17489,17490,17491,17492,17493,17494,17495,17496,17497,17498,17499,17500,17501,17502,17503,17504,17505,17506,17507,17508,17509,17510,17511,17512,17513,17514,17515,17516,17517,17518,17519,17520,17521,17522,17523,17524,17525,17526,17527,17528,17529,17530,17531,17532,17533,17534,17535,17536,17537,17538,17539,17540,17541,17542,17543,17544,17545,17546,17547,17548,17549,17550,17551,17552,17553,17554,17555,17556,17557,17558,17559,17560,17561,17562,17563,17564,17565,17566,17567,17568,17569,17570,17571,17572,17573,17574,17575,17576,17577,17578,17579,17580,17581,17582,17583,17584,17585,17586,17587,17588,17589,17590,17591,17592,17593,17594,17595,17596,17597,17598,17599,17600,17601,17602,17603,17604,17605,17606,17607,17608,17609,17610,17611,17612,17613,17614,17615,17616,17617,17618,17619,17620,17621,17622,17623,17624,17625,17626,17627,17628,17629,17630,17631,17632,17633,17634,17635,17636,17637,17638,17639,17640,17641,17642,17643,17644,17645,17646,17647,17648,17649,17650,17651,17652,17653,17654,17655,17656,17657,17658,17659,17660,17661,17662,17663,17664,17665,17666,17667,17668,17669,17670,17671,17672,17673,17674,17675,17676,17677,17678,17679,17680,17681,17682,17683,17684,17685,17686,17687,17688,17689,17690,17691,17692,17693,17694,17695,17696,17697,17698,17699,17700,17701,17702,17703,17704,17705,17706,17707,17708,17709,17710,17711,17712,17713,17714,17715,17716,17717,17718,17719,17720,17721,17722,17723,17724,17725,17726,17727,17728,17729,17730,17731,17732,17733,17734,17735,17736,17737,17738,17739,17740,17741,17742,17743,17744,17745,17746,17747,17748,17749,17750,17751,17752,17753,17754,17755,17756,17757,17758,17759,17760,17761,17762,17763,17764,17765,17766,17767,17768,17769,17770,17771,17772,17773,17774,17775,17776,17777,17778,17779,17780,17781,17782,17783,17784,17785,17786,17787,17788,17789,17790,17791,17792,17793,17794,17795,17796,17797,17798,17799,17800,17801,17802,17803,17804,17805,17806,17807,17808,17809,17810,17811,17812,17813,17814,17815,17816,17817,17818,17819,17820,17821,17822,17823,17824,17825,17826,17827,17828,17829,17830,17831,17832,17833,17834,17835,17836,17837,17838,17839,17840,17841,17842,17843,17844,17845,17846,17847,17848,17849,17850,17851,17852,17853,17854,17855,17856,17857,17858,17859,17860,17861,17862,17863,17864,17865,17866,17867,17868,17869,17870,17871,17872,17873,17874,17875,17876,17877,17878,17879,17880,17881,17882,17883,17884,17885,17886,17887,17888,17889,17890,17891,17892,17893,17894,17895,17896,17897,17898,17899,17900,17901,17902,17903,17904,17905,17906,17907,17908,17909,17910,17911,17912,17913,17914,17915,17916,17917,17918,17919,17920,17921,17922,17923,17924,17925,17926,17927,17928,17929,17930,17931,17932,17933,17934,17935,17936,17937,17938,17939,17940,17941,17942,17943,17944,17945,17946,17947,17948,17949,17950,17951,17952,17953,17954,17955,17956,17957,17958,17959,17960,17961,17962,17963,17964,17965,17966,17967,17968,17969,17970,17971,17972,17973,17974,17975,17976,17977,17978,17979,17980,17981,17982,17983,17984,17985,17986,17987,17988,17989,17990,17991,17992,17993,17994,17995,17996,17997,17998,17999,18000,18001,18002,18003,18004,18005,18006,18007,18008,18009,18010,18011,18012,18013,18014,18015,18016,18017,18018,18019,18020,18021,18022,18023,18024,18025,18026,18027,18028,18029,18030,18031,18032,18033,18034,18035,18036,18037,18038,18039,18040,18041,18042,18043,18044,18045,18046,18047,18048,18049,18050,18051,18052,18053,18054,18055,18056,18057,18058,18059,18060,18061,18062,18063,18064,18065,18066,18067,18068,18069,18070,18071,18072,18073,18074,18075,18076,18077,18078,18079,18080,18081,18082,18083,18084,18085,18086,18087,18088,18089,18090,18091,18092,18093,18094,18095,18096,18097,18098,18099,18100,18101,18102,18103,18104,18105,18106,18107,18108,18109,18110,18111,18112,18113,18114,18115,18116,18117,18118,18119,18120,18121,18122,18123,18124,18125,18126,18127,18128,18129,18130,18131,18132,18133,18134,18135,18136,18137,18138,18139,18140,18141,18142,18143,18144,18145,18146,18147,18148,18149,18150,18151,18152,18153,18154,18155,18156,18157,18158,18159,18160,18161,18162,18163,18164,18165,18166,18167,18168,18169,18170,18171,18172,18173,18174,18175,18176,18177,18178,18179,18180,18181,18182,18183,18184,18185,18186,18187,18188,18189,18190,18191,18192,18193,18194,18195,18196,18197,18198,18199,18200,18201,18202,18203,18204,18205,18206,18207,18208,18209,18210,18211,18212,18213,18214,18215,18216,18217,18218,18219,18220,18221,18222,18223,18224,18225,18226,18227,18228,18229,18230,18231,18232,18233,18234,18235,18236,18237,18238,18239,18240,18241,18242,18243,18244,18245,18246,18247,18248,18249,18250,18251,18252,18253,18254,18255,18256,18257,18258,18259,18260,18261,18262,18263,18264,18265,18266,18267,18268,18269,18270,18271,18272,18273,18274,18275,18276,18277,18278,18279,18280,18281,18282,18283,18284,18285,18286,18287,18288,18289,18290,18291,18292,18293,18294,18295,18296,18297,18298,18299,18300,18301,18302,18303,18304,18305,18306,18307,18308,18309,18310,18311,18312,18313,18314,18315,18316,18317,18318,18319,18320,18321,18322,18323,18324,18325,18326,18327,18328,18329,18330,18331,18332,18333,18334,18335,18336,18337,18338,18339,18340,18341,18342,18343,18344,18345,18346,18347,18348,18349,18350,18351,18352,18353,18354,18355,18356,18357,18358,18359,18360,18361,18362,18363,18364,18365,18366,18367,18368,18369,18370,18371,18372,18373,18374,18375,18376,18377,18378,18379,18380,18381,18382,18383,18384,18385,18386,18387,18388,18389,18390,18391,18392,18393,18394,18395,18396,18397,18398,18399,18400,18401,18402,18403,18404,18405,18406,18407,18408,18409,18410,18411,18412,18413,18414,18415,18416,18417,18418,18419,18420,18421,18422,18423,18424,18425,18426,18427,18428,18429,18430,18431,18432,18433,18434,18435,18436,18437,18438,18439,18440,18441,18442,18443,18444,18445,18446,18447,18448,18449,18450,18451,18452,18453,18454,18455,18456,18457,18458,18459,18460,18461,18462,18463,18464,18465,18466,18467,18468,18469,18470,18471,18472,18473,18474,18475,18476,18477,18478,18479,18480,18481,18482,18483,18484,18485,18486,18487,18488,18489,18490,18491,18492,18493,18494,18495,18496,18497,18498,18499,18500,18501,18502,18503,18504,18505,18506,18507,18508,18509,18510,18511,18512,18513,18514,18515,18516,18517,18518,18519,18520,18521,18522,18523,18524,18525,18526,18527,18528,18529,18530,18531,18532,18533,18534,18535,18536,18537,18538,18539,18540,18541,18542,18543,18544,18545,18546,18547,18548,18549,18550,18551,18552,18553,18554,18555,18556,18557,18558,18559,18560,18561,18562,18563,18564,18565,18566,18567,18568,18569,18570,18571,18572,18573,18574,18575,18576,18577,18578,18579,18580,18581,18582,18583,18584,18585,18586,18587,18588,18589,18590,18591,18592,18593,18594,18595,18596,18597,18598,18599,18600,18601,18602,18603,18604,18605,18606,18607,18608,18609,18610,18611,18612,18613,18614,18615,18616,18617,18618,18619,18620,18621,18622,18623,18624,18625,18626,18627,18628,18629,18630,18631,18632,18633,18634,18635,18636,18637,18638,18639,18640,18641,18642,18643,18644,18645,18646,18647,18648,18649,18650,18651,18652,18653,18654,18655,18656,18657,18658,18659,18660,18661,18662,18663,18664,18665,18666,18667,18668,18669,18670,18671,18672,18673,18674,18675,18676,18677,18678,18679,18680,18681,18682,18683,18684,18685,18686,18687,18688,18689,18690,18691,18692,18693,18694,18695,18696,18697,18698,18699,18700,18701,18702,18703,18704,18705,18706,18707,18708,18709,18710,18711,18712,18713,18714,18715,18716,18717,18718,18719,18720,18721,18722,18723,18724,18725,18726,18727,18728,18729,18730,18731,18732,18733,18734,18735,18736,18737,18738,18739,18740,18741,18742,18743,18744,18745,18746,18747,18748,18749,18750,18751,18752,18753,18754,18755,18756,18757,18758,18759,18760,18761,18762,18763,18764,18765,18766,18767,18768,18769,18770,18771,18772,18773,18774,18775,18776,18777,18778,18779,18780,18781,18782,18783,18784,18785,18786,18787,18788,18789,18790,18791,18792,18793,18794,18795,18796,18797,18798,18799,18800,18801,18802,18803,18804,18805,18806,18807,18808,18809,18810,18811,18812,18813,18814,18815,18816,18817,18818,18819,18820,18821,18822,18823,18824,18825,18826,18827,18828,18829,18830,18831,18832,18833,18834,18835,18836,18837,18838,18839,18840,18841,18842,18843,18844,18845,18846,18847,18848,18849,18850,18851,18852,18853,18854,18855,18856,18857,18858,18859,18860,18861,18862,18863,18864,18865,18866,18867,18868,18869,18870,18871,18872,18873,18874,18875,18876,18877,18878,18879,18880,18881,18882,18883,18884,18885,18886,18887,18888,18889,18890,18891,18892,18893,18894,18895,18896,18897,18898,18899,18900,18901,18902,18903,18904,18905,18906,18907,18908,18909,18910,18911,18912,18913,18914,18915,18916,18917,18918,18919,18920,18921,18922,18923,18924,18925,18926,18927,18928,18929,18930,18931,18932,18933,18934,18935,18936,18937,18938,18939,18940,18941,18942,18943,18944,18945,18946,18947,18948,18949,18950,18951,18952,18953,18954,18955,18956,18957,18958,18959,18960,18961,18962,18963,18964,18965,18966,18967,18968,18969,18970,18971,18972,18973,18974,18975,18976,18977,18978,18979,18980,18981,18982,18983,18984,18985,18986,18987,18988,18989,18990,18991,18992,18993,18994,18995,18996,18997,18998,18999,19000,19001,19002,19003,19004,19005,19006,19007,19008,19009,19010,19011,19012,19013,19014,19015,19016,19017,19018,19019,19020,19021,19022,19023,19024,19025,19026,19027,19028,19029,19030,19031,19032,19033,19034,19035,19036,19037,19038,19039,19040,19041,19042,19043,19044,19045,19046,19047,19048,19049,19050,19051,19052,19053,19054,19055,19056,19057,19058,19059,19060,19061,19062,19063,19064,19065,19066,19067,19068,19069,19070,19071,19072,19073,19074,19075,19076,19077,19078,19079,19080,19081,19082,19083,19084,19085,19086,19087,19088,19089,19090,19091,19092,19093,19094,19095,19096,19097,19098,19099,19100,19101,19102,19103,19104,19105,19106,19107,19108,19109,19110,19111,19112,19113,19114,19115,19116,19117,19118,19119,19120,19121,19122,19123,19124,19125,19126,19127,19128,19129,19130,19131,19132,19133,19134,19135,19136,19137,19138,19139,19140,19141,19142,19143,19144,19145,19146,19147,19148,19149,19150,19151,19152,19153,19154,19155,19156,19157,19158,19159,19160,19161,19162,19163,19164,19165,19166,19167,19168,19169,19170,19171,19172,19173,19174,19175,19176,19177,19178,19179,19180,19181,19182,19183,19184,19185,19186,19187,19188,19189,19190,19191,19192,19193,19194,19195,19196,19197,19198,19199,19200,19201,19202,19203,19204,19205,19206,19207,19208,19209,19210,19211,19212,19213,19214,19215,19216,19217,19218,19219,19220,19221,19222,19223,19224,19225,19226,19227,19228,19229,19230,19231,19232,19233,19234,19235,19236,19237,19238,19239,19240,19241,19242,19243,19244,19245,19246,19247,19248,19249,19250,19251,19252,19253,19254,19255,19256,19257,19258,19259,19260,19261,19262,19263,19264,19265,19266,19267,19268,19269,19270,19271,19272,19273,19274,19275,19276,19277,19278,19279,19280,19281,19282,19283,19284,19285,19286,19287,19288,19289,19290,19291,19292,19293,19294,19295,19296,19297,19298,19299,19300,19301,19302,19303,19304,19305,19306,19307,19308,19309,19310,19311,19312,19313,19314,19315,19316,19317,19318,19319,19320,19321,19322,19323,19324,19325,19326,19327,19328,19329,19330,19331,19332,19333,19334,19335,19336,19337,19338,19339,19340,19341,19342,19343,19344,19345,19346,19347,19348,19349,19350,19351,19352,19353,19354,19355,19356,19357,19358,19359,19360,19361,19362,19363,19364,19365,19366,19367,19368,19369,19370,19371,19372,19373,19374,19375,19376,19377,19378,19379,19380,19381,19382,19383,19384,19385,19386,19387,19388,19389,19390,19391,19392,19393,19394,19395,19396,19397,19398,19399,19400,19401,19402,19403,19404,19405,19406,19407,19408,19409,19410,19411,19412,19413,19414,19415,19416,19417,19418,19419,19420,19421,19422,19423,19424,19425,19426,19427,19428,19429,19430,19431,19432,19433,19434,19435,19436,19437,19438,19439,19440,19441,19442,19443,19444,19445,19446,19447,19448,19449,19450,19451,19452,19453,19454,19455,19456,19457,19458,19459,19460,19461,19462,19463,19464,19465,19466,19467,19468,19469,19470,19471,19472,19473,19474,19475,19476,19477,19478,19479,19480,19481,19482,19483,19484,19485,19486,19487,19488,19489,19490,19491,19492,19493,19494,19495,19496,19497,19498,19499,19500,19501,19502,19503,19504,19505,19506,19507,19508,19509,19510,19511,19512,19513,19514,19515,19516,19517,19518,19519,19520,19521,19522,19523,19524,19525,19526,19527,19528,19529,19530,19531,19532,19533,19534,19535,19536,19537,19538,19539,19540,19541,19542,19543,19544,19545,19546,19547,19548,19549,19550,19551,19552,19553,19554,19555,19556,19557,19558,19559,19560,19561,19562,19563,19564,19565,19566,19567,19568,19569,19570,19571,19572,19573,19574,19575,19576,19577,19578,19579,19580,19581,19582,19583,19584,19585,19586,19587,19588,19589,19590,19591,19592,19593,19594,19595,19596,19597,19598,19599,19600,19601,19602,19603,19604,19605,19606,19607,19608,19609,19610,19611,19612,19613,19614,19615,19616,19617,19618,19619,19620,19621,19622,19623,19624,19625,19626,19627,19628,19629,19630,19631,19632,19633,19634,19635,19636,19637,19638,19639,19640,19641,19642,19643,19644,19645,19646,19647,19648,19649,19650,19651,19652,19653,19654,19655,19656,19657,19658,19659,19660,19661,19662,19663,19664,19665,19666,19667,19668,19669,19670,19671,19672,19673,19674,19675,19676,19677,19678,19679,19680,19681,19682,19683,19684,19685,19686,19687,19688,19689,19690,19691,19692,19693,19694,19695,19696,19697,19698,19699,19700,19701,19702,19703,19704,19705,19706,19707,19708,19709,19710,19711,19712,19713,19714,19715,19716,19717,19718,19719,19720,19721,19722,19723,19724,19725,19726,19727,19728,19729,19730,19731,19732,19733,19734,19735,19736,19737,19738,19739,19740,19741,19742,19743,19744,19745,19746,19747,19748,19749,19750,19751,19752,19753,19754,19755,19756,19757,19758,19759,19760,19761,19762,19763,19764,19765,19766,19767,19768,19769,19770,19771,19772,19773,19774,19775,19776,19777,19778,19779,19780,19781,19782,19783,19784,19785,19786,19787,19788,19789,19790,19791,19792,19793,19794,19795,19796,19797,19798,19799,19800,19801,19802,19803,19804,19805,19806,19807,19808,19809,19810,19811,19812,19813,19814,19815,19816,19817,19818,19819,19820,19821,19822,19823,19824,19825,19826,19827,19828,19829,19830,19831,19832,19833,19834,19835,19836,19837,19838,19839,19840,19841,19842,19843,19844,19845,19846,19847,19848,19849,19850,19851,19852,19853,19854,19855,19856,19857,19858,19859,19860,19861,19862,19863,19864,19865,19866,19867,19868,19869,19870,19871,19872,19873,19874,19875,19876,19877,19878,19879,19880,19881,19882,19883,19884,19885,19886,19887,19888,19889,19890,19891,19892,19893,19894,19895,19896,19897,19898,19899,19900,19901,19902,19903,19904,19905,19906,19907,19908,19909,19910,19911,19912,19913,19914,19915,19916,19917,19918,19919,19920,19921,19922,19923,19924,19925,19926,19927,19928,19929,19930,19931,19932,19933,19934,19935,19936,19937,19938,19939,19940,19941,19942,19943,19944,19945,19946,19947,19948,19949,19950,19951,19952,19953,19954,19955,19956,19957,19958,19959,19960,19961,19962,19963,19964,19965,19966,19967,19968,19969,19970,19971,19972,19973,19974,19975,19976,19977,19978,19979,19980,19981,19982,19983,19984,19985,19986,19987,19988,19989,19990,19991,19992,19993,19994,19995,19996,19997,19998,19999,20000,20001,20002,20003,20004,20005,20006,20007,20008,20009,20010,20011,20012,20013,20014,20015,20016,20017,20018,20019,20020,20021,20022,20023,20024,20025,20026,20027,20028,20029,20030,20031,20032,20033,20034,20035,20036,20037,20038,20039,20040,20041,20042,20043,20044,20045,20046,20047,20048,20049,20050,20051,20052,20053,20054,20055,20056,20057,20058,20059,20060,20061,20062,20063,20064,20065,20066,20067,20068,20069,20070,20071,20072,20073,20074,20075,20076,20077,20078,20079,20080,20081,20082,20083,20084,20085,20086,20087,20088,20089,20090,20091,20092,20093,20094,20095,20096,20097,20098,20099,20100,20101,20102,20103,20104,20105,20106,20107,20108,20109,20110,20111,20112,20113,20114,20115,20116,20117,20118,20119,20120,20121,20122,20123,20124,20125,20126,20127,20128,20129,20130,20131,20132,20133,20134,20135,20136,20137,20138,20139,20140,20141,20142,20143,20144,20145,20146,20147,20148,20149,20150,20151,20152,20153,20154,20155,20156,20157,20158,20159,20160,20161,20162,20163,20164,20165,20166,20167,20168,20169,20170,20171,20172,20173,20174,20175,20176,20177,20178,20179,20180,20181,20182,20183,20184,20185,20186,20187,20188,20189,20190,20191,20192,20193,20194,20195,20196,20197,20198,20199,20200,20201,20202,20203,20204,20205,20206,20207,20208,20209,20210,20211,20212,20213,20214,20215,20216,20217,20218,20219,20220,20221,20222,20223,20224,20225,20226,20227,20228,20229,20230,20231,20232,20233,20234,20235,20236,20237,20238,20239,20240,20241,20242,20243,20244,20245,20246,20247,20248,20249,20250,20251,20252,20253,20254,20255,20256,20257,20258,20259,20260,20261,20262,20263,20264,20265,20266,20267,20268,20269,20270,20271,20272,20273,20274,20275,20276,20277,20278,20279,20280,20281,20282,20283,20284,20285,20286,20287,20288,20289,20290,20291,20292,20293,20294,20295,20296,20297,20298,20299,20300,20301,20302,20303,20304,20305,20306,20307,20308,20309,20310,20311,20312,20313,20314,20315,20316,20317,20318,20319,20320,20321,20322,20323,20324,20325,20326,20327,20328,20329,20330,20331,20332,20333,20334,20335,20336,20337,20338,20339,20340,20341,20342,20343,20344,20345,20346,20347,20348,20349,20350,20351,20352,20353,20354,20355,20356,20357,20358,20359,20360,20361,20362,20363,20364,20365,20366,20367,20368,20369,20370,20371,20372,20373,20374,20375,20376,20377,20378,20379,20380,20381,20382,20383,20384,20385,20386,20387,20388,20389,20390,20391,20392,20393,20394,20395,20396,20397,20398,20399,20400,20401,20402,20403,20404,20405,20406,20407,20408,20409,20410,20411,20412,20413,20414,20415,20416,20417,20418,20419,20420,20421,20422,20423,20424,20425,20426,20427,20428,20429,20430,20431,20432,20433,20434,20435,20436,20437,20438,20439,20440,20441,20442,20443,20444,20445,20446,20447,20448,20449,20450,20451,20452,20453,20454,20455,20456,20457,20458,20459,20460,20461,20462,20463,20464,20465,20466,20467,20468,20469,20470,20471,20472,20473,20474,20475,20476,20477,20478,20479,20480,20481,20482,20483,20484,20485,20486,20487,20488,20489,20490,20491,20492,20493,20494,20495,20496,20497,20498,20499,20500,20501,20502,20503,20504,20505,20506,20507,20508,20509,20510,20511,20512,20513,20514,20515,20516,20517,20518,20519,20520,20521,20522,20523,20524,20525,20526,20527,20528,20529,20530,20531,20532,20533,20534,20535,20536,20537,20538,20539,20540,20541,20542,20543,20544,20545,20546,20547,20548,20549,20550,20551,20552,20553,20554,20555,20556,20557,20558,20559,20560,20561,20562,20563,20564,20565,20566,20567,20568,20569,20570,20571,20572,20573,20574,20575,20576,20577,20578,20579,20580,20581,20582,20583,20584,20585,20586,20587,20588,20589,20590,20591,20592,20593,20594,20595,20596,20597,20598,20599,20600,20601,20602,20603,20604,20605,20606,20607,20608,20609,20610,20611,20612,20613,20614,20615,20616,20617,20618,20619,20620,20621,20622,20623,20624,20625,20626,20627,20628,20629,20630,20631,20632,20633,20634,20635,20636,20637,20638,20639,20640,20641,20642,20643,20644,20645,20646,20647,20648,20649,20650,20651,20652,20653,20654,20655,20656,20657,20658,20659,20660,20661,20662,20663,20664,20665,20666,20667,20668,20669,20670,20671,20672,20673,20674,20675,20676,20677,20678,20679,20680,20681,20682,20683,20684,20685,20686,20687,20688,20689,20690,20691,20692,20693,20694,20695,20696,20697,20698,20699,20700,20701,20702,20703,20704,20705,20706,20707,20708,20709,20710,20711,20712,20713,20714,20715,20716,20717,20718,20719,20720,20721,20722,20723,20724,20725,20726,20727,20728,20729,20730,20731,20732,20733,20734,20735,20736,20737,20738,20739,20740,20741,20742,20743,20744,20745,20746,20747,20748,20749,20750,20751,20752,20753,20754,20755,20756,20757,20758,20759,20760,20761,20762,20763,20764,20765,20766,20767,20768,20769,20770,20771,20772,20773,20774,20775,20776,20777,20778,20779,20780,20781,20782,20783,20784,20785,20786,20787,20788,20789,20790,20791,20792,20793,20794,20795,20796,20797,20798,20799,20800,20801,20802,20803,20804,20805,20806,20807,20808,20809,20810,20811,20812,20813,20814,20815,20816,20817,20818,20819,20820,20821,20822,20823,20824,20825,20826,20827,20828,20829,20830,20831,20832,20833,20834,20835,20836,20837,20838,20839,20840,20841,20842,20843,20844,20845,20846,20847,20848,20849,20850,20851,20852,20853,20854,20855,20856,20857,20858,20859,20860,20861,20862,20863,20864,20865,20866,20867,20868,20869,20870,20871,20872,20873,20874,20875,20876,20877,20878,20879,20880,20881,20882,20883,20884,20885,20886,20887,20888,20889,20890,20891,20892,20893,20894,20895,20896,20897,20898,20899,20900,20901,20902,20903,20904,20905,20906,20907,20908,20909,20910,20911,20912,20913,20914,20915,20916,20917,20918,20919,20920,20921,20922,20923,20924,20925,20926,20927,20928,20929,20930,20931,20932,20933,20934,20935,20936,20937,20938,20939,20940,20941,20942,20943,20944,20945,20946,20947,20948,20949,20950,20951,20952,20953,20954,20955,20956,20957,20958,20959,20960,20961,20962,20963,20964,20965,20966,20967,20968,20969,20970,20971,20972,20973,20974,20975,20976,20977,20978,20979,20980,20981,20982,20983,20984,20985,20986,20987,20988,20989,20990,20991,20992,20993,20994,20995,20996,20997,20998,20999,21000,21001,21002,21003,21004,21005,21006,21007,21008,21009,21010,21011,21012,21013,21014,21015,21016,21017,21018,21019,21020,21021,21022,21023,21024,21025,21026,21027,21028,21029,21030,21031,21032,21033,21034,21035,21036,21037,21038,21039,21040,21041,21042,21043,21044,21045,21046,21047,21048,21049,21050,21051,21052,21053,21054,21055,21056,21057,21058,21059,21060,21061,21062,21063,21064,21065,21066,21067,21068,21069,21070,21071,21072,21073,21074,21075,21076,21077,21078,21079,21080,21081,21082,21083,21084,21085,21086,21087,21088,21089,21090,21091,21092,21093,21094,21095,21096,21097,21098,21099,21100,21101,21102,21103,21104,21105,21106,21107,21108,21109,21110,21111,21112,21113,21114,21115,21116,21117,21118,21119,21120,21121,21122,21123,21124,21125,21126,21127,21128,21129,21130,21131,21132,21133,21134,21135,21136,21137,21138,21139,21140,21141,21142,21143,21144,21145,21146,21147,21148,21149,21150,21151,21152,21153,21154,21155,21156,21157,21158,21159,21160,21161,21162,21163,21164,21165,21166,21167,21168,21169,21170,21171,21172,21173,21174,21175,21176,21177,21178,21179,21180,21181,21182,21183,21184,21185,21186,21187,21188,21189,21190,21191,21192,21193,21194,21195,21196,21197,21198,21199,21200,21201,21202,21203,21204,21205,21206,21207,21208,21209,21210,21211,21212,21213,21214,21215,21216,21217,21218,21219,21220,21221,21222,21223,21224,21225,21226,21227,21228,21229,21230,21231,21232,21233,21234,21235,21236,21237,21238,21239,21240,21241,21242,21243,21244,21245,21246,21247,21248,21249,21250,21251,21252,21253,21254,21255,21256,21257,21258,21259,21260,21261,21262,21263,21264,21265,21266,21267,21268,21269,21270,21271,21272,21273,21274,21275,21276,21277,21278,21279,21280,21281,21282,21283,21284,21285,21286,21287,21288,21289,21290,21291,21292,21293,21294,21295,21296,21297,21298,21299,21300,21301,21302,21303,21304,21305,21306,21307,21308,21309,21310,21311,21312,21313,21314,21315,21316,21317,21318,21319,21320,21321,21322,21323,21324,21325,21326,21327,21328,21329,21330,21331,21332,21333,21334,21335,21336,21337,21338,21339,21340,21341,21342,21343,21344,21345,21346,21347,21348,21349,21350,21351,21352,21353,21354,21355,21356,21357,21358,21359,21360,21361,21362,21363,21364,21365,21366,21367,21368,21369,21370,21371,21372,21373,21374,21375,21376,21377,21378,21379,21380,21381,21382,21383,21384,21385,21386,21387,21388,21389,21390,21391,21392,21393,21394,21395,21396,21397,21398,21399,21400,21401,21402,21403,21404,21405,21406,21407,21408,21409,21410,21411,21412,21413,21414,21415,21416,21417,21418,21419,21420,21421,21422,21423,21424,21425,21426,21427,21428,21429,21430,21431,21432,21433,21434,21435,21436,21437,21438,21439,21440,21441,21442,21443,21444,21445,21446,21447,21448,21449,21450,21451,21452,21453,21454,21455,21456,21457,21458,21459,21460,21461,21462,21463,21464,21465,21466,21467,21468,21469,21470,21471,21472,21473,21474,21475,21476,21477,21478,21479,21480,21481,21482,21483,21484,21485,21486,21487,21488,21489,21490,21491,21492,21493,21494,21495,21496,21497,21498,21499,21500,21501,21502,21503,21504,21505,21506,21507,21508,21509,21510,21511,21512,21513,21514,21515,21516,21517,21518,21519,21520,21521,21522,21523,21524,21525,21526,21527,21528,21529,21530,21531,21532,21533,21534,21535,21536,21537,21538,21539,21540,21541,21542,21543,21544,21545,21546,21547,21548,21549,21550,21551,21552,21553,21554,21555,21556,21557,21558,21559,21560,21561,21562,21563,21564,21565,21566,21567,21568,21569,21570,21571,21572,21573,21574,21575,21576,21577,21578,21579,21580,21581,21582,21583,21584,21585,21586,21587,21588,21589,21590,21591,21592,21593,21594,21595,21596,21597,21598,21599,21600,21601,21602,21603,21604,21605,21606,21607,21608,21609,21610,21611,21612,21613,21614,21615,21616,21617,21618,21619,21620,21621,21622,21623,21624,21625,21626,21627,21628,21629,21630,21631,21632,21633,21634,21635,21636,21637,21638,21639,21640,21641,21642,21643,21644,21645,21646,21647,21648,21649,21650,21651,21652,21653,21654,21655,21656,21657,21658,21659,21660,21661,21662,21663,21664,21665,21666,21667,21668,21669,21670,21671,21672,21673,21674,21675,21676,21677,21678,21679,21680,21681,21682,21683,21684,21685,21686,21687,21688,21689,21690,21691,21692,21693,21694,21695,21696,21697,21698,21699,21700,21701,21702,21703,21704,21705,21706,21707,21708,21709,21710,21711,21712,21713,21714,21715,21716,21717,21718,21719,21720,21721,21722,21723,21724,21725,21726,21727,21728,21729,21730,21731,21732,21733,21734,21735,21736,21737,21738,21739,21740,21741,21742,21743,21744,21745,21746,21747,21748,21749,21750,21751,21752,21753,21754,21755,21756,21757,21758,21759,21760,21761,21762,21763,21764,21765,21766,21767,21768,21769,21770,21771,21772,21773,21774,21775,21776,21777,21778,21779,21780,21781,21782,21783,21784,21785,21786,21787,21788,21789,21790,21791,21792,21793,21794,21795,21796,21797,21798,21799,21800,21801,21802,21803,21804,21805,21806,21807,21808,21809,21810,21811,21812,21813,21814,21815,21816,21817,21818,21819,21820,21821,21822,21823,21824,21825,21826,21827,21828,21829,21830,21831,21832,21833,21834,21835,21836,21837,21838,21839,21840,21841,21842,21843,21844,21845,21846,21847,21848,21849,21850,21851,21852,21853,21854,21855,21856,21857,21858,21859,21860,21861,21862,21863,21864,21865,21866,21867,21868,21869,21870,21871,21872,21873,21874,21875,21876,21877,21878,21879,21880,21881,21882,21883,21884,21885,21886,21887,21888,21889,21890,21891,21892,21893,21894,21895,21896,21897,21898,21899,21900,21901,21902,21903,21904,21905,21906,21907,21908,21909,21910,21911,21912,21913,21914,21915,21916,21917,21918,21919,21920,21921,21922,21923,21924,21925,21926,21927,21928,21929,21930,21931,21932,21933,21934,21935,21936,21937,21938,21939,21940,21941,21942,21943,21944,21945,21946,21947,21948,21949,21950,21951,21952,21953,21954,21955,21956,21957,21958,21959,21960,21961,21962,21963,21964,21965,21966,21967,21968,21969,21970,21971,21972,21973,21974,21975,21976,21977,21978,21979,21980,21981,21982,21983,21984,21985,21986,21987,21988,21989,21990,21991,21992,21993,21994,21995,21996,21997,21998,21999,22000,22001,22002,22003,22004,22005,22006,22007,22008,22009,22010,22011,22012,22013,22014,22015,22016,22017,22018,22019,22020,22021,22022,22023,22024,22025,22026,22027,22028,22029,22030,22031,22032,22033,22034,22035,22036,22037,22038,22039,22040,22041,22042,22043,22044,22045,22046,22047,22048,22049,22050,22051,22052,22053,22054,22055,22056,22057,22058,22059,22060,22061,22062,22063,22064,22065,22066,22067,22068,22069,22070,22071,22072,22073,22074,22075,22076,22077,22078,22079,22080,22081,22082,22083,22084,22085,22086,22087,22088,22089,22090,22091,22092,22093,22094,22095,22096,22097,22098,22099,22100,22101,22102,22103,22104,22105,22106,22107,22108,22109,22110,22111,22112,22113,22114,22115,22116,22117,22118,22119,22120,22121,22122,22123,22124,22125,22126,22127,22128,22129,22130,22131,22132,22133,22134,22135,22136,22137,22138,22139,22140,22141,22142,22143,22144,22145,22146,22147,22148,22149,22150,22151,22152,22153,22154,22155,22156,22157,22158,22159,22160,22161,22162,22163,22164,22165,22166,22167,22168,22169,22170,22171,22172,22173,22174,22175,22176,22177,22178,22179,22180,22181,22182,22183,22184,22185,22186,22187,22188,22189,22190,22191,22192,22193,22194,22195,22196,22197,22198,22199,22200,22201,22202,22203,22204,22205,22206,22207,22208,22209,22210,22211,22212,22213,22214,22215,22216,22217,22218,22219,22220,22221,22222,22223,22224,22225,22226,22227,22228,22229,22230,22231,22232,22233,22234,22235,22236,22237,22238,22239,22240,22241,22242,22243,22244,22245,22246,22247,22248,22249,22250,22251,22252,22253,22254,22255,22256,22257,22258,22259,22260,22261,22262,22263,22264,22265,22266,22267,22268,22269,22270,22271,22272,22273,22274,22275,22276,22277,22278,22279,22280,22281,22282,22283,22284,22285,22286,22287,22288,22289,22290,22291,22292,22293,22294,22295,22296,22297,22298,22299,22300,22301,22302,22303,22304,22305,22306,22307,22308,22309,22310,22311,22312,22313,22314,22315,22316,22317,22318,22319,22320,22321,22322,22323,22324,22325,22326,22327,22328,22329,22330,22331,22332,22333,22334,22335,22336,22337,22338,22339,22340,22341,22342,22343,22344,22345,22346,22347,22348,22349,22350,22351,22352,22353,22354,22355,22356,22357,22358,22359,22360,22361,22362,22363,22364,22365,22366,22367,22368,22369,22370,22371,22372,22373,22374,22375,22376,22377,22378,22379,22380,22381,22382,22383,22384,22385,22386,22387,22388,22389,22390,22391,22392,22393,22394,22395,22396,22397,22398,22399,22400,22401,22402,22403,22404,22405,22406,22407,22408,22409,22410,22411,22412,22413,22414,22415,22416,22417,22418,22419,22420,22421,22422,22423,22424,22425,22426,22427,22428,22429,22430,22431,22432,22433,22434,22435,22436,22437,22438,22439,22440,22441,22442,22443,22444,22445,22446,22447,22448,22449,22450,22451,22452,22453,22454,22455,22456,22457,22458,22459,22460,22461,22462,22463,22464,22465,22466,22467,22468,22469,22470,22471,22472,22473,22474,22475,22476,22477,22478,22479,22480,22481,22482,22483,22484,22485,22486,22487,22488,22489,22490,22491,22492,22493,22494,22495,22496,22497,22498,22499,22500,22501,22502,22503,22504,22505,22506,22507,22508,22509,22510,22511,22512,22513,22514,22515,22516,22517,22518,22519,22520,22521,22522,22523,22524,22525,22526,22527,22528,22529,22530,22531,22532,22533,22534,22535,22536,22537,22538,22539,22540,22541,22542,22543,22544,22545,22546,22547,22548,22549,22550,22551,22552,22553,22554,22555,22556,22557,22558,22559,22560,22561,22562,22563,22564,22565,22566,22567,22568,22569,22570,22571,22572,22573,22574,22575,22576,22577,22578,22579,22580,22581,22582,22583,22584,22585,22586,22587,22588,22589,22590,22591,22592,22593,22594,22595,22596,22597,22598,22599,22600,22601,22602,22603,22604,22605,22606,22607,22608,22609,22610,22611,22612,22613,22614,22615,22616,22617,22618,22619,22620,22621,22622,22623,22624,22625,22626,22627,22628,22629,22630,22631,22632,22633,22634,22635,22636,22637,22638,22639,22640,22641,22642,22643,22644,22645,22646,22647,22648,22649,22650,22651,22652,22653,22654,22655,22656,22657,22658,22659,22660,22661,22662,22663,22664,22665,22666,22667,22668,22669,22670,22671,22672,22673,22674,22675,22676,22677,22678,22679,22680,22681,22682,22683,22684,22685,22686,22687,22688,22689,22690,22691,22692,22693,22694,22695,22696,22697,22698,22699,22700,22701,22702,22703,22704,22705,22706,22707,22708,22709,22710,22711,22712,22713,22714,22715,22716,22717,22718,22719,22720,22721,22722,22723,22724,22725,22726,22727,22728,22729,22730,22731,22732,22733,22734,22735,22736,22737,22738,22739,22740,22741,22742,22743,22744,22745,22746,22747,22748,22749,22750,22751,22752,22753,22754,22755,22756,22757,22758,22759,22760,22761,22762,22763,22764,22765,22766,22767,22768,22769,22770,22771,22772,22773,22774,22775,22776,22777,22778,22779,22780,22781,22782,22783,22784,22785,22786,22787,22788,22789,22790,22791,22792,22793,22794,22795,22796,22797,22798,22799,22800,22801,22802,22803,22804,22805,22806,22807,22808,22809,22810,22811,22812,22813,22814,22815,22816,22817,22818,22819,22820,22821,22822,22823,22824,22825,22826,22827,22828,22829,22830,22831,22832,22833,22834,22835,22836,22837,22838,22839,22840,22841,22842,22843,22844,22845,22846,22847,22848,22849,22850,22851,22852,22853,22854,22855,22856,22857,22858,22859,22860,22861,22862,22863,22864,22865,22866,22867,22868,22869,22870,22871,22872,22873,22874,22875,22876,22877,22878,22879,22880,22881,22882,22883,22884,22885,22886,22887,22888,22889,22890,22891,22892,22893,22894,22895,22896,22897,22898,22899,22900,22901,22902,22903,22904,22905,22906,22907,22908,22909,22910,22911,22912,22913,22914,22915,22916,22917,22918,22919,22920,22921,22922,22923,22924,22925,22926,22927,22928,22929,22930,22931,22932,22933,22934,22935,22936,22937,22938,22939,22940,22941,22942,22943,22944,22945,22946,22947,22948,22949,22950,22951,22952,22953,22954,22955,22956,22957,22958,22959,22960,22961,22962,22963,22964,22965,22966,22967,22968,22969,22970,22971,22972,22973,22974,22975,22976,22977,22978,22979,22980,22981,22982,22983,22984,22985,22986,22987,22988,22989,22990,22991,22992,22993,22994,22995,22996,22997,22998,22999,23000,23001,23002,23003,23004,23005,23006,23007,23008,23009,23010,23011,23012,23013,23014,23015,23016,23017,23018,23019,23020,23021,23022,23023,23024,23025,23026,23027,23028,23029,23030,23031,23032,23033,23034,23035,23036,23037,23038,23039,23040,23041,23042,23043,23044,23045,23046,23047,23048,23049,23050,23051,23052,23053,23054,23055,23056,23057,23058,23059,23060,23061,23062,23063,23064,23065,23066,23067,23068,23069,23070,23071,23072,23073,23074,23075,23076,23077,23078,23079,23080,23081,23082,23083,23084,23085,23086,23087,23088,23089,23090,23091,23092,23093,23094,23095,23096,23097,23098,23099,23100,23101,23102,23103,23104,23105,23106,23107,23108,23109,23110,23111,23112,23113,23114,23115,23116,23117,23118,23119,23120,23121,23122,23123,23124,23125,23126,23127,23128,23129,23130,23131,23132,23133,23134,23135,23136,23137,23138,23139,23140,23141,23142,23143,23144,23145,23146,23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23161,23162,23163,23164,23165,23166,23167,23168,23169,23170,23171,23172,23173,23174,23175,23176,23177,23178,23179,23180,23181,23182,23183,23184,23185,23186,23187,23188,23189,23190,23191,23192,23193,23194,23195,23196,23197,23198,23199,23200,23201,23202,23203,23204,23205,23206,23207,23208,23209,23210,23211,23212,23213,23214,23215,23216,23217,23218,23219,23220,23221,23222,23223,23224,23225,23226,23227,23228,23229,23230,23231,23232,23233,23234,23235,23236,23237,23238,23239,23240,23241,23242,23243,23244,23245,23246,23247,23248,23249,23250,23251,23252,23253,23254,23255,23256,23257,23258,23259,23260,23261,23262,23263,23264,23265,23266,23267,23268,23269,23270,23271,23272,23273,23274,23275,23276,23277,23278,23279,23280,23281,23282,23283,23284,23285,23286,23287,23288,23289,23290,23291,23292,23293,23294,23295,23296,23297,23298,23299,23300,23301,23302,23303,23304,23305,23306,23307,23308,23309,23310,23311,23312,23313,23314,23315,23316,23317,23318,23319,23320,23321,23322,23323,23324,23325,23326,23327,23328,23329,23330,23331,23332,23333,23334,23335,23336,23337,23338,23339,23340,23341,23342,23343,23344,23345,23346,23347,23348,23349,23350,23351,23352,23353,23354,23355,23356,23357,23358,23359,23360,23361,23362,23363,23364,23365,23366,23367,23368,23369,23370,23371,23372,23373,23374,23375,23376,23377,23378,23379,23380,23381,23382,23383,23384,23385,23386,23387,23388,23389,23390,23391,23392,23393,23394,23395,23396,23397,23398,23399,23400,23401,23402,23403,23404,23405,23406,23407,23408,23409,23410,23411,23412,23413,23414,23415,23416,23417,23418,23419,23420,23421,23422,23423,23424,23425,23426,23427,23428,23429,23430,23431,23432,23433,23434,23435,23436,23437,23438,23439,23440,23441,23442,23443,23444,23445,23446,23447,23448,23449,23450,23451,23452,23453,23454,23455,23456,23457,23458,23459,23460,23461,23462,23463,23464,23465,23466,23467,23468,23469,23470,23471,23472,23473,23474,23475,23476,23477,23478,23479,23480,23481,23482,23483,23484,23485,23486,23487,23488,23489,23490,23491,23492,23493,23494,23495,23496,23497,23498,23499,23500,23501,23502,23503,23504,23505,23506,23507,23508,23509,23510,23511,23512,23513,23514,23515,23516,23517,23518,23519,23520,23521,23522,23523,23524,23525,23526,23527,23528,23529,23530,23531,23532,23533,23534,23535,23536,23537,23538,23539,23540,23541,23542,23543,23544,23545,23546,23547,23548,23549,23550,23551,23552,23553,23554,23555,23556,23557,23558,23559,23560,23561,23562,23563,23564,23565,23566,23567,23568,23569,23570,23571,23572,23573,23574,23575,23576,23577,23578,23579,23580,23581,23582,23583,23584,23585,23586,23587,23588,23589,23590,23591,23592,23593,23594,23595,23596,23597,23598,23599,23600,23601,23602,23603,23604,23605,23606,23607,23608,23609,23610,23611,23612,23613,23614,23615,23616,23617,23618,23619,23620,23621,23622,23623,23624,23625,23626,23627,23628,23629,23630,23631,23632,23633,23634,23635,23636,23637,23638,23639,23640,23641,23642,23643,23644,23645,23646,23647,23648,23649,23650,23651,23652,23653,23654,23655,23656,23657,23658,23659,23660,23661,23662,23663,23664,23665,23666,23667,23668,23669,23670,23671,23672,23673,23674,23675,23676,23677,23678,23679,23680,23681,23682,23683,23684,23685,23686,23687,23688,23689,23690,23691,23692,23693,23694,23695,23696,23697,23698,23699,23700,23701,23702,23703,23704,23705,23706,23707,23708,23709,23710,23711,23712,23713,23714,23715,23716,23717,23718,23719,23720,23721,23722,23723,23724,23725,23726,23727,23728,23729,23730,23731,23732,23733,23734,23735,23736,23737,23738,23739,23740,23741,23742,23743,23744,23745,23746,23747,23748,23749,23750,23751,23752,23753,23754,23755,23756,23757,23758,23759,23760,23761,23762,23763,23764,23765,23766,23767,23768,23769,23770,23771,23772,23773,23774,23775,23776,23777,23778,23779,23780,23781,23782,23783,23784,23785,23786,23787,23788,23789,23790,23791,23792,23793,23794,23795,23796,23797,23798,23799,23800,23801,23802,23803,23804,23805,23806,23807,23808,23809,23810,23811,23812,23813,23814,23815,23816,23817,23818,23819,23820,23821,23822,23823,23824,23825,23826,23827,23828,23829,23830,23831,23832,23833,23834,23835,23836,23837,23838,23839,23840,23841,23842,23843,23844,23845,23846,23847,23848,23849,23850,23851,23852,23853,23854,23855,23856,23857,23858,23859,23860,23861,23862,23863,23864,23865,23866,23867,23868,23869,23870,23871,23872,23873,23874,23875,23876,23877,23878,23879,23880,23881,23882,23883,23884,23885,23886,23887,23888,23889,23890,23891,23892,23893,23894,23895,23896,23897,23898,23899,23900,23901,23902,23903,23904,23905,23906,23907,23908,23909,23910,23911,23912,23913,23914,23915,23916,23917,23918,23919,23920,23921,23922,23923,23924,23925,23926,23927,23928,23929,23930,23931,23932,23933,23934,23935,23936,23937,23938,23939,23940,23941,23942,23943,23944,23945,23946,23947,23948,23949,23950,23951,23952,23953,23954,23955,23956,23957,23958,23959,23960,23961,23962,23963,23964,23965,23966,23967,23968,23969,23970,23971,23972,23973,23974,23975,23976,23977,23978,23979,23980,23981,23982,23983,23984,23985,23986,23987,23988,23989,23990,23991,23992,23993,23994,23995,23996,23997,23998,23999,24000,24001,24002,24003,24004,24005,24006,24007,24008,24009,24010,24011,24012,24013,24014,24015,24016,24017,24018,24019,24020,24021,24022,24023,24024,24025,24026,24027,24028,24029,24030,24031,24032,24033,24034,24035,24036,24037,24038,24039,24040,24041,24042,24043,24044,24045,24046,24047,24048,24049,24050,24051,24052,24053,24054,24055,24056,24057,24058,24059,24060,24061,24062,24063,24064,24065,24066,24067,24068,24069,24070,24071,24072,24073,24074,24075,24076,24077,24078,24079,24080,24081,24082,24083,24084,24085,24086,24087,24088,24089,24090,24091,24092,24093,24094,24095,24096,24097,24098,24099,24100,24101,24102,24103,24104,24105,24106,24107,24108,24109,24110,24111,24112,24113,24114,24115,24116,24117,24118,24119,24120,24121,24122,24123,24124,24125,24126,24127,24128,24129,24130,24131,24132,24133,24134,24135,24136,24137,24138,24139,24140,24141,24142,24143,24144,24145,24146,24147,24148,24149,24150,24151,24152,24153,24154,24155,24156,24157,24158,24159,24160,24161,24162,24163,24164,24165,24166,24167,24168,24169,24170,24171,24172,24173,24174,24175,24176,24177,24178,24179,24180,24181,24182,24183,24184,24185,24186,24187,24188,24189,24190,24191,24192,24193,24194,24195,24196,24197,24198,24199,24200,24201,24202,24203,24204,24205,24206,24207,24208,24209,24210,24211,24212,24213,24214,24215,24216,24217,24218,24219,24220,24221,24222,24223,24224,24225,24226,24227,24228,24229,24230,24231,24232,24233,24234,24235,24236,24237,24238,24239,24240,24241,24242,24243,24244,24245,24246,24247,24248,24249,24250,24251,24252,24253,24254,24255,24256,24257,24258,24259,24260,24261,24262,24263,24264,24265,24266,24267,24268,24269,24270,24271,24272,24273,24274,24275,24276,24277,24278,24279,24280,24281,24282,24283,24284,24285,24286,24287,24288,24289,24290,24291,24292,24293,24294,24295,24296,24297,24298,24299,24300,24301,24302,24303,24304,24305,24306,24307,24308,24309,24310,24311,24312,24313,24314,24315,24316,24317,24318,24319,24320,24321,24322,24323,24324,24325,24326,24327,24328,24329,24330,24331,24332,24333,24334,24335,24336,24337,24338,24339,24340,24341,24342,24343,24344,24345,24346,24347,24348,24349,24350,24351,24352,24353,24354,24355,24356,24357,24358,24359,24360,24361,24362,24363,24364,24365,24366,24367,24368,24369,24370,24371,24372,24373,24374,24375,24376,24377,24378,24379,24380,24381,24382,24383,24384,24385,24386,24387,24388,24389,24390,24391,24392,24393,24394,24395,24396,24397,24398,24399,24400,24401,24402,24403,24404,24405,24406,24407,24408,24409,24410,24411,24412,24413,24414,24415,24416,24417,24418,24419,24420,24421,24422,24423,24424,24425,24426,24427,24428,24429,24430,24431,24432,24433,24434,24435,24436,24437,24438,24439,24440,24441,24442,24443,24444,24445,24446,24447,24448,24449,24450,24451,24452,24453,24454,24455,24456,24457,24458,24459,24460,24461,24462,24463,24464,24465,24466,24467,24468,24469,24470,24471,24472,24473,24474,24475,24476,24477,24478,24479,24480,24481,24482,24483,24484,24485,24486,24487,24488,24489,24490,24491,24492,24493,24494,24495,24496,24497,24498,24499,24500,24501,24502,24503,24504,24505,24506,24507,24508,24509,24510,24511,24512,24513,24514,24515,24516,24517,24518,24519,24520,24521,24522,24523,24524,24525,24526,24527,24528,24529,24530,24531,24532,24533,24534,24535,24536,24537,24538,24539,24540,24541,24542,24543,24544,24545,24546,24547,24548,24549,24550,24551,24552,24553,24554,24555,24556,24557,24558,24559,24560,24561,24562,24563,24564,24565,24566,24567,24568,24569,24570,24571,24572,24573,24574,24575,24576,24577,24578,24579,24580,24581,24582,24583,24584,24585,24586,24587,24588,24589,24590,24591,24592,24593,24594,24595,24596,24597,24598,24599,24600,24601,24602,24603,24604,24605,24606,24607,24608,24609,24610,24611,24612,24613,24614,24615,24616,24617,24618,24619,24620,24621,24622,24623,24624,24625,24626,24627,24628,24629,24630,24631,24632,24633,24634,24635,24636,24637,24638,24639,24640,24641,24642,24643,24644,24645,24646,24647,24648,24649,24650,24651,24652,24653,24654,24655,24656,24657,24658,24659,24660,24661,24662,24663,24664,24665,24666,24667,24668,24669,24670,24671,24672,24673,24674,24675,24676,24677,24678,24679,24680,24681,24682,24683,24684,24685,24686,24687,24688,24689,24690,24691,24692,24693,24694,24695,24696,24697,24698,24699,24700,24701,24702,24703,24704,24705,24706,24707,24708,24709,24710,24711,24712,24713,24714,24715,24716,24717,24718,24719,24720,24721,24722,24723,24724,24725,24726,24727,24728,24729,24730,24731,24732,24733,24734,24735,24736,24737,24738,24739,24740,24741,24742,24743,24744,24745,24746,24747,24748,24749,24750,24751,24752,24753,24754,24755,24756,24757,24758,24759,24760,24761,24762,24763,24764,24765,24766,24767,24768,24769,24770,24771,24772,24773,24774,24775,24776,24777,24778,24779,24780,24781,24782,24783,24784,24785,24786,24787,24788,24789,24790,24791,24792,24793,24794,24795,24796,24797,24798,24799,24800,24801,24802,24803,24804,24805,24806,24807,24808,24809,24810,24811,24812,24813,24814,24815,24816,24817,24818,24819,24820,24821,24822,24823,24824,24825,24826,24827,24828,24829,24830,24831,24832,24833,24834,24835,24836,24837,24838,24839,24840,24841,24842,24843,24844,24845,24846,24847,24848,24849,24850,24851,24852,24853,24854,24855,24856,24857,24858,24859,24860,24861,24862,24863,24864,24865,24866,24867,24868,24869,24870,24871,24872,24873,24874,24875,24876,24877,24878,24879,24880,24881,24882,24883,24884,24885,24886,24887,24888,24889,24890,24891,24892,24893,24894,24895,24896,24897,24898,24899,24900,24901,24902,24903,24904,24905,24906,24907,24908,24909,24910,24911,24912,24913,24914,24915,24916,24917,24918,24919,24920,24921,24922,24923,24924,24925,24926,24927,24928,24929,24930,24931,24932,24933,24934,24935,24936,24937,24938,24939,24940,24941,24942,24943,24944,24945,24946,24947,24948,24949,24950,24951,24952,24953,24954,24955,24956,24957,24958,24959,24960,24961,24962,24963,24964,24965,24966,24967,24968,24969,24970,24971,24972,24973,24974,24975,24976,24977,24978,24979,24980,24981,24982,24983,24984,24985,24986,24987,24988,24989,24990,24991,24992,24993,24994,24995,24996,24997,24998,24999,25000,25001,25002,25003,25004,25005,25006,25007,25008,25009,25010,25011,25012,25013,25014,25015,25016,25017,25018,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25029,25030,25031,25032,25033,25034,25035,25036,25037,25038,25039,25040,25041,25042,25043,25044,25045,25046,25047,25048,25049,25050,25051,25052,25053,25054,25055,25056,25057,25058,25059,25060,25061,25062,25063,25064,25065,25066,25067,25068,25069,25070,25071,25072,25073,25074,25075,25076,25077,25078,25079,25080,25081,25082,25083,25084,25085,25086,25087,25088,25089,25090,25091,25092,25093,25094,25095,25096,25097,25098,25099,25100,25101,25102,25103,25104,25105,25106,25107,25108,25109,25110,25111,25112,25113,25114,25115,25116,25117,25118,25119,25120,25121,25122,25123,25124,25125,25126,25127,25128,25129,25130,25131,25132,25133,25134,25135,25136,25137,25138,25139,25140,25141,25142,25143,25144,25145,25146,25147,25148,25149,25150,25151,25152,25153,25154,25155,25156,25157,25158,25159,25160,25161,25162,25163,25164,25165,25166,25167,25168,25169,25170,25171,25172,25173,25174,25175,25176,25177,25178,25179,25180,25181,25182,25183,25184,25185,25186,25187,25188,25189,25190,25191,25192,25193,25194,25195,25196,25197,25198,25199,25200,25201,25202,25203,25204,25205,25206,25207,25208,25209,25210,25211,25212,25213,25214,25215,25216,25217,25218,25219,25220,25221,25222,25223,25224,25225,25226,25227,25228,25229,25230,25231,25232,25233,25234,25235,25236,25237,25238,25239,25240,25241,25242,25243,25244,25245,25246,25247,25248,25249,25250,25251,25252,25253,25254,25255,25256,25257,25258,25259,25260,25261,25262,25263,25264,25265,25266,25267,25268,25269,25270,25271,25272,25273,25274,25275,25276,25277,25278,25279,25280,25281,25282,25283,25284,25285,25286,25287,25288,25289,25290,25291,25292,25293,25294,25295,25296,25297,25298,25299,25300,25301,25302,25303,25304,25305,25306,25307,25308,25309,25310,25311,25312,25313,25314,25315,25316,25317,25318,25319,25320,25321,25322,25323,25324,25325,25326,25327,25328,25329,25330,25331,25332,25333,25334,25335,25336,25337,25338,25339,25340,25341,25342,25343,25344,25345,25346,25347,25348,25349,25350,25351,25352,25353,25354,25355,25356,25357,25358,25359,25360,25361,25362,25363,25364,25365,25366,25367,25368,25369,25370,25371,25372,25373,25374,25375,25376,25377,25378,25379,25380,25381,25382,25383,25384,25385,25386,25387,25388,25389,25390,25391,25392,25393,25394,25395,25396,25397,25398,25399,25400,25401,25402,25403,25404,25405,25406,25407,25408,25409,25410,25411,25412,25413,25414,25415,25416,25417,25418,25419,25420,25421,25422,25423,25424,25425,25426,25427,25428,25429,25430,25431,25432,25433,25434,25435,25436,25437,25438,25439,25440,25441,25442,25443,25444,25445,25446,25447,25448,25449,25450,25451,25452,25453,25454,25455,25456,25457,25458,25459,25460,25461,25462,25463,25464,25465,25466,25467,25468,25469,25470,25471,25472,25473,25474,25475,25476,25477,25478,25479,25480,25481,25482,25483,25484,25485,25486,25487,25488,25489,25490,25491,25492,25493,25494,25495,25496,25497,25498,25499,25500,25501,25502,25503,25504,25505,25506,25507,25508,25509,25510,25511,25512,25513,25514,25515,25516,25517,25518,25519,25520,25521,25522,25523,25524,25525,25526,25527,25528,25529,25530,25531,25532,25533,25534,25535,25536,25537,25538,25539,25540,25541,25542,25543,25544,25545,25546,25547,25548,25549,25550,25551,25552,25553,25554,25555,25556,25557,25558,25559,25560,25561,25562,25563,25564,25565,25566,25567,25568,25569,25570,25571,25572,25573,25574,25575,25576,25577,25578,25579,25580,25581,25582,25583,25584,25585,25586,25587,25588,25589,25590,25591,25592,25593,25594,25595,25596,25597,25598,25599,25600,25601,25602,25603,25604,25605,25606,25607,25608,25609,25610,25611,25612,25613,25614,25615,25616,25617,25618,25619,25620,25621,25622,25623,25624,25625,25626,25627,25628,25629,25630,25631,25632,25633,25634,25635,25636,25637,25638,25639,25640,25641,25642,25643,25644,25645,25646,25647,25648,25649,25650,25651,25652,25653,25654,25655,25656,25657,25658,25659,25660,25661,25662,25663,25664,25665,25666,25667,25668,25669,25670,25671,25672,25673,25674,25675,25676,25677,25678,25679,25680,25681,25682,25683,25684,25685,25686,25687,25688,25689,25690,25691,25692,25693,25694,25695,25696,25697,25698,25699,25700,25701,25702,25703,25704,25705,25706,25707,25708,25709,25710,25711,25712,25713,25714,25715,25716,25717,25718,25719,25720,25721,25722,25723,25724,25725,25726,25727,25728,25729,25730,25731,25732,25733,25734,25735,25736,25737,25738,25739,25740,25741,25742,25743,25744,25745,25746,25747,25748,25749,25750,25751,25752,25753,25754,25755,25756,25757,25758,25759,25760,25761,25762,25763,25764,25765,25766,25767,25768,25769,25770,25771,25772,25773,25774,25775,25776,25777,25778,25779,25780,25781,25782,25783,25784,25785,25786,25787,25788,25789,25790,25791,25792,25793,25794,25795,25796,25797,25798,25799,25800,25801,25802,25803,25804,25805,25806,25807,25808,25809,25810,25811,25812,25813,25814,25815,25816,25817,25818,25819,25820,25821,25822,25823,25824,25825,25826,25827,25828,25829,25830,25831,25832,25833,25834,25835,25836,25837,25838,25839,25840,25841,25842,25843,25844,25845,25846,25847,25848,25849,25850,25851,25852,25853,25854,25855,25856,25857,25858,25859,25860,25861,25862,25863,25864,25865,25866,25867,25868,25869,25870,25871,25872,25873,25874,25875,25876,25877,25878,25879,25880,25881,25882,25883,25884,25885,25886,25887,25888,25889,25890,25891,25892,25893,25894,25895,25896,25897,25898,25899,25900,25901,25902,25903,25904,25905,25906,25907,25908,25909,25910,25911,25912,25913,25914,25915,25916,25917,25918,25919,25920,25921,25922,25923,25924,25925,25926,25927,25928,25929,25930,25931,25932,25933,25934,25935,25936,25937,25938,25939,25940,25941,25942,25943,25944,25945,25946,25947,25948,25949,25950,25951,25952,25953,25954,25955,25956,25957,25958,25959,25960,25961,25962,25963,25964,25965,25966,25967,25968,25969,25970,25971,25972,25973,25974,25975,25976,25977,25978,25979,25980,25981,25982,25983,25984,25985,25986,25987,25988,25989,25990,25991,25992,25993,25994,25995,25996,25997,25998,25999,26000,26001,26002,26003,26004,26005,26006,26007,26008,26009,26010,26011,26012,26013,26014,26015,26016,26017,26018,26019,26020,26021,26022,26023,26024,26025,26026,26027,26028,26029,26030,26031,26032,26033,26034,26035,26036,26037,26038,26039,26040,26041,26042,26043,26044,26045,26046,26047,26048,26049,26050,26051,26052,26053,26054,26055,26056,26057,26058,26059,26060,26061,26062,26063,26064,26065,26066,26067,26068,26069,26070,26071,26072,26073,26074,26075,26076,26077,26078,26079,26080,26081,26082,26083,26084,26085,26086,26087,26088,26089,26090,26091,26092,26093,26094,26095,26096,26097,26098,26099,26100,26101,26102,26103,26104,26105,26106,26107,26108,26109,26110,26111,26112,26113,26114,26115,26116,26117,26118,26119,26120,26121,26122,26123,26124,26125,26126,26127,26128,26129,26130,26131,26132,26133,26134,26135,26136,26137,26138,26139,26140,26141,26142,26143,26144,26145,26146,26147,26148,26149,26150,26151,26152,26153,26154,26155,26156,26157,26158,26159,26160,26161,26162,26163,26164,26165,26166,26167,26168,26169,26170,26171,26172,26173,26174,26175,26176,26177,26178,26179,26180,26181,26182,26183,26184,26185,26186,26187,26188,26189,26190,26191,26192,26193,26194,26195,26196,26197,26198,26199,26200,26201,26202,26203,26204,26205,26206,26207,26208,26209,26210,26211,26212,26213,26214,26215,26216,26217,26218,26219,26220,26221,26222,26223,26224,26225,26226,26227,26228,26229,26230,26231,26232,26233,26234,26235,26236,26237,26238,26239,26240,26241,26242,26243,26244,26245,26246,26247,26248,26249,26250,26251,26252,26253,26254,26255,26256,26257,26258,26259,26260,26261,26262,26263,26264,26265,26266,26267,26268,26269,26270,26271,26272,26273,26274,26275,26276,26277,26278,26279,26280,26281,26282,26283,26284,26285,26286,26287,26288,26289,26290,26291,26292,26293,26294,26295,26296,26297,26298,26299,26300,26301,26302,26303,26304,26305,26306,26307,26308,26309,26310,26311,26312,26313,26314,26315,26316,26317,26318,26319,26320,26321,26322,26323,26324,26325,26326,26327,26328,26329,26330,26331,26332,26333,26334,26335,26336,26337,26338,26339,26340,26341,26342,26343,26344,26345,26346,26347,26348,26349,26350,26351,26352,26353,26354,26355,26356,26357,26358,26359,26360,26361,26362,26363,26364,26365,26366,26367,26368,26369,26370,26371,26372,26373,26374,26375,26376,26377,26378,26379,26380,26381,26382,26383,26384,26385,26386,26387,26388,26389,26390,26391,26392,26393,26394,26395,26396,26397,26398,26399,26400,26401,26402,26403,26404,26405,26406,26407,26408,26409,26410,26411,26412,26413,26414,26415,26416,26417,26418,26419,26420,26421,26422,26423,26424,26425,26426,26427,26428,26429,26430,26431,26432,26433,26434,26435,26436,26437,26438,26439,26440,26441,26442,26443,26444,26445,26446,26447,26448,26449,26450,26451,26452,26453,26454,26455,26456,26457,26458,26459,26460,26461,26462,26463,26464,26465,26466,26467,26468,26469,26470,26471,26472,26473,26474,26475,26476,26477,26478,26479,26480,26481,26482,26483,26484,26485,26486,26487,26488,26489,26490,26491,26492,26493,26494,26495,26496,26497,26498,26499,26500,26501,26502,26503,26504,26505,26506,26507,26508,26509,26510,26511,26512,26513,26514,26515,26516,26517,26518,26519,26520,26521,26522,26523,26524,26525,26526,26527,26528,26529,26530,26531,26532,26533,26534,26535,26536,26537,26538,26539,26540,26541,26542,26543,26544,26545,26546,26547,26548,26549,26550,26551,26552,26553,26554,26555,26556,26557,26558,26559,26560,26561,26562,26563,26564,26565,26566,26567,26568,26569,26570,26571,26572,26573,26574,26575,26576,26577,26578,26579,26580,26581,26582,26583,26584,26585,26586,26587,26588,26589,26590,26591,26592,26593,26594,26595,26596,26597,26598,26599,26600,26601,26602,26603,26604,26605,26606,26607,26608,26609,26610,26611,26612,26613,26614,26615,26616,26617,26618,26619,26620,26621,26622,26623,26624,26625,26626,26627,26628,26629,26630,26631,26632,26633,26634,26635,26636,26637,26638,26639,26640,26641,26642,26643,26644,26645,26646,26647,26648,26649,26650,26651,26652,26653,26654,26655,26656,26657,26658,26659,26660,26661,26662,26663,26664,26665,26666,26667,26668,26669,26670,26671,26672,26673,26674,26675,26676,26677,26678,26679,26680,26681,26682,26683,26684,26685,26686,26687,26688,26689,26690,26691,26692,26693,26694,26695,26696,26697,26698,26699,26700,26701,26702,26703,26704,26705,26706,26707,26708,26709,26710,26711,26712,26713,26714,26715,26716,26717,26718,26719,26720,26721,26722,26723,26724,26725,26726,26727,26728,26729,26730,26731,26732,26733,26734,26735,26736,26737,26738,26739,26740,26741,26742,26743,26744,26745,26746,26747,26748,26749,26750,26751,26752,26753,26754,26755,26756,26757,26758,26759,26760,26761,26762,26763,26764,26765,26766,26767,26768,26769,26770,26771,26772,26773,26774,26775,26776,26777,26778,26779,26780,26781,26782,26783,26784,26785,26786,26787,26788,26789,26790,26791,26792,26793,26794,26795,26796,26797,26798,26799,26800,26801,26802,26803,26804,26805,26806,26807,26808,26809,26810,26811,26812,26813,26814,26815,26816,26817,26818,26819,26820,26821,26822,26823,26824,26825,26826,26827,26828,26829,26830,26831,26832,26833,26834,26835,26836,26837,26838,26839,26840,26841,26842,26843,26844,26845,26846,26847,26848,26849,26850,26851,26852,26853,26854,26855,26856,26857,26858,26859,26860,26861,26862,26863,26864,26865,26866,26867,26868,26869,26870,26871,26872,26873,26874,26875,26876,26877,26878,26879,26880,26881,26882,26883,26884,26885,26886,26887,26888,26889,26890,26891,26892,26893,26894,26895,26896,26897,26898,26899,26900,26901,26902,26903,26904,26905,26906,26907,26908,26909,26910,26911,26912,26913,26914,26915,26916,26917,26918,26919,26920,26921,26922,26923,26924,26925,26926,26927,26928,26929,26930,26931,26932,26933,26934,26935,26936,26937,26938,26939,26940,26941,26942,26943,26944,26945,26946,26947,26948,26949,26950,26951,26952,26953,26954,26955,26956,26957,26958,26959,26960,26961,26962,26963,26964,26965,26966,26967,26968,26969,26970,26971,26972,26973,26974,26975,26976,26977,26978,26979,26980,26981,26982,26983,26984,26985,26986,26987,26988,26989,26990,26991,26992,26993,26994,26995,26996,26997,26998,26999,27000,27001,27002,27003,27004,27005,27006,27007,27008,27009,27010,27011,27012,27013,27014,27015,27016,27017,27018,27019,27020,27021,27022,27023,27024,27025,27026,27027,27028,27029,27030,27031,27032,27033,27034,27035,27036,27037,27038,27039,27040,27041,27042,27043,27044,27045,27046,27047,27048,27049,27050,27051,27052,27053,27054,27055,27056,27057,27058,27059,27060,27061,27062,27063,27064,27065,27066,27067,27068,27069,27070,27071,27072,27073,27074,27075,27076,27077,27078,27079,27080,27081,27082,27083,27084,27085,27086,27087,27088,27089,27090,27091,27092,27093,27094,27095,27096,27097,27098,27099,27100,27101,27102,27103,27104,27105,27106,27107,27108,27109,27110,27111,27112,27113,27114,27115,27116,27117,27118,27119,27120,27121,27122,27123,27124,27125,27126,27127,27128,27129,27130,27131,27132,27133,27134,27135,27136,27137,27138,27139,27140,27141,27142,27143,27144,27145,27146,27147,27148,27149,27150,27151,27152,27153,27154,27155,27156,27157,27158,27159,27160,27161,27162,27163,27164,27165,27166,27167,27168,27169,27170,27171,27172,27173,27174,27175,27176,27177,27178,27179,27180,27181,27182,27183,27184,27185,27186,27187,27188,27189,27190,27191,27192,27193,27194,27195,27196,27197,27198,27199,27200,27201,27202,27203,27204,27205,27206,27207,27208,27209,27210,27211,27212,27213,27214,27215,27216,27217,27218,27219,27220,27221,27222,27223,27224,27225,27226,27227,27228,27229,27230,27231,27232,27233,27234,27235,27236,27237,27238,27239,27240,27241,27242,27243,27244,27245,27246,27247,27248,27249,27250,27251,27252,27253,27254,27255,27256,27257,27258,27259,27260,27261,27262,27263,27264,27265,27266,27267,27268,27269,27270,27271,27272,27273,27274,27275,27276,27277,27278,27279,27280,27281,27282,27283,27284,27285,27286,27287,27288,27289,27290,27291,27292,27293,27294,27295,27296,27297,27298,27299,27300,27301,27302,27303,27304,27305,27306,27307,27308,27309,27310,27311,27312,27313,27314,27315,27316,27317,27318,27319,27320,27321,27322,27323,27324,27325,27326,27327,27328,27329,27330,27331,27332,27333,27334,27335,27336,27337,27338,27339,27340,27341,27342,27343,27344,27345,27346,27347,27348,27349,27350,27351,27352,27353,27354,27355,27356,27357,27358,27359,27360,27361,27362,27363,27364,27365,27366,27367,27368,27369,27370,27371,27372,27373,27374,27375,27376,27377,27378,27379,27380,27381,27382,27383,27384,27385,27386,27387,27388,27389,27390,27391,27392,27393,27394,27395,27396,27397,27398,27399,27400,27401,27402,27403,27404,27405,27406,27407,27408,27409,27410,27411,27412,27413,27414,27415,27416,27417,27418,27419,27420,27421,27422,27423,27424,27425,27426,27427,27428,27429,27430,27431,27432,27433,27434,27435,27436,27437,27438,27439,27440,27441,27442,27443,27444,27445,27446,27447,27448,27449,27450,27451,27452,27453,27454,27455,27456,27457,27458,27459,27460,27461,27462,27463,27464,27465,27466,27467,27468,27469,27470,27471,27472,27473,27474,27475,27476,27477,27478,27479,27480,27481,27482,27483,27484,27485,27486,27487,27488,27489,27490,27491,27492,27493,27494,27495,27496,27497,27498,27499,27500,27501,27502,27503,27504,27505,27506,27507,27508,27509,27510,27511,27512,27513,27514,27515,27516,27517,27518,27519,27520,27521,27522,27523,27524,27525,27526,27527,27528,27529,27530,27531,27532,27533,27534,27535,27536,27537,27538,27539,27540,27541,27542,27543,27544,27545,27546,27547,27548,27549,27550,27551,27552,27553,27554,27555,27556,27557,27558,27559,27560,27561,27562,27563,27564,27565,27566,27567,27568,27569,27570,27571,27572,27573,27574,27575,27576,27577,27578,27579,27580,27581,27582,27583,27584,27585,27586,27587,27588,27589,27590,27591,27592,27593,27594,27595,27596,27597,27598,27599,27600,27601,27602,27603,27604,27605,27606,27607,27608,27609,27610,27611,27612,27613,27614,27615,27616,27617,27618,27619,27620,27621,27622,27623,27624,27625,27626,27627,27628,27629,27630,27631,27632,27633,27634,27635,27636,27637,27638,27639,27640,27641,27642,27643,27644,27645,27646,27647,27648,27649,27650,27651,27652,27653,27654,27655,27656,27657,27658,27659,27660,27661,27662,27663,27664,27665,27666,27667,27668,27669,27670,27671,27672,27673,27674,27675,27676,27677,27678,27679,27680,27681,27682,27683,27684,27685,27686,27687,27688,27689,27690,27691,27692,27693,27694,27695,27696,27697,27698,27699,27700,27701,27702,27703,27704,27705,27706,27707,27708,27709,27710,27711,27712,27713,27714,27715,27716,27717,27718,27719,27720,27721,27722,27723,27724,27725,27726,27727,27728,27729,27730,27731,27732,27733,27734,27735,27736,27737,27738,27739,27740,27741,27742,27743,27744,27745,27746,27747,27748,27749,27750,27751,27752,27753,27754,27755,27756,27757,27758,27759,27760,27761,27762,27763,27764,27765,27766,27767,27768,27769,27770,27771,27772,27773,27774,27775,27776,27777,27778,27779,27780,27781,27782,27783,27784,27785,27786,27787,27788,27789,27790,27791,27792,27793,27794,27795,27796,27797,27798,27799,27800,27801,27802,27803,27804,27805,27806,27807,27808,27809,27810,27811,27812,27813,27814,27815,27816,27817,27818,27819,27820,27821,27822,27823,27824,27825,27826,27827,27828,27829,27830,27831,27832,27833,27834,27835,27836,27837,27838,27839,27840,27841,27842,27843,27844,27845,27846,27847,27848,27849,27850,27851,27852,27853,27854,27855,27856,27857,27858,27859,27860,27861,27862,27863,27864,27865,27866,27867,27868,27869,27870,27871,27872,27873,27874,27875,27876,27877,27878,27879,27880,27881,27882,27883,27884,27885,27886,27887,27888,27889,27890,27891,27892,27893,27894,27895,27896,27897,27898,27899,27900,27901,27902,27903,27904,27905,27906,27907,27908,27909,27910,27911,27912,27913,27914,27915,27916,27917,27918,27919,27920,27921,27922,27923,27924,27925,27926,27927,27928,27929,27930,27931,27932,27933,27934,27935,27936,27937,27938,27939,27940,27941,27942,27943,27944,27945,27946,27947,27948,27949,27950,27951,27952,27953,27954,27955,27956,27957,27958,27959,27960,27961,27962,27963,27964,27965,27966,27967,27968,27969,27970,27971,27972,27973,27974,27975,27976,27977,27978,27979,27980,27981,27982,27983,27984,27985,27986,27987,27988,27989,27990,27991,27992,27993,27994,27995,27996,27997,27998,27999,28000,28001,28002,28003,28004,28005,28006,28007,28008,28009,28010,28011,28012,28013,28014,28015,28016,28017,28018,28019,28020,28021,28022,28023,28024,28025,28026,28027,28028,28029,28030,28031,28032,28033,28034,28035,28036,28037,28038,28039,28040,28041,28042,28043,28044,28045,28046,28047,28048,28049,28050,28051,28052,28053,28054,28055,28056,28057,28058,28059,28060,28061,28062,28063,28064,28065,28066,28067,28068,28069,28070,28071,28072,28073,28074,28075,28076,28077,28078,28079,28080,28081,28082,28083,28084,28085,28086,28087,28088,28089,28090,28091,28092,28093,28094,28095,28096,28097,28098,28099,28100,28101,28102,28103,28104,28105,28106,28107,28108,28109,28110,28111,28112,28113,28114,28115,28116,28117,28118,28119,28120,28121,28122,28123,28124,28125,28126,28127,28128,28129,28130,28131,28132,28133,28134,28135,28136,28137,28138,28139,28140,28141,28142,28143,28144,28145,28146,28147,28148,28149,28150,28151,28152,28153,28154,28155,28156,28157,28158,28159,28160,28161,28162,28163,28164,28165,28166,28167,28168,28169,28170,28171,28172,28173,28174,28175,28176,28177,28178,28179,28180,28181,28182,28183,28184,28185,28186,28187,28188,28189,28190,28191,28192,28193,28194,28195,28196,28197,28198,28199,28200,28201,28202,28203,28204,28205,28206,28207,28208,28209,28210,28211,28212,28213,28214,28215,28216,28217,28218,28219,28220,28221,28222,28223,28224,28225,28226,28227,28228,28229,28230,28231,28232,28233,28234,28235,28236,28237,28238,28239,28240,28241,28242,28243,28244,28245,28246,28247,28248,28249,28250,28251,28252,28253,28254,28255,28256,28257,28258,28259,28260,28261,28262,28263,28264,28265,28266,28267,28268,28269,28270,28271,28272,28273,28274,28275,28276,28277,28278,28279,28280,28281,28282,28283,28284,28285,28286,28287,28288,28289,28290,28291,28292,28293,28294,28295,28296,28297,28298,28299,28300,28301,28302,28303,28304,28305,28306,28307,28308,28309,28310,28311,28312,28313,28314,28315,28316,28317,28318,28319,28320,28321,28322,28323,28324,28325,28326,28327,28328,28329,28330,28331,28332,28333,28334,28335,28336,28337,28338,28339,28340,28341,28342,28343,28344,28345,28346,28347,28348,28349,28350,28351,28352,28353,28354,28355,28356,28357,28358,28359,28360,28361,28362,28363,28364,28365,28366,28367,28368,28369,28370,28371,28372,28373,28374,28375,28376,28377,28378,28379,28380,28381,28382,28383,28384,28385,28386,28387,28388,28389,28390,28391,28392,28393,28394,28395,28396,28397,28398,28399,28400,28401,28402,28403,28404,28405,28406,28407,28408,28409,28410,28411,28412,28413,28414,28415,28416,28417,28418,28419,28420,28421,28422,28423,28424,28425,28426,28427,28428,28429,28430,28431,28432,28433,28434,28435,28436,28437,28438,28439,28440,28441,28442,28443,28444,28445,28446,28447,28448,28449,28450,28451,28452,28453,28454,28455,28456,28457,28458,28459,28460,28461,28462,28463,28464,28465,28466,28467,28468,28469,28470,28471,28472,28473,28474,28475,28476,28477,28478,28479,28480,28481,28482,28483,28484,28485,28486,28487,28488,28489,28490,28491,28492,28493,28494,28495,28496,28497,28498,28499,28500,28501,28502,28503,28504,28505,28506,28507,28508,28509,28510,28511,28512,28513,28514,28515,28516,28517,28518,28519,28520,28521,28522,28523,28524,28525,28526,28527,28528,28529,28530,28531,28532,28533,28534,28535,28536,28537,28538,28539,28540,28541,28542,28543,28544,28545,28546,28547,28548,28549,28550,28551,28552,28553,28554,28555,28556,28557,28558,28559,28560,28561,28562,28563,28564,28565,28566,28567,28568,28569,28570,28571,28572,28573,28574,28575,28576,28577,28578,28579,28580,28581,28582,28583,28584,28585,28586,28587,28588,28589,28590,28591,28592,28593,28594,28595,28596,28597,28598,28599,28600,28601,28602,28603,28604,28605,28606,28607,28608,28609,28610,28611,28612,28613,28614,28615,28616,28617,28618,28619,28620,28621,28622,28623,28624,28625,28626,28627,28628,28629,28630,28631,28632,28633,28634,28635,28636,28637,28638,28639,28640,28641,28642,28643,28644,28645,28646,28647,28648,28649,28650,28651,28652,28653,28654,28655,28656,28657,28658,28659,28660,28661,28662,28663,28664,28665,28666,28667,28668,28669,28670,28671,28672,28673,28674,28675,28676,28677,28678,28679,28680,28681,28682,28683,28684,28685,28686,28687,28688,28689,28690,28691,28692,28693,28694,28695,28696,28697,28698,28699,28700,28701,28702,28703,28704,28705,28706,28707,28708,28709,28710,28711,28712,28713,28714,28715,28716,28717,28718,28719,28720,28721,28722,28723,28724,28725,28726,28727,28728,28729,28730,28731,28732,28733,28734,28735,28736,28737,28738,28739,28740,28741,28742,28743,28744,28745,28746,28747,28748,28749,28750,28751,28752,28753,28754,28755,28756,28757,28758,28759,28760,28761,28762,28763,28764,28765,28766,28767,28768,28769,28770,28771,28772,28773,28774,28775,28776,28777,28778,28779,28780,28781,28782,28783,28784,28785,28786,28787,28788,28789,28790,28791,28792,28793,28794,28795,28796,28797,28798,28799,28800,28801,28802,28803,28804,28805,28806,28807,28808,28809,28810,28811,28812,28813,28814,28815,28816,28817,28818,28819,28820,28821,28822,28823,28824,28825,28826,28827,28828,28829,28830,28831,28832,28833,28834,28835,28836,28837,28838,28839,28840,28841,28842,28843,28844,28845,28846,28847,28848,28849,28850,28851,28852,28853,28854,28855,28856,28857,28858,28859,28860,28861,28862,28863,28864,28865,28866,28867,28868,28869,28870,28871,28872,28873,28874,28875,28876,28877,28878,28879,28880,28881,28882,28883,28884,28885,28886,28887,28888,28889,28890,28891,28892,28893,28894,28895,28896,28897,28898,28899,28900,28901,28902,28903,28904,28905,28906,28907,28908,28909,28910,28911,28912,28913,28914,28915,28916,28917,28918,28919,28920,28921,28922,28923,28924,28925,28926,28927,28928,28929,28930,28931,28932,28933,28934,28935,28936,28937,28938,28939,28940,28941,28942,28943,28944,28945,28946,28947,28948,28949,28950,28951,28952,28953,28954,28955,28956,28957,28958,28959,28960,28961,28962,28963,28964,28965,28966,28967,28968,28969,28970,28971,28972,28973,28974,28975,28976,28977,28978,28979,28980,28981,28982,28983,28984,28985,28986,28987,28988,28989,28990,28991,28992,28993,28994,28995,28996,28997,28998,28999,29000,29001,29002,29003,29004,29005,29006,29007,29008,29009,29010,29011,29012,29013,29014,29015,29016,29017,29018,29019,29020,29021,29022,29023,29024,29025,29026,29027,29028,29029,29030,29031,29032,29033,29034,29035,29036,29037,29038,29039,29040,29041,29042,29043,29044,29045,29046,29047,29048,29049,29050,29051,29052,29053,29054,29055,29056,29057,29058,29059,29060,29061,29062,29063,29064,29065,29066,29067,29068,29069,29070,29071,29072,29073,29074,29075,29076,29077,29078,29079,29080,29081,29082,29083,29084,29085,29086,29087,29088,29089,29090,29091,29092,29093,29094,29095,29096,29097,29098,29099,29100,29101,29102,29103,29104,29105,29106,29107,29108,29109,29110,29111,29112,29113,29114,29115,29116,29117,29118,29119,29120,29121,29122,29123,29124,29125,29126,29127,29128,29129,29130,29131,29132,29133,29134,29135,29136,29137,29138,29139,29140,29141,29142,29143,29144,29145,29146,29147,29148,29149,29150,29151,29152,29153,29154,29155,29156,29157,29158,29159,29160,29161,29162,29163,29164,29165,29166,29167,29168,29169,29170,29171,29172,29173,29174,29175,29176,29177,29178,29179,29180,29181,29182,29183,29184,29185,29186,29187,29188,29189,29190,29191,29192,29193,29194,29195,29196,29197,29198,29199,29200,29201,29202,29203,29204,29205,29206,29207,29208,29209,29210,29211,29212,29213,29214,29215,29216,29217,29218,29219,29220,29221,29222,29223,29224,29225,29226,29227,29228,29229,29230,29231,29232,29233,29234,29235,29236,29237,29238,29239,29240,29241,29242,29243,29244,29245,29246,29247,29248,29249,29250,29251,29252,29253,29254,29255,29256,29257,29258,29259,29260,29261,29262,29263,29264,29265,29266,29267,29268,29269,29270,29271,29272,29273,29274,29275,29276,29277,29278,29279,29280,29281,29282,29283,29284,29285,29286,29287,29288,29289,29290,29291,29292,29293,29294,29295,29296,29297,29298,29299,29300,29301,29302,29303,29304,29305,29306,29307,29308,29309,29310,29311,29312,29313,29314,29315,29316,29317,29318,29319,29320,29321,29322,29323,29324,29325,29326,29327,29328,29329,29330,29331,29332,29333,29334,29335,29336,29337,29338,29339,29340,29341,29342,29343,29344,29345,29346,29347,29348,29349,29350,29351,29352,29353,29354,29355,29356,29357,29358,29359,29360,29361,29362,29363,29364,29365,29366,29367,29368,29369,29370,29371,29372,29373,29374,29375,29376,29377,29378,29379,29380,29381,29382,29383,29384,29385,29386,29387,29388,29389,29390,29391,29392,29393,29394,29395,29396,29397,29398,29399,29400,29401,29402,29403,29404,29405,29406,29407,29408,29409,29410,29411,29412,29413,29414,29415,29416,29417,29418,29419,29420,29421,29422,29423,29424,29425,29426,29427,29428,29429,29430,29431,29432,29433,29434,29435,29436,29437,29438,29439,29440,29441,29442,29443,29444,29445,29446,29447,29448,29449,29450,29451,29452,29453,29454,29455,29456,29457,29458,29459,29460,29461,29462,29463,29464,29465,29466,29467,29468,29469,29470,29471,29472,29473,29474,29475,29476,29477,29478,29479,29480,29481,29482,29483,29484,29485,29486,29487,29488,29489,29490,29491,29492,29493,29494,29495,29496,29497,29498,29499,29500,29501,29502,29503,29504,29505,29506,29507,29508,29509,29510,29511,29512,29513,29514,29515,29516,29517,29518,29519,29520,29521,29522,29523,29524,29525,29526,29527,29528,29529,29530,29531,29532,29533,29534,29535,29536,29537,29538,29539,29540,29541,29542,29543,29544,29545,29546,29547,29548,29549,29550,29551,29552,29553,29554,29555,29556,29557,29558,29559,29560,29561,29562,29563,29564,29565,29566,29567,29568,29569,29570,29571,29572,29573,29574,29575,29576,29577,29578,29579,29580,29581,29582,29583,29584,29585,29586,29587,29588,29589,29590,29591,29592,29593,29594,29595,29596,29597,29598,29599,29600,29601,29602,29603,29604,29605,29606,29607,29608,29609,29610,29611,29612,29613,29614,29615,29616,29617,29618,29619,29620,29621,29622,29623,29624,29625,29626,29627,29628,29629,29630,29631,29632,29633,29634,29635,29636,29637,29638,29639,29640,29641,29642,29643,29644,29645,29646,29647,29648,29649,29650,29651,29652,29653,29654,29655,29656,29657,29658,29659,29660,29661,29662,29663,29664,29665,29666,29667,29668,29669,29670,29671,29672,29673,29674,29675,29676,29677,29678,29679,29680,29681,29682,29683,29684,29685,29686,29687,29688,29689,29690,29691,29692,29693,29694,29695,29696,29697,29698,29699,29700,29701,29702,29703,29704,29705,29706,29707,29708,29709,29710,29711,29712,29713,29714,29715,29716,29717,29718,29719,29720,29721,29722,29723,29724,29725,29726,29727,29728,29729,29730,29731,29732,29733,29734,29735,29736,29737,29738,29739,29740,29741,29742,29743,29744,29745,29746,29747,29748,29749,29750,29751,29752,29753,29754,29755,29756,29757,29758,29759,29760,29761,29762,29763,29764,29765,29766,29767,29768,29769,29770,29771,29772,29773,29774,29775,29776,29777,29778,29779,29780,29781,29782,29783,29784,29785,29786,29787,29788,29789,29790,29791,29792,29793,29794,29795,29796,29797,29798,29799,29800,29801,29802,29803,29804,29805,29806,29807,29808,29809,29810,29811,29812,29813,29814,29815,29816,29817,29818,29819,29820,29821,29822,29823,29824,29825,29826,29827,29828,29829,29830,29831,29832,29833,29834,29835,29836,29837,29838,29839,29840,29841,29842,29843,29844,29845,29846,29847,29848,29849,29850,29851,29852,29853,29854,29855,29856,29857,29858,29859,29860,29861,29862,29863,29864,29865,29866,29867,29868,29869,29870,29871,29872,29873,29874,29875,29876,29877,29878,29879,29880,29881,29882,29883,29884,29885,29886,29887,29888,29889,29890,29891,29892,29893,29894,29895,29896,29897,29898,29899,29900,29901,29902,29903,29904,29905,29906,29907,29908,29909,29910,29911,29912,29913,29914,29915,29916,29917,29918,29919,29920,29921,29922,29923,29924,29925,29926,29927,29928,29929,29930,29931,29932,29933,29934,29935,29936,29937,29938,29939,29940,29941,29942,29943,29944,29945,29946,29947,29948,29949,29950,29951,29952,29953,29954,29955,29956,29957,29958,29959,29960,29961,29962,29963,29964,29965,29966,29967,29968,29969,29970,29971,29972,29973,29974,29975,29976,29977,29978,29979,29980,29981,29982,29983,29984,29985,29986,29987,29988,29989,29990,29991,29992,29993,29994,29995,29996,29997,29998,29999,30000,30001,30002,30003,30004,30005,30006,30007,30008,30009,30010,30011,30012,30013,30014,30015,30016,30017,30018,30019,30020,30021,30022,30023,30024,30025,30026,30027,30028,30029,30030,30031,30032,30033,30034,30035,30036,30037,30038,30039,30040,30041,30042,30043,30044,30045,30046,30047,30048,30049,30050,30051,30052,30053,30054,30055,30056,30057,30058,30059,30060,30061,30062,30063,30064,30065,30066,30067,30068,30069,30070,30071,30072,30073,30074,30075,30076,30077,30078,30079,30080,30081,30082,30083,30084,30085,30086,30087,30088,30089,30090,30091,30092,30093,30094,30095,30096,30097,30098,30099,30100,30101,30102,30103,30104,30105,30106,30107,30108,30109,30110,30111,30112,30113,30114,30115,30116,30117,30118,30119,30120,30121,30122,30123,30124,30125,30126,30127,30128,30129,30130,30131,30132,30133,30134,30135,30136,30137,30138,30139,30140,30141,30142,30143,30144,30145,30146,30147,30148,30149,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30168,30169,30170,30171,30172,30173,30174,30175,30176,30177,30178,30179,30180,30181,30182,30183,30184,30185,30186,30187,30188,30189,30190,30191,30192,30193,30194,30195,30196,30197,30198,30199,30200,30201,30202,30203,30204,30205,30206,30207,30208,30209,30210,30211,30212,30213,30214,30215,30216,30217,30218,30219,30220,30221,30222,30223,30224,30225,30226,30227,30228,30229,30230,30231,30232,30233,30234,30235,30236,30237,30238,30239,30240,30241,30242,30243,30244,30245,30246,30247,30248,30249,30250,30251,30252,30253,30254,30255,30256,30257,30258,30259,30260,30261,30262,30263,30264,30265,30266,30267,30268,30269,30270,30271,30272,30273,30274,30275,30276,30277,30278,30279,30280,30281,30282,30283,30284,30285,30286,30287,30288,30289,30290,30291,30292,30293,30294,30295,30296,30297,30298,30299,30300,30301,30302,30303,30304,30305,30306,30307,30308,30309,30310,30311,30312,30313,30314,30315,30316,30317,30318,30319,30320,30321,30322,30323,30324,30325,30326,30327,30328,30329,30330,30331,30332,30333,30334,30335,30336,30337,30338,30339,30340,30341,30342,30343,30344,30345,30346,30347,30348,30349,30350,30351,30352,30353,30354,30355,30356,30357,30358,30359,30360,30361,30362,30363,30364,30365,30366,30367,30368,30369,30370,30371,30372,30373,30374,30375,30376,30377,30378,30379,30380,30381,30382,30383,30384,30385,30386,30387,30388,30389,30390,30391,30392,30393,30394,30395,30396,30397,30398,30399,30400,30401,30402,30403,30404,30405,30406,30407,30408,30409,30410,30411,30412,30413,30414,30415,30416,30417,30418,30419,30420,30421,30422,30423,30424,30425,30426,30427,30428,30429,30430,30431,30432,30433,30434,30435,30436,30437,30438,30439,30440,30441,30442,30443,30444,30445,30446,30447,30448,30449,30450,30451,30452,30453,30454,30455,30456,30457,30458,30459,30460,30461,30462,30463,30464,30465,30466,30467,30468,30469,30470,30471,30472,30473,30474,30475,30476,30477,30478,30479,30480,30481,30482,30483,30484,30485,30486,30487,30488,30489,30490,30491,30492,30493,30494,30495,30496,30497,30498,30499,30500,30501,30502,30503,30504,30505,30506,30507,30508,30509,30510,30511,30512,30513,30514,30515,30516,30517,30518,30519,30520,30521,30522,30523,30524,30525,30526,30527,30528,30529,30530,30531,30532,30533,30534,30535,30536,30537,30538,30539,30540,30541,30542,30543,30544,30545,30546,30547,30548,30549,30550,30551,30552,30553,30554,30555,30556,30557,30558,30559,30560,30561,30562,30563,30564,30565,30566,30567,30568,30569,30570,30571,30572,30573,30574,30575,30576,30577,30578,30579,30580,30581,30582,30583,30584,30585,30586,30587,30588,30589,30590,30591,30592,30593,30594,30595,30596,30597,30598,30599,30600,30601,30602,30603,30604,30605,30606,30607,30608,30609,30610,30611,30612,30613,30614,30615,30616,30617,30618,30619,30620,30621,30622,30623,30624,30625,30626,30627,30628,30629,30630,30631,30632,30633,30634,30635,30636,30637,30638,30639,30640,30641,30642,30643,30644,30645,30646,30647,30648,30649,30650,30651,30652,30653,30654,30655,30656,30657,30658,30659,30660,30661,30662,30663,30664,30665,30666,30667,30668,30669,30670,30671,30672,30673,30674,30675,30676,30677,30678,30679,30680,30681,30682,30683,30684,30685,30686,30687,30688,30689,30690,30691,30692,30693,30694,30695,30696,30697,30698,30699,30700,30701,30702,30703,30704,30705,30706,30707,30708,30709,30710,30711,30712,30713,30714,30715,30716,30717,30718,30719,30720,30721,30722,30723,30724,30725,30726,30727,30728,30729,30730,30731,30732,30733,30734,30735,30736,30737,30738,30739,30740,30741,30742,30743,30744,30745,30746,30747,30748,30749,30750,30751,30752,30753,30754,30755,30756,30757,30758,30759,30760,30761,30762,30763,30764,30765,30766,30767,30768,30769,30770,30771,30772,30773,30774,30775,30776,30777,30778,30779,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30795,30796,30797,30798,30799,30800,30801,30802,30803,30804,30805,30806,30807,30808,30809,30810,30811,30812,30813,30814,30815,30816,30817,30818,30819,30820,30821,30822,30823,30824,30825,30826,30827,30828,30829,30830,30831,30832,30833,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30845,30846,30847,30848,30849,30850,30851,30852,30853,30854,30855,30856,30857,30858,30859,30860,30861,30862,30863,30864,30865,30866,30867,30868,30869,30870,30871,30872,30873,30874,30875,30876,30877,30878,30879,30880,30881,30882,30883,30884,30885,30886,30887,30888,30889,30890,30891,30892,30893,30894,30895,30896,30897,30898,30899,30900,30901,30902,30903,30904,30905,30906,30907,30908,30909,30910,30911,30912,30913,30914,30915,30916,30917,30918,30919,30920,30921,30922,30923,30924,30925,30926,30927,30928,30929,30930,30931,30932,30933,30934,30935,30936,30937,30938,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30950,30951,30952,30953,30954,30955,30956,30957,30958,30959,30960,30961,30962,30963,30964,30965,30966,30967,30968,30969,30970,30971,30972,30973,30974,30975,30976,30977,30978,30979,30980,30981,30982,30983,30984,30985,30986,30987,30988,30989,30990,30991,30992,30993,30994,30995,30996,30997,30998,30999,31000,31001,31002,31003,31004,31005,31006,31007,31008,31009,31010,31011,31012,31013,31014,31015,31016,31017,31018,31019,31020,31021,31022,31023,31024,31025,31026,31027,31028,31029,31030,31031,31032,31033,31034,31035,31036,31037,31038,31039,31040,31041,31042,31043,31044,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31060,31061,31062,31063,31064,31065,31066,31067,31068,31069,31070,31071,31072,31073,31074,31075,31076,31077,31078,31079,31080,31081,31082,31083,31084,31085,31086,31087,31088,31089,31090,31091,31092,31093,31094,31095,31096,31097,31098,31099,31100,31101,31102,31103,31104,31105,31106,31107,31108,31109,31110,31111,31112,31113,31114,31115,31116,31117,31118,31119,31120,31121,31122,31123,31124,31125,31126,31127,31128,31129,31130,31131,31132,31133,31134,31135,31136,31137,31138,31139,31140,31141,31142,31143,31144,31145,31146,31147,31148,31149,31150,31151,31152,31153,31154,31155,31156,31157,31158,31159,31160,31161,31162,31163,31164,31165,31166,31167,31168,31169,31170,31171,31172,31173,31174,31175,31176,31177,31178,31179,31180,31181,31182,31183,31184,31185,31186,31187,31188,31189,31190,31191,31192,31193,31194,31195,31196,31197,31198,31199,31200,31201,31202,31203,31204,31205,31206,31207,31208,31209,31210,31211,31212,31213,31214,31215,31216,31217,31218,31219,31220,31221,31222,31223,31224,31225,31226,31227,31228,31229,31230,31231,31232,31233,31234,31235,31236,31237,31238,31239,31240,31241,31242,31243,31244,31245,31246,31247,31248,31249,31250,31251,31252,31253,31254,31255,31256,31257,31258,31259,31260,31261,31262,31263,31264,31265,31266,31267,31268,31269,31270,31271,31272,31273,31274,31275,31276,31277,31278,31279,31280,31281,31282,31283,31284,31285,31286,31287,31288,31289,31290,31291,31292,31293,31294,31295,31296,31297,31298,31299,31300,31301,31302,31303,31304,31305,31306,31307,31308,31309,31310,31311,31312,31313,31314,31315,31316,31317,31318,31319,31320,31321,31322,31323,31324,31325,31326,31327,31328,31329,31330,31331,31332,31333,31334,31335,31336,31337,31338,31339,31340,31341,31342,31343,31344,31345,31346,31347,31348,31349,31350,31351,31352,31353,31354,31355,31356,31357,31358,31359,31360,31361,31362,31363,31364,31365,31366,31367,31368,31369,31370,31371,31372,31373,31374,31375,31376,31377,31378,31379,31380,31381,31382,31383,31384,31385,31386,31387,31388,31389,31390,31391,31392,31393,31394,31395,31396,31397,31398,31399,31400,31401,31402,31403,31404,31405,31406,31407,31408,31409,31410,31411,31412,31413,31414,31415,31416,31417,31418,31419,31420,31421,31422,31423,31424,31425,31426,31427,31428,31429,31430,31431,31432,31433,31434,31435,31436,31437,31438,31439,31440,31441,31442,31443,31444,31445,31446,31447,31448,31449,31450,31451,31452,31453,31454,31455,31456,31457,31458,31459,31460,31461,31462,31463,31464,31465,31466,31467,31468,31469,31470,31471,31472,31473,31474,31475,31476,31477,31478,31479,31480,31481,31482,31483,31484,31485,31486,31487,31488,31489,31490,31491,31492,31493,31494,31495,31496,31497,31498,31499,31500,31501,31502,31503,31504,31505,31506,31507,31508,31509,31510,31511,31512,31513,31514,31515,31516,31517,31518,31519,31520,31521,31522,31523,31524,31525,31526,31527,31528,31529,31530,31531,31532,31533,31534,31535,31536,31537,31538,31539,31540,31541,31542,31543,31544,31545,31546,31547,31548,31549,31550,31551,31552,31553,31554,31555,31556,31557,31558,31559,31560,31561,31562,31563,31564,31565,31566,31567,31568,31569,31570,31571,31572,31573,31574,31575,31576,31577,31578,31579,31580,31581,31582,31583,31584,31585,31586,31587,31588,31589,31590,31591,31592,31593,31594,31595,31596,31597,31598,31599,31600,31601,31602,31603,31604,31605,31606,31607,31608,31609,31610,31611,31612,31613,31614,31615,31616,31617,31618,31619,31620,31621,31622,31623,31624,31625,31626,31627,31628,31629,31630,31631,31632,31633,31634,31635,31636,31637,31638,31639,31640,31641,31642,31643,31644,31645,31646,31647,31648,31649,31650,31651,31652,31653,31654,31655,31656,31657,31658,31659,31660,31661,31662,31663,31664,31665,31666,31667,31668,31669,31670,31671,31672,31673,31674,31675,31676,31677,31678,31679,31680,31681,31682,31683,31684,31685,31686,31687,31688,31689,31690,31691,31692,31693,31694,31695,31696,31697,31698,31699,31700,31701,31702,31703,31704,31705,31706,31707,31708,31709,31710,31711,31712,31713,31714,31715,31716,31717,31718,31719,31720,31721,31722,31723,31724,31725,31726,31727,31728,31729,31730,31731,31732,31733,31734,31735,31736,31737,31738,31739,31740,31741,31742,31743,31744,31745,31746,31747,31748,31749,31750,31751,31752,31753,31754,31755,31756,31757,31758,31759,31760,31761,31762,31763,31764,31765,31766,31767,31768,31769,31770,31771,31772,31773,31774,31775,31776,31777,31778,31779,31780,31781,31782,31783,31784,31785,31786,31787,31788,31789,31790,31791,31792,31793,31794,31795,31796,31797,31798,31799,31800,31801,31802,31803,31804,31805,31806,31807,31808,31809,31810,31811,31812,31813,31814,31815,31816,31817,31818,31819,31820,31821,31822,31823,31824,31825,31826,31827,31828,31829,31830,31831,31832,31833,31834,31835,31836,31837,31838,31839,31840,31841,31842,31843,31844,31845,31846,31847,31848,31849,31850,31851,31852,31853,31854,31855,31856,31857,31858,31859,31860,31861,31862,31863,31864,31865,31866,31867,31868,31869,31870,31871,31872,31873,31874,31875,31876,31877,31878,31879,31880,31881,31882,31883,31884,31885,31886,31887,31888,31889,31890,31891,31892,31893,31894,31895,31896,31897,31898,31899,31900,31901,31902,31903,31904,31905,31906,31907,31908,31909,31910,31911,31912,31913,31914,31915,31916,31917,31918,31919,31920,31921,31922,31923,31924,31925,31926,31927,31928,31929,31930,31931,31932,31933,31934,31935,31936,31937,31938,31939,31940,31941,31942,31943,31944,31945,31946,31947,31948,31949,31950,31951,31952,31953,31954,31955,31956,31957,31958,31959,31960,31961,31962,31963,31964,31965,31966,31967,31968,31969,31970,31971,31972,31973,31974,31975,31976,31977,31978,31979,31980,31981,31982,31983,31984,31985,31986,31987,31988,31989,31990,31991,31992,31993,31994,31995,31996,31997,31998,31999,32000,32001,32002,32003,32004,32005,32006,32007,32008,32009,32010,32011,32012,32013,32014,32015,32016,32017,32018,32019,32020,32021,32022,32023,32024,32025,32026,32027,32028,32029,32030,32031,32032,32033,32034,32035,32036,32037,32038,32039,32040,32041,32042,32043,32044,32045,32046,32047,32048,32049,32050,32051,32052,32053,32054,32055,32056,32057,32058,32059,32060,32061,32062,32063,32064,32065,32066,32067,32068,32069,32070,32071,32072,32073,32074,32075,32076,32077,32078,32079,32080,32081,32082,32083,32084,32085,32086,32087,32088,32089,32090,32091,32092,32093,32094,32095,32096,32097,32098,32099,32100,32101,32102,32103,32104,32105,32106,32107,32108,32109,32110,32111,32112,32113,32114,32115,32116,32117,32118,32119,32120,32121,32122,32123,32124,32125,32126,32127,32128,32129,32130,32131,32132,32133,32134,32135,32136,32137,32138,32139,32140,32141,32142,32143,32144,32145,32146,32147,32148,32149,32150,32151,32152,32153,32154,32155,32156,32157,32158,32159,32160,32161,32162,32163,32164,32165,32166,32167,32168,32169,32170,32171,32172,32173,32174,32175,32176,32177,32178,32179,32180,32181,32182,32183,32184,32185,32186,32187,32188,32189,32190,32191,32192,32193,32194,32195,32196,32197,32198,32199,32200,32201,32202,32203,32204,32205,32206,32207,32208,32209,32210,32211,32212,32213,32214,32215,32216,32217,32218,32219,32220,32221,32222,32223,32224,32225,32226,32227,32228,32229,32230,32231,32232,32233,32234,32235,32236,32237,32238,32239,32240,32241,32242,32243,32244,32245,32246,32247,32248,32249,32250,32251,32252,32253,32254,32255,32256,32257,32258,32259,32260,32261,32262,32263,32264,32265,32266,32267,32268,32269,32270,32271,32272,32273,32274,32275,32276,32277,32278,32279,32280,32281,32282,32283,32284,32285,32286,32287,32288,32289,32290,32291,32292,32293,32294,32295,32296,32297,32298,32299,32300,32301,32302,32303,32304,32305,32306,32307,32308,32309,32310,32311,32312,32313,32314,32315,32316,32317,32318,32319,32320,32321,32322,32323,32324,32325,32326,32327,32328,32329,32330,32331,32332,32333,32334,32335,32336,32337,32338,32339,32340,32341,32342,32343,32344,32345,32346,32347,32348,32349,32350,32351,32352,32353,32354,32355,32356,32357,32358,32359,32360,32361,32362,32363,32364,32365,32366,32367,32368,32369,32370,32371,32372,32373,32374,32375,32376,32377,32378,32379,32380,32381,32382,32383,32384,32385,32386,32387,32388,32389,32390,32391,32392,32393,32394,32395,32396,32397,32398,32399,32400,32401,32402,32403,32404,32405,32406,32407,32408,32409,32410,32411,32412,32413,32414,32415,32416,32417,32418,32419,32420,32421,32422,32423,32424,32425,32426,32427,32428,32429,32430,32431,32432,32433,32434,32435,32436,32437,32438,32439,32440,32441,32442,32443,32444,32445,32446,32447,32448,32449,32450,32451,32452,32453,32454,32455,32456,32457,32458,32459,32460,32461,32462,32463,32464,32465,32466,32467,32468,32469,32470,32471,32472,32473,32474,32475,32476,32477,32478,32479,32480,32481,32482,32483,32484,32485,32486,32487,32488,32489,32490,32491,32492,32493,32494,32495,32496,32497,32498,32499,32500,32501,32502,32503,32504,32505,32506,32507,32508,32509,32510,32511,32512,32513,32514,32515,32516,32517,32518,32519,32520,32521,32522,32523,32524,32525,32526,32527,32528,32529,32530,32531,32532,32533,32534,32535,32536,32537,32538,32539,32540,32541,32542,32543,32544,32545,32546,32547,32548,32549,32550,32551,32552,32553,32554,32555,32556,32557,32558,32559,32560,32561,32562,32563,32564,32565,32566,32567,32568,32569,32570,32571,32572,32573,32574,32575,32576,32577,32578,32579,32580,32581,32582,32583,32584,32585,32586,32587,32588,32589,32590,32591,32592,32593,32594,32595,32596,32597,32598,32599,32600,32601,32602,32603,32604,32605,32606,32607,32608,32609,32610,32611,32612,32613,32614,32615,32616,32617,32618,32619,32620,32621,32622,32623,32624,32625,32626,32627,32628,32629,32630,32631,32632,32633,32634,32635,32636,32637,32638,32639,32640,32641,32642,32643,32644,32645,32646,32647,32648,32649,32650,32651,32652,32653,32654,32655,32656,32657,32658,32659,32660,32661,32662,32663,32664,32665,32666,32667,32668,32669,32670,32671,32672,32673,32674,32675,32676,32677,32678,32679,32680,32681,32682,32683,32684,32685,32686,32687,32688,32689,32690,32691,32692,32693,32694,32695,32696,32697,32698,32699,32700,32701,32702,32703,32704,32705,32706,32707,32708,32709,32710,32711,32712,32713,32714,32715,32716,32717,32718,32719,32720,32721,32722,32723,32724,32725,32726,32727,32728,32729,32730,32731,32732,32733,32734,32735,32736,32737,32738,32739,32740,32741,32742,32743,32744,32745,32746,32747,32748,32749,32750,32751,32752,32753,32754,32755,32756,32757,32758,32759,32760,32761,32762,32763,32764,32765,32766,32767,32768,32769,32770,32771,32772,32773,32774,32775,32776,32777,32778,32779,32780,32781,32782,32783,32784,32785,32786,32787,32788,32789,32790,32791,32792,32793,32794,32795,32796,32797,32798,32799,32800,32801,32802,32803,32804,32805,32806,32807,32808,32809,32810,32811,32812,32813,32814,32815,32816,32817,32818,32819,32820,32821,32822,32823,32824,32825,32826,32827,32828,32829,32830,32831,32832,32833,32834,32835,32836,32837,32838,32839,32840,32841,32842,32843,32844,32845,32846,32847,32848,32849,32850,32851,32852,32853,32854,32855,32856,32857,32858,32859,32860,32861,32862,32863,32864,32865,32866,32867,32868,32869,32870,32871,32872,32873,32874,32875,32876,32877,32878,32879,32880,32881,32882,32883,32884,32885,32886,32887,32888,32889,32890,32891,32892,32893,32894,32895,32896,32897,32898,32899,32900,32901,32902,32903,32904,32905,32906,32907,32908,32909,32910,32911,32912,32913,32914,32915,32916,32917,32918,32919,32920,32921,32922,32923,32924,32925,32926,32927,32928,32929,32930,32931,32932,32933,32934,32935,32936,32937,32938,32939,32940,32941,32942,32943,32944,32945,32946,32947,32948,32949,32950,32951,32952,32953,32954,32955,32956,32957,32958,32959,32960,32961,32962,32963,32964,32965,32966,32967,32968,32969,32970,32971,32972,32973,32974,32975,32976,32977,32978,32979,32980,32981,32982,32983,32984,32985,32986,32987,32988,32989,32990,32991,32992,32993,32994,32995,32996,32997,32998,32999,33000,33001,33002,33003,33004,33005,33006,33007,33008,33009,33010,33011,33012,33013,33014,33015,33016,33017,33018,33019,33020,33021,33022,33023,33024,33025,33026,33027,33028,33029,33030,33031,33032,33033,33034,33035,33036,33037,33038,33039,33040,33041,33042,33043,33044,33045,33046,33047,33048,33049,33050,33051,33052,33053,33054,33055,33056,33057,33058,33059,33060,33061,33062,33063,33064,33065,33066,33067,33068,33069,33070,33071,33072,33073,33074,33075,33076,33077,33078,33079,33080,33081,33082,33083,33084,33085,33086,33087,33088,33089,33090,33091,33092,33093,33094,33095,33096,33097,33098,33099,33100,33101,33102,33103,33104,33105,33106,33107,33108,33109,33110,33111,33112,33113,33114,33115,33116,33117,33118,33119,33120,33121,33122,33123,33124,33125,33126,33127,33128,33129,33130,33131,33132,33133,33134,33135,33136,33137,33138,33139,33140,33141,33142,33143,33144,33145,33146,33147,33148,33149,33150,33151,33152,33153,33154,33155,33156,33157,33158,33159,33160,33161,33162,33163,33164,33165,33166,33167,33168,33169,33170,33171,33172,33173,33174,33175,33176,33177,33178,33179,33180,33181,33182,33183,33184,33185,33186,33187,33188,33189,33190,33191,33192,33193,33194,33195,33196,33197,33198,33199,33200,33201,33202,33203,33204,33205,33206,33207,33208,33209,33210,33211,33212,33213,33214,33215,33216,33217,33218,33219,33220,33221,33222,33223,33224,33225,33226,33227,33228,33229,33230,33231,33232,33233,33234,33235,33236,33237,33238,33239,33240,33241,33242,33243,33244,33245,33246,33247,33248,33249,33250,33251,33252,33253,33254,33255,33256,33257,33258,33259,33260,33261,33262,33263,33264,33265,33266,33267,33268,33269,33270,33271,33272,33273,33274,33275,33276,33277,33278,33279,33280,33281,33282,33283,33284,33285,33286,33287,33288,33289,33290,33291,33292,33293,33294,33295,33296,33297,33298,33299,33300,33301,33302,33303,33304,33305,33306,33307,33308,33309,33310,33311,33312,33313,33314,33315,33316,33317,33318,33319,33320,33321,33322,33323,33324,33325,33326,33327,33328,33329,33330,33331,33332,33333,33334,33335,33336,33337,33338,33339,33340,33341,33342,33343,33344,33345,33346,33347,33348,33349,33350,33351,33352,33353,33354,33355,33356,33357,33358,33359,33360,33361,33362,33363,33364,33365,33366,33367,33368,33369,33370,33371,33372,33373,33374,33375,33376,33377,33378,33379,33380,33381,33382,33383,33384,33385,33386,33387,33388,33389,33390,33391,33392,33393,33394,33395,33396,33397,33398,33399,33400,33401,33402,33403,33404,33405,33406,33407,33408,33409,33410,33411,33412,33413,33414,33415,33416,33417,33418,33419,33420,33421,33422,33423,33424,33425,33426,33427,33428,33429,33430,33431,33432,33433,33434,33435,33436,33437,33438,33439,33440,33441,33442,33443,33444,33445,33446,33447,33448,33449,33450,33451,33452,33453,33454,33455,33456,33457,33458,33459,33460,33461,33462,33463,33464,33465,33466,33467,33468,33469,33470,33471,33472,33473,33474,33475,33476,33477,33478,33479,33480,33481,33482,33483,33484,33485,33486,33487,33488,33489,33490,33491,33492,33493,33494,33495,33496,33497,33498,33499,33500,33501,33502,33503,33504,33505,33506,33507,33508,33509,33510,33511,33512,33513,33514,33515,33516,33517,33518,33519,33520,33521,33522,33523,33524,33525,33526,33527,33528,33529,33530,33531,33532,33533,33534,33535,33536,33537,33538,33539,33540,33541,33542,33543,33544,33545,33546,33547,33548,33549,33550,33551,33552,33553,33554,33555,33556,33557,33558,33559,33560,33561,33562,33563,33564,33565,33566,33567,33568,33569,33570,33571,33572,33573,33574,33575,33576,33577,33578,33579,33580,33581,33582,33583,33584,33585,33586,33587,33588,33589,33590,33591,33592,33593,33594,33595,33596,33597,33598,33599,33600,33601,33602,33603,33604,33605,33606,33607,33608,33609,33610,33611,33612,33613,33614,33615,33616,33617,33618,33619,33620,33621,33622,33623,33624,33625,33626,33627,33628,33629,33630,33631,33632,33633,33634,33635,33636,33637,33638,33639,33640,33641,33642,33643,33644,33645,33646,33647,33648,33649,33650,33651,33652,33653,33654,33655,33656,33657,33658,33659,33660,33661,33662,33663,33664,33665,33666,33667,33668,33669,33670,33671,33672,33673,33674,33675,33676,33677,33678,33679,33680,33681,33682,33683,33684,33685,33686,33687,33688,33689,33690,33691,33692,33693,33694,33695,33696,33697,33698,33699,33700,33701,33702,33703,33704,33705,33706,33707,33708,33709,33710,33711,33712,33713,33714,33715,33716,33717,33718,33719,33720,33721,33722,33723,33724,33725,33726,33727,33728,33729,33730,33731,33732,33733,33734,33735,33736,33737,33738,33739,33740,33741,33742,33743,33744,33745,33746,33747,33748,33749,33750,33751,33752,33753,33754,33755,33756,33757,33758,33759,33760,33761,33762,33763,33764,33765,33766,33767,33768,33769,33770,33771,33772,33773,33774,33775,33776,33777,33778,33779,33780,33781,33782,33783,33784,33785,33786,33787,33788,33789,33790,33791,33792,33793,33794,33795,33796,33797,33798,33799,33800,33801,33802,33803,33804,33805,33806,33807,33808,33809,33810,33811,33812,33813,33814,33815,33816,33817,33818,33819,33820,33821,33822,33823,33824,33825,33826,33827,33828,33829,33830,33831,33832,33833,33834,33835,33836,33837,33838,33839,33840,33841,33842,33843,33844,33845,33846,33847,33848,33849,33850,33851,33852,33853,33854,33855,33856,33857,33858,33859,33860,33861,33862,33863,33864,33865,33866,33867,33868,33869,33870,33871,33872,33873,33874,33875,33876,33877,33878,33879,33880,33881,33882,33883,33884,33885,33886,33887,33888,33889,33890,33891,33892,33893,33894,33895,33896,33897,33898,33899,33900,33901,33902,33903,33904,33905,33906,33907,33908,33909,33910,33911,33912,33913,33914,33915,33916,33917,33918,33919,33920,33921,33922,33923,33924,33925,33926,33927,33928,33929,33930,33931,33932,33933,33934,33935,33936,33937,33938,33939,33940,33941,33942,33943,33944,33945,33946,33947,33948,33949,33950,33951,33952,33953,33954,33955,33956,33957,33958,33959,33960,33961,33962,33963,33964,33965,33966,33967,33968,33969,33970,33971,33972,33973,33974,33975,33976,33977,33978,33979,33980,33981,33982,33983,33984,33985,33986,33987,33988,33989,33990,33991,33992,33993,33994,33995,33996,33997,33998,33999,34000,34001,34002,34003,34004,34005,34006,34007,34008,34009,34010,34011,34012,34013,34014,34015,34016,34017,34018,34019,34020,34021,34022,34023,34024,34025,34026,34027,34028,34029,34030,34031,34032,34033,34034,34035,34036,34037,34038,34039,34040,34041,34042,34043,34044,34045,34046,34047,34048,34049,34050,34051,34052,34053,34054,34055,34056,34057,34058,34059,34060,34061,34062,34063,34064,34065,34066,34067,34068,34069,34070,34071,34072,34073,34074,34075,34076,34077,34078,34079,34080,34081,34082,34083,34084,34085,34086,34087,34088,34089,34090,34091,34092,34093,34094,34095,34096,34097,34098,34099,34100,34101,34102,34103,34104,34105,34106,34107,34108,34109,34110,34111,34112,34113,34114,34115,34116,34117,34118,34119,34120,34121,34122,34123,34124,34125,34126,34127,34128,34129,34130,34131,34132,34133,34134,34135,34136,34137,34138,34139,34140,34141,34142,34143,34144,34145,34146,34147,34148,34149,34150,34151,34152,34153,34154,34155,34156,34157,34158,34159,34160,34161,34162,34163,34164,34165,34166,34167,34168,34169,34170,34171,34172,34173,34174,34175,34176,34177,34178,34179,34180,34181,34182,34183,34184,34185,34186,34187,34188,34189,34190,34191,34192,34193,34194,34195,34196,34197,34198,34199,34200,34201,34202,34203,34204,34205,34206,34207,34208,34209,34210,34211,34212,34213,34214,34215,34216,34217,34218,34219,34220,34221,34222,34223,34224,34225,34226,34227,34228,34229,34230,34231,34232,34233,34234,34235,34236,34237,34238,34239,34240,34241,34242,34243,34244,34245,34246,34247,34248,34249,34250,34251,34252,34253,34254,34255,34256,34257,34258,34259,34260,34261,34262,34263,34264,34265,34266,34267,34268,34269,34270,34271,34272,34273,34274,34275,34276,34277,34278,34279,34280,34281,34282,34283,34284,34285,34286,34287,34288,34289,34290,34291,34292,34293,34294,34295,34296,34297,34298,34299,34300,34301,34302,34303,34304,34305,34306,34307,34308,34309,34310,34311,34312,34313,34314,34315,34316,34317,34318,34319,34320,34321,34322,34323,34324,34325,34326,34327,34328,34329,34330,34331,34332,34333,34334,34335,34336,34337,34338,34339,34340,34341,34342,34343,34344,34345,34346,34347,34348,34349,34350,34351,34352,34353,34354,34355,34356,34357,34358,34359,34360,34361,34362,34363,34364,34365,34366,34367,34368,34369,34370,34371,34372,34373,34374,34375,34376,34377,34378,34379,34380,34381,34382,34383,34384,34385,34386,34387,34388,34389,34390,34391,34392,34393,34394,34395,34396,34397,34398,34399,34400,34401,34402,34403,34404,34405,34406,34407,34408,34409,34410,34411,34412,34413,34414,34415,34416,34417,34418,34419,34420,34421,34422,34423,34424,34425,34426,34427,34428,34429,34430,34431,34432,34433,34434,34435,34436,34437,34438,34439,34440,34441,34442,34443,34444,34445,34446,34447,34448,34449,34450,34451,34452,34453,34454,34455,34456,34457,34458,34459,34460,34461,34462,34463,34464,34465,34466,34467,34468,34469,34470,34471,34472,34473,34474,34475,34476,34477,34478,34479,34480,34481,34482,34483,34484,34485,34486,34487,34488,34489,34490,34491,34492,34493,34494,34495,34496,34497,34498,34499,34500,34501,34502,34503,34504,34505,34506,34507,34508,34509,34510,34511,34512,34513,34514,34515,34516,34517,34518,34519,34520,34521,34522,34523,34524,34525,34526,34527,34528,34529,34530,34531,34532,34533,34534,34535,34536,34537,34538,34539,34540,34541,34542,34543,34544,34545,34546,34547,34548,34549,34550,34551,34552,34553,34554,34555,34556,34557,34558,34559,34560,34561,34562,34563,34564,34565,34566,34567,34568,34569,34570,34571,34572,34573,34574,34575,34576,34577,34578,34579,34580,34581,34582,34583,34584,34585,34586,34587,34588,34589,34590,34591,34592,34593,34594,34595,34596,34597,34598,34599,34600,34601,34602,34603,34604,34605,34606,34607,34608,34609,34610,34611,34612,34613,34614,34615,34616,34617,34618,34619,34620,34621,34622,34623,34624,34625,34626,34627,34628,34629,34630,34631,34632,34633,34634,34635,34636,34637,34638,34639,34640,34641,34642,34643,34644,34645,34646,34647,34648,34649,34650,34651,34652,34653,34654,34655,34656,34657,34658,34659,34660,34661,34662,34663,34664,34665,34666,34667,34668,34669,34670,34671,34672,34673,34674,34675,34676,34677,34678,34679,34680,34681,34682,34683,34684,34685,34686,34687,34688,34689,34690,34691,34692,34693,34694,34695,34696,34697,34698,34699,34700,34701,34702,34703,34704,34705,34706,34707,34708,34709,34710,34711,34712,34713,34714,34715,34716,34717,34718,34719,34720,34721,34722,34723,34724,34725,34726,34727,34728,34729,34730,34731,34732,34733,34734,34735,34736,34737,34738,34739,34740,34741,34742,34743,34744,34745,34746,34747,34748,34749,34750,34751,34752,34753,34754,34755,34756,34757,34758,34759,34760,34761,34762,34763,34764,34765,34766,34767,34768,34769,34770,34771,34772,34773,34774,34775,34776,34777,34778,34779,34780,34781,34782,34783,34784,34785,34786,34787,34788,34789,34790,34791,34792,34793,34794,34795,34796,34797,34798,34799,34800,34801,34802,34803,34804,34805,34806,34807,34808,34809,34810,34811,34812,34813,34814,34815,34816,34817,34818,34819,34820,34821,34822,34823,34824,34825,34826,34827,34828,34829,34830,34831,34832,34833,34834,34835,34836,34837,34838,34839,34840,34841,34842,34843,34844,34845,34846,34847,34848,34849,34850,34851,34852,34853,34854,34855,34856,34857,34858,34859,34860,34861,34862,34863,34864,34865,34866,34867,34868,34869,34870,34871,34872,34873,34874,34875,34876,34877,34878,34879,34880,34881,34882,34883,34884,34885,34886,34887,34888,34889,34890,34891,34892,34893,34894,34895,34896,34897,34898,34899,34900,34901,34902,34903,34904,34905,34906,34907,34908,34909,34910,34911,34912,34913,34914,34915,34916,34917,34918,34919,34920,34921,34922,34923,34924,34925,34926,34927,34928,34929,34930,34931,34932,34933,34934,34935,34936,34937,34938,34939,34940,34941,34942,34943,34944,34945,34946,34947,34948,34949,34950,34951,34952,34953,34954,34955,34956,34957,34958,34959,34960,34961,34962,34963,34964,34965,34966,34967,34968,34969,34970,34971,34972,34973,34974,34975,34976,34977,34978,34979,34980,34981,34982,34983,34984,34985,34986,34987,34988,34989,34990,34991,34992,34993,34994,34995,34996,34997,34998,34999,35000,35001,35002,35003,35004,35005,35006,35007,35008,35009,35010,35011,35012,35013,35014,35015,35016,35017,35018,35019,35020,35021,35022,35023,35024,35025,35026,35027,35028,35029,35030,35031,35032,35033,35034,35035,35036,35037,35038,35039,35040,35041,35042,35043,35044,35045,35046,35047,35048,35049,35050,35051,35052,35053,35054,35055,35056,35057,35058,35059,35060,35061,35062,35063,35064,35065,35066,35067,35068,35069,35070,35071,35072,35073,35074,35075,35076,35077,35078,35079,35080,35081,35082,35083,35084,35085,35086,35087,35088,35089,35090,35091,35092,35093,35094,35095,35096,35097,35098,35099,35100,35101,35102,35103,35104,35105,35106,35107,35108,35109,35110,35111,35112,35113,35114,35115,35116,35117,35118,35119,35120,35121,35122,35123,35124,35125,35126,35127,35128,35129,35130,35131,35132,35133,35134,35135,35136,35137,35138,35139,35140,35141,35142,35143,35144,35145,35146,35147,35148,35149,35150,35151,35152,35153,35154,35155,35156,35157,35158,35159,35160,35161,35162,35163,35164,35165,35166,35167,35168,35169,35170,35171,35172,35173,35174,35175,35176,35177,35178,35179,35180,35181,35182,35183,35184,35185,35186,35187,35188,35189,35190,35191,35192,35193,35194,35195,35196,35197,35198,35199,35200,35201,35202,35203,35204,35205,35206,35207,35208,35209,35210,35211,35212,35213,35214,35215,35216,35217,35218,35219,35220,35221,35222,35223,35224,35225,35226,35227,35228,35229,35230,35231,35232,35233,35234,35235,35236,35237,35238,35239,35240,35241,35242,35243,35244,35245,35246,35247,35248,35249,35250,35251,35252,35253,35254,35255,35256,35257,35258,35259,35260,35261,35262,35263,35264,35265,35266,35267,35268,35269,35270,35271,35272,35273,35274,35275,35276,35277,35278,35279,35280,35281,35282,35283,35284,35285,35286,35287,35288,35289,35290,35291,35292,35293,35294,35295,35296,35297,35298,35299,35300,35301,35302,35303,35304,35305,35306,35307,35308,35309,35310,35311,35312,35313,35314,35315,35316,35317,35318,35319,35320,35321,35322,35323,35324,35325,35326,35327,35328,35329,35330,35331,35332,35333,35334,35335,35336,35337,35338,35339,35340,35341,35342,35343,35344,35345,35346,35347,35348,35349,35350,35351,35352,35353,35354,35355,35356,35357,35358,35359,35360,35361,35362,35363,35364,35365,35366,35367,35368,35369,35370,35371,35372,35373,35374,35375,35376,35377,35378,35379,35380,35381,35382,35383,35384,35385,35386,35387,35388,35389,35390,35391,35392,35393,35394,35395,35396,35397,35398,35399,35400,35401,35402,35403,35404,35405,35406,35407,35408,35409,35410,35411,35412,35413,35414,35415,35416,35417,35418,35419,35420,35421,35422,35423,35424,35425,35426,35427,35428,35429,35430,35431,35432,35433,35434,35435,35436,35437,35438,35439,35440,35441,35442,35443,35444,35445,35446,35447,35448,35449,35450,35451,35452,35453,35454,35455,35456,35457,35458,35459,35460,35461,35462,35463,35464,35465,35466,35467,35468,35469,35470,35471,35472,35473,35474,35475,35476,35477,35478,35479,35480,35481,35482,35483,35484,35485,35486,35487,35488,35489,35490,35491,35492,35493,35494,35495,35496,35497,35498,35499,35500,35501,35502,35503,35504,35505,35506,35507,35508,35509,35510,35511,35512,35513,35514,35515,35516,35517,35518,35519,35520,35521,35522,35523,35524,35525,35526,35527,35528,35529,35530,35531,35532,35533,35534,35535,35536,35537,35538,35539,35540,35541,35542,35543,35544,35545,35546,35547,35548,35549,35550,35551,35552,35553,35554,35555,35556,35557,35558,35559,35560,35561,35562,35563,35564,35565,35566,35567,35568,35569,35570,35571,35572,35573,35574,35575,35576,35577,35578,35579,35580,35581,35582,35583,35584,35585,35586,35587,35588,35589,35590,35591,35592,35593,35594,35595,35596,35597,35598,35599,35600,35601,35602,35603,35604,35605,35606,35607,35608,35609,35610,35611,35612,35613,35614,35615,35616,35617,35618,35619,35620,35621,35622,35623,35624,35625,35626,35627,35628,35629,35630,35631,35632,35633,35634,35635,35636,35637,35638,35639,35640,35641,35642,35643,35644,35645,35646,35647,35648,35649,35650,35651,35652,35653,35654,35655,35656,35657,35658,35659,35660,35661,35662,35663,35664,35665,35666,35667,35668,35669,35670,35671,35672,35673,35674,35675,35676,35677,35678,35679,35680,35681,35682,35683,35684,35685,35686,35687,35688,35689,35690,35691,35692,35693,35694,35695,35696,35697,35698,35699,35700,35701,35702,35703,35704,35705,35706,35707,35708,35709,35710,35711,35712,35713,35714,35715,35716,35717,35718,35719,35720,35721,35722,35723,35724,35725,35726,35727,35728,35729,35730,35731,35732,35733,35734,35735,35736,35737,35738,35739,35740,35741,35742,35743,35744,35745,35746,35747,35748,35749,35750,35751,35752,35753,35754,35755,35756,35757,35758,35759,35760,35761,35762,35763,35764,35765,35766,35767,35768,35769,35770,35771,35772,35773,35774,35775,35776,35777,35778,35779,35780,35781,35782,35783,35784,35785,35786,35787,35788,35789,35790,35791,35792,35793,35794,35795,35796,35797,35798,35799,35800,35801,35802,35803,35804,35805,35806,35807,35808,35809,35810,35811,35812,35813,35814,35815,35816,35817,35818,35819,35820,35821,35822,35823,35824,35825,35826,35827,35828,35829,35830,35831,35832,35833,35834,35835,35836,35837,35838,35839,35840,35841,35842,35843,35844,35845,35846,35847,35848,35849,35850,35851,35852,35853,35854,35855,35856,35857,35858,35859,35860,35861,35862,35863,35864,35865,35866,35867,35868,35869,35870,35871,35872,35873,35874,35875,35876,35877,35878,35879,35880,35881,35882,35883,35884,35885,35886,35887,35888,35889,35890,35891,35892,35893,35894,35895,35896,35897,35898,35899,35900,35901,35902,35903,35904,35905,35906,35907,35908,35909,35910,35911,35912,35913,35914,35915,35916,35917,35918,35919,35920,35921,35922,35923,35924,35925,35926,35927,35928,35929,35930,35931,35932,35933,35934,35935,35936,35937,35938,35939,35940,35941,35942,35943,35944,35945,35946,35947,35948,35949,35950,35951,35952,35953,35954,35955,35956,35957,35958,35959,35960,35961,35962,35963,35964,35965,35966,35967,35968,35969,35970,35971,35972,35973,35974,35975,35976,35977,35978,35979,35980,35981,35982,35983,35984,35985,35986,35987,35988,35989,35990,35991,35992,35993,35994,35995,35996,35997,35998,35999,36000,36001,36002,36003,36004,36005,36006,36007,36008,36009,36010,36011,36012,36013,36014,36015,36016,36017,36018,36019,36020,36021,36022,36023,36024,36025,36026,36027,36028,36029,36030,36031,36032,36033,36034,36035,36036,36037,36038,36039,36040,36041,36042,36043,36044,36045,36046,36047,36048,36049,36050,36051,36052,36053,36054,36055,36056,36057,36058,36059,36060,36061,36062,36063,36064,36065,36066,36067,36068,36069,36070,36071,36072,36073,36074,36075,36076,36077,36078,36079,36080,36081,36082,36083,36084,36085,36086,36087,36088,36089,36090,36091,36092,36093,36094,36095,36096,36097,36098,36099,36100,36101,36102,36103,36104,36105,36106,36107,36108,36109,36110,36111,36112,36113,36114,36115,36116,36117,36118,36119,36120,36121,36122,36123,36124,36125,36126,36127,36128,36129,36130,36131,36132,36133,36134,36135,36136,36137,36138,36139,36140,36141,36142,36143,36144,36145,36146,36147,36148,36149,36150,36151,36152,36153,36154,36155,36156,36157,36158,36159,36160,36161,36162,36163,36164,36165,36166,36167,36168,36169,36170,36171,36172,36173,36174,36175,36176,36177,36178,36179,36180,36181,36182,36183,36184,36185,36186,36187,36188,36189,36190,36191,36192,36193,36194,36195,36196,36197,36198,36199,36200,36201,36202,36203,36204,36205,36206,36207,36208,36209,36210,36211,36212,36213,36214,36215,36216,36217,36218,36219,36220,36221,36222,36223,36224,36225,36226,36227,36228,36229,36230,36231,36232,36233,36234,36235,36236,36237,36238,36239,36240,36241,36242,36243,36244,36245,36246,36247,36248,36249,36250,36251,36252,36253,36254,36255,36256,36257,36258,36259,36260,36261,36262,36263,36264,36265,36266,36267,36268,36269,36270,36271,36272,36273,36274,36275,36276,36277,36278,36279,36280,36281,36282,36283,36284,36285,36286,36287,36288,36289,36290,36291,36292,36293,36294,36295,36296,36297,36298,36299,36300,36301,36302,36303,36304,36305,36306,36307,36308,36309,36310,36311,36312,36313,36314,36315,36316,36317,36318,36319,36320,36321,36322,36323,36324,36325,36326,36327,36328,36329,36330,36331,36332,36333,36334,36335,36336,36337,36338,36339,36340,36341,36342,36343,36344,36345,36346,36347,36348,36349,36350,36351,36352,36353,36354,36355,36356,36357,36358,36359,36360,36361,36362,36363,36364,36365,36366,36367,36368,36369,36370,36371,36372,36373,36374,36375,36376,36377,36378,36379,36380,36381,36382,36383,36384,36385,36386,36387,36388,36389,36390,36391,36392,36393,36394,36395,36396,36397,36398,36399,36400,36401,36402,36403,36404,36405,36406,36407,36408,36409,36410,36411,36412,36413,36414,36415,36416,36417,36418,36419,36420,36421,36422,36423,36424,36425,36426,36427,36428,36429,36430,36431,36432,36433,36434,36435,36436,36437,36438,36439,36440,36441,36442,36443,36444,36445,36446,36447,36448,36449,36450,36451,36452,36453,36454,36455,36456,36457,36458,36459,36460,36461,36462,36463,36464,36465,36466,36467,36468,36469,36470,36471,36472,36473,36474,36475,36476,36477,36478,36479,36480,36481,36482,36483,36484,36485,36486,36487,36488,36489,36490,36491,36492,36493,36494,36495,36496,36497,36498,36499,36500,36501,36502,36503,36504,36505,36506,36507,36508,36509,36510,36511,36512,36513,36514,36515,36516,36517,36518,36519,36520,36521,36522,36523,36524,36525,36526,36527,36528,36529,36530,36531,36532,36533,36534,36535,36536,36537,36538,36539,36540,36541,36542,36543,36544,36545,36546,36547,36548,36549,36550,36551,36552,36553,36554,36555,36556,36557,36558,36559,36560,36561,36562,36563,36564,36565,36566,36567,36568,36569,36570,36571,36572,36573,36574,36575,36576,36577,36578,36579,36580,36581,36582,36583,36584,36585,36586,36587,36588,36589,36590,36591,36592,36593,36594,36595,36596,36597,36598,36599,36600,36601,36602,36603,36604,36605,36606,36607,36608,36609,36610,36611,36612,36613,36614,36615,36616,36617,36618,36619,36620,36621,36622,36623,36624,36625,36626,36627,36628,36629,36630,36631,36632,36633,36634,36635,36636,36637,36638,36639,36640,36641,36642,36643,36644,36645,36646,36647,36648,36649,36650,36651,36652,36653,36654,36655,36656,36657,36658,36659,36660,36661,36662,36663,36664,36665,36666,36667,36668,36669,36670,36671,36672,36673,36674,36675,36676,36677,36678,36679,36680,36681,36682,36683,36684,36685,36686,36687,36688,36689,36690,36691,36692,36693,36694,36695,36696,36697,36698,36699,36700,36701,36702,36703,36704,36705,36706,36707,36708,36709,36710,36711,36712,36713,36714,36715,36716,36717,36718,36719,36720,36721,36722,36723,36724,36725,36726,36727,36728,36729,36730,36731,36732,36733,36734,36735,36736,36737,36738,36739,36740,36741,36742,36743,36744,36745,36746,36747,36748,36749,36750,36751,36752,36753,36754,36755,36756,36757,36758,36759,36760,36761,36762,36763,36764,36765,36766,36767,36768,36769,36770,36771,36772,36773,36774,36775,36776,36777,36778,36779,36780,36781,36782,36783,36784,36785,36786,36787,36788,36789,36790,36791,36792,36793,36794,36795,36796,36797,36798,36799,36800,36801,36802,36803,36804,36805,36806,36807,36808,36809,36810,36811,36812,36813,36814,36815,36816,36817,36818,36819,36820,36821,36822,36823,36824,36825,36826,36827,36828,36829,36830,36831,36832,36833,36834,36835,36836,36837,36838,36839,36840,36841,36842,36843,36844,36845,36846,36847,36848,36849,36850,36851,36852,36853,36854,36855,36856,36857,36858,36859,36860,36861,36862,36863,36864,36865,36866,36867,36868,36869,36870,36871,36872,36873,36874,36875,36876,36877,36878,36879,36880,36881,36882,36883,36884,36885,36886,36887,36888,36889,36890,36891,36892,36893,36894,36895,36896,36897,36898,36899,36900,36901,36902,36903,36904,36905,36906,36907,36908,36909,36910,36911,36912,36913,36914,36915,36916,36917,36918,36919,36920,36921,36922,36923,36924,36925,36926,36927,36928,36929,36930,36931,36932,36933,36934,36935,36936,36937,36938,36939,36940,36941,36942,36943,36944,36945,36946,36947,36948,36949,36950,36951,36952,36953,36954,36955,36956,36957,36958,36959,36960,36961,36962,36963,36964,36965,36966,36967,36968,36969,36970,36971,36972,36973,36974,36975,36976,36977,36978,36979,36980,36981,36982,36983,36984,36985,36986,36987,36988,36989,36990,36991,36992,36993,36994,36995,36996,36997,36998,36999,37000,37001,37002,37003,37004,37005,37006,37007,37008,37009,37010,37011,37012,37013,37014,37015,37016,37017,37018,37019,37020,37021,37022,37023,37024,37025,37026,37027,37028,37029,37030,37031,37032,37033,37034,37035,37036,37037,37038,37039,37040,37041,37042,37043,37044,37045,37046,37047,37048,37049,37050,37051,37052,37053,37054,37055,37056,37057,37058,37059,37060,37061,37062,37063,37064,37065,37066,37067,37068,37069,37070,37071,37072,37073,37074,37075,37076,37077,37078,37079,37080,37081,37082,37083,37084,37085,37086,37087,37088,37089,37090,37091,37092,37093,37094,37095,37096,37097,37098,37099,37100,37101,37102,37103,37104,37105,37106,37107,37108,37109,37110,37111,37112,37113,37114,37115,37116,37117,37118,37119,37120,37121,37122,37123,37124,37125,37126,37127,37128,37129,37130,37131,37132,37133,37134,37135,37136,37137,37138,37139,37140,37141,37142,37143,37144,37145,37146,37147,37148,37149,37150,37151,37152,37153,37154,37155,37156,37157,37158,37159,37160,37161,37162,37163,37164,37165,37166,37167,37168,37169,37170,37171,37172,37173,37174,37175,37176,37177,37178,37179,37180,37181,37182,37183,37184,37185,37186,37187,37188,37189,37190,37191,37192,37193,37194,37195,37196,37197,37198,37199,37200,37201,37202,37203,37204,37205,37206,37207,37208,37209,37210,37211,37212,37213,37214,37215,37216,37217,37218,37219,37220,37221,37222,37223,37224,37225,37226,37227,37228,37229,37230,37231,37232,37233,37234,37235,37236,37237,37238,37239,37240,37241,37242,37243,37244,37245,37246,37247,37248,37249,37250,37251,37252,37253,37254,37255,37256,37257,37258,37259,37260,37261,37262,37263,37264,37265,37266,37267,37268,37269,37270,37271,37272,37273,37274,37275,37276,37277,37278,37279,37280,37281,37282,37283,37284,37285,37286,37287,37288,37289,37290,37291,37292,37293,37294,37295,37296,37297,37298,37299,37300,37301,37302,37303,37304,37305,37306,37307,37308,37309,37310,37311,37312,37313,37314,37315,37316,37317,37318,37319,37320,37321,37322,37323,37324,37325,37326,37327,37328,37329,37330,37331,37332,37333,37334,37335,37336,37337,37338,37339,37340,37341,37342,37343,37344,37345,37346,37347,37348,37349,37350,37351,37352,37353,37354,37355,37356,37357,37358,37359,37360,37361,37362,37363,37364,37365,37366,37367,37368,37369,37370,37371,37372,37373,37374,37375,37376,37377,37378,37379,37380,37381,37382,37383,37384,37385,37386,37387,37388,37389,37390,37391,37392,37393,37394,37395,37396,37397,37398,37399,37400,37401,37402,37403,37404,37405,37406,37407,37408,37409,37410,37411,37412,37413,37414,37415,37416,37417,37418,37419,37420,37421,37422,37423,37424,37425,37426,37427,37428,37429,37430,37431,37432,37433,37434,37435,37436,37437,37438,37439,37440,37441,37442,37443,37444,37445,37446,37447,37448,37449,37450,37451,37452,37453,37454,37455,37456,37457,37458,37459,37460,37461,37462,37463,37464,37465,37466,37467,37468,37469,37470,37471,37472,37473,37474,37475,37476,37477,37478,37479,37480,37481,37482,37483,37484,37485,37486,37487,37488,37489,37490,37491,37492,37493,37494,37495,37496,37497,37498,37499,37500,37501,37502,37503,37504,37505,37506,37507,37508,37509,37510,37511,37512,37513,37514,37515,37516,37517,37518,37519,37520,37521,37522,37523,37524,37525,37526,37527,37528,37529,37530,37531,37532,37533,37534,37535,37536,37537,37538,37539,37540,37541,37542,37543,37544,37545,37546,37547,37548,37549,37550,37551,37552,37553,37554,37555,37556,37557,37558,37559,37560,37561,37562,37563,37564,37565,37566,37567,37568,37569,37570,37571,37572,37573,37574,37575,37576,37577,37578,37579,37580,37581,37582,37583,37584,37585,37586,37587,37588,37589,37590,37591,37592,37593,37594,37595,37596,37597,37598,37599,37600,37601,37602,37603,37604,37605,37606,37607,37608,37609,37610,37611,37612,37613,37614,37615,37616,37617,37618,37619,37620,37621,37622,37623,37624,37625,37626,37627,37628,37629,37630,37631,37632,37633,37634,37635,37636,37637,37638,37639,37640,37641,37642,37643,37644,37645,37646,37647,37648,37649,37650,37651,37652,37653,37654,37655,37656,37657,37658,37659,37660,37661,37662,37663,37664,37665,37666,37667,37668,37669,37670,37671,37672,37673,37674,37675,37676,37677,37678,37679,37680,37681,37682,37683,37684,37685,37686,37687,37688,37689,37690,37691,37692,37693,37694,37695,37696,37697,37698,37699,37700,37701,37702,37703,37704,37705,37706,37707,37708,37709,37710,37711,37712,37713,37714,37715,37716,37717,37718,37719,37720,37721,37722,37723,37724,37725,37726,37727,37728,37729,37730,37731,37732,37733,37734,37735,37736,37737,37738,37739,37740,37741,37742,37743,37744,37745,37746,37747,37748,37749,37750,37751,37752,37753,37754,37755,37756,37757,37758,37759,37760,37761,37762,37763,37764,37765,37766,37767,37768,37769,37770,37771,37772,37773,37774,37775,37776,37777,37778,37779,37780,37781,37782,37783,37784,37785,37786,37787,37788,37789,37790,37791,37792,37793,37794,37795,37796,37797,37798,37799,37800,37801,37802,37803,37804,37805,37806,37807,37808,37809,37810,37811,37812,37813,37814,37815,37816,37817,37818,37819,37820,37821,37822,37823,37824,37825,37826,37827,37828,37829,37830,37831,37832,37833,37834,37835,37836,37837,37838,37839,37840,37841,37842,37843,37844,37845,37846,37847,37848,37849,37850,37851,37852,37853,37854,37855,37856,37857,37858,37859,37860,37861,37862,37863,37864,37865,37866,37867,37868,37869,37870,37871,37872,37873,37874,37875,37876,37877,37878,37879,37880,37881,37882,37883,37884,37885,37886,37887,37888,37889,37890,37891,37892,37893,37894,37895,37896,37897,37898,37899,37900,37901,37902,37903,37904,37905,37906,37907,37908,37909,37910,37911,37912,37913,37914,37915,37916,37917,37918,37919,37920,37921,37922,37923,37924,37925,37926,37927,37928,37929,37930,37931,37932,37933,37934,37935,37936,37937,37938,37939,37940,37941,37942,37943,37944,37945,37946,37947,37948,37949,37950,37951,37952,37953,37954,37955,37956,37957,37958,37959,37960,37961,37962,37963,37964,37965,37966,37967,37968,37969,37970,37971,37972,37973,37974,37975,37976,37977,37978,37979,37980,37981,37982,37983,37984,37985,37986,37987,37988,37989,37990,37991,37992,37993,37994,37995,37996,37997,37998,37999,38000,38001,38002,38003,38004,38005,38006,38007,38008,38009,38010,38011,38012,38013,38014,38015,38016,38017,38018,38019,38020,38021,38022,38023,38024,38025,38026,38027,38028,38029,38030,38031,38032,38033,38034,38035,38036,38037,38038,38039,38040,38041,38042,38043,38044,38045,38046,38047,38048,38049,38050,38051,38052,38053,38054,38055,38056,38057,38058,38059,38060,38061,38062,38063,38064,38065,38066,38067,38068,38069,38070,38071,38072,38073,38074,38075,38076,38077,38078,38079,38080,38081,38082,38083,38084,38085,38086,38087,38088,38089,38090,38091,38092,38093,38094,38095,38096,38097,38098,38099,38100,38101,38102,38103,38104,38105,38106,38107,38108,38109,38110,38111,38112,38113,38114,38115,38116,38117,38118,38119,38120,38121,38122,38123,38124,38125,38126,38127,38128,38129,38130,38131,38132,38133,38134,38135,38136,38137,38138,38139,38140,38141,38142,38143,38144,38145,38146,38147,38148,38149,38150,38151,38152,38153,38154,38155,38156,38157,38158,38159,38160,38161,38162,38163,38164,38165,38166,38167,38168,38169,38170,38171,38172,38173,38174,38175,38176,38177,38178,38179,38180,38181,38182,38183,38184,38185,38186,38187,38188,38189,38190,38191,38192,38193,38194,38195,38196,38197,38198,38199,38200,38201,38202,38203,38204,38205,38206,38207,38208,38209,38210,38211,38212,38213,38214,38215,38216,38217,38218,38219,38220,38221,38222,38223,38224,38225,38226,38227,38228,38229,38230,38231,38232,38233,38234,38235,38236,38237,38238,38239,38240,38241,38242,38243,38244,38245,38246,38247,38248,38249,38250,38251,38252,38253,38254,38255,38256,38257,38258,38259,38260,38261,38262,38263,38264,38265,38266,38267,38268,38269,38270,38271,38272,38273,38274,38275,38276,38277,38278,38279,38280,38281,38282,38283,38284,38285,38286,38287,38288,38289,38290,38291,38292,38293,38294,38295,38296,38297,38298,38299,38300,38301,38302,38303,38304,38305,38306,38307,38308,38309,38310,38311,38312,38313,38314,38315,38316,38317,38318,38319,38320,38321,38322,38323,38324,38325,38326,38327,38328,38329,38330,38331,38332,38333,38334,38335,38336,38337,38338,38339,38340,38341,38342,38343,38344,38345,38346,38347,38348,38349,38350,38351,38352,38353,38354,38355,38356,38357,38358,38359,38360,38361,38362,38363,38364,38365,38366,38367,38368,38369,38370,38371,38372,38373,38374,38375,38376,38377,38378,38379,38380,38381,38382,38383,38384,38385,38386,38387,38388,38389,38390,38391,38392,38393,38394,38395,38396,38397,38398,38399,38400,38401,38402,38403,38404,38405,38406,38407,38408,38409,38410,38411,38412,38413,38414,38415,38416,38417,38418,38419,38420,38421,38422,38423,38424,38425,38426,38427,38428,38429,38430,38431,38432,38433,38434,38435,38436,38437,38438,38439,38440,38441,38442,38443,38444,38445,38446,38447,38448,38449,38450,38451,38452,38453,38454,38455,38456,38457,38458,38459,38460,38461,38462,38463,38464,38465,38466,38467,38468,38469,38470,38471,38472,38473,38474,38475,38476,38477,38478,38479,38480,38481,38482,38483,38484,38485,38486,38487,38488,38489,38490,38491,38492,38493,38494,38495,38496,38497,38498,38499,38500,38501,38502,38503,38504,38505,38506,38507,38508,38509,38510,38511,38512,38513,38514,38515,38516,38517,38518,38519,38520,38521,38522,38523,38524,38525,38526,38527,38528,38529,38530,38531,38532,38533,38534,38535,38536,38537,38538,38539,38540,38541,38542,38543,38544,38545,38546,38547,38548,38549,38550,38551,38552,38553,38554,38555,38556,38557,38558,38559,38560,38561,38562,38563,38564,38565,38566,38567,38568,38569,38570,38571,38572,38573,38574,38575,38576,38577,38578,38579,38580,38581,38582,38583,38584,38585,38586,38587,38588,38589,38590,38591,38592,38593,38594,38595,38596,38597,38598,38599,38600,38601,38602,38603,38604,38605,38606,38607,38608,38609,38610,38611,38612,38613,38614,38615,38616,38617,38618,38619,38620,38621,38622,38623,38624,38625,38626,38627,38628,38629,38630,38631,38632,38633,38634,38635,38636,38637,38638,38639,38640,38641,38642,38643,38644,38645,38646,38647,38648,38649,38650,38651,38652,38653,38654,38655,38656,38657,38658,38659,38660,38661,38662,38663,38664,38665,38666,38667,38668,38669,38670,38671,38672,38673,38674,38675,38676,38677,38678,38679,38680,38681,38682,38683,38684,38685,38686,38687,38688,38689,38690,38691,38692,38693,38694,38695,38696,38697,38698,38699,38700,38701,38702,38703,38704,38705,38706,38707,38708,38709,38710,38711,38712,38713,38714,38715,38716,38717,38718,38719,38720,38721,38722,38723,38724,38725,38726,38727,38728,38729,38730,38731,38732,38733,38734,38735,38736,38737,38738,38739,38740,38741,38742,38743,38744,38745,38746,38747,38748,38749,38750,38751,38752,38753,38754,38755,38756,38757,38758,38759,38760,38761,38762,38763,38764,38765,38766,38767,38768,38769,38770,38771,38772,38773,38774,38775,38776,38777,38778,38779,38780,38781,38782,38783,38784,38785,38786,38787,38788,38789,38790,38791,38792,38793,38794,38795,38796,38797,38798,38799,38800,38801,38802,38803,38804,38805,38806,38807,38808,38809,38810,38811,38812,38813,38814,38815,38816,38817,38818,38819,38820,38821,38822,38823,38824,38825,38826,38827,38828,38829,38830,38831,38832,38833,38834,38835,38836,38837,38838,38839,38840,38841,38842,38843,38844,38845,38846,38847,38848,38849,38850,38851,38852,38853,38854,38855,38856,38857,38858,38859,38860,38861,38862,38863,38864,38865,38866,38867,38868,38869,38870,38871,38872,38873,38874,38875,38876,38877,38878,38879,38880,38881,38882,38883,38884,38885,38886,38887,38888,38889,38890,38891,38892,38893,38894,38895,38896,38897,38898,38899,38900,38901,38902,38903,38904,38905,38906,38907,38908,38909,38910,38911,38912,38913,38914,38915,38916,38917,38918,38919,38920,38921,38922,38923,38924,38925,38926,38927,38928,38929,38930,38931,38932,38933,38934,38935,38936,38937,38938,38939,38940,38941,38942,38943,38944,38945,38946,38947,38948,38949,38950,38951,38952,38953,38954,38955,38956,38957,38958,38959,38960,38961,38962,38963,38964,38965,38966,38967,38968,38969,38970,38971,38972,38973,38974,38975,38976,38977,38978,38979,38980,38981,38982,38983,38984,38985,38986,38987,38988,38989,38990,38991,38992,38993,38994,38995,38996,38997,38998,38999,39000,39001,39002,39003,39004,39005,39006,39007,39008,39009,39010,39011,39012,39013,39014,39015,39016,39017,39018,39019,39020,39021,39022,39023,39024,39025,39026,39027,39028,39029,39030,39031,39032,39033,39034,39035,39036,39037,39038,39039,39040,39041,39042,39043,39044,39045,39046,39047,39048,39049,39050,39051,39052,39053,39054,39055,39056,39057,39058,39059,39060,39061,39062,39063,39064,39065,39066,39067,39068,39069,39070,39071,39072,39073,39074,39075,39076,39077,39078,39079,39080,39081,39082,39083,39084,39085,39086,39087,39088,39089,39090,39091,39092,39093,39094,39095,39096,39097,39098,39099,39100,39101,39102,39103,39104,39105,39106,39107,39108,39109,39110,39111,39112,39113,39114,39115,39116,39117,39118,39119,39120,39121,39122,39123,39124,39125,39126,39127,39128,39129,39130,39131,39132,39133,39134,39135,39136,39137,39138,39139,39140,39141,39142,39143,39144,39145,39146,39147,39148,39149,39150,39151,39152,39153,39154,39155,39156,39157,39158,39159,39160,39161,39162,39163,39164,39165,39166,39167,39168,39169,39170,39171,39172,39173,39174,39175,39176,39177,39178,39179,39180,39181,39182,39183,39184,39185,39186,39187,39188,39189,39190,39191,39192,39193,39194,39195,39196,39197,39198,39199,39200,39201,39202,39203,39204,39205,39206,39207,39208,39209,39210,39211,39212,39213,39214,39215,39216,39217,39218,39219,39220,39221,39222,39223,39224,39225,39226,39227,39228,39229,39230,39231,39232,39233,39234,39235,39236,39237,39238,39239,39240,39241,39242,39243,39244,39245,39246,39247,39248,39249,39250,39251,39252,39253,39254,39255,39256,39257,39258,39259,39260,39261,39262,39263,39264,39265,39266,39267,39268,39269,39270,39271,39272,39273,39274,39275,39276,39277,39278,39279,39280,39281,39282,39283,39284,39285,39286,39287,39288,39289,39290,39291,39292,39293,39294,39295,39296,39297,39298,39299,39300,39301,39302,39303,39304,39305,39306,39307,39308,39309,39310,39311,39312,39313,39314,39315,39316,39317,39318,39319,39320,39321,39322,39323,39324,39325,39326,39327,39328,39329,39330,39331,39332,39333,39334,39335,39336,39337,39338,39339,39340,39341,39342,39343,39344,39345,39346,39347,39348,39349,39350,39351,39352,39353,39354,39355,39356,39357,39358,39359,39360,39361,39362,39363,39364,39365,39366,39367,39368,39369,39370,39371,39372,39373,39374,39375,39376,39377,39378,39379,39380,39381,39382,39383,39384,39385,39386,39387,39388,39389,39390,39391,39392,39393,39394,39395,39396,39397,39398,39399,39400,39401,39402,39403,39404,39405,39406,39407,39408,39409,39410,39411,39412,39413,39414,39415,39416,39417,39418,39419,39420,39421,39422,39423,39424,39425,39426,39427,39428,39429,39430,39431,39432,39433,39434,39435,39436,39437,39438,39439,39440,39441,39442,39443,39444,39445,39446,39447,39448,39449,39450,39451,39452,39453,39454,39455,39456,39457,39458,39459,39460,39461,39462,39463,39464,39465,39466,39467,39468,39469,39470,39471,39472,39473,39474,39475,39476,39477,39478,39479,39480,39481,39482,39483,39484,39485,39486,39487,39488,39489,39490,39491,39492,39493,39494,39495,39496,39497,39498,39499,39500,39501,39502,39503,39504,39505,39506,39507,39508,39509,39510,39511,39512,39513,39514,39515,39516,39517,39518,39519,39520,39521,39522,39523,39524,39525,39526,39527,39528,39529,39530,39531,39532,39533,39534,39535,39536,39537,39538,39539,39540,39541,39542,39543,39544,39545,39546,39547,39548,39549,39550,39551,39552,39553,39554,39555,39556,39557,39558,39559,39560,39561,39562,39563,39564,39565,39566,39567,39568,39569,39570,39571,39572,39573,39574,39575,39576,39577,39578,39579,39580,39581,39582,39583,39584,39585,39586,39587,39588,39589,39590,39591,39592,39593,39594,39595,39596,39597,39598,39599,39600,39601,39602,39603,39604,39605,39606,39607,39608,39609,39610,39611,39612,39613,39614,39615,39616,39617,39618,39619,39620,39621,39622,39623,39624,39625,39626,39627,39628,39629,39630,39631,39632,39633,39634,39635,39636,39637,39638,39639,39640,39641,39642,39643,39644,39645,39646,39647,39648,39649,39650,39651,39652,39653,39654,39655,39656,39657,39658,39659,39660,39661,39662,39663,39664,39665,39666,39667,39668,39669,39670,39671,39672,39673,39674,39675,39676,39677,39678,39679,39680,39681,39682,39683,39684,39685,39686,39687,39688,39689,39690,39691,39692,39693,39694,39695,39696,39697,39698,39699,39700,39701,39702,39703,39704,39705,39706,39707,39708,39709,39710,39711,39712,39713,39714,39715,39716,39717,39718,39719,39720,39721,39722,39723,39724,39725,39726,39727,39728,39729,39730,39731,39732,39733,39734,39735,39736,39737,39738,39739,39740,39741,39742,39743,39744,39745,39746,39747,39748,39749,39750,39751,39752,39753,39754,39755,39756,39757,39758,39759,39760,39761,39762,39763,39764,39765,39766,39767,39768,39769,39770,39771,39772,39773,39774,39775,39776,39777,39778,39779,39780,39781,39782,39783,39784,39785,39786,39787,39788,39789,39790,39791,39792,39793,39794,39795,39796,39797,39798,39799,39800,39801,39802,39803,39804,39805,39806,39807,39808,39809,39810,39811,39812,39813,39814,39815,39816,39817,39818,39819,39820,39821,39822,39823,39824,39825,39826,39827,39828,39829,39830,39831,39832,39833,39834,39835,39836,39837,39838,39839,39840,39841,39842,39843,39844,39845,39846,39847,39848,39849,39850,39851,39852,39853,39854,39855,39856,39857,39858,39859,39860,39861,39862,39863,39864,39865,39866,39867,39868,39869,39870,39871,39872,39873,39874,39875,39876,39877,39878,39879,39880,39881,39882,39883,39884,39885,39886,39887,39888,39889,39890,39891,39892,39893,39894,39895,39896,39897,39898,39899,39900,39901,39902,39903,39904,39905,39906,39907,39908,39909,39910,39911,39912,39913,39914,39915,39916,39917,39918,39919,39920,39921,39922,39923,39924,39925,39926,39927,39928,39929,39930,39931,39932,39933,39934,39935,39936,39937,39938,39939,39940,39941,39942,39943,39944,39945,39946,39947,39948,39949,39950,39951,39952,39953,39954,39955,39956,39957,39958,39959,39960,39961,39962,39963,39964,39965,39966,39967,39968,39969,39970,39971,39972,39973,39974,39975,39976,39977,39978,39979,39980,39981,39982,39983,39984,39985,39986,39987,39988,39989,39990,39991,39992,39993,39994,39995,39996,39997,39998,39999,40000,40001,40002,40003,40004,40005,40006,40007,40008,40009,40010,40011,40012,40013,40014,40015,40016,40017,40018,40019,40020,40021,40022,40023,40024,40025,40026,40027,40028,40029,40030,40031,40032,40033,40034,40035,40036,40037,40038,40039,40040,40041,40042,40043,40044,40045,40046,40047,40048,40049,40050,40051,40052,40053,40054,40055,40056,40057,40058,40059,40060,40061,40062,40063,40064,40065,40066,40067,40068,40069,40070,40071,40072,40073,40074,40075,40076,40077,40078,40079,40080,40081,40082,40083,40084,40085,40086,40087,40088,40089,40090,40091,40092,40093,40094,40095,40096,40097,40098,40099,40100,40101,40102,40103,40104,40105,40106,40107,40108,40109,40110,40111,40112,40113,40114,40115,40116,40117,40118,40119,40120,40121,40122,40123,40124,40125,40126,40127,40128,40129,40130,40131,40132,40133,40134,40135,40136,40137,40138,40139,40140,40141,40142,40143,40144,40145,40146,40147,40148,40149,40150,40151,40152,40153,40154,40155,40156,40157,40158,40159,40160,40161,40162,40163,40164,40165,40166,40167,40168,40169,40170,40171,40172,40173,40174,40175,40176,40177,40178,40179,40180,40181,40182,40183,40184,40185,40186,40187,40188,40189,40190,40191,40192,40193,40194,40195,40196,40197,40198,40199,40200,40201,40202,40203,40204,40205,40206,40207,40208,40209,40210,40211,40212,40213,40214,40215,40216,40217,40218,40219,40220,40221,40222,40223,40224,40225,40226,40227,40228,40229,40230,40231,40232,40233,40234,40235,40236,40237,40238,40239,40240,40241,40242,40243,40244,40245,40246,40247,40248,40249,40250,40251,40252,40253,40254,40255,40256,40257,40258,40259,40260,40261,40262,40263,40264,40265,40266,40267,40268,40269,40270,40271,40272,40273,40274,40275,40276,40277,40278,40279,40280,40281,40282,40283,40284,40285,40286,40287,40288,40289,40290,40291,40292,40293,40294,40295,40296,40297,40298,40299,40300,40301,40302,40303,40304,40305,40306,40307,40308,40309,40310,40311,40312,40313,40314,40315,40316,40317,40318,40319,40320,40321,40322,40323,40324,40325,40326,40327,40328,40329,40330,40331,40332,40333,40334,40335,40336,40337,40338,40339,40340,40341,40342,40343,40344,40345,40346,40347,40348,40349,40350,40351,40352,40353,40354,40355,40356,40357,40358,40359,40360,40361,40362,40363,40364,40365,40366,40367,40368,40369,40370,40371,40372,40373,40374,40375,40376,40377,40378,40379,40380,40381,40382,40383,40384,40385,40386,40387,40388,40389,40390,40391,40392,40393,40394,40395,40396,40397,40398,40399,40400,40401,40402,40403,40404,40405,40406,40407,40408,40409,40410,40411,40412,40413,40414,40415,40416,40417,40418,40419,40420,40421,40422,40423,40424,40425,40426,40427,40428,40429,40430,40431,40432,40433,40434,40435,40436,40437,40438,40439,40440,40441,40442,40443,40444,40445,40446,40447,40448,40449,40450,40451,40452,40453,40454,40455,40456,40457,40458,40459,40460,40461,40462,40463,40464,40465,40466,40467,40468,40469,40470,40471,40472,40473,40474,40475,40476,40477,40478,40479,40480,40481,40482,40483,40484,40485,40486,40487,40488,40489,40490,40491,40492,40493,40494,40495,40496,40497,40498,40499,40500,40501,40502,40503,40504,40505,40506,40507,40508,40509,40510,40511,40512,40513,40514,40515,40516,40517,40518,40519,40520,40521,40522,40523,40524,40525,40526,40527,40528,40529,40530,40531,40532,40533,40534,40535,40536,40537,40538,40539,40540,40541,40542,40543,40544,40545,40546,40547,40548,40549,40550,40551,40552,40553,40554,40555,40556,40557,40558,40559,40560,40561,40562,40563,40564,40565,40566,40567,40568,40569,40570,40571,40572,40573,40574,40575,40576,40577,40578,40579,40580,40581,40582,40583,40584,40585,40586,40587,40588,40589,40590,40591,40592,40593,40594,40595,40596,40597,40598,40599,40600,40601,40602,40603,40604,40605,40606,40607,40608,40609,40610,40611,40612,40613,40614,40615,40616,40617,40618,40619,40620,40621,40622,40623,40624,40625,40626,40627,40628,40629,40630,40631,40632,40633,40634,40635,40636,40637,40638,40639,40640,40641,40642,40643,40644,40645,40646,40647,40648,40649,40650,40651,40652,40653,40654,40655,40656,40657,40658,40659,40660,40661,40662,40663,40664,40665,40666,40667,40668,40669,40670,40671,40672,40673,40674,40675,40676,40677,40678,40679,40680,40681,40682,40683,40684,40685,40686,40687,40688,40689,40690,40691,40692,40693,40694,40695,40696,40697,40698,40699,40700,40701,40702,40703,40704,40705,40706,40707,40708,40709,40710,40711,40712,40713,40714,40715,40716,40717,40718,40719,40720,40721,40722,40723,40724,40725,40726,40727,40728,40729,40730,40731,40732,40733,40734,40735,40736,40737,40738,40739,40740,40741,40742,40743,40744,40745,40746,40747,40748,40749,40750,40751,40752,40753,40754,40755,40756,40757,40758,40759,40760,40761,40762,40763,40764,40765,40766,40767,40768,40769,40770,40771,40772,40773,40774,40775,40776,40777,40778,40779,40780,40781,40782,40783,40784,40785,40786,40787,40788,40789,40790,40791,40792,40793,40794,40795,40796,40797,40798,40799,40800,40801,40802,40803,40804,40805,40806,40807,40808,40809,40810,40811,40812,40813,40814,40815,40816,40817,40818,40819,40820,40821,40822,40823,40824,40825,40826,40827,40828,40829,40830,40831,40832,40833,40834,40835,40836,40837,40838,40839,40840,40841,40842,40843,40844,40845,40846,40847,40848,40849,40850,40851,40852,40853,40854,40855,40856,40857,40858,40859,40860,40861,40862,40863,40864,40865,40866,40867,40868,40869,40870,40871,40872,40873,40874,40875,40876,40877,40878,40879,40880,40881,40882,40883,40884,40885,40886,40887,40888,40889,40890,40891,40892,40893,40894,40895,40896,40897,40898,40899,40900,40901,40902,40903,40904,40905,40906,40907,40908,40909,40910,40911,40912,40913,40914,40915,40916,40917,40918,40919,40920,40921,40922,40923,40924,40925,40926,40927,40928,40929,40930,40931,40932,40933,40934,40935,40936,40937,40938,40939,40940,40941,40942,40943,40944,40945,40946,40947,40948,40949,40950,40951,40952,40953,40954,40955,40956,40957,40958,40959,40960,40961,40962,40963,40964,40965,40966,40967,40968,40969,40970,40971,40972,40973,40974,40975,40976,40977,40978,40979,40980,40981,40982,40983,40984,40985,40986,40987,40988,40989,40990,40991,40992,40993,40994,40995,40996,40997,40998,40999,41000,41001,41002,41003,41004,41005,41006,41007,41008,41009,41010,41011,41012,41013,41014,41015,41016,41017,41018,41019,41020,41021,41022,41023,41024,41025,41026,41027,41028,41029,41030,41031,41032,41033,41034,41035,41036,41037,41038,41039,41040,41041,41042,41043,41044,41045,41046,41047,41048,41049,41050,41051,41052,41053,41054,41055,41056,41057,41058,41059,41060,41061,41062,41063,41064,41065,41066,41067,41068,41069,41070,41071,41072,41073,41074,41075,41076,41077,41078,41079,41080,41081,41082,41083,41084,41085,41086,41087,41088,41089,41090,41091,41092,41093,41094,41095,41096,41097,41098,41099,41100,41101,41102,41103,41104,41105,41106,41107,41108,41109,41110,41111,41112,41113,41114,41115,41116,41117,41118,41119,41120,41121,41122,41123,41124,41125,41126,41127,41128,41129,41130,41131,41132,41133,41134,41135,41136,41137,41138,41139,41140,41141,41142,41143,41144,41145,41146,41147,41148,41149,41150,41151,41152,41153,41154,41155,41156,41157,41158,41159,41160,41161,41162,41163,41164,41165,41166,41167,41168,41169,41170,41171,41172,41173,41174,41175,41176,41177,41178,41179,41180,41181,41182,41183,41184,41185,41186,41187,41188,41189,41190,41191,41192,41193,41194,41195,41196,41197,41198,41199,41200,41201,41202,41203,41204,41205,41206,41207,41208,41209,41210,41211,41212,41213,41214,41215,41216,41217,41218,41219,41220,41221,41222,41223,41224,41225,41226,41227,41228,41229,41230,41231,41232,41233,41234,41235,41236,41237,41238,41239,41240,41241,41242,41243,41244,41245,41246,41247,41248,41249,41250,41251,41252,41253,41254,41255,41256,41257,41258,41259,41260,41261,41262,41263,41264,41265,41266,41267,41268,41269,41270,41271,41272,41273,41274,41275,41276,41277,41278,41279,41280,41281,41282,41283,41284,41285,41286,41287,41288,41289,41290,41291,41292,41293,41294,41295,41296,41297,41298,41299,41300,41301,41302,41303,41304,41305,41306,41307,41308,41309,41310,41311,41312,41313,41314,41315,41316,41317,41318,41319,41320,41321,41322,41323,41324,41325,41326,41327,41328,41329,41330,41331,41332,41333,41334,41335,41336,41337,41338,41339,41340,41341,41342,41343,41344,41345,41346,41347,41348,41349,41350,41351,41352,41353,41354,41355,41356,41357,41358,41359,41360,41361,41362,41363,41364,41365,41366,41367,41368,41369,41370,41371,41372,41373,41374,41375,41376,41377,41378,41379,41380,41381,41382,41383,41384,41385,41386,41387,41388,41389,41390,41391,41392,41393,41394,41395,41396,41397,41398,41399,41400,41401,41402,41403,41404,41405,41406,41407,41408,41409,41410,41411,41412,41413,41414,41415,41416,41417,41418,41419,41420,41421,41422,41423,41424,41425,41426,41427,41428,41429,41430,41431,41432,41433,41434,41435,41436,41437,41438,41439,41440,41441,41442,41443,41444,41445,41446,41447,41448,41449,41450,41451,41452,41453,41454,41455,41456,41457,41458,41459,41460,41461,41462,41463,41464,41465,41466,41467,41468,41469,41470,41471,41472,41473,41474,41475,41476,41477,41478,41479,41480,41481,41482,41483,41484,41485,41486,41487,41488,41489,41490,41491,41492,41493,41494,41495,41496,41497,41498,41499,41500,41501,41502,41503,41504,41505,41506,41507,41508,41509,41510,41511,41512,41513,41514,41515,41516,41517,41518,41519,41520,41521,41522,41523,41524,41525,41526,41527,41528,41529,41530,41531,41532,41533,41534,41535,41536,41537,41538,41539,41540,41541,41542,41543,41544,41545,41546,41547,41548,41549,41550,41551,41552,41553,41554,41555,41556,41557,41558,41559,41560,41561,41562,41563,41564,41565,41566,41567,41568,41569,41570,41571,41572,41573,41574,41575,41576,41577,41578,41579,41580,41581,41582,41583,41584,41585,41586,41587,41588,41589,41590,41591,41592,41593,41594,41595,41596,41597,41598,41599,41600,41601,41602,41603,41604,41605,41606,41607,41608,41609,41610,41611,41612,41613,41614,41615,41616,41617,41618,41619,41620,41621,41622,41623,41624,41625,41626,41627,41628,41629,41630,41631,41632,41633,41634,41635,41636,41637,41638,41639,41640,41641,41642,41643,41644,41645,41646,41647,41648,41649,41650,41651,41652,41653,41654,41655,41656,41657,41658,41659,41660,41661,41662,41663,41664,41665,41666,41667,41668,41669,41670,41671,41672,41673,41674,41675,41676,41677,41678,41679,41680,41681,41682,41683,41684,41685,41686,41687,41688,41689,41690,41691,41692,41693,41694,41695,41696,41697,41698,41699,41700,41701,41702,41703,41704,41705,41706,41707,41708,41709,41710,41711,41712,41713,41714,41715,41716,41717,41718,41719,41720,41721,41722,41723,41724,41725,41726,41727,41728,41729,41730,41731,41732,41733,41734,41735,41736,41737,41738,41739,41740,41741,41742,41743,41744,41745,41746,41747,41748,41749,41750,41751,41752,41753,41754,41755,41756,41757,41758,41759,41760,41761,41762,41763,41764,41765,41766,41767,41768,41769,41770,41771,41772,41773,41774,41775,41776,41777,41778,41779,41780,41781,41782,41783,41784,41785,41786,41787,41788,41789,41790,41791,41792,41793,41794,41795,41796,41797,41798,41799,41800,41801,41802,41803,41804,41805,41806,41807,41808,41809,41810,41811,41812,41813,41814,41815,41816,41817,41818,41819,41820,41821,41822,41823,41824,41825,41826,41827,41828,41829,41830,41831,41832,41833,41834,41835,41836,41837,41838,41839,41840,41841,41842,41843,41844,41845,41846,41847,41848,41849,41850,41851,41852,41853,41854,41855,41856,41857,41858,41859,41860,41861,41862,41863,41864,41865,41866,41867,41868,41869,41870,41871,41872,41873,41874,41875,41876,41877,41878,41879,41880,41881,41882,41883,41884,41885,41886,41887,41888,41889,41890,41891,41892,41893,41894,41895,41896,41897,41898,41899,41900,41901,41902,41903,41904,41905,41906,41907,41908,41909,41910,41911,41912,41913,41914,41915,41916,41917,41918,41919,41920,41921,41922,41923,41924,41925,41926,41927,41928,41929,41930,41931,41932,41933,41934,41935,41936,41937,41938,41939,41940,41941,41942,41943,41944,41945,41946,41947,41948,41949,41950,41951,41952,41953,41954,41955,41956,41957,41958,41959,41960,41961,41962,41963,41964,41965,41966,41967,41968,41969,41970,41971,41972,41973,41974,41975,41976,41977,41978,41979,41980,41981,41982,41983,41984,41985,41986,41987,41988,41989,41990,41991,41992,41993,41994,41995,41996,41997,41998,41999,42000,42001,42002,42003,42004,42005,42006,42007,42008,42009,42010,42011,42012,42013,42014,42015,42016,42017,42018,42019,42020,42021,42022,42023,42024,42025,42026,42027,42028,42029,42030,42031,42032,42033,42034,42035,42036,42037,42038,42039,42040,42041,42042,42043,42044,42045,42046,42047,42048,42049,42050,42051,42052,42053,42054,42055,42056,42057,42058,42059,42060,42061,42062,42063,42064,42065,42066,42067,42068,42069,42070,42071,42072,42073,42074,42075,42076,42077,42078,42079,42080,42081,42082,42083,42084,42085,42086,42087,42088,42089,42090,42091,42092,42093,42094,42095,42096,42097,42098,42099,42100,42101,42102,42103,42104,42105,42106,42107,42108,42109,42110,42111,42112,42113,42114,42115,42116,42117,42118,42119,42120,42121,42122,42123,42124,42125,42126,42127,42128,42129,42130,42131,42132,42133,42134,42135,42136,42137,42138,42139,42140,42141,42142,42143,42144,42145,42146,42147,42148,42149,42150,42151,42152,42153,42154,42155,42156,42157,42158,42159,42160,42161,42162,42163,42164,42165,42166,42167,42168,42169,42170,42171,42172,42173,42174,42175,42176,42177,42178,42179,42180,42181,42182,42183,42184,42185,42186,42187,42188,42189,42190,42191,42192,42193,42194,42195,42196,42197,42198,42199,42200,42201,42202,42203,42204,42205,42206,42207,42208,42209,42210,42211,42212,42213,42214,42215,42216,42217,42218,42219,42220,42221,42222,42223,42224,42225,42226,42227,42228,42229,42230,42231,42232,42233,42234,42235,42236,42237,42238,42239,42240,42241,42242,42243,42244,42245,42246,42247,42248,42249,42250,42251,42252,42253,42254,42255,42256,42257,42258,42259,42260,42261,42262,42263,42264,42265,42266,42267,42268,42269,42270,42271,42272,42273,42274,42275,42276,42277,42278,42279,42280,42281,42282,42283,42284,42285,42286,42287,42288,42289,42290,42291,42292,42293,42294,42295,42296,42297,42298,42299,42300,42301,42302,42303,42304,42305,42306,42307,42308,42309,42310,42311,42312,42313,42314,42315,42316,42317,42318,42319,42320,42321,42322,42323,42324,42325,42326,42327,42328,42329,42330,42331,42332,42333,42334,42335,42336,42337,42338,42339,42340,42341,42342,42343,42344,42345,42346,42347,42348,42349,42350,42351,42352,42353,42354,42355,42356,42357,42358,42359,42360,42361,42362,42363,42364,42365,42366,42367,42368,42369,42370,42371,42372,42373,42374,42375,42376,42377,42378,42379,42380,42381,42382,42383,42384,42385,42386,42387,42388,42389,42390,42391,42392,42393,42394,42395,42396,42397,42398,42399,42400,42401,42402,42403,42404,42405,42406,42407,42408,42409,42410,42411,42412,42413,42414,42415,42416,42417,42418,42419,42420,42421,42422,42423,42424,42425,42426,42427,42428,42429,42430,42431,42432,42433,42434,42435,42436,42437,42438,42439,42440,42441,42442,42443,42444,42445,42446,42447,42448,42449,42450,42451,42452,42453,42454,42455,42456,42457,42458,42459,42460,42461,42462,42463,42464,42465,42466,42467,42468,42469,42470,42471,42472,42473,42474,42475,42476,42477,42478,42479,42480,42481,42482,42483,42484,42485,42486,42487,42488,42489,42490,42491,42492,42493,42494,42495,42496,42497,42498,42499,42500,42501,42502,42503,42504,42505,42506,42507,42508,42509,42510,42511,42512,42513,42514,42515,42516,42517,42518,42519,42520,42521,42522,42523,42524,42525,42526,42527,42528,42529,42530,42531,42532,42533,42534,42535,42536,42537,42538,42539,42540,42541,42542,42543,42544,42545,42546,42547,42548,42549,42550,42551,42552,42553,42554,42555,42556,42557,42558,42559,42560,42561,42562,42563,42564,42565,42566,42567,42568,42569,42570,42571,42572,42573,42574,42575,42576,42577,42578,42579,42580,42581,42582,42583,42584,42585,42586,42587,42588,42589,42590,42591,42592,42593,42594,42595,42596,42597,42598,42599,42600,42601,42602,42603,42604,42605,42606,42607,42608,42609,42610,42611,42612,42613,42614,42615,42616,42617,42618,42619,42620,42621,42622,42623,42624,42625,42626,42627,42628,42629,42630,42631,42632,42633,42634,42635,42636,42637,42638,42639,42640,42641,42642,42643,42644,42645,42646,42647,42648,42649,42650,42651,42652,42653,42654,42655,42656,42657,42658,42659,42660,42661,42662,42663,42664,42665,42666,42667,42668,42669,42670,42671,42672,42673,42674,42675,42676,42677,42678,42679,42680,42681,42682,42683,42684,42685,42686,42687,42688,42689,42690,42691,42692,42693,42694,42695,42696,42697,42698,42699,42700,42701,42702,42703,42704,42705,42706,42707,42708,42709,42710,42711,42712,42713,42714,42715,42716,42717,42718,42719,42720,42721,42722,42723,42724,42725,42726,42727,42728,42729,42730,42731,42732,42733,42734,42735,42736,42737,42738,42739,42740,42741,42742,42743,42744,42745,42746,42747,42748,42749,42750,42751,42752,42753,42754,42755,42756,42757,42758,42759,42760,42761,42762,42763,42764,42765,42766,42767,42768,42769,42770,42771,42772,42773,42774,42775,42776,42777,42778,42779,42780,42781,42782,42783,42784,42785,42786,42787,42788,42789,42790,42791,42792,42793,42794,42795,42796,42797,42798,42799,42800,42801,42802,42803,42804,42805,42806,42807,42808,42809,42810,42811,42812,42813,42814,42815,42816,42817,42818,42819,42820,42821,42822,42823,42824,42825,42826,42827,42828,42829,42830,42831,42832,42833,42834,42835,42836,42837,42838,42839,42840,42841,42842,42843,42844,42845,42846,42847,42848,42849,42850,42851,42852,42853,42854,42855,42856,42857,42858,42859,42860,42861,42862,42863,42864,42865,42866,42867,42868,42869,42870,42871,42872,42873,42874,42875,42876,42877,42878,42879,42880,42881,42882,42883,42884,42885,42886,42887,42888,42889,42890,42891,42892,42893,42894,42895,42896,42897,42898,42899,42900,42901,42902,42903,42904,42905,42906,42907,42908,42909,42910,42911,42912,42913,42914,42915,42916,42917,42918,42919,42920,42921,42922,42923,42924,42925,42926,42927,42928,42929,42930,42931,42932,42933,42934,42935,42936,42937,42938,42939,42940,42941,42942,42943,42944,42945,42946,42947,42948,42949,42950,42951,42952,42953,42954,42955,42956,42957,42958,42959,42960,42961,42962,42963,42964,42965,42966,42967,42968,42969,42970,42971,42972,42973,42974,42975,42976,42977,42978,42979,42980,42981,42982,42983,42984,42985,42986,42987,42988,42989,42990,42991,42992,42993,42994,42995,42996,42997,42998,42999,43000,43001,43002,43003,43004,43005,43006,43007,43008,43009,43010,43011,43012,43013,43014,43015,43016,43017,43018,43019,43020,43021,43022,43023,43024,43025,43026,43027,43028,43029,43030,43031,43032,43033,43034,43035,43036,43037,43038,43039,43040,43041,43042,43043,43044,43045,43046,43047,43048,43049,43050,43051,43052,43053,43054,43055,43056,43057,43058,43059,43060,43061,43062,43063,43064,43065,43066,43067,43068,43069,43070,43071,43072,43073,43074,43075,43076,43077,43078,43079,43080,43081,43082,43083,43084,43085,43086,43087,43088,43089,43090,43091,43092,43093,43094,43095,43096,43097,43098,43099,43100,43101,43102,43103,43104,43105,43106,43107,43108,43109,43110,43111,43112,43113,43114,43115,43116,43117,43118,43119,43120,43121,43122,43123,43124,43125,43126,43127,43128,43129,43130,43131,43132,43133,43134,43135,43136,43137,43138,43139,43140,43141,43142,43143,43144,43145,43146,43147,43148,43149,43150,43151,43152,43153,43154,43155,43156,43157,43158,43159,43160,43161,43162,43163,43164,43165,43166,43167,43168,43169,43170,43171,43172,43173,43174,43175,43176,43177,43178,43179,43180,43181,43182,43183,43184,43185,43186,43187,43188,43189,43190,43191,43192,43193,43194,43195,43196,43197,43198,43199,43200,43201,43202,43203,43204,43205,43206,43207,43208,43209,43210,43211,43212,43213,43214,43215,43216,43217,43218,43219,43220,43221,43222,43223,43224,43225,43226,43227,43228,43229,43230,43231,43232,43233,43234,43235,43236,43237,43238,43239,43240,43241,43242,43243,43244,43245,43246,43247,43248,43249,43250,43251,43252,43253,43254,43255,43256,43257,43258,43259,43260,43261,43262,43263,43264,43265,43266,43267,43268,43269,43270,43271,43272,43273,43274,43275,43276,43277,43278,43279,43280,43281,43282,43283,43284,43285,43286,43287,43288,43289,43290,43291,43292,43293,43294,43295,43296,43297,43298,43299,43300,43301,43302,43303,43304,43305,43306,43307,43308,43309,43310,43311,43312,43313,43314,43315,43316,43317,43318,43319,43320,43321,43322,43323,43324,43325,43326,43327,43328,43329,43330,43331,43332,43333,43334,43335,43336,43337,43338,43339,43340,43341,43342,43343,43344,43345,43346,43347,43348,43349,43350,43351,43352,43353,43354,43355,43356,43357,43358,43359,43360,43361,43362,43363,43364,43365,43366,43367,43368,43369,43370,43371,43372,43373,43374,43375,43376,43377,43378,43379,43380,43381,43382,43383,43384,43385,43386,43387,43388,43389,43390,43391,43392,43393,43394,43395,43396,43397,43398,43399,43400,43401,43402,43403,43404,43405,43406,43407,43408,43409,43410,43411,43412,43413,43414,43415,43416,43417,43418,43419,43420,43421,43422,43423,43424,43425,43426,43427,43428,43429,43430,43431,43432,43433,43434,43435,43436,43437,43438,43439,43440,43441,43442,43443,43444,43445,43446,43447,43448,43449,43450,43451,43452,43453,43454,43455,43456,43457,43458,43459,43460,43461,43462,43463,43464,43465,43466,43467,43468,43469,43470,43471,43472,43473,43474,43475,43476,43477,43478,43479,43480,43481,43482,43483,43484,43485,43486,43487,43488,43489,43490,43491,43492,43493,43494,43495,43496,43497,43498,43499,43500,43501,43502,43503,43504,43505,43506,43507,43508,43509,43510,43511,43512,43513,43514,43515,43516,43517,43518,43519,43520,43521,43522,43523,43524,43525,43526,43527,43528,43529,43530,43531,43532,43533,43534,43535,43536,43537,43538,43539,43540,43541,43542,43543,43544,43545,43546,43547,43548,43549,43550,43551,43552,43553,43554,43555,43556,43557,43558,43559,43560,43561,43562,43563,43564,43565,43566,43567,43568,43569,43570,43571,43572,43573,43574,43575,43576,43577,43578,43579,43580,43581,43582,43583,43584,43585,43586,43587,43588,43589,43590,43591,43592,43593,43594,43595,43596,43597,43598,43599,43600,43601,43602,43603,43604,43605,43606,43607,43608,43609,43610,43611,43612,43613,43614,43615,43616,43617,43618,43619,43620,43621,43622,43623,43624,43625,43626,43627,43628,43629,43630,43631,43632,43633,43634,43635,43636,43637,43638,43639,43640,43641,43642,43643,43644,43645,43646,43647,43648,43649,43650,43651,43652,43653,43654,43655,43656,43657,43658,43659,43660,43661,43662,43663,43664,43665,43666,43667,43668,43669,43670,43671,43672,43673,43674,43675,43676,43677,43678,43679,43680,43681,43682,43683,43684,43685,43686,43687,43688,43689,43690,43691,43692,43693,43694,43695,43696,43697,43698,43699,43700,43701,43702,43703,43704,43705,43706,43707,43708,43709,43710,43711,43712,43713,43714,43715,43716,43717,43718,43719,43720,43721,43722,43723,43724,43725,43726,43727,43728,43729,43730,43731,43732,43733,43734,43735,43736,43737,43738,43739,43740,43741,43742,43743,43744,43745,43746,43747,43748,43749,43750,43751,43752,43753,43754,43755,43756,43757,43758,43759,43760,43761,43762,43763,43764,43765,43766,43767,43768,43769,43770,43771,43772,43773,43774,43775,43776,43777,43778,43779,43780,43781,43782,43783,43784,43785,43786,43787,43788,43789,43790,43791,43792,43793,43794,43795,43796,43797,43798,43799,43800,43801,43802,43803,43804,43805,43806,43807,43808,43809,43810,43811,43812,43813,43814,43815,43816,43817,43818,43819,43820,43821,43822,43823,43824,43825,43826,43827,43828,43829,43830,43831,43832,43833,43834,43835,43836,43837,43838,43839,43840,43841,43842,43843,43844,43845,43846,43847,43848,43849,43850,43851,43852,43853,43854,43855,43856,43857,43858,43859,43860,43861,43862,43863,43864,43865,43866,43867,43868,43869,43870,43871,43872,43873,43874,43875,43876,43877,43878,43879,43880,43881,43882,43883,43884,43885,43886,43887,43888,43889,43890,43891,43892,43893,43894,43895,43896,43897,43898,43899,43900,43901,43902,43903,43904,43905,43906,43907,43908,43909,43910,43911,43912,43913,43914,43915,43916,43917,43918,43919,43920,43921,43922,43923,43924,43925,43926,43927,43928,43929,43930,43931,43932,43933,43934,43935,43936,43937,43938,43939,43940,43941,43942,43943,43944,43945,43946,43947,43948,43949,43950,43951,43952,43953,43954,43955,43956,43957,43958,43959,43960,43961,43962,43963,43964,43965,43966,43967,43968,43969,43970,43971,43972,43973,43974,43975,43976,43977,43978,43979,43980,43981,43982,43983,43984,43985,43986,43987,43988,43989,43990,43991,43992,43993,43994,43995,43996,43997,43998,43999,44000,44001,44002,44003,44004,44005,44006,44007,44008,44009,44010,44011,44012,44013,44014,44015,44016,44017,44018,44019,44020,44021,44022,44023,44024,44025,44026,44027,44028,44029,44030,44031,44032,44033,44034,44035,44036,44037,44038,44039,44040,44041,44042,44043,44044,44045,44046,44047,44048,44049,44050,44051,44052,44053,44054,44055,44056,44057,44058,44059,44060,44061,44062,44063,44064,44065,44066,44067,44068,44069,44070,44071,44072,44073,44074,44075,44076,44077,44078,44079,44080,44081,44082,44083,44084,44085,44086,44087,44088,44089,44090,44091,44092,44093,44094,44095,44096,44097,44098,44099,44100,44101,44102,44103,44104,44105,44106,44107,44108,44109,44110,44111,44112,44113,44114,44115,44116,44117,44118,44119,44120,44121,44122,44123,44124,44125,44126,44127,44128,44129,44130,44131,44132,44133,44134,44135,44136,44137,44138,44139,44140,44141,44142,44143,44144,44145,44146,44147,44148,44149,44150,44151,44152,44153,44154,44155,44156,44157,44158,44159,44160,44161,44162,44163,44164,44165,44166,44167,44168,44169,44170,44171,44172,44173,44174,44175,44176,44177,44178,44179,44180,44181,44182,44183,44184,44185,44186,44187,44188,44189,44190,44191,44192,44193,44194,44195,44196,44197,44198,44199,44200,44201,44202,44203,44204,44205,44206,44207,44208,44209,44210,44211,44212,44213,44214,44215,44216,44217,44218,44219,44220,44221,44222,44223,44224,44225,44226,44227,44228,44229,44230,44231,44232,44233,44234,44235,44236,44237,44238,44239,44240,44241,44242,44243,44244,44245,44246,44247,44248,44249,44250,44251,44252,44253,44254,44255,44256,44257,44258,44259,44260,44261,44262,44263,44264,44265,44266,44267,44268,44269,44270,44271,44272,44273,44274,44275,44276,44277,44278,44279,44280,44281,44282,44283,44284,44285,44286,44287,44288,44289,44290,44291,44292,44293,44294,44295,44296,44297,44298,44299,44300,44301,44302,44303,44304,44305,44306,44307,44308,44309,44310,44311,44312,44313,44314,44315,44316,44317,44318,44319,44320,44321,44322,44323,44324,44325,44326,44327,44328,44329,44330,44331,44332,44333,44334,44335,44336,44337,44338,44339,44340,44341,44342,44343,44344,44345,44346,44347,44348,44349,44350,44351,44352,44353,44354,44355,44356,44357,44358,44359,44360,44361,44362,44363,44364,44365,44366,44367,44368,44369,44370,44371,44372,44373,44374,44375,44376,44377,44378,44379,44380,44381,44382,44383,44384,44385,44386,44387,44388,44389,44390,44391,44392,44393,44394,44395,44396,44397,44398,44399,44400,44401,44402,44403,44404,44405,44406,44407,44408,44409,44410,44411,44412,44413,44414,44415,44416,44417,44418,44419,44420,44421,44422,44423,44424,44425,44426,44427,44428,44429,44430,44431,44432,44433,44434,44435,44436,44437,44438,44439,44440,44441,44442,44443,44444,44445,44446,44447,44448,44449,44450,44451,44452,44453,44454,44455,44456,44457,44458,44459,44460,44461,44462,44463,44464,44465,44466,44467,44468,44469,44470,44471,44472,44473,44474,44475,44476,44477,44478,44479,44480,44481,44482,44483,44484,44485,44486,44487,44488,44489,44490,44491,44492,44493,44494,44495,44496,44497,44498,44499,44500,44501,44502,44503,44504,44505,44506,44507,44508,44509,44510,44511,44512,44513,44514,44515,44516,44517,44518,44519,44520,44521,44522,44523,44524,44525,44526,44527,44528,44529,44530,44531,44532,44533,44534,44535,44536,44537,44538,44539,44540,44541,44542,44543,44544,44545,44546,44547,44548,44549,44550,44551,44552,44553,44554,44555,44556,44557,44558,44559,44560,44561,44562,44563,44564,44565,44566,44567,44568,44569,44570,44571,44572,44573,44574,44575,44576,44577,44578,44579,44580,44581,44582,44583,44584,44585,44586,44587,44588,44589,44590,44591,44592,44593,44594,44595,44596,44597,44598,44599,44600,44601,44602,44603,44604,44605,44606,44607,44608,44609,44610,44611,44612,44613,44614,44615,44616,44617,44618,44619,44620,44621,44622,44623,44624,44625,44626,44627,44628,44629,44630,44631,44632,44633,44634,44635,44636,44637,44638,44639,44640,44641,44642,44643,44644,44645,44646,44647,44648,44649,44650,44651,44652,44653,44654,44655,44656,44657,44658,44659,44660,44661,44662,44663,44664,44665,44666,44667,44668,44669,44670,44671,44672,44673,44674,44675,44676,44677,44678,44679,44680,44681,44682,44683,44684,44685,44686,44687,44688,44689,44690,44691,44692,44693,44694,44695,44696,44697,44698,44699,44700,44701,44702,44703,44704,44705,44706,44707,44708,44709,44710,44711,44712,44713,44714,44715,44716,44717,44718,44719,44720,44721,44722,44723,44724,44725,44726,44727,44728,44729,44730,44731,44732,44733,44734,44735,44736,44737,44738,44739,44740,44741,44742,44743,44744,44745,44746,44747,44748,44749,44750,44751,44752,44753,44754,44755,44756,44757,44758,44759,44760,44761,44762,44763,44764,44765,44766,44767,44768,44769,44770,44771,44772,44773,44774,44775,44776,44777,44778,44779,44780,44781,44782,44783,44784,44785,44786,44787,44788,44789,44790,44791,44792,44793,44794,44795,44796,44797,44798,44799,44800,44801,44802,44803,44804,44805,44806,44807,44808,44809,44810,44811,44812,44813,44814,44815,44816,44817,44818,44819,44820,44821,44822,44823,44824,44825,44826,44827,44828,44829,44830,44831,44832,44833,44834,44835,44836,44837,44838,44839,44840,44841,44842,44843,44844,44845,44846,44847,44848,44849,44850,44851,44852,44853,44854,44855,44856,44857,44858,44859,44860,44861,44862,44863,44864,44865,44866,44867,44868,44869,44870,44871,44872,44873,44874,44875,44876,44877,44878,44879,44880,44881,44882,44883,44884,44885,44886,44887,44888,44889,44890,44891,44892,44893,44894,44895,44896,44897,44898,44899,44900,44901,44902,44903,44904,44905,44906,44907,44908,44909,44910,44911,44912,44913,44914,44915,44916,44917,44918,44919,44920,44921,44922,44923,44924,44925,44926,44927,44928,44929,44930,44931,44932,44933,44934,44935,44936,44937,44938,44939,44940,44941,44942,44943,44944,44945,44946,44947,44948,44949,44950,44951,44952,44953,44954,44955,44956,44957,44958,44959,44960,44961,44962,44963,44964,44965,44966,44967,44968,44969,44970,44971,44972,44973,44974,44975,44976,44977,44978,44979,44980,44981,44982,44983,44984,44985,44986,44987,44988,44989,44990,44991,44992,44993,44994,44995,44996,44997,44998,44999,45000,45001,45002,45003,45004,45005,45006,45007,45008,45009,45010,45011,45012,45013,45014,45015,45016,45017,45018,45019,45020,45021,45022,45023,45024,45025,45026,45027,45028,45029,45030,45031,45032,45033,45034,45035,45036,45037,45038,45039,45040,45041,45042,45043,45044,45045,45046,45047,45048,45049,45050,45051,45052,45053,45054,45055,45056,45057,45058,45059,45060,45061,45062,45063,45064,45065,45066,45067,45068,45069,45070,45071,45072,45073,45074,45075,45076,45077,45078,45079,45080,45081,45082,45083,45084,45085,45086,45087,45088,45089,45090,45091,45092,45093,45094,45095,45096,45097,45098,45099,45100,45101,45102,45103,45104,45105,45106,45107,45108,45109,45110,45111,45112,45113,45114,45115,45116,45117,45118,45119,45120,45121,45122,45123,45124,45125,45126,45127,45128,45129,45130,45131,45132,45133,45134,45135,45136,45137,45138,45139,45140,45141,45142,45143,45144,45145,45146,45147,45148,45149,45150,45151,45152,45153,45154,45155,45156,45157,45158,45159,45160,45161,45162,45163,45164,45165,45166,45167,45168,45169,45170,45171,45172,45173,45174,45175,45176,45177,45178,45179,45180,45181,45182,45183,45184,45185,45186,45187,45188,45189,45190,45191,45192,45193,45194,45195,45196,45197,45198,45199,45200,45201,45202,45203,45204,45205,45206,45207,45208,45209,45210,45211,45212,45213,45214,45215,45216,45217,45218,45219,45220,45221,45222,45223,45224,45225,45226,45227,45228,45229,45230,45231,45232,45233,45234,45235,45236,45237,45238,45239,45240,45241,45242,45243,45244,45245,45246,45247,45248,45249,45250,45251,45252,45253,45254,45255,45256,45257,45258,45259,45260,45261,45262,45263,45264,45265,45266,45267,45268,45269,45270,45271,45272,45273,45274,45275,45276,45277,45278,45279,45280,45281,45282,45283,45284,45285,45286,45287,45288,45289,45290,45291,45292,45293,45294,45295,45296,45297,45298,45299,45300,45301,45302,45303,45304,45305,45306,45307,45308,45309,45310,45311,45312,45313,45314,45315,45316,45317,45318,45319,45320,45321,45322,45323,45324,45325,45326,45327,45328,45329,45330,45331,45332,45333,45334,45335,45336,45337,45338,45339,45340,45341,45342,45343,45344,45345,45346,45347,45348,45349,45350,45351,45352,45353,45354,45355,45356,45357,45358,45359,45360,45361,45362,45363,45364,45365,45366,45367,45368,45369,45370,45371,45372,45373,45374,45375,45376,45377,45378,45379,45380,45381,45382,45383,45384,45385,45386,45387,45388,45389,45390,45391,45392,45393,45394,45395,45396,45397,45398,45399,45400,45401,45402,45403,45404,45405,45406,45407,45408,45409,45410,45411,45412,45413,45414,45415,45416,45417,45418,45419,45420,45421,45422,45423,45424,45425,45426,45427,45428,45429,45430,45431,45432,45433,45434,45435,45436,45437,45438,45439,45440,45441,45442,45443,45444,45445,45446,45447,45448,45449,45450,45451,45452,45453,45454,45455,45456,45457,45458,45459,45460,45461,45462,45463,45464,45465,45466,45467,45468,45469,45470,45471,45472,45473,45474,45475,45476,45477,45478,45479,45480,45481,45482,45483,45484,45485,45486,45487,45488,45489,45490,45491,45492,45493,45494,45495,45496,45497,45498,45499,45500,45501,45502,45503,45504,45505,45506,45507,45508,45509,45510,45511,45512,45513,45514,45515,45516,45517,45518,45519,45520,45521,45522,45523,45524,45525,45526,45527,45528,45529,45530,45531,45532,45533,45534,45535,45536,45537,45538,45539,45540,45541,45542,45543,45544,45545,45546,45547,45548,45549,45550,45551,45552,45553,45554,45555,45556,45557,45558,45559,45560,45561,45562,45563,45564,45565,45566,45567,45568,45569,45570,45571,45572,45573,45574,45575,45576,45577,45578,45579,45580,45581,45582,45583,45584,45585,45586,45587,45588,45589,45590,45591,45592,45593,45594,45595,45596,45597,45598,45599,45600,45601,45602,45603,45604,45605,45606,45607,45608,45609,45610,45611,45612,45613,45614,45615,45616,45617,45618,45619,45620,45621,45622,45623,45624,45625,45626,45627,45628,45629,45630,45631,45632,45633,45634,45635,45636,45637,45638,45639,45640,45641,45642,45643,45644,45645,45646,45647,45648,45649,45650,45651,45652,45653,45654,45655,45656,45657,45658,45659,45660,45661,45662,45663,45664,45665,45666,45667,45668,45669,45670,45671,45672,45673,45674,45675,45676,45677,45678,45679,45680,45681,45682,45683,45684,45685,45686,45687,45688,45689,45690,45691,45692,45693,45694,45695,45696,45697,45698,45699,45700,45701,45702,45703,45704,45705,45706,45707,45708,45709,45710,45711,45712,45713,45714,45715,45716,45717,45718,45719,45720,45721,45722,45723,45724,45725,45726,45727,45728,45729,45730,45731,45732,45733,45734,45735,45736,45737,45738,45739,45740,45741,45742,45743,45744,45745,45746,45747,45748,45749,45750,45751,45752,45753,45754,45755,45756,45757,45758,45759,45760,45761,45762,45763,45764,45765,45766,45767,45768,45769,45770,45771,45772,45773,45774,45775,45776,45777,45778,45779,45780,45781,45782,45783,45784,45785,45786,45787,45788,45789,45790,45791,45792,45793,45794,45795,45796,45797,45798,45799,45800,45801,45802,45803,45804,45805,45806,45807,45808,45809,45810,45811,45812,45813,45814,45815,45816,45817,45818,45819,45820,45821,45822,45823,45824,45825,45826,45827,45828,45829,45830,45831,45832,45833,45834,45835,45836,45837,45838,45839,45840,45841,45842,45843,45844,45845,45846,45847,45848,45849,45850,45851,45852,45853,45854,45855,45856,45857,45858,45859,45860,45861,45862,45863,45864,45865,45866,45867,45868,45869,45870,45871,45872,45873,45874,45875,45876,45877,45878,45879,45880,45881,45882,45883,45884,45885,45886,45887,45888,45889,45890,45891,45892,45893,45894,45895,45896,45897,45898,45899,45900,45901,45902,45903,45904,45905,45906,45907,45908,45909,45910,45911,45912,45913,45914,45915,45916,45917,45918,45919,45920,45921,45922,45923,45924,45925,45926,45927,45928,45929,45930,45931,45932,45933,45934,45935,45936,45937,45938,45939,45940,45941,45942,45943,45944,45945,45946,45947,45948,45949,45950,45951,45952,45953,45954,45955,45956,45957,45958,45959,45960,45961,45962,45963,45964,45965,45966,45967,45968,45969,45970,45971,45972,45973,45974,45975,45976,45977,45978,45979,45980,45981,45982,45983,45984,45985,45986,45987,45988,45989,45990,45991,45992,45993,45994,45995,45996,45997,45998,45999,46000,46001,46002,46003,46004,46005,46006,46007,46008,46009,46010,46011,46012,46013,46014,46015,46016,46017,46018,46019,46020,46021,46022,46023,46024,46025,46026,46027,46028,46029,46030,46031,46032,46033,46034,46035,46036,46037,46038,46039,46040,46041,46042,46043,46044,46045,46046,46047,46048,46049,46050,46051,46052,46053,46054,46055,46056,46057,46058,46059,46060,46061,46062,46063,46064,46065,46066,46067,46068,46069,46070,46071,46072,46073,46074,46075,46076,46077,46078,46079,46080,46081,46082,46083,46084,46085,46086,46087,46088,46089,46090,46091,46092,46093,46094,46095,46096,46097,46098,46099,46100,46101,46102,46103,46104,46105,46106,46107,46108,46109,46110,46111,46112,46113,46114,46115,46116,46117,46118,46119,46120,46121,46122,46123,46124,46125,46126,46127,46128,46129,46130,46131,46132,46133,46134,46135,46136,46137,46138,46139,46140,46141,46142,46143,46144,46145,46146,46147,46148,46149,46150,46151,46152,46153,46154,46155,46156,46157,46158,46159,46160,46161,46162,46163,46164,46165,46166,46167,46168,46169,46170,46171,46172,46173,46174,46175,46176,46177,46178,46179,46180,46181,46182,46183,46184,46185,46186,46187,46188,46189,46190,46191,46192,46193,46194,46195,46196,46197,46198,46199,46200,46201,46202,46203,46204,46205,46206,46207,46208,46209,46210,46211,46212,46213,46214,46215,46216,46217,46218,46219,46220,46221,46222,46223,46224,46225,46226,46227,46228,46229,46230,46231,46232,46233,46234,46235,46236,46237,46238,46239,46240,46241,46242,46243,46244,46245,46246,46247,46248,46249,46250,46251,46252,46253,46254,46255,46256,46257,46258,46259,46260,46261,46262,46263,46264,46265,46266,46267,46268,46269,46270,46271,46272,46273,46274,46275,46276,46277,46278,46279,46280,46281,46282,46283,46284,46285,46286,46287,46288,46289,46290,46291,46292,46293,46294,46295,46296,46297,46298,46299,46300,46301,46302,46303,46304,46305,46306,46307,46308,46309,46310,46311,46312,46313,46314,46315,46316,46317,46318,46319,46320,46321,46322,46323,46324,46325,46326,46327,46328,46329,46330,46331,46332,46333,46334,46335,46336,46337,46338,46339,46340,46341,46342,46343,46344,46345,46346,46347,46348,46349,46350,46351,46352,46353,46354,46355,46356,46357,46358,46359,46360,46361,46362,46363,46364,46365,46366,46367,46368,46369,46370,46371,46372,46373,46374,46375,46376,46377,46378,46379,46380,46381,46382,46383,46384,46385,46386,46387,46388,46389,46390,46391,46392,46393,46394,46395,46396,46397,46398,46399,46400,46401,46402,46403,46404,46405,46406,46407,46408,46409,46410,46411,46412,46413,46414,46415,46416,46417,46418,46419,46420,46421,46422,46423,46424,46425,46426,46427,46428,46429,46430,46431,46432,46433,46434,46435,46436,46437,46438,46439,46440,46441,46442,46443,46444,46445,46446,46447,46448,46449,46450,46451,46452,46453,46454,46455,46456,46457,46458,46459,46460,46461,46462,46463,46464,46465,46466,46467,46468,46469,46470,46471,46472,46473,46474,46475,46476,46477,46478,46479,46480,46481,46482,46483,46484,46485,46486,46487,46488,46489,46490,46491,46492,46493,46494,46495,46496,46497,46498,46499,46500,46501,46502,46503,46504,46505,46506,46507,46508,46509,46510,46511,46512,46513,46514,46515,46516,46517,46518,46519,46520,46521,46522,46523,46524,46525,46526,46527,46528,46529,46530,46531,46532,46533,46534,46535,46536,46537,46538,46539,46540,46541,46542,46543,46544,46545,46546,46547,46548,46549,46550,46551,46552,46553,46554,46555,46556,46557,46558,46559,46560,46561,46562,46563,46564,46565,46566,46567,46568,46569,46570,46571,46572,46573,46574,46575,46576,46577,46578,46579,46580,46581,46582,46583,46584,46585,46586,46587,46588,46589,46590,46591,46592,46593,46594,46595,46596,46597,46598,46599,46600,46601,46602,46603,46604,46605,46606,46607,46608,46609,46610,46611,46612,46613,46614,46615,46616,46617,46618,46619,46620,46621,46622,46623,46624,46625,46626,46627,46628,46629,46630,46631,46632,46633,46634,46635,46636,46637,46638,46639,46640,46641,46642,46643,46644,46645,46646,46647,46648,46649,46650,46651,46652,46653,46654,46655,46656,46657,46658,46659,46660,46661,46662,46663,46664,46665,46666,46667,46668,46669,46670,46671,46672,46673,46674,46675,46676,46677,46678,46679,46680,46681,46682,46683,46684,46685,46686,46687,46688,46689,46690,46691,46692,46693,46694,46695,46696,46697,46698,46699,46700,46701,46702,46703,46704,46705,46706,46707,46708,46709,46710,46711,46712,46713,46714,46715,46716,46717,46718,46719,46720,46721,46722,46723,46724,46725,46726,46727,46728,46729,46730,46731,46732,46733,46734,46735,46736,46737,46738,46739,46740,46741,46742,46743,46744,46745,46746,46747,46748,46749,46750,46751,46752,46753,46754,46755,46756,46757,46758,46759,46760,46761,46762,46763,46764,46765,46766,46767,46768,46769,46770,46771,46772,46773,46774,46775,46776,46777,46778,46779,46780,46781,46782,46783,46784,46785,46786,46787,46788,46789,46790,46791,46792,46793,46794,46795,46796,46797,46798,46799,46800,46801,46802,46803,46804,46805,46806,46807,46808,46809,46810,46811,46812,46813,46814,46815,46816,46817,46818,46819,46820,46821,46822,46823,46824,46825,46826,46827,46828,46829,46830,46831,46832,46833,46834,46835,46836,46837,46838,46839,46840,46841,46842,46843,46844,46845,46846,46847,46848,46849,46850,46851,46852,46853,46854,46855,46856,46857,46858,46859,46860,46861,46862,46863,46864,46865,46866,46867,46868,46869,46870,46871,46872,46873,46874,46875,46876,46877,46878,46879,46880,46881,46882,46883,46884,46885,46886,46887,46888,46889,46890,46891,46892,46893,46894,46895,46896,46897,46898,46899,46900,46901,46902,46903,46904,46905,46906,46907,46908,46909,46910,46911,46912,46913,46914,46915,46916,46917,46918,46919,46920,46921,46922,46923,46924,46925,46926,46927,46928,46929,46930,46931,46932,46933,46934,46935,46936,46937,46938,46939,46940,46941,46942,46943,46944,46945,46946,46947,46948,46949,46950,46951,46952,46953,46954,46955,46956,46957,46958,46959,46960,46961,46962,46963,46964,46965,46966,46967,46968,46969,46970,46971,46972,46973,46974,46975,46976,46977,46978,46979,46980,46981,46982,46983,46984,46985,46986,46987,46988,46989,46990,46991,46992,46993,46994,46995,46996,46997,46998,46999,47000,47001,47002,47003,47004,47005,47006,47007,47008,47009,47010,47011,47012,47013,47014,47015,47016,47017,47018,47019,47020,47021,47022,47023,47024,47025,47026,47027,47028,47029,47030,47031,47032,47033,47034,47035,47036,47037,47038,47039,47040,47041,47042,47043,47044,47045,47046,47047,47048,47049,47050,47051,47052,47053,47054,47055,47056,47057,47058,47059,47060,47061,47062,47063,47064,47065,47066,47067,47068,47069,47070,47071,47072,47073,47074,47075,47076,47077,47078,47079,47080,47081,47082,47083,47084,47085,47086,47087,47088,47089,47090,47091,47092,47093,47094,47095,47096,47097,47098,47099,47100,47101,47102,47103,47104,47105,47106,47107,47108,47109,47110,47111,47112,47113,47114,47115,47116,47117,47118,47119,47120,47121,47122,47123,47124,47125,47126,47127,47128,47129,47130,47131,47132,47133,47134,47135,47136,47137,47138,47139,47140,47141,47142,47143,47144,47145,47146,47147,47148,47149,47150,47151,47152,47153,47154,47155,47156,47157,47158,47159,47160,47161,47162,47163,47164,47165,47166,47167,47168,47169,47170,47171,47172,47173,47174,47175,47176,47177,47178,47179,47180,47181,47182,47183,47184,47185,47186,47187,47188,47189,47190,47191,47192,47193,47194,47195,47196,47197,47198,47199,47200,47201,47202,47203,47204,47205,47206,47207,47208,47209,47210,47211,47212,47213,47214,47215,47216,47217,47218,47219,47220,47221,47222,47223,47224,47225,47226,47227,47228,47229,47230,47231,47232,47233,47234,47235,47236,47237,47238,47239,47240,47241,47242,47243,47244,47245,47246,47247,47248,47249,47250,47251,47252,47253,47254,47255,47256,47257,47258,47259,47260,47261,47262,47263,47264,47265,47266,47267,47268,47269,47270,47271,47272,47273,47274,47275,47276,47277,47278,47279,47280,47281,47282,47283,47284,47285,47286,47287,47288,47289,47290,47291,47292,47293,47294,47295,47296,47297,47298,47299,47300,47301,47302,47303,47304,47305,47306,47307,47308,47309,47310,47311,47312,47313,47314,47315,47316,47317,47318,47319,47320,47321,47322,47323,47324,47325,47326,47327,47328,47329,47330,47331,47332,47333,47334,47335,47336,47337,47338,47339,47340,47341,47342,47343,47344,47345,47346,47347,47348,47349,47350,47351,47352,47353,47354,47355,47356,47357,47358,47359,47360,47361,47362,47363,47364,47365,47366,47367,47368,47369,47370,47371,47372,47373,47374,47375,47376,47377,47378,47379,47380,47381,47382,47383,47384,47385,47386,47387,47388,47389,47390,47391,47392,47393,47394,47395,47396,47397,47398,47399,47400,47401,47402,47403,47404,47405,47406,47407,47408,47409,47410,47411,47412,47413,47414,47415,47416,47417,47418,47419,47420,47421,47422,47423,47424,47425,47426,47427,47428,47429,47430,47431,47432,47433,47434,47435,47436,47437,47438,47439,47440,47441,47442,47443,47444,47445,47446,47447,47448,47449,47450,47451,47452,47453,47454,47455,47456,47457,47458,47459,47460,47461,47462,47463,47464,47465,47466,47467,47468,47469,47470,47471,47472,47473,47474,47475,47476,47477,47478,47479,47480,47481,47482,47483,47484,47485,47486,47487,47488,47489,47490,47491,47492,47493,47494,47495,47496,47497,47498,47499,47500,47501,47502,47503,47504,47505,47506,47507,47508,47509,47510,47511,47512,47513,47514,47515,47516,47517,47518,47519,47520,47521,47522,47523,47524,47525,47526,47527,47528,47529,47530,47531,47532,47533,47534,47535,47536,47537,47538,47539,47540,47541,47542,47543,47544,47545,47546,47547,47548,47549,47550,47551,47552,47553,47554,47555,47556,47557,47558,47559,47560,47561,47562,47563,47564,47565,47566,47567,47568,47569,47570,47571,47572,47573,47574,47575,47576,47577,47578,47579,47580,47581,47582,47583,47584,47585,47586,47587,47588,47589,47590,47591,47592,47593,47594,47595,47596,47597,47598,47599,47600,47601,47602,47603,47604,47605,47606,47607,47608,47609,47610,47611,47612,47613,47614,47615,47616,47617,47618,47619,47620,47621,47622,47623,47624,47625,47626,47627,47628,47629,47630,47631,47632,47633,47634,47635,47636,47637,47638,47639,47640,47641,47642,47643,47644,47645,47646,47647,47648,47649,47650,47651,47652,47653,47654,47655,47656,47657,47658,47659,47660,47661,47662,47663,47664,47665,47666,47667,47668,47669,47670,47671,47672,47673,47674,47675,47676,47677,47678,47679,47680,47681,47682,47683,47684,47685,47686,47687,47688,47689,47690,47691,47692,47693,47694,47695,47696,47697,47698,47699,47700,47701,47702,47703,47704,47705,47706,47707,47708,47709,47710,47711,47712,47713,47714,47715,47716,47717,47718,47719,47720,47721,47722,47723,47724,47725,47726,47727,47728,47729,47730,47731,47732,47733,47734,47735,47736,47737,47738,47739,47740,47741,47742,47743,47744,47745,47746,47747,47748,47749,47750,47751,47752,47753,47754,47755,47756,47757,47758,47759,47760,47761,47762,47763,47764,47765,47766,47767,47768,47769,47770,47771,47772,47773,47774,47775,47776,47777,47778,47779,47780,47781,47782,47783,47784,47785,47786,47787,47788,47789,47790,47791,47792,47793,47794,47795,47796,47797,47798,47799,47800,47801,47802,47803,47804,47805,47806,47807,47808,47809,47810,47811,47812,47813,47814,47815,47816,47817,47818,47819,47820,47821,47822,47823,47824,47825,47826,47827,47828,47829,47830,47831,47832,47833,47834,47835,47836,47837,47838,47839,47840,47841,47842,47843,47844,47845,47846,47847,47848,47849,47850,47851,47852,47853,47854,47855,47856,47857,47858,47859,47860,47861,47862,47863,47864,47865,47866,47867,47868,47869,47870,47871,47872,47873,47874,47875,47876,47877,47878,47879,47880,47881,47882,47883,47884,47885,47886,47887,47888,47889,47890,47891,47892,47893,47894,47895,47896,47897,47898,47899,47900,47901,47902,47903,47904,47905,47906,47907,47908,47909,47910,47911,47912,47913,47914,47915,47916,47917,47918,47919,47920,47921,47922,47923,47924,47925,47926,47927,47928,47929,47930,47931,47932,47933,47934,47935,47936,47937,47938,47939,47940,47941,47942,47943,47944,47945,47946,47947,47948,47949,47950,47951,47952,47953,47954,47955,47956,47957,47958,47959,47960,47961,47962,47963,47964,47965,47966,47967,47968,47969,47970,47971,47972,47973,47974,47975,47976,47977,47978,47979,47980,47981,47982,47983,47984,47985,47986,47987,47988,47989,47990,47991,47992,47993,47994,47995,47996,47997,47998,47999,48000,48001,48002,48003,48004,48005,48006,48007,48008,48009,48010,48011,48012,48013,48014,48015,48016,48017,48018,48019,48020,48021,48022,48023,48024,48025,48026,48027,48028,48029,48030,48031,48032,48033,48034,48035,48036,48037,48038,48039,48040,48041,48042,48043,48044,48045,48046,48047,48048,48049,48050,48051,48052,48053,48054,48055,48056,48057,48058,48059,48060,48061,48062,48063,48064,48065,48066,48067,48068,48069,48070,48071,48072,48073,48074,48075,48076,48077,48078,48079,48080,48081,48082,48083,48084,48085,48086,48087,48088,48089,48090,48091,48092,48093,48094,48095,48096,48097,48098,48099,48100,48101,48102,48103,48104,48105,48106,48107,48108,48109,48110,48111,48112,48113,48114,48115,48116,48117,48118,48119,48120,48121,48122,48123,48124,48125,48126,48127,48128,48129,48130,48131,48132,48133,48134,48135,48136,48137,48138,48139,48140,48141,48142,48143,48144,48145,48146,48147,48148,48149,48150,48151,48152,48153,48154,48155,48156,48157,48158,48159,48160,48161,48162,48163,48164,48165,48166,48167,48168,48169,48170,48171,48172,48173,48174,48175,48176,48177,48178,48179,48180,48181,48182,48183,48184,48185,48186,48187,48188,48189,48190,48191,48192,48193,48194,48195,48196,48197,48198,48199,48200,48201,48202,48203,48204,48205,48206,48207,48208,48209,48210,48211,48212,48213,48214,48215,48216,48217,48218,48219,48220,48221,48222,48223,48224,48225,48226,48227,48228,48229,48230,48231,48232,48233,48234,48235,48236,48237,48238,48239,48240,48241,48242,48243,48244,48245,48246,48247,48248,48249,48250,48251,48252,48253,48254,48255,48256,48257,48258,48259,48260,48261,48262,48263,48264,48265,48266,48267,48268,48269,48270,48271,48272,48273,48274,48275,48276,48277,48278,48279,48280,48281,48282,48283,48284,48285,48286,48287,48288,48289,48290,48291,48292,48293,48294,48295,48296,48297,48298,48299,48300,48301,48302,48303,48304,48305,48306,48307,48308,48309,48310,48311,48312,48313,48314,48315,48316,48317,48318,48319,48320,48321,48322,48323,48324,48325,48326,48327,48328,48329,48330,48331,48332,48333,48334,48335,48336,48337,48338,48339,48340,48341,48342,48343,48344,48345,48346,48347,48348,48349,48350,48351,48352,48353,48354,48355,48356,48357,48358,48359,48360,48361,48362,48363,48364,48365,48366,48367,48368,48369,48370,48371,48372,48373,48374,48375,48376,48377,48378,48379,48380,48381,48382,48383,48384,48385,48386,48387,48388,48389,48390,48391,48392,48393,48394,48395,48396,48397,48398,48399,48400,48401,48402,48403,48404,48405,48406,48407,48408,48409,48410,48411,48412,48413,48414,48415,48416,48417,48418,48419,48420,48421,48422,48423,48424,48425,48426,48427,48428,48429,48430,48431,48432,48433,48434,48435,48436,48437,48438,48439,48440,48441,48442,48443,48444,48445,48446,48447,48448,48449,48450,48451,48452,48453,48454,48455,48456,48457,48458,48459,48460,48461,48462,48463,48464,48465,48466,48467,48468,48469,48470,48471,48472,48473,48474,48475,48476,48477,48478,48479,48480,48481,48482,48483,48484,48485,48486,48487,48488,48489,48490,48491,48492,48493,48494,48495,48496,48497,48498,48499,48500,48501,48502,48503,48504,48505,48506,48507,48508,48509,48510,48511,48512,48513,48514,48515,48516,48517,48518,48519,48520,48521,48522,48523,48524,48525,48526,48527,48528,48529,48530,48531,48532,48533,48534,48535,48536,48537,48538,48539,48540,48541,48542,48543,48544,48545,48546,48547,48548,48549,48550,48551,48552,48553,48554,48555,48556,48557,48558,48559,48560,48561,48562,48563,48564,48565,48566,48567,48568,48569,48570,48571,48572,48573,48574,48575,48576,48577,48578,48579,48580,48581,48582,48583,48584,48585,48586,48587,48588,48589,48590,48591,48592,48593,48594,48595,48596,48597,48598,48599,48600,48601,48602,48603,48604,48605,48606,48607,48608,48609,48610,48611,48612,48613,48614,48615,48616,48617,48618,48619,48620,48621,48622,48623,48624,48625,48626,48627,48628,48629,48630,48631,48632,48633,48634,48635,48636,48637,48638,48639,48640,48641,48642,48643,48644,48645,48646,48647,48648,48649,48650,48651,48652,48653,48654,48655,48656,48657,48658,48659,48660,48661,48662,48663,48664,48665,48666,48667,48668,48669,48670,48671,48672,48673,48674,48675,48676,48677,48678,48679,48680,48681,48682,48683,48684,48685,48686,48687,48688,48689,48690,48691,48692,48693,48694,48695,48696,48697,48698,48699,48700,48701,48702,48703,48704,48705,48706,48707,48708,48709,48710,48711,48712,48713,48714,48715,48716,48717,48718,48719,48720,48721,48722,48723,48724,48725,48726,48727,48728,48729,48730,48731,48732,48733,48734,48735,48736,48737,48738,48739,48740,48741,48742,48743,48744,48745,48746,48747,48748,48749,48750,48751,48752,48753,48754,48755,48756,48757,48758,48759,48760,48761,48762,48763,48764,48765,48766,48767,48768,48769,48770,48771,48772,48773,48774,48775,48776,48777,48778,48779,48780,48781,48782,48783,48784,48785,48786,48787,48788,48789,48790,48791,48792,48793,48794,48795,48796,48797,48798,48799,48800,48801,48802,48803,48804,48805,48806,48807,48808,48809,48810,48811,48812,48813,48814,48815,48816,48817,48818,48819,48820,48821,48822,48823,48824,48825,48826,48827,48828,48829,48830,48831,48832,48833,48834,48835,48836,48837,48838,48839,48840,48841,48842,48843,48844,48845,48846,48847,48848,48849,48850,48851,48852,48853,48854,48855,48856,48857,48858,48859,48860,48861,48862,48863,48864,48865,48866,48867,48868,48869,48870,48871,48872,48873,48874,48875,48876,48877,48878,48879,48880,48881,48882,48883,48884,48885,48886,48887,48888,48889,48890,48891,48892,48893,48894,48895,48896,48897,48898,48899,48900,48901,48902,48903,48904,48905,48906,48907,48908,48909,48910,48911,48912,48913,48914,48915,48916,48917,48918,48919,48920,48921,48922,48923,48924,48925,48926,48927,48928,48929,48930,48931,48932,48933,48934,48935,48936,48937,48938,48939,48940,48941,48942,48943,48944,48945,48946,48947,48948,48949,48950,48951,48952,48953,48954,48955,48956,48957,48958,48959,48960,48961,48962,48963,48964,48965,48966,48967,48968,48969,48970,48971,48972,48973,48974,48975,48976,48977,48978,48979,48980,48981,48982,48983,48984,48985,48986,48987,48988,48989,48990,48991,48992,48993,48994,48995,48996,48997,48998,48999,49000,49001,49002,49003,49004,49005,49006,49007,49008,49009,49010,49011,49012,49013,49014,49015,49016,49017,49018,49019,49020,49021,49022,49023,49024,49025,49026,49027,49028,49029,49030,49031,49032,49033,49034,49035,49036,49037,49038,49039,49040,49041,49042,49043,49044,49045,49046,49047,49048,49049,49050,49051,49052,49053,49054,49055,49056,49057,49058,49059,49060,49061,49062,49063,49064,49065,49066,49067,49068,49069,49070,49071,49072,49073,49074,49075,49076,49077,49078,49079,49080,49081,49082,49083,49084,49085,49086,49087,49088,49089,49090,49091,49092,49093,49094,49095,49096,49097,49098,49099,49100,49101,49102,49103,49104,49105,49106,49107,49108,49109,49110,49111,49112,49113,49114,49115,49116,49117,49118,49119,49120,49121,49122,49123,49124,49125,49126,49127,49128,49129,49130,49131,49132,49133,49134,49135,49136,49137,49138,49139,49140,49141,49142,49143,49144,49145,49146,49147,49148,49149,49150,49151,49152,49153,49154,49155,49156,49157,49158,49159,49160,49161,49162,49163,49164,49165,49166,49167,49168,49169,49170,49171,49172,49173,49174,49175,49176,49177,49178,49179,49180,49181,49182,49183,49184,49185,49186,49187,49188,49189,49190,49191,49192,49193,49194,49195,49196,49197,49198,49199,49200,49201,49202,49203,49204,49205,49206,49207,49208,49209,49210,49211,49212,49213,49214,49215,49216,49217,49218,49219,49220,49221,49222,49223,49224,49225,49226,49227,49228,49229,49230,49231,49232,49233,49234,49235,49236,49237,49238,49239,49240,49241,49242,49243,49244,49245,49246,49247,49248,49249,49250,49251,49252,49253,49254,49255,49256,49257,49258,49259,49260,49261,49262,49263,49264,49265,49266,49267,49268,49269,49270,49271,49272,49273,49274,49275,49276,49277,49278,49279,49280,49281,49282,49283,49284,49285,49286,49287,49288,49289,49290,49291,49292,49293,49294,49295,49296,49297,49298,49299,49300,49301,49302,49303,49304,49305,49306,49307,49308,49309,49310,49311,49312,49313,49314,49315,49316,49317,49318,49319,49320,49321,49322,49323,49324,49325,49326,49327,49328,49329,49330,49331,49332,49333,49334,49335,49336,49337,49338,49339,49340,49341,49342,49343,49344,49345,49346,49347,49348,49349,49350,49351,49352,49353,49354,49355,49356,49357,49358,49359,49360,49361,49362,49363,49364,49365,49366,49367,49368,49369,49370,49371,49372,49373,49374,49375,49376,49377,49378,49379,49380,49381,49382,49383,49384,49385,49386,49387,49388,49389,49390,49391,49392,49393,49394,49395,49396,49397,49398,49399,49400,49401,49402,49403,49404,49405,49406,49407,49408,49409,49410,49411,49412,49413,49414,49415,49416,49417,49418,49419,49420,49421,49422,49423,49424,49425,49426,49427,49428,49429,49430,49431,49432,49433,49434,49435,49436,49437,49438,49439,49440,49441,49442,49443,49444,49445,49446,49447,49448,49449,49450,49451,49452,49453,49454,49455,49456,49457,49458,49459,49460,49461,49462,49463,49464,49465,49466,49467,49468,49469,49470,49471,49472,49473,49474,49475,49476,49477,49478,49479,49480,49481,49482,49483,49484,49485,49486,49487,49488,49489,49490,49491,49492,49493,49494,49495,49496,49497,49498,49499,49500,49501,49502,49503,49504,49505,49506,49507,49508,49509,49510,49511,49512,49513,49514,49515,49516,49517,49518,49519,49520,49521,49522,49523,49524,49525,49526,49527,49528,49529,49530,49531,49532,49533,49534,49535,49536,49537,49538,49539,49540,49541,49542,49543,49544,49545,49546,49547,49548,49549,49550,49551,49552,49553,49554,49555,49556,49557,49558,49559,49560,49561,49562,49563,49564,49565,49566,49567,49568,49569,49570,49571,49572,49573,49574,49575,49576,49577,49578,49579,49580,49581,49582,49583,49584,49585,49586,49587,49588,49589,49590,49591,49592,49593,49594,49595,49596,49597,49598,49599,49600,49601,49602,49603,49604,49605,49606,49607,49608,49609,49610,49611,49612,49613,49614,49615,49616,49617,49618,49619,49620,49621,49622,49623,49624,49625,49626,49627,49628,49629,49630,49631,49632,49633,49634,49635,49636,49637,49638,49639,49640,49641,49642,49643,49644,49645,49646,49647,49648,49649,49650,49651,49652,49653,49654,49655,49656,49657,49658,49659,49660,49661,49662,49663,49664,49665,49666,49667,49668,49669,49670,49671,49672,49673,49674,49675,49676,49677,49678,49679,49680,49681,49682,49683,49684,49685,49686,49687,49688,49689,49690,49691,49692,49693,49694,49695,49696,49697,49698,49699,49700,49701,49702,49703,49704,49705,49706,49707,49708,49709,49710,49711,49712,49713,49714,49715,49716,49717,49718,49719,49720,49721,49722,49723,49724,49725,49726,49727,49728,49729,49730,49731,49732,49733,49734,49735,49736,49737,49738,49739,49740,49741,49742,49743,49744,49745,49746,49747,49748,49749,49750,49751,49752,49753,49754,49755,49756,49757,49758,49759,49760,49761,49762,49763,49764,49765,49766,49767,49768,49769,49770,49771,49772,49773,49774,49775,49776,49777,49778,49779,49780,49781,49782,49783,49784,49785,49786,49787,49788,49789,49790,49791,49792,49793,49794,49795,49796,49797,49798,49799,49800,49801,49802,49803,49804,49805,49806,49807,49808,49809,49810,49811,49812,49813,49814,49815,49816,49817,49818,49819,49820,49821,49822,49823,49824,49825,49826,49827,49828,49829,49830,49831,49832,49833,49834,49835,49836,49837,49838,49839,49840,49841,49842,49843,49844,49845,49846,49847,49848,49849,49850,49851,49852,49853,49854,49855,49856,49857,49858,49859,49860,49861,49862,49863,49864,49865,49866,49867,49868,49869,49870,49871,49872,49873,49874,49875,49876,49877,49878,49879,49880,49881,49882,49883,49884,49885,49886,49887,49888,49889,49890,49891,49892,49893,49894,49895,49896,49897,49898,49899,49900,49901,49902,49903,49904,49905,49906,49907,49908,49909,49910,49911,49912,49913,49914,49915,49916,49917,49918,49919,49920,49921,49922,49923,49924,49925,49926,49927,49928,49929,49930,49931,49932,49933,49934,49935,49936,49937,49938,49939,49940,49941,49942,49943,49944,49945,49946,49947,49948,49949,49950,49951,49952,49953,49954,49955,49956,49957,49958,49959,49960,49961,49962,49963,49964,49965,49966,49967,49968,49969,49970,49971,49972,49973,49974,49975,49976,49977,49978,49979,49980,49981,49982,49983,49984,49985,49986,49987,49988,49989,49990,49991,49992,49993,49994,49995,49996,49997,49998,49999,50000]
-# expected_output:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,10046,10047,10048,10049,10050,10051,10052,10053,10054,10055,10056,10057,10058,10059,10060,10061,10062,10063,10064,10065,10066,10067,10068,10069,10070,10071,10072,10073,10074,10075,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,10086,10087,10088,10089,10090,10091,10092,10093,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,10116,10117,10118,10119,10120,10121,10122,10123,10124,10125,10126,10127,10128,10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139,10140,10141,10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153,10154,10155,10156,10157,10158,10159,10160,10161,10162,10163,10164,10165,10166,10167,10168,10169,10170,10171,10172,10173,10174,10175,10176,10177,10178,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,10190,10191,10192,10193,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,10205,10206,10207,10208,10209,10210,10211,10212,10213,10214,10215,10216,10217,10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229,10230,10231,10232,10233,10234,10235,10236,10237,10238,10239,10240,10241,10242,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,10253,10254,10255,10256,10257,10258,10259,10260,10261,10262,10263,10264,10265,10266,10267,10268,10269,10270,10271,10272,10273,10274,10275,10276,10277,10278,10279,10280,10281,10282,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295,10296,10297,10298,10299,10300,10301,10302,10303,10304,10305,10306,10307,10308,10309,10310,10311,10312,10313,10314,10315,10316,10317,10318,10319,10320,10321,10322,10323,10324,10325,10326,10327,10328,10329,10330,10331,10332,10333,10334,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,10348,10349,10350,10351,10352,10353,10354,10355,10356,10357,10358,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,10370,10371,10372,10373,10374,10375,10376,10377,10378,10379,10380,10381,10382,10383,10384,10385,10386,10387,10388,10389,10390,10391,10392,10393,10394,10395,10396,10397,10398,10399,10400,10401,10402,10403,10404,10405,10406,10407,10408,10409,10410,10411,10412,10413,10414,10415,10416,10417,10418,10419,10420,10421,10422,10423,10424,10425,10426,10427,10428,10429,10430,10431,10432,10433,10434,10435,10436,10437,10438,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,10450,10451,10452,10453,10454,10455,10456,10457,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10470,10471,10472,10473,10474,10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10485,10486,10487,10488,10489,10490,10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,10512,10513,10514,10515,10516,10517,10518,10519,10520,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10533,10534,10535,10536,10537,10538,10539,10540,10541,10542,10543,10544,10545,10546,10547,10548,10549,10550,10551,10552,10553,10554,10555,10556,10557,10558,10559,10560,10561,10562,10563,10564,10565,10566,10567,10568,10569,10570,10571,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,10605,10606,10607,10608,10609,10610,10611,10612,10613,10614,10615,10616,10617,10618,10619,10620,10621,10622,10623,10624,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,10637,10638,10639,10640,10641,10642,10643,10644,10645,10646,10647,10648,10649,10650,10651,10652,10653,10654,10655,10656,10657,10658,10659,10660,10661,10662,10663,10664,10665,10666,10667,10668,10669,10670,10671,10672,10673,10674,10675,10676,10677,10678,10679,10680,10681,10682,10683,10684,10685,10686,10687,10688,10689,10690,10691,10692,10693,10694,10695,10696,10697,10698,10699,10700,10701,10702,10703,10704,10705,10706,10707,10708,10709,10710,10711,10712,10713,10714,10715,10716,10717,10718,10719,10720,10721,10722,10723,10724,10725,10726,10727,10728,10729,10730,10731,10732,10733,10734,10735,10736,10737,10738,10739,10740,10741,10742,10743,10744,10745,10746,10747,10748,10749,10750,10751,10752,10753,10754,10755,10756,10757,10758,10759,10760,10761,10762,10763,10764,10765,10766,10767,10768,10769,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,10785,10786,10787,10788,10789,10790,10791,10792,10793,10794,10795,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,10810,10811,10812,10813,10814,10815,10816,10817,10818,10819,10820,10821,10822,10823,10824,10825,10826,10827,10828,10829,10830,10831,10832,10833,10834,10835,10836,10837,10838,10839,10840,10841,10842,10843,10844,10845,10846,10847,10848,10849,10850,10851,10852,10853,10854,10855,10856,10857,10858,10859,10860,10861,10862,10863,10864,10865,10866,10867,10868,10869,10870,10871,10872,10873,10874,10875,10876,10877,10878,10879,10880,10881,10882,10883,10884,10885,10886,10887,10888,10889,10890,10891,10892,10893,10894,10895,10896,10897,10898,10899,10900,10901,10902,10903,10904,10905,10906,10907,10908,10909,10910,10911,10912,10913,10914,10915,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,10929,10930,10931,10932,10933,10934,10935,10936,10937,10938,10939,10940,10941,10942,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10954,10955,10956,10957,10958,10959,10960,10961,10962,10963,10964,10965,10966,10967,10968,10969,10970,10971,10972,10973,10974,10975,10976,10977,10978,10979,10980,10981,10982,10983,10984,10985,10986,10987,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,10998,10999,11000,11001,11002,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,11031,11032,11033,11034,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045,11046,11047,11048,11049,11050,11051,11052,11053,11054,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11080,11081,11082,11083,11084,11085,11086,11087,11088,11089,11090,11091,11092,11093,11094,11095,11096,11097,11098,11099,11100,11101,11102,11103,11104,11105,11106,11107,11108,11109,11110,11111,11112,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11136,11137,11138,11139,11140,11141,11142,11143,11144,11145,11146,11147,11148,11149,11150,11151,11152,11153,11154,11155,11156,11157,11158,11159,11160,11161,11162,11163,11164,11165,11166,11167,11168,11169,11170,11171,11172,11173,11174,11175,11176,11177,11178,11179,11180,11181,11182,11183,11184,11185,11186,11187,11188,11189,11190,11191,11192,11193,11194,11195,11196,11197,11198,11199,11200,11201,11202,11203,11204,11205,11206,11207,11208,11209,11210,11211,11212,11213,11214,11215,11216,11217,11218,11219,11220,11221,11222,11223,11224,11225,11226,11227,11228,11229,11230,11231,11232,11233,11234,11235,11236,11237,11238,11239,11240,11241,11242,11243,11244,11245,11246,11247,11248,11249,11250,11251,11252,11253,11254,11255,11256,11257,11258,11259,11260,11261,11262,11263,11264,11265,11266,11267,11268,11269,11270,11271,11272,11273,11274,11275,11276,11277,11278,11279,11280,11281,11282,11283,11284,11285,11286,11287,11288,11289,11290,11291,11292,11293,11294,11295,11296,11297,11298,11299,11300,11301,11302,11303,11304,11305,11306,11307,11308,11309,11310,11311,11312,11313,11314,11315,11316,11317,11318,11319,11320,11321,11322,11323,11324,11325,11326,11327,11328,11329,11330,11331,11332,11333,11334,11335,11336,11337,11338,11339,11340,11341,11342,11343,11344,11345,11346,11347,11348,11349,11350,11351,11352,11353,11354,11355,11356,11357,11358,11359,11360,11361,11362,11363,11364,11365,11366,11367,11368,11369,11370,11371,11372,11373,11374,11375,11376,11377,11378,11379,11380,11381,11382,11383,11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396,11397,11398,11399,11400,11401,11402,11403,11404,11405,11406,11407,11408,11409,11410,11411,11412,11413,11414,11415,11416,11417,11418,11419,11420,11421,11422,11423,11424,11425,11426,11427,11428,11429,11430,11431,11432,11433,11434,11435,11436,11437,11438,11439,11440,11441,11442,11443,11444,11445,11446,11447,11448,11449,11450,11451,11452,11453,11454,11455,11456,11457,11458,11459,11460,11461,11462,11463,11464,11465,11466,11467,11468,11469,11470,11471,11472,11473,11474,11475,11476,11477,11478,11479,11480,11481,11482,11483,11484,11485,11486,11487,11488,11489,11490,11491,11492,11493,11494,11495,11496,11497,11498,11499,11500,11501,11502,11503,11504,11505,11506,11507,11508,11509,11510,11511,11512,11513,11514,11515,11516,11517,11518,11519,11520,11521,11522,11523,11524,11525,11526,11527,11528,11529,11530,11531,11532,11533,11534,11535,11536,11537,11538,11539,11540,11541,11542,11543,11544,11545,11546,11547,11548,11549,11550,11551,11552,11553,11554,11555,11556,11557,11558,11559,11560,11561,11562,11563,11564,11565,11566,11567,11568,11569,11570,11571,11572,11573,11574,11575,11576,11577,11578,11579,11580,11581,11582,11583,11584,11585,11586,11587,11588,11589,11590,11591,11592,11593,11594,11595,11596,11597,11598,11599,11600,11601,11602,11603,11604,11605,11606,11607,11608,11609,11610,11611,11612,11613,11614,11615,11616,11617,11618,11619,11620,11621,11622,11623,11624,11625,11626,11627,11628,11629,11630,11631,11632,11633,11634,11635,11636,11637,11638,11639,11640,11641,11642,11643,11644,11645,11646,11647,11648,11649,11650,11651,11652,11653,11654,11655,11656,11657,11658,11659,11660,11661,11662,11663,11664,11665,11666,11667,11668,11669,11670,11671,11672,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,11686,11687,11688,11689,11690,11691,11692,11693,11694,11695,11696,11697,11698,11699,11700,11701,11702,11703,11704,11705,11706,11707,11708,11709,11710,11711,11712,11713,11714,11715,11716,11717,11718,11719,11720,11721,11722,11723,11724,11725,11726,11727,11728,11729,11730,11731,11732,11733,11734,11735,11736,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747,11748,11749,11750,11751,11752,11753,11754,11755,11756,11757,11758,11759,11760,11761,11762,11763,11764,11765,11766,11767,11768,11769,11770,11771,11772,11773,11774,11775,11776,11777,11778,11779,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,11790,11791,11792,11793,11794,11795,11796,11797,11798,11799,11800,11801,11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812,11813,11814,11815,11816,11817,11818,11819,11820,11821,11822,11823,11824,11825,11826,11827,11828,11829,11830,11831,11832,11833,11834,11835,11836,11837,11838,11839,11840,11841,11842,11843,11844,11845,11846,11847,11848,11849,11850,11851,11852,11853,11854,11855,11856,11857,11858,11859,11860,11861,11862,11863,11864,11865,11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877,11878,11879,11880,11881,11882,11883,11884,11885,11886,11887,11888,11889,11890,11891,11892,11893,11894,11895,11896,11897,11898,11899,11900,11901,11902,11903,11904,11905,11906,11907,11908,11909,11910,11911,11912,11913,11914,11915,11916,11917,11918,11919,11920,11921,11922,11923,11924,11925,11926,11927,11928,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,11943,11944,11945,11946,11947,11948,11949,11950,11951,11952,11953,11954,11955,11956,11957,11958,11959,11960,11961,11962,11963,11964,11965,11966,11967,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,11994,11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124,12125,12126,12127,12128,12129,12130,12131,12132,12133,12134,12135,12136,12137,12138,12139,12140,12141,12142,12143,12144,12145,12146,12147,12148,12149,12150,12151,12152,12153,12154,12155,12156,12157,12158,12159,12160,12161,12162,12163,12164,12165,12166,12167,12168,12169,12170,12171,12172,12173,12174,12175,12176,12177,12178,12179,12180,12181,12182,12183,12184,12185,12186,12187,12188,12189,12190,12191,12192,12193,12194,12195,12196,12197,12198,12199,12200,12201,12202,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12217,12218,12219,12220,12221,12222,12223,12224,12225,12226,12227,12228,12229,12230,12231,12232,12233,12234,12235,12236,12237,12238,12239,12240,12241,12242,12243,12244,12245,12246,12247,12248,12249,12250,12251,12252,12253,12254,12255,12256,12257,12258,12259,12260,12261,12262,12263,12264,12265,12266,12267,12268,12269,12270,12271,12272,12273,12274,12275,12276,12277,12278,12279,12280,12281,12282,12283,12284,12285,12286,12287,12288,12289,12290,12291,12292,12293,12294,12295,12296,12297,12298,12299,12300,12301,12302,12303,12304,12305,12306,12307,12308,12309,12310,12311,12312,12313,12314,12315,12316,12317,12318,12319,12320,12321,12322,12323,12324,12325,12326,12327,12328,12329,12330,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12352,12353,12354,12355,12356,12357,12358,12359,12360,12361,12362,12363,12364,12365,12366,12367,12368,12369,12370,12371,12372,12373,12374,12375,12376,12377,12378,12379,12380,12381,12382,12383,12384,12385,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397,12398,12399,12400,12401,12402,12403,12404,12405,12406,12407,12408,12409,12410,12411,12412,12413,12414,12415,12416,12417,12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12446,12447,12448,12449,12450,12451,12452,12453,12454,12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494,12495,12496,12497,12498,12499,12500,12501,12502,12503,12504,12505,12506,12507,12508,12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519,12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,12532,12533,12534,12535,12536,12537,12538,12539,12540,12541,12542,12543,12544,12545,12546,12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,12564,12565,12566,12567,12568,12569,12570,12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,12584,12585,12586,12587,12588,12589,12590,12591,12592,12593,12594,12595,12596,12597,12598,12599,12600,12601,12602,12603,12604,12605,12606,12607,12608,12609,12610,12611,12612,12613,12614,12615,12616,12617,12618,12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631,12632,12633,12634,12635,12636,12637,12638,12639,12640,12641,12642,12643,12644,12645,12646,12647,12648,12649,12650,12651,12652,12653,12654,12655,12656,12657,12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,12670,12671,12672,12673,12674,12675,12676,12677,12678,12679,12680,12681,12682,12683,12684,12685,12686,12687,12688,12689,12690,12691,12692,12693,12694,12695,12696,12697,12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708,12709,12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726,12727,12728,12729,12730,12731,12732,12733,12734,12735,12736,12737,12738,12739,12740,12741,12742,12743,12744,12745,12746,12747,12748,12749,12750,12751,12752,12753,12754,12755,12756,12757,12758,12759,12760,12761,12762,12763,12764,12765,12766,12767,12768,12769,12770,12771,12772,12773,12774,12775,12776,12777,12778,12779,12780,12781,12782,12783,12784,12785,12786,12787,12788,12789,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,12803,12804,12805,12806,12807,12808,12809,12810,12811,12812,12813,12814,12815,12816,12817,12818,12819,12820,12821,12822,12823,12824,12825,12826,12827,12828,12829,12830,12831,12832,12833,12834,12835,12836,12837,12838,12839,12840,12841,12842,12843,12844,12845,12846,12847,12848,12849,12850,12851,12852,12853,12854,12855,12856,12857,12858,12859,12860,12861,12862,12863,12864,12865,12866,12867,12868,12869,12870,12871,12872,12873,12874,12875,12876,12877,12878,12879,12880,12881,12882,12883,12884,12885,12886,12887,12888,12889,12890,12891,12892,12893,12894,12895,12896,12897,12898,12899,12900,12901,12902,12903,12904,12905,12906,12907,12908,12909,12910,12911,12912,12913,12914,12915,12916,12917,12918,12919,12920,12921,12922,12923,12924,12925,12926,12927,12928,12929,12930,12931,12932,12933,12934,12935,12936,12937,12938,12939,12940,12941,12942,12943,12944,12945,12946,12947,12948,12949,12950,12951,12952,12953,12954,12955,12956,12957,12958,12959,12960,12961,12962,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,12977,12978,12979,12980,12981,12982,12983,12984,12985,12986,12987,12988,12989,12990,12991,12992,12993,12994,12995,12996,12997,12998,12999,13000,13001,13002,13003,13004,13005,13006,13007,13008,13009,13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,13023,13024,13025,13026,13027,13028,13029,13030,13031,13032,13033,13034,13035,13036,13037,13038,13039,13040,13041,13042,13043,13044,13045,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,13069,13070,13071,13072,13073,13074,13075,13076,13077,13078,13079,13080,13081,13082,13083,13084,13085,13086,13087,13088,13089,13090,13091,13092,13093,13094,13095,13096,13097,13098,13099,13100,13101,13102,13103,13104,13105,13106,13107,13108,13109,13110,13111,13112,13113,13114,13115,13116,13117,13118,13119,13120,13121,13122,13123,13124,13125,13126,13127,13128,13129,13130,13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,13155,13156,13157,13158,13159,13160,13161,13162,13163,13164,13165,13166,13167,13168,13169,13170,13171,13172,13173,13174,13175,13176,13177,13178,13179,13180,13181,13182,13183,13184,13185,13186,13187,13188,13189,13190,13191,13192,13193,13194,13195,13196,13197,13198,13199,13200,13201,13202,13203,13204,13205,13206,13207,13208,13209,13210,13211,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,13222,13223,13224,13225,13226,13227,13228,13229,13230,13231,13232,13233,13234,13235,13236,13237,13238,13239,13240,13241,13242,13243,13244,13245,13246,13247,13248,13249,13250,13251,13252,13253,13254,13255,13256,13257,13258,13259,13260,13261,13262,13263,13264,13265,13266,13267,13268,13269,13270,13271,13272,13273,13274,13275,13276,13277,13278,13279,13280,13281,13282,13283,13284,13285,13286,13287,13288,13289,13290,13291,13292,13293,13294,13295,13296,13297,13298,13299,13300,13301,13302,13303,13304,13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317,13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330,13331,13332,13333,13334,13335,13336,13337,13338,13339,13340,13341,13342,13343,13344,13345,13346,13347,13348,13349,13350,13351,13352,13353,13354,13355,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736,13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,13749,13750,13751,13752,13753,13754,13755,13756,13757,13758,13759,13760,13761,13762,13763,13764,13765,13766,13767,13768,13769,13770,13771,13772,13773,13774,13775,13776,13777,13778,13779,13780,13781,13782,13783,13784,13785,13786,13787,13788,13789,13790,13791,13792,13793,13794,13795,13796,13797,13798,13799,13800,13801,13802,13803,13804,13805,13806,13807,13808,13809,13810,13811,13812,13813,13814,13815,13816,13817,13818,13819,13820,13821,13822,13823,13824,13825,13826,13827,13828,13829,13830,13831,13832,13833,13834,13835,13836,13837,13838,13839,13840,13841,13842,13843,13844,13845,13846,13847,13848,13849,13850,13851,13852,13853,13854,13855,13856,13857,13858,13859,13860,13861,13862,13863,13864,13865,13866,13867,13868,13869,13870,13871,13872,13873,13874,13875,13876,13877,13878,13879,13880,13881,13882,13883,13884,13885,13886,13887,13888,13889,13890,13891,13892,13893,13894,13895,13896,13897,13898,13899,13900,13901,13902,13903,13904,13905,13906,13907,13908,13909,13910,13911,13912,13913,13914,13915,13916,13917,13918,13919,13920,13921,13922,13923,13924,13925,13926,13927,13928,13929,13930,13931,13932,13933,13934,13935,13936,13937,13938,13939,13940,13941,13942,13943,13944,13945,13946,13947,13948,13949,13950,13951,13952,13953,13954,13955,13956,13957,13958,13959,13960,13961,13962,13963,13964,13965,13966,13967,13968,13969,13970,13971,13972,13973,13974,13975,13976,13977,13978,13979,13980,13981,13982,13983,13984,13985,13986,13987,13988,13989,13990,13991,13992,13993,13994,13995,13996,13997,13998,13999,14000,14001,14002,14003,14004,14005,14006,14007,14008,14009,14010,14011,14012,14013,14014,14015,14016,14017,14018,14019,14020,14021,14022,14023,14024,14025,14026,14027,14028,14029,14030,14031,14032,14033,14034,14035,14036,14037,14038,14039,14040,14041,14042,14043,14044,14045,14046,14047,14048,14049,14050,14051,14052,14053,14054,14055,14056,14057,14058,14059,14060,14061,14062,14063,14064,14065,14066,14067,14068,14069,14070,14071,14072,14073,14074,14075,14076,14077,14078,14079,14080,14081,14082,14083,14084,14085,14086,14087,14088,14089,14090,14091,14092,14093,14094,14095,14096,14097,14098,14099,14100,14101,14102,14103,14104,14105,14106,14107,14108,14109,14110,14111,14112,14113,14114,14115,14116,14117,14118,14119,14120,14121,14122,14123,14124,14125,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14136,14137,14138,14139,14140,14141,14142,14143,14144,14145,14146,14147,14148,14149,14150,14151,14152,14153,14154,14155,14156,14157,14158,14159,14160,14161,14162,14163,14164,14165,14166,14167,14168,14169,14170,14171,14172,14173,14174,14175,14176,14177,14178,14179,14180,14181,14182,14183,14184,14185,14186,14187,14188,14189,14190,14191,14192,14193,14194,14195,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205,14206,14207,14208,14209,14210,14211,14212,14213,14214,14215,14216,14217,14218,14219,14220,14221,14222,14223,14224,14225,14226,14227,14228,14229,14230,14231,14232,14233,14234,14235,14236,14237,14238,14239,14240,14241,14242,14243,14244,14245,14246,14247,14248,14249,14250,14251,14252,14253,14254,14255,14256,14257,14258,14259,14260,14261,14262,14263,14264,14265,14266,14267,14268,14269,14270,14271,14272,14273,14274,14275,14276,14277,14278,14279,14280,14281,14282,14283,14284,14285,14286,14287,14288,14289,14290,14291,14292,14293,14294,14295,14296,14297,14298,14299,14300,14301,14302,14303,14304,14305,14306,14307,14308,14309,14310,14311,14312,14313,14314,14315,14316,14317,14318,14319,14320,14321,14322,14323,14324,14325,14326,14327,14328,14329,14330,14331,14332,14333,14334,14335,14336,14337,14338,14339,14340,14341,14342,14343,14344,14345,14346,14347,14348,14349,14350,14351,14352,14353,14354,14355,14356,14357,14358,14359,14360,14361,14362,14363,14364,14365,14366,14367,14368,14369,14370,14371,14372,14373,14374,14375,14376,14377,14378,14379,14380,14381,14382,14383,14384,14385,14386,14387,14388,14389,14390,14391,14392,14393,14394,14395,14396,14397,14398,14399,14400,14401,14402,14403,14404,14405,14406,14407,14408,14409,14410,14411,14412,14413,14414,14415,14416,14417,14418,14419,14420,14421,14422,14423,14424,14425,14426,14427,14428,14429,14430,14431,14432,14433,14434,14435,14436,14437,14438,14439,14440,14441,14442,14443,14444,14445,14446,14447,14448,14449,14450,14451,14452,14453,14454,14455,14456,14457,14458,14459,14460,14461,14462,14463,14464,14465,14466,14467,14468,14469,14470,14471,14472,14473,14474,14475,14476,14477,14478,14479,14480,14481,14482,14483,14484,14485,14486,14487,14488,14489,14490,14491,14492,14493,14494,14495,14496,14497,14498,14499,14500,14501,14502,14503,14504,14505,14506,14507,14508,14509,14510,14511,14512,14513,14514,14515,14516,14517,14518,14519,14520,14521,14522,14523,14524,14525,14526,14527,14528,14529,14530,14531,14532,14533,14534,14535,14536,14537,14538,14539,14540,14541,14542,14543,14544,14545,14546,14547,14548,14549,14550,14551,14552,14553,14554,14555,14556,14557,14558,14559,14560,14561,14562,14563,14564,14565,14566,14567,14568,14569,14570,14571,14572,14573,14574,14575,14576,14577,14578,14579,14580,14581,14582,14583,14584,14585,14586,14587,14588,14589,14590,14591,14592,14593,14594,14595,14596,14597,14598,14599,14600,14601,14602,14603,14604,14605,14606,14607,14608,14609,14610,14611,14612,14613,14614,14615,14616,14617,14618,14619,14620,14621,14622,14623,14624,14625,14626,14627,14628,14629,14630,14631,14632,14633,14634,14635,14636,14637,14638,14639,14640,14641,14642,14643,14644,14645,14646,14647,14648,14649,14650,14651,14652,14653,14654,14655,14656,14657,14658,14659,14660,14661,14662,14663,14664,14665,14666,14667,14668,14669,14670,14671,14672,14673,14674,14675,14676,14677,14678,14679,14680,14681,14682,14683,14684,14685,14686,14687,14688,14689,14690,14691,14692,14693,14694,14695,14696,14697,14698,14699,14700,14701,14702,14703,14704,14705,14706,14707,14708,14709,14710,14711,14712,14713,14714,14715,14716,14717,14718,14719,14720,14721,14722,14723,14724,14725,14726,14727,14728,14729,14730,14731,14732,14733,14734,14735,14736,14737,14738,14739,14740,14741,14742,14743,14744,14745,14746,14747,14748,14749,14750,14751,14752,14753,14754,14755,14756,14757,14758,14759,14760,14761,14762,14763,14764,14765,14766,14767,14768,14769,14770,14771,14772,14773,14774,14775,14776,14777,14778,14779,14780,14781,14782,14783,14784,14785,14786,14787,14788,14789,14790,14791,14792,14793,14794,14795,14796,14797,14798,14799,14800,14801,14802,14803,14804,14805,14806,14807,14808,14809,14810,14811,14812,14813,14814,14815,14816,14817,14818,14819,14820,14821,14822,14823,14824,14825,14826,14827,14828,14829,14830,14831,14832,14833,14834,14835,14836,14837,14838,14839,14840,14841,14842,14843,14844,14845,14846,14847,14848,14849,14850,14851,14852,14853,14854,14855,14856,14857,14858,14859,14860,14861,14862,14863,14864,14865,14866,14867,14868,14869,14870,14871,14872,14873,14874,14875,14876,14877,14878,14879,14880,14881,14882,14883,14884,14885,14886,14887,14888,14889,14890,14891,14892,14893,14894,14895,14896,14897,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14911,14912,14913,14914,14915,14916,14917,14918,14919,14920,14921,14922,14923,14924,14925,14926,14927,14928,14929,14930,14931,14932,14933,14934,14935,14936,14937,14938,14939,14940,14941,14942,14943,14944,14945,14946,14947,14948,14949,14950,14951,14952,14953,14954,14955,14956,14957,14958,14959,14960,14961,14962,14963,14964,14965,14966,14967,14968,14969,14970,14971,14972,14973,14974,14975,14976,14977,14978,14979,14980,14981,14982,14983,14984,14985,14986,14987,14988,14989,14990,14991,14992,14993,14994,14995,14996,14997,14998,14999,15000,15001,15002,15003,15004,15005,15006,15007,15008,15009,15010,15011,15012,15013,15014,15015,15016,15017,15018,15019,15020,15021,15022,15023,15024,15025,15026,15027,15028,15029,15030,15031,15032,15033,15034,15035,15036,15037,15038,15039,15040,15041,15042,15043,15044,15045,15046,15047,15048,15049,15050,15051,15052,15053,15054,15055,15056,15057,15058,15059,15060,15061,15062,15063,15064,15065,15066,15067,15068,15069,15070,15071,15072,15073,15074,15075,15076,15077,15078,15079,15080,15081,15082,15083,15084,15085,15086,15087,15088,15089,15090,15091,15092,15093,15094,15095,15096,15097,15098,15099,15100,15101,15102,15103,15104,15105,15106,15107,15108,15109,15110,15111,15112,15113,15114,15115,15116,15117,15118,15119,15120,15121,15122,15123,15124,15125,15126,15127,15128,15129,15130,15131,15132,15133,15134,15135,15136,15137,15138,15139,15140,15141,15142,15143,15144,15145,15146,15147,15148,15149,15150,15151,15152,15153,15154,15155,15156,15157,15158,15159,15160,15161,15162,15163,15164,15165,15166,15167,15168,15169,15170,15171,15172,15173,15174,15175,15176,15177,15178,15179,15180,15181,15182,15183,15184,15185,15186,15187,15188,15189,15190,15191,15192,15193,15194,15195,15196,15197,15198,15199,15200,15201,15202,15203,15204,15205,15206,15207,15208,15209,15210,15211,15212,15213,15214,15215,15216,15217,15218,15219,15220,15221,15222,15223,15224,15225,15226,15227,15228,15229,15230,15231,15232,15233,15234,15235,15236,15237,15238,15239,15240,15241,15242,15243,15244,15245,15246,15247,15248,15249,15250,15251,15252,15253,15254,15255,15256,15257,15258,15259,15260,15261,15262,15263,15264,15265,15266,15267,15268,15269,15270,15271,15272,15273,15274,15275,15276,15277,15278,15279,15280,15281,15282,15283,15284,15285,15286,15287,15288,15289,15290,15291,15292,15293,15294,15295,15296,15297,15298,15299,15300,15301,15302,15303,15304,15305,15306,15307,15308,15309,15310,15311,15312,15313,15314,15315,15316,15317,15318,15319,15320,15321,15322,15323,15324,15325,15326,15327,15328,15329,15330,15331,15332,15333,15334,15335,15336,15337,15338,15339,15340,15341,15342,15343,15344,15345,15346,15347,15348,15349,15350,15351,15352,15353,15354,15355,15356,15357,15358,15359,15360,15361,15362,15363,15364,15365,15366,15367,15368,15369,15370,15371,15372,15373,15374,15375,15376,15377,15378,15379,15380,15381,15382,15383,15384,15385,15386,15387,15388,15389,15390,15391,15392,15393,15394,15395,15396,15397,15398,15399,15400,15401,15402,15403,15404,15405,15406,15407,15408,15409,15410,15411,15412,15413,15414,15415,15416,15417,15418,15419,15420,15421,15422,15423,15424,15425,15426,15427,15428,15429,15430,15431,15432,15433,15434,15435,15436,15437,15438,15439,15440,15441,15442,15443,15444,15445,15446,15447,15448,15449,15450,15451,15452,15453,15454,15455,15456,15457,15458,15459,15460,15461,15462,15463,15464,15465,15466,15467,15468,15469,15470,15471,15472,15473,15474,15475,15476,15477,15478,15479,15480,15481,15482,15483,15484,15485,15486,15487,15488,15489,15490,15491,15492,15493,15494,15495,15496,15497,15498,15499,15500,15501,15502,15503,15504,15505,15506,15507,15508,15509,15510,15511,15512,15513,15514,15515,15516,15517,15518,15519,15520,15521,15522,15523,15524,15525,15526,15527,15528,15529,15530,15531,15532,15533,15534,15535,15536,15537,15538,15539,15540,15541,15542,15543,15544,15545,15546,15547,15548,15549,15550,15551,15552,15553,15554,15555,15556,15557,15558,15559,15560,15561,15562,15563,15564,15565,15566,15567,15568,15569,15570,15571,15572,15573,15574,15575,15576,15577,15578,15579,15580,15581,15582,15583,15584,15585,15586,15587,15588,15589,15590,15591,15592,15593,15594,15595,15596,15597,15598,15599,15600,15601,15602,15603,15604,15605,15606,15607,15608,15609,15610,15611,15612,15613,15614,15615,15616,15617,15618,15619,15620,15621,15622,15623,15624,15625,15626,15627,15628,15629,15630,15631,15632,15633,15634,15635,15636,15637,15638,15639,15640,15641,15642,15643,15644,15645,15646,15647,15648,15649,15650,15651,15652,15653,15654,15655,15656,15657,15658,15659,15660,15661,15662,15663,15664,15665,15666,15667,15668,15669,15670,15671,15672,15673,15674,15675,15676,15677,15678,15679,15680,15681,15682,15683,15684,15685,15686,15687,15688,15689,15690,15691,15692,15693,15694,15695,15696,15697,15698,15699,15700,15701,15702,15703,15704,15705,15706,15707,15708,15709,15710,15711,15712,15713,15714,15715,15716,15717,15718,15719,15720,15721,15722,15723,15724,15725,15726,15727,15728,15729,15730,15731,15732,15733,15734,15735,15736,15737,15738,15739,15740,15741,15742,15743,15744,15745,15746,15747,15748,15749,15750,15751,15752,15753,15754,15755,15756,15757,15758,15759,15760,15761,15762,15763,15764,15765,15766,15767,15768,15769,15770,15771,15772,15773,15774,15775,15776,15777,15778,15779,15780,15781,15782,15783,15784,15785,15786,15787,15788,15789,15790,15791,15792,15793,15794,15795,15796,15797,15798,15799,15800,15801,15802,15803,15804,15805,15806,15807,15808,15809,15810,15811,15812,15813,15814,15815,15816,15817,15818,15819,15820,15821,15822,15823,15824,15825,15826,15827,15828,15829,15830,15831,15832,15833,15834,15835,15836,15837,15838,15839,15840,15841,15842,15843,15844,15845,15846,15847,15848,15849,15850,15851,15852,15853,15854,15855,15856,15857,15858,15859,15860,15861,15862,15863,15864,15865,15866,15867,15868,15869,15870,15871,15872,15873,15874,15875,15876,15877,15878,15879,15880,15881,15882,15883,15884,15885,15886,15887,15888,15889,15890,15891,15892,15893,15894,15895,15896,15897,15898,15899,15900,15901,15902,15903,15904,15905,15906,15907,15908,15909,15910,15911,15912,15913,15914,15915,15916,15917,15918,15919,15920,15921,15922,15923,15924,15925,15926,15927,15928,15929,15930,15931,15932,15933,15934,15935,15936,15937,15938,15939,15940,15941,15942,15943,15944,15945,15946,15947,15948,15949,15950,15951,15952,15953,15954,15955,15956,15957,15958,15959,15960,15961,15962,15963,15964,15965,15966,15967,15968,15969,15970,15971,15972,15973,15974,15975,15976,15977,15978,15979,15980,15981,15982,15983,15984,15985,15986,15987,15988,15989,15990,15991,15992,15993,15994,15995,15996,15997,15998,15999,16000,16001,16002,16003,16004,16005,16006,16007,16008,16009,16010,16011,16012,16013,16014,16015,16016,16017,16018,16019,16020,16021,16022,16023,16024,16025,16026,16027,16028,16029,16030,16031,16032,16033,16034,16035,16036,16037,16038,16039,16040,16041,16042,16043,16044,16045,16046,16047,16048,16049,16050,16051,16052,16053,16054,16055,16056,16057,16058,16059,16060,16061,16062,16063,16064,16065,16066,16067,16068,16069,16070,16071,16072,16073,16074,16075,16076,16077,16078,16079,16080,16081,16082,16083,16084,16085,16086,16087,16088,16089,16090,16091,16092,16093,16094,16095,16096,16097,16098,16099,16100,16101,16102,16103,16104,16105,16106,16107,16108,16109,16110,16111,16112,16113,16114,16115,16116,16117,16118,16119,16120,16121,16122,16123,16124,16125,16126,16127,16128,16129,16130,16131,16132,16133,16134,16135,16136,16137,16138,16139,16140,16141,16142,16143,16144,16145,16146,16147,16148,16149,16150,16151,16152,16153,16154,16155,16156,16157,16158,16159,16160,16161,16162,16163,16164,16165,16166,16167,16168,16169,16170,16171,16172,16173,16174,16175,16176,16177,16178,16179,16180,16181,16182,16183,16184,16185,16186,16187,16188,16189,16190,16191,16192,16193,16194,16195,16196,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16223,16224,16225,16226,16227,16228,16229,16230,16231,16232,16233,16234,16235,16236,16237,16238,16239,16240,16241,16242,16243,16244,16245,16246,16247,16248,16249,16250,16251,16252,16253,16254,16255,16256,16257,16258,16259,16260,16261,16262,16263,16264,16265,16266,16267,16268,16269,16270,16271,16272,16273,16274,16275,16276,16277,16278,16279,16280,16281,16282,16283,16284,16285,16286,16287,16288,16289,16290,16291,16292,16293,16294,16295,16296,16297,16298,16299,16300,16301,16302,16303,16304,16305,16306,16307,16308,16309,16310,16311,16312,16313,16314,16315,16316,16317,16318,16319,16320,16321,16322,16323,16324,16325,16326,16327,16328,16329,16330,16331,16332,16333,16334,16335,16336,16337,16338,16339,16340,16341,16342,16343,16344,16345,16346,16347,16348,16349,16350,16351,16352,16353,16354,16355,16356,16357,16358,16359,16360,16361,16362,16363,16364,16365,16366,16367,16368,16369,16370,16371,16372,16373,16374,16375,16376,16377,16378,16379,16380,16381,16382,16383,16384,16385,16386,16387,16388,16389,16390,16391,16392,16393,16394,16395,16396,16397,16398,16399,16400,16401,16402,16403,16404,16405,16406,16407,16408,16409,16410,16411,16412,16413,16414,16415,16416,16417,16418,16419,16420,16421,16422,16423,16424,16425,16426,16427,16428,16429,16430,16431,16432,16433,16434,16435,16436,16437,16438,16439,16440,16441,16442,16443,16444,16445,16446,16447,16448,16449,16450,16451,16452,16453,16454,16455,16456,16457,16458,16459,16460,16461,16462,16463,16464,16465,16466,16467,16468,16469,16470,16471,16472,16473,16474,16475,16476,16477,16478,16479,16480,16481,16482,16483,16484,16485,16486,16487,16488,16489,16490,16491,16492,16493,16494,16495,16496,16497,16498,16499,16500,16501,16502,16503,16504,16505,16506,16507,16508,16509,16510,16511,16512,16513,16514,16515,16516,16517,16518,16519,16520,16521,16522,16523,16524,16525,16526,16527,16528,16529,16530,16531,16532,16533,16534,16535,16536,16537,16538,16539,16540,16541,16542,16543,16544,16545,16546,16547,16548,16549,16550,16551,16552,16553,16554,16555,16556,16557,16558,16559,16560,16561,16562,16563,16564,16565,16566,16567,16568,16569,16570,16571,16572,16573,16574,16575,16576,16577,16578,16579,16580,16581,16582,16583,16584,16585,16586,16587,16588,16589,16590,16591,16592,16593,16594,16595,16596,16597,16598,16599,16600,16601,16602,16603,16604,16605,16606,16607,16608,16609,16610,16611,16612,16613,16614,16615,16616,16617,16618,16619,16620,16621,16622,16623,16624,16625,16626,16627,16628,16629,16630,16631,16632,16633,16634,16635,16636,16637,16638,16639,16640,16641,16642,16643,16644,16645,16646,16647,16648,16649,16650,16651,16652,16653,16654,16655,16656,16657,16658,16659,16660,16661,16662,16663,16664,16665,16666,16667,16668,16669,16670,16671,16672,16673,16674,16675,16676,16677,16678,16679,16680,16681,16682,16683,16684,16685,16686,16687,16688,16689,16690,16691,16692,16693,16694,16695,16696,16697,16698,16699,16700,16701,16702,16703,16704,16705,16706,16707,16708,16709,16710,16711,16712,16713,16714,16715,16716,16717,16718,16719,16720,16721,16722,16723,16724,16725,16726,16727,16728,16729,16730,16731,16732,16733,16734,16735,16736,16737,16738,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749,16750,16751,16752,16753,16754,16755,16756,16757,16758,16759,16760,16761,16762,16763,16764,16765,16766,16767,16768,16769,16770,16771,16772,16773,16774,16775,16776,16777,16778,16779,16780,16781,16782,16783,16784,16785,16786,16787,16788,16789,16790,16791,16792,16793,16794,16795,16796,16797,16798,16799,16800,16801,16802,16803,16804,16805,16806,16807,16808,16809,16810,16811,16812,16813,16814,16815,16816,16817,16818,16819,16820,16821,16822,16823,16824,16825,16826,16827,16828,16829,16830,16831,16832,16833,16834,16835,16836,16837,16838,16839,16840,16841,16842,16843,16844,16845,16846,16847,16848,16849,16850,16851,16852,16853,16854,16855,16856,16857,16858,16859,16860,16861,16862,16863,16864,16865,16866,16867,16868,16869,16870,16871,16872,16873,16874,16875,16876,16877,16878,16879,16880,16881,16882,16883,16884,16885,16886,16887,16888,16889,16890,16891,16892,16893,16894,16895,16896,16897,16898,16899,16900,16901,16902,16903,16904,16905,16906,16907,16908,16909,16910,16911,16912,16913,16914,16915,16916,16917,16918,16919,16920,16921,16922,16923,16924,16925,16926,16927,16928,16929,16930,16931,16932,16933,16934,16935,16936,16937,16938,16939,16940,16941,16942,16943,16944,16945,16946,16947,16948,16949,16950,16951,16952,16953,16954,16955,16956,16957,16958,16959,16960,16961,16962,16963,16964,16965,16966,16967,16968,16969,16970,16971,16972,16973,16974,16975,16976,16977,16978,16979,16980,16981,16982,16983,16984,16985,16986,16987,16988,16989,16990,16991,16992,16993,16994,16995,16996,16997,16998,16999,17000,17001,17002,17003,17004,17005,17006,17007,17008,17009,17010,17011,17012,17013,17014,17015,17016,17017,17018,17019,17020,17021,17022,17023,17024,17025,17026,17027,17028,17029,17030,17031,17032,17033,17034,17035,17036,17037,17038,17039,17040,17041,17042,17043,17044,17045,17046,17047,17048,17049,17050,17051,17052,17053,17054,17055,17056,17057,17058,17059,17060,17061,17062,17063,17064,17065,17066,17067,17068,17069,17070,17071,17072,17073,17074,17075,17076,17077,17078,17079,17080,17081,17082,17083,17084,17085,17086,17087,17088,17089,17090,17091,17092,17093,17094,17095,17096,17097,17098,17099,17100,17101,17102,17103,17104,17105,17106,17107,17108,17109,17110,17111,17112,17113,17114,17115,17116,17117,17118,17119,17120,17121,17122,17123,17124,17125,17126,17127,17128,17129,17130,17131,17132,17133,17134,17135,17136,17137,17138,17139,17140,17141,17142,17143,17144,17145,17146,17147,17148,17149,17150,17151,17152,17153,17154,17155,17156,17157,17158,17159,17160,17161,17162,17163,17164,17165,17166,17167,17168,17169,17170,17171,17172,17173,17174,17175,17176,17177,17178,17179,17180,17181,17182,17183,17184,17185,17186,17187,17188,17189,17190,17191,17192,17193,17194,17195,17196,17197,17198,17199,17200,17201,17202,17203,17204,17205,17206,17207,17208,17209,17210,17211,17212,17213,17214,17215,17216,17217,17218,17219,17220,17221,17222,17223,17224,17225,17226,17227,17228,17229,17230,17231,17232,17233,17234,17235,17236,17237,17238,17239,17240,17241,17242,17243,17244,17245,17246,17247,17248,17249,17250,17251,17252,17253,17254,17255,17256,17257,17258,17259,17260,17261,17262,17263,17264,17265,17266,17267,17268,17269,17270,17271,17272,17273,17274,17275,17276,17277,17278,17279,17280,17281,17282,17283,17284,17285,17286,17287,17288,17289,17290,17291,17292,17293,17294,17295,17296,17297,17298,17299,17300,17301,17302,17303,17304,17305,17306,17307,17308,17309,17310,17311,17312,17313,17314,17315,17316,17317,17318,17319,17320,17321,17322,17323,17324,17325,17326,17327,17328,17329,17330,17331,17332,17333,17334,17335,17336,17337,17338,17339,17340,17341,17342,17343,17344,17345,17346,17347,17348,17349,17350,17351,17352,17353,17354,17355,17356,17357,17358,17359,17360,17361,17362,17363,17364,17365,17366,17367,17368,17369,17370,17371,17372,17373,17374,17375,17376,17377,17378,17379,17380,17381,17382,17383,17384,17385,17386,17387,17388,17389,17390,17391,17392,17393,17394,17395,17396,17397,17398,17399,17400,17401,17402,17403,17404,17405,17406,17407,17408,17409,17410,17411,17412,17413,17414,17415,17416,17417,17418,17419,17420,17421,17422,17423,17424,17425,17426,17427,17428,17429,17430,17431,17432,17433,17434,17435,17436,17437,17438,17439,17440,17441,17442,17443,17444,17445,17446,17447,17448,17449,17450,17451,17452,17453,17454,17455,17456,17457,17458,17459,17460,17461,17462,17463,17464,17465,17466,17467,17468,17469,17470,17471,17472,17473,17474,17475,17476,17477,17478,17479,17480,17481,17482,17483,17484,17485,17486,17487,17488,17489,17490,17491,17492,17493,17494,17495,17496,17497,17498,17499,17500,17501,17502,17503,17504,17505,17506,17507,17508,17509,17510,17511,17512,17513,17514,17515,17516,17517,17518,17519,17520,17521,17522,17523,17524,17525,17526,17527,17528,17529,17530,17531,17532,17533,17534,17535,17536,17537,17538,17539,17540,17541,17542,17543,17544,17545,17546,17547,17548,17549,17550,17551,17552,17553,17554,17555,17556,17557,17558,17559,17560,17561,17562,17563,17564,17565,17566,17567,17568,17569,17570,17571,17572,17573,17574,17575,17576,17577,17578,17579,17580,17581,17582,17583,17584,17585,17586,17587,17588,17589,17590,17591,17592,17593,17594,17595,17596,17597,17598,17599,17600,17601,17602,17603,17604,17605,17606,17607,17608,17609,17610,17611,17612,17613,17614,17615,17616,17617,17618,17619,17620,17621,17622,17623,17624,17625,17626,17627,17628,17629,17630,17631,17632,17633,17634,17635,17636,17637,17638,17639,17640,17641,17642,17643,17644,17645,17646,17647,17648,17649,17650,17651,17652,17653,17654,17655,17656,17657,17658,17659,17660,17661,17662,17663,17664,17665,17666,17667,17668,17669,17670,17671,17672,17673,17674,17675,17676,17677,17678,17679,17680,17681,17682,17683,17684,17685,17686,17687,17688,17689,17690,17691,17692,17693,17694,17695,17696,17697,17698,17699,17700,17701,17702,17703,17704,17705,17706,17707,17708,17709,17710,17711,17712,17713,17714,17715,17716,17717,17718,17719,17720,17721,17722,17723,17724,17725,17726,17727,17728,17729,17730,17731,17732,17733,17734,17735,17736,17737,17738,17739,17740,17741,17742,17743,17744,17745,17746,17747,17748,17749,17750,17751,17752,17753,17754,17755,17756,17757,17758,17759,17760,17761,17762,17763,17764,17765,17766,17767,17768,17769,17770,17771,17772,17773,17774,17775,17776,17777,17778,17779,17780,17781,17782,17783,17784,17785,17786,17787,17788,17789,17790,17791,17792,17793,17794,17795,17796,17797,17798,17799,17800,17801,17802,17803,17804,17805,17806,17807,17808,17809,17810,17811,17812,17813,17814,17815,17816,17817,17818,17819,17820,17821,17822,17823,17824,17825,17826,17827,17828,17829,17830,17831,17832,17833,17834,17835,17836,17837,17838,17839,17840,17841,17842,17843,17844,17845,17846,17847,17848,17849,17850,17851,17852,17853,17854,17855,17856,17857,17858,17859,17860,17861,17862,17863,17864,17865,17866,17867,17868,17869,17870,17871,17872,17873,17874,17875,17876,17877,17878,17879,17880,17881,17882,17883,17884,17885,17886,17887,17888,17889,17890,17891,17892,17893,17894,17895,17896,17897,17898,17899,17900,17901,17902,17903,17904,17905,17906,17907,17908,17909,17910,17911,17912,17913,17914,17915,17916,17917,17918,17919,17920,17921,17922,17923,17924,17925,17926,17927,17928,17929,17930,17931,17932,17933,17934,17935,17936,17937,17938,17939,17940,17941,17942,17943,17944,17945,17946,17947,17948,17949,17950,17951,17952,17953,17954,17955,17956,17957,17958,17959,17960,17961,17962,17963,17964,17965,17966,17967,17968,17969,17970,17971,17972,17973,17974,17975,17976,17977,17978,17979,17980,17981,17982,17983,17984,17985,17986,17987,17988,17989,17990,17991,17992,17993,17994,17995,17996,17997,17998,17999,18000,18001,18002,18003,18004,18005,18006,18007,18008,18009,18010,18011,18012,18013,18014,18015,18016,18017,18018,18019,18020,18021,18022,18023,18024,18025,18026,18027,18028,18029,18030,18031,18032,18033,18034,18035,18036,18037,18038,18039,18040,18041,18042,18043,18044,18045,18046,18047,18048,18049,18050,18051,18052,18053,18054,18055,18056,18057,18058,18059,18060,18061,18062,18063,18064,18065,18066,18067,18068,18069,18070,18071,18072,18073,18074,18075,18076,18077,18078,18079,18080,18081,18082,18083,18084,18085,18086,18087,18088,18089,18090,18091,18092,18093,18094,18095,18096,18097,18098,18099,18100,18101,18102,18103,18104,18105,18106,18107,18108,18109,18110,18111,18112,18113,18114,18115,18116,18117,18118,18119,18120,18121,18122,18123,18124,18125,18126,18127,18128,18129,18130,18131,18132,18133,18134,18135,18136,18137,18138,18139,18140,18141,18142,18143,18144,18145,18146,18147,18148,18149,18150,18151,18152,18153,18154,18155,18156,18157,18158,18159,18160,18161,18162,18163,18164,18165,18166,18167,18168,18169,18170,18171,18172,18173,18174,18175,18176,18177,18178,18179,18180,18181,18182,18183,18184,18185,18186,18187,18188,18189,18190,18191,18192,18193,18194,18195,18196,18197,18198,18199,18200,18201,18202,18203,18204,18205,18206,18207,18208,18209,18210,18211,18212,18213,18214,18215,18216,18217,18218,18219,18220,18221,18222,18223,18224,18225,18226,18227,18228,18229,18230,18231,18232,18233,18234,18235,18236,18237,18238,18239,18240,18241,18242,18243,18244,18245,18246,18247,18248,18249,18250,18251,18252,18253,18254,18255,18256,18257,18258,18259,18260,18261,18262,18263,18264,18265,18266,18267,18268,18269,18270,18271,18272,18273,18274,18275,18276,18277,18278,18279,18280,18281,18282,18283,18284,18285,18286,18287,18288,18289,18290,18291,18292,18293,18294,18295,18296,18297,18298,18299,18300,18301,18302,18303,18304,18305,18306,18307,18308,18309,18310,18311,18312,18313,18314,18315,18316,18317,18318,18319,18320,18321,18322,18323,18324,18325,18326,18327,18328,18329,18330,18331,18332,18333,18334,18335,18336,18337,18338,18339,18340,18341,18342,18343,18344,18345,18346,18347,18348,18349,18350,18351,18352,18353,18354,18355,18356,18357,18358,18359,18360,18361,18362,18363,18364,18365,18366,18367,18368,18369,18370,18371,18372,18373,18374,18375,18376,18377,18378,18379,18380,18381,18382,18383,18384,18385,18386,18387,18388,18389,18390,18391,18392,18393,18394,18395,18396,18397,18398,18399,18400,18401,18402,18403,18404,18405,18406,18407,18408,18409,18410,18411,18412,18413,18414,18415,18416,18417,18418,18419,18420,18421,18422,18423,18424,18425,18426,18427,18428,18429,18430,18431,18432,18433,18434,18435,18436,18437,18438,18439,18440,18441,18442,18443,18444,18445,18446,18447,18448,18449,18450,18451,18452,18453,18454,18455,18456,18457,18458,18459,18460,18461,18462,18463,18464,18465,18466,18467,18468,18469,18470,18471,18472,18473,18474,18475,18476,18477,18478,18479,18480,18481,18482,18483,18484,18485,18486,18487,18488,18489,18490,18491,18492,18493,18494,18495,18496,18497,18498,18499,18500,18501,18502,18503,18504,18505,18506,18507,18508,18509,18510,18511,18512,18513,18514,18515,18516,18517,18518,18519,18520,18521,18522,18523,18524,18525,18526,18527,18528,18529,18530,18531,18532,18533,18534,18535,18536,18537,18538,18539,18540,18541,18542,18543,18544,18545,18546,18547,18548,18549,18550,18551,18552,18553,18554,18555,18556,18557,18558,18559,18560,18561,18562,18563,18564,18565,18566,18567,18568,18569,18570,18571,18572,18573,18574,18575,18576,18577,18578,18579,18580,18581,18582,18583,18584,18585,18586,18587,18588,18589,18590,18591,18592,18593,18594,18595,18596,18597,18598,18599,18600,18601,18602,18603,18604,18605,18606,18607,18608,18609,18610,18611,18612,18613,18614,18615,18616,18617,18618,18619,18620,18621,18622,18623,18624,18625,18626,18627,18628,18629,18630,18631,18632,18633,18634,18635,18636,18637,18638,18639,18640,18641,18642,18643,18644,18645,18646,18647,18648,18649,18650,18651,18652,18653,18654,18655,18656,18657,18658,18659,18660,18661,18662,18663,18664,18665,18666,18667,18668,18669,18670,18671,18672,18673,18674,18675,18676,18677,18678,18679,18680,18681,18682,18683,18684,18685,18686,18687,18688,18689,18690,18691,18692,18693,18694,18695,18696,18697,18698,18699,18700,18701,18702,18703,18704,18705,18706,18707,18708,18709,18710,18711,18712,18713,18714,18715,18716,18717,18718,18719,18720,18721,18722,18723,18724,18725,18726,18727,18728,18729,18730,18731,18732,18733,18734,18735,18736,18737,18738,18739,18740,18741,18742,18743,18744,18745,18746,18747,18748,18749,18750,18751,18752,18753,18754,18755,18756,18757,18758,18759,18760,18761,18762,18763,18764,18765,18766,18767,18768,18769,18770,18771,18772,18773,18774,18775,18776,18777,18778,18779,18780,18781,18782,18783,18784,18785,18786,18787,18788,18789,18790,18791,18792,18793,18794,18795,18796,18797,18798,18799,18800,18801,18802,18803,18804,18805,18806,18807,18808,18809,18810,18811,18812,18813,18814,18815,18816,18817,18818,18819,18820,18821,18822,18823,18824,18825,18826,18827,18828,18829,18830,18831,18832,18833,18834,18835,18836,18837,18838,18839,18840,18841,18842,18843,18844,18845,18846,18847,18848,18849,18850,18851,18852,18853,18854,18855,18856,18857,18858,18859,18860,18861,18862,18863,18864,18865,18866,18867,18868,18869,18870,18871,18872,18873,18874,18875,18876,18877,18878,18879,18880,18881,18882,18883,18884,18885,18886,18887,18888,18889,18890,18891,18892,18893,18894,18895,18896,18897,18898,18899,18900,18901,18902,18903,18904,18905,18906,18907,18908,18909,18910,18911,18912,18913,18914,18915,18916,18917,18918,18919,18920,18921,18922,18923,18924,18925,18926,18927,18928,18929,18930,18931,18932,18933,18934,18935,18936,18937,18938,18939,18940,18941,18942,18943,18944,18945,18946,18947,18948,18949,18950,18951,18952,18953,18954,18955,18956,18957,18958,18959,18960,18961,18962,18963,18964,18965,18966,18967,18968,18969,18970,18971,18972,18973,18974,18975,18976,18977,18978,18979,18980,18981,18982,18983,18984,18985,18986,18987,18988,18989,18990,18991,18992,18993,18994,18995,18996,18997,18998,18999,19000,19001,19002,19003,19004,19005,19006,19007,19008,19009,19010,19011,19012,19013,19014,19015,19016,19017,19018,19019,19020,19021,19022,19023,19024,19025,19026,19027,19028,19029,19030,19031,19032,19033,19034,19035,19036,19037,19038,19039,19040,19041,19042,19043,19044,19045,19046,19047,19048,19049,19050,19051,19052,19053,19054,19055,19056,19057,19058,19059,19060,19061,19062,19063,19064,19065,19066,19067,19068,19069,19070,19071,19072,19073,19074,19075,19076,19077,19078,19079,19080,19081,19082,19083,19084,19085,19086,19087,19088,19089,19090,19091,19092,19093,19094,19095,19096,19097,19098,19099,19100,19101,19102,19103,19104,19105,19106,19107,19108,19109,19110,19111,19112,19113,19114,19115,19116,19117,19118,19119,19120,19121,19122,19123,19124,19125,19126,19127,19128,19129,19130,19131,19132,19133,19134,19135,19136,19137,19138,19139,19140,19141,19142,19143,19144,19145,19146,19147,19148,19149,19150,19151,19152,19153,19154,19155,19156,19157,19158,19159,19160,19161,19162,19163,19164,19165,19166,19167,19168,19169,19170,19171,19172,19173,19174,19175,19176,19177,19178,19179,19180,19181,19182,19183,19184,19185,19186,19187,19188,19189,19190,19191,19192,19193,19194,19195,19196,19197,19198,19199,19200,19201,19202,19203,19204,19205,19206,19207,19208,19209,19210,19211,19212,19213,19214,19215,19216,19217,19218,19219,19220,19221,19222,19223,19224,19225,19226,19227,19228,19229,19230,19231,19232,19233,19234,19235,19236,19237,19238,19239,19240,19241,19242,19243,19244,19245,19246,19247,19248,19249,19250,19251,19252,19253,19254,19255,19256,19257,19258,19259,19260,19261,19262,19263,19264,19265,19266,19267,19268,19269,19270,19271,19272,19273,19274,19275,19276,19277,19278,19279,19280,19281,19282,19283,19284,19285,19286,19287,19288,19289,19290,19291,19292,19293,19294,19295,19296,19297,19298,19299,19300,19301,19302,19303,19304,19305,19306,19307,19308,19309,19310,19311,19312,19313,19314,19315,19316,19317,19318,19319,19320,19321,19322,19323,19324,19325,19326,19327,19328,19329,19330,19331,19332,19333,19334,19335,19336,19337,19338,19339,19340,19341,19342,19343,19344,19345,19346,19347,19348,19349,19350,19351,19352,19353,19354,19355,19356,19357,19358,19359,19360,19361,19362,19363,19364,19365,19366,19367,19368,19369,19370,19371,19372,19373,19374,19375,19376,19377,19378,19379,19380,19381,19382,19383,19384,19385,19386,19387,19388,19389,19390,19391,19392,19393,19394,19395,19396,19397,19398,19399,19400,19401,19402,19403,19404,19405,19406,19407,19408,19409,19410,19411,19412,19413,19414,19415,19416,19417,19418,19419,19420,19421,19422,19423,19424,19425,19426,19427,19428,19429,19430,19431,19432,19433,19434,19435,19436,19437,19438,19439,19440,19441,19442,19443,19444,19445,19446,19447,19448,19449,19450,19451,19452,19453,19454,19455,19456,19457,19458,19459,19460,19461,19462,19463,19464,19465,19466,19467,19468,19469,19470,19471,19472,19473,19474,19475,19476,19477,19478,19479,19480,19481,19482,19483,19484,19485,19486,19487,19488,19489,19490,19491,19492,19493,19494,19495,19496,19497,19498,19499,19500,19501,19502,19503,19504,19505,19506,19507,19508,19509,19510,19511,19512,19513,19514,19515,19516,19517,19518,19519,19520,19521,19522,19523,19524,19525,19526,19527,19528,19529,19530,19531,19532,19533,19534,19535,19536,19537,19538,19539,19540,19541,19542,19543,19544,19545,19546,19547,19548,19549,19550,19551,19552,19553,19554,19555,19556,19557,19558,19559,19560,19561,19562,19563,19564,19565,19566,19567,19568,19569,19570,19571,19572,19573,19574,19575,19576,19577,19578,19579,19580,19581,19582,19583,19584,19585,19586,19587,19588,19589,19590,19591,19592,19593,19594,19595,19596,19597,19598,19599,19600,19601,19602,19603,19604,19605,19606,19607,19608,19609,19610,19611,19612,19613,19614,19615,19616,19617,19618,19619,19620,19621,19622,19623,19624,19625,19626,19627,19628,19629,19630,19631,19632,19633,19634,19635,19636,19637,19638,19639,19640,19641,19642,19643,19644,19645,19646,19647,19648,19649,19650,19651,19652,19653,19654,19655,19656,19657,19658,19659,19660,19661,19662,19663,19664,19665,19666,19667,19668,19669,19670,19671,19672,19673,19674,19675,19676,19677,19678,19679,19680,19681,19682,19683,19684,19685,19686,19687,19688,19689,19690,19691,19692,19693,19694,19695,19696,19697,19698,19699,19700,19701,19702,19703,19704,19705,19706,19707,19708,19709,19710,19711,19712,19713,19714,19715,19716,19717,19718,19719,19720,19721,19722,19723,19724,19725,19726,19727,19728,19729,19730,19731,19732,19733,19734,19735,19736,19737,19738,19739,19740,19741,19742,19743,19744,19745,19746,19747,19748,19749,19750,19751,19752,19753,19754,19755,19756,19757,19758,19759,19760,19761,19762,19763,19764,19765,19766,19767,19768,19769,19770,19771,19772,19773,19774,19775,19776,19777,19778,19779,19780,19781,19782,19783,19784,19785,19786,19787,19788,19789,19790,19791,19792,19793,19794,19795,19796,19797,19798,19799,19800,19801,19802,19803,19804,19805,19806,19807,19808,19809,19810,19811,19812,19813,19814,19815,19816,19817,19818,19819,19820,19821,19822,19823,19824,19825,19826,19827,19828,19829,19830,19831,19832,19833,19834,19835,19836,19837,19838,19839,19840,19841,19842,19843,19844,19845,19846,19847,19848,19849,19850,19851,19852,19853,19854,19855,19856,19857,19858,19859,19860,19861,19862,19863,19864,19865,19866,19867,19868,19869,19870,19871,19872,19873,19874,19875,19876,19877,19878,19879,19880,19881,19882,19883,19884,19885,19886,19887,19888,19889,19890,19891,19892,19893,19894,19895,19896,19897,19898,19899,19900,19901,19902,19903,19904,19905,19906,19907,19908,19909,19910,19911,19912,19913,19914,19915,19916,19917,19918,19919,19920,19921,19922,19923,19924,19925,19926,19927,19928,19929,19930,19931,19932,19933,19934,19935,19936,19937,19938,19939,19940,19941,19942,19943,19944,19945,19946,19947,19948,19949,19950,19951,19952,19953,19954,19955,19956,19957,19958,19959,19960,19961,19962,19963,19964,19965,19966,19967,19968,19969,19970,19971,19972,19973,19974,19975,19976,19977,19978,19979,19980,19981,19982,19983,19984,19985,19986,19987,19988,19989,19990,19991,19992,19993,19994,19995,19996,19997,19998,19999,20000,20001,20002,20003,20004,20005,20006,20007,20008,20009,20010,20011,20012,20013,20014,20015,20016,20017,20018,20019,20020,20021,20022,20023,20024,20025,20026,20027,20028,20029,20030,20031,20032,20033,20034,20035,20036,20037,20038,20039,20040,20041,20042,20043,20044,20045,20046,20047,20048,20049,20050,20051,20052,20053,20054,20055,20056,20057,20058,20059,20060,20061,20062,20063,20064,20065,20066,20067,20068,20069,20070,20071,20072,20073,20074,20075,20076,20077,20078,20079,20080,20081,20082,20083,20084,20085,20086,20087,20088,20089,20090,20091,20092,20093,20094,20095,20096,20097,20098,20099,20100,20101,20102,20103,20104,20105,20106,20107,20108,20109,20110,20111,20112,20113,20114,20115,20116,20117,20118,20119,20120,20121,20122,20123,20124,20125,20126,20127,20128,20129,20130,20131,20132,20133,20134,20135,20136,20137,20138,20139,20140,20141,20142,20143,20144,20145,20146,20147,20148,20149,20150,20151,20152,20153,20154,20155,20156,20157,20158,20159,20160,20161,20162,20163,20164,20165,20166,20167,20168,20169,20170,20171,20172,20173,20174,20175,20176,20177,20178,20179,20180,20181,20182,20183,20184,20185,20186,20187,20188,20189,20190,20191,20192,20193,20194,20195,20196,20197,20198,20199,20200,20201,20202,20203,20204,20205,20206,20207,20208,20209,20210,20211,20212,20213,20214,20215,20216,20217,20218,20219,20220,20221,20222,20223,20224,20225,20226,20227,20228,20229,20230,20231,20232,20233,20234,20235,20236,20237,20238,20239,20240,20241,20242,20243,20244,20245,20246,20247,20248,20249,20250,20251,20252,20253,20254,20255,20256,20257,20258,20259,20260,20261,20262,20263,20264,20265,20266,20267,20268,20269,20270,20271,20272,20273,20274,20275,20276,20277,20278,20279,20280,20281,20282,20283,20284,20285,20286,20287,20288,20289,20290,20291,20292,20293,20294,20295,20296,20297,20298,20299,20300,20301,20302,20303,20304,20305,20306,20307,20308,20309,20310,20311,20312,20313,20314,20315,20316,20317,20318,20319,20320,20321,20322,20323,20324,20325,20326,20327,20328,20329,20330,20331,20332,20333,20334,20335,20336,20337,20338,20339,20340,20341,20342,20343,20344,20345,20346,20347,20348,20349,20350,20351,20352,20353,20354,20355,20356,20357,20358,20359,20360,20361,20362,20363,20364,20365,20366,20367,20368,20369,20370,20371,20372,20373,20374,20375,20376,20377,20378,20379,20380,20381,20382,20383,20384,20385,20386,20387,20388,20389,20390,20391,20392,20393,20394,20395,20396,20397,20398,20399,20400,20401,20402,20403,20404,20405,20406,20407,20408,20409,20410,20411,20412,20413,20414,20415,20416,20417,20418,20419,20420,20421,20422,20423,20424,20425,20426,20427,20428,20429,20430,20431,20432,20433,20434,20435,20436,20437,20438,20439,20440,20441,20442,20443,20444,20445,20446,20447,20448,20449,20450,20451,20452,20453,20454,20455,20456,20457,20458,20459,20460,20461,20462,20463,20464,20465,20466,20467,20468,20469,20470,20471,20472,20473,20474,20475,20476,20477,20478,20479,20480,20481,20482,20483,20484,20485,20486,20487,20488,20489,20490,20491,20492,20493,20494,20495,20496,20497,20498,20499,20500,20501,20502,20503,20504,20505,20506,20507,20508,20509,20510,20511,20512,20513,20514,20515,20516,20517,20518,20519,20520,20521,20522,20523,20524,20525,20526,20527,20528,20529,20530,20531,20532,20533,20534,20535,20536,20537,20538,20539,20540,20541,20542,20543,20544,20545,20546,20547,20548,20549,20550,20551,20552,20553,20554,20555,20556,20557,20558,20559,20560,20561,20562,20563,20564,20565,20566,20567,20568,20569,20570,20571,20572,20573,20574,20575,20576,20577,20578,20579,20580,20581,20582,20583,20584,20585,20586,20587,20588,20589,20590,20591,20592,20593,20594,20595,20596,20597,20598,20599,20600,20601,20602,20603,20604,20605,20606,20607,20608,20609,20610,20611,20612,20613,20614,20615,20616,20617,20618,20619,20620,20621,20622,20623,20624,20625,20626,20627,20628,20629,20630,20631,20632,20633,20634,20635,20636,20637,20638,20639,20640,20641,20642,20643,20644,20645,20646,20647,20648,20649,20650,20651,20652,20653,20654,20655,20656,20657,20658,20659,20660,20661,20662,20663,20664,20665,20666,20667,20668,20669,20670,20671,20672,20673,20674,20675,20676,20677,20678,20679,20680,20681,20682,20683,20684,20685,20686,20687,20688,20689,20690,20691,20692,20693,20694,20695,20696,20697,20698,20699,20700,20701,20702,20703,20704,20705,20706,20707,20708,20709,20710,20711,20712,20713,20714,20715,20716,20717,20718,20719,20720,20721,20722,20723,20724,20725,20726,20727,20728,20729,20730,20731,20732,20733,20734,20735,20736,20737,20738,20739,20740,20741,20742,20743,20744,20745,20746,20747,20748,20749,20750,20751,20752,20753,20754,20755,20756,20757,20758,20759,20760,20761,20762,20763,20764,20765,20766,20767,20768,20769,20770,20771,20772,20773,20774,20775,20776,20777,20778,20779,20780,20781,20782,20783,20784,20785,20786,20787,20788,20789,20790,20791,20792,20793,20794,20795,20796,20797,20798,20799,20800,20801,20802,20803,20804,20805,20806,20807,20808,20809,20810,20811,20812,20813,20814,20815,20816,20817,20818,20819,20820,20821,20822,20823,20824,20825,20826,20827,20828,20829,20830,20831,20832,20833,20834,20835,20836,20837,20838,20839,20840,20841,20842,20843,20844,20845,20846,20847,20848,20849,20850,20851,20852,20853,20854,20855,20856,20857,20858,20859,20860,20861,20862,20863,20864,20865,20866,20867,20868,20869,20870,20871,20872,20873,20874,20875,20876,20877,20878,20879,20880,20881,20882,20883,20884,20885,20886,20887,20888,20889,20890,20891,20892,20893,20894,20895,20896,20897,20898,20899,20900,20901,20902,20903,20904,20905,20906,20907,20908,20909,20910,20911,20912,20913,20914,20915,20916,20917,20918,20919,20920,20921,20922,20923,20924,20925,20926,20927,20928,20929,20930,20931,20932,20933,20934,20935,20936,20937,20938,20939,20940,20941,20942,20943,20944,20945,20946,20947,20948,20949,20950,20951,20952,20953,20954,20955,20956,20957,20958,20959,20960,20961,20962,20963,20964,20965,20966,20967,20968,20969,20970,20971,20972,20973,20974,20975,20976,20977,20978,20979,20980,20981,20982,20983,20984,20985,20986,20987,20988,20989,20990,20991,20992,20993,20994,20995,20996,20997,20998,20999,21000,21001,21002,21003,21004,21005,21006,21007,21008,21009,21010,21011,21012,21013,21014,21015,21016,21017,21018,21019,21020,21021,21022,21023,21024,21025,21026,21027,21028,21029,21030,21031,21032,21033,21034,21035,21036,21037,21038,21039,21040,21041,21042,21043,21044,21045,21046,21047,21048,21049,21050,21051,21052,21053,21054,21055,21056,21057,21058,21059,21060,21061,21062,21063,21064,21065,21066,21067,21068,21069,21070,21071,21072,21073,21074,21075,21076,21077,21078,21079,21080,21081,21082,21083,21084,21085,21086,21087,21088,21089,21090,21091,21092,21093,21094,21095,21096,21097,21098,21099,21100,21101,21102,21103,21104,21105,21106,21107,21108,21109,21110,21111,21112,21113,21114,21115,21116,21117,21118,21119,21120,21121,21122,21123,21124,21125,21126,21127,21128,21129,21130,21131,21132,21133,21134,21135,21136,21137,21138,21139,21140,21141,21142,21143,21144,21145,21146,21147,21148,21149,21150,21151,21152,21153,21154,21155,21156,21157,21158,21159,21160,21161,21162,21163,21164,21165,21166,21167,21168,21169,21170,21171,21172,21173,21174,21175,21176,21177,21178,21179,21180,21181,21182,21183,21184,21185,21186,21187,21188,21189,21190,21191,21192,21193,21194,21195,21196,21197,21198,21199,21200,21201,21202,21203,21204,21205,21206,21207,21208,21209,21210,21211,21212,21213,21214,21215,21216,21217,21218,21219,21220,21221,21222,21223,21224,21225,21226,21227,21228,21229,21230,21231,21232,21233,21234,21235,21236,21237,21238,21239,21240,21241,21242,21243,21244,21245,21246,21247,21248,21249,21250,21251,21252,21253,21254,21255,21256,21257,21258,21259,21260,21261,21262,21263,21264,21265,21266,21267,21268,21269,21270,21271,21272,21273,21274,21275,21276,21277,21278,21279,21280,21281,21282,21283,21284,21285,21286,21287,21288,21289,21290,21291,21292,21293,21294,21295,21296,21297,21298,21299,21300,21301,21302,21303,21304,21305,21306,21307,21308,21309,21310,21311,21312,21313,21314,21315,21316,21317,21318,21319,21320,21321,21322,21323,21324,21325,21326,21327,21328,21329,21330,21331,21332,21333,21334,21335,21336,21337,21338,21339,21340,21341,21342,21343,21344,21345,21346,21347,21348,21349,21350,21351,21352,21353,21354,21355,21356,21357,21358,21359,21360,21361,21362,21363,21364,21365,21366,21367,21368,21369,21370,21371,21372,21373,21374,21375,21376,21377,21378,21379,21380,21381,21382,21383,21384,21385,21386,21387,21388,21389,21390,21391,21392,21393,21394,21395,21396,21397,21398,21399,21400,21401,21402,21403,21404,21405,21406,21407,21408,21409,21410,21411,21412,21413,21414,21415,21416,21417,21418,21419,21420,21421,21422,21423,21424,21425,21426,21427,21428,21429,21430,21431,21432,21433,21434,21435,21436,21437,21438,21439,21440,21441,21442,21443,21444,21445,21446,21447,21448,21449,21450,21451,21452,21453,21454,21455,21456,21457,21458,21459,21460,21461,21462,21463,21464,21465,21466,21467,21468,21469,21470,21471,21472,21473,21474,21475,21476,21477,21478,21479,21480,21481,21482,21483,21484,21485,21486,21487,21488,21489,21490,21491,21492,21493,21494,21495,21496,21497,21498,21499,21500,21501,21502,21503,21504,21505,21506,21507,21508,21509,21510,21511,21512,21513,21514,21515,21516,21517,21518,21519,21520,21521,21522,21523,21524,21525,21526,21527,21528,21529,21530,21531,21532,21533,21534,21535,21536,21537,21538,21539,21540,21541,21542,21543,21544,21545,21546,21547,21548,21549,21550,21551,21552,21553,21554,21555,21556,21557,21558,21559,21560,21561,21562,21563,21564,21565,21566,21567,21568,21569,21570,21571,21572,21573,21574,21575,21576,21577,21578,21579,21580,21581,21582,21583,21584,21585,21586,21587,21588,21589,21590,21591,21592,21593,21594,21595,21596,21597,21598,21599,21600,21601,21602,21603,21604,21605,21606,21607,21608,21609,21610,21611,21612,21613,21614,21615,21616,21617,21618,21619,21620,21621,21622,21623,21624,21625,21626,21627,21628,21629,21630,21631,21632,21633,21634,21635,21636,21637,21638,21639,21640,21641,21642,21643,21644,21645,21646,21647,21648,21649,21650,21651,21652,21653,21654,21655,21656,21657,21658,21659,21660,21661,21662,21663,21664,21665,21666,21667,21668,21669,21670,21671,21672,21673,21674,21675,21676,21677,21678,21679,21680,21681,21682,21683,21684,21685,21686,21687,21688,21689,21690,21691,21692,21693,21694,21695,21696,21697,21698,21699,21700,21701,21702,21703,21704,21705,21706,21707,21708,21709,21710,21711,21712,21713,21714,21715,21716,21717,21718,21719,21720,21721,21722,21723,21724,21725,21726,21727,21728,21729,21730,21731,21732,21733,21734,21735,21736,21737,21738,21739,21740,21741,21742,21743,21744,21745,21746,21747,21748,21749,21750,21751,21752,21753,21754,21755,21756,21757,21758,21759,21760,21761,21762,21763,21764,21765,21766,21767,21768,21769,21770,21771,21772,21773,21774,21775,21776,21777,21778,21779,21780,21781,21782,21783,21784,21785,21786,21787,21788,21789,21790,21791,21792,21793,21794,21795,21796,21797,21798,21799,21800,21801,21802,21803,21804,21805,21806,21807,21808,21809,21810,21811,21812,21813,21814,21815,21816,21817,21818,21819,21820,21821,21822,21823,21824,21825,21826,21827,21828,21829,21830,21831,21832,21833,21834,21835,21836,21837,21838,21839,21840,21841,21842,21843,21844,21845,21846,21847,21848,21849,21850,21851,21852,21853,21854,21855,21856,21857,21858,21859,21860,21861,21862,21863,21864,21865,21866,21867,21868,21869,21870,21871,21872,21873,21874,21875,21876,21877,21878,21879,21880,21881,21882,21883,21884,21885,21886,21887,21888,21889,21890,21891,21892,21893,21894,21895,21896,21897,21898,21899,21900,21901,21902,21903,21904,21905,21906,21907,21908,21909,21910,21911,21912,21913,21914,21915,21916,21917,21918,21919,21920,21921,21922,21923,21924,21925,21926,21927,21928,21929,21930,21931,21932,21933,21934,21935,21936,21937,21938,21939,21940,21941,21942,21943,21944,21945,21946,21947,21948,21949,21950,21951,21952,21953,21954,21955,21956,21957,21958,21959,21960,21961,21962,21963,21964,21965,21966,21967,21968,21969,21970,21971,21972,21973,21974,21975,21976,21977,21978,21979,21980,21981,21982,21983,21984,21985,21986,21987,21988,21989,21990,21991,21992,21993,21994,21995,21996,21997,21998,21999,22000,22001,22002,22003,22004,22005,22006,22007,22008,22009,22010,22011,22012,22013,22014,22015,22016,22017,22018,22019,22020,22021,22022,22023,22024,22025,22026,22027,22028,22029,22030,22031,22032,22033,22034,22035,22036,22037,22038,22039,22040,22041,22042,22043,22044,22045,22046,22047,22048,22049,22050,22051,22052,22053,22054,22055,22056,22057,22058,22059,22060,22061,22062,22063,22064,22065,22066,22067,22068,22069,22070,22071,22072,22073,22074,22075,22076,22077,22078,22079,22080,22081,22082,22083,22084,22085,22086,22087,22088,22089,22090,22091,22092,22093,22094,22095,22096,22097,22098,22099,22100,22101,22102,22103,22104,22105,22106,22107,22108,22109,22110,22111,22112,22113,22114,22115,22116,22117,22118,22119,22120,22121,22122,22123,22124,22125,22126,22127,22128,22129,22130,22131,22132,22133,22134,22135,22136,22137,22138,22139,22140,22141,22142,22143,22144,22145,22146,22147,22148,22149,22150,22151,22152,22153,22154,22155,22156,22157,22158,22159,22160,22161,22162,22163,22164,22165,22166,22167,22168,22169,22170,22171,22172,22173,22174,22175,22176,22177,22178,22179,22180,22181,22182,22183,22184,22185,22186,22187,22188,22189,22190,22191,22192,22193,22194,22195,22196,22197,22198,22199,22200,22201,22202,22203,22204,22205,22206,22207,22208,22209,22210,22211,22212,22213,22214,22215,22216,22217,22218,22219,22220,22221,22222,22223,22224,22225,22226,22227,22228,22229,22230,22231,22232,22233,22234,22235,22236,22237,22238,22239,22240,22241,22242,22243,22244,22245,22246,22247,22248,22249,22250,22251,22252,22253,22254,22255,22256,22257,22258,22259,22260,22261,22262,22263,22264,22265,22266,22267,22268,22269,22270,22271,22272,22273,22274,22275,22276,22277,22278,22279,22280,22281,22282,22283,22284,22285,22286,22287,22288,22289,22290,22291,22292,22293,22294,22295,22296,22297,22298,22299,22300,22301,22302,22303,22304,22305,22306,22307,22308,22309,22310,22311,22312,22313,22314,22315,22316,22317,22318,22319,22320,22321,22322,22323,22324,22325,22326,22327,22328,22329,22330,22331,22332,22333,22334,22335,22336,22337,22338,22339,22340,22341,22342,22343,22344,22345,22346,22347,22348,22349,22350,22351,22352,22353,22354,22355,22356,22357,22358,22359,22360,22361,22362,22363,22364,22365,22366,22367,22368,22369,22370,22371,22372,22373,22374,22375,22376,22377,22378,22379,22380,22381,22382,22383,22384,22385,22386,22387,22388,22389,22390,22391,22392,22393,22394,22395,22396,22397,22398,22399,22400,22401,22402,22403,22404,22405,22406,22407,22408,22409,22410,22411,22412,22413,22414,22415,22416,22417,22418,22419,22420,22421,22422,22423,22424,22425,22426,22427,22428,22429,22430,22431,22432,22433,22434,22435,22436,22437,22438,22439,22440,22441,22442,22443,22444,22445,22446,22447,22448,22449,22450,22451,22452,22453,22454,22455,22456,22457,22458,22459,22460,22461,22462,22463,22464,22465,22466,22467,22468,22469,22470,22471,22472,22473,22474,22475,22476,22477,22478,22479,22480,22481,22482,22483,22484,22485,22486,22487,22488,22489,22490,22491,22492,22493,22494,22495,22496,22497,22498,22499,22500,22501,22502,22503,22504,22505,22506,22507,22508,22509,22510,22511,22512,22513,22514,22515,22516,22517,22518,22519,22520,22521,22522,22523,22524,22525,22526,22527,22528,22529,22530,22531,22532,22533,22534,22535,22536,22537,22538,22539,22540,22541,22542,22543,22544,22545,22546,22547,22548,22549,22550,22551,22552,22553,22554,22555,22556,22557,22558,22559,22560,22561,22562,22563,22564,22565,22566,22567,22568,22569,22570,22571,22572,22573,22574,22575,22576,22577,22578,22579,22580,22581,22582,22583,22584,22585,22586,22587,22588,22589,22590,22591,22592,22593,22594,22595,22596,22597,22598,22599,22600,22601,22602,22603,22604,22605,22606,22607,22608,22609,22610,22611,22612,22613,22614,22615,22616,22617,22618,22619,22620,22621,22622,22623,22624,22625,22626,22627,22628,22629,22630,22631,22632,22633,22634,22635,22636,22637,22638,22639,22640,22641,22642,22643,22644,22645,22646,22647,22648,22649,22650,22651,22652,22653,22654,22655,22656,22657,22658,22659,22660,22661,22662,22663,22664,22665,22666,22667,22668,22669,22670,22671,22672,22673,22674,22675,22676,22677,22678,22679,22680,22681,22682,22683,22684,22685,22686,22687,22688,22689,22690,22691,22692,22693,22694,22695,22696,22697,22698,22699,22700,22701,22702,22703,22704,22705,22706,22707,22708,22709,22710,22711,22712,22713,22714,22715,22716,22717,22718,22719,22720,22721,22722,22723,22724,22725,22726,22727,22728,22729,22730,22731,22732,22733,22734,22735,22736,22737,22738,22739,22740,22741,22742,22743,22744,22745,22746,22747,22748,22749,22750,22751,22752,22753,22754,22755,22756,22757,22758,22759,22760,22761,22762,22763,22764,22765,22766,22767,22768,22769,22770,22771,22772,22773,22774,22775,22776,22777,22778,22779,22780,22781,22782,22783,22784,22785,22786,22787,22788,22789,22790,22791,22792,22793,22794,22795,22796,22797,22798,22799,22800,22801,22802,22803,22804,22805,22806,22807,22808,22809,22810,22811,22812,22813,22814,22815,22816,22817,22818,22819,22820,22821,22822,22823,22824,22825,22826,22827,22828,22829,22830,22831,22832,22833,22834,22835,22836,22837,22838,22839,22840,22841,22842,22843,22844,22845,22846,22847,22848,22849,22850,22851,22852,22853,22854,22855,22856,22857,22858,22859,22860,22861,22862,22863,22864,22865,22866,22867,22868,22869,22870,22871,22872,22873,22874,22875,22876,22877,22878,22879,22880,22881,22882,22883,22884,22885,22886,22887,22888,22889,22890,22891,22892,22893,22894,22895,22896,22897,22898,22899,22900,22901,22902,22903,22904,22905,22906,22907,22908,22909,22910,22911,22912,22913,22914,22915,22916,22917,22918,22919,22920,22921,22922,22923,22924,22925,22926,22927,22928,22929,22930,22931,22932,22933,22934,22935,22936,22937,22938,22939,22940,22941,22942,22943,22944,22945,22946,22947,22948,22949,22950,22951,22952,22953,22954,22955,22956,22957,22958,22959,22960,22961,22962,22963,22964,22965,22966,22967,22968,22969,22970,22971,22972,22973,22974,22975,22976,22977,22978,22979,22980,22981,22982,22983,22984,22985,22986,22987,22988,22989,22990,22991,22992,22993,22994,22995,22996,22997,22998,22999,23000,23001,23002,23003,23004,23005,23006,23007,23008,23009,23010,23011,23012,23013,23014,23015,23016,23017,23018,23019,23020,23021,23022,23023,23024,23025,23026,23027,23028,23029,23030,23031,23032,23033,23034,23035,23036,23037,23038,23039,23040,23041,23042,23043,23044,23045,23046,23047,23048,23049,23050,23051,23052,23053,23054,23055,23056,23057,23058,23059,23060,23061,23062,23063,23064,23065,23066,23067,23068,23069,23070,23071,23072,23073,23074,23075,23076,23077,23078,23079,23080,23081,23082,23083,23084,23085,23086,23087,23088,23089,23090,23091,23092,23093,23094,23095,23096,23097,23098,23099,23100,23101,23102,23103,23104,23105,23106,23107,23108,23109,23110,23111,23112,23113,23114,23115,23116,23117,23118,23119,23120,23121,23122,23123,23124,23125,23126,23127,23128,23129,23130,23131,23132,23133,23134,23135,23136,23137,23138,23139,23140,23141,23142,23143,23144,23145,23146,23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23161,23162,23163,23164,23165,23166,23167,23168,23169,23170,23171,23172,23173,23174,23175,23176,23177,23178,23179,23180,23181,23182,23183,23184,23185,23186,23187,23188,23189,23190,23191,23192,23193,23194,23195,23196,23197,23198,23199,23200,23201,23202,23203,23204,23205,23206,23207,23208,23209,23210,23211,23212,23213,23214,23215,23216,23217,23218,23219,23220,23221,23222,23223,23224,23225,23226,23227,23228,23229,23230,23231,23232,23233,23234,23235,23236,23237,23238,23239,23240,23241,23242,23243,23244,23245,23246,23247,23248,23249,23250,23251,23252,23253,23254,23255,23256,23257,23258,23259,23260,23261,23262,23263,23264,23265,23266,23267,23268,23269,23270,23271,23272,23273,23274,23275,23276,23277,23278,23279,23280,23281,23282,23283,23284,23285,23286,23287,23288,23289,23290,23291,23292,23293,23294,23295,23296,23297,23298,23299,23300,23301,23302,23303,23304,23305,23306,23307,23308,23309,23310,23311,23312,23313,23314,23315,23316,23317,23318,23319,23320,23321,23322,23323,23324,23325,23326,23327,23328,23329,23330,23331,23332,23333,23334,23335,23336,23337,23338,23339,23340,23341,23342,23343,23344,23345,23346,23347,23348,23349,23350,23351,23352,23353,23354,23355,23356,23357,23358,23359,23360,23361,23362,23363,23364,23365,23366,23367,23368,23369,23370,23371,23372,23373,23374,23375,23376,23377,23378,23379,23380,23381,23382,23383,23384,23385,23386,23387,23388,23389,23390,23391,23392,23393,23394,23395,23396,23397,23398,23399,23400,23401,23402,23403,23404,23405,23406,23407,23408,23409,23410,23411,23412,23413,23414,23415,23416,23417,23418,23419,23420,23421,23422,23423,23424,23425,23426,23427,23428,23429,23430,23431,23432,23433,23434,23435,23436,23437,23438,23439,23440,23441,23442,23443,23444,23445,23446,23447,23448,23449,23450,23451,23452,23453,23454,23455,23456,23457,23458,23459,23460,23461,23462,23463,23464,23465,23466,23467,23468,23469,23470,23471,23472,23473,23474,23475,23476,23477,23478,23479,23480,23481,23482,23483,23484,23485,23486,23487,23488,23489,23490,23491,23492,23493,23494,23495,23496,23497,23498,23499,23500,23501,23502,23503,23504,23505,23506,23507,23508,23509,23510,23511,23512,23513,23514,23515,23516,23517,23518,23519,23520,23521,23522,23523,23524,23525,23526,23527,23528,23529,23530,23531,23532,23533,23534,23535,23536,23537,23538,23539,23540,23541,23542,23543,23544,23545,23546,23547,23548,23549,23550,23551,23552,23553,23554,23555,23556,23557,23558,23559,23560,23561,23562,23563,23564,23565,23566,23567,23568,23569,23570,23571,23572,23573,23574,23575,23576,23577,23578,23579,23580,23581,23582,23583,23584,23585,23586,23587,23588,23589,23590,23591,23592,23593,23594,23595,23596,23597,23598,23599,23600,23601,23602,23603,23604,23605,23606,23607,23608,23609,23610,23611,23612,23613,23614,23615,23616,23617,23618,23619,23620,23621,23622,23623,23624,23625,23626,23627,23628,23629,23630,23631,23632,23633,23634,23635,23636,23637,23638,23639,23640,23641,23642,23643,23644,23645,23646,23647,23648,23649,23650,23651,23652,23653,23654,23655,23656,23657,23658,23659,23660,23661,23662,23663,23664,23665,23666,23667,23668,23669,23670,23671,23672,23673,23674,23675,23676,23677,23678,23679,23680,23681,23682,23683,23684,23685,23686,23687,23688,23689,23690,23691,23692,23693,23694,23695,23696,23697,23698,23699,23700,23701,23702,23703,23704,23705,23706,23707,23708,23709,23710,23711,23712,23713,23714,23715,23716,23717,23718,23719,23720,23721,23722,23723,23724,23725,23726,23727,23728,23729,23730,23731,23732,23733,23734,23735,23736,23737,23738,23739,23740,23741,23742,23743,23744,23745,23746,23747,23748,23749,23750,23751,23752,23753,23754,23755,23756,23757,23758,23759,23760,23761,23762,23763,23764,23765,23766,23767,23768,23769,23770,23771,23772,23773,23774,23775,23776,23777,23778,23779,23780,23781,23782,23783,23784,23785,23786,23787,23788,23789,23790,23791,23792,23793,23794,23795,23796,23797,23798,23799,23800,23801,23802,23803,23804,23805,23806,23807,23808,23809,23810,23811,23812,23813,23814,23815,23816,23817,23818,23819,23820,23821,23822,23823,23824,23825,23826,23827,23828,23829,23830,23831,23832,23833,23834,23835,23836,23837,23838,23839,23840,23841,23842,23843,23844,23845,23846,23847,23848,23849,23850,23851,23852,23853,23854,23855,23856,23857,23858,23859,23860,23861,23862,23863,23864,23865,23866,23867,23868,23869,23870,23871,23872,23873,23874,23875,23876,23877,23878,23879,23880,23881,23882,23883,23884,23885,23886,23887,23888,23889,23890,23891,23892,23893,23894,23895,23896,23897,23898,23899,23900,23901,23902,23903,23904,23905,23906,23907,23908,23909,23910,23911,23912,23913,23914,23915,23916,23917,23918,23919,23920,23921,23922,23923,23924,23925,23926,23927,23928,23929,23930,23931,23932,23933,23934,23935,23936,23937,23938,23939,23940,23941,23942,23943,23944,23945,23946,23947,23948,23949,23950,23951,23952,23953,23954,23955,23956,23957,23958,23959,23960,23961,23962,23963,23964,23965,23966,23967,23968,23969,23970,23971,23972,23973,23974,23975,23976,23977,23978,23979,23980,23981,23982,23983,23984,23985,23986,23987,23988,23989,23990,23991,23992,23993,23994,23995,23996,23997,23998,23999,24000,24001,24002,24003,24004,24005,24006,24007,24008,24009,24010,24011,24012,24013,24014,24015,24016,24017,24018,24019,24020,24021,24022,24023,24024,24025,24026,24027,24028,24029,24030,24031,24032,24033,24034,24035,24036,24037,24038,24039,24040,24041,24042,24043,24044,24045,24046,24047,24048,24049,24050,24051,24052,24053,24054,24055,24056,24057,24058,24059,24060,24061,24062,24063,24064,24065,24066,24067,24068,24069,24070,24071,24072,24073,24074,24075,24076,24077,24078,24079,24080,24081,24082,24083,24084,24085,24086,24087,24088,24089,24090,24091,24092,24093,24094,24095,24096,24097,24098,24099,24100,24101,24102,24103,24104,24105,24106,24107,24108,24109,24110,24111,24112,24113,24114,24115,24116,24117,24118,24119,24120,24121,24122,24123,24124,24125,24126,24127,24128,24129,24130,24131,24132,24133,24134,24135,24136,24137,24138,24139,24140,24141,24142,24143,24144,24145,24146,24147,24148,24149,24150,24151,24152,24153,24154,24155,24156,24157,24158,24159,24160,24161,24162,24163,24164,24165,24166,24167,24168,24169,24170,24171,24172,24173,24174,24175,24176,24177,24178,24179,24180,24181,24182,24183,24184,24185,24186,24187,24188,24189,24190,24191,24192,24193,24194,24195,24196,24197,24198,24199,24200,24201,24202,24203,24204,24205,24206,24207,24208,24209,24210,24211,24212,24213,24214,24215,24216,24217,24218,24219,24220,24221,24222,24223,24224,24225,24226,24227,24228,24229,24230,24231,24232,24233,24234,24235,24236,24237,24238,24239,24240,24241,24242,24243,24244,24245,24246,24247,24248,24249,24250,24251,24252,24253,24254,24255,24256,24257,24258,24259,24260,24261,24262,24263,24264,24265,24266,24267,24268,24269,24270,24271,24272,24273,24274,24275,24276,24277,24278,24279,24280,24281,24282,24283,24284,24285,24286,24287,24288,24289,24290,24291,24292,24293,24294,24295,24296,24297,24298,24299,24300,24301,24302,24303,24304,24305,24306,24307,24308,24309,24310,24311,24312,24313,24314,24315,24316,24317,24318,24319,24320,24321,24322,24323,24324,24325,24326,24327,24328,24329,24330,24331,24332,24333,24334,24335,24336,24337,24338,24339,24340,24341,24342,24343,24344,24345,24346,24347,24348,24349,24350,24351,24352,24353,24354,24355,24356,24357,24358,24359,24360,24361,24362,24363,24364,24365,24366,24367,24368,24369,24370,24371,24372,24373,24374,24375,24376,24377,24378,24379,24380,24381,24382,24383,24384,24385,24386,24387,24388,24389,24390,24391,24392,24393,24394,24395,24396,24397,24398,24399,24400,24401,24402,24403,24404,24405,24406,24407,24408,24409,24410,24411,24412,24413,24414,24415,24416,24417,24418,24419,24420,24421,24422,24423,24424,24425,24426,24427,24428,24429,24430,24431,24432,24433,24434,24435,24436,24437,24438,24439,24440,24441,24442,24443,24444,24445,24446,24447,24448,24449,24450,24451,24452,24453,24454,24455,24456,24457,24458,24459,24460,24461,24462,24463,24464,24465,24466,24467,24468,24469,24470,24471,24472,24473,24474,24475,24476,24477,24478,24479,24480,24481,24482,24483,24484,24485,24486,24487,24488,24489,24490,24491,24492,24493,24494,24495,24496,24497,24498,24499,24500,24501,24502,24503,24504,24505,24506,24507,24508,24509,24510,24511,24512,24513,24514,24515,24516,24517,24518,24519,24520,24521,24522,24523,24524,24525,24526,24527,24528,24529,24530,24531,24532,24533,24534,24535,24536,24537,24538,24539,24540,24541,24542,24543,24544,24545,24546,24547,24548,24549,24550,24551,24552,24553,24554,24555,24556,24557,24558,24559,24560,24561,24562,24563,24564,24565,24566,24567,24568,24569,24570,24571,24572,24573,24574,24575,24576,24577,24578,24579,24580,24581,24582,24583,24584,24585,24586,24587,24588,24589,24590,24591,24592,24593,24594,24595,24596,24597,24598,24599,24600,24601,24602,24603,24604,24605,24606,24607,24608,24609,24610,24611,24612,24613,24614,24615,24616,24617,24618,24619,24620,24621,24622,24623,24624,24625,24626,24627,24628,24629,24630,24631,24632,24633,24634,24635,24636,24637,24638,24639,24640,24641,24642,24643,24644,24645,24646,24647,24648,24649,24650,24651,24652,24653,24654,24655,24656,24657,24658,24659,24660,24661,24662,24663,24664,24665,24666,24667,24668,24669,24670,24671,24672,24673,24674,24675,24676,24677,24678,24679,24680,24681,24682,24683,24684,24685,24686,24687,24688,24689,24690,24691,24692,24693,24694,24695,24696,24697,24698,24699,24700,24701,24702,24703,24704,24705,24706,24707,24708,24709,24710,24711,24712,24713,24714,24715,24716,24717,24718,24719,24720,24721,24722,24723,24724,24725,24726,24727,24728,24729,24730,24731,24732,24733,24734,24735,24736,24737,24738,24739,24740,24741,24742,24743,24744,24745,24746,24747,24748,24749,24750,24751,24752,24753,24754,24755,24756,24757,24758,24759,24760,24761,24762,24763,24764,24765,24766,24767,24768,24769,24770,24771,24772,24773,24774,24775,24776,24777,24778,24779,24780,24781,24782,24783,24784,24785,24786,24787,24788,24789,24790,24791,24792,24793,24794,24795,24796,24797,24798,24799,24800,24801,24802,24803,24804,24805,24806,24807,24808,24809,24810,24811,24812,24813,24814,24815,24816,24817,24818,24819,24820,24821,24822,24823,24824,24825,24826,24827,24828,24829,24830,24831,24832,24833,24834,24835,24836,24837,24838,24839,24840,24841,24842,24843,24844,24845,24846,24847,24848,24849,24850,24851,24852,24853,24854,24855,24856,24857,24858,24859,24860,24861,24862,24863,24864,24865,24866,24867,24868,24869,24870,24871,24872,24873,24874,24875,24876,24877,24878,24879,24880,24881,24882,24883,24884,24885,24886,24887,24888,24889,24890,24891,24892,24893,24894,24895,24896,24897,24898,24899,24900,24901,24902,24903,24904,24905,24906,24907,24908,24909,24910,24911,24912,24913,24914,24915,24916,24917,24918,24919,24920,24921,24922,24923,24924,24925,24926,24927,24928,24929,24930,24931,24932,24933,24934,24935,24936,24937,24938,24939,24940,24941,24942,24943,24944,24945,24946,24947,24948,24949,24950,24951,24952,24953,24954,24955,24956,24957,24958,24959,24960,24961,24962,24963,24964,24965,24966,24967,24968,24969,24970,24971,24972,24973,24974,24975,24976,24977,24978,24979,24980,24981,24982,24983,24984,24985,24986,24987,24988,24989,24990,24991,24992,24993,24994,24995,24996,24997,24998,24999,25000,25001,25002,25003,25004,25005,25006,25007,25008,25009,25010,25011,25012,25013,25014,25015,25016,25017,25018,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25029,25030,25031,25032,25033,25034,25035,25036,25037,25038,25039,25040,25041,25042,25043,25044,25045,25046,25047,25048,25049,25050,25051,25052,25053,25054,25055,25056,25057,25058,25059,25060,25061,25062,25063,25064,25065,25066,25067,25068,25069,25070,25071,25072,25073,25074,25075,25076,25077,25078,25079,25080,25081,25082,25083,25084,25085,25086,25087,25088,25089,25090,25091,25092,25093,25094,25095,25096,25097,25098,25099,25100,25101,25102,25103,25104,25105,25106,25107,25108,25109,25110,25111,25112,25113,25114,25115,25116,25117,25118,25119,25120,25121,25122,25123,25124,25125,25126,25127,25128,25129,25130,25131,25132,25133,25134,25135,25136,25137,25138,25139,25140,25141,25142,25143,25144,25145,25146,25147,25148,25149,25150,25151,25152,25153,25154,25155,25156,25157,25158,25159,25160,25161,25162,25163,25164,25165,25166,25167,25168,25169,25170,25171,25172,25173,25174,25175,25176,25177,25178,25179,25180,25181,25182,25183,25184,25185,25186,25187,25188,25189,25190,25191,25192,25193,25194,25195,25196,25197,25198,25199,25200,25201,25202,25203,25204,25205,25206,25207,25208,25209,25210,25211,25212,25213,25214,25215,25216,25217,25218,25219,25220,25221,25222,25223,25224,25225,25226,25227,25228,25229,25230,25231,25232,25233,25234,25235,25236,25237,25238,25239,25240,25241,25242,25243,25244,25245,25246,25247,25248,25249,25250,25251,25252,25253,25254,25255,25256,25257,25258,25259,25260,25261,25262,25263,25264,25265,25266,25267,25268,25269,25270,25271,25272,25273,25274,25275,25276,25277,25278,25279,25280,25281,25282,25283,25284,25285,25286,25287,25288,25289,25290,25291,25292,25293,25294,25295,25296,25297,25298,25299,25300,25301,25302,25303,25304,25305,25306,25307,25308,25309,25310,25311,25312,25313,25314,25315,25316,25317,25318,25319,25320,25321,25322,25323,25324,25325,25326,25327,25328,25329,25330,25331,25332,25333,25334,25335,25336,25337,25338,25339,25340,25341,25342,25343,25344,25345,25346,25347,25348,25349,25350,25351,25352,25353,25354,25355,25356,25357,25358,25359,25360,25361,25362,25363,25364,25365,25366,25367,25368,25369,25370,25371,25372,25373,25374,25375,25376,25377,25378,25379,25380,25381,25382,25383,25384,25385,25386,25387,25388,25389,25390,25391,25392,25393,25394,25395,25396,25397,25398,25399,25400,25401,25402,25403,25404,25405,25406,25407,25408,25409,25410,25411,25412,25413,25414,25415,25416,25417,25418,25419,25420,25421,25422,25423,25424,25425,25426,25427,25428,25429,25430,25431,25432,25433,25434,25435,25436,25437,25438,25439,25440,25441,25442,25443,25444,25445,25446,25447,25448,25449,25450,25451,25452,25453,25454,25455,25456,25457,25458,25459,25460,25461,25462,25463,25464,25465,25466,25467,25468,25469,25470,25471,25472,25473,25474,25475,25476,25477,25478,25479,25480,25481,25482,25483,25484,25485,25486,25487,25488,25489,25490,25491,25492,25493,25494,25495,25496,25497,25498,25499,25500,25501,25502,25503,25504,25505,25506,25507,25508,25509,25510,25511,25512,25513,25514,25515,25516,25517,25518,25519,25520,25521,25522,25523,25524,25525,25526,25527,25528,25529,25530,25531,25532,25533,25534,25535,25536,25537,25538,25539,25540,25541,25542,25543,25544,25545,25546,25547,25548,25549,25550,25551,25552,25553,25554,25555,25556,25557,25558,25559,25560,25561,25562,25563,25564,25565,25566,25567,25568,25569,25570,25571,25572,25573,25574,25575,25576,25577,25578,25579,25580,25581,25582,25583,25584,25585,25586,25587,25588,25589,25590,25591,25592,25593,25594,25595,25596,25597,25598,25599,25600,25601,25602,25603,25604,25605,25606,25607,25608,25609,25610,25611,25612,25613,25614,25615,25616,25617,25618,25619,25620,25621,25622,25623,25624,25625,25626,25627,25628,25629,25630,25631,25632,25633,25634,25635,25636,25637,25638,25639,25640,25641,25642,25643,25644,25645,25646,25647,25648,25649,25650,25651,25652,25653,25654,25655,25656,25657,25658,25659,25660,25661,25662,25663,25664,25665,25666,25667,25668,25669,25670,25671,25672,25673,25674,25675,25676,25677,25678,25679,25680,25681,25682,25683,25684,25685,25686,25687,25688,25689,25690,25691,25692,25693,25694,25695,25696,25697,25698,25699,25700,25701,25702,25703,25704,25705,25706,25707,25708,25709,25710,25711,25712,25713,25714,25715,25716,25717,25718,25719,25720,25721,25722,25723,25724,25725,25726,25727,25728,25729,25730,25731,25732,25733,25734,25735,25736,25737,25738,25739,25740,25741,25742,25743,25744,25745,25746,25747,25748,25749,25750,25751,25752,25753,25754,25755,25756,25757,25758,25759,25760,25761,25762,25763,25764,25765,25766,25767,25768,25769,25770,25771,25772,25773,25774,25775,25776,25777,25778,25779,25780,25781,25782,25783,25784,25785,25786,25787,25788,25789,25790,25791,25792,25793,25794,25795,25796,25797,25798,25799,25800,25801,25802,25803,25804,25805,25806,25807,25808,25809,25810,25811,25812,25813,25814,25815,25816,25817,25818,25819,25820,25821,25822,25823,25824,25825,25826,25827,25828,25829,25830,25831,25832,25833,25834,25835,25836,25837,25838,25839,25840,25841,25842,25843,25844,25845,25846,25847,25848,25849,25850,25851,25852,25853,25854,25855,25856,25857,25858,25859,25860,25861,25862,25863,25864,25865,25866,25867,25868,25869,25870,25871,25872,25873,25874,25875,25876,25877,25878,25879,25880,25881,25882,25883,25884,25885,25886,25887,25888,25889,25890,25891,25892,25893,25894,25895,25896,25897,25898,25899,25900,25901,25902,25903,25904,25905,25906,25907,25908,25909,25910,25911,25912,25913,25914,25915,25916,25917,25918,25919,25920,25921,25922,25923,25924,25925,25926,25927,25928,25929,25930,25931,25932,25933,25934,25935,25936,25937,25938,25939,25940,25941,25942,25943,25944,25945,25946,25947,25948,25949,25950,25951,25952,25953,25954,25955,25956,25957,25958,25959,25960,25961,25962,25963,25964,25965,25966,25967,25968,25969,25970,25971,25972,25973,25974,25975,25976,25977,25978,25979,25980,25981,25982,25983,25984,25985,25986,25987,25988,25989,25990,25991,25992,25993,25994,25995,25996,25997,25998,25999,26000,26001,26002,26003,26004,26005,26006,26007,26008,26009,26010,26011,26012,26013,26014,26015,26016,26017,26018,26019,26020,26021,26022,26023,26024,26025,26026,26027,26028,26029,26030,26031,26032,26033,26034,26035,26036,26037,26038,26039,26040,26041,26042,26043,26044,26045,26046,26047,26048,26049,26050,26051,26052,26053,26054,26055,26056,26057,26058,26059,26060,26061,26062,26063,26064,26065,26066,26067,26068,26069,26070,26071,26072,26073,26074,26075,26076,26077,26078,26079,26080,26081,26082,26083,26084,26085,26086,26087,26088,26089,26090,26091,26092,26093,26094,26095,26096,26097,26098,26099,26100,26101,26102,26103,26104,26105,26106,26107,26108,26109,26110,26111,26112,26113,26114,26115,26116,26117,26118,26119,26120,26121,26122,26123,26124,26125,26126,26127,26128,26129,26130,26131,26132,26133,26134,26135,26136,26137,26138,26139,26140,26141,26142,26143,26144,26145,26146,26147,26148,26149,26150,26151,26152,26153,26154,26155,26156,26157,26158,26159,26160,26161,26162,26163,26164,26165,26166,26167,26168,26169,26170,26171,26172,26173,26174,26175,26176,26177,26178,26179,26180,26181,26182,26183,26184,26185,26186,26187,26188,26189,26190,26191,26192,26193,26194,26195,26196,26197,26198,26199,26200,26201,26202,26203,26204,26205,26206,26207,26208,26209,26210,26211,26212,26213,26214,26215,26216,26217,26218,26219,26220,26221,26222,26223,26224,26225,26226,26227,26228,26229,26230,26231,26232,26233,26234,26235,26236,26237,26238,26239,26240,26241,26242,26243,26244,26245,26246,26247,26248,26249,26250,26251,26252,26253,26254,26255,26256,26257,26258,26259,26260,26261,26262,26263,26264,26265,26266,26267,26268,26269,26270,26271,26272,26273,26274,26275,26276,26277,26278,26279,26280,26281,26282,26283,26284,26285,26286,26287,26288,26289,26290,26291,26292,26293,26294,26295,26296,26297,26298,26299,26300,26301,26302,26303,26304,26305,26306,26307,26308,26309,26310,26311,26312,26313,26314,26315,26316,26317,26318,26319,26320,26321,26322,26323,26324,26325,26326,26327,26328,26329,26330,26331,26332,26333,26334,26335,26336,26337,26338,26339,26340,26341,26342,26343,26344,26345,26346,26347,26348,26349,26350,26351,26352,26353,26354,26355,26356,26357,26358,26359,26360,26361,26362,26363,26364,26365,26366,26367,26368,26369,26370,26371,26372,26373,26374,26375,26376,26377,26378,26379,26380,26381,26382,26383,26384,26385,26386,26387,26388,26389,26390,26391,26392,26393,26394,26395,26396,26397,26398,26399,26400,26401,26402,26403,26404,26405,26406,26407,26408,26409,26410,26411,26412,26413,26414,26415,26416,26417,26418,26419,26420,26421,26422,26423,26424,26425,26426,26427,26428,26429,26430,26431,26432,26433,26434,26435,26436,26437,26438,26439,26440,26441,26442,26443,26444,26445,26446,26447,26448,26449,26450,26451,26452,26453,26454,26455,26456,26457,26458,26459,26460,26461,26462,26463,26464,26465,26466,26467,26468,26469,26470,26471,26472,26473,26474,26475,26476,26477,26478,26479,26480,26481,26482,26483,26484,26485,26486,26487,26488,26489,26490,26491,26492,26493,26494,26495,26496,26497,26498,26499,26500,26501,26502,26503,26504,26505,26506,26507,26508,26509,26510,26511,26512,26513,26514,26515,26516,26517,26518,26519,26520,26521,26522,26523,26524,26525,26526,26527,26528,26529,26530,26531,26532,26533,26534,26535,26536,26537,26538,26539,26540,26541,26542,26543,26544,26545,26546,26547,26548,26549,26550,26551,26552,26553,26554,26555,26556,26557,26558,26559,26560,26561,26562,26563,26564,26565,26566,26567,26568,26569,26570,26571,26572,26573,26574,26575,26576,26577,26578,26579,26580,26581,26582,26583,26584,26585,26586,26587,26588,26589,26590,26591,26592,26593,26594,26595,26596,26597,26598,26599,26600,26601,26602,26603,26604,26605,26606,26607,26608,26609,26610,26611,26612,26613,26614,26615,26616,26617,26618,26619,26620,26621,26622,26623,26624,26625,26626,26627,26628,26629,26630,26631,26632,26633,26634,26635,26636,26637,26638,26639,26640,26641,26642,26643,26644,26645,26646,26647,26648,26649,26650,26651,26652,26653,26654,26655,26656,26657,26658,26659,26660,26661,26662,26663,26664,26665,26666,26667,26668,26669,26670,26671,26672,26673,26674,26675,26676,26677,26678,26679,26680,26681,26682,26683,26684,26685,26686,26687,26688,26689,26690,26691,26692,26693,26694,26695,26696,26697,26698,26699,26700,26701,26702,26703,26704,26705,26706,26707,26708,26709,26710,26711,26712,26713,26714,26715,26716,26717,26718,26719,26720,26721,26722,26723,26724,26725,26726,26727,26728,26729,26730,26731,26732,26733,26734,26735,26736,26737,26738,26739,26740,26741,26742,26743,26744,26745,26746,26747,26748,26749,26750,26751,26752,26753,26754,26755,26756,26757,26758,26759,26760,26761,26762,26763,26764,26765,26766,26767,26768,26769,26770,26771,26772,26773,26774,26775,26776,26777,26778,26779,26780,26781,26782,26783,26784,26785,26786,26787,26788,26789,26790,26791,26792,26793,26794,26795,26796,26797,26798,26799,26800,26801,26802,26803,26804,26805,26806,26807,26808,26809,26810,26811,26812,26813,26814,26815,26816,26817,26818,26819,26820,26821,26822,26823,26824,26825,26826,26827,26828,26829,26830,26831,26832,26833,26834,26835,26836,26837,26838,26839,26840,26841,26842,26843,26844,26845,26846,26847,26848,26849,26850,26851,26852,26853,26854,26855,26856,26857,26858,26859,26860,26861,26862,26863,26864,26865,26866,26867,26868,26869,26870,26871,26872,26873,26874,26875,26876,26877,26878,26879,26880,26881,26882,26883,26884,26885,26886,26887,26888,26889,26890,26891,26892,26893,26894,26895,26896,26897,26898,26899,26900,26901,26902,26903,26904,26905,26906,26907,26908,26909,26910,26911,26912,26913,26914,26915,26916,26917,26918,26919,26920,26921,26922,26923,26924,26925,26926,26927,26928,26929,26930,26931,26932,26933,26934,26935,26936,26937,26938,26939,26940,26941,26942,26943,26944,26945,26946,26947,26948,26949,26950,26951,26952,26953,26954,26955,26956,26957,26958,26959,26960,26961,26962,26963,26964,26965,26966,26967,26968,26969,26970,26971,26972,26973,26974,26975,26976,26977,26978,26979,26980,26981,26982,26983,26984,26985,26986,26987,26988,26989,26990,26991,26992,26993,26994,26995,26996,26997,26998,26999,27000,27001,27002,27003,27004,27005,27006,27007,27008,27009,27010,27011,27012,27013,27014,27015,27016,27017,27018,27019,27020,27021,27022,27023,27024,27025,27026,27027,27028,27029,27030,27031,27032,27033,27034,27035,27036,27037,27038,27039,27040,27041,27042,27043,27044,27045,27046,27047,27048,27049,27050,27051,27052,27053,27054,27055,27056,27057,27058,27059,27060,27061,27062,27063,27064,27065,27066,27067,27068,27069,27070,27071,27072,27073,27074,27075,27076,27077,27078,27079,27080,27081,27082,27083,27084,27085,27086,27087,27088,27089,27090,27091,27092,27093,27094,27095,27096,27097,27098,27099,27100,27101,27102,27103,27104,27105,27106,27107,27108,27109,27110,27111,27112,27113,27114,27115,27116,27117,27118,27119,27120,27121,27122,27123,27124,27125,27126,27127,27128,27129,27130,27131,27132,27133,27134,27135,27136,27137,27138,27139,27140,27141,27142,27143,27144,27145,27146,27147,27148,27149,27150,27151,27152,27153,27154,27155,27156,27157,27158,27159,27160,27161,27162,27163,27164,27165,27166,27167,27168,27169,27170,27171,27172,27173,27174,27175,27176,27177,27178,27179,27180,27181,27182,27183,27184,27185,27186,27187,27188,27189,27190,27191,27192,27193,27194,27195,27196,27197,27198,27199,27200,27201,27202,27203,27204,27205,27206,27207,27208,27209,27210,27211,27212,27213,27214,27215,27216,27217,27218,27219,27220,27221,27222,27223,27224,27225,27226,27227,27228,27229,27230,27231,27232,27233,27234,27235,27236,27237,27238,27239,27240,27241,27242,27243,27244,27245,27246,27247,27248,27249,27250,27251,27252,27253,27254,27255,27256,27257,27258,27259,27260,27261,27262,27263,27264,27265,27266,27267,27268,27269,27270,27271,27272,27273,27274,27275,27276,27277,27278,27279,27280,27281,27282,27283,27284,27285,27286,27287,27288,27289,27290,27291,27292,27293,27294,27295,27296,27297,27298,27299,27300,27301,27302,27303,27304,27305,27306,27307,27308,27309,27310,27311,27312,27313,27314,27315,27316,27317,27318,27319,27320,27321,27322,27323,27324,27325,27326,27327,27328,27329,27330,27331,27332,27333,27334,27335,27336,27337,27338,27339,27340,27341,27342,27343,27344,27345,27346,27347,27348,27349,27350,27351,27352,27353,27354,27355,27356,27357,27358,27359,27360,27361,27362,27363,27364,27365,27366,27367,27368,27369,27370,27371,27372,27373,27374,27375,27376,27377,27378,27379,27380,27381,27382,27383,27384,27385,27386,27387,27388,27389,27390,27391,27392,27393,27394,27395,27396,27397,27398,27399,27400,27401,27402,27403,27404,27405,27406,27407,27408,27409,27410,27411,27412,27413,27414,27415,27416,27417,27418,27419,27420,27421,27422,27423,27424,27425,27426,27427,27428,27429,27430,27431,27432,27433,27434,27435,27436,27437,27438,27439,27440,27441,27442,27443,27444,27445,27446,27447,27448,27449,27450,27451,27452,27453,27454,27455,27456,27457,27458,27459,27460,27461,27462,27463,27464,27465,27466,27467,27468,27469,27470,27471,27472,27473,27474,27475,27476,27477,27478,27479,27480,27481,27482,27483,27484,27485,27486,27487,27488,27489,27490,27491,27492,27493,27494,27495,27496,27497,27498,27499,27500,27501,27502,27503,27504,27505,27506,27507,27508,27509,27510,27511,27512,27513,27514,27515,27516,27517,27518,27519,27520,27521,27522,27523,27524,27525,27526,27527,27528,27529,27530,27531,27532,27533,27534,27535,27536,27537,27538,27539,27540,27541,27542,27543,27544,27545,27546,27547,27548,27549,27550,27551,27552,27553,27554,27555,27556,27557,27558,27559,27560,27561,27562,27563,27564,27565,27566,27567,27568,27569,27570,27571,27572,27573,27574,27575,27576,27577,27578,27579,27580,27581,27582,27583,27584,27585,27586,27587,27588,27589,27590,27591,27592,27593,27594,27595,27596,27597,27598,27599,27600,27601,27602,27603,27604,27605,27606,27607,27608,27609,27610,27611,27612,27613,27614,27615,27616,27617,27618,27619,27620,27621,27622,27623,27624,27625,27626,27627,27628,27629,27630,27631,27632,27633,27634,27635,27636,27637,27638,27639,27640,27641,27642,27643,27644,27645,27646,27647,27648,27649,27650,27651,27652,27653,27654,27655,27656,27657,27658,27659,27660,27661,27662,27663,27664,27665,27666,27667,27668,27669,27670,27671,27672,27673,27674,27675,27676,27677,27678,27679,27680,27681,27682,27683,27684,27685,27686,27687,27688,27689,27690,27691,27692,27693,27694,27695,27696,27697,27698,27699,27700,27701,27702,27703,27704,27705,27706,27707,27708,27709,27710,27711,27712,27713,27714,27715,27716,27717,27718,27719,27720,27721,27722,27723,27724,27725,27726,27727,27728,27729,27730,27731,27732,27733,27734,27735,27736,27737,27738,27739,27740,27741,27742,27743,27744,27745,27746,27747,27748,27749,27750,27751,27752,27753,27754,27755,27756,27757,27758,27759,27760,27761,27762,27763,27764,27765,27766,27767,27768,27769,27770,27771,27772,27773,27774,27775,27776,27777,27778,27779,27780,27781,27782,27783,27784,27785,27786,27787,27788,27789,27790,27791,27792,27793,27794,27795,27796,27797,27798,27799,27800,27801,27802,27803,27804,27805,27806,27807,27808,27809,27810,27811,27812,27813,27814,27815,27816,27817,27818,27819,27820,27821,27822,27823,27824,27825,27826,27827,27828,27829,27830,27831,27832,27833,27834,27835,27836,27837,27838,27839,27840,27841,27842,27843,27844,27845,27846,27847,27848,27849,27850,27851,27852,27853,27854,27855,27856,27857,27858,27859,27860,27861,27862,27863,27864,27865,27866,27867,27868,27869,27870,27871,27872,27873,27874,27875,27876,27877,27878,27879,27880,27881,27882,27883,27884,27885,27886,27887,27888,27889,27890,27891,27892,27893,27894,27895,27896,27897,27898,27899,27900,27901,27902,27903,27904,27905,27906,27907,27908,27909,27910,27911,27912,27913,27914,27915,27916,27917,27918,27919,27920,27921,27922,27923,27924,27925,27926,27927,27928,27929,27930,27931,27932,27933,27934,27935,27936,27937,27938,27939,27940,27941,27942,27943,27944,27945,27946,27947,27948,27949,27950,27951,27952,27953,27954,27955,27956,27957,27958,27959,27960,27961,27962,27963,27964,27965,27966,27967,27968,27969,27970,27971,27972,27973,27974,27975,27976,27977,27978,27979,27980,27981,27982,27983,27984,27985,27986,27987,27988,27989,27990,27991,27992,27993,27994,27995,27996,27997,27998,27999,28000,28001,28002,28003,28004,28005,28006,28007,28008,28009,28010,28011,28012,28013,28014,28015,28016,28017,28018,28019,28020,28021,28022,28023,28024,28025,28026,28027,28028,28029,28030,28031,28032,28033,28034,28035,28036,28037,28038,28039,28040,28041,28042,28043,28044,28045,28046,28047,28048,28049,28050,28051,28052,28053,28054,28055,28056,28057,28058,28059,28060,28061,28062,28063,28064,28065,28066,28067,28068,28069,28070,28071,28072,28073,28074,28075,28076,28077,28078,28079,28080,28081,28082,28083,28084,28085,28086,28087,28088,28089,28090,28091,28092,28093,28094,28095,28096,28097,28098,28099,28100,28101,28102,28103,28104,28105,28106,28107,28108,28109,28110,28111,28112,28113,28114,28115,28116,28117,28118,28119,28120,28121,28122,28123,28124,28125,28126,28127,28128,28129,28130,28131,28132,28133,28134,28135,28136,28137,28138,28139,28140,28141,28142,28143,28144,28145,28146,28147,28148,28149,28150,28151,28152,28153,28154,28155,28156,28157,28158,28159,28160,28161,28162,28163,28164,28165,28166,28167,28168,28169,28170,28171,28172,28173,28174,28175,28176,28177,28178,28179,28180,28181,28182,28183,28184,28185,28186,28187,28188,28189,28190,28191,28192,28193,28194,28195,28196,28197,28198,28199,28200,28201,28202,28203,28204,28205,28206,28207,28208,28209,28210,28211,28212,28213,28214,28215,28216,28217,28218,28219,28220,28221,28222,28223,28224,28225,28226,28227,28228,28229,28230,28231,28232,28233,28234,28235,28236,28237,28238,28239,28240,28241,28242,28243,28244,28245,28246,28247,28248,28249,28250,28251,28252,28253,28254,28255,28256,28257,28258,28259,28260,28261,28262,28263,28264,28265,28266,28267,28268,28269,28270,28271,28272,28273,28274,28275,28276,28277,28278,28279,28280,28281,28282,28283,28284,28285,28286,28287,28288,28289,28290,28291,28292,28293,28294,28295,28296,28297,28298,28299,28300,28301,28302,28303,28304,28305,28306,28307,28308,28309,28310,28311,28312,28313,28314,28315,28316,28317,28318,28319,28320,28321,28322,28323,28324,28325,28326,28327,28328,28329,28330,28331,28332,28333,28334,28335,28336,28337,28338,28339,28340,28341,28342,28343,28344,28345,28346,28347,28348,28349,28350,28351,28352,28353,28354,28355,28356,28357,28358,28359,28360,28361,28362,28363,28364,28365,28366,28367,28368,28369,28370,28371,28372,28373,28374,28375,28376,28377,28378,28379,28380,28381,28382,28383,28384,28385,28386,28387,28388,28389,28390,28391,28392,28393,28394,28395,28396,28397,28398,28399,28400,28401,28402,28403,28404,28405,28406,28407,28408,28409,28410,28411,28412,28413,28414,28415,28416,28417,28418,28419,28420,28421,28422,28423,28424,28425,28426,28427,28428,28429,28430,28431,28432,28433,28434,28435,28436,28437,28438,28439,28440,28441,28442,28443,28444,28445,28446,28447,28448,28449,28450,28451,28452,28453,28454,28455,28456,28457,28458,28459,28460,28461,28462,28463,28464,28465,28466,28467,28468,28469,28470,28471,28472,28473,28474,28475,28476,28477,28478,28479,28480,28481,28482,28483,28484,28485,28486,28487,28488,28489,28490,28491,28492,28493,28494,28495,28496,28497,28498,28499,28500,28501,28502,28503,28504,28505,28506,28507,28508,28509,28510,28511,28512,28513,28514,28515,28516,28517,28518,28519,28520,28521,28522,28523,28524,28525,28526,28527,28528,28529,28530,28531,28532,28533,28534,28535,28536,28537,28538,28539,28540,28541,28542,28543,28544,28545,28546,28547,28548,28549,28550,28551,28552,28553,28554,28555,28556,28557,28558,28559,28560,28561,28562,28563,28564,28565,28566,28567,28568,28569,28570,28571,28572,28573,28574,28575,28576,28577,28578,28579,28580,28581,28582,28583,28584,28585,28586,28587,28588,28589,28590,28591,28592,28593,28594,28595,28596,28597,28598,28599,28600,28601,28602,28603,28604,28605,28606,28607,28608,28609,28610,28611,28612,28613,28614,28615,28616,28617,28618,28619,28620,28621,28622,28623,28624,28625,28626,28627,28628,28629,28630,28631,28632,28633,28634,28635,28636,28637,28638,28639,28640,28641,28642,28643,28644,28645,28646,28647,28648,28649,28650,28651,28652,28653,28654,28655,28656,28657,28658,28659,28660,28661,28662,28663,28664,28665,28666,28667,28668,28669,28670,28671,28672,28673,28674,28675,28676,28677,28678,28679,28680,28681,28682,28683,28684,28685,28686,28687,28688,28689,28690,28691,28692,28693,28694,28695,28696,28697,28698,28699,28700,28701,28702,28703,28704,28705,28706,28707,28708,28709,28710,28711,28712,28713,28714,28715,28716,28717,28718,28719,28720,28721,28722,28723,28724,28725,28726,28727,28728,28729,28730,28731,28732,28733,28734,28735,28736,28737,28738,28739,28740,28741,28742,28743,28744,28745,28746,28747,28748,28749,28750,28751,28752,28753,28754,28755,28756,28757,28758,28759,28760,28761,28762,28763,28764,28765,28766,28767,28768,28769,28770,28771,28772,28773,28774,28775,28776,28777,28778,28779,28780,28781,28782,28783,28784,28785,28786,28787,28788,28789,28790,28791,28792,28793,28794,28795,28796,28797,28798,28799,28800,28801,28802,28803,28804,28805,28806,28807,28808,28809,28810,28811,28812,28813,28814,28815,28816,28817,28818,28819,28820,28821,28822,28823,28824,28825,28826,28827,28828,28829,28830,28831,28832,28833,28834,28835,28836,28837,28838,28839,28840,28841,28842,28843,28844,28845,28846,28847,28848,28849,28850,28851,28852,28853,28854,28855,28856,28857,28858,28859,28860,28861,28862,28863,28864,28865,28866,28867,28868,28869,28870,28871,28872,28873,28874,28875,28876,28877,28878,28879,28880,28881,28882,28883,28884,28885,28886,28887,28888,28889,28890,28891,28892,28893,28894,28895,28896,28897,28898,28899,28900,28901,28902,28903,28904,28905,28906,28907,28908,28909,28910,28911,28912,28913,28914,28915,28916,28917,28918,28919,28920,28921,28922,28923,28924,28925,28926,28927,28928,28929,28930,28931,28932,28933,28934,28935,28936,28937,28938,28939,28940,28941,28942,28943,28944,28945,28946,28947,28948,28949,28950,28951,28952,28953,28954,28955,28956,28957,28958,28959,28960,28961,28962,28963,28964,28965,28966,28967,28968,28969,28970,28971,28972,28973,28974,28975,28976,28977,28978,28979,28980,28981,28982,28983,28984,28985,28986,28987,28988,28989,28990,28991,28992,28993,28994,28995,28996,28997,28998,28999,29000,29001,29002,29003,29004,29005,29006,29007,29008,29009,29010,29011,29012,29013,29014,29015,29016,29017,29018,29019,29020,29021,29022,29023,29024,29025,29026,29027,29028,29029,29030,29031,29032,29033,29034,29035,29036,29037,29038,29039,29040,29041,29042,29043,29044,29045,29046,29047,29048,29049,29050,29051,29052,29053,29054,29055,29056,29057,29058,29059,29060,29061,29062,29063,29064,29065,29066,29067,29068,29069,29070,29071,29072,29073,29074,29075,29076,29077,29078,29079,29080,29081,29082,29083,29084,29085,29086,29087,29088,29089,29090,29091,29092,29093,29094,29095,29096,29097,29098,29099,29100,29101,29102,29103,29104,29105,29106,29107,29108,29109,29110,29111,29112,29113,29114,29115,29116,29117,29118,29119,29120,29121,29122,29123,29124,29125,29126,29127,29128,29129,29130,29131,29132,29133,29134,29135,29136,29137,29138,29139,29140,29141,29142,29143,29144,29145,29146,29147,29148,29149,29150,29151,29152,29153,29154,29155,29156,29157,29158,29159,29160,29161,29162,29163,29164,29165,29166,29167,29168,29169,29170,29171,29172,29173,29174,29175,29176,29177,29178,29179,29180,29181,29182,29183,29184,29185,29186,29187,29188,29189,29190,29191,29192,29193,29194,29195,29196,29197,29198,29199,29200,29201,29202,29203,29204,29205,29206,29207,29208,29209,29210,29211,29212,29213,29214,29215,29216,29217,29218,29219,29220,29221,29222,29223,29224,29225,29226,29227,29228,29229,29230,29231,29232,29233,29234,29235,29236,29237,29238,29239,29240,29241,29242,29243,29244,29245,29246,29247,29248,29249,29250,29251,29252,29253,29254,29255,29256,29257,29258,29259,29260,29261,29262,29263,29264,29265,29266,29267,29268,29269,29270,29271,29272,29273,29274,29275,29276,29277,29278,29279,29280,29281,29282,29283,29284,29285,29286,29287,29288,29289,29290,29291,29292,29293,29294,29295,29296,29297,29298,29299,29300,29301,29302,29303,29304,29305,29306,29307,29308,29309,29310,29311,29312,29313,29314,29315,29316,29317,29318,29319,29320,29321,29322,29323,29324,29325,29326,29327,29328,29329,29330,29331,29332,29333,29334,29335,29336,29337,29338,29339,29340,29341,29342,29343,29344,29345,29346,29347,29348,29349,29350,29351,29352,29353,29354,29355,29356,29357,29358,29359,29360,29361,29362,29363,29364,29365,29366,29367,29368,29369,29370,29371,29372,29373,29374,29375,29376,29377,29378,29379,29380,29381,29382,29383,29384,29385,29386,29387,29388,29389,29390,29391,29392,29393,29394,29395,29396,29397,29398,29399,29400,29401,29402,29403,29404,29405,29406,29407,29408,29409,29410,29411,29412,29413,29414,29415,29416,29417,29418,29419,29420,29421,29422,29423,29424,29425,29426,29427,29428,29429,29430,29431,29432,29433,29434,29435,29436,29437,29438,29439,29440,29441,29442,29443,29444,29445,29446,29447,29448,29449,29450,29451,29452,29453,29454,29455,29456,29457,29458,29459,29460,29461,29462,29463,29464,29465,29466,29467,29468,29469,29470,29471,29472,29473,29474,29475,29476,29477,29478,29479,29480,29481,29482,29483,29484,29485,29486,29487,29488,29489,29490,29491,29492,29493,29494,29495,29496,29497,29498,29499,29500,29501,29502,29503,29504,29505,29506,29507,29508,29509,29510,29511,29512,29513,29514,29515,29516,29517,29518,29519,29520,29521,29522,29523,29524,29525,29526,29527,29528,29529,29530,29531,29532,29533,29534,29535,29536,29537,29538,29539,29540,29541,29542,29543,29544,29545,29546,29547,29548,29549,29550,29551,29552,29553,29554,29555,29556,29557,29558,29559,29560,29561,29562,29563,29564,29565,29566,29567,29568,29569,29570,29571,29572,29573,29574,29575,29576,29577,29578,29579,29580,29581,29582,29583,29584,29585,29586,29587,29588,29589,29590,29591,29592,29593,29594,29595,29596,29597,29598,29599,29600,29601,29602,29603,29604,29605,29606,29607,29608,29609,29610,29611,29612,29613,29614,29615,29616,29617,29618,29619,29620,29621,29622,29623,29624,29625,29626,29627,29628,29629,29630,29631,29632,29633,29634,29635,29636,29637,29638,29639,29640,29641,29642,29643,29644,29645,29646,29647,29648,29649,29650,29651,29652,29653,29654,29655,29656,29657,29658,29659,29660,29661,29662,29663,29664,29665,29666,29667,29668,29669,29670,29671,29672,29673,29674,29675,29676,29677,29678,29679,29680,29681,29682,29683,29684,29685,29686,29687,29688,29689,29690,29691,29692,29693,29694,29695,29696,29697,29698,29699,29700,29701,29702,29703,29704,29705,29706,29707,29708,29709,29710,29711,29712,29713,29714,29715,29716,29717,29718,29719,29720,29721,29722,29723,29724,29725,29726,29727,29728,29729,29730,29731,29732,29733,29734,29735,29736,29737,29738,29739,29740,29741,29742,29743,29744,29745,29746,29747,29748,29749,29750,29751,29752,29753,29754,29755,29756,29757,29758,29759,29760,29761,29762,29763,29764,29765,29766,29767,29768,29769,29770,29771,29772,29773,29774,29775,29776,29777,29778,29779,29780,29781,29782,29783,29784,29785,29786,29787,29788,29789,29790,29791,29792,29793,29794,29795,29796,29797,29798,29799,29800,29801,29802,29803,29804,29805,29806,29807,29808,29809,29810,29811,29812,29813,29814,29815,29816,29817,29818,29819,29820,29821,29822,29823,29824,29825,29826,29827,29828,29829,29830,29831,29832,29833,29834,29835,29836,29837,29838,29839,29840,29841,29842,29843,29844,29845,29846,29847,29848,29849,29850,29851,29852,29853,29854,29855,29856,29857,29858,29859,29860,29861,29862,29863,29864,29865,29866,29867,29868,29869,29870,29871,29872,29873,29874,29875,29876,29877,29878,29879,29880,29881,29882,29883,29884,29885,29886,29887,29888,29889,29890,29891,29892,29893,29894,29895,29896,29897,29898,29899,29900,29901,29902,29903,29904,29905,29906,29907,29908,29909,29910,29911,29912,29913,29914,29915,29916,29917,29918,29919,29920,29921,29922,29923,29924,29925,29926,29927,29928,29929,29930,29931,29932,29933,29934,29935,29936,29937,29938,29939,29940,29941,29942,29943,29944,29945,29946,29947,29948,29949,29950,29951,29952,29953,29954,29955,29956,29957,29958,29959,29960,29961,29962,29963,29964,29965,29966,29967,29968,29969,29970,29971,29972,29973,29974,29975,29976,29977,29978,29979,29980,29981,29982,29983,29984,29985,29986,29987,29988,29989,29990,29991,29992,29993,29994,29995,29996,29997,29998,29999,30000,30001,30002,30003,30004,30005,30006,30007,30008,30009,30010,30011,30012,30013,30014,30015,30016,30017,30018,30019,30020,30021,30022,30023,30024,30025,30026,30027,30028,30029,30030,30031,30032,30033,30034,30035,30036,30037,30038,30039,30040,30041,30042,30043,30044,30045,30046,30047,30048,30049,30050,30051,30052,30053,30054,30055,30056,30057,30058,30059,30060,30061,30062,30063,30064,30065,30066,30067,30068,30069,30070,30071,30072,30073,30074,30075,30076,30077,30078,30079,30080,30081,30082,30083,30084,30085,30086,30087,30088,30089,30090,30091,30092,30093,30094,30095,30096,30097,30098,30099,30100,30101,30102,30103,30104,30105,30106,30107,30108,30109,30110,30111,30112,30113,30114,30115,30116,30117,30118,30119,30120,30121,30122,30123,30124,30125,30126,30127,30128,30129,30130,30131,30132,30133,30134,30135,30136,30137,30138,30139,30140,30141,30142,30143,30144,30145,30146,30147,30148,30149,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30168,30169,30170,30171,30172,30173,30174,30175,30176,30177,30178,30179,30180,30181,30182,30183,30184,30185,30186,30187,30188,30189,30190,30191,30192,30193,30194,30195,30196,30197,30198,30199,30200,30201,30202,30203,30204,30205,30206,30207,30208,30209,30210,30211,30212,30213,30214,30215,30216,30217,30218,30219,30220,30221,30222,30223,30224,30225,30226,30227,30228,30229,30230,30231,30232,30233,30234,30235,30236,30237,30238,30239,30240,30241,30242,30243,30244,30245,30246,30247,30248,30249,30250,30251,30252,30253,30254,30255,30256,30257,30258,30259,30260,30261,30262,30263,30264,30265,30266,30267,30268,30269,30270,30271,30272,30273,30274,30275,30276,30277,30278,30279,30280,30281,30282,30283,30284,30285,30286,30287,30288,30289,30290,30291,30292,30293,30294,30295,30296,30297,30298,30299,30300,30301,30302,30303,30304,30305,30306,30307,30308,30309,30310,30311,30312,30313,30314,30315,30316,30317,30318,30319,30320,30321,30322,30323,30324,30325,30326,30327,30328,30329,30330,30331,30332,30333,30334,30335,30336,30337,30338,30339,30340,30341,30342,30343,30344,30345,30346,30347,30348,30349,30350,30351,30352,30353,30354,30355,30356,30357,30358,30359,30360,30361,30362,30363,30364,30365,30366,30367,30368,30369,30370,30371,30372,30373,30374,30375,30376,30377,30378,30379,30380,30381,30382,30383,30384,30385,30386,30387,30388,30389,30390,30391,30392,30393,30394,30395,30396,30397,30398,30399,30400,30401,30402,30403,30404,30405,30406,30407,30408,30409,30410,30411,30412,30413,30414,30415,30416,30417,30418,30419,30420,30421,30422,30423,30424,30425,30426,30427,30428,30429,30430,30431,30432,30433,30434,30435,30436,30437,30438,30439,30440,30441,30442,30443,30444,30445,30446,30447,30448,30449,30450,30451,30452,30453,30454,30455,30456,30457,30458,30459,30460,30461,30462,30463,30464,30465,30466,30467,30468,30469,30470,30471,30472,30473,30474,30475,30476,30477,30478,30479,30480,30481,30482,30483,30484,30485,30486,30487,30488,30489,30490,30491,30492,30493,30494,30495,30496,30497,30498,30499,30500,30501,30502,30503,30504,30505,30506,30507,30508,30509,30510,30511,30512,30513,30514,30515,30516,30517,30518,30519,30520,30521,30522,30523,30524,30525,30526,30527,30528,30529,30530,30531,30532,30533,30534,30535,30536,30537,30538,30539,30540,30541,30542,30543,30544,30545,30546,30547,30548,30549,30550,30551,30552,30553,30554,30555,30556,30557,30558,30559,30560,30561,30562,30563,30564,30565,30566,30567,30568,30569,30570,30571,30572,30573,30574,30575,30576,30577,30578,30579,30580,30581,30582,30583,30584,30585,30586,30587,30588,30589,30590,30591,30592,30593,30594,30595,30596,30597,30598,30599,30600,30601,30602,30603,30604,30605,30606,30607,30608,30609,30610,30611,30612,30613,30614,30615,30616,30617,30618,30619,30620,30621,30622,30623,30624,30625,30626,30627,30628,30629,30630,30631,30632,30633,30634,30635,30636,30637,30638,30639,30640,30641,30642,30643,30644,30645,30646,30647,30648,30649,30650,30651,30652,30653,30654,30655,30656,30657,30658,30659,30660,30661,30662,30663,30664,30665,30666,30667,30668,30669,30670,30671,30672,30673,30674,30675,30676,30677,30678,30679,30680,30681,30682,30683,30684,30685,30686,30687,30688,30689,30690,30691,30692,30693,30694,30695,30696,30697,30698,30699,30700,30701,30702,30703,30704,30705,30706,30707,30708,30709,30710,30711,30712,30713,30714,30715,30716,30717,30718,30719,30720,30721,30722,30723,30724,30725,30726,30727,30728,30729,30730,30731,30732,30733,30734,30735,30736,30737,30738,30739,30740,30741,30742,30743,30744,30745,30746,30747,30748,30749,30750,30751,30752,30753,30754,30755,30756,30757,30758,30759,30760,30761,30762,30763,30764,30765,30766,30767,30768,30769,30770,30771,30772,30773,30774,30775,30776,30777,30778,30779,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30795,30796,30797,30798,30799,30800,30801,30802,30803,30804,30805,30806,30807,30808,30809,30810,30811,30812,30813,30814,30815,30816,30817,30818,30819,30820,30821,30822,30823,30824,30825,30826,30827,30828,30829,30830,30831,30832,30833,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30845,30846,30847,30848,30849,30850,30851,30852,30853,30854,30855,30856,30857,30858,30859,30860,30861,30862,30863,30864,30865,30866,30867,30868,30869,30870,30871,30872,30873,30874,30875,30876,30877,30878,30879,30880,30881,30882,30883,30884,30885,30886,30887,30888,30889,30890,30891,30892,30893,30894,30895,30896,30897,30898,30899,30900,30901,30902,30903,30904,30905,30906,30907,30908,30909,30910,30911,30912,30913,30914,30915,30916,30917,30918,30919,30920,30921,30922,30923,30924,30925,30926,30927,30928,30929,30930,30931,30932,30933,30934,30935,30936,30937,30938,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30950,30951,30952,30953,30954,30955,30956,30957,30958,30959,30960,30961,30962,30963,30964,30965,30966,30967,30968,30969,30970,30971,30972,30973,30974,30975,30976,30977,30978,30979,30980,30981,30982,30983,30984,30985,30986,30987,30988,30989,30990,30991,30992,30993,30994,30995,30996,30997,30998,30999,31000,31001,31002,31003,31004,31005,31006,31007,31008,31009,31010,31011,31012,31013,31014,31015,31016,31017,31018,31019,31020,31021,31022,31023,31024,31025,31026,31027,31028,31029,31030,31031,31032,31033,31034,31035,31036,31037,31038,31039,31040,31041,31042,31043,31044,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31060,31061,31062,31063,31064,31065,31066,31067,31068,31069,31070,31071,31072,31073,31074,31075,31076,31077,31078,31079,31080,31081,31082,31083,31084,31085,31086,31087,31088,31089,31090,31091,31092,31093,31094,31095,31096,31097,31098,31099,31100,31101,31102,31103,31104,31105,31106,31107,31108,31109,31110,31111,31112,31113,31114,31115,31116,31117,31118,31119,31120,31121,31122,31123,31124,31125,31126,31127,31128,31129,31130,31131,31132,31133,31134,31135,31136,31137,31138,31139,31140,31141,31142,31143,31144,31145,31146,31147,31148,31149,31150,31151,31152,31153,31154,31155,31156,31157,31158,31159,31160,31161,31162,31163,31164,31165,31166,31167,31168,31169,31170,31171,31172,31173,31174,31175,31176,31177,31178,31179,31180,31181,31182,31183,31184,31185,31186,31187,31188,31189,31190,31191,31192,31193,31194,31195,31196,31197,31198,31199,31200,31201,31202,31203,31204,31205,31206,31207,31208,31209,31210,31211,31212,31213,31214,31215,31216,31217,31218,31219,31220,31221,31222,31223,31224,31225,31226,31227,31228,31229,31230,31231,31232,31233,31234,31235,31236,31237,31238,31239,31240,31241,31242,31243,31244,31245,31246,31247,31248,31249,31250,31251,31252,31253,31254,31255,31256,31257,31258,31259,31260,31261,31262,31263,31264,31265,31266,31267,31268,31269,31270,31271,31272,31273,31274,31275,31276,31277,31278,31279,31280,31281,31282,31283,31284,31285,31286,31287,31288,31289,31290,31291,31292,31293,31294,31295,31296,31297,31298,31299,31300,31301,31302,31303,31304,31305,31306,31307,31308,31309,31310,31311,31312,31313,31314,31315,31316,31317,31318,31319,31320,31321,31322,31323,31324,31325,31326,31327,31328,31329,31330,31331,31332,31333,31334,31335,31336,31337,31338,31339,31340,31341,31342,31343,31344,31345,31346,31347,31348,31349,31350,31351,31352,31353,31354,31355,31356,31357,31358,31359,31360,31361,31362,31363,31364,31365,31366,31367,31368,31369,31370,31371,31372,31373,31374,31375,31376,31377,31378,31379,31380,31381,31382,31383,31384,31385,31386,31387,31388,31389,31390,31391,31392,31393,31394,31395,31396,31397,31398,31399,31400,31401,31402,31403,31404,31405,31406,31407,31408,31409,31410,31411,31412,31413,31414,31415,31416,31417,31418,31419,31420,31421,31422,31423,31424,31425,31426,31427,31428,31429,31430,31431,31432,31433,31434,31435,31436,31437,31438,31439,31440,31441,31442,31443,31444,31445,31446,31447,31448,31449,31450,31451,31452,31453,31454,31455,31456,31457,31458,31459,31460,31461,31462,31463,31464,31465,31466,31467,31468,31469,31470,31471,31472,31473,31474,31475,31476,31477,31478,31479,31480,31481,31482,31483,31484,31485,31486,31487,31488,31489,31490,31491,31492,31493,31494,31495,31496,31497,31498,31499,31500,31501,31502,31503,31504,31505,31506,31507,31508,31509,31510,31511,31512,31513,31514,31515,31516,31517,31518,31519,31520,31521,31522,31523,31524,31525,31526,31527,31528,31529,31530,31531,31532,31533,31534,31535,31536,31537,31538,31539,31540,31541,31542,31543,31544,31545,31546,31547,31548,31549,31550,31551,31552,31553,31554,31555,31556,31557,31558,31559,31560,31561,31562,31563,31564,31565,31566,31567,31568,31569,31570,31571,31572,31573,31574,31575,31576,31577,31578,31579,31580,31581,31582,31583,31584,31585,31586,31587,31588,31589,31590,31591,31592,31593,31594,31595,31596,31597,31598,31599,31600,31601,31602,31603,31604,31605,31606,31607,31608,31609,31610,31611,31612,31613,31614,31615,31616,31617,31618,31619,31620,31621,31622,31623,31624,31625,31626,31627,31628,31629,31630,31631,31632,31633,31634,31635,31636,31637,31638,31639,31640,31641,31642,31643,31644,31645,31646,31647,31648,31649,31650,31651,31652,31653,31654,31655,31656,31657,31658,31659,31660,31661,31662,31663,31664,31665,31666,31667,31668,31669,31670,31671,31672,31673,31674,31675,31676,31677,31678,31679,31680,31681,31682,31683,31684,31685,31686,31687,31688,31689,31690,31691,31692,31693,31694,31695,31696,31697,31698,31699,31700,31701,31702,31703,31704,31705,31706,31707,31708,31709,31710,31711,31712,31713,31714,31715,31716,31717,31718,31719,31720,31721,31722,31723,31724,31725,31726,31727,31728,31729,31730,31731,31732,31733,31734,31735,31736,31737,31738,31739,31740,31741,31742,31743,31744,31745,31746,31747,31748,31749,31750,31751,31752,31753,31754,31755,31756,31757,31758,31759,31760,31761,31762,31763,31764,31765,31766,31767,31768,31769,31770,31771,31772,31773,31774,31775,31776,31777,31778,31779,31780,31781,31782,31783,31784,31785,31786,31787,31788,31789,31790,31791,31792,31793,31794,31795,31796,31797,31798,31799,31800,31801,31802,31803,31804,31805,31806,31807,31808,31809,31810,31811,31812,31813,31814,31815,31816,31817,31818,31819,31820,31821,31822,31823,31824,31825,31826,31827,31828,31829,31830,31831,31832,31833,31834,31835,31836,31837,31838,31839,31840,31841,31842,31843,31844,31845,31846,31847,31848,31849,31850,31851,31852,31853,31854,31855,31856,31857,31858,31859,31860,31861,31862,31863,31864,31865,31866,31867,31868,31869,31870,31871,31872,31873,31874,31875,31876,31877,31878,31879,31880,31881,31882,31883,31884,31885,31886,31887,31888,31889,31890,31891,31892,31893,31894,31895,31896,31897,31898,31899,31900,31901,31902,31903,31904,31905,31906,31907,31908,31909,31910,31911,31912,31913,31914,31915,31916,31917,31918,31919,31920,31921,31922,31923,31924,31925,31926,31927,31928,31929,31930,31931,31932,31933,31934,31935,31936,31937,31938,31939,31940,31941,31942,31943,31944,31945,31946,31947,31948,31949,31950,31951,31952,31953,31954,31955,31956,31957,31958,31959,31960,31961,31962,31963,31964,31965,31966,31967,31968,31969,31970,31971,31972,31973,31974,31975,31976,31977,31978,31979,31980,31981,31982,31983,31984,31985,31986,31987,31988,31989,31990,31991,31992,31993,31994,31995,31996,31997,31998,31999,32000,32001,32002,32003,32004,32005,32006,32007,32008,32009,32010,32011,32012,32013,32014,32015,32016,32017,32018,32019,32020,32021,32022,32023,32024,32025,32026,32027,32028,32029,32030,32031,32032,32033,32034,32035,32036,32037,32038,32039,32040,32041,32042,32043,32044,32045,32046,32047,32048,32049,32050,32051,32052,32053,32054,32055,32056,32057,32058,32059,32060,32061,32062,32063,32064,32065,32066,32067,32068,32069,32070,32071,32072,32073,32074,32075,32076,32077,32078,32079,32080,32081,32082,32083,32084,32085,32086,32087,32088,32089,32090,32091,32092,32093,32094,32095,32096,32097,32098,32099,32100,32101,32102,32103,32104,32105,32106,32107,32108,32109,32110,32111,32112,32113,32114,32115,32116,32117,32118,32119,32120,32121,32122,32123,32124,32125,32126,32127,32128,32129,32130,32131,32132,32133,32134,32135,32136,32137,32138,32139,32140,32141,32142,32143,32144,32145,32146,32147,32148,32149,32150,32151,32152,32153,32154,32155,32156,32157,32158,32159,32160,32161,32162,32163,32164,32165,32166,32167,32168,32169,32170,32171,32172,32173,32174,32175,32176,32177,32178,32179,32180,32181,32182,32183,32184,32185,32186,32187,32188,32189,32190,32191,32192,32193,32194,32195,32196,32197,32198,32199,32200,32201,32202,32203,32204,32205,32206,32207,32208,32209,32210,32211,32212,32213,32214,32215,32216,32217,32218,32219,32220,32221,32222,32223,32224,32225,32226,32227,32228,32229,32230,32231,32232,32233,32234,32235,32236,32237,32238,32239,32240,32241,32242,32243,32244,32245,32246,32247,32248,32249,32250,32251,32252,32253,32254,32255,32256,32257,32258,32259,32260,32261,32262,32263,32264,32265,32266,32267,32268,32269,32270,32271,32272,32273,32274,32275,32276,32277,32278,32279,32280,32281,32282,32283,32284,32285,32286,32287,32288,32289,32290,32291,32292,32293,32294,32295,32296,32297,32298,32299,32300,32301,32302,32303,32304,32305,32306,32307,32308,32309,32310,32311,32312,32313,32314,32315,32316,32317,32318,32319,32320,32321,32322,32323,32324,32325,32326,32327,32328,32329,32330,32331,32332,32333,32334,32335,32336,32337,32338,32339,32340,32341,32342,32343,32344,32345,32346,32347,32348,32349,32350,32351,32352,32353,32354,32355,32356,32357,32358,32359,32360,32361,32362,32363,32364,32365,32366,32367,32368,32369,32370,32371,32372,32373,32374,32375,32376,32377,32378,32379,32380,32381,32382,32383,32384,32385,32386,32387,32388,32389,32390,32391,32392,32393,32394,32395,32396,32397,32398,32399,32400,32401,32402,32403,32404,32405,32406,32407,32408,32409,32410,32411,32412,32413,32414,32415,32416,32417,32418,32419,32420,32421,32422,32423,32424,32425,32426,32427,32428,32429,32430,32431,32432,32433,32434,32435,32436,32437,32438,32439,32440,32441,32442,32443,32444,32445,32446,32447,32448,32449,32450,32451,32452,32453,32454,32455,32456,32457,32458,32459,32460,32461,32462,32463,32464,32465,32466,32467,32468,32469,32470,32471,32472,32473,32474,32475,32476,32477,32478,32479,32480,32481,32482,32483,32484,32485,32486,32487,32488,32489,32490,32491,32492,32493,32494,32495,32496,32497,32498,32499,32500,32501,32502,32503,32504,32505,32506,32507,32508,32509,32510,32511,32512,32513,32514,32515,32516,32517,32518,32519,32520,32521,32522,32523,32524,32525,32526,32527,32528,32529,32530,32531,32532,32533,32534,32535,32536,32537,32538,32539,32540,32541,32542,32543,32544,32545,32546,32547,32548,32549,32550,32551,32552,32553,32554,32555,32556,32557,32558,32559,32560,32561,32562,32563,32564,32565,32566,32567,32568,32569,32570,32571,32572,32573,32574,32575,32576,32577,32578,32579,32580,32581,32582,32583,32584,32585,32586,32587,32588,32589,32590,32591,32592,32593,32594,32595,32596,32597,32598,32599,32600,32601,32602,32603,32604,32605,32606,32607,32608,32609,32610,32611,32612,32613,32614,32615,32616,32617,32618,32619,32620,32621,32622,32623,32624,32625,32626,32627,32628,32629,32630,32631,32632,32633,32634,32635,32636,32637,32638,32639,32640,32641,32642,32643,32644,32645,32646,32647,32648,32649,32650,32651,32652,32653,32654,32655,32656,32657,32658,32659,32660,32661,32662,32663,32664,32665,32666,32667,32668,32669,32670,32671,32672,32673,32674,32675,32676,32677,32678,32679,32680,32681,32682,32683,32684,32685,32686,32687,32688,32689,32690,32691,32692,32693,32694,32695,32696,32697,32698,32699,32700,32701,32702,32703,32704,32705,32706,32707,32708,32709,32710,32711,32712,32713,32714,32715,32716,32717,32718,32719,32720,32721,32722,32723,32724,32725,32726,32727,32728,32729,32730,32731,32732,32733,32734,32735,32736,32737,32738,32739,32740,32741,32742,32743,32744,32745,32746,32747,32748,32749,32750,32751,32752,32753,32754,32755,32756,32757,32758,32759,32760,32761,32762,32763,32764,32765,32766,32767,32768,32769,32770,32771,32772,32773,32774,32775,32776,32777,32778,32779,32780,32781,32782,32783,32784,32785,32786,32787,32788,32789,32790,32791,32792,32793,32794,32795,32796,32797,32798,32799,32800,32801,32802,32803,32804,32805,32806,32807,32808,32809,32810,32811,32812,32813,32814,32815,32816,32817,32818,32819,32820,32821,32822,32823,32824,32825,32826,32827,32828,32829,32830,32831,32832,32833,32834,32835,32836,32837,32838,32839,32840,32841,32842,32843,32844,32845,32846,32847,32848,32849,32850,32851,32852,32853,32854,32855,32856,32857,32858,32859,32860,32861,32862,32863,32864,32865,32866,32867,32868,32869,32870,32871,32872,32873,32874,32875,32876,32877,32878,32879,32880,32881,32882,32883,32884,32885,32886,32887,32888,32889,32890,32891,32892,32893,32894,32895,32896,32897,32898,32899,32900,32901,32902,32903,32904,32905,32906,32907,32908,32909,32910,32911,32912,32913,32914,32915,32916,32917,32918,32919,32920,32921,32922,32923,32924,32925,32926,32927,32928,32929,32930,32931,32932,32933,32934,32935,32936,32937,32938,32939,32940,32941,32942,32943,32944,32945,32946,32947,32948,32949,32950,32951,32952,32953,32954,32955,32956,32957,32958,32959,32960,32961,32962,32963,32964,32965,32966,32967,32968,32969,32970,32971,32972,32973,32974,32975,32976,32977,32978,32979,32980,32981,32982,32983,32984,32985,32986,32987,32988,32989,32990,32991,32992,32993,32994,32995,32996,32997,32998,32999,33000,33001,33002,33003,33004,33005,33006,33007,33008,33009,33010,33011,33012,33013,33014,33015,33016,33017,33018,33019,33020,33021,33022,33023,33024,33025,33026,33027,33028,33029,33030,33031,33032,33033,33034,33035,33036,33037,33038,33039,33040,33041,33042,33043,33044,33045,33046,33047,33048,33049,33050,33051,33052,33053,33054,33055,33056,33057,33058,33059,33060,33061,33062,33063,33064,33065,33066,33067,33068,33069,33070,33071,33072,33073,33074,33075,33076,33077,33078,33079,33080,33081,33082,33083,33084,33085,33086,33087,33088,33089,33090,33091,33092,33093,33094,33095,33096,33097,33098,33099,33100,33101,33102,33103,33104,33105,33106,33107,33108,33109,33110,33111,33112,33113,33114,33115,33116,33117,33118,33119,33120,33121,33122,33123,33124,33125,33126,33127,33128,33129,33130,33131,33132,33133,33134,33135,33136,33137,33138,33139,33140,33141,33142,33143,33144,33145,33146,33147,33148,33149,33150,33151,33152,33153,33154,33155,33156,33157,33158,33159,33160,33161,33162,33163,33164,33165,33166,33167,33168,33169,33170,33171,33172,33173,33174,33175,33176,33177,33178,33179,33180,33181,33182,33183,33184,33185,33186,33187,33188,33189,33190,33191,33192,33193,33194,33195,33196,33197,33198,33199,33200,33201,33202,33203,33204,33205,33206,33207,33208,33209,33210,33211,33212,33213,33214,33215,33216,33217,33218,33219,33220,33221,33222,33223,33224,33225,33226,33227,33228,33229,33230,33231,33232,33233,33234,33235,33236,33237,33238,33239,33240,33241,33242,33243,33244,33245,33246,33247,33248,33249,33250,33251,33252,33253,33254,33255,33256,33257,33258,33259,33260,33261,33262,33263,33264,33265,33266,33267,33268,33269,33270,33271,33272,33273,33274,33275,33276,33277,33278,33279,33280,33281,33282,33283,33284,33285,33286,33287,33288,33289,33290,33291,33292,33293,33294,33295,33296,33297,33298,33299,33300,33301,33302,33303,33304,33305,33306,33307,33308,33309,33310,33311,33312,33313,33314,33315,33316,33317,33318,33319,33320,33321,33322,33323,33324,33325,33326,33327,33328,33329,33330,33331,33332,33333,33334,33335,33336,33337,33338,33339,33340,33341,33342,33343,33344,33345,33346,33347,33348,33349,33350,33351,33352,33353,33354,33355,33356,33357,33358,33359,33360,33361,33362,33363,33364,33365,33366,33367,33368,33369,33370,33371,33372,33373,33374,33375,33376,33377,33378,33379,33380,33381,33382,33383,33384,33385,33386,33387,33388,33389,33390,33391,33392,33393,33394,33395,33396,33397,33398,33399,33400,33401,33402,33403,33404,33405,33406,33407,33408,33409,33410,33411,33412,33413,33414,33415,33416,33417,33418,33419,33420,33421,33422,33423,33424,33425,33426,33427,33428,33429,33430,33431,33432,33433,33434,33435,33436,33437,33438,33439,33440,33441,33442,33443,33444,33445,33446,33447,33448,33449,33450,33451,33452,33453,33454,33455,33456,33457,33458,33459,33460,33461,33462,33463,33464,33465,33466,33467,33468,33469,33470,33471,33472,33473,33474,33475,33476,33477,33478,33479,33480,33481,33482,33483,33484,33485,33486,33487,33488,33489,33490,33491,33492,33493,33494,33495,33496,33497,33498,33499,33500,33501,33502,33503,33504,33505,33506,33507,33508,33509,33510,33511,33512,33513,33514,33515,33516,33517,33518,33519,33520,33521,33522,33523,33524,33525,33526,33527,33528,33529,33530,33531,33532,33533,33534,33535,33536,33537,33538,33539,33540,33541,33542,33543,33544,33545,33546,33547,33548,33549,33550,33551,33552,33553,33554,33555,33556,33557,33558,33559,33560,33561,33562,33563,33564,33565,33566,33567,33568,33569,33570,33571,33572,33573,33574,33575,33576,33577,33578,33579,33580,33581,33582,33583,33584,33585,33586,33587,33588,33589,33590,33591,33592,33593,33594,33595,33596,33597,33598,33599,33600,33601,33602,33603,33604,33605,33606,33607,33608,33609,33610,33611,33612,33613,33614,33615,33616,33617,33618,33619,33620,33621,33622,33623,33624,33625,33626,33627,33628,33629,33630,33631,33632,33633,33634,33635,33636,33637,33638,33639,33640,33641,33642,33643,33644,33645,33646,33647,33648,33649,33650,33651,33652,33653,33654,33655,33656,33657,33658,33659,33660,33661,33662,33663,33664,33665,33666,33667,33668,33669,33670,33671,33672,33673,33674,33675,33676,33677,33678,33679,33680,33681,33682,33683,33684,33685,33686,33687,33688,33689,33690,33691,33692,33693,33694,33695,33696,33697,33698,33699,33700,33701,33702,33703,33704,33705,33706,33707,33708,33709,33710,33711,33712,33713,33714,33715,33716,33717,33718,33719,33720,33721,33722,33723,33724,33725,33726,33727,33728,33729,33730,33731,33732,33733,33734,33735,33736,33737,33738,33739,33740,33741,33742,33743,33744,33745,33746,33747,33748,33749,33750,33751,33752,33753,33754,33755,33756,33757,33758,33759,33760,33761,33762,33763,33764,33765,33766,33767,33768,33769,33770,33771,33772,33773,33774,33775,33776,33777,33778,33779,33780,33781,33782,33783,33784,33785,33786,33787,33788,33789,33790,33791,33792,33793,33794,33795,33796,33797,33798,33799,33800,33801,33802,33803,33804,33805,33806,33807,33808,33809,33810,33811,33812,33813,33814,33815,33816,33817,33818,33819,33820,33821,33822,33823,33824,33825,33826,33827,33828,33829,33830,33831,33832,33833,33834,33835,33836,33837,33838,33839,33840,33841,33842,33843,33844,33845,33846,33847,33848,33849,33850,33851,33852,33853,33854,33855,33856,33857,33858,33859,33860,33861,33862,33863,33864,33865,33866,33867,33868,33869,33870,33871,33872,33873,33874,33875,33876,33877,33878,33879,33880,33881,33882,33883,33884,33885,33886,33887,33888,33889,33890,33891,33892,33893,33894,33895,33896,33897,33898,33899,33900,33901,33902,33903,33904,33905,33906,33907,33908,33909,33910,33911,33912,33913,33914,33915,33916,33917,33918,33919,33920,33921,33922,33923,33924,33925,33926,33927,33928,33929,33930,33931,33932,33933,33934,33935,33936,33937,33938,33939,33940,33941,33942,33943,33944,33945,33946,33947,33948,33949,33950,33951,33952,33953,33954,33955,33956,33957,33958,33959,33960,33961,33962,33963,33964,33965,33966,33967,33968,33969,33970,33971,33972,33973,33974,33975,33976,33977,33978,33979,33980,33981,33982,33983,33984,33985,33986,33987,33988,33989,33990,33991,33992,33993,33994,33995,33996,33997,33998,33999,34000,34001,34002,34003,34004,34005,34006,34007,34008,34009,34010,34011,34012,34013,34014,34015,34016,34017,34018,34019,34020,34021,34022,34023,34024,34025,34026,34027,34028,34029,34030,34031,34032,34033,34034,34035,34036,34037,34038,34039,34040,34041,34042,34043,34044,34045,34046,34047,34048,34049,34050,34051,34052,34053,34054,34055,34056,34057,34058,34059,34060,34061,34062,34063,34064,34065,34066,34067,34068,34069,34070,34071,34072,34073,34074,34075,34076,34077,34078,34079,34080,34081,34082,34083,34084,34085,34086,34087,34088,34089,34090,34091,34092,34093,34094,34095,34096,34097,34098,34099,34100,34101,34102,34103,34104,34105,34106,34107,34108,34109,34110,34111,34112,34113,34114,34115,34116,34117,34118,34119,34120,34121,34122,34123,34124,34125,34126,34127,34128,34129,34130,34131,34132,34133,34134,34135,34136,34137,34138,34139,34140,34141,34142,34143,34144,34145,34146,34147,34148,34149,34150,34151,34152,34153,34154,34155,34156,34157,34158,34159,34160,34161,34162,34163,34164,34165,34166,34167,34168,34169,34170,34171,34172,34173,34174,34175,34176,34177,34178,34179,34180,34181,34182,34183,34184,34185,34186,34187,34188,34189,34190,34191,34192,34193,34194,34195,34196,34197,34198,34199,34200,34201,34202,34203,34204,34205,34206,34207,34208,34209,34210,34211,34212,34213,34214,34215,34216,34217,34218,34219,34220,34221,34222,34223,34224,34225,34226,34227,34228,34229,34230,34231,34232,34233,34234,34235,34236,34237,34238,34239,34240,34241,34242,34243,34244,34245,34246,34247,34248,34249,34250,34251,34252,34253,34254,34255,34256,34257,34258,34259,34260,34261,34262,34263,34264,34265,34266,34267,34268,34269,34270,34271,34272,34273,34274,34275,34276,34277,34278,34279,34280,34281,34282,34283,34284,34285,34286,34287,34288,34289,34290,34291,34292,34293,34294,34295,34296,34297,34298,34299,34300,34301,34302,34303,34304,34305,34306,34307,34308,34309,34310,34311,34312,34313,34314,34315,34316,34317,34318,34319,34320,34321,34322,34323,34324,34325,34326,34327,34328,34329,34330,34331,34332,34333,34334,34335,34336,34337,34338,34339,34340,34341,34342,34343,34344,34345,34346,34347,34348,34349,34350,34351,34352,34353,34354,34355,34356,34357,34358,34359,34360,34361,34362,34363,34364,34365,34366,34367,34368,34369,34370,34371,34372,34373,34374,34375,34376,34377,34378,34379,34380,34381,34382,34383,34384,34385,34386,34387,34388,34389,34390,34391,34392,34393,34394,34395,34396,34397,34398,34399,34400,34401,34402,34403,34404,34405,34406,34407,34408,34409,34410,34411,34412,34413,34414,34415,34416,34417,34418,34419,34420,34421,34422,34423,34424,34425,34426,34427,34428,34429,34430,34431,34432,34433,34434,34435,34436,34437,34438,34439,34440,34441,34442,34443,34444,34445,34446,34447,34448,34449,34450,34451,34452,34453,34454,34455,34456,34457,34458,34459,34460,34461,34462,34463,34464,34465,34466,34467,34468,34469,34470,34471,34472,34473,34474,34475,34476,34477,34478,34479,34480,34481,34482,34483,34484,34485,34486,34487,34488,34489,34490,34491,34492,34493,34494,34495,34496,34497,34498,34499,34500,34501,34502,34503,34504,34505,34506,34507,34508,34509,34510,34511,34512,34513,34514,34515,34516,34517,34518,34519,34520,34521,34522,34523,34524,34525,34526,34527,34528,34529,34530,34531,34532,34533,34534,34535,34536,34537,34538,34539,34540,34541,34542,34543,34544,34545,34546,34547,34548,34549,34550,34551,34552,34553,34554,34555,34556,34557,34558,34559,34560,34561,34562,34563,34564,34565,34566,34567,34568,34569,34570,34571,34572,34573,34574,34575,34576,34577,34578,34579,34580,34581,34582,34583,34584,34585,34586,34587,34588,34589,34590,34591,34592,34593,34594,34595,34596,34597,34598,34599,34600,34601,34602,34603,34604,34605,34606,34607,34608,34609,34610,34611,34612,34613,34614,34615,34616,34617,34618,34619,34620,34621,34622,34623,34624,34625,34626,34627,34628,34629,34630,34631,34632,34633,34634,34635,34636,34637,34638,34639,34640,34641,34642,34643,34644,34645,34646,34647,34648,34649,34650,34651,34652,34653,34654,34655,34656,34657,34658,34659,34660,34661,34662,34663,34664,34665,34666,34667,34668,34669,34670,34671,34672,34673,34674,34675,34676,34677,34678,34679,34680,34681,34682,34683,34684,34685,34686,34687,34688,34689,34690,34691,34692,34693,34694,34695,34696,34697,34698,34699,34700,34701,34702,34703,34704,34705,34706,34707,34708,34709,34710,34711,34712,34713,34714,34715,34716,34717,34718,34719,34720,34721,34722,34723,34724,34725,34726,34727,34728,34729,34730,34731,34732,34733,34734,34735,34736,34737,34738,34739,34740,34741,34742,34743,34744,34745,34746,34747,34748,34749,34750,34751,34752,34753,34754,34755,34756,34757,34758,34759,34760,34761,34762,34763,34764,34765,34766,34767,34768,34769,34770,34771,34772,34773,34774,34775,34776,34777,34778,34779,34780,34781,34782,34783,34784,34785,34786,34787,34788,34789,34790,34791,34792,34793,34794,34795,34796,34797,34798,34799,34800,34801,34802,34803,34804,34805,34806,34807,34808,34809,34810,34811,34812,34813,34814,34815,34816,34817,34818,34819,34820,34821,34822,34823,34824,34825,34826,34827,34828,34829,34830,34831,34832,34833,34834,34835,34836,34837,34838,34839,34840,34841,34842,34843,34844,34845,34846,34847,34848,34849,34850,34851,34852,34853,34854,34855,34856,34857,34858,34859,34860,34861,34862,34863,34864,34865,34866,34867,34868,34869,34870,34871,34872,34873,34874,34875,34876,34877,34878,34879,34880,34881,34882,34883,34884,34885,34886,34887,34888,34889,34890,34891,34892,34893,34894,34895,34896,34897,34898,34899,34900,34901,34902,34903,34904,34905,34906,34907,34908,34909,34910,34911,34912,34913,34914,34915,34916,34917,34918,34919,34920,34921,34922,34923,34924,34925,34926,34927,34928,34929,34930,34931,34932,34933,34934,34935,34936,34937,34938,34939,34940,34941,34942,34943,34944,34945,34946,34947,34948,34949,34950,34951,34952,34953,34954,34955,34956,34957,34958,34959,34960,34961,34962,34963,34964,34965,34966,34967,34968,34969,34970,34971,34972,34973,34974,34975,34976,34977,34978,34979,34980,34981,34982,34983,34984,34985,34986,34987,34988,34989,34990,34991,34992,34993,34994,34995,34996,34997,34998,34999,35000,35001,35002,35003,35004,35005,35006,35007,35008,35009,35010,35011,35012,35013,35014,35015,35016,35017,35018,35019,35020,35021,35022,35023,35024,35025,35026,35027,35028,35029,35030,35031,35032,35033,35034,35035,35036,35037,35038,35039,35040,35041,35042,35043,35044,35045,35046,35047,35048,35049,35050,35051,35052,35053,35054,35055,35056,35057,35058,35059,35060,35061,35062,35063,35064,35065,35066,35067,35068,35069,35070,35071,35072,35073,35074,35075,35076,35077,35078,35079,35080,35081,35082,35083,35084,35085,35086,35087,35088,35089,35090,35091,35092,35093,35094,35095,35096,35097,35098,35099,35100,35101,35102,35103,35104,35105,35106,35107,35108,35109,35110,35111,35112,35113,35114,35115,35116,35117,35118,35119,35120,35121,35122,35123,35124,35125,35126,35127,35128,35129,35130,35131,35132,35133,35134,35135,35136,35137,35138,35139,35140,35141,35142,35143,35144,35145,35146,35147,35148,35149,35150,35151,35152,35153,35154,35155,35156,35157,35158,35159,35160,35161,35162,35163,35164,35165,35166,35167,35168,35169,35170,35171,35172,35173,35174,35175,35176,35177,35178,35179,35180,35181,35182,35183,35184,35185,35186,35187,35188,35189,35190,35191,35192,35193,35194,35195,35196,35197,35198,35199,35200,35201,35202,35203,35204,35205,35206,35207,35208,35209,35210,35211,35212,35213,35214,35215,35216,35217,35218,35219,35220,35221,35222,35223,35224,35225,35226,35227,35228,35229,35230,35231,35232,35233,35234,35235,35236,35237,35238,35239,35240,35241,35242,35243,35244,35245,35246,35247,35248,35249,35250,35251,35252,35253,35254,35255,35256,35257,35258,35259,35260,35261,35262,35263,35264,35265,35266,35267,35268,35269,35270,35271,35272,35273,35274,35275,35276,35277,35278,35279,35280,35281,35282,35283,35284,35285,35286,35287,35288,35289,35290,35291,35292,35293,35294,35295,35296,35297,35298,35299,35300,35301,35302,35303,35304,35305,35306,35307,35308,35309,35310,35311,35312,35313,35314,35315,35316,35317,35318,35319,35320,35321,35322,35323,35324,35325,35326,35327,35328,35329,35330,35331,35332,35333,35334,35335,35336,35337,35338,35339,35340,35341,35342,35343,35344,35345,35346,35347,35348,35349,35350,35351,35352,35353,35354,35355,35356,35357,35358,35359,35360,35361,35362,35363,35364,35365,35366,35367,35368,35369,35370,35371,35372,35373,35374,35375,35376,35377,35378,35379,35380,35381,35382,35383,35384,35385,35386,35387,35388,35389,35390,35391,35392,35393,35394,35395,35396,35397,35398,35399,35400,35401,35402,35403,35404,35405,35406,35407,35408,35409,35410,35411,35412,35413,35414,35415,35416,35417,35418,35419,35420,35421,35422,35423,35424,35425,35426,35427,35428,35429,35430,35431,35432,35433,35434,35435,35436,35437,35438,35439,35440,35441,35442,35443,35444,35445,35446,35447,35448,35449,35450,35451,35452,35453,35454,35455,35456,35457,35458,35459,35460,35461,35462,35463,35464,35465,35466,35467,35468,35469,35470,35471,35472,35473,35474,35475,35476,35477,35478,35479,35480,35481,35482,35483,35484,35485,35486,35487,35488,35489,35490,35491,35492,35493,35494,35495,35496,35497,35498,35499,35500,35501,35502,35503,35504,35505,35506,35507,35508,35509,35510,35511,35512,35513,35514,35515,35516,35517,35518,35519,35520,35521,35522,35523,35524,35525,35526,35527,35528,35529,35530,35531,35532,35533,35534,35535,35536,35537,35538,35539,35540,35541,35542,35543,35544,35545,35546,35547,35548,35549,35550,35551,35552,35553,35554,35555,35556,35557,35558,35559,35560,35561,35562,35563,35564,35565,35566,35567,35568,35569,35570,35571,35572,35573,35574,35575,35576,35577,35578,35579,35580,35581,35582,35583,35584,35585,35586,35587,35588,35589,35590,35591,35592,35593,35594,35595,35596,35597,35598,35599,35600,35601,35602,35603,35604,35605,35606,35607,35608,35609,35610,35611,35612,35613,35614,35615,35616,35617,35618,35619,35620,35621,35622,35623,35624,35625,35626,35627,35628,35629,35630,35631,35632,35633,35634,35635,35636,35637,35638,35639,35640,35641,35642,35643,35644,35645,35646,35647,35648,35649,35650,35651,35652,35653,35654,35655,35656,35657,35658,35659,35660,35661,35662,35663,35664,35665,35666,35667,35668,35669,35670,35671,35672,35673,35674,35675,35676,35677,35678,35679,35680,35681,35682,35683,35684,35685,35686,35687,35688,35689,35690,35691,35692,35693,35694,35695,35696,35697,35698,35699,35700,35701,35702,35703,35704,35705,35706,35707,35708,35709,35710,35711,35712,35713,35714,35715,35716,35717,35718,35719,35720,35721,35722,35723,35724,35725,35726,35727,35728,35729,35730,35731,35732,35733,35734,35735,35736,35737,35738,35739,35740,35741,35742,35743,35744,35745,35746,35747,35748,35749,35750,35751,35752,35753,35754,35755,35756,35757,35758,35759,35760,35761,35762,35763,35764,35765,35766,35767,35768,35769,35770,35771,35772,35773,35774,35775,35776,35777,35778,35779,35780,35781,35782,35783,35784,35785,35786,35787,35788,35789,35790,35791,35792,35793,35794,35795,35796,35797,35798,35799,35800,35801,35802,35803,35804,35805,35806,35807,35808,35809,35810,35811,35812,35813,35814,35815,35816,35817,35818,35819,35820,35821,35822,35823,35824,35825,35826,35827,35828,35829,35830,35831,35832,35833,35834,35835,35836,35837,35838,35839,35840,35841,35842,35843,35844,35845,35846,35847,35848,35849,35850,35851,35852,35853,35854,35855,35856,35857,35858,35859,35860,35861,35862,35863,35864,35865,35866,35867,35868,35869,35870,35871,35872,35873,35874,35875,35876,35877,35878,35879,35880,35881,35882,35883,35884,35885,35886,35887,35888,35889,35890,35891,35892,35893,35894,35895,35896,35897,35898,35899,35900,35901,35902,35903,35904,35905,35906,35907,35908,35909,35910,35911,35912,35913,35914,35915,35916,35917,35918,35919,35920,35921,35922,35923,35924,35925,35926,35927,35928,35929,35930,35931,35932,35933,35934,35935,35936,35937,35938,35939,35940,35941,35942,35943,35944,35945,35946,35947,35948,35949,35950,35951,35952,35953,35954,35955,35956,35957,35958,35959,35960,35961,35962,35963,35964,35965,35966,35967,35968,35969,35970,35971,35972,35973,35974,35975,35976,35977,35978,35979,35980,35981,35982,35983,35984,35985,35986,35987,35988,35989,35990,35991,35992,35993,35994,35995,35996,35997,35998,35999,36000,36001,36002,36003,36004,36005,36006,36007,36008,36009,36010,36011,36012,36013,36014,36015,36016,36017,36018,36019,36020,36021,36022,36023,36024,36025,36026,36027,36028,36029,36030,36031,36032,36033,36034,36035,36036,36037,36038,36039,36040,36041,36042,36043,36044,36045,36046,36047,36048,36049,36050,36051,36052,36053,36054,36055,36056,36057,36058,36059,36060,36061,36062,36063,36064,36065,36066,36067,36068,36069,36070,36071,36072,36073,36074,36075,36076,36077,36078,36079,36080,36081,36082,36083,36084,36085,36086,36087,36088,36089,36090,36091,36092,36093,36094,36095,36096,36097,36098,36099,36100,36101,36102,36103,36104,36105,36106,36107,36108,36109,36110,36111,36112,36113,36114,36115,36116,36117,36118,36119,36120,36121,36122,36123,36124,36125,36126,36127,36128,36129,36130,36131,36132,36133,36134,36135,36136,36137,36138,36139,36140,36141,36142,36143,36144,36145,36146,36147,36148,36149,36150,36151,36152,36153,36154,36155,36156,36157,36158,36159,36160,36161,36162,36163,36164,36165,36166,36167,36168,36169,36170,36171,36172,36173,36174,36175,36176,36177,36178,36179,36180,36181,36182,36183,36184,36185,36186,36187,36188,36189,36190,36191,36192,36193,36194,36195,36196,36197,36198,36199,36200,36201,36202,36203,36204,36205,36206,36207,36208,36209,36210,36211,36212,36213,36214,36215,36216,36217,36218,36219,36220,36221,36222,36223,36224,36225,36226,36227,36228,36229,36230,36231,36232,36233,36234,36235,36236,36237,36238,36239,36240,36241,36242,36243,36244,36245,36246,36247,36248,36249,36250,36251,36252,36253,36254,36255,36256,36257,36258,36259,36260,36261,36262,36263,36264,36265,36266,36267,36268,36269,36270,36271,36272,36273,36274,36275,36276,36277,36278,36279,36280,36281,36282,36283,36284,36285,36286,36287,36288,36289,36290,36291,36292,36293,36294,36295,36296,36297,36298,36299,36300,36301,36302,36303,36304,36305,36306,36307,36308,36309,36310,36311,36312,36313,36314,36315,36316,36317,36318,36319,36320,36321,36322,36323,36324,36325,36326,36327,36328,36329,36330,36331,36332,36333,36334,36335,36336,36337,36338,36339,36340,36341,36342,36343,36344,36345,36346,36347,36348,36349,36350,36351,36352,36353,36354,36355,36356,36357,36358,36359,36360,36361,36362,36363,36364,36365,36366,36367,36368,36369,36370,36371,36372,36373,36374,36375,36376,36377,36378,36379,36380,36381,36382,36383,36384,36385,36386,36387,36388,36389,36390,36391,36392,36393,36394,36395,36396,36397,36398,36399,36400,36401,36402,36403,36404,36405,36406,36407,36408,36409,36410,36411,36412,36413,36414,36415,36416,36417,36418,36419,36420,36421,36422,36423,36424,36425,36426,36427,36428,36429,36430,36431,36432,36433,36434,36435,36436,36437,36438,36439,36440,36441,36442,36443,36444,36445,36446,36447,36448,36449,36450,36451,36452,36453,36454,36455,36456,36457,36458,36459,36460,36461,36462,36463,36464,36465,36466,36467,36468,36469,36470,36471,36472,36473,36474,36475,36476,36477,36478,36479,36480,36481,36482,36483,36484,36485,36486,36487,36488,36489,36490,36491,36492,36493,36494,36495,36496,36497,36498,36499,36500,36501,36502,36503,36504,36505,36506,36507,36508,36509,36510,36511,36512,36513,36514,36515,36516,36517,36518,36519,36520,36521,36522,36523,36524,36525,36526,36527,36528,36529,36530,36531,36532,36533,36534,36535,36536,36537,36538,36539,36540,36541,36542,36543,36544,36545,36546,36547,36548,36549,36550,36551,36552,36553,36554,36555,36556,36557,36558,36559,36560,36561,36562,36563,36564,36565,36566,36567,36568,36569,36570,36571,36572,36573,36574,36575,36576,36577,36578,36579,36580,36581,36582,36583,36584,36585,36586,36587,36588,36589,36590,36591,36592,36593,36594,36595,36596,36597,36598,36599,36600,36601,36602,36603,36604,36605,36606,36607,36608,36609,36610,36611,36612,36613,36614,36615,36616,36617,36618,36619,36620,36621,36622,36623,36624,36625,36626,36627,36628,36629,36630,36631,36632,36633,36634,36635,36636,36637,36638,36639,36640,36641,36642,36643,36644,36645,36646,36647,36648,36649,36650,36651,36652,36653,36654,36655,36656,36657,36658,36659,36660,36661,36662,36663,36664,36665,36666,36667,36668,36669,36670,36671,36672,36673,36674,36675,36676,36677,36678,36679,36680,36681,36682,36683,36684,36685,36686,36687,36688,36689,36690,36691,36692,36693,36694,36695,36696,36697,36698,36699,36700,36701,36702,36703,36704,36705,36706,36707,36708,36709,36710,36711,36712,36713,36714,36715,36716,36717,36718,36719,36720,36721,36722,36723,36724,36725,36726,36727,36728,36729,36730,36731,36732,36733,36734,36735,36736,36737,36738,36739,36740,36741,36742,36743,36744,36745,36746,36747,36748,36749,36750,36751,36752,36753,36754,36755,36756,36757,36758,36759,36760,36761,36762,36763,36764,36765,36766,36767,36768,36769,36770,36771,36772,36773,36774,36775,36776,36777,36778,36779,36780,36781,36782,36783,36784,36785,36786,36787,36788,36789,36790,36791,36792,36793,36794,36795,36796,36797,36798,36799,36800,36801,36802,36803,36804,36805,36806,36807,36808,36809,36810,36811,36812,36813,36814,36815,36816,36817,36818,36819,36820,36821,36822,36823,36824,36825,36826,36827,36828,36829,36830,36831,36832,36833,36834,36835,36836,36837,36838,36839,36840,36841,36842,36843,36844,36845,36846,36847,36848,36849,36850,36851,36852,36853,36854,36855,36856,36857,36858,36859,36860,36861,36862,36863,36864,36865,36866,36867,36868,36869,36870,36871,36872,36873,36874,36875,36876,36877,36878,36879,36880,36881,36882,36883,36884,36885,36886,36887,36888,36889,36890,36891,36892,36893,36894,36895,36896,36897,36898,36899,36900,36901,36902,36903,36904,36905,36906,36907,36908,36909,36910,36911,36912,36913,36914,36915,36916,36917,36918,36919,36920,36921,36922,36923,36924,36925,36926,36927,36928,36929,36930,36931,36932,36933,36934,36935,36936,36937,36938,36939,36940,36941,36942,36943,36944,36945,36946,36947,36948,36949,36950,36951,36952,36953,36954,36955,36956,36957,36958,36959,36960,36961,36962,36963,36964,36965,36966,36967,36968,36969,36970,36971,36972,36973,36974,36975,36976,36977,36978,36979,36980,36981,36982,36983,36984,36985,36986,36987,36988,36989,36990,36991,36992,36993,36994,36995,36996,36997,36998,36999,37000,37001,37002,37003,37004,37005,37006,37007,37008,37009,37010,37011,37012,37013,37014,37015,37016,37017,37018,37019,37020,37021,37022,37023,37024,37025,37026,37027,37028,37029,37030,37031,37032,37033,37034,37035,37036,37037,37038,37039,37040,37041,37042,37043,37044,37045,37046,37047,37048,37049,37050,37051,37052,37053,37054,37055,37056,37057,37058,37059,37060,37061,37062,37063,37064,37065,37066,37067,37068,37069,37070,37071,37072,37073,37074,37075,37076,37077,37078,37079,37080,37081,37082,37083,37084,37085,37086,37087,37088,37089,37090,37091,37092,37093,37094,37095,37096,37097,37098,37099,37100,37101,37102,37103,37104,37105,37106,37107,37108,37109,37110,37111,37112,37113,37114,37115,37116,37117,37118,37119,37120,37121,37122,37123,37124,37125,37126,37127,37128,37129,37130,37131,37132,37133,37134,37135,37136,37137,37138,37139,37140,37141,37142,37143,37144,37145,37146,37147,37148,37149,37150,37151,37152,37153,37154,37155,37156,37157,37158,37159,37160,37161,37162,37163,37164,37165,37166,37167,37168,37169,37170,37171,37172,37173,37174,37175,37176,37177,37178,37179,37180,37181,37182,37183,37184,37185,37186,37187,37188,37189,37190,37191,37192,37193,37194,37195,37196,37197,37198,37199,37200,37201,37202,37203,37204,37205,37206,37207,37208,37209,37210,37211,37212,37213,37214,37215,37216,37217,37218,37219,37220,37221,37222,37223,37224,37225,37226,37227,37228,37229,37230,37231,37232,37233,37234,37235,37236,37237,37238,37239,37240,37241,37242,37243,37244,37245,37246,37247,37248,37249,37250,37251,37252,37253,37254,37255,37256,37257,37258,37259,37260,37261,37262,37263,37264,37265,37266,37267,37268,37269,37270,37271,37272,37273,37274,37275,37276,37277,37278,37279,37280,37281,37282,37283,37284,37285,37286,37287,37288,37289,37290,37291,37292,37293,37294,37295,37296,37297,37298,37299,37300,37301,37302,37303,37304,37305,37306,37307,37308,37309,37310,37311,37312,37313,37314,37315,37316,37317,37318,37319,37320,37321,37322,37323,37324,37325,37326,37327,37328,37329,37330,37331,37332,37333,37334,37335,37336,37337,37338,37339,37340,37341,37342,37343,37344,37345,37346,37347,37348,37349,37350,37351,37352,37353,37354,37355,37356,37357,37358,37359,37360,37361,37362,37363,37364,37365,37366,37367,37368,37369,37370,37371,37372,37373,37374,37375,37376,37377,37378,37379,37380,37381,37382,37383,37384,37385,37386,37387,37388,37389,37390,37391,37392,37393,37394,37395,37396,37397,37398,37399,37400,37401,37402,37403,37404,37405,37406,37407,37408,37409,37410,37411,37412,37413,37414,37415,37416,37417,37418,37419,37420,37421,37422,37423,37424,37425,37426,37427,37428,37429,37430,37431,37432,37433,37434,37435,37436,37437,37438,37439,37440,37441,37442,37443,37444,37445,37446,37447,37448,37449,37450,37451,37452,37453,37454,37455,37456,37457,37458,37459,37460,37461,37462,37463,37464,37465,37466,37467,37468,37469,37470,37471,37472,37473,37474,37475,37476,37477,37478,37479,37480,37481,37482,37483,37484,37485,37486,37487,37488,37489,37490,37491,37492,37493,37494,37495,37496,37497,37498,37499,37500,37501,37502,37503,37504,37505,37506,37507,37508,37509,37510,37511,37512,37513,37514,37515,37516,37517,37518,37519,37520,37521,37522,37523,37524,37525,37526,37527,37528,37529,37530,37531,37532,37533,37534,37535,37536,37537,37538,37539,37540,37541,37542,37543,37544,37545,37546,37547,37548,37549,37550,37551,37552,37553,37554,37555,37556,37557,37558,37559,37560,37561,37562,37563,37564,37565,37566,37567,37568,37569,37570,37571,37572,37573,37574,37575,37576,37577,37578,37579,37580,37581,37582,37583,37584,37585,37586,37587,37588,37589,37590,37591,37592,37593,37594,37595,37596,37597,37598,37599,37600,37601,37602,37603,37604,37605,37606,37607,37608,37609,37610,37611,37612,37613,37614,37615,37616,37617,37618,37619,37620,37621,37622,37623,37624,37625,37626,37627,37628,37629,37630,37631,37632,37633,37634,37635,37636,37637,37638,37639,37640,37641,37642,37643,37644,37645,37646,37647,37648,37649,37650,37651,37652,37653,37654,37655,37656,37657,37658,37659,37660,37661,37662,37663,37664,37665,37666,37667,37668,37669,37670,37671,37672,37673,37674,37675,37676,37677,37678,37679,37680,37681,37682,37683,37684,37685,37686,37687,37688,37689,37690,37691,37692,37693,37694,37695,37696,37697,37698,37699,37700,37701,37702,37703,37704,37705,37706,37707,37708,37709,37710,37711,37712,37713,37714,37715,37716,37717,37718,37719,37720,37721,37722,37723,37724,37725,37726,37727,37728,37729,37730,37731,37732,37733,37734,37735,37736,37737,37738,37739,37740,37741,37742,37743,37744,37745,37746,37747,37748,37749,37750,37751,37752,37753,37754,37755,37756,37757,37758,37759,37760,37761,37762,37763,37764,37765,37766,37767,37768,37769,37770,37771,37772,37773,37774,37775,37776,37777,37778,37779,37780,37781,37782,37783,37784,37785,37786,37787,37788,37789,37790,37791,37792,37793,37794,37795,37796,37797,37798,37799,37800,37801,37802,37803,37804,37805,37806,37807,37808,37809,37810,37811,37812,37813,37814,37815,37816,37817,37818,37819,37820,37821,37822,37823,37824,37825,37826,37827,37828,37829,37830,37831,37832,37833,37834,37835,37836,37837,37838,37839,37840,37841,37842,37843,37844,37845,37846,37847,37848,37849,37850,37851,37852,37853,37854,37855,37856,37857,37858,37859,37860,37861,37862,37863,37864,37865,37866,37867,37868,37869,37870,37871,37872,37873,37874,37875,37876,37877,37878,37879,37880,37881,37882,37883,37884,37885,37886,37887,37888,37889,37890,37891,37892,37893,37894,37895,37896,37897,37898,37899,37900,37901,37902,37903,37904,37905,37906,37907,37908,37909,37910,37911,37912,37913,37914,37915,37916,37917,37918,37919,37920,37921,37922,37923,37924,37925,37926,37927,37928,37929,37930,37931,37932,37933,37934,37935,37936,37937,37938,37939,37940,37941,37942,37943,37944,37945,37946,37947,37948,37949,37950,37951,37952,37953,37954,37955,37956,37957,37958,37959,37960,37961,37962,37963,37964,37965,37966,37967,37968,37969,37970,37971,37972,37973,37974,37975,37976,37977,37978,37979,37980,37981,37982,37983,37984,37985,37986,37987,37988,37989,37990,37991,37992,37993,37994,37995,37996,37997,37998,37999,38000,38001,38002,38003,38004,38005,38006,38007,38008,38009,38010,38011,38012,38013,38014,38015,38016,38017,38018,38019,38020,38021,38022,38023,38024,38025,38026,38027,38028,38029,38030,38031,38032,38033,38034,38035,38036,38037,38038,38039,38040,38041,38042,38043,38044,38045,38046,38047,38048,38049,38050,38051,38052,38053,38054,38055,38056,38057,38058,38059,38060,38061,38062,38063,38064,38065,38066,38067,38068,38069,38070,38071,38072,38073,38074,38075,38076,38077,38078,38079,38080,38081,38082,38083,38084,38085,38086,38087,38088,38089,38090,38091,38092,38093,38094,38095,38096,38097,38098,38099,38100,38101,38102,38103,38104,38105,38106,38107,38108,38109,38110,38111,38112,38113,38114,38115,38116,38117,38118,38119,38120,38121,38122,38123,38124,38125,38126,38127,38128,38129,38130,38131,38132,38133,38134,38135,38136,38137,38138,38139,38140,38141,38142,38143,38144,38145,38146,38147,38148,38149,38150,38151,38152,38153,38154,38155,38156,38157,38158,38159,38160,38161,38162,38163,38164,38165,38166,38167,38168,38169,38170,38171,38172,38173,38174,38175,38176,38177,38178,38179,38180,38181,38182,38183,38184,38185,38186,38187,38188,38189,38190,38191,38192,38193,38194,38195,38196,38197,38198,38199,38200,38201,38202,38203,38204,38205,38206,38207,38208,38209,38210,38211,38212,38213,38214,38215,38216,38217,38218,38219,38220,38221,38222,38223,38224,38225,38226,38227,38228,38229,38230,38231,38232,38233,38234,38235,38236,38237,38238,38239,38240,38241,38242,38243,38244,38245,38246,38247,38248,38249,38250,38251,38252,38253,38254,38255,38256,38257,38258,38259,38260,38261,38262,38263,38264,38265,38266,38267,38268,38269,38270,38271,38272,38273,38274,38275,38276,38277,38278,38279,38280,38281,38282,38283,38284,38285,38286,38287,38288,38289,38290,38291,38292,38293,38294,38295,38296,38297,38298,38299,38300,38301,38302,38303,38304,38305,38306,38307,38308,38309,38310,38311,38312,38313,38314,38315,38316,38317,38318,38319,38320,38321,38322,38323,38324,38325,38326,38327,38328,38329,38330,38331,38332,38333,38334,38335,38336,38337,38338,38339,38340,38341,38342,38343,38344,38345,38346,38347,38348,38349,38350,38351,38352,38353,38354,38355,38356,38357,38358,38359,38360,38361,38362,38363,38364,38365,38366,38367,38368,38369,38370,38371,38372,38373,38374,38375,38376,38377,38378,38379,38380,38381,38382,38383,38384,38385,38386,38387,38388,38389,38390,38391,38392,38393,38394,38395,38396,38397,38398,38399,38400,38401,38402,38403,38404,38405,38406,38407,38408,38409,38410,38411,38412,38413,38414,38415,38416,38417,38418,38419,38420,38421,38422,38423,38424,38425,38426,38427,38428,38429,38430,38431,38432,38433,38434,38435,38436,38437,38438,38439,38440,38441,38442,38443,38444,38445,38446,38447,38448,38449,38450,38451,38452,38453,38454,38455,38456,38457,38458,38459,38460,38461,38462,38463,38464,38465,38466,38467,38468,38469,38470,38471,38472,38473,38474,38475,38476,38477,38478,38479,38480,38481,38482,38483,38484,38485,38486,38487,38488,38489,38490,38491,38492,38493,38494,38495,38496,38497,38498,38499,38500,38501,38502,38503,38504,38505,38506,38507,38508,38509,38510,38511,38512,38513,38514,38515,38516,38517,38518,38519,38520,38521,38522,38523,38524,38525,38526,38527,38528,38529,38530,38531,38532,38533,38534,38535,38536,38537,38538,38539,38540,38541,38542,38543,38544,38545,38546,38547,38548,38549,38550,38551,38552,38553,38554,38555,38556,38557,38558,38559,38560,38561,38562,38563,38564,38565,38566,38567,38568,38569,38570,38571,38572,38573,38574,38575,38576,38577,38578,38579,38580,38581,38582,38583,38584,38585,38586,38587,38588,38589,38590,38591,38592,38593,38594,38595,38596,38597,38598,38599,38600,38601,38602,38603,38604,38605,38606,38607,38608,38609,38610,38611,38612,38613,38614,38615,38616,38617,38618,38619,38620,38621,38622,38623,38624,38625,38626,38627,38628,38629,38630,38631,38632,38633,38634,38635,38636,38637,38638,38639,38640,38641,38642,38643,38644,38645,38646,38647,38648,38649,38650,38651,38652,38653,38654,38655,38656,38657,38658,38659,38660,38661,38662,38663,38664,38665,38666,38667,38668,38669,38670,38671,38672,38673,38674,38675,38676,38677,38678,38679,38680,38681,38682,38683,38684,38685,38686,38687,38688,38689,38690,38691,38692,38693,38694,38695,38696,38697,38698,38699,38700,38701,38702,38703,38704,38705,38706,38707,38708,38709,38710,38711,38712,38713,38714,38715,38716,38717,38718,38719,38720,38721,38722,38723,38724,38725,38726,38727,38728,38729,38730,38731,38732,38733,38734,38735,38736,38737,38738,38739,38740,38741,38742,38743,38744,38745,38746,38747,38748,38749,38750,38751,38752,38753,38754,38755,38756,38757,38758,38759,38760,38761,38762,38763,38764,38765,38766,38767,38768,38769,38770,38771,38772,38773,38774,38775,38776,38777,38778,38779,38780,38781,38782,38783,38784,38785,38786,38787,38788,38789,38790,38791,38792,38793,38794,38795,38796,38797,38798,38799,38800,38801,38802,38803,38804,38805,38806,38807,38808,38809,38810,38811,38812,38813,38814,38815,38816,38817,38818,38819,38820,38821,38822,38823,38824,38825,38826,38827,38828,38829,38830,38831,38832,38833,38834,38835,38836,38837,38838,38839,38840,38841,38842,38843,38844,38845,38846,38847,38848,38849,38850,38851,38852,38853,38854,38855,38856,38857,38858,38859,38860,38861,38862,38863,38864,38865,38866,38867,38868,38869,38870,38871,38872,38873,38874,38875,38876,38877,38878,38879,38880,38881,38882,38883,38884,38885,38886,38887,38888,38889,38890,38891,38892,38893,38894,38895,38896,38897,38898,38899,38900,38901,38902,38903,38904,38905,38906,38907,38908,38909,38910,38911,38912,38913,38914,38915,38916,38917,38918,38919,38920,38921,38922,38923,38924,38925,38926,38927,38928,38929,38930,38931,38932,38933,38934,38935,38936,38937,38938,38939,38940,38941,38942,38943,38944,38945,38946,38947,38948,38949,38950,38951,38952,38953,38954,38955,38956,38957,38958,38959,38960,38961,38962,38963,38964,38965,38966,38967,38968,38969,38970,38971,38972,38973,38974,38975,38976,38977,38978,38979,38980,38981,38982,38983,38984,38985,38986,38987,38988,38989,38990,38991,38992,38993,38994,38995,38996,38997,38998,38999,39000,39001,39002,39003,39004,39005,39006,39007,39008,39009,39010,39011,39012,39013,39014,39015,39016,39017,39018,39019,39020,39021,39022,39023,39024,39025,39026,39027,39028,39029,39030,39031,39032,39033,39034,39035,39036,39037,39038,39039,39040,39041,39042,39043,39044,39045,39046,39047,39048,39049,39050,39051,39052,39053,39054,39055,39056,39057,39058,39059,39060,39061,39062,39063,39064,39065,39066,39067,39068,39069,39070,39071,39072,39073,39074,39075,39076,39077,39078,39079,39080,39081,39082,39083,39084,39085,39086,39087,39088,39089,39090,39091,39092,39093,39094,39095,39096,39097,39098,39099,39100,39101,39102,39103,39104,39105,39106,39107,39108,39109,39110,39111,39112,39113,39114,39115,39116,39117,39118,39119,39120,39121,39122,39123,39124,39125,39126,39127,39128,39129,39130,39131,39132,39133,39134,39135,39136,39137,39138,39139,39140,39141,39142,39143,39144,39145,39146,39147,39148,39149,39150,39151,39152,39153,39154,39155,39156,39157,39158,39159,39160,39161,39162,39163,39164,39165,39166,39167,39168,39169,39170,39171,39172,39173,39174,39175,39176,39177,39178,39179,39180,39181,39182,39183,39184,39185,39186,39187,39188,39189,39190,39191,39192,39193,39194,39195,39196,39197,39198,39199,39200,39201,39202,39203,39204,39205,39206,39207,39208,39209,39210,39211,39212,39213,39214,39215,39216,39217,39218,39219,39220,39221,39222,39223,39224,39225,39226,39227,39228,39229,39230,39231,39232,39233,39234,39235,39236,39237,39238,39239,39240,39241,39242,39243,39244,39245,39246,39247,39248,39249,39250,39251,39252,39253,39254,39255,39256,39257,39258,39259,39260,39261,39262,39263,39264,39265,39266,39267,39268,39269,39270,39271,39272,39273,39274,39275,39276,39277,39278,39279,39280,39281,39282,39283,39284,39285,39286,39287,39288,39289,39290,39291,39292,39293,39294,39295,39296,39297,39298,39299,39300,39301,39302,39303,39304,39305,39306,39307,39308,39309,39310,39311,39312,39313,39314,39315,39316,39317,39318,39319,39320,39321,39322,39323,39324,39325,39326,39327,39328,39329,39330,39331,39332,39333,39334,39335,39336,39337,39338,39339,39340,39341,39342,39343,39344,39345,39346,39347,39348,39349,39350,39351,39352,39353,39354,39355,39356,39357,39358,39359,39360,39361,39362,39363,39364,39365,39366,39367,39368,39369,39370,39371,39372,39373,39374,39375,39376,39377,39378,39379,39380,39381,39382,39383,39384,39385,39386,39387,39388,39389,39390,39391,39392,39393,39394,39395,39396,39397,39398,39399,39400,39401,39402,39403,39404,39405,39406,39407,39408,39409,39410,39411,39412,39413,39414,39415,39416,39417,39418,39419,39420,39421,39422,39423,39424,39425,39426,39427,39428,39429,39430,39431,39432,39433,39434,39435,39436,39437,39438,39439,39440,39441,39442,39443,39444,39445,39446,39447,39448,39449,39450,39451,39452,39453,39454,39455,39456,39457,39458,39459,39460,39461,39462,39463,39464,39465,39466,39467,39468,39469,39470,39471,39472,39473,39474,39475,39476,39477,39478,39479,39480,39481,39482,39483,39484,39485,39486,39487,39488,39489,39490,39491,39492,39493,39494,39495,39496,39497,39498,39499,39500,39501,39502,39503,39504,39505,39506,39507,39508,39509,39510,39511,39512,39513,39514,39515,39516,39517,39518,39519,39520,39521,39522,39523,39524,39525,39526,39527,39528,39529,39530,39531,39532,39533,39534,39535,39536,39537,39538,39539,39540,39541,39542,39543,39544,39545,39546,39547,39548,39549,39550,39551,39552,39553,39554,39555,39556,39557,39558,39559,39560,39561,39562,39563,39564,39565,39566,39567,39568,39569,39570,39571,39572,39573,39574,39575,39576,39577,39578,39579,39580,39581,39582,39583,39584,39585,39586,39587,39588,39589,39590,39591,39592,39593,39594,39595,39596,39597,39598,39599,39600,39601,39602,39603,39604,39605,39606,39607,39608,39609,39610,39611,39612,39613,39614,39615,39616,39617,39618,39619,39620,39621,39622,39623,39624,39625,39626,39627,39628,39629,39630,39631,39632,39633,39634,39635,39636,39637,39638,39639,39640,39641,39642,39643,39644,39645,39646,39647,39648,39649,39650,39651,39652,39653,39654,39655,39656,39657,39658,39659,39660,39661,39662,39663,39664,39665,39666,39667,39668,39669,39670,39671,39672,39673,39674,39675,39676,39677,39678,39679,39680,39681,39682,39683,39684,39685,39686,39687,39688,39689,39690,39691,39692,39693,39694,39695,39696,39697,39698,39699,39700,39701,39702,39703,39704,39705,39706,39707,39708,39709,39710,39711,39712,39713,39714,39715,39716,39717,39718,39719,39720,39721,39722,39723,39724,39725,39726,39727,39728,39729,39730,39731,39732,39733,39734,39735,39736,39737,39738,39739,39740,39741,39742,39743,39744,39745,39746,39747,39748,39749,39750,39751,39752,39753,39754,39755,39756,39757,39758,39759,39760,39761,39762,39763,39764,39765,39766,39767,39768,39769,39770,39771,39772,39773,39774,39775,39776,39777,39778,39779,39780,39781,39782,39783,39784,39785,39786,39787,39788,39789,39790,39791,39792,39793,39794,39795,39796,39797,39798,39799,39800,39801,39802,39803,39804,39805,39806,39807,39808,39809,39810,39811,39812,39813,39814,39815,39816,39817,39818,39819,39820,39821,39822,39823,39824,39825,39826,39827,39828,39829,39830,39831,39832,39833,39834,39835,39836,39837,39838,39839,39840,39841,39842,39843,39844,39845,39846,39847,39848,39849,39850,39851,39852,39853,39854,39855,39856,39857,39858,39859,39860,39861,39862,39863,39864,39865,39866,39867,39868,39869,39870,39871,39872,39873,39874,39875,39876,39877,39878,39879,39880,39881,39882,39883,39884,39885,39886,39887,39888,39889,39890,39891,39892,39893,39894,39895,39896,39897,39898,39899,39900,39901,39902,39903,39904,39905,39906,39907,39908,39909,39910,39911,39912,39913,39914,39915,39916,39917,39918,39919,39920,39921,39922,39923,39924,39925,39926,39927,39928,39929,39930,39931,39932,39933,39934,39935,39936,39937,39938,39939,39940,39941,39942,39943,39944,39945,39946,39947,39948,39949,39950,39951,39952,39953,39954,39955,39956,39957,39958,39959,39960,39961,39962,39963,39964,39965,39966,39967,39968,39969,39970,39971,39972,39973,39974,39975,39976,39977,39978,39979,39980,39981,39982,39983,39984,39985,39986,39987,39988,39989,39990,39991,39992,39993,39994,39995,39996,39997,39998,39999,40000,40001,40002,40003,40004,40005,40006,40007,40008,40009,40010,40011,40012,40013,40014,40015,40016,40017,40018,40019,40020,40021,40022,40023,40024,40025,40026,40027,40028,40029,40030,40031,40032,40033,40034,40035,40036,40037,40038,40039,40040,40041,40042,40043,40044,40045,40046,40047,40048,40049,40050,40051,40052,40053,40054,40055,40056,40057,40058,40059,40060,40061,40062,40063,40064,40065,40066,40067,40068,40069,40070,40071,40072,40073,40074,40075,40076,40077,40078,40079,40080,40081,40082,40083,40084,40085,40086,40087,40088,40089,40090,40091,40092,40093,40094,40095,40096,40097,40098,40099,40100,40101,40102,40103,40104,40105,40106,40107,40108,40109,40110,40111,40112,40113,40114,40115,40116,40117,40118,40119,40120,40121,40122,40123,40124,40125,40126,40127,40128,40129,40130,40131,40132,40133,40134,40135,40136,40137,40138,40139,40140,40141,40142,40143,40144,40145,40146,40147,40148,40149,40150,40151,40152,40153,40154,40155,40156,40157,40158,40159,40160,40161,40162,40163,40164,40165,40166,40167,40168,40169,40170,40171,40172,40173,40174,40175,40176,40177,40178,40179,40180,40181,40182,40183,40184,40185,40186,40187,40188,40189,40190,40191,40192,40193,40194,40195,40196,40197,40198,40199,40200,40201,40202,40203,40204,40205,40206,40207,40208,40209,40210,40211,40212,40213,40214,40215,40216,40217,40218,40219,40220,40221,40222,40223,40224,40225,40226,40227,40228,40229,40230,40231,40232,40233,40234,40235,40236,40237,40238,40239,40240,40241,40242,40243,40244,40245,40246,40247,40248,40249,40250,40251,40252,40253,40254,40255,40256,40257,40258,40259,40260,40261,40262,40263,40264,40265,40266,40267,40268,40269,40270,40271,40272,40273,40274,40275,40276,40277,40278,40279,40280,40281,40282,40283,40284,40285,40286,40287,40288,40289,40290,40291,40292,40293,40294,40295,40296,40297,40298,40299,40300,40301,40302,40303,40304,40305,40306,40307,40308,40309,40310,40311,40312,40313,40314,40315,40316,40317,40318,40319,40320,40321,40322,40323,40324,40325,40326,40327,40328,40329,40330,40331,40332,40333,40334,40335,40336,40337,40338,40339,40340,40341,40342,40343,40344,40345,40346,40347,40348,40349,40350,40351,40352,40353,40354,40355,40356,40357,40358,40359,40360,40361,40362,40363,40364,40365,40366,40367,40368,40369,40370,40371,40372,40373,40374,40375,40376,40377,40378,40379,40380,40381,40382,40383,40384,40385,40386,40387,40388,40389,40390,40391,40392,40393,40394,40395,40396,40397,40398,40399,40400,40401,40402,40403,40404,40405,40406,40407,40408,40409,40410,40411,40412,40413,40414,40415,40416,40417,40418,40419,40420,40421,40422,40423,40424,40425,40426,40427,40428,40429,40430,40431,40432,40433,40434,40435,40436,40437,40438,40439,40440,40441,40442,40443,40444,40445,40446,40447,40448,40449,40450,40451,40452,40453,40454,40455,40456,40457,40458,40459,40460,40461,40462,40463,40464,40465,40466,40467,40468,40469,40470,40471,40472,40473,40474,40475,40476,40477,40478,40479,40480,40481,40482,40483,40484,40485,40486,40487,40488,40489,40490,40491,40492,40493,40494,40495,40496,40497,40498,40499,40500,40501,40502,40503,40504,40505,40506,40507,40508,40509,40510,40511,40512,40513,40514,40515,40516,40517,40518,40519,40520,40521,40522,40523,40524,40525,40526,40527,40528,40529,40530,40531,40532,40533,40534,40535,40536,40537,40538,40539,40540,40541,40542,40543,40544,40545,40546,40547,40548,40549,40550,40551,40552,40553,40554,40555,40556,40557,40558,40559,40560,40561,40562,40563,40564,40565,40566,40567,40568,40569,40570,40571,40572,40573,40574,40575,40576,40577,40578,40579,40580,40581,40582,40583,40584,40585,40586,40587,40588,40589,40590,40591,40592,40593,40594,40595,40596,40597,40598,40599,40600,40601,40602,40603,40604,40605,40606,40607,40608,40609,40610,40611,40612,40613,40614,40615,40616,40617,40618,40619,40620,40621,40622,40623,40624,40625,40626,40627,40628,40629,40630,40631,40632,40633,40634,40635,40636,40637,40638,40639,40640,40641,40642,40643,40644,40645,40646,40647,40648,40649,40650,40651,40652,40653,40654,40655,40656,40657,40658,40659,40660,40661,40662,40663,40664,40665,40666,40667,40668,40669,40670,40671,40672,40673,40674,40675,40676,40677,40678,40679,40680,40681,40682,40683,40684,40685,40686,40687,40688,40689,40690,40691,40692,40693,40694,40695,40696,40697,40698,40699,40700,40701,40702,40703,40704,40705,40706,40707,40708,40709,40710,40711,40712,40713,40714,40715,40716,40717,40718,40719,40720,40721,40722,40723,40724,40725,40726,40727,40728,40729,40730,40731,40732,40733,40734,40735,40736,40737,40738,40739,40740,40741,40742,40743,40744,40745,40746,40747,40748,40749,40750,40751,40752,40753,40754,40755,40756,40757,40758,40759,40760,40761,40762,40763,40764,40765,40766,40767,40768,40769,40770,40771,40772,40773,40774,40775,40776,40777,40778,40779,40780,40781,40782,40783,40784,40785,40786,40787,40788,40789,40790,40791,40792,40793,40794,40795,40796,40797,40798,40799,40800,40801,40802,40803,40804,40805,40806,40807,40808,40809,40810,40811,40812,40813,40814,40815,40816,40817,40818,40819,40820,40821,40822,40823,40824,40825,40826,40827,40828,40829,40830,40831,40832,40833,40834,40835,40836,40837,40838,40839,40840,40841,40842,40843,40844,40845,40846,40847,40848,40849,40850,40851,40852,40853,40854,40855,40856,40857,40858,40859,40860,40861,40862,40863,40864,40865,40866,40867,40868,40869,40870,40871,40872,40873,40874,40875,40876,40877,40878,40879,40880,40881,40882,40883,40884,40885,40886,40887,40888,40889,40890,40891,40892,40893,40894,40895,40896,40897,40898,40899,40900,40901,40902,40903,40904,40905,40906,40907,40908,40909,40910,40911,40912,40913,40914,40915,40916,40917,40918,40919,40920,40921,40922,40923,40924,40925,40926,40927,40928,40929,40930,40931,40932,40933,40934,40935,40936,40937,40938,40939,40940,40941,40942,40943,40944,40945,40946,40947,40948,40949,40950,40951,40952,40953,40954,40955,40956,40957,40958,40959,40960,40961,40962,40963,40964,40965,40966,40967,40968,40969,40970,40971,40972,40973,40974,40975,40976,40977,40978,40979,40980,40981,40982,40983,40984,40985,40986,40987,40988,40989,40990,40991,40992,40993,40994,40995,40996,40997,40998,40999,41000,41001,41002,41003,41004,41005,41006,41007,41008,41009,41010,41011,41012,41013,41014,41015,41016,41017,41018,41019,41020,41021,41022,41023,41024,41025,41026,41027,41028,41029,41030,41031,41032,41033,41034,41035,41036,41037,41038,41039,41040,41041,41042,41043,41044,41045,41046,41047,41048,41049,41050,41051,41052,41053,41054,41055,41056,41057,41058,41059,41060,41061,41062,41063,41064,41065,41066,41067,41068,41069,41070,41071,41072,41073,41074,41075,41076,41077,41078,41079,41080,41081,41082,41083,41084,41085,41086,41087,41088,41089,41090,41091,41092,41093,41094,41095,41096,41097,41098,41099,41100,41101,41102,41103,41104,41105,41106,41107,41108,41109,41110,41111,41112,41113,41114,41115,41116,41117,41118,41119,41120,41121,41122,41123,41124,41125,41126,41127,41128,41129,41130,41131,41132,41133,41134,41135,41136,41137,41138,41139,41140,41141,41142,41143,41144,41145,41146,41147,41148,41149,41150,41151,41152,41153,41154,41155,41156,41157,41158,41159,41160,41161,41162,41163,41164,41165,41166,41167,41168,41169,41170,41171,41172,41173,41174,41175,41176,41177,41178,41179,41180,41181,41182,41183,41184,41185,41186,41187,41188,41189,41190,41191,41192,41193,41194,41195,41196,41197,41198,41199,41200,41201,41202,41203,41204,41205,41206,41207,41208,41209,41210,41211,41212,41213,41214,41215,41216,41217,41218,41219,41220,41221,41222,41223,41224,41225,41226,41227,41228,41229,41230,41231,41232,41233,41234,41235,41236,41237,41238,41239,41240,41241,41242,41243,41244,41245,41246,41247,41248,41249,41250,41251,41252,41253,41254,41255,41256,41257,41258,41259,41260,41261,41262,41263,41264,41265,41266,41267,41268,41269,41270,41271,41272,41273,41274,41275,41276,41277,41278,41279,41280,41281,41282,41283,41284,41285,41286,41287,41288,41289,41290,41291,41292,41293,41294,41295,41296,41297,41298,41299,41300,41301,41302,41303,41304,41305,41306,41307,41308,41309,41310,41311,41312,41313,41314,41315,41316,41317,41318,41319,41320,41321,41322,41323,41324,41325,41326,41327,41328,41329,41330,41331,41332,41333,41334,41335,41336,41337,41338,41339,41340,41341,41342,41343,41344,41345,41346,41347,41348,41349,41350,41351,41352,41353,41354,41355,41356,41357,41358,41359,41360,41361,41362,41363,41364,41365,41366,41367,41368,41369,41370,41371,41372,41373,41374,41375,41376,41377,41378,41379,41380,41381,41382,41383,41384,41385,41386,41387,41388,41389,41390,41391,41392,41393,41394,41395,41396,41397,41398,41399,41400,41401,41402,41403,41404,41405,41406,41407,41408,41409,41410,41411,41412,41413,41414,41415,41416,41417,41418,41419,41420,41421,41422,41423,41424,41425,41426,41427,41428,41429,41430,41431,41432,41433,41434,41435,41436,41437,41438,41439,41440,41441,41442,41443,41444,41445,41446,41447,41448,41449,41450,41451,41452,41453,41454,41455,41456,41457,41458,41459,41460,41461,41462,41463,41464,41465,41466,41467,41468,41469,41470,41471,41472,41473,41474,41475,41476,41477,41478,41479,41480,41481,41482,41483,41484,41485,41486,41487,41488,41489,41490,41491,41492,41493,41494,41495,41496,41497,41498,41499,41500,41501,41502,41503,41504,41505,41506,41507,41508,41509,41510,41511,41512,41513,41514,41515,41516,41517,41518,41519,41520,41521,41522,41523,41524,41525,41526,41527,41528,41529,41530,41531,41532,41533,41534,41535,41536,41537,41538,41539,41540,41541,41542,41543,41544,41545,41546,41547,41548,41549,41550,41551,41552,41553,41554,41555,41556,41557,41558,41559,41560,41561,41562,41563,41564,41565,41566,41567,41568,41569,41570,41571,41572,41573,41574,41575,41576,41577,41578,41579,41580,41581,41582,41583,41584,41585,41586,41587,41588,41589,41590,41591,41592,41593,41594,41595,41596,41597,41598,41599,41600,41601,41602,41603,41604,41605,41606,41607,41608,41609,41610,41611,41612,41613,41614,41615,41616,41617,41618,41619,41620,41621,41622,41623,41624,41625,41626,41627,41628,41629,41630,41631,41632,41633,41634,41635,41636,41637,41638,41639,41640,41641,41642,41643,41644,41645,41646,41647,41648,41649,41650,41651,41652,41653,41654,41655,41656,41657,41658,41659,41660,41661,41662,41663,41664,41665,41666,41667,41668,41669,41670,41671,41672,41673,41674,41675,41676,41677,41678,41679,41680,41681,41682,41683,41684,41685,41686,41687,41688,41689,41690,41691,41692,41693,41694,41695,41696,41697,41698,41699,41700,41701,41702,41703,41704,41705,41706,41707,41708,41709,41710,41711,41712,41713,41714,41715,41716,41717,41718,41719,41720,41721,41722,41723,41724,41725,41726,41727,41728,41729,41730,41731,41732,41733,41734,41735,41736,41737,41738,41739,41740,41741,41742,41743,41744,41745,41746,41747,41748,41749,41750,41751,41752,41753,41754,41755,41756,41757,41758,41759,41760,41761,41762,41763,41764,41765,41766,41767,41768,41769,41770,41771,41772,41773,41774,41775,41776,41777,41778,41779,41780,41781,41782,41783,41784,41785,41786,41787,41788,41789,41790,41791,41792,41793,41794,41795,41796,41797,41798,41799,41800,41801,41802,41803,41804,41805,41806,41807,41808,41809,41810,41811,41812,41813,41814,41815,41816,41817,41818,41819,41820,41821,41822,41823,41824,41825,41826,41827,41828,41829,41830,41831,41832,41833,41834,41835,41836,41837,41838,41839,41840,41841,41842,41843,41844,41845,41846,41847,41848,41849,41850,41851,41852,41853,41854,41855,41856,41857,41858,41859,41860,41861,41862,41863,41864,41865,41866,41867,41868,41869,41870,41871,41872,41873,41874,41875,41876,41877,41878,41879,41880,41881,41882,41883,41884,41885,41886,41887,41888,41889,41890,41891,41892,41893,41894,41895,41896,41897,41898,41899,41900,41901,41902,41903,41904,41905,41906,41907,41908,41909,41910,41911,41912,41913,41914,41915,41916,41917,41918,41919,41920,41921,41922,41923,41924,41925,41926,41927,41928,41929,41930,41931,41932,41933,41934,41935,41936,41937,41938,41939,41940,41941,41942,41943,41944,41945,41946,41947,41948,41949,41950,41951,41952,41953,41954,41955,41956,41957,41958,41959,41960,41961,41962,41963,41964,41965,41966,41967,41968,41969,41970,41971,41972,41973,41974,41975,41976,41977,41978,41979,41980,41981,41982,41983,41984,41985,41986,41987,41988,41989,41990,41991,41992,41993,41994,41995,41996,41997,41998,41999,42000,42001,42002,42003,42004,42005,42006,42007,42008,42009,42010,42011,42012,42013,42014,42015,42016,42017,42018,42019,42020,42021,42022,42023,42024,42025,42026,42027,42028,42029,42030,42031,42032,42033,42034,42035,42036,42037,42038,42039,42040,42041,42042,42043,42044,42045,42046,42047,42048,42049,42050,42051,42052,42053,42054,42055,42056,42057,42058,42059,42060,42061,42062,42063,42064,42065,42066,42067,42068,42069,42070,42071,42072,42073,42074,42075,42076,42077,42078,42079,42080,42081,42082,42083,42084,42085,42086,42087,42088,42089,42090,42091,42092,42093,42094,42095,42096,42097,42098,42099,42100,42101,42102,42103,42104,42105,42106,42107,42108,42109,42110,42111,42112,42113,42114,42115,42116,42117,42118,42119,42120,42121,42122,42123,42124,42125,42126,42127,42128,42129,42130,42131,42132,42133,42134,42135,42136,42137,42138,42139,42140,42141,42142,42143,42144,42145,42146,42147,42148,42149,42150,42151,42152,42153,42154,42155,42156,42157,42158,42159,42160,42161,42162,42163,42164,42165,42166,42167,42168,42169,42170,42171,42172,42173,42174,42175,42176,42177,42178,42179,42180,42181,42182,42183,42184,42185,42186,42187,42188,42189,42190,42191,42192,42193,42194,42195,42196,42197,42198,42199,42200,42201,42202,42203,42204,42205,42206,42207,42208,42209,42210,42211,42212,42213,42214,42215,42216,42217,42218,42219,42220,42221,42222,42223,42224,42225,42226,42227,42228,42229,42230,42231,42232,42233,42234,42235,42236,42237,42238,42239,42240,42241,42242,42243,42244,42245,42246,42247,42248,42249,42250,42251,42252,42253,42254,42255,42256,42257,42258,42259,42260,42261,42262,42263,42264,42265,42266,42267,42268,42269,42270,42271,42272,42273,42274,42275,42276,42277,42278,42279,42280,42281,42282,42283,42284,42285,42286,42287,42288,42289,42290,42291,42292,42293,42294,42295,42296,42297,42298,42299,42300,42301,42302,42303,42304,42305,42306,42307,42308,42309,42310,42311,42312,42313,42314,42315,42316,42317,42318,42319,42320,42321,42322,42323,42324,42325,42326,42327,42328,42329,42330,42331,42332,42333,42334,42335,42336,42337,42338,42339,42340,42341,42342,42343,42344,42345,42346,42347,42348,42349,42350,42351,42352,42353,42354,42355,42356,42357,42358,42359,42360,42361,42362,42363,42364,42365,42366,42367,42368,42369,42370,42371,42372,42373,42374,42375,42376,42377,42378,42379,42380,42381,42382,42383,42384,42385,42386,42387,42388,42389,42390,42391,42392,42393,42394,42395,42396,42397,42398,42399,42400,42401,42402,42403,42404,42405,42406,42407,42408,42409,42410,42411,42412,42413,42414,42415,42416,42417,42418,42419,42420,42421,42422,42423,42424,42425,42426,42427,42428,42429,42430,42431,42432,42433,42434,42435,42436,42437,42438,42439,42440,42441,42442,42443,42444,42445,42446,42447,42448,42449,42450,42451,42452,42453,42454,42455,42456,42457,42458,42459,42460,42461,42462,42463,42464,42465,42466,42467,42468,42469,42470,42471,42472,42473,42474,42475,42476,42477,42478,42479,42480,42481,42482,42483,42484,42485,42486,42487,42488,42489,42490,42491,42492,42493,42494,42495,42496,42497,42498,42499,42500,42501,42502,42503,42504,42505,42506,42507,42508,42509,42510,42511,42512,42513,42514,42515,42516,42517,42518,42519,42520,42521,42522,42523,42524,42525,42526,42527,42528,42529,42530,42531,42532,42533,42534,42535,42536,42537,42538,42539,42540,42541,42542,42543,42544,42545,42546,42547,42548,42549,42550,42551,42552,42553,42554,42555,42556,42557,42558,42559,42560,42561,42562,42563,42564,42565,42566,42567,42568,42569,42570,42571,42572,42573,42574,42575,42576,42577,42578,42579,42580,42581,42582,42583,42584,42585,42586,42587,42588,42589,42590,42591,42592,42593,42594,42595,42596,42597,42598,42599,42600,42601,42602,42603,42604,42605,42606,42607,42608,42609,42610,42611,42612,42613,42614,42615,42616,42617,42618,42619,42620,42621,42622,42623,42624,42625,42626,42627,42628,42629,42630,42631,42632,42633,42634,42635,42636,42637,42638,42639,42640,42641,42642,42643,42644,42645,42646,42647,42648,42649,42650,42651,42652,42653,42654,42655,42656,42657,42658,42659,42660,42661,42662,42663,42664,42665,42666,42667,42668,42669,42670,42671,42672,42673,42674,42675,42676,42677,42678,42679,42680,42681,42682,42683,42684,42685,42686,42687,42688,42689,42690,42691,42692,42693,42694,42695,42696,42697,42698,42699,42700,42701,42702,42703,42704,42705,42706,42707,42708,42709,42710,42711,42712,42713,42714,42715,42716,42717,42718,42719,42720,42721,42722,42723,42724,42725,42726,42727,42728,42729,42730,42731,42732,42733,42734,42735,42736,42737,42738,42739,42740,42741,42742,42743,42744,42745,42746,42747,42748,42749,42750,42751,42752,42753,42754,42755,42756,42757,42758,42759,42760,42761,42762,42763,42764,42765,42766,42767,42768,42769,42770,42771,42772,42773,42774,42775,42776,42777,42778,42779,42780,42781,42782,42783,42784,42785,42786,42787,42788,42789,42790,42791,42792,42793,42794,42795,42796,42797,42798,42799,42800,42801,42802,42803,42804,42805,42806,42807,42808,42809,42810,42811,42812,42813,42814,42815,42816,42817,42818,42819,42820,42821,42822,42823,42824,42825,42826,42827,42828,42829,42830,42831,42832,42833,42834,42835,42836,42837,42838,42839,42840,42841,42842,42843,42844,42845,42846,42847,42848,42849,42850,42851,42852,42853,42854,42855,42856,42857,42858,42859,42860,42861,42862,42863,42864,42865,42866,42867,42868,42869,42870,42871,42872,42873,42874,42875,42876,42877,42878,42879,42880,42881,42882,42883,42884,42885,42886,42887,42888,42889,42890,42891,42892,42893,42894,42895,42896,42897,42898,42899,42900,42901,42902,42903,42904,42905,42906,42907,42908,42909,42910,42911,42912,42913,42914,42915,42916,42917,42918,42919,42920,42921,42922,42923,42924,42925,42926,42927,42928,42929,42930,42931,42932,42933,42934,42935,42936,42937,42938,42939,42940,42941,42942,42943,42944,42945,42946,42947,42948,42949,42950,42951,42952,42953,42954,42955,42956,42957,42958,42959,42960,42961,42962,42963,42964,42965,42966,42967,42968,42969,42970,42971,42972,42973,42974,42975,42976,42977,42978,42979,42980,42981,42982,42983,42984,42985,42986,42987,42988,42989,42990,42991,42992,42993,42994,42995,42996,42997,42998,42999,43000,43001,43002,43003,43004,43005,43006,43007,43008,43009,43010,43011,43012,43013,43014,43015,43016,43017,43018,43019,43020,43021,43022,43023,43024,43025,43026,43027,43028,43029,43030,43031,43032,43033,43034,43035,43036,43037,43038,43039,43040,43041,43042,43043,43044,43045,43046,43047,43048,43049,43050,43051,43052,43053,43054,43055,43056,43057,43058,43059,43060,43061,43062,43063,43064,43065,43066,43067,43068,43069,43070,43071,43072,43073,43074,43075,43076,43077,43078,43079,43080,43081,43082,43083,43084,43085,43086,43087,43088,43089,43090,43091,43092,43093,43094,43095,43096,43097,43098,43099,43100,43101,43102,43103,43104,43105,43106,43107,43108,43109,43110,43111,43112,43113,43114,43115,43116,43117,43118,43119,43120,43121,43122,43123,43124,43125,43126,43127,43128,43129,43130,43131,43132,43133,43134,43135,43136,43137,43138,43139,43140,43141,43142,43143,43144,43145,43146,43147,43148,43149,43150,43151,43152,43153,43154,43155,43156,43157,43158,43159,43160,43161,43162,43163,43164,43165,43166,43167,43168,43169,43170,43171,43172,43173,43174,43175,43176,43177,43178,43179,43180,43181,43182,43183,43184,43185,43186,43187,43188,43189,43190,43191,43192,43193,43194,43195,43196,43197,43198,43199,43200,43201,43202,43203,43204,43205,43206,43207,43208,43209,43210,43211,43212,43213,43214,43215,43216,43217,43218,43219,43220,43221,43222,43223,43224,43225,43226,43227,43228,43229,43230,43231,43232,43233,43234,43235,43236,43237,43238,43239,43240,43241,43242,43243,43244,43245,43246,43247,43248,43249,43250,43251,43252,43253,43254,43255,43256,43257,43258,43259,43260,43261,43262,43263,43264,43265,43266,43267,43268,43269,43270,43271,43272,43273,43274,43275,43276,43277,43278,43279,43280,43281,43282,43283,43284,43285,43286,43287,43288,43289,43290,43291,43292,43293,43294,43295,43296,43297,43298,43299,43300,43301,43302,43303,43304,43305,43306,43307,43308,43309,43310,43311,43312,43313,43314,43315,43316,43317,43318,43319,43320,43321,43322,43323,43324,43325,43326,43327,43328,43329,43330,43331,43332,43333,43334,43335,43336,43337,43338,43339,43340,43341,43342,43343,43344,43345,43346,43347,43348,43349,43350,43351,43352,43353,43354,43355,43356,43357,43358,43359,43360,43361,43362,43363,43364,43365,43366,43367,43368,43369,43370,43371,43372,43373,43374,43375,43376,43377,43378,43379,43380,43381,43382,43383,43384,43385,43386,43387,43388,43389,43390,43391,43392,43393,43394,43395,43396,43397,43398,43399,43400,43401,43402,43403,43404,43405,43406,43407,43408,43409,43410,43411,43412,43413,43414,43415,43416,43417,43418,43419,43420,43421,43422,43423,43424,43425,43426,43427,43428,43429,43430,43431,43432,43433,43434,43435,43436,43437,43438,43439,43440,43441,43442,43443,43444,43445,43446,43447,43448,43449,43450,43451,43452,43453,43454,43455,43456,43457,43458,43459,43460,43461,43462,43463,43464,43465,43466,43467,43468,43469,43470,43471,43472,43473,43474,43475,43476,43477,43478,43479,43480,43481,43482,43483,43484,43485,43486,43487,43488,43489,43490,43491,43492,43493,43494,43495,43496,43497,43498,43499,43500,43501,43502,43503,43504,43505,43506,43507,43508,43509,43510,43511,43512,43513,43514,43515,43516,43517,43518,43519,43520,43521,43522,43523,43524,43525,43526,43527,43528,43529,43530,43531,43532,43533,43534,43535,43536,43537,43538,43539,43540,43541,43542,43543,43544,43545,43546,43547,43548,43549,43550,43551,43552,43553,43554,43555,43556,43557,43558,43559,43560,43561,43562,43563,43564,43565,43566,43567,43568,43569,43570,43571,43572,43573,43574,43575,43576,43577,43578,43579,43580,43581,43582,43583,43584,43585,43586,43587,43588,43589,43590,43591,43592,43593,43594,43595,43596,43597,43598,43599,43600,43601,43602,43603,43604,43605,43606,43607,43608,43609,43610,43611,43612,43613,43614,43615,43616,43617,43618,43619,43620,43621,43622,43623,43624,43625,43626,43627,43628,43629,43630,43631,43632,43633,43634,43635,43636,43637,43638,43639,43640,43641,43642,43643,43644,43645,43646,43647,43648,43649,43650,43651,43652,43653,43654,43655,43656,43657,43658,43659,43660,43661,43662,43663,43664,43665,43666,43667,43668,43669,43670,43671,43672,43673,43674,43675,43676,43677,43678,43679,43680,43681,43682,43683,43684,43685,43686,43687,43688,43689,43690,43691,43692,43693,43694,43695,43696,43697,43698,43699,43700,43701,43702,43703,43704,43705,43706,43707,43708,43709,43710,43711,43712,43713,43714,43715,43716,43717,43718,43719,43720,43721,43722,43723,43724,43725,43726,43727,43728,43729,43730,43731,43732,43733,43734,43735,43736,43737,43738,43739,43740,43741,43742,43743,43744,43745,43746,43747,43748,43749,43750,43751,43752,43753,43754,43755,43756,43757,43758,43759,43760,43761,43762,43763,43764,43765,43766,43767,43768,43769,43770,43771,43772,43773,43774,43775,43776,43777,43778,43779,43780,43781,43782,43783,43784,43785,43786,43787,43788,43789,43790,43791,43792,43793,43794,43795,43796,43797,43798,43799,43800,43801,43802,43803,43804,43805,43806,43807,43808,43809,43810,43811,43812,43813,43814,43815,43816,43817,43818,43819,43820,43821,43822,43823,43824,43825,43826,43827,43828,43829,43830,43831,43832,43833,43834,43835,43836,43837,43838,43839,43840,43841,43842,43843,43844,43845,43846,43847,43848,43849,43850,43851,43852,43853,43854,43855,43856,43857,43858,43859,43860,43861,43862,43863,43864,43865,43866,43867,43868,43869,43870,43871,43872,43873,43874,43875,43876,43877,43878,43879,43880,43881,43882,43883,43884,43885,43886,43887,43888,43889,43890,43891,43892,43893,43894,43895,43896,43897,43898,43899,43900,43901,43902,43903,43904,43905,43906,43907,43908,43909,43910,43911,43912,43913,43914,43915,43916,43917,43918,43919,43920,43921,43922,43923,43924,43925,43926,43927,43928,43929,43930,43931,43932,43933,43934,43935,43936,43937,43938,43939,43940,43941,43942,43943,43944,43945,43946,43947,43948,43949,43950,43951,43952,43953,43954,43955,43956,43957,43958,43959,43960,43961,43962,43963,43964,43965,43966,43967,43968,43969,43970,43971,43972,43973,43974,43975,43976,43977,43978,43979,43980,43981,43982,43983,43984,43985,43986,43987,43988,43989,43990,43991,43992,43993,43994,43995,43996,43997,43998,43999,44000,44001,44002,44003,44004,44005,44006,44007,44008,44009,44010,44011,44012,44013,44014,44015,44016,44017,44018,44019,44020,44021,44022,44023,44024,44025,44026,44027,44028,44029,44030,44031,44032,44033,44034,44035,44036,44037,44038,44039,44040,44041,44042,44043,44044,44045,44046,44047,44048,44049,44050,44051,44052,44053,44054,44055,44056,44057,44058,44059,44060,44061,44062,44063,44064,44065,44066,44067,44068,44069,44070,44071,44072,44073,44074,44075,44076,44077,44078,44079,44080,44081,44082,44083,44084,44085,44086,44087,44088,44089,44090,44091,44092,44093,44094,44095,44096,44097,44098,44099,44100,44101,44102,44103,44104,44105,44106,44107,44108,44109,44110,44111,44112,44113,44114,44115,44116,44117,44118,44119,44120,44121,44122,44123,44124,44125,44126,44127,44128,44129,44130,44131,44132,44133,44134,44135,44136,44137,44138,44139,44140,44141,44142,44143,44144,44145,44146,44147,44148,44149,44150,44151,44152,44153,44154,44155,44156,44157,44158,44159,44160,44161,44162,44163,44164,44165,44166,44167,44168,44169,44170,44171,44172,44173,44174,44175,44176,44177,44178,44179,44180,44181,44182,44183,44184,44185,44186,44187,44188,44189,44190,44191,44192,44193,44194,44195,44196,44197,44198,44199,44200,44201,44202,44203,44204,44205,44206,44207,44208,44209,44210,44211,44212,44213,44214,44215,44216,44217,44218,44219,44220,44221,44222,44223,44224,44225,44226,44227,44228,44229,44230,44231,44232,44233,44234,44235,44236,44237,44238,44239,44240,44241,44242,44243,44244,44245,44246,44247,44248,44249,44250,44251,44252,44253,44254,44255,44256,44257,44258,44259,44260,44261,44262,44263,44264,44265,44266,44267,44268,44269,44270,44271,44272,44273,44274,44275,44276,44277,44278,44279,44280,44281,44282,44283,44284,44285,44286,44287,44288,44289,44290,44291,44292,44293,44294,44295,44296,44297,44298,44299,44300,44301,44302,44303,44304,44305,44306,44307,44308,44309,44310,44311,44312,44313,44314,44315,44316,44317,44318,44319,44320,44321,44322,44323,44324,44325,44326,44327,44328,44329,44330,44331,44332,44333,44334,44335,44336,44337,44338,44339,44340,44341,44342,44343,44344,44345,44346,44347,44348,44349,44350,44351,44352,44353,44354,44355,44356,44357,44358,44359,44360,44361,44362,44363,44364,44365,44366,44367,44368,44369,44370,44371,44372,44373,44374,44375,44376,44377,44378,44379,44380,44381,44382,44383,44384,44385,44386,44387,44388,44389,44390,44391,44392,44393,44394,44395,44396,44397,44398,44399,44400,44401,44402,44403,44404,44405,44406,44407,44408,44409,44410,44411,44412,44413,44414,44415,44416,44417,44418,44419,44420,44421,44422,44423,44424,44425,44426,44427,44428,44429,44430,44431,44432,44433,44434,44435,44436,44437,44438,44439,44440,44441,44442,44443,44444,44445,44446,44447,44448,44449,44450,44451,44452,44453,44454,44455,44456,44457,44458,44459,44460,44461,44462,44463,44464,44465,44466,44467,44468,44469,44470,44471,44472,44473,44474,44475,44476,44477,44478,44479,44480,44481,44482,44483,44484,44485,44486,44487,44488,44489,44490,44491,44492,44493,44494,44495,44496,44497,44498,44499,44500,44501,44502,44503,44504,44505,44506,44507,44508,44509,44510,44511,44512,44513,44514,44515,44516,44517,44518,44519,44520,44521,44522,44523,44524,44525,44526,44527,44528,44529,44530,44531,44532,44533,44534,44535,44536,44537,44538,44539,44540,44541,44542,44543,44544,44545,44546,44547,44548,44549,44550,44551,44552,44553,44554,44555,44556,44557,44558,44559,44560,44561,44562,44563,44564,44565,44566,44567,44568,44569,44570,44571,44572,44573,44574,44575,44576,44577,44578,44579,44580,44581,44582,44583,44584,44585,44586,44587,44588,44589,44590,44591,44592,44593,44594,44595,44596,44597,44598,44599,44600,44601,44602,44603,44604,44605,44606,44607,44608,44609,44610,44611,44612,44613,44614,44615,44616,44617,44618,44619,44620,44621,44622,44623,44624,44625,44626,44627,44628,44629,44630,44631,44632,44633,44634,44635,44636,44637,44638,44639,44640,44641,44642,44643,44644,44645,44646,44647,44648,44649,44650,44651,44652,44653,44654,44655,44656,44657,44658,44659,44660,44661,44662,44663,44664,44665,44666,44667,44668,44669,44670,44671,44672,44673,44674,44675,44676,44677,44678,44679,44680,44681,44682,44683,44684,44685,44686,44687,44688,44689,44690,44691,44692,44693,44694,44695,44696,44697,44698,44699,44700,44701,44702,44703,44704,44705,44706,44707,44708,44709,44710,44711,44712,44713,44714,44715,44716,44717,44718,44719,44720,44721,44722,44723,44724,44725,44726,44727,44728,44729,44730,44731,44732,44733,44734,44735,44736,44737,44738,44739,44740,44741,44742,44743,44744,44745,44746,44747,44748,44749,44750,44751,44752,44753,44754,44755,44756,44757,44758,44759,44760,44761,44762,44763,44764,44765,44766,44767,44768,44769,44770,44771,44772,44773,44774,44775,44776,44777,44778,44779,44780,44781,44782,44783,44784,44785,44786,44787,44788,44789,44790,44791,44792,44793,44794,44795,44796,44797,44798,44799,44800,44801,44802,44803,44804,44805,44806,44807,44808,44809,44810,44811,44812,44813,44814,44815,44816,44817,44818,44819,44820,44821,44822,44823,44824,44825,44826,44827,44828,44829,44830,44831,44832,44833,44834,44835,44836,44837,44838,44839,44840,44841,44842,44843,44844,44845,44846,44847,44848,44849,44850,44851,44852,44853,44854,44855,44856,44857,44858,44859,44860,44861,44862,44863,44864,44865,44866,44867,44868,44869,44870,44871,44872,44873,44874,44875,44876,44877,44878,44879,44880,44881,44882,44883,44884,44885,44886,44887,44888,44889,44890,44891,44892,44893,44894,44895,44896,44897,44898,44899,44900,44901,44902,44903,44904,44905,44906,44907,44908,44909,44910,44911,44912,44913,44914,44915,44916,44917,44918,44919,44920,44921,44922,44923,44924,44925,44926,44927,44928,44929,44930,44931,44932,44933,44934,44935,44936,44937,44938,44939,44940,44941,44942,44943,44944,44945,44946,44947,44948,44949,44950,44951,44952,44953,44954,44955,44956,44957,44958,44959,44960,44961,44962,44963,44964,44965,44966,44967,44968,44969,44970,44971,44972,44973,44974,44975,44976,44977,44978,44979,44980,44981,44982,44983,44984,44985,44986,44987,44988,44989,44990,44991,44992,44993,44994,44995,44996,44997,44998,44999,45000,45001,45002,45003,45004,45005,45006,45007,45008,45009,45010,45011,45012,45013,45014,45015,45016,45017,45018,45019,45020,45021,45022,45023,45024,45025,45026,45027,45028,45029,45030,45031,45032,45033,45034,45035,45036,45037,45038,45039,45040,45041,45042,45043,45044,45045,45046,45047,45048,45049,45050,45051,45052,45053,45054,45055,45056,45057,45058,45059,45060,45061,45062,45063,45064,45065,45066,45067,45068,45069,45070,45071,45072,45073,45074,45075,45076,45077,45078,45079,45080,45081,45082,45083,45084,45085,45086,45087,45088,45089,45090,45091,45092,45093,45094,45095,45096,45097,45098,45099,45100,45101,45102,45103,45104,45105,45106,45107,45108,45109,45110,45111,45112,45113,45114,45115,45116,45117,45118,45119,45120,45121,45122,45123,45124,45125,45126,45127,45128,45129,45130,45131,45132,45133,45134,45135,45136,45137,45138,45139,45140,45141,45142,45143,45144,45145,45146,45147,45148,45149,45150,45151,45152,45153,45154,45155,45156,45157,45158,45159,45160,45161,45162,45163,45164,45165,45166,45167,45168,45169,45170,45171,45172,45173,45174,45175,45176,45177,45178,45179,45180,45181,45182,45183,45184,45185,45186,45187,45188,45189,45190,45191,45192,45193,45194,45195,45196,45197,45198,45199,45200,45201,45202,45203,45204,45205,45206,45207,45208,45209,45210,45211,45212,45213,45214,45215,45216,45217,45218,45219,45220,45221,45222,45223,45224,45225,45226,45227,45228,45229,45230,45231,45232,45233,45234,45235,45236,45237,45238,45239,45240,45241,45242,45243,45244,45245,45246,45247,45248,45249,45250,45251,45252,45253,45254,45255,45256,45257,45258,45259,45260,45261,45262,45263,45264,45265,45266,45267,45268,45269,45270,45271,45272,45273,45274,45275,45276,45277,45278,45279,45280,45281,45282,45283,45284,45285,45286,45287,45288,45289,45290,45291,45292,45293,45294,45295,45296,45297,45298,45299,45300,45301,45302,45303,45304,45305,45306,45307,45308,45309,45310,45311,45312,45313,45314,45315,45316,45317,45318,45319,45320,45321,45322,45323,45324,45325,45326,45327,45328,45329,45330,45331,45332,45333,45334,45335,45336,45337,45338,45339,45340,45341,45342,45343,45344,45345,45346,45347,45348,45349,45350,45351,45352,45353,45354,45355,45356,45357,45358,45359,45360,45361,45362,45363,45364,45365,45366,45367,45368,45369,45370,45371,45372,45373,45374,45375,45376,45377,45378,45379,45380,45381,45382,45383,45384,45385,45386,45387,45388,45389,45390,45391,45392,45393,45394,45395,45396,45397,45398,45399,45400,45401,45402,45403,45404,45405,45406,45407,45408,45409,45410,45411,45412,45413,45414,45415,45416,45417,45418,45419,45420,45421,45422,45423,45424,45425,45426,45427,45428,45429,45430,45431,45432,45433,45434,45435,45436,45437,45438,45439,45440,45441,45442,45443,45444,45445,45446,45447,45448,45449,45450,45451,45452,45453,45454,45455,45456,45457,45458,45459,45460,45461,45462,45463,45464,45465,45466,45467,45468,45469,45470,45471,45472,45473,45474,45475,45476,45477,45478,45479,45480,45481,45482,45483,45484,45485,45486,45487,45488,45489,45490,45491,45492,45493,45494,45495,45496,45497,45498,45499,45500,45501,45502,45503,45504,45505,45506,45507,45508,45509,45510,45511,45512,45513,45514,45515,45516,45517,45518,45519,45520,45521,45522,45523,45524,45525,45526,45527,45528,45529,45530,45531,45532,45533,45534,45535,45536,45537,45538,45539,45540,45541,45542,45543,45544,45545,45546,45547,45548,45549,45550,45551,45552,45553,45554,45555,45556,45557,45558,45559,45560,45561,45562,45563,45564,45565,45566,45567,45568,45569,45570,45571,45572,45573,45574,45575,45576,45577,45578,45579,45580,45581,45582,45583,45584,45585,45586,45587,45588,45589,45590,45591,45592,45593,45594,45595,45596,45597,45598,45599,45600,45601,45602,45603,45604,45605,45606,45607,45608,45609,45610,45611,45612,45613,45614,45615,45616,45617,45618,45619,45620,45621,45622,45623,45624,45625,45626,45627,45628,45629,45630,45631,45632,45633,45634,45635,45636,45637,45638,45639,45640,45641,45642,45643,45644,45645,45646,45647,45648,45649,45650,45651,45652,45653,45654,45655,45656,45657,45658,45659,45660,45661,45662,45663,45664,45665,45666,45667,45668,45669,45670,45671,45672,45673,45674,45675,45676,45677,45678,45679,45680,45681,45682,45683,45684,45685,45686,45687,45688,45689,45690,45691,45692,45693,45694,45695,45696,45697,45698,45699,45700,45701,45702,45703,45704,45705,45706,45707,45708,45709,45710,45711,45712,45713,45714,45715,45716,45717,45718,45719,45720,45721,45722,45723,45724,45725,45726,45727,45728,45729,45730,45731,45732,45733,45734,45735,45736,45737,45738,45739,45740,45741,45742,45743,45744,45745,45746,45747,45748,45749,45750,45751,45752,45753,45754,45755,45756,45757,45758,45759,45760,45761,45762,45763,45764,45765,45766,45767,45768,45769,45770,45771,45772,45773,45774,45775,45776,45777,45778,45779,45780,45781,45782,45783,45784,45785,45786,45787,45788,45789,45790,45791,45792,45793,45794,45795,45796,45797,45798,45799,45800,45801,45802,45803,45804,45805,45806,45807,45808,45809,45810,45811,45812,45813,45814,45815,45816,45817,45818,45819,45820,45821,45822,45823,45824,45825,45826,45827,45828,45829,45830,45831,45832,45833,45834,45835,45836,45837,45838,45839,45840,45841,45842,45843,45844,45845,45846,45847,45848,45849,45850,45851,45852,45853,45854,45855,45856,45857,45858,45859,45860,45861,45862,45863,45864,45865,45866,45867,45868,45869,45870,45871,45872,45873,45874,45875,45876,45877,45878,45879,45880,45881,45882,45883,45884,45885,45886,45887,45888,45889,45890,45891,45892,45893,45894,45895,45896,45897,45898,45899,45900,45901,45902,45903,45904,45905,45906,45907,45908,45909,45910,45911,45912,45913,45914,45915,45916,45917,45918,45919,45920,45921,45922,45923,45924,45925,45926,45927,45928,45929,45930,45931,45932,45933,45934,45935,45936,45937,45938,45939,45940,45941,45942,45943,45944,45945,45946,45947,45948,45949,45950,45951,45952,45953,45954,45955,45956,45957,45958,45959,45960,45961,45962,45963,45964,45965,45966,45967,45968,45969,45970,45971,45972,45973,45974,45975,45976,45977,45978,45979,45980,45981,45982,45983,45984,45985,45986,45987,45988,45989,45990,45991,45992,45993,45994,45995,45996,45997,45998,45999,46000,46001,46002,46003,46004,46005,46006,46007,46008,46009,46010,46011,46012,46013,46014,46015,46016,46017,46018,46019,46020,46021,46022,46023,46024,46025,46026,46027,46028,46029,46030,46031,46032,46033,46034,46035,46036,46037,46038,46039,46040,46041,46042,46043,46044,46045,46046,46047,46048,46049,46050,46051,46052,46053,46054,46055,46056,46057,46058,46059,46060,46061,46062,46063,46064,46065,46066,46067,46068,46069,46070,46071,46072,46073,46074,46075,46076,46077,46078,46079,46080,46081,46082,46083,46084,46085,46086,46087,46088,46089,46090,46091,46092,46093,46094,46095,46096,46097,46098,46099,46100,46101,46102,46103,46104,46105,46106,46107,46108,46109,46110,46111,46112,46113,46114,46115,46116,46117,46118,46119,46120,46121,46122,46123,46124,46125,46126,46127,46128,46129,46130,46131,46132,46133,46134,46135,46136,46137,46138,46139,46140,46141,46142,46143,46144,46145,46146,46147,46148,46149,46150,46151,46152,46153,46154,46155,46156,46157,46158,46159,46160,46161,46162,46163,46164,46165,46166,46167,46168,46169,46170,46171,46172,46173,46174,46175,46176,46177,46178,46179,46180,46181,46182,46183,46184,46185,46186,46187,46188,46189,46190,46191,46192,46193,46194,46195,46196,46197,46198,46199,46200,46201,46202,46203,46204,46205,46206,46207,46208,46209,46210,46211,46212,46213,46214,46215,46216,46217,46218,46219,46220,46221,46222,46223,46224,46225,46226,46227,46228,46229,46230,46231,46232,46233,46234,46235,46236,46237,46238,46239,46240,46241,46242,46243,46244,46245,46246,46247,46248,46249,46250,46251,46252,46253,46254,46255,46256,46257,46258,46259,46260,46261,46262,46263,46264,46265,46266,46267,46268,46269,46270,46271,46272,46273,46274,46275,46276,46277,46278,46279,46280,46281,46282,46283,46284,46285,46286,46287,46288,46289,46290,46291,46292,46293,46294,46295,46296,46297,46298,46299,46300,46301,46302,46303,46304,46305,46306,46307,46308,46309,46310,46311,46312,46313,46314,46315,46316,46317,46318,46319,46320,46321,46322,46323,46324,46325,46326,46327,46328,46329,46330,46331,46332,46333,46334,46335,46336,46337,46338,46339,46340,46341,46342,46343,46344,46345,46346,46347,46348,46349,46350,46351,46352,46353,46354,46355,46356,46357,46358,46359,46360,46361,46362,46363,46364,46365,46366,46367,46368,46369,46370,46371,46372,46373,46374,46375,46376,46377,46378,46379,46380,46381,46382,46383,46384,46385,46386,46387,46388,46389,46390,46391,46392,46393,46394,46395,46396,46397,46398,46399,46400,46401,46402,46403,46404,46405,46406,46407,46408,46409,46410,46411,46412,46413,46414,46415,46416,46417,46418,46419,46420,46421,46422,46423,46424,46425,46426,46427,46428,46429,46430,46431,46432,46433,46434,46435,46436,46437,46438,46439,46440,46441,46442,46443,46444,46445,46446,46447,46448,46449,46450,46451,46452,46453,46454,46455,46456,46457,46458,46459,46460,46461,46462,46463,46464,46465,46466,46467,46468,46469,46470,46471,46472,46473,46474,46475,46476,46477,46478,46479,46480,46481,46482,46483,46484,46485,46486,46487,46488,46489,46490,46491,46492,46493,46494,46495,46496,46497,46498,46499,46500,46501,46502,46503,46504,46505,46506,46507,46508,46509,46510,46511,46512,46513,46514,46515,46516,46517,46518,46519,46520,46521,46522,46523,46524,46525,46526,46527,46528,46529,46530,46531,46532,46533,46534,46535,46536,46537,46538,46539,46540,46541,46542,46543,46544,46545,46546,46547,46548,46549,46550,46551,46552,46553,46554,46555,46556,46557,46558,46559,46560,46561,46562,46563,46564,46565,46566,46567,46568,46569,46570,46571,46572,46573,46574,46575,46576,46577,46578,46579,46580,46581,46582,46583,46584,46585,46586,46587,46588,46589,46590,46591,46592,46593,46594,46595,46596,46597,46598,46599,46600,46601,46602,46603,46604,46605,46606,46607,46608,46609,46610,46611,46612,46613,46614,46615,46616,46617,46618,46619,46620,46621,46622,46623,46624,46625,46626,46627,46628,46629,46630,46631,46632,46633,46634,46635,46636,46637,46638,46639,46640,46641,46642,46643,46644,46645,46646,46647,46648,46649,46650,46651,46652,46653,46654,46655,46656,46657,46658,46659,46660,46661,46662,46663,46664,46665,46666,46667,46668,46669,46670,46671,46672,46673,46674,46675,46676,46677,46678,46679,46680,46681,46682,46683,46684,46685,46686,46687,46688,46689,46690,46691,46692,46693,46694,46695,46696,46697,46698,46699,46700,46701,46702,46703,46704,46705,46706,46707,46708,46709,46710,46711,46712,46713,46714,46715,46716,46717,46718,46719,46720,46721,46722,46723,46724,46725,46726,46727,46728,46729,46730,46731,46732,46733,46734,46735,46736,46737,46738,46739,46740,46741,46742,46743,46744,46745,46746,46747,46748,46749,46750,46751,46752,46753,46754,46755,46756,46757,46758,46759,46760,46761,46762,46763,46764,46765,46766,46767,46768,46769,46770,46771,46772,46773,46774,46775,46776,46777,46778,46779,46780,46781,46782,46783,46784,46785,46786,46787,46788,46789,46790,46791,46792,46793,46794,46795,46796,46797,46798,46799,46800,46801,46802,46803,46804,46805,46806,46807,46808,46809,46810,46811,46812,46813,46814,46815,46816,46817,46818,46819,46820,46821,46822,46823,46824,46825,46826,46827,46828,46829,46830,46831,46832,46833,46834,46835,46836,46837,46838,46839,46840,46841,46842,46843,46844,46845,46846,46847,46848,46849,46850,46851,46852,46853,46854,46855,46856,46857,46858,46859,46860,46861,46862,46863,46864,46865,46866,46867,46868,46869,46870,46871,46872,46873,46874,46875,46876,46877,46878,46879,46880,46881,46882,46883,46884,46885,46886,46887,46888,46889,46890,46891,46892,46893,46894,46895,46896,46897,46898,46899,46900,46901,46902,46903,46904,46905,46906,46907,46908,46909,46910,46911,46912,46913,46914,46915,46916,46917,46918,46919,46920,46921,46922,46923,46924,46925,46926,46927,46928,46929,46930,46931,46932,46933,46934,46935,46936,46937,46938,46939,46940,46941,46942,46943,46944,46945,46946,46947,46948,46949,46950,46951,46952,46953,46954,46955,46956,46957,46958,46959,46960,46961,46962,46963,46964,46965,46966,46967,46968,46969,46970,46971,46972,46973,46974,46975,46976,46977,46978,46979,46980,46981,46982,46983,46984,46985,46986,46987,46988,46989,46990,46991,46992,46993,46994,46995,46996,46997,46998,46999,47000,47001,47002,47003,47004,47005,47006,47007,47008,47009,47010,47011,47012,47013,47014,47015,47016,47017,47018,47019,47020,47021,47022,47023,47024,47025,47026,47027,47028,47029,47030,47031,47032,47033,47034,47035,47036,47037,47038,47039,47040,47041,47042,47043,47044,47045,47046,47047,47048,47049,47050,47051,47052,47053,47054,47055,47056,47057,47058,47059,47060,47061,47062,47063,47064,47065,47066,47067,47068,47069,47070,47071,47072,47073,47074,47075,47076,47077,47078,47079,47080,47081,47082,47083,47084,47085,47086,47087,47088,47089,47090,47091,47092,47093,47094,47095,47096,47097,47098,47099,47100,47101,47102,47103,47104,47105,47106,47107,47108,47109,47110,47111,47112,47113,47114,47115,47116,47117,47118,47119,47120,47121,47122,47123,47124,47125,47126,47127,47128,47129,47130,47131,47132,47133,47134,47135,47136,47137,47138,47139,47140,47141,47142,47143,47144,47145,47146,47147,47148,47149,47150,47151,47152,47153,47154,47155,47156,47157,47158,47159,47160,47161,47162,47163,47164,47165,47166,47167,47168,47169,47170,47171,47172,47173,47174,47175,47176,47177,47178,47179,47180,47181,47182,47183,47184,47185,47186,47187,47188,47189,47190,47191,47192,47193,47194,47195,47196,47197,47198,47199,47200,47201,47202,47203,47204,47205,47206,47207,47208,47209,47210,47211,47212,47213,47214,47215,47216,47217,47218,47219,47220,47221,47222,47223,47224,47225,47226,47227,47228,47229,47230,47231,47232,47233,47234,47235,47236,47237,47238,47239,47240,47241,47242,47243,47244,47245,47246,47247,47248,47249,47250,47251,47252,47253,47254,47255,47256,47257,47258,47259,47260,47261,47262,47263,47264,47265,47266,47267,47268,47269,47270,47271,47272,47273,47274,47275,47276,47277,47278,47279,47280,47281,47282,47283,47284,47285,47286,47287,47288,47289,47290,47291,47292,47293,47294,47295,47296,47297,47298,47299,47300,47301,47302,47303,47304,47305,47306,47307,47308,47309,47310,47311,47312,47313,47314,47315,47316,47317,47318,47319,47320,47321,47322,47323,47324,47325,47326,47327,47328,47329,47330,47331,47332,47333,47334,47335,47336,47337,47338,47339,47340,47341,47342,47343,47344,47345,47346,47347,47348,47349,47350,47351,47352,47353,47354,47355,47356,47357,47358,47359,47360,47361,47362,47363,47364,47365,47366,47367,47368,47369,47370,47371,47372,47373,47374,47375,47376,47377,47378,47379,47380,47381,47382,47383,47384,47385,47386,47387,47388,47389,47390,47391,47392,47393,47394,47395,47396,47397,47398,47399,47400,47401,47402,47403,47404,47405,47406,47407,47408,47409,47410,47411,47412,47413,47414,47415,47416,47417,47418,47419,47420,47421,47422,47423,47424,47425,47426,47427,47428,47429,47430,47431,47432,47433,47434,47435,47436,47437,47438,47439,47440,47441,47442,47443,47444,47445,47446,47447,47448,47449,47450,47451,47452,47453,47454,47455,47456,47457,47458,47459,47460,47461,47462,47463,47464,47465,47466,47467,47468,47469,47470,47471,47472,47473,47474,47475,47476,47477,47478,47479,47480,47481,47482,47483,47484,47485,47486,47487,47488,47489,47490,47491,47492,47493,47494,47495,47496,47497,47498,47499,47500,47501,47502,47503,47504,47505,47506,47507,47508,47509,47510,47511,47512,47513,47514,47515,47516,47517,47518,47519,47520,47521,47522,47523,47524,47525,47526,47527,47528,47529,47530,47531,47532,47533,47534,47535,47536,47537,47538,47539,47540,47541,47542,47543,47544,47545,47546,47547,47548,47549,47550,47551,47552,47553,47554,47555,47556,47557,47558,47559,47560,47561,47562,47563,47564,47565,47566,47567,47568,47569,47570,47571,47572,47573,47574,47575,47576,47577,47578,47579,47580,47581,47582,47583,47584,47585,47586,47587,47588,47589,47590,47591,47592,47593,47594,47595,47596,47597,47598,47599,47600,47601,47602,47603,47604,47605,47606,47607,47608,47609,47610,47611,47612,47613,47614,47615,47616,47617,47618,47619,47620,47621,47622,47623,47624,47625,47626,47627,47628,47629,47630,47631,47632,47633,47634,47635,47636,47637,47638,47639,47640,47641,47642,47643,47644,47645,47646,47647,47648,47649,47650,47651,47652,47653,47654,47655,47656,47657,47658,47659,47660,47661,47662,47663,47664,47665,47666,47667,47668,47669,47670,47671,47672,47673,47674,47675,47676,47677,47678,47679,47680,47681,47682,47683,47684,47685,47686,47687,47688,47689,47690,47691,47692,47693,47694,47695,47696,47697,47698,47699,47700,47701,47702,47703,47704,47705,47706,47707,47708,47709,47710,47711,47712,47713,47714,47715,47716,47717,47718,47719,47720,47721,47722,47723,47724,47725,47726,47727,47728,47729,47730,47731,47732,47733,47734,47735,47736,47737,47738,47739,47740,47741,47742,47743,47744,47745,47746,47747,47748,47749,47750,47751,47752,47753,47754,47755,47756,47757,47758,47759,47760,47761,47762,47763,47764,47765,47766,47767,47768,47769,47770,47771,47772,47773,47774,47775,47776,47777,47778,47779,47780,47781,47782,47783,47784,47785,47786,47787,47788,47789,47790,47791,47792,47793,47794,47795,47796,47797,47798,47799,47800,47801,47802,47803,47804,47805,47806,47807,47808,47809,47810,47811,47812,47813,47814,47815,47816,47817,47818,47819,47820,47821,47822,47823,47824,47825,47826,47827,47828,47829,47830,47831,47832,47833,47834,47835,47836,47837,47838,47839,47840,47841,47842,47843,47844,47845,47846,47847,47848,47849,47850,47851,47852,47853,47854,47855,47856,47857,47858,47859,47860,47861,47862,47863,47864,47865,47866,47867,47868,47869,47870,47871,47872,47873,47874,47875,47876,47877,47878,47879,47880,47881,47882,47883,47884,47885,47886,47887,47888,47889,47890,47891,47892,47893,47894,47895,47896,47897,47898,47899,47900,47901,47902,47903,47904,47905,47906,47907,47908,47909,47910,47911,47912,47913,47914,47915,47916,47917,47918,47919,47920,47921,47922,47923,47924,47925,47926,47927,47928,47929,47930,47931,47932,47933,47934,47935,47936,47937,47938,47939,47940,47941,47942,47943,47944,47945,47946,47947,47948,47949,47950,47951,47952,47953,47954,47955,47956,47957,47958,47959,47960,47961,47962,47963,47964,47965,47966,47967,47968,47969,47970,47971,47972,47973,47974,47975,47976,47977,47978,47979,47980,47981,47982,47983,47984,47985,47986,47987,47988,47989,47990,47991,47992,47993,47994,47995,47996,47997,47998,47999,48000,48001,48002,48003,48004,48005,48006,48007,48008,48009,48010,48011,48012,48013,48014,48015,48016,48017,48018,48019,48020,48021,48022,48023,48024,48025,48026,48027,48028,48029,48030,48031,48032,48033,48034,48035,48036,48037,48038,48039,48040,48041,48042,48043,48044,48045,48046,48047,48048,48049,48050,48051,48052,48053,48054,48055,48056,48057,48058,48059,48060,48061,48062,48063,48064,48065,48066,48067,48068,48069,48070,48071,48072,48073,48074,48075,48076,48077,48078,48079,48080,48081,48082,48083,48084,48085,48086,48087,48088,48089,48090,48091,48092,48093,48094,48095,48096,48097,48098,48099,48100,48101,48102,48103,48104,48105,48106,48107,48108,48109,48110,48111,48112,48113,48114,48115,48116,48117,48118,48119,48120,48121,48122,48123,48124,48125,48126,48127,48128,48129,48130,48131,48132,48133,48134,48135,48136,48137,48138,48139,48140,48141,48142,48143,48144,48145,48146,48147,48148,48149,48150,48151,48152,48153,48154,48155,48156,48157,48158,48159,48160,48161,48162,48163,48164,48165,48166,48167,48168,48169,48170,48171,48172,48173,48174,48175,48176,48177,48178,48179,48180,48181,48182,48183,48184,48185,48186,48187,48188,48189,48190,48191,48192,48193,48194,48195,48196,48197,48198,48199,48200,48201,48202,48203,48204,48205,48206,48207,48208,48209,48210,48211,48212,48213,48214,48215,48216,48217,48218,48219,48220,48221,48222,48223,48224,48225,48226,48227,48228,48229,48230,48231,48232,48233,48234,48235,48236,48237,48238,48239,48240,48241,48242,48243,48244,48245,48246,48247,48248,48249,48250,48251,48252,48253,48254,48255,48256,48257,48258,48259,48260,48261,48262,48263,48264,48265,48266,48267,48268,48269,48270,48271,48272,48273,48274,48275,48276,48277,48278,48279,48280,48281,48282,48283,48284,48285,48286,48287,48288,48289,48290,48291,48292,48293,48294,48295,48296,48297,48298,48299,48300,48301,48302,48303,48304,48305,48306,48307,48308,48309,48310,48311,48312,48313,48314,48315,48316,48317,48318,48319,48320,48321,48322,48323,48324,48325,48326,48327,48328,48329,48330,48331,48332,48333,48334,48335,48336,48337,48338,48339,48340,48341,48342,48343,48344,48345,48346,48347,48348,48349,48350,48351,48352,48353,48354,48355,48356,48357,48358,48359,48360,48361,48362,48363,48364,48365,48366,48367,48368,48369,48370,48371,48372,48373,48374,48375,48376,48377,48378,48379,48380,48381,48382,48383,48384,48385,48386,48387,48388,48389,48390,48391,48392,48393,48394,48395,48396,48397,48398,48399,48400,48401,48402,48403,48404,48405,48406,48407,48408,48409,48410,48411,48412,48413,48414,48415,48416,48417,48418,48419,48420,48421,48422,48423,48424,48425,48426,48427,48428,48429,48430,48431,48432,48433,48434,48435,48436,48437,48438,48439,48440,48441,48442,48443,48444,48445,48446,48447,48448,48449,48450,48451,48452,48453,48454,48455,48456,48457,48458,48459,48460,48461,48462,48463,48464,48465,48466,48467,48468,48469,48470,48471,48472,48473,48474,48475,48476,48477,48478,48479,48480,48481,48482,48483,48484,48485,48486,48487,48488,48489,48490,48491,48492,48493,48494,48495,48496,48497,48498,48499,48500,48501,48502,48503,48504,48505,48506,48507,48508,48509,48510,48511,48512,48513,48514,48515,48516,48517,48518,48519,48520,48521,48522,48523,48524,48525,48526,48527,48528,48529,48530,48531,48532,48533,48534,48535,48536,48537,48538,48539,48540,48541,48542,48543,48544,48545,48546,48547,48548,48549,48550,48551,48552,48553,48554,48555,48556,48557,48558,48559,48560,48561,48562,48563,48564,48565,48566,48567,48568,48569,48570,48571,48572,48573,48574,48575,48576,48577,48578,48579,48580,48581,48582,48583,48584,48585,48586,48587,48588,48589,48590,48591,48592,48593,48594,48595,48596,48597,48598,48599,48600,48601,48602,48603,48604,48605,48606,48607,48608,48609,48610,48611,48612,48613,48614,48615,48616,48617,48618,48619,48620,48621,48622,48623,48624,48625,48626,48627,48628,48629,48630,48631,48632,48633,48634,48635,48636,48637,48638,48639,48640,48641,48642,48643,48644,48645,48646,48647,48648,48649,48650,48651,48652,48653,48654,48655,48656,48657,48658,48659,48660,48661,48662,48663,48664,48665,48666,48667,48668,48669,48670,48671,48672,48673,48674,48675,48676,48677,48678,48679,48680,48681,48682,48683,48684,48685,48686,48687,48688,48689,48690,48691,48692,48693,48694,48695,48696,48697,48698,48699,48700,48701,48702,48703,48704,48705,48706,48707,48708,48709,48710,48711,48712,48713,48714,48715,48716,48717,48718,48719,48720,48721,48722,48723,48724,48725,48726,48727,48728,48729,48730,48731,48732,48733,48734,48735,48736,48737,48738,48739,48740,48741,48742,48743,48744,48745,48746,48747,48748,48749,48750,48751,48752,48753,48754,48755,48756,48757,48758,48759,48760,48761,48762,48763,48764,48765,48766,48767,48768,48769,48770,48771,48772,48773,48774,48775,48776,48777,48778,48779,48780,48781,48782,48783,48784,48785,48786,48787,48788,48789,48790,48791,48792,48793,48794,48795,48796,48797,48798,48799,48800,48801,48802,48803,48804,48805,48806,48807,48808,48809,48810,48811,48812,48813,48814,48815,48816,48817,48818,48819,48820,48821,48822,48823,48824,48825,48826,48827,48828,48829,48830,48831,48832,48833,48834,48835,48836,48837,48838,48839,48840,48841,48842,48843,48844,48845,48846,48847,48848,48849,48850,48851,48852,48853,48854,48855,48856,48857,48858,48859,48860,48861,48862,48863,48864,48865,48866,48867,48868,48869,48870,48871,48872,48873,48874,48875,48876,48877,48878,48879,48880,48881,48882,48883,48884,48885,48886,48887,48888,48889,48890,48891,48892,48893,48894,48895,48896,48897,48898,48899,48900,48901,48902,48903,48904,48905,48906,48907,48908,48909,48910,48911,48912,48913,48914,48915,48916,48917,48918,48919,48920,48921,48922,48923,48924,48925,48926,48927,48928,48929,48930,48931,48932,48933,48934,48935,48936,48937,48938,48939,48940,48941,48942,48943,48944,48945,48946,48947,48948,48949,48950,48951,48952,48953,48954,48955,48956,48957,48958,48959,48960,48961,48962,48963,48964,48965,48966,48967,48968,48969,48970,48971,48972,48973,48974,48975,48976,48977,48978,48979,48980,48981,48982,48983,48984,48985,48986,48987,48988,48989,48990,48991,48992,48993,48994,48995,48996,48997,48998,48999,49000,49001,49002,49003,49004,49005,49006,49007,49008,49009,49010,49011,49012,49013,49014,49015,49016,49017,49018,49019,49020,49021,49022,49023,49024,49025,49026,49027,49028,49029,49030,49031,49032,49033,49034,49035,49036,49037,49038,49039,49040,49041,49042,49043,49044,49045,49046,49047,49048,49049,49050,49051,49052,49053,49054,49055,49056,49057,49058,49059,49060,49061,49062,49063,49064,49065,49066,49067,49068,49069,49070,49071,49072,49073,49074,49075,49076,49077,49078,49079,49080,49081,49082,49083,49084,49085,49086,49087,49088,49089,49090,49091,49092,49093,49094,49095,49096,49097,49098,49099,49100,49101,49102,49103,49104,49105,49106,49107,49108,49109,49110,49111,49112,49113,49114,49115,49116,49117,49118,49119,49120,49121,49122,49123,49124,49125,49126,49127,49128,49129,49130,49131,49132,49133,49134,49135,49136,49137,49138,49139,49140,49141,49142,49143,49144,49145,49146,49147,49148,49149,49150,49151,49152,49153,49154,49155,49156,49157,49158,49159,49160,49161,49162,49163,49164,49165,49166,49167,49168,49169,49170,49171,49172,49173,49174,49175,49176,49177,49178,49179,49180,49181,49182,49183,49184,49185,49186,49187,49188,49189,49190,49191,49192,49193,49194,49195,49196,49197,49198,49199,49200,49201,49202,49203,49204,49205,49206,49207,49208,49209,49210,49211,49212,49213,49214,49215,49216,49217,49218,49219,49220,49221,49222,49223,49224,49225,49226,49227,49228,49229,49230,49231,49232,49233,49234,49235,49236,49237,49238,49239,49240,49241,49242,49243,49244,49245,49246,49247,49248,49249,49250,49251,49252,49253,49254,49255,49256,49257,49258,49259,49260,49261,49262,49263,49264,49265,49266,49267,49268,49269,49270,49271,49272,49273,49274,49275,49276,49277,49278,49279,49280,49281,49282,49283,49284,49285,49286,49287,49288,49289,49290,49291,49292,49293,49294,49295,49296,49297,49298,49299,49300,49301,49302,49303,49304,49305,49306,49307,49308,49309,49310,49311,49312,49313,49314,49315,49316,49317,49318,49319,49320,49321,49322,49323,49324,49325,49326,49327,49328,49329,49330,49331,49332,49333,49334,49335,49336,49337,49338,49339,49340,49341,49342,49343,49344,49345,49346,49347,49348,49349,49350,49351,49352,49353,49354,49355,49356,49357,49358,49359,49360,49361,49362,49363,49364,49365,49366,49367,49368,49369,49370,49371,49372,49373,49374,49375,49376,49377,49378,49379,49380,49381,49382,49383,49384,49385,49386,49387,49388,49389,49390,49391,49392,49393,49394,49395,49396,49397,49398,49399,49400,49401,49402,49403,49404,49405,49406,49407,49408,49409,49410,49411,49412,49413,49414,49415,49416,49417,49418,49419,49420,49421,49422,49423,49424,49425,49426,49427,49428,49429,49430,49431,49432,49433,49434,49435,49436,49437,49438,49439,49440,49441,49442,49443,49444,49445,49446,49447,49448,49449,49450,49451,49452,49453,49454,49455,49456,49457,49458,49459,49460,49461,49462,49463,49464,49465,49466,49467,49468,49469,49470,49471,49472,49473,49474,49475,49476,49477,49478,49479,49480,49481,49482,49483,49484,49485,49486,49487,49488,49489,49490,49491,49492,49493,49494,49495,49496,49497,49498,49499,49500,49501,49502,49503,49504,49505,49506,49507,49508,49509,49510,49511,49512,49513,49514,49515,49516,49517,49518,49519,49520,49521,49522,49523,49524,49525,49526,49527,49528,49529,49530,49531,49532,49533,49534,49535,49536,49537,49538,49539,49540,49541,49542,49543,49544,49545,49546,49547,49548,49549,49550,49551,49552,49553,49554,49555,49556,49557,49558,49559,49560,49561,49562,49563,49564,49565,49566,49567,49568,49569,49570,49571,49572,49573,49574,49575,49576,49577,49578,49579,49580,49581,49582,49583,49584,49585,49586,49587,49588,49589,49590,49591,49592,49593,49594,49595,49596,49597,49598,49599,49600,49601,49602,49603,49604,49605,49606,49607,49608,49609,49610,49611,49612,49613,49614,49615,49616,49617,49618,49619,49620,49621,49622,49623,49624,49625,49626,49627,49628,49629,49630,49631,49632,49633,49634,49635,49636,49637,49638,49639,49640,49641,49642,49643,49644,49645,49646,49647,49648,49649,49650,49651,49652,49653,49654,49655,49656,49657,49658,49659,49660,49661,49662,49663,49664,49665,49666,49667,49668,49669,49670,49671,49672,49673,49674,49675,49676,49677,49678,49679,49680,49681,49682,49683,49684,49685,49686,49687,49688,49689,49690,49691,49692,49693,49694,49695,49696,49697,49698,49699,49700,49701,49702,49703,49704,49705,49706,49707,49708,49709,49710,49711,49712,49713,49714,49715,49716,49717,49718,49719,49720,49721,49722,49723,49724,49725,49726,49727,49728,49729,49730,49731,49732,49733,49734,49735,49736,49737,49738,49739,49740,49741,49742,49743,49744,49745,49746,49747,49748,49749,49750,49751,49752,49753,49754,49755,49756,49757,49758,49759,49760,49761,49762,49763,49764,49765,49766,49767,49768,49769,49770,49771,49772,49773,49774,49775,49776,49777,49778,49779,49780,49781,49782,49783,49784,49785,49786,49787,49788,49789,49790,49791,49792,49793,49794,49795,49796,49797,49798,49799,49800,49801,49802,49803,49804,49805,49806,49807,49808,49809,49810,49811,49812,49813,49814,49815,49816,49817,49818,49819,49820,49821,49822,49823,49824,49825,49826,49827,49828,49829,49830,49831,49832,49833,49834,49835,49836,49837,49838,49839,49840,49841,49842,49843,49844,49845,49846,49847,49848,49849,49850,49851,49852,49853,49854,49855,49856,49857,49858,49859,49860,49861,49862,49863,49864,49865,49866,49867,49868,49869,49870,49871,49872,49873,49874,49875,49876,49877,49878,49879,49880,49881,49882,49883,49884,49885,49886,49887,49888,49889,49890,49891,49892,49893,49894,49895,49896,49897,49898,49899,49900,49901,49902,49903,49904,49905,49906,49907,49908,49909,49910,49911,49912,49913,49914,49915,49916,49917,49918,49919,49920,49921,49922,49923,49924,49925,49926,49927,49928,49929,49930,49931,49932,49933,49934,49935,49936,49937,49938,49939,49940,49941,49942,49943,49944,49945,49946,49947,49948,49949,49950,49951,49952,49953,49954,49955,49956,49957,49958,49959,49960,49961,49962,49963,49964,49965,49966,49967,49968,49969,49970,49971,49972,49973,49974,49975,49976,49977,49978,49979,49980,49981,49982,49983,49984,49985,49986,49987,49988,49989,49990,49991,49992,49993,49994,49995,49996,49997,49998,49999,50000]
-# code_output:
-# runtime_error:
-# last_testcase:[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,10046,10047,10048,10049,10050,10051,10052,10053,10054,10055,10056,10057,10058,10059,10060,10061,10062,10063,10064,10065,10066,10067,10068,10069,10070,10071,10072,10073,10074,10075,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,10086,10087,10088,10089,10090,10091,10092,10093,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,10116,10117,10118,10119,10120,10121,10122,10123,10124,10125,10126,10127,10128,10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139,10140,10141,10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153,10154,10155,10156,10157,10158,10159,10160,10161,10162,10163,10164,10165,10166,10167,10168,10169,10170,10171,10172,10173,10174,10175,10176,10177,10178,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,10190,10191,10192,10193,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,10205,10206,10207,10208,10209,10210,10211,10212,10213,10214,10215,10216,10217,10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229,10230,10231,10232,10233,10234,10235,10236,10237,10238,10239,10240,10241,10242,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,10253,10254,10255,10256,10257,10258,10259,10260,10261,10262,10263,10264,10265,10266,10267,10268,10269,10270,10271,10272,10273,10274,10275,10276,10277,10278,10279,10280,10281,10282,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295,10296,10297,10298,10299,10300,10301,10302,10303,10304,10305,10306,10307,10308,10309,10310,10311,10312,10313,10314,10315,10316,10317,10318,10319,10320,10321,10322,10323,10324,10325,10326,10327,10328,10329,10330,10331,10332,10333,10334,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,10348,10349,10350,10351,10352,10353,10354,10355,10356,10357,10358,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,10370,10371,10372,10373,10374,10375,10376,10377,10378,10379,10380,10381,10382,10383,10384,10385,10386,10387,10388,10389,10390,10391,10392,10393,10394,10395,10396,10397,10398,10399,10400,10401,10402,10403,10404,10405,10406,10407,10408,10409,10410,10411,10412,10413,10414,10415,10416,10417,10418,10419,10420,10421,10422,10423,10424,10425,10426,10427,10428,10429,10430,10431,10432,10433,10434,10435,10436,10437,10438,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,10450,10451,10452,10453,10454,10455,10456,10457,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10470,10471,10472,10473,10474,10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10485,10486,10487,10488,10489,10490,10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,10512,10513,10514,10515,10516,10517,10518,10519,10520,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10533,10534,10535,10536,10537,10538,10539,10540,10541,10542,10543,10544,10545,10546,10547,10548,10549,10550,10551,10552,10553,10554,10555,10556,10557,10558,10559,10560,10561,10562,10563,10564,10565,10566,10567,10568,10569,10570,10571,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,10605,10606,10607,10608,10609,10610,10611,10612,10613,10614,10615,10616,10617,10618,10619,10620,10621,10622,10623,10624,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,10637,10638,10639,10640,10641,10642,10643,10644,10645,10646,10647,10648,10649,10650,10651,10652,10653,10654,10655,10656,10657,10658,10659,10660,10661,10662,10663,10664,10665,10666,10667,10668,10669,10670,10671,10672,10673,10674,10675,10676,10677,10678,10679,10680,10681,10682,10683,10684,10685,10686,10687,10688,10689,10690,10691,10692,10693,10694,10695,10696,10697,10698,10699,10700,10701,10702,10703,10704,10705,10706,10707,10708,10709,10710,10711,10712,10713,10714,10715,10716,10717,10718,10719,10720,10721,10722,10723,10724,10725,10726,10727,10728,10729,10730,10731,10732,10733,10734,10735,10736,10737,10738,10739,10740,10741,10742,10743,10744,10745,10746,10747,10748,10749,10750,10751,10752,10753,10754,10755,10756,10757,10758,10759,10760,10761,10762,10763,10764,10765,10766,10767,10768,10769,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,10785,10786,10787,10788,10789,10790,10791,10792,10793,10794,10795,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,10810,10811,10812,10813,10814,10815,10816,10817,10818,10819,10820,10821,10822,10823,10824,10825,10826,10827,10828,10829,10830,10831,10832,10833,10834,10835,10836,10837,10838,10839,10840,10841,10842,10843,10844,10845,10846,10847,10848,10849,10850,10851,10852,10853,10854,10855,10856,10857,10858,10859,10860,10861,10862,10863,10864,10865,10866,10867,10868,10869,10870,10871,10872,10873,10874,10875,10876,10877,10878,10879,10880,10881,10882,10883,10884,10885,10886,10887,10888,10889,10890,10891,10892,10893,10894,10895,10896,10897,10898,10899,10900,10901,10902,10903,10904,10905,10906,10907,10908,10909,10910,10911,10912,10913,10914,10915,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,10929,10930,10931,10932,10933,10934,10935,10936,10937,10938,10939,10940,10941,10942,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10954,10955,10956,10957,10958,10959,10960,10961,10962,10963,10964,10965,10966,10967,10968,10969,10970,10971,10972,10973,10974,10975,10976,10977,10978,10979,10980,10981,10982,10983,10984,10985,10986,10987,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,10998,10999,11000,11001,11002,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,11031,11032,11033,11034,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045,11046,11047,11048,11049,11050,11051,11052,11053,11054,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11080,11081,11082,11083,11084,11085,11086,11087,11088,11089,11090,11091,11092,11093,11094,11095,11096,11097,11098,11099,11100,11101,11102,11103,11104,11105,11106,11107,11108,11109,11110,11111,11112,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11136,11137,11138,11139,11140,11141,11142,11143,11144,11145,11146,11147,11148,11149,11150,11151,11152,11153,11154,11155,11156,11157,11158,11159,11160,11161,11162,11163,11164,11165,11166,11167,11168,11169,11170,11171,11172,11173,11174,11175,11176,11177,11178,11179,11180,11181,11182,11183,11184,11185,11186,11187,11188,11189,11190,11191,11192,11193,11194,11195,11196,11197,11198,11199,11200,11201,11202,11203,11204,11205,11206,11207,11208,11209,11210,11211,11212,11213,11214,11215,11216,11217,11218,11219,11220,11221,11222,11223,11224,11225,11226,11227,11228,11229,11230,11231,11232,11233,11234,11235,11236,11237,11238,11239,11240,11241,11242,11243,11244,11245,11246,11247,11248,11249,11250,11251,11252,11253,11254,11255,11256,11257,11258,11259,11260,11261,11262,11263,11264,11265,11266,11267,11268,11269,11270,11271,11272,11273,11274,11275,11276,11277,11278,11279,11280,11281,11282,11283,11284,11285,11286,11287,11288,11289,11290,11291,11292,11293,11294,11295,11296,11297,11298,11299,11300,11301,11302,11303,11304,11305,11306,11307,11308,11309,11310,11311,11312,11313,11314,11315,11316,11317,11318,11319,11320,11321,11322,11323,11324,11325,11326,11327,11328,11329,11330,11331,11332,11333,11334,11335,11336,11337,11338,11339,11340,11341,11342,11343,11344,11345,11346,11347,11348,11349,11350,11351,11352,11353,11354,11355,11356,11357,11358,11359,11360,11361,11362,11363,11364,11365,11366,11367,11368,11369,11370,11371,11372,11373,11374,11375,11376,11377,11378,11379,11380,11381,11382,11383,11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396,11397,11398,11399,11400,11401,11402,11403,11404,11405,11406,11407,11408,11409,11410,11411,11412,11413,11414,11415,11416,11417,11418,11419,11420,11421,11422,11423,11424,11425,11426,11427,11428,11429,11430,11431,11432,11433,11434,11435,11436,11437,11438,11439,11440,11441,11442,11443,11444,11445,11446,11447,11448,11449,11450,11451,11452,11453,11454,11455,11456,11457,11458,11459,11460,11461,11462,11463,11464,11465,11466,11467,11468,11469,11470,11471,11472,11473,11474,11475,11476,11477,11478,11479,11480,11481,11482,11483,11484,11485,11486,11487,11488,11489,11490,11491,11492,11493,11494,11495,11496,11497,11498,11499,11500,11501,11502,11503,11504,11505,11506,11507,11508,11509,11510,11511,11512,11513,11514,11515,11516,11517,11518,11519,11520,11521,11522,11523,11524,11525,11526,11527,11528,11529,11530,11531,11532,11533,11534,11535,11536,11537,11538,11539,11540,11541,11542,11543,11544,11545,11546,11547,11548,11549,11550,11551,11552,11553,11554,11555,11556,11557,11558,11559,11560,11561,11562,11563,11564,11565,11566,11567,11568,11569,11570,11571,11572,11573,11574,11575,11576,11577,11578,11579,11580,11581,11582,11583,11584,11585,11586,11587,11588,11589,11590,11591,11592,11593,11594,11595,11596,11597,11598,11599,11600,11601,11602,11603,11604,11605,11606,11607,11608,11609,11610,11611,11612,11613,11614,11615,11616,11617,11618,11619,11620,11621,11622,11623,11624,11625,11626,11627,11628,11629,11630,11631,11632,11633,11634,11635,11636,11637,11638,11639,11640,11641,11642,11643,11644,11645,11646,11647,11648,11649,11650,11651,11652,11653,11654,11655,11656,11657,11658,11659,11660,11661,11662,11663,11664,11665,11666,11667,11668,11669,11670,11671,11672,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,11686,11687,11688,11689,11690,11691,11692,11693,11694,11695,11696,11697,11698,11699,11700,11701,11702,11703,11704,11705,11706,11707,11708,11709,11710,11711,11712,11713,11714,11715,11716,11717,11718,11719,11720,11721,11722,11723,11724,11725,11726,11727,11728,11729,11730,11731,11732,11733,11734,11735,11736,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747,11748,11749,11750,11751,11752,11753,11754,11755,11756,11757,11758,11759,11760,11761,11762,11763,11764,11765,11766,11767,11768,11769,11770,11771,11772,11773,11774,11775,11776,11777,11778,11779,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,11790,11791,11792,11793,11794,11795,11796,11797,11798,11799,11800,11801,11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812,11813,11814,11815,11816,11817,11818,11819,11820,11821,11822,11823,11824,11825,11826,11827,11828,11829,11830,11831,11832,11833,11834,11835,11836,11837,11838,11839,11840,11841,11842,11843,11844,11845,11846,11847,11848,11849,11850,11851,11852,11853,11854,11855,11856,11857,11858,11859,11860,11861,11862,11863,11864,11865,11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877,11878,11879,11880,11881,11882,11883,11884,11885,11886,11887,11888,11889,11890,11891,11892,11893,11894,11895,11896,11897,11898,11899,11900,11901,11902,11903,11904,11905,11906,11907,11908,11909,11910,11911,11912,11913,11914,11915,11916,11917,11918,11919,11920,11921,11922,11923,11924,11925,11926,11927,11928,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,11943,11944,11945,11946,11947,11948,11949,11950,11951,11952,11953,11954,11955,11956,11957,11958,11959,11960,11961,11962,11963,11964,11965,11966,11967,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,11994,11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124,12125,12126,12127,12128,12129,12130,12131,12132,12133,12134,12135,12136,12137,12138,12139,12140,12141,12142,12143,12144,12145,12146,12147,12148,12149,12150,12151,12152,12153,12154,12155,12156,12157,12158,12159,12160,12161,12162,12163,12164,12165,12166,12167,12168,12169,12170,12171,12172,12173,12174,12175,12176,12177,12178,12179,12180,12181,12182,12183,12184,12185,12186,12187,12188,12189,12190,12191,12192,12193,12194,12195,12196,12197,12198,12199,12200,12201,12202,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12217,12218,12219,12220,12221,12222,12223,12224,12225,12226,12227,12228,12229,12230,12231,12232,12233,12234,12235,12236,12237,12238,12239,12240,12241,12242,12243,12244,12245,12246,12247,12248,12249,12250,12251,12252,12253,12254,12255,12256,12257,12258,12259,12260,12261,12262,12263,12264,12265,12266,12267,12268,12269,12270,12271,12272,12273,12274,12275,12276,12277,12278,12279,12280,12281,12282,12283,12284,12285,12286,12287,12288,12289,12290,12291,12292,12293,12294,12295,12296,12297,12298,12299,12300,12301,12302,12303,12304,12305,12306,12307,12308,12309,12310,12311,12312,12313,12314,12315,12316,12317,12318,12319,12320,12321,12322,12323,12324,12325,12326,12327,12328,12329,12330,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12352,12353,12354,12355,12356,12357,12358,12359,12360,12361,12362,12363,12364,12365,12366,12367,12368,12369,12370,12371,12372,12373,12374,12375,12376,12377,12378,12379,12380,12381,12382,12383,12384,12385,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397,12398,12399,12400,12401,12402,12403,12404,12405,12406,12407,12408,12409,12410,12411,12412,12413,12414,12415,12416,12417,12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12446,12447,12448,12449,12450,12451,12452,12453,12454,12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494,12495,12496,12497,12498,12499,12500,12501,12502,12503,12504,12505,12506,12507,12508,12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519,12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,12532,12533,12534,12535,12536,12537,12538,12539,12540,12541,12542,12543,12544,12545,12546,12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,12564,12565,12566,12567,12568,12569,12570,12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,12584,12585,12586,12587,12588,12589,12590,12591,12592,12593,12594,12595,12596,12597,12598,12599,12600,12601,12602,12603,12604,12605,12606,12607,12608,12609,12610,12611,12612,12613,12614,12615,12616,12617,12618,12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631,12632,12633,12634,12635,12636,12637,12638,12639,12640,12641,12642,12643,12644,12645,12646,12647,12648,12649,12650,12651,12652,12653,12654,12655,12656,12657,12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,12670,12671,12672,12673,12674,12675,12676,12677,12678,12679,12680,12681,12682,12683,12684,12685,12686,12687,12688,12689,12690,12691,12692,12693,12694,12695,12696,12697,12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708,12709,12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726,12727,12728,12729,12730,12731,12732,12733,12734,12735,12736,12737,12738,12739,12740,12741,12742,12743,12744,12745,12746,12747,12748,12749,12750,12751,12752,12753,12754,12755,12756,12757,12758,12759,12760,12761,12762,12763,12764,12765,12766,12767,12768,12769,12770,12771,12772,12773,12774,12775,12776,12777,12778,12779,12780,12781,12782,12783,12784,12785,12786,12787,12788,12789,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,12803,12804,12805,12806,12807,12808,12809,12810,12811,12812,12813,12814,12815,12816,12817,12818,12819,12820,12821,12822,12823,12824,12825,12826,12827,12828,12829,12830,12831,12832,12833,12834,12835,12836,12837,12838,12839,12840,12841,12842,12843,12844,12845,12846,12847,12848,12849,12850,12851,12852,12853,12854,12855,12856,12857,12858,12859,12860,12861,12862,12863,12864,12865,12866,12867,12868,12869,12870,12871,12872,12873,12874,12875,12876,12877,12878,12879,12880,12881,12882,12883,12884,12885,12886,12887,12888,12889,12890,12891,12892,12893,12894,12895,12896,12897,12898,12899,12900,12901,12902,12903,12904,12905,12906,12907,12908,12909,12910,12911,12912,12913,12914,12915,12916,12917,12918,12919,12920,12921,12922,12923,12924,12925,12926,12927,12928,12929,12930,12931,12932,12933,12934,12935,12936,12937,12938,12939,12940,12941,12942,12943,12944,12945,12946,12947,12948,12949,12950,12951,12952,12953,12954,12955,12956,12957,12958,12959,12960,12961,12962,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,12977,12978,12979,12980,12981,12982,12983,12984,12985,12986,12987,12988,12989,12990,12991,12992,12993,12994,12995,12996,12997,12998,12999,13000,13001,13002,13003,13004,13005,13006,13007,13008,13009,13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,13023,13024,13025,13026,13027,13028,13029,13030,13031,13032,13033,13034,13035,13036,13037,13038,13039,13040,13041,13042,13043,13044,13045,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,13069,13070,13071,13072,13073,13074,13075,13076,13077,13078,13079,13080,13081,13082,13083,13084,13085,13086,13087,13088,13089,13090,13091,13092,13093,13094,13095,13096,13097,13098,13099,13100,13101,13102,13103,13104,13105,13106,13107,13108,13109,13110,13111,13112,13113,13114,13115,13116,13117,13118,13119,13120,13121,13122,13123,13124,13125,13126,13127,13128,13129,13130,13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,13155,13156,13157,13158,13159,13160,13161,13162,13163,13164,13165,13166,13167,13168,13169,13170,13171,13172,13173,13174,13175,13176,13177,13178,13179,13180,13181,13182,13183,13184,13185,13186,13187,13188,13189,13190,13191,13192,13193,13194,13195,13196,13197,13198,13199,13200,13201,13202,13203,13204,13205,13206,13207,13208,13209,13210,13211,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,13222,13223,13224,13225,13226,13227,13228,13229,13230,13231,13232,13233,13234,13235,13236,13237,13238,13239,13240,13241,13242,13243,13244,13245,13246,13247,13248,13249,13250,13251,13252,13253,13254,13255,13256,13257,13258,13259,13260,13261,13262,13263,13264,13265,13266,13267,13268,13269,13270,13271,13272,13273,13274,13275,13276,13277,13278,13279,13280,13281,13282,13283,13284,13285,13286,13287,13288,13289,13290,13291,13292,13293,13294,13295,13296,13297,13298,13299,13300,13301,13302,13303,13304,13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317,13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330,13331,13332,13333,13334,13335,13336,13337,13338,13339,13340,13341,13342,13343,13344,13345,13346,13347,13348,13349,13350,13351,13352,13353,13354,13355,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736,13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,13749,13750,13751,13752,13753,13754,13755,13756,13757,13758,13759,13760,13761,13762,13763,13764,13765,13766,13767,13768,13769,13770,13771,13772,13773,13774,13775,13776,13777,13778,13779,13780,13781,13782,13783,13784,13785,13786,13787,13788,13789,13790,13791,13792,13793,13794,13795,13796,13797,13798,13799,13800,13801,13802,13803,13804,13805,13806,13807,13808,13809,13810,13811,13812,13813,13814,13815,13816,13817,13818,13819,13820,13821,13822,13823,13824,13825,13826,13827,13828,13829,13830,13831,13832,13833,13834,13835,13836,13837,13838,13839,13840,13841,13842,13843,13844,13845,13846,13847,13848,13849,13850,13851,13852,13853,13854,13855,13856,13857,13858,13859,13860,13861,13862,13863,13864,13865,13866,13867,13868,13869,13870,13871,13872,13873,13874,13875,13876,13877,13878,13879,13880,13881,13882,13883,13884,13885,13886,13887,13888,13889,13890,13891,13892,13893,13894,13895,13896,13897,13898,13899,13900,13901,13902,13903,13904,13905,13906,13907,13908,13909,13910,13911,13912,13913,13914,13915,13916,13917,13918,13919,13920,13921,13922,13923,13924,13925,13926,13927,13928,13929,13930,13931,13932,13933,13934,13935,13936,13937,13938,13939,13940,13941,13942,13943,13944,13945,13946,13947,13948,13949,13950,13951,13952,13953,13954,13955,13956,13957,13958,13959,13960,13961,13962,13963,13964,13965,13966,13967,13968,13969,13970,13971,13972,13973,13974,13975,13976,13977,13978,13979,13980,13981,13982,13983,13984,13985,13986,13987,13988,13989,13990,13991,13992,13993,13994,13995,13996,13997,13998,13999,14000,14001,14002,14003,14004,14005,14006,14007,14008,14009,14010,14011,14012,14013,14014,14015,14016,14017,14018,14019,14020,14021,14022,14023,14024,14025,14026,14027,14028,14029,14030,14031,14032,14033,14034,14035,14036,14037,14038,14039,14040,14041,14042,14043,14044,14045,14046,14047,14048,14049,14050,14051,14052,14053,14054,14055,14056,14057,14058,14059,14060,14061,14062,14063,14064,14065,14066,14067,14068,14069,14070,14071,14072,14073,14074,14075,14076,14077,14078,14079,14080,14081,14082,14083,14084,14085,14086,14087,14088,14089,14090,14091,14092,14093,14094,14095,14096,14097,14098,14099,14100,14101,14102,14103,14104,14105,14106,14107,14108,14109,14110,14111,14112,14113,14114,14115,14116,14117,14118,14119,14120,14121,14122,14123,14124,14125,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14136,14137,14138,14139,14140,14141,14142,14143,14144,14145,14146,14147,14148,14149,14150,14151,14152,14153,14154,14155,14156,14157,14158,14159,14160,14161,14162,14163,14164,14165,14166,14167,14168,14169,14170,14171,14172,14173,14174,14175,14176,14177,14178,14179,14180,14181,14182,14183,14184,14185,14186,14187,14188,14189,14190,14191,14192,14193,14194,14195,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205,14206,14207,14208,14209,14210,14211,14212,14213,14214,14215,14216,14217,14218,14219,14220,14221,14222,14223,14224,14225,14226,14227,14228,14229,14230,14231,14232,14233,14234,14235,14236,14237,14238,14239,14240,14241,14242,14243,14244,14245,14246,14247,14248,14249,14250,14251,14252,14253,14254,14255,14256,14257,14258,14259,14260,14261,14262,14263,14264,14265,14266,14267,14268,14269,14270,14271,14272,14273,14274,14275,14276,14277,14278,14279,14280,14281,14282,14283,14284,14285,14286,14287,14288,14289,14290,14291,14292,14293,14294,14295,14296,14297,14298,14299,14300,14301,14302,14303,14304,14305,14306,14307,14308,14309,14310,14311,14312,14313,14314,14315,14316,14317,14318,14319,14320,14321,14322,14323,14324,14325,14326,14327,14328,14329,14330,14331,14332,14333,14334,14335,14336,14337,14338,14339,14340,14341,14342,14343,14344,14345,14346,14347,14348,14349,14350,14351,14352,14353,14354,14355,14356,14357,14358,14359,14360,14361,14362,14363,14364,14365,14366,14367,14368,14369,14370,14371,14372,14373,14374,14375,14376,14377,14378,14379,14380,14381,14382,14383,14384,14385,14386,14387,14388,14389,14390,14391,14392,14393,14394,14395,14396,14397,14398,14399,14400,14401,14402,14403,14404,14405,14406,14407,14408,14409,14410,14411,14412,14413,14414,14415,14416,14417,14418,14419,14420,14421,14422,14423,14424,14425,14426,14427,14428,14429,14430,14431,14432,14433,14434,14435,14436,14437,14438,14439,14440,14441,14442,14443,14444,14445,14446,14447,14448,14449,14450,14451,14452,14453,14454,14455,14456,14457,14458,14459,14460,14461,14462,14463,14464,14465,14466,14467,14468,14469,14470,14471,14472,14473,14474,14475,14476,14477,14478,14479,14480,14481,14482,14483,14484,14485,14486,14487,14488,14489,14490,14491,14492,14493,14494,14495,14496,14497,14498,14499,14500,14501,14502,14503,14504,14505,14506,14507,14508,14509,14510,14511,14512,14513,14514,14515,14516,14517,14518,14519,14520,14521,14522,14523,14524,14525,14526,14527,14528,14529,14530,14531,14532,14533,14534,14535,14536,14537,14538,14539,14540,14541,14542,14543,14544,14545,14546,14547,14548,14549,14550,14551,14552,14553,14554,14555,14556,14557,14558,14559,14560,14561,14562,14563,14564,14565,14566,14567,14568,14569,14570,14571,14572,14573,14574,14575,14576,14577,14578,14579,14580,14581,14582,14583,14584,14585,14586,14587,14588,14589,14590,14591,14592,14593,14594,14595,14596,14597,14598,14599,14600,14601,14602,14603,14604,14605,14606,14607,14608,14609,14610,14611,14612,14613,14614,14615,14616,14617,14618,14619,14620,14621,14622,14623,14624,14625,14626,14627,14628,14629,14630,14631,14632,14633,14634,14635,14636,14637,14638,14639,14640,14641,14642,14643,14644,14645,14646,14647,14648,14649,14650,14651,14652,14653,14654,14655,14656,14657,14658,14659,14660,14661,14662,14663,14664,14665,14666,14667,14668,14669,14670,14671,14672,14673,14674,14675,14676,14677,14678,14679,14680,14681,14682,14683,14684,14685,14686,14687,14688,14689,14690,14691,14692,14693,14694,14695,14696,14697,14698,14699,14700,14701,14702,14703,14704,14705,14706,14707,14708,14709,14710,14711,14712,14713,14714,14715,14716,14717,14718,14719,14720,14721,14722,14723,14724,14725,14726,14727,14728,14729,14730,14731,14732,14733,14734,14735,14736,14737,14738,14739,14740,14741,14742,14743,14744,14745,14746,14747,14748,14749,14750,14751,14752,14753,14754,14755,14756,14757,14758,14759,14760,14761,14762,14763,14764,14765,14766,14767,14768,14769,14770,14771,14772,14773,14774,14775,14776,14777,14778,14779,14780,14781,14782,14783,14784,14785,14786,14787,14788,14789,14790,14791,14792,14793,14794,14795,14796,14797,14798,14799,14800,14801,14802,14803,14804,14805,14806,14807,14808,14809,14810,14811,14812,14813,14814,14815,14816,14817,14818,14819,14820,14821,14822,14823,14824,14825,14826,14827,14828,14829,14830,14831,14832,14833,14834,14835,14836,14837,14838,14839,14840,14841,14842,14843,14844,14845,14846,14847,14848,14849,14850,14851,14852,14853,14854,14855,14856,14857,14858,14859,14860,14861,14862,14863,14864,14865,14866,14867,14868,14869,14870,14871,14872,14873,14874,14875,14876,14877,14878,14879,14880,14881,14882,14883,14884,14885,14886,14887,14888,14889,14890,14891,14892,14893,14894,14895,14896,14897,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14911,14912,14913,14914,14915,14916,14917,14918,14919,14920,14921,14922,14923,14924,14925,14926,14927,14928,14929,14930,14931,14932,14933,14934,14935,14936,14937,14938,14939,14940,14941,14942,14943,14944,14945,14946,14947,14948,14949,14950,14951,14952,14953,14954,14955,14956,14957,14958,14959,14960,14961,14962,14963,14964,14965,14966,14967,14968,14969,14970,14971,14972,14973,14974,14975,14976,14977,14978,14979,14980,14981,14982,14983,14984,14985,14986,14987,14988,14989,14990,14991,14992,14993,14994,14995,14996,14997,14998,14999,15000,15001,15002,15003,15004,15005,15006,15007,15008,15009,15010,15011,15012,15013,15014,15015,15016,15017,15018,15019,15020,15021,15022,15023,15024,15025,15026,15027,15028,15029,15030,15031,15032,15033,15034,15035,15036,15037,15038,15039,15040,15041,15042,15043,15044,15045,15046,15047,15048,15049,15050,15051,15052,15053,15054,15055,15056,15057,15058,15059,15060,15061,15062,15063,15064,15065,15066,15067,15068,15069,15070,15071,15072,15073,15074,15075,15076,15077,15078,15079,15080,15081,15082,15083,15084,15085,15086,15087,15088,15089,15090,15091,15092,15093,15094,15095,15096,15097,15098,15099,15100,15101,15102,15103,15104,15105,15106,15107,15108,15109,15110,15111,15112,15113,15114,15115,15116,15117,15118,15119,15120,15121,15122,15123,15124,15125,15126,15127,15128,15129,15130,15131,15132,15133,15134,15135,15136,15137,15138,15139,15140,15141,15142,15143,15144,15145,15146,15147,15148,15149,15150,15151,15152,15153,15154,15155,15156,15157,15158,15159,15160,15161,15162,15163,15164,15165,15166,15167,15168,15169,15170,15171,15172,15173,15174,15175,15176,15177,15178,15179,15180,15181,15182,15183,15184,15185,15186,15187,15188,15189,15190,15191,15192,15193,15194,15195,15196,15197,15198,15199,15200,15201,15202,15203,15204,15205,15206,15207,15208,15209,15210,15211,15212,15213,15214,15215,15216,15217,15218,15219,15220,15221,15222,15223,15224,15225,15226,15227,15228,15229,15230,15231,15232,15233,15234,15235,15236,15237,15238,15239,15240,15241,15242,15243,15244,15245,15246,15247,15248,15249,15250,15251,15252,15253,15254,15255,15256,15257,15258,15259,15260,15261,15262,15263,15264,15265,15266,15267,15268,15269,15270,15271,15272,15273,15274,15275,15276,15277,15278,15279,15280,15281,15282,15283,15284,15285,15286,15287,15288,15289,15290,15291,15292,15293,15294,15295,15296,15297,15298,15299,15300,15301,15302,15303,15304,15305,15306,15307,15308,15309,15310,15311,15312,15313,15314,15315,15316,15317,15318,15319,15320,15321,15322,15323,15324,15325,15326,15327,15328,15329,15330,15331,15332,15333,15334,15335,15336,15337,15338,15339,15340,15341,15342,15343,15344,15345,15346,15347,15348,15349,15350,15351,15352,15353,15354,15355,15356,15357,15358,15359,15360,15361,15362,15363,15364,15365,15366,15367,15368,15369,15370,15371,15372,15373,15374,15375,15376,15377,15378,15379,15380,15381,15382,15383,15384,15385,15386,15387,15388,15389,15390,15391,15392,15393,15394,15395,15396,15397,15398,15399,15400,15401,15402,15403,15404,15405,15406,15407,15408,15409,15410,15411,15412,15413,15414,15415,15416,15417,15418,15419,15420,15421,15422,15423,15424,15425,15426,15427,15428,15429,15430,15431,15432,15433,15434,15435,15436,15437,15438,15439,15440,15441,15442,15443,15444,15445,15446,15447,15448,15449,15450,15451,15452,15453,15454,15455,15456,15457,15458,15459,15460,15461,15462,15463,15464,15465,15466,15467,15468,15469,15470,15471,15472,15473,15474,15475,15476,15477,15478,15479,15480,15481,15482,15483,15484,15485,15486,15487,15488,15489,15490,15491,15492,15493,15494,15495,15496,15497,15498,15499,15500,15501,15502,15503,15504,15505,15506,15507,15508,15509,15510,15511,15512,15513,15514,15515,15516,15517,15518,15519,15520,15521,15522,15523,15524,15525,15526,15527,15528,15529,15530,15531,15532,15533,15534,15535,15536,15537,15538,15539,15540,15541,15542,15543,15544,15545,15546,15547,15548,15549,15550,15551,15552,15553,15554,15555,15556,15557,15558,15559,15560,15561,15562,15563,15564,15565,15566,15567,15568,15569,15570,15571,15572,15573,15574,15575,15576,15577,15578,15579,15580,15581,15582,15583,15584,15585,15586,15587,15588,15589,15590,15591,15592,15593,15594,15595,15596,15597,15598,15599,15600,15601,15602,15603,15604,15605,15606,15607,15608,15609,15610,15611,15612,15613,15614,15615,15616,15617,15618,15619,15620,15621,15622,15623,15624,15625,15626,15627,15628,15629,15630,15631,15632,15633,15634,15635,15636,15637,15638,15639,15640,15641,15642,15643,15644,15645,15646,15647,15648,15649,15650,15651,15652,15653,15654,15655,15656,15657,15658,15659,15660,15661,15662,15663,15664,15665,15666,15667,15668,15669,15670,15671,15672,15673,15674,15675,15676,15677,15678,15679,15680,15681,15682,15683,15684,15685,15686,15687,15688,15689,15690,15691,15692,15693,15694,15695,15696,15697,15698,15699,15700,15701,15702,15703,15704,15705,15706,15707,15708,15709,15710,15711,15712,15713,15714,15715,15716,15717,15718,15719,15720,15721,15722,15723,15724,15725,15726,15727,15728,15729,15730,15731,15732,15733,15734,15735,15736,15737,15738,15739,15740,15741,15742,15743,15744,15745,15746,15747,15748,15749,15750,15751,15752,15753,15754,15755,15756,15757,15758,15759,15760,15761,15762,15763,15764,15765,15766,15767,15768,15769,15770,15771,15772,15773,15774,15775,15776,15777,15778,15779,15780,15781,15782,15783,15784,15785,15786,15787,15788,15789,15790,15791,15792,15793,15794,15795,15796,15797,15798,15799,15800,15801,15802,15803,15804,15805,15806,15807,15808,15809,15810,15811,15812,15813,15814,15815,15816,15817,15818,15819,15820,15821,15822,15823,15824,15825,15826,15827,15828,15829,15830,15831,15832,15833,15834,15835,15836,15837,15838,15839,15840,15841,15842,15843,15844,15845,15846,15847,15848,15849,15850,15851,15852,15853,15854,15855,15856,15857,15858,15859,15860,15861,15862,15863,15864,15865,15866,15867,15868,15869,15870,15871,15872,15873,15874,15875,15876,15877,15878,15879,15880,15881,15882,15883,15884,15885,15886,15887,15888,15889,15890,15891,15892,15893,15894,15895,15896,15897,15898,15899,15900,15901,15902,15903,15904,15905,15906,15907,15908,15909,15910,15911,15912,15913,15914,15915,15916,15917,15918,15919,15920,15921,15922,15923,15924,15925,15926,15927,15928,15929,15930,15931,15932,15933,15934,15935,15936,15937,15938,15939,15940,15941,15942,15943,15944,15945,15946,15947,15948,15949,15950,15951,15952,15953,15954,15955,15956,15957,15958,15959,15960,15961,15962,15963,15964,15965,15966,15967,15968,15969,15970,15971,15972,15973,15974,15975,15976,15977,15978,15979,15980,15981,15982,15983,15984,15985,15986,15987,15988,15989,15990,15991,15992,15993,15994,15995,15996,15997,15998,15999,16000,16001,16002,16003,16004,16005,16006,16007,16008,16009,16010,16011,16012,16013,16014,16015,16016,16017,16018,16019,16020,16021,16022,16023,16024,16025,16026,16027,16028,16029,16030,16031,16032,16033,16034,16035,16036,16037,16038,16039,16040,16041,16042,16043,16044,16045,16046,16047,16048,16049,16050,16051,16052,16053,16054,16055,16056,16057,16058,16059,16060,16061,16062,16063,16064,16065,16066,16067,16068,16069,16070,16071,16072,16073,16074,16075,16076,16077,16078,16079,16080,16081,16082,16083,16084,16085,16086,16087,16088,16089,16090,16091,16092,16093,16094,16095,16096,16097,16098,16099,16100,16101,16102,16103,16104,16105,16106,16107,16108,16109,16110,16111,16112,16113,16114,16115,16116,16117,16118,16119,16120,16121,16122,16123,16124,16125,16126,16127,16128,16129,16130,16131,16132,16133,16134,16135,16136,16137,16138,16139,16140,16141,16142,16143,16144,16145,16146,16147,16148,16149,16150,16151,16152,16153,16154,16155,16156,16157,16158,16159,16160,16161,16162,16163,16164,16165,16166,16167,16168,16169,16170,16171,16172,16173,16174,16175,16176,16177,16178,16179,16180,16181,16182,16183,16184,16185,16186,16187,16188,16189,16190,16191,16192,16193,16194,16195,16196,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16223,16224,16225,16226,16227,16228,16229,16230,16231,16232,16233,16234,16235,16236,16237,16238,16239,16240,16241,16242,16243,16244,16245,16246,16247,16248,16249,16250,16251,16252,16253,16254,16255,16256,16257,16258,16259,16260,16261,16262,16263,16264,16265,16266,16267,16268,16269,16270,16271,16272,16273,16274,16275,16276,16277,16278,16279,16280,16281,16282,16283,16284,16285,16286,16287,16288,16289,16290,16291,16292,16293,16294,16295,16296,16297,16298,16299,16300,16301,16302,16303,16304,16305,16306,16307,16308,16309,16310,16311,16312,16313,16314,16315,16316,16317,16318,16319,16320,16321,16322,16323,16324,16325,16326,16327,16328,16329,16330,16331,16332,16333,16334,16335,16336,16337,16338,16339,16340,16341,16342,16343,16344,16345,16346,16347,16348,16349,16350,16351,16352,16353,16354,16355,16356,16357,16358,16359,16360,16361,16362,16363,16364,16365,16366,16367,16368,16369,16370,16371,16372,16373,16374,16375,16376,16377,16378,16379,16380,16381,16382,16383,16384,16385,16386,16387,16388,16389,16390,16391,16392,16393,16394,16395,16396,16397,16398,16399,16400,16401,16402,16403,16404,16405,16406,16407,16408,16409,16410,16411,16412,16413,16414,16415,16416,16417,16418,16419,16420,16421,16422,16423,16424,16425,16426,16427,16428,16429,16430,16431,16432,16433,16434,16435,16436,16437,16438,16439,16440,16441,16442,16443,16444,16445,16446,16447,16448,16449,16450,16451,16452,16453,16454,16455,16456,16457,16458,16459,16460,16461,16462,16463,16464,16465,16466,16467,16468,16469,16470,16471,16472,16473,16474,16475,16476,16477,16478,16479,16480,16481,16482,16483,16484,16485,16486,16487,16488,16489,16490,16491,16492,16493,16494,16495,16496,16497,16498,16499,16500,16501,16502,16503,16504,16505,16506,16507,16508,16509,16510,16511,16512,16513,16514,16515,16516,16517,16518,16519,16520,16521,16522,16523,16524,16525,16526,16527,16528,16529,16530,16531,16532,16533,16534,16535,16536,16537,16538,16539,16540,16541,16542,16543,16544,16545,16546,16547,16548,16549,16550,16551,16552,16553,16554,16555,16556,16557,16558,16559,16560,16561,16562,16563,16564,16565,16566,16567,16568,16569,16570,16571,16572,16573,16574,16575,16576,16577,16578,16579,16580,16581,16582,16583,16584,16585,16586,16587,16588,16589,16590,16591,16592,16593,16594,16595,16596,16597,16598,16599,16600,16601,16602,16603,16604,16605,16606,16607,16608,16609,16610,16611,16612,16613,16614,16615,16616,16617,16618,16619,16620,16621,16622,16623,16624,16625,16626,16627,16628,16629,16630,16631,16632,16633,16634,16635,16636,16637,16638,16639,16640,16641,16642,16643,16644,16645,16646,16647,16648,16649,16650,16651,16652,16653,16654,16655,16656,16657,16658,16659,16660,16661,16662,16663,16664,16665,16666,16667,16668,16669,16670,16671,16672,16673,16674,16675,16676,16677,16678,16679,16680,16681,16682,16683,16684,16685,16686,16687,16688,16689,16690,16691,16692,16693,16694,16695,16696,16697,16698,16699,16700,16701,16702,16703,16704,16705,16706,16707,16708,16709,16710,16711,16712,16713,16714,16715,16716,16717,16718,16719,16720,16721,16722,16723,16724,16725,16726,16727,16728,16729,16730,16731,16732,16733,16734,16735,16736,16737,16738,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749,16750,16751,16752,16753,16754,16755,16756,16757,16758,16759,16760,16761,16762,16763,16764,16765,16766,16767,16768,16769,16770,16771,16772,16773,16774,16775,16776,16777,16778,16779,16780,16781,16782,16783,16784,16785,16786,16787,16788,16789,16790,16791,16792,16793,16794,16795,16796,16797,16798,16799,16800,16801,16802,16803,16804,16805,16806,16807,16808,16809,16810,16811,16812,16813,16814,16815,16816,16817,16818,16819,16820,16821,16822,16823,16824,16825,16826,16827,16828,16829,16830,16831,16832,16833,16834,16835,16836,16837,16838,16839,16840,16841,16842,16843,16844,16845,16846,16847,16848,16849,16850,16851,16852,16853,16854,16855,16856,16857,16858,16859,16860,16861,16862,16863,16864,16865,16866,16867,16868,16869,16870,16871,16872,16873,16874,16875,16876,16877,16878,16879,16880,16881,16882,16883,16884,16885,16886,16887,16888,16889,16890,16891,16892,16893,16894,16895,16896,16897,16898,16899,16900,16901,16902,16903,16904,16905,16906,16907,16908,16909,16910,16911,16912,16913,16914,16915,16916,16917,16918,16919,16920,16921,16922,16923,16924,16925,16926,16927,16928,16929,16930,16931,16932,16933,16934,16935,16936,16937,16938,16939,16940,16941,16942,16943,16944,16945,16946,16947,16948,16949,16950,16951,16952,16953,16954,16955,16956,16957,16958,16959,16960,16961,16962,16963,16964,16965,16966,16967,16968,16969,16970,16971,16972,16973,16974,16975,16976,16977,16978,16979,16980,16981,16982,16983,16984,16985,16986,16987,16988,16989,16990,16991,16992,16993,16994,16995,16996,16997,16998,16999,17000,17001,17002,17003,17004,17005,17006,17007,17008,17009,17010,17011,17012,17013,17014,17015,17016,17017,17018,17019,17020,17021,17022,17023,17024,17025,17026,17027,17028,17029,17030,17031,17032,17033,17034,17035,17036,17037,17038,17039,17040,17041,17042,17043,17044,17045,17046,17047,17048,17049,17050,17051,17052,17053,17054,17055,17056,17057,17058,17059,17060,17061,17062,17063,17064,17065,17066,17067,17068,17069,17070,17071,17072,17073,17074,17075,17076,17077,17078,17079,17080,17081,17082,17083,17084,17085,17086,17087,17088,17089,17090,17091,17092,17093,17094,17095,17096,17097,17098,17099,17100,17101,17102,17103,17104,17105,17106,17107,17108,17109,17110,17111,17112,17113,17114,17115,17116,17117,17118,17119,17120,17121,17122,17123,17124,17125,17126,17127,17128,17129,17130,17131,17132,17133,17134,17135,17136,17137,17138,17139,17140,17141,17142,17143,17144,17145,17146,17147,17148,17149,17150,17151,17152,17153,17154,17155,17156,17157,17158,17159,17160,17161,17162,17163,17164,17165,17166,17167,17168,17169,17170,17171,17172,17173,17174,17175,17176,17177,17178,17179,17180,17181,17182,17183,17184,17185,17186,17187,17188,17189,17190,17191,17192,17193,17194,17195,17196,17197,17198,17199,17200,17201,17202,17203,17204,17205,17206,17207,17208,17209,17210,17211,17212,17213,17214,17215,17216,17217,17218,17219,17220,17221,17222,17223,17224,17225,17226,17227,17228,17229,17230,17231,17232,17233,17234,17235,17236,17237,17238,17239,17240,17241,17242,17243,17244,17245,17246,17247,17248,17249,17250,17251,17252,17253,17254,17255,17256,17257,17258,17259,17260,17261,17262,17263,17264,17265,17266,17267,17268,17269,17270,17271,17272,17273,17274,17275,17276,17277,17278,17279,17280,17281,17282,17283,17284,17285,17286,17287,17288,17289,17290,17291,17292,17293,17294,17295,17296,17297,17298,17299,17300,17301,17302,17303,17304,17305,17306,17307,17308,17309,17310,17311,17312,17313,17314,17315,17316,17317,17318,17319,17320,17321,17322,17323,17324,17325,17326,17327,17328,17329,17330,17331,17332,17333,17334,17335,17336,17337,17338,17339,17340,17341,17342,17343,17344,17345,17346,17347,17348,17349,17350,17351,17352,17353,17354,17355,17356,17357,17358,17359,17360,17361,17362,17363,17364,17365,17366,17367,17368,17369,17370,17371,17372,17373,17374,17375,17376,17377,17378,17379,17380,17381,17382,17383,17384,17385,17386,17387,17388,17389,17390,17391,17392,17393,17394,17395,17396,17397,17398,17399,17400,17401,17402,17403,17404,17405,17406,17407,17408,17409,17410,17411,17412,17413,17414,17415,17416,17417,17418,17419,17420,17421,17422,17423,17424,17425,17426,17427,17428,17429,17430,17431,17432,17433,17434,17435,17436,17437,17438,17439,17440,17441,17442,17443,17444,17445,17446,17447,17448,17449,17450,17451,17452,17453,17454,17455,17456,17457,17458,17459,17460,17461,17462,17463,17464,17465,17466,17467,17468,17469,17470,17471,17472,17473,17474,17475,17476,17477,17478,17479,17480,17481,17482,17483,17484,17485,17486,17487,17488,17489,17490,17491,17492,17493,17494,17495,17496,17497,17498,17499,17500,17501,17502,17503,17504,17505,17506,17507,17508,17509,17510,17511,17512,17513,17514,17515,17516,17517,17518,17519,17520,17521,17522,17523,17524,17525,17526,17527,17528,17529,17530,17531,17532,17533,17534,17535,17536,17537,17538,17539,17540,17541,17542,17543,17544,17545,17546,17547,17548,17549,17550,17551,17552,17553,17554,17555,17556,17557,17558,17559,17560,17561,17562,17563,17564,17565,17566,17567,17568,17569,17570,17571,17572,17573,17574,17575,17576,17577,17578,17579,17580,17581,17582,17583,17584,17585,17586,17587,17588,17589,17590,17591,17592,17593,17594,17595,17596,17597,17598,17599,17600,17601,17602,17603,17604,17605,17606,17607,17608,17609,17610,17611,17612,17613,17614,17615,17616,17617,17618,17619,17620,17621,17622,17623,17624,17625,17626,17627,17628,17629,17630,17631,17632,17633,17634,17635,17636,17637,17638,17639,17640,17641,17642,17643,17644,17645,17646,17647,17648,17649,17650,17651,17652,17653,17654,17655,17656,17657,17658,17659,17660,17661,17662,17663,17664,17665,17666,17667,17668,17669,17670,17671,17672,17673,17674,17675,17676,17677,17678,17679,17680,17681,17682,17683,17684,17685,17686,17687,17688,17689,17690,17691,17692,17693,17694,17695,17696,17697,17698,17699,17700,17701,17702,17703,17704,17705,17706,17707,17708,17709,17710,17711,17712,17713,17714,17715,17716,17717,17718,17719,17720,17721,17722,17723,17724,17725,17726,17727,17728,17729,17730,17731,17732,17733,17734,17735,17736,17737,17738,17739,17740,17741,17742,17743,17744,17745,17746,17747,17748,17749,17750,17751,17752,17753,17754,17755,17756,17757,17758,17759,17760,17761,17762,17763,17764,17765,17766,17767,17768,17769,17770,17771,17772,17773,17774,17775,17776,17777,17778,17779,17780,17781,17782,17783,17784,17785,17786,17787,17788,17789,17790,17791,17792,17793,17794,17795,17796,17797,17798,17799,17800,17801,17802,17803,17804,17805,17806,17807,17808,17809,17810,17811,17812,17813,17814,17815,17816,17817,17818,17819,17820,17821,17822,17823,17824,17825,17826,17827,17828,17829,17830,17831,17832,17833,17834,17835,17836,17837,17838,17839,17840,17841,17842,17843,17844,17845,17846,17847,17848,17849,17850,17851,17852,17853,17854,17855,17856,17857,17858,17859,17860,17861,17862,17863,17864,17865,17866,17867,17868,17869,17870,17871,17872,17873,17874,17875,17876,17877,17878,17879,17880,17881,17882,17883,17884,17885,17886,17887,17888,17889,17890,17891,17892,17893,17894,17895,17896,17897,17898,17899,17900,17901,17902,17903,17904,17905,17906,17907,17908,17909,17910,17911,17912,17913,17914,17915,17916,17917,17918,17919,17920,17921,17922,17923,17924,17925,17926,17927,17928,17929,17930,17931,17932,17933,17934,17935,17936,17937,17938,17939,17940,17941,17942,17943,17944,17945,17946,17947,17948,17949,17950,17951,17952,17953,17954,17955,17956,17957,17958,17959,17960,17961,17962,17963,17964,17965,17966,17967,17968,17969,17970,17971,17972,17973,17974,17975,17976,17977,17978,17979,17980,17981,17982,17983,17984,17985,17986,17987,17988,17989,17990,17991,17992,17993,17994,17995,17996,17997,17998,17999,18000,18001,18002,18003,18004,18005,18006,18007,18008,18009,18010,18011,18012,18013,18014,18015,18016,18017,18018,18019,18020,18021,18022,18023,18024,18025,18026,18027,18028,18029,18030,18031,18032,18033,18034,18035,18036,18037,18038,18039,18040,18041,18042,18043,18044,18045,18046,18047,18048,18049,18050,18051,18052,18053,18054,18055,18056,18057,18058,18059,18060,18061,18062,18063,18064,18065,18066,18067,18068,18069,18070,18071,18072,18073,18074,18075,18076,18077,18078,18079,18080,18081,18082,18083,18084,18085,18086,18087,18088,18089,18090,18091,18092,18093,18094,18095,18096,18097,18098,18099,18100,18101,18102,18103,18104,18105,18106,18107,18108,18109,18110,18111,18112,18113,18114,18115,18116,18117,18118,18119,18120,18121,18122,18123,18124,18125,18126,18127,18128,18129,18130,18131,18132,18133,18134,18135,18136,18137,18138,18139,18140,18141,18142,18143,18144,18145,18146,18147,18148,18149,18150,18151,18152,18153,18154,18155,18156,18157,18158,18159,18160,18161,18162,18163,18164,18165,18166,18167,18168,18169,18170,18171,18172,18173,18174,18175,18176,18177,18178,18179,18180,18181,18182,18183,18184,18185,18186,18187,18188,18189,18190,18191,18192,18193,18194,18195,18196,18197,18198,18199,18200,18201,18202,18203,18204,18205,18206,18207,18208,18209,18210,18211,18212,18213,18214,18215,18216,18217,18218,18219,18220,18221,18222,18223,18224,18225,18226,18227,18228,18229,18230,18231,18232,18233,18234,18235,18236,18237,18238,18239,18240,18241,18242,18243,18244,18245,18246,18247,18248,18249,18250,18251,18252,18253,18254,18255,18256,18257,18258,18259,18260,18261,18262,18263,18264,18265,18266,18267,18268,18269,18270,18271,18272,18273,18274,18275,18276,18277,18278,18279,18280,18281,18282,18283,18284,18285,18286,18287,18288,18289,18290,18291,18292,18293,18294,18295,18296,18297,18298,18299,18300,18301,18302,18303,18304,18305,18306,18307,18308,18309,18310,18311,18312,18313,18314,18315,18316,18317,18318,18319,18320,18321,18322,18323,18324,18325,18326,18327,18328,18329,18330,18331,18332,18333,18334,18335,18336,18337,18338,18339,18340,18341,18342,18343,18344,18345,18346,18347,18348,18349,18350,18351,18352,18353,18354,18355,18356,18357,18358,18359,18360,18361,18362,18363,18364,18365,18366,18367,18368,18369,18370,18371,18372,18373,18374,18375,18376,18377,18378,18379,18380,18381,18382,18383,18384,18385,18386,18387,18388,18389,18390,18391,18392,18393,18394,18395,18396,18397,18398,18399,18400,18401,18402,18403,18404,18405,18406,18407,18408,18409,18410,18411,18412,18413,18414,18415,18416,18417,18418,18419,18420,18421,18422,18423,18424,18425,18426,18427,18428,18429,18430,18431,18432,18433,18434,18435,18436,18437,18438,18439,18440,18441,18442,18443,18444,18445,18446,18447,18448,18449,18450,18451,18452,18453,18454,18455,18456,18457,18458,18459,18460,18461,18462,18463,18464,18465,18466,18467,18468,18469,18470,18471,18472,18473,18474,18475,18476,18477,18478,18479,18480,18481,18482,18483,18484,18485,18486,18487,18488,18489,18490,18491,18492,18493,18494,18495,18496,18497,18498,18499,18500,18501,18502,18503,18504,18505,18506,18507,18508,18509,18510,18511,18512,18513,18514,18515,18516,18517,18518,18519,18520,18521,18522,18523,18524,18525,18526,18527,18528,18529,18530,18531,18532,18533,18534,18535,18536,18537,18538,18539,18540,18541,18542,18543,18544,18545,18546,18547,18548,18549,18550,18551,18552,18553,18554,18555,18556,18557,18558,18559,18560,18561,18562,18563,18564,18565,18566,18567,18568,18569,18570,18571,18572,18573,18574,18575,18576,18577,18578,18579,18580,18581,18582,18583,18584,18585,18586,18587,18588,18589,18590,18591,18592,18593,18594,18595,18596,18597,18598,18599,18600,18601,18602,18603,18604,18605,18606,18607,18608,18609,18610,18611,18612,18613,18614,18615,18616,18617,18618,18619,18620,18621,18622,18623,18624,18625,18626,18627,18628,18629,18630,18631,18632,18633,18634,18635,18636,18637,18638,18639,18640,18641,18642,18643,18644,18645,18646,18647,18648,18649,18650,18651,18652,18653,18654,18655,18656,18657,18658,18659,18660,18661,18662,18663,18664,18665,18666,18667,18668,18669,18670,18671,18672,18673,18674,18675,18676,18677,18678,18679,18680,18681,18682,18683,18684,18685,18686,18687,18688,18689,18690,18691,18692,18693,18694,18695,18696,18697,18698,18699,18700,18701,18702,18703,18704,18705,18706,18707,18708,18709,18710,18711,18712,18713,18714,18715,18716,18717,18718,18719,18720,18721,18722,18723,18724,18725,18726,18727,18728,18729,18730,18731,18732,18733,18734,18735,18736,18737,18738,18739,18740,18741,18742,18743,18744,18745,18746,18747,18748,18749,18750,18751,18752,18753,18754,18755,18756,18757,18758,18759,18760,18761,18762,18763,18764,18765,18766,18767,18768,18769,18770,18771,18772,18773,18774,18775,18776,18777,18778,18779,18780,18781,18782,18783,18784,18785,18786,18787,18788,18789,18790,18791,18792,18793,18794,18795,18796,18797,18798,18799,18800,18801,18802,18803,18804,18805,18806,18807,18808,18809,18810,18811,18812,18813,18814,18815,18816,18817,18818,18819,18820,18821,18822,18823,18824,18825,18826,18827,18828,18829,18830,18831,18832,18833,18834,18835,18836,18837,18838,18839,18840,18841,18842,18843,18844,18845,18846,18847,18848,18849,18850,18851,18852,18853,18854,18855,18856,18857,18858,18859,18860,18861,18862,18863,18864,18865,18866,18867,18868,18869,18870,18871,18872,18873,18874,18875,18876,18877,18878,18879,18880,18881,18882,18883,18884,18885,18886,18887,18888,18889,18890,18891,18892,18893,18894,18895,18896,18897,18898,18899,18900,18901,18902,18903,18904,18905,18906,18907,18908,18909,18910,18911,18912,18913,18914,18915,18916,18917,18918,18919,18920,18921,18922,18923,18924,18925,18926,18927,18928,18929,18930,18931,18932,18933,18934,18935,18936,18937,18938,18939,18940,18941,18942,18943,18944,18945,18946,18947,18948,18949,18950,18951,18952,18953,18954,18955,18956,18957,18958,18959,18960,18961,18962,18963,18964,18965,18966,18967,18968,18969,18970,18971,18972,18973,18974,18975,18976,18977,18978,18979,18980,18981,18982,18983,18984,18985,18986,18987,18988,18989,18990,18991,18992,18993,18994,18995,18996,18997,18998,18999,19000,19001,19002,19003,19004,19005,19006,19007,19008,19009,19010,19011,19012,19013,19014,19015,19016,19017,19018,19019,19020,19021,19022,19023,19024,19025,19026,19027,19028,19029,19030,19031,19032,19033,19034,19035,19036,19037,19038,19039,19040,19041,19042,19043,19044,19045,19046,19047,19048,19049,19050,19051,19052,19053,19054,19055,19056,19057,19058,19059,19060,19061,19062,19063,19064,19065,19066,19067,19068,19069,19070,19071,19072,19073,19074,19075,19076,19077,19078,19079,19080,19081,19082,19083,19084,19085,19086,19087,19088,19089,19090,19091,19092,19093,19094,19095,19096,19097,19098,19099,19100,19101,19102,19103,19104,19105,19106,19107,19108,19109,19110,19111,19112,19113,19114,19115,19116,19117,19118,19119,19120,19121,19122,19123,19124,19125,19126,19127,19128,19129,19130,19131,19132,19133,19134,19135,19136,19137,19138,19139,19140,19141,19142,19143,19144,19145,19146,19147,19148,19149,19150,19151,19152,19153,19154,19155,19156,19157,19158,19159,19160,19161,19162,19163,19164,19165,19166,19167,19168,19169,19170,19171,19172,19173,19174,19175,19176,19177,19178,19179,19180,19181,19182,19183,19184,19185,19186,19187,19188,19189,19190,19191,19192,19193,19194,19195,19196,19197,19198,19199,19200,19201,19202,19203,19204,19205,19206,19207,19208,19209,19210,19211,19212,19213,19214,19215,19216,19217,19218,19219,19220,19221,19222,19223,19224,19225,19226,19227,19228,19229,19230,19231,19232,19233,19234,19235,19236,19237,19238,19239,19240,19241,19242,19243,19244,19245,19246,19247,19248,19249,19250,19251,19252,19253,19254,19255,19256,19257,19258,19259,19260,19261,19262,19263,19264,19265,19266,19267,19268,19269,19270,19271,19272,19273,19274,19275,19276,19277,19278,19279,19280,19281,19282,19283,19284,19285,19286,19287,19288,19289,19290,19291,19292,19293,19294,19295,19296,19297,19298,19299,19300,19301,19302,19303,19304,19305,19306,19307,19308,19309,19310,19311,19312,19313,19314,19315,19316,19317,19318,19319,19320,19321,19322,19323,19324,19325,19326,19327,19328,19329,19330,19331,19332,19333,19334,19335,19336,19337,19338,19339,19340,19341,19342,19343,19344,19345,19346,19347,19348,19349,19350,19351,19352,19353,19354,19355,19356,19357,19358,19359,19360,19361,19362,19363,19364,19365,19366,19367,19368,19369,19370,19371,19372,19373,19374,19375,19376,19377,19378,19379,19380,19381,19382,19383,19384,19385,19386,19387,19388,19389,19390,19391,19392,19393,19394,19395,19396,19397,19398,19399,19400,19401,19402,19403,19404,19405,19406,19407,19408,19409,19410,19411,19412,19413,19414,19415,19416,19417,19418,19419,19420,19421,19422,19423,19424,19425,19426,19427,19428,19429,19430,19431,19432,19433,19434,19435,19436,19437,19438,19439,19440,19441,19442,19443,19444,19445,19446,19447,19448,19449,19450,19451,19452,19453,19454,19455,19456,19457,19458,19459,19460,19461,19462,19463,19464,19465,19466,19467,19468,19469,19470,19471,19472,19473,19474,19475,19476,19477,19478,19479,19480,19481,19482,19483,19484,19485,19486,19487,19488,19489,19490,19491,19492,19493,19494,19495,19496,19497,19498,19499,19500,19501,19502,19503,19504,19505,19506,19507,19508,19509,19510,19511,19512,19513,19514,19515,19516,19517,19518,19519,19520,19521,19522,19523,19524,19525,19526,19527,19528,19529,19530,19531,19532,19533,19534,19535,19536,19537,19538,19539,19540,19541,19542,19543,19544,19545,19546,19547,19548,19549,19550,19551,19552,19553,19554,19555,19556,19557,19558,19559,19560,19561,19562,19563,19564,19565,19566,19567,19568,19569,19570,19571,19572,19573,19574,19575,19576,19577,19578,19579,19580,19581,19582,19583,19584,19585,19586,19587,19588,19589,19590,19591,19592,19593,19594,19595,19596,19597,19598,19599,19600,19601,19602,19603,19604,19605,19606,19607,19608,19609,19610,19611,19612,19613,19614,19615,19616,19617,19618,19619,19620,19621,19622,19623,19624,19625,19626,19627,19628,19629,19630,19631,19632,19633,19634,19635,19636,19637,19638,19639,19640,19641,19642,19643,19644,19645,19646,19647,19648,19649,19650,19651,19652,19653,19654,19655,19656,19657,19658,19659,19660,19661,19662,19663,19664,19665,19666,19667,19668,19669,19670,19671,19672,19673,19674,19675,19676,19677,19678,19679,19680,19681,19682,19683,19684,19685,19686,19687,19688,19689,19690,19691,19692,19693,19694,19695,19696,19697,19698,19699,19700,19701,19702,19703,19704,19705,19706,19707,19708,19709,19710,19711,19712,19713,19714,19715,19716,19717,19718,19719,19720,19721,19722,19723,19724,19725,19726,19727,19728,19729,19730,19731,19732,19733,19734,19735,19736,19737,19738,19739,19740,19741,19742,19743,19744,19745,19746,19747,19748,19749,19750,19751,19752,19753,19754,19755,19756,19757,19758,19759,19760,19761,19762,19763,19764,19765,19766,19767,19768,19769,19770,19771,19772,19773,19774,19775,19776,19777,19778,19779,19780,19781,19782,19783,19784,19785,19786,19787,19788,19789,19790,19791,19792,19793,19794,19795,19796,19797,19798,19799,19800,19801,19802,19803,19804,19805,19806,19807,19808,19809,19810,19811,19812,19813,19814,19815,19816,19817,19818,19819,19820,19821,19822,19823,19824,19825,19826,19827,19828,19829,19830,19831,19832,19833,19834,19835,19836,19837,19838,19839,19840,19841,19842,19843,19844,19845,19846,19847,19848,19849,19850,19851,19852,19853,19854,19855,19856,19857,19858,19859,19860,19861,19862,19863,19864,19865,19866,19867,19868,19869,19870,19871,19872,19873,19874,19875,19876,19877,19878,19879,19880,19881,19882,19883,19884,19885,19886,19887,19888,19889,19890,19891,19892,19893,19894,19895,19896,19897,19898,19899,19900,19901,19902,19903,19904,19905,19906,19907,19908,19909,19910,19911,19912,19913,19914,19915,19916,19917,19918,19919,19920,19921,19922,19923,19924,19925,19926,19927,19928,19929,19930,19931,19932,19933,19934,19935,19936,19937,19938,19939,19940,19941,19942,19943,19944,19945,19946,19947,19948,19949,19950,19951,19952,19953,19954,19955,19956,19957,19958,19959,19960,19961,19962,19963,19964,19965,19966,19967,19968,19969,19970,19971,19972,19973,19974,19975,19976,19977,19978,19979,19980,19981,19982,19983,19984,19985,19986,19987,19988,19989,19990,19991,19992,19993,19994,19995,19996,19997,19998,19999,20000,20001,20002,20003,20004,20005,20006,20007,20008,20009,20010,20011,20012,20013,20014,20015,20016,20017,20018,20019,20020,20021,20022,20023,20024,20025,20026,20027,20028,20029,20030,20031,20032,20033,20034,20035,20036,20037,20038,20039,20040,20041,20042,20043,20044,20045,20046,20047,20048,20049,20050,20051,20052,20053,20054,20055,20056,20057,20058,20059,20060,20061,20062,20063,20064,20065,20066,20067,20068,20069,20070,20071,20072,20073,20074,20075,20076,20077,20078,20079,20080,20081,20082,20083,20084,20085,20086,20087,20088,20089,20090,20091,20092,20093,20094,20095,20096,20097,20098,20099,20100,20101,20102,20103,20104,20105,20106,20107,20108,20109,20110,20111,20112,20113,20114,20115,20116,20117,20118,20119,20120,20121,20122,20123,20124,20125,20126,20127,20128,20129,20130,20131,20132,20133,20134,20135,20136,20137,20138,20139,20140,20141,20142,20143,20144,20145,20146,20147,20148,20149,20150,20151,20152,20153,20154,20155,20156,20157,20158,20159,20160,20161,20162,20163,20164,20165,20166,20167,20168,20169,20170,20171,20172,20173,20174,20175,20176,20177,20178,20179,20180,20181,20182,20183,20184,20185,20186,20187,20188,20189,20190,20191,20192,20193,20194,20195,20196,20197,20198,20199,20200,20201,20202,20203,20204,20205,20206,20207,20208,20209,20210,20211,20212,20213,20214,20215,20216,20217,20218,20219,20220,20221,20222,20223,20224,20225,20226,20227,20228,20229,20230,20231,20232,20233,20234,20235,20236,20237,20238,20239,20240,20241,20242,20243,20244,20245,20246,20247,20248,20249,20250,20251,20252,20253,20254,20255,20256,20257,20258,20259,20260,20261,20262,20263,20264,20265,20266,20267,20268,20269,20270,20271,20272,20273,20274,20275,20276,20277,20278,20279,20280,20281,20282,20283,20284,20285,20286,20287,20288,20289,20290,20291,20292,20293,20294,20295,20296,20297,20298,20299,20300,20301,20302,20303,20304,20305,20306,20307,20308,20309,20310,20311,20312,20313,20314,20315,20316,20317,20318,20319,20320,20321,20322,20323,20324,20325,20326,20327,20328,20329,20330,20331,20332,20333,20334,20335,20336,20337,20338,20339,20340,20341,20342,20343,20344,20345,20346,20347,20348,20349,20350,20351,20352,20353,20354,20355,20356,20357,20358,20359,20360,20361,20362,20363,20364,20365,20366,20367,20368,20369,20370,20371,20372,20373,20374,20375,20376,20377,20378,20379,20380,20381,20382,20383,20384,20385,20386,20387,20388,20389,20390,20391,20392,20393,20394,20395,20396,20397,20398,20399,20400,20401,20402,20403,20404,20405,20406,20407,20408,20409,20410,20411,20412,20413,20414,20415,20416,20417,20418,20419,20420,20421,20422,20423,20424,20425,20426,20427,20428,20429,20430,20431,20432,20433,20434,20435,20436,20437,20438,20439,20440,20441,20442,20443,20444,20445,20446,20447,20448,20449,20450,20451,20452,20453,20454,20455,20456,20457,20458,20459,20460,20461,20462,20463,20464,20465,20466,20467,20468,20469,20470,20471,20472,20473,20474,20475,20476,20477,20478,20479,20480,20481,20482,20483,20484,20485,20486,20487,20488,20489,20490,20491,20492,20493,20494,20495,20496,20497,20498,20499,20500,20501,20502,20503,20504,20505,20506,20507,20508,20509,20510,20511,20512,20513,20514,20515,20516,20517,20518,20519,20520,20521,20522,20523,20524,20525,20526,20527,20528,20529,20530,20531,20532,20533,20534,20535,20536,20537,20538,20539,20540,20541,20542,20543,20544,20545,20546,20547,20548,20549,20550,20551,20552,20553,20554,20555,20556,20557,20558,20559,20560,20561,20562,20563,20564,20565,20566,20567,20568,20569,20570,20571,20572,20573,20574,20575,20576,20577,20578,20579,20580,20581,20582,20583,20584,20585,20586,20587,20588,20589,20590,20591,20592,20593,20594,20595,20596,20597,20598,20599,20600,20601,20602,20603,20604,20605,20606,20607,20608,20609,20610,20611,20612,20613,20614,20615,20616,20617,20618,20619,20620,20621,20622,20623,20624,20625,20626,20627,20628,20629,20630,20631,20632,20633,20634,20635,20636,20637,20638,20639,20640,20641,20642,20643,20644,20645,20646,20647,20648,20649,20650,20651,20652,20653,20654,20655,20656,20657,20658,20659,20660,20661,20662,20663,20664,20665,20666,20667,20668,20669,20670,20671,20672,20673,20674,20675,20676,20677,20678,20679,20680,20681,20682,20683,20684,20685,20686,20687,20688,20689,20690,20691,20692,20693,20694,20695,20696,20697,20698,20699,20700,20701,20702,20703,20704,20705,20706,20707,20708,20709,20710,20711,20712,20713,20714,20715,20716,20717,20718,20719,20720,20721,20722,20723,20724,20725,20726,20727,20728,20729,20730,20731,20732,20733,20734,20735,20736,20737,20738,20739,20740,20741,20742,20743,20744,20745,20746,20747,20748,20749,20750,20751,20752,20753,20754,20755,20756,20757,20758,20759,20760,20761,20762,20763,20764,20765,20766,20767,20768,20769,20770,20771,20772,20773,20774,20775,20776,20777,20778,20779,20780,20781,20782,20783,20784,20785,20786,20787,20788,20789,20790,20791,20792,20793,20794,20795,20796,20797,20798,20799,20800,20801,20802,20803,20804,20805,20806,20807,20808,20809,20810,20811,20812,20813,20814,20815,20816,20817,20818,20819,20820,20821,20822,20823,20824,20825,20826,20827,20828,20829,20830,20831,20832,20833,20834,20835,20836,20837,20838,20839,20840,20841,20842,20843,20844,20845,20846,20847,20848,20849,20850,20851,20852,20853,20854,20855,20856,20857,20858,20859,20860,20861,20862,20863,20864,20865,20866,20867,20868,20869,20870,20871,20872,20873,20874,20875,20876,20877,20878,20879,20880,20881,20882,20883,20884,20885,20886,20887,20888,20889,20890,20891,20892,20893,20894,20895,20896,20897,20898,20899,20900,20901,20902,20903,20904,20905,20906,20907,20908,20909,20910,20911,20912,20913,20914,20915,20916,20917,20918,20919,20920,20921,20922,20923,20924,20925,20926,20927,20928,20929,20930,20931,20932,20933,20934,20935,20936,20937,20938,20939,20940,20941,20942,20943,20944,20945,20946,20947,20948,20949,20950,20951,20952,20953,20954,20955,20956,20957,20958,20959,20960,20961,20962,20963,20964,20965,20966,20967,20968,20969,20970,20971,20972,20973,20974,20975,20976,20977,20978,20979,20980,20981,20982,20983,20984,20985,20986,20987,20988,20989,20990,20991,20992,20993,20994,20995,20996,20997,20998,20999,21000,21001,21002,21003,21004,21005,21006,21007,21008,21009,21010,21011,21012,21013,21014,21015,21016,21017,21018,21019,21020,21021,21022,21023,21024,21025,21026,21027,21028,21029,21030,21031,21032,21033,21034,21035,21036,21037,21038,21039,21040,21041,21042,21043,21044,21045,21046,21047,21048,21049,21050,21051,21052,21053,21054,21055,21056,21057,21058,21059,21060,21061,21062,21063,21064,21065,21066,21067,21068,21069,21070,21071,21072,21073,21074,21075,21076,21077,21078,21079,21080,21081,21082,21083,21084,21085,21086,21087,21088,21089,21090,21091,21092,21093,21094,21095,21096,21097,21098,21099,21100,21101,21102,21103,21104,21105,21106,21107,21108,21109,21110,21111,21112,21113,21114,21115,21116,21117,21118,21119,21120,21121,21122,21123,21124,21125,21126,21127,21128,21129,21130,21131,21132,21133,21134,21135,21136,21137,21138,21139,21140,21141,21142,21143,21144,21145,21146,21147,21148,21149,21150,21151,21152,21153,21154,21155,21156,21157,21158,21159,21160,21161,21162,21163,21164,21165,21166,21167,21168,21169,21170,21171,21172,21173,21174,21175,21176,21177,21178,21179,21180,21181,21182,21183,21184,21185,21186,21187,21188,21189,21190,21191,21192,21193,21194,21195,21196,21197,21198,21199,21200,21201,21202,21203,21204,21205,21206,21207,21208,21209,21210,21211,21212,21213,21214,21215,21216,21217,21218,21219,21220,21221,21222,21223,21224,21225,21226,21227,21228,21229,21230,21231,21232,21233,21234,21235,21236,21237,21238,21239,21240,21241,21242,21243,21244,21245,21246,21247,21248,21249,21250,21251,21252,21253,21254,21255,21256,21257,21258,21259,21260,21261,21262,21263,21264,21265,21266,21267,21268,21269,21270,21271,21272,21273,21274,21275,21276,21277,21278,21279,21280,21281,21282,21283,21284,21285,21286,21287,21288,21289,21290,21291,21292,21293,21294,21295,21296,21297,21298,21299,21300,21301,21302,21303,21304,21305,21306,21307,21308,21309,21310,21311,21312,21313,21314,21315,21316,21317,21318,21319,21320,21321,21322,21323,21324,21325,21326,21327,21328,21329,21330,21331,21332,21333,21334,21335,21336,21337,21338,21339,21340,21341,21342,21343,21344,21345,21346,21347,21348,21349,21350,21351,21352,21353,21354,21355,21356,21357,21358,21359,21360,21361,21362,21363,21364,21365,21366,21367,21368,21369,21370,21371,21372,21373,21374,21375,21376,21377,21378,21379,21380,21381,21382,21383,21384,21385,21386,21387,21388,21389,21390,21391,21392,21393,21394,21395,21396,21397,21398,21399,21400,21401,21402,21403,21404,21405,21406,21407,21408,21409,21410,21411,21412,21413,21414,21415,21416,21417,21418,21419,21420,21421,21422,21423,21424,21425,21426,21427,21428,21429,21430,21431,21432,21433,21434,21435,21436,21437,21438,21439,21440,21441,21442,21443,21444,21445,21446,21447,21448,21449,21450,21451,21452,21453,21454,21455,21456,21457,21458,21459,21460,21461,21462,21463,21464,21465,21466,21467,21468,21469,21470,21471,21472,21473,21474,21475,21476,21477,21478,21479,21480,21481,21482,21483,21484,21485,21486,21487,21488,21489,21490,21491,21492,21493,21494,21495,21496,21497,21498,21499,21500,21501,21502,21503,21504,21505,21506,21507,21508,21509,21510,21511,21512,21513,21514,21515,21516,21517,21518,21519,21520,21521,21522,21523,21524,21525,21526,21527,21528,21529,21530,21531,21532,21533,21534,21535,21536,21537,21538,21539,21540,21541,21542,21543,21544,21545,21546,21547,21548,21549,21550,21551,21552,21553,21554,21555,21556,21557,21558,21559,21560,21561,21562,21563,21564,21565,21566,21567,21568,21569,21570,21571,21572,21573,21574,21575,21576,21577,21578,21579,21580,21581,21582,21583,21584,21585,21586,21587,21588,21589,21590,21591,21592,21593,21594,21595,21596,21597,21598,21599,21600,21601,21602,21603,21604,21605,21606,21607,21608,21609,21610,21611,21612,21613,21614,21615,21616,21617,21618,21619,21620,21621,21622,21623,21624,21625,21626,21627,21628,21629,21630,21631,21632,21633,21634,21635,21636,21637,21638,21639,21640,21641,21642,21643,21644,21645,21646,21647,21648,21649,21650,21651,21652,21653,21654,21655,21656,21657,21658,21659,21660,21661,21662,21663,21664,21665,21666,21667,21668,21669,21670,21671,21672,21673,21674,21675,21676,21677,21678,21679,21680,21681,21682,21683,21684,21685,21686,21687,21688,21689,21690,21691,21692,21693,21694,21695,21696,21697,21698,21699,21700,21701,21702,21703,21704,21705,21706,21707,21708,21709,21710,21711,21712,21713,21714,21715,21716,21717,21718,21719,21720,21721,21722,21723,21724,21725,21726,21727,21728,21729,21730,21731,21732,21733,21734,21735,21736,21737,21738,21739,21740,21741,21742,21743,21744,21745,21746,21747,21748,21749,21750,21751,21752,21753,21754,21755,21756,21757,21758,21759,21760,21761,21762,21763,21764,21765,21766,21767,21768,21769,21770,21771,21772,21773,21774,21775,21776,21777,21778,21779,21780,21781,21782,21783,21784,21785,21786,21787,21788,21789,21790,21791,21792,21793,21794,21795,21796,21797,21798,21799,21800,21801,21802,21803,21804,21805,21806,21807,21808,21809,21810,21811,21812,21813,21814,21815,21816,21817,21818,21819,21820,21821,21822,21823,21824,21825,21826,21827,21828,21829,21830,21831,21832,21833,21834,21835,21836,21837,21838,21839,21840,21841,21842,21843,21844,21845,21846,21847,21848,21849,21850,21851,21852,21853,21854,21855,21856,21857,21858,21859,21860,21861,21862,21863,21864,21865,21866,21867,21868,21869,21870,21871,21872,21873,21874,21875,21876,21877,21878,21879,21880,21881,21882,21883,21884,21885,21886,21887,21888,21889,21890,21891,21892,21893,21894,21895,21896,21897,21898,21899,21900,21901,21902,21903,21904,21905,21906,21907,21908,21909,21910,21911,21912,21913,21914,21915,21916,21917,21918,21919,21920,21921,21922,21923,21924,21925,21926,21927,21928,21929,21930,21931,21932,21933,21934,21935,21936,21937,21938,21939,21940,21941,21942,21943,21944,21945,21946,21947,21948,21949,21950,21951,21952,21953,21954,21955,21956,21957,21958,21959,21960,21961,21962,21963,21964,21965,21966,21967,21968,21969,21970,21971,21972,21973,21974,21975,21976,21977,21978,21979,21980,21981,21982,21983,21984,21985,21986,21987,21988,21989,21990,21991,21992,21993,21994,21995,21996,21997,21998,21999,22000,22001,22002,22003,22004,22005,22006,22007,22008,22009,22010,22011,22012,22013,22014,22015,22016,22017,22018,22019,22020,22021,22022,22023,22024,22025,22026,22027,22028,22029,22030,22031,22032,22033,22034,22035,22036,22037,22038,22039,22040,22041,22042,22043,22044,22045,22046,22047,22048,22049,22050,22051,22052,22053,22054,22055,22056,22057,22058,22059,22060,22061,22062,22063,22064,22065,22066,22067,22068,22069,22070,22071,22072,22073,22074,22075,22076,22077,22078,22079,22080,22081,22082,22083,22084,22085,22086,22087,22088,22089,22090,22091,22092,22093,22094,22095,22096,22097,22098,22099,22100,22101,22102,22103,22104,22105,22106,22107,22108,22109,22110,22111,22112,22113,22114,22115,22116,22117,22118,22119,22120,22121,22122,22123,22124,22125,22126,22127,22128,22129,22130,22131,22132,22133,22134,22135,22136,22137,22138,22139,22140,22141,22142,22143,22144,22145,22146,22147,22148,22149,22150,22151,22152,22153,22154,22155,22156,22157,22158,22159,22160,22161,22162,22163,22164,22165,22166,22167,22168,22169,22170,22171,22172,22173,22174,22175,22176,22177,22178,22179,22180,22181,22182,22183,22184,22185,22186,22187,22188,22189,22190,22191,22192,22193,22194,22195,22196,22197,22198,22199,22200,22201,22202,22203,22204,22205,22206,22207,22208,22209,22210,22211,22212,22213,22214,22215,22216,22217,22218,22219,22220,22221,22222,22223,22224,22225,22226,22227,22228,22229,22230,22231,22232,22233,22234,22235,22236,22237,22238,22239,22240,22241,22242,22243,22244,22245,22246,22247,22248,22249,22250,22251,22252,22253,22254,22255,22256,22257,22258,22259,22260,22261,22262,22263,22264,22265,22266,22267,22268,22269,22270,22271,22272,22273,22274,22275,22276,22277,22278,22279,22280,22281,22282,22283,22284,22285,22286,22287,22288,22289,22290,22291,22292,22293,22294,22295,22296,22297,22298,22299,22300,22301,22302,22303,22304,22305,22306,22307,22308,22309,22310,22311,22312,22313,22314,22315,22316,22317,22318,22319,22320,22321,22322,22323,22324,22325,22326,22327,22328,22329,22330,22331,22332,22333,22334,22335,22336,22337,22338,22339,22340,22341,22342,22343,22344,22345,22346,22347,22348,22349,22350,22351,22352,22353,22354,22355,22356,22357,22358,22359,22360,22361,22362,22363,22364,22365,22366,22367,22368,22369,22370,22371,22372,22373,22374,22375,22376,22377,22378,22379,22380,22381,22382,22383,22384,22385,22386,22387,22388,22389,22390,22391,22392,22393,22394,22395,22396,22397,22398,22399,22400,22401,22402,22403,22404,22405,22406,22407,22408,22409,22410,22411,22412,22413,22414,22415,22416,22417,22418,22419,22420,22421,22422,22423,22424,22425,22426,22427,22428,22429,22430,22431,22432,22433,22434,22435,22436,22437,22438,22439,22440,22441,22442,22443,22444,22445,22446,22447,22448,22449,22450,22451,22452,22453,22454,22455,22456,22457,22458,22459,22460,22461,22462,22463,22464,22465,22466,22467,22468,22469,22470,22471,22472,22473,22474,22475,22476,22477,22478,22479,22480,22481,22482,22483,22484,22485,22486,22487,22488,22489,22490,22491,22492,22493,22494,22495,22496,22497,22498,22499,22500,22501,22502,22503,22504,22505,22506,22507,22508,22509,22510,22511,22512,22513,22514,22515,22516,22517,22518,22519,22520,22521,22522,22523,22524,22525,22526,22527,22528,22529,22530,22531,22532,22533,22534,22535,22536,22537,22538,22539,22540,22541,22542,22543,22544,22545,22546,22547,22548,22549,22550,22551,22552,22553,22554,22555,22556,22557,22558,22559,22560,22561,22562,22563,22564,22565,22566,22567,22568,22569,22570,22571,22572,22573,22574,22575,22576,22577,22578,22579,22580,22581,22582,22583,22584,22585,22586,22587,22588,22589,22590,22591,22592,22593,22594,22595,22596,22597,22598,22599,22600,22601,22602,22603,22604,22605,22606,22607,22608,22609,22610,22611,22612,22613,22614,22615,22616,22617,22618,22619,22620,22621,22622,22623,22624,22625,22626,22627,22628,22629,22630,22631,22632,22633,22634,22635,22636,22637,22638,22639,22640,22641,22642,22643,22644,22645,22646,22647,22648,22649,22650,22651,22652,22653,22654,22655,22656,22657,22658,22659,22660,22661,22662,22663,22664,22665,22666,22667,22668,22669,22670,22671,22672,22673,22674,22675,22676,22677,22678,22679,22680,22681,22682,22683,22684,22685,22686,22687,22688,22689,22690,22691,22692,22693,22694,22695,22696,22697,22698,22699,22700,22701,22702,22703,22704,22705,22706,22707,22708,22709,22710,22711,22712,22713,22714,22715,22716,22717,22718,22719,22720,22721,22722,22723,22724,22725,22726,22727,22728,22729,22730,22731,22732,22733,22734,22735,22736,22737,22738,22739,22740,22741,22742,22743,22744,22745,22746,22747,22748,22749,22750,22751,22752,22753,22754,22755,22756,22757,22758,22759,22760,22761,22762,22763,22764,22765,22766,22767,22768,22769,22770,22771,22772,22773,22774,22775,22776,22777,22778,22779,22780,22781,22782,22783,22784,22785,22786,22787,22788,22789,22790,22791,22792,22793,22794,22795,22796,22797,22798,22799,22800,22801,22802,22803,22804,22805,22806,22807,22808,22809,22810,22811,22812,22813,22814,22815,22816,22817,22818,22819,22820,22821,22822,22823,22824,22825,22826,22827,22828,22829,22830,22831,22832,22833,22834,22835,22836,22837,22838,22839,22840,22841,22842,22843,22844,22845,22846,22847,22848,22849,22850,22851,22852,22853,22854,22855,22856,22857,22858,22859,22860,22861,22862,22863,22864,22865,22866,22867,22868,22869,22870,22871,22872,22873,22874,22875,22876,22877,22878,22879,22880,22881,22882,22883,22884,22885,22886,22887,22888,22889,22890,22891,22892,22893,22894,22895,22896,22897,22898,22899,22900,22901,22902,22903,22904,22905,22906,22907,22908,22909,22910,22911,22912,22913,22914,22915,22916,22917,22918,22919,22920,22921,22922,22923,22924,22925,22926,22927,22928,22929,22930,22931,22932,22933,22934,22935,22936,22937,22938,22939,22940,22941,22942,22943,22944,22945,22946,22947,22948,22949,22950,22951,22952,22953,22954,22955,22956,22957,22958,22959,22960,22961,22962,22963,22964,22965,22966,22967,22968,22969,22970,22971,22972,22973,22974,22975,22976,22977,22978,22979,22980,22981,22982,22983,22984,22985,22986,22987,22988,22989,22990,22991,22992,22993,22994,22995,22996,22997,22998,22999,23000,23001,23002,23003,23004,23005,23006,23007,23008,23009,23010,23011,23012,23013,23014,23015,23016,23017,23018,23019,23020,23021,23022,23023,23024,23025,23026,23027,23028,23029,23030,23031,23032,23033,23034,23035,23036,23037,23038,23039,23040,23041,23042,23043,23044,23045,23046,23047,23048,23049,23050,23051,23052,23053,23054,23055,23056,23057,23058,23059,23060,23061,23062,23063,23064,23065,23066,23067,23068,23069,23070,23071,23072,23073,23074,23075,23076,23077,23078,23079,23080,23081,23082,23083,23084,23085,23086,23087,23088,23089,23090,23091,23092,23093,23094,23095,23096,23097,23098,23099,23100,23101,23102,23103,23104,23105,23106,23107,23108,23109,23110,23111,23112,23113,23114,23115,23116,23117,23118,23119,23120,23121,23122,23123,23124,23125,23126,23127,23128,23129,23130,23131,23132,23133,23134,23135,23136,23137,23138,23139,23140,23141,23142,23143,23144,23145,23146,23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23161,23162,23163,23164,23165,23166,23167,23168,23169,23170,23171,23172,23173,23174,23175,23176,23177,23178,23179,23180,23181,23182,23183,23184,23185,23186,23187,23188,23189,23190,23191,23192,23193,23194,23195,23196,23197,23198,23199,23200,23201,23202,23203,23204,23205,23206,23207,23208,23209,23210,23211,23212,23213,23214,23215,23216,23217,23218,23219,23220,23221,23222,23223,23224,23225,23226,23227,23228,23229,23230,23231,23232,23233,23234,23235,23236,23237,23238,23239,23240,23241,23242,23243,23244,23245,23246,23247,23248,23249,23250,23251,23252,23253,23254,23255,23256,23257,23258,23259,23260,23261,23262,23263,23264,23265,23266,23267,23268,23269,23270,23271,23272,23273,23274,23275,23276,23277,23278,23279,23280,23281,23282,23283,23284,23285,23286,23287,23288,23289,23290,23291,23292,23293,23294,23295,23296,23297,23298,23299,23300,23301,23302,23303,23304,23305,23306,23307,23308,23309,23310,23311,23312,23313,23314,23315,23316,23317,23318,23319,23320,23321,23322,23323,23324,23325,23326,23327,23328,23329,23330,23331,23332,23333,23334,23335,23336,23337,23338,23339,23340,23341,23342,23343,23344,23345,23346,23347,23348,23349,23350,23351,23352,23353,23354,23355,23356,23357,23358,23359,23360,23361,23362,23363,23364,23365,23366,23367,23368,23369,23370,23371,23372,23373,23374,23375,23376,23377,23378,23379,23380,23381,23382,23383,23384,23385,23386,23387,23388,23389,23390,23391,23392,23393,23394,23395,23396,23397,23398,23399,23400,23401,23402,23403,23404,23405,23406,23407,23408,23409,23410,23411,23412,23413,23414,23415,23416,23417,23418,23419,23420,23421,23422,23423,23424,23425,23426,23427,23428,23429,23430,23431,23432,23433,23434,23435,23436,23437,23438,23439,23440,23441,23442,23443,23444,23445,23446,23447,23448,23449,23450,23451,23452,23453,23454,23455,23456,23457,23458,23459,23460,23461,23462,23463,23464,23465,23466,23467,23468,23469,23470,23471,23472,23473,23474,23475,23476,23477,23478,23479,23480,23481,23482,23483,23484,23485,23486,23487,23488,23489,23490,23491,23492,23493,23494,23495,23496,23497,23498,23499,23500,23501,23502,23503,23504,23505,23506,23507,23508,23509,23510,23511,23512,23513,23514,23515,23516,23517,23518,23519,23520,23521,23522,23523,23524,23525,23526,23527,23528,23529,23530,23531,23532,23533,23534,23535,23536,23537,23538,23539,23540,23541,23542,23543,23544,23545,23546,23547,23548,23549,23550,23551,23552,23553,23554,23555,23556,23557,23558,23559,23560,23561,23562,23563,23564,23565,23566,23567,23568,23569,23570,23571,23572,23573,23574,23575,23576,23577,23578,23579,23580,23581,23582,23583,23584,23585,23586,23587,23588,23589,23590,23591,23592,23593,23594,23595,23596,23597,23598,23599,23600,23601,23602,23603,23604,23605,23606,23607,23608,23609,23610,23611,23612,23613,23614,23615,23616,23617,23618,23619,23620,23621,23622,23623,23624,23625,23626,23627,23628,23629,23630,23631,23632,23633,23634,23635,23636,23637,23638,23639,23640,23641,23642,23643,23644,23645,23646,23647,23648,23649,23650,23651,23652,23653,23654,23655,23656,23657,23658,23659,23660,23661,23662,23663,23664,23665,23666,23667,23668,23669,23670,23671,23672,23673,23674,23675,23676,23677,23678,23679,23680,23681,23682,23683,23684,23685,23686,23687,23688,23689,23690,23691,23692,23693,23694,23695,23696,23697,23698,23699,23700,23701,23702,23703,23704,23705,23706,23707,23708,23709,23710,23711,23712,23713,23714,23715,23716,23717,23718,23719,23720,23721,23722,23723,23724,23725,23726,23727,23728,23729,23730,23731,23732,23733,23734,23735,23736,23737,23738,23739,23740,23741,23742,23743,23744,23745,23746,23747,23748,23749,23750,23751,23752,23753,23754,23755,23756,23757,23758,23759,23760,23761,23762,23763,23764,23765,23766,23767,23768,23769,23770,23771,23772,23773,23774,23775,23776,23777,23778,23779,23780,23781,23782,23783,23784,23785,23786,23787,23788,23789,23790,23791,23792,23793,23794,23795,23796,23797,23798,23799,23800,23801,23802,23803,23804,23805,23806,23807,23808,23809,23810,23811,23812,23813,23814,23815,23816,23817,23818,23819,23820,23821,23822,23823,23824,23825,23826,23827,23828,23829,23830,23831,23832,23833,23834,23835,23836,23837,23838,23839,23840,23841,23842,23843,23844,23845,23846,23847,23848,23849,23850,23851,23852,23853,23854,23855,23856,23857,23858,23859,23860,23861,23862,23863,23864,23865,23866,23867,23868,23869,23870,23871,23872,23873,23874,23875,23876,23877,23878,23879,23880,23881,23882,23883,23884,23885,23886,23887,23888,23889,23890,23891,23892,23893,23894,23895,23896,23897,23898,23899,23900,23901,23902,23903,23904,23905,23906,23907,23908,23909,23910,23911,23912,23913,23914,23915,23916,23917,23918,23919,23920,23921,23922,23923,23924,23925,23926,23927,23928,23929,23930,23931,23932,23933,23934,23935,23936,23937,23938,23939,23940,23941,23942,23943,23944,23945,23946,23947,23948,23949,23950,23951,23952,23953,23954,23955,23956,23957,23958,23959,23960,23961,23962,23963,23964,23965,23966,23967,23968,23969,23970,23971,23972,23973,23974,23975,23976,23977,23978,23979,23980,23981,23982,23983,23984,23985,23986,23987,23988,23989,23990,23991,23992,23993,23994,23995,23996,23997,23998,23999,24000,24001,24002,24003,24004,24005,24006,24007,24008,24009,24010,24011,24012,24013,24014,24015,24016,24017,24018,24019,24020,24021,24022,24023,24024,24025,24026,24027,24028,24029,24030,24031,24032,24033,24034,24035,24036,24037,24038,24039,24040,24041,24042,24043,24044,24045,24046,24047,24048,24049,24050,24051,24052,24053,24054,24055,24056,24057,24058,24059,24060,24061,24062,24063,24064,24065,24066,24067,24068,24069,24070,24071,24072,24073,24074,24075,24076,24077,24078,24079,24080,24081,24082,24083,24084,24085,24086,24087,24088,24089,24090,24091,24092,24093,24094,24095,24096,24097,24098,24099,24100,24101,24102,24103,24104,24105,24106,24107,24108,24109,24110,24111,24112,24113,24114,24115,24116,24117,24118,24119,24120,24121,24122,24123,24124,24125,24126,24127,24128,24129,24130,24131,24132,24133,24134,24135,24136,24137,24138,24139,24140,24141,24142,24143,24144,24145,24146,24147,24148,24149,24150,24151,24152,24153,24154,24155,24156,24157,24158,24159,24160,24161,24162,24163,24164,24165,24166,24167,24168,24169,24170,24171,24172,24173,24174,24175,24176,24177,24178,24179,24180,24181,24182,24183,24184,24185,24186,24187,24188,24189,24190,24191,24192,24193,24194,24195,24196,24197,24198,24199,24200,24201,24202,24203,24204,24205,24206,24207,24208,24209,24210,24211,24212,24213,24214,24215,24216,24217,24218,24219,24220,24221,24222,24223,24224,24225,24226,24227,24228,24229,24230,24231,24232,24233,24234,24235,24236,24237,24238,24239,24240,24241,24242,24243,24244,24245,24246,24247,24248,24249,24250,24251,24252,24253,24254,24255,24256,24257,24258,24259,24260,24261,24262,24263,24264,24265,24266,24267,24268,24269,24270,24271,24272,24273,24274,24275,24276,24277,24278,24279,24280,24281,24282,24283,24284,24285,24286,24287,24288,24289,24290,24291,24292,24293,24294,24295,24296,24297,24298,24299,24300,24301,24302,24303,24304,24305,24306,24307,24308,24309,24310,24311,24312,24313,24314,24315,24316,24317,24318,24319,24320,24321,24322,24323,24324,24325,24326,24327,24328,24329,24330,24331,24332,24333,24334,24335,24336,24337,24338,24339,24340,24341,24342,24343,24344,24345,24346,24347,24348,24349,24350,24351,24352,24353,24354,24355,24356,24357,24358,24359,24360,24361,24362,24363,24364,24365,24366,24367,24368,24369,24370,24371,24372,24373,24374,24375,24376,24377,24378,24379,24380,24381,24382,24383,24384,24385,24386,24387,24388,24389,24390,24391,24392,24393,24394,24395,24396,24397,24398,24399,24400,24401,24402,24403,24404,24405,24406,24407,24408,24409,24410,24411,24412,24413,24414,24415,24416,24417,24418,24419,24420,24421,24422,24423,24424,24425,24426,24427,24428,24429,24430,24431,24432,24433,24434,24435,24436,24437,24438,24439,24440,24441,24442,24443,24444,24445,24446,24447,24448,24449,24450,24451,24452,24453,24454,24455,24456,24457,24458,24459,24460,24461,24462,24463,24464,24465,24466,24467,24468,24469,24470,24471,24472,24473,24474,24475,24476,24477,24478,24479,24480,24481,24482,24483,24484,24485,24486,24487,24488,24489,24490,24491,24492,24493,24494,24495,24496,24497,24498,24499,24500,24501,24502,24503,24504,24505,24506,24507,24508,24509,24510,24511,24512,24513,24514,24515,24516,24517,24518,24519,24520,24521,24522,24523,24524,24525,24526,24527,24528,24529,24530,24531,24532,24533,24534,24535,24536,24537,24538,24539,24540,24541,24542,24543,24544,24545,24546,24547,24548,24549,24550,24551,24552,24553,24554,24555,24556,24557,24558,24559,24560,24561,24562,24563,24564,24565,24566,24567,24568,24569,24570,24571,24572,24573,24574,24575,24576,24577,24578,24579,24580,24581,24582,24583,24584,24585,24586,24587,24588,24589,24590,24591,24592,24593,24594,24595,24596,24597,24598,24599,24600,24601,24602,24603,24604,24605,24606,24607,24608,24609,24610,24611,24612,24613,24614,24615,24616,24617,24618,24619,24620,24621,24622,24623,24624,24625,24626,24627,24628,24629,24630,24631,24632,24633,24634,24635,24636,24637,24638,24639,24640,24641,24642,24643,24644,24645,24646,24647,24648,24649,24650,24651,24652,24653,24654,24655,24656,24657,24658,24659,24660,24661,24662,24663,24664,24665,24666,24667,24668,24669,24670,24671,24672,24673,24674,24675,24676,24677,24678,24679,24680,24681,24682,24683,24684,24685,24686,24687,24688,24689,24690,24691,24692,24693,24694,24695,24696,24697,24698,24699,24700,24701,24702,24703,24704,24705,24706,24707,24708,24709,24710,24711,24712,24713,24714,24715,24716,24717,24718,24719,24720,24721,24722,24723,24724,24725,24726,24727,24728,24729,24730,24731,24732,24733,24734,24735,24736,24737,24738,24739,24740,24741,24742,24743,24744,24745,24746,24747,24748,24749,24750,24751,24752,24753,24754,24755,24756,24757,24758,24759,24760,24761,24762,24763,24764,24765,24766,24767,24768,24769,24770,24771,24772,24773,24774,24775,24776,24777,24778,24779,24780,24781,24782,24783,24784,24785,24786,24787,24788,24789,24790,24791,24792,24793,24794,24795,24796,24797,24798,24799,24800,24801,24802,24803,24804,24805,24806,24807,24808,24809,24810,24811,24812,24813,24814,24815,24816,24817,24818,24819,24820,24821,24822,24823,24824,24825,24826,24827,24828,24829,24830,24831,24832,24833,24834,24835,24836,24837,24838,24839,24840,24841,24842,24843,24844,24845,24846,24847,24848,24849,24850,24851,24852,24853,24854,24855,24856,24857,24858,24859,24860,24861,24862,24863,24864,24865,24866,24867,24868,24869,24870,24871,24872,24873,24874,24875,24876,24877,24878,24879,24880,24881,24882,24883,24884,24885,24886,24887,24888,24889,24890,24891,24892,24893,24894,24895,24896,24897,24898,24899,24900,24901,24902,24903,24904,24905,24906,24907,24908,24909,24910,24911,24912,24913,24914,24915,24916,24917,24918,24919,24920,24921,24922,24923,24924,24925,24926,24927,24928,24929,24930,24931,24932,24933,24934,24935,24936,24937,24938,24939,24940,24941,24942,24943,24944,24945,24946,24947,24948,24949,24950,24951,24952,24953,24954,24955,24956,24957,24958,24959,24960,24961,24962,24963,24964,24965,24966,24967,24968,24969,24970,24971,24972,24973,24974,24975,24976,24977,24978,24979,24980,24981,24982,24983,24984,24985,24986,24987,24988,24989,24990,24991,24992,24993,24994,24995,24996,24997,24998,24999,25000,25001,25002,25003,25004,25005,25006,25007,25008,25009,25010,25011,25012,25013,25014,25015,25016,25017,25018,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25029,25030,25031,25032,25033,25034,25035,25036,25037,25038,25039,25040,25041,25042,25043,25044,25045,25046,25047,25048,25049,25050,25051,25052,25053,25054,25055,25056,25057,25058,25059,25060,25061,25062,25063,25064,25065,25066,25067,25068,25069,25070,25071,25072,25073,25074,25075,25076,25077,25078,25079,25080,25081,25082,25083,25084,25085,25086,25087,25088,25089,25090,25091,25092,25093,25094,25095,25096,25097,25098,25099,25100,25101,25102,25103,25104,25105,25106,25107,25108,25109,25110,25111,25112,25113,25114,25115,25116,25117,25118,25119,25120,25121,25122,25123,25124,25125,25126,25127,25128,25129,25130,25131,25132,25133,25134,25135,25136,25137,25138,25139,25140,25141,25142,25143,25144,25145,25146,25147,25148,25149,25150,25151,25152,25153,25154,25155,25156,25157,25158,25159,25160,25161,25162,25163,25164,25165,25166,25167,25168,25169,25170,25171,25172,25173,25174,25175,25176,25177,25178,25179,25180,25181,25182,25183,25184,25185,25186,25187,25188,25189,25190,25191,25192,25193,25194,25195,25196,25197,25198,25199,25200,25201,25202,25203,25204,25205,25206,25207,25208,25209,25210,25211,25212,25213,25214,25215,25216,25217,25218,25219,25220,25221,25222,25223,25224,25225,25226,25227,25228,25229,25230,25231,25232,25233,25234,25235,25236,25237,25238,25239,25240,25241,25242,25243,25244,25245,25246,25247,25248,25249,25250,25251,25252,25253,25254,25255,25256,25257,25258,25259,25260,25261,25262,25263,25264,25265,25266,25267,25268,25269,25270,25271,25272,25273,25274,25275,25276,25277,25278,25279,25280,25281,25282,25283,25284,25285,25286,25287,25288,25289,25290,25291,25292,25293,25294,25295,25296,25297,25298,25299,25300,25301,25302,25303,25304,25305,25306,25307,25308,25309,25310,25311,25312,25313,25314,25315,25316,25317,25318,25319,25320,25321,25322,25323,25324,25325,25326,25327,25328,25329,25330,25331,25332,25333,25334,25335,25336,25337,25338,25339,25340,25341,25342,25343,25344,25345,25346,25347,25348,25349,25350,25351,25352,25353,25354,25355,25356,25357,25358,25359,25360,25361,25362,25363,25364,25365,25366,25367,25368,25369,25370,25371,25372,25373,25374,25375,25376,25377,25378,25379,25380,25381,25382,25383,25384,25385,25386,25387,25388,25389,25390,25391,25392,25393,25394,25395,25396,25397,25398,25399,25400,25401,25402,25403,25404,25405,25406,25407,25408,25409,25410,25411,25412,25413,25414,25415,25416,25417,25418,25419,25420,25421,25422,25423,25424,25425,25426,25427,25428,25429,25430,25431,25432,25433,25434,25435,25436,25437,25438,25439,25440,25441,25442,25443,25444,25445,25446,25447,25448,25449,25450,25451,25452,25453,25454,25455,25456,25457,25458,25459,25460,25461,25462,25463,25464,25465,25466,25467,25468,25469,25470,25471,25472,25473,25474,25475,25476,25477,25478,25479,25480,25481,25482,25483,25484,25485,25486,25487,25488,25489,25490,25491,25492,25493,25494,25495,25496,25497,25498,25499,25500,25501,25502,25503,25504,25505,25506,25507,25508,25509,25510,25511,25512,25513,25514,25515,25516,25517,25518,25519,25520,25521,25522,25523,25524,25525,25526,25527,25528,25529,25530,25531,25532,25533,25534,25535,25536,25537,25538,25539,25540,25541,25542,25543,25544,25545,25546,25547,25548,25549,25550,25551,25552,25553,25554,25555,25556,25557,25558,25559,25560,25561,25562,25563,25564,25565,25566,25567,25568,25569,25570,25571,25572,25573,25574,25575,25576,25577,25578,25579,25580,25581,25582,25583,25584,25585,25586,25587,25588,25589,25590,25591,25592,25593,25594,25595,25596,25597,25598,25599,25600,25601,25602,25603,25604,25605,25606,25607,25608,25609,25610,25611,25612,25613,25614,25615,25616,25617,25618,25619,25620,25621,25622,25623,25624,25625,25626,25627,25628,25629,25630,25631,25632,25633,25634,25635,25636,25637,25638,25639,25640,25641,25642,25643,25644,25645,25646,25647,25648,25649,25650,25651,25652,25653,25654,25655,25656,25657,25658,25659,25660,25661,25662,25663,25664,25665,25666,25667,25668,25669,25670,25671,25672,25673,25674,25675,25676,25677,25678,25679,25680,25681,25682,25683,25684,25685,25686,25687,25688,25689,25690,25691,25692,25693,25694,25695,25696,25697,25698,25699,25700,25701,25702,25703,25704,25705,25706,25707,25708,25709,25710,25711,25712,25713,25714,25715,25716,25717,25718,25719,25720,25721,25722,25723,25724,25725,25726,25727,25728,25729,25730,25731,25732,25733,25734,25735,25736,25737,25738,25739,25740,25741,25742,25743,25744,25745,25746,25747,25748,25749,25750,25751,25752,25753,25754,25755,25756,25757,25758,25759,25760,25761,25762,25763,25764,25765,25766,25767,25768,25769,25770,25771,25772,25773,25774,25775,25776,25777,25778,25779,25780,25781,25782,25783,25784,25785,25786,25787,25788,25789,25790,25791,25792,25793,25794,25795,25796,25797,25798,25799,25800,25801,25802,25803,25804,25805,25806,25807,25808,25809,25810,25811,25812,25813,25814,25815,25816,25817,25818,25819,25820,25821,25822,25823,25824,25825,25826,25827,25828,25829,25830,25831,25832,25833,25834,25835,25836,25837,25838,25839,25840,25841,25842,25843,25844,25845,25846,25847,25848,25849,25850,25851,25852,25853,25854,25855,25856,25857,25858,25859,25860,25861,25862,25863,25864,25865,25866,25867,25868,25869,25870,25871,25872,25873,25874,25875,25876,25877,25878,25879,25880,25881,25882,25883,25884,25885,25886,25887,25888,25889,25890,25891,25892,25893,25894,25895,25896,25897,25898,25899,25900,25901,25902,25903,25904,25905,25906,25907,25908,25909,25910,25911,25912,25913,25914,25915,25916,25917,25918,25919,25920,25921,25922,25923,25924,25925,25926,25927,25928,25929,25930,25931,25932,25933,25934,25935,25936,25937,25938,25939,25940,25941,25942,25943,25944,25945,25946,25947,25948,25949,25950,25951,25952,25953,25954,25955,25956,25957,25958,25959,25960,25961,25962,25963,25964,25965,25966,25967,25968,25969,25970,25971,25972,25973,25974,25975,25976,25977,25978,25979,25980,25981,25982,25983,25984,25985,25986,25987,25988,25989,25990,25991,25992,25993,25994,25995,25996,25997,25998,25999,26000,26001,26002,26003,26004,26005,26006,26007,26008,26009,26010,26011,26012,26013,26014,26015,26016,26017,26018,26019,26020,26021,26022,26023,26024,26025,26026,26027,26028,26029,26030,26031,26032,26033,26034,26035,26036,26037,26038,26039,26040,26041,26042,26043,26044,26045,26046,26047,26048,26049,26050,26051,26052,26053,26054,26055,26056,26057,26058,26059,26060,26061,26062,26063,26064,26065,26066,26067,26068,26069,26070,26071,26072,26073,26074,26075,26076,26077,26078,26079,26080,26081,26082,26083,26084,26085,26086,26087,26088,26089,26090,26091,26092,26093,26094,26095,26096,26097,26098,26099,26100,26101,26102,26103,26104,26105,26106,26107,26108,26109,26110,26111,26112,26113,26114,26115,26116,26117,26118,26119,26120,26121,26122,26123,26124,26125,26126,26127,26128,26129,26130,26131,26132,26133,26134,26135,26136,26137,26138,26139,26140,26141,26142,26143,26144,26145,26146,26147,26148,26149,26150,26151,26152,26153,26154,26155,26156,26157,26158,26159,26160,26161,26162,26163,26164,26165,26166,26167,26168,26169,26170,26171,26172,26173,26174,26175,26176,26177,26178,26179,26180,26181,26182,26183,26184,26185,26186,26187,26188,26189,26190,26191,26192,26193,26194,26195,26196,26197,26198,26199,26200,26201,26202,26203,26204,26205,26206,26207,26208,26209,26210,26211,26212,26213,26214,26215,26216,26217,26218,26219,26220,26221,26222,26223,26224,26225,26226,26227,26228,26229,26230,26231,26232,26233,26234,26235,26236,26237,26238,26239,26240,26241,26242,26243,26244,26245,26246,26247,26248,26249,26250,26251,26252,26253,26254,26255,26256,26257,26258,26259,26260,26261,26262,26263,26264,26265,26266,26267,26268,26269,26270,26271,26272,26273,26274,26275,26276,26277,26278,26279,26280,26281,26282,26283,26284,26285,26286,26287,26288,26289,26290,26291,26292,26293,26294,26295,26296,26297,26298,26299,26300,26301,26302,26303,26304,26305,26306,26307,26308,26309,26310,26311,26312,26313,26314,26315,26316,26317,26318,26319,26320,26321,26322,26323,26324,26325,26326,26327,26328,26329,26330,26331,26332,26333,26334,26335,26336,26337,26338,26339,26340,26341,26342,26343,26344,26345,26346,26347,26348,26349,26350,26351,26352,26353,26354,26355,26356,26357,26358,26359,26360,26361,26362,26363,26364,26365,26366,26367,26368,26369,26370,26371,26372,26373,26374,26375,26376,26377,26378,26379,26380,26381,26382,26383,26384,26385,26386,26387,26388,26389,26390,26391,26392,26393,26394,26395,26396,26397,26398,26399,26400,26401,26402,26403,26404,26405,26406,26407,26408,26409,26410,26411,26412,26413,26414,26415,26416,26417,26418,26419,26420,26421,26422,26423,26424,26425,26426,26427,26428,26429,26430,26431,26432,26433,26434,26435,26436,26437,26438,26439,26440,26441,26442,26443,26444,26445,26446,26447,26448,26449,26450,26451,26452,26453,26454,26455,26456,26457,26458,26459,26460,26461,26462,26463,26464,26465,26466,26467,26468,26469,26470,26471,26472,26473,26474,26475,26476,26477,26478,26479,26480,26481,26482,26483,26484,26485,26486,26487,26488,26489,26490,26491,26492,26493,26494,26495,26496,26497,26498,26499,26500,26501,26502,26503,26504,26505,26506,26507,26508,26509,26510,26511,26512,26513,26514,26515,26516,26517,26518,26519,26520,26521,26522,26523,26524,26525,26526,26527,26528,26529,26530,26531,26532,26533,26534,26535,26536,26537,26538,26539,26540,26541,26542,26543,26544,26545,26546,26547,26548,26549,26550,26551,26552,26553,26554,26555,26556,26557,26558,26559,26560,26561,26562,26563,26564,26565,26566,26567,26568,26569,26570,26571,26572,26573,26574,26575,26576,26577,26578,26579,26580,26581,26582,26583,26584,26585,26586,26587,26588,26589,26590,26591,26592,26593,26594,26595,26596,26597,26598,26599,26600,26601,26602,26603,26604,26605,26606,26607,26608,26609,26610,26611,26612,26613,26614,26615,26616,26617,26618,26619,26620,26621,26622,26623,26624,26625,26626,26627,26628,26629,26630,26631,26632,26633,26634,26635,26636,26637,26638,26639,26640,26641,26642,26643,26644,26645,26646,26647,26648,26649,26650,26651,26652,26653,26654,26655,26656,26657,26658,26659,26660,26661,26662,26663,26664,26665,26666,26667,26668,26669,26670,26671,26672,26673,26674,26675,26676,26677,26678,26679,26680,26681,26682,26683,26684,26685,26686,26687,26688,26689,26690,26691,26692,26693,26694,26695,26696,26697,26698,26699,26700,26701,26702,26703,26704,26705,26706,26707,26708,26709,26710,26711,26712,26713,26714,26715,26716,26717,26718,26719,26720,26721,26722,26723,26724,26725,26726,26727,26728,26729,26730,26731,26732,26733,26734,26735,26736,26737,26738,26739,26740,26741,26742,26743,26744,26745,26746,26747,26748,26749,26750,26751,26752,26753,26754,26755,26756,26757,26758,26759,26760,26761,26762,26763,26764,26765,26766,26767,26768,26769,26770,26771,26772,26773,26774,26775,26776,26777,26778,26779,26780,26781,26782,26783,26784,26785,26786,26787,26788,26789,26790,26791,26792,26793,26794,26795,26796,26797,26798,26799,26800,26801,26802,26803,26804,26805,26806,26807,26808,26809,26810,26811,26812,26813,26814,26815,26816,26817,26818,26819,26820,26821,26822,26823,26824,26825,26826,26827,26828,26829,26830,26831,26832,26833,26834,26835,26836,26837,26838,26839,26840,26841,26842,26843,26844,26845,26846,26847,26848,26849,26850,26851,26852,26853,26854,26855,26856,26857,26858,26859,26860,26861,26862,26863,26864,26865,26866,26867,26868,26869,26870,26871,26872,26873,26874,26875,26876,26877,26878,26879,26880,26881,26882,26883,26884,26885,26886,26887,26888,26889,26890,26891,26892,26893,26894,26895,26896,26897,26898,26899,26900,26901,26902,26903,26904,26905,26906,26907,26908,26909,26910,26911,26912,26913,26914,26915,26916,26917,26918,26919,26920,26921,26922,26923,26924,26925,26926,26927,26928,26929,26930,26931,26932,26933,26934,26935,26936,26937,26938,26939,26940,26941,26942,26943,26944,26945,26946,26947,26948,26949,26950,26951,26952,26953,26954,26955,26956,26957,26958,26959,26960,26961,26962,26963,26964,26965,26966,26967,26968,26969,26970,26971,26972,26973,26974,26975,26976,26977,26978,26979,26980,26981,26982,26983,26984,26985,26986,26987,26988,26989,26990,26991,26992,26993,26994,26995,26996,26997,26998,26999,27000,27001,27002,27003,27004,27005,27006,27007,27008,27009,27010,27011,27012,27013,27014,27015,27016,27017,27018,27019,27020,27021,27022,27023,27024,27025,27026,27027,27028,27029,27030,27031,27032,27033,27034,27035,27036,27037,27038,27039,27040,27041,27042,27043,27044,27045,27046,27047,27048,27049,27050,27051,27052,27053,27054,27055,27056,27057,27058,27059,27060,27061,27062,27063,27064,27065,27066,27067,27068,27069,27070,27071,27072,27073,27074,27075,27076,27077,27078,27079,27080,27081,27082,27083,27084,27085,27086,27087,27088,27089,27090,27091,27092,27093,27094,27095,27096,27097,27098,27099,27100,27101,27102,27103,27104,27105,27106,27107,27108,27109,27110,27111,27112,27113,27114,27115,27116,27117,27118,27119,27120,27121,27122,27123,27124,27125,27126,27127,27128,27129,27130,27131,27132,27133,27134,27135,27136,27137,27138,27139,27140,27141,27142,27143,27144,27145,27146,27147,27148,27149,27150,27151,27152,27153,27154,27155,27156,27157,27158,27159,27160,27161,27162,27163,27164,27165,27166,27167,27168,27169,27170,27171,27172,27173,27174,27175,27176,27177,27178,27179,27180,27181,27182,27183,27184,27185,27186,27187,27188,27189,27190,27191,27192,27193,27194,27195,27196,27197,27198,27199,27200,27201,27202,27203,27204,27205,27206,27207,27208,27209,27210,27211,27212,27213,27214,27215,27216,27217,27218,27219,27220,27221,27222,27223,27224,27225,27226,27227,27228,27229,27230,27231,27232,27233,27234,27235,27236,27237,27238,27239,27240,27241,27242,27243,27244,27245,27246,27247,27248,27249,27250,27251,27252,27253,27254,27255,27256,27257,27258,27259,27260,27261,27262,27263,27264,27265,27266,27267,27268,27269,27270,27271,27272,27273,27274,27275,27276,27277,27278,27279,27280,27281,27282,27283,27284,27285,27286,27287,27288,27289,27290,27291,27292,27293,27294,27295,27296,27297,27298,27299,27300,27301,27302,27303,27304,27305,27306,27307,27308,27309,27310,27311,27312,27313,27314,27315,27316,27317,27318,27319,27320,27321,27322,27323,27324,27325,27326,27327,27328,27329,27330,27331,27332,27333,27334,27335,27336,27337,27338,27339,27340,27341,27342,27343,27344,27345,27346,27347,27348,27349,27350,27351,27352,27353,27354,27355,27356,27357,27358,27359,27360,27361,27362,27363,27364,27365,27366,27367,27368,27369,27370,27371,27372,27373,27374,27375,27376,27377,27378,27379,27380,27381,27382,27383,27384,27385,27386,27387,27388,27389,27390,27391,27392,27393,27394,27395,27396,27397,27398,27399,27400,27401,27402,27403,27404,27405,27406,27407,27408,27409,27410,27411,27412,27413,27414,27415,27416,27417,27418,27419,27420,27421,27422,27423,27424,27425,27426,27427,27428,27429,27430,27431,27432,27433,27434,27435,27436,27437,27438,27439,27440,27441,27442,27443,27444,27445,27446,27447,27448,27449,27450,27451,27452,27453,27454,27455,27456,27457,27458,27459,27460,27461,27462,27463,27464,27465,27466,27467,27468,27469,27470,27471,27472,27473,27474,27475,27476,27477,27478,27479,27480,27481,27482,27483,27484,27485,27486,27487,27488,27489,27490,27491,27492,27493,27494,27495,27496,27497,27498,27499,27500,27501,27502,27503,27504,27505,27506,27507,27508,27509,27510,27511,27512,27513,27514,27515,27516,27517,27518,27519,27520,27521,27522,27523,27524,27525,27526,27527,27528,27529,27530,27531,27532,27533,27534,27535,27536,27537,27538,27539,27540,27541,27542,27543,27544,27545,27546,27547,27548,27549,27550,27551,27552,27553,27554,27555,27556,27557,27558,27559,27560,27561,27562,27563,27564,27565,27566,27567,27568,27569,27570,27571,27572,27573,27574,27575,27576,27577,27578,27579,27580,27581,27582,27583,27584,27585,27586,27587,27588,27589,27590,27591,27592,27593,27594,27595,27596,27597,27598,27599,27600,27601,27602,27603,27604,27605,27606,27607,27608,27609,27610,27611,27612,27613,27614,27615,27616,27617,27618,27619,27620,27621,27622,27623,27624,27625,27626,27627,27628,27629,27630,27631,27632,27633,27634,27635,27636,27637,27638,27639,27640,27641,27642,27643,27644,27645,27646,27647,27648,27649,27650,27651,27652,27653,27654,27655,27656,27657,27658,27659,27660,27661,27662,27663,27664,27665,27666,27667,27668,27669,27670,27671,27672,27673,27674,27675,27676,27677,27678,27679,27680,27681,27682,27683,27684,27685,27686,27687,27688,27689,27690,27691,27692,27693,27694,27695,27696,27697,27698,27699,27700,27701,27702,27703,27704,27705,27706,27707,27708,27709,27710,27711,27712,27713,27714,27715,27716,27717,27718,27719,27720,27721,27722,27723,27724,27725,27726,27727,27728,27729,27730,27731,27732,27733,27734,27735,27736,27737,27738,27739,27740,27741,27742,27743,27744,27745,27746,27747,27748,27749,27750,27751,27752,27753,27754,27755,27756,27757,27758,27759,27760,27761,27762,27763,27764,27765,27766,27767,27768,27769,27770,27771,27772,27773,27774,27775,27776,27777,27778,27779,27780,27781,27782,27783,27784,27785,27786,27787,27788,27789,27790,27791,27792,27793,27794,27795,27796,27797,27798,27799,27800,27801,27802,27803,27804,27805,27806,27807,27808,27809,27810,27811,27812,27813,27814,27815,27816,27817,27818,27819,27820,27821,27822,27823,27824,27825,27826,27827,27828,27829,27830,27831,27832,27833,27834,27835,27836,27837,27838,27839,27840,27841,27842,27843,27844,27845,27846,27847,27848,27849,27850,27851,27852,27853,27854,27855,27856,27857,27858,27859,27860,27861,27862,27863,27864,27865,27866,27867,27868,27869,27870,27871,27872,27873,27874,27875,27876,27877,27878,27879,27880,27881,27882,27883,27884,27885,27886,27887,27888,27889,27890,27891,27892,27893,27894,27895,27896,27897,27898,27899,27900,27901,27902,27903,27904,27905,27906,27907,27908,27909,27910,27911,27912,27913,27914,27915,27916,27917,27918,27919,27920,27921,27922,27923,27924,27925,27926,27927,27928,27929,27930,27931,27932,27933,27934,27935,27936,27937,27938,27939,27940,27941,27942,27943,27944,27945,27946,27947,27948,27949,27950,27951,27952,27953,27954,27955,27956,27957,27958,27959,27960,27961,27962,27963,27964,27965,27966,27967,27968,27969,27970,27971,27972,27973,27974,27975,27976,27977,27978,27979,27980,27981,27982,27983,27984,27985,27986,27987,27988,27989,27990,27991,27992,27993,27994,27995,27996,27997,27998,27999,28000,28001,28002,28003,28004,28005,28006,28007,28008,28009,28010,28011,28012,28013,28014,28015,28016,28017,28018,28019,28020,28021,28022,28023,28024,28025,28026,28027,28028,28029,28030,28031,28032,28033,28034,28035,28036,28037,28038,28039,28040,28041,28042,28043,28044,28045,28046,28047,28048,28049,28050,28051,28052,28053,28054,28055,28056,28057,28058,28059,28060,28061,28062,28063,28064,28065,28066,28067,28068,28069,28070,28071,28072,28073,28074,28075,28076,28077,28078,28079,28080,28081,28082,28083,28084,28085,28086,28087,28088,28089,28090,28091,28092,28093,28094,28095,28096,28097,28098,28099,28100,28101,28102,28103,28104,28105,28106,28107,28108,28109,28110,28111,28112,28113,28114,28115,28116,28117,28118,28119,28120,28121,28122,28123,28124,28125,28126,28127,28128,28129,28130,28131,28132,28133,28134,28135,28136,28137,28138,28139,28140,28141,28142,28143,28144,28145,28146,28147,28148,28149,28150,28151,28152,28153,28154,28155,28156,28157,28158,28159,28160,28161,28162,28163,28164,28165,28166,28167,28168,28169,28170,28171,28172,28173,28174,28175,28176,28177,28178,28179,28180,28181,28182,28183,28184,28185,28186,28187,28188,28189,28190,28191,28192,28193,28194,28195,28196,28197,28198,28199,28200,28201,28202,28203,28204,28205,28206,28207,28208,28209,28210,28211,28212,28213,28214,28215,28216,28217,28218,28219,28220,28221,28222,28223,28224,28225,28226,28227,28228,28229,28230,28231,28232,28233,28234,28235,28236,28237,28238,28239,28240,28241,28242,28243,28244,28245,28246,28247,28248,28249,28250,28251,28252,28253,28254,28255,28256,28257,28258,28259,28260,28261,28262,28263,28264,28265,28266,28267,28268,28269,28270,28271,28272,28273,28274,28275,28276,28277,28278,28279,28280,28281,28282,28283,28284,28285,28286,28287,28288,28289,28290,28291,28292,28293,28294,28295,28296,28297,28298,28299,28300,28301,28302,28303,28304,28305,28306,28307,28308,28309,28310,28311,28312,28313,28314,28315,28316,28317,28318,28319,28320,28321,28322,28323,28324,28325,28326,28327,28328,28329,28330,28331,28332,28333,28334,28335,28336,28337,28338,28339,28340,28341,28342,28343,28344,28345,28346,28347,28348,28349,28350,28351,28352,28353,28354,28355,28356,28357,28358,28359,28360,28361,28362,28363,28364,28365,28366,28367,28368,28369,28370,28371,28372,28373,28374,28375,28376,28377,28378,28379,28380,28381,28382,28383,28384,28385,28386,28387,28388,28389,28390,28391,28392,28393,28394,28395,28396,28397,28398,28399,28400,28401,28402,28403,28404,28405,28406,28407,28408,28409,28410,28411,28412,28413,28414,28415,28416,28417,28418,28419,28420,28421,28422,28423,28424,28425,28426,28427,28428,28429,28430,28431,28432,28433,28434,28435,28436,28437,28438,28439,28440,28441,28442,28443,28444,28445,28446,28447,28448,28449,28450,28451,28452,28453,28454,28455,28456,28457,28458,28459,28460,28461,28462,28463,28464,28465,28466,28467,28468,28469,28470,28471,28472,28473,28474,28475,28476,28477,28478,28479,28480,28481,28482,28483,28484,28485,28486,28487,28488,28489,28490,28491,28492,28493,28494,28495,28496,28497,28498,28499,28500,28501,28502,28503,28504,28505,28506,28507,28508,28509,28510,28511,28512,28513,28514,28515,28516,28517,28518,28519,28520,28521,28522,28523,28524,28525,28526,28527,28528,28529,28530,28531,28532,28533,28534,28535,28536,28537,28538,28539,28540,28541,28542,28543,28544,28545,28546,28547,28548,28549,28550,28551,28552,28553,28554,28555,28556,28557,28558,28559,28560,28561,28562,28563,28564,28565,28566,28567,28568,28569,28570,28571,28572,28573,28574,28575,28576,28577,28578,28579,28580,28581,28582,28583,28584,28585,28586,28587,28588,28589,28590,28591,28592,28593,28594,28595,28596,28597,28598,28599,28600,28601,28602,28603,28604,28605,28606,28607,28608,28609,28610,28611,28612,28613,28614,28615,28616,28617,28618,28619,28620,28621,28622,28623,28624,28625,28626,28627,28628,28629,28630,28631,28632,28633,28634,28635,28636,28637,28638,28639,28640,28641,28642,28643,28644,28645,28646,28647,28648,28649,28650,28651,28652,28653,28654,28655,28656,28657,28658,28659,28660,28661,28662,28663,28664,28665,28666,28667,28668,28669,28670,28671,28672,28673,28674,28675,28676,28677,28678,28679,28680,28681,28682,28683,28684,28685,28686,28687,28688,28689,28690,28691,28692,28693,28694,28695,28696,28697,28698,28699,28700,28701,28702,28703,28704,28705,28706,28707,28708,28709,28710,28711,28712,28713,28714,28715,28716,28717,28718,28719,28720,28721,28722,28723,28724,28725,28726,28727,28728,28729,28730,28731,28732,28733,28734,28735,28736,28737,28738,28739,28740,28741,28742,28743,28744,28745,28746,28747,28748,28749,28750,28751,28752,28753,28754,28755,28756,28757,28758,28759,28760,28761,28762,28763,28764,28765,28766,28767,28768,28769,28770,28771,28772,28773,28774,28775,28776,28777,28778,28779,28780,28781,28782,28783,28784,28785,28786,28787,28788,28789,28790,28791,28792,28793,28794,28795,28796,28797,28798,28799,28800,28801,28802,28803,28804,28805,28806,28807,28808,28809,28810,28811,28812,28813,28814,28815,28816,28817,28818,28819,28820,28821,28822,28823,28824,28825,28826,28827,28828,28829,28830,28831,28832,28833,28834,28835,28836,28837,28838,28839,28840,28841,28842,28843,28844,28845,28846,28847,28848,28849,28850,28851,28852,28853,28854,28855,28856,28857,28858,28859,28860,28861,28862,28863,28864,28865,28866,28867,28868,28869,28870,28871,28872,28873,28874,28875,28876,28877,28878,28879,28880,28881,28882,28883,28884,28885,28886,28887,28888,28889,28890,28891,28892,28893,28894,28895,28896,28897,28898,28899,28900,28901,28902,28903,28904,28905,28906,28907,28908,28909,28910,28911,28912,28913,28914,28915,28916,28917,28918,28919,28920,28921,28922,28923,28924,28925,28926,28927,28928,28929,28930,28931,28932,28933,28934,28935,28936,28937,28938,28939,28940,28941,28942,28943,28944,28945,28946,28947,28948,28949,28950,28951,28952,28953,28954,28955,28956,28957,28958,28959,28960,28961,28962,28963,28964,28965,28966,28967,28968,28969,28970,28971,28972,28973,28974,28975,28976,28977,28978,28979,28980,28981,28982,28983,28984,28985,28986,28987,28988,28989,28990,28991,28992,28993,28994,28995,28996,28997,28998,28999,29000,29001,29002,29003,29004,29005,29006,29007,29008,29009,29010,29011,29012,29013,29014,29015,29016,29017,29018,29019,29020,29021,29022,29023,29024,29025,29026,29027,29028,29029,29030,29031,29032,29033,29034,29035,29036,29037,29038,29039,29040,29041,29042,29043,29044,29045,29046,29047,29048,29049,29050,29051,29052,29053,29054,29055,29056,29057,29058,29059,29060,29061,29062,29063,29064,29065,29066,29067,29068,29069,29070,29071,29072,29073,29074,29075,29076,29077,29078,29079,29080,29081,29082,29083,29084,29085,29086,29087,29088,29089,29090,29091,29092,29093,29094,29095,29096,29097,29098,29099,29100,29101,29102,29103,29104,29105,29106,29107,29108,29109,29110,29111,29112,29113,29114,29115,29116,29117,29118,29119,29120,29121,29122,29123,29124,29125,29126,29127,29128,29129,29130,29131,29132,29133,29134,29135,29136,29137,29138,29139,29140,29141,29142,29143,29144,29145,29146,29147,29148,29149,29150,29151,29152,29153,29154,29155,29156,29157,29158,29159,29160,29161,29162,29163,29164,29165,29166,29167,29168,29169,29170,29171,29172,29173,29174,29175,29176,29177,29178,29179,29180,29181,29182,29183,29184,29185,29186,29187,29188,29189,29190,29191,29192,29193,29194,29195,29196,29197,29198,29199,29200,29201,29202,29203,29204,29205,29206,29207,29208,29209,29210,29211,29212,29213,29214,29215,29216,29217,29218,29219,29220,29221,29222,29223,29224,29225,29226,29227,29228,29229,29230,29231,29232,29233,29234,29235,29236,29237,29238,29239,29240,29241,29242,29243,29244,29245,29246,29247,29248,29249,29250,29251,29252,29253,29254,29255,29256,29257,29258,29259,29260,29261,29262,29263,29264,29265,29266,29267,29268,29269,29270,29271,29272,29273,29274,29275,29276,29277,29278,29279,29280,29281,29282,29283,29284,29285,29286,29287,29288,29289,29290,29291,29292,29293,29294,29295,29296,29297,29298,29299,29300,29301,29302,29303,29304,29305,29306,29307,29308,29309,29310,29311,29312,29313,29314,29315,29316,29317,29318,29319,29320,29321,29322,29323,29324,29325,29326,29327,29328,29329,29330,29331,29332,29333,29334,29335,29336,29337,29338,29339,29340,29341,29342,29343,29344,29345,29346,29347,29348,29349,29350,29351,29352,29353,29354,29355,29356,29357,29358,29359,29360,29361,29362,29363,29364,29365,29366,29367,29368,29369,29370,29371,29372,29373,29374,29375,29376,29377,29378,29379,29380,29381,29382,29383,29384,29385,29386,29387,29388,29389,29390,29391,29392,29393,29394,29395,29396,29397,29398,29399,29400,29401,29402,29403,29404,29405,29406,29407,29408,29409,29410,29411,29412,29413,29414,29415,29416,29417,29418,29419,29420,29421,29422,29423,29424,29425,29426,29427,29428,29429,29430,29431,29432,29433,29434,29435,29436,29437,29438,29439,29440,29441,29442,29443,29444,29445,29446,29447,29448,29449,29450,29451,29452,29453,29454,29455,29456,29457,29458,29459,29460,29461,29462,29463,29464,29465,29466,29467,29468,29469,29470,29471,29472,29473,29474,29475,29476,29477,29478,29479,29480,29481,29482,29483,29484,29485,29486,29487,29488,29489,29490,29491,29492,29493,29494,29495,29496,29497,29498,29499,29500,29501,29502,29503,29504,29505,29506,29507,29508,29509,29510,29511,29512,29513,29514,29515,29516,29517,29518,29519,29520,29521,29522,29523,29524,29525,29526,29527,29528,29529,29530,29531,29532,29533,29534,29535,29536,29537,29538,29539,29540,29541,29542,29543,29544,29545,29546,29547,29548,29549,29550,29551,29552,29553,29554,29555,29556,29557,29558,29559,29560,29561,29562,29563,29564,29565,29566,29567,29568,29569,29570,29571,29572,29573,29574,29575,29576,29577,29578,29579,29580,29581,29582,29583,29584,29585,29586,29587,29588,29589,29590,29591,29592,29593,29594,29595,29596,29597,29598,29599,29600,29601,29602,29603,29604,29605,29606,29607,29608,29609,29610,29611,29612,29613,29614,29615,29616,29617,29618,29619,29620,29621,29622,29623,29624,29625,29626,29627,29628,29629,29630,29631,29632,29633,29634,29635,29636,29637,29638,29639,29640,29641,29642,29643,29644,29645,29646,29647,29648,29649,29650,29651,29652,29653,29654,29655,29656,29657,29658,29659,29660,29661,29662,29663,29664,29665,29666,29667,29668,29669,29670,29671,29672,29673,29674,29675,29676,29677,29678,29679,29680,29681,29682,29683,29684,29685,29686,29687,29688,29689,29690,29691,29692,29693,29694,29695,29696,29697,29698,29699,29700,29701,29702,29703,29704,29705,29706,29707,29708,29709,29710,29711,29712,29713,29714,29715,29716,29717,29718,29719,29720,29721,29722,29723,29724,29725,29726,29727,29728,29729,29730,29731,29732,29733,29734,29735,29736,29737,29738,29739,29740,29741,29742,29743,29744,29745,29746,29747,29748,29749,29750,29751,29752,29753,29754,29755,29756,29757,29758,29759,29760,29761,29762,29763,29764,29765,29766,29767,29768,29769,29770,29771,29772,29773,29774,29775,29776,29777,29778,29779,29780,29781,29782,29783,29784,29785,29786,29787,29788,29789,29790,29791,29792,29793,29794,29795,29796,29797,29798,29799,29800,29801,29802,29803,29804,29805,29806,29807,29808,29809,29810,29811,29812,29813,29814,29815,29816,29817,29818,29819,29820,29821,29822,29823,29824,29825,29826,29827,29828,29829,29830,29831,29832,29833,29834,29835,29836,29837,29838,29839,29840,29841,29842,29843,29844,29845,29846,29847,29848,29849,29850,29851,29852,29853,29854,29855,29856,29857,29858,29859,29860,29861,29862,29863,29864,29865,29866,29867,29868,29869,29870,29871,29872,29873,29874,29875,29876,29877,29878,29879,29880,29881,29882,29883,29884,29885,29886,29887,29888,29889,29890,29891,29892,29893,29894,29895,29896,29897,29898,29899,29900,29901,29902,29903,29904,29905,29906,29907,29908,29909,29910,29911,29912,29913,29914,29915,29916,29917,29918,29919,29920,29921,29922,29923,29924,29925,29926,29927,29928,29929,29930,29931,29932,29933,29934,29935,29936,29937,29938,29939,29940,29941,29942,29943,29944,29945,29946,29947,29948,29949,29950,29951,29952,29953,29954,29955,29956,29957,29958,29959,29960,29961,29962,29963,29964,29965,29966,29967,29968,29969,29970,29971,29972,29973,29974,29975,29976,29977,29978,29979,29980,29981,29982,29983,29984,29985,29986,29987,29988,29989,29990,29991,29992,29993,29994,29995,29996,29997,29998,29999,30000,30001,30002,30003,30004,30005,30006,30007,30008,30009,30010,30011,30012,30013,30014,30015,30016,30017,30018,30019,30020,30021,30022,30023,30024,30025,30026,30027,30028,30029,30030,30031,30032,30033,30034,30035,30036,30037,30038,30039,30040,30041,30042,30043,30044,30045,30046,30047,30048,30049,30050,30051,30052,30053,30054,30055,30056,30057,30058,30059,30060,30061,30062,30063,30064,30065,30066,30067,30068,30069,30070,30071,30072,30073,30074,30075,30076,30077,30078,30079,30080,30081,30082,30083,30084,30085,30086,30087,30088,30089,30090,30091,30092,30093,30094,30095,30096,30097,30098,30099,30100,30101,30102,30103,30104,30105,30106,30107,30108,30109,30110,30111,30112,30113,30114,30115,30116,30117,30118,30119,30120,30121,30122,30123,30124,30125,30126,30127,30128,30129,30130,30131,30132,30133,30134,30135,30136,30137,30138,30139,30140,30141,30142,30143,30144,30145,30146,30147,30148,30149,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30168,30169,30170,30171,30172,30173,30174,30175,30176,30177,30178,30179,30180,30181,30182,30183,30184,30185,30186,30187,30188,30189,30190,30191,30192,30193,30194,30195,30196,30197,30198,30199,30200,30201,30202,30203,30204,30205,30206,30207,30208,30209,30210,30211,30212,30213,30214,30215,30216,30217,30218,30219,30220,30221,30222,30223,30224,30225,30226,30227,30228,30229,30230,30231,30232,30233,30234,30235,30236,30237,30238,30239,30240,30241,30242,30243,30244,30245,30246,30247,30248,30249,30250,30251,30252,30253,30254,30255,30256,30257,30258,30259,30260,30261,30262,30263,30264,30265,30266,30267,30268,30269,30270,30271,30272,30273,30274,30275,30276,30277,30278,30279,30280,30281,30282,30283,30284,30285,30286,30287,30288,30289,30290,30291,30292,30293,30294,30295,30296,30297,30298,30299,30300,30301,30302,30303,30304,30305,30306,30307,30308,30309,30310,30311,30312,30313,30314,30315,30316,30317,30318,30319,30320,30321,30322,30323,30324,30325,30326,30327,30328,30329,30330,30331,30332,30333,30334,30335,30336,30337,30338,30339,30340,30341,30342,30343,30344,30345,30346,30347,30348,30349,30350,30351,30352,30353,30354,30355,30356,30357,30358,30359,30360,30361,30362,30363,30364,30365,30366,30367,30368,30369,30370,30371,30372,30373,30374,30375,30376,30377,30378,30379,30380,30381,30382,30383,30384,30385,30386,30387,30388,30389,30390,30391,30392,30393,30394,30395,30396,30397,30398,30399,30400,30401,30402,30403,30404,30405,30406,30407,30408,30409,30410,30411,30412,30413,30414,30415,30416,30417,30418,30419,30420,30421,30422,30423,30424,30425,30426,30427,30428,30429,30430,30431,30432,30433,30434,30435,30436,30437,30438,30439,30440,30441,30442,30443,30444,30445,30446,30447,30448,30449,30450,30451,30452,30453,30454,30455,30456,30457,30458,30459,30460,30461,30462,30463,30464,30465,30466,30467,30468,30469,30470,30471,30472,30473,30474,30475,30476,30477,30478,30479,30480,30481,30482,30483,30484,30485,30486,30487,30488,30489,30490,30491,30492,30493,30494,30495,30496,30497,30498,30499,30500,30501,30502,30503,30504,30505,30506,30507,30508,30509,30510,30511,30512,30513,30514,30515,30516,30517,30518,30519,30520,30521,30522,30523,30524,30525,30526,30527,30528,30529,30530,30531,30532,30533,30534,30535,30536,30537,30538,30539,30540,30541,30542,30543,30544,30545,30546,30547,30548,30549,30550,30551,30552,30553,30554,30555,30556,30557,30558,30559,30560,30561,30562,30563,30564,30565,30566,30567,30568,30569,30570,30571,30572,30573,30574,30575,30576,30577,30578,30579,30580,30581,30582,30583,30584,30585,30586,30587,30588,30589,30590,30591,30592,30593,30594,30595,30596,30597,30598,30599,30600,30601,30602,30603,30604,30605,30606,30607,30608,30609,30610,30611,30612,30613,30614,30615,30616,30617,30618,30619,30620,30621,30622,30623,30624,30625,30626,30627,30628,30629,30630,30631,30632,30633,30634,30635,30636,30637,30638,30639,30640,30641,30642,30643,30644,30645,30646,30647,30648,30649,30650,30651,30652,30653,30654,30655,30656,30657,30658,30659,30660,30661,30662,30663,30664,30665,30666,30667,30668,30669,30670,30671,30672,30673,30674,30675,30676,30677,30678,30679,30680,30681,30682,30683,30684,30685,30686,30687,30688,30689,30690,30691,30692,30693,30694,30695,30696,30697,30698,30699,30700,30701,30702,30703,30704,30705,30706,30707,30708,30709,30710,30711,30712,30713,30714,30715,30716,30717,30718,30719,30720,30721,30722,30723,30724,30725,30726,30727,30728,30729,30730,30731,30732,30733,30734,30735,30736,30737,30738,30739,30740,30741,30742,30743,30744,30745,30746,30747,30748,30749,30750,30751,30752,30753,30754,30755,30756,30757,30758,30759,30760,30761,30762,30763,30764,30765,30766,30767,30768,30769,30770,30771,30772,30773,30774,30775,30776,30777,30778,30779,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30795,30796,30797,30798,30799,30800,30801,30802,30803,30804,30805,30806,30807,30808,30809,30810,30811,30812,30813,30814,30815,30816,30817,30818,30819,30820,30821,30822,30823,30824,30825,30826,30827,30828,30829,30830,30831,30832,30833,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30845,30846,30847,30848,30849,30850,30851,30852,30853,30854,30855,30856,30857,30858,30859,30860,30861,30862,30863,30864,30865,30866,30867,30868,30869,30870,30871,30872,30873,30874,30875,30876,30877,30878,30879,30880,30881,30882,30883,30884,30885,30886,30887,30888,30889,30890,30891,30892,30893,30894,30895,30896,30897,30898,30899,30900,30901,30902,30903,30904,30905,30906,30907,30908,30909,30910,30911,30912,30913,30914,30915,30916,30917,30918,30919,30920,30921,30922,30923,30924,30925,30926,30927,30928,30929,30930,30931,30932,30933,30934,30935,30936,30937,30938,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30950,30951,30952,30953,30954,30955,30956,30957,30958,30959,30960,30961,30962,30963,30964,30965,30966,30967,30968,30969,30970,30971,30972,30973,30974,30975,30976,30977,30978,30979,30980,30981,30982,30983,30984,30985,30986,30987,30988,30989,30990,30991,30992,30993,30994,30995,30996,30997,30998,30999,31000,31001,31002,31003,31004,31005,31006,31007,31008,31009,31010,31011,31012,31013,31014,31015,31016,31017,31018,31019,31020,31021,31022,31023,31024,31025,31026,31027,31028,31029,31030,31031,31032,31033,31034,31035,31036,31037,31038,31039,31040,31041,31042,31043,31044,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31060,31061,31062,31063,31064,31065,31066,31067,31068,31069,31070,31071,31072,31073,31074,31075,31076,31077,31078,31079,31080,31081,31082,31083,31084,31085,31086,31087,31088,31089,31090,31091,31092,31093,31094,31095,31096,31097,31098,31099,31100,31101,31102,31103,31104,31105,31106,31107,31108,31109,31110,31111,31112,31113,31114,31115,31116,31117,31118,31119,31120,31121,31122,31123,31124,31125,31126,31127,31128,31129,31130,31131,31132,31133,31134,31135,31136,31137,31138,31139,31140,31141,31142,31143,31144,31145,31146,31147,31148,31149,31150,31151,31152,31153,31154,31155,31156,31157,31158,31159,31160,31161,31162,31163,31164,31165,31166,31167,31168,31169,31170,31171,31172,31173,31174,31175,31176,31177,31178,31179,31180,31181,31182,31183,31184,31185,31186,31187,31188,31189,31190,31191,31192,31193,31194,31195,31196,31197,31198,31199,31200,31201,31202,31203,31204,31205,31206,31207,31208,31209,31210,31211,31212,31213,31214,31215,31216,31217,31218,31219,31220,31221,31222,31223,31224,31225,31226,31227,31228,31229,31230,31231,31232,31233,31234,31235,31236,31237,31238,31239,31240,31241,31242,31243,31244,31245,31246,31247,31248,31249,31250,31251,31252,31253,31254,31255,31256,31257,31258,31259,31260,31261,31262,31263,31264,31265,31266,31267,31268,31269,31270,31271,31272,31273,31274,31275,31276,31277,31278,31279,31280,31281,31282,31283,31284,31285,31286,31287,31288,31289,31290,31291,31292,31293,31294,31295,31296,31297,31298,31299,31300,31301,31302,31303,31304,31305,31306,31307,31308,31309,31310,31311,31312,31313,31314,31315,31316,31317,31318,31319,31320,31321,31322,31323,31324,31325,31326,31327,31328,31329,31330,31331,31332,31333,31334,31335,31336,31337,31338,31339,31340,31341,31342,31343,31344,31345,31346,31347,31348,31349,31350,31351,31352,31353,31354,31355,31356,31357,31358,31359,31360,31361,31362,31363,31364,31365,31366,31367,31368,31369,31370,31371,31372,31373,31374,31375,31376,31377,31378,31379,31380,31381,31382,31383,31384,31385,31386,31387,31388,31389,31390,31391,31392,31393,31394,31395,31396,31397,31398,31399,31400,31401,31402,31403,31404,31405,31406,31407,31408,31409,31410,31411,31412,31413,31414,31415,31416,31417,31418,31419,31420,31421,31422,31423,31424,31425,31426,31427,31428,31429,31430,31431,31432,31433,31434,31435,31436,31437,31438,31439,31440,31441,31442,31443,31444,31445,31446,31447,31448,31449,31450,31451,31452,31453,31454,31455,31456,31457,31458,31459,31460,31461,31462,31463,31464,31465,31466,31467,31468,31469,31470,31471,31472,31473,31474,31475,31476,31477,31478,31479,31480,31481,31482,31483,31484,31485,31486,31487,31488,31489,31490,31491,31492,31493,31494,31495,31496,31497,31498,31499,31500,31501,31502,31503,31504,31505,31506,31507,31508,31509,31510,31511,31512,31513,31514,31515,31516,31517,31518,31519,31520,31521,31522,31523,31524,31525,31526,31527,31528,31529,31530,31531,31532,31533,31534,31535,31536,31537,31538,31539,31540,31541,31542,31543,31544,31545,31546,31547,31548,31549,31550,31551,31552,31553,31554,31555,31556,31557,31558,31559,31560,31561,31562,31563,31564,31565,31566,31567,31568,31569,31570,31571,31572,31573,31574,31575,31576,31577,31578,31579,31580,31581,31582,31583,31584,31585,31586,31587,31588,31589,31590,31591,31592,31593,31594,31595,31596,31597,31598,31599,31600,31601,31602,31603,31604,31605,31606,31607,31608,31609,31610,31611,31612,31613,31614,31615,31616,31617,31618,31619,31620,31621,31622,31623,31624,31625,31626,31627,31628,31629,31630,31631,31632,31633,31634,31635,31636,31637,31638,31639,31640,31641,31642,31643,31644,31645,31646,31647,31648,31649,31650,31651,31652,31653,31654,31655,31656,31657,31658,31659,31660,31661,31662,31663,31664,31665,31666,31667,31668,31669,31670,31671,31672,31673,31674,31675,31676,31677,31678,31679,31680,31681,31682,31683,31684,31685,31686,31687,31688,31689,31690,31691,31692,31693,31694,31695,31696,31697,31698,31699,31700,31701,31702,31703,31704,31705,31706,31707,31708,31709,31710,31711,31712,31713,31714,31715,31716,31717,31718,31719,31720,31721,31722,31723,31724,31725,31726,31727,31728,31729,31730,31731,31732,31733,31734,31735,31736,31737,31738,31739,31740,31741,31742,31743,31744,31745,31746,31747,31748,31749,31750,31751,31752,31753,31754,31755,31756,31757,31758,31759,31760,31761,31762,31763,31764,31765,31766,31767,31768,31769,31770,31771,31772,31773,31774,31775,31776,31777,31778,31779,31780,31781,31782,31783,31784,31785,31786,31787,31788,31789,31790,31791,31792,31793,31794,31795,31796,31797,31798,31799,31800,31801,31802,31803,31804,31805,31806,31807,31808,31809,31810,31811,31812,31813,31814,31815,31816,31817,31818,31819,31820,31821,31822,31823,31824,31825,31826,31827,31828,31829,31830,31831,31832,31833,31834,31835,31836,31837,31838,31839,31840,31841,31842,31843,31844,31845,31846,31847,31848,31849,31850,31851,31852,31853,31854,31855,31856,31857,31858,31859,31860,31861,31862,31863,31864,31865,31866,31867,31868,31869,31870,31871,31872,31873,31874,31875,31876,31877,31878,31879,31880,31881,31882,31883,31884,31885,31886,31887,31888,31889,31890,31891,31892,31893,31894,31895,31896,31897,31898,31899,31900,31901,31902,31903,31904,31905,31906,31907,31908,31909,31910,31911,31912,31913,31914,31915,31916,31917,31918,31919,31920,31921,31922,31923,31924,31925,31926,31927,31928,31929,31930,31931,31932,31933,31934,31935,31936,31937,31938,31939,31940,31941,31942,31943,31944,31945,31946,31947,31948,31949,31950,31951,31952,31953,31954,31955,31956,31957,31958,31959,31960,31961,31962,31963,31964,31965,31966,31967,31968,31969,31970,31971,31972,31973,31974,31975,31976,31977,31978,31979,31980,31981,31982,31983,31984,31985,31986,31987,31988,31989,31990,31991,31992,31993,31994,31995,31996,31997,31998,31999,32000,32001,32002,32003,32004,32005,32006,32007,32008,32009,32010,32011,32012,32013,32014,32015,32016,32017,32018,32019,32020,32021,32022,32023,32024,32025,32026,32027,32028,32029,32030,32031,32032,32033,32034,32035,32036,32037,32038,32039,32040,32041,32042,32043,32044,32045,32046,32047,32048,32049,32050,32051,32052,32053,32054,32055,32056,32057,32058,32059,32060,32061,32062,32063,32064,32065,32066,32067,32068,32069,32070,32071,32072,32073,32074,32075,32076,32077,32078,32079,32080,32081,32082,32083,32084,32085,32086,32087,32088,32089,32090,32091,32092,32093,32094,32095,32096,32097,32098,32099,32100,32101,32102,32103,32104,32105,32106,32107,32108,32109,32110,32111,32112,32113,32114,32115,32116,32117,32118,32119,32120,32121,32122,32123,32124,32125,32126,32127,32128,32129,32130,32131,32132,32133,32134,32135,32136,32137,32138,32139,32140,32141,32142,32143,32144,32145,32146,32147,32148,32149,32150,32151,32152,32153,32154,32155,32156,32157,32158,32159,32160,32161,32162,32163,32164,32165,32166,32167,32168,32169,32170,32171,32172,32173,32174,32175,32176,32177,32178,32179,32180,32181,32182,32183,32184,32185,32186,32187,32188,32189,32190,32191,32192,32193,32194,32195,32196,32197,32198,32199,32200,32201,32202,32203,32204,32205,32206,32207,32208,32209,32210,32211,32212,32213,32214,32215,32216,32217,32218,32219,32220,32221,32222,32223,32224,32225,32226,32227,32228,32229,32230,32231,32232,32233,32234,32235,32236,32237,32238,32239,32240,32241,32242,32243,32244,32245,32246,32247,32248,32249,32250,32251,32252,32253,32254,32255,32256,32257,32258,32259,32260,32261,32262,32263,32264,32265,32266,32267,32268,32269,32270,32271,32272,32273,32274,32275,32276,32277,32278,32279,32280,32281,32282,32283,32284,32285,32286,32287,32288,32289,32290,32291,32292,32293,32294,32295,32296,32297,32298,32299,32300,32301,32302,32303,32304,32305,32306,32307,32308,32309,32310,32311,32312,32313,32314,32315,32316,32317,32318,32319,32320,32321,32322,32323,32324,32325,32326,32327,32328,32329,32330,32331,32332,32333,32334,32335,32336,32337,32338,32339,32340,32341,32342,32343,32344,32345,32346,32347,32348,32349,32350,32351,32352,32353,32354,32355,32356,32357,32358,32359,32360,32361,32362,32363,32364,32365,32366,32367,32368,32369,32370,32371,32372,32373,32374,32375,32376,32377,32378,32379,32380,32381,32382,32383,32384,32385,32386,32387,32388,32389,32390,32391,32392,32393,32394,32395,32396,32397,32398,32399,32400,32401,32402,32403,32404,32405,32406,32407,32408,32409,32410,32411,32412,32413,32414,32415,32416,32417,32418,32419,32420,32421,32422,32423,32424,32425,32426,32427,32428,32429,32430,32431,32432,32433,32434,32435,32436,32437,32438,32439,32440,32441,32442,32443,32444,32445,32446,32447,32448,32449,32450,32451,32452,32453,32454,32455,32456,32457,32458,32459,32460,32461,32462,32463,32464,32465,32466,32467,32468,32469,32470,32471,32472,32473,32474,32475,32476,32477,32478,32479,32480,32481,32482,32483,32484,32485,32486,32487,32488,32489,32490,32491,32492,32493,32494,32495,32496,32497,32498,32499,32500,32501,32502,32503,32504,32505,32506,32507,32508,32509,32510,32511,32512,32513,32514,32515,32516,32517,32518,32519,32520,32521,32522,32523,32524,32525,32526,32527,32528,32529,32530,32531,32532,32533,32534,32535,32536,32537,32538,32539,32540,32541,32542,32543,32544,32545,32546,32547,32548,32549,32550,32551,32552,32553,32554,32555,32556,32557,32558,32559,32560,32561,32562,32563,32564,32565,32566,32567,32568,32569,32570,32571,32572,32573,32574,32575,32576,32577,32578,32579,32580,32581,32582,32583,32584,32585,32586,32587,32588,32589,32590,32591,32592,32593,32594,32595,32596,32597,32598,32599,32600,32601,32602,32603,32604,32605,32606,32607,32608,32609,32610,32611,32612,32613,32614,32615,32616,32617,32618,32619,32620,32621,32622,32623,32624,32625,32626,32627,32628,32629,32630,32631,32632,32633,32634,32635,32636,32637,32638,32639,32640,32641,32642,32643,32644,32645,32646,32647,32648,32649,32650,32651,32652,32653,32654,32655,32656,32657,32658,32659,32660,32661,32662,32663,32664,32665,32666,32667,32668,32669,32670,32671,32672,32673,32674,32675,32676,32677,32678,32679,32680,32681,32682,32683,32684,32685,32686,32687,32688,32689,32690,32691,32692,32693,32694,32695,32696,32697,32698,32699,32700,32701,32702,32703,32704,32705,32706,32707,32708,32709,32710,32711,32712,32713,32714,32715,32716,32717,32718,32719,32720,32721,32722,32723,32724,32725,32726,32727,32728,32729,32730,32731,32732,32733,32734,32735,32736,32737,32738,32739,32740,32741,32742,32743,32744,32745,32746,32747,32748,32749,32750,32751,32752,32753,32754,32755,32756,32757,32758,32759,32760,32761,32762,32763,32764,32765,32766,32767,32768,32769,32770,32771,32772,32773,32774,32775,32776,32777,32778,32779,32780,32781,32782,32783,32784,32785,32786,32787,32788,32789,32790,32791,32792,32793,32794,32795,32796,32797,32798,32799,32800,32801,32802,32803,32804,32805,32806,32807,32808,32809,32810,32811,32812,32813,32814,32815,32816,32817,32818,32819,32820,32821,32822,32823,32824,32825,32826,32827,32828,32829,32830,32831,32832,32833,32834,32835,32836,32837,32838,32839,32840,32841,32842,32843,32844,32845,32846,32847,32848,32849,32850,32851,32852,32853,32854,32855,32856,32857,32858,32859,32860,32861,32862,32863,32864,32865,32866,32867,32868,32869,32870,32871,32872,32873,32874,32875,32876,32877,32878,32879,32880,32881,32882,32883,32884,32885,32886,32887,32888,32889,32890,32891,32892,32893,32894,32895,32896,32897,32898,32899,32900,32901,32902,32903,32904,32905,32906,32907,32908,32909,32910,32911,32912,32913,32914,32915,32916,32917,32918,32919,32920,32921,32922,32923,32924,32925,32926,32927,32928,32929,32930,32931,32932,32933,32934,32935,32936,32937,32938,32939,32940,32941,32942,32943,32944,32945,32946,32947,32948,32949,32950,32951,32952,32953,32954,32955,32956,32957,32958,32959,32960,32961,32962,32963,32964,32965,32966,32967,32968,32969,32970,32971,32972,32973,32974,32975,32976,32977,32978,32979,32980,32981,32982,32983,32984,32985,32986,32987,32988,32989,32990,32991,32992,32993,32994,32995,32996,32997,32998,32999,33000,33001,33002,33003,33004,33005,33006,33007,33008,33009,33010,33011,33012,33013,33014,33015,33016,33017,33018,33019,33020,33021,33022,33023,33024,33025,33026,33027,33028,33029,33030,33031,33032,33033,33034,33035,33036,33037,33038,33039,33040,33041,33042,33043,33044,33045,33046,33047,33048,33049,33050,33051,33052,33053,33054,33055,33056,33057,33058,33059,33060,33061,33062,33063,33064,33065,33066,33067,33068,33069,33070,33071,33072,33073,33074,33075,33076,33077,33078,33079,33080,33081,33082,33083,33084,33085,33086,33087,33088,33089,33090,33091,33092,33093,33094,33095,33096,33097,33098,33099,33100,33101,33102,33103,33104,33105,33106,33107,33108,33109,33110,33111,33112,33113,33114,33115,33116,33117,33118,33119,33120,33121,33122,33123,33124,33125,33126,33127,33128,33129,33130,33131,33132,33133,33134,33135,33136,33137,33138,33139,33140,33141,33142,33143,33144,33145,33146,33147,33148,33149,33150,33151,33152,33153,33154,33155,33156,33157,33158,33159,33160,33161,33162,33163,33164,33165,33166,33167,33168,33169,33170,33171,33172,33173,33174,33175,33176,33177,33178,33179,33180,33181,33182,33183,33184,33185,33186,33187,33188,33189,33190,33191,33192,33193,33194,33195,33196,33197,33198,33199,33200,33201,33202,33203,33204,33205,33206,33207,33208,33209,33210,33211,33212,33213,33214,33215,33216,33217,33218,33219,33220,33221,33222,33223,33224,33225,33226,33227,33228,33229,33230,33231,33232,33233,33234,33235,33236,33237,33238,33239,33240,33241,33242,33243,33244,33245,33246,33247,33248,33249,33250,33251,33252,33253,33254,33255,33256,33257,33258,33259,33260,33261,33262,33263,33264,33265,33266,33267,33268,33269,33270,33271,33272,33273,33274,33275,33276,33277,33278,33279,33280,33281,33282,33283,33284,33285,33286,33287,33288,33289,33290,33291,33292,33293,33294,33295,33296,33297,33298,33299,33300,33301,33302,33303,33304,33305,33306,33307,33308,33309,33310,33311,33312,33313,33314,33315,33316,33317,33318,33319,33320,33321,33322,33323,33324,33325,33326,33327,33328,33329,33330,33331,33332,33333,33334,33335,33336,33337,33338,33339,33340,33341,33342,33343,33344,33345,33346,33347,33348,33349,33350,33351,33352,33353,33354,33355,33356,33357,33358,33359,33360,33361,33362,33363,33364,33365,33366,33367,33368,33369,33370,33371,33372,33373,33374,33375,33376,33377,33378,33379,33380,33381,33382,33383,33384,33385,33386,33387,33388,33389,33390,33391,33392,33393,33394,33395,33396,33397,33398,33399,33400,33401,33402,33403,33404,33405,33406,33407,33408,33409,33410,33411,33412,33413,33414,33415,33416,33417,33418,33419,33420,33421,33422,33423,33424,33425,33426,33427,33428,33429,33430,33431,33432,33433,33434,33435,33436,33437,33438,33439,33440,33441,33442,33443,33444,33445,33446,33447,33448,33449,33450,33451,33452,33453,33454,33455,33456,33457,33458,33459,33460,33461,33462,33463,33464,33465,33466,33467,33468,33469,33470,33471,33472,33473,33474,33475,33476,33477,33478,33479,33480,33481,33482,33483,33484,33485,33486,33487,33488,33489,33490,33491,33492,33493,33494,33495,33496,33497,33498,33499,33500,33501,33502,33503,33504,33505,33506,33507,33508,33509,33510,33511,33512,33513,33514,33515,33516,33517,33518,33519,33520,33521,33522,33523,33524,33525,33526,33527,33528,33529,33530,33531,33532,33533,33534,33535,33536,33537,33538,33539,33540,33541,33542,33543,33544,33545,33546,33547,33548,33549,33550,33551,33552,33553,33554,33555,33556,33557,33558,33559,33560,33561,33562,33563,33564,33565,33566,33567,33568,33569,33570,33571,33572,33573,33574,33575,33576,33577,33578,33579,33580,33581,33582,33583,33584,33585,33586,33587,33588,33589,33590,33591,33592,33593,33594,33595,33596,33597,33598,33599,33600,33601,33602,33603,33604,33605,33606,33607,33608,33609,33610,33611,33612,33613,33614,33615,33616,33617,33618,33619,33620,33621,33622,33623,33624,33625,33626,33627,33628,33629,33630,33631,33632,33633,33634,33635,33636,33637,33638,33639,33640,33641,33642,33643,33644,33645,33646,33647,33648,33649,33650,33651,33652,33653,33654,33655,33656,33657,33658,33659,33660,33661,33662,33663,33664,33665,33666,33667,33668,33669,33670,33671,33672,33673,33674,33675,33676,33677,33678,33679,33680,33681,33682,33683,33684,33685,33686,33687,33688,33689,33690,33691,33692,33693,33694,33695,33696,33697,33698,33699,33700,33701,33702,33703,33704,33705,33706,33707,33708,33709,33710,33711,33712,33713,33714,33715,33716,33717,33718,33719,33720,33721,33722,33723,33724,33725,33726,33727,33728,33729,33730,33731,33732,33733,33734,33735,33736,33737,33738,33739,33740,33741,33742,33743,33744,33745,33746,33747,33748,33749,33750,33751,33752,33753,33754,33755,33756,33757,33758,33759,33760,33761,33762,33763,33764,33765,33766,33767,33768,33769,33770,33771,33772,33773,33774,33775,33776,33777,33778,33779,33780,33781,33782,33783,33784,33785,33786,33787,33788,33789,33790,33791,33792,33793,33794,33795,33796,33797,33798,33799,33800,33801,33802,33803,33804,33805,33806,33807,33808,33809,33810,33811,33812,33813,33814,33815,33816,33817,33818,33819,33820,33821,33822,33823,33824,33825,33826,33827,33828,33829,33830,33831,33832,33833,33834,33835,33836,33837,33838,33839,33840,33841,33842,33843,33844,33845,33846,33847,33848,33849,33850,33851,33852,33853,33854,33855,33856,33857,33858,33859,33860,33861,33862,33863,33864,33865,33866,33867,33868,33869,33870,33871,33872,33873,33874,33875,33876,33877,33878,33879,33880,33881,33882,33883,33884,33885,33886,33887,33888,33889,33890,33891,33892,33893,33894,33895,33896,33897,33898,33899,33900,33901,33902,33903,33904,33905,33906,33907,33908,33909,33910,33911,33912,33913,33914,33915,33916,33917,33918,33919,33920,33921,33922,33923,33924,33925,33926,33927,33928,33929,33930,33931,33932,33933,33934,33935,33936,33937,33938,33939,33940,33941,33942,33943,33944,33945,33946,33947,33948,33949,33950,33951,33952,33953,33954,33955,33956,33957,33958,33959,33960,33961,33962,33963,33964,33965,33966,33967,33968,33969,33970,33971,33972,33973,33974,33975,33976,33977,33978,33979,33980,33981,33982,33983,33984,33985,33986,33987,33988,33989,33990,33991,33992,33993,33994,33995,33996,33997,33998,33999,34000,34001,34002,34003,34004,34005,34006,34007,34008,34009,34010,34011,34012,34013,34014,34015,34016,34017,34018,34019,34020,34021,34022,34023,34024,34025,34026,34027,34028,34029,34030,34031,34032,34033,34034,34035,34036,34037,34038,34039,34040,34041,34042,34043,34044,34045,34046,34047,34048,34049,34050,34051,34052,34053,34054,34055,34056,34057,34058,34059,34060,34061,34062,34063,34064,34065,34066,34067,34068,34069,34070,34071,34072,34073,34074,34075,34076,34077,34078,34079,34080,34081,34082,34083,34084,34085,34086,34087,34088,34089,34090,34091,34092,34093,34094,34095,34096,34097,34098,34099,34100,34101,34102,34103,34104,34105,34106,34107,34108,34109,34110,34111,34112,34113,34114,34115,34116,34117,34118,34119,34120,34121,34122,34123,34124,34125,34126,34127,34128,34129,34130,34131,34132,34133,34134,34135,34136,34137,34138,34139,34140,34141,34142,34143,34144,34145,34146,34147,34148,34149,34150,34151,34152,34153,34154,34155,34156,34157,34158,34159,34160,34161,34162,34163,34164,34165,34166,34167,34168,34169,34170,34171,34172,34173,34174,34175,34176,34177,34178,34179,34180,34181,34182,34183,34184,34185,34186,34187,34188,34189,34190,34191,34192,34193,34194,34195,34196,34197,34198,34199,34200,34201,34202,34203,34204,34205,34206,34207,34208,34209,34210,34211,34212,34213,34214,34215,34216,34217,34218,34219,34220,34221,34222,34223,34224,34225,34226,34227,34228,34229,34230,34231,34232,34233,34234,34235,34236,34237,34238,34239,34240,34241,34242,34243,34244,34245,34246,34247,34248,34249,34250,34251,34252,34253,34254,34255,34256,34257,34258,34259,34260,34261,34262,34263,34264,34265,34266,34267,34268,34269,34270,34271,34272,34273,34274,34275,34276,34277,34278,34279,34280,34281,34282,34283,34284,34285,34286,34287,34288,34289,34290,34291,34292,34293,34294,34295,34296,34297,34298,34299,34300,34301,34302,34303,34304,34305,34306,34307,34308,34309,34310,34311,34312,34313,34314,34315,34316,34317,34318,34319,34320,34321,34322,34323,34324,34325,34326,34327,34328,34329,34330,34331,34332,34333,34334,34335,34336,34337,34338,34339,34340,34341,34342,34343,34344,34345,34346,34347,34348,34349,34350,34351,34352,34353,34354,34355,34356,34357,34358,34359,34360,34361,34362,34363,34364,34365,34366,34367,34368,34369,34370,34371,34372,34373,34374,34375,34376,34377,34378,34379,34380,34381,34382,34383,34384,34385,34386,34387,34388,34389,34390,34391,34392,34393,34394,34395,34396,34397,34398,34399,34400,34401,34402,34403,34404,34405,34406,34407,34408,34409,34410,34411,34412,34413,34414,34415,34416,34417,34418,34419,34420,34421,34422,34423,34424,34425,34426,34427,34428,34429,34430,34431,34432,34433,34434,34435,34436,34437,34438,34439,34440,34441,34442,34443,34444,34445,34446,34447,34448,34449,34450,34451,34452,34453,34454,34455,34456,34457,34458,34459,34460,34461,34462,34463,34464,34465,34466,34467,34468,34469,34470,34471,34472,34473,34474,34475,34476,34477,34478,34479,34480,34481,34482,34483,34484,34485,34486,34487,34488,34489,34490,34491,34492,34493,34494,34495,34496,34497,34498,34499,34500,34501,34502,34503,34504,34505,34506,34507,34508,34509,34510,34511,34512,34513,34514,34515,34516,34517,34518,34519,34520,34521,34522,34523,34524,34525,34526,34527,34528,34529,34530,34531,34532,34533,34534,34535,34536,34537,34538,34539,34540,34541,34542,34543,34544,34545,34546,34547,34548,34549,34550,34551,34552,34553,34554,34555,34556,34557,34558,34559,34560,34561,34562,34563,34564,34565,34566,34567,34568,34569,34570,34571,34572,34573,34574,34575,34576,34577,34578,34579,34580,34581,34582,34583,34584,34585,34586,34587,34588,34589,34590,34591,34592,34593,34594,34595,34596,34597,34598,34599,34600,34601,34602,34603,34604,34605,34606,34607,34608,34609,34610,34611,34612,34613,34614,34615,34616,34617,34618,34619,34620,34621,34622,34623,34624,34625,34626,34627,34628,34629,34630,34631,34632,34633,34634,34635,34636,34637,34638,34639,34640,34641,34642,34643,34644,34645,34646,34647,34648,34649,34650,34651,34652,34653,34654,34655,34656,34657,34658,34659,34660,34661,34662,34663,34664,34665,34666,34667,34668,34669,34670,34671,34672,34673,34674,34675,34676,34677,34678,34679,34680,34681,34682,34683,34684,34685,34686,34687,34688,34689,34690,34691,34692,34693,34694,34695,34696,34697,34698,34699,34700,34701,34702,34703,34704,34705,34706,34707,34708,34709,34710,34711,34712,34713,34714,34715,34716,34717,34718,34719,34720,34721,34722,34723,34724,34725,34726,34727,34728,34729,34730,34731,34732,34733,34734,34735,34736,34737,34738,34739,34740,34741,34742,34743,34744,34745,34746,34747,34748,34749,34750,34751,34752,34753,34754,34755,34756,34757,34758,34759,34760,34761,34762,34763,34764,34765,34766,34767,34768,34769,34770,34771,34772,34773,34774,34775,34776,34777,34778,34779,34780,34781,34782,34783,34784,34785,34786,34787,34788,34789,34790,34791,34792,34793,34794,34795,34796,34797,34798,34799,34800,34801,34802,34803,34804,34805,34806,34807,34808,34809,34810,34811,34812,34813,34814,34815,34816,34817,34818,34819,34820,34821,34822,34823,34824,34825,34826,34827,34828,34829,34830,34831,34832,34833,34834,34835,34836,34837,34838,34839,34840,34841,34842,34843,34844,34845,34846,34847,34848,34849,34850,34851,34852,34853,34854,34855,34856,34857,34858,34859,34860,34861,34862,34863,34864,34865,34866,34867,34868,34869,34870,34871,34872,34873,34874,34875,34876,34877,34878,34879,34880,34881,34882,34883,34884,34885,34886,34887,34888,34889,34890,34891,34892,34893,34894,34895,34896,34897,34898,34899,34900,34901,34902,34903,34904,34905,34906,34907,34908,34909,34910,34911,34912,34913,34914,34915,34916,34917,34918,34919,34920,34921,34922,34923,34924,34925,34926,34927,34928,34929,34930,34931,34932,34933,34934,34935,34936,34937,34938,34939,34940,34941,34942,34943,34944,34945,34946,34947,34948,34949,34950,34951,34952,34953,34954,34955,34956,34957,34958,34959,34960,34961,34962,34963,34964,34965,34966,34967,34968,34969,34970,34971,34972,34973,34974,34975,34976,34977,34978,34979,34980,34981,34982,34983,34984,34985,34986,34987,34988,34989,34990,34991,34992,34993,34994,34995,34996,34997,34998,34999,35000,35001,35002,35003,35004,35005,35006,35007,35008,35009,35010,35011,35012,35013,35014,35015,35016,35017,35018,35019,35020,35021,35022,35023,35024,35025,35026,35027,35028,35029,35030,35031,35032,35033,35034,35035,35036,35037,35038,35039,35040,35041,35042,35043,35044,35045,35046,35047,35048,35049,35050,35051,35052,35053,35054,35055,35056,35057,35058,35059,35060,35061,35062,35063,35064,35065,35066,35067,35068,35069,35070,35071,35072,35073,35074,35075,35076,35077,35078,35079,35080,35081,35082,35083,35084,35085,35086,35087,35088,35089,35090,35091,35092,35093,35094,35095,35096,35097,35098,35099,35100,35101,35102,35103,35104,35105,35106,35107,35108,35109,35110,35111,35112,35113,35114,35115,35116,35117,35118,35119,35120,35121,35122,35123,35124,35125,35126,35127,35128,35129,35130,35131,35132,35133,35134,35135,35136,35137,35138,35139,35140,35141,35142,35143,35144,35145,35146,35147,35148,35149,35150,35151,35152,35153,35154,35155,35156,35157,35158,35159,35160,35161,35162,35163,35164,35165,35166,35167,35168,35169,35170,35171,35172,35173,35174,35175,35176,35177,35178,35179,35180,35181,35182,35183,35184,35185,35186,35187,35188,35189,35190,35191,35192,35193,35194,35195,35196,35197,35198,35199,35200,35201,35202,35203,35204,35205,35206,35207,35208,35209,35210,35211,35212,35213,35214,35215,35216,35217,35218,35219,35220,35221,35222,35223,35224,35225,35226,35227,35228,35229,35230,35231,35232,35233,35234,35235,35236,35237,35238,35239,35240,35241,35242,35243,35244,35245,35246,35247,35248,35249,35250,35251,35252,35253,35254,35255,35256,35257,35258,35259,35260,35261,35262,35263,35264,35265,35266,35267,35268,35269,35270,35271,35272,35273,35274,35275,35276,35277,35278,35279,35280,35281,35282,35283,35284,35285,35286,35287,35288,35289,35290,35291,35292,35293,35294,35295,35296,35297,35298,35299,35300,35301,35302,35303,35304,35305,35306,35307,35308,35309,35310,35311,35312,35313,35314,35315,35316,35317,35318,35319,35320,35321,35322,35323,35324,35325,35326,35327,35328,35329,35330,35331,35332,35333,35334,35335,35336,35337,35338,35339,35340,35341,35342,35343,35344,35345,35346,35347,35348,35349,35350,35351,35352,35353,35354,35355,35356,35357,35358,35359,35360,35361,35362,35363,35364,35365,35366,35367,35368,35369,35370,35371,35372,35373,35374,35375,35376,35377,35378,35379,35380,35381,35382,35383,35384,35385,35386,35387,35388,35389,35390,35391,35392,35393,35394,35395,35396,35397,35398,35399,35400,35401,35402,35403,35404,35405,35406,35407,35408,35409,35410,35411,35412,35413,35414,35415,35416,35417,35418,35419,35420,35421,35422,35423,35424,35425,35426,35427,35428,35429,35430,35431,35432,35433,35434,35435,35436,35437,35438,35439,35440,35441,35442,35443,35444,35445,35446,35447,35448,35449,35450,35451,35452,35453,35454,35455,35456,35457,35458,35459,35460,35461,35462,35463,35464,35465,35466,35467,35468,35469,35470,35471,35472,35473,35474,35475,35476,35477,35478,35479,35480,35481,35482,35483,35484,35485,35486,35487,35488,35489,35490,35491,35492,35493,35494,35495,35496,35497,35498,35499,35500,35501,35502,35503,35504,35505,35506,35507,35508,35509,35510,35511,35512,35513,35514,35515,35516,35517,35518,35519,35520,35521,35522,35523,35524,35525,35526,35527,35528,35529,35530,35531,35532,35533,35534,35535,35536,35537,35538,35539,35540,35541,35542,35543,35544,35545,35546,35547,35548,35549,35550,35551,35552,35553,35554,35555,35556,35557,35558,35559,35560,35561,35562,35563,35564,35565,35566,35567,35568,35569,35570,35571,35572,35573,35574,35575,35576,35577,35578,35579,35580,35581,35582,35583,35584,35585,35586,35587,35588,35589,35590,35591,35592,35593,35594,35595,35596,35597,35598,35599,35600,35601,35602,35603,35604,35605,35606,35607,35608,35609,35610,35611,35612,35613,35614,35615,35616,35617,35618,35619,35620,35621,35622,35623,35624,35625,35626,35627,35628,35629,35630,35631,35632,35633,35634,35635,35636,35637,35638,35639,35640,35641,35642,35643,35644,35645,35646,35647,35648,35649,35650,35651,35652,35653,35654,35655,35656,35657,35658,35659,35660,35661,35662,35663,35664,35665,35666,35667,35668,35669,35670,35671,35672,35673,35674,35675,35676,35677,35678,35679,35680,35681,35682,35683,35684,35685,35686,35687,35688,35689,35690,35691,35692,35693,35694,35695,35696,35697,35698,35699,35700,35701,35702,35703,35704,35705,35706,35707,35708,35709,35710,35711,35712,35713,35714,35715,35716,35717,35718,35719,35720,35721,35722,35723,35724,35725,35726,35727,35728,35729,35730,35731,35732,35733,35734,35735,35736,35737,35738,35739,35740,35741,35742,35743,35744,35745,35746,35747,35748,35749,35750,35751,35752,35753,35754,35755,35756,35757,35758,35759,35760,35761,35762,35763,35764,35765,35766,35767,35768,35769,35770,35771,35772,35773,35774,35775,35776,35777,35778,35779,35780,35781,35782,35783,35784,35785,35786,35787,35788,35789,35790,35791,35792,35793,35794,35795,35796,35797,35798,35799,35800,35801,35802,35803,35804,35805,35806,35807,35808,35809,35810,35811,35812,35813,35814,35815,35816,35817,35818,35819,35820,35821,35822,35823,35824,35825,35826,35827,35828,35829,35830,35831,35832,35833,35834,35835,35836,35837,35838,35839,35840,35841,35842,35843,35844,35845,35846,35847,35848,35849,35850,35851,35852,35853,35854,35855,35856,35857,35858,35859,35860,35861,35862,35863,35864,35865,35866,35867,35868,35869,35870,35871,35872,35873,35874,35875,35876,35877,35878,35879,35880,35881,35882,35883,35884,35885,35886,35887,35888,35889,35890,35891,35892,35893,35894,35895,35896,35897,35898,35899,35900,35901,35902,35903,35904,35905,35906,35907,35908,35909,35910,35911,35912,35913,35914,35915,35916,35917,35918,35919,35920,35921,35922,35923,35924,35925,35926,35927,35928,35929,35930,35931,35932,35933,35934,35935,35936,35937,35938,35939,35940,35941,35942,35943,35944,35945,35946,35947,35948,35949,35950,35951,35952,35953,35954,35955,35956,35957,35958,35959,35960,35961,35962,35963,35964,35965,35966,35967,35968,35969,35970,35971,35972,35973,35974,35975,35976,35977,35978,35979,35980,35981,35982,35983,35984,35985,35986,35987,35988,35989,35990,35991,35992,35993,35994,35995,35996,35997,35998,35999,36000,36001,36002,36003,36004,36005,36006,36007,36008,36009,36010,36011,36012,36013,36014,36015,36016,36017,36018,36019,36020,36021,36022,36023,36024,36025,36026,36027,36028,36029,36030,36031,36032,36033,36034,36035,36036,36037,36038,36039,36040,36041,36042,36043,36044,36045,36046,36047,36048,36049,36050,36051,36052,36053,36054,36055,36056,36057,36058,36059,36060,36061,36062,36063,36064,36065,36066,36067,36068,36069,36070,36071,36072,36073,36074,36075,36076,36077,36078,36079,36080,36081,36082,36083,36084,36085,36086,36087,36088,36089,36090,36091,36092,36093,36094,36095,36096,36097,36098,36099,36100,36101,36102,36103,36104,36105,36106,36107,36108,36109,36110,36111,36112,36113,36114,36115,36116,36117,36118,36119,36120,36121,36122,36123,36124,36125,36126,36127,36128,36129,36130,36131,36132,36133,36134,36135,36136,36137,36138,36139,36140,36141,36142,36143,36144,36145,36146,36147,36148,36149,36150,36151,36152,36153,36154,36155,36156,36157,36158,36159,36160,36161,36162,36163,36164,36165,36166,36167,36168,36169,36170,36171,36172,36173,36174,36175,36176,36177,36178,36179,36180,36181,36182,36183,36184,36185,36186,36187,36188,36189,36190,36191,36192,36193,36194,36195,36196,36197,36198,36199,36200,36201,36202,36203,36204,36205,36206,36207,36208,36209,36210,36211,36212,36213,36214,36215,36216,36217,36218,36219,36220,36221,36222,36223,36224,36225,36226,36227,36228,36229,36230,36231,36232,36233,36234,36235,36236,36237,36238,36239,36240,36241,36242,36243,36244,36245,36246,36247,36248,36249,36250,36251,36252,36253,36254,36255,36256,36257,36258,36259,36260,36261,36262,36263,36264,36265,36266,36267,36268,36269,36270,36271,36272,36273,36274,36275,36276,36277,36278,36279,36280,36281,36282,36283,36284,36285,36286,36287,36288,36289,36290,36291,36292,36293,36294,36295,36296,36297,36298,36299,36300,36301,36302,36303,36304,36305,36306,36307,36308,36309,36310,36311,36312,36313,36314,36315,36316,36317,36318,36319,36320,36321,36322,36323,36324,36325,36326,36327,36328,36329,36330,36331,36332,36333,36334,36335,36336,36337,36338,36339,36340,36341,36342,36343,36344,36345,36346,36347,36348,36349,36350,36351,36352,36353,36354,36355,36356,36357,36358,36359,36360,36361,36362,36363,36364,36365,36366,36367,36368,36369,36370,36371,36372,36373,36374,36375,36376,36377,36378,36379,36380,36381,36382,36383,36384,36385,36386,36387,36388,36389,36390,36391,36392,36393,36394,36395,36396,36397,36398,36399,36400,36401,36402,36403,36404,36405,36406,36407,36408,36409,36410,36411,36412,36413,36414,36415,36416,36417,36418,36419,36420,36421,36422,36423,36424,36425,36426,36427,36428,36429,36430,36431,36432,36433,36434,36435,36436,36437,36438,36439,36440,36441,36442,36443,36444,36445,36446,36447,36448,36449,36450,36451,36452,36453,36454,36455,36456,36457,36458,36459,36460,36461,36462,36463,36464,36465,36466,36467,36468,36469,36470,36471,36472,36473,36474,36475,36476,36477,36478,36479,36480,36481,36482,36483,36484,36485,36486,36487,36488,36489,36490,36491,36492,36493,36494,36495,36496,36497,36498,36499,36500,36501,36502,36503,36504,36505,36506,36507,36508,36509,36510,36511,36512,36513,36514,36515,36516,36517,36518,36519,36520,36521,36522,36523,36524,36525,36526,36527,36528,36529,36530,36531,36532,36533,36534,36535,36536,36537,36538,36539,36540,36541,36542,36543,36544,36545,36546,36547,36548,36549,36550,36551,36552,36553,36554,36555,36556,36557,36558,36559,36560,36561,36562,36563,36564,36565,36566,36567,36568,36569,36570,36571,36572,36573,36574,36575,36576,36577,36578,36579,36580,36581,36582,36583,36584,36585,36586,36587,36588,36589,36590,36591,36592,36593,36594,36595,36596,36597,36598,36599,36600,36601,36602,36603,36604,36605,36606,36607,36608,36609,36610,36611,36612,36613,36614,36615,36616,36617,36618,36619,36620,36621,36622,36623,36624,36625,36626,36627,36628,36629,36630,36631,36632,36633,36634,36635,36636,36637,36638,36639,36640,36641,36642,36643,36644,36645,36646,36647,36648,36649,36650,36651,36652,36653,36654,36655,36656,36657,36658,36659,36660,36661,36662,36663,36664,36665,36666,36667,36668,36669,36670,36671,36672,36673,36674,36675,36676,36677,36678,36679,36680,36681,36682,36683,36684,36685,36686,36687,36688,36689,36690,36691,36692,36693,36694,36695,36696,36697,36698,36699,36700,36701,36702,36703,36704,36705,36706,36707,36708,36709,36710,36711,36712,36713,36714,36715,36716,36717,36718,36719,36720,36721,36722,36723,36724,36725,36726,36727,36728,36729,36730,36731,36732,36733,36734,36735,36736,36737,36738,36739,36740,36741,36742,36743,36744,36745,36746,36747,36748,36749,36750,36751,36752,36753,36754,36755,36756,36757,36758,36759,36760,36761,36762,36763,36764,36765,36766,36767,36768,36769,36770,36771,36772,36773,36774,36775,36776,36777,36778,36779,36780,36781,36782,36783,36784,36785,36786,36787,36788,36789,36790,36791,36792,36793,36794,36795,36796,36797,36798,36799,36800,36801,36802,36803,36804,36805,36806,36807,36808,36809,36810,36811,36812,36813,36814,36815,36816,36817,36818,36819,36820,36821,36822,36823,36824,36825,36826,36827,36828,36829,36830,36831,36832,36833,36834,36835,36836,36837,36838,36839,36840,36841,36842,36843,36844,36845,36846,36847,36848,36849,36850,36851,36852,36853,36854,36855,36856,36857,36858,36859,36860,36861,36862,36863,36864,36865,36866,36867,36868,36869,36870,36871,36872,36873,36874,36875,36876,36877,36878,36879,36880,36881,36882,36883,36884,36885,36886,36887,36888,36889,36890,36891,36892,36893,36894,36895,36896,36897,36898,36899,36900,36901,36902,36903,36904,36905,36906,36907,36908,36909,36910,36911,36912,36913,36914,36915,36916,36917,36918,36919,36920,36921,36922,36923,36924,36925,36926,36927,36928,36929,36930,36931,36932,36933,36934,36935,36936,36937,36938,36939,36940,36941,36942,36943,36944,36945,36946,36947,36948,36949,36950,36951,36952,36953,36954,36955,36956,36957,36958,36959,36960,36961,36962,36963,36964,36965,36966,36967,36968,36969,36970,36971,36972,36973,36974,36975,36976,36977,36978,36979,36980,36981,36982,36983,36984,36985,36986,36987,36988,36989,36990,36991,36992,36993,36994,36995,36996,36997,36998,36999,37000,37001,37002,37003,37004,37005,37006,37007,37008,37009,37010,37011,37012,37013,37014,37015,37016,37017,37018,37019,37020,37021,37022,37023,37024,37025,37026,37027,37028,37029,37030,37031,37032,37033,37034,37035,37036,37037,37038,37039,37040,37041,37042,37043,37044,37045,37046,37047,37048,37049,37050,37051,37052,37053,37054,37055,37056,37057,37058,37059,37060,37061,37062,37063,37064,37065,37066,37067,37068,37069,37070,37071,37072,37073,37074,37075,37076,37077,37078,37079,37080,37081,37082,37083,37084,37085,37086,37087,37088,37089,37090,37091,37092,37093,37094,37095,37096,37097,37098,37099,37100,37101,37102,37103,37104,37105,37106,37107,37108,37109,37110,37111,37112,37113,37114,37115,37116,37117,37118,37119,37120,37121,37122,37123,37124,37125,37126,37127,37128,37129,37130,37131,37132,37133,37134,37135,37136,37137,37138,37139,37140,37141,37142,37143,37144,37145,37146,37147,37148,37149,37150,37151,37152,37153,37154,37155,37156,37157,37158,37159,37160,37161,37162,37163,37164,37165,37166,37167,37168,37169,37170,37171,37172,37173,37174,37175,37176,37177,37178,37179,37180,37181,37182,37183,37184,37185,37186,37187,37188,37189,37190,37191,37192,37193,37194,37195,37196,37197,37198,37199,37200,37201,37202,37203,37204,37205,37206,37207,37208,37209,37210,37211,37212,37213,37214,37215,37216,37217,37218,37219,37220,37221,37222,37223,37224,37225,37226,37227,37228,37229,37230,37231,37232,37233,37234,37235,37236,37237,37238,37239,37240,37241,37242,37243,37244,37245,37246,37247,37248,37249,37250,37251,37252,37253,37254,37255,37256,37257,37258,37259,37260,37261,37262,37263,37264,37265,37266,37267,37268,37269,37270,37271,37272,37273,37274,37275,37276,37277,37278,37279,37280,37281,37282,37283,37284,37285,37286,37287,37288,37289,37290,37291,37292,37293,37294,37295,37296,37297,37298,37299,37300,37301,37302,37303,37304,37305,37306,37307,37308,37309,37310,37311,37312,37313,37314,37315,37316,37317,37318,37319,37320,37321,37322,37323,37324,37325,37326,37327,37328,37329,37330,37331,37332,37333,37334,37335,37336,37337,37338,37339,37340,37341,37342,37343,37344,37345,37346,37347,37348,37349,37350,37351,37352,37353,37354,37355,37356,37357,37358,37359,37360,37361,37362,37363,37364,37365,37366,37367,37368,37369,37370,37371,37372,37373,37374,37375,37376,37377,37378,37379,37380,37381,37382,37383,37384,37385,37386,37387,37388,37389,37390,37391,37392,37393,37394,37395,37396,37397,37398,37399,37400,37401,37402,37403,37404,37405,37406,37407,37408,37409,37410,37411,37412,37413,37414,37415,37416,37417,37418,37419,37420,37421,37422,37423,37424,37425,37426,37427,37428,37429,37430,37431,37432,37433,37434,37435,37436,37437,37438,37439,37440,37441,37442,37443,37444,37445,37446,37447,37448,37449,37450,37451,37452,37453,37454,37455,37456,37457,37458,37459,37460,37461,37462,37463,37464,37465,37466,37467,37468,37469,37470,37471,37472,37473,37474,37475,37476,37477,37478,37479,37480,37481,37482,37483,37484,37485,37486,37487,37488,37489,37490,37491,37492,37493,37494,37495,37496,37497,37498,37499,37500,37501,37502,37503,37504,37505,37506,37507,37508,37509,37510,37511,37512,37513,37514,37515,37516,37517,37518,37519,37520,37521,37522,37523,37524,37525,37526,37527,37528,37529,37530,37531,37532,37533,37534,37535,37536,37537,37538,37539,37540,37541,37542,37543,37544,37545,37546,37547,37548,37549,37550,37551,37552,37553,37554,37555,37556,37557,37558,37559,37560,37561,37562,37563,37564,37565,37566,37567,37568,37569,37570,37571,37572,37573,37574,37575,37576,37577,37578,37579,37580,37581,37582,37583,37584,37585,37586,37587,37588,37589,37590,37591,37592,37593,37594,37595,37596,37597,37598,37599,37600,37601,37602,37603,37604,37605,37606,37607,37608,37609,37610,37611,37612,37613,37614,37615,37616,37617,37618,37619,37620,37621,37622,37623,37624,37625,37626,37627,37628,37629,37630,37631,37632,37633,37634,37635,37636,37637,37638,37639,37640,37641,37642,37643,37644,37645,37646,37647,37648,37649,37650,37651,37652,37653,37654,37655,37656,37657,37658,37659,37660,37661,37662,37663,37664,37665,37666,37667,37668,37669,37670,37671,37672,37673,37674,37675,37676,37677,37678,37679,37680,37681,37682,37683,37684,37685,37686,37687,37688,37689,37690,37691,37692,37693,37694,37695,37696,37697,37698,37699,37700,37701,37702,37703,37704,37705,37706,37707,37708,37709,37710,37711,37712,37713,37714,37715,37716,37717,37718,37719,37720,37721,37722,37723,37724,37725,37726,37727,37728,37729,37730,37731,37732,37733,37734,37735,37736,37737,37738,37739,37740,37741,37742,37743,37744,37745,37746,37747,37748,37749,37750,37751,37752,37753,37754,37755,37756,37757,37758,37759,37760,37761,37762,37763,37764,37765,37766,37767,37768,37769,37770,37771,37772,37773,37774,37775,37776,37777,37778,37779,37780,37781,37782,37783,37784,37785,37786,37787,37788,37789,37790,37791,37792,37793,37794,37795,37796,37797,37798,37799,37800,37801,37802,37803,37804,37805,37806,37807,37808,37809,37810,37811,37812,37813,37814,37815,37816,37817,37818,37819,37820,37821,37822,37823,37824,37825,37826,37827,37828,37829,37830,37831,37832,37833,37834,37835,37836,37837,37838,37839,37840,37841,37842,37843,37844,37845,37846,37847,37848,37849,37850,37851,37852,37853,37854,37855,37856,37857,37858,37859,37860,37861,37862,37863,37864,37865,37866,37867,37868,37869,37870,37871,37872,37873,37874,37875,37876,37877,37878,37879,37880,37881,37882,37883,37884,37885,37886,37887,37888,37889,37890,37891,37892,37893,37894,37895,37896,37897,37898,37899,37900,37901,37902,37903,37904,37905,37906,37907,37908,37909,37910,37911,37912,37913,37914,37915,37916,37917,37918,37919,37920,37921,37922,37923,37924,37925,37926,37927,37928,37929,37930,37931,37932,37933,37934,37935,37936,37937,37938,37939,37940,37941,37942,37943,37944,37945,37946,37947,37948,37949,37950,37951,37952,37953,37954,37955,37956,37957,37958,37959,37960,37961,37962,37963,37964,37965,37966,37967,37968,37969,37970,37971,37972,37973,37974,37975,37976,37977,37978,37979,37980,37981,37982,37983,37984,37985,37986,37987,37988,37989,37990,37991,37992,37993,37994,37995,37996,37997,37998,37999,38000,38001,38002,38003,38004,38005,38006,38007,38008,38009,38010,38011,38012,38013,38014,38015,38016,38017,38018,38019,38020,38021,38022,38023,38024,38025,38026,38027,38028,38029,38030,38031,38032,38033,38034,38035,38036,38037,38038,38039,38040,38041,38042,38043,38044,38045,38046,38047,38048,38049,38050,38051,38052,38053,38054,38055,38056,38057,38058,38059,38060,38061,38062,38063,38064,38065,38066,38067,38068,38069,38070,38071,38072,38073,38074,38075,38076,38077,38078,38079,38080,38081,38082,38083,38084,38085,38086,38087,38088,38089,38090,38091,38092,38093,38094,38095,38096,38097,38098,38099,38100,38101,38102,38103,38104,38105,38106,38107,38108,38109,38110,38111,38112,38113,38114,38115,38116,38117,38118,38119,38120,38121,38122,38123,38124,38125,38126,38127,38128,38129,38130,38131,38132,38133,38134,38135,38136,38137,38138,38139,38140,38141,38142,38143,38144,38145,38146,38147,38148,38149,38150,38151,38152,38153,38154,38155,38156,38157,38158,38159,38160,38161,38162,38163,38164,38165,38166,38167,38168,38169,38170,38171,38172,38173,38174,38175,38176,38177,38178,38179,38180,38181,38182,38183,38184,38185,38186,38187,38188,38189,38190,38191,38192,38193,38194,38195,38196,38197,38198,38199,38200,38201,38202,38203,38204,38205,38206,38207,38208,38209,38210,38211,38212,38213,38214,38215,38216,38217,38218,38219,38220,38221,38222,38223,38224,38225,38226,38227,38228,38229,38230,38231,38232,38233,38234,38235,38236,38237,38238,38239,38240,38241,38242,38243,38244,38245,38246,38247,38248,38249,38250,38251,38252,38253,38254,38255,38256,38257,38258,38259,38260,38261,38262,38263,38264,38265,38266,38267,38268,38269,38270,38271,38272,38273,38274,38275,38276,38277,38278,38279,38280,38281,38282,38283,38284,38285,38286,38287,38288,38289,38290,38291,38292,38293,38294,38295,38296,38297,38298,38299,38300,38301,38302,38303,38304,38305,38306,38307,38308,38309,38310,38311,38312,38313,38314,38315,38316,38317,38318,38319,38320,38321,38322,38323,38324,38325,38326,38327,38328,38329,38330,38331,38332,38333,38334,38335,38336,38337,38338,38339,38340,38341,38342,38343,38344,38345,38346,38347,38348,38349,38350,38351,38352,38353,38354,38355,38356,38357,38358,38359,38360,38361,38362,38363,38364,38365,38366,38367,38368,38369,38370,38371,38372,38373,38374,38375,38376,38377,38378,38379,38380,38381,38382,38383,38384,38385,38386,38387,38388,38389,38390,38391,38392,38393,38394,38395,38396,38397,38398,38399,38400,38401,38402,38403,38404,38405,38406,38407,38408,38409,38410,38411,38412,38413,38414,38415,38416,38417,38418,38419,38420,38421,38422,38423,38424,38425,38426,38427,38428,38429,38430,38431,38432,38433,38434,38435,38436,38437,38438,38439,38440,38441,38442,38443,38444,38445,38446,38447,38448,38449,38450,38451,38452,38453,38454,38455,38456,38457,38458,38459,38460,38461,38462,38463,38464,38465,38466,38467,38468,38469,38470,38471,38472,38473,38474,38475,38476,38477,38478,38479,38480,38481,38482,38483,38484,38485,38486,38487,38488,38489,38490,38491,38492,38493,38494,38495,38496,38497,38498,38499,38500,38501,38502,38503,38504,38505,38506,38507,38508,38509,38510,38511,38512,38513,38514,38515,38516,38517,38518,38519,38520,38521,38522,38523,38524,38525,38526,38527,38528,38529,38530,38531,38532,38533,38534,38535,38536,38537,38538,38539,38540,38541,38542,38543,38544,38545,38546,38547,38548,38549,38550,38551,38552,38553,38554,38555,38556,38557,38558,38559,38560,38561,38562,38563,38564,38565,38566,38567,38568,38569,38570,38571,38572,38573,38574,38575,38576,38577,38578,38579,38580,38581,38582,38583,38584,38585,38586,38587,38588,38589,38590,38591,38592,38593,38594,38595,38596,38597,38598,38599,38600,38601,38602,38603,38604,38605,38606,38607,38608,38609,38610,38611,38612,38613,38614,38615,38616,38617,38618,38619,38620,38621,38622,38623,38624,38625,38626,38627,38628,38629,38630,38631,38632,38633,38634,38635,38636,38637,38638,38639,38640,38641,38642,38643,38644,38645,38646,38647,38648,38649,38650,38651,38652,38653,38654,38655,38656,38657,38658,38659,38660,38661,38662,38663,38664,38665,38666,38667,38668,38669,38670,38671,38672,38673,38674,38675,38676,38677,38678,38679,38680,38681,38682,38683,38684,38685,38686,38687,38688,38689,38690,38691,38692,38693,38694,38695,38696,38697,38698,38699,38700,38701,38702,38703,38704,38705,38706,38707,38708,38709,38710,38711,38712,38713,38714,38715,38716,38717,38718,38719,38720,38721,38722,38723,38724,38725,38726,38727,38728,38729,38730,38731,38732,38733,38734,38735,38736,38737,38738,38739,38740,38741,38742,38743,38744,38745,38746,38747,38748,38749,38750,38751,38752,38753,38754,38755,38756,38757,38758,38759,38760,38761,38762,38763,38764,38765,38766,38767,38768,38769,38770,38771,38772,38773,38774,38775,38776,38777,38778,38779,38780,38781,38782,38783,38784,38785,38786,38787,38788,38789,38790,38791,38792,38793,38794,38795,38796,38797,38798,38799,38800,38801,38802,38803,38804,38805,38806,38807,38808,38809,38810,38811,38812,38813,38814,38815,38816,38817,38818,38819,38820,38821,38822,38823,38824,38825,38826,38827,38828,38829,38830,38831,38832,38833,38834,38835,38836,38837,38838,38839,38840,38841,38842,38843,38844,38845,38846,38847,38848,38849,38850,38851,38852,38853,38854,38855,38856,38857,38858,38859,38860,38861,38862,38863,38864,38865,38866,38867,38868,38869,38870,38871,38872,38873,38874,38875,38876,38877,38878,38879,38880,38881,38882,38883,38884,38885,38886,38887,38888,38889,38890,38891,38892,38893,38894,38895,38896,38897,38898,38899,38900,38901,38902,38903,38904,38905,38906,38907,38908,38909,38910,38911,38912,38913,38914,38915,38916,38917,38918,38919,38920,38921,38922,38923,38924,38925,38926,38927,38928,38929,38930,38931,38932,38933,38934,38935,38936,38937,38938,38939,38940,38941,38942,38943,38944,38945,38946,38947,38948,38949,38950,38951,38952,38953,38954,38955,38956,38957,38958,38959,38960,38961,38962,38963,38964,38965,38966,38967,38968,38969,38970,38971,38972,38973,38974,38975,38976,38977,38978,38979,38980,38981,38982,38983,38984,38985,38986,38987,38988,38989,38990,38991,38992,38993,38994,38995,38996,38997,38998,38999,39000,39001,39002,39003,39004,39005,39006,39007,39008,39009,39010,39011,39012,39013,39014,39015,39016,39017,39018,39019,39020,39021,39022,39023,39024,39025,39026,39027,39028,39029,39030,39031,39032,39033,39034,39035,39036,39037,39038,39039,39040,39041,39042,39043,39044,39045,39046,39047,39048,39049,39050,39051,39052,39053,39054,39055,39056,39057,39058,39059,39060,39061,39062,39063,39064,39065,39066,39067,39068,39069,39070,39071,39072,39073,39074,39075,39076,39077,39078,39079,39080,39081,39082,39083,39084,39085,39086,39087,39088,39089,39090,39091,39092,39093,39094,39095,39096,39097,39098,39099,39100,39101,39102,39103,39104,39105,39106,39107,39108,39109,39110,39111,39112,39113,39114,39115,39116,39117,39118,39119,39120,39121,39122,39123,39124,39125,39126,39127,39128,39129,39130,39131,39132,39133,39134,39135,39136,39137,39138,39139,39140,39141,39142,39143,39144,39145,39146,39147,39148,39149,39150,39151,39152,39153,39154,39155,39156,39157,39158,39159,39160,39161,39162,39163,39164,39165,39166,39167,39168,39169,39170,39171,39172,39173,39174,39175,39176,39177,39178,39179,39180,39181,39182,39183,39184,39185,39186,39187,39188,39189,39190,39191,39192,39193,39194,39195,39196,39197,39198,39199,39200,39201,39202,39203,39204,39205,39206,39207,39208,39209,39210,39211,39212,39213,39214,39215,39216,39217,39218,39219,39220,39221,39222,39223,39224,39225,39226,39227,39228,39229,39230,39231,39232,39233,39234,39235,39236,39237,39238,39239,39240,39241,39242,39243,39244,39245,39246,39247,39248,39249,39250,39251,39252,39253,39254,39255,39256,39257,39258,39259,39260,39261,39262,39263,39264,39265,39266,39267,39268,39269,39270,39271,39272,39273,39274,39275,39276,39277,39278,39279,39280,39281,39282,39283,39284,39285,39286,39287,39288,39289,39290,39291,39292,39293,39294,39295,39296,39297,39298,39299,39300,39301,39302,39303,39304,39305,39306,39307,39308,39309,39310,39311,39312,39313,39314,39315,39316,39317,39318,39319,39320,39321,39322,39323,39324,39325,39326,39327,39328,39329,39330,39331,39332,39333,39334,39335,39336,39337,39338,39339,39340,39341,39342,39343,39344,39345,39346,39347,39348,39349,39350,39351,39352,39353,39354,39355,39356,39357,39358,39359,39360,39361,39362,39363,39364,39365,39366,39367,39368,39369,39370,39371,39372,39373,39374,39375,39376,39377,39378,39379,39380,39381,39382,39383,39384,39385,39386,39387,39388,39389,39390,39391,39392,39393,39394,39395,39396,39397,39398,39399,39400,39401,39402,39403,39404,39405,39406,39407,39408,39409,39410,39411,39412,39413,39414,39415,39416,39417,39418,39419,39420,39421,39422,39423,39424,39425,39426,39427,39428,39429,39430,39431,39432,39433,39434,39435,39436,39437,39438,39439,39440,39441,39442,39443,39444,39445,39446,39447,39448,39449,39450,39451,39452,39453,39454,39455,39456,39457,39458,39459,39460,39461,39462,39463,39464,39465,39466,39467,39468,39469,39470,39471,39472,39473,39474,39475,39476,39477,39478,39479,39480,39481,39482,39483,39484,39485,39486,39487,39488,39489,39490,39491,39492,39493,39494,39495,39496,39497,39498,39499,39500,39501,39502,39503,39504,39505,39506,39507,39508,39509,39510,39511,39512,39513,39514,39515,39516,39517,39518,39519,39520,39521,39522,39523,39524,39525,39526,39527,39528,39529,39530,39531,39532,39533,39534,39535,39536,39537,39538,39539,39540,39541,39542,39543,39544,39545,39546,39547,39548,39549,39550,39551,39552,39553,39554,39555,39556,39557,39558,39559,39560,39561,39562,39563,39564,39565,39566,39567,39568,39569,39570,39571,39572,39573,39574,39575,39576,39577,39578,39579,39580,39581,39582,39583,39584,39585,39586,39587,39588,39589,39590,39591,39592,39593,39594,39595,39596,39597,39598,39599,39600,39601,39602,39603,39604,39605,39606,39607,39608,39609,39610,39611,39612,39613,39614,39615,39616,39617,39618,39619,39620,39621,39622,39623,39624,39625,39626,39627,39628,39629,39630,39631,39632,39633,39634,39635,39636,39637,39638,39639,39640,39641,39642,39643,39644,39645,39646,39647,39648,39649,39650,39651,39652,39653,39654,39655,39656,39657,39658,39659,39660,39661,39662,39663,39664,39665,39666,39667,39668,39669,39670,39671,39672,39673,39674,39675,39676,39677,39678,39679,39680,39681,39682,39683,39684,39685,39686,39687,39688,39689,39690,39691,39692,39693,39694,39695,39696,39697,39698,39699,39700,39701,39702,39703,39704,39705,39706,39707,39708,39709,39710,39711,39712,39713,39714,39715,39716,39717,39718,39719,39720,39721,39722,39723,39724,39725,39726,39727,39728,39729,39730,39731,39732,39733,39734,39735,39736,39737,39738,39739,39740,39741,39742,39743,39744,39745,39746,39747,39748,39749,39750,39751,39752,39753,39754,39755,39756,39757,39758,39759,39760,39761,39762,39763,39764,39765,39766,39767,39768,39769,39770,39771,39772,39773,39774,39775,39776,39777,39778,39779,39780,39781,39782,39783,39784,39785,39786,39787,39788,39789,39790,39791,39792,39793,39794,39795,39796,39797,39798,39799,39800,39801,39802,39803,39804,39805,39806,39807,39808,39809,39810,39811,39812,39813,39814,39815,39816,39817,39818,39819,39820,39821,39822,39823,39824,39825,39826,39827,39828,39829,39830,39831,39832,39833,39834,39835,39836,39837,39838,39839,39840,39841,39842,39843,39844,39845,39846,39847,39848,39849,39850,39851,39852,39853,39854,39855,39856,39857,39858,39859,39860,39861,39862,39863,39864,39865,39866,39867,39868,39869,39870,39871,39872,39873,39874,39875,39876,39877,39878,39879,39880,39881,39882,39883,39884,39885,39886,39887,39888,39889,39890,39891,39892,39893,39894,39895,39896,39897,39898,39899,39900,39901,39902,39903,39904,39905,39906,39907,39908,39909,39910,39911,39912,39913,39914,39915,39916,39917,39918,39919,39920,39921,39922,39923,39924,39925,39926,39927,39928,39929,39930,39931,39932,39933,39934,39935,39936,39937,39938,39939,39940,39941,39942,39943,39944,39945,39946,39947,39948,39949,39950,39951,39952,39953,39954,39955,39956,39957,39958,39959,39960,39961,39962,39963,39964,39965,39966,39967,39968,39969,39970,39971,39972,39973,39974,39975,39976,39977,39978,39979,39980,39981,39982,39983,39984,39985,39986,39987,39988,39989,39990,39991,39992,39993,39994,39995,39996,39997,39998,39999,40000,40001,40002,40003,40004,40005,40006,40007,40008,40009,40010,40011,40012,40013,40014,40015,40016,40017,40018,40019,40020,40021,40022,40023,40024,40025,40026,40027,40028,40029,40030,40031,40032,40033,40034,40035,40036,40037,40038,40039,40040,40041,40042,40043,40044,40045,40046,40047,40048,40049,40050,40051,40052,40053,40054,40055,40056,40057,40058,40059,40060,40061,40062,40063,40064,40065,40066,40067,40068,40069,40070,40071,40072,40073,40074,40075,40076,40077,40078,40079,40080,40081,40082,40083,40084,40085,40086,40087,40088,40089,40090,40091,40092,40093,40094,40095,40096,40097,40098,40099,40100,40101,40102,40103,40104,40105,40106,40107,40108,40109,40110,40111,40112,40113,40114,40115,40116,40117,40118,40119,40120,40121,40122,40123,40124,40125,40126,40127,40128,40129,40130,40131,40132,40133,40134,40135,40136,40137,40138,40139,40140,40141,40142,40143,40144,40145,40146,40147,40148,40149,40150,40151,40152,40153,40154,40155,40156,40157,40158,40159,40160,40161,40162,40163,40164,40165,40166,40167,40168,40169,40170,40171,40172,40173,40174,40175,40176,40177,40178,40179,40180,40181,40182,40183,40184,40185,40186,40187,40188,40189,40190,40191,40192,40193,40194,40195,40196,40197,40198,40199,40200,40201,40202,40203,40204,40205,40206,40207,40208,40209,40210,40211,40212,40213,40214,40215,40216,40217,40218,40219,40220,40221,40222,40223,40224,40225,40226,40227,40228,40229,40230,40231,40232,40233,40234,40235,40236,40237,40238,40239,40240,40241,40242,40243,40244,40245,40246,40247,40248,40249,40250,40251,40252,40253,40254,40255,40256,40257,40258,40259,40260,40261,40262,40263,40264,40265,40266,40267,40268,40269,40270,40271,40272,40273,40274,40275,40276,40277,40278,40279,40280,40281,40282,40283,40284,40285,40286,40287,40288,40289,40290,40291,40292,40293,40294,40295,40296,40297,40298,40299,40300,40301,40302,40303,40304,40305,40306,40307,40308,40309,40310,40311,40312,40313,40314,40315,40316,40317,40318,40319,40320,40321,40322,40323,40324,40325,40326,40327,40328,40329,40330,40331,40332,40333,40334,40335,40336,40337,40338,40339,40340,40341,40342,40343,40344,40345,40346,40347,40348,40349,40350,40351,40352,40353,40354,40355,40356,40357,40358,40359,40360,40361,40362,40363,40364,40365,40366,40367,40368,40369,40370,40371,40372,40373,40374,40375,40376,40377,40378,40379,40380,40381,40382,40383,40384,40385,40386,40387,40388,40389,40390,40391,40392,40393,40394,40395,40396,40397,40398,40399,40400,40401,40402,40403,40404,40405,40406,40407,40408,40409,40410,40411,40412,40413,40414,40415,40416,40417,40418,40419,40420,40421,40422,40423,40424,40425,40426,40427,40428,40429,40430,40431,40432,40433,40434,40435,40436,40437,40438,40439,40440,40441,40442,40443,40444,40445,40446,40447,40448,40449,40450,40451,40452,40453,40454,40455,40456,40457,40458,40459,40460,40461,40462,40463,40464,40465,40466,40467,40468,40469,40470,40471,40472,40473,40474,40475,40476,40477,40478,40479,40480,40481,40482,40483,40484,40485,40486,40487,40488,40489,40490,40491,40492,40493,40494,40495,40496,40497,40498,40499,40500,40501,40502,40503,40504,40505,40506,40507,40508,40509,40510,40511,40512,40513,40514,40515,40516,40517,40518,40519,40520,40521,40522,40523,40524,40525,40526,40527,40528,40529,40530,40531,40532,40533,40534,40535,40536,40537,40538,40539,40540,40541,40542,40543,40544,40545,40546,40547,40548,40549,40550,40551,40552,40553,40554,40555,40556,40557,40558,40559,40560,40561,40562,40563,40564,40565,40566,40567,40568,40569,40570,40571,40572,40573,40574,40575,40576,40577,40578,40579,40580,40581,40582,40583,40584,40585,40586,40587,40588,40589,40590,40591,40592,40593,40594,40595,40596,40597,40598,40599,40600,40601,40602,40603,40604,40605,40606,40607,40608,40609,40610,40611,40612,40613,40614,40615,40616,40617,40618,40619,40620,40621,40622,40623,40624,40625,40626,40627,40628,40629,40630,40631,40632,40633,40634,40635,40636,40637,40638,40639,40640,40641,40642,40643,40644,40645,40646,40647,40648,40649,40650,40651,40652,40653,40654,40655,40656,40657,40658,40659,40660,40661,40662,40663,40664,40665,40666,40667,40668,40669,40670,40671,40672,40673,40674,40675,40676,40677,40678,40679,40680,40681,40682,40683,40684,40685,40686,40687,40688,40689,40690,40691,40692,40693,40694,40695,40696,40697,40698,40699,40700,40701,40702,40703,40704,40705,40706,40707,40708,40709,40710,40711,40712,40713,40714,40715,40716,40717,40718,40719,40720,40721,40722,40723,40724,40725,40726,40727,40728,40729,40730,40731,40732,40733,40734,40735,40736,40737,40738,40739,40740,40741,40742,40743,40744,40745,40746,40747,40748,40749,40750,40751,40752,40753,40754,40755,40756,40757,40758,40759,40760,40761,40762,40763,40764,40765,40766,40767,40768,40769,40770,40771,40772,40773,40774,40775,40776,40777,40778,40779,40780,40781,40782,40783,40784,40785,40786,40787,40788,40789,40790,40791,40792,40793,40794,40795,40796,40797,40798,40799,40800,40801,40802,40803,40804,40805,40806,40807,40808,40809,40810,40811,40812,40813,40814,40815,40816,40817,40818,40819,40820,40821,40822,40823,40824,40825,40826,40827,40828,40829,40830,40831,40832,40833,40834,40835,40836,40837,40838,40839,40840,40841,40842,40843,40844,40845,40846,40847,40848,40849,40850,40851,40852,40853,40854,40855,40856,40857,40858,40859,40860,40861,40862,40863,40864,40865,40866,40867,40868,40869,40870,40871,40872,40873,40874,40875,40876,40877,40878,40879,40880,40881,40882,40883,40884,40885,40886,40887,40888,40889,40890,40891,40892,40893,40894,40895,40896,40897,40898,40899,40900,40901,40902,40903,40904,40905,40906,40907,40908,40909,40910,40911,40912,40913,40914,40915,40916,40917,40918,40919,40920,40921,40922,40923,40924,40925,40926,40927,40928,40929,40930,40931,40932,40933,40934,40935,40936,40937,40938,40939,40940,40941,40942,40943,40944,40945,40946,40947,40948,40949,40950,40951,40952,40953,40954,40955,40956,40957,40958,40959,40960,40961,40962,40963,40964,40965,40966,40967,40968,40969,40970,40971,40972,40973,40974,40975,40976,40977,40978,40979,40980,40981,40982,40983,40984,40985,40986,40987,40988,40989,40990,40991,40992,40993,40994,40995,40996,40997,40998,40999,41000,41001,41002,41003,41004,41005,41006,41007,41008,41009,41010,41011,41012,41013,41014,41015,41016,41017,41018,41019,41020,41021,41022,41023,41024,41025,41026,41027,41028,41029,41030,41031,41032,41033,41034,41035,41036,41037,41038,41039,41040,41041,41042,41043,41044,41045,41046,41047,41048,41049,41050,41051,41052,41053,41054,41055,41056,41057,41058,41059,41060,41061,41062,41063,41064,41065,41066,41067,41068,41069,41070,41071,41072,41073,41074,41075,41076,41077,41078,41079,41080,41081,41082,41083,41084,41085,41086,41087,41088,41089,41090,41091,41092,41093,41094,41095,41096,41097,41098,41099,41100,41101,41102,41103,41104,41105,41106,41107,41108,41109,41110,41111,41112,41113,41114,41115,41116,41117,41118,41119,41120,41121,41122,41123,41124,41125,41126,41127,41128,41129,41130,41131,41132,41133,41134,41135,41136,41137,41138,41139,41140,41141,41142,41143,41144,41145,41146,41147,41148,41149,41150,41151,41152,41153,41154,41155,41156,41157,41158,41159,41160,41161,41162,41163,41164,41165,41166,41167,41168,41169,41170,41171,41172,41173,41174,41175,41176,41177,41178,41179,41180,41181,41182,41183,41184,41185,41186,41187,41188,41189,41190,41191,41192,41193,41194,41195,41196,41197,41198,41199,41200,41201,41202,41203,41204,41205,41206,41207,41208,41209,41210,41211,41212,41213,41214,41215,41216,41217,41218,41219,41220,41221,41222,41223,41224,41225,41226,41227,41228,41229,41230,41231,41232,41233,41234,41235,41236,41237,41238,41239,41240,41241,41242,41243,41244,41245,41246,41247,41248,41249,41250,41251,41252,41253,41254,41255,41256,41257,41258,41259,41260,41261,41262,41263,41264,41265,41266,41267,41268,41269,41270,41271,41272,41273,41274,41275,41276,41277,41278,41279,41280,41281,41282,41283,41284,41285,41286,41287,41288,41289,41290,41291,41292,41293,41294,41295,41296,41297,41298,41299,41300,41301,41302,41303,41304,41305,41306,41307,41308,41309,41310,41311,41312,41313,41314,41315,41316,41317,41318,41319,41320,41321,41322,41323,41324,41325,41326,41327,41328,41329,41330,41331,41332,41333,41334,41335,41336,41337,41338,41339,41340,41341,41342,41343,41344,41345,41346,41347,41348,41349,41350,41351,41352,41353,41354,41355,41356,41357,41358,41359,41360,41361,41362,41363,41364,41365,41366,41367,41368,41369,41370,41371,41372,41373,41374,41375,41376,41377,41378,41379,41380,41381,41382,41383,41384,41385,41386,41387,41388,41389,41390,41391,41392,41393,41394,41395,41396,41397,41398,41399,41400,41401,41402,41403,41404,41405,41406,41407,41408,41409,41410,41411,41412,41413,41414,41415,41416,41417,41418,41419,41420,41421,41422,41423,41424,41425,41426,41427,41428,41429,41430,41431,41432,41433,41434,41435,41436,41437,41438,41439,41440,41441,41442,41443,41444,41445,41446,41447,41448,41449,41450,41451,41452,41453,41454,41455,41456,41457,41458,41459,41460,41461,41462,41463,41464,41465,41466,41467,41468,41469,41470,41471,41472,41473,41474,41475,41476,41477,41478,41479,41480,41481,41482,41483,41484,41485,41486,41487,41488,41489,41490,41491,41492,41493,41494,41495,41496,41497,41498,41499,41500,41501,41502,41503,41504,41505,41506,41507,41508,41509,41510,41511,41512,41513,41514,41515,41516,41517,41518,41519,41520,41521,41522,41523,41524,41525,41526,41527,41528,41529,41530,41531,41532,41533,41534,41535,41536,41537,41538,41539,41540,41541,41542,41543,41544,41545,41546,41547,41548,41549,41550,41551,41552,41553,41554,41555,41556,41557,41558,41559,41560,41561,41562,41563,41564,41565,41566,41567,41568,41569,41570,41571,41572,41573,41574,41575,41576,41577,41578,41579,41580,41581,41582,41583,41584,41585,41586,41587,41588,41589,41590,41591,41592,41593,41594,41595,41596,41597,41598,41599,41600,41601,41602,41603,41604,41605,41606,41607,41608,41609,41610,41611,41612,41613,41614,41615,41616,41617,41618,41619,41620,41621,41622,41623,41624,41625,41626,41627,41628,41629,41630,41631,41632,41633,41634,41635,41636,41637,41638,41639,41640,41641,41642,41643,41644,41645,41646,41647,41648,41649,41650,41651,41652,41653,41654,41655,41656,41657,41658,41659,41660,41661,41662,41663,41664,41665,41666,41667,41668,41669,41670,41671,41672,41673,41674,41675,41676,41677,41678,41679,41680,41681,41682,41683,41684,41685,41686,41687,41688,41689,41690,41691,41692,41693,41694,41695,41696,41697,41698,41699,41700,41701,41702,41703,41704,41705,41706,41707,41708,41709,41710,41711,41712,41713,41714,41715,41716,41717,41718,41719,41720,41721,41722,41723,41724,41725,41726,41727,41728,41729,41730,41731,41732,41733,41734,41735,41736,41737,41738,41739,41740,41741,41742,41743,41744,41745,41746,41747,41748,41749,41750,41751,41752,41753,41754,41755,41756,41757,41758,41759,41760,41761,41762,41763,41764,41765,41766,41767,41768,41769,41770,41771,41772,41773,41774,41775,41776,41777,41778,41779,41780,41781,41782,41783,41784,41785,41786,41787,41788,41789,41790,41791,41792,41793,41794,41795,41796,41797,41798,41799,41800,41801,41802,41803,41804,41805,41806,41807,41808,41809,41810,41811,41812,41813,41814,41815,41816,41817,41818,41819,41820,41821,41822,41823,41824,41825,41826,41827,41828,41829,41830,41831,41832,41833,41834,41835,41836,41837,41838,41839,41840,41841,41842,41843,41844,41845,41846,41847,41848,41849,41850,41851,41852,41853,41854,41855,41856,41857,41858,41859,41860,41861,41862,41863,41864,41865,41866,41867,41868,41869,41870,41871,41872,41873,41874,41875,41876,41877,41878,41879,41880,41881,41882,41883,41884,41885,41886,41887,41888,41889,41890,41891,41892,41893,41894,41895,41896,41897,41898,41899,41900,41901,41902,41903,41904,41905,41906,41907,41908,41909,41910,41911,41912,41913,41914,41915,41916,41917,41918,41919,41920,41921,41922,41923,41924,41925,41926,41927,41928,41929,41930,41931,41932,41933,41934,41935,41936,41937,41938,41939,41940,41941,41942,41943,41944,41945,41946,41947,41948,41949,41950,41951,41952,41953,41954,41955,41956,41957,41958,41959,41960,41961,41962,41963,41964,41965,41966,41967,41968,41969,41970,41971,41972,41973,41974,41975,41976,41977,41978,41979,41980,41981,41982,41983,41984,41985,41986,41987,41988,41989,41990,41991,41992,41993,41994,41995,41996,41997,41998,41999,42000,42001,42002,42003,42004,42005,42006,42007,42008,42009,42010,42011,42012,42013,42014,42015,42016,42017,42018,42019,42020,42021,42022,42023,42024,42025,42026,42027,42028,42029,42030,42031,42032,42033,42034,42035,42036,42037,42038,42039,42040,42041,42042,42043,42044,42045,42046,42047,42048,42049,42050,42051,42052,42053,42054,42055,42056,42057,42058,42059,42060,42061,42062,42063,42064,42065,42066,42067,42068,42069,42070,42071,42072,42073,42074,42075,42076,42077,42078,42079,42080,42081,42082,42083,42084,42085,42086,42087,42088,42089,42090,42091,42092,42093,42094,42095,42096,42097,42098,42099,42100,42101,42102,42103,42104,42105,42106,42107,42108,42109,42110,42111,42112,42113,42114,42115,42116,42117,42118,42119,42120,42121,42122,42123,42124,42125,42126,42127,42128,42129,42130,42131,42132,42133,42134,42135,42136,42137,42138,42139,42140,42141,42142,42143,42144,42145,42146,42147,42148,42149,42150,42151,42152,42153,42154,42155,42156,42157,42158,42159,42160,42161,42162,42163,42164,42165,42166,42167,42168,42169,42170,42171,42172,42173,42174,42175,42176,42177,42178,42179,42180,42181,42182,42183,42184,42185,42186,42187,42188,42189,42190,42191,42192,42193,42194,42195,42196,42197,42198,42199,42200,42201,42202,42203,42204,42205,42206,42207,42208,42209,42210,42211,42212,42213,42214,42215,42216,42217,42218,42219,42220,42221,42222,42223,42224,42225,42226,42227,42228,42229,42230,42231,42232,42233,42234,42235,42236,42237,42238,42239,42240,42241,42242,42243,42244,42245,42246,42247,42248,42249,42250,42251,42252,42253,42254,42255,42256,42257,42258,42259,42260,42261,42262,42263,42264,42265,42266,42267,42268,42269,42270,42271,42272,42273,42274,42275,42276,42277,42278,42279,42280,42281,42282,42283,42284,42285,42286,42287,42288,42289,42290,42291,42292,42293,42294,42295,42296,42297,42298,42299,42300,42301,42302,42303,42304,42305,42306,42307,42308,42309,42310,42311,42312,42313,42314,42315,42316,42317,42318,42319,42320,42321,42322,42323,42324,42325,42326,42327,42328,42329,42330,42331,42332,42333,42334,42335,42336,42337,42338,42339,42340,42341,42342,42343,42344,42345,42346,42347,42348,42349,42350,42351,42352,42353,42354,42355,42356,42357,42358,42359,42360,42361,42362,42363,42364,42365,42366,42367,42368,42369,42370,42371,42372,42373,42374,42375,42376,42377,42378,42379,42380,42381,42382,42383,42384,42385,42386,42387,42388,42389,42390,42391,42392,42393,42394,42395,42396,42397,42398,42399,42400,42401,42402,42403,42404,42405,42406,42407,42408,42409,42410,42411,42412,42413,42414,42415,42416,42417,42418,42419,42420,42421,42422,42423,42424,42425,42426,42427,42428,42429,42430,42431,42432,42433,42434,42435,42436,42437,42438,42439,42440,42441,42442,42443,42444,42445,42446,42447,42448,42449,42450,42451,42452,42453,42454,42455,42456,42457,42458,42459,42460,42461,42462,42463,42464,42465,42466,42467,42468,42469,42470,42471,42472,42473,42474,42475,42476,42477,42478,42479,42480,42481,42482,42483,42484,42485,42486,42487,42488,42489,42490,42491,42492,42493,42494,42495,42496,42497,42498,42499,42500,42501,42502,42503,42504,42505,42506,42507,42508,42509,42510,42511,42512,42513,42514,42515,42516,42517,42518,42519,42520,42521,42522,42523,42524,42525,42526,42527,42528,42529,42530,42531,42532,42533,42534,42535,42536,42537,42538,42539,42540,42541,42542,42543,42544,42545,42546,42547,42548,42549,42550,42551,42552,42553,42554,42555,42556,42557,42558,42559,42560,42561,42562,42563,42564,42565,42566,42567,42568,42569,42570,42571,42572,42573,42574,42575,42576,42577,42578,42579,42580,42581,42582,42583,42584,42585,42586,42587,42588,42589,42590,42591,42592,42593,42594,42595,42596,42597,42598,42599,42600,42601,42602,42603,42604,42605,42606,42607,42608,42609,42610,42611,42612,42613,42614,42615,42616,42617,42618,42619,42620,42621,42622,42623,42624,42625,42626,42627,42628,42629,42630,42631,42632,42633,42634,42635,42636,42637,42638,42639,42640,42641,42642,42643,42644,42645,42646,42647,42648,42649,42650,42651,42652,42653,42654,42655,42656,42657,42658,42659,42660,42661,42662,42663,42664,42665,42666,42667,42668,42669,42670,42671,42672,42673,42674,42675,42676,42677,42678,42679,42680,42681,42682,42683,42684,42685,42686,42687,42688,42689,42690,42691,42692,42693,42694,42695,42696,42697,42698,42699,42700,42701,42702,42703,42704,42705,42706,42707,42708,42709,42710,42711,42712,42713,42714,42715,42716,42717,42718,42719,42720,42721,42722,42723,42724,42725,42726,42727,42728,42729,42730,42731,42732,42733,42734,42735,42736,42737,42738,42739,42740,42741,42742,42743,42744,42745,42746,42747,42748,42749,42750,42751,42752,42753,42754,42755,42756,42757,42758,42759,42760,42761,42762,42763,42764,42765,42766,42767,42768,42769,42770,42771,42772,42773,42774,42775,42776,42777,42778,42779,42780,42781,42782,42783,42784,42785,42786,42787,42788,42789,42790,42791,42792,42793,42794,42795,42796,42797,42798,42799,42800,42801,42802,42803,42804,42805,42806,42807,42808,42809,42810,42811,42812,42813,42814,42815,42816,42817,42818,42819,42820,42821,42822,42823,42824,42825,42826,42827,42828,42829,42830,42831,42832,42833,42834,42835,42836,42837,42838,42839,42840,42841,42842,42843,42844,42845,42846,42847,42848,42849,42850,42851,42852,42853,42854,42855,42856,42857,42858,42859,42860,42861,42862,42863,42864,42865,42866,42867,42868,42869,42870,42871,42872,42873,42874,42875,42876,42877,42878,42879,42880,42881,42882,42883,42884,42885,42886,42887,42888,42889,42890,42891,42892,42893,42894,42895,42896,42897,42898,42899,42900,42901,42902,42903,42904,42905,42906,42907,42908,42909,42910,42911,42912,42913,42914,42915,42916,42917,42918,42919,42920,42921,42922,42923,42924,42925,42926,42927,42928,42929,42930,42931,42932,42933,42934,42935,42936,42937,42938,42939,42940,42941,42942,42943,42944,42945,42946,42947,42948,42949,42950,42951,42952,42953,42954,42955,42956,42957,42958,42959,42960,42961,42962,42963,42964,42965,42966,42967,42968,42969,42970,42971,42972,42973,42974,42975,42976,42977,42978,42979,42980,42981,42982,42983,42984,42985,42986,42987,42988,42989,42990,42991,42992,42993,42994,42995,42996,42997,42998,42999,43000,43001,43002,43003,43004,43005,43006,43007,43008,43009,43010,43011,43012,43013,43014,43015,43016,43017,43018,43019,43020,43021,43022,43023,43024,43025,43026,43027,43028,43029,43030,43031,43032,43033,43034,43035,43036,43037,43038,43039,43040,43041,43042,43043,43044,43045,43046,43047,43048,43049,43050,43051,43052,43053,43054,43055,43056,43057,43058,43059,43060,43061,43062,43063,43064,43065,43066,43067,43068,43069,43070,43071,43072,43073,43074,43075,43076,43077,43078,43079,43080,43081,43082,43083,43084,43085,43086,43087,43088,43089,43090,43091,43092,43093,43094,43095,43096,43097,43098,43099,43100,43101,43102,43103,43104,43105,43106,43107,43108,43109,43110,43111,43112,43113,43114,43115,43116,43117,43118,43119,43120,43121,43122,43123,43124,43125,43126,43127,43128,43129,43130,43131,43132,43133,43134,43135,43136,43137,43138,43139,43140,43141,43142,43143,43144,43145,43146,43147,43148,43149,43150,43151,43152,43153,43154,43155,43156,43157,43158,43159,43160,43161,43162,43163,43164,43165,43166,43167,43168,43169,43170,43171,43172,43173,43174,43175,43176,43177,43178,43179,43180,43181,43182,43183,43184,43185,43186,43187,43188,43189,43190,43191,43192,43193,43194,43195,43196,43197,43198,43199,43200,43201,43202,43203,43204,43205,43206,43207,43208,43209,43210,43211,43212,43213,43214,43215,43216,43217,43218,43219,43220,43221,43222,43223,43224,43225,43226,43227,43228,43229,43230,43231,43232,43233,43234,43235,43236,43237,43238,43239,43240,43241,43242,43243,43244,43245,43246,43247,43248,43249,43250,43251,43252,43253,43254,43255,43256,43257,43258,43259,43260,43261,43262,43263,43264,43265,43266,43267,43268,43269,43270,43271,43272,43273,43274,43275,43276,43277,43278,43279,43280,43281,43282,43283,43284,43285,43286,43287,43288,43289,43290,43291,43292,43293,43294,43295,43296,43297,43298,43299,43300,43301,43302,43303,43304,43305,43306,43307,43308,43309,43310,43311,43312,43313,43314,43315,43316,43317,43318,43319,43320,43321,43322,43323,43324,43325,43326,43327,43328,43329,43330,43331,43332,43333,43334,43335,43336,43337,43338,43339,43340,43341,43342,43343,43344,43345,43346,43347,43348,43349,43350,43351,43352,43353,43354,43355,43356,43357,43358,43359,43360,43361,43362,43363,43364,43365,43366,43367,43368,43369,43370,43371,43372,43373,43374,43375,43376,43377,43378,43379,43380,43381,43382,43383,43384,43385,43386,43387,43388,43389,43390,43391,43392,43393,43394,43395,43396,43397,43398,43399,43400,43401,43402,43403,43404,43405,43406,43407,43408,43409,43410,43411,43412,43413,43414,43415,43416,43417,43418,43419,43420,43421,43422,43423,43424,43425,43426,43427,43428,43429,43430,43431,43432,43433,43434,43435,43436,43437,43438,43439,43440,43441,43442,43443,43444,43445,43446,43447,43448,43449,43450,43451,43452,43453,43454,43455,43456,43457,43458,43459,43460,43461,43462,43463,43464,43465,43466,43467,43468,43469,43470,43471,43472,43473,43474,43475,43476,43477,43478,43479,43480,43481,43482,43483,43484,43485,43486,43487,43488,43489,43490,43491,43492,43493,43494,43495,43496,43497,43498,43499,43500,43501,43502,43503,43504,43505,43506,43507,43508,43509,43510,43511,43512,43513,43514,43515,43516,43517,43518,43519,43520,43521,43522,43523,43524,43525,43526,43527,43528,43529,43530,43531,43532,43533,43534,43535,43536,43537,43538,43539,43540,43541,43542,43543,43544,43545,43546,43547,43548,43549,43550,43551,43552,43553,43554,43555,43556,43557,43558,43559,43560,43561,43562,43563,43564,43565,43566,43567,43568,43569,43570,43571,43572,43573,43574,43575,43576,43577,43578,43579,43580,43581,43582,43583,43584,43585,43586,43587,43588,43589,43590,43591,43592,43593,43594,43595,43596,43597,43598,43599,43600,43601,43602,43603,43604,43605,43606,43607,43608,43609,43610,43611,43612,43613,43614,43615,43616,43617,43618,43619,43620,43621,43622,43623,43624,43625,43626,43627,43628,43629,43630,43631,43632,43633,43634,43635,43636,43637,43638,43639,43640,43641,43642,43643,43644,43645,43646,43647,43648,43649,43650,43651,43652,43653,43654,43655,43656,43657,43658,43659,43660,43661,43662,43663,43664,43665,43666,43667,43668,43669,43670,43671,43672,43673,43674,43675,43676,43677,43678,43679,43680,43681,43682,43683,43684,43685,43686,43687,43688,43689,43690,43691,43692,43693,43694,43695,43696,43697,43698,43699,43700,43701,43702,43703,43704,43705,43706,43707,43708,43709,43710,43711,43712,43713,43714,43715,43716,43717,43718,43719,43720,43721,43722,43723,43724,43725,43726,43727,43728,43729,43730,43731,43732,43733,43734,43735,43736,43737,43738,43739,43740,43741,43742,43743,43744,43745,43746,43747,43748,43749,43750,43751,43752,43753,43754,43755,43756,43757,43758,43759,43760,43761,43762,43763,43764,43765,43766,43767,43768,43769,43770,43771,43772,43773,43774,43775,43776,43777,43778,43779,43780,43781,43782,43783,43784,43785,43786,43787,43788,43789,43790,43791,43792,43793,43794,43795,43796,43797,43798,43799,43800,43801,43802,43803,43804,43805,43806,43807,43808,43809,43810,43811,43812,43813,43814,43815,43816,43817,43818,43819,43820,43821,43822,43823,43824,43825,43826,43827,43828,43829,43830,43831,43832,43833,43834,43835,43836,43837,43838,43839,43840,43841,43842,43843,43844,43845,43846,43847,43848,43849,43850,43851,43852,43853,43854,43855,43856,43857,43858,43859,43860,43861,43862,43863,43864,43865,43866,43867,43868,43869,43870,43871,43872,43873,43874,43875,43876,43877,43878,43879,43880,43881,43882,43883,43884,43885,43886,43887,43888,43889,43890,43891,43892,43893,43894,43895,43896,43897,43898,43899,43900,43901,43902,43903,43904,43905,43906,43907,43908,43909,43910,43911,43912,43913,43914,43915,43916,43917,43918,43919,43920,43921,43922,43923,43924,43925,43926,43927,43928,43929,43930,43931,43932,43933,43934,43935,43936,43937,43938,43939,43940,43941,43942,43943,43944,43945,43946,43947,43948,43949,43950,43951,43952,43953,43954,43955,43956,43957,43958,43959,43960,43961,43962,43963,43964,43965,43966,43967,43968,43969,43970,43971,43972,43973,43974,43975,43976,43977,43978,43979,43980,43981,43982,43983,43984,43985,43986,43987,43988,43989,43990,43991,43992,43993,43994,43995,43996,43997,43998,43999,44000,44001,44002,44003,44004,44005,44006,44007,44008,44009,44010,44011,44012,44013,44014,44015,44016,44017,44018,44019,44020,44021,44022,44023,44024,44025,44026,44027,44028,44029,44030,44031,44032,44033,44034,44035,44036,44037,44038,44039,44040,44041,44042,44043,44044,44045,44046,44047,44048,44049,44050,44051,44052,44053,44054,44055,44056,44057,44058,44059,44060,44061,44062,44063,44064,44065,44066,44067,44068,44069,44070,44071,44072,44073,44074,44075,44076,44077,44078,44079,44080,44081,44082,44083,44084,44085,44086,44087,44088,44089,44090,44091,44092,44093,44094,44095,44096,44097,44098,44099,44100,44101,44102,44103,44104,44105,44106,44107,44108,44109,44110,44111,44112,44113,44114,44115,44116,44117,44118,44119,44120,44121,44122,44123,44124,44125,44126,44127,44128,44129,44130,44131,44132,44133,44134,44135,44136,44137,44138,44139,44140,44141,44142,44143,44144,44145,44146,44147,44148,44149,44150,44151,44152,44153,44154,44155,44156,44157,44158,44159,44160,44161,44162,44163,44164,44165,44166,44167,44168,44169,44170,44171,44172,44173,44174,44175,44176,44177,44178,44179,44180,44181,44182,44183,44184,44185,44186,44187,44188,44189,44190,44191,44192,44193,44194,44195,44196,44197,44198,44199,44200,44201,44202,44203,44204,44205,44206,44207,44208,44209,44210,44211,44212,44213,44214,44215,44216,44217,44218,44219,44220,44221,44222,44223,44224,44225,44226,44227,44228,44229,44230,44231,44232,44233,44234,44235,44236,44237,44238,44239,44240,44241,44242,44243,44244,44245,44246,44247,44248,44249,44250,44251,44252,44253,44254,44255,44256,44257,44258,44259,44260,44261,44262,44263,44264,44265,44266,44267,44268,44269,44270,44271,44272,44273,44274,44275,44276,44277,44278,44279,44280,44281,44282,44283,44284,44285,44286,44287,44288,44289,44290,44291,44292,44293,44294,44295,44296,44297,44298,44299,44300,44301,44302,44303,44304,44305,44306,44307,44308,44309,44310,44311,44312,44313,44314,44315,44316,44317,44318,44319,44320,44321,44322,44323,44324,44325,44326,44327,44328,44329,44330,44331,44332,44333,44334,44335,44336,44337,44338,44339,44340,44341,44342,44343,44344,44345,44346,44347,44348,44349,44350,44351,44352,44353,44354,44355,44356,44357,44358,44359,44360,44361,44362,44363,44364,44365,44366,44367,44368,44369,44370,44371,44372,44373,44374,44375,44376,44377,44378,44379,44380,44381,44382,44383,44384,44385,44386,44387,44388,44389,44390,44391,44392,44393,44394,44395,44396,44397,44398,44399,44400,44401,44402,44403,44404,44405,44406,44407,44408,44409,44410,44411,44412,44413,44414,44415,44416,44417,44418,44419,44420,44421,44422,44423,44424,44425,44426,44427,44428,44429,44430,44431,44432,44433,44434,44435,44436,44437,44438,44439,44440,44441,44442,44443,44444,44445,44446,44447,44448,44449,44450,44451,44452,44453,44454,44455,44456,44457,44458,44459,44460,44461,44462,44463,44464,44465,44466,44467,44468,44469,44470,44471,44472,44473,44474,44475,44476,44477,44478,44479,44480,44481,44482,44483,44484,44485,44486,44487,44488,44489,44490,44491,44492,44493,44494,44495,44496,44497,44498,44499,44500,44501,44502,44503,44504,44505,44506,44507,44508,44509,44510,44511,44512,44513,44514,44515,44516,44517,44518,44519,44520,44521,44522,44523,44524,44525,44526,44527,44528,44529,44530,44531,44532,44533,44534,44535,44536,44537,44538,44539,44540,44541,44542,44543,44544,44545,44546,44547,44548,44549,44550,44551,44552,44553,44554,44555,44556,44557,44558,44559,44560,44561,44562,44563,44564,44565,44566,44567,44568,44569,44570,44571,44572,44573,44574,44575,44576,44577,44578,44579,44580,44581,44582,44583,44584,44585,44586,44587,44588,44589,44590,44591,44592,44593,44594,44595,44596,44597,44598,44599,44600,44601,44602,44603,44604,44605,44606,44607,44608,44609,44610,44611,44612,44613,44614,44615,44616,44617,44618,44619,44620,44621,44622,44623,44624,44625,44626,44627,44628,44629,44630,44631,44632,44633,44634,44635,44636,44637,44638,44639,44640,44641,44642,44643,44644,44645,44646,44647,44648,44649,44650,44651,44652,44653,44654,44655,44656,44657,44658,44659,44660,44661,44662,44663,44664,44665,44666,44667,44668,44669,44670,44671,44672,44673,44674,44675,44676,44677,44678,44679,44680,44681,44682,44683,44684,44685,44686,44687,44688,44689,44690,44691,44692,44693,44694,44695,44696,44697,44698,44699,44700,44701,44702,44703,44704,44705,44706,44707,44708,44709,44710,44711,44712,44713,44714,44715,44716,44717,44718,44719,44720,44721,44722,44723,44724,44725,44726,44727,44728,44729,44730,44731,44732,44733,44734,44735,44736,44737,44738,44739,44740,44741,44742,44743,44744,44745,44746,44747,44748,44749,44750,44751,44752,44753,44754,44755,44756,44757,44758,44759,44760,44761,44762,44763,44764,44765,44766,44767,44768,44769,44770,44771,44772,44773,44774,44775,44776,44777,44778,44779,44780,44781,44782,44783,44784,44785,44786,44787,44788,44789,44790,44791,44792,44793,44794,44795,44796,44797,44798,44799,44800,44801,44802,44803,44804,44805,44806,44807,44808,44809,44810,44811,44812,44813,44814,44815,44816,44817,44818,44819,44820,44821,44822,44823,44824,44825,44826,44827,44828,44829,44830,44831,44832,44833,44834,44835,44836,44837,44838,44839,44840,44841,44842,44843,44844,44845,44846,44847,44848,44849,44850,44851,44852,44853,44854,44855,44856,44857,44858,44859,44860,44861,44862,44863,44864,44865,44866,44867,44868,44869,44870,44871,44872,44873,44874,44875,44876,44877,44878,44879,44880,44881,44882,44883,44884,44885,44886,44887,44888,44889,44890,44891,44892,44893,44894,44895,44896,44897,44898,44899,44900,44901,44902,44903,44904,44905,44906,44907,44908,44909,44910,44911,44912,44913,44914,44915,44916,44917,44918,44919,44920,44921,44922,44923,44924,44925,44926,44927,44928,44929,44930,44931,44932,44933,44934,44935,44936,44937,44938,44939,44940,44941,44942,44943,44944,44945,44946,44947,44948,44949,44950,44951,44952,44953,44954,44955,44956,44957,44958,44959,44960,44961,44962,44963,44964,44965,44966,44967,44968,44969,44970,44971,44972,44973,44974,44975,44976,44977,44978,44979,44980,44981,44982,44983,44984,44985,44986,44987,44988,44989,44990,44991,44992,44993,44994,44995,44996,44997,44998,44999,45000,45001,45002,45003,45004,45005,45006,45007,45008,45009,45010,45011,45012,45013,45014,45015,45016,45017,45018,45019,45020,45021,45022,45023,45024,45025,45026,45027,45028,45029,45030,45031,45032,45033,45034,45035,45036,45037,45038,45039,45040,45041,45042,45043,45044,45045,45046,45047,45048,45049,45050,45051,45052,45053,45054,45055,45056,45057,45058,45059,45060,45061,45062,45063,45064,45065,45066,45067,45068,45069,45070,45071,45072,45073,45074,45075,45076,45077,45078,45079,45080,45081,45082,45083,45084,45085,45086,45087,45088,45089,45090,45091,45092,45093,45094,45095,45096,45097,45098,45099,45100,45101,45102,45103,45104,45105,45106,45107,45108,45109,45110,45111,45112,45113,45114,45115,45116,45117,45118,45119,45120,45121,45122,45123,45124,45125,45126,45127,45128,45129,45130,45131,45132,45133,45134,45135,45136,45137,45138,45139,45140,45141,45142,45143,45144,45145,45146,45147,45148,45149,45150,45151,45152,45153,45154,45155,45156,45157,45158,45159,45160,45161,45162,45163,45164,45165,45166,45167,45168,45169,45170,45171,45172,45173,45174,45175,45176,45177,45178,45179,45180,45181,45182,45183,45184,45185,45186,45187,45188,45189,45190,45191,45192,45193,45194,45195,45196,45197,45198,45199,45200,45201,45202,45203,45204,45205,45206,45207,45208,45209,45210,45211,45212,45213,45214,45215,45216,45217,45218,45219,45220,45221,45222,45223,45224,45225,45226,45227,45228,45229,45230,45231,45232,45233,45234,45235,45236,45237,45238,45239,45240,45241,45242,45243,45244,45245,45246,45247,45248,45249,45250,45251,45252,45253,45254,45255,45256,45257,45258,45259,45260,45261,45262,45263,45264,45265,45266,45267,45268,45269,45270,45271,45272,45273,45274,45275,45276,45277,45278,45279,45280,45281,45282,45283,45284,45285,45286,45287,45288,45289,45290,45291,45292,45293,45294,45295,45296,45297,45298,45299,45300,45301,45302,45303,45304,45305,45306,45307,45308,45309,45310,45311,45312,45313,45314,45315,45316,45317,45318,45319,45320,45321,45322,45323,45324,45325,45326,45327,45328,45329,45330,45331,45332,45333,45334,45335,45336,45337,45338,45339,45340,45341,45342,45343,45344,45345,45346,45347,45348,45349,45350,45351,45352,45353,45354,45355,45356,45357,45358,45359,45360,45361,45362,45363,45364,45365,45366,45367,45368,45369,45370,45371,45372,45373,45374,45375,45376,45377,45378,45379,45380,45381,45382,45383,45384,45385,45386,45387,45388,45389,45390,45391,45392,45393,45394,45395,45396,45397,45398,45399,45400,45401,45402,45403,45404,45405,45406,45407,45408,45409,45410,45411,45412,45413,45414,45415,45416,45417,45418,45419,45420,45421,45422,45423,45424,45425,45426,45427,45428,45429,45430,45431,45432,45433,45434,45435,45436,45437,45438,45439,45440,45441,45442,45443,45444,45445,45446,45447,45448,45449,45450,45451,45452,45453,45454,45455,45456,45457,45458,45459,45460,45461,45462,45463,45464,45465,45466,45467,45468,45469,45470,45471,45472,45473,45474,45475,45476,45477,45478,45479,45480,45481,45482,45483,45484,45485,45486,45487,45488,45489,45490,45491,45492,45493,45494,45495,45496,45497,45498,45499,45500,45501,45502,45503,45504,45505,45506,45507,45508,45509,45510,45511,45512,45513,45514,45515,45516,45517,45518,45519,45520,45521,45522,45523,45524,45525,45526,45527,45528,45529,45530,45531,45532,45533,45534,45535,45536,45537,45538,45539,45540,45541,45542,45543,45544,45545,45546,45547,45548,45549,45550,45551,45552,45553,45554,45555,45556,45557,45558,45559,45560,45561,45562,45563,45564,45565,45566,45567,45568,45569,45570,45571,45572,45573,45574,45575,45576,45577,45578,45579,45580,45581,45582,45583,45584,45585,45586,45587,45588,45589,45590,45591,45592,45593,45594,45595,45596,45597,45598,45599,45600,45601,45602,45603,45604,45605,45606,45607,45608,45609,45610,45611,45612,45613,45614,45615,45616,45617,45618,45619,45620,45621,45622,45623,45624,45625,45626,45627,45628,45629,45630,45631,45632,45633,45634,45635,45636,45637,45638,45639,45640,45641,45642,45643,45644,45645,45646,45647,45648,45649,45650,45651,45652,45653,45654,45655,45656,45657,45658,45659,45660,45661,45662,45663,45664,45665,45666,45667,45668,45669,45670,45671,45672,45673,45674,45675,45676,45677,45678,45679,45680,45681,45682,45683,45684,45685,45686,45687,45688,45689,45690,45691,45692,45693,45694,45695,45696,45697,45698,45699,45700,45701,45702,45703,45704,45705,45706,45707,45708,45709,45710,45711,45712,45713,45714,45715,45716,45717,45718,45719,45720,45721,45722,45723,45724,45725,45726,45727,45728,45729,45730,45731,45732,45733,45734,45735,45736,45737,45738,45739,45740,45741,45742,45743,45744,45745,45746,45747,45748,45749,45750,45751,45752,45753,45754,45755,45756,45757,45758,45759,45760,45761,45762,45763,45764,45765,45766,45767,45768,45769,45770,45771,45772,45773,45774,45775,45776,45777,45778,45779,45780,45781,45782,45783,45784,45785,45786,45787,45788,45789,45790,45791,45792,45793,45794,45795,45796,45797,45798,45799,45800,45801,45802,45803,45804,45805,45806,45807,45808,45809,45810,45811,45812,45813,45814,45815,45816,45817,45818,45819,45820,45821,45822,45823,45824,45825,45826,45827,45828,45829,45830,45831,45832,45833,45834,45835,45836,45837,45838,45839,45840,45841,45842,45843,45844,45845,45846,45847,45848,45849,45850,45851,45852,45853,45854,45855,45856,45857,45858,45859,45860,45861,45862,45863,45864,45865,45866,45867,45868,45869,45870,45871,45872,45873,45874,45875,45876,45877,45878,45879,45880,45881,45882,45883,45884,45885,45886,45887,45888,45889,45890,45891,45892,45893,45894,45895,45896,45897,45898,45899,45900,45901,45902,45903,45904,45905,45906,45907,45908,45909,45910,45911,45912,45913,45914,45915,45916,45917,45918,45919,45920,45921,45922,45923,45924,45925,45926,45927,45928,45929,45930,45931,45932,45933,45934,45935,45936,45937,45938,45939,45940,45941,45942,45943,45944,45945,45946,45947,45948,45949,45950,45951,45952,45953,45954,45955,45956,45957,45958,45959,45960,45961,45962,45963,45964,45965,45966,45967,45968,45969,45970,45971,45972,45973,45974,45975,45976,45977,45978,45979,45980,45981,45982,45983,45984,45985,45986,45987,45988,45989,45990,45991,45992,45993,45994,45995,45996,45997,45998,45999,46000,46001,46002,46003,46004,46005,46006,46007,46008,46009,46010,46011,46012,46013,46014,46015,46016,46017,46018,46019,46020,46021,46022,46023,46024,46025,46026,46027,46028,46029,46030,46031,46032,46033,46034,46035,46036,46037,46038,46039,46040,46041,46042,46043,46044,46045,46046,46047,46048,46049,46050,46051,46052,46053,46054,46055,46056,46057,46058,46059,46060,46061,46062,46063,46064,46065,46066,46067,46068,46069,46070,46071,46072,46073,46074,46075,46076,46077,46078,46079,46080,46081,46082,46083,46084,46085,46086,46087,46088,46089,46090,46091,46092,46093,46094,46095,46096,46097,46098,46099,46100,46101,46102,46103,46104,46105,46106,46107,46108,46109,46110,46111,46112,46113,46114,46115,46116,46117,46118,46119,46120,46121,46122,46123,46124,46125,46126,46127,46128,46129,46130,46131,46132,46133,46134,46135,46136,46137,46138,46139,46140,46141,46142,46143,46144,46145,46146,46147,46148,46149,46150,46151,46152,46153,46154,46155,46156,46157,46158,46159,46160,46161,46162,46163,46164,46165,46166,46167,46168,46169,46170,46171,46172,46173,46174,46175,46176,46177,46178,46179,46180,46181,46182,46183,46184,46185,46186,46187,46188,46189,46190,46191,46192,46193,46194,46195,46196,46197,46198,46199,46200,46201,46202,46203,46204,46205,46206,46207,46208,46209,46210,46211,46212,46213,46214,46215,46216,46217,46218,46219,46220,46221,46222,46223,46224,46225,46226,46227,46228,46229,46230,46231,46232,46233,46234,46235,46236,46237,46238,46239,46240,46241,46242,46243,46244,46245,46246,46247,46248,46249,46250,46251,46252,46253,46254,46255,46256,46257,46258,46259,46260,46261,46262,46263,46264,46265,46266,46267,46268,46269,46270,46271,46272,46273,46274,46275,46276,46277,46278,46279,46280,46281,46282,46283,46284,46285,46286,46287,46288,46289,46290,46291,46292,46293,46294,46295,46296,46297,46298,46299,46300,46301,46302,46303,46304,46305,46306,46307,46308,46309,46310,46311,46312,46313,46314,46315,46316,46317,46318,46319,46320,46321,46322,46323,46324,46325,46326,46327,46328,46329,46330,46331,46332,46333,46334,46335,46336,46337,46338,46339,46340,46341,46342,46343,46344,46345,46346,46347,46348,46349,46350,46351,46352,46353,46354,46355,46356,46357,46358,46359,46360,46361,46362,46363,46364,46365,46366,46367,46368,46369,46370,46371,46372,46373,46374,46375,46376,46377,46378,46379,46380,46381,46382,46383,46384,46385,46386,46387,46388,46389,46390,46391,46392,46393,46394,46395,46396,46397,46398,46399,46400,46401,46402,46403,46404,46405,46406,46407,46408,46409,46410,46411,46412,46413,46414,46415,46416,46417,46418,46419,46420,46421,46422,46423,46424,46425,46426,46427,46428,46429,46430,46431,46432,46433,46434,46435,46436,46437,46438,46439,46440,46441,46442,46443,46444,46445,46446,46447,46448,46449,46450,46451,46452,46453,46454,46455,46456,46457,46458,46459,46460,46461,46462,46463,46464,46465,46466,46467,46468,46469,46470,46471,46472,46473,46474,46475,46476,46477,46478,46479,46480,46481,46482,46483,46484,46485,46486,46487,46488,46489,46490,46491,46492,46493,46494,46495,46496,46497,46498,46499,46500,46501,46502,46503,46504,46505,46506,46507,46508,46509,46510,46511,46512,46513,46514,46515,46516,46517,46518,46519,46520,46521,46522,46523,46524,46525,46526,46527,46528,46529,46530,46531,46532,46533,46534,46535,46536,46537,46538,46539,46540,46541,46542,46543,46544,46545,46546,46547,46548,46549,46550,46551,46552,46553,46554,46555,46556,46557,46558,46559,46560,46561,46562,46563,46564,46565,46566,46567,46568,46569,46570,46571,46572,46573,46574,46575,46576,46577,46578,46579,46580,46581,46582,46583,46584,46585,46586,46587,46588,46589,46590,46591,46592,46593,46594,46595,46596,46597,46598,46599,46600,46601,46602,46603,46604,46605,46606,46607,46608,46609,46610,46611,46612,46613,46614,46615,46616,46617,46618,46619,46620,46621,46622,46623,46624,46625,46626,46627,46628,46629,46630,46631,46632,46633,46634,46635,46636,46637,46638,46639,46640,46641,46642,46643,46644,46645,46646,46647,46648,46649,46650,46651,46652,46653,46654,46655,46656,46657,46658,46659,46660,46661,46662,46663,46664,46665,46666,46667,46668,46669,46670,46671,46672,46673,46674,46675,46676,46677,46678,46679,46680,46681,46682,46683,46684,46685,46686,46687,46688,46689,46690,46691,46692,46693,46694,46695,46696,46697,46698,46699,46700,46701,46702,46703,46704,46705,46706,46707,46708,46709,46710,46711,46712,46713,46714,46715,46716,46717,46718,46719,46720,46721,46722,46723,46724,46725,46726,46727,46728,46729,46730,46731,46732,46733,46734,46735,46736,46737,46738,46739,46740,46741,46742,46743,46744,46745,46746,46747,46748,46749,46750,46751,46752,46753,46754,46755,46756,46757,46758,46759,46760,46761,46762,46763,46764,46765,46766,46767,46768,46769,46770,46771,46772,46773,46774,46775,46776,46777,46778,46779,46780,46781,46782,46783,46784,46785,46786,46787,46788,46789,46790,46791,46792,46793,46794,46795,46796,46797,46798,46799,46800,46801,46802,46803,46804,46805,46806,46807,46808,46809,46810,46811,46812,46813,46814,46815,46816,46817,46818,46819,46820,46821,46822,46823,46824,46825,46826,46827,46828,46829,46830,46831,46832,46833,46834,46835,46836,46837,46838,46839,46840,46841,46842,46843,46844,46845,46846,46847,46848,46849,46850,46851,46852,46853,46854,46855,46856,46857,46858,46859,46860,46861,46862,46863,46864,46865,46866,46867,46868,46869,46870,46871,46872,46873,46874,46875,46876,46877,46878,46879,46880,46881,46882,46883,46884,46885,46886,46887,46888,46889,46890,46891,46892,46893,46894,46895,46896,46897,46898,46899,46900,46901,46902,46903,46904,46905,46906,46907,46908,46909,46910,46911,46912,46913,46914,46915,46916,46917,46918,46919,46920,46921,46922,46923,46924,46925,46926,46927,46928,46929,46930,46931,46932,46933,46934,46935,46936,46937,46938,46939,46940,46941,46942,46943,46944,46945,46946,46947,46948,46949,46950,46951,46952,46953,46954,46955,46956,46957,46958,46959,46960,46961,46962,46963,46964,46965,46966,46967,46968,46969,46970,46971,46972,46973,46974,46975,46976,46977,46978,46979,46980,46981,46982,46983,46984,46985,46986,46987,46988,46989,46990,46991,46992,46993,46994,46995,46996,46997,46998,46999,47000,47001,47002,47003,47004,47005,47006,47007,47008,47009,47010,47011,47012,47013,47014,47015,47016,47017,47018,47019,47020,47021,47022,47023,47024,47025,47026,47027,47028,47029,47030,47031,47032,47033,47034,47035,47036,47037,47038,47039,47040,47041,47042,47043,47044,47045,47046,47047,47048,47049,47050,47051,47052,47053,47054,47055,47056,47057,47058,47059,47060,47061,47062,47063,47064,47065,47066,47067,47068,47069,47070,47071,47072,47073,47074,47075,47076,47077,47078,47079,47080,47081,47082,47083,47084,47085,47086,47087,47088,47089,47090,47091,47092,47093,47094,47095,47096,47097,47098,47099,47100,47101,47102,47103,47104,47105,47106,47107,47108,47109,47110,47111,47112,47113,47114,47115,47116,47117,47118,47119,47120,47121,47122,47123,47124,47125,47126,47127,47128,47129,47130,47131,47132,47133,47134,47135,47136,47137,47138,47139,47140,47141,47142,47143,47144,47145,47146,47147,47148,47149,47150,47151,47152,47153,47154,47155,47156,47157,47158,47159,47160,47161,47162,47163,47164,47165,47166,47167,47168,47169,47170,47171,47172,47173,47174,47175,47176,47177,47178,47179,47180,47181,47182,47183,47184,47185,47186,47187,47188,47189,47190,47191,47192,47193,47194,47195,47196,47197,47198,47199,47200,47201,47202,47203,47204,47205,47206,47207,47208,47209,47210,47211,47212,47213,47214,47215,47216,47217,47218,47219,47220,47221,47222,47223,47224,47225,47226,47227,47228,47229,47230,47231,47232,47233,47234,47235,47236,47237,47238,47239,47240,47241,47242,47243,47244,47245,47246,47247,47248,47249,47250,47251,47252,47253,47254,47255,47256,47257,47258,47259,47260,47261,47262,47263,47264,47265,47266,47267,47268,47269,47270,47271,47272,47273,47274,47275,47276,47277,47278,47279,47280,47281,47282,47283,47284,47285,47286,47287,47288,47289,47290,47291,47292,47293,47294,47295,47296,47297,47298,47299,47300,47301,47302,47303,47304,47305,47306,47307,47308,47309,47310,47311,47312,47313,47314,47315,47316,47317,47318,47319,47320,47321,47322,47323,47324,47325,47326,47327,47328,47329,47330,47331,47332,47333,47334,47335,47336,47337,47338,47339,47340,47341,47342,47343,47344,47345,47346,47347,47348,47349,47350,47351,47352,47353,47354,47355,47356,47357,47358,47359,47360,47361,47362,47363,47364,47365,47366,47367,47368,47369,47370,47371,47372,47373,47374,47375,47376,47377,47378,47379,47380,47381,47382,47383,47384,47385,47386,47387,47388,47389,47390,47391,47392,47393,47394,47395,47396,47397,47398,47399,47400,47401,47402,47403,47404,47405,47406,47407,47408,47409,47410,47411,47412,47413,47414,47415,47416,47417,47418,47419,47420,47421,47422,47423,47424,47425,47426,47427,47428,47429,47430,47431,47432,47433,47434,47435,47436,47437,47438,47439,47440,47441,47442,47443,47444,47445,47446,47447,47448,47449,47450,47451,47452,47453,47454,47455,47456,47457,47458,47459,47460,47461,47462,47463,47464,47465,47466,47467,47468,47469,47470,47471,47472,47473,47474,47475,47476,47477,47478,47479,47480,47481,47482,47483,47484,47485,47486,47487,47488,47489,47490,47491,47492,47493,47494,47495,47496,47497,47498,47499,47500,47501,47502,47503,47504,47505,47506,47507,47508,47509,47510,47511,47512,47513,47514,47515,47516,47517,47518,47519,47520,47521,47522,47523,47524,47525,47526,47527,47528,47529,47530,47531,47532,47533,47534,47535,47536,47537,47538,47539,47540,47541,47542,47543,47544,47545,47546,47547,47548,47549,47550,47551,47552,47553,47554,47555,47556,47557,47558,47559,47560,47561,47562,47563,47564,47565,47566,47567,47568,47569,47570,47571,47572,47573,47574,47575,47576,47577,47578,47579,47580,47581,47582,47583,47584,47585,47586,47587,47588,47589,47590,47591,47592,47593,47594,47595,47596,47597,47598,47599,47600,47601,47602,47603,47604,47605,47606,47607,47608,47609,47610,47611,47612,47613,47614,47615,47616,47617,47618,47619,47620,47621,47622,47623,47624,47625,47626,47627,47628,47629,47630,47631,47632,47633,47634,47635,47636,47637,47638,47639,47640,47641,47642,47643,47644,47645,47646,47647,47648,47649,47650,47651,47652,47653,47654,47655,47656,47657,47658,47659,47660,47661,47662,47663,47664,47665,47666,47667,47668,47669,47670,47671,47672,47673,47674,47675,47676,47677,47678,47679,47680,47681,47682,47683,47684,47685,47686,47687,47688,47689,47690,47691,47692,47693,47694,47695,47696,47697,47698,47699,47700,47701,47702,47703,47704,47705,47706,47707,47708,47709,47710,47711,47712,47713,47714,47715,47716,47717,47718,47719,47720,47721,47722,47723,47724,47725,47726,47727,47728,47729,47730,47731,47732,47733,47734,47735,47736,47737,47738,47739,47740,47741,47742,47743,47744,47745,47746,47747,47748,47749,47750,47751,47752,47753,47754,47755,47756,47757,47758,47759,47760,47761,47762,47763,47764,47765,47766,47767,47768,47769,47770,47771,47772,47773,47774,47775,47776,47777,47778,47779,47780,47781,47782,47783,47784,47785,47786,47787,47788,47789,47790,47791,47792,47793,47794,47795,47796,47797,47798,47799,47800,47801,47802,47803,47804,47805,47806,47807,47808,47809,47810,47811,47812,47813,47814,47815,47816,47817,47818,47819,47820,47821,47822,47823,47824,47825,47826,47827,47828,47829,47830,47831,47832,47833,47834,47835,47836,47837,47838,47839,47840,47841,47842,47843,47844,47845,47846,47847,47848,47849,47850,47851,47852,47853,47854,47855,47856,47857,47858,47859,47860,47861,47862,47863,47864,47865,47866,47867,47868,47869,47870,47871,47872,47873,47874,47875,47876,47877,47878,47879,47880,47881,47882,47883,47884,47885,47886,47887,47888,47889,47890,47891,47892,47893,47894,47895,47896,47897,47898,47899,47900,47901,47902,47903,47904,47905,47906,47907,47908,47909,47910,47911,47912,47913,47914,47915,47916,47917,47918,47919,47920,47921,47922,47923,47924,47925,47926,47927,47928,47929,47930,47931,47932,47933,47934,47935,47936,47937,47938,47939,47940,47941,47942,47943,47944,47945,47946,47947,47948,47949,47950,47951,47952,47953,47954,47955,47956,47957,47958,47959,47960,47961,47962,47963,47964,47965,47966,47967,47968,47969,47970,47971,47972,47973,47974,47975,47976,47977,47978,47979,47980,47981,47982,47983,47984,47985,47986,47987,47988,47989,47990,47991,47992,47993,47994,47995,47996,47997,47998,47999,48000,48001,48002,48003,48004,48005,48006,48007,48008,48009,48010,48011,48012,48013,48014,48015,48016,48017,48018,48019,48020,48021,48022,48023,48024,48025,48026,48027,48028,48029,48030,48031,48032,48033,48034,48035,48036,48037,48038,48039,48040,48041,48042,48043,48044,48045,48046,48047,48048,48049,48050,48051,48052,48053,48054,48055,48056,48057,48058,48059,48060,48061,48062,48063,48064,48065,48066,48067,48068,48069,48070,48071,48072,48073,48074,48075,48076,48077,48078,48079,48080,48081,48082,48083,48084,48085,48086,48087,48088,48089,48090,48091,48092,48093,48094,48095,48096,48097,48098,48099,48100,48101,48102,48103,48104,48105,48106,48107,48108,48109,48110,48111,48112,48113,48114,48115,48116,48117,48118,48119,48120,48121,48122,48123,48124,48125,48126,48127,48128,48129,48130,48131,48132,48133,48134,48135,48136,48137,48138,48139,48140,48141,48142,48143,48144,48145,48146,48147,48148,48149,48150,48151,48152,48153,48154,48155,48156,48157,48158,48159,48160,48161,48162,48163,48164,48165,48166,48167,48168,48169,48170,48171,48172,48173,48174,48175,48176,48177,48178,48179,48180,48181,48182,48183,48184,48185,48186,48187,48188,48189,48190,48191,48192,48193,48194,48195,48196,48197,48198,48199,48200,48201,48202,48203,48204,48205,48206,48207,48208,48209,48210,48211,48212,48213,48214,48215,48216,48217,48218,48219,48220,48221,48222,48223,48224,48225,48226,48227,48228,48229,48230,48231,48232,48233,48234,48235,48236,48237,48238,48239,48240,48241,48242,48243,48244,48245,48246,48247,48248,48249,48250,48251,48252,48253,48254,48255,48256,48257,48258,48259,48260,48261,48262,48263,48264,48265,48266,48267,48268,48269,48270,48271,48272,48273,48274,48275,48276,48277,48278,48279,48280,48281,48282,48283,48284,48285,48286,48287,48288,48289,48290,48291,48292,48293,48294,48295,48296,48297,48298,48299,48300,48301,48302,48303,48304,48305,48306,48307,48308,48309,48310,48311,48312,48313,48314,48315,48316,48317,48318,48319,48320,48321,48322,48323,48324,48325,48326,48327,48328,48329,48330,48331,48332,48333,48334,48335,48336,48337,48338,48339,48340,48341,48342,48343,48344,48345,48346,48347,48348,48349,48350,48351,48352,48353,48354,48355,48356,48357,48358,48359,48360,48361,48362,48363,48364,48365,48366,48367,48368,48369,48370,48371,48372,48373,48374,48375,48376,48377,48378,48379,48380,48381,48382,48383,48384,48385,48386,48387,48388,48389,48390,48391,48392,48393,48394,48395,48396,48397,48398,48399,48400,48401,48402,48403,48404,48405,48406,48407,48408,48409,48410,48411,48412,48413,48414,48415,48416,48417,48418,48419,48420,48421,48422,48423,48424,48425,48426,48427,48428,48429,48430,48431,48432,48433,48434,48435,48436,48437,48438,48439,48440,48441,48442,48443,48444,48445,48446,48447,48448,48449,48450,48451,48452,48453,48454,48455,48456,48457,48458,48459,48460,48461,48462,48463,48464,48465,48466,48467,48468,48469,48470,48471,48472,48473,48474,48475,48476,48477,48478,48479,48480,48481,48482,48483,48484,48485,48486,48487,48488,48489,48490,48491,48492,48493,48494,48495,48496,48497,48498,48499,48500,48501,48502,48503,48504,48505,48506,48507,48508,48509,48510,48511,48512,48513,48514,48515,48516,48517,48518,48519,48520,48521,48522,48523,48524,48525,48526,48527,48528,48529,48530,48531,48532,48533,48534,48535,48536,48537,48538,48539,48540,48541,48542,48543,48544,48545,48546,48547,48548,48549,48550,48551,48552,48553,48554,48555,48556,48557,48558,48559,48560,48561,48562,48563,48564,48565,48566,48567,48568,48569,48570,48571,48572,48573,48574,48575,48576,48577,48578,48579,48580,48581,48582,48583,48584,48585,48586,48587,48588,48589,48590,48591,48592,48593,48594,48595,48596,48597,48598,48599,48600,48601,48602,48603,48604,48605,48606,48607,48608,48609,48610,48611,48612,48613,48614,48615,48616,48617,48618,48619,48620,48621,48622,48623,48624,48625,48626,48627,48628,48629,48630,48631,48632,48633,48634,48635,48636,48637,48638,48639,48640,48641,48642,48643,48644,48645,48646,48647,48648,48649,48650,48651,48652,48653,48654,48655,48656,48657,48658,48659,48660,48661,48662,48663,48664,48665,48666,48667,48668,48669,48670,48671,48672,48673,48674,48675,48676,48677,48678,48679,48680,48681,48682,48683,48684,48685,48686,48687,48688,48689,48690,48691,48692,48693,48694,48695,48696,48697,48698,48699,48700,48701,48702,48703,48704,48705,48706,48707,48708,48709,48710,48711,48712,48713,48714,48715,48716,48717,48718,48719,48720,48721,48722,48723,48724,48725,48726,48727,48728,48729,48730,48731,48732,48733,48734,48735,48736,48737,48738,48739,48740,48741,48742,48743,48744,48745,48746,48747,48748,48749,48750,48751,48752,48753,48754,48755,48756,48757,48758,48759,48760,48761,48762,48763,48764,48765,48766,48767,48768,48769,48770,48771,48772,48773,48774,48775,48776,48777,48778,48779,48780,48781,48782,48783,48784,48785,48786,48787,48788,48789,48790,48791,48792,48793,48794,48795,48796,48797,48798,48799,48800,48801,48802,48803,48804,48805,48806,48807,48808,48809,48810,48811,48812,48813,48814,48815,48816,48817,48818,48819,48820,48821,48822,48823,48824,48825,48826,48827,48828,48829,48830,48831,48832,48833,48834,48835,48836,48837,48838,48839,48840,48841,48842,48843,48844,48845,48846,48847,48848,48849,48850,48851,48852,48853,48854,48855,48856,48857,48858,48859,48860,48861,48862,48863,48864,48865,48866,48867,48868,48869,48870,48871,48872,48873,48874,48875,48876,48877,48878,48879,48880,48881,48882,48883,48884,48885,48886,48887,48888,48889,48890,48891,48892,48893,48894,48895,48896,48897,48898,48899,48900,48901,48902,48903,48904,48905,48906,48907,48908,48909,48910,48911,48912,48913,48914,48915,48916,48917,48918,48919,48920,48921,48922,48923,48924,48925,48926,48927,48928,48929,48930,48931,48932,48933,48934,48935,48936,48937,48938,48939,48940,48941,48942,48943,48944,48945,48946,48947,48948,48949,48950,48951,48952,48953,48954,48955,48956,48957,48958,48959,48960,48961,48962,48963,48964,48965,48966,48967,48968,48969,48970,48971,48972,48973,48974,48975,48976,48977,48978,48979,48980,48981,48982,48983,48984,48985,48986,48987,48988,48989,48990,48991,48992,48993,48994,48995,48996,48997,48998,48999,49000,49001,49002,49003,49004,49005,49006,49007,49008,49009,49010,49011,49012,49013,49014,49015,49016,49017,49018,49019,49020,49021,49022,49023,49024,49025,49026,49027,49028,49029,49030,49031,49032,49033,49034,49035,49036,49037,49038,49039,49040,49041,49042,49043,49044,49045,49046,49047,49048,49049,49050,49051,49052,49053,49054,49055,49056,49057,49058,49059,49060,49061,49062,49063,49064,49065,49066,49067,49068,49069,49070,49071,49072,49073,49074,49075,49076,49077,49078,49079,49080,49081,49082,49083,49084,49085,49086,49087,49088,49089,49090,49091,49092,49093,49094,49095,49096,49097,49098,49099,49100,49101,49102,49103,49104,49105,49106,49107,49108,49109,49110,49111,49112,49113,49114,49115,49116,49117,49118,49119,49120,49121,49122,49123,49124,49125,49126,49127,49128,49129,49130,49131,49132,49133,49134,49135,49136,49137,49138,49139,49140,49141,49142,49143,49144,49145,49146,49147,49148,49149,49150,49151,49152,49153,49154,49155,49156,49157,49158,49159,49160,49161,49162,49163,49164,49165,49166,49167,49168,49169,49170,49171,49172,49173,49174,49175,49176,49177,49178,49179,49180,49181,49182,49183,49184,49185,49186,49187,49188,49189,49190,49191,49192,49193,49194,49195,49196,49197,49198,49199,49200,49201,49202,49203,49204,49205,49206,49207,49208,49209,49210,49211,49212,49213,49214,49215,49216,49217,49218,49219,49220,49221,49222,49223,49224,49225,49226,49227,49228,49229,49230,49231,49232,49233,49234,49235,49236,49237,49238,49239,49240,49241,49242,49243,49244,49245,49246,49247,49248,49249,49250,49251,49252,49253,49254,49255,49256,49257,49258,49259,49260,49261,49262,49263,49264,49265,49266,49267,49268,49269,49270,49271,49272,49273,49274,49275,49276,49277,49278,49279,49280,49281,49282,49283,49284,49285,49286,49287,49288,49289,49290,49291,49292,49293,49294,49295,49296,49297,49298,49299,49300,49301,49302,49303,49304,49305,49306,49307,49308,49309,49310,49311,49312,49313,49314,49315,49316,49317,49318,49319,49320,49321,49322,49323,49324,49325,49326,49327,49328,49329,49330,49331,49332,49333,49334,49335,49336,49337,49338,49339,49340,49341,49342,49343,49344,49345,49346,49347,49348,49349,49350,49351,49352,49353,49354,49355,49356,49357,49358,49359,49360,49361,49362,49363,49364,49365,49366,49367,49368,49369,49370,49371,49372,49373,49374,49375,49376,49377,49378,49379,49380,49381,49382,49383,49384,49385,49386,49387,49388,49389,49390,49391,49392,49393,49394,49395,49396,49397,49398,49399,49400,49401,49402,49403,49404,49405,49406,49407,49408,49409,49410,49411,49412,49413,49414,49415,49416,49417,49418,49419,49420,49421,49422,49423,49424,49425,49426,49427,49428,49429,49430,49431,49432,49433,49434,49435,49436,49437,49438,49439,49440,49441,49442,49443,49444,49445,49446,49447,49448,49449,49450,49451,49452,49453,49454,49455,49456,49457,49458,49459,49460,49461,49462,49463,49464,49465,49466,49467,49468,49469,49470,49471,49472,49473,49474,49475,49476,49477,49478,49479,49480,49481,49482,49483,49484,49485,49486,49487,49488,49489,49490,49491,49492,49493,49494,49495,49496,49497,49498,49499,49500,49501,49502,49503,49504,49505,49506,49507,49508,49509,49510,49511,49512,49513,49514,49515,49516,49517,49518,49519,49520,49521,49522,49523,49524,49525,49526,49527,49528,49529,49530,49531,49532,49533,49534,49535,49536,49537,49538,49539,49540,49541,49542,49543,49544,49545,49546,49547,49548,49549,49550,49551,49552,49553,49554,49555,49556,49557,49558,49559,49560,49561,49562,49563,49564,49565,49566,49567,49568,49569,49570,49571,49572,49573,49574,49575,49576,49577,49578,49579,49580,49581,49582,49583,49584,49585,49586,49587,49588,49589,49590,49591,49592,49593,49594,49595,49596,49597,49598,49599,49600,49601,49602,49603,49604,49605,49606,49607,49608,49609,49610,49611,49612,49613,49614,49615,49616,49617,49618,49619,49620,49621,49622,49623,49624,49625,49626,49627,49628,49629,49630,49631,49632,49633,49634,49635,49636,49637,49638,49639,49640,49641,49642,49643,49644,49645,49646,49647,49648,49649,49650,49651,49652,49653,49654,49655,49656,49657,49658,49659,49660,49661,49662,49663,49664,49665,49666,49667,49668,49669,49670,49671,49672,49673,49674,49675,49676,49677,49678,49679,49680,49681,49682,49683,49684,49685,49686,49687,49688,49689,49690,49691,49692,49693,49694,49695,49696,49697,49698,49699,49700,49701,49702,49703,49704,49705,49706,49707,49708,49709,49710,49711,49712,49713,49714,49715,49716,49717,49718,49719,49720,49721,49722,49723,49724,49725,49726,49727,49728,49729,49730,49731,49732,49733,49734,49735,49736,49737,49738,49739,49740,49741,49742,49743,49744,49745,49746,49747,49748,49749,49750,49751,49752,49753,49754,49755,49756,49757,49758,49759,49760,49761,49762,49763,49764,49765,49766,49767,49768,49769,49770,49771,49772,49773,49774,49775,49776,49777,49778,49779,49780,49781,49782,49783,49784,49785,49786,49787,49788,49789,49790,49791,49792,49793,49794,49795,49796,49797,49798,49799,49800,49801,49802,49803,49804,49805,49806,49807,49808,49809,49810,49811,49812,49813,49814,49815,49816,49817,49818,49819,49820,49821,49822,49823,49824,49825,49826,49827,49828,49829,49830,49831,49832,49833,49834,49835,49836,49837,49838,49839,49840,49841,49842,49843,49844,49845,49846,49847,49848,49849,49850,49851,49852,49853,49854,49855,49856,49857,49858,49859,49860,49861,49862,49863,49864,49865,49866,49867,49868,49869,49870,49871,49872,49873,49874,49875,49876,49877,49878,49879,49880,49881,49882,49883,49884,49885,49886,49887,49888,49889,49890,49891,49892,49893,49894,49895,49896,49897,49898,49899,49900,49901,49902,49903,49904,49905,49906,49907,49908,49909,49910,49911,49912,49913,49914,49915,49916,49917,49918,49919,49920,49921,49922,49923,49924,49925,49926,49927,49928,49929,49930,49931,49932,49933,49934,49935,49936,49937,49938,49939,49940,49941,49942,49943,49944,49945,49946,49947,49948,49949,49950,49951,49952,49953,49954,49955,49956,49957,49958,49959,49960,49961,49962,49963,49964,49965,49966,49967,49968,49969,49970,49971,49972,49973,49974,49975,49976,49977,49978,49979,49980,49981,49982,49983,49984,49985,49986,49987,49988,49989,49990,49991,49992,49993,49994,49995,49996,49997,49998,49999,50000]
diff --git "a/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204377573509.txt" "b/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204377573509.txt"
deleted file mode 100644
index cd9d9c1a..00000000
--- "a/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204377573509.txt"
+++ /dev/null
@@ -1,27 +0,0 @@
-class Solution:
- def merge_sort(self, nums, l, r):
- if l == r:
- return
- mid = (l + r) // 2
- self.merge_sort(nums, l, mid)
- self.merge_sort(nums, mid + 1, r)
- tmp = []
- i, j = l, mid + 1
- while i <= mid or j <= r:
- if i > mid or (j <= r and nums[j] < nums[i]):
- tmp.append(nums[j])
- j += 1
- else:
- tmp.append(nums[i])
- i += 1
- nums[l: r + 1] = tmp
-
- def sortArray(self, nums: List[int]) -> List[int]:
- self.merge_sort(nums, 0, len(nums) - 1)
- return nums
-
-
-
-
-# runtime:1044 ms
-# memory:21.4 MB
diff --git "a/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204377575731.txt" "b/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204377575731.txt"
deleted file mode 100644
index 020e8c26..00000000
--- "a/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204377575731.txt"
+++ /dev/null
@@ -1,48 +0,0 @@
-class Solution2:
- def partition(self, nums, left, right):
- x = nums[right]
- i = left - 1
- for j in range(left, right):
- if nums[j] < x:
- i += 1
- nums[i], nums[j] = nums[j], nums[i]
- nums[i + 1], nums[right] = nums[right], nums[i + 1]
- return i + 1
-
- def sort(self, nums, left, right):
- if right <= left:
- return
- # 实现 left, right 范围内的排序
- p = self.partition(nums, left, right)
- self.sort(nums, left, p - 1)
- self.sort(nums, p + 1, right)
-
- def sortArray(self, nums: List[int]) -> List[int]:
- # 实现一个快速排序
- self.sort(nums, 0, len(nums) - 1)
- return nums
-
-
-class Solution:
- def sortArray(self, nums: List[int]) -> List[int]:
- import random # 导入随机数函数库
- def quicksort(nums, left, right):
- flag = nums[random.randint(left, right)] # 随机初始化哨兵位置
- i, j = left, right # 设定从左到右的指针i,从右到左的指针j
- while i <= j:
- while nums[i] < flag: i += 1 # i从左往右扫,找到大于等于flag的数。
- while nums[j] > flag: j -= 1 # j从右往左扫,找到小于等于flag的数。
- if i <= j:
- nums[i], nums[j] = nums[j], nums[i] # 交换左右指针下标对应的数值
- i += 1 # 左指针继续往右走
- j -= 1 # 右指针继续往左走
- if i < right: quicksort(nums, i, right) # 递归解决flag左边的低位数组的排序
- if j > left: quicksort(nums, left, j) # 递归解决flag右边的低位数组的排序
-
- quicksort(nums, 0, len(nums) - 1) # 函数入口,将整个数组的信息传入
- return nums # 返回修改后的nums
-
-
-
-# runtime:780 ms
-# memory:21.3 MB
diff --git "a/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204378510304.txt" "b/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204378510304.txt"
deleted file mode 100644
index e248fd9c..00000000
--- "a/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204378510304.txt"
+++ /dev/null
@@ -1,81 +0,0 @@
-class Solution2:
- def partition(self, nums, left, right):
- x = nums[right]
- i = left - 1
- for j in range(left, right):
- if nums[j] < x:
- i += 1
- nums[i], nums[j] = nums[j], nums[i]
- nums[i + 1], nums[right] = nums[right], nums[i + 1]
- return i + 1
-
- def sort(self, nums, left, right):
- if right <= left:
- return
- # 实现 left, right 范围内的排序
- p = self.partition(nums, left, right)
- self.sort(nums, left, p - 1)
- self.sort(nums, p + 1, right)
-
- def sortArray(self, nums: List[int]) -> List[int]:
- # 实现一个快速排序
- self.sort(nums, 0, len(nums) - 1)
- return nums
-
-
-class Solution3:
- def sortArray(self, nums: List[int]) -> List[int]:
- import random # 导入随机数函数库
- def quicksort(nums, left, right):
- flag = nums[random.randint(left, right)] # 随机初始化哨兵位置
- i, j = left, right # 设定从左到右的指针i,从右到左的指针j
- while i <= j:
- while nums[i] < flag: i += 1 # i从左往右扫,找到大于等于flag的数。
- while nums[j] > flag: j -= 1 # j从右往左扫,找到小于等于flag的数。
- if i <= j:
- nums[i], nums[j] = nums[j], nums[i] # 交换左右指针下标对应的数值
- i += 1 # 左指针继续往右走
- j -= 1 # 右指针继续往左走
- if i < right: quicksort(nums, i, right) # 递归解决flag左边的低位数组的排序
- if j > left: quicksort(nums, left, j) # 递归解决flag右边的低位数组的排序
-
- quicksort(nums, 0, len(nums) - 1) # 函数入口,将整个数组的信息传入
- return nums # 返回修改后的nums
-
-
-class Solution:
-
- def sortArray(self, nums: List[int]) -> List[int]:
- if len(nums) == 1:
- return nums
-
- mid = len(nums) // 2
- left_list = self.sortArray(nums[:mid])
- right_list = self.sortArray(nums[mid:])
-
- res = []
- while len(left_list) > 0 and len(right_list) > 0:
- if left_list[0] < right_list[0]:
- res.append(left_list.pop(0))
- else:
- res.append(right_list.pop(0))
-
- if len(left_list) > 0:
- res.extend(left_list)
-
- if len(right_list) > 0:
- res.extend(right_list)
-
- return res
-
-
-
-# runtime:N/A
-# memory:N/A
-# total_testcases:18
-# total_correct:14
-# input_formatted:[1,25001,3,37501,5,25003,7,43751,9,25005,11,37503,13,25007,15,49219,17,25009,19,37505,21,25011,23,43753,25,25013,27,37507,29,25015,31,46877,33,25017,35,37509,37,25019,39,43755,41,25021,43,37511,45,25023,47,48439,49,25025,51,37513,53,25027,55,43757,57,25029,59,37515,61,25031,63,46879,65,25033,67,37517,69,25035,71,43759,73,25037,75,37519,77,25039,79,49805,81,25041,83,37521,85,25043,87,43761,89,25045,91,37523,93,25047,95,46881,97,25049,99,37525,101,25051,103,43763,105,25053,107,37527,109,25055,111,48441,113,25057,115,37529,117,25059,119,43765,121,25061,123,37531,125,25063,127,46883,129,25065,131,37533,133,25067,135,43767,137,25069,139,37535,141,25071,143,49221,145,25073,147,37537,149,25075,151,43769,153,25077,155,37539,157,25079,159,46885,161,25081,163,37541,165,25083,167,43771,169,25085,171,37543,173,25087,175,48443,177,25089,179,37545,181,25091,183,43773,185,25093,187,37547,189,25095,191,46887,193,25097,195,37549,197,25099,199,43775,201,25101,203,37551,205,25103,207,49611,209,25105,211,37553,213,25107,215,43777,217,25109,219,37555,221,25111,223,46889,225,25113,227,37557,229,25115,231,43779,233,25117,235,37559,237,25119,239,48445,241,25121,243,37561,245,25123,247,43781,249,25125,251,37563,253,25127,255,46891,257,25129,259,37565,261,25131,263,43783,265,25133,267,37567,269,25135,271,49223,273,25137,275,37569,277,25139,279,43785,281,25141,283,37571,285,25143,287,46893,289,25145,291,37573,293,25147,295,43787,297,25149,299,37575,301,25151,303,48447,305,25153,307,37577,309,25155,311,43789,313,25157,315,37579,317,25159,319,46895,321,25161,323,37581,325,25163,327,43791,329,25165,331,37583,333,25167,335,49903,337,25169,339,37585,341,25171,343,43793,345,25173,347,37587,349,25175,351,46897,353,25177,355,37589,357,25179,359,43795,361,25181,363,37591,365,25183,367,48449,369,25185,371,37593,373,25187,375,43797,377,25189,379,37595,381,25191,383,46899,385,25193,387,37597,389,25195,391,43799,393,25197,395,37599,397,25199,399,49225,401,25201,403,37601,405,25203,407,43801,409,25205,411,37603,413,25207,415,46901,417,25209,419,37605,421,25211,423,43803,425,25213,427,37607,429,25215,431,48451,433,25217,435,37609,437,25219,439,43805,441,25221,443,37611,445,25223,447,46903,449,25225,451,37613,453,25227,455,43807,457,25229,459,37615,461,25231,463,49613,465,25233,467,37617,469,25235,471,43809,473,25237,475,37619,477,25239,479,46905,481,25241,483,37621,485,25243,487,43811,489,25245,491,37623,493,25247,495,48453,497,25249,499,37625,501,25251,503,43813,505,25253,507,37627,509,25255,511,46907,513,25257,515,37629,517,25259,519,43815,521,25261,523,37631,525,25263,527,49227,529,25265,531,37633,533,25267,535,43817,537,25269,539,37635,541,25271,543,46909,545,25273,547,37637,549,25275,551,43819,553,25277,555,37639,557,25279,559,48455,561,25281,563,37641,565,25283,567,43821,569,25285,571,37643,573,25287,575,46911,577,25289,579,37645,581,25291,583,43823,585,25293,587,37647,589,25295,591,49807,593,25297,595,37649,597,25299,599,43825,601,25301,603,37651,605,25303,607,46913,609,25305,611,37653,613,25307,615,43827,617,25309,619,37655,621,25311,623,48457,625,25313,627,37657,629,25315,631,43829,633,25317,635,37659,637,25319,639,46915,641,25321,643,37661,645,25323,647,43831,649,25325,651,37663,653,25327,655,49229,657,25329,659,37665,661,25331,663,43833,665,25333,667,37667,669,25335,671,46917,673,25337,675,37669,677,25339,679,43835,681,25341,683,37671,685,25343,687,48459,689,25345,691,37673,693,25347,695,43837,697,25349,699,37675,701,25351,703,46919,705,25353,707,37677,709,25355,711,43839,713,25357,715,37679,717,25359,719,49615,721,25361,723,37681,725,25363,727,43841,729,25365,731,37683,733,25367,735,46921,737,25369,739,37685,741,25371,743,43843,745,25373,747,37687,749,25375,751,48461,753,25377,755,37689,757,25379,759,43845,761,25381,763,37691,765,25383,767,46923,769,25385,771,37693,773,25387,775,43847,777,25389,779,37695,781,25391,783,49231,785,25393,787,37697,789,25395,791,43849,793,25397,795,37699,797,25399,799,46925,801,25401,803,37701,805,25403,807,43851,809,25405,811,37703,813,25407,815,48463,817,25409,819,37705,821,25411,823,43853,825,25413,827,37707,829,25415,831,46927,833,25417,835,37709,837,25419,839,43855,841,25421,843,37711,845,25423,847,49997,849,25425,851,37713,853,25427,855,43857,857,25429,859,37715,861,25431,863,46929,865,25433,867,37717,869,25435,871,43859,873,25437,875,37719,877,25439,879,48465,881,25441,883,37721,885,25443,887,43861,889,25445,891,37723,893,25447,895,46931,897,25449,899,37725,901,25451,903,43863,905,25453,907,37727,909,25455,911,49233,913,25457,915,37729,917,25459,919,43865,921,25461,923,37731,925,25463,927,46933,929,25465,931,37733,933,25467,935,43867,937,25469,939,37735,941,25471,943,48467,945,25473,947,37737,949,25475,951,43869,953,25477,955,37739,957,25479,959,46935,961,25481,963,37741,965,25483,967,43871,969,25485,971,37743,973,25487,975,49617,977,25489,979,37745,981,25491,983,43873,985,25493,987,37747,989,25495,991,46937,993,25497,995,37749,997,25499,999,43875,1001,25501,1003,37751,1005,25503,1007,48469,1009,25505,1011,37753,1013,25507,1015,43877,1017,25509,1019,37755,1021,25511,1023,46939,1025,25513,1027,37757,1029,25515,1031,43879,1033,25517,1035,37759,1037,25519,1039,49235,1041,25521,1043,37761,1045,25523,1047,43881,1049,25525,1051,37763,1053,25527,1055,46941,1057,25529,1059,37765,1061,25531,1063,43883,1065,25533,1067,37767,1069,25535,1071,48471,1073,25537,1075,37769,1077,25539,1079,43885,1081,25541,1083,37771,1085,25543,1087,46943,1089,25545,1091,37773,1093,25547,1095,43887,1097,25549,1099,37775,1101,25551,1103,49809,1105,25553,1107,37777,1109,25555,1111,43889,1113,25557,1115,37779,1117,25559,1119,46945,1121,25561,1123,37781,1125,25563,1127,43891,1129,25565,1131,37783,1133,25567,1135,48473,1137,25569,1139,37785,1141,25571,1143,43893,1145,25573,1147,37787,1149,25575,1151,46947,1153,25577,1155,37789,1157,25579,1159,43895,1161,25581,1163,37791,1165,25583,1167,49237,1169,25585,1171,37793,1173,25587,1175,43897,1177,25589,1179,37795,1181,25591,1183,46949,1185,25593,1187,37797,1189,25595,1191,43899,1193,25597,1195,37799,1197,25599,1199,48475,1201,25601,1203,37801,1205,25603,1207,43901,1209,25605,1211,37803,1213,25607,1215,46951,1217,25609,1219,37805,1221,25611,1223,43903,1225,25613,1227,37807,1229,25615,1231,49619,1233,25617,1235,37809,1237,25619,1239,43905,1241,25621,1243,37811,1245,25623,1247,46953,1249,25625,1251,37813,1253,25627,1255,43907,1257,25629,1259,37815,1261,25631,1263,48477,1265,25633,1267,37817,1269,25635,1271,43909,1273,25637,1275,37819,1277,25639,1279,46955,1281,25641,1283,37821,1285,25643,1287,43911,1289,25645,1291,37823,1293,25647,1295,49239,1297,25649,1299,37825,1301,25651,1303,43913,1305,25653,1307,37827,1309,25655,1311,46957,1313,25657,1315,37829,1317,25659,1319,43915,1321,25661,1323,37831,1325,25663,1327,48479,1329,25665,1331,37833,1333,25667,1335,43917,1337,25669,1339,37835,1341,25671,1343,46959,1345,25673,1347,37837,1349,25675,1351,43919,1353,25677,1355,37839,1357,25679,1359,49905,1361,25681,1363,37841,1365,25683,1367,43921,1369,25685,1371,37843,1373,25687,1375,46961,1377,25689,1379,37845,1381,25691,1383,43923,1385,25693,1387,37847,1389,25695,1391,48481,1393,25697,1395,37849,1397,25699,1399,43925,1401,25701,1403,37851,1405,25703,1407,46963,1409,25705,1411,37853,1413,25707,1415,43927,1417,25709,1419,37855,1421,25711,1423,49241,1425,25713,1427,37857,1429,25715,1431,43929,1433,25717,1435,37859,1437,25719,1439,46965,1441,25721,1443,37861,1445,25723,1447,43931,1449,25725,1451,37863,1453,25727,1455,48483,1457,25729,1459,37865,1461,25731,1463,43933,1465,25733,1467,37867,1469,25735,1471,46967,1473,25737,1475,37869,1477,25739,1479,43935,1481,25741,1483,37871,1485,25743,1487,49621,1489,25745,1491,37873,1493,25747,1495,43937,1497,25749,1499,37875,1501,25751,1503,46969,1505,25753,1507,37877,1509,25755,1511,43939,1513,25757,1515,37879,1517,25759,1519,48485,1521,25761,1523,37881,1525,25763,1527,43941,1529,25765,1531,37883,1533,25767,1535,46971,1537,25769,1539,37885,1541,25771,1543,43943,1545,25773,1547,37887,1549,25775,1551,49243,1553,25777,1555,37889,1557,25779,1559,43945,1561,25781,1563,37891,1565,25783,1567,46973,1569,25785,1571,37893,1573,25787,1575,43947,1577,25789,1579,37895,1581,25791,1583,48487,1585,25793,1587,37897,1589,25795,1591,43949,1593,25797,1595,37899,1597,25799,1599,46975,1601,25801,1603,37901,1605,25803,1607,43951,1609,25805,1611,37903,1613,25807,1615,49811,1617,25809,1619,37905,1621,25811,1623,43953,1625,25813,1627,37907,1629,25815,1631,46977,1633,25817,1635,37909,1637,25819,1639,43955,1641,25821,1643,37911,1645,25823,1647,48489,1649,25825,1651,37913,1653,25827,1655,43957,1657,25829,1659,37915,1661,25831,1663,46979,1665,25833,1667,37917,1669,25835,1671,43959,1673,25837,1675,37919,1677,25839,1679,49245,1681,25841,1683,37921,1685,25843,1687,43961,1689,25845,1691,37923,1693,25847,1695,46981,1697,25849,1699,37925,1701,25851,1703,43963,1705,25853,1707,37927,1709,25855,1711,48491,1713,25857,1715,37929,1717,25859,1719,43965,1721,25861,1723,37931,1725,25863,1727,46983,1729,25865,1731,37933,1733,25867,1735,43967,1737,25869,1739,37935,1741,25871,1743,49623,1745,25873,1747,37937,1749,25875,1751,43969,1753,25877,1755,37939,1757,25879,1759,46985,1761,25881,1763,37941,1765,25883,1767,43971,1769,25885,1771,37943,1773,25887,1775,48493,1777,25889,1779,37945,1781,25891,1783,43973,1785,25893,1787,37947,1789,25895,1791,46987,1793,25897,1795,37949,1797,25899,1799,43975,1801,25901,1803,37951,1805,25903,1807,49247,1809,25905,1811,37953,1813,25907,1815,43977,1817,25909,1819,37955,1821,25911,1823,46989,1825,25913,1827,37957,1829,25915,1831,43979,1833,25917,1835,37959,1837,25919,1839,48495,1841,25921,1843,37961,1845,25923,1847,43981,1849,25925,1851,37963,1853,25927,1855,46991,1857,25929,1859,37965,1861,25931,1863,43983,1865,25933,1867,37967,1869,25935,1871,49953,1873,25937,1875,37969,1877,25939,1879,43985,1881,25941,1883,37971,1885,25943,1887,46993,1889,25945,1891,37973,1893,25947,1895,43987,1897,25949,1899,37975,1901,25951,1903,48497,1905,25953,1907,37977,1909,25955,1911,43989,1913,25957,1915,37979,1917,25959,1919,46995,1921,25961,1923,37981,1925,25963,1927,43991,1929,25965,1931,37983,1933,25967,1935,49249,1937,25969,1939,37985,1941,25971,1943,43993,1945,25973,1947,37987,1949,25975,1951,46997,1953,25977,1955,37989,1957,25979,1959,43995,1961,25981,1963,37991,1965,25983,1967,48499,1969,25985,1971,37993,1973,25987,1975,43997,1977,25989,1979,37995,1981,25991,1983,46999,1985,25993,1987,37997,1989,25995,1991,43999,1993,25997,1995,37999,1997,25999,1999,49625,2001,26001,2003,38001,2005,26003,2007,44001,2009,26005,2011,38003,2013,26007,2015,47001,2017,26009,2019,38005,2021,26011,2023,44003,2025,26013,2027,38007,2029,26015,2031,48501,2033,26017,2035,38009,2037,26019,2039,44005,2041,26021,2043,38011,2045,26023,2047,47003,2049,26025,2051,38013,2053,26027,2055,44007,2057,26029,2059,38015,2061,26031,2063,49251,2065,26033,2067,38017,2069,26035,2071,44009,2073,26037,2075,38019,2077,26039,2079,47005,2081,26041,2083,38021,2085,26043,2087,44011,2089,26045,2091,38023,2093,26047,2095,48503,2097,26049,2099,38025,2101,26051,2103,44013,2105,26053,2107,38027,2109,26055,2111,47007,2113,26057,2115,38029,2117,26059,2119,44015,2121,26061,2123,38031,2125,26063,2127,49813,2129,26065,2131,38033,2133,26067,2135,44017,2137,26069,2139,38035,2141,26071,2143,47009,2145,26073,2147,38037,2149,26075,2151,44019,2153,26077,2155,38039,2157,26079,2159,48505,2161,26081,2163,38041,2165,26083,2167,44021,2169,26085,2171,38043,2173,26087,2175,47011,2177,26089,2179,38045,2181,26091,2183,44023,2185,26093,2187,38047,2189,26095,2191,49253,2193,26097,2195,38049,2197,26099,2199,44025,2201,26101,2203,38051,2205,26103,2207,47013,2209,26105,2211,38053,2213,26107,2215,44027,2217,26109,2219,38055,2221,26111,2223,48507,2225,26113,2227,38057,2229,26115,2231,44029,2233,26117,2235,38059,2237,26119,2239,47015,2241,26121,2243,38061,2245,26123,2247,44031,2249,26125,2251,38063,2253,26127,2255,49627,2257,26129,2259,38065,2261,26131,2263,44033,2265,26133,2267,38067,2269,26135,2271,47017,2273,26137,2275,38069,2277,26139,2279,44035,2281,26141,2283,38071,2285,26143,2287,48509,2289,26145,2291,38073,2293,26147,2295,44037,2297,26149,2299,38075,2301,26151,2303,47019,2305,26153,2307,38077,2309,26155,2311,44039,2313,26157,2315,38079,2317,26159,2319,49255,2321,26161,2323,38081,2325,26163,2327,44041,2329,26165,2331,38083,2333,26167,2335,47021,2337,26169,2339,38085,2341,26171,2343,44043,2345,26173,2347,38087,2349,26175,2351,48511,2353,26177,2355,38089,2357,26179,2359,44045,2361,26181,2363,38091,2365,26183,2367,47023,2369,26185,2371,38093,2373,26187,2375,44047,2377,26189,2379,38095,2381,26191,2383,49907,2385,26193,2387,38097,2389,26195,2391,44049,2393,26197,2395,38099,2397,26199,2399,47025,2401,26201,2403,38101,2405,26203,2407,44051,2409,26205,2411,38103,2413,26207,2415,48513,2417,26209,2419,38105,2421,26211,2423,44053,2425,26213,2427,38107,2429,26215,2431,47027,2433,26217,2435,38109,2437,26219,2439,44055,2441,26221,2443,38111,2445,26223,2447,49257,2449,26225,2451,38113,2453,26227,2455,44057,2457,26229,2459,38115,2461,26231,2463,47029,2465,26233,2467,38117,2469,26235,2471,44059,2473,26237,2475,38119,2477,26239,2479,48515,2481,26241,2483,38121,2485,26243,2487,44061,2489,26245,2491,38123,2493,26247,2495,47031,2497,26249,2499,38125,2501,26251,2503,44063,2505,26253,2507,38127,2509,26255,2511,49629,2513,26257,2515,38129,2517,26259,2519,44065,2521,26261,2523,38131,2525,26263,2527,47033,2529,26265,2531,38133,2533,26267,2535,44067,2537,26269,2539,38135,2541,26271,2543,48517,2545,26273,2547,38137,2549,26275,2551,44069,2553,26277,2555,38139,2557,26279,2559,47035,2561,26281,2563,38141,2565,26283,2567,44071,2569,26285,2571,38143,2573,26287,2575,49259,2577,26289,2579,38145,2581,26291,2583,44073,2585,26293,2587,38147,2589,26295,2591,47037,2593,26297,2595,38149,2597,26299,2599,44075,2601,26301,2603,38151,2605,26303,2607,48519,2609,26305,2611,38153,2613,26307,2615,44077,2617,26309,2619,38155,2621,26311,2623,47039,2625,26313,2627,38157,2629,26315,2631,44079,2633,26317,2635,38159,2637,26319,2639,49815,2641,26321,2643,38161,2645,26323,2647,44081,2649,26325,2651,38163,2653,26327,2655,47041,2657,26329,2659,38165,2661,26331,2663,44083,2665,26333,2667,38167,2669,26335,2671,48521,2673,26337,2675,38169,2677,26339,2679,44085,2681,26341,2683,38171,2685,26343,2687,47043,2689,26345,2691,38173,2693,26347,2695,44087,2697,26349,2699,38175,2701,26351,2703,49261,2705,26353,2707,38177,2709,26355,2711,44089,2713,26357,2715,38179,2717,26359,2719,47045,2721,26361,2723,38181,2725,26363,2727,44091,2729,26365,2731,38183,2733,26367,2735,48523,2737,26369,2739,38185,2741,26371,2743,44093,2745,26373,2747,38187,2749,26375,2751,47047,2753,26377,2755,38189,2757,26379,2759,44095,2761,26381,2763,38191,2765,26383,2767,49631,2769,26385,2771,38193,2773,26387,2775,44097,2777,26389,2779,38195,2781,26391,2783,47049,2785,26393,2787,38197,2789,26395,2791,44099,2793,26397,2795,38199,2797,26399,2799,48525,2801,26401,2803,38201,2805,26403,2807,44101,2809,26405,2811,38203,2813,26407,2815,47051,2817,26409,2819,38205,2821,26411,2823,44103,2825,26413,2827,38207,2829,26415,2831,49263,2833,26417,2835,38209,2837,26419,2839,44105,2841,26421,2843,38211,2845,26423,2847,47053,2849,26425,2851,38213,2853,26427,2855,44107,2857,26429,2859,38215,2861,26431,2863,48527,2865,26433,2867,38217,2869,26435,2871,44109,2873,26437,2875,38219,2877,26439,2879,47055,2881,26441,2883,38221,2885,26443,2887,44111,2889,26445,2891,38223,2893,26447,2895,49977,2897,26449,2899,38225,2901,26451,2903,44113,2905,26453,2907,38227,2909,26455,2911,47057,2913,26457,2915,38229,2917,26459,2919,44115,2921,26461,2923,38231,2925,26463,2927,48529,2929,26465,2931,38233,2933,26467,2935,44117,2937,26469,2939,38235,2941,26471,2943,47059,2945,26473,2947,38237,2949,26475,2951,44119,2953,26477,2955,38239,2957,26479,2959,49265,2961,26481,2963,38241,2965,26483,2967,44121,2969,26485,2971,38243,2973,26487,2975,47061,2977,26489,2979,38245,2981,26491,2983,44123,2985,26493,2987,38247,2989,26495,2991,48531,2993,26497,2995,38249,2997,26499,2999,44125,3001,26501,3003,38251,3005,26503,3007,47063,3009,26505,3011,38253,3013,26507,3015,44127,3017,26509,3019,38255,3021,26511,3023,49633,3025,26513,3027,38257,3029,26515,3031,44129,3033,26517,3035,38259,3037,26519,3039,47065,3041,26521,3043,38261,3045,26523,3047,44131,3049,26525,3051,38263,3053,26527,3055,48533,3057,26529,3059,38265,3061,26531,3063,44133,3065,26533,3067,38267,3069,26535,3071,47067,3073,26537,3075,38269,3077,26539,3079,44135,3081,26541,3083,38271,3085,26543,3087,49267,3089,26545,3091,38273,3093,26547,3095,44137,3097,26549,3099,38275,3101,26551,3103,47069,3105,26553,3107,38277,3109,26555,3111,44139,3113,26557,3115,38279,3117,26559,3119,48535,3121,26561,3123,38281,3125,26563,3127,44141,3129,26565,3131,38283,3133,26567,3135,47071,3137,26569,3139,38285,3141,26571,3143,44143,3145,26573,3147,38287,3149,26575,3151,49817,3153,26577,3155,38289,3157,26579,3159,44145,3161,26581,3163,38291,3165,26583,3167,47073,3169,26585,3171,38293,3173,26587,3175,44147,3177,26589,3179,38295,3181,26591,3183,48537,3185,26593,3187,38297,3189,26595,3191,44149,3193,26597,3195,38299,3197,26599,3199,47075,3201,26601,3203,38301,3205,26603,3207,44151,3209,26605,3211,38303,3213,26607,3215,49269,3217,26609,3219,38305,3221,26611,3223,44153,3225,26613,3227,38307,3229,26615,3231,47077,3233,26617,3235,38309,3237,26619,3239,44155,3241,26621,3243,38311,3245,26623,3247,48539,3249,26625,3251,38313,3253,26627,3255,44157,3257,26629,3259,38315,3261,26631,3263,47079,3265,26633,3267,38317,3269,26635,3271,44159,3273,26637,3275,38319,3277,26639,3279,49635,3281,26641,3283,38321,3285,26643,3287,44161,3289,26645,3291,38323,3293,26647,3295,47081,3297,26649,3299,38325,3301,26651,3303,44163,3305,26653,3307,38327,3309,26655,3311,48541,3313,26657,3315,38329,3317,26659,3319,44165,3321,26661,3323,38331,3325,26663,3327,47083,3329,26665,3331,38333,3333,26667,3335,44167,3337,26669,3339,38335,3341,26671,3343,49271,3345,26673,3347,38337,3349,26675,3351,44169,3353,26677,3355,38339,3357,26679,3359,47085,3361,26681,3363,38341,3365,26683,3367,44171,3369,26685,3371,38343,3373,26687,3375,48543,3377,26689,3379,38345,3381,26691,3383,44173,3385,26693,3387,38347,3389,26695,3391,47087,3393,26697,3395,38349,3397,26699,3399,44175,3401,26701,3403,38351,3405,26703,3407,49909,3409,26705,3411,38353,3413,26707,3415,44177,3417,26709,3419,38355,3421,26711,3423,47089,3425,26713,3427,38357,3429,26715,3431,44179,3433,26717,3435,38359,3437,26719,3439,48545,3441,26721,3443,38361,3445,26723,3447,44181,3449,26725,3451,38363,3453,26727,3455,47091,3457,26729,3459,38365,3461,26731,3463,44183,3465,26733,3467,38367,3469,26735,3471,49273,3473,26737,3475,38369,3477,26739,3479,44185,3481,26741,3483,38371,3485,26743,3487,47093,3489,26745,3491,38373,3493,26747,3495,44187,3497,26749,3499,38375,3501,26751,3503,48547,3505,26753,3507,38377,3509,26755,3511,44189,3513,26757,3515,38379,3517,26759,3519,47095,3521,26761,3523,38381,3525,26763,3527,44191,3529,26765,3531,38383,3533,26767,3535,49637,3537,26769,3539,38385,3541,26771,3543,44193,3545,26773,3547,38387,3549,26775,3551,47097,3553,26777,3555,38389,3557,26779,3559,44195,3561,26781,3563,38391,3565,26783,3567,48549,3569,26785,3571,38393,3573,26787,3575,44197,3577,26789,3579,38395,3581,26791,3583,47099,3585,26793,3587,38397,3589,26795,3591,44199,3593,26797,3595,38399,3597,26799,3599,49275,3601,26801,3603,38401,3605,26803,3607,44201,3609,26805,3611,38403,3613,26807,3615,47101,3617,26809,3619,38405,3621,26811,3623,44203,3625,26813,3627,38407,3629,26815,3631,48551,3633,26817,3635,38409,3637,26819,3639,44205,3641,26821,3643,38411,3645,26823,3647,47103,3649,26825,3651,38413,3653,26827,3655,44207,3657,26829,3659,38415,3661,26831,3663,49819,3665,26833,3667,38417,3669,26835,3671,44209,3673,26837,3675,38419,3677,26839,3679,47105,3681,26841,3683,38421,3685,26843,3687,44211,3689,26845,3691,38423,3693,26847,3695,48553,3697,26849,3699,38425,3701,26851,3703,44213,3705,26853,3707,38427,3709,26855,3711,47107,3713,26857,3715,38429,3717,26859,3719,44215,3721,26861,3723,38431,3725,26863,3727,49277,3729,26865,3731,38433,3733,26867,3735,44217,3737,26869,3739,38435,3741,26871,3743,47109,3745,26873,3747,38437,3749,26875,3751,44219,3753,26877,3755,38439,3757,26879,3759,48555,3761,26881,3763,38441,3765,26883,3767,44221,3769,26885,3771,38443,3773,26887,3775,47111,3777,26889,3779,38445,3781,26891,3783,44223,3785,26893,3787,38447,3789,26895,3791,49639,3793,26897,3795,38449,3797,26899,3799,44225,3801,26901,3803,38451,3805,26903,3807,47113,3809,26905,3811,38453,3813,26907,3815,44227,3817,26909,3819,38455,3821,26911,3823,48557,3825,26913,3827,38457,3829,26915,3831,44229,3833,26917,3835,38459,3837,26919,3839,47115,3841,26921,3843,38461,3845,26923,3847,44231,3849,26925,3851,38463,3853,26927,3855,49279,3857,26929,3859,38465,3861,26931,3863,44233,3865,26933,3867,38467,3869,26935,3871,47117,3873,26937,3875,38469,3877,26939,3879,44235,3881,26941,3883,38471,3885,26943,3887,48559,3889,26945,3891,38473,3893,26947,3895,44237,3897,26949,3899,38475,3901,26951,3903,47119,3905,26953,3907,38477,3909,26955,3911,44239,3913,26957,3915,38479,3917,26959,3919,49955,3921,26961,3923,38481,3925,26963,3927,44241,3929,26965,3931,38483,3933,26967,3935,47121,3937,26969,3939,38485,3941,26971,3943,44243,3945,26973,3947,38487,3949,26975,3951,48561,3953,26977,3955,38489,3957,26979,3959,44245,3961,26981,3963,38491,3965,26983,3967,47123,3969,26985,3971,38493,3973,26987,3975,44247,3977,26989,3979,38495,3981,26991,3983,49281,3985,26993,3987,38497,3989,26995,3991,44249,3993,26997,3995,38499,3997,26999,3999,47125,4001,27001,4003,38501,4005,27003,4007,44251,4009,27005,4011,38503,4013,27007,4015,48563,4017,27009,4019,38505,4021,27011,4023,44253,4025,27013,4027,38507,4029,27015,4031,47127,4033,27017,4035,38509,4037,27019,4039,44255,4041,27021,4043,38511,4045,27023,4047,49641,4049,27025,4051,38513,4053,27027,4055,44257,4057,27029,4059,38515,4061,27031,4063,47129,4065,27033,4067,38517,4069,27035,4071,44259,4073,27037,4075,38519,4077,27039,4079,48565,4081,27041,4083,38521,4085,27043,4087,44261,4089,27045,4091,38523,4093,27047,4095,47131,4097,27049,4099,38525,4101,27051,4103,44263,4105,27053,4107,38527,4109,27055,4111,49283,4113,27057,4115,38529,4117,27059,4119,44265,4121,27061,4123,38531,4125,27063,4127,47133,4129,27065,4131,38533,4133,27067,4135,44267,4137,27069,4139,38535,4141,27071,4143,48567,4145,27073,4147,38537,4149,27075,4151,44269,4153,27077,4155,38539,4157,27079,4159,47135,4161,27081,4163,38541,4165,27083,4167,44271,4169,27085,4171,38543,4173,27087,4175,49821,4177,27089,4179,38545,4181,27091,4183,44273,4185,27093,4187,38547,4189,27095,4191,47137,4193,27097,4195,38549,4197,27099,4199,44275,4201,27101,4203,38551,4205,27103,4207,48569,4209,27105,4211,38553,4213,27107,4215,44277,4217,27109,4219,38555,4221,27111,4223,47139,4225,27113,4227,38557,4229,27115,4231,44279,4233,27117,4235,38559,4237,27119,4239,49285,4241,27121,4243,38561,4245,27123,4247,44281,4249,27125,4251,38563,4253,27127,4255,47141,4257,27129,4259,38565,4261,27131,4263,44283,4265,27133,4267,38567,4269,27135,4271,48571,4273,27137,4275,38569,4277,27139,4279,44285,4281,27141,4283,38571,4285,27143,4287,47143,4289,27145,4291,38573,4293,27147,4295,44287,4297,27149,4299,38575,4301,27151,4303,49643,4305,27153,4307,38577,4309,27155,4311,44289,4313,27157,4315,38579,4317,27159,4319,47145,4321,27161,4323,38581,4325,27163,4327,44291,4329,27165,4331,38583,4333,27167,4335,48573,4337,27169,4339,38585,4341,27171,4343,44293,4345,27173,4347,38587,4349,27175,4351,47147,4353,27177,4355,38589,4357,27179,4359,44295,4361,27181,4363,38591,4365,27183,4367,49287,4369,27185,4371,38593,4373,27187,4375,44297,4377,27189,4379,38595,4381,27191,4383,47149,4385,27193,4387,38597,4389,27195,4391,44299,4393,27197,4395,38599,4397,27199,4399,48575,4401,27201,4403,38601,4405,27203,4407,44301,4409,27205,4411,38603,4413,27207,4415,47151,4417,27209,4419,38605,4421,27211,4423,44303,4425,27213,4427,38607,4429,27215,4431,49911,4433,27217,4435,38609,4437,27219,4439,44305,4441,27221,4443,38611,4445,27223,4447,47153,4449,27225,4451,38613,4453,27227,4455,44307,4457,27229,4459,38615,4461,27231,4463,48577,4465,27233,4467,38617,4469,27235,4471,44309,4473,27237,4475,38619,4477,27239,4479,47155,4481,27241,4483,38621,4485,27243,4487,44311,4489,27245,4491,38623,4493,27247,4495,49289,4497,27249,4499,38625,4501,27251,4503,44313,4505,27253,4507,38627,4509,27255,4511,47157,4513,27257,4515,38629,4517,27259,4519,44315,4521,27261,4523,38631,4525,27263,4527,48579,4529,27265,4531,38633,4533,27267,4535,44317,4537,27269,4539,38635,4541,27271,4543,47159,4545,27273,4547,38637,4549,27275,4551,44319,4553,27277,4555,38639,4557,27279,4559,49645,4561,27281,4563,38641,4565,27283,4567,44321,4569,27285,4571,38643,4573,27287,4575,47161,4577,27289,4579,38645,4581,27291,4583,44323,4585,27293,4587,38647,4589,27295,4591,48581,4593,27297,4595,38649,4597,27299,4599,44325,4601,27301,4603,38651,4605,27303,4607,47163,4609,27305,4611,38653,4613,27307,4615,44327,4617,27309,4619,38655,4621,27311,4623,49291,4625,27313,4627,38657,4629,27315,4631,44329,4633,27317,4635,38659,4637,27319,4639,47165,4641,27321,4643,38661,4645,27323,4647,44331,4649,27325,4651,38663,4653,27327,4655,48583,4657,27329,4659,38665,4661,27331,4663,44333,4665,27333,4667,38667,4669,27335,4671,47167,4673,27337,4675,38669,4677,27339,4679,44335,4681,27341,4683,38671,4685,27343,4687,49823,4689,27345,4691,38673,4693,27347,4695,44337,4697,27349,4699,38675,4701,27351,4703,47169,4705,27353,4707,38677,4709,27355,4711,44339,4713,27357,4715,38679,4717,27359,4719,48585,4721,27361,4723,38681,4725,27363,4727,44341,4729,27365,4731,38683,4733,27367,4735,47171,4737,27369,4739,38685,4741,27371,4743,44343,4745,27373,4747,38687,4749,27375,4751,49293,4753,27377,4755,38689,4757,27379,4759,44345,4761,27381,4763,38691,4765,27383,4767,47173,4769,27385,4771,38693,4773,27387,4775,44347,4777,27389,4779,38695,4781,27391,4783,48587,4785,27393,4787,38697,4789,27395,4791,44349,4793,27397,4795,38699,4797,27399,4799,47175,4801,27401,4803,38701,4805,27403,4807,44351,4809,27405,4811,38703,4813,27407,4815,49647,4817,27409,4819,38705,4821,27411,4823,44353,4825,27413,4827,38707,4829,27415,4831,47177,4833,27417,4835,38709,4837,27419,4839,44355,4841,27421,4843,38711,4845,27423,4847,48589,4849,27425,4851,38713,4853,27427,4855,44357,4857,27429,4859,38715,4861,27431,4863,47179,4865,27433,4867,38717,4869,27435,4871,44359,4873,27437,4875,38719,4877,27439,4879,49295,4881,27441,4883,38721,4885,27443,4887,44361,4889,27445,4891,38723,4893,27447,4895,47181,4897,27449,4899,38725,4901,27451,4903,44363,4905,27453,4907,38727,4909,27455,4911,48591,4913,27457,4915,38729,4917,27459,4919,44365,4921,27461,4923,38731,4925,27463,4927,47183,4929,27465,4931,38733,4933,27467,4935,44367,4937,27469,4939,38735,4941,27471,4943,49989,4945,27473,4947,38737,4949,27475,4951,44369,4953,27477,4955,38739,4957,27479,4959,47185,4961,27481,4963,38741,4965,27483,4967,44371,4969,27485,4971,38743,4973,27487,4975,48593,4977,27489,4979,38745,4981,27491,4983,44373,4985,27493,4987,38747,4989,27495,4991,47187,4993,27497,4995,38749,4997,27499,4999,44375,5001,27501,5003,38751,5005,27503,5007,49297,5009,27505,5011,38753,5013,27507,5015,44377,5017,27509,5019,38755,5021,27511,5023,47189,5025,27513,5027,38757,5029,27515,5031,44379,5033,27517,5035,38759,5037,27519,5039,48595,5041,27521,5043,38761,5045,27523,5047,44381,5049,27525,5051,38763,5053,27527,5055,47191,5057,27529,5059,38765,5061,27531,5063,44383,5065,27533,5067,38767,5069,27535,5071,49649,5073,27537,5075,38769,5077,27539,5079,44385,5081,27541,5083,38771,5085,27543,5087,47193,5089,27545,5091,38773,5093,27547,5095,44387,5097,27549,5099,38775,5101,27551,5103,48597,5105,27553,5107,38777,5109,27555,5111,44389,5113,27557,5115,38779,5117,27559,5119,47195,5121,27561,5123,38781,5125,27563,5127,44391,5129,27565,5131,38783,5133,27567,5135,49299,5137,27569,5139,38785,5141,27571,5143,44393,5145,27573,5147,38787,5149,27575,5151,47197,5153,27577,5155,38789,5157,27579,5159,44395,5161,27581,5163,38791,5165,27583,5167,48599,5169,27585,5171,38793,5173,27587,5175,44397,5177,27589,5179,38795,5181,27591,5183,47199,5185,27593,5187,38797,5189,27595,5191,44399,5193,27597,5195,38799,5197,27599,5199,49825,5201,27601,5203,38801,5205,27603,5207,44401,5209,27605,5211,38803,5213,27607,5215,47201,5217,27609,5219,38805,5221,27611,5223,44403,5225,27613,5227,38807,5229,27615,5231,48601,5233,27617,5235,38809,5237,27619,5239,44405,5241,27621,5243,38811,5245,27623,5247,47203,5249,27625,5251,38813,5253,27627,5255,44407,5257,27629,5259,38815,5261,27631,5263,49301,5265,27633,5267,38817,5269,27635,5271,44409,5273,27637,5275,38819,5277,27639,5279,47205,5281,27641,5283,38821,5285,27643,5287,44411,5289,27645,5291,38823,5293,27647,5295,48603,5297,27649,5299,38825,5301,27651,5303,44413,5305,27653,5307,38827,5309,27655,5311,47207,5313,27657,5315,38829,5317,27659,5319,44415,5321,27661,5323,38831,5325,27663,5327,49651,5329,27665,5331,38833,5333,27667,5335,44417,5337,27669,5339,38835,5341,27671,5343,47209,5345,27673,5347,38837,5349,27675,5351,44419,5353,27677,5355,38839,5357,27679,5359,48605,5361,27681,5363,38841,5365,27683,5367,44421,5369,27685,5371,38843,5373,27687,5375,47211,5377,27689,5379,38845,5381,27691,5383,44423,5385,27693,5387,38847,5389,27695,5391,49303,5393,27697,5395,38849,5397,27699,5399,44425,5401,27701,5403,38851,5405,27703,5407,47213,5409,27705,5411,38853,5413,27707,5415,44427,5417,27709,5419,38855,5421,27711,5423,48607,5425,27713,5427,38857,5429,27715,5431,44429,5433,27717,5435,38859,5437,27719,5439,47215,5441,27721,5443,38861,5445,27723,5447,44431,5449,27725,5451,38863,5453,27727,5455,49913,5457,27729,5459,38865,5461,27731,5463,44433,5465,27733,5467,38867,5469,27735,5471,47217,5473,27737,5475,38869,5477,27739,5479,44435,5481,27741,5483,38871,5485,27743,5487,48609,5489,27745,5491,38873,5493,27747,5495,44437,5497,27749,5499,38875,5501,27751,5503,47219,5505,27753,5507,38877,5509,27755,5511,44439,5513,27757,5515,38879,5517,27759,5519,49305,5521,27761,5523,38881,5525,27763,5527,44441,5529,27765,5531,38883,5533,27767,5535,47221,5537,27769,5539,38885,5541,27771,5543,44443,5545,27773,5547,38887,5549,27775,5551,48611,5553,27777,5555,38889,5557,27779,5559,44445,5561,27781,5563,38891,5565,27783,5567,47223,5569,27785,5571,38893,5573,27787,5575,44447,5577,27789,5579,38895,5581,27791,5583,49653,5585,27793,5587,38897,5589,27795,5591,44449,5593,27797,5595,38899,5597,27799,5599,47225,5601,27801,5603,38901,5605,27803,5607,44451,5609,27805,5611,38903,5613,27807,5615,48613,5617,27809,5619,38905,5621,27811,5623,44453,5625,27813,5627,38907,5629,27815,5631,47227,5633,27817,5635,38909,5637,27819,5639,44455,5641,27821,5643,38911,5645,27823,5647,49307,5649,27825,5651,38913,5653,27827,5655,44457,5657,27829,5659,38915,5661,27831,5663,47229,5665,27833,5667,38917,5669,27835,5671,44459,5673,27837,5675,38919,5677,27839,5679,48615,5681,27841,5683,38921,5685,27843,5687,44461,5689,27845,5691,38923,5693,27847,5695,47231,5697,27849,5699,38925,5701,27851,5703,44463,5705,27853,5707,38927,5709,27855,5711,49827,5713,27857,5715,38929,5717,27859,5719,44465,5721,27861,5723,38931,5725,27863,5727,47233,5729,27865,5731,38933,5733,27867,5735,44467,5737,27869,5739,38935,5741,27871,5743,48617,5745,27873,5747,38937,5749,27875,5751,44469,5753,27877,5755,38939,5757,27879,5759,47235,5761,27881,5763,38941,5765,27883,5767,44471,5769,27885,5771,38943,5773,27887,5775,49309,5777,27889,5779,38945,5781,27891,5783,44473,5785,27893,5787,38947,5789,27895,5791,47237,5793,27897,5795,38949,5797,27899,5799,44475,5801,27901,5803,38951,5805,27903,5807,48619,5809,27905,5811,38953,5813,27907,5815,44477,5817,27909,5819,38955,5821,27911,5823,47239,5825,27913,5827,38957,5829,27915,5831,44479,5833,27917,5835,38959,5837,27919,5839,49655,5841,27921,5843,38961,5845,27923,5847,44481,5849,27925,5851,38963,5853,27927,5855,47241,5857,27929,5859,38965,5861,27931,5863,44483,5865,27933,5867,38967,5869,27935,5871,48621,5873,27937,5875,38969,5877,27939,5879,44485,5881,27941,5883,38971,5885,27943,5887,47243,5889,27945,5891,38973,5893,27947,5895,44487,5897,27949,5899,38975,5901,27951,5903,49311,5905,27953,5907,38977,5909,27955,5911,44489,5913,27957,5915,38979,5917,27959,5919,47245,5921,27961,5923,38981,5925,27963,5927,44491,5929,27965,5931,38983,5933,27967,5935,48623,5937,27969,5939,38985,5941,27971,5943,44493,5945,27973,5947,38987,5949,27975,5951,47247,5953,27977,5955,38989,5957,27979,5959,44495,5961,27981,5963,38991,5965,27983,5967,49957,5969,27985,5971,38993,5973,27987,5975,44497,5977,27989,5979,38995,5981,27991,5983,47249,5985,27993,5987,38997,5989,27995,5991,44499,5993,27997,5995,38999,5997,27999,5999,48625,6001,28001,6003,39001,6005,28003,6007,44501,6009,28005,6011,39003,6013,28007,6015,47251,6017,28009,6019,39005,6021,28011,6023,44503,6025,28013,6027,39007,6029,28015,6031,49313,6033,28017,6035,39009,6037,28019,6039,44505,6041,28021,6043,39011,6045,28023,6047,47253,6049,28025,6051,39013,6053,28027,6055,44507,6057,28029,6059,39015,6061,28031,6063,48627,6065,28033,6067,39017,6069,28035,6071,44509,6073,28037,6075,39019,6077,28039,6079,47255,6081,28041,6083,39021,6085,28043,6087,44511,6089,28045,6091,39023,6093,28047,6095,49657,6097,28049,6099,39025,6101,28051,6103,44513,6105,28053,6107,39027,6109,28055,6111,47257,6113,28057,6115,39029,6117,28059,6119,44515,6121,28061,6123,39031,6125,28063,6127,48629,6129,28065,6131,39033,6133,28067,6135,44517,6137,28069,6139,39035,6141,28071,6143,47259,6145,28073,6147,39037,6149,28075,6151,44519,6153,28077,6155,39039,6157,28079,6159,49315,6161,28081,6163,39041,6165,28083,6167,44521,6169,28085,6171,39043,6173,28087,6175,47261,6177,28089,6179,39045,6181,28091,6183,44523,6185,28093,6187,39047,6189,28095,6191,48631,6193,28097,6195,39049,6197,28099,6199,44525,6201,28101,6203,39051,6205,28103,6207,47263,6209,28105,6211,39053,6213,28107,6215,44527,6217,28109,6219,39055,6221,28111,6223,49829,6225,28113,6227,39057,6229,28115,6231,44529,6233,28117,6235,39059,6237,28119,6239,47265,6241,28121,6243,39061,6245,28123,6247,44531,6249,28125,6251,39063,6253,28127,6255,48633,6257,28129,6259,39065,6261,28131,6263,44533,6265,28133,6267,39067,6269,28135,6271,47267,6273,28137,6275,39069,6277,28139,6279,44535,6281,28141,6283,39071,6285,28143,6287,49317,6289,28145,6291,39073,6293,28147,6295,44537,6297,28149,6299,39075,6301,28151,6303,47269,6305,28153,6307,39077,6309,28155,6311,44539,6313,28157,6315,39079,6317,28159,6319,48635,6321,28161,6323,39081,6325,28163,6327,44541,6329,28165,6331,39083,6333,28167,6335,47271,6337,28169,6339,39085,6341,28171,6343,44543,6345,28173,6347,39087,6349,28175,6351,49659,6353,28177,6355,39089,6357,28179,6359,44545,6361,28181,6363,39091,6365,28183,6367,47273,6369,28185,6371,39093,6373,28187,6375,44547,6377,28189,6379,39095,6381,28191,6383,48637,6385,28193,6387,39097,6389,28195,6391,44549,6393,28197,6395,39099,6397,28199,6399,47275,6401,28201,6403,39101,6405,28203,6407,44551,6409,28205,6411,39103,6413,28207,6415,49319,6417,28209,6419,39105,6421,28211,6423,44553,6425,28213,6427,39107,6429,28215,6431,47277,6433,28217,6435,39109,6437,28219,6439,44555,6441,28221,6443,39111,6445,28223,6447,48639,6449,28225,6451,39113,6453,28227,6455,44557,6457,28229,6459,39115,6461,28231,6463,47279,6465,28233,6467,39117,6469,28235,6471,44559,6473,28237,6475,39119,6477,28239,6479,49915,6481,28241,6483,39121,6485,28243,6487,44561,6489,28245,6491,39123,6493,28247,6495,47281,6497,28249,6499,39125,6501,28251,6503,44563,6505,28253,6507,39127,6509,28255,6511,48641,6513,28257,6515,39129,6517,28259,6519,44565,6521,28261,6523,39131,6525,28263,6527,47283,6529,28265,6531,39133,6533,28267,6535,44567,6537,28269,6539,39135,6541,28271,6543,49321,6545,28273,6547,39137,6549,28275,6551,44569,6553,28277,6555,39139,6557,28279,6559,47285,6561,28281,6563,39141,6565,28283,6567,44571,6569,28285,6571,39143,6573,28287,6575,48643,6577,28289,6579,39145,6581,28291,6583,44573,6585,28293,6587,39147,6589,28295,6591,47287,6593,28297,6595,39149,6597,28299,6599,44575,6601,28301,6603,39151,6605,28303,6607,49661,6609,28305,6611,39153,6613,28307,6615,44577,6617,28309,6619,39155,6621,28311,6623,47289,6625,28313,6627,39157,6629,28315,6631,44579,6633,28317,6635,39159,6637,28319,6639,48645,6641,28321,6643,39161,6645,28323,6647,44581,6649,28325,6651,39163,6653,28327,6655,47291,6657,28329,6659,39165,6661,28331,6663,44583,6665,28333,6667,39167,6669,28335,6671,49323,6673,28337,6675,39169,6677,28339,6679,44585,6681,28341,6683,39171,6685,28343,6687,47293,6689,28345,6691,39173,6693,28347,6695,44587,6697,28349,6699,39175,6701,28351,6703,48647,6705,28353,6707,39177,6709,28355,6711,44589,6713,28357,6715,39179,6717,28359,6719,47295,6721,28361,6723,39181,6725,28363,6727,44591,6729,28365,6731,39183,6733,28367,6735,49831,6737,28369,6739,39185,6741,28371,6743,44593,6745,28373,6747,39187,6749,28375,6751,47297,6753,28377,6755,39189,6757,28379,6759,44595,6761,28381,6763,39191,6765,28383,6767,48649,6769,28385,6771,39193,6773,28387,6775,44597,6777,28389,6779,39195,6781,28391,6783,47299,6785,28393,6787,39197,6789,28395,6791,44599,6793,28397,6795,39199,6797,28399,6799,49325,6801,28401,6803,39201,6805,28403,6807,44601,6809,28405,6811,39203,6813,28407,6815,47301,6817,28409,6819,39205,6821,28411,6823,44603,6825,28413,6827,39207,6829,28415,6831,48651,6833,28417,6835,39209,6837,28419,6839,44605,6841,28421,6843,39211,6845,28423,6847,47303,6849,28425,6851,39213,6853,28427,6855,44607,6857,28429,6859,39215,6861,28431,6863,49663,6865,28433,6867,39217,6869,28435,6871,44609,6873,28437,6875,39219,6877,28439,6879,47305,6881,28441,6883,39221,6885,28443,6887,44611,6889,28445,6891,39223,6893,28447,6895,48653,6897,28449,6899,39225,6901,28451,6903,44613,6905,28453,6907,39227,6909,28455,6911,47307,6913,28457,6915,39229,6917,28459,6919,44615,6921,28461,6923,39231,6925,28463,6927,49327,6929,28465,6931,39233,6933,28467,6935,44617,6937,28469,6939,39235,6941,28471,6943,47309,6945,28473,6947,39237,6949,28475,6951,44619,6953,28477,6955,39239,6957,28479,6959,48655,6961,28481,6963,39241,6965,28483,6967,44621,6969,28485,6971,39243,6973,28487,6975,47311,6977,28489,6979,39245,6981,28491,6983,44623,6985,28493,6987,39247,6989,28495,6991,49979,6993,28497,6995,39249,6997,28499,6999,44625,7001,28501,7003,39251,7005,28503,7007,47313,7009,28505,7011,39253,7013,28507,7015,44627,7017,28509,7019,39255,7021,28511,7023,48657,7025,28513,7027,39257,7029,28515,7031,44629,7033,28517,7035,39259,7037,28519,7039,47315,7041,28521,7043,39261,7045,28523,7047,44631,7049,28525,7051,39263,7053,28527,7055,49329,7057,28529,7059,39265,7061,28531,7063,44633,7065,28533,7067,39267,7069,28535,7071,47317,7073,28537,7075,39269,7077,28539,7079,44635,7081,28541,7083,39271,7085,28543,7087,48659,7089,28545,7091,39273,7093,28547,7095,44637,7097,28549,7099,39275,7101,28551,7103,47319,7105,28553,7107,39277,7109,28555,7111,44639,7113,28557,7115,39279,7117,28559,7119,49665,7121,28561,7123,39281,7125,28563,7127,44641,7129,28565,7131,39283,7133,28567,7135,47321,7137,28569,7139,39285,7141,28571,7143,44643,7145,28573,7147,39287,7149,28575,7151,48661,7153,28577,7155,39289,7157,28579,7159,44645,7161,28581,7163,39291,7165,28583,7167,47323,7169,28585,7171,39293,7173,28587,7175,44647,7177,28589,7179,39295,7181,28591,7183,49331,7185,28593,7187,39297,7189,28595,7191,44649,7193,28597,7195,39299,7197,28599,7199,47325,7201,28601,7203,39301,7205,28603,7207,44651,7209,28605,7211,39303,7213,28607,7215,48663,7217,28609,7219,39305,7221,28611,7223,44653,7225,28613,7227,39307,7229,28615,7231,47327,7233,28617,7235,39309,7237,28619,7239,44655,7241,28621,7243,39311,7245,28623,7247,49833,7249,28625,7251,39313,7253,28627,7255,44657,7257,28629,7259,39315,7261,28631,7263,47329,7265,28633,7267,39317,7269,28635,7271,44659,7273,28637,7275,39319,7277,28639,7279,48665,7281,28641,7283,39321,7285,28643,7287,44661,7289,28645,7291,39323,7293,28647,7295,47331,7297,28649,7299,39325,7301,28651,7303,44663,7305,28653,7307,39327,7309,28655,7311,49333,7313,28657,7315,39329,7317,28659,7319,44665,7321,28661,7323,39331,7325,28663,7327,47333,7329,28665,7331,39333,7333,28667,7335,44667,7337,28669,7339,39335,7341,28671,7343,48667,7345,28673,7347,39337,7349,28675,7351,44669,7353,28677,7355,39339,7357,28679,7359,47335,7361,28681,7363,39341,7365,28683,7367,44671,7369,28685,7371,39343,7373,28687,7375,49667,7377,28689,7379,39345,7381,28691,7383,44673,7385,28693,7387,39347,7389,28695,7391,47337,7393,28697,7395,39349,7397,28699,7399,44675,7401,28701,7403,39351,7405,28703,7407,48669,7409,28705,7411,39353,7413,28707,7415,44677,7417,28709,7419,39355,7421,28711,7423,47339,7425,28713,7427,39357,7429,28715,7431,44679,7433,28717,7435,39359,7437,28719,7439,49335,7441,28721,7443,39361,7445,28723,7447,44681,7449,28725,7451,39363,7453,28727,7455,47341,7457,28729,7459,39365,7461,28731,7463,44683,7465,28733,7467,39367,7469,28735,7471,48671,7473,28737,7475,39369,7477,28739,7479,44685,7481,28741,7483,39371,7485,28743,7487,47343,7489,28745,7491,39373,7493,28747,7495,44687,7497,28749,7499,39375,7501,28751,7503,49917,7505,28753,7507,39377,7509,28755,7511,44689,7513,28757,7515,39379,7517,28759,7519,47345,7521,28761,7523,39381,7525,28763,7527,44691,7529,28765,7531,39383,7533,28767,7535,48673,7537,28769,7539,39385,7541,28771,7543,44693,7545,28773,7547,39387,7549,28775,7551,47347,7553,28777,7555,39389,7557,28779,7559,44695,7561,28781,7563,39391,7565,28783,7567,49337,7569,28785,7571,39393,7573,28787,7575,44697,7577,28789,7579,39395,7581,28791,7583,47349,7585,28793,7587,39397,7589,28795,7591,44699,7593,28797,7595,39399,7597,28799,7599,48675,7601,28801,7603,39401,7605,28803,7607,44701,7609,28805,7611,39403,7613,28807,7615,47351,7617,28809,7619,39405,7621,28811,7623,44703,7625,28813,7627,39407,7629,28815,7631,49669,7633,28817,7635,39409,7637,28819,7639,44705,7641,28821,7643,39411,7645,28823,7647,47353,7649,28825,7651,39413,7653,28827,7655,44707,7657,28829,7659,39415,7661,28831,7663,48677,7665,28833,7667,39417,7669,28835,7671,44709,7673,28837,7675,39419,7677,28839,7679,47355,7681,28841,7683,39421,7685,28843,7687,44711,7689,28845,7691,39423,7693,28847,7695,49339,7697,28849,7699,39425,7701,28851,7703,44713,7705,28853,7707,39427,7709,28855,7711,47357,7713,28857,7715,39429,7717,28859,7719,44715,7721,28861,7723,39431,7725,28863,7727,48679,7729,28865,7731,39433,7733,28867,7735,44717,7737,28869,7739,39435,7741,28871,7743,47359,7745,28873,7747,39437,7749,28875,7751,44719,7753,28877,7755,39439,7757,28879,7759,49835,7761,28881,7763,39441,7765,28883,7767,44721,7769,28885,7771,39443,7773,28887,7775,47361,7777,28889,7779,39445,7781,28891,7783,44723,7785,28893,7787,39447,7789,28895,7791,48681,7793,28897,7795,39449,7797,28899,7799,44725,7801,28901,7803,39451,7805,28903,7807,47363,7809,28905,7811,39453,7813,28907,7815,44727,7817,28909,7819,39455,7821,28911,7823,49341,7825,28913,7827,39457,7829,28915,7831,44729,7833,28917,7835,39459,7837,28919,7839,47365,7841,28921,7843,39461,7845,28923,7847,44731,7849,28925,7851,39463,7853,28927,7855,48683,7857,28929,7859,39465,7861,28931,7863,44733,7865,28933,7867,39467,7869,28935,7871,47367,7873,28937,7875,39469,7877,28939,7879,44735,7881,28941,7883,39471,7885,28943,7887,49671,7889,28945,7891,39473,7893,28947,7895,44737,7897,28949,7899,39475,7901,28951,7903,47369,7905,28953,7907,39477,7909,28955,7911,44739,7913,28957,7915,39479,7917,28959,7919,48685,7921,28961,7923,39481,7925,28963,7927,44741,7929,28965,7931,39483,7933,28967,7935,47371,7937,28969,7939,39485,7941,28971,7943,44743,7945,28973,7947,39487,7949,28975,7951,49343,7953,28977,7955,39489,7957,28979,7959,44745,7961,28981,7963,39491,7965,28983,7967,47373,7969,28985,7971,39493,7973,28987,7975,44747,7977,28989,7979,39495,7981,28991,7983,48687,7985,28993,7987,39497,7989,28995,7991,44749,7993,28997,7995,39499,7997,28999,7999,47375,8001,29001,8003,39501,8005,29003,8007,44751,8009,29005,8011,39503,8013,29007,8015,49959,8017,29009,8019,39505,8021,29011,8023,44753,8025,29013,8027,39507,8029,29015,8031,47377,8033,29017,8035,39509,8037,29019,8039,44755,8041,29021,8043,39511,8045,29023,8047,48689,8049,29025,8051,39513,8053,29027,8055,44757,8057,29029,8059,39515,8061,29031,8063,47379,8065,29033,8067,39517,8069,29035,8071,44759,8073,29037,8075,39519,8077,29039,8079,49345,8081,29041,8083,39521,8085,29043,8087,44761,8089,29045,8091,39523,8093,29047,8095,47381,8097,29049,8099,39525,8101,29051,8103,44763,8105,29053,8107,39527,8109,29055,8111,48691,8113,29057,8115,39529,8117,29059,8119,44765,8121,29061,8123,39531,8125,29063,8127,47383,8129,29065,8131,39533,8133,29067,8135,44767,8137,29069,8139,39535,8141,29071,8143,49673,8145,29073,8147,39537,8149,29075,8151,44769,8153,29077,8155,39539,8157,29079,8159,47385,8161,29081,8163,39541,8165,29083,8167,44771,8169,29085,8171,39543,8173,29087,8175,48693,8177,29089,8179,39545,8181,29091,8183,44773,8185,29093,8187,39547,8189,29095,8191,47387,8193,29097,8195,39549,8197,29099,8199,44775,8201,29101,8203,39551,8205,29103,8207,49347,8209,29105,8211,39553,8213,29107,8215,44777,8217,29109,8219,39555,8221,29111,8223,47389,8225,29113,8227,39557,8229,29115,8231,44779,8233,29117,8235,39559,8237,29119,8239,48695,8241,29121,8243,39561,8245,29123,8247,44781,8249,29125,8251,39563,8253,29127,8255,47391,8257,29129,8259,39565,8261,29131,8263,44783,8265,29133,8267,39567,8269,29135,8271,49837,8273,29137,8275,39569,8277,29139,8279,44785,8281,29141,8283,39571,8285,29143,8287,47393,8289,29145,8291,39573,8293,29147,8295,44787,8297,29149,8299,39575,8301,29151,8303,48697,8305,29153,8307,39577,8309,29155,8311,44789,8313,29157,8315,39579,8317,29159,8319,47395,8321,29161,8323,39581,8325,29163,8327,44791,8329,29165,8331,39583,8333,29167,8335,49349,8337,29169,8339,39585,8341,29171,8343,44793,8345,29173,8347,39587,8349,29175,8351,47397,8353,29177,8355,39589,8357,29179,8359,44795,8361,29181,8363,39591,8365,29183,8367,48699,8369,29185,8371,39593,8373,29187,8375,44797,8377,29189,8379,39595,8381,29191,8383,47399,8385,29193,8387,39597,8389,29195,8391,44799,8393,29197,8395,39599,8397,29199,8399,49675,8401,29201,8403,39601,8405,29203,8407,44801,8409,29205,8411,39603,8413,29207,8415,47401,8417,29209,8419,39605,8421,29211,8423,44803,8425,29213,8427,39607,8429,29215,8431,48701,8433,29217,8435,39609,8437,29219,8439,44805,8441,29221,8443,39611,8445,29223,8447,47403,8449,29225,8451,39613,8453,29227,8455,44807,8457,29229,8459,39615,8461,29231,8463,49351,8465,29233,8467,39617,8469,29235,8471,44809,8473,29237,8475,39619,8477,29239,8479,47405,8481,29241,8483,39621,8485,29243,8487,44811,8489,29245,8491,39623,8493,29247,8495,48703,8497,29249,8499,39625,8501,29251,8503,44813,8505,29253,8507,39627,8509,29255,8511,47407,8513,29257,8515,39629,8517,29259,8519,44815,8521,29261,8523,39631,8525,29263,8527,49919,8529,29265,8531,39633,8533,29267,8535,44817,8537,29269,8539,39635,8541,29271,8543,47409,8545,29273,8547,39637,8549,29275,8551,44819,8553,29277,8555,39639,8557,29279,8559,48705,8561,29281,8563,39641,8565,29283,8567,44821,8569,29285,8571,39643,8573,29287,8575,47411,8577,29289,8579,39645,8581,29291,8583,44823,8585,29293,8587,39647,8589,29295,8591,49353,8593,29297,8595,39649,8597,29299,8599,44825,8601,29301,8603,39651,8605,29303,8607,47413,8609,29305,8611,39653,8613,29307,8615,44827,8617,29309,8619,39655,8621,29311,8623,48707,8625,29313,8627,39657,8629,29315,8631,44829,8633,29317,8635,39659,8637,29319,8639,47415,8641,29321,8643,39661,8645,29323,8647,44831,8649,29325,8651,39663,8653,29327,8655,49677,8657,29329,8659,39665,8661,29331,8663,44833,8665,29333,8667,39667,8669,29335,8671,47417,8673,29337,8675,39669,8677,29339,8679,44835,8681,29341,8683,39671,8685,29343,8687,48709,8689,29345,8691,39673,8693,29347,8695,44837,8697,29349,8699,39675,8701,29351,8703,47419,8705,29353,8707,39677,8709,29355,8711,44839,8713,29357,8715,39679,8717,29359,8719,49355,8721,29361,8723,39681,8725,29363,8727,44841,8729,29365,8731,39683,8733,29367,8735,47421,8737,29369,8739,39685,8741,29371,8743,44843,8745,29373,8747,39687,8749,29375,8751,48711,8753,29377,8755,39689,8757,29379,8759,44845,8761,29381,8763,39691,8765,29383,8767,47423,8769,29385,8771,39693,8773,29387,8775,44847,8777,29389,8779,39695,8781,29391,8783,49839,8785,29393,8787,39697,8789,29395,8791,44849,8793,29397,8795,39699,8797,29399,8799,47425,8801,29401,8803,39701,8805,29403,8807,44851,8809,29405,8811,39703,8813,29407,8815,48713,8817,29409,8819,39705,8821,29411,8823,44853,8825,29413,8827,39707,8829,29415,8831,47427,8833,29417,8835,39709,8837,29419,8839,44855,8841,29421,8843,39711,8845,29423,8847,49357,8849,29425,8851,39713,8853,29427,8855,44857,8857,29429,8859,39715,8861,29431,8863,47429,8865,29433,8867,39717,8869,29435,8871,44859,8873,29437,8875,39719,8877,29439,8879,48715,8881,29441,8883,39721,8885,29443,8887,44861,8889,29445,8891,39723,8893,29447,8895,47431,8897,29449,8899,39725,8901,29451,8903,44863,8905,29453,8907,39727,8909,29455,8911,49679,8913,29457,8915,39729,8917,29459,8919,44865,8921,29461,8923,39731,8925,29463,8927,47433,8929,29465,8931,39733,8933,29467,8935,44867,8937,29469,8939,39735,8941,29471,8943,48717,8945,29473,8947,39737,8949,29475,8951,44869,8953,29477,8955,39739,8957,29479,8959,47435,8961,29481,8963,39741,8965,29483,8967,44871,8969,29485,8971,39743,8973,29487,8975,49359,8977,29489,8979,39745,8981,29491,8983,44873,8985,29493,8987,39747,8989,29495,8991,47437,8993,29497,8995,39749,8997,29499,8999,44875,9001,29501,9003,39751,9005,29503,9007,48719,9009,29505,9011,39753,9013,29507,9015,44877,9017,29509,9019,39755,9021,29511,9023,47439,9025,29513,9027,39757,9029,29515,9031,44879,9033,29517,9035,39759,9037,29519,9039,49995,9041,29521,9043,39761,9045,29523,9047,44881,9049,29525,9051,39763,9053,29527,9055,47441,9057,29529,9059,39765,9061,29531,9063,44883,9065,29533,9067,39767,9069,29535,9071,48721,9073,29537,9075,39769,9077,29539,9079,44885,9081,29541,9083,39771,9085,29543,9087,47443,9089,29545,9091,39773,9093,29547,9095,44887,9097,29549,9099,39775,9101,29551,9103,49361,9105,29553,9107,39777,9109,29555,9111,44889,9113,29557,9115,39779,9117,29559,9119,47445,9121,29561,9123,39781,9125,29563,9127,44891,9129,29565,9131,39783,9133,29567,9135,48723,9137,29569,9139,39785,9141,29571,9143,44893,9145,29573,9147,39787,9149,29575,9151,47447,9153,29577,9155,39789,9157,29579,9159,44895,9161,29581,9163,39791,9165,29583,9167,49681,9169,29585,9171,39793,9173,29587,9175,44897,9177,29589,9179,39795,9181,29591,9183,47449,9185,29593,9187,39797,9189,29595,9191,44899,9193,29597,9195,39799,9197,29599,9199,48725,9201,29601,9203,39801,9205,29603,9207,44901,9209,29605,9211,39803,9213,29607,9215,47451,9217,29609,9219,39805,9221,29611,9223,44903,9225,29613,9227,39807,9229,29615,9231,49363,9233,29617,9235,39809,9237,29619,9239,44905,9241,29621,9243,39811,9245,29623,9247,47453,9249,29625,9251,39813,9253,29627,9255,44907,9257,29629,9259,39815,9261,29631,9263,48727,9265,29633,9267,39817,9269,29635,9271,44909,9273,29637,9275,39819,9277,29639,9279,47455,9281,29641,9283,39821,9285,29643,9287,44911,9289,29645,9291,39823,9293,29647,9295,49841,9297,29649,9299,39825,9301,29651,9303,44913,9305,29653,9307,39827,9309,29655,9311,47457,9313,29657,9315,39829,9317,29659,9319,44915,9321,29661,9323,39831,9325,29663,9327,48729,9329,29665,9331,39833,9333,29667,9335,44917,9337,29669,9339,39835,9341,29671,9343,47459,9345,29673,9347,39837,9349,29675,9351,44919,9353,29677,9355,39839,9357,29679,9359,49365,9361,29681,9363,39841,9365,29683,9367,44921,9369,29685,9371,39843,9373,29687,9375,47461,9377,29689,9379,39845,9381,29691,9383,44923,9385,29693,9387,39847,9389,29695,9391,48731,9393,29697,9395,39849,9397,29699,9399,44925,9401,29701,9403,39851,9405,29703,9407,47463,9409,29705,9411,39853,9413,29707,9415,44927,9417,29709,9419,39855,9421,29711,9423,49683,9425,29713,9427,39857,9429,29715,9431,44929,9433,29717,9435,39859,9437,29719,9439,47465,9441,29721,9443,39861,9445,29723,9447,44931,9449,29725,9451,39863,9453,29727,9455,48733,9457,29729,9459,39865,9461,29731,9463,44933,9465,29733,9467,39867,9469,29735,9471,47467,9473,29737,9475,39869,9477,29739,9479,44935,9481,29741,9483,39871,9485,29743,9487,49367,9489,29745,9491,39873,9493,29747,9495,44937,9497,29749,9499,39875,9501,29751,9503,47469,9505,29753,9507,39877,9509,29755,9511,44939,9513,29757,9515,39879,9517,29759,9519,48735,9521,29761,9523,39881,9525,29763,9527,44941,9529,29765,9531,39883,9533,29767,9535,47471,9537,29769,9539,39885,9541,29771,9543,44943,9545,29773,9547,39887,9549,29775,9551,49921,9553,29777,9555,39889,9557,29779,9559,44945,9561,29781,9563,39891,9565,29783,9567,47473,9569,29785,9571,39893,9573,29787,9575,44947,9577,29789,9579,39895,9581,29791,9583,48737,9585,29793,9587,39897,9589,29795,9591,44949,9593,29797,9595,39899,9597,29799,9599,47475,9601,29801,9603,39901,9605,29803,9607,44951,9609,29805,9611,39903,9613,29807,9615,49369,9617,29809,9619,39905,9621,29811,9623,44953,9625,29813,9627,39907,9629,29815,9631,47477,9633,29817,9635,39909,9637,29819,9639,44955,9641,29821,9643,39911,9645,29823,9647,48739,9649,29825,9651,39913,9653,29827,9655,44957,9657,29829,9659,39915,9661,29831,9663,47479,9665,29833,9667,39917,9669,29835,9671,44959,9673,29837,9675,39919,9677,29839,9679,49685,9681,29841,9683,39921,9685,29843,9687,44961,9689,29845,9691,39923,9693,29847,9695,47481,9697,29849,9699,39925,9701,29851,9703,44963,9705,29853,9707,39927,9709,29855,9711,48741,9713,29857,9715,39929,9717,29859,9719,44965,9721,29861,9723,39931,9725,29863,9727,47483,9729,29865,9731,39933,9733,29867,9735,44967,9737,29869,9739,39935,9741,29871,9743,49371,9745,29873,9747,39937,9749,29875,9751,44969,9753,29877,9755,39939,9757,29879,9759,47485,9761,29881,9763,39941,9765,29883,9767,44971,9769,29885,9771,39943,9773,29887,9775,48743,9777,29889,9779,39945,9781,29891,9783,44973,9785,29893,9787,39947,9789,29895,9791,47487,9793,29897,9795,39949,9797,29899,9799,44975,9801,29901,9803,39951,9805,29903,9807,49843,9809,29905,9811,39953,9813,29907,9815,44977,9817,29909,9819,39955,9821,29911,9823,47489,9825,29913,9827,39957,9829,29915,9831,44979,9833,29917,9835,39959,9837,29919,9839,48745,9841,29921,9843,39961,9845,29923,9847,44981,9849,29925,9851,39963,9853,29927,9855,47491,9857,29929,9859,39965,9861,29931,9863,44983,9865,29933,9867,39967,9869,29935,9871,49373,9873,29937,9875,39969,9877,29939,9879,44985,9881,29941,9883,39971,9885,29943,9887,47493,9889,29945,9891,39973,9893,29947,9895,44987,9897,29949,9899,39975,9901,29951,9903,48747,9905,29953,9907,39977,9909,29955,9911,44989,9913,29957,9915,39979,9917,29959,9919,47495,9921,29961,9923,39981,9925,29963,9927,44991,9929,29965,9931,39983,9933,29967,9935,49687,9937,29969,9939,39985,9941,29971,9943,44993,9945,29973,9947,39987,9949,29975,9951,47497,9953,29977,9955,39989,9957,29979,9959,44995,9961,29981,9963,39991,9965,29983,9967,48749,9969,29985,9971,39993,9973,29987,9975,44997,9977,29989,9979,39995,9981,29991,9983,47499,9985,29993,9987,39997,9989,29995,9991,44999,9993,29997,9995,39999,9997,29999,9999,49375,10001,30001,10003,40001,10005,30003,10007,45001,10009,30005,10011,40003,10013,30007,10015,47501,10017,30009,10019,40005,10021,30011,10023,45003,10025,30013,10027,40007,10029,30015,10031,48751,10033,30017,10035,40009,10037,30019,10039,45005,10041,30021,10043,40011,10045,30023,10047,47503,10049,30025,10051,40013,10053,30027,10055,45007,10057,30029,10059,40015,10061,30031,10063,49961,10065,30033,10067,40017,10069,30035,10071,45009,10073,30037,10075,40019,10077,30039,10079,47505,10081,30041,10083,40021,10085,30043,10087,45011,10089,30045,10091,40023,10093,30047,10095,48753,10097,30049,10099,40025,10101,30051,10103,45013,10105,30053,10107,40027,10109,30055,10111,47507,10113,30057,10115,40029,10117,30059,10119,45015,10121,30061,10123,40031,10125,30063,10127,49377,10129,30065,10131,40033,10133,30067,10135,45017,10137,30069,10139,40035,10141,30071,10143,47509,10145,30073,10147,40037,10149,30075,10151,45019,10153,30077,10155,40039,10157,30079,10159,48755,10161,30081,10163,40041,10165,30083,10167,45021,10169,30085,10171,40043,10173,30087,10175,47511,10177,30089,10179,40045,10181,30091,10183,45023,10185,30093,10187,40047,10189,30095,10191,49689,10193,30097,10195,40049,10197,30099,10199,45025,10201,30101,10203,40051,10205,30103,10207,47513,10209,30105,10211,40053,10213,30107,10215,45027,10217,30109,10219,40055,10221,30111,10223,48757,10225,30113,10227,40057,10229,30115,10231,45029,10233,30117,10235,40059,10237,30119,10239,47515,10241,30121,10243,40061,10245,30123,10247,45031,10249,30125,10251,40063,10253,30127,10255,49379,10257,30129,10259,40065,10261,30131,10263,45033,10265,30133,10267,40067,10269,30135,10271,47517,10273,30137,10275,40069,10277,30139,10279,45035,10281,30141,10283,40071,10285,30143,10287,48759,10289,30145,10291,40073,10293,30147,10295,45037,10297,30149,10299,40075,10301,30151,10303,47519,10305,30153,10307,40077,10309,30155,10311,45039,10313,30157,10315,40079,10317,30159,10319,49845,10321,30161,10323,40081,10325,30163,10327,45041,10329,30165,10331,40083,10333,30167,10335,47521,10337,30169,10339,40085,10341,30171,10343,45043,10345,30173,10347,40087,10349,30175,10351,48761,10353,30177,10355,40089,10357,30179,10359,45045,10361,30181,10363,40091,10365,30183,10367,47523,10369,30185,10371,40093,10373,30187,10375,45047,10377,30189,10379,40095,10381,30191,10383,49381,10385,30193,10387,40097,10389,30195,10391,45049,10393,30197,10395,40099,10397,30199,10399,47525,10401,30201,10403,40101,10405,30203,10407,45051,10409,30205,10411,40103,10413,30207,10415,48763,10417,30209,10419,40105,10421,30211,10423,45053,10425,30213,10427,40107,10429,30215,10431,47527,10433,30217,10435,40109,10437,30219,10439,45055,10441,30221,10443,40111,10445,30223,10447,49691,10449,30225,10451,40113,10453,30227,10455,45057,10457,30229,10459,40115,10461,30231,10463,47529,10465,30233,10467,40117,10469,30235,10471,45059,10473,30237,10475,40119,10477,30239,10479,48765,10481,30241,10483,40121,10485,30243,10487,45061,10489,30245,10491,40123,10493,30247,10495,47531,10497,30249,10499,40125,10501,30251,10503,45063,10505,30253,10507,40127,10509,30255,10511,49383,10513,30257,10515,40129,10517,30259,10519,45065,10521,30261,10523,40131,10525,30263,10527,47533,10529,30265,10531,40133,10533,30267,10535,45067,10537,30269,10539,40135,10541,30271,10543,48767,10545,30273,10547,40137,10549,30275,10551,45069,10553,30277,10555,40139,10557,30279,10559,47535,10561,30281,10563,40141,10565,30283,10567,45071,10569,30285,10571,40143,10573,30287,10575,49923,10577,30289,10579,40145,10581,30291,10583,45073,10585,30293,10587,40147,10589,30295,10591,47537,10593,30297,10595,40149,10597,30299,10599,45075,10601,30301,10603,40151,10605,30303,10607,48769,10609,30305,10611,40153,10613,30307,10615,45077,10617,30309,10619,40155,10621,30311,10623,47539,10625,30313,10627,40157,10629,30315,10631,45079,10633,30317,10635,40159,10637,30319,10639,49385,10641,30321,10643,40161,10645,30323,10647,45081,10649,30325,10651,40163,10653,30327,10655,47541,10657,30329,10659,40165,10661,30331,10663,45083,10665,30333,10667,40167,10669,30335,10671,48771,10673,30337,10675,40169,10677,30339,10679,45085,10681,30341,10683,40171,10685,30343,10687,47543,10689,30345,10691,40173,10693,30347,10695,45087,10697,30349,10699,40175,10701,30351,10703,49693,10705,30353,10707,40177,10709,30355,10711,45089,10713,30357,10715,40179,10717,30359,10719,47545,10721,30361,10723,40181,10725,30363,10727,45091,10729,30365,10731,40183,10733,30367,10735,48773,10737,30369,10739,40185,10741,30371,10743,45093,10745,30373,10747,40187,10749,30375,10751,47547,10753,30377,10755,40189,10757,30379,10759,45095,10761,30381,10763,40191,10765,30383,10767,49387,10769,30385,10771,40193,10773,30387,10775,45097,10777,30389,10779,40195,10781,30391,10783,47549,10785,30393,10787,40197,10789,30395,10791,45099,10793,30397,10795,40199,10797,30399,10799,48775,10801,30401,10803,40201,10805,30403,10807,45101,10809,30405,10811,40203,10813,30407,10815,47551,10817,30409,10819,40205,10821,30411,10823,45103,10825,30413,10827,40207,10829,30415,10831,49847,10833,30417,10835,40209,10837,30419,10839,45105,10841,30421,10843,40211,10845,30423,10847,47553,10849,30425,10851,40213,10853,30427,10855,45107,10857,30429,10859,40215,10861,30431,10863,48777,10865,30433,10867,40217,10869,30435,10871,45109,10873,30437,10875,40219,10877,30439,10879,47555,10881,30441,10883,40221,10885,30443,10887,45111,10889,30445,10891,40223,10893,30447,10895,49389,10897,30449,10899,40225,10901,30451,10903,45113,10905,30453,10907,40227,10909,30455,10911,47557,10913,30457,10915,40229,10917,30459,10919,45115,10921,30461,10923,40231,10925,30463,10927,48779,10929,30465,10931,40233,10933,30467,10935,45117,10937,30469,10939,40235,10941,30471,10943,47559,10945,30473,10947,40237,10949,30475,10951,45119,10953,30477,10955,40239,10957,30479,10959,49695,10961,30481,10963,40241,10965,30483,10967,45121,10969,30485,10971,40243,10973,30487,10975,47561,10977,30489,10979,40245,10981,30491,10983,45123,10985,30493,10987,40247,10989,30495,10991,48781,10993,30497,10995,40249,10997,30499,10999,45125,11001,30501,11003,40251,11005,30503,11007,47563,11009,30505,11011,40253,11013,30507,11015,45127,11017,30509,11019,40255,11021,30511,11023,49391,11025,30513,11027,40257,11029,30515,11031,45129,11033,30517,11035,40259,11037,30519,11039,47565,11041,30521,11043,40261,11045,30523,11047,45131,11049,30525,11051,40263,11053,30527,11055,48783,11057,30529,11059,40265,11061,30531,11063,45133,11065,30533,11067,40267,11069,30535,11071,47567,11073,30537,11075,40269,11077,30539,11079,45135,11081,30541,11083,40271,11085,30543,11087,49981,11089,30545,11091,40273,11093,30547,11095,45137,11097,30549,11099,40275,11101,30551,11103,47569,11105,30553,11107,40277,11109,30555,11111,45139,11113,30557,11115,40279,11117,30559,11119,48785,11121,30561,11123,40281,11125,30563,11127,45141,11129,30565,11131,40283,11133,30567,11135,47571,11137,30569,11139,40285,11141,30571,11143,45143,11145,30573,11147,40287,11149,30575,11151,49393,11153,30577,11155,40289,11157,30579,11159,45145,11161,30581,11163,40291,11165,30583,11167,47573,11169,30585,11171,40293,11173,30587,11175,45147,11177,30589,11179,40295,11181,30591,11183,48787,11185,30593,11187,40297,11189,30595,11191,45149,11193,30597,11195,40299,11197,30599,11199,47575,11201,30601,11203,40301,11205,30603,11207,45151,11209,30605,11211,40303,11213,30607,11215,49697,11217,30609,11219,40305,11221,30611,11223,45153,11225,30613,11227,40307,11229,30615,11231,47577,11233,30617,11235,40309,11237,30619,11239,45155,11241,30621,11243,40311,11245,30623,11247,48789,11249,30625,11251,40313,11253,30627,11255,45157,11257,30629,11259,40315,11261,30631,11263,47579,11265,30633,11267,40317,11269,30635,11271,45159,11273,30637,11275,40319,11277,30639,11279,49395,11281,30641,11283,40321,11285,30643,11287,45161,11289,30645,11291,40323,11293,30647,11295,47581,11297,30649,11299,40325,11301,30651,11303,45163,11305,30653,11307,40327,11309,30655,11311,48791,11313,30657,11315,40329,11317,30659,11319,45165,11321,30661,11323,40331,11325,30663,11327,47583,11329,30665,11331,40333,11333,30667,11335,45167,11337,30669,11339,40335,11341,30671,11343,49849,11345,30673,11347,40337,11349,30675,11351,45169,11353,30677,11355,40339,11357,30679,11359,47585,11361,30681,11363,40341,11365,30683,11367,45171,11369,30685,11371,40343,11373,30687,11375,48793,11377,30689,11379,40345,11381,30691,11383,45173,11385,30693,11387,40347,11389,30695,11391,47587,11393,30697,11395,40349,11397,30699,11399,45175,11401,30701,11403,40351,11405,30703,11407,49397,11409,30705,11411,40353,11413,30707,11415,45177,11417,30709,11419,40355,11421,30711,11423,47589,11425,30713,11427,40357,11429,30715,11431,45179,11433,30717,11435,40359,11437,30719,11439,48795,11441,30721,11443,40361,11445,30723,11447,45181,11449,30725,11451,40363,11453,30727,11455,47591,11457,30729,11459,40365,11461,30731,11463,45183,11465,30733,11467,40367,11469,30735,11471,49699,11473,30737,11475,40369,11477,30739,11479,45185,11481,30741,11483,40371,11485,30743,11487,47593,11489,30745,11491,40373,11493,30747,11495,45187,11497,30749,11499,40375,11501,30751,11503,48797,11505,30753,11507,40377,11509,30755,11511,45189,11513,30757,11515,40379,11517,30759,11519,47595,11521,30761,11523,40381,11525,30763,11527,45191,11529,30765,11531,40383,11533,30767,11535,49399,11537,30769,11539,40385,11541,30771,11543,45193,11545,30773,11547,40387,11549,30775,11551,47597,11553,30777,11555,40389,11557,30779,11559,45195,11561,30781,11563,40391,11565,30783,11567,48799,11569,30785,11571,40393,11573,30787,11575,45197,11577,30789,11579,40395,11581,30791,11583,47599,11585,30793,11587,40397,11589,30795,11591,45199,11593,30797,11595,40399,11597,30799,11599,49925,11601,30801,11603,40401,11605,30803,11607,45201,11609,30805,11611,40403,11613,30807,11615,47601,11617,30809,11619,40405,11621,30811,11623,45203,11625,30813,11627,40407,11629,30815,11631,48801,11633,30817,11635,40409,11637,30819,11639,45205,11641,30821,11643,40411,11645,30823,11647,47603,11649,30825,11651,40413,11653,30827,11655,45207,11657,30829,11659,40415,11661,30831,11663,49401,11665,30833,11667,40417,11669,30835,11671,45209,11673,30837,11675,40419,11677,30839,11679,47605,11681,30841,11683,40421,11685,30843,11687,45211,11689,30845,11691,40423,11693,30847,11695,48803,11697,30849,11699,40425,11701,30851,11703,45213,11705,30853,11707,40427,11709,30855,11711,47607,11713,30857,11715,40429,11717,30859,11719,45215,11721,30861,11723,40431,11725,30863,11727,49701,11729,30865,11731,40433,11733,30867,11735,45217,11737,30869,11739,40435,11741,30871,11743,47609,11745,30873,11747,40437,11749,30875,11751,45219,11753,30877,11755,40439,11757,30879,11759,48805,11761,30881,11763,40441,11765,30883,11767,45221,11769,30885,11771,40443,11773,30887,11775,47611,11777,30889,11779,40445,11781,30891,11783,45223,11785,30893,11787,40447,11789,30895,11791,49403,11793,30897,11795,40449,11797,30899,11799,45225,11801,30901,11803,40451,11805,30903,11807,47613,11809,30905,11811,40453,11813,30907,11815,45227,11817,30909,11819,40455,11821,30911,11823,48807,11825,30913,11827,40457,11829,30915,11831,45229,11833,30917,11835,40459,11837,30919,11839,47615,11841,30921,11843,40461,11845,30923,11847,45231,11849,30925,11851,40463,11853,30927,11855,49851,11857,30929,11859,40465,11861,30931,11863,45233,11865,30933,11867,40467,11869,30935,11871,47617,11873,30937,11875,40469,11877,30939,11879,45235,11881,30941,11883,40471,11885,30943,11887,48809,11889,30945,11891,40473,11893,30947,11895,45237,11897,30949,11899,40475,11901,30951,11903,47619,11905,30953,11907,40477,11909,30955,11911,45239,11913,30957,11915,40479,11917,30959,11919,49405,11921,30961,11923,40481,11925,30963,11927,45241,11929,30965,11931,40483,11933,30967,11935,47621,11937,30969,11939,40485,11941,30971,11943,45243,11945,30973,11947,40487,11949,30975,11951,48811,11953,30977,11955,40489,11957,30979,11959,45245,11961,30981,11963,40491,11965,30983,11967,47623,11969,30985,11971,40493,11973,30987,11975,45247,11977,30989,11979,40495,11981,30991,11983,49703,11985,30993,11987,40497,11989,30995,11991,45249,11993,30997,11995,40499,11997,30999,11999,47625,12001,31001,12003,40501,12005,31003,12007,45251,12009,31005,12011,40503,12013,31007,12015,48813,12017,31009,12019,40505,12021,31011,12023,45253,12025,31013,12027,40507,12029,31015,12031,47627,12033,31017,12035,40509,12037,31019,12039,45255,12041,31021,12043,40511,12045,31023,12047,49407,12049,31025,12051,40513,12053,31027,12055,45257,12057,31029,12059,40515,12061,31031,12063,47629,12065,31033,12067,40517,12069,31035,12071,45259,12073,31037,12075,40519,12077,31039,12079,48815,12081,31041,12083,40521,12085,31043,12087,45261,12089,31045,12091,40523,12093,31047,12095,47631,12097,31049,12099,40525,12101,31051,12103,45263,12105,31053,12107,40527,12109,31055,12111,49963,12113,31057,12115,40529,12117,31059,12119,45265,12121,31061,12123,40531,12125,31063,12127,47633,12129,31065,12131,40533,12133,31067,12135,45267,12137,31069,12139,40535,12141,31071,12143,48817,12145,31073,12147,40537,12149,31075,12151,45269,12153,31077,12155,40539,12157,31079,12159,47635,12161,31081,12163,40541,12165,31083,12167,45271,12169,31085,12171,40543,12173,31087,12175,49409,12177,31089,12179,40545,12181,31091,12183,45273,12185,31093,12187,40547,12189,31095,12191,47637,12193,31097,12195,40549,12197,31099,12199,45275,12201,31101,12203,40551,12205,31103,12207,48819,12209,31105,12211,40553,12213,31107,12215,45277,12217,31109,12219,40555,12221,31111,12223,47639,12225,31113,12227,40557,12229,31115,12231,45279,12233,31117,12235,40559,12237,31119,12239,49705,12241,31121,12243,40561,12245,31123,12247,45281,12249,31125,12251,40563,12253,31127,12255,47641,12257,31129,12259,40565,12261,31131,12263,45283,12265,31133,12267,40567,12269,31135,12271,48821,12273,31137,12275,40569,12277,31139,12279,45285,12281,31141,12283,40571,12285,31143,12287,47643,12289,31145,12291,40573,12293,31147,12295,45287,12297,31149,12299,40575,12301,31151,12303,49411,12305,31153,12307,40577,12309,31155,12311,45289,12313,31157,12315,40579,12317,31159,12319,47645,12321,31161,12323,40581,12325,31163,12327,45291,12329,31165,12331,40583,12333,31167,12335,48823,12337,31169,12339,40585,12341,31171,12343,45293,12345,31173,12347,40587,12349,31175,12351,47647,12353,31177,12355,40589,12357,31179,12359,45295,12361,31181,12363,40591,12365,31183,12367,49853,12369,31185,12371,40593,12373,31187,12375,45297,12377,31189,12379,40595,12381,31191,12383,47649,12385,31193,12387,40597,12389,31195,12391,45299,12393,31197,12395,40599,12397,31199,12399,48825,12401,31201,12403,40601,12405,31203,12407,45301,12409,31205,12411,40603,12413,31207,12415,47651,12417,31209,12419,40605,12421,31211,12423,45303,12425,31213,12427,40607,12429,31215,12431,49413,12433,31217,12435,40609,12437,31219,12439,45305,12441,31221,12443,40611,12445,31223,12447,47653,12449,31225,12451,40613,12453,31227,12455,45307,12457,31229,12459,40615,12461,31231,12463,48827,12465,31233,12467,40617,12469,31235,12471,45309,12473,31237,12475,40619,12477,31239,12479,47655,12481,31241,12483,40621,12485,31243,12487,45311,12489,31245,12491,40623,12493,31247,12495,49707,12497,31249,12499,40625,12501,31251,12503,45313,12505,31253,12507,40627,12509,31255,12511,47657,12513,31257,12515,40629,12517,31259,12519,45315,12521,31261,12523,40631,12525,31263,12527,48829,12529,31265,12531,40633,12533,31267,12535,45317,12537,31269,12539,40635,12541,31271,12543,47659,12545,31273,12547,40637,12549,31275,12551,45319,12553,31277,12555,40639,12557,31279,12559,49415,12561,31281,12563,40641,12565,31283,12567,45321,12569,31285,12571,40643,12573,31287,12575,47661,12577,31289,12579,40645,12581,31291,12583,45323,12585,31293,12587,40647,12589,31295,12591,48831,12593,31297,12595,40649,12597,31299,12599,45325,12601,31301,12603,40651,12605,31303,12607,47663,12609,31305,12611,40653,12613,31307,12615,45327,12617,31309,12619,40655,12621,31311,12623,49927,12625,31313,12627,40657,12629,31315,12631,45329,12633,31317,12635,40659,12637,31319,12639,47665,12641,31321,12643,40661,12645,31323,12647,45331,12649,31325,12651,40663,12653,31327,12655,48833,12657,31329,12659,40665,12661,31331,12663,45333,12665,31333,12667,40667,12669,31335,12671,47667,12673,31337,12675,40669,12677,31339,12679,45335,12681,31341,12683,40671,12685,31343,12687,49417,12689,31345,12691,40673,12693,31347,12695,45337,12697,31349,12699,40675,12701,31351,12703,47669,12705,31353,12707,40677,12709,31355,12711,45339,12713,31357,12715,40679,12717,31359,12719,48835,12721,31361,12723,40681,12725,31363,12727,45341,12729,31365,12731,40683,12733,31367,12735,47671,12737,31369,12739,40685,12741,31371,12743,45343,12745,31373,12747,40687,12749,31375,12751,49709,12753,31377,12755,40689,12757,31379,12759,45345,12761,31381,12763,40691,12765,31383,12767,47673,12769,31385,12771,40693,12773,31387,12775,45347,12777,31389,12779,40695,12781,31391,12783,48837,12785,31393,12787,40697,12789,31395,12791,45349,12793,31397,12795,40699,12797,31399,12799,47675,12801,31401,12803,40701,12805,31403,12807,45351,12809,31405,12811,40703,12813,31407,12815,49419,12817,31409,12819,40705,12821,31411,12823,45353,12825,31413,12827,40707,12829,31415,12831,47677,12833,31417,12835,40709,12837,31419,12839,45355,12841,31421,12843,40711,12845,31423,12847,48839,12849,31425,12851,40713,12853,31427,12855,45357,12857,31429,12859,40715,12861,31431,12863,47679,12865,31433,12867,40717,12869,31435,12871,45359,12873,31437,12875,40719,12877,31439,12879,49855,12881,31441,12883,40721,12885,31443,12887,45361,12889,31445,12891,40723,12893,31447,12895,47681,12897,31449,12899,40725,12901,31451,12903,45363,12905,31453,12907,40727,12909,31455,12911,48841,12913,31457,12915,40729,12917,31459,12919,45365,12921,31461,12923,40731,12925,31463,12927,47683,12929,31465,12931,40733,12933,31467,12935,45367,12937,31469,12939,40735,12941,31471,12943,49421,12945,31473,12947,40737,12949,31475,12951,45369,12953,31477,12955,40739,12957,31479,12959,47685,12961,31481,12963,40741,12965,31483,12967,45371,12969,31485,12971,40743,12973,31487,12975,48843,12977,31489,12979,40745,12981,31491,12983,45373,12985,31493,12987,40747,12989,31495,12991,47687,12993,31497,12995,40749,12997,31499,12999,45375,13001,31501,13003,40751,13005,31503,13007,49711,13009,31505,13011,40753,13013,31507,13015,45377,13017,31509,13019,40755,13021,31511,13023,47689,13025,31513,13027,40757,13029,31515,13031,45379,13033,31517,13035,40759,13037,31519,13039,48845,13041,31521,13043,40761,13045,31523,13047,45381,13049,31525,13051,40763,13053,31527,13055,47691,13057,31529,13059,40765,13061,31531,13063,45383,13065,31533,13067,40767,13069,31535,13071,49423,13073,31537,13075,40769,13077,31539,13079,45385,13081,31541,13083,40771,13085,31543,13087,47693,13089,31545,13091,40773,13093,31547,13095,45387,13097,31549,13099,40775,13101,31551,13103,48847,13105,31553,13107,40777,13109,31555,13111,45389,13113,31557,13115,40779,13117,31559,13119,47695,13121,31561,13123,40781,13125,31563,13127,45391,13129,31565,13131,40783,13133,31567,13135,49991,13137,31569,13139,40785,13141,31571,13143,45393,13145,31573,13147,40787,13149,31575,13151,47697,13153,31577,13155,40789,13157,31579,13159,45395,13161,31581,13163,40791,13165,31583,13167,48849,13169,31585,13171,40793,13173,31587,13175,45397,13177,31589,13179,40795,13181,31591,13183,47699,13185,31593,13187,40797,13189,31595,13191,45399,13193,31597,13195,40799,13197,31599,13199,49425,13201,31601,13203,40801,13205,31603,13207,45401,13209,31605,13211,40803,13213,31607,13215,47701,13217,31609,13219,40805,13221,31611,13223,45403,13225,31613,13227,40807,13229,31615,13231,48851,13233,31617,13235,40809,13237,31619,13239,45405,13241,31621,13243,40811,13245,31623,13247,47703,13249,31625,13251,40813,13253,31627,13255,45407,13257,31629,13259,40815,13261,31631,13263,49713,13265,31633,13267,40817,13269,31635,13271,45409,13273,31637,13275,40819,13277,31639,13279,47705,13281,31641,13283,40821,13285,31643,13287,45411,13289,31645,13291,40823,13293,31647,13295,48853,13297,31649,13299,40825,13301,31651,13303,45413,13305,31653,13307,40827,13309,31655,13311,47707,13313,31657,13315,40829,13317,31659,13319,45415,13321,31661,13323,40831,13325,31663,13327,49427,13329,31665,13331,40833,13333,31667,13335,45417,13337,31669,13339,40835,13341,31671,13343,47709,13345,31673,13347,40837,13349,31675,13351,45419,13353,31677,13355,40839,13357,31679,13359,48855,13361,31681,13363,40841,13365,31683,13367,45421,13369,31685,13371,40843,13373,31687,13375,47711,13377,31689,13379,40845,13381,31691,13383,45423,13385,31693,13387,40847,13389,31695,13391,49857,13393,31697,13395,40849,13397,31699,13399,45425,13401,31701,13403,40851,13405,31703,13407,47713,13409,31705,13411,40853,13413,31707,13415,45427,13417,31709,13419,40855,13421,31711,13423,48857,13425,31713,13427,40857,13429,31715,13431,45429,13433,31717,13435,40859,13437,31719,13439,47715,13441,31721,13443,40861,13445,31723,13447,45431,13449,31725,13451,40863,13453,31727,13455,49429,13457,31729,13459,40865,13461,31731,13463,45433,13465,31733,13467,40867,13469,31735,13471,47717,13473,31737,13475,40869,13477,31739,13479,45435,13481,31741,13483,40871,13485,31743,13487,48859,13489,31745,13491,40873,13493,31747,13495,45437,13497,31749,13499,40875,13501,31751,13503,47719,13505,31753,13507,40877,13509,31755,13511,45439,13513,31757,13515,40879,13517,31759,13519,49715,13521,31761,13523,40881,13525,31763,13527,45441,13529,31765,13531,40883,13533,31767,13535,47721,13537,31769,13539,40885,13541,31771,13543,45443,13545,31773,13547,40887,13549,31775,13551,48861,13553,31777,13555,40889,13557,31779,13559,45445,13561,31781,13563,40891,13565,31783,13567,47723,13569,31785,13571,40893,13573,31787,13575,45447,13577,31789,13579,40895,13581,31791,13583,49431,13585,31793,13587,40897,13589,31795,13591,45449,13593,31797,13595,40899,13597,31799,13599,47725,13601,31801,13603,40901,13605,31803,13607,45451,13609,31805,13611,40903,13613,31807,13615,48863,13617,31809,13619,40905,13621,31811,13623,45453,13625,31813,13627,40907,13629,31815,13631,47727,13633,31817,13635,40909,13637,31819,13639,45455,13641,31821,13643,40911,13645,31823,13647,49929,13649,31825,13651,40913,13653,31827,13655,45457,13657,31829,13659,40915,13661,31831,13663,47729,13665,31833,13667,40917,13669,31835,13671,45459,13673,31837,13675,40919,13677,31839,13679,48865,13681,31841,13683,40921,13685,31843,13687,45461,13689,31845,13691,40923,13693,31847,13695,47731,13697,31849,13699,40925,13701,31851,13703,45463,13705,31853,13707,40927,13709,31855,13711,49433,13713,31857,13715,40929,13717,31859,13719,45465,13721,31861,13723,40931,13725,31863,13727,47733,13729,31865,13731,40933,13733,31867,13735,45467,13737,31869,13739,40935,13741,31871,13743,48867,13745,31873,13747,40937,13749,31875,13751,45469,13753,31877,13755,40939,13757,31879,13759,47735,13761,31881,13763,40941,13765,31883,13767,45471,13769,31885,13771,40943,13773,31887,13775,49717,13777,31889,13779,40945,13781,31891,13783,45473,13785,31893,13787,40947,13789,31895,13791,47737,13793,31897,13795,40949,13797,31899,13799,45475,13801,31901,13803,40951,13805,31903,13807,48869,13809,31905,13811,40953,13813,31907,13815,45477,13817,31909,13819,40955,13821,31911,13823,47739,13825,31913,13827,40957,13829,31915,13831,45479,13833,31917,13835,40959,13837,31919,13839,49435,13841,31921,13843,40961,13845,31923,13847,45481,13849,31925,13851,40963,13853,31927,13855,47741,13857,31929,13859,40965,13861,31931,13863,45483,13865,31933,13867,40967,13869,31935,13871,48871,13873,31937,13875,40969,13877,31939,13879,45485,13881,31941,13883,40971,13885,31943,13887,47743,13889,31945,13891,40973,13893,31947,13895,45487,13897,31949,13899,40975,13901,31951,13903,49859,13905,31953,13907,40977,13909,31955,13911,45489,13913,31957,13915,40979,13917,31959,13919,47745,13921,31961,13923,40981,13925,31963,13927,45491,13929,31965,13931,40983,13933,31967,13935,48873,13937,31969,13939,40985,13941,31971,13943,45493,13945,31973,13947,40987,13949,31975,13951,47747,13953,31977,13955,40989,13957,31979,13959,45495,13961,31981,13963,40991,13965,31983,13967,49437,13969,31985,13971,40993,13973,31987,13975,45497,13977,31989,13979,40995,13981,31991,13983,47749,13985,31993,13987,40997,13989,31995,13991,45499,13993,31997,13995,40999,13997,31999,13999,48875,14001,32001,14003,41001,14005,32003,14007,45501,14009,32005,14011,41003,14013,32007,14015,47751,14017,32009,14019,41005,14021,32011,14023,45503,14025,32013,14027,41007,14029,32015,14031,49719,14033,32017,14035,41009,14037,32019,14039,45505,14041,32021,14043,41011,14045,32023,14047,47753,14049,32025,14051,41013,14053,32027,14055,45507,14057,32029,14059,41015,14061,32031,14063,48877,14065,32033,14067,41017,14069,32035,14071,45509,14073,32037,14075,41019,14077,32039,14079,47755,14081,32041,14083,41021,14085,32043,14087,45511,14089,32045,14091,41023,14093,32047,14095,49439,14097,32049,14099,41025,14101,32051,14103,45513,14105,32053,14107,41027,14109,32055,14111,47757,14113,32057,14115,41029,14117,32059,14119,45515,14121,32061,14123,41031,14125,32063,14127,48879,14129,32065,14131,41033,14133,32067,14135,45517,14137,32069,14139,41035,14141,32071,14143,47759,14145,32073,14147,41037,14149,32075,14151,45519,14153,32077,14155,41039,14157,32079,14159,49965,14161,32081,14163,41041,14165,32083,14167,45521,14169,32085,14171,41043,14173,32087,14175,47761,14177,32089,14179,41045,14181,32091,14183,45523,14185,32093,14187,41047,14189,32095,14191,48881,14193,32097,14195,41049,14197,32099,14199,45525,14201,32101,14203,41051,14205,32103,14207,47763,14209,32105,14211,41053,14213,32107,14215,45527,14217,32109,14219,41055,14221,32111,14223,49441,14225,32113,14227,41057,14229,32115,14231,45529,14233,32117,14235,41059,14237,32119,14239,47765,14241,32121,14243,41061,14245,32123,14247,45531,14249,32125,14251,41063,14253,32127,14255,48883,14257,32129,14259,41065,14261,32131,14263,45533,14265,32133,14267,41067,14269,32135,14271,47767,14273,32137,14275,41069,14277,32139,14279,45535,14281,32141,14283,41071,14285,32143,14287,49721,14289,32145,14291,41073,14293,32147,14295,45537,14297,32149,14299,41075,14301,32151,14303,47769,14305,32153,14307,41077,14309,32155,14311,45539,14313,32157,14315,41079,14317,32159,14319,48885,14321,32161,14323,41081,14325,32163,14327,45541,14329,32165,14331,41083,14333,32167,14335,47771,14337,32169,14339,41085,14341,32171,14343,45543,14345,32173,14347,41087,14349,32175,14351,49443,14353,32177,14355,41089,14357,32179,14359,45545,14361,32181,14363,41091,14365,32183,14367,47773,14369,32185,14371,41093,14373,32187,14375,45547,14377,32189,14379,41095,14381,32191,14383,48887,14385,32193,14387,41097,14389,32195,14391,45549,14393,32197,14395,41099,14397,32199,14399,47775,14401,32201,14403,41101,14405,32203,14407,45551,14409,32205,14411,41103,14413,32207,14415,49861,14417,32209,14419,41105,14421,32211,14423,45553,14425,32213,14427,41107,14429,32215,14431,47777,14433,32217,14435,41109,14437,32219,14439,45555,14441,32221,14443,41111,14445,32223,14447,48889,14449,32225,14451,41113,14453,32227,14455,45557,14457,32229,14459,41115,14461,32231,14463,47779,14465,32233,14467,41117,14469,32235,14471,45559,14473,32237,14475,41119,14477,32239,14479,49445,14481,32241,14483,41121,14485,32243,14487,45561,14489,32245,14491,41123,14493,32247,14495,47781,14497,32249,14499,41125,14501,32251,14503,45563,14505,32253,14507,41127,14509,32255,14511,48891,14513,32257,14515,41129,14517,32259,14519,45565,14521,32261,14523,41131,14525,32263,14527,47783,14529,32265,14531,41133,14533,32267,14535,45567,14537,32269,14539,41135,14541,32271,14543,49723,14545,32273,14547,41137,14549,32275,14551,45569,14553,32277,14555,41139,14557,32279,14559,47785,14561,32281,14563,41141,14565,32283,14567,45571,14569,32285,14571,41143,14573,32287,14575,48893,14577,32289,14579,41145,14581,32291,14583,45573,14585,32293,14587,41147,14589,32295,14591,47787,14593,32297,14595,41149,14597,32299,14599,45575,14601,32301,14603,41151,14605,32303,14607,49447,14609,32305,14611,41153,14613,32307,14615,45577,14617,32309,14619,41155,14621,32311,14623,47789,14625,32313,14627,41157,14629,32315,14631,45579,14633,32317,14635,41159,14637,32319,14639,48895,14641,32321,14643,41161,14645,32323,14647,45581,14649,32325,14651,41163,14653,32327,14655,47791,14657,32329,14659,41165,14661,32331,14663,45583,14665,32333,14667,41167,14669,32335,14671,49931,14673,32337,14675,41169,14677,32339,14679,45585,14681,32341,14683,41171,14685,32343,14687,47793,14689,32345,14691,41173,14693,32347,14695,45587,14697,32349,14699,41175,14701,32351,14703,48897,14705,32353,14707,41177,14709,32355,14711,45589,14713,32357,14715,41179,14717,32359,14719,47795,14721,32361,14723,41181,14725,32363,14727,45591,14729,32365,14731,41183,14733,32367,14735,49449,14737,32369,14739,41185,14741,32371,14743,45593,14745,32373,14747,41187,14749,32375,14751,47797,14753,32377,14755,41189,14757,32379,14759,45595,14761,32381,14763,41191,14765,32383,14767,48899,14769,32385,14771,41193,14773,32387,14775,45597,14777,32389,14779,41195,14781,32391,14783,47799,14785,32393,14787,41197,14789,32395,14791,45599,14793,32397,14795,41199,14797,32399,14799,49725,14801,32401,14803,41201,14805,32403,14807,45601,14809,32405,14811,41203,14813,32407,14815,47801,14817,32409,14819,41205,14821,32411,14823,45603,14825,32413,14827,41207,14829,32415,14831,48901,14833,32417,14835,41209,14837,32419,14839,45605,14841,32421,14843,41211,14845,32423,14847,47803,14849,32425,14851,41213,14853,32427,14855,45607,14857,32429,14859,41215,14861,32431,14863,49451,14865,32433,14867,41217,14869,32435,14871,45609,14873,32437,14875,41219,14877,32439,14879,47805,14881,32441,14883,41221,14885,32443,14887,45611,14889,32445,14891,41223,14893,32447,14895,48903,14897,32449,14899,41225,14901,32451,14903,45613,14905,32453,14907,41227,14909,32455,14911,47807,14913,32457,14915,41229,14917,32459,14919,45615,14921,32461,14923,41231,14925,32463,14927,49863,14929,32465,14931,41233,14933,32467,14935,45617,14937,32469,14939,41235,14941,32471,14943,47809,14945,32473,14947,41237,14949,32475,14951,45619,14953,32477,14955,41239,14957,32479,14959,48905,14961,32481,14963,41241,14965,32483,14967,45621,14969,32485,14971,41243,14973,32487,14975,47811,14977,32489,14979,41245,14981,32491,14983,45623,14985,32493,14987,41247,14989,32495,14991,49453,14993,32497,14995,41249,14997,32499,14999,45625,15001,32501,15003,41251,15005,32503,15007,47813,15009,32505,15011,41253,15013,32507,15015,45627,15017,32509,15019,41255,15021,32511,15023,48907,15025,32513,15027,41257,15029,32515,15031,45629,15033,32517,15035,41259,15037,32519,15039,47815,15041,32521,15043,41261,15045,32523,15047,45631,15049,32525,15051,41263,15053,32527,15055,49727,15057,32529,15059,41265,15061,32531,15063,45633,15065,32533,15067,41267,15069,32535,15071,47817,15073,32537,15075,41269,15077,32539,15079,45635,15081,32541,15083,41271,15085,32543,15087,48909,15089,32545,15091,41273,15093,32547,15095,45637,15097,32549,15099,41275,15101,32551,15103,47819,15105,32553,15107,41277,15109,32555,15111,45639,15113,32557,15115,41279,15117,32559,15119,49455,15121,32561,15123,41281,15125,32563,15127,45641,15129,32565,15131,41283,15133,32567,15135,47821,15137,32569,15139,41285,15141,32571,15143,45643,15145,32573,15147,41287,15149,32575,15151,48911,15153,32577,15155,41289,15157,32579,15159,45645,15161,32581,15163,41291,15165,32583,15167,47823,15169,32585,15171,41293,15173,32587,15175,45647,15177,32589,15179,41295,15181,32591,15183,49983,15185,32593,15187,41297,15189,32595,15191,45649,15193,32597,15195,41299,15197,32599,15199,47825,15201,32601,15203,41301,15205,32603,15207,45651,15209,32605,15211,41303,15213,32607,15215,48913,15217,32609,15219,41305,15221,32611,15223,45653,15225,32613,15227,41307,15229,32615,15231,47827,15233,32617,15235,41309,15237,32619,15239,45655,15241,32621,15243,41311,15245,32623,15247,49457,15249,32625,15251,41313,15253,32627,15255,45657,15257,32629,15259,41315,15261,32631,15263,47829,15265,32633,15267,41317,15269,32635,15271,45659,15273,32637,15275,41319,15277,32639,15279,48915,15281,32641,15283,41321,15285,32643,15287,45661,15289,32645,15291,41323,15293,32647,15295,47831,15297,32649,15299,41325,15301,32651,15303,45663,15305,32653,15307,41327,15309,32655,15311,49729,15313,32657,15315,41329,15317,32659,15319,45665,15321,32661,15323,41331,15325,32663,15327,47833,15329,32665,15331,41333,15333,32667,15335,45667,15337,32669,15339,41335,15341,32671,15343,48917,15345,32673,15347,41337,15349,32675,15351,45669,15353,32677,15355,41339,15357,32679,15359,47835,15361,32681,15363,41341,15365,32683,15367,45671,15369,32685,15371,41343,15373,32687,15375,49459,15377,32689,15379,41345,15381,32691,15383,45673,15385,32693,15387,41347,15389,32695,15391,47837,15393,32697,15395,41349,15397,32699,15399,45675,15401,32701,15403,41351,15405,32703,15407,48919,15409,32705,15411,41353,15413,32707,15415,45677,15417,32709,15419,41355,15421,32711,15423,47839,15425,32713,15427,41357,15429,32715,15431,45679,15433,32717,15435,41359,15437,32719,15439,49865,15441,32721,15443,41361,15445,32723,15447,45681,15449,32725,15451,41363,15453,32727,15455,47841,15457,32729,15459,41365,15461,32731,15463,45683,15465,32733,15467,41367,15469,32735,15471,48921,15473,32737,15475,41369,15477,32739,15479,45685,15481,32741,15483,41371,15485,32743,15487,47843,15489,32745,15491,41373,15493,32747,15495,45687,15497,32749,15499,41375,15501,32751,15503,49461,15505,32753,15507,41377,15509,32755,15511,45689,15513,32757,15515,41379,15517,32759,15519,47845,15521,32761,15523,41381,15525,32763,15527,45691,15529,32765,15531,41383,15533,32767,15535,48923,15537,32769,15539,41385,15541,32771,15543,45693,15545,32773,15547,41387,15549,32775,15551,47847,15553,32777,15555,41389,15557,32779,15559,45695,15561,32781,15563,41391,15565,32783,15567,49731,15569,32785,15571,41393,15573,32787,15575,45697,15577,32789,15579,41395,15581,32791,15583,47849,15585,32793,15587,41397,15589,32795,15591,45699,15593,32797,15595,41399,15597,32799,15599,48925,15601,32801,15603,41401,15605,32803,15607,45701,15609,32805,15611,41403,15613,32807,15615,47851,15617,32809,15619,41405,15621,32811,15623,45703,15625,32813,15627,41407,15629,32815,15631,49463,15633,32817,15635,41409,15637,32819,15639,45705,15641,32821,15643,41411,15645,32823,15647,47853,15649,32825,15651,41413,15653,32827,15655,45707,15657,32829,15659,41415,15661,32831,15663,48927,15665,32833,15667,41417,15669,32835,15671,45709,15673,32837,15675,41419,15677,32839,15679,47855,15681,32841,15683,41421,15685,32843,15687,45711,15689,32845,15691,41423,15693,32847,15695,49933,15697,32849,15699,41425,15701,32851,15703,45713,15705,32853,15707,41427,15709,32855,15711,47857,15713,32857,15715,41429,15717,32859,15719,45715,15721,32861,15723,41431,15725,32863,15727,48929,15729,32865,15731,41433,15733,32867,15735,45717,15737,32869,15739,41435,15741,32871,15743,47859,15745,32873,15747,41437,15749,32875,15751,45719,15753,32877,15755,41439,15757,32879,15759,49465,15761,32881,15763,41441,15765,32883,15767,45721,15769,32885,15771,41443,15773,32887,15775,47861,15777,32889,15779,41445,15781,32891,15783,45723,15785,32893,15787,41447,15789,32895,15791,48931,15793,32897,15795,41449,15797,32899,15799,45725,15801,32901,15803,41451,15805,32903,15807,47863,15809,32905,15811,41453,15813,32907,15815,45727,15817,32909,15819,41455,15821,32911,15823,49733,15825,32913,15827,41457,15829,32915,15831,45729,15833,32917,15835,41459,15837,32919,15839,47865,15841,32921,15843,41461,15845,32923,15847,45731,15849,32925,15851,41463,15853,32927,15855,48933,15857,32929,15859,41465,15861,32931,15863,45733,15865,32933,15867,41467,15869,32935,15871,47867,15873,32937,15875,41469,15877,32939,15879,45735,15881,32941,15883,41471,15885,32943,15887,49467,15889,32945,15891,41473,15893,32947,15895,45737,15897,32949,15899,41475,15901,32951,15903,47869,15905,32953,15907,41477,15909,32955,15911,45739,15913,32957,15915,41479,15917,32959,15919,48935,15921,32961,15923,41481,15925,32963,15927,45741,15929,32965,15931,41483,15933,32967,15935,47871,15937,32969,15939,41485,15941,32971,15943,45743,15945,32973,15947,41487,15949,32975,15951,49867,15953,32977,15955,41489,15957,32979,15959,45745,15961,32981,15963,41491,15965,32983,15967,47873,15969,32985,15971,41493,15973,32987,15975,45747,15977,32989,15979,41495,15981,32991,15983,48937,15985,32993,15987,41497,15989,32995,15991,45749,15993,32997,15995,41499,15997,32999,15999,47875,16001,33001,16003,41501,16005,33003,16007,45751,16009,33005,16011,41503,16013,33007,16015,49469,16017,33009,16019,41505,16021,33011,16023,45753,16025,33013,16027,41507,16029,33015,16031,47877,16033,33017,16035,41509,16037,33019,16039,45755,16041,33021,16043,41511,16045,33023,16047,48939,16049,33025,16051,41513,16053,33027,16055,45757,16057,33029,16059,41515,16061,33031,16063,47879,16065,33033,16067,41517,16069,33035,16071,45759,16073,33037,16075,41519,16077,33039,16079,49735,16081,33041,16083,41521,16085,33043,16087,45761,16089,33045,16091,41523,16093,33047,16095,47881,16097,33049,16099,41525,16101,33051,16103,45763,16105,33053,16107,41527,16109,33055,16111,48941,16113,33057,16115,41529,16117,33059,16119,45765,16121,33061,16123,41531,16125,33063,16127,47883,16129,33065,16131,41533,16133,33067,16135,45767,16137,33069,16139,41535,16141,33071,16143,49471,16145,33073,16147,41537,16149,33075,16151,45769,16153,33077,16155,41539,16157,33079,16159,47885,16161,33081,16163,41541,16165,33083,16167,45771,16169,33085,16171,41543,16173,33087,16175,48943,16177,33089,16179,41545,16181,33091,16183,45773,16185,33093,16187,41547,16189,33095,16191,47887,16193,33097,16195,41549,16197,33099,16199,45775,16201,33101,16203,41551,16205,33103,16207,49967,16209,33105,16211,41553,16213,33107,16215,45777,16217,33109,16219,41555,16221,33111,16223,47889,16225,33113,16227,41557,16229,33115,16231,45779,16233,33117,16235,41559,16237,33119,16239,48945,16241,33121,16243,41561,16245,33123,16247,45781,16249,33125,16251,41563,16253,33127,16255,47891,16257,33129,16259,41565,16261,33131,16263,45783,16265,33133,16267,41567,16269,33135,16271,49473,16273,33137,16275,41569,16277,33139,16279,45785,16281,33141,16283,41571,16285,33143,16287,47893,16289,33145,16291,41573,16293,33147,16295,45787,16297,33149,16299,41575,16301,33151,16303,48947,16305,33153,16307,41577,16309,33155,16311,45789,16313,33157,16315,41579,16317,33159,16319,47895,16321,33161,16323,41581,16325,33163,16327,45791,16329,33165,16331,41583,16333,33167,16335,49737,16337,33169,16339,41585,16341,33171,16343,45793,16345,33173,16347,41587,16349,33175,16351,47897,16353,33177,16355,41589,16357,33179,16359,45795,16361,33181,16363,41591,16365,33183,16367,48949,16369,33185,16371,41593,16373,33187,16375,45797,16377,33189,16379,41595,16381,33191,16383,47899,16385,33193,16387,41597,16389,33195,16391,45799,16393,33197,16395,41599,16397,33199,16399,49475,16401,33201,16403,41601,16405,33203,16407,45801,16409,33205,16411,41603,16413,33207,16415,47901,16417,33209,16419,41605,16421,33211,16423,45803,16425,33213,16427,41607,16429,33215,16431,48951,16433,33217,16435,41609,16437,33219,16439,45805,16441,33221,16443,41611,16445,33223,16447,47903,16449,33225,16451,41613,16453,33227,16455,45807,16457,33229,16459,41615,16461,33231,16463,49869,16465,33233,16467,41617,16469,33235,16471,45809,16473,33237,16475,41619,16477,33239,16479,47905,16481,33241,16483,41621,16485,33243,16487,45811,16489,33245,16491,41623,16493,33247,16495,48953,16497,33249,16499,41625,16501,33251,16503,45813,16505,33253,16507,41627,16509,33255,16511,47907,16513,33257,16515,41629,16517,33259,16519,45815,16521,33261,16523,41631,16525,33263,16527,49477,16529,33265,16531,41633,16533,33267,16535,45817,16537,33269,16539,41635,16541,33271,16543,47909,16545,33273,16547,41637,16549,33275,16551,45819,16553,33277,16555,41639,16557,33279,16559,48955,16561,33281,16563,41641,16565,33283,16567,45821,16569,33285,16571,41643,16573,33287,16575,47911,16577,33289,16579,41645,16581,33291,16583,45823,16585,33293,16587,41647,16589,33295,16591,49739,16593,33297,16595,41649,16597,33299,16599,45825,16601,33301,16603,41651,16605,33303,16607,47913,16609,33305,16611,41653,16613,33307,16615,45827,16617,33309,16619,41655,16621,33311,16623,48957,16625,33313,16627,41657,16629,33315,16631,45829,16633,33317,16635,41659,16637,33319,16639,47915,16641,33321,16643,41661,16645,33323,16647,45831,16649,33325,16651,41663,16653,33327,16655,49479,16657,33329,16659,41665,16661,33331,16663,45833,16665,33333,16667,41667,16669,33335,16671,47917,16673,33337,16675,41669,16677,33339,16679,45835,16681,33341,16683,41671,16685,33343,16687,48959,16689,33345,16691,41673,16693,33347,16695,45837,16697,33349,16699,41675,16701,33351,16703,47919,16705,33353,16707,41677,16709,33355,16711,45839,16713,33357,16715,41679,16717,33359,16719,49935,16721,33361,16723,41681,16725,33363,16727,45841,16729,33365,16731,41683,16733,33367,16735,47921,16737,33369,16739,41685,16741,33371,16743,45843,16745,33373,16747,41687,16749,33375,16751,48961,16753,33377,16755,41689,16757,33379,16759,45845,16761,33381,16763,41691,16765,33383,16767,47923,16769,33385,16771,41693,16773,33387,16775,45847,16777,33389,16779,41695,16781,33391,16783,49481,16785,33393,16787,41697,16789,33395,16791,45849,16793,33397,16795,41699,16797,33399,16799,47925,16801,33401,16803,41701,16805,33403,16807,45851,16809,33405,16811,41703,16813,33407,16815,48963,16817,33409,16819,41705,16821,33411,16823,45853,16825,33413,16827,41707,16829,33415,16831,47927,16833,33417,16835,41709,16837,33419,16839,45855,16841,33421,16843,41711,16845,33423,16847,49741,16849,33425,16851,41713,16853,33427,16855,45857,16857,33429,16859,41715,16861,33431,16863,47929,16865,33433,16867,41717,16869,33435,16871,45859,16873,33437,16875,41719,16877,33439,16879,48965,16881,33441,16883,41721,16885,33443,16887,45861,16889,33445,16891,41723,16893,33447,16895,47931,16897,33449,16899,41725,16901,33451,16903,45863,16905,33453,16907,41727,16909,33455,16911,49483,16913,33457,16915,41729,16917,33459,16919,45865,16921,33461,16923,41731,16925,33463,16927,47933,16929,33465,16931,41733,16933,33467,16935,45867,16937,33469,16939,41735,16941,33471,16943,48967,16945,33473,16947,41737,16949,33475,16951,45869,16953,33477,16955,41739,16957,33479,16959,47935,16961,33481,16963,41741,16965,33483,16967,45871,16969,33485,16971,41743,16973,33487,16975,49871,16977,33489,16979,41745,16981,33491,16983,45873,16985,33493,16987,41747,16989,33495,16991,47937,16993,33497,16995,41749,16997,33499,16999,45875,17001,33501,17003,41751,17005,33503,17007,48969,17009,33505,17011,41753,17013,33507,17015,45877,17017,33509,17019,41755,17021,33511,17023,47939,17025,33513,17027,41757,17029,33515,17031,45879,17033,33517,17035,41759,17037,33519,17039,49485,17041,33521,17043,41761,17045,33523,17047,45881,17049,33525,17051,41763,17053,33527,17055,47941,17057,33529,17059,41765,17061,33531,17063,45883,17065,33533,17067,41767,17069,33535,17071,48971,17073,33537,17075,41769,17077,33539,17079,45885,17081,33541,17083,41771,17085,33543,17087,47943,17089,33545,17091,41773,17093,33547,17095,45887,17097,33549,17099,41775,17101,33551,17103,49743,17105,33553,17107,41777,17109,33555,17111,45889,17113,33557,17115,41779,17117,33559,17119,47945,17121,33561,17123,41781,17125,33563,17127,45891,17129,33565,17131,41783,17133,33567,17135,48973,17137,33569,17139,41785,17141,33571,17143,45893,17145,33573,17147,41787,17149,33575,17151,47947,17153,33577,17155,41789,17157,33579,17159,45895,17161,33581,17163,41791,17165,33583,17167,49487,17169,33585,17171,41793,17173,33587,17175,45897,17177,33589,17179,41795,17181,33591,17183,47949,17185,33593,17187,41797,17189,33595,17191,45899,17193,33597,17195,41799,17197,33599,17199,48975,17201,33601,17203,41801,17205,33603,17207,45901,17209,33605,17211,41803,17213,33607,17215,47951,17217,33609,17219,41805,17221,33611,17223,45903,17225,33613,17227,41807,17229,33615,17231,49998,17233,33617,17235,41809,17237,33619,17239,45905,17241,33621,17243,41811,17245,33623,17247,47953,17249,33625,17251,41813,17253,33627,17255,45907,17257,33629,17259,41815,17261,33631,17263,48977,17265,33633,17267,41817,17269,33635,17271,45909,17273,33637,17275,41819,17277,33639,17279,47955,17281,33641,17283,41821,17285,33643,17287,45911,17289,33645,17291,41823,17293,33647,17295,49489,17297,33649,17299,41825,17301,33651,17303,45913,17305,33653,17307,41827,17309,33655,17311,47957,17313,33657,17315,41829,17317,33659,17319,45915,17321,33661,17323,41831,17325,33663,17327,48979,17329,33665,17331,41833,17333,33667,17335,45917,17337,33669,17339,41835,17341,33671,17343,47959,17345,33673,17347,41837,17349,33675,17351,45919,17353,33677,17355,41839,17357,33679,17359,49745,17361,33681,17363,41841,17365,33683,17367,45921,17369,33685,17371,41843,17373,33687,17375,47961,17377,33689,17379,41845,17381,33691,17383,45923,17385,33693,17387,41847,17389,33695,17391,48981,17393,33697,17395,41849,17397,33699,17399,45925,17401,33701,17403,41851,17405,33703,17407,47963,17409,33705,17411,41853,17413,33707,17415,45927,17417,33709,17419,41855,17421,33711,17423,49491,17425,33713,17427,41857,17429,33715,17431,45929,17433,33717,17435,41859,17437,33719,17439,47965,17441,33721,17443,41861,17445,33723,17447,45931,17449,33725,17451,41863,17453,33727,17455,48983,17457,33729,17459,41865,17461,33731,17463,45933,17465,33733,17467,41867,17469,33735,17471,47967,17473,33737,17475,41869,17477,33739,17479,45935,17481,33741,17483,41871,17485,33743,17487,49873,17489,33745,17491,41873,17493,33747,17495,45937,17497,33749,17499,41875,17501,33751,17503,47969,17505,33753,17507,41877,17509,33755,17511,45939,17513,33757,17515,41879,17517,33759,17519,48985,17521,33761,17523,41881,17525,33763,17527,45941,17529,33765,17531,41883,17533,33767,17535,47971,17537,33769,17539,41885,17541,33771,17543,45943,17545,33773,17547,41887,17549,33775,17551,49493,17553,33777,17555,41889,17557,33779,17559,45945,17561,33781,17563,41891,17565,33783,17567,47973,17569,33785,17571,41893,17573,33787,17575,45947,17577,33789,17579,41895,17581,33791,17583,48987,17585,33793,17587,41897,17589,33795,17591,45949,17593,33797,17595,41899,17597,33799,17599,47975,17601,33801,17603,41901,17605,33803,17607,45951,17609,33805,17611,41903,17613,33807,17615,49747,17617,33809,17619,41905,17621,33811,17623,45953,17625,33813,17627,41907,17629,33815,17631,47977,17633,33817,17635,41909,17637,33819,17639,45955,17641,33821,17643,41911,17645,33823,17647,48989,17649,33825,17651,41913,17653,33827,17655,45957,17657,33829,17659,41915,17661,33831,17663,47979,17665,33833,17667,41917,17669,33835,17671,45959,17673,33837,17675,41919,17677,33839,17679,49495,17681,33841,17683,41921,17685,33843,17687,45961,17689,33845,17691,41923,17693,33847,17695,47981,17697,33849,17699,41925,17701,33851,17703,45963,17705,33853,17707,41927,17709,33855,17711,48991,17713,33857,17715,41929,17717,33859,17719,45965,17721,33861,17723,41931,17725,33863,17727,47983,17729,33865,17731,41933,17733,33867,17735,45967,17737,33869,17739,41935,17741,33871,17743,49937,17745,33873,17747,41937,17749,33875,17751,45969,17753,33877,17755,41939,17757,33879,17759,47985,17761,33881,17763,41941,17765,33883,17767,45971,17769,33885,17771,41943,17773,33887,17775,48993,17777,33889,17779,41945,17781,33891,17783,45973,17785,33893,17787,41947,17789,33895,17791,47987,17793,33897,17795,41949,17797,33899,17799,45975,17801,33901,17803,41951,17805,33903,17807,49497,17809,33905,17811,41953,17813,33907,17815,45977,17817,33909,17819,41955,17821,33911,17823,47989,17825,33913,17827,41957,17829,33915,17831,45979,17833,33917,17835,41959,17837,33919,17839,48995,17841,33921,17843,41961,17845,33923,17847,45981,17849,33925,17851,41963,17853,33927,17855,47991,17857,33929,17859,41965,17861,33931,17863,45983,17865,33933,17867,41967,17869,33935,17871,49749,17873,33937,17875,41969,17877,33939,17879,45985,17881,33941,17883,41971,17885,33943,17887,47993,17889,33945,17891,41973,17893,33947,17895,45987,17897,33949,17899,41975,17901,33951,17903,48997,17905,33953,17907,41977,17909,33955,17911,45989,17913,33957,17915,41979,17917,33959,17919,47995,17921,33961,17923,41981,17925,33963,17927,45991,17929,33965,17931,41983,17933,33967,17935,49499,17937,33969,17939,41985,17941,33971,17943,45993,17945,33973,17947,41987,17949,33975,17951,47997,17953,33977,17955,41989,17957,33979,17959,45995,17961,33981,17963,41991,17965,33983,17967,48999,17969,33985,17971,41993,17973,33987,17975,45997,17977,33989,17979,41995,17981,33991,17983,47999,17985,33993,17987,41997,17989,33995,17991,45999,17993,33997,17995,41999,17997,33999,17999,49875,18001,34001,18003,42001,18005,34003,18007,46001,18009,34005,18011,42003,18013,34007,18015,48001,18017,34009,18019,42005,18021,34011,18023,46003,18025,34013,18027,42007,18029,34015,18031,49001,18033,34017,18035,42009,18037,34019,18039,46005,18041,34021,18043,42011,18045,34023,18047,48003,18049,34025,18051,42013,18053,34027,18055,46007,18057,34029,18059,42015,18061,34031,18063,49501,18065,34033,18067,42017,18069,34035,18071,46009,18073,34037,18075,42019,18077,34039,18079,48005,18081,34041,18083,42021,18085,34043,18087,46011,18089,34045,18091,42023,18093,34047,18095,49003,18097,34049,18099,42025,18101,34051,18103,46013,18105,34053,18107,42027,18109,34055,18111,48007,18113,34057,18115,42029,18117,34059,18119,46015,18121,34061,18123,42031,18125,34063,18127,49751,18129,34065,18131,42033,18133,34067,18135,46017,18137,34069,18139,42035,18141,34071,18143,48009,18145,34073,18147,42037,18149,34075,18151,46019,18153,34077,18155,42039,18157,34079,18159,49005,18161,34081,18163,42041,18165,34083,18167,46021,18169,34085,18171,42043,18173,34087,18175,48011,18177,34089,18179,42045,18181,34091,18183,46023,18185,34093,18187,42047,18189,34095,18191,49503,18193,34097,18195,42049,18197,34099,18199,46025,18201,34101,18203,42051,18205,34103,18207,48013,18209,34105,18211,42053,18213,34107,18215,46027,18217,34109,18219,42055,18221,34111,18223,49007,18225,34113,18227,42057,18229,34115,18231,46029,18233,34117,18235,42059,18237,34119,18239,48015,18241,34121,18243,42061,18245,34123,18247,46031,18249,34125,18251,42063,18253,34127,18255,49969,18257,34129,18259,42065,18261,34131,18263,46033,18265,34133,18267,42067,18269,34135,18271,48017,18273,34137,18275,42069,18277,34139,18279,46035,18281,34141,18283,42071,18285,34143,18287,49009,18289,34145,18291,42073,18293,34147,18295,46037,18297,34149,18299,42075,18301,34151,18303,48019,18305,34153,18307,42077,18309,34155,18311,46039,18313,34157,18315,42079,18317,34159,18319,49505,18321,34161,18323,42081,18325,34163,18327,46041,18329,34165,18331,42083,18333,34167,18335,48021,18337,34169,18339,42085,18341,34171,18343,46043,18345,34173,18347,42087,18349,34175,18351,49011,18353,34177,18355,42089,18357,34179,18359,46045,18361,34181,18363,42091,18365,34183,18367,48023,18369,34185,18371,42093,18373,34187,18375,46047,18377,34189,18379,42095,18381,34191,18383,49753,18385,34193,18387,42097,18389,34195,18391,46049,18393,34197,18395,42099,18397,34199,18399,48025,18401,34201,18403,42101,18405,34203,18407,46051,18409,34205,18411,42103,18413,34207,18415,49013,18417,34209,18419,42105,18421,34211,18423,46053,18425,34213,18427,42107,18429,34215,18431,48027,18433,34217,18435,42109,18437,34219,18439,46055,18441,34221,18443,42111,18445,34223,18447,49507,18449,34225,18451,42113,18453,34227,18455,46057,18457,34229,18459,42115,18461,34231,18463,48029,18465,34233,18467,42117,18469,34235,18471,46059,18473,34237,18475,42119,18477,34239,18479,49015,18481,34241,18483,42121,18485,34243,18487,46061,18489,34245,18491,42123,18493,34247,18495,48031,18497,34249,18499,42125,18501,34251,18503,46063,18505,34253,18507,42127,18509,34255,18511,49877,18513,34257,18515,42129,18517,34259,18519,46065,18521,34261,18523,42131,18525,34263,18527,48033,18529,34265,18531,42133,18533,34267,18535,46067,18537,34269,18539,42135,18541,34271,18543,49017,18545,34273,18547,42137,18549,34275,18551,46069,18553,34277,18555,42139,18557,34279,18559,48035,18561,34281,18563,42141,18565,34283,18567,46071,18569,34285,18571,42143,18573,34287,18575,49509,18577,34289,18579,42145,18581,34291,18583,46073,18585,34293,18587,42147,18589,34295,18591,48037,18593,34297,18595,42149,18597,34299,18599,46075,18601,34301,18603,42151,18605,34303,18607,49019,18609,34305,18611,42153,18613,34307,18615,46077,18617,34309,18619,42155,18621,34311,18623,48039,18625,34313,18627,42157,18629,34315,18631,46079,18633,34317,18635,42159,18637,34319,18639,49755,18641,34321,18643,42161,18645,34323,18647,46081,18649,34325,18651,42163,18653,34327,18655,48041,18657,34329,18659,42165,18661,34331,18663,46083,18665,34333,18667,42167,18669,34335,18671,49021,18673,34337,18675,42169,18677,34339,18679,46085,18681,34341,18683,42171,18685,34343,18687,48043,18689,34345,18691,42173,18693,34347,18695,46087,18697,34349,18699,42175,18701,34351,18703,49511,18705,34353,18707,42177,18709,34355,18711,46089,18713,34357,18715,42179,18717,34359,18719,48045,18721,34361,18723,42181,18725,34363,18727,46091,18729,34365,18731,42183,18733,34367,18735,49023,18737,34369,18739,42185,18741,34371,18743,46093,18745,34373,18747,42187,18749,34375,18751,48047,18753,34377,18755,42189,18757,34379,18759,46095,18761,34381,18763,42191,18765,34383,18767,49939,18769,34385,18771,42193,18773,34387,18775,46097,18777,34389,18779,42195,18781,34391,18783,48049,18785,34393,18787,42197,18789,34395,18791,46099,18793,34397,18795,42199,18797,34399,18799,49025,18801,34401,18803,42201,18805,34403,18807,46101,18809,34405,18811,42203,18813,34407,18815,48051,18817,34409,18819,42205,18821,34411,18823,46103,18825,34413,18827,42207,18829,34415,18831,49513,18833,34417,18835,42209,18837,34419,18839,46105,18841,34421,18843,42211,18845,34423,18847,48053,18849,34425,18851,42213,18853,34427,18855,46107,18857,34429,18859,42215,18861,34431,18863,49027,18865,34433,18867,42217,18869,34435,18871,46109,18873,34437,18875,42219,18877,34439,18879,48055,18881,34441,18883,42221,18885,34443,18887,46111,18889,34445,18891,42223,18893,34447,18895,49757,18897,34449,18899,42225,18901,34451,18903,46113,18905,34453,18907,42227,18909,34455,18911,48057,18913,34457,18915,42229,18917,34459,18919,46115,18921,34461,18923,42231,18925,34463,18927,49029,18929,34465,18931,42233,18933,34467,18935,46117,18937,34469,18939,42235,18941,34471,18943,48059,18945,34473,18947,42237,18949,34475,18951,46119,18953,34477,18955,42239,18957,34479,18959,49515,18961,34481,18963,42241,18965,34483,18967,46121,18969,34485,18971,42243,18973,34487,18975,48061,18977,34489,18979,42245,18981,34491,18983,46123,18985,34493,18987,42247,18989,34495,18991,49031,18993,34497,18995,42249,18997,34499,18999,46125,19001,34501,19003,42251,19005,34503,19007,48063,19009,34505,19011,42253,19013,34507,19015,46127,19017,34509,19019,42255,19021,34511,19023,49879,19025,34513,19027,42257,19029,34515,19031,46129,19033,34517,19035,42259,19037,34519,19039,48065,19041,34521,19043,42261,19045,34523,19047,46131,19049,34525,19051,42263,19053,34527,19055,49033,19057,34529,19059,42265,19061,34531,19063,46133,19065,34533,19067,42267,19069,34535,19071,48067,19073,34537,19075,42269,19077,34539,19079,46135,19081,34541,19083,42271,19085,34543,19087,49517,19089,34545,19091,42273,19093,34547,19095,46137,19097,34549,19099,42275,19101,34551,19103,48069,19105,34553,19107,42277,19109,34555,19111,46139,19113,34557,19115,42279,19117,34559,19119,49035,19121,34561,19123,42281,19125,34563,19127,46141,19129,34565,19131,42283,19133,34567,19135,48071,19137,34569,19139,42285,19141,34571,19143,46143,19145,34573,19147,42287,19149,34575,19151,49759,19153,34577,19155,42289,19157,34579,19159,46145,19161,34581,19163,42291,19165,34583,19167,48073,19169,34585,19171,42293,19173,34587,19175,46147,19177,34589,19179,42295,19181,34591,19183,49037,19185,34593,19187,42297,19189,34595,19191,46149,19193,34597,19195,42299,19197,34599,19199,48075,19201,34601,19203,42301,19205,34603,19207,46151,19209,34605,19211,42303,19213,34607,19215,49519,19217,34609,19219,42305,19221,34611,19223,46153,19225,34613,19227,42307,19229,34615,19231,48077,19233,34617,19235,42309,19237,34619,19239,46155,19241,34621,19243,42311,19245,34623,19247,49039,19249,34625,19251,42313,19253,34627,19255,46157,19257,34629,19259,42315,19261,34631,19263,48079,19265,34633,19267,42317,19269,34635,19271,46159,19273,34637,19275,42319,19277,34639,19279,49985,19281,34641,19283,42321,19285,34643,19287,46161,19289,34645,19291,42323,19293,34647,19295,48081,19297,34649,19299,42325,19301,34651,19303,46163,19305,34653,19307,42327,19309,34655,19311,49041,19313,34657,19315,42329,19317,34659,19319,46165,19321,34661,19323,42331,19325,34663,19327,48083,19329,34665,19331,42333,19333,34667,19335,46167,19337,34669,19339,42335,19341,34671,19343,49521,19345,34673,19347,42337,19349,34675,19351,46169,19353,34677,19355,42339,19357,34679,19359,48085,19361,34681,19363,42341,19365,34683,19367,46171,19369,34685,19371,42343,19373,34687,19375,49043,19377,34689,19379,42345,19381,34691,19383,46173,19385,34693,19387,42347,19389,34695,19391,48087,19393,34697,19395,42349,19397,34699,19399,46175,19401,34701,19403,42351,19405,34703,19407,49761,19409,34705,19411,42353,19413,34707,19415,46177,19417,34709,19419,42355,19421,34711,19423,48089,19425,34713,19427,42357,19429,34715,19431,46179,19433,34717,19435,42359,19437,34719,19439,49045,19441,34721,19443,42361,19445,34723,19447,46181,19449,34725,19451,42363,19453,34727,19455,48091,19457,34729,19459,42365,19461,34731,19463,46183,19465,34733,19467,42367,19469,34735,19471,49523,19473,34737,19475,42369,19477,34739,19479,46185,19481,34741,19483,42371,19485,34743,19487,48093,19489,34745,19491,42373,19493,34747,19495,46187,19497,34749,19499,42375,19501,34751,19503,49047,19505,34753,19507,42377,19509,34755,19511,46189,19513,34757,19515,42379,19517,34759,19519,48095,19521,34761,19523,42381,19525,34763,19527,46191,19529,34765,19531,42383,19533,34767,19535,49881,19537,34769,19539,42385,19541,34771,19543,46193,19545,34773,19547,42387,19549,34775,19551,48097,19553,34777,19555,42389,19557,34779,19559,46195,19561,34781,19563,42391,19565,34783,19567,49049,19569,34785,19571,42393,19573,34787,19575,46197,19577,34789,19579,42395,19581,34791,19583,48099,19585,34793,19587,42397,19589,34795,19591,46199,19593,34797,19595,42399,19597,34799,19599,49525,19601,34801,19603,42401,19605,34803,19607,46201,19609,34805,19611,42403,19613,34807,19615,48101,19617,34809,19619,42405,19621,34811,19623,46203,19625,34813,19627,42407,19629,34815,19631,49051,19633,34817,19635,42409,19637,34819,19639,46205,19641,34821,19643,42411,19645,34823,19647,48103,19649,34825,19651,42413,19653,34827,19655,46207,19657,34829,19659,42415,19661,34831,19663,49763,19665,34833,19667,42417,19669,34835,19671,46209,19673,34837,19675,42419,19677,34839,19679,48105,19681,34841,19683,42421,19685,34843,19687,46211,19689,34845,19691,42423,19693,34847,19695,49053,19697,34849,19699,42425,19701,34851,19703,46213,19705,34853,19707,42427,19709,34855,19711,48107,19713,34857,19715,42429,19717,34859,19719,46215,19721,34861,19723,42431,19725,34863,19727,49527,19729,34865,19731,42433,19733,34867,19735,46217,19737,34869,19739,42435,19741,34871,19743,48109,19745,34873,19747,42437,19749,34875,19751,46219,19753,34877,19755,42439,19757,34879,19759,49055,19761,34881,19763,42441,19765,34883,19767,46221,19769,34885,19771,42443,19773,34887,19775,48111,19777,34889,19779,42445,19781,34891,19783,46223,19785,34893,19787,42447,19789,34895,19791,49941,19793,34897,19795,42449,19797,34899,19799,46225,19801,34901,19803,42451,19805,34903,19807,48113,19809,34905,19811,42453,19813,34907,19815,46227,19817,34909,19819,42455,19821,34911,19823,49057,19825,34913,19827,42457,19829,34915,19831,46229,19833,34917,19835,42459,19837,34919,19839,48115,19841,34921,19843,42461,19845,34923,19847,46231,19849,34925,19851,42463,19853,34927,19855,49529,19857,34929,19859,42465,19861,34931,19863,46233,19865,34933,19867,42467,19869,34935,19871,48117,19873,34937,19875,42469,19877,34939,19879,46235,19881,34941,19883,42471,19885,34943,19887,49059,19889,34945,19891,42473,19893,34947,19895,46237,19897,34949,19899,42475,19901,34951,19903,48119,19905,34953,19907,42477,19909,34955,19911,46239,19913,34957,19915,42479,19917,34959,19919,49765,19921,34961,19923,42481,19925,34963,19927,46241,19929,34965,19931,42483,19933,34967,19935,48121,19937,34969,19939,42485,19941,34971,19943,46243,19945,34973,19947,42487,19949,34975,19951,49061,19953,34977,19955,42489,19957,34979,19959,46245,19961,34981,19963,42491,19965,34983,19967,48123,19969,34985,19971,42493,19973,34987,19975,46247,19977,34989,19979,42495,19981,34991,19983,49531,19985,34993,19987,42497,19989,34995,19991,46249,19993,34997,19995,42499,19997,34999,19999,48125,20001,35001,20003,42501,20005,35003,20007,46251,20009,35005,20011,42503,20013,35007,20015,49063,20017,35009,20019,42505,20021,35011,20023,46253,20025,35013,20027,42507,20029,35015,20031,48127,20033,35017,20035,42509,20037,35019,20039,46255,20041,35021,20043,42511,20045,35023,20047,49883,20049,35025,20051,42513,20053,35027,20055,46257,20057,35029,20059,42515,20061,35031,20063,48129,20065,35033,20067,42517,20069,35035,20071,46259,20073,35037,20075,42519,20077,35039,20079,49065,20081,35041,20083,42521,20085,35043,20087,46261,20089,35045,20091,42523,20093,35047,20095,48131,20097,35049,20099,42525,20101,35051,20103,46263,20105,35053,20107,42527,20109,35055,20111,49533,20113,35057,20115,42529,20117,35059,20119,46265,20121,35061,20123,42531,20125,35063,20127,48133,20129,35065,20131,42533,20133,35067,20135,46267,20137,35069,20139,42535,20141,35071,20143,49067,20145,35073,20147,42537,20149,35075,20151,46269,20153,35077,20155,42539,20157,35079,20159,48135,20161,35081,20163,42541,20165,35083,20167,46271,20169,35085,20171,42543,20173,35087,20175,49767,20177,35089,20179,42545,20181,35091,20183,46273,20185,35093,20187,42547,20189,35095,20191,48137,20193,35097,20195,42549,20197,35099,20199,46275,20201,35101,20203,42551,20205,35103,20207,49069,20209,35105,20211,42553,20213,35107,20215,46277,20217,35109,20219,42555,20221,35111,20223,48139,20225,35113,20227,42557,20229,35115,20231,46279,20233,35117,20235,42559,20237,35119,20239,49535,20241,35121,20243,42561,20245,35123,20247,46281,20249,35125,20251,42563,20253,35127,20255,48141,20257,35129,20259,42565,20261,35131,20263,46283,20265,35133,20267,42567,20269,35135,20271,49071,20273,35137,20275,42569,20277,35139,20279,46285,20281,35141,20283,42571,20285,35143,20287,48143,20289,35145,20291,42573,20293,35147,20295,46287,20297,35149,20299,42575,20301,35151,20303,49971,20305,35153,20307,42577,20309,35155,20311,46289,20313,35157,20315,42579,20317,35159,20319,48145,20321,35161,20323,42581,20325,35163,20327,46291,20329,35165,20331,42583,20333,35167,20335,49073,20337,35169,20339,42585,20341,35171,20343,46293,20345,35173,20347,42587,20349,35175,20351,48147,20353,35177,20355,42589,20357,35179,20359,46295,20361,35181,20363,42591,20365,35183,20367,49537,20369,35185,20371,42593,20373,35187,20375,46297,20377,35189,20379,42595,20381,35191,20383,48149,20385,35193,20387,42597,20389,35195,20391,46299,20393,35197,20395,42599,20397,35199,20399,49075,20401,35201,20403,42601,20405,35203,20407,46301,20409,35205,20411,42603,20413,35207,20415,48151,20417,35209,20419,42605,20421,35211,20423,46303,20425,35213,20427,42607,20429,35215,20431,49769,20433,35217,20435,42609,20437,35219,20439,46305,20441,35221,20443,42611,20445,35223,20447,48153,20449,35225,20451,42613,20453,35227,20455,46307,20457,35229,20459,42615,20461,35231,20463,49077,20465,35233,20467,42617,20469,35235,20471,46309,20473,35237,20475,42619,20477,35239,20479,48155,20481,35241,20483,42621,20485,35243,20487,46311,20489,35245,20491,42623,20493,35247,20495,49539,20497,35249,20499,42625,20501,35251,20503,46313,20505,35253,20507,42627,20509,35255,20511,48157,20513,35257,20515,42629,20517,35259,20519,46315,20521,35261,20523,42631,20525,35263,20527,49079,20529,35265,20531,42633,20533,35267,20535,46317,20537,35269,20539,42635,20541,35271,20543,48159,20545,35273,20547,42637,20549,35275,20551,46319,20553,35277,20555,42639,20557,35279,20559,49885,20561,35281,20563,42641,20565,35283,20567,46321,20569,35285,20571,42643,20573,35287,20575,48161,20577,35289,20579,42645,20581,35291,20583,46323,20585,35293,20587,42647,20589,35295,20591,49081,20593,35297,20595,42649,20597,35299,20599,46325,20601,35301,20603,42651,20605,35303,20607,48163,20609,35305,20611,42653,20613,35307,20615,46327,20617,35309,20619,42655,20621,35311,20623,49541,20625,35313,20627,42657,20629,35315,20631,46329,20633,35317,20635,42659,20637,35319,20639,48165,20641,35321,20643,42661,20645,35323,20647,46331,20649,35325,20651,42663,20653,35327,20655,49083,20657,35329,20659,42665,20661,35331,20663,46333,20665,35333,20667,42667,20669,35335,20671,48167,20673,35337,20675,42669,20677,35339,20679,46335,20681,35341,20683,42671,20685,35343,20687,49771,20689,35345,20691,42673,20693,35347,20695,46337,20697,35349,20699,42675,20701,35351,20703,48169,20705,35353,20707,42677,20709,35355,20711,46339,20713,35357,20715,42679,20717,35359,20719,49085,20721,35361,20723,42681,20725,35363,20727,46341,20729,35365,20731,42683,20733,35367,20735,48171,20737,35369,20739,42685,20741,35371,20743,46343,20745,35373,20747,42687,20749,35375,20751,49543,20753,35377,20755,42689,20757,35379,20759,46345,20761,35381,20763,42691,20765,35383,20767,48173,20769,35385,20771,42693,20773,35387,20775,46347,20777,35389,20779,42695,20781,35391,20783,49087,20785,35393,20787,42697,20789,35395,20791,46349,20793,35397,20795,42699,20797,35399,20799,48175,20801,35401,20803,42701,20805,35403,20807,46351,20809,35405,20811,42703,20813,35407,20815,49943,20817,35409,20819,42705,20821,35411,20823,46353,20825,35413,20827,42707,20829,35415,20831,48177,20833,35417,20835,42709,20837,35419,20839,46355,20841,35421,20843,42711,20845,35423,20847,49089,20849,35425,20851,42713,20853,35427,20855,46357,20857,35429,20859,42715,20861,35431,20863,48179,20865,35433,20867,42717,20869,35435,20871,46359,20873,35437,20875,42719,20877,35439,20879,49545,20881,35441,20883,42721,20885,35443,20887,46361,20889,35445,20891,42723,20893,35447,20895,48181,20897,35449,20899,42725,20901,35451,20903,46363,20905,35453,20907,42727,20909,35455,20911,49091,20913,35457,20915,42729,20917,35459,20919,46365,20921,35461,20923,42731,20925,35463,20927,48183,20929,35465,20931,42733,20933,35467,20935,46367,20937,35469,20939,42735,20941,35471,20943,49773,20945,35473,20947,42737,20949,35475,20951,46369,20953,35477,20955,42739,20957,35479,20959,48185,20961,35481,20963,42741,20965,35483,20967,46371,20969,35485,20971,42743,20973,35487,20975,49093,20977,35489,20979,42745,20981,35491,20983,46373,20985,35493,20987,42747,20989,35495,20991,48187,20993,35497,20995,42749,20997,35499,20999,46375,21001,35501,21003,42751,21005,35503,21007,49547,21009,35505,21011,42753,21013,35507,21015,46377,21017,35509,21019,42755,21021,35511,21023,48189,21025,35513,21027,42757,21029,35515,21031,46379,21033,35517,21035,42759,21037,35519,21039,49095,21041,35521,21043,42761,21045,35523,21047,46381,21049,35525,21051,42763,21053,35527,21055,48191,21057,35529,21059,42765,21061,35531,21063,46383,21065,35533,21067,42767,21069,35535,21071,49887,21073,35537,21075,42769,21077,35539,21079,46385,21081,35541,21083,42771,21085,35543,21087,48193,21089,35545,21091,42773,21093,35547,21095,46387,21097,35549,21099,42775,21101,35551,21103,49097,21105,35553,21107,42777,21109,35555,21111,46389,21113,35557,21115,42779,21117,35559,21119,48195,21121,35561,21123,42781,21125,35563,21127,46391,21129,35565,21131,42783,21133,35567,21135,49549,21137,35569,21139,42785,21141,35571,21143,46393,21145,35573,21147,42787,21149,35575,21151,48197,21153,35577,21155,42789,21157,35579,21159,46395,21161,35581,21163,42791,21165,35583,21167,49099,21169,35585,21171,42793,21173,35587,21175,46397,21177,35589,21179,42795,21181,35591,21183,48199,21185,35593,21187,42797,21189,35595,21191,46399,21193,35597,21195,42799,21197,35599,21199,49775,21201,35601,21203,42801,21205,35603,21207,46401,21209,35605,21211,42803,21213,35607,21215,48201,21217,35609,21219,42805,21221,35611,21223,46403,21225,35613,21227,42807,21229,35615,21231,49101,21233,35617,21235,42809,21237,35619,21239,46405,21241,35621,21243,42811,21245,35623,21247,48203,21249,35625,21251,42813,21253,35627,21255,46407,21257,35629,21259,42815,21261,35631,21263,49551,21265,35633,21267,42817,21269,35635,21271,46409,21273,35637,21275,42819,21277,35639,21279,48205,21281,35641,21283,42821,21285,35643,21287,46411,21289,35645,21291,42823,21293,35647,21295,49103,21297,35649,21299,42825,21301,35651,21303,46413,21305,35653,21307,42827,21309,35655,21311,48207,21313,35657,21315,42829,21317,35659,21319,46415,21321,35661,21323,42831,21325,35663,21327,49993,21329,35665,21331,42833,21333,35667,21335,46417,21337,35669,21339,42835,21341,35671,21343,48209,21345,35673,21347,42837,21349,35675,21351,46419,21353,35677,21355,42839,21357,35679,21359,49105,21361,35681,21363,42841,21365,35683,21367,46421,21369,35685,21371,42843,21373,35687,21375,48211,21377,35689,21379,42845,21381,35691,21383,46423,21385,35693,21387,42847,21389,35695,21391,49553,21393,35697,21395,42849,21397,35699,21399,46425,21401,35701,21403,42851,21405,35703,21407,48213,21409,35705,21411,42853,21413,35707,21415,46427,21417,35709,21419,42855,21421,35711,21423,49107,21425,35713,21427,42857,21429,35715,21431,46429,21433,35717,21435,42859,21437,35719,21439,48215,21441,35721,21443,42861,21445,35723,21447,46431,21449,35725,21451,42863,21453,35727,21455,49777,21457,35729,21459,42865,21461,35731,21463,46433,21465,35733,21467,42867,21469,35735,21471,48217,21473,35737,21475,42869,21477,35739,21479,46435,21481,35741,21483,42871,21485,35743,21487,49109,21489,35745,21491,42873,21493,35747,21495,46437,21497,35749,21499,42875,21501,35751,21503,48219,21505,35753,21507,42877,21509,35755,21511,46439,21513,35757,21515,42879,21517,35759,21519,49555,21521,35761,21523,42881,21525,35763,21527,46441,21529,35765,21531,42883,21533,35767,21535,48221,21537,35769,21539,42885,21541,35771,21543,46443,21545,35773,21547,42887,21549,35775,21551,49111,21553,35777,21555,42889,21557,35779,21559,46445,21561,35781,21563,42891,21565,35783,21567,48223,21569,35785,21571,42893,21573,35787,21575,46447,21577,35789,21579,42895,21581,35791,21583,49889,21585,35793,21587,42897,21589,35795,21591,46449,21593,35797,21595,42899,21597,35799,21599,48225,21601,35801,21603,42901,21605,35803,21607,46451,21609,35805,21611,42903,21613,35807,21615,49113,21617,35809,21619,42905,21621,35811,21623,46453,21625,35813,21627,42907,21629,35815,21631,48227,21633,35817,21635,42909,21637,35819,21639,46455,21641,35821,21643,42911,21645,35823,21647,49557,21649,35825,21651,42913,21653,35827,21655,46457,21657,35829,21659,42915,21661,35831,21663,48229,21665,35833,21667,42917,21669,35835,21671,46459,21673,35837,21675,42919,21677,35839,21679,49115,21681,35841,21683,42921,21685,35843,21687,46461,21689,35845,21691,42923,21693,35847,21695,48231,21697,35849,21699,42925,21701,35851,21703,46463,21705,35853,21707,42927,21709,35855,21711,49779,21713,35857,21715,42929,21717,35859,21719,46465,21721,35861,21723,42931,21725,35863,21727,48233,21729,35865,21731,42933,21733,35867,21735,46467,21737,35869,21739,42935,21741,35871,21743,49117,21745,35873,21747,42937,21749,35875,21751,46469,21753,35877,21755,42939,21757,35879,21759,48235,21761,35881,21763,42941,21765,35883,21767,46471,21769,35885,21771,42943,21773,35887,21775,49559,21777,35889,21779,42945,21781,35891,21783,46473,21785,35893,21787,42947,21789,35895,21791,48237,21793,35897,21795,42949,21797,35899,21799,46475,21801,35901,21803,42951,21805,35903,21807,49119,21809,35905,21811,42953,21813,35907,21815,46477,21817,35909,21819,42955,21821,35911,21823,48239,21825,35913,21827,42957,21829,35915,21831,46479,21833,35917,21835,42959,21837,35919,21839,49945,21841,35921,21843,42961,21845,35923,21847,46481,21849,35925,21851,42963,21853,35927,21855,48241,21857,35929,21859,42965,21861,35931,21863,46483,21865,35933,21867,42967,21869,35935,21871,49121,21873,35937,21875,42969,21877,35939,21879,46485,21881,35941,21883,42971,21885,35943,21887,48243,21889,35945,21891,42973,21893,35947,21895,46487,21897,35949,21899,42975,21901,35951,21903,49561,21905,35953,21907,42977,21909,35955,21911,46489,21913,35957,21915,42979,21917,35959,21919,48245,21921,35961,21923,42981,21925,35963,21927,46491,21929,35965,21931,42983,21933,35967,21935,49123,21937,35969,21939,42985,21941,35971,21943,46493,21945,35973,21947,42987,21949,35975,21951,48247,21953,35977,21955,42989,21957,35979,21959,46495,21961,35981,21963,42991,21965,35983,21967,49781,21969,35985,21971,42993,21973,35987,21975,46497,21977,35989,21979,42995,21981,35991,21983,48249,21985,35993,21987,42997,21989,35995,21991,46499,21993,35997,21995,42999,21997,35999,21999,49125,22001,36001,22003,43001,22005,36003,22007,46501,22009,36005,22011,43003,22013,36007,22015,48251,22017,36009,22019,43005,22021,36011,22023,46503,22025,36013,22027,43007,22029,36015,22031,49563,22033,36017,22035,43009,22037,36019,22039,46505,22041,36021,22043,43011,22045,36023,22047,48253,22049,36025,22051,43013,22053,36027,22055,46507,22057,36029,22059,43015,22061,36031,22063,49127,22065,36033,22067,43017,22069,36035,22071,46509,22073,36037,22075,43019,22077,36039,22079,48255,22081,36041,22083,43021,22085,36043,22087,46511,22089,36045,22091,43023,22093,36047,22095,49891,22097,36049,22099,43025,22101,36051,22103,46513,22105,36053,22107,43027,22109,36055,22111,48257,22113,36057,22115,43029,22117,36059,22119,46515,22121,36061,22123,43031,22125,36063,22127,49129,22129,36065,22131,43033,22133,36067,22135,46517,22137,36069,22139,43035,22141,36071,22143,48259,22145,36073,22147,43037,22149,36075,22151,46519,22153,36077,22155,43039,22157,36079,22159,49565,22161,36081,22163,43041,22165,36083,22167,46521,22169,36085,22171,43043,22173,36087,22175,48261,22177,36089,22179,43045,22181,36091,22183,46523,22185,36093,22187,43047,22189,36095,22191,49131,22193,36097,22195,43049,22197,36099,22199,46525,22201,36101,22203,43051,22205,36103,22207,48263,22209,36105,22211,43053,22213,36107,22215,46527,22217,36109,22219,43055,22221,36111,22223,49783,22225,36113,22227,43057,22229,36115,22231,46529,22233,36117,22235,43059,22237,36119,22239,48265,22241,36121,22243,43061,22245,36123,22247,46531,22249,36125,22251,43063,22253,36127,22255,49133,22257,36129,22259,43065,22261,36131,22263,46533,22265,36133,22267,43067,22269,36135,22271,48267,22273,36137,22275,43069,22277,36139,22279,46535,22281,36141,22283,43071,22285,36143,22287,49567,22289,36145,22291,43073,22293,36147,22295,46537,22297,36149,22299,43075,22301,36151,22303,48269,22305,36153,22307,43077,22309,36155,22311,46539,22313,36157,22315,43079,22317,36159,22319,49135,22321,36161,22323,43081,22325,36163,22327,46541,22329,36165,22331,43083,22333,36167,22335,48271,22337,36169,22339,43085,22341,36171,22343,46543,22345,36173,22347,43087,22349,36175,22351,49973,22353,36177,22355,43089,22357,36179,22359,46545,22361,36181,22363,43091,22365,36183,22367,48273,22369,36185,22371,43093,22373,36187,22375,46547,22377,36189,22379,43095,22381,36191,22383,49137,22385,36193,22387,43097,22389,36195,22391,46549,22393,36197,22395,43099,22397,36199,22399,48275,22401,36201,22403,43101,22405,36203,22407,46551,22409,36205,22411,43103,22413,36207,22415,49569,22417,36209,22419,43105,22421,36211,22423,46553,22425,36213,22427,43107,22429,36215,22431,48277,22433,36217,22435,43109,22437,36219,22439,46555,22441,36221,22443,43111,22445,36223,22447,49139,22449,36225,22451,43113,22453,36227,22455,46557,22457,36229,22459,43115,22461,36231,22463,48279,22465,36233,22467,43117,22469,36235,22471,46559,22473,36237,22475,43119,22477,36239,22479,49785,22481,36241,22483,43121,22485,36243,22487,46561,22489,36245,22491,43123,22493,36247,22495,48281,22497,36249,22499,43125,22501,36251,22503,46563,22505,36253,22507,43127,22509,36255,22511,49141,22513,36257,22515,43129,22517,36259,22519,46565,22521,36261,22523,43131,22525,36263,22527,48283,22529,36265,22531,43133,22533,36267,22535,46567,22537,36269,22539,43135,22541,36271,22543,49571,22545,36273,22547,43137,22549,36275,22551,46569,22553,36277,22555,43139,22557,36279,22559,48285,22561,36281,22563,43141,22565,36283,22567,46571,22569,36285,22571,43143,22573,36287,22575,49143,22577,36289,22579,43145,22581,36291,22583,46573,22585,36293,22587,43147,22589,36295,22591,48287,22593,36297,22595,43149,22597,36299,22599,46575,22601,36301,22603,43151,22605,36303,22607,49893,22609,36305,22611,43153,22613,36307,22615,46577,22617,36309,22619,43155,22621,36311,22623,48289,22625,36313,22627,43157,22629,36315,22631,46579,22633,36317,22635,43159,22637,36319,22639,49145,22641,36321,22643,43161,22645,36323,22647,46581,22649,36325,22651,43163,22653,36327,22655,48291,22657,36329,22659,43165,22661,36331,22663,46583,22665,36333,22667,43167,22669,36335,22671,49573,22673,36337,22675,43169,22677,36339,22679,46585,22681,36341,22683,43171,22685,36343,22687,48293,22689,36345,22691,43173,22693,36347,22695,46587,22697,36349,22699,43175,22701,36351,22703,49147,22705,36353,22707,43177,22709,36355,22711,46589,22713,36357,22715,43179,22717,36359,22719,48295,22721,36361,22723,43181,22725,36363,22727,46591,22729,36365,22731,43183,22733,36367,22735,49787,22737,36369,22739,43185,22741,36371,22743,46593,22745,36373,22747,43187,22749,36375,22751,48297,22753,36377,22755,43189,22757,36379,22759,46595,22761,36381,22763,43191,22765,36383,22767,49149,22769,36385,22771,43193,22773,36387,22775,46597,22777,36389,22779,43195,22781,36391,22783,48299,22785,36393,22787,43197,22789,36395,22791,46599,22793,36397,22795,43199,22797,36399,22799,49575,22801,36401,22803,43201,22805,36403,22807,46601,22809,36405,22811,43203,22813,36407,22815,48301,22817,36409,22819,43205,22821,36411,22823,46603,22825,36413,22827,43207,22829,36415,22831,49151,22833,36417,22835,43209,22837,36419,22839,46605,22841,36421,22843,43211,22845,36423,22847,48303,22849,36425,22851,43213,22853,36427,22855,46607,22857,36429,22859,43215,22861,36431,22863,49947,22865,36433,22867,43217,22869,36435,22871,46609,22873,36437,22875,43219,22877,36439,22879,48305,22881,36441,22883,43221,22885,36443,22887,46611,22889,36445,22891,43223,22893,36447,22895,49153,22897,36449,22899,43225,22901,36451,22903,46613,22905,36453,22907,43227,22909,36455,22911,48307,22913,36457,22915,43229,22917,36459,22919,46615,22921,36461,22923,43231,22925,36463,22927,49577,22929,36465,22931,43233,22933,36467,22935,46617,22937,36469,22939,43235,22941,36471,22943,48309,22945,36473,22947,43237,22949,36475,22951,46619,22953,36477,22955,43239,22957,36479,22959,49155,22961,36481,22963,43241,22965,36483,22967,46621,22969,36485,22971,43243,22973,36487,22975,48311,22977,36489,22979,43245,22981,36491,22983,46623,22985,36493,22987,43247,22989,36495,22991,49789,22993,36497,22995,43249,22997,36499,22999,46625,23001,36501,23003,43251,23005,36503,23007,48313,23009,36505,23011,43253,23013,36507,23015,46627,23017,36509,23019,43255,23021,36511,23023,49157,23025,36513,23027,43257,23029,36515,23031,46629,23033,36517,23035,43259,23037,36519,23039,48315,23041,36521,23043,43261,23045,36523,23047,46631,23049,36525,23051,43263,23053,36527,23055,49579,23057,36529,23059,43265,23061,36531,23063,46633,23065,36533,23067,43267,23069,36535,23071,48317,23073,36537,23075,43269,23077,36539,23079,46635,23081,36541,23083,43271,23085,36543,23087,49159,23089,36545,23091,43273,23093,36547,23095,46637,23097,36549,23099,43275,23101,36551,23103,48319,23105,36553,23107,43277,23109,36555,23111,46639,23113,36557,23115,43279,23117,36559,23119,49895,23121,36561,23123,43281,23125,36563,23127,46641,23129,36565,23131,43283,23133,36567,23135,48321,23137,36569,23139,43285,23141,36571,23143,46643,23145,36573,23147,43287,23149,36575,23151,49161,23153,36577,23155,43289,23157,36579,23159,46645,23161,36581,23163,43291,23165,36583,23167,48323,23169,36585,23171,43293,23173,36587,23175,46647,23177,36589,23179,43295,23181,36591,23183,49581,23185,36593,23187,43297,23189,36595,23191,46649,23193,36597,23195,43299,23197,36599,23199,48325,23201,36601,23203,43301,23205,36603,23207,46651,23209,36605,23211,43303,23213,36607,23215,49163,23217,36609,23219,43305,23221,36611,23223,46653,23225,36613,23227,43307,23229,36615,23231,48327,23233,36617,23235,43309,23237,36619,23239,46655,23241,36621,23243,43311,23245,36623,23247,49791,23249,36625,23251,43313,23253,36627,23255,46657,23257,36629,23259,43315,23261,36631,23263,48329,23265,36633,23267,43317,23269,36635,23271,46659,23273,36637,23275,43319,23277,36639,23279,49165,23281,36641,23283,43321,23285,36643,23287,46661,23289,36645,23291,43323,23293,36647,23295,48331,23297,36649,23299,43325,23301,36651,23303,46663,23305,36653,23307,43327,23309,36655,23311,49583,23313,36657,23315,43329,23317,36659,23319,46665,23321,36661,23323,43331,23325,36663,23327,48333,23329,36665,23331,43333,23333,36667,23335,46667,23337,36669,23339,43335,23341,36671,23343,49167,23345,36673,23347,43337,23349,36675,23351,46669,23353,36677,23355,43339,23357,36679,23359,48335,23361,36681,23363,43341,23365,36683,23367,46671,23369,36685,23371,43343,23373,36687,23375,49987,23377,36689,23379,43345,23381,36691,23383,46673,23385,36693,23387,43347,23389,36695,23391,48337,23393,36697,23395,43349,23397,36699,23399,46675,23401,36701,23403,43351,23405,36703,23407,49169,23409,36705,23411,43353,23413,36707,23415,46677,23417,36709,23419,43355,23421,36711,23423,48339,23425,36713,23427,43357,23429,36715,23431,46679,23433,36717,23435,43359,23437,36719,23439,49585,23441,36721,23443,43361,23445,36723,23447,46681,23449,36725,23451,43363,23453,36727,23455,48341,23457,36729,23459,43365,23461,36731,23463,46683,23465,36733,23467,43367,23469,36735,23471,49171,23473,36737,23475,43369,23477,36739,23479,46685,23481,36741,23483,43371,23485,36743,23487,48343,23489,36745,23491,43373,23493,36747,23495,46687,23497,36749,23499,43375,23501,36751,23503,49793,23505,36753,23507,43377,23509,36755,23511,46689,23513,36757,23515,43379,23517,36759,23519,48345,23521,36761,23523,43381,23525,36763,23527,46691,23529,36765,23531,43383,23533,36767,23535,49173,23537,36769,23539,43385,23541,36771,23543,46693,23545,36773,23547,43387,23549,36775,23551,48347,23553,36777,23555,43389,23557,36779,23559,46695,23561,36781,23563,43391,23565,36783,23567,49587,23569,36785,23571,43393,23573,36787,23575,46697,23577,36789,23579,43395,23581,36791,23583,48349,23585,36793,23587,43397,23589,36795,23591,46699,23593,36797,23595,43399,23597,36799,23599,49175,23601,36801,23603,43401,23605,36803,23607,46701,23609,36805,23611,43403,23613,36807,23615,48351,23617,36809,23619,43405,23621,36811,23623,46703,23625,36813,23627,43407,23629,36815,23631,49897,23633,36817,23635,43409,23637,36819,23639,46705,23641,36821,23643,43411,23645,36823,23647,48353,23649,36825,23651,43413,23653,36827,23655,46707,23657,36829,23659,43415,23661,36831,23663,49177,23665,36833,23667,43417,23669,36835,23671,46709,23673,36837,23675,43419,23677,36839,23679,48355,23681,36841,23683,43421,23685,36843,23687,46711,23689,36845,23691,43423,23693,36847,23695,49589,23697,36849,23699,43425,23701,36851,23703,46713,23705,36853,23707,43427,23709,36855,23711,48357,23713,36857,23715,43429,23717,36859,23719,46715,23721,36861,23723,43431,23725,36863,23727,49179,23729,36865,23731,43433,23733,36867,23735,46717,23737,36869,23739,43435,23741,36871,23743,48359,23745,36873,23747,43437,23749,36875,23751,46719,23753,36877,23755,43439,23757,36879,23759,49795,23761,36881,23763,43441,23765,36883,23767,46721,23769,36885,23771,43443,23773,36887,23775,48361,23777,36889,23779,43445,23781,36891,23783,46723,23785,36893,23787,43447,23789,36895,23791,49181,23793,36897,23795,43449,23797,36899,23799,46725,23801,36901,23803,43451,23805,36903,23807,48363,23809,36905,23811,43453,23813,36907,23815,46727,23817,36909,23819,43455,23821,36911,23823,49591,23825,36913,23827,43457,23829,36915,23831,46729,23833,36917,23835,43459,23837,36919,23839,48365,23841,36921,23843,43461,23845,36923,23847,46731,23849,36925,23851,43463,23853,36927,23855,49183,23857,36929,23859,43465,23861,36931,23863,46733,23865,36933,23867,43467,23869,36935,23871,48367,23873,36937,23875,43469,23877,36939,23879,46735,23881,36941,23883,43471,23885,36943,23887,49949,23889,36945,23891,43473,23893,36947,23895,46737,23897,36949,23899,43475,23901,36951,23903,48369,23905,36953,23907,43477,23909,36955,23911,46739,23913,36957,23915,43479,23917,36959,23919,49185,23921,36961,23923,43481,23925,36963,23927,46741,23929,36965,23931,43483,23933,36967,23935,48371,23937,36969,23939,43485,23941,36971,23943,46743,23945,36973,23947,43487,23949,36975,23951,49593,23953,36977,23955,43489,23957,36979,23959,46745,23961,36981,23963,43491,23965,36983,23967,48373,23969,36985,23971,43493,23973,36987,23975,46747,23977,36989,23979,43495,23981,36991,23983,49187,23985,36993,23987,43497,23989,36995,23991,46749,23993,36997,23995,43499,23997,36999,23999,48375,24001,37001,24003,43501,24005,37003,24007,46751,24009,37005,24011,43503,24013,37007,24015,49797,24017,37009,24019,43505,24021,37011,24023,46753,24025,37013,24027,43507,24029,37015,24031,48377,24033,37017,24035,43509,24037,37019,24039,46755,24041,37021,24043,43511,24045,37023,24047,49189,24049,37025,24051,43513,24053,37027,24055,46757,24057,37029,24059,43515,24061,37031,24063,48379,24065,37033,24067,43517,24069,37035,24071,46759,24073,37037,24075,43519,24077,37039,24079,49595,24081,37041,24083,43521,24085,37043,24087,46761,24089,37045,24091,43523,24093,37047,24095,48381,24097,37049,24099,43525,24101,37051,24103,46763,24105,37053,24107,43527,24109,37055,24111,49191,24113,37057,24115,43529,24117,37059,24119,46765,24121,37061,24123,43531,24125,37063,24127,48383,24129,37065,24131,43533,24133,37067,24135,46767,24137,37069,24139,43535,24141,37071,24143,49899,24145,37073,24147,43537,24149,37075,24151,46769,24153,37077,24155,43539,24157,37079,24159,48385,24161,37081,24163,43541,24165,37083,24167,46771,24169,37085,24171,43543,24173,37087,24175,49193,24177,37089,24179,43545,24181,37091,24183,46773,24185,37093,24187,43547,24189,37095,24191,48387,24193,37097,24195,43549,24197,37099,24199,46775,24201,37101,24203,43551,24205,37103,24207,49597,24209,37105,24211,43553,24213,37107,24215,46777,24217,37109,24219,43555,24221,37111,24223,48389,24225,37113,24227,43557,24229,37115,24231,46779,24233,37117,24235,43559,24237,37119,24239,49195,24241,37121,24243,43561,24245,37123,24247,46781,24249,37125,24251,43563,24253,37127,24255,48391,24257,37129,24259,43565,24261,37131,24263,46783,24265,37133,24267,43567,24269,37135,24271,49799,24273,37137,24275,43569,24277,37139,24279,46785,24281,37141,24283,43571,24285,37143,24287,48393,24289,37145,24291,43573,24293,37147,24295,46787,24297,37149,24299,43575,24301,37151,24303,49197,24305,37153,24307,43577,24309,37155,24311,46789,24313,37157,24315,43579,24317,37159,24319,48395,24321,37161,24323,43581,24325,37163,24327,46791,24329,37165,24331,43583,24333,37167,24335,49599,24337,37169,24339,43585,24341,37171,24343,46793,24345,37173,24347,43587,24349,37175,24351,48397,24353,37177,24355,43589,24357,37179,24359,46795,24361,37181,24363,43591,24365,37183,24367,49199,24369,37185,24371,43593,24373,37187,24375,46797,24377,37189,24379,43595,24381,37191,24383,48399,24385,37193,24387,43597,24389,37195,24391,46799,24393,37197,24395,43599,24397,37199,24399,49975,24401,37201,24403,43601,24405,37203,24407,46801,24409,37205,24411,43603,24413,37207,24415,48401,24417,37209,24419,43605,24421,37211,24423,46803,24425,37213,24427,43607,24429,37215,24431,49201,24433,37217,24435,43609,24437,37219,24439,46805,24441,37221,24443,43611,24445,37223,24447,48403,24449,37225,24451,43613,24453,37227,24455,46807,24457,37229,24459,43615,24461,37231,24463,49601,24465,37233,24467,43617,24469,37235,24471,46809,24473,37237,24475,43619,24477,37239,24479,48405,24481,37241,24483,43621,24485,37243,24487,46811,24489,37245,24491,43623,24493,37247,24495,49203,24497,37249,24499,43625,24501,37251,24503,46813,24505,37253,24507,43627,24509,37255,24511,48407,24513,37257,24515,43629,24517,37259,24519,46815,24521,37261,24523,43631,24525,37263,24527,49801,24529,37265,24531,43633,24533,37267,24535,46817,24537,37269,24539,43635,24541,37271,24543,48409,24545,37273,24547,43637,24549,37275,24551,46819,24553,37277,24555,43639,24557,37279,24559,49205,24561,37281,24563,43641,24565,37283,24567,46821,24569,37285,24571,43643,24573,37287,24575,48411,24577,37289,24579,43645,24581,37291,24583,46823,24585,37293,24587,43647,24589,37295,24591,49603,24593,37297,24595,43649,24597,37299,24599,46825,24601,37301,24603,43651,24605,37303,24607,48413,24609,37305,24611,43653,24613,37307,24615,46827,24617,37309,24619,43655,24621,37311,24623,49207,24625,37313,24627,43657,24629,37315,24631,46829,24633,37317,24635,43659,24637,37319,24639,48415,24641,37321,24643,43661,24645,37323,24647,46831,24649,37325,24651,43663,24653,37327,24655,49901,24657,37329,24659,43665,24661,37331,24663,46833,24665,37333,24667,43667,24669,37335,24671,48417,24673,37337,24675,43669,24677,37339,24679,46835,24681,37341,24683,43671,24685,37343,24687,49209,24689,37345,24691,43673,24693,37347,24695,46837,24697,37349,24699,43675,24701,37351,24703,48419,24705,37353,24707,43677,24709,37355,24711,46839,24713,37357,24715,43679,24717,37359,24719,49605,24721,37361,24723,43681,24725,37363,24727,46841,24729,37365,24731,43683,24733,37367,24735,48421,24737,37369,24739,43685,24741,37371,24743,46843,24745,37373,24747,43687,24749,37375,24751,49211,24753,37377,24755,43689,24757,37379,24759,46845,24761,37381,24763,43691,24765,37383,24767,48423,24769,37385,24771,43693,24773,37387,24775,46847,24777,37389,24779,43695,24781,37391,24783,49803,24785,37393,24787,43697,24789,37395,24791,46849,24793,37397,24795,43699,24797,37399,24799,48425,24801,37401,24803,43701,24805,37403,24807,46851,24809,37405,24811,43703,24813,37407,24815,49213,24817,37409,24819,43705,24821,37411,24823,46853,24825,37413,24827,43707,24829,37415,24831,48427,24833,37417,24835,43709,24837,37419,24839,46855,24841,37421,24843,43711,24845,37423,24847,49607,24849,37425,24851,43713,24853,37427,24855,46857,24857,37429,24859,43715,24861,37431,24863,48429,24865,37433,24867,43717,24869,37435,24871,46859,24873,37437,24875,43719,24877,37439,24879,49215,24881,37441,24883,43721,24885,37443,24887,46861,24889,37445,24891,43723,24893,37447,24895,48431,24897,37449,24899,43725,24901,37451,24903,46863,24905,37453,24907,43727,24909,37455,24911,49951,24913,37457,24915,43729,24917,37459,24919,46865,24921,37461,24923,43731,24925,37463,24927,48433,24929,37465,24931,43733,24933,37467,24935,46867,24937,37469,24939,43735,24941,37471,24943,49217,24945,37473,24947,43737,24949,37475,24951,46869,24953,37477,24955,43739,24957,37479,24959,48435,24961,37481,24963,43741,24965,37483,24967,46871,24969,37485,24971,43743,24973,37487,24975,49609,24977,37489,24979,43745,24981,37491,24983,46873,24985,37493,24987,43747,24989,37495,24991,48437,24993,37497,24995,43749,24997,37499,24999,46875,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198,200,202,204,206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236,238,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,514,516,518,520,522,524,526,528,530,532,534,536,538,540,542,544,546,548,550,552,554,556,558,560,562,564,566,568,570,572,574,576,578,580,582,584,586,588,590,592,594,596,598,600,602,604,606,608,610,612,614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644,646,648,650,652,654,656,658,660,662,664,666,668,670,672,674,676,678,680,682,684,686,688,690,692,694,696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876,878,880,882,884,886,888,890,892,894,896,898,900,902,904,906,908,910,912,914,916,918,920,922,924,926,928,930,932,934,936,938,940,942,944,946,948,950,952,954,956,958,960,962,964,966,968,970,972,974,976,978,980,982,984,986,988,990,992,994,996,998,1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998,3000,3002,3004,3006,3008,3010,3012,3014,3016,3018,3020,3022,3024,3026,3028,3030,3032,3034,3036,3038,3040,3042,3044,3046,3048,3050,3052,3054,3056,3058,3060,3062,3064,3066,3068,3070,3072,3074,3076,3078,3080,3082,3084,3086,3088,3090,3092,3094,3096,3098,3100,3102,3104,3106,3108,3110,3112,3114,3116,3118,3120,3122,3124,3126,3128,3130,3132,3134,3136,3138,3140,3142,3144,3146,3148,3150,3152,3154,3156,3158,3160,3162,3164,3166,3168,3170,3172,3174,3176,3178,3180,3182,3184,3186,3188,3190,3192,3194,3196,3198,3200,3202,3204,3206,3208,3210,3212,3214,3216,3218,3220,3222,3224,3226,3228,3230,3232,3234,3236,3238,3240,3242,3244,3246,3248,3250,3252,3254,3256,3258,3260,3262,3264,3266,3268,3270,3272,3274,3276,3278,3280,3282,3284,3286,3288,3290,3292,3294,3296,3298,3300,3302,3304,3306,3308,3310,3312,3314,3316,3318,3320,3322,3324,3326,3328,3330,3332,3334,3336,3338,3340,3342,3344,3346,3348,3350,3352,3354,3356,3358,3360,3362,3364,3366,3368,3370,3372,3374,3376,3378,3380,3382,3384,3386,3388,3390,3392,3394,3396,3398,3400,3402,3404,3406,3408,3410,3412,3414,3416,3418,3420,3422,3424,3426,3428,3430,3432,3434,3436,3438,3440,3442,3444,3446,3448,3450,3452,3454,3456,3458,3460,3462,3464,3466,3468,3470,3472,3474,3476,3478,3480,3482,3484,3486,3488,3490,3492,3494,3496,3498,3500,3502,3504,3506,3508,3510,3512,3514,3516,3518,3520,3522,3524,3526,3528,3530,3532,3534,3536,3538,3540,3542,3544,3546,3548,3550,3552,3554,3556,3558,3560,3562,3564,3566,3568,3570,3572,3574,3576,3578,3580,3582,3584,3586,3588,3590,3592,3594,3596,3598,3600,3602,3604,3606,3608,3610,3612,3614,3616,3618,3620,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3648,3650,3652,3654,3656,3658,3660,3662,3664,3666,3668,3670,3672,3674,3676,3678,3680,3682,3684,3686,3688,3690,3692,3694,3696,3698,3700,3702,3704,3706,3708,3710,3712,3714,3716,3718,3720,3722,3724,3726,3728,3730,3732,3734,3736,3738,3740,3742,3744,3746,3748,3750,3752,3754,3756,3758,3760,3762,3764,3766,3768,3770,3772,3774,3776,3778,3780,3782,3784,3786,3788,3790,3792,3794,3796,3798,3800,3802,3804,3806,3808,3810,3812,3814,3816,3818,3820,3822,3824,3826,3828,3830,3832,3834,3836,3838,3840,3842,3844,3846,3848,3850,3852,3854,3856,3858,3860,3862,3864,3866,3868,3870,3872,3874,3876,3878,3880,3882,3884,3886,3888,3890,3892,3894,3896,3898,3900,3902,3904,3906,3908,3910,3912,3914,3916,3918,3920,3922,3924,3926,3928,3930,3932,3934,3936,3938,3940,3942,3944,3946,3948,3950,3952,3954,3956,3958,3960,3962,3964,3966,3968,3970,3972,3974,3976,3978,3980,3982,3984,3986,3988,3990,3992,3994,3996,3998,4000,4002,4004,4006,4008,4010,4012,4014,4016,4018,4020,4022,4024,4026,4028,4030,4032,4034,4036,4038,4040,4042,4044,4046,4048,4050,4052,4054,4056,4058,4060,4062,4064,4066,4068,4070,4072,4074,4076,4078,4080,4082,4084,4086,4088,4090,4092,4094,4096,4098,4100,4102,4104,4106,4108,4110,4112,4114,4116,4118,4120,4122,4124,4126,4128,4130,4132,4134,4136,4138,4140,4142,4144,4146,4148,4150,4152,4154,4156,4158,4160,4162,4164,4166,4168,4170,4172,4174,4176,4178,4180,4182,4184,4186,4188,4190,4192,4194,4196,4198,4200,4202,4204,4206,4208,4210,4212,4214,4216,4218,4220,4222,4224,4226,4228,4230,4232,4234,4236,4238,4240,4242,4244,4246,4248,4250,4252,4254,4256,4258,4260,4262,4264,4266,4268,4270,4272,4274,4276,4278,4280,4282,4284,4286,4288,4290,4292,4294,4296,4298,4300,4302,4304,4306,4308,4310,4312,4314,4316,4318,4320,4322,4324,4326,4328,4330,4332,4334,4336,4338,4340,4342,4344,4346,4348,4350,4352,4354,4356,4358,4360,4362,4364,4366,4368,4370,4372,4374,4376,4378,4380,4382,4384,4386,4388,4390,4392,4394,4396,4398,4400,4402,4404,4406,4408,4410,4412,4414,4416,4418,4420,4422,4424,4426,4428,4430,4432,4434,4436,4438,4440,4442,4444,4446,4448,4450,4452,4454,4456,4458,4460,4462,4464,4466,4468,4470,4472,4474,4476,4478,4480,4482,4484,4486,4488,4490,4492,4494,4496,4498,4500,4502,4504,4506,4508,4510,4512,4514,4516,4518,4520,4522,4524,4526,4528,4530,4532,4534,4536,4538,4540,4542,4544,4546,4548,4550,4552,4554,4556,4558,4560,4562,4564,4566,4568,4570,4572,4574,4576,4578,4580,4582,4584,4586,4588,4590,4592,4594,4596,4598,4600,4602,4604,4606,4608,4610,4612,4614,4616,4618,4620,4622,4624,4626,4628,4630,4632,4634,4636,4638,4640,4642,4644,4646,4648,4650,4652,4654,4656,4658,4660,4662,4664,4666,4668,4670,4672,4674,4676,4678,4680,4682,4684,4686,4688,4690,4692,4694,4696,4698,4700,4702,4704,4706,4708,4710,4712,4714,4716,4718,4720,4722,4724,4726,4728,4730,4732,4734,4736,4738,4740,4742,4744,4746,4748,4750,4752,4754,4756,4758,4760,4762,4764,4766,4768,4770,4772,4774,4776,4778,4780,4782,4784,4786,4788,4790,4792,4794,4796,4798,4800,4802,4804,4806,4808,4810,4812,4814,4816,4818,4820,4822,4824,4826,4828,4830,4832,4834,4836,4838,4840,4842,4844,4846,4848,4850,4852,4854,4856,4858,4860,4862,4864,4866,4868,4870,4872,4874,4876,4878,4880,4882,4884,4886,4888,4890,4892,4894,4896,4898,4900,4902,4904,4906,4908,4910,4912,4914,4916,4918,4920,4922,4924,4926,4928,4930,4932,4934,4936,4938,4940,4942,4944,4946,4948,4950,4952,4954,4956,4958,4960,4962,4964,4966,4968,4970,4972,4974,4976,4978,4980,4982,4984,4986,4988,4990,4992,4994,4996,4998,5000,5002,5004,5006,5008,5010,5012,5014,5016,5018,5020,5022,5024,5026,5028,5030,5032,5034,5036,5038,5040,5042,5044,5046,5048,5050,5052,5054,5056,5058,5060,5062,5064,5066,5068,5070,5072,5074,5076,5078,5080,5082,5084,5086,5088,5090,5092,5094,5096,5098,5100,5102,5104,5106,5108,5110,5112,5114,5116,5118,5120,5122,5124,5126,5128,5130,5132,5134,5136,5138,5140,5142,5144,5146,5148,5150,5152,5154,5156,5158,5160,5162,5164,5166,5168,5170,5172,5174,5176,5178,5180,5182,5184,5186,5188,5190,5192,5194,5196,5198,5200,5202,5204,5206,5208,5210,5212,5214,5216,5218,5220,5222,5224,5226,5228,5230,5232,5234,5236,5238,5240,5242,5244,5246,5248,5250,5252,5254,5256,5258,5260,5262,5264,5266,5268,5270,5272,5274,5276,5278,5280,5282,5284,5286,5288,5290,5292,5294,5296,5298,5300,5302,5304,5306,5308,5310,5312,5314,5316,5318,5320,5322,5324,5326,5328,5330,5332,5334,5336,5338,5340,5342,5344,5346,5348,5350,5352,5354,5356,5358,5360,5362,5364,5366,5368,5370,5372,5374,5376,5378,5380,5382,5384,5386,5388,5390,5392,5394,5396,5398,5400,5402,5404,5406,5408,5410,5412,5414,5416,5418,5420,5422,5424,5426,5428,5430,5432,5434,5436,5438,5440,5442,5444,5446,5448,5450,5452,5454,5456,5458,5460,5462,5464,5466,5468,5470,5472,5474,5476,5478,5480,5482,5484,5486,5488,5490,5492,5494,5496,5498,5500,5502,5504,5506,5508,5510,5512,5514,5516,5518,5520,5522,5524,5526,5528,5530,5532,5534,5536,5538,5540,5542,5544,5546,5548,5550,5552,5554,5556,5558,5560,5562,5564,5566,5568,5570,5572,5574,5576,5578,5580,5582,5584,5586,5588,5590,5592,5594,5596,5598,5600,5602,5604,5606,5608,5610,5612,5614,5616,5618,5620,5622,5624,5626,5628,5630,5632,5634,5636,5638,5640,5642,5644,5646,5648,5650,5652,5654,5656,5658,5660,5662,5664,5666,5668,5670,5672,5674,5676,5678,5680,5682,5684,5686,5688,5690,5692,5694,5696,5698,5700,5702,5704,5706,5708,5710,5712,5714,5716,5718,5720,5722,5724,5726,5728,5730,5732,5734,5736,5738,5740,5742,5744,5746,5748,5750,5752,5754,5756,5758,5760,5762,5764,5766,5768,5770,5772,5774,5776,5778,5780,5782,5784,5786,5788,5790,5792,5794,5796,5798,5800,5802,5804,5806,5808,5810,5812,5814,5816,5818,5820,5822,5824,5826,5828,5830,5832,5834,5836,5838,5840,5842,5844,5846,5848,5850,5852,5854,5856,5858,5860,5862,5864,5866,5868,5870,5872,5874,5876,5878,5880,5882,5884,5886,5888,5890,5892,5894,5896,5898,5900,5902,5904,5906,5908,5910,5912,5914,5916,5918,5920,5922,5924,5926,5928,5930,5932,5934,5936,5938,5940,5942,5944,5946,5948,5950,5952,5954,5956,5958,5960,5962,5964,5966,5968,5970,5972,5974,5976,5978,5980,5982,5984,5986,5988,5990,5992,5994,5996,5998,6000,6002,6004,6006,6008,6010,6012,6014,6016,6018,6020,6022,6024,6026,6028,6030,6032,6034,6036,6038,6040,6042,6044,6046,6048,6050,6052,6054,6056,6058,6060,6062,6064,6066,6068,6070,6072,6074,6076,6078,6080,6082,6084,6086,6088,6090,6092,6094,6096,6098,6100,6102,6104,6106,6108,6110,6112,6114,6116,6118,6120,6122,6124,6126,6128,6130,6132,6134,6136,6138,6140,6142,6144,6146,6148,6150,6152,6154,6156,6158,6160,6162,6164,6166,6168,6170,6172,6174,6176,6178,6180,6182,6184,6186,6188,6190,6192,6194,6196,6198,6200,6202,6204,6206,6208,6210,6212,6214,6216,6218,6220,6222,6224,6226,6228,6230,6232,6234,6236,6238,6240,6242,6244,6246,6248,6250,6252,6254,6256,6258,6260,6262,6264,6266,6268,6270,6272,6274,6276,6278,6280,6282,6284,6286,6288,6290,6292,6294,6296,6298,6300,6302,6304,6306,6308,6310,6312,6314,6316,6318,6320,6322,6324,6326,6328,6330,6332,6334,6336,6338,6340,6342,6344,6346,6348,6350,6352,6354,6356,6358,6360,6362,6364,6366,6368,6370,6372,6374,6376,6378,6380,6382,6384,6386,6388,6390,6392,6394,6396,6398,6400,6402,6404,6406,6408,6410,6412,6414,6416,6418,6420,6422,6424,6426,6428,6430,6432,6434,6436,6438,6440,6442,6444,6446,6448,6450,6452,6454,6456,6458,6460,6462,6464,6466,6468,6470,6472,6474,6476,6478,6480,6482,6484,6486,6488,6490,6492,6494,6496,6498,6500,6502,6504,6506,6508,6510,6512,6514,6516,6518,6520,6522,6524,6526,6528,6530,6532,6534,6536,6538,6540,6542,6544,6546,6548,6550,6552,6554,6556,6558,6560,6562,6564,6566,6568,6570,6572,6574,6576,6578,6580,6582,6584,6586,6588,6590,6592,6594,6596,6598,6600,6602,6604,6606,6608,6610,6612,6614,6616,6618,6620,6622,6624,6626,6628,6630,6632,6634,6636,6638,6640,6642,6644,6646,6648,6650,6652,6654,6656,6658,6660,6662,6664,6666,6668,6670,6672,6674,6676,6678,6680,6682,6684,6686,6688,6690,6692,6694,6696,6698,6700,6702,6704,6706,6708,6710,6712,6714,6716,6718,6720,6722,6724,6726,6728,6730,6732,6734,6736,6738,6740,6742,6744,6746,6748,6750,6752,6754,6756,6758,6760,6762,6764,6766,6768,6770,6772,6774,6776,6778,6780,6782,6784,6786,6788,6790,6792,6794,6796,6798,6800,6802,6804,6806,6808,6810,6812,6814,6816,6818,6820,6822,6824,6826,6828,6830,6832,6834,6836,6838,6840,6842,6844,6846,6848,6850,6852,6854,6856,6858,6860,6862,6864,6866,6868,6870,6872,6874,6876,6878,6880,6882,6884,6886,6888,6890,6892,6894,6896,6898,6900,6902,6904,6906,6908,6910,6912,6914,6916,6918,6920,6922,6924,6926,6928,6930,6932,6934,6936,6938,6940,6942,6944,6946,6948,6950,6952,6954,6956,6958,6960,6962,6964,6966,6968,6970,6972,6974,6976,6978,6980,6982,6984,6986,6988,6990,6992,6994,6996,6998,7000,7002,7004,7006,7008,7010,7012,7014,7016,7018,7020,7022,7024,7026,7028,7030,7032,7034,7036,7038,7040,7042,7044,7046,7048,7050,7052,7054,7056,7058,7060,7062,7064,7066,7068,7070,7072,7074,7076,7078,7080,7082,7084,7086,7088,7090,7092,7094,7096,7098,7100,7102,7104,7106,7108,7110,7112,7114,7116,7118,7120,7122,7124,7126,7128,7130,7132,7134,7136,7138,7140,7142,7144,7146,7148,7150,7152,7154,7156,7158,7160,7162,7164,7166,7168,7170,7172,7174,7176,7178,7180,7182,7184,7186,7188,7190,7192,7194,7196,7198,7200,7202,7204,7206,7208,7210,7212,7214,7216,7218,7220,7222,7224,7226,7228,7230,7232,7234,7236,7238,7240,7242,7244,7246,7248,7250,7252,7254,7256,7258,7260,7262,7264,7266,7268,7270,7272,7274,7276,7278,7280,7282,7284,7286,7288,7290,7292,7294,7296,7298,7300,7302,7304,7306,7308,7310,7312,7314,7316,7318,7320,7322,7324,7326,7328,7330,7332,7334,7336,7338,7340,7342,7344,7346,7348,7350,7352,7354,7356,7358,7360,7362,7364,7366,7368,7370,7372,7374,7376,7378,7380,7382,7384,7386,7388,7390,7392,7394,7396,7398,7400,7402,7404,7406,7408,7410,7412,7414,7416,7418,7420,7422,7424,7426,7428,7430,7432,7434,7436,7438,7440,7442,7444,7446,7448,7450,7452,7454,7456,7458,7460,7462,7464,7466,7468,7470,7472,7474,7476,7478,7480,7482,7484,7486,7488,7490,7492,7494,7496,7498,7500,7502,7504,7506,7508,7510,7512,7514,7516,7518,7520,7522,7524,7526,7528,7530,7532,7534,7536,7538,7540,7542,7544,7546,7548,7550,7552,7554,7556,7558,7560,7562,7564,7566,7568,7570,7572,7574,7576,7578,7580,7582,7584,7586,7588,7590,7592,7594,7596,7598,7600,7602,7604,7606,7608,7610,7612,7614,7616,7618,7620,7622,7624,7626,7628,7630,7632,7634,7636,7638,7640,7642,7644,7646,7648,7650,7652,7654,7656,7658,7660,7662,7664,7666,7668,7670,7672,7674,7676,7678,7680,7682,7684,7686,7688,7690,7692,7694,7696,7698,7700,7702,7704,7706,7708,7710,7712,7714,7716,7718,7720,7722,7724,7726,7728,7730,7732,7734,7736,7738,7740,7742,7744,7746,7748,7750,7752,7754,7756,7758,7760,7762,7764,7766,7768,7770,7772,7774,7776,7778,7780,7782,7784,7786,7788,7790,7792,7794,7796,7798,7800,7802,7804,7806,7808,7810,7812,7814,7816,7818,7820,7822,7824,7826,7828,7830,7832,7834,7836,7838,7840,7842,7844,7846,7848,7850,7852,7854,7856,7858,7860,7862,7864,7866,7868,7870,7872,7874,7876,7878,7880,7882,7884,7886,7888,7890,7892,7894,7896,7898,7900,7902,7904,7906,7908,7910,7912,7914,7916,7918,7920,7922,7924,7926,7928,7930,7932,7934,7936,7938,7940,7942,7944,7946,7948,7950,7952,7954,7956,7958,7960,7962,7964,7966,7968,7970,7972,7974,7976,7978,7980,7982,7984,7986,7988,7990,7992,7994,7996,7998,8000,8002,8004,8006,8008,8010,8012,8014,8016,8018,8020,8022,8024,8026,8028,8030,8032,8034,8036,8038,8040,8042,8044,8046,8048,8050,8052,8054,8056,8058,8060,8062,8064,8066,8068,8070,8072,8074,8076,8078,8080,8082,8084,8086,8088,8090,8092,8094,8096,8098,8100,8102,8104,8106,8108,8110,8112,8114,8116,8118,8120,8122,8124,8126,8128,8130,8132,8134,8136,8138,8140,8142,8144,8146,8148,8150,8152,8154,8156,8158,8160,8162,8164,8166,8168,8170,8172,8174,8176,8178,8180,8182,8184,8186,8188,8190,8192,8194,8196,8198,8200,8202,8204,8206,8208,8210,8212,8214,8216,8218,8220,8222,8224,8226,8228,8230,8232,8234,8236,8238,8240,8242,8244,8246,8248,8250,8252,8254,8256,8258,8260,8262,8264,8266,8268,8270,8272,8274,8276,8278,8280,8282,8284,8286,8288,8290,8292,8294,8296,8298,8300,8302,8304,8306,8308,8310,8312,8314,8316,8318,8320,8322,8324,8326,8328,8330,8332,8334,8336,8338,8340,8342,8344,8346,8348,8350,8352,8354,8356,8358,8360,8362,8364,8366,8368,8370,8372,8374,8376,8378,8380,8382,8384,8386,8388,8390,8392,8394,8396,8398,8400,8402,8404,8406,8408,8410,8412,8414,8416,8418,8420,8422,8424,8426,8428,8430,8432,8434,8436,8438,8440,8442,8444,8446,8448,8450,8452,8454,8456,8458,8460,8462,8464,8466,8468,8470,8472,8474,8476,8478,8480,8482,8484,8486,8488,8490,8492,8494,8496,8498,8500,8502,8504,8506,8508,8510,8512,8514,8516,8518,8520,8522,8524,8526,8528,8530,8532,8534,8536,8538,8540,8542,8544,8546,8548,8550,8552,8554,8556,8558,8560,8562,8564,8566,8568,8570,8572,8574,8576,8578,8580,8582,8584,8586,8588,8590,8592,8594,8596,8598,8600,8602,8604,8606,8608,8610,8612,8614,8616,8618,8620,8622,8624,8626,8628,8630,8632,8634,8636,8638,8640,8642,8644,8646,8648,8650,8652,8654,8656,8658,8660,8662,8664,8666,8668,8670,8672,8674,8676,8678,8680,8682,8684,8686,8688,8690,8692,8694,8696,8698,8700,8702,8704,8706,8708,8710,8712,8714,8716,8718,8720,8722,8724,8726,8728,8730,8732,8734,8736,8738,8740,8742,8744,8746,8748,8750,8752,8754,8756,8758,8760,8762,8764,8766,8768,8770,8772,8774,8776,8778,8780,8782,8784,8786,8788,8790,8792,8794,8796,8798,8800,8802,8804,8806,8808,8810,8812,8814,8816,8818,8820,8822,8824,8826,8828,8830,8832,8834,8836,8838,8840,8842,8844,8846,8848,8850,8852,8854,8856,8858,8860,8862,8864,8866,8868,8870,8872,8874,8876,8878,8880,8882,8884,8886,8888,8890,8892,8894,8896,8898,8900,8902,8904,8906,8908,8910,8912,8914,8916,8918,8920,8922,8924,8926,8928,8930,8932,8934,8936,8938,8940,8942,8944,8946,8948,8950,8952,8954,8956,8958,8960,8962,8964,8966,8968,8970,8972,8974,8976,8978,8980,8982,8984,8986,8988,8990,8992,8994,8996,8998,9000,9002,9004,9006,9008,9010,9012,9014,9016,9018,9020,9022,9024,9026,9028,9030,9032,9034,9036,9038,9040,9042,9044,9046,9048,9050,9052,9054,9056,9058,9060,9062,9064,9066,9068,9070,9072,9074,9076,9078,9080,9082,9084,9086,9088,9090,9092,9094,9096,9098,9100,9102,9104,9106,9108,9110,9112,9114,9116,9118,9120,9122,9124,9126,9128,9130,9132,9134,9136,9138,9140,9142,9144,9146,9148,9150,9152,9154,9156,9158,9160,9162,9164,9166,9168,9170,9172,9174,9176,9178,9180,9182,9184,9186,9188,9190,9192,9194,9196,9198,9200,9202,9204,9206,9208,9210,9212,9214,9216,9218,9220,9222,9224,9226,9228,9230,9232,9234,9236,9238,9240,9242,9244,9246,9248,9250,9252,9254,9256,9258,9260,9262,9264,9266,9268,9270,9272,9274,9276,9278,9280,9282,9284,9286,9288,9290,9292,9294,9296,9298,9300,9302,9304,9306,9308,9310,9312,9314,9316,9318,9320,9322,9324,9326,9328,9330,9332,9334,9336,9338,9340,9342,9344,9346,9348,9350,9352,9354,9356,9358,9360,9362,9364,9366,9368,9370,9372,9374,9376,9378,9380,9382,9384,9386,9388,9390,9392,9394,9396,9398,9400,9402,9404,9406,9408,9410,9412,9414,9416,9418,9420,9422,9424,9426,9428,9430,9432,9434,9436,9438,9440,9442,9444,9446,9448,9450,9452,9454,9456,9458,9460,9462,9464,9466,9468,9470,9472,9474,9476,9478,9480,9482,9484,9486,9488,9490,9492,9494,9496,9498,9500,9502,9504,9506,9508,9510,9512,9514,9516,9518,9520,9522,9524,9526,9528,9530,9532,9534,9536,9538,9540,9542,9544,9546,9548,9550,9552,9554,9556,9558,9560,9562,9564,9566,9568,9570,9572,9574,9576,9578,9580,9582,9584,9586,9588,9590,9592,9594,9596,9598,9600,9602,9604,9606,9608,9610,9612,9614,9616,9618,9620,9622,9624,9626,9628,9630,9632,9634,9636,9638,9640,9642,9644,9646,9648,9650,9652,9654,9656,9658,9660,9662,9664,9666,9668,9670,9672,9674,9676,9678,9680,9682,9684,9686,9688,9690,9692,9694,9696,9698,9700,9702,9704,9706,9708,9710,9712,9714,9716,9718,9720,9722,9724,9726,9728,9730,9732,9734,9736,9738,9740,9742,9744,9746,9748,9750,9752,9754,9756,9758,9760,9762,9764,9766,9768,9770,9772,9774,9776,9778,9780,9782,9784,9786,9788,9790,9792,9794,9796,9798,9800,9802,9804,9806,9808,9810,9812,9814,9816,9818,9820,9822,9824,9826,9828,9830,9832,9834,9836,9838,9840,9842,9844,9846,9848,9850,9852,9854,9856,9858,9860,9862,9864,9866,9868,9870,9872,9874,9876,9878,9880,9882,9884,9886,9888,9890,9892,9894,9896,9898,9900,9902,9904,9906,9908,9910,9912,9914,9916,9918,9920,9922,9924,9926,9928,9930,9932,9934,9936,9938,9940,9942,9944,9946,9948,9950,9952,9954,9956,9958,9960,9962,9964,9966,9968,9970,9972,9974,9976,9978,9980,9982,9984,9986,9988,9990,9992,9994,9996,9998,10000,10002,10004,10006,10008,10010,10012,10014,10016,10018,10020,10022,10024,10026,10028,10030,10032,10034,10036,10038,10040,10042,10044,10046,10048,10050,10052,10054,10056,10058,10060,10062,10064,10066,10068,10070,10072,10074,10076,10078,10080,10082,10084,10086,10088,10090,10092,10094,10096,10098,10100,10102,10104,10106,10108,10110,10112,10114,10116,10118,10120,10122,10124,10126,10128,10130,10132,10134,10136,10138,10140,10142,10144,10146,10148,10150,10152,10154,10156,10158,10160,10162,10164,10166,10168,10170,10172,10174,10176,10178,10180,10182,10184,10186,10188,10190,10192,10194,10196,10198,10200,10202,10204,10206,10208,10210,10212,10214,10216,10218,10220,10222,10224,10226,10228,10230,10232,10234,10236,10238,10240,10242,10244,10246,10248,10250,10252,10254,10256,10258,10260,10262,10264,10266,10268,10270,10272,10274,10276,10278,10280,10282,10284,10286,10288,10290,10292,10294,10296,10298,10300,10302,10304,10306,10308,10310,10312,10314,10316,10318,10320,10322,10324,10326,10328,10330,10332,10334,10336,10338,10340,10342,10344,10346,10348,10350,10352,10354,10356,10358,10360,10362,10364,10366,10368,10370,10372,10374,10376,10378,10380,10382,10384,10386,10388,10390,10392,10394,10396,10398,10400,10402,10404,10406,10408,10410,10412,10414,10416,10418,10420,10422,10424,10426,10428,10430,10432,10434,10436,10438,10440,10442,10444,10446,10448,10450,10452,10454,10456,10458,10460,10462,10464,10466,10468,10470,10472,10474,10476,10478,10480,10482,10484,10486,10488,10490,10492,10494,10496,10498,10500,10502,10504,10506,10508,10510,10512,10514,10516,10518,10520,10522,10524,10526,10528,10530,10532,10534,10536,10538,10540,10542,10544,10546,10548,10550,10552,10554,10556,10558,10560,10562,10564,10566,10568,10570,10572,10574,10576,10578,10580,10582,10584,10586,10588,10590,10592,10594,10596,10598,10600,10602,10604,10606,10608,10610,10612,10614,10616,10618,10620,10622,10624,10626,10628,10630,10632,10634,10636,10638,10640,10642,10644,10646,10648,10650,10652,10654,10656,10658,10660,10662,10664,10666,10668,10670,10672,10674,10676,10678,10680,10682,10684,10686,10688,10690,10692,10694,10696,10698,10700,10702,10704,10706,10708,10710,10712,10714,10716,10718,10720,10722,10724,10726,10728,10730,10732,10734,10736,10738,10740,10742,10744,10746,10748,10750,10752,10754,10756,10758,10760,10762,10764,10766,10768,10770,10772,10774,10776,10778,10780,10782,10784,10786,10788,10790,10792,10794,10796,10798,10800,10802,10804,10806,10808,10810,10812,10814,10816,10818,10820,10822,10824,10826,10828,10830,10832,10834,10836,10838,10840,10842,10844,10846,10848,10850,10852,10854,10856,10858,10860,10862,10864,10866,10868,10870,10872,10874,10876,10878,10880,10882,10884,10886,10888,10890,10892,10894,10896,10898,10900,10902,10904,10906,10908,10910,10912,10914,10916,10918,10920,10922,10924,10926,10928,10930,10932,10934,10936,10938,10940,10942,10944,10946,10948,10950,10952,10954,10956,10958,10960,10962,10964,10966,10968,10970,10972,10974,10976,10978,10980,10982,10984,10986,10988,10990,10992,10994,10996,10998,11000,11002,11004,11006,11008,11010,11012,11014,11016,11018,11020,11022,11024,11026,11028,11030,11032,11034,11036,11038,11040,11042,11044,11046,11048,11050,11052,11054,11056,11058,11060,11062,11064,11066,11068,11070,11072,11074,11076,11078,11080,11082,11084,11086,11088,11090,11092,11094,11096,11098,11100,11102,11104,11106,11108,11110,11112,11114,11116,11118,11120,11122,11124,11126,11128,11130,11132,11134,11136,11138,11140,11142,11144,11146,11148,11150,11152,11154,11156,11158,11160,11162,11164,11166,11168,11170,11172,11174,11176,11178,11180,11182,11184,11186,11188,11190,11192,11194,11196,11198,11200,11202,11204,11206,11208,11210,11212,11214,11216,11218,11220,11222,11224,11226,11228,11230,11232,11234,11236,11238,11240,11242,11244,11246,11248,11250,11252,11254,11256,11258,11260,11262,11264,11266,11268,11270,11272,11274,11276,11278,11280,11282,11284,11286,11288,11290,11292,11294,11296,11298,11300,11302,11304,11306,11308,11310,11312,11314,11316,11318,11320,11322,11324,11326,11328,11330,11332,11334,11336,11338,11340,11342,11344,11346,11348,11350,11352,11354,11356,11358,11360,11362,11364,11366,11368,11370,11372,11374,11376,11378,11380,11382,11384,11386,11388,11390,11392,11394,11396,11398,11400,11402,11404,11406,11408,11410,11412,11414,11416,11418,11420,11422,11424,11426,11428,11430,11432,11434,11436,11438,11440,11442,11444,11446,11448,11450,11452,11454,11456,11458,11460,11462,11464,11466,11468,11470,11472,11474,11476,11478,11480,11482,11484,11486,11488,11490,11492,11494,11496,11498,11500,11502,11504,11506,11508,11510,11512,11514,11516,11518,11520,11522,11524,11526,11528,11530,11532,11534,11536,11538,11540,11542,11544,11546,11548,11550,11552,11554,11556,11558,11560,11562,11564,11566,11568,11570,11572,11574,11576,11578,11580,11582,11584,11586,11588,11590,11592,11594,11596,11598,11600,11602,11604,11606,11608,11610,11612,11614,11616,11618,11620,11622,11624,11626,11628,11630,11632,11634,11636,11638,11640,11642,11644,11646,11648,11650,11652,11654,11656,11658,11660,11662,11664,11666,11668,11670,11672,11674,11676,11678,11680,11682,11684,11686,11688,11690,11692,11694,11696,11698,11700,11702,11704,11706,11708,11710,11712,11714,11716,11718,11720,11722,11724,11726,11728,11730,11732,11734,11736,11738,11740,11742,11744,11746,11748,11750,11752,11754,11756,11758,11760,11762,11764,11766,11768,11770,11772,11774,11776,11778,11780,11782,11784,11786,11788,11790,11792,11794,11796,11798,11800,11802,11804,11806,11808,11810,11812,11814,11816,11818,11820,11822,11824,11826,11828,11830,11832,11834,11836,11838,11840,11842,11844,11846,11848,11850,11852,11854,11856,11858,11860,11862,11864,11866,11868,11870,11872,11874,11876,11878,11880,11882,11884,11886,11888,11890,11892,11894,11896,11898,11900,11902,11904,11906,11908,11910,11912,11914,11916,11918,11920,11922,11924,11926,11928,11930,11932,11934,11936,11938,11940,11942,11944,11946,11948,11950,11952,11954,11956,11958,11960,11962,11964,11966,11968,11970,11972,11974,11976,11978,11980,11982,11984,11986,11988,11990,11992,11994,11996,11998,12000,12002,12004,12006,12008,12010,12012,12014,12016,12018,12020,12022,12024,12026,12028,12030,12032,12034,12036,12038,12040,12042,12044,12046,12048,12050,12052,12054,12056,12058,12060,12062,12064,12066,12068,12070,12072,12074,12076,12078,12080,12082,12084,12086,12088,12090,12092,12094,12096,12098,12100,12102,12104,12106,12108,12110,12112,12114,12116,12118,12120,12122,12124,12126,12128,12130,12132,12134,12136,12138,12140,12142,12144,12146,12148,12150,12152,12154,12156,12158,12160,12162,12164,12166,12168,12170,12172,12174,12176,12178,12180,12182,12184,12186,12188,12190,12192,12194,12196,12198,12200,12202,12204,12206,12208,12210,12212,12214,12216,12218,12220,12222,12224,12226,12228,12230,12232,12234,12236,12238,12240,12242,12244,12246,12248,12250,12252,12254,12256,12258,12260,12262,12264,12266,12268,12270,12272,12274,12276,12278,12280,12282,12284,12286,12288,12290,12292,12294,12296,12298,12300,12302,12304,12306,12308,12310,12312,12314,12316,12318,12320,12322,12324,12326,12328,12330,12332,12334,12336,12338,12340,12342,12344,12346,12348,12350,12352,12354,12356,12358,12360,12362,12364,12366,12368,12370,12372,12374,12376,12378,12380,12382,12384,12386,12388,12390,12392,12394,12396,12398,12400,12402,12404,12406,12408,12410,12412,12414,12416,12418,12420,12422,12424,12426,12428,12430,12432,12434,12436,12438,12440,12442,12444,12446,12448,12450,12452,12454,12456,12458,12460,12462,12464,12466,12468,12470,12472,12474,12476,12478,12480,12482,12484,12486,12488,12490,12492,12494,12496,12498,12500,12502,12504,12506,12508,12510,12512,12514,12516,12518,12520,12522,12524,12526,12528,12530,12532,12534,12536,12538,12540,12542,12544,12546,12548,12550,12552,12554,12556,12558,12560,12562,12564,12566,12568,12570,12572,12574,12576,12578,12580,12582,12584,12586,12588,12590,12592,12594,12596,12598,12600,12602,12604,12606,12608,12610,12612,12614,12616,12618,12620,12622,12624,12626,12628,12630,12632,12634,12636,12638,12640,12642,12644,12646,12648,12650,12652,12654,12656,12658,12660,12662,12664,12666,12668,12670,12672,12674,12676,12678,12680,12682,12684,12686,12688,12690,12692,12694,12696,12698,12700,12702,12704,12706,12708,12710,12712,12714,12716,12718,12720,12722,12724,12726,12728,12730,12732,12734,12736,12738,12740,12742,12744,12746,12748,12750,12752,12754,12756,12758,12760,12762,12764,12766,12768,12770,12772,12774,12776,12778,12780,12782,12784,12786,12788,12790,12792,12794,12796,12798,12800,12802,12804,12806,12808,12810,12812,12814,12816,12818,12820,12822,12824,12826,12828,12830,12832,12834,12836,12838,12840,12842,12844,12846,12848,12850,12852,12854,12856,12858,12860,12862,12864,12866,12868,12870,12872,12874,12876,12878,12880,12882,12884,12886,12888,12890,12892,12894,12896,12898,12900,12902,12904,12906,12908,12910,12912,12914,12916,12918,12920,12922,12924,12926,12928,12930,12932,12934,12936,12938,12940,12942,12944,12946,12948,12950,12952,12954,12956,12958,12960,12962,12964,12966,12968,12970,12972,12974,12976,12978,12980,12982,12984,12986,12988,12990,12992,12994,12996,12998,13000,13002,13004,13006,13008,13010,13012,13014,13016,13018,13020,13022,13024,13026,13028,13030,13032,13034,13036,13038,13040,13042,13044,13046,13048,13050,13052,13054,13056,13058,13060,13062,13064,13066,13068,13070,13072,13074,13076,13078,13080,13082,13084,13086,13088,13090,13092,13094,13096,13098,13100,13102,13104,13106,13108,13110,13112,13114,13116,13118,13120,13122,13124,13126,13128,13130,13132,13134,13136,13138,13140,13142,13144,13146,13148,13150,13152,13154,13156,13158,13160,13162,13164,13166,13168,13170,13172,13174,13176,13178,13180,13182,13184,13186,13188,13190,13192,13194,13196,13198,13200,13202,13204,13206,13208,13210,13212,13214,13216,13218,13220,13222,13224,13226,13228,13230,13232,13234,13236,13238,13240,13242,13244,13246,13248,13250,13252,13254,13256,13258,13260,13262,13264,13266,13268,13270,13272,13274,13276,13278,13280,13282,13284,13286,13288,13290,13292,13294,13296,13298,13300,13302,13304,13306,13308,13310,13312,13314,13316,13318,13320,13322,13324,13326,13328,13330,13332,13334,13336,13338,13340,13342,13344,13346,13348,13350,13352,13354,13356,13358,13360,13362,13364,13366,13368,13370,13372,13374,13376,13378,13380,13382,13384,13386,13388,13390,13392,13394,13396,13398,13400,13402,13404,13406,13408,13410,13412,13414,13416,13418,13420,13422,13424,13426,13428,13430,13432,13434,13436,13438,13440,13442,13444,13446,13448,13450,13452,13454,13456,13458,13460,13462,13464,13466,13468,13470,13472,13474,13476,13478,13480,13482,13484,13486,13488,13490,13492,13494,13496,13498,13500,13502,13504,13506,13508,13510,13512,13514,13516,13518,13520,13522,13524,13526,13528,13530,13532,13534,13536,13538,13540,13542,13544,13546,13548,13550,13552,13554,13556,13558,13560,13562,13564,13566,13568,13570,13572,13574,13576,13578,13580,13582,13584,13586,13588,13590,13592,13594,13596,13598,13600,13602,13604,13606,13608,13610,13612,13614,13616,13618,13620,13622,13624,13626,13628,13630,13632,13634,13636,13638,13640,13642,13644,13646,13648,13650,13652,13654,13656,13658,13660,13662,13664,13666,13668,13670,13672,13674,13676,13678,13680,13682,13684,13686,13688,13690,13692,13694,13696,13698,13700,13702,13704,13706,13708,13710,13712,13714,13716,13718,13720,13722,13724,13726,13728,13730,13732,13734,13736,13738,13740,13742,13744,13746,13748,13750,13752,13754,13756,13758,13760,13762,13764,13766,13768,13770,13772,13774,13776,13778,13780,13782,13784,13786,13788,13790,13792,13794,13796,13798,13800,13802,13804,13806,13808,13810,13812,13814,13816,13818,13820,13822,13824,13826,13828,13830,13832,13834,13836,13838,13840,13842,13844,13846,13848,13850,13852,13854,13856,13858,13860,13862,13864,13866,13868,13870,13872,13874,13876,13878,13880,13882,13884,13886,13888,13890,13892,13894,13896,13898,13900,13902,13904,13906,13908,13910,13912,13914,13916,13918,13920,13922,13924,13926,13928,13930,13932,13934,13936,13938,13940,13942,13944,13946,13948,13950,13952,13954,13956,13958,13960,13962,13964,13966,13968,13970,13972,13974,13976,13978,13980,13982,13984,13986,13988,13990,13992,13994,13996,13998,14000,14002,14004,14006,14008,14010,14012,14014,14016,14018,14020,14022,14024,14026,14028,14030,14032,14034,14036,14038,14040,14042,14044,14046,14048,14050,14052,14054,14056,14058,14060,14062,14064,14066,14068,14070,14072,14074,14076,14078,14080,14082,14084,14086,14088,14090,14092,14094,14096,14098,14100,14102,14104,14106,14108,14110,14112,14114,14116,14118,14120,14122,14124,14126,14128,14130,14132,14134,14136,14138,14140,14142,14144,14146,14148,14150,14152,14154,14156,14158,14160,14162,14164,14166,14168,14170,14172,14174,14176,14178,14180,14182,14184,14186,14188,14190,14192,14194,14196,14198,14200,14202,14204,14206,14208,14210,14212,14214,14216,14218,14220,14222,14224,14226,14228,14230,14232,14234,14236,14238,14240,14242,14244,14246,14248,14250,14252,14254,14256,14258,14260,14262,14264,14266,14268,14270,14272,14274,14276,14278,14280,14282,14284,14286,14288,14290,14292,14294,14296,14298,14300,14302,14304,14306,14308,14310,14312,14314,14316,14318,14320,14322,14324,14326,14328,14330,14332,14334,14336,14338,14340,14342,14344,14346,14348,14350,14352,14354,14356,14358,14360,14362,14364,14366,14368,14370,14372,14374,14376,14378,14380,14382,14384,14386,14388,14390,14392,14394,14396,14398,14400,14402,14404,14406,14408,14410,14412,14414,14416,14418,14420,14422,14424,14426,14428,14430,14432,14434,14436,14438,14440,14442,14444,14446,14448,14450,14452,14454,14456,14458,14460,14462,14464,14466,14468,14470,14472,14474,14476,14478,14480,14482,14484,14486,14488,14490,14492,14494,14496,14498,14500,14502,14504,14506,14508,14510,14512,14514,14516,14518,14520,14522,14524,14526,14528,14530,14532,14534,14536,14538,14540,14542,14544,14546,14548,14550,14552,14554,14556,14558,14560,14562,14564,14566,14568,14570,14572,14574,14576,14578,14580,14582,14584,14586,14588,14590,14592,14594,14596,14598,14600,14602,14604,14606,14608,14610,14612,14614,14616,14618,14620,14622,14624,14626,14628,14630,14632,14634,14636,14638,14640,14642,14644,14646,14648,14650,14652,14654,14656,14658,14660,14662,14664,14666,14668,14670,14672,14674,14676,14678,14680,14682,14684,14686,14688,14690,14692,14694,14696,14698,14700,14702,14704,14706,14708,14710,14712,14714,14716,14718,14720,14722,14724,14726,14728,14730,14732,14734,14736,14738,14740,14742,14744,14746,14748,14750,14752,14754,14756,14758,14760,14762,14764,14766,14768,14770,14772,14774,14776,14778,14780,14782,14784,14786,14788,14790,14792,14794,14796,14798,14800,14802,14804,14806,14808,14810,14812,14814,14816,14818,14820,14822,14824,14826,14828,14830,14832,14834,14836,14838,14840,14842,14844,14846,14848,14850,14852,14854,14856,14858,14860,14862,14864,14866,14868,14870,14872,14874,14876,14878,14880,14882,14884,14886,14888,14890,14892,14894,14896,14898,14900,14902,14904,14906,14908,14910,14912,14914,14916,14918,14920,14922,14924,14926,14928,14930,14932,14934,14936,14938,14940,14942,14944,14946,14948,14950,14952,14954,14956,14958,14960,14962,14964,14966,14968,14970,14972,14974,14976,14978,14980,14982,14984,14986,14988,14990,14992,14994,14996,14998,15000,15002,15004,15006,15008,15010,15012,15014,15016,15018,15020,15022,15024,15026,15028,15030,15032,15034,15036,15038,15040,15042,15044,15046,15048,15050,15052,15054,15056,15058,15060,15062,15064,15066,15068,15070,15072,15074,15076,15078,15080,15082,15084,15086,15088,15090,15092,15094,15096,15098,15100,15102,15104,15106,15108,15110,15112,15114,15116,15118,15120,15122,15124,15126,15128,15130,15132,15134,15136,15138,15140,15142,15144,15146,15148,15150,15152,15154,15156,15158,15160,15162,15164,15166,15168,15170,15172,15174,15176,15178,15180,15182,15184,15186,15188,15190,15192,15194,15196,15198,15200,15202,15204,15206,15208,15210,15212,15214,15216,15218,15220,15222,15224,15226,15228,15230,15232,15234,15236,15238,15240,15242,15244,15246,15248,15250,15252,15254,15256,15258,15260,15262,15264,15266,15268,15270,15272,15274,15276,15278,15280,15282,15284,15286,15288,15290,15292,15294,15296,15298,15300,15302,15304,15306,15308,15310,15312,15314,15316,15318,15320,15322,15324,15326,15328,15330,15332,15334,15336,15338,15340,15342,15344,15346,15348,15350,15352,15354,15356,15358,15360,15362,15364,15366,15368,15370,15372,15374,15376,15378,15380,15382,15384,15386,15388,15390,15392,15394,15396,15398,15400,15402,15404,15406,15408,15410,15412,15414,15416,15418,15420,15422,15424,15426,15428,15430,15432,15434,15436,15438,15440,15442,15444,15446,15448,15450,15452,15454,15456,15458,15460,15462,15464,15466,15468,15470,15472,15474,15476,15478,15480,15482,15484,15486,15488,15490,15492,15494,15496,15498,15500,15502,15504,15506,15508,15510,15512,15514,15516,15518,15520,15522,15524,15526,15528,15530,15532,15534,15536,15538,15540,15542,15544,15546,15548,15550,15552,15554,15556,15558,15560,15562,15564,15566,15568,15570,15572,15574,15576,15578,15580,15582,15584,15586,15588,15590,15592,15594,15596,15598,15600,15602,15604,15606,15608,15610,15612,15614,15616,15618,15620,15622,15624,15626,15628,15630,15632,15634,15636,15638,15640,15642,15644,15646,15648,15650,15652,15654,15656,15658,15660,15662,15664,15666,15668,15670,15672,15674,15676,15678,15680,15682,15684,15686,15688,15690,15692,15694,15696,15698,15700,15702,15704,15706,15708,15710,15712,15714,15716,15718,15720,15722,15724,15726,15728,15730,15732,15734,15736,15738,15740,15742,15744,15746,15748,15750,15752,15754,15756,15758,15760,15762,15764,15766,15768,15770,15772,15774,15776,15778,15780,15782,15784,15786,15788,15790,15792,15794,15796,15798,15800,15802,15804,15806,15808,15810,15812,15814,15816,15818,15820,15822,15824,15826,15828,15830,15832,15834,15836,15838,15840,15842,15844,15846,15848,15850,15852,15854,15856,15858,15860,15862,15864,15866,15868,15870,15872,15874,15876,15878,15880,15882,15884,15886,15888,15890,15892,15894,15896,15898,15900,15902,15904,15906,15908,15910,15912,15914,15916,15918,15920,15922,15924,15926,15928,15930,15932,15934,15936,15938,15940,15942,15944,15946,15948,15950,15952,15954,15956,15958,15960,15962,15964,15966,15968,15970,15972,15974,15976,15978,15980,15982,15984,15986,15988,15990,15992,15994,15996,15998,16000,16002,16004,16006,16008,16010,16012,16014,16016,16018,16020,16022,16024,16026,16028,16030,16032,16034,16036,16038,16040,16042,16044,16046,16048,16050,16052,16054,16056,16058,16060,16062,16064,16066,16068,16070,16072,16074,16076,16078,16080,16082,16084,16086,16088,16090,16092,16094,16096,16098,16100,16102,16104,16106,16108,16110,16112,16114,16116,16118,16120,16122,16124,16126,16128,16130,16132,16134,16136,16138,16140,16142,16144,16146,16148,16150,16152,16154,16156,16158,16160,16162,16164,16166,16168,16170,16172,16174,16176,16178,16180,16182,16184,16186,16188,16190,16192,16194,16196,16198,16200,16202,16204,16206,16208,16210,16212,16214,16216,16218,16220,16222,16224,16226,16228,16230,16232,16234,16236,16238,16240,16242,16244,16246,16248,16250,16252,16254,16256,16258,16260,16262,16264,16266,16268,16270,16272,16274,16276,16278,16280,16282,16284,16286,16288,16290,16292,16294,16296,16298,16300,16302,16304,16306,16308,16310,16312,16314,16316,16318,16320,16322,16324,16326,16328,16330,16332,16334,16336,16338,16340,16342,16344,16346,16348,16350,16352,16354,16356,16358,16360,16362,16364,16366,16368,16370,16372,16374,16376,16378,16380,16382,16384,16386,16388,16390,16392,16394,16396,16398,16400,16402,16404,16406,16408,16410,16412,16414,16416,16418,16420,16422,16424,16426,16428,16430,16432,16434,16436,16438,16440,16442,16444,16446,16448,16450,16452,16454,16456,16458,16460,16462,16464,16466,16468,16470,16472,16474,16476,16478,16480,16482,16484,16486,16488,16490,16492,16494,16496,16498,16500,16502,16504,16506,16508,16510,16512,16514,16516,16518,16520,16522,16524,16526,16528,16530,16532,16534,16536,16538,16540,16542,16544,16546,16548,16550,16552,16554,16556,16558,16560,16562,16564,16566,16568,16570,16572,16574,16576,16578,16580,16582,16584,16586,16588,16590,16592,16594,16596,16598,16600,16602,16604,16606,16608,16610,16612,16614,16616,16618,16620,16622,16624,16626,16628,16630,16632,16634,16636,16638,16640,16642,16644,16646,16648,16650,16652,16654,16656,16658,16660,16662,16664,16666,16668,16670,16672,16674,16676,16678,16680,16682,16684,16686,16688,16690,16692,16694,16696,16698,16700,16702,16704,16706,16708,16710,16712,16714,16716,16718,16720,16722,16724,16726,16728,16730,16732,16734,16736,16738,16740,16742,16744,16746,16748,16750,16752,16754,16756,16758,16760,16762,16764,16766,16768,16770,16772,16774,16776,16778,16780,16782,16784,16786,16788,16790,16792,16794,16796,16798,16800,16802,16804,16806,16808,16810,16812,16814,16816,16818,16820,16822,16824,16826,16828,16830,16832,16834,16836,16838,16840,16842,16844,16846,16848,16850,16852,16854,16856,16858,16860,16862,16864,16866,16868,16870,16872,16874,16876,16878,16880,16882,16884,16886,16888,16890,16892,16894,16896,16898,16900,16902,16904,16906,16908,16910,16912,16914,16916,16918,16920,16922,16924,16926,16928,16930,16932,16934,16936,16938,16940,16942,16944,16946,16948,16950,16952,16954,16956,16958,16960,16962,16964,16966,16968,16970,16972,16974,16976,16978,16980,16982,16984,16986,16988,16990,16992,16994,16996,16998,17000,17002,17004,17006,17008,17010,17012,17014,17016,17018,17020,17022,17024,17026,17028,17030,17032,17034,17036,17038,17040,17042,17044,17046,17048,17050,17052,17054,17056,17058,17060,17062,17064,17066,17068,17070,17072,17074,17076,17078,17080,17082,17084,17086,17088,17090,17092,17094,17096,17098,17100,17102,17104,17106,17108,17110,17112,17114,17116,17118,17120,17122,17124,17126,17128,17130,17132,17134,17136,17138,17140,17142,17144,17146,17148,17150,17152,17154,17156,17158,17160,17162,17164,17166,17168,17170,17172,17174,17176,17178,17180,17182,17184,17186,17188,17190,17192,17194,17196,17198,17200,17202,17204,17206,17208,17210,17212,17214,17216,17218,17220,17222,17224,17226,17228,17230,17232,17234,17236,17238,17240,17242,17244,17246,17248,17250,17252,17254,17256,17258,17260,17262,17264,17266,17268,17270,17272,17274,17276,17278,17280,17282,17284,17286,17288,17290,17292,17294,17296,17298,17300,17302,17304,17306,17308,17310,17312,17314,17316,17318,17320,17322,17324,17326,17328,17330,17332,17334,17336,17338,17340,17342,17344,17346,17348,17350,17352,17354,17356,17358,17360,17362,17364,17366,17368,17370,17372,17374,17376,17378,17380,17382,17384,17386,17388,17390,17392,17394,17396,17398,17400,17402,17404,17406,17408,17410,17412,17414,17416,17418,17420,17422,17424,17426,17428,17430,17432,17434,17436,17438,17440,17442,17444,17446,17448,17450,17452,17454,17456,17458,17460,17462,17464,17466,17468,17470,17472,17474,17476,17478,17480,17482,17484,17486,17488,17490,17492,17494,17496,17498,17500,17502,17504,17506,17508,17510,17512,17514,17516,17518,17520,17522,17524,17526,17528,17530,17532,17534,17536,17538,17540,17542,17544,17546,17548,17550,17552,17554,17556,17558,17560,17562,17564,17566,17568,17570,17572,17574,17576,17578,17580,17582,17584,17586,17588,17590,17592,17594,17596,17598,17600,17602,17604,17606,17608,17610,17612,17614,17616,17618,17620,17622,17624,17626,17628,17630,17632,17634,17636,17638,17640,17642,17644,17646,17648,17650,17652,17654,17656,17658,17660,17662,17664,17666,17668,17670,17672,17674,17676,17678,17680,17682,17684,17686,17688,17690,17692,17694,17696,17698,17700,17702,17704,17706,17708,17710,17712,17714,17716,17718,17720,17722,17724,17726,17728,17730,17732,17734,17736,17738,17740,17742,17744,17746,17748,17750,17752,17754,17756,17758,17760,17762,17764,17766,17768,17770,17772,17774,17776,17778,17780,17782,17784,17786,17788,17790,17792,17794,17796,17798,17800,17802,17804,17806,17808,17810,17812,17814,17816,17818,17820,17822,17824,17826,17828,17830,17832,17834,17836,17838,17840,17842,17844,17846,17848,17850,17852,17854,17856,17858,17860,17862,17864,17866,17868,17870,17872,17874,17876,17878,17880,17882,17884,17886,17888,17890,17892,17894,17896,17898,17900,17902,17904,17906,17908,17910,17912,17914,17916,17918,17920,17922,17924,17926,17928,17930,17932,17934,17936,17938,17940,17942,17944,17946,17948,17950,17952,17954,17956,17958,17960,17962,17964,17966,17968,17970,17972,17974,17976,17978,17980,17982,17984,17986,17988,17990,17992,17994,17996,17998,18000,18002,18004,18006,18008,18010,18012,18014,18016,18018,18020,18022,18024,18026,18028,18030,18032,18034,18036,18038,18040,18042,18044,18046,18048,18050,18052,18054,18056,18058,18060,18062,18064,18066,18068,18070,18072,18074,18076,18078,18080,18082,18084,18086,18088,18090,18092,18094,18096,18098,18100,18102,18104,18106,18108,18110,18112,18114,18116,18118,18120,18122,18124,18126,18128,18130,18132,18134,18136,18138,18140,18142,18144,18146,18148,18150,18152,18154,18156,18158,18160,18162,18164,18166,18168,18170,18172,18174,18176,18178,18180,18182,18184,18186,18188,18190,18192,18194,18196,18198,18200,18202,18204,18206,18208,18210,18212,18214,18216,18218,18220,18222,18224,18226,18228,18230,18232,18234,18236,18238,18240,18242,18244,18246,18248,18250,18252,18254,18256,18258,18260,18262,18264,18266,18268,18270,18272,18274,18276,18278,18280,18282,18284,18286,18288,18290,18292,18294,18296,18298,18300,18302,18304,18306,18308,18310,18312,18314,18316,18318,18320,18322,18324,18326,18328,18330,18332,18334,18336,18338,18340,18342,18344,18346,18348,18350,18352,18354,18356,18358,18360,18362,18364,18366,18368,18370,18372,18374,18376,18378,18380,18382,18384,18386,18388,18390,18392,18394,18396,18398,18400,18402,18404,18406,18408,18410,18412,18414,18416,18418,18420,18422,18424,18426,18428,18430,18432,18434,18436,18438,18440,18442,18444,18446,18448,18450,18452,18454,18456,18458,18460,18462,18464,18466,18468,18470,18472,18474,18476,18478,18480,18482,18484,18486,18488,18490,18492,18494,18496,18498,18500,18502,18504,18506,18508,18510,18512,18514,18516,18518,18520,18522,18524,18526,18528,18530,18532,18534,18536,18538,18540,18542,18544,18546,18548,18550,18552,18554,18556,18558,18560,18562,18564,18566,18568,18570,18572,18574,18576,18578,18580,18582,18584,18586,18588,18590,18592,18594,18596,18598,18600,18602,18604,18606,18608,18610,18612,18614,18616,18618,18620,18622,18624,18626,18628,18630,18632,18634,18636,18638,18640,18642,18644,18646,18648,18650,18652,18654,18656,18658,18660,18662,18664,18666,18668,18670,18672,18674,18676,18678,18680,18682,18684,18686,18688,18690,18692,18694,18696,18698,18700,18702,18704,18706,18708,18710,18712,18714,18716,18718,18720,18722,18724,18726,18728,18730,18732,18734,18736,18738,18740,18742,18744,18746,18748,18750,18752,18754,18756,18758,18760,18762,18764,18766,18768,18770,18772,18774,18776,18778,18780,18782,18784,18786,18788,18790,18792,18794,18796,18798,18800,18802,18804,18806,18808,18810,18812,18814,18816,18818,18820,18822,18824,18826,18828,18830,18832,18834,18836,18838,18840,18842,18844,18846,18848,18850,18852,18854,18856,18858,18860,18862,18864,18866,18868,18870,18872,18874,18876,18878,18880,18882,18884,18886,18888,18890,18892,18894,18896,18898,18900,18902,18904,18906,18908,18910,18912,18914,18916,18918,18920,18922,18924,18926,18928,18930,18932,18934,18936,18938,18940,18942,18944,18946,18948,18950,18952,18954,18956,18958,18960,18962,18964,18966,18968,18970,18972,18974,18976,18978,18980,18982,18984,18986,18988,18990,18992,18994,18996,18998,19000,19002,19004,19006,19008,19010,19012,19014,19016,19018,19020,19022,19024,19026,19028,19030,19032,19034,19036,19038,19040,19042,19044,19046,19048,19050,19052,19054,19056,19058,19060,19062,19064,19066,19068,19070,19072,19074,19076,19078,19080,19082,19084,19086,19088,19090,19092,19094,19096,19098,19100,19102,19104,19106,19108,19110,19112,19114,19116,19118,19120,19122,19124,19126,19128,19130,19132,19134,19136,19138,19140,19142,19144,19146,19148,19150,19152,19154,19156,19158,19160,19162,19164,19166,19168,19170,19172,19174,19176,19178,19180,19182,19184,19186,19188,19190,19192,19194,19196,19198,19200,19202,19204,19206,19208,19210,19212,19214,19216,19218,19220,19222,19224,19226,19228,19230,19232,19234,19236,19238,19240,19242,19244,19246,19248,19250,19252,19254,19256,19258,19260,19262,19264,19266,19268,19270,19272,19274,19276,19278,19280,19282,19284,19286,19288,19290,19292,19294,19296,19298,19300,19302,19304,19306,19308,19310,19312,19314,19316,19318,19320,19322,19324,19326,19328,19330,19332,19334,19336,19338,19340,19342,19344,19346,19348,19350,19352,19354,19356,19358,19360,19362,19364,19366,19368,19370,19372,19374,19376,19378,19380,19382,19384,19386,19388,19390,19392,19394,19396,19398,19400,19402,19404,19406,19408,19410,19412,19414,19416,19418,19420,19422,19424,19426,19428,19430,19432,19434,19436,19438,19440,19442,19444,19446,19448,19450,19452,19454,19456,19458,19460,19462,19464,19466,19468,19470,19472,19474,19476,19478,19480,19482,19484,19486,19488,19490,19492,19494,19496,19498,19500,19502,19504,19506,19508,19510,19512,19514,19516,19518,19520,19522,19524,19526,19528,19530,19532,19534,19536,19538,19540,19542,19544,19546,19548,19550,19552,19554,19556,19558,19560,19562,19564,19566,19568,19570,19572,19574,19576,19578,19580,19582,19584,19586,19588,19590,19592,19594,19596,19598,19600,19602,19604,19606,19608,19610,19612,19614,19616,19618,19620,19622,19624,19626,19628,19630,19632,19634,19636,19638,19640,19642,19644,19646,19648,19650,19652,19654,19656,19658,19660,19662,19664,19666,19668,19670,19672,19674,19676,19678,19680,19682,19684,19686,19688,19690,19692,19694,19696,19698,19700,19702,19704,19706,19708,19710,19712,19714,19716,19718,19720,19722,19724,19726,19728,19730,19732,19734,19736,19738,19740,19742,19744,19746,19748,19750,19752,19754,19756,19758,19760,19762,19764,19766,19768,19770,19772,19774,19776,19778,19780,19782,19784,19786,19788,19790,19792,19794,19796,19798,19800,19802,19804,19806,19808,19810,19812,19814,19816,19818,19820,19822,19824,19826,19828,19830,19832,19834,19836,19838,19840,19842,19844,19846,19848,19850,19852,19854,19856,19858,19860,19862,19864,19866,19868,19870,19872,19874,19876,19878,19880,19882,19884,19886,19888,19890,19892,19894,19896,19898,19900,19902,19904,19906,19908,19910,19912,19914,19916,19918,19920,19922,19924,19926,19928,19930,19932,19934,19936,19938,19940,19942,19944,19946,19948,19950,19952,19954,19956,19958,19960,19962,19964,19966,19968,19970,19972,19974,19976,19978,19980,19982,19984,19986,19988,19990,19992,19994,19996,19998,20000,20002,20004,20006,20008,20010,20012,20014,20016,20018,20020,20022,20024,20026,20028,20030,20032,20034,20036,20038,20040,20042,20044,20046,20048,20050,20052,20054,20056,20058,20060,20062,20064,20066,20068,20070,20072,20074,20076,20078,20080,20082,20084,20086,20088,20090,20092,20094,20096,20098,20100,20102,20104,20106,20108,20110,20112,20114,20116,20118,20120,20122,20124,20126,20128,20130,20132,20134,20136,20138,20140,20142,20144,20146,20148,20150,20152,20154,20156,20158,20160,20162,20164,20166,20168,20170,20172,20174,20176,20178,20180,20182,20184,20186,20188,20190,20192,20194,20196,20198,20200,20202,20204,20206,20208,20210,20212,20214,20216,20218,20220,20222,20224,20226,20228,20230,20232,20234,20236,20238,20240,20242,20244,20246,20248,20250,20252,20254,20256,20258,20260,20262,20264,20266,20268,20270,20272,20274,20276,20278,20280,20282,20284,20286,20288,20290,20292,20294,20296,20298,20300,20302,20304,20306,20308,20310,20312,20314,20316,20318,20320,20322,20324,20326,20328,20330,20332,20334,20336,20338,20340,20342,20344,20346,20348,20350,20352,20354,20356,20358,20360,20362,20364,20366,20368,20370,20372,20374,20376,20378,20380,20382,20384,20386,20388,20390,20392,20394,20396,20398,20400,20402,20404,20406,20408,20410,20412,20414,20416,20418,20420,20422,20424,20426,20428,20430,20432,20434,20436,20438,20440,20442,20444,20446,20448,20450,20452,20454,20456,20458,20460,20462,20464,20466,20468,20470,20472,20474,20476,20478,20480,20482,20484,20486,20488,20490,20492,20494,20496,20498,20500,20502,20504,20506,20508,20510,20512,20514,20516,20518,20520,20522,20524,20526,20528,20530,20532,20534,20536,20538,20540,20542,20544,20546,20548,20550,20552,20554,20556,20558,20560,20562,20564,20566,20568,20570,20572,20574,20576,20578,20580,20582,20584,20586,20588,20590,20592,20594,20596,20598,20600,20602,20604,20606,20608,20610,20612,20614,20616,20618,20620,20622,20624,20626,20628,20630,20632,20634,20636,20638,20640,20642,20644,20646,20648,20650,20652,20654,20656,20658,20660,20662,20664,20666,20668,20670,20672,20674,20676,20678,20680,20682,20684,20686,20688,20690,20692,20694,20696,20698,20700,20702,20704,20706,20708,20710,20712,20714,20716,20718,20720,20722,20724,20726,20728,20730,20732,20734,20736,20738,20740,20742,20744,20746,20748,20750,20752,20754,20756,20758,20760,20762,20764,20766,20768,20770,20772,20774,20776,20778,20780,20782,20784,20786,20788,20790,20792,20794,20796,20798,20800,20802,20804,20806,20808,20810,20812,20814,20816,20818,20820,20822,20824,20826,20828,20830,20832,20834,20836,20838,20840,20842,20844,20846,20848,20850,20852,20854,20856,20858,20860,20862,20864,20866,20868,20870,20872,20874,20876,20878,20880,20882,20884,20886,20888,20890,20892,20894,20896,20898,20900,20902,20904,20906,20908,20910,20912,20914,20916,20918,20920,20922,20924,20926,20928,20930,20932,20934,20936,20938,20940,20942,20944,20946,20948,20950,20952,20954,20956,20958,20960,20962,20964,20966,20968,20970,20972,20974,20976,20978,20980,20982,20984,20986,20988,20990,20992,20994,20996,20998,21000,21002,21004,21006,21008,21010,21012,21014,21016,21018,21020,21022,21024,21026,21028,21030,21032,21034,21036,21038,21040,21042,21044,21046,21048,21050,21052,21054,21056,21058,21060,21062,21064,21066,21068,21070,21072,21074,21076,21078,21080,21082,21084,21086,21088,21090,21092,21094,21096,21098,21100,21102,21104,21106,21108,21110,21112,21114,21116,21118,21120,21122,21124,21126,21128,21130,21132,21134,21136,21138,21140,21142,21144,21146,21148,21150,21152,21154,21156,21158,21160,21162,21164,21166,21168,21170,21172,21174,21176,21178,21180,21182,21184,21186,21188,21190,21192,21194,21196,21198,21200,21202,21204,21206,21208,21210,21212,21214,21216,21218,21220,21222,21224,21226,21228,21230,21232,21234,21236,21238,21240,21242,21244,21246,21248,21250,21252,21254,21256,21258,21260,21262,21264,21266,21268,21270,21272,21274,21276,21278,21280,21282,21284,21286,21288,21290,21292,21294,21296,21298,21300,21302,21304,21306,21308,21310,21312,21314,21316,21318,21320,21322,21324,21326,21328,21330,21332,21334,21336,21338,21340,21342,21344,21346,21348,21350,21352,21354,21356,21358,21360,21362,21364,21366,21368,21370,21372,21374,21376,21378,21380,21382,21384,21386,21388,21390,21392,21394,21396,21398,21400,21402,21404,21406,21408,21410,21412,21414,21416,21418,21420,21422,21424,21426,21428,21430,21432,21434,21436,21438,21440,21442,21444,21446,21448,21450,21452,21454,21456,21458,21460,21462,21464,21466,21468,21470,21472,21474,21476,21478,21480,21482,21484,21486,21488,21490,21492,21494,21496,21498,21500,21502,21504,21506,21508,21510,21512,21514,21516,21518,21520,21522,21524,21526,21528,21530,21532,21534,21536,21538,21540,21542,21544,21546,21548,21550,21552,21554,21556,21558,21560,21562,21564,21566,21568,21570,21572,21574,21576,21578,21580,21582,21584,21586,21588,21590,21592,21594,21596,21598,21600,21602,21604,21606,21608,21610,21612,21614,21616,21618,21620,21622,21624,21626,21628,21630,21632,21634,21636,21638,21640,21642,21644,21646,21648,21650,21652,21654,21656,21658,21660,21662,21664,21666,21668,21670,21672,21674,21676,21678,21680,21682,21684,21686,21688,21690,21692,21694,21696,21698,21700,21702,21704,21706,21708,21710,21712,21714,21716,21718,21720,21722,21724,21726,21728,21730,21732,21734,21736,21738,21740,21742,21744,21746,21748,21750,21752,21754,21756,21758,21760,21762,21764,21766,21768,21770,21772,21774,21776,21778,21780,21782,21784,21786,21788,21790,21792,21794,21796,21798,21800,21802,21804,21806,21808,21810,21812,21814,21816,21818,21820,21822,21824,21826,21828,21830,21832,21834,21836,21838,21840,21842,21844,21846,21848,21850,21852,21854,21856,21858,21860,21862,21864,21866,21868,21870,21872,21874,21876,21878,21880,21882,21884,21886,21888,21890,21892,21894,21896,21898,21900,21902,21904,21906,21908,21910,21912,21914,21916,21918,21920,21922,21924,21926,21928,21930,21932,21934,21936,21938,21940,21942,21944,21946,21948,21950,21952,21954,21956,21958,21960,21962,21964,21966,21968,21970,21972,21974,21976,21978,21980,21982,21984,21986,21988,21990,21992,21994,21996,21998,22000,22002,22004,22006,22008,22010,22012,22014,22016,22018,22020,22022,22024,22026,22028,22030,22032,22034,22036,22038,22040,22042,22044,22046,22048,22050,22052,22054,22056,22058,22060,22062,22064,22066,22068,22070,22072,22074,22076,22078,22080,22082,22084,22086,22088,22090,22092,22094,22096,22098,22100,22102,22104,22106,22108,22110,22112,22114,22116,22118,22120,22122,22124,22126,22128,22130,22132,22134,22136,22138,22140,22142,22144,22146,22148,22150,22152,22154,22156,22158,22160,22162,22164,22166,22168,22170,22172,22174,22176,22178,22180,22182,22184,22186,22188,22190,22192,22194,22196,22198,22200,22202,22204,22206,22208,22210,22212,22214,22216,22218,22220,22222,22224,22226,22228,22230,22232,22234,22236,22238,22240,22242,22244,22246,22248,22250,22252,22254,22256,22258,22260,22262,22264,22266,22268,22270,22272,22274,22276,22278,22280,22282,22284,22286,22288,22290,22292,22294,22296,22298,22300,22302,22304,22306,22308,22310,22312,22314,22316,22318,22320,22322,22324,22326,22328,22330,22332,22334,22336,22338,22340,22342,22344,22346,22348,22350,22352,22354,22356,22358,22360,22362,22364,22366,22368,22370,22372,22374,22376,22378,22380,22382,22384,22386,22388,22390,22392,22394,22396,22398,22400,22402,22404,22406,22408,22410,22412,22414,22416,22418,22420,22422,22424,22426,22428,22430,22432,22434,22436,22438,22440,22442,22444,22446,22448,22450,22452,22454,22456,22458,22460,22462,22464,22466,22468,22470,22472,22474,22476,22478,22480,22482,22484,22486,22488,22490,22492,22494,22496,22498,22500,22502,22504,22506,22508,22510,22512,22514,22516,22518,22520,22522,22524,22526,22528,22530,22532,22534,22536,22538,22540,22542,22544,22546,22548,22550,22552,22554,22556,22558,22560,22562,22564,22566,22568,22570,22572,22574,22576,22578,22580,22582,22584,22586,22588,22590,22592,22594,22596,22598,22600,22602,22604,22606,22608,22610,22612,22614,22616,22618,22620,22622,22624,22626,22628,22630,22632,22634,22636,22638,22640,22642,22644,22646,22648,22650,22652,22654,22656,22658,22660,22662,22664,22666,22668,22670,22672,22674,22676,22678,22680,22682,22684,22686,22688,22690,22692,22694,22696,22698,22700,22702,22704,22706,22708,22710,22712,22714,22716,22718,22720,22722,22724,22726,22728,22730,22732,22734,22736,22738,22740,22742,22744,22746,22748,22750,22752,22754,22756,22758,22760,22762,22764,22766,22768,22770,22772,22774,22776,22778,22780,22782,22784,22786,22788,22790,22792,22794,22796,22798,22800,22802,22804,22806,22808,22810,22812,22814,22816,22818,22820,22822,22824,22826,22828,22830,22832,22834,22836,22838,22840,22842,22844,22846,22848,22850,22852,22854,22856,22858,22860,22862,22864,22866,22868,22870,22872,22874,22876,22878,22880,22882,22884,22886,22888,22890,22892,22894,22896,22898,22900,22902,22904,22906,22908,22910,22912,22914,22916,22918,22920,22922,22924,22926,22928,22930,22932,22934,22936,22938,22940,22942,22944,22946,22948,22950,22952,22954,22956,22958,22960,22962,22964,22966,22968,22970,22972,22974,22976,22978,22980,22982,22984,22986,22988,22990,22992,22994,22996,22998,23000,23002,23004,23006,23008,23010,23012,23014,23016,23018,23020,23022,23024,23026,23028,23030,23032,23034,23036,23038,23040,23042,23044,23046,23048,23050,23052,23054,23056,23058,23060,23062,23064,23066,23068,23070,23072,23074,23076,23078,23080,23082,23084,23086,23088,23090,23092,23094,23096,23098,23100,23102,23104,23106,23108,23110,23112,23114,23116,23118,23120,23122,23124,23126,23128,23130,23132,23134,23136,23138,23140,23142,23144,23146,23148,23150,23152,23154,23156,23158,23160,23162,23164,23166,23168,23170,23172,23174,23176,23178,23180,23182,23184,23186,23188,23190,23192,23194,23196,23198,23200,23202,23204,23206,23208,23210,23212,23214,23216,23218,23220,23222,23224,23226,23228,23230,23232,23234,23236,23238,23240,23242,23244,23246,23248,23250,23252,23254,23256,23258,23260,23262,23264,23266,23268,23270,23272,23274,23276,23278,23280,23282,23284,23286,23288,23290,23292,23294,23296,23298,23300,23302,23304,23306,23308,23310,23312,23314,23316,23318,23320,23322,23324,23326,23328,23330,23332,23334,23336,23338,23340,23342,23344,23346,23348,23350,23352,23354,23356,23358,23360,23362,23364,23366,23368,23370,23372,23374,23376,23378,23380,23382,23384,23386,23388,23390,23392,23394,23396,23398,23400,23402,23404,23406,23408,23410,23412,23414,23416,23418,23420,23422,23424,23426,23428,23430,23432,23434,23436,23438,23440,23442,23444,23446,23448,23450,23452,23454,23456,23458,23460,23462,23464,23466,23468,23470,23472,23474,23476,23478,23480,23482,23484,23486,23488,23490,23492,23494,23496,23498,23500,23502,23504,23506,23508,23510,23512,23514,23516,23518,23520,23522,23524,23526,23528,23530,23532,23534,23536,23538,23540,23542,23544,23546,23548,23550,23552,23554,23556,23558,23560,23562,23564,23566,23568,23570,23572,23574,23576,23578,23580,23582,23584,23586,23588,23590,23592,23594,23596,23598,23600,23602,23604,23606,23608,23610,23612,23614,23616,23618,23620,23622,23624,23626,23628,23630,23632,23634,23636,23638,23640,23642,23644,23646,23648,23650,23652,23654,23656,23658,23660,23662,23664,23666,23668,23670,23672,23674,23676,23678,23680,23682,23684,23686,23688,23690,23692,23694,23696,23698,23700,23702,23704,23706,23708,23710,23712,23714,23716,23718,23720,23722,23724,23726,23728,23730,23732,23734,23736,23738,23740,23742,23744,23746,23748,23750,23752,23754,23756,23758,23760,23762,23764,23766,23768,23770,23772,23774,23776,23778,23780,23782,23784,23786,23788,23790,23792,23794,23796,23798,23800,23802,23804,23806,23808,23810,23812,23814,23816,23818,23820,23822,23824,23826,23828,23830,23832,23834,23836,23838,23840,23842,23844,23846,23848,23850,23852,23854,23856,23858,23860,23862,23864,23866,23868,23870,23872,23874,23876,23878,23880,23882,23884,23886,23888,23890,23892,23894,23896,23898,23900,23902,23904,23906,23908,23910,23912,23914,23916,23918,23920,23922,23924,23926,23928,23930,23932,23934,23936,23938,23940,23942,23944,23946,23948,23950,23952,23954,23956,23958,23960,23962,23964,23966,23968,23970,23972,23974,23976,23978,23980,23982,23984,23986,23988,23990,23992,23994,23996,23998,24000,24002,24004,24006,24008,24010,24012,24014,24016,24018,24020,24022,24024,24026,24028,24030,24032,24034,24036,24038,24040,24042,24044,24046,24048,24050,24052,24054,24056,24058,24060,24062,24064,24066,24068,24070,24072,24074,24076,24078,24080,24082,24084,24086,24088,24090,24092,24094,24096,24098,24100,24102,24104,24106,24108,24110,24112,24114,24116,24118,24120,24122,24124,24126,24128,24130,24132,24134,24136,24138,24140,24142,24144,24146,24148,24150,24152,24154,24156,24158,24160,24162,24164,24166,24168,24170,24172,24174,24176,24178,24180,24182,24184,24186,24188,24190,24192,24194,24196,24198,24200,24202,24204,24206,24208,24210,24212,24214,24216,24218,24220,24222,24224,24226,24228,24230,24232,24234,24236,24238,24240,24242,24244,24246,24248,24250,24252,24254,24256,24258,24260,24262,24264,24266,24268,24270,24272,24274,24276,24278,24280,24282,24284,24286,24288,24290,24292,24294,24296,24298,24300,24302,24304,24306,24308,24310,24312,24314,24316,24318,24320,24322,24324,24326,24328,24330,24332,24334,24336,24338,24340,24342,24344,24346,24348,24350,24352,24354,24356,24358,24360,24362,24364,24366,24368,24370,24372,24374,24376,24378,24380,24382,24384,24386,24388,24390,24392,24394,24396,24398,24400,24402,24404,24406,24408,24410,24412,24414,24416,24418,24420,24422,24424,24426,24428,24430,24432,24434,24436,24438,24440,24442,24444,24446,24448,24450,24452,24454,24456,24458,24460,24462,24464,24466,24468,24470,24472,24474,24476,24478,24480,24482,24484,24486,24488,24490,24492,24494,24496,24498,24500,24502,24504,24506,24508,24510,24512,24514,24516,24518,24520,24522,24524,24526,24528,24530,24532,24534,24536,24538,24540,24542,24544,24546,24548,24550,24552,24554,24556,24558,24560,24562,24564,24566,24568,24570,24572,24574,24576,24578,24580,24582,24584,24586,24588,24590,24592,24594,24596,24598,24600,24602,24604,24606,24608,24610,24612,24614,24616,24618,24620,24622,24624,24626,24628,24630,24632,24634,24636,24638,24640,24642,24644,24646,24648,24650,24652,24654,24656,24658,24660,24662,24664,24666,24668,24670,24672,24674,24676,24678,24680,24682,24684,24686,24688,24690,24692,24694,24696,24698,24700,24702,24704,24706,24708,24710,24712,24714,24716,24718,24720,24722,24724,24726,24728,24730,24732,24734,24736,24738,24740,24742,24744,24746,24748,24750,24752,24754,24756,24758,24760,24762,24764,24766,24768,24770,24772,24774,24776,24778,24780,24782,24784,24786,24788,24790,24792,24794,24796,24798,24800,24802,24804,24806,24808,24810,24812,24814,24816,24818,24820,24822,24824,24826,24828,24830,24832,24834,24836,24838,24840,24842,24844,24846,24848,24850,24852,24854,24856,24858,24860,24862,24864,24866,24868,24870,24872,24874,24876,24878,24880,24882,24884,24886,24888,24890,24892,24894,24896,24898,24900,24902,24904,24906,24908,24910,24912,24914,24916,24918,24920,24922,24924,24926,24928,24930,24932,24934,24936,24938,24940,24942,24944,24946,24948,24950,24952,24954,24956,24958,24960,24962,24964,24966,24968,24970,24972,24974,24976,24978,24980,24982,24984,24986,24988,24990,24992,24994,24996,24998,25000,25002,25004,25006,25008,25010,25012,25014,25016,25018,25020,25022,25024,25026,25028,25030,25032,25034,25036,25038,25040,25042,25044,25046,25048,25050,25052,25054,25056,25058,25060,25062,25064,25066,25068,25070,25072,25074,25076,25078,25080,25082,25084,25086,25088,25090,25092,25094,25096,25098,25100,25102,25104,25106,25108,25110,25112,25114,25116,25118,25120,25122,25124,25126,25128,25130,25132,25134,25136,25138,25140,25142,25144,25146,25148,25150,25152,25154,25156,25158,25160,25162,25164,25166,25168,25170,25172,25174,25176,25178,25180,25182,25184,25186,25188,25190,25192,25194,25196,25198,25200,25202,25204,25206,25208,25210,25212,25214,25216,25218,25220,25222,25224,25226,25228,25230,25232,25234,25236,25238,25240,25242,25244,25246,25248,25250,25252,25254,25256,25258,25260,25262,25264,25266,25268,25270,25272,25274,25276,25278,25280,25282,25284,25286,25288,25290,25292,25294,25296,25298,25300,25302,25304,25306,25308,25310,25312,25314,25316,25318,25320,25322,25324,25326,25328,25330,25332,25334,25336,25338,25340,25342,25344,25346,25348,25350,25352,25354,25356,25358,25360,25362,25364,25366,25368,25370,25372,25374,25376,25378,25380,25382,25384,25386,25388,25390,25392,25394,25396,25398,25400,25402,25404,25406,25408,25410,25412,25414,25416,25418,25420,25422,25424,25426,25428,25430,25432,25434,25436,25438,25440,25442,25444,25446,25448,25450,25452,25454,25456,25458,25460,25462,25464,25466,25468,25470,25472,25474,25476,25478,25480,25482,25484,25486,25488,25490,25492,25494,25496,25498,25500,25502,25504,25506,25508,25510,25512,25514,25516,25518,25520,25522,25524,25526,25528,25530,25532,25534,25536,25538,25540,25542,25544,25546,25548,25550,25552,25554,25556,25558,25560,25562,25564,25566,25568,25570,25572,25574,25576,25578,25580,25582,25584,25586,25588,25590,25592,25594,25596,25598,25600,25602,25604,25606,25608,25610,25612,25614,25616,25618,25620,25622,25624,25626,25628,25630,25632,25634,25636,25638,25640,25642,25644,25646,25648,25650,25652,25654,25656,25658,25660,25662,25664,25666,25668,25670,25672,25674,25676,25678,25680,25682,25684,25686,25688,25690,25692,25694,25696,25698,25700,25702,25704,25706,25708,25710,25712,25714,25716,25718,25720,25722,25724,25726,25728,25730,25732,25734,25736,25738,25740,25742,25744,25746,25748,25750,25752,25754,25756,25758,25760,25762,25764,25766,25768,25770,25772,25774,25776,25778,25780,25782,25784,25786,25788,25790,25792,25794,25796,25798,25800,25802,25804,25806,25808,25810,25812,25814,25816,25818,25820,25822,25824,25826,25828,25830,25832,25834,25836,25838,25840,25842,25844,25846,25848,25850,25852,25854,25856,25858,25860,25862,25864,25866,25868,25870,25872,25874,25876,25878,25880,25882,25884,25886,25888,25890,25892,25894,25896,25898,25900,25902,25904,25906,25908,25910,25912,25914,25916,25918,25920,25922,25924,25926,25928,25930,25932,25934,25936,25938,25940,25942,25944,25946,25948,25950,25952,25954,25956,25958,25960,25962,25964,25966,25968,25970,25972,25974,25976,25978,25980,25982,25984,25986,25988,25990,25992,25994,25996,25998,26000,26002,26004,26006,26008,26010,26012,26014,26016,26018,26020,26022,26024,26026,26028,26030,26032,26034,26036,26038,26040,26042,26044,26046,26048,26050,26052,26054,26056,26058,26060,26062,26064,26066,26068,26070,26072,26074,26076,26078,26080,26082,26084,26086,26088,26090,26092,26094,26096,26098,26100,26102,26104,26106,26108,26110,26112,26114,26116,26118,26120,26122,26124,26126,26128,26130,26132,26134,26136,26138,26140,26142,26144,26146,26148,26150,26152,26154,26156,26158,26160,26162,26164,26166,26168,26170,26172,26174,26176,26178,26180,26182,26184,26186,26188,26190,26192,26194,26196,26198,26200,26202,26204,26206,26208,26210,26212,26214,26216,26218,26220,26222,26224,26226,26228,26230,26232,26234,26236,26238,26240,26242,26244,26246,26248,26250,26252,26254,26256,26258,26260,26262,26264,26266,26268,26270,26272,26274,26276,26278,26280,26282,26284,26286,26288,26290,26292,26294,26296,26298,26300,26302,26304,26306,26308,26310,26312,26314,26316,26318,26320,26322,26324,26326,26328,26330,26332,26334,26336,26338,26340,26342,26344,26346,26348,26350,26352,26354,26356,26358,26360,26362,26364,26366,26368,26370,26372,26374,26376,26378,26380,26382,26384,26386,26388,26390,26392,26394,26396,26398,26400,26402,26404,26406,26408,26410,26412,26414,26416,26418,26420,26422,26424,26426,26428,26430,26432,26434,26436,26438,26440,26442,26444,26446,26448,26450,26452,26454,26456,26458,26460,26462,26464,26466,26468,26470,26472,26474,26476,26478,26480,26482,26484,26486,26488,26490,26492,26494,26496,26498,26500,26502,26504,26506,26508,26510,26512,26514,26516,26518,26520,26522,26524,26526,26528,26530,26532,26534,26536,26538,26540,26542,26544,26546,26548,26550,26552,26554,26556,26558,26560,26562,26564,26566,26568,26570,26572,26574,26576,26578,26580,26582,26584,26586,26588,26590,26592,26594,26596,26598,26600,26602,26604,26606,26608,26610,26612,26614,26616,26618,26620,26622,26624,26626,26628,26630,26632,26634,26636,26638,26640,26642,26644,26646,26648,26650,26652,26654,26656,26658,26660,26662,26664,26666,26668,26670,26672,26674,26676,26678,26680,26682,26684,26686,26688,26690,26692,26694,26696,26698,26700,26702,26704,26706,26708,26710,26712,26714,26716,26718,26720,26722,26724,26726,26728,26730,26732,26734,26736,26738,26740,26742,26744,26746,26748,26750,26752,26754,26756,26758,26760,26762,26764,26766,26768,26770,26772,26774,26776,26778,26780,26782,26784,26786,26788,26790,26792,26794,26796,26798,26800,26802,26804,26806,26808,26810,26812,26814,26816,26818,26820,26822,26824,26826,26828,26830,26832,26834,26836,26838,26840,26842,26844,26846,26848,26850,26852,26854,26856,26858,26860,26862,26864,26866,26868,26870,26872,26874,26876,26878,26880,26882,26884,26886,26888,26890,26892,26894,26896,26898,26900,26902,26904,26906,26908,26910,26912,26914,26916,26918,26920,26922,26924,26926,26928,26930,26932,26934,26936,26938,26940,26942,26944,26946,26948,26950,26952,26954,26956,26958,26960,26962,26964,26966,26968,26970,26972,26974,26976,26978,26980,26982,26984,26986,26988,26990,26992,26994,26996,26998,27000,27002,27004,27006,27008,27010,27012,27014,27016,27018,27020,27022,27024,27026,27028,27030,27032,27034,27036,27038,27040,27042,27044,27046,27048,27050,27052,27054,27056,27058,27060,27062,27064,27066,27068,27070,27072,27074,27076,27078,27080,27082,27084,27086,27088,27090,27092,27094,27096,27098,27100,27102,27104,27106,27108,27110,27112,27114,27116,27118,27120,27122,27124,27126,27128,27130,27132,27134,27136,27138,27140,27142,27144,27146,27148,27150,27152,27154,27156,27158,27160,27162,27164,27166,27168,27170,27172,27174,27176,27178,27180,27182,27184,27186,27188,27190,27192,27194,27196,27198,27200,27202,27204,27206,27208,27210,27212,27214,27216,27218,27220,27222,27224,27226,27228,27230,27232,27234,27236,27238,27240,27242,27244,27246,27248,27250,27252,27254,27256,27258,27260,27262,27264,27266,27268,27270,27272,27274,27276,27278,27280,27282,27284,27286,27288,27290,27292,27294,27296,27298,27300,27302,27304,27306,27308,27310,27312,27314,27316,27318,27320,27322,27324,27326,27328,27330,27332,27334,27336,27338,27340,27342,27344,27346,27348,27350,27352,27354,27356,27358,27360,27362,27364,27366,27368,27370,27372,27374,27376,27378,27380,27382,27384,27386,27388,27390,27392,27394,27396,27398,27400,27402,27404,27406,27408,27410,27412,27414,27416,27418,27420,27422,27424,27426,27428,27430,27432,27434,27436,27438,27440,27442,27444,27446,27448,27450,27452,27454,27456,27458,27460,27462,27464,27466,27468,27470,27472,27474,27476,27478,27480,27482,27484,27486,27488,27490,27492,27494,27496,27498,27500,27502,27504,27506,27508,27510,27512,27514,27516,27518,27520,27522,27524,27526,27528,27530,27532,27534,27536,27538,27540,27542,27544,27546,27548,27550,27552,27554,27556,27558,27560,27562,27564,27566,27568,27570,27572,27574,27576,27578,27580,27582,27584,27586,27588,27590,27592,27594,27596,27598,27600,27602,27604,27606,27608,27610,27612,27614,27616,27618,27620,27622,27624,27626,27628,27630,27632,27634,27636,27638,27640,27642,27644,27646,27648,27650,27652,27654,27656,27658,27660,27662,27664,27666,27668,27670,27672,27674,27676,27678,27680,27682,27684,27686,27688,27690,27692,27694,27696,27698,27700,27702,27704,27706,27708,27710,27712,27714,27716,27718,27720,27722,27724,27726,27728,27730,27732,27734,27736,27738,27740,27742,27744,27746,27748,27750,27752,27754,27756,27758,27760,27762,27764,27766,27768,27770,27772,27774,27776,27778,27780,27782,27784,27786,27788,27790,27792,27794,27796,27798,27800,27802,27804,27806,27808,27810,27812,27814,27816,27818,27820,27822,27824,27826,27828,27830,27832,27834,27836,27838,27840,27842,27844,27846,27848,27850,27852,27854,27856,27858,27860,27862,27864,27866,27868,27870,27872,27874,27876,27878,27880,27882,27884,27886,27888,27890,27892,27894,27896,27898,27900,27902,27904,27906,27908,27910,27912,27914,27916,27918,27920,27922,27924,27926,27928,27930,27932,27934,27936,27938,27940,27942,27944,27946,27948,27950,27952,27954,27956,27958,27960,27962,27964,27966,27968,27970,27972,27974,27976,27978,27980,27982,27984,27986,27988,27990,27992,27994,27996,27998,28000,28002,28004,28006,28008,28010,28012,28014,28016,28018,28020,28022,28024,28026,28028,28030,28032,28034,28036,28038,28040,28042,28044,28046,28048,28050,28052,28054,28056,28058,28060,28062,28064,28066,28068,28070,28072,28074,28076,28078,28080,28082,28084,28086,28088,28090,28092,28094,28096,28098,28100,28102,28104,28106,28108,28110,28112,28114,28116,28118,28120,28122,28124,28126,28128,28130,28132,28134,28136,28138,28140,28142,28144,28146,28148,28150,28152,28154,28156,28158,28160,28162,28164,28166,28168,28170,28172,28174,28176,28178,28180,28182,28184,28186,28188,28190,28192,28194,28196,28198,28200,28202,28204,28206,28208,28210,28212,28214,28216,28218,28220,28222,28224,28226,28228,28230,28232,28234,28236,28238,28240,28242,28244,28246,28248,28250,28252,28254,28256,28258,28260,28262,28264,28266,28268,28270,28272,28274,28276,28278,28280,28282,28284,28286,28288,28290,28292,28294,28296,28298,28300,28302,28304,28306,28308,28310,28312,28314,28316,28318,28320,28322,28324,28326,28328,28330,28332,28334,28336,28338,28340,28342,28344,28346,28348,28350,28352,28354,28356,28358,28360,28362,28364,28366,28368,28370,28372,28374,28376,28378,28380,28382,28384,28386,28388,28390,28392,28394,28396,28398,28400,28402,28404,28406,28408,28410,28412,28414,28416,28418,28420,28422,28424,28426,28428,28430,28432,28434,28436,28438,28440,28442,28444,28446,28448,28450,28452,28454,28456,28458,28460,28462,28464,28466,28468,28470,28472,28474,28476,28478,28480,28482,28484,28486,28488,28490,28492,28494,28496,28498,28500,28502,28504,28506,28508,28510,28512,28514,28516,28518,28520,28522,28524,28526,28528,28530,28532,28534,28536,28538,28540,28542,28544,28546,28548,28550,28552,28554,28556,28558,28560,28562,28564,28566,28568,28570,28572,28574,28576,28578,28580,28582,28584,28586,28588,28590,28592,28594,28596,28598,28600,28602,28604,28606,28608,28610,28612,28614,28616,28618,28620,28622,28624,28626,28628,28630,28632,28634,28636,28638,28640,28642,28644,28646,28648,28650,28652,28654,28656,28658,28660,28662,28664,28666,28668,28670,28672,28674,28676,28678,28680,28682,28684,28686,28688,28690,28692,28694,28696,28698,28700,28702,28704,28706,28708,28710,28712,28714,28716,28718,28720,28722,28724,28726,28728,28730,28732,28734,28736,28738,28740,28742,28744,28746,28748,28750,28752,28754,28756,28758,28760,28762,28764,28766,28768,28770,28772,28774,28776,28778,28780,28782,28784,28786,28788,28790,28792,28794,28796,28798,28800,28802,28804,28806,28808,28810,28812,28814,28816,28818,28820,28822,28824,28826,28828,28830,28832,28834,28836,28838,28840,28842,28844,28846,28848,28850,28852,28854,28856,28858,28860,28862,28864,28866,28868,28870,28872,28874,28876,28878,28880,28882,28884,28886,28888,28890,28892,28894,28896,28898,28900,28902,28904,28906,28908,28910,28912,28914,28916,28918,28920,28922,28924,28926,28928,28930,28932,28934,28936,28938,28940,28942,28944,28946,28948,28950,28952,28954,28956,28958,28960,28962,28964,28966,28968,28970,28972,28974,28976,28978,28980,28982,28984,28986,28988,28990,28992,28994,28996,28998,29000,29002,29004,29006,29008,29010,29012,29014,29016,29018,29020,29022,29024,29026,29028,29030,29032,29034,29036,29038,29040,29042,29044,29046,29048,29050,29052,29054,29056,29058,29060,29062,29064,29066,29068,29070,29072,29074,29076,29078,29080,29082,29084,29086,29088,29090,29092,29094,29096,29098,29100,29102,29104,29106,29108,29110,29112,29114,29116,29118,29120,29122,29124,29126,29128,29130,29132,29134,29136,29138,29140,29142,29144,29146,29148,29150,29152,29154,29156,29158,29160,29162,29164,29166,29168,29170,29172,29174,29176,29178,29180,29182,29184,29186,29188,29190,29192,29194,29196,29198,29200,29202,29204,29206,29208,29210,29212,29214,29216,29218,29220,29222,29224,29226,29228,29230,29232,29234,29236,29238,29240,29242,29244,29246,29248,29250,29252,29254,29256,29258,29260,29262,29264,29266,29268,29270,29272,29274,29276,29278,29280,29282,29284,29286,29288,29290,29292,29294,29296,29298,29300,29302,29304,29306,29308,29310,29312,29314,29316,29318,29320,29322,29324,29326,29328,29330,29332,29334,29336,29338,29340,29342,29344,29346,29348,29350,29352,29354,29356,29358,29360,29362,29364,29366,29368,29370,29372,29374,29376,29378,29380,29382,29384,29386,29388,29390,29392,29394,29396,29398,29400,29402,29404,29406,29408,29410,29412,29414,29416,29418,29420,29422,29424,29426,29428,29430,29432,29434,29436,29438,29440,29442,29444,29446,29448,29450,29452,29454,29456,29458,29460,29462,29464,29466,29468,29470,29472,29474,29476,29478,29480,29482,29484,29486,29488,29490,29492,29494,29496,29498,29500,29502,29504,29506,29508,29510,29512,29514,29516,29518,29520,29522,29524,29526,29528,29530,29532,29534,29536,29538,29540,29542,29544,29546,29548,29550,29552,29554,29556,29558,29560,29562,29564,29566,29568,29570,29572,29574,29576,29578,29580,29582,29584,29586,29588,29590,29592,29594,29596,29598,29600,29602,29604,29606,29608,29610,29612,29614,29616,29618,29620,29622,29624,29626,29628,29630,29632,29634,29636,29638,29640,29642,29644,29646,29648,29650,29652,29654,29656,29658,29660,29662,29664,29666,29668,29670,29672,29674,29676,29678,29680,29682,29684,29686,29688,29690,29692,29694,29696,29698,29700,29702,29704,29706,29708,29710,29712,29714,29716,29718,29720,29722,29724,29726,29728,29730,29732,29734,29736,29738,29740,29742,29744,29746,29748,29750,29752,29754,29756,29758,29760,29762,29764,29766,29768,29770,29772,29774,29776,29778,29780,29782,29784,29786,29788,29790,29792,29794,29796,29798,29800,29802,29804,29806,29808,29810,29812,29814,29816,29818,29820,29822,29824,29826,29828,29830,29832,29834,29836,29838,29840,29842,29844,29846,29848,29850,29852,29854,29856,29858,29860,29862,29864,29866,29868,29870,29872,29874,29876,29878,29880,29882,29884,29886,29888,29890,29892,29894,29896,29898,29900,29902,29904,29906,29908,29910,29912,29914,29916,29918,29920,29922,29924,29926,29928,29930,29932,29934,29936,29938,29940,29942,29944,29946,29948,29950,29952,29954,29956,29958,29960,29962,29964,29966,29968,29970,29972,29974,29976,29978,29980,29982,29984,29986,29988,29990,29992,29994,29996,29998,30000,30002,30004,30006,30008,30010,30012,30014,30016,30018,30020,30022,30024,30026,30028,30030,30032,30034,30036,30038,30040,30042,30044,30046,30048,30050,30052,30054,30056,30058,30060,30062,30064,30066,30068,30070,30072,30074,30076,30078,30080,30082,30084,30086,30088,30090,30092,30094,30096,30098,30100,30102,30104,30106,30108,30110,30112,30114,30116,30118,30120,30122,30124,30126,30128,30130,30132,30134,30136,30138,30140,30142,30144,30146,30148,30150,30152,30154,30156,30158,30160,30162,30164,30166,30168,30170,30172,30174,30176,30178,30180,30182,30184,30186,30188,30190,30192,30194,30196,30198,30200,30202,30204,30206,30208,30210,30212,30214,30216,30218,30220,30222,30224,30226,30228,30230,30232,30234,30236,30238,30240,30242,30244,30246,30248,30250,30252,30254,30256,30258,30260,30262,30264,30266,30268,30270,30272,30274,30276,30278,30280,30282,30284,30286,30288,30290,30292,30294,30296,30298,30300,30302,30304,30306,30308,30310,30312,30314,30316,30318,30320,30322,30324,30326,30328,30330,30332,30334,30336,30338,30340,30342,30344,30346,30348,30350,30352,30354,30356,30358,30360,30362,30364,30366,30368,30370,30372,30374,30376,30378,30380,30382,30384,30386,30388,30390,30392,30394,30396,30398,30400,30402,30404,30406,30408,30410,30412,30414,30416,30418,30420,30422,30424,30426,30428,30430,30432,30434,30436,30438,30440,30442,30444,30446,30448,30450,30452,30454,30456,30458,30460,30462,30464,30466,30468,30470,30472,30474,30476,30478,30480,30482,30484,30486,30488,30490,30492,30494,30496,30498,30500,30502,30504,30506,30508,30510,30512,30514,30516,30518,30520,30522,30524,30526,30528,30530,30532,30534,30536,30538,30540,30542,30544,30546,30548,30550,30552,30554,30556,30558,30560,30562,30564,30566,30568,30570,30572,30574,30576,30578,30580,30582,30584,30586,30588,30590,30592,30594,30596,30598,30600,30602,30604,30606,30608,30610,30612,30614,30616,30618,30620,30622,30624,30626,30628,30630,30632,30634,30636,30638,30640,30642,30644,30646,30648,30650,30652,30654,30656,30658,30660,30662,30664,30666,30668,30670,30672,30674,30676,30678,30680,30682,30684,30686,30688,30690,30692,30694,30696,30698,30700,30702,30704,30706,30708,30710,30712,30714,30716,30718,30720,30722,30724,30726,30728,30730,30732,30734,30736,30738,30740,30742,30744,30746,30748,30750,30752,30754,30756,30758,30760,30762,30764,30766,30768,30770,30772,30774,30776,30778,30780,30782,30784,30786,30788,30790,30792,30794,30796,30798,30800,30802,30804,30806,30808,30810,30812,30814,30816,30818,30820,30822,30824,30826,30828,30830,30832,30834,30836,30838,30840,30842,30844,30846,30848,30850,30852,30854,30856,30858,30860,30862,30864,30866,30868,30870,30872,30874,30876,30878,30880,30882,30884,30886,30888,30890,30892,30894,30896,30898,30900,30902,30904,30906,30908,30910,30912,30914,30916,30918,30920,30922,30924,30926,30928,30930,30932,30934,30936,30938,30940,30942,30944,30946,30948,30950,30952,30954,30956,30958,30960,30962,30964,30966,30968,30970,30972,30974,30976,30978,30980,30982,30984,30986,30988,30990,30992,30994,30996,30998,31000,31002,31004,31006,31008,31010,31012,31014,31016,31018,31020,31022,31024,31026,31028,31030,31032,31034,31036,31038,31040,31042,31044,31046,31048,31050,31052,31054,31056,31058,31060,31062,31064,31066,31068,31070,31072,31074,31076,31078,31080,31082,31084,31086,31088,31090,31092,31094,31096,31098,31100,31102,31104,31106,31108,31110,31112,31114,31116,31118,31120,31122,31124,31126,31128,31130,31132,31134,31136,31138,31140,31142,31144,31146,31148,31150,31152,31154,31156,31158,31160,31162,31164,31166,31168,31170,31172,31174,31176,31178,31180,31182,31184,31186,31188,31190,31192,31194,31196,31198,31200,31202,31204,31206,31208,31210,31212,31214,31216,31218,31220,31222,31224,31226,31228,31230,31232,31234,31236,31238,31240,31242,31244,31246,31248,31250,31252,31254,31256,31258,31260,31262,31264,31266,31268,31270,31272,31274,31276,31278,31280,31282,31284,31286,31288,31290,31292,31294,31296,31298,31300,31302,31304,31306,31308,31310,31312,31314,31316,31318,31320,31322,31324,31326,31328,31330,31332,31334,31336,31338,31340,31342,31344,31346,31348,31350,31352,31354,31356,31358,31360,31362,31364,31366,31368,31370,31372,31374,31376,31378,31380,31382,31384,31386,31388,31390,31392,31394,31396,31398,31400,31402,31404,31406,31408,31410,31412,31414,31416,31418,31420,31422,31424,31426,31428,31430,31432,31434,31436,31438,31440,31442,31444,31446,31448,31450,31452,31454,31456,31458,31460,31462,31464,31466,31468,31470,31472,31474,31476,31478,31480,31482,31484,31486,31488,31490,31492,31494,31496,31498,31500,31502,31504,31506,31508,31510,31512,31514,31516,31518,31520,31522,31524,31526,31528,31530,31532,31534,31536,31538,31540,31542,31544,31546,31548,31550,31552,31554,31556,31558,31560,31562,31564,31566,31568,31570,31572,31574,31576,31578,31580,31582,31584,31586,31588,31590,31592,31594,31596,31598,31600,31602,31604,31606,31608,31610,31612,31614,31616,31618,31620,31622,31624,31626,31628,31630,31632,31634,31636,31638,31640,31642,31644,31646,31648,31650,31652,31654,31656,31658,31660,31662,31664,31666,31668,31670,31672,31674,31676,31678,31680,31682,31684,31686,31688,31690,31692,31694,31696,31698,31700,31702,31704,31706,31708,31710,31712,31714,31716,31718,31720,31722,31724,31726,31728,31730,31732,31734,31736,31738,31740,31742,31744,31746,31748,31750,31752,31754,31756,31758,31760,31762,31764,31766,31768,31770,31772,31774,31776,31778,31780,31782,31784,31786,31788,31790,31792,31794,31796,31798,31800,31802,31804,31806,31808,31810,31812,31814,31816,31818,31820,31822,31824,31826,31828,31830,31832,31834,31836,31838,31840,31842,31844,31846,31848,31850,31852,31854,31856,31858,31860,31862,31864,31866,31868,31870,31872,31874,31876,31878,31880,31882,31884,31886,31888,31890,31892,31894,31896,31898,31900,31902,31904,31906,31908,31910,31912,31914,31916,31918,31920,31922,31924,31926,31928,31930,31932,31934,31936,31938,31940,31942,31944,31946,31948,31950,31952,31954,31956,31958,31960,31962,31964,31966,31968,31970,31972,31974,31976,31978,31980,31982,31984,31986,31988,31990,31992,31994,31996,31998,32000,32002,32004,32006,32008,32010,32012,32014,32016,32018,32020,32022,32024,32026,32028,32030,32032,32034,32036,32038,32040,32042,32044,32046,32048,32050,32052,32054,32056,32058,32060,32062,32064,32066,32068,32070,32072,32074,32076,32078,32080,32082,32084,32086,32088,32090,32092,32094,32096,32098,32100,32102,32104,32106,32108,32110,32112,32114,32116,32118,32120,32122,32124,32126,32128,32130,32132,32134,32136,32138,32140,32142,32144,32146,32148,32150,32152,32154,32156,32158,32160,32162,32164,32166,32168,32170,32172,32174,32176,32178,32180,32182,32184,32186,32188,32190,32192,32194,32196,32198,32200,32202,32204,32206,32208,32210,32212,32214,32216,32218,32220,32222,32224,32226,32228,32230,32232,32234,32236,32238,32240,32242,32244,32246,32248,32250,32252,32254,32256,32258,32260,32262,32264,32266,32268,32270,32272,32274,32276,32278,32280,32282,32284,32286,32288,32290,32292,32294,32296,32298,32300,32302,32304,32306,32308,32310,32312,32314,32316,32318,32320,32322,32324,32326,32328,32330,32332,32334,32336,32338,32340,32342,32344,32346,32348,32350,32352,32354,32356,32358,32360,32362,32364,32366,32368,32370,32372,32374,32376,32378,32380,32382,32384,32386,32388,32390,32392,32394,32396,32398,32400,32402,32404,32406,32408,32410,32412,32414,32416,32418,32420,32422,32424,32426,32428,32430,32432,32434,32436,32438,32440,32442,32444,32446,32448,32450,32452,32454,32456,32458,32460,32462,32464,32466,32468,32470,32472,32474,32476,32478,32480,32482,32484,32486,32488,32490,32492,32494,32496,32498,32500,32502,32504,32506,32508,32510,32512,32514,32516,32518,32520,32522,32524,32526,32528,32530,32532,32534,32536,32538,32540,32542,32544,32546,32548,32550,32552,32554,32556,32558,32560,32562,32564,32566,32568,32570,32572,32574,32576,32578,32580,32582,32584,32586,32588,32590,32592,32594,32596,32598,32600,32602,32604,32606,32608,32610,32612,32614,32616,32618,32620,32622,32624,32626,32628,32630,32632,32634,32636,32638,32640,32642,32644,32646,32648,32650,32652,32654,32656,32658,32660,32662,32664,32666,32668,32670,32672,32674,32676,32678,32680,32682,32684,32686,32688,32690,32692,32694,32696,32698,32700,32702,32704,32706,32708,32710,32712,32714,32716,32718,32720,32722,32724,32726,32728,32730,32732,32734,32736,32738,32740,32742,32744,32746,32748,32750,32752,32754,32756,32758,32760,32762,32764,32766,32768,32770,32772,32774,32776,32778,32780,32782,32784,32786,32788,32790,32792,32794,32796,32798,32800,32802,32804,32806,32808,32810,32812,32814,32816,32818,32820,32822,32824,32826,32828,32830,32832,32834,32836,32838,32840,32842,32844,32846,32848,32850,32852,32854,32856,32858,32860,32862,32864,32866,32868,32870,32872,32874,32876,32878,32880,32882,32884,32886,32888,32890,32892,32894,32896,32898,32900,32902,32904,32906,32908,32910,32912,32914,32916,32918,32920,32922,32924,32926,32928,32930,32932,32934,32936,32938,32940,32942,32944,32946,32948,32950,32952,32954,32956,32958,32960,32962,32964,32966,32968,32970,32972,32974,32976,32978,32980,32982,32984,32986,32988,32990,32992,32994,32996,32998,33000,33002,33004,33006,33008,33010,33012,33014,33016,33018,33020,33022,33024,33026,33028,33030,33032,33034,33036,33038,33040,33042,33044,33046,33048,33050,33052,33054,33056,33058,33060,33062,33064,33066,33068,33070,33072,33074,33076,33078,33080,33082,33084,33086,33088,33090,33092,33094,33096,33098,33100,33102,33104,33106,33108,33110,33112,33114,33116,33118,33120,33122,33124,33126,33128,33130,33132,33134,33136,33138,33140,33142,33144,33146,33148,33150,33152,33154,33156,33158,33160,33162,33164,33166,33168,33170,33172,33174,33176,33178,33180,33182,33184,33186,33188,33190,33192,33194,33196,33198,33200,33202,33204,33206,33208,33210,33212,33214,33216,33218,33220,33222,33224,33226,33228,33230,33232,33234,33236,33238,33240,33242,33244,33246,33248,33250,33252,33254,33256,33258,33260,33262,33264,33266,33268,33270,33272,33274,33276,33278,33280,33282,33284,33286,33288,33290,33292,33294,33296,33298,33300,33302,33304,33306,33308,33310,33312,33314,33316,33318,33320,33322,33324,33326,33328,33330,33332,33334,33336,33338,33340,33342,33344,33346,33348,33350,33352,33354,33356,33358,33360,33362,33364,33366,33368,33370,33372,33374,33376,33378,33380,33382,33384,33386,33388,33390,33392,33394,33396,33398,33400,33402,33404,33406,33408,33410,33412,33414,33416,33418,33420,33422,33424,33426,33428,33430,33432,33434,33436,33438,33440,33442,33444,33446,33448,33450,33452,33454,33456,33458,33460,33462,33464,33466,33468,33470,33472,33474,33476,33478,33480,33482,33484,33486,33488,33490,33492,33494,33496,33498,33500,33502,33504,33506,33508,33510,33512,33514,33516,33518,33520,33522,33524,33526,33528,33530,33532,33534,33536,33538,33540,33542,33544,33546,33548,33550,33552,33554,33556,33558,33560,33562,33564,33566,33568,33570,33572,33574,33576,33578,33580,33582,33584,33586,33588,33590,33592,33594,33596,33598,33600,33602,33604,33606,33608,33610,33612,33614,33616,33618,33620,33622,33624,33626,33628,33630,33632,33634,33636,33638,33640,33642,33644,33646,33648,33650,33652,33654,33656,33658,33660,33662,33664,33666,33668,33670,33672,33674,33676,33678,33680,33682,33684,33686,33688,33690,33692,33694,33696,33698,33700,33702,33704,33706,33708,33710,33712,33714,33716,33718,33720,33722,33724,33726,33728,33730,33732,33734,33736,33738,33740,33742,33744,33746,33748,33750,33752,33754,33756,33758,33760,33762,33764,33766,33768,33770,33772,33774,33776,33778,33780,33782,33784,33786,33788,33790,33792,33794,33796,33798,33800,33802,33804,33806,33808,33810,33812,33814,33816,33818,33820,33822,33824,33826,33828,33830,33832,33834,33836,33838,33840,33842,33844,33846,33848,33850,33852,33854,33856,33858,33860,33862,33864,33866,33868,33870,33872,33874,33876,33878,33880,33882,33884,33886,33888,33890,33892,33894,33896,33898,33900,33902,33904,33906,33908,33910,33912,33914,33916,33918,33920,33922,33924,33926,33928,33930,33932,33934,33936,33938,33940,33942,33944,33946,33948,33950,33952,33954,33956,33958,33960,33962,33964,33966,33968,33970,33972,33974,33976,33978,33980,33982,33984,33986,33988,33990,33992,33994,33996,33998,34000,34002,34004,34006,34008,34010,34012,34014,34016,34018,34020,34022,34024,34026,34028,34030,34032,34034,34036,34038,34040,34042,34044,34046,34048,34050,34052,34054,34056,34058,34060,34062,34064,34066,34068,34070,34072,34074,34076,34078,34080,34082,34084,34086,34088,34090,34092,34094,34096,34098,34100,34102,34104,34106,34108,34110,34112,34114,34116,34118,34120,34122,34124,34126,34128,34130,34132,34134,34136,34138,34140,34142,34144,34146,34148,34150,34152,34154,34156,34158,34160,34162,34164,34166,34168,34170,34172,34174,34176,34178,34180,34182,34184,34186,34188,34190,34192,34194,34196,34198,34200,34202,34204,34206,34208,34210,34212,34214,34216,34218,34220,34222,34224,34226,34228,34230,34232,34234,34236,34238,34240,34242,34244,34246,34248,34250,34252,34254,34256,34258,34260,34262,34264,34266,34268,34270,34272,34274,34276,34278,34280,34282,34284,34286,34288,34290,34292,34294,34296,34298,34300,34302,34304,34306,34308,34310,34312,34314,34316,34318,34320,34322,34324,34326,34328,34330,34332,34334,34336,34338,34340,34342,34344,34346,34348,34350,34352,34354,34356,34358,34360,34362,34364,34366,34368,34370,34372,34374,34376,34378,34380,34382,34384,34386,34388,34390,34392,34394,34396,34398,34400,34402,34404,34406,34408,34410,34412,34414,34416,34418,34420,34422,34424,34426,34428,34430,34432,34434,34436,34438,34440,34442,34444,34446,34448,34450,34452,34454,34456,34458,34460,34462,34464,34466,34468,34470,34472,34474,34476,34478,34480,34482,34484,34486,34488,34490,34492,34494,34496,34498,34500,34502,34504,34506,34508,34510,34512,34514,34516,34518,34520,34522,34524,34526,34528,34530,34532,34534,34536,34538,34540,34542,34544,34546,34548,34550,34552,34554,34556,34558,34560,34562,34564,34566,34568,34570,34572,34574,34576,34578,34580,34582,34584,34586,34588,34590,34592,34594,34596,34598,34600,34602,34604,34606,34608,34610,34612,34614,34616,34618,34620,34622,34624,34626,34628,34630,34632,34634,34636,34638,34640,34642,34644,34646,34648,34650,34652,34654,34656,34658,34660,34662,34664,34666,34668,34670,34672,34674,34676,34678,34680,34682,34684,34686,34688,34690,34692,34694,34696,34698,34700,34702,34704,34706,34708,34710,34712,34714,34716,34718,34720,34722,34724,34726,34728,34730,34732,34734,34736,34738,34740,34742,34744,34746,34748,34750,34752,34754,34756,34758,34760,34762,34764,34766,34768,34770,34772,34774,34776,34778,34780,34782,34784,34786,34788,34790,34792,34794,34796,34798,34800,34802,34804,34806,34808,34810,34812,34814,34816,34818,34820,34822,34824,34826,34828,34830,34832,34834,34836,34838,34840,34842,34844,34846,34848,34850,34852,34854,34856,34858,34860,34862,34864,34866,34868,34870,34872,34874,34876,34878,34880,34882,34884,34886,34888,34890,34892,34894,34896,34898,34900,34902,34904,34906,34908,34910,34912,34914,34916,34918,34920,34922,34924,34926,34928,34930,34932,34934,34936,34938,34940,34942,34944,34946,34948,34950,34952,34954,34956,34958,34960,34962,34964,34966,34968,34970,34972,34974,34976,34978,34980,34982,34984,34986,34988,34990,34992,34994,34996,34998,35000,35002,35004,35006,35008,35010,35012,35014,35016,35018,35020,35022,35024,35026,35028,35030,35032,35034,35036,35038,35040,35042,35044,35046,35048,35050,35052,35054,35056,35058,35060,35062,35064,35066,35068,35070,35072,35074,35076,35078,35080,35082,35084,35086,35088,35090,35092,35094,35096,35098,35100,35102,35104,35106,35108,35110,35112,35114,35116,35118,35120,35122,35124,35126,35128,35130,35132,35134,35136,35138,35140,35142,35144,35146,35148,35150,35152,35154,35156,35158,35160,35162,35164,35166,35168,35170,35172,35174,35176,35178,35180,35182,35184,35186,35188,35190,35192,35194,35196,35198,35200,35202,35204,35206,35208,35210,35212,35214,35216,35218,35220,35222,35224,35226,35228,35230,35232,35234,35236,35238,35240,35242,35244,35246,35248,35250,35252,35254,35256,35258,35260,35262,35264,35266,35268,35270,35272,35274,35276,35278,35280,35282,35284,35286,35288,35290,35292,35294,35296,35298,35300,35302,35304,35306,35308,35310,35312,35314,35316,35318,35320,35322,35324,35326,35328,35330,35332,35334,35336,35338,35340,35342,35344,35346,35348,35350,35352,35354,35356,35358,35360,35362,35364,35366,35368,35370,35372,35374,35376,35378,35380,35382,35384,35386,35388,35390,35392,35394,35396,35398,35400,35402,35404,35406,35408,35410,35412,35414,35416,35418,35420,35422,35424,35426,35428,35430,35432,35434,35436,35438,35440,35442,35444,35446,35448,35450,35452,35454,35456,35458,35460,35462,35464,35466,35468,35470,35472,35474,35476,35478,35480,35482,35484,35486,35488,35490,35492,35494,35496,35498,35500,35502,35504,35506,35508,35510,35512,35514,35516,35518,35520,35522,35524,35526,35528,35530,35532,35534,35536,35538,35540,35542,35544,35546,35548,35550,35552,35554,35556,35558,35560,35562,35564,35566,35568,35570,35572,35574,35576,35578,35580,35582,35584,35586,35588,35590,35592,35594,35596,35598,35600,35602,35604,35606,35608,35610,35612,35614,35616,35618,35620,35622,35624,35626,35628,35630,35632,35634,35636,35638,35640,35642,35644,35646,35648,35650,35652,35654,35656,35658,35660,35662,35664,35666,35668,35670,35672,35674,35676,35678,35680,35682,35684,35686,35688,35690,35692,35694,35696,35698,35700,35702,35704,35706,35708,35710,35712,35714,35716,35718,35720,35722,35724,35726,35728,35730,35732,35734,35736,35738,35740,35742,35744,35746,35748,35750,35752,35754,35756,35758,35760,35762,35764,35766,35768,35770,35772,35774,35776,35778,35780,35782,35784,35786,35788,35790,35792,35794,35796,35798,35800,35802,35804,35806,35808,35810,35812,35814,35816,35818,35820,35822,35824,35826,35828,35830,35832,35834,35836,35838,35840,35842,35844,35846,35848,35850,35852,35854,35856,35858,35860,35862,35864,35866,35868,35870,35872,35874,35876,35878,35880,35882,35884,35886,35888,35890,35892,35894,35896,35898,35900,35902,35904,35906,35908,35910,35912,35914,35916,35918,35920,35922,35924,35926,35928,35930,35932,35934,35936,35938,35940,35942,35944,35946,35948,35950,35952,35954,35956,35958,35960,35962,35964,35966,35968,35970,35972,35974,35976,35978,35980,35982,35984,35986,35988,35990,35992,35994,35996,35998,36000,36002,36004,36006,36008,36010,36012,36014,36016,36018,36020,36022,36024,36026,36028,36030,36032,36034,36036,36038,36040,36042,36044,36046,36048,36050,36052,36054,36056,36058,36060,36062,36064,36066,36068,36070,36072,36074,36076,36078,36080,36082,36084,36086,36088,36090,36092,36094,36096,36098,36100,36102,36104,36106,36108,36110,36112,36114,36116,36118,36120,36122,36124,36126,36128,36130,36132,36134,36136,36138,36140,36142,36144,36146,36148,36150,36152,36154,36156,36158,36160,36162,36164,36166,36168,36170,36172,36174,36176,36178,36180,36182,36184,36186,36188,36190,36192,36194,36196,36198,36200,36202,36204,36206,36208,36210,36212,36214,36216,36218,36220,36222,36224,36226,36228,36230,36232,36234,36236,36238,36240,36242,36244,36246,36248,36250,36252,36254,36256,36258,36260,36262,36264,36266,36268,36270,36272,36274,36276,36278,36280,36282,36284,36286,36288,36290,36292,36294,36296,36298,36300,36302,36304,36306,36308,36310,36312,36314,36316,36318,36320,36322,36324,36326,36328,36330,36332,36334,36336,36338,36340,36342,36344,36346,36348,36350,36352,36354,36356,36358,36360,36362,36364,36366,36368,36370,36372,36374,36376,36378,36380,36382,36384,36386,36388,36390,36392,36394,36396,36398,36400,36402,36404,36406,36408,36410,36412,36414,36416,36418,36420,36422,36424,36426,36428,36430,36432,36434,36436,36438,36440,36442,36444,36446,36448,36450,36452,36454,36456,36458,36460,36462,36464,36466,36468,36470,36472,36474,36476,36478,36480,36482,36484,36486,36488,36490,36492,36494,36496,36498,36500,36502,36504,36506,36508,36510,36512,36514,36516,36518,36520,36522,36524,36526,36528,36530,36532,36534,36536,36538,36540,36542,36544,36546,36548,36550,36552,36554,36556,36558,36560,36562,36564,36566,36568,36570,36572,36574,36576,36578,36580,36582,36584,36586,36588,36590,36592,36594,36596,36598,36600,36602,36604,36606,36608,36610,36612,36614,36616,36618,36620,36622,36624,36626,36628,36630,36632,36634,36636,36638,36640,36642,36644,36646,36648,36650,36652,36654,36656,36658,36660,36662,36664,36666,36668,36670,36672,36674,36676,36678,36680,36682,36684,36686,36688,36690,36692,36694,36696,36698,36700,36702,36704,36706,36708,36710,36712,36714,36716,36718,36720,36722,36724,36726,36728,36730,36732,36734,36736,36738,36740,36742,36744,36746,36748,36750,36752,36754,36756,36758,36760,36762,36764,36766,36768,36770,36772,36774,36776,36778,36780,36782,36784,36786,36788,36790,36792,36794,36796,36798,36800,36802,36804,36806,36808,36810,36812,36814,36816,36818,36820,36822,36824,36826,36828,36830,36832,36834,36836,36838,36840,36842,36844,36846,36848,36850,36852,36854,36856,36858,36860,36862,36864,36866,36868,36870,36872,36874,36876,36878,36880,36882,36884,36886,36888,36890,36892,36894,36896,36898,36900,36902,36904,36906,36908,36910,36912,36914,36916,36918,36920,36922,36924,36926,36928,36930,36932,36934,36936,36938,36940,36942,36944,36946,36948,36950,36952,36954,36956,36958,36960,36962,36964,36966,36968,36970,36972,36974,36976,36978,36980,36982,36984,36986,36988,36990,36992,36994,36996,36998,37000,37002,37004,37006,37008,37010,37012,37014,37016,37018,37020,37022,37024,37026,37028,37030,37032,37034,37036,37038,37040,37042,37044,37046,37048,37050,37052,37054,37056,37058,37060,37062,37064,37066,37068,37070,37072,37074,37076,37078,37080,37082,37084,37086,37088,37090,37092,37094,37096,37098,37100,37102,37104,37106,37108,37110,37112,37114,37116,37118,37120,37122,37124,37126,37128,37130,37132,37134,37136,37138,37140,37142,37144,37146,37148,37150,37152,37154,37156,37158,37160,37162,37164,37166,37168,37170,37172,37174,37176,37178,37180,37182,37184,37186,37188,37190,37192,37194,37196,37198,37200,37202,37204,37206,37208,37210,37212,37214,37216,37218,37220,37222,37224,37226,37228,37230,37232,37234,37236,37238,37240,37242,37244,37246,37248,37250,37252,37254,37256,37258,37260,37262,37264,37266,37268,37270,37272,37274,37276,37278,37280,37282,37284,37286,37288,37290,37292,37294,37296,37298,37300,37302,37304,37306,37308,37310,37312,37314,37316,37318,37320,37322,37324,37326,37328,37330,37332,37334,37336,37338,37340,37342,37344,37346,37348,37350,37352,37354,37356,37358,37360,37362,37364,37366,37368,37370,37372,37374,37376,37378,37380,37382,37384,37386,37388,37390,37392,37394,37396,37398,37400,37402,37404,37406,37408,37410,37412,37414,37416,37418,37420,37422,37424,37426,37428,37430,37432,37434,37436,37438,37440,37442,37444,37446,37448,37450,37452,37454,37456,37458,37460,37462,37464,37466,37468,37470,37472,37474,37476,37478,37480,37482,37484,37486,37488,37490,37492,37494,37496,37498,37500,37502,37504,37506,37508,37510,37512,37514,37516,37518,37520,37522,37524,37526,37528,37530,37532,37534,37536,37538,37540,37542,37544,37546,37548,37550,37552,37554,37556,37558,37560,37562,37564,37566,37568,37570,37572,37574,37576,37578,37580,37582,37584,37586,37588,37590,37592,37594,37596,37598,37600,37602,37604,37606,37608,37610,37612,37614,37616,37618,37620,37622,37624,37626,37628,37630,37632,37634,37636,37638,37640,37642,37644,37646,37648,37650,37652,37654,37656,37658,37660,37662,37664,37666,37668,37670,37672,37674,37676,37678,37680,37682,37684,37686,37688,37690,37692,37694,37696,37698,37700,37702,37704,37706,37708,37710,37712,37714,37716,37718,37720,37722,37724,37726,37728,37730,37732,37734,37736,37738,37740,37742,37744,37746,37748,37750,37752,37754,37756,37758,37760,37762,37764,37766,37768,37770,37772,37774,37776,37778,37780,37782,37784,37786,37788,37790,37792,37794,37796,37798,37800,37802,37804,37806,37808,37810,37812,37814,37816,37818,37820,37822,37824,37826,37828,37830,37832,37834,37836,37838,37840,37842,37844,37846,37848,37850,37852,37854,37856,37858,37860,37862,37864,37866,37868,37870,37872,37874,37876,37878,37880,37882,37884,37886,37888,37890,37892,37894,37896,37898,37900,37902,37904,37906,37908,37910,37912,37914,37916,37918,37920,37922,37924,37926,37928,37930,37932,37934,37936,37938,37940,37942,37944,37946,37948,37950,37952,37954,37956,37958,37960,37962,37964,37966,37968,37970,37972,37974,37976,37978,37980,37982,37984,37986,37988,37990,37992,37994,37996,37998,38000,38002,38004,38006,38008,38010,38012,38014,38016,38018,38020,38022,38024,38026,38028,38030,38032,38034,38036,38038,38040,38042,38044,38046,38048,38050,38052,38054,38056,38058,38060,38062,38064,38066,38068,38070,38072,38074,38076,38078,38080,38082,38084,38086,38088,38090,38092,38094,38096,38098,38100,38102,38104,38106,38108,38110,38112,38114,38116,38118,38120,38122,38124,38126,38128,38130,38132,38134,38136,38138,38140,38142,38144,38146,38148,38150,38152,38154,38156,38158,38160,38162,38164,38166,38168,38170,38172,38174,38176,38178,38180,38182,38184,38186,38188,38190,38192,38194,38196,38198,38200,38202,38204,38206,38208,38210,38212,38214,38216,38218,38220,38222,38224,38226,38228,38230,38232,38234,38236,38238,38240,38242,38244,38246,38248,38250,38252,38254,38256,38258,38260,38262,38264,38266,38268,38270,38272,38274,38276,38278,38280,38282,38284,38286,38288,38290,38292,38294,38296,38298,38300,38302,38304,38306,38308,38310,38312,38314,38316,38318,38320,38322,38324,38326,38328,38330,38332,38334,38336,38338,38340,38342,38344,38346,38348,38350,38352,38354,38356,38358,38360,38362,38364,38366,38368,38370,38372,38374,38376,38378,38380,38382,38384,38386,38388,38390,38392,38394,38396,38398,38400,38402,38404,38406,38408,38410,38412,38414,38416,38418,38420,38422,38424,38426,38428,38430,38432,38434,38436,38438,38440,38442,38444,38446,38448,38450,38452,38454,38456,38458,38460,38462,38464,38466,38468,38470,38472,38474,38476,38478,38480,38482,38484,38486,38488,38490,38492,38494,38496,38498,38500,38502,38504,38506,38508,38510,38512,38514,38516,38518,38520,38522,38524,38526,38528,38530,38532,38534,38536,38538,38540,38542,38544,38546,38548,38550,38552,38554,38556,38558,38560,38562,38564,38566,38568,38570,38572,38574,38576,38578,38580,38582,38584,38586,38588,38590,38592,38594,38596,38598,38600,38602,38604,38606,38608,38610,38612,38614,38616,38618,38620,38622,38624,38626,38628,38630,38632,38634,38636,38638,38640,38642,38644,38646,38648,38650,38652,38654,38656,38658,38660,38662,38664,38666,38668,38670,38672,38674,38676,38678,38680,38682,38684,38686,38688,38690,38692,38694,38696,38698,38700,38702,38704,38706,38708,38710,38712,38714,38716,38718,38720,38722,38724,38726,38728,38730,38732,38734,38736,38738,38740,38742,38744,38746,38748,38750,38752,38754,38756,38758,38760,38762,38764,38766,38768,38770,38772,38774,38776,38778,38780,38782,38784,38786,38788,38790,38792,38794,38796,38798,38800,38802,38804,38806,38808,38810,38812,38814,38816,38818,38820,38822,38824,38826,38828,38830,38832,38834,38836,38838,38840,38842,38844,38846,38848,38850,38852,38854,38856,38858,38860,38862,38864,38866,38868,38870,38872,38874,38876,38878,38880,38882,38884,38886,38888,38890,38892,38894,38896,38898,38900,38902,38904,38906,38908,38910,38912,38914,38916,38918,38920,38922,38924,38926,38928,38930,38932,38934,38936,38938,38940,38942,38944,38946,38948,38950,38952,38954,38956,38958,38960,38962,38964,38966,38968,38970,38972,38974,38976,38978,38980,38982,38984,38986,38988,38990,38992,38994,38996,38998,39000,39002,39004,39006,39008,39010,39012,39014,39016,39018,39020,39022,39024,39026,39028,39030,39032,39034,39036,39038,39040,39042,39044,39046,39048,39050,39052,39054,39056,39058,39060,39062,39064,39066,39068,39070,39072,39074,39076,39078,39080,39082,39084,39086,39088,39090,39092,39094,39096,39098,39100,39102,39104,39106,39108,39110,39112,39114,39116,39118,39120,39122,39124,39126,39128,39130,39132,39134,39136,39138,39140,39142,39144,39146,39148,39150,39152,39154,39156,39158,39160,39162,39164,39166,39168,39170,39172,39174,39176,39178,39180,39182,39184,39186,39188,39190,39192,39194,39196,39198,39200,39202,39204,39206,39208,39210,39212,39214,39216,39218,39220,39222,39224,39226,39228,39230,39232,39234,39236,39238,39240,39242,39244,39246,39248,39250,39252,39254,39256,39258,39260,39262,39264,39266,39268,39270,39272,39274,39276,39278,39280,39282,39284,39286,39288,39290,39292,39294,39296,39298,39300,39302,39304,39306,39308,39310,39312,39314,39316,39318,39320,39322,39324,39326,39328,39330,39332,39334,39336,39338,39340,39342,39344,39346,39348,39350,39352,39354,39356,39358,39360,39362,39364,39366,39368,39370,39372,39374,39376,39378,39380,39382,39384,39386,39388,39390,39392,39394,39396,39398,39400,39402,39404,39406,39408,39410,39412,39414,39416,39418,39420,39422,39424,39426,39428,39430,39432,39434,39436,39438,39440,39442,39444,39446,39448,39450,39452,39454,39456,39458,39460,39462,39464,39466,39468,39470,39472,39474,39476,39478,39480,39482,39484,39486,39488,39490,39492,39494,39496,39498,39500,39502,39504,39506,39508,39510,39512,39514,39516,39518,39520,39522,39524,39526,39528,39530,39532,39534,39536,39538,39540,39542,39544,39546,39548,39550,39552,39554,39556,39558,39560,39562,39564,39566,39568,39570,39572,39574,39576,39578,39580,39582,39584,39586,39588,39590,39592,39594,39596,39598,39600,39602,39604,39606,39608,39610,39612,39614,39616,39618,39620,39622,39624,39626,39628,39630,39632,39634,39636,39638,39640,39642,39644,39646,39648,39650,39652,39654,39656,39658,39660,39662,39664,39666,39668,39670,39672,39674,39676,39678,39680,39682,39684,39686,39688,39690,39692,39694,39696,39698,39700,39702,39704,39706,39708,39710,39712,39714,39716,39718,39720,39722,39724,39726,39728,39730,39732,39734,39736,39738,39740,39742,39744,39746,39748,39750,39752,39754,39756,39758,39760,39762,39764,39766,39768,39770,39772,39774,39776,39778,39780,39782,39784,39786,39788,39790,39792,39794,39796,39798,39800,39802,39804,39806,39808,39810,39812,39814,39816,39818,39820,39822,39824,39826,39828,39830,39832,39834,39836,39838,39840,39842,39844,39846,39848,39850,39852,39854,39856,39858,39860,39862,39864,39866,39868,39870,39872,39874,39876,39878,39880,39882,39884,39886,39888,39890,39892,39894,39896,39898,39900,39902,39904,39906,39908,39910,39912,39914,39916,39918,39920,39922,39924,39926,39928,39930,39932,39934,39936,39938,39940,39942,39944,39946,39948,39950,39952,39954,39956,39958,39960,39962,39964,39966,39968,39970,39972,39974,39976,39978,39980,39982,39984,39986,39988,39990,39992,39994,39996,39998,40000,40002,40004,40006,40008,40010,40012,40014,40016,40018,40020,40022,40024,40026,40028,40030,40032,40034,40036,40038,40040,40042,40044,40046,40048,40050,40052,40054,40056,40058,40060,40062,40064,40066,40068,40070,40072,40074,40076,40078,40080,40082,40084,40086,40088,40090,40092,40094,40096,40098,40100,40102,40104,40106,40108,40110,40112,40114,40116,40118,40120,40122,40124,40126,40128,40130,40132,40134,40136,40138,40140,40142,40144,40146,40148,40150,40152,40154,40156,40158,40160,40162,40164,40166,40168,40170,40172,40174,40176,40178,40180,40182,40184,40186,40188,40190,40192,40194,40196,40198,40200,40202,40204,40206,40208,40210,40212,40214,40216,40218,40220,40222,40224,40226,40228,40230,40232,40234,40236,40238,40240,40242,40244,40246,40248,40250,40252,40254,40256,40258,40260,40262,40264,40266,40268,40270,40272,40274,40276,40278,40280,40282,40284,40286,40288,40290,40292,40294,40296,40298,40300,40302,40304,40306,40308,40310,40312,40314,40316,40318,40320,40322,40324,40326,40328,40330,40332,40334,40336,40338,40340,40342,40344,40346,40348,40350,40352,40354,40356,40358,40360,40362,40364,40366,40368,40370,40372,40374,40376,40378,40380,40382,40384,40386,40388,40390,40392,40394,40396,40398,40400,40402,40404,40406,40408,40410,40412,40414,40416,40418,40420,40422,40424,40426,40428,40430,40432,40434,40436,40438,40440,40442,40444,40446,40448,40450,40452,40454,40456,40458,40460,40462,40464,40466,40468,40470,40472,40474,40476,40478,40480,40482,40484,40486,40488,40490,40492,40494,40496,40498,40500,40502,40504,40506,40508,40510,40512,40514,40516,40518,40520,40522,40524,40526,40528,40530,40532,40534,40536,40538,40540,40542,40544,40546,40548,40550,40552,40554,40556,40558,40560,40562,40564,40566,40568,40570,40572,40574,40576,40578,40580,40582,40584,40586,40588,40590,40592,40594,40596,40598,40600,40602,40604,40606,40608,40610,40612,40614,40616,40618,40620,40622,40624,40626,40628,40630,40632,40634,40636,40638,40640,40642,40644,40646,40648,40650,40652,40654,40656,40658,40660,40662,40664,40666,40668,40670,40672,40674,40676,40678,40680,40682,40684,40686,40688,40690,40692,40694,40696,40698,40700,40702,40704,40706,40708,40710,40712,40714,40716,40718,40720,40722,40724,40726,40728,40730,40732,40734,40736,40738,40740,40742,40744,40746,40748,40750,40752,40754,40756,40758,40760,40762,40764,40766,40768,40770,40772,40774,40776,40778,40780,40782,40784,40786,40788,40790,40792,40794,40796,40798,40800,40802,40804,40806,40808,40810,40812,40814,40816,40818,40820,40822,40824,40826,40828,40830,40832,40834,40836,40838,40840,40842,40844,40846,40848,40850,40852,40854,40856,40858,40860,40862,40864,40866,40868,40870,40872,40874,40876,40878,40880,40882,40884,40886,40888,40890,40892,40894,40896,40898,40900,40902,40904,40906,40908,40910,40912,40914,40916,40918,40920,40922,40924,40926,40928,40930,40932,40934,40936,40938,40940,40942,40944,40946,40948,40950,40952,40954,40956,40958,40960,40962,40964,40966,40968,40970,40972,40974,40976,40978,40980,40982,40984,40986,40988,40990,40992,40994,40996,40998,41000,41002,41004,41006,41008,41010,41012,41014,41016,41018,41020,41022,41024,41026,41028,41030,41032,41034,41036,41038,41040,41042,41044,41046,41048,41050,41052,41054,41056,41058,41060,41062,41064,41066,41068,41070,41072,41074,41076,41078,41080,41082,41084,41086,41088,41090,41092,41094,41096,41098,41100,41102,41104,41106,41108,41110,41112,41114,41116,41118,41120,41122,41124,41126,41128,41130,41132,41134,41136,41138,41140,41142,41144,41146,41148,41150,41152,41154,41156,41158,41160,41162,41164,41166,41168,41170,41172,41174,41176,41178,41180,41182,41184,41186,41188,41190,41192,41194,41196,41198,41200,41202,41204,41206,41208,41210,41212,41214,41216,41218,41220,41222,41224,41226,41228,41230,41232,41234,41236,41238,41240,41242,41244,41246,41248,41250,41252,41254,41256,41258,41260,41262,41264,41266,41268,41270,41272,41274,41276,41278,41280,41282,41284,41286,41288,41290,41292,41294,41296,41298,41300,41302,41304,41306,41308,41310,41312,41314,41316,41318,41320,41322,41324,41326,41328,41330,41332,41334,41336,41338,41340,41342,41344,41346,41348,41350,41352,41354,41356,41358,41360,41362,41364,41366,41368,41370,41372,41374,41376,41378,41380,41382,41384,41386,41388,41390,41392,41394,41396,41398,41400,41402,41404,41406,41408,41410,41412,41414,41416,41418,41420,41422,41424,41426,41428,41430,41432,41434,41436,41438,41440,41442,41444,41446,41448,41450,41452,41454,41456,41458,41460,41462,41464,41466,41468,41470,41472,41474,41476,41478,41480,41482,41484,41486,41488,41490,41492,41494,41496,41498,41500,41502,41504,41506,41508,41510,41512,41514,41516,41518,41520,41522,41524,41526,41528,41530,41532,41534,41536,41538,41540,41542,41544,41546,41548,41550,41552,41554,41556,41558,41560,41562,41564,41566,41568,41570,41572,41574,41576,41578,41580,41582,41584,41586,41588,41590,41592,41594,41596,41598,41600,41602,41604,41606,41608,41610,41612,41614,41616,41618,41620,41622,41624,41626,41628,41630,41632,41634,41636,41638,41640,41642,41644,41646,41648,41650,41652,41654,41656,41658,41660,41662,41664,41666,41668,41670,41672,41674,41676,41678,41680,41682,41684,41686,41688,41690,41692,41694,41696,41698,41700,41702,41704,41706,41708,41710,41712,41714,41716,41718,41720,41722,41724,41726,41728,41730,41732,41734,41736,41738,41740,41742,41744,41746,41748,41750,41752,41754,41756,41758,41760,41762,41764,41766,41768,41770,41772,41774,41776,41778,41780,41782,41784,41786,41788,41790,41792,41794,41796,41798,41800,41802,41804,41806,41808,41810,41812,41814,41816,41818,41820,41822,41824,41826,41828,41830,41832,41834,41836,41838,41840,41842,41844,41846,41848,41850,41852,41854,41856,41858,41860,41862,41864,41866,41868,41870,41872,41874,41876,41878,41880,41882,41884,41886,41888,41890,41892,41894,41896,41898,41900,41902,41904,41906,41908,41910,41912,41914,41916,41918,41920,41922,41924,41926,41928,41930,41932,41934,41936,41938,41940,41942,41944,41946,41948,41950,41952,41954,41956,41958,41960,41962,41964,41966,41968,41970,41972,41974,41976,41978,41980,41982,41984,41986,41988,41990,41992,41994,41996,41998,42000,42002,42004,42006,42008,42010,42012,42014,42016,42018,42020,42022,42024,42026,42028,42030,42032,42034,42036,42038,42040,42042,42044,42046,42048,42050,42052,42054,42056,42058,42060,42062,42064,42066,42068,42070,42072,42074,42076,42078,42080,42082,42084,42086,42088,42090,42092,42094,42096,42098,42100,42102,42104,42106,42108,42110,42112,42114,42116,42118,42120,42122,42124,42126,42128,42130,42132,42134,42136,42138,42140,42142,42144,42146,42148,42150,42152,42154,42156,42158,42160,42162,42164,42166,42168,42170,42172,42174,42176,42178,42180,42182,42184,42186,42188,42190,42192,42194,42196,42198,42200,42202,42204,42206,42208,42210,42212,42214,42216,42218,42220,42222,42224,42226,42228,42230,42232,42234,42236,42238,42240,42242,42244,42246,42248,42250,42252,42254,42256,42258,42260,42262,42264,42266,42268,42270,42272,42274,42276,42278,42280,42282,42284,42286,42288,42290,42292,42294,42296,42298,42300,42302,42304,42306,42308,42310,42312,42314,42316,42318,42320,42322,42324,42326,42328,42330,42332,42334,42336,42338,42340,42342,42344,42346,42348,42350,42352,42354,42356,42358,42360,42362,42364,42366,42368,42370,42372,42374,42376,42378,42380,42382,42384,42386,42388,42390,42392,42394,42396,42398,42400,42402,42404,42406,42408,42410,42412,42414,42416,42418,42420,42422,42424,42426,42428,42430,42432,42434,42436,42438,42440,42442,42444,42446,42448,42450,42452,42454,42456,42458,42460,42462,42464,42466,42468,42470,42472,42474,42476,42478,42480,42482,42484,42486,42488,42490,42492,42494,42496,42498,42500,42502,42504,42506,42508,42510,42512,42514,42516,42518,42520,42522,42524,42526,42528,42530,42532,42534,42536,42538,42540,42542,42544,42546,42548,42550,42552,42554,42556,42558,42560,42562,42564,42566,42568,42570,42572,42574,42576,42578,42580,42582,42584,42586,42588,42590,42592,42594,42596,42598,42600,42602,42604,42606,42608,42610,42612,42614,42616,42618,42620,42622,42624,42626,42628,42630,42632,42634,42636,42638,42640,42642,42644,42646,42648,42650,42652,42654,42656,42658,42660,42662,42664,42666,42668,42670,42672,42674,42676,42678,42680,42682,42684,42686,42688,42690,42692,42694,42696,42698,42700,42702,42704,42706,42708,42710,42712,42714,42716,42718,42720,42722,42724,42726,42728,42730,42732,42734,42736,42738,42740,42742,42744,42746,42748,42750,42752,42754,42756,42758,42760,42762,42764,42766,42768,42770,42772,42774,42776,42778,42780,42782,42784,42786,42788,42790,42792,42794,42796,42798,42800,42802,42804,42806,42808,42810,42812,42814,42816,42818,42820,42822,42824,42826,42828,42830,42832,42834,42836,42838,42840,42842,42844,42846,42848,42850,42852,42854,42856,42858,42860,42862,42864,42866,42868,42870,42872,42874,42876,42878,42880,42882,42884,42886,42888,42890,42892,42894,42896,42898,42900,42902,42904,42906,42908,42910,42912,42914,42916,42918,42920,42922,42924,42926,42928,42930,42932,42934,42936,42938,42940,42942,42944,42946,42948,42950,42952,42954,42956,42958,42960,42962,42964,42966,42968,42970,42972,42974,42976,42978,42980,42982,42984,42986,42988,42990,42992,42994,42996,42998,43000,43002,43004,43006,43008,43010,43012,43014,43016,43018,43020,43022,43024,43026,43028,43030,43032,43034,43036,43038,43040,43042,43044,43046,43048,43050,43052,43054,43056,43058,43060,43062,43064,43066,43068,43070,43072,43074,43076,43078,43080,43082,43084,43086,43088,43090,43092,43094,43096,43098,43100,43102,43104,43106,43108,43110,43112,43114,43116,43118,43120,43122,43124,43126,43128,43130,43132,43134,43136,43138,43140,43142,43144,43146,43148,43150,43152,43154,43156,43158,43160,43162,43164,43166,43168,43170,43172,43174,43176,43178,43180,43182,43184,43186,43188,43190,43192,43194,43196,43198,43200,43202,43204,43206,43208,43210,43212,43214,43216,43218,43220,43222,43224,43226,43228,43230,43232,43234,43236,43238,43240,43242,43244,43246,43248,43250,43252,43254,43256,43258,43260,43262,43264,43266,43268,43270,43272,43274,43276,43278,43280,43282,43284,43286,43288,43290,43292,43294,43296,43298,43300,43302,43304,43306,43308,43310,43312,43314,43316,43318,43320,43322,43324,43326,43328,43330,43332,43334,43336,43338,43340,43342,43344,43346,43348,43350,43352,43354,43356,43358,43360,43362,43364,43366,43368,43370,43372,43374,43376,43378,43380,43382,43384,43386,43388,43390,43392,43394,43396,43398,43400,43402,43404,43406,43408,43410,43412,43414,43416,43418,43420,43422,43424,43426,43428,43430,43432,43434,43436,43438,43440,43442,43444,43446,43448,43450,43452,43454,43456,43458,43460,43462,43464,43466,43468,43470,43472,43474,43476,43478,43480,43482,43484,43486,43488,43490,43492,43494,43496,43498,43500,43502,43504,43506,43508,43510,43512,43514,43516,43518,43520,43522,43524,43526,43528,43530,43532,43534,43536,43538,43540,43542,43544,43546,43548,43550,43552,43554,43556,43558,43560,43562,43564,43566,43568,43570,43572,43574,43576,43578,43580,43582,43584,43586,43588,43590,43592,43594,43596,43598,43600,43602,43604,43606,43608,43610,43612,43614,43616,43618,43620,43622,43624,43626,43628,43630,43632,43634,43636,43638,43640,43642,43644,43646,43648,43650,43652,43654,43656,43658,43660,43662,43664,43666,43668,43670,43672,43674,43676,43678,43680,43682,43684,43686,43688,43690,43692,43694,43696,43698,43700,43702,43704,43706,43708,43710,43712,43714,43716,43718,43720,43722,43724,43726,43728,43730,43732,43734,43736,43738,43740,43742,43744,43746,43748,43750,43752,43754,43756,43758,43760,43762,43764,43766,43768,43770,43772,43774,43776,43778,43780,43782,43784,43786,43788,43790,43792,43794,43796,43798,43800,43802,43804,43806,43808,43810,43812,43814,43816,43818,43820,43822,43824,43826,43828,43830,43832,43834,43836,43838,43840,43842,43844,43846,43848,43850,43852,43854,43856,43858,43860,43862,43864,43866,43868,43870,43872,43874,43876,43878,43880,43882,43884,43886,43888,43890,43892,43894,43896,43898,43900,43902,43904,43906,43908,43910,43912,43914,43916,43918,43920,43922,43924,43926,43928,43930,43932,43934,43936,43938,43940,43942,43944,43946,43948,43950,43952,43954,43956,43958,43960,43962,43964,43966,43968,43970,43972,43974,43976,43978,43980,43982,43984,43986,43988,43990,43992,43994,43996,43998,44000,44002,44004,44006,44008,44010,44012,44014,44016,44018,44020,44022,44024,44026,44028,44030,44032,44034,44036,44038,44040,44042,44044,44046,44048,44050,44052,44054,44056,44058,44060,44062,44064,44066,44068,44070,44072,44074,44076,44078,44080,44082,44084,44086,44088,44090,44092,44094,44096,44098,44100,44102,44104,44106,44108,44110,44112,44114,44116,44118,44120,44122,44124,44126,44128,44130,44132,44134,44136,44138,44140,44142,44144,44146,44148,44150,44152,44154,44156,44158,44160,44162,44164,44166,44168,44170,44172,44174,44176,44178,44180,44182,44184,44186,44188,44190,44192,44194,44196,44198,44200,44202,44204,44206,44208,44210,44212,44214,44216,44218,44220,44222,44224,44226,44228,44230,44232,44234,44236,44238,44240,44242,44244,44246,44248,44250,44252,44254,44256,44258,44260,44262,44264,44266,44268,44270,44272,44274,44276,44278,44280,44282,44284,44286,44288,44290,44292,44294,44296,44298,44300,44302,44304,44306,44308,44310,44312,44314,44316,44318,44320,44322,44324,44326,44328,44330,44332,44334,44336,44338,44340,44342,44344,44346,44348,44350,44352,44354,44356,44358,44360,44362,44364,44366,44368,44370,44372,44374,44376,44378,44380,44382,44384,44386,44388,44390,44392,44394,44396,44398,44400,44402,44404,44406,44408,44410,44412,44414,44416,44418,44420,44422,44424,44426,44428,44430,44432,44434,44436,44438,44440,44442,44444,44446,44448,44450,44452,44454,44456,44458,44460,44462,44464,44466,44468,44470,44472,44474,44476,44478,44480,44482,44484,44486,44488,44490,44492,44494,44496,44498,44500,44502,44504,44506,44508,44510,44512,44514,44516,44518,44520,44522,44524,44526,44528,44530,44532,44534,44536,44538,44540,44542,44544,44546,44548,44550,44552,44554,44556,44558,44560,44562,44564,44566,44568,44570,44572,44574,44576,44578,44580,44582,44584,44586,44588,44590,44592,44594,44596,44598,44600,44602,44604,44606,44608,44610,44612,44614,44616,44618,44620,44622,44624,44626,44628,44630,44632,44634,44636,44638,44640,44642,44644,44646,44648,44650,44652,44654,44656,44658,44660,44662,44664,44666,44668,44670,44672,44674,44676,44678,44680,44682,44684,44686,44688,44690,44692,44694,44696,44698,44700,44702,44704,44706,44708,44710,44712,44714,44716,44718,44720,44722,44724,44726,44728,44730,44732,44734,44736,44738,44740,44742,44744,44746,44748,44750,44752,44754,44756,44758,44760,44762,44764,44766,44768,44770,44772,44774,44776,44778,44780,44782,44784,44786,44788,44790,44792,44794,44796,44798,44800,44802,44804,44806,44808,44810,44812,44814,44816,44818,44820,44822,44824,44826,44828,44830,44832,44834,44836,44838,44840,44842,44844,44846,44848,44850,44852,44854,44856,44858,44860,44862,44864,44866,44868,44870,44872,44874,44876,44878,44880,44882,44884,44886,44888,44890,44892,44894,44896,44898,44900,44902,44904,44906,44908,44910,44912,44914,44916,44918,44920,44922,44924,44926,44928,44930,44932,44934,44936,44938,44940,44942,44944,44946,44948,44950,44952,44954,44956,44958,44960,44962,44964,44966,44968,44970,44972,44974,44976,44978,44980,44982,44984,44986,44988,44990,44992,44994,44996,44998,45000,45002,45004,45006,45008,45010,45012,45014,45016,45018,45020,45022,45024,45026,45028,45030,45032,45034,45036,45038,45040,45042,45044,45046,45048,45050,45052,45054,45056,45058,45060,45062,45064,45066,45068,45070,45072,45074,45076,45078,45080,45082,45084,45086,45088,45090,45092,45094,45096,45098,45100,45102,45104,45106,45108,45110,45112,45114,45116,45118,45120,45122,45124,45126,45128,45130,45132,45134,45136,45138,45140,45142,45144,45146,45148,45150,45152,45154,45156,45158,45160,45162,45164,45166,45168,45170,45172,45174,45176,45178,45180,45182,45184,45186,45188,45190,45192,45194,45196,45198,45200,45202,45204,45206,45208,45210,45212,45214,45216,45218,45220,45222,45224,45226,45228,45230,45232,45234,45236,45238,45240,45242,45244,45246,45248,45250,45252,45254,45256,45258,45260,45262,45264,45266,45268,45270,45272,45274,45276,45278,45280,45282,45284,45286,45288,45290,45292,45294,45296,45298,45300,45302,45304,45306,45308,45310,45312,45314,45316,45318,45320,45322,45324,45326,45328,45330,45332,45334,45336,45338,45340,45342,45344,45346,45348,45350,45352,45354,45356,45358,45360,45362,45364,45366,45368,45370,45372,45374,45376,45378,45380,45382,45384,45386,45388,45390,45392,45394,45396,45398,45400,45402,45404,45406,45408,45410,45412,45414,45416,45418,45420,45422,45424,45426,45428,45430,45432,45434,45436,45438,45440,45442,45444,45446,45448,45450,45452,45454,45456,45458,45460,45462,45464,45466,45468,45470,45472,45474,45476,45478,45480,45482,45484,45486,45488,45490,45492,45494,45496,45498,45500,45502,45504,45506,45508,45510,45512,45514,45516,45518,45520,45522,45524,45526,45528,45530,45532,45534,45536,45538,45540,45542,45544,45546,45548,45550,45552,45554,45556,45558,45560,45562,45564,45566,45568,45570,45572,45574,45576,45578,45580,45582,45584,45586,45588,45590,45592,45594,45596,45598,45600,45602,45604,45606,45608,45610,45612,45614,45616,45618,45620,45622,45624,45626,45628,45630,45632,45634,45636,45638,45640,45642,45644,45646,45648,45650,45652,45654,45656,45658,45660,45662,45664,45666,45668,45670,45672,45674,45676,45678,45680,45682,45684,45686,45688,45690,45692,45694,45696,45698,45700,45702,45704,45706,45708,45710,45712,45714,45716,45718,45720,45722,45724,45726,45728,45730,45732,45734,45736,45738,45740,45742,45744,45746,45748,45750,45752,45754,45756,45758,45760,45762,45764,45766,45768,45770,45772,45774,45776,45778,45780,45782,45784,45786,45788,45790,45792,45794,45796,45798,45800,45802,45804,45806,45808,45810,45812,45814,45816,45818,45820,45822,45824,45826,45828,45830,45832,45834,45836,45838,45840,45842,45844,45846,45848,45850,45852,45854,45856,45858,45860,45862,45864,45866,45868,45870,45872,45874,45876,45878,45880,45882,45884,45886,45888,45890,45892,45894,45896,45898,45900,45902,45904,45906,45908,45910,45912,45914,45916,45918,45920,45922,45924,45926,45928,45930,45932,45934,45936,45938,45940,45942,45944,45946,45948,45950,45952,45954,45956,45958,45960,45962,45964,45966,45968,45970,45972,45974,45976,45978,45980,45982,45984,45986,45988,45990,45992,45994,45996,45998,46000,46002,46004,46006,46008,46010,46012,46014,46016,46018,46020,46022,46024,46026,46028,46030,46032,46034,46036,46038,46040,46042,46044,46046,46048,46050,46052,46054,46056,46058,46060,46062,46064,46066,46068,46070,46072,46074,46076,46078,46080,46082,46084,46086,46088,46090,46092,46094,46096,46098,46100,46102,46104,46106,46108,46110,46112,46114,46116,46118,46120,46122,46124,46126,46128,46130,46132,46134,46136,46138,46140,46142,46144,46146,46148,46150,46152,46154,46156,46158,46160,46162,46164,46166,46168,46170,46172,46174,46176,46178,46180,46182,46184,46186,46188,46190,46192,46194,46196,46198,46200,46202,46204,46206,46208,46210,46212,46214,46216,46218,46220,46222,46224,46226,46228,46230,46232,46234,46236,46238,46240,46242,46244,46246,46248,46250,46252,46254,46256,46258,46260,46262,46264,46266,46268,46270,46272,46274,46276,46278,46280,46282,46284,46286,46288,46290,46292,46294,46296,46298,46300,46302,46304,46306,46308,46310,46312,46314,46316,46318,46320,46322,46324,46326,46328,46330,46332,46334,46336,46338,46340,46342,46344,46346,46348,46350,46352,46354,46356,46358,46360,46362,46364,46366,46368,46370,46372,46374,46376,46378,46380,46382,46384,46386,46388,46390,46392,46394,46396,46398,46400,46402,46404,46406,46408,46410,46412,46414,46416,46418,46420,46422,46424,46426,46428,46430,46432,46434,46436,46438,46440,46442,46444,46446,46448,46450,46452,46454,46456,46458,46460,46462,46464,46466,46468,46470,46472,46474,46476,46478,46480,46482,46484,46486,46488,46490,46492,46494,46496,46498,46500,46502,46504,46506,46508,46510,46512,46514,46516,46518,46520,46522,46524,46526,46528,46530,46532,46534,46536,46538,46540,46542,46544,46546,46548,46550,46552,46554,46556,46558,46560,46562,46564,46566,46568,46570,46572,46574,46576,46578,46580,46582,46584,46586,46588,46590,46592,46594,46596,46598,46600,46602,46604,46606,46608,46610,46612,46614,46616,46618,46620,46622,46624,46626,46628,46630,46632,46634,46636,46638,46640,46642,46644,46646,46648,46650,46652,46654,46656,46658,46660,46662,46664,46666,46668,46670,46672,46674,46676,46678,46680,46682,46684,46686,46688,46690,46692,46694,46696,46698,46700,46702,46704,46706,46708,46710,46712,46714,46716,46718,46720,46722,46724,46726,46728,46730,46732,46734,46736,46738,46740,46742,46744,46746,46748,46750,46752,46754,46756,46758,46760,46762,46764,46766,46768,46770,46772,46774,46776,46778,46780,46782,46784,46786,46788,46790,46792,46794,46796,46798,46800,46802,46804,46806,46808,46810,46812,46814,46816,46818,46820,46822,46824,46826,46828,46830,46832,46834,46836,46838,46840,46842,46844,46846,46848,46850,46852,46854,46856,46858,46860,46862,46864,46866,46868,46870,46872,46874,46876,46878,46880,46882,46884,46886,46888,46890,46892,46894,46896,46898,46900,46902,46904,46906,46908,46910,46912,46914,46916,46918,46920,46922,46924,46926,46928,46930,46932,46934,46936,46938,46940,46942,46944,46946,46948,46950,46952,46954,46956,46958,46960,46962,46964,46966,46968,46970,46972,46974,46976,46978,46980,46982,46984,46986,46988,46990,46992,46994,46996,46998,47000,47002,47004,47006,47008,47010,47012,47014,47016,47018,47020,47022,47024,47026,47028,47030,47032,47034,47036,47038,47040,47042,47044,47046,47048,47050,47052,47054,47056,47058,47060,47062,47064,47066,47068,47070,47072,47074,47076,47078,47080,47082,47084,47086,47088,47090,47092,47094,47096,47098,47100,47102,47104,47106,47108,47110,47112,47114,47116,47118,47120,47122,47124,47126,47128,47130,47132,47134,47136,47138,47140,47142,47144,47146,47148,47150,47152,47154,47156,47158,47160,47162,47164,47166,47168,47170,47172,47174,47176,47178,47180,47182,47184,47186,47188,47190,47192,47194,47196,47198,47200,47202,47204,47206,47208,47210,47212,47214,47216,47218,47220,47222,47224,47226,47228,47230,47232,47234,47236,47238,47240,47242,47244,47246,47248,47250,47252,47254,47256,47258,47260,47262,47264,47266,47268,47270,47272,47274,47276,47278,47280,47282,47284,47286,47288,47290,47292,47294,47296,47298,47300,47302,47304,47306,47308,47310,47312,47314,47316,47318,47320,47322,47324,47326,47328,47330,47332,47334,47336,47338,47340,47342,47344,47346,47348,47350,47352,47354,47356,47358,47360,47362,47364,47366,47368,47370,47372,47374,47376,47378,47380,47382,47384,47386,47388,47390,47392,47394,47396,47398,47400,47402,47404,47406,47408,47410,47412,47414,47416,47418,47420,47422,47424,47426,47428,47430,47432,47434,47436,47438,47440,47442,47444,47446,47448,47450,47452,47454,47456,47458,47460,47462,47464,47466,47468,47470,47472,47474,47476,47478,47480,47482,47484,47486,47488,47490,47492,47494,47496,47498,47500,47502,47504,47506,47508,47510,47512,47514,47516,47518,47520,47522,47524,47526,47528,47530,47532,47534,47536,47538,47540,47542,47544,47546,47548,47550,47552,47554,47556,47558,47560,47562,47564,47566,47568,47570,47572,47574,47576,47578,47580,47582,47584,47586,47588,47590,47592,47594,47596,47598,47600,47602,47604,47606,47608,47610,47612,47614,47616,47618,47620,47622,47624,47626,47628,47630,47632,47634,47636,47638,47640,47642,47644,47646,47648,47650,47652,47654,47656,47658,47660,47662,47664,47666,47668,47670,47672,47674,47676,47678,47680,47682,47684,47686,47688,47690,47692,47694,47696,47698,47700,47702,47704,47706,47708,47710,47712,47714,47716,47718,47720,47722,47724,47726,47728,47730,47732,47734,47736,47738,47740,47742,47744,47746,47748,47750,47752,47754,47756,47758,47760,47762,47764,47766,47768,47770,47772,47774,47776,47778,47780,47782,47784,47786,47788,47790,47792,47794,47796,47798,47800,47802,47804,47806,47808,47810,47812,47814,47816,47818,47820,47822,47824,47826,47828,47830,47832,47834,47836,47838,47840,47842,47844,47846,47848,47850,47852,47854,47856,47858,47860,47862,47864,47866,47868,47870,47872,47874,47876,47878,47880,47882,47884,47886,47888,47890,47892,47894,47896,47898,47900,47902,47904,47906,47908,47910,47912,47914,47916,47918,47920,47922,47924,47926,47928,47930,47932,47934,47936,47938,47940,47942,47944,47946,47948,47950,47952,47954,47956,47958,47960,47962,47964,47966,47968,47970,47972,47974,47976,47978,47980,47982,47984,47986,47988,47990,47992,47994,47996,47998,48000,48002,48004,48006,48008,48010,48012,48014,48016,48018,48020,48022,48024,48026,48028,48030,48032,48034,48036,48038,48040,48042,48044,48046,48048,48050,48052,48054,48056,48058,48060,48062,48064,48066,48068,48070,48072,48074,48076,48078,48080,48082,48084,48086,48088,48090,48092,48094,48096,48098,48100,48102,48104,48106,48108,48110,48112,48114,48116,48118,48120,48122,48124,48126,48128,48130,48132,48134,48136,48138,48140,48142,48144,48146,48148,48150,48152,48154,48156,48158,48160,48162,48164,48166,48168,48170,48172,48174,48176,48178,48180,48182,48184,48186,48188,48190,48192,48194,48196,48198,48200,48202,48204,48206,48208,48210,48212,48214,48216,48218,48220,48222,48224,48226,48228,48230,48232,48234,48236,48238,48240,48242,48244,48246,48248,48250,48252,48254,48256,48258,48260,48262,48264,48266,48268,48270,48272,48274,48276,48278,48280,48282,48284,48286,48288,48290,48292,48294,48296,48298,48300,48302,48304,48306,48308,48310,48312,48314,48316,48318,48320,48322,48324,48326,48328,48330,48332,48334,48336,48338,48340,48342,48344,48346,48348,48350,48352,48354,48356,48358,48360,48362,48364,48366,48368,48370,48372,48374,48376,48378,48380,48382,48384,48386,48388,48390,48392,48394,48396,48398,48400,48402,48404,48406,48408,48410,48412,48414,48416,48418,48420,48422,48424,48426,48428,48430,48432,48434,48436,48438,48440,48442,48444,48446,48448,48450,48452,48454,48456,48458,48460,48462,48464,48466,48468,48470,48472,48474,48476,48478,48480,48482,48484,48486,48488,48490,48492,48494,48496,48498,48500,48502,48504,48506,48508,48510,48512,48514,48516,48518,48520,48522,48524,48526,48528,48530,48532,48534,48536,48538,48540,48542,48544,48546,48548,48550,48552,48554,48556,48558,48560,48562,48564,48566,48568,48570,48572,48574,48576,48578,48580,48582,48584,48586,48588,48590,48592,48594,48596,48598,48600,48602,48604,48606,48608,48610,48612,48614,48616,48618,48620,48622,48624,48626,48628,48630,48632,48634,48636,48638,48640,48642,48644,48646,48648,48650,48652,48654,48656,48658,48660,48662,48664,48666,48668,48670,48672,48674,48676,48678,48680,48682,48684,48686,48688,48690,48692,48694,48696,48698,48700,48702,48704,48706,48708,48710,48712,48714,48716,48718,48720,48722,48724,48726,48728,48730,48732,48734,48736,48738,48740,48742,48744,48746,48748,48750,48752,48754,48756,48758,48760,48762,48764,48766,48768,48770,48772,48774,48776,48778,48780,48782,48784,48786,48788,48790,48792,48794,48796,48798,48800,48802,48804,48806,48808,48810,48812,48814,48816,48818,48820,48822,48824,48826,48828,48830,48832,48834,48836,48838,48840,48842,48844,48846,48848,48850,48852,48854,48856,48858,48860,48862,48864,48866,48868,48870,48872,48874,48876,48878,48880,48882,48884,48886,48888,48890,48892,48894,48896,48898,48900,48902,48904,48906,48908,48910,48912,48914,48916,48918,48920,48922,48924,48926,48928,48930,48932,48934,48936,48938,48940,48942,48944,48946,48948,48950,48952,48954,48956,48958,48960,48962,48964,48966,48968,48970,48972,48974,48976,48978,48980,48982,48984,48986,48988,48990,48992,48994,48996,48998,49000,49002,49004,49006,49008,49010,49012,49014,49016,49018,49020,49022,49024,49026,49028,49030,49032,49034,49036,49038,49040,49042,49044,49046,49048,49050,49052,49054,49056,49058,49060,49062,49064,49066,49068,49070,49072,49074,49076,49078,49080,49082,49084,49086,49088,49090,49092,49094,49096,49098,49100,49102,49104,49106,49108,49110,49112,49114,49116,49118,49120,49122,49124,49126,49128,49130,49132,49134,49136,49138,49140,49142,49144,49146,49148,49150,49152,49154,49156,49158,49160,49162,49164,49166,49168,49170,49172,49174,49176,49178,49180,49182,49184,49186,49188,49190,49192,49194,49196,49198,49200,49202,49204,49206,49208,49210,49212,49214,49216,49218,49220,49222,49224,49226,49228,49230,49232,49234,49236,49238,49240,49242,49244,49246,49248,49250,49252,49254,49256,49258,49260,49262,49264,49266,49268,49270,49272,49274,49276,49278,49280,49282,49284,49286,49288,49290,49292,49294,49296,49298,49300,49302,49304,49306,49308,49310,49312,49314,49316,49318,49320,49322,49324,49326,49328,49330,49332,49334,49336,49338,49340,49342,49344,49346,49348,49350,49352,49354,49356,49358,49360,49362,49364,49366,49368,49370,49372,49374,49376,49378,49380,49382,49384,49386,49388,49390,49392,49394,49396,49398,49400,49402,49404,49406,49408,49410,49412,49414,49416,49418,49420,49422,49424,49426,49428,49430,49432,49434,49436,49438,49440,49442,49444,49446,49448,49450,49452,49454,49456,49458,49460,49462,49464,49466,49468,49470,49472,49474,49476,49478,49480,49482,49484,49486,49488,49490,49492,49494,49496,49498,49500,49502,49504,49506,49508,49510,49512,49514,49516,49518,49520,49522,49524,49526,49528,49530,49532,49534,49536,49538,49540,49542,49544,49546,49548,49550,49552,49554,49556,49558,49560,49562,49564,49566,49568,49570,49572,49574,49576,49578,49580,49582,49584,49586,49588,49590,49592,49594,49596,49598,49600,49602,49604,49606,49608,49610,49612,49614,49616,49618,49620,49622,49624,49626,49628,49630,49632,49634,49636,49638,49640,49642,49644,49646,49648,49650,49652,49654,49656,49658,49660,49662,49664,49666,49668,49670,49672,49674,49676,49678,49680,49682,49684,49686,49688,49690,49692,49694,49696,49698,49700,49702,49704,49706,49708,49710,49712,49714,49716,49718,49720,49722,49724,49726,49728,49730,49732,49734,49736,49738,49740,49742,49744,49746,49748,49750,49752,49754,49756,49758,49760,49762,49764,49766,49768,49770,49772,49774,49776,49778,49780,49782,49784,49786,49788,49790,49792,49794,49796,49798,49800,49802,49804,49806,49808,49810,49812,49814,49816,49818,49820,49822,49824,49826,49828,49830,49832,49834,49836,49838,49840,49842,49844,49846,49848,49850,49852,49854,49856,49858,49860,49862,49864,49866,49868,49870,49872,49874,49876,49878,49880,49882,49884,49886,49888,49890,49892,49894,49896,49898,49900,49902,49904,49906,49908,49910,49912,49914,49916,49918,49920,49922,49924,49926,49928,49930,49932,49934,49936,49938,49940,49942,49944,49946,49948,49950,49952,49954,49956,49958,49960,49962,49964,49966,49968,49970,49972,49974,49976,49978,49980,49982,49984,49986,49988,49990,49992,49994,49996,49999]
-# expected_output:[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000,10001,10002,10003,10004,10005,10006,10007,10008,10009,10010,10011,10012,10013,10014,10015,10016,10017,10018,10019,10020,10021,10022,10023,10024,10025,10026,10027,10028,10029,10030,10031,10032,10033,10034,10035,10036,10037,10038,10039,10040,10041,10042,10043,10044,10045,10046,10047,10048,10049,10050,10051,10052,10053,10054,10055,10056,10057,10058,10059,10060,10061,10062,10063,10064,10065,10066,10067,10068,10069,10070,10071,10072,10073,10074,10075,10076,10077,10078,10079,10080,10081,10082,10083,10084,10085,10086,10087,10088,10089,10090,10091,10092,10093,10094,10095,10096,10097,10098,10099,10100,10101,10102,10103,10104,10105,10106,10107,10108,10109,10110,10111,10112,10113,10114,10115,10116,10117,10118,10119,10120,10121,10122,10123,10124,10125,10126,10127,10128,10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139,10140,10141,10142,10143,10144,10145,10146,10147,10148,10149,10150,10151,10152,10153,10154,10155,10156,10157,10158,10159,10160,10161,10162,10163,10164,10165,10166,10167,10168,10169,10170,10171,10172,10173,10174,10175,10176,10177,10178,10179,10180,10181,10182,10183,10184,10185,10186,10187,10188,10189,10190,10191,10192,10193,10194,10195,10196,10197,10198,10199,10200,10201,10202,10203,10204,10205,10206,10207,10208,10209,10210,10211,10212,10213,10214,10215,10216,10217,10218,10219,10220,10221,10222,10223,10224,10225,10226,10227,10228,10229,10230,10231,10232,10233,10234,10235,10236,10237,10238,10239,10240,10241,10242,10243,10244,10245,10246,10247,10248,10249,10250,10251,10252,10253,10254,10255,10256,10257,10258,10259,10260,10261,10262,10263,10264,10265,10266,10267,10268,10269,10270,10271,10272,10273,10274,10275,10276,10277,10278,10279,10280,10281,10282,10283,10284,10285,10286,10287,10288,10289,10290,10291,10292,10293,10294,10295,10296,10297,10298,10299,10300,10301,10302,10303,10304,10305,10306,10307,10308,10309,10310,10311,10312,10313,10314,10315,10316,10317,10318,10319,10320,10321,10322,10323,10324,10325,10326,10327,10328,10329,10330,10331,10332,10333,10334,10335,10336,10337,10338,10339,10340,10341,10342,10343,10344,10345,10346,10347,10348,10349,10350,10351,10352,10353,10354,10355,10356,10357,10358,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,10369,10370,10371,10372,10373,10374,10375,10376,10377,10378,10379,10380,10381,10382,10383,10384,10385,10386,10387,10388,10389,10390,10391,10392,10393,10394,10395,10396,10397,10398,10399,10400,10401,10402,10403,10404,10405,10406,10407,10408,10409,10410,10411,10412,10413,10414,10415,10416,10417,10418,10419,10420,10421,10422,10423,10424,10425,10426,10427,10428,10429,10430,10431,10432,10433,10434,10435,10436,10437,10438,10439,10440,10441,10442,10443,10444,10445,10446,10447,10448,10449,10450,10451,10452,10453,10454,10455,10456,10457,10458,10459,10460,10461,10462,10463,10464,10465,10466,10467,10468,10469,10470,10471,10472,10473,10474,10475,10476,10477,10478,10479,10480,10481,10482,10483,10484,10485,10486,10487,10488,10489,10490,10491,10492,10493,10494,10495,10496,10497,10498,10499,10500,10501,10502,10503,10504,10505,10506,10507,10508,10509,10510,10511,10512,10513,10514,10515,10516,10517,10518,10519,10520,10521,10522,10523,10524,10525,10526,10527,10528,10529,10530,10531,10532,10533,10534,10535,10536,10537,10538,10539,10540,10541,10542,10543,10544,10545,10546,10547,10548,10549,10550,10551,10552,10553,10554,10555,10556,10557,10558,10559,10560,10561,10562,10563,10564,10565,10566,10567,10568,10569,10570,10571,10572,10573,10574,10575,10576,10577,10578,10579,10580,10581,10582,10583,10584,10585,10586,10587,10588,10589,10590,10591,10592,10593,10594,10595,10596,10597,10598,10599,10600,10601,10602,10603,10604,10605,10606,10607,10608,10609,10610,10611,10612,10613,10614,10615,10616,10617,10618,10619,10620,10621,10622,10623,10624,10625,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,10636,10637,10638,10639,10640,10641,10642,10643,10644,10645,10646,10647,10648,10649,10650,10651,10652,10653,10654,10655,10656,10657,10658,10659,10660,10661,10662,10663,10664,10665,10666,10667,10668,10669,10670,10671,10672,10673,10674,10675,10676,10677,10678,10679,10680,10681,10682,10683,10684,10685,10686,10687,10688,10689,10690,10691,10692,10693,10694,10695,10696,10697,10698,10699,10700,10701,10702,10703,10704,10705,10706,10707,10708,10709,10710,10711,10712,10713,10714,10715,10716,10717,10718,10719,10720,10721,10722,10723,10724,10725,10726,10727,10728,10729,10730,10731,10732,10733,10734,10735,10736,10737,10738,10739,10740,10741,10742,10743,10744,10745,10746,10747,10748,10749,10750,10751,10752,10753,10754,10755,10756,10757,10758,10759,10760,10761,10762,10763,10764,10765,10766,10767,10768,10769,10770,10771,10772,10773,10774,10775,10776,10777,10778,10779,10780,10781,10782,10783,10784,10785,10786,10787,10788,10789,10790,10791,10792,10793,10794,10795,10796,10797,10798,10799,10800,10801,10802,10803,10804,10805,10806,10807,10808,10809,10810,10811,10812,10813,10814,10815,10816,10817,10818,10819,10820,10821,10822,10823,10824,10825,10826,10827,10828,10829,10830,10831,10832,10833,10834,10835,10836,10837,10838,10839,10840,10841,10842,10843,10844,10845,10846,10847,10848,10849,10850,10851,10852,10853,10854,10855,10856,10857,10858,10859,10860,10861,10862,10863,10864,10865,10866,10867,10868,10869,10870,10871,10872,10873,10874,10875,10876,10877,10878,10879,10880,10881,10882,10883,10884,10885,10886,10887,10888,10889,10890,10891,10892,10893,10894,10895,10896,10897,10898,10899,10900,10901,10902,10903,10904,10905,10906,10907,10908,10909,10910,10911,10912,10913,10914,10915,10916,10917,10918,10919,10920,10921,10922,10923,10924,10925,10926,10927,10928,10929,10930,10931,10932,10933,10934,10935,10936,10937,10938,10939,10940,10941,10942,10943,10944,10945,10946,10947,10948,10949,10950,10951,10952,10953,10954,10955,10956,10957,10958,10959,10960,10961,10962,10963,10964,10965,10966,10967,10968,10969,10970,10971,10972,10973,10974,10975,10976,10977,10978,10979,10980,10981,10982,10983,10984,10985,10986,10987,10988,10989,10990,10991,10992,10993,10994,10995,10996,10997,10998,10999,11000,11001,11002,11003,11004,11005,11006,11007,11008,11009,11010,11011,11012,11013,11014,11015,11016,11017,11018,11019,11020,11021,11022,11023,11024,11025,11026,11027,11028,11029,11030,11031,11032,11033,11034,11035,11036,11037,11038,11039,11040,11041,11042,11043,11044,11045,11046,11047,11048,11049,11050,11051,11052,11053,11054,11055,11056,11057,11058,11059,11060,11061,11062,11063,11064,11065,11066,11067,11068,11069,11070,11071,11072,11073,11074,11075,11076,11077,11078,11079,11080,11081,11082,11083,11084,11085,11086,11087,11088,11089,11090,11091,11092,11093,11094,11095,11096,11097,11098,11099,11100,11101,11102,11103,11104,11105,11106,11107,11108,11109,11110,11111,11112,11113,11114,11115,11116,11117,11118,11119,11120,11121,11122,11123,11124,11125,11126,11127,11128,11129,11130,11131,11132,11133,11134,11135,11136,11137,11138,11139,11140,11141,11142,11143,11144,11145,11146,11147,11148,11149,11150,11151,11152,11153,11154,11155,11156,11157,11158,11159,11160,11161,11162,11163,11164,11165,11166,11167,11168,11169,11170,11171,11172,11173,11174,11175,11176,11177,11178,11179,11180,11181,11182,11183,11184,11185,11186,11187,11188,11189,11190,11191,11192,11193,11194,11195,11196,11197,11198,11199,11200,11201,11202,11203,11204,11205,11206,11207,11208,11209,11210,11211,11212,11213,11214,11215,11216,11217,11218,11219,11220,11221,11222,11223,11224,11225,11226,11227,11228,11229,11230,11231,11232,11233,11234,11235,11236,11237,11238,11239,11240,11241,11242,11243,11244,11245,11246,11247,11248,11249,11250,11251,11252,11253,11254,11255,11256,11257,11258,11259,11260,11261,11262,11263,11264,11265,11266,11267,11268,11269,11270,11271,11272,11273,11274,11275,11276,11277,11278,11279,11280,11281,11282,11283,11284,11285,11286,11287,11288,11289,11290,11291,11292,11293,11294,11295,11296,11297,11298,11299,11300,11301,11302,11303,11304,11305,11306,11307,11308,11309,11310,11311,11312,11313,11314,11315,11316,11317,11318,11319,11320,11321,11322,11323,11324,11325,11326,11327,11328,11329,11330,11331,11332,11333,11334,11335,11336,11337,11338,11339,11340,11341,11342,11343,11344,11345,11346,11347,11348,11349,11350,11351,11352,11353,11354,11355,11356,11357,11358,11359,11360,11361,11362,11363,11364,11365,11366,11367,11368,11369,11370,11371,11372,11373,11374,11375,11376,11377,11378,11379,11380,11381,11382,11383,11384,11385,11386,11387,11388,11389,11390,11391,11392,11393,11394,11395,11396,11397,11398,11399,11400,11401,11402,11403,11404,11405,11406,11407,11408,11409,11410,11411,11412,11413,11414,11415,11416,11417,11418,11419,11420,11421,11422,11423,11424,11425,11426,11427,11428,11429,11430,11431,11432,11433,11434,11435,11436,11437,11438,11439,11440,11441,11442,11443,11444,11445,11446,11447,11448,11449,11450,11451,11452,11453,11454,11455,11456,11457,11458,11459,11460,11461,11462,11463,11464,11465,11466,11467,11468,11469,11470,11471,11472,11473,11474,11475,11476,11477,11478,11479,11480,11481,11482,11483,11484,11485,11486,11487,11488,11489,11490,11491,11492,11493,11494,11495,11496,11497,11498,11499,11500,11501,11502,11503,11504,11505,11506,11507,11508,11509,11510,11511,11512,11513,11514,11515,11516,11517,11518,11519,11520,11521,11522,11523,11524,11525,11526,11527,11528,11529,11530,11531,11532,11533,11534,11535,11536,11537,11538,11539,11540,11541,11542,11543,11544,11545,11546,11547,11548,11549,11550,11551,11552,11553,11554,11555,11556,11557,11558,11559,11560,11561,11562,11563,11564,11565,11566,11567,11568,11569,11570,11571,11572,11573,11574,11575,11576,11577,11578,11579,11580,11581,11582,11583,11584,11585,11586,11587,11588,11589,11590,11591,11592,11593,11594,11595,11596,11597,11598,11599,11600,11601,11602,11603,11604,11605,11606,11607,11608,11609,11610,11611,11612,11613,11614,11615,11616,11617,11618,11619,11620,11621,11622,11623,11624,11625,11626,11627,11628,11629,11630,11631,11632,11633,11634,11635,11636,11637,11638,11639,11640,11641,11642,11643,11644,11645,11646,11647,11648,11649,11650,11651,11652,11653,11654,11655,11656,11657,11658,11659,11660,11661,11662,11663,11664,11665,11666,11667,11668,11669,11670,11671,11672,11673,11674,11675,11676,11677,11678,11679,11680,11681,11682,11683,11684,11685,11686,11687,11688,11689,11690,11691,11692,11693,11694,11695,11696,11697,11698,11699,11700,11701,11702,11703,11704,11705,11706,11707,11708,11709,11710,11711,11712,11713,11714,11715,11716,11717,11718,11719,11720,11721,11722,11723,11724,11725,11726,11727,11728,11729,11730,11731,11732,11733,11734,11735,11736,11737,11738,11739,11740,11741,11742,11743,11744,11745,11746,11747,11748,11749,11750,11751,11752,11753,11754,11755,11756,11757,11758,11759,11760,11761,11762,11763,11764,11765,11766,11767,11768,11769,11770,11771,11772,11773,11774,11775,11776,11777,11778,11779,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,11790,11791,11792,11793,11794,11795,11796,11797,11798,11799,11800,11801,11802,11803,11804,11805,11806,11807,11808,11809,11810,11811,11812,11813,11814,11815,11816,11817,11818,11819,11820,11821,11822,11823,11824,11825,11826,11827,11828,11829,11830,11831,11832,11833,11834,11835,11836,11837,11838,11839,11840,11841,11842,11843,11844,11845,11846,11847,11848,11849,11850,11851,11852,11853,11854,11855,11856,11857,11858,11859,11860,11861,11862,11863,11864,11865,11866,11867,11868,11869,11870,11871,11872,11873,11874,11875,11876,11877,11878,11879,11880,11881,11882,11883,11884,11885,11886,11887,11888,11889,11890,11891,11892,11893,11894,11895,11896,11897,11898,11899,11900,11901,11902,11903,11904,11905,11906,11907,11908,11909,11910,11911,11912,11913,11914,11915,11916,11917,11918,11919,11920,11921,11922,11923,11924,11925,11926,11927,11928,11929,11930,11931,11932,11933,11934,11935,11936,11937,11938,11939,11940,11941,11942,11943,11944,11945,11946,11947,11948,11949,11950,11951,11952,11953,11954,11955,11956,11957,11958,11959,11960,11961,11962,11963,11964,11965,11966,11967,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,11994,11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12007,12008,12009,12010,12011,12012,12013,12014,12015,12016,12017,12018,12019,12020,12021,12022,12023,12024,12025,12026,12027,12028,12029,12030,12031,12032,12033,12034,12035,12036,12037,12038,12039,12040,12041,12042,12043,12044,12045,12046,12047,12048,12049,12050,12051,12052,12053,12054,12055,12056,12057,12058,12059,12060,12061,12062,12063,12064,12065,12066,12067,12068,12069,12070,12071,12072,12073,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,12087,12088,12089,12090,12091,12092,12093,12094,12095,12096,12097,12098,12099,12100,12101,12102,12103,12104,12105,12106,12107,12108,12109,12110,12111,12112,12113,12114,12115,12116,12117,12118,12119,12120,12121,12122,12123,12124,12125,12126,12127,12128,12129,12130,12131,12132,12133,12134,12135,12136,12137,12138,12139,12140,12141,12142,12143,12144,12145,12146,12147,12148,12149,12150,12151,12152,12153,12154,12155,12156,12157,12158,12159,12160,12161,12162,12163,12164,12165,12166,12167,12168,12169,12170,12171,12172,12173,12174,12175,12176,12177,12178,12179,12180,12181,12182,12183,12184,12185,12186,12187,12188,12189,12190,12191,12192,12193,12194,12195,12196,12197,12198,12199,12200,12201,12202,12203,12204,12205,12206,12207,12208,12209,12210,12211,12212,12213,12214,12215,12216,12217,12218,12219,12220,12221,12222,12223,12224,12225,12226,12227,12228,12229,12230,12231,12232,12233,12234,12235,12236,12237,12238,12239,12240,12241,12242,12243,12244,12245,12246,12247,12248,12249,12250,12251,12252,12253,12254,12255,12256,12257,12258,12259,12260,12261,12262,12263,12264,12265,12266,12267,12268,12269,12270,12271,12272,12273,12274,12275,12276,12277,12278,12279,12280,12281,12282,12283,12284,12285,12286,12287,12288,12289,12290,12291,12292,12293,12294,12295,12296,12297,12298,12299,12300,12301,12302,12303,12304,12305,12306,12307,12308,12309,12310,12311,12312,12313,12314,12315,12316,12317,12318,12319,12320,12321,12322,12323,12324,12325,12326,12327,12328,12329,12330,12331,12332,12333,12334,12335,12336,12337,12338,12339,12340,12341,12342,12343,12344,12345,12346,12347,12348,12349,12350,12351,12352,12353,12354,12355,12356,12357,12358,12359,12360,12361,12362,12363,12364,12365,12366,12367,12368,12369,12370,12371,12372,12373,12374,12375,12376,12377,12378,12379,12380,12381,12382,12383,12384,12385,12386,12387,12388,12389,12390,12391,12392,12393,12394,12395,12396,12397,12398,12399,12400,12401,12402,12403,12404,12405,12406,12407,12408,12409,12410,12411,12412,12413,12414,12415,12416,12417,12418,12419,12420,12421,12422,12423,12424,12425,12426,12427,12428,12429,12430,12431,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,12442,12443,12444,12445,12446,12447,12448,12449,12450,12451,12452,12453,12454,12455,12456,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,12471,12472,12473,12474,12475,12476,12477,12478,12479,12480,12481,12482,12483,12484,12485,12486,12487,12488,12489,12490,12491,12492,12493,12494,12495,12496,12497,12498,12499,12500,12501,12502,12503,12504,12505,12506,12507,12508,12509,12510,12511,12512,12513,12514,12515,12516,12517,12518,12519,12520,12521,12522,12523,12524,12525,12526,12527,12528,12529,12530,12531,12532,12533,12534,12535,12536,12537,12538,12539,12540,12541,12542,12543,12544,12545,12546,12547,12548,12549,12550,12551,12552,12553,12554,12555,12556,12557,12558,12559,12560,12561,12562,12563,12564,12565,12566,12567,12568,12569,12570,12571,12572,12573,12574,12575,12576,12577,12578,12579,12580,12581,12582,12583,12584,12585,12586,12587,12588,12589,12590,12591,12592,12593,12594,12595,12596,12597,12598,12599,12600,12601,12602,12603,12604,12605,12606,12607,12608,12609,12610,12611,12612,12613,12614,12615,12616,12617,12618,12619,12620,12621,12622,12623,12624,12625,12626,12627,12628,12629,12630,12631,12632,12633,12634,12635,12636,12637,12638,12639,12640,12641,12642,12643,12644,12645,12646,12647,12648,12649,12650,12651,12652,12653,12654,12655,12656,12657,12658,12659,12660,12661,12662,12663,12664,12665,12666,12667,12668,12669,12670,12671,12672,12673,12674,12675,12676,12677,12678,12679,12680,12681,12682,12683,12684,12685,12686,12687,12688,12689,12690,12691,12692,12693,12694,12695,12696,12697,12698,12699,12700,12701,12702,12703,12704,12705,12706,12707,12708,12709,12710,12711,12712,12713,12714,12715,12716,12717,12718,12719,12720,12721,12722,12723,12724,12725,12726,12727,12728,12729,12730,12731,12732,12733,12734,12735,12736,12737,12738,12739,12740,12741,12742,12743,12744,12745,12746,12747,12748,12749,12750,12751,12752,12753,12754,12755,12756,12757,12758,12759,12760,12761,12762,12763,12764,12765,12766,12767,12768,12769,12770,12771,12772,12773,12774,12775,12776,12777,12778,12779,12780,12781,12782,12783,12784,12785,12786,12787,12788,12789,12790,12791,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,12803,12804,12805,12806,12807,12808,12809,12810,12811,12812,12813,12814,12815,12816,12817,12818,12819,12820,12821,12822,12823,12824,12825,12826,12827,12828,12829,12830,12831,12832,12833,12834,12835,12836,12837,12838,12839,12840,12841,12842,12843,12844,12845,12846,12847,12848,12849,12850,12851,12852,12853,12854,12855,12856,12857,12858,12859,12860,12861,12862,12863,12864,12865,12866,12867,12868,12869,12870,12871,12872,12873,12874,12875,12876,12877,12878,12879,12880,12881,12882,12883,12884,12885,12886,12887,12888,12889,12890,12891,12892,12893,12894,12895,12896,12897,12898,12899,12900,12901,12902,12903,12904,12905,12906,12907,12908,12909,12910,12911,12912,12913,12914,12915,12916,12917,12918,12919,12920,12921,12922,12923,12924,12925,12926,12927,12928,12929,12930,12931,12932,12933,12934,12935,12936,12937,12938,12939,12940,12941,12942,12943,12944,12945,12946,12947,12948,12949,12950,12951,12952,12953,12954,12955,12956,12957,12958,12959,12960,12961,12962,12963,12964,12965,12966,12967,12968,12969,12970,12971,12972,12973,12974,12975,12976,12977,12978,12979,12980,12981,12982,12983,12984,12985,12986,12987,12988,12989,12990,12991,12992,12993,12994,12995,12996,12997,12998,12999,13000,13001,13002,13003,13004,13005,13006,13007,13008,13009,13010,13011,13012,13013,13014,13015,13016,13017,13018,13019,13020,13021,13022,13023,13024,13025,13026,13027,13028,13029,13030,13031,13032,13033,13034,13035,13036,13037,13038,13039,13040,13041,13042,13043,13044,13045,13046,13047,13048,13049,13050,13051,13052,13053,13054,13055,13056,13057,13058,13059,13060,13061,13062,13063,13064,13065,13066,13067,13068,13069,13070,13071,13072,13073,13074,13075,13076,13077,13078,13079,13080,13081,13082,13083,13084,13085,13086,13087,13088,13089,13090,13091,13092,13093,13094,13095,13096,13097,13098,13099,13100,13101,13102,13103,13104,13105,13106,13107,13108,13109,13110,13111,13112,13113,13114,13115,13116,13117,13118,13119,13120,13121,13122,13123,13124,13125,13126,13127,13128,13129,13130,13131,13132,13133,13134,13135,13136,13137,13138,13139,13140,13141,13142,13143,13144,13145,13146,13147,13148,13149,13150,13151,13152,13153,13154,13155,13156,13157,13158,13159,13160,13161,13162,13163,13164,13165,13166,13167,13168,13169,13170,13171,13172,13173,13174,13175,13176,13177,13178,13179,13180,13181,13182,13183,13184,13185,13186,13187,13188,13189,13190,13191,13192,13193,13194,13195,13196,13197,13198,13199,13200,13201,13202,13203,13204,13205,13206,13207,13208,13209,13210,13211,13212,13213,13214,13215,13216,13217,13218,13219,13220,13221,13222,13223,13224,13225,13226,13227,13228,13229,13230,13231,13232,13233,13234,13235,13236,13237,13238,13239,13240,13241,13242,13243,13244,13245,13246,13247,13248,13249,13250,13251,13252,13253,13254,13255,13256,13257,13258,13259,13260,13261,13262,13263,13264,13265,13266,13267,13268,13269,13270,13271,13272,13273,13274,13275,13276,13277,13278,13279,13280,13281,13282,13283,13284,13285,13286,13287,13288,13289,13290,13291,13292,13293,13294,13295,13296,13297,13298,13299,13300,13301,13302,13303,13304,13305,13306,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,13317,13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330,13331,13332,13333,13334,13335,13336,13337,13338,13339,13340,13341,13342,13343,13344,13345,13346,13347,13348,13349,13350,13351,13352,13353,13354,13355,13356,13357,13358,13359,13360,13361,13362,13363,13364,13365,13366,13367,13368,13369,13370,13371,13372,13373,13374,13375,13376,13377,13378,13379,13380,13381,13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,13403,13404,13405,13406,13407,13408,13409,13410,13411,13412,13413,13414,13415,13416,13417,13418,13419,13420,13421,13422,13423,13424,13425,13426,13427,13428,13429,13430,13431,13432,13433,13434,13435,13436,13437,13438,13439,13440,13441,13442,13443,13444,13445,13446,13447,13448,13449,13450,13451,13452,13453,13454,13455,13456,13457,13458,13459,13460,13461,13462,13463,13464,13465,13466,13467,13468,13469,13470,13471,13472,13473,13474,13475,13476,13477,13478,13479,13480,13481,13482,13483,13484,13485,13486,13487,13488,13489,13490,13491,13492,13493,13494,13495,13496,13497,13498,13499,13500,13501,13502,13503,13504,13505,13506,13507,13508,13509,13510,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520,13521,13522,13523,13524,13525,13526,13527,13528,13529,13530,13531,13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,13542,13543,13544,13545,13546,13547,13548,13549,13550,13551,13552,13553,13554,13555,13556,13557,13558,13559,13560,13561,13562,13563,13564,13565,13566,13567,13568,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,13579,13580,13581,13582,13583,13584,13585,13586,13587,13588,13589,13590,13591,13592,13593,13594,13595,13596,13597,13598,13599,13600,13601,13602,13603,13604,13605,13606,13607,13608,13609,13610,13611,13612,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13627,13628,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13639,13640,13641,13642,13643,13644,13645,13646,13647,13648,13649,13650,13651,13652,13653,13654,13655,13656,13657,13658,13659,13660,13661,13662,13663,13664,13665,13666,13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13708,13709,13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13728,13729,13730,13731,13732,13733,13734,13735,13736,13737,13738,13739,13740,13741,13742,13743,13744,13745,13746,13747,13748,13749,13750,13751,13752,13753,13754,13755,13756,13757,13758,13759,13760,13761,13762,13763,13764,13765,13766,13767,13768,13769,13770,13771,13772,13773,13774,13775,13776,13777,13778,13779,13780,13781,13782,13783,13784,13785,13786,13787,13788,13789,13790,13791,13792,13793,13794,13795,13796,13797,13798,13799,13800,13801,13802,13803,13804,13805,13806,13807,13808,13809,13810,13811,13812,13813,13814,13815,13816,13817,13818,13819,13820,13821,13822,13823,13824,13825,13826,13827,13828,13829,13830,13831,13832,13833,13834,13835,13836,13837,13838,13839,13840,13841,13842,13843,13844,13845,13846,13847,13848,13849,13850,13851,13852,13853,13854,13855,13856,13857,13858,13859,13860,13861,13862,13863,13864,13865,13866,13867,13868,13869,13870,13871,13872,13873,13874,13875,13876,13877,13878,13879,13880,13881,13882,13883,13884,13885,13886,13887,13888,13889,13890,13891,13892,13893,13894,13895,13896,13897,13898,13899,13900,13901,13902,13903,13904,13905,13906,13907,13908,13909,13910,13911,13912,13913,13914,13915,13916,13917,13918,13919,13920,13921,13922,13923,13924,13925,13926,13927,13928,13929,13930,13931,13932,13933,13934,13935,13936,13937,13938,13939,13940,13941,13942,13943,13944,13945,13946,13947,13948,13949,13950,13951,13952,13953,13954,13955,13956,13957,13958,13959,13960,13961,13962,13963,13964,13965,13966,13967,13968,13969,13970,13971,13972,13973,13974,13975,13976,13977,13978,13979,13980,13981,13982,13983,13984,13985,13986,13987,13988,13989,13990,13991,13992,13993,13994,13995,13996,13997,13998,13999,14000,14001,14002,14003,14004,14005,14006,14007,14008,14009,14010,14011,14012,14013,14014,14015,14016,14017,14018,14019,14020,14021,14022,14023,14024,14025,14026,14027,14028,14029,14030,14031,14032,14033,14034,14035,14036,14037,14038,14039,14040,14041,14042,14043,14044,14045,14046,14047,14048,14049,14050,14051,14052,14053,14054,14055,14056,14057,14058,14059,14060,14061,14062,14063,14064,14065,14066,14067,14068,14069,14070,14071,14072,14073,14074,14075,14076,14077,14078,14079,14080,14081,14082,14083,14084,14085,14086,14087,14088,14089,14090,14091,14092,14093,14094,14095,14096,14097,14098,14099,14100,14101,14102,14103,14104,14105,14106,14107,14108,14109,14110,14111,14112,14113,14114,14115,14116,14117,14118,14119,14120,14121,14122,14123,14124,14125,14126,14127,14128,14129,14130,14131,14132,14133,14134,14135,14136,14137,14138,14139,14140,14141,14142,14143,14144,14145,14146,14147,14148,14149,14150,14151,14152,14153,14154,14155,14156,14157,14158,14159,14160,14161,14162,14163,14164,14165,14166,14167,14168,14169,14170,14171,14172,14173,14174,14175,14176,14177,14178,14179,14180,14181,14182,14183,14184,14185,14186,14187,14188,14189,14190,14191,14192,14193,14194,14195,14196,14197,14198,14199,14200,14201,14202,14203,14204,14205,14206,14207,14208,14209,14210,14211,14212,14213,14214,14215,14216,14217,14218,14219,14220,14221,14222,14223,14224,14225,14226,14227,14228,14229,14230,14231,14232,14233,14234,14235,14236,14237,14238,14239,14240,14241,14242,14243,14244,14245,14246,14247,14248,14249,14250,14251,14252,14253,14254,14255,14256,14257,14258,14259,14260,14261,14262,14263,14264,14265,14266,14267,14268,14269,14270,14271,14272,14273,14274,14275,14276,14277,14278,14279,14280,14281,14282,14283,14284,14285,14286,14287,14288,14289,14290,14291,14292,14293,14294,14295,14296,14297,14298,14299,14300,14301,14302,14303,14304,14305,14306,14307,14308,14309,14310,14311,14312,14313,14314,14315,14316,14317,14318,14319,14320,14321,14322,14323,14324,14325,14326,14327,14328,14329,14330,14331,14332,14333,14334,14335,14336,14337,14338,14339,14340,14341,14342,14343,14344,14345,14346,14347,14348,14349,14350,14351,14352,14353,14354,14355,14356,14357,14358,14359,14360,14361,14362,14363,14364,14365,14366,14367,14368,14369,14370,14371,14372,14373,14374,14375,14376,14377,14378,14379,14380,14381,14382,14383,14384,14385,14386,14387,14388,14389,14390,14391,14392,14393,14394,14395,14396,14397,14398,14399,14400,14401,14402,14403,14404,14405,14406,14407,14408,14409,14410,14411,14412,14413,14414,14415,14416,14417,14418,14419,14420,14421,14422,14423,14424,14425,14426,14427,14428,14429,14430,14431,14432,14433,14434,14435,14436,14437,14438,14439,14440,14441,14442,14443,14444,14445,14446,14447,14448,14449,14450,14451,14452,14453,14454,14455,14456,14457,14458,14459,14460,14461,14462,14463,14464,14465,14466,14467,14468,14469,14470,14471,14472,14473,14474,14475,14476,14477,14478,14479,14480,14481,14482,14483,14484,14485,14486,14487,14488,14489,14490,14491,14492,14493,14494,14495,14496,14497,14498,14499,14500,14501,14502,14503,14504,14505,14506,14507,14508,14509,14510,14511,14512,14513,14514,14515,14516,14517,14518,14519,14520,14521,14522,14523,14524,14525,14526,14527,14528,14529,14530,14531,14532,14533,14534,14535,14536,14537,14538,14539,14540,14541,14542,14543,14544,14545,14546,14547,14548,14549,14550,14551,14552,14553,14554,14555,14556,14557,14558,14559,14560,14561,14562,14563,14564,14565,14566,14567,14568,14569,14570,14571,14572,14573,14574,14575,14576,14577,14578,14579,14580,14581,14582,14583,14584,14585,14586,14587,14588,14589,14590,14591,14592,14593,14594,14595,14596,14597,14598,14599,14600,14601,14602,14603,14604,14605,14606,14607,14608,14609,14610,14611,14612,14613,14614,14615,14616,14617,14618,14619,14620,14621,14622,14623,14624,14625,14626,14627,14628,14629,14630,14631,14632,14633,14634,14635,14636,14637,14638,14639,14640,14641,14642,14643,14644,14645,14646,14647,14648,14649,14650,14651,14652,14653,14654,14655,14656,14657,14658,14659,14660,14661,14662,14663,14664,14665,14666,14667,14668,14669,14670,14671,14672,14673,14674,14675,14676,14677,14678,14679,14680,14681,14682,14683,14684,14685,14686,14687,14688,14689,14690,14691,14692,14693,14694,14695,14696,14697,14698,14699,14700,14701,14702,14703,14704,14705,14706,14707,14708,14709,14710,14711,14712,14713,14714,14715,14716,14717,14718,14719,14720,14721,14722,14723,14724,14725,14726,14727,14728,14729,14730,14731,14732,14733,14734,14735,14736,14737,14738,14739,14740,14741,14742,14743,14744,14745,14746,14747,14748,14749,14750,14751,14752,14753,14754,14755,14756,14757,14758,14759,14760,14761,14762,14763,14764,14765,14766,14767,14768,14769,14770,14771,14772,14773,14774,14775,14776,14777,14778,14779,14780,14781,14782,14783,14784,14785,14786,14787,14788,14789,14790,14791,14792,14793,14794,14795,14796,14797,14798,14799,14800,14801,14802,14803,14804,14805,14806,14807,14808,14809,14810,14811,14812,14813,14814,14815,14816,14817,14818,14819,14820,14821,14822,14823,14824,14825,14826,14827,14828,14829,14830,14831,14832,14833,14834,14835,14836,14837,14838,14839,14840,14841,14842,14843,14844,14845,14846,14847,14848,14849,14850,14851,14852,14853,14854,14855,14856,14857,14858,14859,14860,14861,14862,14863,14864,14865,14866,14867,14868,14869,14870,14871,14872,14873,14874,14875,14876,14877,14878,14879,14880,14881,14882,14883,14884,14885,14886,14887,14888,14889,14890,14891,14892,14893,14894,14895,14896,14897,14898,14899,14900,14901,14902,14903,14904,14905,14906,14907,14908,14909,14910,14911,14912,14913,14914,14915,14916,14917,14918,14919,14920,14921,14922,14923,14924,14925,14926,14927,14928,14929,14930,14931,14932,14933,14934,14935,14936,14937,14938,14939,14940,14941,14942,14943,14944,14945,14946,14947,14948,14949,14950,14951,14952,14953,14954,14955,14956,14957,14958,14959,14960,14961,14962,14963,14964,14965,14966,14967,14968,14969,14970,14971,14972,14973,14974,14975,14976,14977,14978,14979,14980,14981,14982,14983,14984,14985,14986,14987,14988,14989,14990,14991,14992,14993,14994,14995,14996,14997,14998,14999,15000,15001,15002,15003,15004,15005,15006,15007,15008,15009,15010,15011,15012,15013,15014,15015,15016,15017,15018,15019,15020,15021,15022,15023,15024,15025,15026,15027,15028,15029,15030,15031,15032,15033,15034,15035,15036,15037,15038,15039,15040,15041,15042,15043,15044,15045,15046,15047,15048,15049,15050,15051,15052,15053,15054,15055,15056,15057,15058,15059,15060,15061,15062,15063,15064,15065,15066,15067,15068,15069,15070,15071,15072,15073,15074,15075,15076,15077,15078,15079,15080,15081,15082,15083,15084,15085,15086,15087,15088,15089,15090,15091,15092,15093,15094,15095,15096,15097,15098,15099,15100,15101,15102,15103,15104,15105,15106,15107,15108,15109,15110,15111,15112,15113,15114,15115,15116,15117,15118,15119,15120,15121,15122,15123,15124,15125,15126,15127,15128,15129,15130,15131,15132,15133,15134,15135,15136,15137,15138,15139,15140,15141,15142,15143,15144,15145,15146,15147,15148,15149,15150,15151,15152,15153,15154,15155,15156,15157,15158,15159,15160,15161,15162,15163,15164,15165,15166,15167,15168,15169,15170,15171,15172,15173,15174,15175,15176,15177,15178,15179,15180,15181,15182,15183,15184,15185,15186,15187,15188,15189,15190,15191,15192,15193,15194,15195,15196,15197,15198,15199,15200,15201,15202,15203,15204,15205,15206,15207,15208,15209,15210,15211,15212,15213,15214,15215,15216,15217,15218,15219,15220,15221,15222,15223,15224,15225,15226,15227,15228,15229,15230,15231,15232,15233,15234,15235,15236,15237,15238,15239,15240,15241,15242,15243,15244,15245,15246,15247,15248,15249,15250,15251,15252,15253,15254,15255,15256,15257,15258,15259,15260,15261,15262,15263,15264,15265,15266,15267,15268,15269,15270,15271,15272,15273,15274,15275,15276,15277,15278,15279,15280,15281,15282,15283,15284,15285,15286,15287,15288,15289,15290,15291,15292,15293,15294,15295,15296,15297,15298,15299,15300,15301,15302,15303,15304,15305,15306,15307,15308,15309,15310,15311,15312,15313,15314,15315,15316,15317,15318,15319,15320,15321,15322,15323,15324,15325,15326,15327,15328,15329,15330,15331,15332,15333,15334,15335,15336,15337,15338,15339,15340,15341,15342,15343,15344,15345,15346,15347,15348,15349,15350,15351,15352,15353,15354,15355,15356,15357,15358,15359,15360,15361,15362,15363,15364,15365,15366,15367,15368,15369,15370,15371,15372,15373,15374,15375,15376,15377,15378,15379,15380,15381,15382,15383,15384,15385,15386,15387,15388,15389,15390,15391,15392,15393,15394,15395,15396,15397,15398,15399,15400,15401,15402,15403,15404,15405,15406,15407,15408,15409,15410,15411,15412,15413,15414,15415,15416,15417,15418,15419,15420,15421,15422,15423,15424,15425,15426,15427,15428,15429,15430,15431,15432,15433,15434,15435,15436,15437,15438,15439,15440,15441,15442,15443,15444,15445,15446,15447,15448,15449,15450,15451,15452,15453,15454,15455,15456,15457,15458,15459,15460,15461,15462,15463,15464,15465,15466,15467,15468,15469,15470,15471,15472,15473,15474,15475,15476,15477,15478,15479,15480,15481,15482,15483,15484,15485,15486,15487,15488,15489,15490,15491,15492,15493,15494,15495,15496,15497,15498,15499,15500,15501,15502,15503,15504,15505,15506,15507,15508,15509,15510,15511,15512,15513,15514,15515,15516,15517,15518,15519,15520,15521,15522,15523,15524,15525,15526,15527,15528,15529,15530,15531,15532,15533,15534,15535,15536,15537,15538,15539,15540,15541,15542,15543,15544,15545,15546,15547,15548,15549,15550,15551,15552,15553,15554,15555,15556,15557,15558,15559,15560,15561,15562,15563,15564,15565,15566,15567,15568,15569,15570,15571,15572,15573,15574,15575,15576,15577,15578,15579,15580,15581,15582,15583,15584,15585,15586,15587,15588,15589,15590,15591,15592,15593,15594,15595,15596,15597,15598,15599,15600,15601,15602,15603,15604,15605,15606,15607,15608,15609,15610,15611,15612,15613,15614,15615,15616,15617,15618,15619,15620,15621,15622,15623,15624,15625,15626,15627,15628,15629,15630,15631,15632,15633,15634,15635,15636,15637,15638,15639,15640,15641,15642,15643,15644,15645,15646,15647,15648,15649,15650,15651,15652,15653,15654,15655,15656,15657,15658,15659,15660,15661,15662,15663,15664,15665,15666,15667,15668,15669,15670,15671,15672,15673,15674,15675,15676,15677,15678,15679,15680,15681,15682,15683,15684,15685,15686,15687,15688,15689,15690,15691,15692,15693,15694,15695,15696,15697,15698,15699,15700,15701,15702,15703,15704,15705,15706,15707,15708,15709,15710,15711,15712,15713,15714,15715,15716,15717,15718,15719,15720,15721,15722,15723,15724,15725,15726,15727,15728,15729,15730,15731,15732,15733,15734,15735,15736,15737,15738,15739,15740,15741,15742,15743,15744,15745,15746,15747,15748,15749,15750,15751,15752,15753,15754,15755,15756,15757,15758,15759,15760,15761,15762,15763,15764,15765,15766,15767,15768,15769,15770,15771,15772,15773,15774,15775,15776,15777,15778,15779,15780,15781,15782,15783,15784,15785,15786,15787,15788,15789,15790,15791,15792,15793,15794,15795,15796,15797,15798,15799,15800,15801,15802,15803,15804,15805,15806,15807,15808,15809,15810,15811,15812,15813,15814,15815,15816,15817,15818,15819,15820,15821,15822,15823,15824,15825,15826,15827,15828,15829,15830,15831,15832,15833,15834,15835,15836,15837,15838,15839,15840,15841,15842,15843,15844,15845,15846,15847,15848,15849,15850,15851,15852,15853,15854,15855,15856,15857,15858,15859,15860,15861,15862,15863,15864,15865,15866,15867,15868,15869,15870,15871,15872,15873,15874,15875,15876,15877,15878,15879,15880,15881,15882,15883,15884,15885,15886,15887,15888,15889,15890,15891,15892,15893,15894,15895,15896,15897,15898,15899,15900,15901,15902,15903,15904,15905,15906,15907,15908,15909,15910,15911,15912,15913,15914,15915,15916,15917,15918,15919,15920,15921,15922,15923,15924,15925,15926,15927,15928,15929,15930,15931,15932,15933,15934,15935,15936,15937,15938,15939,15940,15941,15942,15943,15944,15945,15946,15947,15948,15949,15950,15951,15952,15953,15954,15955,15956,15957,15958,15959,15960,15961,15962,15963,15964,15965,15966,15967,15968,15969,15970,15971,15972,15973,15974,15975,15976,15977,15978,15979,15980,15981,15982,15983,15984,15985,15986,15987,15988,15989,15990,15991,15992,15993,15994,15995,15996,15997,15998,15999,16000,16001,16002,16003,16004,16005,16006,16007,16008,16009,16010,16011,16012,16013,16014,16015,16016,16017,16018,16019,16020,16021,16022,16023,16024,16025,16026,16027,16028,16029,16030,16031,16032,16033,16034,16035,16036,16037,16038,16039,16040,16041,16042,16043,16044,16045,16046,16047,16048,16049,16050,16051,16052,16053,16054,16055,16056,16057,16058,16059,16060,16061,16062,16063,16064,16065,16066,16067,16068,16069,16070,16071,16072,16073,16074,16075,16076,16077,16078,16079,16080,16081,16082,16083,16084,16085,16086,16087,16088,16089,16090,16091,16092,16093,16094,16095,16096,16097,16098,16099,16100,16101,16102,16103,16104,16105,16106,16107,16108,16109,16110,16111,16112,16113,16114,16115,16116,16117,16118,16119,16120,16121,16122,16123,16124,16125,16126,16127,16128,16129,16130,16131,16132,16133,16134,16135,16136,16137,16138,16139,16140,16141,16142,16143,16144,16145,16146,16147,16148,16149,16150,16151,16152,16153,16154,16155,16156,16157,16158,16159,16160,16161,16162,16163,16164,16165,16166,16167,16168,16169,16170,16171,16172,16173,16174,16175,16176,16177,16178,16179,16180,16181,16182,16183,16184,16185,16186,16187,16188,16189,16190,16191,16192,16193,16194,16195,16196,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,16215,16216,16217,16218,16219,16220,16221,16222,16223,16224,16225,16226,16227,16228,16229,16230,16231,16232,16233,16234,16235,16236,16237,16238,16239,16240,16241,16242,16243,16244,16245,16246,16247,16248,16249,16250,16251,16252,16253,16254,16255,16256,16257,16258,16259,16260,16261,16262,16263,16264,16265,16266,16267,16268,16269,16270,16271,16272,16273,16274,16275,16276,16277,16278,16279,16280,16281,16282,16283,16284,16285,16286,16287,16288,16289,16290,16291,16292,16293,16294,16295,16296,16297,16298,16299,16300,16301,16302,16303,16304,16305,16306,16307,16308,16309,16310,16311,16312,16313,16314,16315,16316,16317,16318,16319,16320,16321,16322,16323,16324,16325,16326,16327,16328,16329,16330,16331,16332,16333,16334,16335,16336,16337,16338,16339,16340,16341,16342,16343,16344,16345,16346,16347,16348,16349,16350,16351,16352,16353,16354,16355,16356,16357,16358,16359,16360,16361,16362,16363,16364,16365,16366,16367,16368,16369,16370,16371,16372,16373,16374,16375,16376,16377,16378,16379,16380,16381,16382,16383,16384,16385,16386,16387,16388,16389,16390,16391,16392,16393,16394,16395,16396,16397,16398,16399,16400,16401,16402,16403,16404,16405,16406,16407,16408,16409,16410,16411,16412,16413,16414,16415,16416,16417,16418,16419,16420,16421,16422,16423,16424,16425,16426,16427,16428,16429,16430,16431,16432,16433,16434,16435,16436,16437,16438,16439,16440,16441,16442,16443,16444,16445,16446,16447,16448,16449,16450,16451,16452,16453,16454,16455,16456,16457,16458,16459,16460,16461,16462,16463,16464,16465,16466,16467,16468,16469,16470,16471,16472,16473,16474,16475,16476,16477,16478,16479,16480,16481,16482,16483,16484,16485,16486,16487,16488,16489,16490,16491,16492,16493,16494,16495,16496,16497,16498,16499,16500,16501,16502,16503,16504,16505,16506,16507,16508,16509,16510,16511,16512,16513,16514,16515,16516,16517,16518,16519,16520,16521,16522,16523,16524,16525,16526,16527,16528,16529,16530,16531,16532,16533,16534,16535,16536,16537,16538,16539,16540,16541,16542,16543,16544,16545,16546,16547,16548,16549,16550,16551,16552,16553,16554,16555,16556,16557,16558,16559,16560,16561,16562,16563,16564,16565,16566,16567,16568,16569,16570,16571,16572,16573,16574,16575,16576,16577,16578,16579,16580,16581,16582,16583,16584,16585,16586,16587,16588,16589,16590,16591,16592,16593,16594,16595,16596,16597,16598,16599,16600,16601,16602,16603,16604,16605,16606,16607,16608,16609,16610,16611,16612,16613,16614,16615,16616,16617,16618,16619,16620,16621,16622,16623,16624,16625,16626,16627,16628,16629,16630,16631,16632,16633,16634,16635,16636,16637,16638,16639,16640,16641,16642,16643,16644,16645,16646,16647,16648,16649,16650,16651,16652,16653,16654,16655,16656,16657,16658,16659,16660,16661,16662,16663,16664,16665,16666,16667,16668,16669,16670,16671,16672,16673,16674,16675,16676,16677,16678,16679,16680,16681,16682,16683,16684,16685,16686,16687,16688,16689,16690,16691,16692,16693,16694,16695,16696,16697,16698,16699,16700,16701,16702,16703,16704,16705,16706,16707,16708,16709,16710,16711,16712,16713,16714,16715,16716,16717,16718,16719,16720,16721,16722,16723,16724,16725,16726,16727,16728,16729,16730,16731,16732,16733,16734,16735,16736,16737,16738,16739,16740,16741,16742,16743,16744,16745,16746,16747,16748,16749,16750,16751,16752,16753,16754,16755,16756,16757,16758,16759,16760,16761,16762,16763,16764,16765,16766,16767,16768,16769,16770,16771,16772,16773,16774,16775,16776,16777,16778,16779,16780,16781,16782,16783,16784,16785,16786,16787,16788,16789,16790,16791,16792,16793,16794,16795,16796,16797,16798,16799,16800,16801,16802,16803,16804,16805,16806,16807,16808,16809,16810,16811,16812,16813,16814,16815,16816,16817,16818,16819,16820,16821,16822,16823,16824,16825,16826,16827,16828,16829,16830,16831,16832,16833,16834,16835,16836,16837,16838,16839,16840,16841,16842,16843,16844,16845,16846,16847,16848,16849,16850,16851,16852,16853,16854,16855,16856,16857,16858,16859,16860,16861,16862,16863,16864,16865,16866,16867,16868,16869,16870,16871,16872,16873,16874,16875,16876,16877,16878,16879,16880,16881,16882,16883,16884,16885,16886,16887,16888,16889,16890,16891,16892,16893,16894,16895,16896,16897,16898,16899,16900,16901,16902,16903,16904,16905,16906,16907,16908,16909,16910,16911,16912,16913,16914,16915,16916,16917,16918,16919,16920,16921,16922,16923,16924,16925,16926,16927,16928,16929,16930,16931,16932,16933,16934,16935,16936,16937,16938,16939,16940,16941,16942,16943,16944,16945,16946,16947,16948,16949,16950,16951,16952,16953,16954,16955,16956,16957,16958,16959,16960,16961,16962,16963,16964,16965,16966,16967,16968,16969,16970,16971,16972,16973,16974,16975,16976,16977,16978,16979,16980,16981,16982,16983,16984,16985,16986,16987,16988,16989,16990,16991,16992,16993,16994,16995,16996,16997,16998,16999,17000,17001,17002,17003,17004,17005,17006,17007,17008,17009,17010,17011,17012,17013,17014,17015,17016,17017,17018,17019,17020,17021,17022,17023,17024,17025,17026,17027,17028,17029,17030,17031,17032,17033,17034,17035,17036,17037,17038,17039,17040,17041,17042,17043,17044,17045,17046,17047,17048,17049,17050,17051,17052,17053,17054,17055,17056,17057,17058,17059,17060,17061,17062,17063,17064,17065,17066,17067,17068,17069,17070,17071,17072,17073,17074,17075,17076,17077,17078,17079,17080,17081,17082,17083,17084,17085,17086,17087,17088,17089,17090,17091,17092,17093,17094,17095,17096,17097,17098,17099,17100,17101,17102,17103,17104,17105,17106,17107,17108,17109,17110,17111,17112,17113,17114,17115,17116,17117,17118,17119,17120,17121,17122,17123,17124,17125,17126,17127,17128,17129,17130,17131,17132,17133,17134,17135,17136,17137,17138,17139,17140,17141,17142,17143,17144,17145,17146,17147,17148,17149,17150,17151,17152,17153,17154,17155,17156,17157,17158,17159,17160,17161,17162,17163,17164,17165,17166,17167,17168,17169,17170,17171,17172,17173,17174,17175,17176,17177,17178,17179,17180,17181,17182,17183,17184,17185,17186,17187,17188,17189,17190,17191,17192,17193,17194,17195,17196,17197,17198,17199,17200,17201,17202,17203,17204,17205,17206,17207,17208,17209,17210,17211,17212,17213,17214,17215,17216,17217,17218,17219,17220,17221,17222,17223,17224,17225,17226,17227,17228,17229,17230,17231,17232,17233,17234,17235,17236,17237,17238,17239,17240,17241,17242,17243,17244,17245,17246,17247,17248,17249,17250,17251,17252,17253,17254,17255,17256,17257,17258,17259,17260,17261,17262,17263,17264,17265,17266,17267,17268,17269,17270,17271,17272,17273,17274,17275,17276,17277,17278,17279,17280,17281,17282,17283,17284,17285,17286,17287,17288,17289,17290,17291,17292,17293,17294,17295,17296,17297,17298,17299,17300,17301,17302,17303,17304,17305,17306,17307,17308,17309,17310,17311,17312,17313,17314,17315,17316,17317,17318,17319,17320,17321,17322,17323,17324,17325,17326,17327,17328,17329,17330,17331,17332,17333,17334,17335,17336,17337,17338,17339,17340,17341,17342,17343,17344,17345,17346,17347,17348,17349,17350,17351,17352,17353,17354,17355,17356,17357,17358,17359,17360,17361,17362,17363,17364,17365,17366,17367,17368,17369,17370,17371,17372,17373,17374,17375,17376,17377,17378,17379,17380,17381,17382,17383,17384,17385,17386,17387,17388,17389,17390,17391,17392,17393,17394,17395,17396,17397,17398,17399,17400,17401,17402,17403,17404,17405,17406,17407,17408,17409,17410,17411,17412,17413,17414,17415,17416,17417,17418,17419,17420,17421,17422,17423,17424,17425,17426,17427,17428,17429,17430,17431,17432,17433,17434,17435,17436,17437,17438,17439,17440,17441,17442,17443,17444,17445,17446,17447,17448,17449,17450,17451,17452,17453,17454,17455,17456,17457,17458,17459,17460,17461,17462,17463,17464,17465,17466,17467,17468,17469,17470,17471,17472,17473,17474,17475,17476,17477,17478,17479,17480,17481,17482,17483,17484,17485,17486,17487,17488,17489,17490,17491,17492,17493,17494,17495,17496,17497,17498,17499,17500,17501,17502,17503,17504,17505,17506,17507,17508,17509,17510,17511,17512,17513,17514,17515,17516,17517,17518,17519,17520,17521,17522,17523,17524,17525,17526,17527,17528,17529,17530,17531,17532,17533,17534,17535,17536,17537,17538,17539,17540,17541,17542,17543,17544,17545,17546,17547,17548,17549,17550,17551,17552,17553,17554,17555,17556,17557,17558,17559,17560,17561,17562,17563,17564,17565,17566,17567,17568,17569,17570,17571,17572,17573,17574,17575,17576,17577,17578,17579,17580,17581,17582,17583,17584,17585,17586,17587,17588,17589,17590,17591,17592,17593,17594,17595,17596,17597,17598,17599,17600,17601,17602,17603,17604,17605,17606,17607,17608,17609,17610,17611,17612,17613,17614,17615,17616,17617,17618,17619,17620,17621,17622,17623,17624,17625,17626,17627,17628,17629,17630,17631,17632,17633,17634,17635,17636,17637,17638,17639,17640,17641,17642,17643,17644,17645,17646,17647,17648,17649,17650,17651,17652,17653,17654,17655,17656,17657,17658,17659,17660,17661,17662,17663,17664,17665,17666,17667,17668,17669,17670,17671,17672,17673,17674,17675,17676,17677,17678,17679,17680,17681,17682,17683,17684,17685,17686,17687,17688,17689,17690,17691,17692,17693,17694,17695,17696,17697,17698,17699,17700,17701,17702,17703,17704,17705,17706,17707,17708,17709,17710,17711,17712,17713,17714,17715,17716,17717,17718,17719,17720,17721,17722,17723,17724,17725,17726,17727,17728,17729,17730,17731,17732,17733,17734,17735,17736,17737,17738,17739,17740,17741,17742,17743,17744,17745,17746,17747,17748,17749,17750,17751,17752,17753,17754,17755,17756,17757,17758,17759,17760,17761,17762,17763,17764,17765,17766,17767,17768,17769,17770,17771,17772,17773,17774,17775,17776,17777,17778,17779,17780,17781,17782,17783,17784,17785,17786,17787,17788,17789,17790,17791,17792,17793,17794,17795,17796,17797,17798,17799,17800,17801,17802,17803,17804,17805,17806,17807,17808,17809,17810,17811,17812,17813,17814,17815,17816,17817,17818,17819,17820,17821,17822,17823,17824,17825,17826,17827,17828,17829,17830,17831,17832,17833,17834,17835,17836,17837,17838,17839,17840,17841,17842,17843,17844,17845,17846,17847,17848,17849,17850,17851,17852,17853,17854,17855,17856,17857,17858,17859,17860,17861,17862,17863,17864,17865,17866,17867,17868,17869,17870,17871,17872,17873,17874,17875,17876,17877,17878,17879,17880,17881,17882,17883,17884,17885,17886,17887,17888,17889,17890,17891,17892,17893,17894,17895,17896,17897,17898,17899,17900,17901,17902,17903,17904,17905,17906,17907,17908,17909,17910,17911,17912,17913,17914,17915,17916,17917,17918,17919,17920,17921,17922,17923,17924,17925,17926,17927,17928,17929,17930,17931,17932,17933,17934,17935,17936,17937,17938,17939,17940,17941,17942,17943,17944,17945,17946,17947,17948,17949,17950,17951,17952,17953,17954,17955,17956,17957,17958,17959,17960,17961,17962,17963,17964,17965,17966,17967,17968,17969,17970,17971,17972,17973,17974,17975,17976,17977,17978,17979,17980,17981,17982,17983,17984,17985,17986,17987,17988,17989,17990,17991,17992,17993,17994,17995,17996,17997,17998,17999,18000,18001,18002,18003,18004,18005,18006,18007,18008,18009,18010,18011,18012,18013,18014,18015,18016,18017,18018,18019,18020,18021,18022,18023,18024,18025,18026,18027,18028,18029,18030,18031,18032,18033,18034,18035,18036,18037,18038,18039,18040,18041,18042,18043,18044,18045,18046,18047,18048,18049,18050,18051,18052,18053,18054,18055,18056,18057,18058,18059,18060,18061,18062,18063,18064,18065,18066,18067,18068,18069,18070,18071,18072,18073,18074,18075,18076,18077,18078,18079,18080,18081,18082,18083,18084,18085,18086,18087,18088,18089,18090,18091,18092,18093,18094,18095,18096,18097,18098,18099,18100,18101,18102,18103,18104,18105,18106,18107,18108,18109,18110,18111,18112,18113,18114,18115,18116,18117,18118,18119,18120,18121,18122,18123,18124,18125,18126,18127,18128,18129,18130,18131,18132,18133,18134,18135,18136,18137,18138,18139,18140,18141,18142,18143,18144,18145,18146,18147,18148,18149,18150,18151,18152,18153,18154,18155,18156,18157,18158,18159,18160,18161,18162,18163,18164,18165,18166,18167,18168,18169,18170,18171,18172,18173,18174,18175,18176,18177,18178,18179,18180,18181,18182,18183,18184,18185,18186,18187,18188,18189,18190,18191,18192,18193,18194,18195,18196,18197,18198,18199,18200,18201,18202,18203,18204,18205,18206,18207,18208,18209,18210,18211,18212,18213,18214,18215,18216,18217,18218,18219,18220,18221,18222,18223,18224,18225,18226,18227,18228,18229,18230,18231,18232,18233,18234,18235,18236,18237,18238,18239,18240,18241,18242,18243,18244,18245,18246,18247,18248,18249,18250,18251,18252,18253,18254,18255,18256,18257,18258,18259,18260,18261,18262,18263,18264,18265,18266,18267,18268,18269,18270,18271,18272,18273,18274,18275,18276,18277,18278,18279,18280,18281,18282,18283,18284,18285,18286,18287,18288,18289,18290,18291,18292,18293,18294,18295,18296,18297,18298,18299,18300,18301,18302,18303,18304,18305,18306,18307,18308,18309,18310,18311,18312,18313,18314,18315,18316,18317,18318,18319,18320,18321,18322,18323,18324,18325,18326,18327,18328,18329,18330,18331,18332,18333,18334,18335,18336,18337,18338,18339,18340,18341,18342,18343,18344,18345,18346,18347,18348,18349,18350,18351,18352,18353,18354,18355,18356,18357,18358,18359,18360,18361,18362,18363,18364,18365,18366,18367,18368,18369,18370,18371,18372,18373,18374,18375,18376,18377,18378,18379,18380,18381,18382,18383,18384,18385,18386,18387,18388,18389,18390,18391,18392,18393,18394,18395,18396,18397,18398,18399,18400,18401,18402,18403,18404,18405,18406,18407,18408,18409,18410,18411,18412,18413,18414,18415,18416,18417,18418,18419,18420,18421,18422,18423,18424,18425,18426,18427,18428,18429,18430,18431,18432,18433,18434,18435,18436,18437,18438,18439,18440,18441,18442,18443,18444,18445,18446,18447,18448,18449,18450,18451,18452,18453,18454,18455,18456,18457,18458,18459,18460,18461,18462,18463,18464,18465,18466,18467,18468,18469,18470,18471,18472,18473,18474,18475,18476,18477,18478,18479,18480,18481,18482,18483,18484,18485,18486,18487,18488,18489,18490,18491,18492,18493,18494,18495,18496,18497,18498,18499,18500,18501,18502,18503,18504,18505,18506,18507,18508,18509,18510,18511,18512,18513,18514,18515,18516,18517,18518,18519,18520,18521,18522,18523,18524,18525,18526,18527,18528,18529,18530,18531,18532,18533,18534,18535,18536,18537,18538,18539,18540,18541,18542,18543,18544,18545,18546,18547,18548,18549,18550,18551,18552,18553,18554,18555,18556,18557,18558,18559,18560,18561,18562,18563,18564,18565,18566,18567,18568,18569,18570,18571,18572,18573,18574,18575,18576,18577,18578,18579,18580,18581,18582,18583,18584,18585,18586,18587,18588,18589,18590,18591,18592,18593,18594,18595,18596,18597,18598,18599,18600,18601,18602,18603,18604,18605,18606,18607,18608,18609,18610,18611,18612,18613,18614,18615,18616,18617,18618,18619,18620,18621,18622,18623,18624,18625,18626,18627,18628,18629,18630,18631,18632,18633,18634,18635,18636,18637,18638,18639,18640,18641,18642,18643,18644,18645,18646,18647,18648,18649,18650,18651,18652,18653,18654,18655,18656,18657,18658,18659,18660,18661,18662,18663,18664,18665,18666,18667,18668,18669,18670,18671,18672,18673,18674,18675,18676,18677,18678,18679,18680,18681,18682,18683,18684,18685,18686,18687,18688,18689,18690,18691,18692,18693,18694,18695,18696,18697,18698,18699,18700,18701,18702,18703,18704,18705,18706,18707,18708,18709,18710,18711,18712,18713,18714,18715,18716,18717,18718,18719,18720,18721,18722,18723,18724,18725,18726,18727,18728,18729,18730,18731,18732,18733,18734,18735,18736,18737,18738,18739,18740,18741,18742,18743,18744,18745,18746,18747,18748,18749,18750,18751,18752,18753,18754,18755,18756,18757,18758,18759,18760,18761,18762,18763,18764,18765,18766,18767,18768,18769,18770,18771,18772,18773,18774,18775,18776,18777,18778,18779,18780,18781,18782,18783,18784,18785,18786,18787,18788,18789,18790,18791,18792,18793,18794,18795,18796,18797,18798,18799,18800,18801,18802,18803,18804,18805,18806,18807,18808,18809,18810,18811,18812,18813,18814,18815,18816,18817,18818,18819,18820,18821,18822,18823,18824,18825,18826,18827,18828,18829,18830,18831,18832,18833,18834,18835,18836,18837,18838,18839,18840,18841,18842,18843,18844,18845,18846,18847,18848,18849,18850,18851,18852,18853,18854,18855,18856,18857,18858,18859,18860,18861,18862,18863,18864,18865,18866,18867,18868,18869,18870,18871,18872,18873,18874,18875,18876,18877,18878,18879,18880,18881,18882,18883,18884,18885,18886,18887,18888,18889,18890,18891,18892,18893,18894,18895,18896,18897,18898,18899,18900,18901,18902,18903,18904,18905,18906,18907,18908,18909,18910,18911,18912,18913,18914,18915,18916,18917,18918,18919,18920,18921,18922,18923,18924,18925,18926,18927,18928,18929,18930,18931,18932,18933,18934,18935,18936,18937,18938,18939,18940,18941,18942,18943,18944,18945,18946,18947,18948,18949,18950,18951,18952,18953,18954,18955,18956,18957,18958,18959,18960,18961,18962,18963,18964,18965,18966,18967,18968,18969,18970,18971,18972,18973,18974,18975,18976,18977,18978,18979,18980,18981,18982,18983,18984,18985,18986,18987,18988,18989,18990,18991,18992,18993,18994,18995,18996,18997,18998,18999,19000,19001,19002,19003,19004,19005,19006,19007,19008,19009,19010,19011,19012,19013,19014,19015,19016,19017,19018,19019,19020,19021,19022,19023,19024,19025,19026,19027,19028,19029,19030,19031,19032,19033,19034,19035,19036,19037,19038,19039,19040,19041,19042,19043,19044,19045,19046,19047,19048,19049,19050,19051,19052,19053,19054,19055,19056,19057,19058,19059,19060,19061,19062,19063,19064,19065,19066,19067,19068,19069,19070,19071,19072,19073,19074,19075,19076,19077,19078,19079,19080,19081,19082,19083,19084,19085,19086,19087,19088,19089,19090,19091,19092,19093,19094,19095,19096,19097,19098,19099,19100,19101,19102,19103,19104,19105,19106,19107,19108,19109,19110,19111,19112,19113,19114,19115,19116,19117,19118,19119,19120,19121,19122,19123,19124,19125,19126,19127,19128,19129,19130,19131,19132,19133,19134,19135,19136,19137,19138,19139,19140,19141,19142,19143,19144,19145,19146,19147,19148,19149,19150,19151,19152,19153,19154,19155,19156,19157,19158,19159,19160,19161,19162,19163,19164,19165,19166,19167,19168,19169,19170,19171,19172,19173,19174,19175,19176,19177,19178,19179,19180,19181,19182,19183,19184,19185,19186,19187,19188,19189,19190,19191,19192,19193,19194,19195,19196,19197,19198,19199,19200,19201,19202,19203,19204,19205,19206,19207,19208,19209,19210,19211,19212,19213,19214,19215,19216,19217,19218,19219,19220,19221,19222,19223,19224,19225,19226,19227,19228,19229,19230,19231,19232,19233,19234,19235,19236,19237,19238,19239,19240,19241,19242,19243,19244,19245,19246,19247,19248,19249,19250,19251,19252,19253,19254,19255,19256,19257,19258,19259,19260,19261,19262,19263,19264,19265,19266,19267,19268,19269,19270,19271,19272,19273,19274,19275,19276,19277,19278,19279,19280,19281,19282,19283,19284,19285,19286,19287,19288,19289,19290,19291,19292,19293,19294,19295,19296,19297,19298,19299,19300,19301,19302,19303,19304,19305,19306,19307,19308,19309,19310,19311,19312,19313,19314,19315,19316,19317,19318,19319,19320,19321,19322,19323,19324,19325,19326,19327,19328,19329,19330,19331,19332,19333,19334,19335,19336,19337,19338,19339,19340,19341,19342,19343,19344,19345,19346,19347,19348,19349,19350,19351,19352,19353,19354,19355,19356,19357,19358,19359,19360,19361,19362,19363,19364,19365,19366,19367,19368,19369,19370,19371,19372,19373,19374,19375,19376,19377,19378,19379,19380,19381,19382,19383,19384,19385,19386,19387,19388,19389,19390,19391,19392,19393,19394,19395,19396,19397,19398,19399,19400,19401,19402,19403,19404,19405,19406,19407,19408,19409,19410,19411,19412,19413,19414,19415,19416,19417,19418,19419,19420,19421,19422,19423,19424,19425,19426,19427,19428,19429,19430,19431,19432,19433,19434,19435,19436,19437,19438,19439,19440,19441,19442,19443,19444,19445,19446,19447,19448,19449,19450,19451,19452,19453,19454,19455,19456,19457,19458,19459,19460,19461,19462,19463,19464,19465,19466,19467,19468,19469,19470,19471,19472,19473,19474,19475,19476,19477,19478,19479,19480,19481,19482,19483,19484,19485,19486,19487,19488,19489,19490,19491,19492,19493,19494,19495,19496,19497,19498,19499,19500,19501,19502,19503,19504,19505,19506,19507,19508,19509,19510,19511,19512,19513,19514,19515,19516,19517,19518,19519,19520,19521,19522,19523,19524,19525,19526,19527,19528,19529,19530,19531,19532,19533,19534,19535,19536,19537,19538,19539,19540,19541,19542,19543,19544,19545,19546,19547,19548,19549,19550,19551,19552,19553,19554,19555,19556,19557,19558,19559,19560,19561,19562,19563,19564,19565,19566,19567,19568,19569,19570,19571,19572,19573,19574,19575,19576,19577,19578,19579,19580,19581,19582,19583,19584,19585,19586,19587,19588,19589,19590,19591,19592,19593,19594,19595,19596,19597,19598,19599,19600,19601,19602,19603,19604,19605,19606,19607,19608,19609,19610,19611,19612,19613,19614,19615,19616,19617,19618,19619,19620,19621,19622,19623,19624,19625,19626,19627,19628,19629,19630,19631,19632,19633,19634,19635,19636,19637,19638,19639,19640,19641,19642,19643,19644,19645,19646,19647,19648,19649,19650,19651,19652,19653,19654,19655,19656,19657,19658,19659,19660,19661,19662,19663,19664,19665,19666,19667,19668,19669,19670,19671,19672,19673,19674,19675,19676,19677,19678,19679,19680,19681,19682,19683,19684,19685,19686,19687,19688,19689,19690,19691,19692,19693,19694,19695,19696,19697,19698,19699,19700,19701,19702,19703,19704,19705,19706,19707,19708,19709,19710,19711,19712,19713,19714,19715,19716,19717,19718,19719,19720,19721,19722,19723,19724,19725,19726,19727,19728,19729,19730,19731,19732,19733,19734,19735,19736,19737,19738,19739,19740,19741,19742,19743,19744,19745,19746,19747,19748,19749,19750,19751,19752,19753,19754,19755,19756,19757,19758,19759,19760,19761,19762,19763,19764,19765,19766,19767,19768,19769,19770,19771,19772,19773,19774,19775,19776,19777,19778,19779,19780,19781,19782,19783,19784,19785,19786,19787,19788,19789,19790,19791,19792,19793,19794,19795,19796,19797,19798,19799,19800,19801,19802,19803,19804,19805,19806,19807,19808,19809,19810,19811,19812,19813,19814,19815,19816,19817,19818,19819,19820,19821,19822,19823,19824,19825,19826,19827,19828,19829,19830,19831,19832,19833,19834,19835,19836,19837,19838,19839,19840,19841,19842,19843,19844,19845,19846,19847,19848,19849,19850,19851,19852,19853,19854,19855,19856,19857,19858,19859,19860,19861,19862,19863,19864,19865,19866,19867,19868,19869,19870,19871,19872,19873,19874,19875,19876,19877,19878,19879,19880,19881,19882,19883,19884,19885,19886,19887,19888,19889,19890,19891,19892,19893,19894,19895,19896,19897,19898,19899,19900,19901,19902,19903,19904,19905,19906,19907,19908,19909,19910,19911,19912,19913,19914,19915,19916,19917,19918,19919,19920,19921,19922,19923,19924,19925,19926,19927,19928,19929,19930,19931,19932,19933,19934,19935,19936,19937,19938,19939,19940,19941,19942,19943,19944,19945,19946,19947,19948,19949,19950,19951,19952,19953,19954,19955,19956,19957,19958,19959,19960,19961,19962,19963,19964,19965,19966,19967,19968,19969,19970,19971,19972,19973,19974,19975,19976,19977,19978,19979,19980,19981,19982,19983,19984,19985,19986,19987,19988,19989,19990,19991,19992,19993,19994,19995,19996,19997,19998,19999,20000,20001,20002,20003,20004,20005,20006,20007,20008,20009,20010,20011,20012,20013,20014,20015,20016,20017,20018,20019,20020,20021,20022,20023,20024,20025,20026,20027,20028,20029,20030,20031,20032,20033,20034,20035,20036,20037,20038,20039,20040,20041,20042,20043,20044,20045,20046,20047,20048,20049,20050,20051,20052,20053,20054,20055,20056,20057,20058,20059,20060,20061,20062,20063,20064,20065,20066,20067,20068,20069,20070,20071,20072,20073,20074,20075,20076,20077,20078,20079,20080,20081,20082,20083,20084,20085,20086,20087,20088,20089,20090,20091,20092,20093,20094,20095,20096,20097,20098,20099,20100,20101,20102,20103,20104,20105,20106,20107,20108,20109,20110,20111,20112,20113,20114,20115,20116,20117,20118,20119,20120,20121,20122,20123,20124,20125,20126,20127,20128,20129,20130,20131,20132,20133,20134,20135,20136,20137,20138,20139,20140,20141,20142,20143,20144,20145,20146,20147,20148,20149,20150,20151,20152,20153,20154,20155,20156,20157,20158,20159,20160,20161,20162,20163,20164,20165,20166,20167,20168,20169,20170,20171,20172,20173,20174,20175,20176,20177,20178,20179,20180,20181,20182,20183,20184,20185,20186,20187,20188,20189,20190,20191,20192,20193,20194,20195,20196,20197,20198,20199,20200,20201,20202,20203,20204,20205,20206,20207,20208,20209,20210,20211,20212,20213,20214,20215,20216,20217,20218,20219,20220,20221,20222,20223,20224,20225,20226,20227,20228,20229,20230,20231,20232,20233,20234,20235,20236,20237,20238,20239,20240,20241,20242,20243,20244,20245,20246,20247,20248,20249,20250,20251,20252,20253,20254,20255,20256,20257,20258,20259,20260,20261,20262,20263,20264,20265,20266,20267,20268,20269,20270,20271,20272,20273,20274,20275,20276,20277,20278,20279,20280,20281,20282,20283,20284,20285,20286,20287,20288,20289,20290,20291,20292,20293,20294,20295,20296,20297,20298,20299,20300,20301,20302,20303,20304,20305,20306,20307,20308,20309,20310,20311,20312,20313,20314,20315,20316,20317,20318,20319,20320,20321,20322,20323,20324,20325,20326,20327,20328,20329,20330,20331,20332,20333,20334,20335,20336,20337,20338,20339,20340,20341,20342,20343,20344,20345,20346,20347,20348,20349,20350,20351,20352,20353,20354,20355,20356,20357,20358,20359,20360,20361,20362,20363,20364,20365,20366,20367,20368,20369,20370,20371,20372,20373,20374,20375,20376,20377,20378,20379,20380,20381,20382,20383,20384,20385,20386,20387,20388,20389,20390,20391,20392,20393,20394,20395,20396,20397,20398,20399,20400,20401,20402,20403,20404,20405,20406,20407,20408,20409,20410,20411,20412,20413,20414,20415,20416,20417,20418,20419,20420,20421,20422,20423,20424,20425,20426,20427,20428,20429,20430,20431,20432,20433,20434,20435,20436,20437,20438,20439,20440,20441,20442,20443,20444,20445,20446,20447,20448,20449,20450,20451,20452,20453,20454,20455,20456,20457,20458,20459,20460,20461,20462,20463,20464,20465,20466,20467,20468,20469,20470,20471,20472,20473,20474,20475,20476,20477,20478,20479,20480,20481,20482,20483,20484,20485,20486,20487,20488,20489,20490,20491,20492,20493,20494,20495,20496,20497,20498,20499,20500,20501,20502,20503,20504,20505,20506,20507,20508,20509,20510,20511,20512,20513,20514,20515,20516,20517,20518,20519,20520,20521,20522,20523,20524,20525,20526,20527,20528,20529,20530,20531,20532,20533,20534,20535,20536,20537,20538,20539,20540,20541,20542,20543,20544,20545,20546,20547,20548,20549,20550,20551,20552,20553,20554,20555,20556,20557,20558,20559,20560,20561,20562,20563,20564,20565,20566,20567,20568,20569,20570,20571,20572,20573,20574,20575,20576,20577,20578,20579,20580,20581,20582,20583,20584,20585,20586,20587,20588,20589,20590,20591,20592,20593,20594,20595,20596,20597,20598,20599,20600,20601,20602,20603,20604,20605,20606,20607,20608,20609,20610,20611,20612,20613,20614,20615,20616,20617,20618,20619,20620,20621,20622,20623,20624,20625,20626,20627,20628,20629,20630,20631,20632,20633,20634,20635,20636,20637,20638,20639,20640,20641,20642,20643,20644,20645,20646,20647,20648,20649,20650,20651,20652,20653,20654,20655,20656,20657,20658,20659,20660,20661,20662,20663,20664,20665,20666,20667,20668,20669,20670,20671,20672,20673,20674,20675,20676,20677,20678,20679,20680,20681,20682,20683,20684,20685,20686,20687,20688,20689,20690,20691,20692,20693,20694,20695,20696,20697,20698,20699,20700,20701,20702,20703,20704,20705,20706,20707,20708,20709,20710,20711,20712,20713,20714,20715,20716,20717,20718,20719,20720,20721,20722,20723,20724,20725,20726,20727,20728,20729,20730,20731,20732,20733,20734,20735,20736,20737,20738,20739,20740,20741,20742,20743,20744,20745,20746,20747,20748,20749,20750,20751,20752,20753,20754,20755,20756,20757,20758,20759,20760,20761,20762,20763,20764,20765,20766,20767,20768,20769,20770,20771,20772,20773,20774,20775,20776,20777,20778,20779,20780,20781,20782,20783,20784,20785,20786,20787,20788,20789,20790,20791,20792,20793,20794,20795,20796,20797,20798,20799,20800,20801,20802,20803,20804,20805,20806,20807,20808,20809,20810,20811,20812,20813,20814,20815,20816,20817,20818,20819,20820,20821,20822,20823,20824,20825,20826,20827,20828,20829,20830,20831,20832,20833,20834,20835,20836,20837,20838,20839,20840,20841,20842,20843,20844,20845,20846,20847,20848,20849,20850,20851,20852,20853,20854,20855,20856,20857,20858,20859,20860,20861,20862,20863,20864,20865,20866,20867,20868,20869,20870,20871,20872,20873,20874,20875,20876,20877,20878,20879,20880,20881,20882,20883,20884,20885,20886,20887,20888,20889,20890,20891,20892,20893,20894,20895,20896,20897,20898,20899,20900,20901,20902,20903,20904,20905,20906,20907,20908,20909,20910,20911,20912,20913,20914,20915,20916,20917,20918,20919,20920,20921,20922,20923,20924,20925,20926,20927,20928,20929,20930,20931,20932,20933,20934,20935,20936,20937,20938,20939,20940,20941,20942,20943,20944,20945,20946,20947,20948,20949,20950,20951,20952,20953,20954,20955,20956,20957,20958,20959,20960,20961,20962,20963,20964,20965,20966,20967,20968,20969,20970,20971,20972,20973,20974,20975,20976,20977,20978,20979,20980,20981,20982,20983,20984,20985,20986,20987,20988,20989,20990,20991,20992,20993,20994,20995,20996,20997,20998,20999,21000,21001,21002,21003,21004,21005,21006,21007,21008,21009,21010,21011,21012,21013,21014,21015,21016,21017,21018,21019,21020,21021,21022,21023,21024,21025,21026,21027,21028,21029,21030,21031,21032,21033,21034,21035,21036,21037,21038,21039,21040,21041,21042,21043,21044,21045,21046,21047,21048,21049,21050,21051,21052,21053,21054,21055,21056,21057,21058,21059,21060,21061,21062,21063,21064,21065,21066,21067,21068,21069,21070,21071,21072,21073,21074,21075,21076,21077,21078,21079,21080,21081,21082,21083,21084,21085,21086,21087,21088,21089,21090,21091,21092,21093,21094,21095,21096,21097,21098,21099,21100,21101,21102,21103,21104,21105,21106,21107,21108,21109,21110,21111,21112,21113,21114,21115,21116,21117,21118,21119,21120,21121,21122,21123,21124,21125,21126,21127,21128,21129,21130,21131,21132,21133,21134,21135,21136,21137,21138,21139,21140,21141,21142,21143,21144,21145,21146,21147,21148,21149,21150,21151,21152,21153,21154,21155,21156,21157,21158,21159,21160,21161,21162,21163,21164,21165,21166,21167,21168,21169,21170,21171,21172,21173,21174,21175,21176,21177,21178,21179,21180,21181,21182,21183,21184,21185,21186,21187,21188,21189,21190,21191,21192,21193,21194,21195,21196,21197,21198,21199,21200,21201,21202,21203,21204,21205,21206,21207,21208,21209,21210,21211,21212,21213,21214,21215,21216,21217,21218,21219,21220,21221,21222,21223,21224,21225,21226,21227,21228,21229,21230,21231,21232,21233,21234,21235,21236,21237,21238,21239,21240,21241,21242,21243,21244,21245,21246,21247,21248,21249,21250,21251,21252,21253,21254,21255,21256,21257,21258,21259,21260,21261,21262,21263,21264,21265,21266,21267,21268,21269,21270,21271,21272,21273,21274,21275,21276,21277,21278,21279,21280,21281,21282,21283,21284,21285,21286,21287,21288,21289,21290,21291,21292,21293,21294,21295,21296,21297,21298,21299,21300,21301,21302,21303,21304,21305,21306,21307,21308,21309,21310,21311,21312,21313,21314,21315,21316,21317,21318,21319,21320,21321,21322,21323,21324,21325,21326,21327,21328,21329,21330,21331,21332,21333,21334,21335,21336,21337,21338,21339,21340,21341,21342,21343,21344,21345,21346,21347,21348,21349,21350,21351,21352,21353,21354,21355,21356,21357,21358,21359,21360,21361,21362,21363,21364,21365,21366,21367,21368,21369,21370,21371,21372,21373,21374,21375,21376,21377,21378,21379,21380,21381,21382,21383,21384,21385,21386,21387,21388,21389,21390,21391,21392,21393,21394,21395,21396,21397,21398,21399,21400,21401,21402,21403,21404,21405,21406,21407,21408,21409,21410,21411,21412,21413,21414,21415,21416,21417,21418,21419,21420,21421,21422,21423,21424,21425,21426,21427,21428,21429,21430,21431,21432,21433,21434,21435,21436,21437,21438,21439,21440,21441,21442,21443,21444,21445,21446,21447,21448,21449,21450,21451,21452,21453,21454,21455,21456,21457,21458,21459,21460,21461,21462,21463,21464,21465,21466,21467,21468,21469,21470,21471,21472,21473,21474,21475,21476,21477,21478,21479,21480,21481,21482,21483,21484,21485,21486,21487,21488,21489,21490,21491,21492,21493,21494,21495,21496,21497,21498,21499,21500,21501,21502,21503,21504,21505,21506,21507,21508,21509,21510,21511,21512,21513,21514,21515,21516,21517,21518,21519,21520,21521,21522,21523,21524,21525,21526,21527,21528,21529,21530,21531,21532,21533,21534,21535,21536,21537,21538,21539,21540,21541,21542,21543,21544,21545,21546,21547,21548,21549,21550,21551,21552,21553,21554,21555,21556,21557,21558,21559,21560,21561,21562,21563,21564,21565,21566,21567,21568,21569,21570,21571,21572,21573,21574,21575,21576,21577,21578,21579,21580,21581,21582,21583,21584,21585,21586,21587,21588,21589,21590,21591,21592,21593,21594,21595,21596,21597,21598,21599,21600,21601,21602,21603,21604,21605,21606,21607,21608,21609,21610,21611,21612,21613,21614,21615,21616,21617,21618,21619,21620,21621,21622,21623,21624,21625,21626,21627,21628,21629,21630,21631,21632,21633,21634,21635,21636,21637,21638,21639,21640,21641,21642,21643,21644,21645,21646,21647,21648,21649,21650,21651,21652,21653,21654,21655,21656,21657,21658,21659,21660,21661,21662,21663,21664,21665,21666,21667,21668,21669,21670,21671,21672,21673,21674,21675,21676,21677,21678,21679,21680,21681,21682,21683,21684,21685,21686,21687,21688,21689,21690,21691,21692,21693,21694,21695,21696,21697,21698,21699,21700,21701,21702,21703,21704,21705,21706,21707,21708,21709,21710,21711,21712,21713,21714,21715,21716,21717,21718,21719,21720,21721,21722,21723,21724,21725,21726,21727,21728,21729,21730,21731,21732,21733,21734,21735,21736,21737,21738,21739,21740,21741,21742,21743,21744,21745,21746,21747,21748,21749,21750,21751,21752,21753,21754,21755,21756,21757,21758,21759,21760,21761,21762,21763,21764,21765,21766,21767,21768,21769,21770,21771,21772,21773,21774,21775,21776,21777,21778,21779,21780,21781,21782,21783,21784,21785,21786,21787,21788,21789,21790,21791,21792,21793,21794,21795,21796,21797,21798,21799,21800,21801,21802,21803,21804,21805,21806,21807,21808,21809,21810,21811,21812,21813,21814,21815,21816,21817,21818,21819,21820,21821,21822,21823,21824,21825,21826,21827,21828,21829,21830,21831,21832,21833,21834,21835,21836,21837,21838,21839,21840,21841,21842,21843,21844,21845,21846,21847,21848,21849,21850,21851,21852,21853,21854,21855,21856,21857,21858,21859,21860,21861,21862,21863,21864,21865,21866,21867,21868,21869,21870,21871,21872,21873,21874,21875,21876,21877,21878,21879,21880,21881,21882,21883,21884,21885,21886,21887,21888,21889,21890,21891,21892,21893,21894,21895,21896,21897,21898,21899,21900,21901,21902,21903,21904,21905,21906,21907,21908,21909,21910,21911,21912,21913,21914,21915,21916,21917,21918,21919,21920,21921,21922,21923,21924,21925,21926,21927,21928,21929,21930,21931,21932,21933,21934,21935,21936,21937,21938,21939,21940,21941,21942,21943,21944,21945,21946,21947,21948,21949,21950,21951,21952,21953,21954,21955,21956,21957,21958,21959,21960,21961,21962,21963,21964,21965,21966,21967,21968,21969,21970,21971,21972,21973,21974,21975,21976,21977,21978,21979,21980,21981,21982,21983,21984,21985,21986,21987,21988,21989,21990,21991,21992,21993,21994,21995,21996,21997,21998,21999,22000,22001,22002,22003,22004,22005,22006,22007,22008,22009,22010,22011,22012,22013,22014,22015,22016,22017,22018,22019,22020,22021,22022,22023,22024,22025,22026,22027,22028,22029,22030,22031,22032,22033,22034,22035,22036,22037,22038,22039,22040,22041,22042,22043,22044,22045,22046,22047,22048,22049,22050,22051,22052,22053,22054,22055,22056,22057,22058,22059,22060,22061,22062,22063,22064,22065,22066,22067,22068,22069,22070,22071,22072,22073,22074,22075,22076,22077,22078,22079,22080,22081,22082,22083,22084,22085,22086,22087,22088,22089,22090,22091,22092,22093,22094,22095,22096,22097,22098,22099,22100,22101,22102,22103,22104,22105,22106,22107,22108,22109,22110,22111,22112,22113,22114,22115,22116,22117,22118,22119,22120,22121,22122,22123,22124,22125,22126,22127,22128,22129,22130,22131,22132,22133,22134,22135,22136,22137,22138,22139,22140,22141,22142,22143,22144,22145,22146,22147,22148,22149,22150,22151,22152,22153,22154,22155,22156,22157,22158,22159,22160,22161,22162,22163,22164,22165,22166,22167,22168,22169,22170,22171,22172,22173,22174,22175,22176,22177,22178,22179,22180,22181,22182,22183,22184,22185,22186,22187,22188,22189,22190,22191,22192,22193,22194,22195,22196,22197,22198,22199,22200,22201,22202,22203,22204,22205,22206,22207,22208,22209,22210,22211,22212,22213,22214,22215,22216,22217,22218,22219,22220,22221,22222,22223,22224,22225,22226,22227,22228,22229,22230,22231,22232,22233,22234,22235,22236,22237,22238,22239,22240,22241,22242,22243,22244,22245,22246,22247,22248,22249,22250,22251,22252,22253,22254,22255,22256,22257,22258,22259,22260,22261,22262,22263,22264,22265,22266,22267,22268,22269,22270,22271,22272,22273,22274,22275,22276,22277,22278,22279,22280,22281,22282,22283,22284,22285,22286,22287,22288,22289,22290,22291,22292,22293,22294,22295,22296,22297,22298,22299,22300,22301,22302,22303,22304,22305,22306,22307,22308,22309,22310,22311,22312,22313,22314,22315,22316,22317,22318,22319,22320,22321,22322,22323,22324,22325,22326,22327,22328,22329,22330,22331,22332,22333,22334,22335,22336,22337,22338,22339,22340,22341,22342,22343,22344,22345,22346,22347,22348,22349,22350,22351,22352,22353,22354,22355,22356,22357,22358,22359,22360,22361,22362,22363,22364,22365,22366,22367,22368,22369,22370,22371,22372,22373,22374,22375,22376,22377,22378,22379,22380,22381,22382,22383,22384,22385,22386,22387,22388,22389,22390,22391,22392,22393,22394,22395,22396,22397,22398,22399,22400,22401,22402,22403,22404,22405,22406,22407,22408,22409,22410,22411,22412,22413,22414,22415,22416,22417,22418,22419,22420,22421,22422,22423,22424,22425,22426,22427,22428,22429,22430,22431,22432,22433,22434,22435,22436,22437,22438,22439,22440,22441,22442,22443,22444,22445,22446,22447,22448,22449,22450,22451,22452,22453,22454,22455,22456,22457,22458,22459,22460,22461,22462,22463,22464,22465,22466,22467,22468,22469,22470,22471,22472,22473,22474,22475,22476,22477,22478,22479,22480,22481,22482,22483,22484,22485,22486,22487,22488,22489,22490,22491,22492,22493,22494,22495,22496,22497,22498,22499,22500,22501,22502,22503,22504,22505,22506,22507,22508,22509,22510,22511,22512,22513,22514,22515,22516,22517,22518,22519,22520,22521,22522,22523,22524,22525,22526,22527,22528,22529,22530,22531,22532,22533,22534,22535,22536,22537,22538,22539,22540,22541,22542,22543,22544,22545,22546,22547,22548,22549,22550,22551,22552,22553,22554,22555,22556,22557,22558,22559,22560,22561,22562,22563,22564,22565,22566,22567,22568,22569,22570,22571,22572,22573,22574,22575,22576,22577,22578,22579,22580,22581,22582,22583,22584,22585,22586,22587,22588,22589,22590,22591,22592,22593,22594,22595,22596,22597,22598,22599,22600,22601,22602,22603,22604,22605,22606,22607,22608,22609,22610,22611,22612,22613,22614,22615,22616,22617,22618,22619,22620,22621,22622,22623,22624,22625,22626,22627,22628,22629,22630,22631,22632,22633,22634,22635,22636,22637,22638,22639,22640,22641,22642,22643,22644,22645,22646,22647,22648,22649,22650,22651,22652,22653,22654,22655,22656,22657,22658,22659,22660,22661,22662,22663,22664,22665,22666,22667,22668,22669,22670,22671,22672,22673,22674,22675,22676,22677,22678,22679,22680,22681,22682,22683,22684,22685,22686,22687,22688,22689,22690,22691,22692,22693,22694,22695,22696,22697,22698,22699,22700,22701,22702,22703,22704,22705,22706,22707,22708,22709,22710,22711,22712,22713,22714,22715,22716,22717,22718,22719,22720,22721,22722,22723,22724,22725,22726,22727,22728,22729,22730,22731,22732,22733,22734,22735,22736,22737,22738,22739,22740,22741,22742,22743,22744,22745,22746,22747,22748,22749,22750,22751,22752,22753,22754,22755,22756,22757,22758,22759,22760,22761,22762,22763,22764,22765,22766,22767,22768,22769,22770,22771,22772,22773,22774,22775,22776,22777,22778,22779,22780,22781,22782,22783,22784,22785,22786,22787,22788,22789,22790,22791,22792,22793,22794,22795,22796,22797,22798,22799,22800,22801,22802,22803,22804,22805,22806,22807,22808,22809,22810,22811,22812,22813,22814,22815,22816,22817,22818,22819,22820,22821,22822,22823,22824,22825,22826,22827,22828,22829,22830,22831,22832,22833,22834,22835,22836,22837,22838,22839,22840,22841,22842,22843,22844,22845,22846,22847,22848,22849,22850,22851,22852,22853,22854,22855,22856,22857,22858,22859,22860,22861,22862,22863,22864,22865,22866,22867,22868,22869,22870,22871,22872,22873,22874,22875,22876,22877,22878,22879,22880,22881,22882,22883,22884,22885,22886,22887,22888,22889,22890,22891,22892,22893,22894,22895,22896,22897,22898,22899,22900,22901,22902,22903,22904,22905,22906,22907,22908,22909,22910,22911,22912,22913,22914,22915,22916,22917,22918,22919,22920,22921,22922,22923,22924,22925,22926,22927,22928,22929,22930,22931,22932,22933,22934,22935,22936,22937,22938,22939,22940,22941,22942,22943,22944,22945,22946,22947,22948,22949,22950,22951,22952,22953,22954,22955,22956,22957,22958,22959,22960,22961,22962,22963,22964,22965,22966,22967,22968,22969,22970,22971,22972,22973,22974,22975,22976,22977,22978,22979,22980,22981,22982,22983,22984,22985,22986,22987,22988,22989,22990,22991,22992,22993,22994,22995,22996,22997,22998,22999,23000,23001,23002,23003,23004,23005,23006,23007,23008,23009,23010,23011,23012,23013,23014,23015,23016,23017,23018,23019,23020,23021,23022,23023,23024,23025,23026,23027,23028,23029,23030,23031,23032,23033,23034,23035,23036,23037,23038,23039,23040,23041,23042,23043,23044,23045,23046,23047,23048,23049,23050,23051,23052,23053,23054,23055,23056,23057,23058,23059,23060,23061,23062,23063,23064,23065,23066,23067,23068,23069,23070,23071,23072,23073,23074,23075,23076,23077,23078,23079,23080,23081,23082,23083,23084,23085,23086,23087,23088,23089,23090,23091,23092,23093,23094,23095,23096,23097,23098,23099,23100,23101,23102,23103,23104,23105,23106,23107,23108,23109,23110,23111,23112,23113,23114,23115,23116,23117,23118,23119,23120,23121,23122,23123,23124,23125,23126,23127,23128,23129,23130,23131,23132,23133,23134,23135,23136,23137,23138,23139,23140,23141,23142,23143,23144,23145,23146,23147,23148,23149,23150,23151,23152,23153,23154,23155,23156,23157,23158,23159,23160,23161,23162,23163,23164,23165,23166,23167,23168,23169,23170,23171,23172,23173,23174,23175,23176,23177,23178,23179,23180,23181,23182,23183,23184,23185,23186,23187,23188,23189,23190,23191,23192,23193,23194,23195,23196,23197,23198,23199,23200,23201,23202,23203,23204,23205,23206,23207,23208,23209,23210,23211,23212,23213,23214,23215,23216,23217,23218,23219,23220,23221,23222,23223,23224,23225,23226,23227,23228,23229,23230,23231,23232,23233,23234,23235,23236,23237,23238,23239,23240,23241,23242,23243,23244,23245,23246,23247,23248,23249,23250,23251,23252,23253,23254,23255,23256,23257,23258,23259,23260,23261,23262,23263,23264,23265,23266,23267,23268,23269,23270,23271,23272,23273,23274,23275,23276,23277,23278,23279,23280,23281,23282,23283,23284,23285,23286,23287,23288,23289,23290,23291,23292,23293,23294,23295,23296,23297,23298,23299,23300,23301,23302,23303,23304,23305,23306,23307,23308,23309,23310,23311,23312,23313,23314,23315,23316,23317,23318,23319,23320,23321,23322,23323,23324,23325,23326,23327,23328,23329,23330,23331,23332,23333,23334,23335,23336,23337,23338,23339,23340,23341,23342,23343,23344,23345,23346,23347,23348,23349,23350,23351,23352,23353,23354,23355,23356,23357,23358,23359,23360,23361,23362,23363,23364,23365,23366,23367,23368,23369,23370,23371,23372,23373,23374,23375,23376,23377,23378,23379,23380,23381,23382,23383,23384,23385,23386,23387,23388,23389,23390,23391,23392,23393,23394,23395,23396,23397,23398,23399,23400,23401,23402,23403,23404,23405,23406,23407,23408,23409,23410,23411,23412,23413,23414,23415,23416,23417,23418,23419,23420,23421,23422,23423,23424,23425,23426,23427,23428,23429,23430,23431,23432,23433,23434,23435,23436,23437,23438,23439,23440,23441,23442,23443,23444,23445,23446,23447,23448,23449,23450,23451,23452,23453,23454,23455,23456,23457,23458,23459,23460,23461,23462,23463,23464,23465,23466,23467,23468,23469,23470,23471,23472,23473,23474,23475,23476,23477,23478,23479,23480,23481,23482,23483,23484,23485,23486,23487,23488,23489,23490,23491,23492,23493,23494,23495,23496,23497,23498,23499,23500,23501,23502,23503,23504,23505,23506,23507,23508,23509,23510,23511,23512,23513,23514,23515,23516,23517,23518,23519,23520,23521,23522,23523,23524,23525,23526,23527,23528,23529,23530,23531,23532,23533,23534,23535,23536,23537,23538,23539,23540,23541,23542,23543,23544,23545,23546,23547,23548,23549,23550,23551,23552,23553,23554,23555,23556,23557,23558,23559,23560,23561,23562,23563,23564,23565,23566,23567,23568,23569,23570,23571,23572,23573,23574,23575,23576,23577,23578,23579,23580,23581,23582,23583,23584,23585,23586,23587,23588,23589,23590,23591,23592,23593,23594,23595,23596,23597,23598,23599,23600,23601,23602,23603,23604,23605,23606,23607,23608,23609,23610,23611,23612,23613,23614,23615,23616,23617,23618,23619,23620,23621,23622,23623,23624,23625,23626,23627,23628,23629,23630,23631,23632,23633,23634,23635,23636,23637,23638,23639,23640,23641,23642,23643,23644,23645,23646,23647,23648,23649,23650,23651,23652,23653,23654,23655,23656,23657,23658,23659,23660,23661,23662,23663,23664,23665,23666,23667,23668,23669,23670,23671,23672,23673,23674,23675,23676,23677,23678,23679,23680,23681,23682,23683,23684,23685,23686,23687,23688,23689,23690,23691,23692,23693,23694,23695,23696,23697,23698,23699,23700,23701,23702,23703,23704,23705,23706,23707,23708,23709,23710,23711,23712,23713,23714,23715,23716,23717,23718,23719,23720,23721,23722,23723,23724,23725,23726,23727,23728,23729,23730,23731,23732,23733,23734,23735,23736,23737,23738,23739,23740,23741,23742,23743,23744,23745,23746,23747,23748,23749,23750,23751,23752,23753,23754,23755,23756,23757,23758,23759,23760,23761,23762,23763,23764,23765,23766,23767,23768,23769,23770,23771,23772,23773,23774,23775,23776,23777,23778,23779,23780,23781,23782,23783,23784,23785,23786,23787,23788,23789,23790,23791,23792,23793,23794,23795,23796,23797,23798,23799,23800,23801,23802,23803,23804,23805,23806,23807,23808,23809,23810,23811,23812,23813,23814,23815,23816,23817,23818,23819,23820,23821,23822,23823,23824,23825,23826,23827,23828,23829,23830,23831,23832,23833,23834,23835,23836,23837,23838,23839,23840,23841,23842,23843,23844,23845,23846,23847,23848,23849,23850,23851,23852,23853,23854,23855,23856,23857,23858,23859,23860,23861,23862,23863,23864,23865,23866,23867,23868,23869,23870,23871,23872,23873,23874,23875,23876,23877,23878,23879,23880,23881,23882,23883,23884,23885,23886,23887,23888,23889,23890,23891,23892,23893,23894,23895,23896,23897,23898,23899,23900,23901,23902,23903,23904,23905,23906,23907,23908,23909,23910,23911,23912,23913,23914,23915,23916,23917,23918,23919,23920,23921,23922,23923,23924,23925,23926,23927,23928,23929,23930,23931,23932,23933,23934,23935,23936,23937,23938,23939,23940,23941,23942,23943,23944,23945,23946,23947,23948,23949,23950,23951,23952,23953,23954,23955,23956,23957,23958,23959,23960,23961,23962,23963,23964,23965,23966,23967,23968,23969,23970,23971,23972,23973,23974,23975,23976,23977,23978,23979,23980,23981,23982,23983,23984,23985,23986,23987,23988,23989,23990,23991,23992,23993,23994,23995,23996,23997,23998,23999,24000,24001,24002,24003,24004,24005,24006,24007,24008,24009,24010,24011,24012,24013,24014,24015,24016,24017,24018,24019,24020,24021,24022,24023,24024,24025,24026,24027,24028,24029,24030,24031,24032,24033,24034,24035,24036,24037,24038,24039,24040,24041,24042,24043,24044,24045,24046,24047,24048,24049,24050,24051,24052,24053,24054,24055,24056,24057,24058,24059,24060,24061,24062,24063,24064,24065,24066,24067,24068,24069,24070,24071,24072,24073,24074,24075,24076,24077,24078,24079,24080,24081,24082,24083,24084,24085,24086,24087,24088,24089,24090,24091,24092,24093,24094,24095,24096,24097,24098,24099,24100,24101,24102,24103,24104,24105,24106,24107,24108,24109,24110,24111,24112,24113,24114,24115,24116,24117,24118,24119,24120,24121,24122,24123,24124,24125,24126,24127,24128,24129,24130,24131,24132,24133,24134,24135,24136,24137,24138,24139,24140,24141,24142,24143,24144,24145,24146,24147,24148,24149,24150,24151,24152,24153,24154,24155,24156,24157,24158,24159,24160,24161,24162,24163,24164,24165,24166,24167,24168,24169,24170,24171,24172,24173,24174,24175,24176,24177,24178,24179,24180,24181,24182,24183,24184,24185,24186,24187,24188,24189,24190,24191,24192,24193,24194,24195,24196,24197,24198,24199,24200,24201,24202,24203,24204,24205,24206,24207,24208,24209,24210,24211,24212,24213,24214,24215,24216,24217,24218,24219,24220,24221,24222,24223,24224,24225,24226,24227,24228,24229,24230,24231,24232,24233,24234,24235,24236,24237,24238,24239,24240,24241,24242,24243,24244,24245,24246,24247,24248,24249,24250,24251,24252,24253,24254,24255,24256,24257,24258,24259,24260,24261,24262,24263,24264,24265,24266,24267,24268,24269,24270,24271,24272,24273,24274,24275,24276,24277,24278,24279,24280,24281,24282,24283,24284,24285,24286,24287,24288,24289,24290,24291,24292,24293,24294,24295,24296,24297,24298,24299,24300,24301,24302,24303,24304,24305,24306,24307,24308,24309,24310,24311,24312,24313,24314,24315,24316,24317,24318,24319,24320,24321,24322,24323,24324,24325,24326,24327,24328,24329,24330,24331,24332,24333,24334,24335,24336,24337,24338,24339,24340,24341,24342,24343,24344,24345,24346,24347,24348,24349,24350,24351,24352,24353,24354,24355,24356,24357,24358,24359,24360,24361,24362,24363,24364,24365,24366,24367,24368,24369,24370,24371,24372,24373,24374,24375,24376,24377,24378,24379,24380,24381,24382,24383,24384,24385,24386,24387,24388,24389,24390,24391,24392,24393,24394,24395,24396,24397,24398,24399,24400,24401,24402,24403,24404,24405,24406,24407,24408,24409,24410,24411,24412,24413,24414,24415,24416,24417,24418,24419,24420,24421,24422,24423,24424,24425,24426,24427,24428,24429,24430,24431,24432,24433,24434,24435,24436,24437,24438,24439,24440,24441,24442,24443,24444,24445,24446,24447,24448,24449,24450,24451,24452,24453,24454,24455,24456,24457,24458,24459,24460,24461,24462,24463,24464,24465,24466,24467,24468,24469,24470,24471,24472,24473,24474,24475,24476,24477,24478,24479,24480,24481,24482,24483,24484,24485,24486,24487,24488,24489,24490,24491,24492,24493,24494,24495,24496,24497,24498,24499,24500,24501,24502,24503,24504,24505,24506,24507,24508,24509,24510,24511,24512,24513,24514,24515,24516,24517,24518,24519,24520,24521,24522,24523,24524,24525,24526,24527,24528,24529,24530,24531,24532,24533,24534,24535,24536,24537,24538,24539,24540,24541,24542,24543,24544,24545,24546,24547,24548,24549,24550,24551,24552,24553,24554,24555,24556,24557,24558,24559,24560,24561,24562,24563,24564,24565,24566,24567,24568,24569,24570,24571,24572,24573,24574,24575,24576,24577,24578,24579,24580,24581,24582,24583,24584,24585,24586,24587,24588,24589,24590,24591,24592,24593,24594,24595,24596,24597,24598,24599,24600,24601,24602,24603,24604,24605,24606,24607,24608,24609,24610,24611,24612,24613,24614,24615,24616,24617,24618,24619,24620,24621,24622,24623,24624,24625,24626,24627,24628,24629,24630,24631,24632,24633,24634,24635,24636,24637,24638,24639,24640,24641,24642,24643,24644,24645,24646,24647,24648,24649,24650,24651,24652,24653,24654,24655,24656,24657,24658,24659,24660,24661,24662,24663,24664,24665,24666,24667,24668,24669,24670,24671,24672,24673,24674,24675,24676,24677,24678,24679,24680,24681,24682,24683,24684,24685,24686,24687,24688,24689,24690,24691,24692,24693,24694,24695,24696,24697,24698,24699,24700,24701,24702,24703,24704,24705,24706,24707,24708,24709,24710,24711,24712,24713,24714,24715,24716,24717,24718,24719,24720,24721,24722,24723,24724,24725,24726,24727,24728,24729,24730,24731,24732,24733,24734,24735,24736,24737,24738,24739,24740,24741,24742,24743,24744,24745,24746,24747,24748,24749,24750,24751,24752,24753,24754,24755,24756,24757,24758,24759,24760,24761,24762,24763,24764,24765,24766,24767,24768,24769,24770,24771,24772,24773,24774,24775,24776,24777,24778,24779,24780,24781,24782,24783,24784,24785,24786,24787,24788,24789,24790,24791,24792,24793,24794,24795,24796,24797,24798,24799,24800,24801,24802,24803,24804,24805,24806,24807,24808,24809,24810,24811,24812,24813,24814,24815,24816,24817,24818,24819,24820,24821,24822,24823,24824,24825,24826,24827,24828,24829,24830,24831,24832,24833,24834,24835,24836,24837,24838,24839,24840,24841,24842,24843,24844,24845,24846,24847,24848,24849,24850,24851,24852,24853,24854,24855,24856,24857,24858,24859,24860,24861,24862,24863,24864,24865,24866,24867,24868,24869,24870,24871,24872,24873,24874,24875,24876,24877,24878,24879,24880,24881,24882,24883,24884,24885,24886,24887,24888,24889,24890,24891,24892,24893,24894,24895,24896,24897,24898,24899,24900,24901,24902,24903,24904,24905,24906,24907,24908,24909,24910,24911,24912,24913,24914,24915,24916,24917,24918,24919,24920,24921,24922,24923,24924,24925,24926,24927,24928,24929,24930,24931,24932,24933,24934,24935,24936,24937,24938,24939,24940,24941,24942,24943,24944,24945,24946,24947,24948,24949,24950,24951,24952,24953,24954,24955,24956,24957,24958,24959,24960,24961,24962,24963,24964,24965,24966,24967,24968,24969,24970,24971,24972,24973,24974,24975,24976,24977,24978,24979,24980,24981,24982,24983,24984,24985,24986,24987,24988,24989,24990,24991,24992,24993,24994,24995,24996,24997,24998,24999,25000,25001,25002,25003,25004,25005,25006,25007,25008,25009,25010,25011,25012,25013,25014,25015,25016,25017,25018,25019,25020,25021,25022,25023,25024,25025,25026,25027,25028,25029,25030,25031,25032,25033,25034,25035,25036,25037,25038,25039,25040,25041,25042,25043,25044,25045,25046,25047,25048,25049,25050,25051,25052,25053,25054,25055,25056,25057,25058,25059,25060,25061,25062,25063,25064,25065,25066,25067,25068,25069,25070,25071,25072,25073,25074,25075,25076,25077,25078,25079,25080,25081,25082,25083,25084,25085,25086,25087,25088,25089,25090,25091,25092,25093,25094,25095,25096,25097,25098,25099,25100,25101,25102,25103,25104,25105,25106,25107,25108,25109,25110,25111,25112,25113,25114,25115,25116,25117,25118,25119,25120,25121,25122,25123,25124,25125,25126,25127,25128,25129,25130,25131,25132,25133,25134,25135,25136,25137,25138,25139,25140,25141,25142,25143,25144,25145,25146,25147,25148,25149,25150,25151,25152,25153,25154,25155,25156,25157,25158,25159,25160,25161,25162,25163,25164,25165,25166,25167,25168,25169,25170,25171,25172,25173,25174,25175,25176,25177,25178,25179,25180,25181,25182,25183,25184,25185,25186,25187,25188,25189,25190,25191,25192,25193,25194,25195,25196,25197,25198,25199,25200,25201,25202,25203,25204,25205,25206,25207,25208,25209,25210,25211,25212,25213,25214,25215,25216,25217,25218,25219,25220,25221,25222,25223,25224,25225,25226,25227,25228,25229,25230,25231,25232,25233,25234,25235,25236,25237,25238,25239,25240,25241,25242,25243,25244,25245,25246,25247,25248,25249,25250,25251,25252,25253,25254,25255,25256,25257,25258,25259,25260,25261,25262,25263,25264,25265,25266,25267,25268,25269,25270,25271,25272,25273,25274,25275,25276,25277,25278,25279,25280,25281,25282,25283,25284,25285,25286,25287,25288,25289,25290,25291,25292,25293,25294,25295,25296,25297,25298,25299,25300,25301,25302,25303,25304,25305,25306,25307,25308,25309,25310,25311,25312,25313,25314,25315,25316,25317,25318,25319,25320,25321,25322,25323,25324,25325,25326,25327,25328,25329,25330,25331,25332,25333,25334,25335,25336,25337,25338,25339,25340,25341,25342,25343,25344,25345,25346,25347,25348,25349,25350,25351,25352,25353,25354,25355,25356,25357,25358,25359,25360,25361,25362,25363,25364,25365,25366,25367,25368,25369,25370,25371,25372,25373,25374,25375,25376,25377,25378,25379,25380,25381,25382,25383,25384,25385,25386,25387,25388,25389,25390,25391,25392,25393,25394,25395,25396,25397,25398,25399,25400,25401,25402,25403,25404,25405,25406,25407,25408,25409,25410,25411,25412,25413,25414,25415,25416,25417,25418,25419,25420,25421,25422,25423,25424,25425,25426,25427,25428,25429,25430,25431,25432,25433,25434,25435,25436,25437,25438,25439,25440,25441,25442,25443,25444,25445,25446,25447,25448,25449,25450,25451,25452,25453,25454,25455,25456,25457,25458,25459,25460,25461,25462,25463,25464,25465,25466,25467,25468,25469,25470,25471,25472,25473,25474,25475,25476,25477,25478,25479,25480,25481,25482,25483,25484,25485,25486,25487,25488,25489,25490,25491,25492,25493,25494,25495,25496,25497,25498,25499,25500,25501,25502,25503,25504,25505,25506,25507,25508,25509,25510,25511,25512,25513,25514,25515,25516,25517,25518,25519,25520,25521,25522,25523,25524,25525,25526,25527,25528,25529,25530,25531,25532,25533,25534,25535,25536,25537,25538,25539,25540,25541,25542,25543,25544,25545,25546,25547,25548,25549,25550,25551,25552,25553,25554,25555,25556,25557,25558,25559,25560,25561,25562,25563,25564,25565,25566,25567,25568,25569,25570,25571,25572,25573,25574,25575,25576,25577,25578,25579,25580,25581,25582,25583,25584,25585,25586,25587,25588,25589,25590,25591,25592,25593,25594,25595,25596,25597,25598,25599,25600,25601,25602,25603,25604,25605,25606,25607,25608,25609,25610,25611,25612,25613,25614,25615,25616,25617,25618,25619,25620,25621,25622,25623,25624,25625,25626,25627,25628,25629,25630,25631,25632,25633,25634,25635,25636,25637,25638,25639,25640,25641,25642,25643,25644,25645,25646,25647,25648,25649,25650,25651,25652,25653,25654,25655,25656,25657,25658,25659,25660,25661,25662,25663,25664,25665,25666,25667,25668,25669,25670,25671,25672,25673,25674,25675,25676,25677,25678,25679,25680,25681,25682,25683,25684,25685,25686,25687,25688,25689,25690,25691,25692,25693,25694,25695,25696,25697,25698,25699,25700,25701,25702,25703,25704,25705,25706,25707,25708,25709,25710,25711,25712,25713,25714,25715,25716,25717,25718,25719,25720,25721,25722,25723,25724,25725,25726,25727,25728,25729,25730,25731,25732,25733,25734,25735,25736,25737,25738,25739,25740,25741,25742,25743,25744,25745,25746,25747,25748,25749,25750,25751,25752,25753,25754,25755,25756,25757,25758,25759,25760,25761,25762,25763,25764,25765,25766,25767,25768,25769,25770,25771,25772,25773,25774,25775,25776,25777,25778,25779,25780,25781,25782,25783,25784,25785,25786,25787,25788,25789,25790,25791,25792,25793,25794,25795,25796,25797,25798,25799,25800,25801,25802,25803,25804,25805,25806,25807,25808,25809,25810,25811,25812,25813,25814,25815,25816,25817,25818,25819,25820,25821,25822,25823,25824,25825,25826,25827,25828,25829,25830,25831,25832,25833,25834,25835,25836,25837,25838,25839,25840,25841,25842,25843,25844,25845,25846,25847,25848,25849,25850,25851,25852,25853,25854,25855,25856,25857,25858,25859,25860,25861,25862,25863,25864,25865,25866,25867,25868,25869,25870,25871,25872,25873,25874,25875,25876,25877,25878,25879,25880,25881,25882,25883,25884,25885,25886,25887,25888,25889,25890,25891,25892,25893,25894,25895,25896,25897,25898,25899,25900,25901,25902,25903,25904,25905,25906,25907,25908,25909,25910,25911,25912,25913,25914,25915,25916,25917,25918,25919,25920,25921,25922,25923,25924,25925,25926,25927,25928,25929,25930,25931,25932,25933,25934,25935,25936,25937,25938,25939,25940,25941,25942,25943,25944,25945,25946,25947,25948,25949,25950,25951,25952,25953,25954,25955,25956,25957,25958,25959,25960,25961,25962,25963,25964,25965,25966,25967,25968,25969,25970,25971,25972,25973,25974,25975,25976,25977,25978,25979,25980,25981,25982,25983,25984,25985,25986,25987,25988,25989,25990,25991,25992,25993,25994,25995,25996,25997,25998,25999,26000,26001,26002,26003,26004,26005,26006,26007,26008,26009,26010,26011,26012,26013,26014,26015,26016,26017,26018,26019,26020,26021,26022,26023,26024,26025,26026,26027,26028,26029,26030,26031,26032,26033,26034,26035,26036,26037,26038,26039,26040,26041,26042,26043,26044,26045,26046,26047,26048,26049,26050,26051,26052,26053,26054,26055,26056,26057,26058,26059,26060,26061,26062,26063,26064,26065,26066,26067,26068,26069,26070,26071,26072,26073,26074,26075,26076,26077,26078,26079,26080,26081,26082,26083,26084,26085,26086,26087,26088,26089,26090,26091,26092,26093,26094,26095,26096,26097,26098,26099,26100,26101,26102,26103,26104,26105,26106,26107,26108,26109,26110,26111,26112,26113,26114,26115,26116,26117,26118,26119,26120,26121,26122,26123,26124,26125,26126,26127,26128,26129,26130,26131,26132,26133,26134,26135,26136,26137,26138,26139,26140,26141,26142,26143,26144,26145,26146,26147,26148,26149,26150,26151,26152,26153,26154,26155,26156,26157,26158,26159,26160,26161,26162,26163,26164,26165,26166,26167,26168,26169,26170,26171,26172,26173,26174,26175,26176,26177,26178,26179,26180,26181,26182,26183,26184,26185,26186,26187,26188,26189,26190,26191,26192,26193,26194,26195,26196,26197,26198,26199,26200,26201,26202,26203,26204,26205,26206,26207,26208,26209,26210,26211,26212,26213,26214,26215,26216,26217,26218,26219,26220,26221,26222,26223,26224,26225,26226,26227,26228,26229,26230,26231,26232,26233,26234,26235,26236,26237,26238,26239,26240,26241,26242,26243,26244,26245,26246,26247,26248,26249,26250,26251,26252,26253,26254,26255,26256,26257,26258,26259,26260,26261,26262,26263,26264,26265,26266,26267,26268,26269,26270,26271,26272,26273,26274,26275,26276,26277,26278,26279,26280,26281,26282,26283,26284,26285,26286,26287,26288,26289,26290,26291,26292,26293,26294,26295,26296,26297,26298,26299,26300,26301,26302,26303,26304,26305,26306,26307,26308,26309,26310,26311,26312,26313,26314,26315,26316,26317,26318,26319,26320,26321,26322,26323,26324,26325,26326,26327,26328,26329,26330,26331,26332,26333,26334,26335,26336,26337,26338,26339,26340,26341,26342,26343,26344,26345,26346,26347,26348,26349,26350,26351,26352,26353,26354,26355,26356,26357,26358,26359,26360,26361,26362,26363,26364,26365,26366,26367,26368,26369,26370,26371,26372,26373,26374,26375,26376,26377,26378,26379,26380,26381,26382,26383,26384,26385,26386,26387,26388,26389,26390,26391,26392,26393,26394,26395,26396,26397,26398,26399,26400,26401,26402,26403,26404,26405,26406,26407,26408,26409,26410,26411,26412,26413,26414,26415,26416,26417,26418,26419,26420,26421,26422,26423,26424,26425,26426,26427,26428,26429,26430,26431,26432,26433,26434,26435,26436,26437,26438,26439,26440,26441,26442,26443,26444,26445,26446,26447,26448,26449,26450,26451,26452,26453,26454,26455,26456,26457,26458,26459,26460,26461,26462,26463,26464,26465,26466,26467,26468,26469,26470,26471,26472,26473,26474,26475,26476,26477,26478,26479,26480,26481,26482,26483,26484,26485,26486,26487,26488,26489,26490,26491,26492,26493,26494,26495,26496,26497,26498,26499,26500,26501,26502,26503,26504,26505,26506,26507,26508,26509,26510,26511,26512,26513,26514,26515,26516,26517,26518,26519,26520,26521,26522,26523,26524,26525,26526,26527,26528,26529,26530,26531,26532,26533,26534,26535,26536,26537,26538,26539,26540,26541,26542,26543,26544,26545,26546,26547,26548,26549,26550,26551,26552,26553,26554,26555,26556,26557,26558,26559,26560,26561,26562,26563,26564,26565,26566,26567,26568,26569,26570,26571,26572,26573,26574,26575,26576,26577,26578,26579,26580,26581,26582,26583,26584,26585,26586,26587,26588,26589,26590,26591,26592,26593,26594,26595,26596,26597,26598,26599,26600,26601,26602,26603,26604,26605,26606,26607,26608,26609,26610,26611,26612,26613,26614,26615,26616,26617,26618,26619,26620,26621,26622,26623,26624,26625,26626,26627,26628,26629,26630,26631,26632,26633,26634,26635,26636,26637,26638,26639,26640,26641,26642,26643,26644,26645,26646,26647,26648,26649,26650,26651,26652,26653,26654,26655,26656,26657,26658,26659,26660,26661,26662,26663,26664,26665,26666,26667,26668,26669,26670,26671,26672,26673,26674,26675,26676,26677,26678,26679,26680,26681,26682,26683,26684,26685,26686,26687,26688,26689,26690,26691,26692,26693,26694,26695,26696,26697,26698,26699,26700,26701,26702,26703,26704,26705,26706,26707,26708,26709,26710,26711,26712,26713,26714,26715,26716,26717,26718,26719,26720,26721,26722,26723,26724,26725,26726,26727,26728,26729,26730,26731,26732,26733,26734,26735,26736,26737,26738,26739,26740,26741,26742,26743,26744,26745,26746,26747,26748,26749,26750,26751,26752,26753,26754,26755,26756,26757,26758,26759,26760,26761,26762,26763,26764,26765,26766,26767,26768,26769,26770,26771,26772,26773,26774,26775,26776,26777,26778,26779,26780,26781,26782,26783,26784,26785,26786,26787,26788,26789,26790,26791,26792,26793,26794,26795,26796,26797,26798,26799,26800,26801,26802,26803,26804,26805,26806,26807,26808,26809,26810,26811,26812,26813,26814,26815,26816,26817,26818,26819,26820,26821,26822,26823,26824,26825,26826,26827,26828,26829,26830,26831,26832,26833,26834,26835,26836,26837,26838,26839,26840,26841,26842,26843,26844,26845,26846,26847,26848,26849,26850,26851,26852,26853,26854,26855,26856,26857,26858,26859,26860,26861,26862,26863,26864,26865,26866,26867,26868,26869,26870,26871,26872,26873,26874,26875,26876,26877,26878,26879,26880,26881,26882,26883,26884,26885,26886,26887,26888,26889,26890,26891,26892,26893,26894,26895,26896,26897,26898,26899,26900,26901,26902,26903,26904,26905,26906,26907,26908,26909,26910,26911,26912,26913,26914,26915,26916,26917,26918,26919,26920,26921,26922,26923,26924,26925,26926,26927,26928,26929,26930,26931,26932,26933,26934,26935,26936,26937,26938,26939,26940,26941,26942,26943,26944,26945,26946,26947,26948,26949,26950,26951,26952,26953,26954,26955,26956,26957,26958,26959,26960,26961,26962,26963,26964,26965,26966,26967,26968,26969,26970,26971,26972,26973,26974,26975,26976,26977,26978,26979,26980,26981,26982,26983,26984,26985,26986,26987,26988,26989,26990,26991,26992,26993,26994,26995,26996,26997,26998,26999,27000,27001,27002,27003,27004,27005,27006,27007,27008,27009,27010,27011,27012,27013,27014,27015,27016,27017,27018,27019,27020,27021,27022,27023,27024,27025,27026,27027,27028,27029,27030,27031,27032,27033,27034,27035,27036,27037,27038,27039,27040,27041,27042,27043,27044,27045,27046,27047,27048,27049,27050,27051,27052,27053,27054,27055,27056,27057,27058,27059,27060,27061,27062,27063,27064,27065,27066,27067,27068,27069,27070,27071,27072,27073,27074,27075,27076,27077,27078,27079,27080,27081,27082,27083,27084,27085,27086,27087,27088,27089,27090,27091,27092,27093,27094,27095,27096,27097,27098,27099,27100,27101,27102,27103,27104,27105,27106,27107,27108,27109,27110,27111,27112,27113,27114,27115,27116,27117,27118,27119,27120,27121,27122,27123,27124,27125,27126,27127,27128,27129,27130,27131,27132,27133,27134,27135,27136,27137,27138,27139,27140,27141,27142,27143,27144,27145,27146,27147,27148,27149,27150,27151,27152,27153,27154,27155,27156,27157,27158,27159,27160,27161,27162,27163,27164,27165,27166,27167,27168,27169,27170,27171,27172,27173,27174,27175,27176,27177,27178,27179,27180,27181,27182,27183,27184,27185,27186,27187,27188,27189,27190,27191,27192,27193,27194,27195,27196,27197,27198,27199,27200,27201,27202,27203,27204,27205,27206,27207,27208,27209,27210,27211,27212,27213,27214,27215,27216,27217,27218,27219,27220,27221,27222,27223,27224,27225,27226,27227,27228,27229,27230,27231,27232,27233,27234,27235,27236,27237,27238,27239,27240,27241,27242,27243,27244,27245,27246,27247,27248,27249,27250,27251,27252,27253,27254,27255,27256,27257,27258,27259,27260,27261,27262,27263,27264,27265,27266,27267,27268,27269,27270,27271,27272,27273,27274,27275,27276,27277,27278,27279,27280,27281,27282,27283,27284,27285,27286,27287,27288,27289,27290,27291,27292,27293,27294,27295,27296,27297,27298,27299,27300,27301,27302,27303,27304,27305,27306,27307,27308,27309,27310,27311,27312,27313,27314,27315,27316,27317,27318,27319,27320,27321,27322,27323,27324,27325,27326,27327,27328,27329,27330,27331,27332,27333,27334,27335,27336,27337,27338,27339,27340,27341,27342,27343,27344,27345,27346,27347,27348,27349,27350,27351,27352,27353,27354,27355,27356,27357,27358,27359,27360,27361,27362,27363,27364,27365,27366,27367,27368,27369,27370,27371,27372,27373,27374,27375,27376,27377,27378,27379,27380,27381,27382,27383,27384,27385,27386,27387,27388,27389,27390,27391,27392,27393,27394,27395,27396,27397,27398,27399,27400,27401,27402,27403,27404,27405,27406,27407,27408,27409,27410,27411,27412,27413,27414,27415,27416,27417,27418,27419,27420,27421,27422,27423,27424,27425,27426,27427,27428,27429,27430,27431,27432,27433,27434,27435,27436,27437,27438,27439,27440,27441,27442,27443,27444,27445,27446,27447,27448,27449,27450,27451,27452,27453,27454,27455,27456,27457,27458,27459,27460,27461,27462,27463,27464,27465,27466,27467,27468,27469,27470,27471,27472,27473,27474,27475,27476,27477,27478,27479,27480,27481,27482,27483,27484,27485,27486,27487,27488,27489,27490,27491,27492,27493,27494,27495,27496,27497,27498,27499,27500,27501,27502,27503,27504,27505,27506,27507,27508,27509,27510,27511,27512,27513,27514,27515,27516,27517,27518,27519,27520,27521,27522,27523,27524,27525,27526,27527,27528,27529,27530,27531,27532,27533,27534,27535,27536,27537,27538,27539,27540,27541,27542,27543,27544,27545,27546,27547,27548,27549,27550,27551,27552,27553,27554,27555,27556,27557,27558,27559,27560,27561,27562,27563,27564,27565,27566,27567,27568,27569,27570,27571,27572,27573,27574,27575,27576,27577,27578,27579,27580,27581,27582,27583,27584,27585,27586,27587,27588,27589,27590,27591,27592,27593,27594,27595,27596,27597,27598,27599,27600,27601,27602,27603,27604,27605,27606,27607,27608,27609,27610,27611,27612,27613,27614,27615,27616,27617,27618,27619,27620,27621,27622,27623,27624,27625,27626,27627,27628,27629,27630,27631,27632,27633,27634,27635,27636,27637,27638,27639,27640,27641,27642,27643,27644,27645,27646,27647,27648,27649,27650,27651,27652,27653,27654,27655,27656,27657,27658,27659,27660,27661,27662,27663,27664,27665,27666,27667,27668,27669,27670,27671,27672,27673,27674,27675,27676,27677,27678,27679,27680,27681,27682,27683,27684,27685,27686,27687,27688,27689,27690,27691,27692,27693,27694,27695,27696,27697,27698,27699,27700,27701,27702,27703,27704,27705,27706,27707,27708,27709,27710,27711,27712,27713,27714,27715,27716,27717,27718,27719,27720,27721,27722,27723,27724,27725,27726,27727,27728,27729,27730,27731,27732,27733,27734,27735,27736,27737,27738,27739,27740,27741,27742,27743,27744,27745,27746,27747,27748,27749,27750,27751,27752,27753,27754,27755,27756,27757,27758,27759,27760,27761,27762,27763,27764,27765,27766,27767,27768,27769,27770,27771,27772,27773,27774,27775,27776,27777,27778,27779,27780,27781,27782,27783,27784,27785,27786,27787,27788,27789,27790,27791,27792,27793,27794,27795,27796,27797,27798,27799,27800,27801,27802,27803,27804,27805,27806,27807,27808,27809,27810,27811,27812,27813,27814,27815,27816,27817,27818,27819,27820,27821,27822,27823,27824,27825,27826,27827,27828,27829,27830,27831,27832,27833,27834,27835,27836,27837,27838,27839,27840,27841,27842,27843,27844,27845,27846,27847,27848,27849,27850,27851,27852,27853,27854,27855,27856,27857,27858,27859,27860,27861,27862,27863,27864,27865,27866,27867,27868,27869,27870,27871,27872,27873,27874,27875,27876,27877,27878,27879,27880,27881,27882,27883,27884,27885,27886,27887,27888,27889,27890,27891,27892,27893,27894,27895,27896,27897,27898,27899,27900,27901,27902,27903,27904,27905,27906,27907,27908,27909,27910,27911,27912,27913,27914,27915,27916,27917,27918,27919,27920,27921,27922,27923,27924,27925,27926,27927,27928,27929,27930,27931,27932,27933,27934,27935,27936,27937,27938,27939,27940,27941,27942,27943,27944,27945,27946,27947,27948,27949,27950,27951,27952,27953,27954,27955,27956,27957,27958,27959,27960,27961,27962,27963,27964,27965,27966,27967,27968,27969,27970,27971,27972,27973,27974,27975,27976,27977,27978,27979,27980,27981,27982,27983,27984,27985,27986,27987,27988,27989,27990,27991,27992,27993,27994,27995,27996,27997,27998,27999,28000,28001,28002,28003,28004,28005,28006,28007,28008,28009,28010,28011,28012,28013,28014,28015,28016,28017,28018,28019,28020,28021,28022,28023,28024,28025,28026,28027,28028,28029,28030,28031,28032,28033,28034,28035,28036,28037,28038,28039,28040,28041,28042,28043,28044,28045,28046,28047,28048,28049,28050,28051,28052,28053,28054,28055,28056,28057,28058,28059,28060,28061,28062,28063,28064,28065,28066,28067,28068,28069,28070,28071,28072,28073,28074,28075,28076,28077,28078,28079,28080,28081,28082,28083,28084,28085,28086,28087,28088,28089,28090,28091,28092,28093,28094,28095,28096,28097,28098,28099,28100,28101,28102,28103,28104,28105,28106,28107,28108,28109,28110,28111,28112,28113,28114,28115,28116,28117,28118,28119,28120,28121,28122,28123,28124,28125,28126,28127,28128,28129,28130,28131,28132,28133,28134,28135,28136,28137,28138,28139,28140,28141,28142,28143,28144,28145,28146,28147,28148,28149,28150,28151,28152,28153,28154,28155,28156,28157,28158,28159,28160,28161,28162,28163,28164,28165,28166,28167,28168,28169,28170,28171,28172,28173,28174,28175,28176,28177,28178,28179,28180,28181,28182,28183,28184,28185,28186,28187,28188,28189,28190,28191,28192,28193,28194,28195,28196,28197,28198,28199,28200,28201,28202,28203,28204,28205,28206,28207,28208,28209,28210,28211,28212,28213,28214,28215,28216,28217,28218,28219,28220,28221,28222,28223,28224,28225,28226,28227,28228,28229,28230,28231,28232,28233,28234,28235,28236,28237,28238,28239,28240,28241,28242,28243,28244,28245,28246,28247,28248,28249,28250,28251,28252,28253,28254,28255,28256,28257,28258,28259,28260,28261,28262,28263,28264,28265,28266,28267,28268,28269,28270,28271,28272,28273,28274,28275,28276,28277,28278,28279,28280,28281,28282,28283,28284,28285,28286,28287,28288,28289,28290,28291,28292,28293,28294,28295,28296,28297,28298,28299,28300,28301,28302,28303,28304,28305,28306,28307,28308,28309,28310,28311,28312,28313,28314,28315,28316,28317,28318,28319,28320,28321,28322,28323,28324,28325,28326,28327,28328,28329,28330,28331,28332,28333,28334,28335,28336,28337,28338,28339,28340,28341,28342,28343,28344,28345,28346,28347,28348,28349,28350,28351,28352,28353,28354,28355,28356,28357,28358,28359,28360,28361,28362,28363,28364,28365,28366,28367,28368,28369,28370,28371,28372,28373,28374,28375,28376,28377,28378,28379,28380,28381,28382,28383,28384,28385,28386,28387,28388,28389,28390,28391,28392,28393,28394,28395,28396,28397,28398,28399,28400,28401,28402,28403,28404,28405,28406,28407,28408,28409,28410,28411,28412,28413,28414,28415,28416,28417,28418,28419,28420,28421,28422,28423,28424,28425,28426,28427,28428,28429,28430,28431,28432,28433,28434,28435,28436,28437,28438,28439,28440,28441,28442,28443,28444,28445,28446,28447,28448,28449,28450,28451,28452,28453,28454,28455,28456,28457,28458,28459,28460,28461,28462,28463,28464,28465,28466,28467,28468,28469,28470,28471,28472,28473,28474,28475,28476,28477,28478,28479,28480,28481,28482,28483,28484,28485,28486,28487,28488,28489,28490,28491,28492,28493,28494,28495,28496,28497,28498,28499,28500,28501,28502,28503,28504,28505,28506,28507,28508,28509,28510,28511,28512,28513,28514,28515,28516,28517,28518,28519,28520,28521,28522,28523,28524,28525,28526,28527,28528,28529,28530,28531,28532,28533,28534,28535,28536,28537,28538,28539,28540,28541,28542,28543,28544,28545,28546,28547,28548,28549,28550,28551,28552,28553,28554,28555,28556,28557,28558,28559,28560,28561,28562,28563,28564,28565,28566,28567,28568,28569,28570,28571,28572,28573,28574,28575,28576,28577,28578,28579,28580,28581,28582,28583,28584,28585,28586,28587,28588,28589,28590,28591,28592,28593,28594,28595,28596,28597,28598,28599,28600,28601,28602,28603,28604,28605,28606,28607,28608,28609,28610,28611,28612,28613,28614,28615,28616,28617,28618,28619,28620,28621,28622,28623,28624,28625,28626,28627,28628,28629,28630,28631,28632,28633,28634,28635,28636,28637,28638,28639,28640,28641,28642,28643,28644,28645,28646,28647,28648,28649,28650,28651,28652,28653,28654,28655,28656,28657,28658,28659,28660,28661,28662,28663,28664,28665,28666,28667,28668,28669,28670,28671,28672,28673,28674,28675,28676,28677,28678,28679,28680,28681,28682,28683,28684,28685,28686,28687,28688,28689,28690,28691,28692,28693,28694,28695,28696,28697,28698,28699,28700,28701,28702,28703,28704,28705,28706,28707,28708,28709,28710,28711,28712,28713,28714,28715,28716,28717,28718,28719,28720,28721,28722,28723,28724,28725,28726,28727,28728,28729,28730,28731,28732,28733,28734,28735,28736,28737,28738,28739,28740,28741,28742,28743,28744,28745,28746,28747,28748,28749,28750,28751,28752,28753,28754,28755,28756,28757,28758,28759,28760,28761,28762,28763,28764,28765,28766,28767,28768,28769,28770,28771,28772,28773,28774,28775,28776,28777,28778,28779,28780,28781,28782,28783,28784,28785,28786,28787,28788,28789,28790,28791,28792,28793,28794,28795,28796,28797,28798,28799,28800,28801,28802,28803,28804,28805,28806,28807,28808,28809,28810,28811,28812,28813,28814,28815,28816,28817,28818,28819,28820,28821,28822,28823,28824,28825,28826,28827,28828,28829,28830,28831,28832,28833,28834,28835,28836,28837,28838,28839,28840,28841,28842,28843,28844,28845,28846,28847,28848,28849,28850,28851,28852,28853,28854,28855,28856,28857,28858,28859,28860,28861,28862,28863,28864,28865,28866,28867,28868,28869,28870,28871,28872,28873,28874,28875,28876,28877,28878,28879,28880,28881,28882,28883,28884,28885,28886,28887,28888,28889,28890,28891,28892,28893,28894,28895,28896,28897,28898,28899,28900,28901,28902,28903,28904,28905,28906,28907,28908,28909,28910,28911,28912,28913,28914,28915,28916,28917,28918,28919,28920,28921,28922,28923,28924,28925,28926,28927,28928,28929,28930,28931,28932,28933,28934,28935,28936,28937,28938,28939,28940,28941,28942,28943,28944,28945,28946,28947,28948,28949,28950,28951,28952,28953,28954,28955,28956,28957,28958,28959,28960,28961,28962,28963,28964,28965,28966,28967,28968,28969,28970,28971,28972,28973,28974,28975,28976,28977,28978,28979,28980,28981,28982,28983,28984,28985,28986,28987,28988,28989,28990,28991,28992,28993,28994,28995,28996,28997,28998,28999,29000,29001,29002,29003,29004,29005,29006,29007,29008,29009,29010,29011,29012,29013,29014,29015,29016,29017,29018,29019,29020,29021,29022,29023,29024,29025,29026,29027,29028,29029,29030,29031,29032,29033,29034,29035,29036,29037,29038,29039,29040,29041,29042,29043,29044,29045,29046,29047,29048,29049,29050,29051,29052,29053,29054,29055,29056,29057,29058,29059,29060,29061,29062,29063,29064,29065,29066,29067,29068,29069,29070,29071,29072,29073,29074,29075,29076,29077,29078,29079,29080,29081,29082,29083,29084,29085,29086,29087,29088,29089,29090,29091,29092,29093,29094,29095,29096,29097,29098,29099,29100,29101,29102,29103,29104,29105,29106,29107,29108,29109,29110,29111,29112,29113,29114,29115,29116,29117,29118,29119,29120,29121,29122,29123,29124,29125,29126,29127,29128,29129,29130,29131,29132,29133,29134,29135,29136,29137,29138,29139,29140,29141,29142,29143,29144,29145,29146,29147,29148,29149,29150,29151,29152,29153,29154,29155,29156,29157,29158,29159,29160,29161,29162,29163,29164,29165,29166,29167,29168,29169,29170,29171,29172,29173,29174,29175,29176,29177,29178,29179,29180,29181,29182,29183,29184,29185,29186,29187,29188,29189,29190,29191,29192,29193,29194,29195,29196,29197,29198,29199,29200,29201,29202,29203,29204,29205,29206,29207,29208,29209,29210,29211,29212,29213,29214,29215,29216,29217,29218,29219,29220,29221,29222,29223,29224,29225,29226,29227,29228,29229,29230,29231,29232,29233,29234,29235,29236,29237,29238,29239,29240,29241,29242,29243,29244,29245,29246,29247,29248,29249,29250,29251,29252,29253,29254,29255,29256,29257,29258,29259,29260,29261,29262,29263,29264,29265,29266,29267,29268,29269,29270,29271,29272,29273,29274,29275,29276,29277,29278,29279,29280,29281,29282,29283,29284,29285,29286,29287,29288,29289,29290,29291,29292,29293,29294,29295,29296,29297,29298,29299,29300,29301,29302,29303,29304,29305,29306,29307,29308,29309,29310,29311,29312,29313,29314,29315,29316,29317,29318,29319,29320,29321,29322,29323,29324,29325,29326,29327,29328,29329,29330,29331,29332,29333,29334,29335,29336,29337,29338,29339,29340,29341,29342,29343,29344,29345,29346,29347,29348,29349,29350,29351,29352,29353,29354,29355,29356,29357,29358,29359,29360,29361,29362,29363,29364,29365,29366,29367,29368,29369,29370,29371,29372,29373,29374,29375,29376,29377,29378,29379,29380,29381,29382,29383,29384,29385,29386,29387,29388,29389,29390,29391,29392,29393,29394,29395,29396,29397,29398,29399,29400,29401,29402,29403,29404,29405,29406,29407,29408,29409,29410,29411,29412,29413,29414,29415,29416,29417,29418,29419,29420,29421,29422,29423,29424,29425,29426,29427,29428,29429,29430,29431,29432,29433,29434,29435,29436,29437,29438,29439,29440,29441,29442,29443,29444,29445,29446,29447,29448,29449,29450,29451,29452,29453,29454,29455,29456,29457,29458,29459,29460,29461,29462,29463,29464,29465,29466,29467,29468,29469,29470,29471,29472,29473,29474,29475,29476,29477,29478,29479,29480,29481,29482,29483,29484,29485,29486,29487,29488,29489,29490,29491,29492,29493,29494,29495,29496,29497,29498,29499,29500,29501,29502,29503,29504,29505,29506,29507,29508,29509,29510,29511,29512,29513,29514,29515,29516,29517,29518,29519,29520,29521,29522,29523,29524,29525,29526,29527,29528,29529,29530,29531,29532,29533,29534,29535,29536,29537,29538,29539,29540,29541,29542,29543,29544,29545,29546,29547,29548,29549,29550,29551,29552,29553,29554,29555,29556,29557,29558,29559,29560,29561,29562,29563,29564,29565,29566,29567,29568,29569,29570,29571,29572,29573,29574,29575,29576,29577,29578,29579,29580,29581,29582,29583,29584,29585,29586,29587,29588,29589,29590,29591,29592,29593,29594,29595,29596,29597,29598,29599,29600,29601,29602,29603,29604,29605,29606,29607,29608,29609,29610,29611,29612,29613,29614,29615,29616,29617,29618,29619,29620,29621,29622,29623,29624,29625,29626,29627,29628,29629,29630,29631,29632,29633,29634,29635,29636,29637,29638,29639,29640,29641,29642,29643,29644,29645,29646,29647,29648,29649,29650,29651,29652,29653,29654,29655,29656,29657,29658,29659,29660,29661,29662,29663,29664,29665,29666,29667,29668,29669,29670,29671,29672,29673,29674,29675,29676,29677,29678,29679,29680,29681,29682,29683,29684,29685,29686,29687,29688,29689,29690,29691,29692,29693,29694,29695,29696,29697,29698,29699,29700,29701,29702,29703,29704,29705,29706,29707,29708,29709,29710,29711,29712,29713,29714,29715,29716,29717,29718,29719,29720,29721,29722,29723,29724,29725,29726,29727,29728,29729,29730,29731,29732,29733,29734,29735,29736,29737,29738,29739,29740,29741,29742,29743,29744,29745,29746,29747,29748,29749,29750,29751,29752,29753,29754,29755,29756,29757,29758,29759,29760,29761,29762,29763,29764,29765,29766,29767,29768,29769,29770,29771,29772,29773,29774,29775,29776,29777,29778,29779,29780,29781,29782,29783,29784,29785,29786,29787,29788,29789,29790,29791,29792,29793,29794,29795,29796,29797,29798,29799,29800,29801,29802,29803,29804,29805,29806,29807,29808,29809,29810,29811,29812,29813,29814,29815,29816,29817,29818,29819,29820,29821,29822,29823,29824,29825,29826,29827,29828,29829,29830,29831,29832,29833,29834,29835,29836,29837,29838,29839,29840,29841,29842,29843,29844,29845,29846,29847,29848,29849,29850,29851,29852,29853,29854,29855,29856,29857,29858,29859,29860,29861,29862,29863,29864,29865,29866,29867,29868,29869,29870,29871,29872,29873,29874,29875,29876,29877,29878,29879,29880,29881,29882,29883,29884,29885,29886,29887,29888,29889,29890,29891,29892,29893,29894,29895,29896,29897,29898,29899,29900,29901,29902,29903,29904,29905,29906,29907,29908,29909,29910,29911,29912,29913,29914,29915,29916,29917,29918,29919,29920,29921,29922,29923,29924,29925,29926,29927,29928,29929,29930,29931,29932,29933,29934,29935,29936,29937,29938,29939,29940,29941,29942,29943,29944,29945,29946,29947,29948,29949,29950,29951,29952,29953,29954,29955,29956,29957,29958,29959,29960,29961,29962,29963,29964,29965,29966,29967,29968,29969,29970,29971,29972,29973,29974,29975,29976,29977,29978,29979,29980,29981,29982,29983,29984,29985,29986,29987,29988,29989,29990,29991,29992,29993,29994,29995,29996,29997,29998,29999,30000,30001,30002,30003,30004,30005,30006,30007,30008,30009,30010,30011,30012,30013,30014,30015,30016,30017,30018,30019,30020,30021,30022,30023,30024,30025,30026,30027,30028,30029,30030,30031,30032,30033,30034,30035,30036,30037,30038,30039,30040,30041,30042,30043,30044,30045,30046,30047,30048,30049,30050,30051,30052,30053,30054,30055,30056,30057,30058,30059,30060,30061,30062,30063,30064,30065,30066,30067,30068,30069,30070,30071,30072,30073,30074,30075,30076,30077,30078,30079,30080,30081,30082,30083,30084,30085,30086,30087,30088,30089,30090,30091,30092,30093,30094,30095,30096,30097,30098,30099,30100,30101,30102,30103,30104,30105,30106,30107,30108,30109,30110,30111,30112,30113,30114,30115,30116,30117,30118,30119,30120,30121,30122,30123,30124,30125,30126,30127,30128,30129,30130,30131,30132,30133,30134,30135,30136,30137,30138,30139,30140,30141,30142,30143,30144,30145,30146,30147,30148,30149,30150,30151,30152,30153,30154,30155,30156,30157,30158,30159,30160,30161,30162,30163,30164,30165,30166,30167,30168,30169,30170,30171,30172,30173,30174,30175,30176,30177,30178,30179,30180,30181,30182,30183,30184,30185,30186,30187,30188,30189,30190,30191,30192,30193,30194,30195,30196,30197,30198,30199,30200,30201,30202,30203,30204,30205,30206,30207,30208,30209,30210,30211,30212,30213,30214,30215,30216,30217,30218,30219,30220,30221,30222,30223,30224,30225,30226,30227,30228,30229,30230,30231,30232,30233,30234,30235,30236,30237,30238,30239,30240,30241,30242,30243,30244,30245,30246,30247,30248,30249,30250,30251,30252,30253,30254,30255,30256,30257,30258,30259,30260,30261,30262,30263,30264,30265,30266,30267,30268,30269,30270,30271,30272,30273,30274,30275,30276,30277,30278,30279,30280,30281,30282,30283,30284,30285,30286,30287,30288,30289,30290,30291,30292,30293,30294,30295,30296,30297,30298,30299,30300,30301,30302,30303,30304,30305,30306,30307,30308,30309,30310,30311,30312,30313,30314,30315,30316,30317,30318,30319,30320,30321,30322,30323,30324,30325,30326,30327,30328,30329,30330,30331,30332,30333,30334,30335,30336,30337,30338,30339,30340,30341,30342,30343,30344,30345,30346,30347,30348,30349,30350,30351,30352,30353,30354,30355,30356,30357,30358,30359,30360,30361,30362,30363,30364,30365,30366,30367,30368,30369,30370,30371,30372,30373,30374,30375,30376,30377,30378,30379,30380,30381,30382,30383,30384,30385,30386,30387,30388,30389,30390,30391,30392,30393,30394,30395,30396,30397,30398,30399,30400,30401,30402,30403,30404,30405,30406,30407,30408,30409,30410,30411,30412,30413,30414,30415,30416,30417,30418,30419,30420,30421,30422,30423,30424,30425,30426,30427,30428,30429,30430,30431,30432,30433,30434,30435,30436,30437,30438,30439,30440,30441,30442,30443,30444,30445,30446,30447,30448,30449,30450,30451,30452,30453,30454,30455,30456,30457,30458,30459,30460,30461,30462,30463,30464,30465,30466,30467,30468,30469,30470,30471,30472,30473,30474,30475,30476,30477,30478,30479,30480,30481,30482,30483,30484,30485,30486,30487,30488,30489,30490,30491,30492,30493,30494,30495,30496,30497,30498,30499,30500,30501,30502,30503,30504,30505,30506,30507,30508,30509,30510,30511,30512,30513,30514,30515,30516,30517,30518,30519,30520,30521,30522,30523,30524,30525,30526,30527,30528,30529,30530,30531,30532,30533,30534,30535,30536,30537,30538,30539,30540,30541,30542,30543,30544,30545,30546,30547,30548,30549,30550,30551,30552,30553,30554,30555,30556,30557,30558,30559,30560,30561,30562,30563,30564,30565,30566,30567,30568,30569,30570,30571,30572,30573,30574,30575,30576,30577,30578,30579,30580,30581,30582,30583,30584,30585,30586,30587,30588,30589,30590,30591,30592,30593,30594,30595,30596,30597,30598,30599,30600,30601,30602,30603,30604,30605,30606,30607,30608,30609,30610,30611,30612,30613,30614,30615,30616,30617,30618,30619,30620,30621,30622,30623,30624,30625,30626,30627,30628,30629,30630,30631,30632,30633,30634,30635,30636,30637,30638,30639,30640,30641,30642,30643,30644,30645,30646,30647,30648,30649,30650,30651,30652,30653,30654,30655,30656,30657,30658,30659,30660,30661,30662,30663,30664,30665,30666,30667,30668,30669,30670,30671,30672,30673,30674,30675,30676,30677,30678,30679,30680,30681,30682,30683,30684,30685,30686,30687,30688,30689,30690,30691,30692,30693,30694,30695,30696,30697,30698,30699,30700,30701,30702,30703,30704,30705,30706,30707,30708,30709,30710,30711,30712,30713,30714,30715,30716,30717,30718,30719,30720,30721,30722,30723,30724,30725,30726,30727,30728,30729,30730,30731,30732,30733,30734,30735,30736,30737,30738,30739,30740,30741,30742,30743,30744,30745,30746,30747,30748,30749,30750,30751,30752,30753,30754,30755,30756,30757,30758,30759,30760,30761,30762,30763,30764,30765,30766,30767,30768,30769,30770,30771,30772,30773,30774,30775,30776,30777,30778,30779,30780,30781,30782,30783,30784,30785,30786,30787,30788,30789,30790,30791,30792,30793,30794,30795,30796,30797,30798,30799,30800,30801,30802,30803,30804,30805,30806,30807,30808,30809,30810,30811,30812,30813,30814,30815,30816,30817,30818,30819,30820,30821,30822,30823,30824,30825,30826,30827,30828,30829,30830,30831,30832,30833,30834,30835,30836,30837,30838,30839,30840,30841,30842,30843,30844,30845,30846,30847,30848,30849,30850,30851,30852,30853,30854,30855,30856,30857,30858,30859,30860,30861,30862,30863,30864,30865,30866,30867,30868,30869,30870,30871,30872,30873,30874,30875,30876,30877,30878,30879,30880,30881,30882,30883,30884,30885,30886,30887,30888,30889,30890,30891,30892,30893,30894,30895,30896,30897,30898,30899,30900,30901,30902,30903,30904,30905,30906,30907,30908,30909,30910,30911,30912,30913,30914,30915,30916,30917,30918,30919,30920,30921,30922,30923,30924,30925,30926,30927,30928,30929,30930,30931,30932,30933,30934,30935,30936,30937,30938,30939,30940,30941,30942,30943,30944,30945,30946,30947,30948,30949,30950,30951,30952,30953,30954,30955,30956,30957,30958,30959,30960,30961,30962,30963,30964,30965,30966,30967,30968,30969,30970,30971,30972,30973,30974,30975,30976,30977,30978,30979,30980,30981,30982,30983,30984,30985,30986,30987,30988,30989,30990,30991,30992,30993,30994,30995,30996,30997,30998,30999,31000,31001,31002,31003,31004,31005,31006,31007,31008,31009,31010,31011,31012,31013,31014,31015,31016,31017,31018,31019,31020,31021,31022,31023,31024,31025,31026,31027,31028,31029,31030,31031,31032,31033,31034,31035,31036,31037,31038,31039,31040,31041,31042,31043,31044,31045,31046,31047,31048,31049,31050,31051,31052,31053,31054,31055,31056,31057,31058,31059,31060,31061,31062,31063,31064,31065,31066,31067,31068,31069,31070,31071,31072,31073,31074,31075,31076,31077,31078,31079,31080,31081,31082,31083,31084,31085,31086,31087,31088,31089,31090,31091,31092,31093,31094,31095,31096,31097,31098,31099,31100,31101,31102,31103,31104,31105,31106,31107,31108,31109,31110,31111,31112,31113,31114,31115,31116,31117,31118,31119,31120,31121,31122,31123,31124,31125,31126,31127,31128,31129,31130,31131,31132,31133,31134,31135,31136,31137,31138,31139,31140,31141,31142,31143,31144,31145,31146,31147,31148,31149,31150,31151,31152,31153,31154,31155,31156,31157,31158,31159,31160,31161,31162,31163,31164,31165,31166,31167,31168,31169,31170,31171,31172,31173,31174,31175,31176,31177,31178,31179,31180,31181,31182,31183,31184,31185,31186,31187,31188,31189,31190,31191,31192,31193,31194,31195,31196,31197,31198,31199,31200,31201,31202,31203,31204,31205,31206,31207,31208,31209,31210,31211,31212,31213,31214,31215,31216,31217,31218,31219,31220,31221,31222,31223,31224,31225,31226,31227,31228,31229,31230,31231,31232,31233,31234,31235,31236,31237,31238,31239,31240,31241,31242,31243,31244,31245,31246,31247,31248,31249,31250,31251,31252,31253,31254,31255,31256,31257,31258,31259,31260,31261,31262,31263,31264,31265,31266,31267,31268,31269,31270,31271,31272,31273,31274,31275,31276,31277,31278,31279,31280,31281,31282,31283,31284,31285,31286,31287,31288,31289,31290,31291,31292,31293,31294,31295,31296,31297,31298,31299,31300,31301,31302,31303,31304,31305,31306,31307,31308,31309,31310,31311,31312,31313,31314,31315,31316,31317,31318,31319,31320,31321,31322,31323,31324,31325,31326,31327,31328,31329,31330,31331,31332,31333,31334,31335,31336,31337,31338,31339,31340,31341,31342,31343,31344,31345,31346,31347,31348,31349,31350,31351,31352,31353,31354,31355,31356,31357,31358,31359,31360,31361,31362,31363,31364,31365,31366,31367,31368,31369,31370,31371,31372,31373,31374,31375,31376,31377,31378,31379,31380,31381,31382,31383,31384,31385,31386,31387,31388,31389,31390,31391,31392,31393,31394,31395,31396,31397,31398,31399,31400,31401,31402,31403,31404,31405,31406,31407,31408,31409,31410,31411,31412,31413,31414,31415,31416,31417,31418,31419,31420,31421,31422,31423,31424,31425,31426,31427,31428,31429,31430,31431,31432,31433,31434,31435,31436,31437,31438,31439,31440,31441,31442,31443,31444,31445,31446,31447,31448,31449,31450,31451,31452,31453,31454,31455,31456,31457,31458,31459,31460,31461,31462,31463,31464,31465,31466,31467,31468,31469,31470,31471,31472,31473,31474,31475,31476,31477,31478,31479,31480,31481,31482,31483,31484,31485,31486,31487,31488,31489,31490,31491,31492,31493,31494,31495,31496,31497,31498,31499,31500,31501,31502,31503,31504,31505,31506,31507,31508,31509,31510,31511,31512,31513,31514,31515,31516,31517,31518,31519,31520,31521,31522,31523,31524,31525,31526,31527,31528,31529,31530,31531,31532,31533,31534,31535,31536,31537,31538,31539,31540,31541,31542,31543,31544,31545,31546,31547,31548,31549,31550,31551,31552,31553,31554,31555,31556,31557,31558,31559,31560,31561,31562,31563,31564,31565,31566,31567,31568,31569,31570,31571,31572,31573,31574,31575,31576,31577,31578,31579,31580,31581,31582,31583,31584,31585,31586,31587,31588,31589,31590,31591,31592,31593,31594,31595,31596,31597,31598,31599,31600,31601,31602,31603,31604,31605,31606,31607,31608,31609,31610,31611,31612,31613,31614,31615,31616,31617,31618,31619,31620,31621,31622,31623,31624,31625,31626,31627,31628,31629,31630,31631,31632,31633,31634,31635,31636,31637,31638,31639,31640,31641,31642,31643,31644,31645,31646,31647,31648,31649,31650,31651,31652,31653,31654,31655,31656,31657,31658,31659,31660,31661,31662,31663,31664,31665,31666,31667,31668,31669,31670,31671,31672,31673,31674,31675,31676,31677,31678,31679,31680,31681,31682,31683,31684,31685,31686,31687,31688,31689,31690,31691,31692,31693,31694,31695,31696,31697,31698,31699,31700,31701,31702,31703,31704,31705,31706,31707,31708,31709,31710,31711,31712,31713,31714,31715,31716,31717,31718,31719,31720,31721,31722,31723,31724,31725,31726,31727,31728,31729,31730,31731,31732,31733,31734,31735,31736,31737,31738,31739,31740,31741,31742,31743,31744,31745,31746,31747,31748,31749,31750,31751,31752,31753,31754,31755,31756,31757,31758,31759,31760,31761,31762,31763,31764,31765,31766,31767,31768,31769,31770,31771,31772,31773,31774,31775,31776,31777,31778,31779,31780,31781,31782,31783,31784,31785,31786,31787,31788,31789,31790,31791,31792,31793,31794,31795,31796,31797,31798,31799,31800,31801,31802,31803,31804,31805,31806,31807,31808,31809,31810,31811,31812,31813,31814,31815,31816,31817,31818,31819,31820,31821,31822,31823,31824,31825,31826,31827,31828,31829,31830,31831,31832,31833,31834,31835,31836,31837,31838,31839,31840,31841,31842,31843,31844,31845,31846,31847,31848,31849,31850,31851,31852,31853,31854,31855,31856,31857,31858,31859,31860,31861,31862,31863,31864,31865,31866,31867,31868,31869,31870,31871,31872,31873,31874,31875,31876,31877,31878,31879,31880,31881,31882,31883,31884,31885,31886,31887,31888,31889,31890,31891,31892,31893,31894,31895,31896,31897,31898,31899,31900,31901,31902,31903,31904,31905,31906,31907,31908,31909,31910,31911,31912,31913,31914,31915,31916,31917,31918,31919,31920,31921,31922,31923,31924,31925,31926,31927,31928,31929,31930,31931,31932,31933,31934,31935,31936,31937,31938,31939,31940,31941,31942,31943,31944,31945,31946,31947,31948,31949,31950,31951,31952,31953,31954,31955,31956,31957,31958,31959,31960,31961,31962,31963,31964,31965,31966,31967,31968,31969,31970,31971,31972,31973,31974,31975,31976,31977,31978,31979,31980,31981,31982,31983,31984,31985,31986,31987,31988,31989,31990,31991,31992,31993,31994,31995,31996,31997,31998,31999,32000,32001,32002,32003,32004,32005,32006,32007,32008,32009,32010,32011,32012,32013,32014,32015,32016,32017,32018,32019,32020,32021,32022,32023,32024,32025,32026,32027,32028,32029,32030,32031,32032,32033,32034,32035,32036,32037,32038,32039,32040,32041,32042,32043,32044,32045,32046,32047,32048,32049,32050,32051,32052,32053,32054,32055,32056,32057,32058,32059,32060,32061,32062,32063,32064,32065,32066,32067,32068,32069,32070,32071,32072,32073,32074,32075,32076,32077,32078,32079,32080,32081,32082,32083,32084,32085,32086,32087,32088,32089,32090,32091,32092,32093,32094,32095,32096,32097,32098,32099,32100,32101,32102,32103,32104,32105,32106,32107,32108,32109,32110,32111,32112,32113,32114,32115,32116,32117,32118,32119,32120,32121,32122,32123,32124,32125,32126,32127,32128,32129,32130,32131,32132,32133,32134,32135,32136,32137,32138,32139,32140,32141,32142,32143,32144,32145,32146,32147,32148,32149,32150,32151,32152,32153,32154,32155,32156,32157,32158,32159,32160,32161,32162,32163,32164,32165,32166,32167,32168,32169,32170,32171,32172,32173,32174,32175,32176,32177,32178,32179,32180,32181,32182,32183,32184,32185,32186,32187,32188,32189,32190,32191,32192,32193,32194,32195,32196,32197,32198,32199,32200,32201,32202,32203,32204,32205,32206,32207,32208,32209,32210,32211,32212,32213,32214,32215,32216,32217,32218,32219,32220,32221,32222,32223,32224,32225,32226,32227,32228,32229,32230,32231,32232,32233,32234,32235,32236,32237,32238,32239,32240,32241,32242,32243,32244,32245,32246,32247,32248,32249,32250,32251,32252,32253,32254,32255,32256,32257,32258,32259,32260,32261,32262,32263,32264,32265,32266,32267,32268,32269,32270,32271,32272,32273,32274,32275,32276,32277,32278,32279,32280,32281,32282,32283,32284,32285,32286,32287,32288,32289,32290,32291,32292,32293,32294,32295,32296,32297,32298,32299,32300,32301,32302,32303,32304,32305,32306,32307,32308,32309,32310,32311,32312,32313,32314,32315,32316,32317,32318,32319,32320,32321,32322,32323,32324,32325,32326,32327,32328,32329,32330,32331,32332,32333,32334,32335,32336,32337,32338,32339,32340,32341,32342,32343,32344,32345,32346,32347,32348,32349,32350,32351,32352,32353,32354,32355,32356,32357,32358,32359,32360,32361,32362,32363,32364,32365,32366,32367,32368,32369,32370,32371,32372,32373,32374,32375,32376,32377,32378,32379,32380,32381,32382,32383,32384,32385,32386,32387,32388,32389,32390,32391,32392,32393,32394,32395,32396,32397,32398,32399,32400,32401,32402,32403,32404,32405,32406,32407,32408,32409,32410,32411,32412,32413,32414,32415,32416,32417,32418,32419,32420,32421,32422,32423,32424,32425,32426,32427,32428,32429,32430,32431,32432,32433,32434,32435,32436,32437,32438,32439,32440,32441,32442,32443,32444,32445,32446,32447,32448,32449,32450,32451,32452,32453,32454,32455,32456,32457,32458,32459,32460,32461,32462,32463,32464,32465,32466,32467,32468,32469,32470,32471,32472,32473,32474,32475,32476,32477,32478,32479,32480,32481,32482,32483,32484,32485,32486,32487,32488,32489,32490,32491,32492,32493,32494,32495,32496,32497,32498,32499,32500,32501,32502,32503,32504,32505,32506,32507,32508,32509,32510,32511,32512,32513,32514,32515,32516,32517,32518,32519,32520,32521,32522,32523,32524,32525,32526,32527,32528,32529,32530,32531,32532,32533,32534,32535,32536,32537,32538,32539,32540,32541,32542,32543,32544,32545,32546,32547,32548,32549,32550,32551,32552,32553,32554,32555,32556,32557,32558,32559,32560,32561,32562,32563,32564,32565,32566,32567,32568,32569,32570,32571,32572,32573,32574,32575,32576,32577,32578,32579,32580,32581,32582,32583,32584,32585,32586,32587,32588,32589,32590,32591,32592,32593,32594,32595,32596,32597,32598,32599,32600,32601,32602,32603,32604,32605,32606,32607,32608,32609,32610,32611,32612,32613,32614,32615,32616,32617,32618,32619,32620,32621,32622,32623,32624,32625,32626,32627,32628,32629,32630,32631,32632,32633,32634,32635,32636,32637,32638,32639,32640,32641,32642,32643,32644,32645,32646,32647,32648,32649,32650,32651,32652,32653,32654,32655,32656,32657,32658,32659,32660,32661,32662,32663,32664,32665,32666,32667,32668,32669,32670,32671,32672,32673,32674,32675,32676,32677,32678,32679,32680,32681,32682,32683,32684,32685,32686,32687,32688,32689,32690,32691,32692,32693,32694,32695,32696,32697,32698,32699,32700,32701,32702,32703,32704,32705,32706,32707,32708,32709,32710,32711,32712,32713,32714,32715,32716,32717,32718,32719,32720,32721,32722,32723,32724,32725,32726,32727,32728,32729,32730,32731,32732,32733,32734,32735,32736,32737,32738,32739,32740,32741,32742,32743,32744,32745,32746,32747,32748,32749,32750,32751,32752,32753,32754,32755,32756,32757,32758,32759,32760,32761,32762,32763,32764,32765,32766,32767,32768,32769,32770,32771,32772,32773,32774,32775,32776,32777,32778,32779,32780,32781,32782,32783,32784,32785,32786,32787,32788,32789,32790,32791,32792,32793,32794,32795,32796,32797,32798,32799,32800,32801,32802,32803,32804,32805,32806,32807,32808,32809,32810,32811,32812,32813,32814,32815,32816,32817,32818,32819,32820,32821,32822,32823,32824,32825,32826,32827,32828,32829,32830,32831,32832,32833,32834,32835,32836,32837,32838,32839,32840,32841,32842,32843,32844,32845,32846,32847,32848,32849,32850,32851,32852,32853,32854,32855,32856,32857,32858,32859,32860,32861,32862,32863,32864,32865,32866,32867,32868,32869,32870,32871,32872,32873,32874,32875,32876,32877,32878,32879,32880,32881,32882,32883,32884,32885,32886,32887,32888,32889,32890,32891,32892,32893,32894,32895,32896,32897,32898,32899,32900,32901,32902,32903,32904,32905,32906,32907,32908,32909,32910,32911,32912,32913,32914,32915,32916,32917,32918,32919,32920,32921,32922,32923,32924,32925,32926,32927,32928,32929,32930,32931,32932,32933,32934,32935,32936,32937,32938,32939,32940,32941,32942,32943,32944,32945,32946,32947,32948,32949,32950,32951,32952,32953,32954,32955,32956,32957,32958,32959,32960,32961,32962,32963,32964,32965,32966,32967,32968,32969,32970,32971,32972,32973,32974,32975,32976,32977,32978,32979,32980,32981,32982,32983,32984,32985,32986,32987,32988,32989,32990,32991,32992,32993,32994,32995,32996,32997,32998,32999,33000,33001,33002,33003,33004,33005,33006,33007,33008,33009,33010,33011,33012,33013,33014,33015,33016,33017,33018,33019,33020,33021,33022,33023,33024,33025,33026,33027,33028,33029,33030,33031,33032,33033,33034,33035,33036,33037,33038,33039,33040,33041,33042,33043,33044,33045,33046,33047,33048,33049,33050,33051,33052,33053,33054,33055,33056,33057,33058,33059,33060,33061,33062,33063,33064,33065,33066,33067,33068,33069,33070,33071,33072,33073,33074,33075,33076,33077,33078,33079,33080,33081,33082,33083,33084,33085,33086,33087,33088,33089,33090,33091,33092,33093,33094,33095,33096,33097,33098,33099,33100,33101,33102,33103,33104,33105,33106,33107,33108,33109,33110,33111,33112,33113,33114,33115,33116,33117,33118,33119,33120,33121,33122,33123,33124,33125,33126,33127,33128,33129,33130,33131,33132,33133,33134,33135,33136,33137,33138,33139,33140,33141,33142,33143,33144,33145,33146,33147,33148,33149,33150,33151,33152,33153,33154,33155,33156,33157,33158,33159,33160,33161,33162,33163,33164,33165,33166,33167,33168,33169,33170,33171,33172,33173,33174,33175,33176,33177,33178,33179,33180,33181,33182,33183,33184,33185,33186,33187,33188,33189,33190,33191,33192,33193,33194,33195,33196,33197,33198,33199,33200,33201,33202,33203,33204,33205,33206,33207,33208,33209,33210,33211,33212,33213,33214,33215,33216,33217,33218,33219,33220,33221,33222,33223,33224,33225,33226,33227,33228,33229,33230,33231,33232,33233,33234,33235,33236,33237,33238,33239,33240,33241,33242,33243,33244,33245,33246,33247,33248,33249,33250,33251,33252,33253,33254,33255,33256,33257,33258,33259,33260,33261,33262,33263,33264,33265,33266,33267,33268,33269,33270,33271,33272,33273,33274,33275,33276,33277,33278,33279,33280,33281,33282,33283,33284,33285,33286,33287,33288,33289,33290,33291,33292,33293,33294,33295,33296,33297,33298,33299,33300,33301,33302,33303,33304,33305,33306,33307,33308,33309,33310,33311,33312,33313,33314,33315,33316,33317,33318,33319,33320,33321,33322,33323,33324,33325,33326,33327,33328,33329,33330,33331,33332,33333,33334,33335,33336,33337,33338,33339,33340,33341,33342,33343,33344,33345,33346,33347,33348,33349,33350,33351,33352,33353,33354,33355,33356,33357,33358,33359,33360,33361,33362,33363,33364,33365,33366,33367,33368,33369,33370,33371,33372,33373,33374,33375,33376,33377,33378,33379,33380,33381,33382,33383,33384,33385,33386,33387,33388,33389,33390,33391,33392,33393,33394,33395,33396,33397,33398,33399,33400,33401,33402,33403,33404,33405,33406,33407,33408,33409,33410,33411,33412,33413,33414,33415,33416,33417,33418,33419,33420,33421,33422,33423,33424,33425,33426,33427,33428,33429,33430,33431,33432,33433,33434,33435,33436,33437,33438,33439,33440,33441,33442,33443,33444,33445,33446,33447,33448,33449,33450,33451,33452,33453,33454,33455,33456,33457,33458,33459,33460,33461,33462,33463,33464,33465,33466,33467,33468,33469,33470,33471,33472,33473,33474,33475,33476,33477,33478,33479,33480,33481,33482,33483,33484,33485,33486,33487,33488,33489,33490,33491,33492,33493,33494,33495,33496,33497,33498,33499,33500,33501,33502,33503,33504,33505,33506,33507,33508,33509,33510,33511,33512,33513,33514,33515,33516,33517,33518,33519,33520,33521,33522,33523,33524,33525,33526,33527,33528,33529,33530,33531,33532,33533,33534,33535,33536,33537,33538,33539,33540,33541,33542,33543,33544,33545,33546,33547,33548,33549,33550,33551,33552,33553,33554,33555,33556,33557,33558,33559,33560,33561,33562,33563,33564,33565,33566,33567,33568,33569,33570,33571,33572,33573,33574,33575,33576,33577,33578,33579,33580,33581,33582,33583,33584,33585,33586,33587,33588,33589,33590,33591,33592,33593,33594,33595,33596,33597,33598,33599,33600,33601,33602,33603,33604,33605,33606,33607,33608,33609,33610,33611,33612,33613,33614,33615,33616,33617,33618,33619,33620,33621,33622,33623,33624,33625,33626,33627,33628,33629,33630,33631,33632,33633,33634,33635,33636,33637,33638,33639,33640,33641,33642,33643,33644,33645,33646,33647,33648,33649,33650,33651,33652,33653,33654,33655,33656,33657,33658,33659,33660,33661,33662,33663,33664,33665,33666,33667,33668,33669,33670,33671,33672,33673,33674,33675,33676,33677,33678,33679,33680,33681,33682,33683,33684,33685,33686,33687,33688,33689,33690,33691,33692,33693,33694,33695,33696,33697,33698,33699,33700,33701,33702,33703,33704,33705,33706,33707,33708,33709,33710,33711,33712,33713,33714,33715,33716,33717,33718,33719,33720,33721,33722,33723,33724,33725,33726,33727,33728,33729,33730,33731,33732,33733,33734,33735,33736,33737,33738,33739,33740,33741,33742,33743,33744,33745,33746,33747,33748,33749,33750,33751,33752,33753,33754,33755,33756,33757,33758,33759,33760,33761,33762,33763,33764,33765,33766,33767,33768,33769,33770,33771,33772,33773,33774,33775,33776,33777,33778,33779,33780,33781,33782,33783,33784,33785,33786,33787,33788,33789,33790,33791,33792,33793,33794,33795,33796,33797,33798,33799,33800,33801,33802,33803,33804,33805,33806,33807,33808,33809,33810,33811,33812,33813,33814,33815,33816,33817,33818,33819,33820,33821,33822,33823,33824,33825,33826,33827,33828,33829,33830,33831,33832,33833,33834,33835,33836,33837,33838,33839,33840,33841,33842,33843,33844,33845,33846,33847,33848,33849,33850,33851,33852,33853,33854,33855,33856,33857,33858,33859,33860,33861,33862,33863,33864,33865,33866,33867,33868,33869,33870,33871,33872,33873,33874,33875,33876,33877,33878,33879,33880,33881,33882,33883,33884,33885,33886,33887,33888,33889,33890,33891,33892,33893,33894,33895,33896,33897,33898,33899,33900,33901,33902,33903,33904,33905,33906,33907,33908,33909,33910,33911,33912,33913,33914,33915,33916,33917,33918,33919,33920,33921,33922,33923,33924,33925,33926,33927,33928,33929,33930,33931,33932,33933,33934,33935,33936,33937,33938,33939,33940,33941,33942,33943,33944,33945,33946,33947,33948,33949,33950,33951,33952,33953,33954,33955,33956,33957,33958,33959,33960,33961,33962,33963,33964,33965,33966,33967,33968,33969,33970,33971,33972,33973,33974,33975,33976,33977,33978,33979,33980,33981,33982,33983,33984,33985,33986,33987,33988,33989,33990,33991,33992,33993,33994,33995,33996,33997,33998,33999,34000,34001,34002,34003,34004,34005,34006,34007,34008,34009,34010,34011,34012,34013,34014,34015,34016,34017,34018,34019,34020,34021,34022,34023,34024,34025,34026,34027,34028,34029,34030,34031,34032,34033,34034,34035,34036,34037,34038,34039,34040,34041,34042,34043,34044,34045,34046,34047,34048,34049,34050,34051,34052,34053,34054,34055,34056,34057,34058,34059,34060,34061,34062,34063,34064,34065,34066,34067,34068,34069,34070,34071,34072,34073,34074,34075,34076,34077,34078,34079,34080,34081,34082,34083,34084,34085,34086,34087,34088,34089,34090,34091,34092,34093,34094,34095,34096,34097,34098,34099,34100,34101,34102,34103,34104,34105,34106,34107,34108,34109,34110,34111,34112,34113,34114,34115,34116,34117,34118,34119,34120,34121,34122,34123,34124,34125,34126,34127,34128,34129,34130,34131,34132,34133,34134,34135,34136,34137,34138,34139,34140,34141,34142,34143,34144,34145,34146,34147,34148,34149,34150,34151,34152,34153,34154,34155,34156,34157,34158,34159,34160,34161,34162,34163,34164,34165,34166,34167,34168,34169,34170,34171,34172,34173,34174,34175,34176,34177,34178,34179,34180,34181,34182,34183,34184,34185,34186,34187,34188,34189,34190,34191,34192,34193,34194,34195,34196,34197,34198,34199,34200,34201,34202,34203,34204,34205,34206,34207,34208,34209,34210,34211,34212,34213,34214,34215,34216,34217,34218,34219,34220,34221,34222,34223,34224,34225,34226,34227,34228,34229,34230,34231,34232,34233,34234,34235,34236,34237,34238,34239,34240,34241,34242,34243,34244,34245,34246,34247,34248,34249,34250,34251,34252,34253,34254,34255,34256,34257,34258,34259,34260,34261,34262,34263,34264,34265,34266,34267,34268,34269,34270,34271,34272,34273,34274,34275,34276,34277,34278,34279,34280,34281,34282,34283,34284,34285,34286,34287,34288,34289,34290,34291,34292,34293,34294,34295,34296,34297,34298,34299,34300,34301,34302,34303,34304,34305,34306,34307,34308,34309,34310,34311,34312,34313,34314,34315,34316,34317,34318,34319,34320,34321,34322,34323,34324,34325,34326,34327,34328,34329,34330,34331,34332,34333,34334,34335,34336,34337,34338,34339,34340,34341,34342,34343,34344,34345,34346,34347,34348,34349,34350,34351,34352,34353,34354,34355,34356,34357,34358,34359,34360,34361,34362,34363,34364,34365,34366,34367,34368,34369,34370,34371,34372,34373,34374,34375,34376,34377,34378,34379,34380,34381,34382,34383,34384,34385,34386,34387,34388,34389,34390,34391,34392,34393,34394,34395,34396,34397,34398,34399,34400,34401,34402,34403,34404,34405,34406,34407,34408,34409,34410,34411,34412,34413,34414,34415,34416,34417,34418,34419,34420,34421,34422,34423,34424,34425,34426,34427,34428,34429,34430,34431,34432,34433,34434,34435,34436,34437,34438,34439,34440,34441,34442,34443,34444,34445,34446,34447,34448,34449,34450,34451,34452,34453,34454,34455,34456,34457,34458,34459,34460,34461,34462,34463,34464,34465,34466,34467,34468,34469,34470,34471,34472,34473,34474,34475,34476,34477,34478,34479,34480,34481,34482,34483,34484,34485,34486,34487,34488,34489,34490,34491,34492,34493,34494,34495,34496,34497,34498,34499,34500,34501,34502,34503,34504,34505,34506,34507,34508,34509,34510,34511,34512,34513,34514,34515,34516,34517,34518,34519,34520,34521,34522,34523,34524,34525,34526,34527,34528,34529,34530,34531,34532,34533,34534,34535,34536,34537,34538,34539,34540,34541,34542,34543,34544,34545,34546,34547,34548,34549,34550,34551,34552,34553,34554,34555,34556,34557,34558,34559,34560,34561,34562,34563,34564,34565,34566,34567,34568,34569,34570,34571,34572,34573,34574,34575,34576,34577,34578,34579,34580,34581,34582,34583,34584,34585,34586,34587,34588,34589,34590,34591,34592,34593,34594,34595,34596,34597,34598,34599,34600,34601,34602,34603,34604,34605,34606,34607,34608,34609,34610,34611,34612,34613,34614,34615,34616,34617,34618,34619,34620,34621,34622,34623,34624,34625,34626,34627,34628,34629,34630,34631,34632,34633,34634,34635,34636,34637,34638,34639,34640,34641,34642,34643,34644,34645,34646,34647,34648,34649,34650,34651,34652,34653,34654,34655,34656,34657,34658,34659,34660,34661,34662,34663,34664,34665,34666,34667,34668,34669,34670,34671,34672,34673,34674,34675,34676,34677,34678,34679,34680,34681,34682,34683,34684,34685,34686,34687,34688,34689,34690,34691,34692,34693,34694,34695,34696,34697,34698,34699,34700,34701,34702,34703,34704,34705,34706,34707,34708,34709,34710,34711,34712,34713,34714,34715,34716,34717,34718,34719,34720,34721,34722,34723,34724,34725,34726,34727,34728,34729,34730,34731,34732,34733,34734,34735,34736,34737,34738,34739,34740,34741,34742,34743,34744,34745,34746,34747,34748,34749,34750,34751,34752,34753,34754,34755,34756,34757,34758,34759,34760,34761,34762,34763,34764,34765,34766,34767,34768,34769,34770,34771,34772,34773,34774,34775,34776,34777,34778,34779,34780,34781,34782,34783,34784,34785,34786,34787,34788,34789,34790,34791,34792,34793,34794,34795,34796,34797,34798,34799,34800,34801,34802,34803,34804,34805,34806,34807,34808,34809,34810,34811,34812,34813,34814,34815,34816,34817,34818,34819,34820,34821,34822,34823,34824,34825,34826,34827,34828,34829,34830,34831,34832,34833,34834,34835,34836,34837,34838,34839,34840,34841,34842,34843,34844,34845,34846,34847,34848,34849,34850,34851,34852,34853,34854,34855,34856,34857,34858,34859,34860,34861,34862,34863,34864,34865,34866,34867,34868,34869,34870,34871,34872,34873,34874,34875,34876,34877,34878,34879,34880,34881,34882,34883,34884,34885,34886,34887,34888,34889,34890,34891,34892,34893,34894,34895,34896,34897,34898,34899,34900,34901,34902,34903,34904,34905,34906,34907,34908,34909,34910,34911,34912,34913,34914,34915,34916,34917,34918,34919,34920,34921,34922,34923,34924,34925,34926,34927,34928,34929,34930,34931,34932,34933,34934,34935,34936,34937,34938,34939,34940,34941,34942,34943,34944,34945,34946,34947,34948,34949,34950,34951,34952,34953,34954,34955,34956,34957,34958,34959,34960,34961,34962,34963,34964,34965,34966,34967,34968,34969,34970,34971,34972,34973,34974,34975,34976,34977,34978,34979,34980,34981,34982,34983,34984,34985,34986,34987,34988,34989,34990,34991,34992,34993,34994,34995,34996,34997,34998,34999,35000,35001,35002,35003,35004,35005,35006,35007,35008,35009,35010,35011,35012,35013,35014,35015,35016,35017,35018,35019,35020,35021,35022,35023,35024,35025,35026,35027,35028,35029,35030,35031,35032,35033,35034,35035,35036,35037,35038,35039,35040,35041,35042,35043,35044,35045,35046,35047,35048,35049,35050,35051,35052,35053,35054,35055,35056,35057,35058,35059,35060,35061,35062,35063,35064,35065,35066,35067,35068,35069,35070,35071,35072,35073,35074,35075,35076,35077,35078,35079,35080,35081,35082,35083,35084,35085,35086,35087,35088,35089,35090,35091,35092,35093,35094,35095,35096,35097,35098,35099,35100,35101,35102,35103,35104,35105,35106,35107,35108,35109,35110,35111,35112,35113,35114,35115,35116,35117,35118,35119,35120,35121,35122,35123,35124,35125,35126,35127,35128,35129,35130,35131,35132,35133,35134,35135,35136,35137,35138,35139,35140,35141,35142,35143,35144,35145,35146,35147,35148,35149,35150,35151,35152,35153,35154,35155,35156,35157,35158,35159,35160,35161,35162,35163,35164,35165,35166,35167,35168,35169,35170,35171,35172,35173,35174,35175,35176,35177,35178,35179,35180,35181,35182,35183,35184,35185,35186,35187,35188,35189,35190,35191,35192,35193,35194,35195,35196,35197,35198,35199,35200,35201,35202,35203,35204,35205,35206,35207,35208,35209,35210,35211,35212,35213,35214,35215,35216,35217,35218,35219,35220,35221,35222,35223,35224,35225,35226,35227,35228,35229,35230,35231,35232,35233,35234,35235,35236,35237,35238,35239,35240,35241,35242,35243,35244,35245,35246,35247,35248,35249,35250,35251,35252,35253,35254,35255,35256,35257,35258,35259,35260,35261,35262,35263,35264,35265,35266,35267,35268,35269,35270,35271,35272,35273,35274,35275,35276,35277,35278,35279,35280,35281,35282,35283,35284,35285,35286,35287,35288,35289,35290,35291,35292,35293,35294,35295,35296,35297,35298,35299,35300,35301,35302,35303,35304,35305,35306,35307,35308,35309,35310,35311,35312,35313,35314,35315,35316,35317,35318,35319,35320,35321,35322,35323,35324,35325,35326,35327,35328,35329,35330,35331,35332,35333,35334,35335,35336,35337,35338,35339,35340,35341,35342,35343,35344,35345,35346,35347,35348,35349,35350,35351,35352,35353,35354,35355,35356,35357,35358,35359,35360,35361,35362,35363,35364,35365,35366,35367,35368,35369,35370,35371,35372,35373,35374,35375,35376,35377,35378,35379,35380,35381,35382,35383,35384,35385,35386,35387,35388,35389,35390,35391,35392,35393,35394,35395,35396,35397,35398,35399,35400,35401,35402,35403,35404,35405,35406,35407,35408,35409,35410,35411,35412,35413,35414,35415,35416,35417,35418,35419,35420,35421,35422,35423,35424,35425,35426,35427,35428,35429,35430,35431,35432,35433,35434,35435,35436,35437,35438,35439,35440,35441,35442,35443,35444,35445,35446,35447,35448,35449,35450,35451,35452,35453,35454,35455,35456,35457,35458,35459,35460,35461,35462,35463,35464,35465,35466,35467,35468,35469,35470,35471,35472,35473,35474,35475,35476,35477,35478,35479,35480,35481,35482,35483,35484,35485,35486,35487,35488,35489,35490,35491,35492,35493,35494,35495,35496,35497,35498,35499,35500,35501,35502,35503,35504,35505,35506,35507,35508,35509,35510,35511,35512,35513,35514,35515,35516,35517,35518,35519,35520,35521,35522,35523,35524,35525,35526,35527,35528,35529,35530,35531,35532,35533,35534,35535,35536,35537,35538,35539,35540,35541,35542,35543,35544,35545,35546,35547,35548,35549,35550,35551,35552,35553,35554,35555,35556,35557,35558,35559,35560,35561,35562,35563,35564,35565,35566,35567,35568,35569,35570,35571,35572,35573,35574,35575,35576,35577,35578,35579,35580,35581,35582,35583,35584,35585,35586,35587,35588,35589,35590,35591,35592,35593,35594,35595,35596,35597,35598,35599,35600,35601,35602,35603,35604,35605,35606,35607,35608,35609,35610,35611,35612,35613,35614,35615,35616,35617,35618,35619,35620,35621,35622,35623,35624,35625,35626,35627,35628,35629,35630,35631,35632,35633,35634,35635,35636,35637,35638,35639,35640,35641,35642,35643,35644,35645,35646,35647,35648,35649,35650,35651,35652,35653,35654,35655,35656,35657,35658,35659,35660,35661,35662,35663,35664,35665,35666,35667,35668,35669,35670,35671,35672,35673,35674,35675,35676,35677,35678,35679,35680,35681,35682,35683,35684,35685,35686,35687,35688,35689,35690,35691,35692,35693,35694,35695,35696,35697,35698,35699,35700,35701,35702,35703,35704,35705,35706,35707,35708,35709,35710,35711,35712,35713,35714,35715,35716,35717,35718,35719,35720,35721,35722,35723,35724,35725,35726,35727,35728,35729,35730,35731,35732,35733,35734,35735,35736,35737,35738,35739,35740,35741,35742,35743,35744,35745,35746,35747,35748,35749,35750,35751,35752,35753,35754,35755,35756,35757,35758,35759,35760,35761,35762,35763,35764,35765,35766,35767,35768,35769,35770,35771,35772,35773,35774,35775,35776,35777,35778,35779,35780,35781,35782,35783,35784,35785,35786,35787,35788,35789,35790,35791,35792,35793,35794,35795,35796,35797,35798,35799,35800,35801,35802,35803,35804,35805,35806,35807,35808,35809,35810,35811,35812,35813,35814,35815,35816,35817,35818,35819,35820,35821,35822,35823,35824,35825,35826,35827,35828,35829,35830,35831,35832,35833,35834,35835,35836,35837,35838,35839,35840,35841,35842,35843,35844,35845,35846,35847,35848,35849,35850,35851,35852,35853,35854,35855,35856,35857,35858,35859,35860,35861,35862,35863,35864,35865,35866,35867,35868,35869,35870,35871,35872,35873,35874,35875,35876,35877,35878,35879,35880,35881,35882,35883,35884,35885,35886,35887,35888,35889,35890,35891,35892,35893,35894,35895,35896,35897,35898,35899,35900,35901,35902,35903,35904,35905,35906,35907,35908,35909,35910,35911,35912,35913,35914,35915,35916,35917,35918,35919,35920,35921,35922,35923,35924,35925,35926,35927,35928,35929,35930,35931,35932,35933,35934,35935,35936,35937,35938,35939,35940,35941,35942,35943,35944,35945,35946,35947,35948,35949,35950,35951,35952,35953,35954,35955,35956,35957,35958,35959,35960,35961,35962,35963,35964,35965,35966,35967,35968,35969,35970,35971,35972,35973,35974,35975,35976,35977,35978,35979,35980,35981,35982,35983,35984,35985,35986,35987,35988,35989,35990,35991,35992,35993,35994,35995,35996,35997,35998,35999,36000,36001,36002,36003,36004,36005,36006,36007,36008,36009,36010,36011,36012,36013,36014,36015,36016,36017,36018,36019,36020,36021,36022,36023,36024,36025,36026,36027,36028,36029,36030,36031,36032,36033,36034,36035,36036,36037,36038,36039,36040,36041,36042,36043,36044,36045,36046,36047,36048,36049,36050,36051,36052,36053,36054,36055,36056,36057,36058,36059,36060,36061,36062,36063,36064,36065,36066,36067,36068,36069,36070,36071,36072,36073,36074,36075,36076,36077,36078,36079,36080,36081,36082,36083,36084,36085,36086,36087,36088,36089,36090,36091,36092,36093,36094,36095,36096,36097,36098,36099,36100,36101,36102,36103,36104,36105,36106,36107,36108,36109,36110,36111,36112,36113,36114,36115,36116,36117,36118,36119,36120,36121,36122,36123,36124,36125,36126,36127,36128,36129,36130,36131,36132,36133,36134,36135,36136,36137,36138,36139,36140,36141,36142,36143,36144,36145,36146,36147,36148,36149,36150,36151,36152,36153,36154,36155,36156,36157,36158,36159,36160,36161,36162,36163,36164,36165,36166,36167,36168,36169,36170,36171,36172,36173,36174,36175,36176,36177,36178,36179,36180,36181,36182,36183,36184,36185,36186,36187,36188,36189,36190,36191,36192,36193,36194,36195,36196,36197,36198,36199,36200,36201,36202,36203,36204,36205,36206,36207,36208,36209,36210,36211,36212,36213,36214,36215,36216,36217,36218,36219,36220,36221,36222,36223,36224,36225,36226,36227,36228,36229,36230,36231,36232,36233,36234,36235,36236,36237,36238,36239,36240,36241,36242,36243,36244,36245,36246,36247,36248,36249,36250,36251,36252,36253,36254,36255,36256,36257,36258,36259,36260,36261,36262,36263,36264,36265,36266,36267,36268,36269,36270,36271,36272,36273,36274,36275,36276,36277,36278,36279,36280,36281,36282,36283,36284,36285,36286,36287,36288,36289,36290,36291,36292,36293,36294,36295,36296,36297,36298,36299,36300,36301,36302,36303,36304,36305,36306,36307,36308,36309,36310,36311,36312,36313,36314,36315,36316,36317,36318,36319,36320,36321,36322,36323,36324,36325,36326,36327,36328,36329,36330,36331,36332,36333,36334,36335,36336,36337,36338,36339,36340,36341,36342,36343,36344,36345,36346,36347,36348,36349,36350,36351,36352,36353,36354,36355,36356,36357,36358,36359,36360,36361,36362,36363,36364,36365,36366,36367,36368,36369,36370,36371,36372,36373,36374,36375,36376,36377,36378,36379,36380,36381,36382,36383,36384,36385,36386,36387,36388,36389,36390,36391,36392,36393,36394,36395,36396,36397,36398,36399,36400,36401,36402,36403,36404,36405,36406,36407,36408,36409,36410,36411,36412,36413,36414,36415,36416,36417,36418,36419,36420,36421,36422,36423,36424,36425,36426,36427,36428,36429,36430,36431,36432,36433,36434,36435,36436,36437,36438,36439,36440,36441,36442,36443,36444,36445,36446,36447,36448,36449,36450,36451,36452,36453,36454,36455,36456,36457,36458,36459,36460,36461,36462,36463,36464,36465,36466,36467,36468,36469,36470,36471,36472,36473,36474,36475,36476,36477,36478,36479,36480,36481,36482,36483,36484,36485,36486,36487,36488,36489,36490,36491,36492,36493,36494,36495,36496,36497,36498,36499,36500,36501,36502,36503,36504,36505,36506,36507,36508,36509,36510,36511,36512,36513,36514,36515,36516,36517,36518,36519,36520,36521,36522,36523,36524,36525,36526,36527,36528,36529,36530,36531,36532,36533,36534,36535,36536,36537,36538,36539,36540,36541,36542,36543,36544,36545,36546,36547,36548,36549,36550,36551,36552,36553,36554,36555,36556,36557,36558,36559,36560,36561,36562,36563,36564,36565,36566,36567,36568,36569,36570,36571,36572,36573,36574,36575,36576,36577,36578,36579,36580,36581,36582,36583,36584,36585,36586,36587,36588,36589,36590,36591,36592,36593,36594,36595,36596,36597,36598,36599,36600,36601,36602,36603,36604,36605,36606,36607,36608,36609,36610,36611,36612,36613,36614,36615,36616,36617,36618,36619,36620,36621,36622,36623,36624,36625,36626,36627,36628,36629,36630,36631,36632,36633,36634,36635,36636,36637,36638,36639,36640,36641,36642,36643,36644,36645,36646,36647,36648,36649,36650,36651,36652,36653,36654,36655,36656,36657,36658,36659,36660,36661,36662,36663,36664,36665,36666,36667,36668,36669,36670,36671,36672,36673,36674,36675,36676,36677,36678,36679,36680,36681,36682,36683,36684,36685,36686,36687,36688,36689,36690,36691,36692,36693,36694,36695,36696,36697,36698,36699,36700,36701,36702,36703,36704,36705,36706,36707,36708,36709,36710,36711,36712,36713,36714,36715,36716,36717,36718,36719,36720,36721,36722,36723,36724,36725,36726,36727,36728,36729,36730,36731,36732,36733,36734,36735,36736,36737,36738,36739,36740,36741,36742,36743,36744,36745,36746,36747,36748,36749,36750,36751,36752,36753,36754,36755,36756,36757,36758,36759,36760,36761,36762,36763,36764,36765,36766,36767,36768,36769,36770,36771,36772,36773,36774,36775,36776,36777,36778,36779,36780,36781,36782,36783,36784,36785,36786,36787,36788,36789,36790,36791,36792,36793,36794,36795,36796,36797,36798,36799,36800,36801,36802,36803,36804,36805,36806,36807,36808,36809,36810,36811,36812,36813,36814,36815,36816,36817,36818,36819,36820,36821,36822,36823,36824,36825,36826,36827,36828,36829,36830,36831,36832,36833,36834,36835,36836,36837,36838,36839,36840,36841,36842,36843,36844,36845,36846,36847,36848,36849,36850,36851,36852,36853,36854,36855,36856,36857,36858,36859,36860,36861,36862,36863,36864,36865,36866,36867,36868,36869,36870,36871,36872,36873,36874,36875,36876,36877,36878,36879,36880,36881,36882,36883,36884,36885,36886,36887,36888,36889,36890,36891,36892,36893,36894,36895,36896,36897,36898,36899,36900,36901,36902,36903,36904,36905,36906,36907,36908,36909,36910,36911,36912,36913,36914,36915,36916,36917,36918,36919,36920,36921,36922,36923,36924,36925,36926,36927,36928,36929,36930,36931,36932,36933,36934,36935,36936,36937,36938,36939,36940,36941,36942,36943,36944,36945,36946,36947,36948,36949,36950,36951,36952,36953,36954,36955,36956,36957,36958,36959,36960,36961,36962,36963,36964,36965,36966,36967,36968,36969,36970,36971,36972,36973,36974,36975,36976,36977,36978,36979,36980,36981,36982,36983,36984,36985,36986,36987,36988,36989,36990,36991,36992,36993,36994,36995,36996,36997,36998,36999,37000,37001,37002,37003,37004,37005,37006,37007,37008,37009,37010,37011,37012,37013,37014,37015,37016,37017,37018,37019,37020,37021,37022,37023,37024,37025,37026,37027,37028,37029,37030,37031,37032,37033,37034,37035,37036,37037,37038,37039,37040,37041,37042,37043,37044,37045,37046,37047,37048,37049,37050,37051,37052,37053,37054,37055,37056,37057,37058,37059,37060,37061,37062,37063,37064,37065,37066,37067,37068,37069,37070,37071,37072,37073,37074,37075,37076,37077,37078,37079,37080,37081,37082,37083,37084,37085,37086,37087,37088,37089,37090,37091,37092,37093,37094,37095,37096,37097,37098,37099,37100,37101,37102,37103,37104,37105,37106,37107,37108,37109,37110,37111,37112,37113,37114,37115,37116,37117,37118,37119,37120,37121,37122,37123,37124,37125,37126,37127,37128,37129,37130,37131,37132,37133,37134,37135,37136,37137,37138,37139,37140,37141,37142,37143,37144,37145,37146,37147,37148,37149,37150,37151,37152,37153,37154,37155,37156,37157,37158,37159,37160,37161,37162,37163,37164,37165,37166,37167,37168,37169,37170,37171,37172,37173,37174,37175,37176,37177,37178,37179,37180,37181,37182,37183,37184,37185,37186,37187,37188,37189,37190,37191,37192,37193,37194,37195,37196,37197,37198,37199,37200,37201,37202,37203,37204,37205,37206,37207,37208,37209,37210,37211,37212,37213,37214,37215,37216,37217,37218,37219,37220,37221,37222,37223,37224,37225,37226,37227,37228,37229,37230,37231,37232,37233,37234,37235,37236,37237,37238,37239,37240,37241,37242,37243,37244,37245,37246,37247,37248,37249,37250,37251,37252,37253,37254,37255,37256,37257,37258,37259,37260,37261,37262,37263,37264,37265,37266,37267,37268,37269,37270,37271,37272,37273,37274,37275,37276,37277,37278,37279,37280,37281,37282,37283,37284,37285,37286,37287,37288,37289,37290,37291,37292,37293,37294,37295,37296,37297,37298,37299,37300,37301,37302,37303,37304,37305,37306,37307,37308,37309,37310,37311,37312,37313,37314,37315,37316,37317,37318,37319,37320,37321,37322,37323,37324,37325,37326,37327,37328,37329,37330,37331,37332,37333,37334,37335,37336,37337,37338,37339,37340,37341,37342,37343,37344,37345,37346,37347,37348,37349,37350,37351,37352,37353,37354,37355,37356,37357,37358,37359,37360,37361,37362,37363,37364,37365,37366,37367,37368,37369,37370,37371,37372,37373,37374,37375,37376,37377,37378,37379,37380,37381,37382,37383,37384,37385,37386,37387,37388,37389,37390,37391,37392,37393,37394,37395,37396,37397,37398,37399,37400,37401,37402,37403,37404,37405,37406,37407,37408,37409,37410,37411,37412,37413,37414,37415,37416,37417,37418,37419,37420,37421,37422,37423,37424,37425,37426,37427,37428,37429,37430,37431,37432,37433,37434,37435,37436,37437,37438,37439,37440,37441,37442,37443,37444,37445,37446,37447,37448,37449,37450,37451,37452,37453,37454,37455,37456,37457,37458,37459,37460,37461,37462,37463,37464,37465,37466,37467,37468,37469,37470,37471,37472,37473,37474,37475,37476,37477,37478,37479,37480,37481,37482,37483,37484,37485,37486,37487,37488,37489,37490,37491,37492,37493,37494,37495,37496,37497,37498,37499,37500,37501,37502,37503,37504,37505,37506,37507,37508,37509,37510,37511,37512,37513,37514,37515,37516,37517,37518,37519,37520,37521,37522,37523,37524,37525,37526,37527,37528,37529,37530,37531,37532,37533,37534,37535,37536,37537,37538,37539,37540,37541,37542,37543,37544,37545,37546,37547,37548,37549,37550,37551,37552,37553,37554,37555,37556,37557,37558,37559,37560,37561,37562,37563,37564,37565,37566,37567,37568,37569,37570,37571,37572,37573,37574,37575,37576,37577,37578,37579,37580,37581,37582,37583,37584,37585,37586,37587,37588,37589,37590,37591,37592,37593,37594,37595,37596,37597,37598,37599,37600,37601,37602,37603,37604,37605,37606,37607,37608,37609,37610,37611,37612,37613,37614,37615,37616,37617,37618,37619,37620,37621,37622,37623,37624,37625,37626,37627,37628,37629,37630,37631,37632,37633,37634,37635,37636,37637,37638,37639,37640,37641,37642,37643,37644,37645,37646,37647,37648,37649,37650,37651,37652,37653,37654,37655,37656,37657,37658,37659,37660,37661,37662,37663,37664,37665,37666,37667,37668,37669,37670,37671,37672,37673,37674,37675,37676,37677,37678,37679,37680,37681,37682,37683,37684,37685,37686,37687,37688,37689,37690,37691,37692,37693,37694,37695,37696,37697,37698,37699,37700,37701,37702,37703,37704,37705,37706,37707,37708,37709,37710,37711,37712,37713,37714,37715,37716,37717,37718,37719,37720,37721,37722,37723,37724,37725,37726,37727,37728,37729,37730,37731,37732,37733,37734,37735,37736,37737,37738,37739,37740,37741,37742,37743,37744,37745,37746,37747,37748,37749,37750,37751,37752,37753,37754,37755,37756,37757,37758,37759,37760,37761,37762,37763,37764,37765,37766,37767,37768,37769,37770,37771,37772,37773,37774,37775,37776,37777,37778,37779,37780,37781,37782,37783,37784,37785,37786,37787,37788,37789,37790,37791,37792,37793,37794,37795,37796,37797,37798,37799,37800,37801,37802,37803,37804,37805,37806,37807,37808,37809,37810,37811,37812,37813,37814,37815,37816,37817,37818,37819,37820,37821,37822,37823,37824,37825,37826,37827,37828,37829,37830,37831,37832,37833,37834,37835,37836,37837,37838,37839,37840,37841,37842,37843,37844,37845,37846,37847,37848,37849,37850,37851,37852,37853,37854,37855,37856,37857,37858,37859,37860,37861,37862,37863,37864,37865,37866,37867,37868,37869,37870,37871,37872,37873,37874,37875,37876,37877,37878,37879,37880,37881,37882,37883,37884,37885,37886,37887,37888,37889,37890,37891,37892,37893,37894,37895,37896,37897,37898,37899,37900,37901,37902,37903,37904,37905,37906,37907,37908,37909,37910,37911,37912,37913,37914,37915,37916,37917,37918,37919,37920,37921,37922,37923,37924,37925,37926,37927,37928,37929,37930,37931,37932,37933,37934,37935,37936,37937,37938,37939,37940,37941,37942,37943,37944,37945,37946,37947,37948,37949,37950,37951,37952,37953,37954,37955,37956,37957,37958,37959,37960,37961,37962,37963,37964,37965,37966,37967,37968,37969,37970,37971,37972,37973,37974,37975,37976,37977,37978,37979,37980,37981,37982,37983,37984,37985,37986,37987,37988,37989,37990,37991,37992,37993,37994,37995,37996,37997,37998,37999,38000,38001,38002,38003,38004,38005,38006,38007,38008,38009,38010,38011,38012,38013,38014,38015,38016,38017,38018,38019,38020,38021,38022,38023,38024,38025,38026,38027,38028,38029,38030,38031,38032,38033,38034,38035,38036,38037,38038,38039,38040,38041,38042,38043,38044,38045,38046,38047,38048,38049,38050,38051,38052,38053,38054,38055,38056,38057,38058,38059,38060,38061,38062,38063,38064,38065,38066,38067,38068,38069,38070,38071,38072,38073,38074,38075,38076,38077,38078,38079,38080,38081,38082,38083,38084,38085,38086,38087,38088,38089,38090,38091,38092,38093,38094,38095,38096,38097,38098,38099,38100,38101,38102,38103,38104,38105,38106,38107,38108,38109,38110,38111,38112,38113,38114,38115,38116,38117,38118,38119,38120,38121,38122,38123,38124,38125,38126,38127,38128,38129,38130,38131,38132,38133,38134,38135,38136,38137,38138,38139,38140,38141,38142,38143,38144,38145,38146,38147,38148,38149,38150,38151,38152,38153,38154,38155,38156,38157,38158,38159,38160,38161,38162,38163,38164,38165,38166,38167,38168,38169,38170,38171,38172,38173,38174,38175,38176,38177,38178,38179,38180,38181,38182,38183,38184,38185,38186,38187,38188,38189,38190,38191,38192,38193,38194,38195,38196,38197,38198,38199,38200,38201,38202,38203,38204,38205,38206,38207,38208,38209,38210,38211,38212,38213,38214,38215,38216,38217,38218,38219,38220,38221,38222,38223,38224,38225,38226,38227,38228,38229,38230,38231,38232,38233,38234,38235,38236,38237,38238,38239,38240,38241,38242,38243,38244,38245,38246,38247,38248,38249,38250,38251,38252,38253,38254,38255,38256,38257,38258,38259,38260,38261,38262,38263,38264,38265,38266,38267,38268,38269,38270,38271,38272,38273,38274,38275,38276,38277,38278,38279,38280,38281,38282,38283,38284,38285,38286,38287,38288,38289,38290,38291,38292,38293,38294,38295,38296,38297,38298,38299,38300,38301,38302,38303,38304,38305,38306,38307,38308,38309,38310,38311,38312,38313,38314,38315,38316,38317,38318,38319,38320,38321,38322,38323,38324,38325,38326,38327,38328,38329,38330,38331,38332,38333,38334,38335,38336,38337,38338,38339,38340,38341,38342,38343,38344,38345,38346,38347,38348,38349,38350,38351,38352,38353,38354,38355,38356,38357,38358,38359,38360,38361,38362,38363,38364,38365,38366,38367,38368,38369,38370,38371,38372,38373,38374,38375,38376,38377,38378,38379,38380,38381,38382,38383,38384,38385,38386,38387,38388,38389,38390,38391,38392,38393,38394,38395,38396,38397,38398,38399,38400,38401,38402,38403,38404,38405,38406,38407,38408,38409,38410,38411,38412,38413,38414,38415,38416,38417,38418,38419,38420,38421,38422,38423,38424,38425,38426,38427,38428,38429,38430,38431,38432,38433,38434,38435,38436,38437,38438,38439,38440,38441,38442,38443,38444,38445,38446,38447,38448,38449,38450,38451,38452,38453,38454,38455,38456,38457,38458,38459,38460,38461,38462,38463,38464,38465,38466,38467,38468,38469,38470,38471,38472,38473,38474,38475,38476,38477,38478,38479,38480,38481,38482,38483,38484,38485,38486,38487,38488,38489,38490,38491,38492,38493,38494,38495,38496,38497,38498,38499,38500,38501,38502,38503,38504,38505,38506,38507,38508,38509,38510,38511,38512,38513,38514,38515,38516,38517,38518,38519,38520,38521,38522,38523,38524,38525,38526,38527,38528,38529,38530,38531,38532,38533,38534,38535,38536,38537,38538,38539,38540,38541,38542,38543,38544,38545,38546,38547,38548,38549,38550,38551,38552,38553,38554,38555,38556,38557,38558,38559,38560,38561,38562,38563,38564,38565,38566,38567,38568,38569,38570,38571,38572,38573,38574,38575,38576,38577,38578,38579,38580,38581,38582,38583,38584,38585,38586,38587,38588,38589,38590,38591,38592,38593,38594,38595,38596,38597,38598,38599,38600,38601,38602,38603,38604,38605,38606,38607,38608,38609,38610,38611,38612,38613,38614,38615,38616,38617,38618,38619,38620,38621,38622,38623,38624,38625,38626,38627,38628,38629,38630,38631,38632,38633,38634,38635,38636,38637,38638,38639,38640,38641,38642,38643,38644,38645,38646,38647,38648,38649,38650,38651,38652,38653,38654,38655,38656,38657,38658,38659,38660,38661,38662,38663,38664,38665,38666,38667,38668,38669,38670,38671,38672,38673,38674,38675,38676,38677,38678,38679,38680,38681,38682,38683,38684,38685,38686,38687,38688,38689,38690,38691,38692,38693,38694,38695,38696,38697,38698,38699,38700,38701,38702,38703,38704,38705,38706,38707,38708,38709,38710,38711,38712,38713,38714,38715,38716,38717,38718,38719,38720,38721,38722,38723,38724,38725,38726,38727,38728,38729,38730,38731,38732,38733,38734,38735,38736,38737,38738,38739,38740,38741,38742,38743,38744,38745,38746,38747,38748,38749,38750,38751,38752,38753,38754,38755,38756,38757,38758,38759,38760,38761,38762,38763,38764,38765,38766,38767,38768,38769,38770,38771,38772,38773,38774,38775,38776,38777,38778,38779,38780,38781,38782,38783,38784,38785,38786,38787,38788,38789,38790,38791,38792,38793,38794,38795,38796,38797,38798,38799,38800,38801,38802,38803,38804,38805,38806,38807,38808,38809,38810,38811,38812,38813,38814,38815,38816,38817,38818,38819,38820,38821,38822,38823,38824,38825,38826,38827,38828,38829,38830,38831,38832,38833,38834,38835,38836,38837,38838,38839,38840,38841,38842,38843,38844,38845,38846,38847,38848,38849,38850,38851,38852,38853,38854,38855,38856,38857,38858,38859,38860,38861,38862,38863,38864,38865,38866,38867,38868,38869,38870,38871,38872,38873,38874,38875,38876,38877,38878,38879,38880,38881,38882,38883,38884,38885,38886,38887,38888,38889,38890,38891,38892,38893,38894,38895,38896,38897,38898,38899,38900,38901,38902,38903,38904,38905,38906,38907,38908,38909,38910,38911,38912,38913,38914,38915,38916,38917,38918,38919,38920,38921,38922,38923,38924,38925,38926,38927,38928,38929,38930,38931,38932,38933,38934,38935,38936,38937,38938,38939,38940,38941,38942,38943,38944,38945,38946,38947,38948,38949,38950,38951,38952,38953,38954,38955,38956,38957,38958,38959,38960,38961,38962,38963,38964,38965,38966,38967,38968,38969,38970,38971,38972,38973,38974,38975,38976,38977,38978,38979,38980,38981,38982,38983,38984,38985,38986,38987,38988,38989,38990,38991,38992,38993,38994,38995,38996,38997,38998,38999,39000,39001,39002,39003,39004,39005,39006,39007,39008,39009,39010,39011,39012,39013,39014,39015,39016,39017,39018,39019,39020,39021,39022,39023,39024,39025,39026,39027,39028,39029,39030,39031,39032,39033,39034,39035,39036,39037,39038,39039,39040,39041,39042,39043,39044,39045,39046,39047,39048,39049,39050,39051,39052,39053,39054,39055,39056,39057,39058,39059,39060,39061,39062,39063,39064,39065,39066,39067,39068,39069,39070,39071,39072,39073,39074,39075,39076,39077,39078,39079,39080,39081,39082,39083,39084,39085,39086,39087,39088,39089,39090,39091,39092,39093,39094,39095,39096,39097,39098,39099,39100,39101,39102,39103,39104,39105,39106,39107,39108,39109,39110,39111,39112,39113,39114,39115,39116,39117,39118,39119,39120,39121,39122,39123,39124,39125,39126,39127,39128,39129,39130,39131,39132,39133,39134,39135,39136,39137,39138,39139,39140,39141,39142,39143,39144,39145,39146,39147,39148,39149,39150,39151,39152,39153,39154,39155,39156,39157,39158,39159,39160,39161,39162,39163,39164,39165,39166,39167,39168,39169,39170,39171,39172,39173,39174,39175,39176,39177,39178,39179,39180,39181,39182,39183,39184,39185,39186,39187,39188,39189,39190,39191,39192,39193,39194,39195,39196,39197,39198,39199,39200,39201,39202,39203,39204,39205,39206,39207,39208,39209,39210,39211,39212,39213,39214,39215,39216,39217,39218,39219,39220,39221,39222,39223,39224,39225,39226,39227,39228,39229,39230,39231,39232,39233,39234,39235,39236,39237,39238,39239,39240,39241,39242,39243,39244,39245,39246,39247,39248,39249,39250,39251,39252,39253,39254,39255,39256,39257,39258,39259,39260,39261,39262,39263,39264,39265,39266,39267,39268,39269,39270,39271,39272,39273,39274,39275,39276,39277,39278,39279,39280,39281,39282,39283,39284,39285,39286,39287,39288,39289,39290,39291,39292,39293,39294,39295,39296,39297,39298,39299,39300,39301,39302,39303,39304,39305,39306,39307,39308,39309,39310,39311,39312,39313,39314,39315,39316,39317,39318,39319,39320,39321,39322,39323,39324,39325,39326,39327,39328,39329,39330,39331,39332,39333,39334,39335,39336,39337,39338,39339,39340,39341,39342,39343,39344,39345,39346,39347,39348,39349,39350,39351,39352,39353,39354,39355,39356,39357,39358,39359,39360,39361,39362,39363,39364,39365,39366,39367,39368,39369,39370,39371,39372,39373,39374,39375,39376,39377,39378,39379,39380,39381,39382,39383,39384,39385,39386,39387,39388,39389,39390,39391,39392,39393,39394,39395,39396,39397,39398,39399,39400,39401,39402,39403,39404,39405,39406,39407,39408,39409,39410,39411,39412,39413,39414,39415,39416,39417,39418,39419,39420,39421,39422,39423,39424,39425,39426,39427,39428,39429,39430,39431,39432,39433,39434,39435,39436,39437,39438,39439,39440,39441,39442,39443,39444,39445,39446,39447,39448,39449,39450,39451,39452,39453,39454,39455,39456,39457,39458,39459,39460,39461,39462,39463,39464,39465,39466,39467,39468,39469,39470,39471,39472,39473,39474,39475,39476,39477,39478,39479,39480,39481,39482,39483,39484,39485,39486,39487,39488,39489,39490,39491,39492,39493,39494,39495,39496,39497,39498,39499,39500,39501,39502,39503,39504,39505,39506,39507,39508,39509,39510,39511,39512,39513,39514,39515,39516,39517,39518,39519,39520,39521,39522,39523,39524,39525,39526,39527,39528,39529,39530,39531,39532,39533,39534,39535,39536,39537,39538,39539,39540,39541,39542,39543,39544,39545,39546,39547,39548,39549,39550,39551,39552,39553,39554,39555,39556,39557,39558,39559,39560,39561,39562,39563,39564,39565,39566,39567,39568,39569,39570,39571,39572,39573,39574,39575,39576,39577,39578,39579,39580,39581,39582,39583,39584,39585,39586,39587,39588,39589,39590,39591,39592,39593,39594,39595,39596,39597,39598,39599,39600,39601,39602,39603,39604,39605,39606,39607,39608,39609,39610,39611,39612,39613,39614,39615,39616,39617,39618,39619,39620,39621,39622,39623,39624,39625,39626,39627,39628,39629,39630,39631,39632,39633,39634,39635,39636,39637,39638,39639,39640,39641,39642,39643,39644,39645,39646,39647,39648,39649,39650,39651,39652,39653,39654,39655,39656,39657,39658,39659,39660,39661,39662,39663,39664,39665,39666,39667,39668,39669,39670,39671,39672,39673,39674,39675,39676,39677,39678,39679,39680,39681,39682,39683,39684,39685,39686,39687,39688,39689,39690,39691,39692,39693,39694,39695,39696,39697,39698,39699,39700,39701,39702,39703,39704,39705,39706,39707,39708,39709,39710,39711,39712,39713,39714,39715,39716,39717,39718,39719,39720,39721,39722,39723,39724,39725,39726,39727,39728,39729,39730,39731,39732,39733,39734,39735,39736,39737,39738,39739,39740,39741,39742,39743,39744,39745,39746,39747,39748,39749,39750,39751,39752,39753,39754,39755,39756,39757,39758,39759,39760,39761,39762,39763,39764,39765,39766,39767,39768,39769,39770,39771,39772,39773,39774,39775,39776,39777,39778,39779,39780,39781,39782,39783,39784,39785,39786,39787,39788,39789,39790,39791,39792,39793,39794,39795,39796,39797,39798,39799,39800,39801,39802,39803,39804,39805,39806,39807,39808,39809,39810,39811,39812,39813,39814,39815,39816,39817,39818,39819,39820,39821,39822,39823,39824,39825,39826,39827,39828,39829,39830,39831,39832,39833,39834,39835,39836,39837,39838,39839,39840,39841,39842,39843,39844,39845,39846,39847,39848,39849,39850,39851,39852,39853,39854,39855,39856,39857,39858,39859,39860,39861,39862,39863,39864,39865,39866,39867,39868,39869,39870,39871,39872,39873,39874,39875,39876,39877,39878,39879,39880,39881,39882,39883,39884,39885,39886,39887,39888,39889,39890,39891,39892,39893,39894,39895,39896,39897,39898,39899,39900,39901,39902,39903,39904,39905,39906,39907,39908,39909,39910,39911,39912,39913,39914,39915,39916,39917,39918,39919,39920,39921,39922,39923,39924,39925,39926,39927,39928,39929,39930,39931,39932,39933,39934,39935,39936,39937,39938,39939,39940,39941,39942,39943,39944,39945,39946,39947,39948,39949,39950,39951,39952,39953,39954,39955,39956,39957,39958,39959,39960,39961,39962,39963,39964,39965,39966,39967,39968,39969,39970,39971,39972,39973,39974,39975,39976,39977,39978,39979,39980,39981,39982,39983,39984,39985,39986,39987,39988,39989,39990,39991,39992,39993,39994,39995,39996,39997,39998,39999,40000,40001,40002,40003,40004,40005,40006,40007,40008,40009,40010,40011,40012,40013,40014,40015,40016,40017,40018,40019,40020,40021,40022,40023,40024,40025,40026,40027,40028,40029,40030,40031,40032,40033,40034,40035,40036,40037,40038,40039,40040,40041,40042,40043,40044,40045,40046,40047,40048,40049,40050,40051,40052,40053,40054,40055,40056,40057,40058,40059,40060,40061,40062,40063,40064,40065,40066,40067,40068,40069,40070,40071,40072,40073,40074,40075,40076,40077,40078,40079,40080,40081,40082,40083,40084,40085,40086,40087,40088,40089,40090,40091,40092,40093,40094,40095,40096,40097,40098,40099,40100,40101,40102,40103,40104,40105,40106,40107,40108,40109,40110,40111,40112,40113,40114,40115,40116,40117,40118,40119,40120,40121,40122,40123,40124,40125,40126,40127,40128,40129,40130,40131,40132,40133,40134,40135,40136,40137,40138,40139,40140,40141,40142,40143,40144,40145,40146,40147,40148,40149,40150,40151,40152,40153,40154,40155,40156,40157,40158,40159,40160,40161,40162,40163,40164,40165,40166,40167,40168,40169,40170,40171,40172,40173,40174,40175,40176,40177,40178,40179,40180,40181,40182,40183,40184,40185,40186,40187,40188,40189,40190,40191,40192,40193,40194,40195,40196,40197,40198,40199,40200,40201,40202,40203,40204,40205,40206,40207,40208,40209,40210,40211,40212,40213,40214,40215,40216,40217,40218,40219,40220,40221,40222,40223,40224,40225,40226,40227,40228,40229,40230,40231,40232,40233,40234,40235,40236,40237,40238,40239,40240,40241,40242,40243,40244,40245,40246,40247,40248,40249,40250,40251,40252,40253,40254,40255,40256,40257,40258,40259,40260,40261,40262,40263,40264,40265,40266,40267,40268,40269,40270,40271,40272,40273,40274,40275,40276,40277,40278,40279,40280,40281,40282,40283,40284,40285,40286,40287,40288,40289,40290,40291,40292,40293,40294,40295,40296,40297,40298,40299,40300,40301,40302,40303,40304,40305,40306,40307,40308,40309,40310,40311,40312,40313,40314,40315,40316,40317,40318,40319,40320,40321,40322,40323,40324,40325,40326,40327,40328,40329,40330,40331,40332,40333,40334,40335,40336,40337,40338,40339,40340,40341,40342,40343,40344,40345,40346,40347,40348,40349,40350,40351,40352,40353,40354,40355,40356,40357,40358,40359,40360,40361,40362,40363,40364,40365,40366,40367,40368,40369,40370,40371,40372,40373,40374,40375,40376,40377,40378,40379,40380,40381,40382,40383,40384,40385,40386,40387,40388,40389,40390,40391,40392,40393,40394,40395,40396,40397,40398,40399,40400,40401,40402,40403,40404,40405,40406,40407,40408,40409,40410,40411,40412,40413,40414,40415,40416,40417,40418,40419,40420,40421,40422,40423,40424,40425,40426,40427,40428,40429,40430,40431,40432,40433,40434,40435,40436,40437,40438,40439,40440,40441,40442,40443,40444,40445,40446,40447,40448,40449,40450,40451,40452,40453,40454,40455,40456,40457,40458,40459,40460,40461,40462,40463,40464,40465,40466,40467,40468,40469,40470,40471,40472,40473,40474,40475,40476,40477,40478,40479,40480,40481,40482,40483,40484,40485,40486,40487,40488,40489,40490,40491,40492,40493,40494,40495,40496,40497,40498,40499,40500,40501,40502,40503,40504,40505,40506,40507,40508,40509,40510,40511,40512,40513,40514,40515,40516,40517,40518,40519,40520,40521,40522,40523,40524,40525,40526,40527,40528,40529,40530,40531,40532,40533,40534,40535,40536,40537,40538,40539,40540,40541,40542,40543,40544,40545,40546,40547,40548,40549,40550,40551,40552,40553,40554,40555,40556,40557,40558,40559,40560,40561,40562,40563,40564,40565,40566,40567,40568,40569,40570,40571,40572,40573,40574,40575,40576,40577,40578,40579,40580,40581,40582,40583,40584,40585,40586,40587,40588,40589,40590,40591,40592,40593,40594,40595,40596,40597,40598,40599,40600,40601,40602,40603,40604,40605,40606,40607,40608,40609,40610,40611,40612,40613,40614,40615,40616,40617,40618,40619,40620,40621,40622,40623,40624,40625,40626,40627,40628,40629,40630,40631,40632,40633,40634,40635,40636,40637,40638,40639,40640,40641,40642,40643,40644,40645,40646,40647,40648,40649,40650,40651,40652,40653,40654,40655,40656,40657,40658,40659,40660,40661,40662,40663,40664,40665,40666,40667,40668,40669,40670,40671,40672,40673,40674,40675,40676,40677,40678,40679,40680,40681,40682,40683,40684,40685,40686,40687,40688,40689,40690,40691,40692,40693,40694,40695,40696,40697,40698,40699,40700,40701,40702,40703,40704,40705,40706,40707,40708,40709,40710,40711,40712,40713,40714,40715,40716,40717,40718,40719,40720,40721,40722,40723,40724,40725,40726,40727,40728,40729,40730,40731,40732,40733,40734,40735,40736,40737,40738,40739,40740,40741,40742,40743,40744,40745,40746,40747,40748,40749,40750,40751,40752,40753,40754,40755,40756,40757,40758,40759,40760,40761,40762,40763,40764,40765,40766,40767,40768,40769,40770,40771,40772,40773,40774,40775,40776,40777,40778,40779,40780,40781,40782,40783,40784,40785,40786,40787,40788,40789,40790,40791,40792,40793,40794,40795,40796,40797,40798,40799,40800,40801,40802,40803,40804,40805,40806,40807,40808,40809,40810,40811,40812,40813,40814,40815,40816,40817,40818,40819,40820,40821,40822,40823,40824,40825,40826,40827,40828,40829,40830,40831,40832,40833,40834,40835,40836,40837,40838,40839,40840,40841,40842,40843,40844,40845,40846,40847,40848,40849,40850,40851,40852,40853,40854,40855,40856,40857,40858,40859,40860,40861,40862,40863,40864,40865,40866,40867,40868,40869,40870,40871,40872,40873,40874,40875,40876,40877,40878,40879,40880,40881,40882,40883,40884,40885,40886,40887,40888,40889,40890,40891,40892,40893,40894,40895,40896,40897,40898,40899,40900,40901,40902,40903,40904,40905,40906,40907,40908,40909,40910,40911,40912,40913,40914,40915,40916,40917,40918,40919,40920,40921,40922,40923,40924,40925,40926,40927,40928,40929,40930,40931,40932,40933,40934,40935,40936,40937,40938,40939,40940,40941,40942,40943,40944,40945,40946,40947,40948,40949,40950,40951,40952,40953,40954,40955,40956,40957,40958,40959,40960,40961,40962,40963,40964,40965,40966,40967,40968,40969,40970,40971,40972,40973,40974,40975,40976,40977,40978,40979,40980,40981,40982,40983,40984,40985,40986,40987,40988,40989,40990,40991,40992,40993,40994,40995,40996,40997,40998,40999,41000,41001,41002,41003,41004,41005,41006,41007,41008,41009,41010,41011,41012,41013,41014,41015,41016,41017,41018,41019,41020,41021,41022,41023,41024,41025,41026,41027,41028,41029,41030,41031,41032,41033,41034,41035,41036,41037,41038,41039,41040,41041,41042,41043,41044,41045,41046,41047,41048,41049,41050,41051,41052,41053,41054,41055,41056,41057,41058,41059,41060,41061,41062,41063,41064,41065,41066,41067,41068,41069,41070,41071,41072,41073,41074,41075,41076,41077,41078,41079,41080,41081,41082,41083,41084,41085,41086,41087,41088,41089,41090,41091,41092,41093,41094,41095,41096,41097,41098,41099,41100,41101,41102,41103,41104,41105,41106,41107,41108,41109,41110,41111,41112,41113,41114,41115,41116,41117,41118,41119,41120,41121,41122,41123,41124,41125,41126,41127,41128,41129,41130,41131,41132,41133,41134,41135,41136,41137,41138,41139,41140,41141,41142,41143,41144,41145,41146,41147,41148,41149,41150,41151,41152,41153,41154,41155,41156,41157,41158,41159,41160,41161,41162,41163,41164,41165,41166,41167,41168,41169,41170,41171,41172,41173,41174,41175,41176,41177,41178,41179,41180,41181,41182,41183,41184,41185,41186,41187,41188,41189,41190,41191,41192,41193,41194,41195,41196,41197,41198,41199,41200,41201,41202,41203,41204,41205,41206,41207,41208,41209,41210,41211,41212,41213,41214,41215,41216,41217,41218,41219,41220,41221,41222,41223,41224,41225,41226,41227,41228,41229,41230,41231,41232,41233,41234,41235,41236,41237,41238,41239,41240,41241,41242,41243,41244,41245,41246,41247,41248,41249,41250,41251,41252,41253,41254,41255,41256,41257,41258,41259,41260,41261,41262,41263,41264,41265,41266,41267,41268,41269,41270,41271,41272,41273,41274,41275,41276,41277,41278,41279,41280,41281,41282,41283,41284,41285,41286,41287,41288,41289,41290,41291,41292,41293,41294,41295,41296,41297,41298,41299,41300,41301,41302,41303,41304,41305,41306,41307,41308,41309,41310,41311,41312,41313,41314,41315,41316,41317,41318,41319,41320,41321,41322,41323,41324,41325,41326,41327,41328,41329,41330,41331,41332,41333,41334,41335,41336,41337,41338,41339,41340,41341,41342,41343,41344,41345,41346,41347,41348,41349,41350,41351,41352,41353,41354,41355,41356,41357,41358,41359,41360,41361,41362,41363,41364,41365,41366,41367,41368,41369,41370,41371,41372,41373,41374,41375,41376,41377,41378,41379,41380,41381,41382,41383,41384,41385,41386,41387,41388,41389,41390,41391,41392,41393,41394,41395,41396,41397,41398,41399,41400,41401,41402,41403,41404,41405,41406,41407,41408,41409,41410,41411,41412,41413,41414,41415,41416,41417,41418,41419,41420,41421,41422,41423,41424,41425,41426,41427,41428,41429,41430,41431,41432,41433,41434,41435,41436,41437,41438,41439,41440,41441,41442,41443,41444,41445,41446,41447,41448,41449,41450,41451,41452,41453,41454,41455,41456,41457,41458,41459,41460,41461,41462,41463,41464,41465,41466,41467,41468,41469,41470,41471,41472,41473,41474,41475,41476,41477,41478,41479,41480,41481,41482,41483,41484,41485,41486,41487,41488,41489,41490,41491,41492,41493,41494,41495,41496,41497,41498,41499,41500,41501,41502,41503,41504,41505,41506,41507,41508,41509,41510,41511,41512,41513,41514,41515,41516,41517,41518,41519,41520,41521,41522,41523,41524,41525,41526,41527,41528,41529,41530,41531,41532,41533,41534,41535,41536,41537,41538,41539,41540,41541,41542,41543,41544,41545,41546,41547,41548,41549,41550,41551,41552,41553,41554,41555,41556,41557,41558,41559,41560,41561,41562,41563,41564,41565,41566,41567,41568,41569,41570,41571,41572,41573,41574,41575,41576,41577,41578,41579,41580,41581,41582,41583,41584,41585,41586,41587,41588,41589,41590,41591,41592,41593,41594,41595,41596,41597,41598,41599,41600,41601,41602,41603,41604,41605,41606,41607,41608,41609,41610,41611,41612,41613,41614,41615,41616,41617,41618,41619,41620,41621,41622,41623,41624,41625,41626,41627,41628,41629,41630,41631,41632,41633,41634,41635,41636,41637,41638,41639,41640,41641,41642,41643,41644,41645,41646,41647,41648,41649,41650,41651,41652,41653,41654,41655,41656,41657,41658,41659,41660,41661,41662,41663,41664,41665,41666,41667,41668,41669,41670,41671,41672,41673,41674,41675,41676,41677,41678,41679,41680,41681,41682,41683,41684,41685,41686,41687,41688,41689,41690,41691,41692,41693,41694,41695,41696,41697,41698,41699,41700,41701,41702,41703,41704,41705,41706,41707,41708,41709,41710,41711,41712,41713,41714,41715,41716,41717,41718,41719,41720,41721,41722,41723,41724,41725,41726,41727,41728,41729,41730,41731,41732,41733,41734,41735,41736,41737,41738,41739,41740,41741,41742,41743,41744,41745,41746,41747,41748,41749,41750,41751,41752,41753,41754,41755,41756,41757,41758,41759,41760,41761,41762,41763,41764,41765,41766,41767,41768,41769,41770,41771,41772,41773,41774,41775,41776,41777,41778,41779,41780,41781,41782,41783,41784,41785,41786,41787,41788,41789,41790,41791,41792,41793,41794,41795,41796,41797,41798,41799,41800,41801,41802,41803,41804,41805,41806,41807,41808,41809,41810,41811,41812,41813,41814,41815,41816,41817,41818,41819,41820,41821,41822,41823,41824,41825,41826,41827,41828,41829,41830,41831,41832,41833,41834,41835,41836,41837,41838,41839,41840,41841,41842,41843,41844,41845,41846,41847,41848,41849,41850,41851,41852,41853,41854,41855,41856,41857,41858,41859,41860,41861,41862,41863,41864,41865,41866,41867,41868,41869,41870,41871,41872,41873,41874,41875,41876,41877,41878,41879,41880,41881,41882,41883,41884,41885,41886,41887,41888,41889,41890,41891,41892,41893,41894,41895,41896,41897,41898,41899,41900,41901,41902,41903,41904,41905,41906,41907,41908,41909,41910,41911,41912,41913,41914,41915,41916,41917,41918,41919,41920,41921,41922,41923,41924,41925,41926,41927,41928,41929,41930,41931,41932,41933,41934,41935,41936,41937,41938,41939,41940,41941,41942,41943,41944,41945,41946,41947,41948,41949,41950,41951,41952,41953,41954,41955,41956,41957,41958,41959,41960,41961,41962,41963,41964,41965,41966,41967,41968,41969,41970,41971,41972,41973,41974,41975,41976,41977,41978,41979,41980,41981,41982,41983,41984,41985,41986,41987,41988,41989,41990,41991,41992,41993,41994,41995,41996,41997,41998,41999,42000,42001,42002,42003,42004,42005,42006,42007,42008,42009,42010,42011,42012,42013,42014,42015,42016,42017,42018,42019,42020,42021,42022,42023,42024,42025,42026,42027,42028,42029,42030,42031,42032,42033,42034,42035,42036,42037,42038,42039,42040,42041,42042,42043,42044,42045,42046,42047,42048,42049,42050,42051,42052,42053,42054,42055,42056,42057,42058,42059,42060,42061,42062,42063,42064,42065,42066,42067,42068,42069,42070,42071,42072,42073,42074,42075,42076,42077,42078,42079,42080,42081,42082,42083,42084,42085,42086,42087,42088,42089,42090,42091,42092,42093,42094,42095,42096,42097,42098,42099,42100,42101,42102,42103,42104,42105,42106,42107,42108,42109,42110,42111,42112,42113,42114,42115,42116,42117,42118,42119,42120,42121,42122,42123,42124,42125,42126,42127,42128,42129,42130,42131,42132,42133,42134,42135,42136,42137,42138,42139,42140,42141,42142,42143,42144,42145,42146,42147,42148,42149,42150,42151,42152,42153,42154,42155,42156,42157,42158,42159,42160,42161,42162,42163,42164,42165,42166,42167,42168,42169,42170,42171,42172,42173,42174,42175,42176,42177,42178,42179,42180,42181,42182,42183,42184,42185,42186,42187,42188,42189,42190,42191,42192,42193,42194,42195,42196,42197,42198,42199,42200,42201,42202,42203,42204,42205,42206,42207,42208,42209,42210,42211,42212,42213,42214,42215,42216,42217,42218,42219,42220,42221,42222,42223,42224,42225,42226,42227,42228,42229,42230,42231,42232,42233,42234,42235,42236,42237,42238,42239,42240,42241,42242,42243,42244,42245,42246,42247,42248,42249,42250,42251,42252,42253,42254,42255,42256,42257,42258,42259,42260,42261,42262,42263,42264,42265,42266,42267,42268,42269,42270,42271,42272,42273,42274,42275,42276,42277,42278,42279,42280,42281,42282,42283,42284,42285,42286,42287,42288,42289,42290,42291,42292,42293,42294,42295,42296,42297,42298,42299,42300,42301,42302,42303,42304,42305,42306,42307,42308,42309,42310,42311,42312,42313,42314,42315,42316,42317,42318,42319,42320,42321,42322,42323,42324,42325,42326,42327,42328,42329,42330,42331,42332,42333,42334,42335,42336,42337,42338,42339,42340,42341,42342,42343,42344,42345,42346,42347,42348,42349,42350,42351,42352,42353,42354,42355,42356,42357,42358,42359,42360,42361,42362,42363,42364,42365,42366,42367,42368,42369,42370,42371,42372,42373,42374,42375,42376,42377,42378,42379,42380,42381,42382,42383,42384,42385,42386,42387,42388,42389,42390,42391,42392,42393,42394,42395,42396,42397,42398,42399,42400,42401,42402,42403,42404,42405,42406,42407,42408,42409,42410,42411,42412,42413,42414,42415,42416,42417,42418,42419,42420,42421,42422,42423,42424,42425,42426,42427,42428,42429,42430,42431,42432,42433,42434,42435,42436,42437,42438,42439,42440,42441,42442,42443,42444,42445,42446,42447,42448,42449,42450,42451,42452,42453,42454,42455,42456,42457,42458,42459,42460,42461,42462,42463,42464,42465,42466,42467,42468,42469,42470,42471,42472,42473,42474,42475,42476,42477,42478,42479,42480,42481,42482,42483,42484,42485,42486,42487,42488,42489,42490,42491,42492,42493,42494,42495,42496,42497,42498,42499,42500,42501,42502,42503,42504,42505,42506,42507,42508,42509,42510,42511,42512,42513,42514,42515,42516,42517,42518,42519,42520,42521,42522,42523,42524,42525,42526,42527,42528,42529,42530,42531,42532,42533,42534,42535,42536,42537,42538,42539,42540,42541,42542,42543,42544,42545,42546,42547,42548,42549,42550,42551,42552,42553,42554,42555,42556,42557,42558,42559,42560,42561,42562,42563,42564,42565,42566,42567,42568,42569,42570,42571,42572,42573,42574,42575,42576,42577,42578,42579,42580,42581,42582,42583,42584,42585,42586,42587,42588,42589,42590,42591,42592,42593,42594,42595,42596,42597,42598,42599,42600,42601,42602,42603,42604,42605,42606,42607,42608,42609,42610,42611,42612,42613,42614,42615,42616,42617,42618,42619,42620,42621,42622,42623,42624,42625,42626,42627,42628,42629,42630,42631,42632,42633,42634,42635,42636,42637,42638,42639,42640,42641,42642,42643,42644,42645,42646,42647,42648,42649,42650,42651,42652,42653,42654,42655,42656,42657,42658,42659,42660,42661,42662,42663,42664,42665,42666,42667,42668,42669,42670,42671,42672,42673,42674,42675,42676,42677,42678,42679,42680,42681,42682,42683,42684,42685,42686,42687,42688,42689,42690,42691,42692,42693,42694,42695,42696,42697,42698,42699,42700,42701,42702,42703,42704,42705,42706,42707,42708,42709,42710,42711,42712,42713,42714,42715,42716,42717,42718,42719,42720,42721,42722,42723,42724,42725,42726,42727,42728,42729,42730,42731,42732,42733,42734,42735,42736,42737,42738,42739,42740,42741,42742,42743,42744,42745,42746,42747,42748,42749,42750,42751,42752,42753,42754,42755,42756,42757,42758,42759,42760,42761,42762,42763,42764,42765,42766,42767,42768,42769,42770,42771,42772,42773,42774,42775,42776,42777,42778,42779,42780,42781,42782,42783,42784,42785,42786,42787,42788,42789,42790,42791,42792,42793,42794,42795,42796,42797,42798,42799,42800,42801,42802,42803,42804,42805,42806,42807,42808,42809,42810,42811,42812,42813,42814,42815,42816,42817,42818,42819,42820,42821,42822,42823,42824,42825,42826,42827,42828,42829,42830,42831,42832,42833,42834,42835,42836,42837,42838,42839,42840,42841,42842,42843,42844,42845,42846,42847,42848,42849,42850,42851,42852,42853,42854,42855,42856,42857,42858,42859,42860,42861,42862,42863,42864,42865,42866,42867,42868,42869,42870,42871,42872,42873,42874,42875,42876,42877,42878,42879,42880,42881,42882,42883,42884,42885,42886,42887,42888,42889,42890,42891,42892,42893,42894,42895,42896,42897,42898,42899,42900,42901,42902,42903,42904,42905,42906,42907,42908,42909,42910,42911,42912,42913,42914,42915,42916,42917,42918,42919,42920,42921,42922,42923,42924,42925,42926,42927,42928,42929,42930,42931,42932,42933,42934,42935,42936,42937,42938,42939,42940,42941,42942,42943,42944,42945,42946,42947,42948,42949,42950,42951,42952,42953,42954,42955,42956,42957,42958,42959,42960,42961,42962,42963,42964,42965,42966,42967,42968,42969,42970,42971,42972,42973,42974,42975,42976,42977,42978,42979,42980,42981,42982,42983,42984,42985,42986,42987,42988,42989,42990,42991,42992,42993,42994,42995,42996,42997,42998,42999,43000,43001,43002,43003,43004,43005,43006,43007,43008,43009,43010,43011,43012,43013,43014,43015,43016,43017,43018,43019,43020,43021,43022,43023,43024,43025,43026,43027,43028,43029,43030,43031,43032,43033,43034,43035,43036,43037,43038,43039,43040,43041,43042,43043,43044,43045,43046,43047,43048,43049,43050,43051,43052,43053,43054,43055,43056,43057,43058,43059,43060,43061,43062,43063,43064,43065,43066,43067,43068,43069,43070,43071,43072,43073,43074,43075,43076,43077,43078,43079,43080,43081,43082,43083,43084,43085,43086,43087,43088,43089,43090,43091,43092,43093,43094,43095,43096,43097,43098,43099,43100,43101,43102,43103,43104,43105,43106,43107,43108,43109,43110,43111,43112,43113,43114,43115,43116,43117,43118,43119,43120,43121,43122,43123,43124,43125,43126,43127,43128,43129,43130,43131,43132,43133,43134,43135,43136,43137,43138,43139,43140,43141,43142,43143,43144,43145,43146,43147,43148,43149,43150,43151,43152,43153,43154,43155,43156,43157,43158,43159,43160,43161,43162,43163,43164,43165,43166,43167,43168,43169,43170,43171,43172,43173,43174,43175,43176,43177,43178,43179,43180,43181,43182,43183,43184,43185,43186,43187,43188,43189,43190,43191,43192,43193,43194,43195,43196,43197,43198,43199,43200,43201,43202,43203,43204,43205,43206,43207,43208,43209,43210,43211,43212,43213,43214,43215,43216,43217,43218,43219,43220,43221,43222,43223,43224,43225,43226,43227,43228,43229,43230,43231,43232,43233,43234,43235,43236,43237,43238,43239,43240,43241,43242,43243,43244,43245,43246,43247,43248,43249,43250,43251,43252,43253,43254,43255,43256,43257,43258,43259,43260,43261,43262,43263,43264,43265,43266,43267,43268,43269,43270,43271,43272,43273,43274,43275,43276,43277,43278,43279,43280,43281,43282,43283,43284,43285,43286,43287,43288,43289,43290,43291,43292,43293,43294,43295,43296,43297,43298,43299,43300,43301,43302,43303,43304,43305,43306,43307,43308,43309,43310,43311,43312,43313,43314,43315,43316,43317,43318,43319,43320,43321,43322,43323,43324,43325,43326,43327,43328,43329,43330,43331,43332,43333,43334,43335,43336,43337,43338,43339,43340,43341,43342,43343,43344,43345,43346,43347,43348,43349,43350,43351,43352,43353,43354,43355,43356,43357,43358,43359,43360,43361,43362,43363,43364,43365,43366,43367,43368,43369,43370,43371,43372,43373,43374,43375,43376,43377,43378,43379,43380,43381,43382,43383,43384,43385,43386,43387,43388,43389,43390,43391,43392,43393,43394,43395,43396,43397,43398,43399,43400,43401,43402,43403,43404,43405,43406,43407,43408,43409,43410,43411,43412,43413,43414,43415,43416,43417,43418,43419,43420,43421,43422,43423,43424,43425,43426,43427,43428,43429,43430,43431,43432,43433,43434,43435,43436,43437,43438,43439,43440,43441,43442,43443,43444,43445,43446,43447,43448,43449,43450,43451,43452,43453,43454,43455,43456,43457,43458,43459,43460,43461,43462,43463,43464,43465,43466,43467,43468,43469,43470,43471,43472,43473,43474,43475,43476,43477,43478,43479,43480,43481,43482,43483,43484,43485,43486,43487,43488,43489,43490,43491,43492,43493,43494,43495,43496,43497,43498,43499,43500,43501,43502,43503,43504,43505,43506,43507,43508,43509,43510,43511,43512,43513,43514,43515,43516,43517,43518,43519,43520,43521,43522,43523,43524,43525,43526,43527,43528,43529,43530,43531,43532,43533,43534,43535,43536,43537,43538,43539,43540,43541,43542,43543,43544,43545,43546,43547,43548,43549,43550,43551,43552,43553,43554,43555,43556,43557,43558,43559,43560,43561,43562,43563,43564,43565,43566,43567,43568,43569,43570,43571,43572,43573,43574,43575,43576,43577,43578,43579,43580,43581,43582,43583,43584,43585,43586,43587,43588,43589,43590,43591,43592,43593,43594,43595,43596,43597,43598,43599,43600,43601,43602,43603,43604,43605,43606,43607,43608,43609,43610,43611,43612,43613,43614,43615,43616,43617,43618,43619,43620,43621,43622,43623,43624,43625,43626,43627,43628,43629,43630,43631,43632,43633,43634,43635,43636,43637,43638,43639,43640,43641,43642,43643,43644,43645,43646,43647,43648,43649,43650,43651,43652,43653,43654,43655,43656,43657,43658,43659,43660,43661,43662,43663,43664,43665,43666,43667,43668,43669,43670,43671,43672,43673,43674,43675,43676,43677,43678,43679,43680,43681,43682,43683,43684,43685,43686,43687,43688,43689,43690,43691,43692,43693,43694,43695,43696,43697,43698,43699,43700,43701,43702,43703,43704,43705,43706,43707,43708,43709,43710,43711,43712,43713,43714,43715,43716,43717,43718,43719,43720,43721,43722,43723,43724,43725,43726,43727,43728,43729,43730,43731,43732,43733,43734,43735,43736,43737,43738,43739,43740,43741,43742,43743,43744,43745,43746,43747,43748,43749,43750,43751,43752,43753,43754,43755,43756,43757,43758,43759,43760,43761,43762,43763,43764,43765,43766,43767,43768,43769,43770,43771,43772,43773,43774,43775,43776,43777,43778,43779,43780,43781,43782,43783,43784,43785,43786,43787,43788,43789,43790,43791,43792,43793,43794,43795,43796,43797,43798,43799,43800,43801,43802,43803,43804,43805,43806,43807,43808,43809,43810,43811,43812,43813,43814,43815,43816,43817,43818,43819,43820,43821,43822,43823,43824,43825,43826,43827,43828,43829,43830,43831,43832,43833,43834,43835,43836,43837,43838,43839,43840,43841,43842,43843,43844,43845,43846,43847,43848,43849,43850,43851,43852,43853,43854,43855,43856,43857,43858,43859,43860,43861,43862,43863,43864,43865,43866,43867,43868,43869,43870,43871,43872,43873,43874,43875,43876,43877,43878,43879,43880,43881,43882,43883,43884,43885,43886,43887,43888,43889,43890,43891,43892,43893,43894,43895,43896,43897,43898,43899,43900,43901,43902,43903,43904,43905,43906,43907,43908,43909,43910,43911,43912,43913,43914,43915,43916,43917,43918,43919,43920,43921,43922,43923,43924,43925,43926,43927,43928,43929,43930,43931,43932,43933,43934,43935,43936,43937,43938,43939,43940,43941,43942,43943,43944,43945,43946,43947,43948,43949,43950,43951,43952,43953,43954,43955,43956,43957,43958,43959,43960,43961,43962,43963,43964,43965,43966,43967,43968,43969,43970,43971,43972,43973,43974,43975,43976,43977,43978,43979,43980,43981,43982,43983,43984,43985,43986,43987,43988,43989,43990,43991,43992,43993,43994,43995,43996,43997,43998,43999,44000,44001,44002,44003,44004,44005,44006,44007,44008,44009,44010,44011,44012,44013,44014,44015,44016,44017,44018,44019,44020,44021,44022,44023,44024,44025,44026,44027,44028,44029,44030,44031,44032,44033,44034,44035,44036,44037,44038,44039,44040,44041,44042,44043,44044,44045,44046,44047,44048,44049,44050,44051,44052,44053,44054,44055,44056,44057,44058,44059,44060,44061,44062,44063,44064,44065,44066,44067,44068,44069,44070,44071,44072,44073,44074,44075,44076,44077,44078,44079,44080,44081,44082,44083,44084,44085,44086,44087,44088,44089,44090,44091,44092,44093,44094,44095,44096,44097,44098,44099,44100,44101,44102,44103,44104,44105,44106,44107,44108,44109,44110,44111,44112,44113,44114,44115,44116,44117,44118,44119,44120,44121,44122,44123,44124,44125,44126,44127,44128,44129,44130,44131,44132,44133,44134,44135,44136,44137,44138,44139,44140,44141,44142,44143,44144,44145,44146,44147,44148,44149,44150,44151,44152,44153,44154,44155,44156,44157,44158,44159,44160,44161,44162,44163,44164,44165,44166,44167,44168,44169,44170,44171,44172,44173,44174,44175,44176,44177,44178,44179,44180,44181,44182,44183,44184,44185,44186,44187,44188,44189,44190,44191,44192,44193,44194,44195,44196,44197,44198,44199,44200,44201,44202,44203,44204,44205,44206,44207,44208,44209,44210,44211,44212,44213,44214,44215,44216,44217,44218,44219,44220,44221,44222,44223,44224,44225,44226,44227,44228,44229,44230,44231,44232,44233,44234,44235,44236,44237,44238,44239,44240,44241,44242,44243,44244,44245,44246,44247,44248,44249,44250,44251,44252,44253,44254,44255,44256,44257,44258,44259,44260,44261,44262,44263,44264,44265,44266,44267,44268,44269,44270,44271,44272,44273,44274,44275,44276,44277,44278,44279,44280,44281,44282,44283,44284,44285,44286,44287,44288,44289,44290,44291,44292,44293,44294,44295,44296,44297,44298,44299,44300,44301,44302,44303,44304,44305,44306,44307,44308,44309,44310,44311,44312,44313,44314,44315,44316,44317,44318,44319,44320,44321,44322,44323,44324,44325,44326,44327,44328,44329,44330,44331,44332,44333,44334,44335,44336,44337,44338,44339,44340,44341,44342,44343,44344,44345,44346,44347,44348,44349,44350,44351,44352,44353,44354,44355,44356,44357,44358,44359,44360,44361,44362,44363,44364,44365,44366,44367,44368,44369,44370,44371,44372,44373,44374,44375,44376,44377,44378,44379,44380,44381,44382,44383,44384,44385,44386,44387,44388,44389,44390,44391,44392,44393,44394,44395,44396,44397,44398,44399,44400,44401,44402,44403,44404,44405,44406,44407,44408,44409,44410,44411,44412,44413,44414,44415,44416,44417,44418,44419,44420,44421,44422,44423,44424,44425,44426,44427,44428,44429,44430,44431,44432,44433,44434,44435,44436,44437,44438,44439,44440,44441,44442,44443,44444,44445,44446,44447,44448,44449,44450,44451,44452,44453,44454,44455,44456,44457,44458,44459,44460,44461,44462,44463,44464,44465,44466,44467,44468,44469,44470,44471,44472,44473,44474,44475,44476,44477,44478,44479,44480,44481,44482,44483,44484,44485,44486,44487,44488,44489,44490,44491,44492,44493,44494,44495,44496,44497,44498,44499,44500,44501,44502,44503,44504,44505,44506,44507,44508,44509,44510,44511,44512,44513,44514,44515,44516,44517,44518,44519,44520,44521,44522,44523,44524,44525,44526,44527,44528,44529,44530,44531,44532,44533,44534,44535,44536,44537,44538,44539,44540,44541,44542,44543,44544,44545,44546,44547,44548,44549,44550,44551,44552,44553,44554,44555,44556,44557,44558,44559,44560,44561,44562,44563,44564,44565,44566,44567,44568,44569,44570,44571,44572,44573,44574,44575,44576,44577,44578,44579,44580,44581,44582,44583,44584,44585,44586,44587,44588,44589,44590,44591,44592,44593,44594,44595,44596,44597,44598,44599,44600,44601,44602,44603,44604,44605,44606,44607,44608,44609,44610,44611,44612,44613,44614,44615,44616,44617,44618,44619,44620,44621,44622,44623,44624,44625,44626,44627,44628,44629,44630,44631,44632,44633,44634,44635,44636,44637,44638,44639,44640,44641,44642,44643,44644,44645,44646,44647,44648,44649,44650,44651,44652,44653,44654,44655,44656,44657,44658,44659,44660,44661,44662,44663,44664,44665,44666,44667,44668,44669,44670,44671,44672,44673,44674,44675,44676,44677,44678,44679,44680,44681,44682,44683,44684,44685,44686,44687,44688,44689,44690,44691,44692,44693,44694,44695,44696,44697,44698,44699,44700,44701,44702,44703,44704,44705,44706,44707,44708,44709,44710,44711,44712,44713,44714,44715,44716,44717,44718,44719,44720,44721,44722,44723,44724,44725,44726,44727,44728,44729,44730,44731,44732,44733,44734,44735,44736,44737,44738,44739,44740,44741,44742,44743,44744,44745,44746,44747,44748,44749,44750,44751,44752,44753,44754,44755,44756,44757,44758,44759,44760,44761,44762,44763,44764,44765,44766,44767,44768,44769,44770,44771,44772,44773,44774,44775,44776,44777,44778,44779,44780,44781,44782,44783,44784,44785,44786,44787,44788,44789,44790,44791,44792,44793,44794,44795,44796,44797,44798,44799,44800,44801,44802,44803,44804,44805,44806,44807,44808,44809,44810,44811,44812,44813,44814,44815,44816,44817,44818,44819,44820,44821,44822,44823,44824,44825,44826,44827,44828,44829,44830,44831,44832,44833,44834,44835,44836,44837,44838,44839,44840,44841,44842,44843,44844,44845,44846,44847,44848,44849,44850,44851,44852,44853,44854,44855,44856,44857,44858,44859,44860,44861,44862,44863,44864,44865,44866,44867,44868,44869,44870,44871,44872,44873,44874,44875,44876,44877,44878,44879,44880,44881,44882,44883,44884,44885,44886,44887,44888,44889,44890,44891,44892,44893,44894,44895,44896,44897,44898,44899,44900,44901,44902,44903,44904,44905,44906,44907,44908,44909,44910,44911,44912,44913,44914,44915,44916,44917,44918,44919,44920,44921,44922,44923,44924,44925,44926,44927,44928,44929,44930,44931,44932,44933,44934,44935,44936,44937,44938,44939,44940,44941,44942,44943,44944,44945,44946,44947,44948,44949,44950,44951,44952,44953,44954,44955,44956,44957,44958,44959,44960,44961,44962,44963,44964,44965,44966,44967,44968,44969,44970,44971,44972,44973,44974,44975,44976,44977,44978,44979,44980,44981,44982,44983,44984,44985,44986,44987,44988,44989,44990,44991,44992,44993,44994,44995,44996,44997,44998,44999,45000,45001,45002,45003,45004,45005,45006,45007,45008,45009,45010,45011,45012,45013,45014,45015,45016,45017,45018,45019,45020,45021,45022,45023,45024,45025,45026,45027,45028,45029,45030,45031,45032,45033,45034,45035,45036,45037,45038,45039,45040,45041,45042,45043,45044,45045,45046,45047,45048,45049,45050,45051,45052,45053,45054,45055,45056,45057,45058,45059,45060,45061,45062,45063,45064,45065,45066,45067,45068,45069,45070,45071,45072,45073,45074,45075,45076,45077,45078,45079,45080,45081,45082,45083,45084,45085,45086,45087,45088,45089,45090,45091,45092,45093,45094,45095,45096,45097,45098,45099,45100,45101,45102,45103,45104,45105,45106,45107,45108,45109,45110,45111,45112,45113,45114,45115,45116,45117,45118,45119,45120,45121,45122,45123,45124,45125,45126,45127,45128,45129,45130,45131,45132,45133,45134,45135,45136,45137,45138,45139,45140,45141,45142,45143,45144,45145,45146,45147,45148,45149,45150,45151,45152,45153,45154,45155,45156,45157,45158,45159,45160,45161,45162,45163,45164,45165,45166,45167,45168,45169,45170,45171,45172,45173,45174,45175,45176,45177,45178,45179,45180,45181,45182,45183,45184,45185,45186,45187,45188,45189,45190,45191,45192,45193,45194,45195,45196,45197,45198,45199,45200,45201,45202,45203,45204,45205,45206,45207,45208,45209,45210,45211,45212,45213,45214,45215,45216,45217,45218,45219,45220,45221,45222,45223,45224,45225,45226,45227,45228,45229,45230,45231,45232,45233,45234,45235,45236,45237,45238,45239,45240,45241,45242,45243,45244,45245,45246,45247,45248,45249,45250,45251,45252,45253,45254,45255,45256,45257,45258,45259,45260,45261,45262,45263,45264,45265,45266,45267,45268,45269,45270,45271,45272,45273,45274,45275,45276,45277,45278,45279,45280,45281,45282,45283,45284,45285,45286,45287,45288,45289,45290,45291,45292,45293,45294,45295,45296,45297,45298,45299,45300,45301,45302,45303,45304,45305,45306,45307,45308,45309,45310,45311,45312,45313,45314,45315,45316,45317,45318,45319,45320,45321,45322,45323,45324,45325,45326,45327,45328,45329,45330,45331,45332,45333,45334,45335,45336,45337,45338,45339,45340,45341,45342,45343,45344,45345,45346,45347,45348,45349,45350,45351,45352,45353,45354,45355,45356,45357,45358,45359,45360,45361,45362,45363,45364,45365,45366,45367,45368,45369,45370,45371,45372,45373,45374,45375,45376,45377,45378,45379,45380,45381,45382,45383,45384,45385,45386,45387,45388,45389,45390,45391,45392,45393,45394,45395,45396,45397,45398,45399,45400,45401,45402,45403,45404,45405,45406,45407,45408,45409,45410,45411,45412,45413,45414,45415,45416,45417,45418,45419,45420,45421,45422,45423,45424,45425,45426,45427,45428,45429,45430,45431,45432,45433,45434,45435,45436,45437,45438,45439,45440,45441,45442,45443,45444,45445,45446,45447,45448,45449,45450,45451,45452,45453,45454,45455,45456,45457,45458,45459,45460,45461,45462,45463,45464,45465,45466,45467,45468,45469,45470,45471,45472,45473,45474,45475,45476,45477,45478,45479,45480,45481,45482,45483,45484,45485,45486,45487,45488,45489,45490,45491,45492,45493,45494,45495,45496,45497,45498,45499,45500,45501,45502,45503,45504,45505,45506,45507,45508,45509,45510,45511,45512,45513,45514,45515,45516,45517,45518,45519,45520,45521,45522,45523,45524,45525,45526,45527,45528,45529,45530,45531,45532,45533,45534,45535,45536,45537,45538,45539,45540,45541,45542,45543,45544,45545,45546,45547,45548,45549,45550,45551,45552,45553,45554,45555,45556,45557,45558,45559,45560,45561,45562,45563,45564,45565,45566,45567,45568,45569,45570,45571,45572,45573,45574,45575,45576,45577,45578,45579,45580,45581,45582,45583,45584,45585,45586,45587,45588,45589,45590,45591,45592,45593,45594,45595,45596,45597,45598,45599,45600,45601,45602,45603,45604,45605,45606,45607,45608,45609,45610,45611,45612,45613,45614,45615,45616,45617,45618,45619,45620,45621,45622,45623,45624,45625,45626,45627,45628,45629,45630,45631,45632,45633,45634,45635,45636,45637,45638,45639,45640,45641,45642,45643,45644,45645,45646,45647,45648,45649,45650,45651,45652,45653,45654,45655,45656,45657,45658,45659,45660,45661,45662,45663,45664,45665,45666,45667,45668,45669,45670,45671,45672,45673,45674,45675,45676,45677,45678,45679,45680,45681,45682,45683,45684,45685,45686,45687,45688,45689,45690,45691,45692,45693,45694,45695,45696,45697,45698,45699,45700,45701,45702,45703,45704,45705,45706,45707,45708,45709,45710,45711,45712,45713,45714,45715,45716,45717,45718,45719,45720,45721,45722,45723,45724,45725,45726,45727,45728,45729,45730,45731,45732,45733,45734,45735,45736,45737,45738,45739,45740,45741,45742,45743,45744,45745,45746,45747,45748,45749,45750,45751,45752,45753,45754,45755,45756,45757,45758,45759,45760,45761,45762,45763,45764,45765,45766,45767,45768,45769,45770,45771,45772,45773,45774,45775,45776,45777,45778,45779,45780,45781,45782,45783,45784,45785,45786,45787,45788,45789,45790,45791,45792,45793,45794,45795,45796,45797,45798,45799,45800,45801,45802,45803,45804,45805,45806,45807,45808,45809,45810,45811,45812,45813,45814,45815,45816,45817,45818,45819,45820,45821,45822,45823,45824,45825,45826,45827,45828,45829,45830,45831,45832,45833,45834,45835,45836,45837,45838,45839,45840,45841,45842,45843,45844,45845,45846,45847,45848,45849,45850,45851,45852,45853,45854,45855,45856,45857,45858,45859,45860,45861,45862,45863,45864,45865,45866,45867,45868,45869,45870,45871,45872,45873,45874,45875,45876,45877,45878,45879,45880,45881,45882,45883,45884,45885,45886,45887,45888,45889,45890,45891,45892,45893,45894,45895,45896,45897,45898,45899,45900,45901,45902,45903,45904,45905,45906,45907,45908,45909,45910,45911,45912,45913,45914,45915,45916,45917,45918,45919,45920,45921,45922,45923,45924,45925,45926,45927,45928,45929,45930,45931,45932,45933,45934,45935,45936,45937,45938,45939,45940,45941,45942,45943,45944,45945,45946,45947,45948,45949,45950,45951,45952,45953,45954,45955,45956,45957,45958,45959,45960,45961,45962,45963,45964,45965,45966,45967,45968,45969,45970,45971,45972,45973,45974,45975,45976,45977,45978,45979,45980,45981,45982,45983,45984,45985,45986,45987,45988,45989,45990,45991,45992,45993,45994,45995,45996,45997,45998,45999,46000,46001,46002,46003,46004,46005,46006,46007,46008,46009,46010,46011,46012,46013,46014,46015,46016,46017,46018,46019,46020,46021,46022,46023,46024,46025,46026,46027,46028,46029,46030,46031,46032,46033,46034,46035,46036,46037,46038,46039,46040,46041,46042,46043,46044,46045,46046,46047,46048,46049,46050,46051,46052,46053,46054,46055,46056,46057,46058,46059,46060,46061,46062,46063,46064,46065,46066,46067,46068,46069,46070,46071,46072,46073,46074,46075,46076,46077,46078,46079,46080,46081,46082,46083,46084,46085,46086,46087,46088,46089,46090,46091,46092,46093,46094,46095,46096,46097,46098,46099,46100,46101,46102,46103,46104,46105,46106,46107,46108,46109,46110,46111,46112,46113,46114,46115,46116,46117,46118,46119,46120,46121,46122,46123,46124,46125,46126,46127,46128,46129,46130,46131,46132,46133,46134,46135,46136,46137,46138,46139,46140,46141,46142,46143,46144,46145,46146,46147,46148,46149,46150,46151,46152,46153,46154,46155,46156,46157,46158,46159,46160,46161,46162,46163,46164,46165,46166,46167,46168,46169,46170,46171,46172,46173,46174,46175,46176,46177,46178,46179,46180,46181,46182,46183,46184,46185,46186,46187,46188,46189,46190,46191,46192,46193,46194,46195,46196,46197,46198,46199,46200,46201,46202,46203,46204,46205,46206,46207,46208,46209,46210,46211,46212,46213,46214,46215,46216,46217,46218,46219,46220,46221,46222,46223,46224,46225,46226,46227,46228,46229,46230,46231,46232,46233,46234,46235,46236,46237,46238,46239,46240,46241,46242,46243,46244,46245,46246,46247,46248,46249,46250,46251,46252,46253,46254,46255,46256,46257,46258,46259,46260,46261,46262,46263,46264,46265,46266,46267,46268,46269,46270,46271,46272,46273,46274,46275,46276,46277,46278,46279,46280,46281,46282,46283,46284,46285,46286,46287,46288,46289,46290,46291,46292,46293,46294,46295,46296,46297,46298,46299,46300,46301,46302,46303,46304,46305,46306,46307,46308,46309,46310,46311,46312,46313,46314,46315,46316,46317,46318,46319,46320,46321,46322,46323,46324,46325,46326,46327,46328,46329,46330,46331,46332,46333,46334,46335,46336,46337,46338,46339,46340,46341,46342,46343,46344,46345,46346,46347,46348,46349,46350,46351,46352,46353,46354,46355,46356,46357,46358,46359,46360,46361,46362,46363,46364,46365,46366,46367,46368,46369,46370,46371,46372,46373,46374,46375,46376,46377,46378,46379,46380,46381,46382,46383,46384,46385,46386,46387,46388,46389,46390,46391,46392,46393,46394,46395,46396,46397,46398,46399,46400,46401,46402,46403,46404,46405,46406,46407,46408,46409,46410,46411,46412,46413,46414,46415,46416,46417,46418,46419,46420,46421,46422,46423,46424,46425,46426,46427,46428,46429,46430,46431,46432,46433,46434,46435,46436,46437,46438,46439,46440,46441,46442,46443,46444,46445,46446,46447,46448,46449,46450,46451,46452,46453,46454,46455,46456,46457,46458,46459,46460,46461,46462,46463,46464,46465,46466,46467,46468,46469,46470,46471,46472,46473,46474,46475,46476,46477,46478,46479,46480,46481,46482,46483,46484,46485,46486,46487,46488,46489,46490,46491,46492,46493,46494,46495,46496,46497,46498,46499,46500,46501,46502,46503,46504,46505,46506,46507,46508,46509,46510,46511,46512,46513,46514,46515,46516,46517,46518,46519,46520,46521,46522,46523,46524,46525,46526,46527,46528,46529,46530,46531,46532,46533,46534,46535,46536,46537,46538,46539,46540,46541,46542,46543,46544,46545,46546,46547,46548,46549,46550,46551,46552,46553,46554,46555,46556,46557,46558,46559,46560,46561,46562,46563,46564,46565,46566,46567,46568,46569,46570,46571,46572,46573,46574,46575,46576,46577,46578,46579,46580,46581,46582,46583,46584,46585,46586,46587,46588,46589,46590,46591,46592,46593,46594,46595,46596,46597,46598,46599,46600,46601,46602,46603,46604,46605,46606,46607,46608,46609,46610,46611,46612,46613,46614,46615,46616,46617,46618,46619,46620,46621,46622,46623,46624,46625,46626,46627,46628,46629,46630,46631,46632,46633,46634,46635,46636,46637,46638,46639,46640,46641,46642,46643,46644,46645,46646,46647,46648,46649,46650,46651,46652,46653,46654,46655,46656,46657,46658,46659,46660,46661,46662,46663,46664,46665,46666,46667,46668,46669,46670,46671,46672,46673,46674,46675,46676,46677,46678,46679,46680,46681,46682,46683,46684,46685,46686,46687,46688,46689,46690,46691,46692,46693,46694,46695,46696,46697,46698,46699,46700,46701,46702,46703,46704,46705,46706,46707,46708,46709,46710,46711,46712,46713,46714,46715,46716,46717,46718,46719,46720,46721,46722,46723,46724,46725,46726,46727,46728,46729,46730,46731,46732,46733,46734,46735,46736,46737,46738,46739,46740,46741,46742,46743,46744,46745,46746,46747,46748,46749,46750,46751,46752,46753,46754,46755,46756,46757,46758,46759,46760,46761,46762,46763,46764,46765,46766,46767,46768,46769,46770,46771,46772,46773,46774,46775,46776,46777,46778,46779,46780,46781,46782,46783,46784,46785,46786,46787,46788,46789,46790,46791,46792,46793,46794,46795,46796,46797,46798,46799,46800,46801,46802,46803,46804,46805,46806,46807,46808,46809,46810,46811,46812,46813,46814,46815,46816,46817,46818,46819,46820,46821,46822,46823,46824,46825,46826,46827,46828,46829,46830,46831,46832,46833,46834,46835,46836,46837,46838,46839,46840,46841,46842,46843,46844,46845,46846,46847,46848,46849,46850,46851,46852,46853,46854,46855,46856,46857,46858,46859,46860,46861,46862,46863,46864,46865,46866,46867,46868,46869,46870,46871,46872,46873,46874,46875,46876,46877,46878,46879,46880,46881,46882,46883,46884,46885,46886,46887,46888,46889,46890,46891,46892,46893,46894,46895,46896,46897,46898,46899,46900,46901,46902,46903,46904,46905,46906,46907,46908,46909,46910,46911,46912,46913,46914,46915,46916,46917,46918,46919,46920,46921,46922,46923,46924,46925,46926,46927,46928,46929,46930,46931,46932,46933,46934,46935,46936,46937,46938,46939,46940,46941,46942,46943,46944,46945,46946,46947,46948,46949,46950,46951,46952,46953,46954,46955,46956,46957,46958,46959,46960,46961,46962,46963,46964,46965,46966,46967,46968,46969,46970,46971,46972,46973,46974,46975,46976,46977,46978,46979,46980,46981,46982,46983,46984,46985,46986,46987,46988,46989,46990,46991,46992,46993,46994,46995,46996,46997,46998,46999,47000,47001,47002,47003,47004,47005,47006,47007,47008,47009,47010,47011,47012,47013,47014,47015,47016,47017,47018,47019,47020,47021,47022,47023,47024,47025,47026,47027,47028,47029,47030,47031,47032,47033,47034,47035,47036,47037,47038,47039,47040,47041,47042,47043,47044,47045,47046,47047,47048,47049,47050,47051,47052,47053,47054,47055,47056,47057,47058,47059,47060,47061,47062,47063,47064,47065,47066,47067,47068,47069,47070,47071,47072,47073,47074,47075,47076,47077,47078,47079,47080,47081,47082,47083,47084,47085,47086,47087,47088,47089,47090,47091,47092,47093,47094,47095,47096,47097,47098,47099,47100,47101,47102,47103,47104,47105,47106,47107,47108,47109,47110,47111,47112,47113,47114,47115,47116,47117,47118,47119,47120,47121,47122,47123,47124,47125,47126,47127,47128,47129,47130,47131,47132,47133,47134,47135,47136,47137,47138,47139,47140,47141,47142,47143,47144,47145,47146,47147,47148,47149,47150,47151,47152,47153,47154,47155,47156,47157,47158,47159,47160,47161,47162,47163,47164,47165,47166,47167,47168,47169,47170,47171,47172,47173,47174,47175,47176,47177,47178,47179,47180,47181,47182,47183,47184,47185,47186,47187,47188,47189,47190,47191,47192,47193,47194,47195,47196,47197,47198,47199,47200,47201,47202,47203,47204,47205,47206,47207,47208,47209,47210,47211,47212,47213,47214,47215,47216,47217,47218,47219,47220,47221,47222,47223,47224,47225,47226,47227,47228,47229,47230,47231,47232,47233,47234,47235,47236,47237,47238,47239,47240,47241,47242,47243,47244,47245,47246,47247,47248,47249,47250,47251,47252,47253,47254,47255,47256,47257,47258,47259,47260,47261,47262,47263,47264,47265,47266,47267,47268,47269,47270,47271,47272,47273,47274,47275,47276,47277,47278,47279,47280,47281,47282,47283,47284,47285,47286,47287,47288,47289,47290,47291,47292,47293,47294,47295,47296,47297,47298,47299,47300,47301,47302,47303,47304,47305,47306,47307,47308,47309,47310,47311,47312,47313,47314,47315,47316,47317,47318,47319,47320,47321,47322,47323,47324,47325,47326,47327,47328,47329,47330,47331,47332,47333,47334,47335,47336,47337,47338,47339,47340,47341,47342,47343,47344,47345,47346,47347,47348,47349,47350,47351,47352,47353,47354,47355,47356,47357,47358,47359,47360,47361,47362,47363,47364,47365,47366,47367,47368,47369,47370,47371,47372,47373,47374,47375,47376,47377,47378,47379,47380,47381,47382,47383,47384,47385,47386,47387,47388,47389,47390,47391,47392,47393,47394,47395,47396,47397,47398,47399,47400,47401,47402,47403,47404,47405,47406,47407,47408,47409,47410,47411,47412,47413,47414,47415,47416,47417,47418,47419,47420,47421,47422,47423,47424,47425,47426,47427,47428,47429,47430,47431,47432,47433,47434,47435,47436,47437,47438,47439,47440,47441,47442,47443,47444,47445,47446,47447,47448,47449,47450,47451,47452,47453,47454,47455,47456,47457,47458,47459,47460,47461,47462,47463,47464,47465,47466,47467,47468,47469,47470,47471,47472,47473,47474,47475,47476,47477,47478,47479,47480,47481,47482,47483,47484,47485,47486,47487,47488,47489,47490,47491,47492,47493,47494,47495,47496,47497,47498,47499,47500,47501,47502,47503,47504,47505,47506,47507,47508,47509,47510,47511,47512,47513,47514,47515,47516,47517,47518,47519,47520,47521,47522,47523,47524,47525,47526,47527,47528,47529,47530,47531,47532,47533,47534,47535,47536,47537,47538,47539,47540,47541,47542,47543,47544,47545,47546,47547,47548,47549,47550,47551,47552,47553,47554,47555,47556,47557,47558,47559,47560,47561,47562,47563,47564,47565,47566,47567,47568,47569,47570,47571,47572,47573,47574,47575,47576,47577,47578,47579,47580,47581,47582,47583,47584,47585,47586,47587,47588,47589,47590,47591,47592,47593,47594,47595,47596,47597,47598,47599,47600,47601,47602,47603,47604,47605,47606,47607,47608,47609,47610,47611,47612,47613,47614,47615,47616,47617,47618,47619,47620,47621,47622,47623,47624,47625,47626,47627,47628,47629,47630,47631,47632,47633,47634,47635,47636,47637,47638,47639,47640,47641,47642,47643,47644,47645,47646,47647,47648,47649,47650,47651,47652,47653,47654,47655,47656,47657,47658,47659,47660,47661,47662,47663,47664,47665,47666,47667,47668,47669,47670,47671,47672,47673,47674,47675,47676,47677,47678,47679,47680,47681,47682,47683,47684,47685,47686,47687,47688,47689,47690,47691,47692,47693,47694,47695,47696,47697,47698,47699,47700,47701,47702,47703,47704,47705,47706,47707,47708,47709,47710,47711,47712,47713,47714,47715,47716,47717,47718,47719,47720,47721,47722,47723,47724,47725,47726,47727,47728,47729,47730,47731,47732,47733,47734,47735,47736,47737,47738,47739,47740,47741,47742,47743,47744,47745,47746,47747,47748,47749,47750,47751,47752,47753,47754,47755,47756,47757,47758,47759,47760,47761,47762,47763,47764,47765,47766,47767,47768,47769,47770,47771,47772,47773,47774,47775,47776,47777,47778,47779,47780,47781,47782,47783,47784,47785,47786,47787,47788,47789,47790,47791,47792,47793,47794,47795,47796,47797,47798,47799,47800,47801,47802,47803,47804,47805,47806,47807,47808,47809,47810,47811,47812,47813,47814,47815,47816,47817,47818,47819,47820,47821,47822,47823,47824,47825,47826,47827,47828,47829,47830,47831,47832,47833,47834,47835,47836,47837,47838,47839,47840,47841,47842,47843,47844,47845,47846,47847,47848,47849,47850,47851,47852,47853,47854,47855,47856,47857,47858,47859,47860,47861,47862,47863,47864,47865,47866,47867,47868,47869,47870,47871,47872,47873,47874,47875,47876,47877,47878,47879,47880,47881,47882,47883,47884,47885,47886,47887,47888,47889,47890,47891,47892,47893,47894,47895,47896,47897,47898,47899,47900,47901,47902,47903,47904,47905,47906,47907,47908,47909,47910,47911,47912,47913,47914,47915,47916,47917,47918,47919,47920,47921,47922,47923,47924,47925,47926,47927,47928,47929,47930,47931,47932,47933,47934,47935,47936,47937,47938,47939,47940,47941,47942,47943,47944,47945,47946,47947,47948,47949,47950,47951,47952,47953,47954,47955,47956,47957,47958,47959,47960,47961,47962,47963,47964,47965,47966,47967,47968,47969,47970,47971,47972,47973,47974,47975,47976,47977,47978,47979,47980,47981,47982,47983,47984,47985,47986,47987,47988,47989,47990,47991,47992,47993,47994,47995,47996,47997,47998,47999,48000,48001,48002,48003,48004,48005,48006,48007,48008,48009,48010,48011,48012,48013,48014,48015,48016,48017,48018,48019,48020,48021,48022,48023,48024,48025,48026,48027,48028,48029,48030,48031,48032,48033,48034,48035,48036,48037,48038,48039,48040,48041,48042,48043,48044,48045,48046,48047,48048,48049,48050,48051,48052,48053,48054,48055,48056,48057,48058,48059,48060,48061,48062,48063,48064,48065,48066,48067,48068,48069,48070,48071,48072,48073,48074,48075,48076,48077,48078,48079,48080,48081,48082,48083,48084,48085,48086,48087,48088,48089,48090,48091,48092,48093,48094,48095,48096,48097,48098,48099,48100,48101,48102,48103,48104,48105,48106,48107,48108,48109,48110,48111,48112,48113,48114,48115,48116,48117,48118,48119,48120,48121,48122,48123,48124,48125,48126,48127,48128,48129,48130,48131,48132,48133,48134,48135,48136,48137,48138,48139,48140,48141,48142,48143,48144,48145,48146,48147,48148,48149,48150,48151,48152,48153,48154,48155,48156,48157,48158,48159,48160,48161,48162,48163,48164,48165,48166,48167,48168,48169,48170,48171,48172,48173,48174,48175,48176,48177,48178,48179,48180,48181,48182,48183,48184,48185,48186,48187,48188,48189,48190,48191,48192,48193,48194,48195,48196,48197,48198,48199,48200,48201,48202,48203,48204,48205,48206,48207,48208,48209,48210,48211,48212,48213,48214,48215,48216,48217,48218,48219,48220,48221,48222,48223,48224,48225,48226,48227,48228,48229,48230,48231,48232,48233,48234,48235,48236,48237,48238,48239,48240,48241,48242,48243,48244,48245,48246,48247,48248,48249,48250,48251,48252,48253,48254,48255,48256,48257,48258,48259,48260,48261,48262,48263,48264,48265,48266,48267,48268,48269,48270,48271,48272,48273,48274,48275,48276,48277,48278,48279,48280,48281,48282,48283,48284,48285,48286,48287,48288,48289,48290,48291,48292,48293,48294,48295,48296,48297,48298,48299,48300,48301,48302,48303,48304,48305,48306,48307,48308,48309,48310,48311,48312,48313,48314,48315,48316,48317,48318,48319,48320,48321,48322,48323,48324,48325,48326,48327,48328,48329,48330,48331,48332,48333,48334,48335,48336,48337,48338,48339,48340,48341,48342,48343,48344,48345,48346,48347,48348,48349,48350,48351,48352,48353,48354,48355,48356,48357,48358,48359,48360,48361,48362,48363,48364,48365,48366,48367,48368,48369,48370,48371,48372,48373,48374,48375,48376,48377,48378,48379,48380,48381,48382,48383,48384,48385,48386,48387,48388,48389,48390,48391,48392,48393,48394,48395,48396,48397,48398,48399,48400,48401,48402,48403,48404,48405,48406,48407,48408,48409,48410,48411,48412,48413,48414,48415,48416,48417,48418,48419,48420,48421,48422,48423,48424,48425,48426,48427,48428,48429,48430,48431,48432,48433,48434,48435,48436,48437,48438,48439,48440,48441,48442,48443,48444,48445,48446,48447,48448,48449,48450,48451,48452,48453,48454,48455,48456,48457,48458,48459,48460,48461,48462,48463,48464,48465,48466,48467,48468,48469,48470,48471,48472,48473,48474,48475,48476,48477,48478,48479,48480,48481,48482,48483,48484,48485,48486,48487,48488,48489,48490,48491,48492,48493,48494,48495,48496,48497,48498,48499,48500,48501,48502,48503,48504,48505,48506,48507,48508,48509,48510,48511,48512,48513,48514,48515,48516,48517,48518,48519,48520,48521,48522,48523,48524,48525,48526,48527,48528,48529,48530,48531,48532,48533,48534,48535,48536,48537,48538,48539,48540,48541,48542,48543,48544,48545,48546,48547,48548,48549,48550,48551,48552,48553,48554,48555,48556,48557,48558,48559,48560,48561,48562,48563,48564,48565,48566,48567,48568,48569,48570,48571,48572,48573,48574,48575,48576,48577,48578,48579,48580,48581,48582,48583,48584,48585,48586,48587,48588,48589,48590,48591,48592,48593,48594,48595,48596,48597,48598,48599,48600,48601,48602,48603,48604,48605,48606,48607,48608,48609,48610,48611,48612,48613,48614,48615,48616,48617,48618,48619,48620,48621,48622,48623,48624,48625,48626,48627,48628,48629,48630,48631,48632,48633,48634,48635,48636,48637,48638,48639,48640,48641,48642,48643,48644,48645,48646,48647,48648,48649,48650,48651,48652,48653,48654,48655,48656,48657,48658,48659,48660,48661,48662,48663,48664,48665,48666,48667,48668,48669,48670,48671,48672,48673,48674,48675,48676,48677,48678,48679,48680,48681,48682,48683,48684,48685,48686,48687,48688,48689,48690,48691,48692,48693,48694,48695,48696,48697,48698,48699,48700,48701,48702,48703,48704,48705,48706,48707,48708,48709,48710,48711,48712,48713,48714,48715,48716,48717,48718,48719,48720,48721,48722,48723,48724,48725,48726,48727,48728,48729,48730,48731,48732,48733,48734,48735,48736,48737,48738,48739,48740,48741,48742,48743,48744,48745,48746,48747,48748,48749,48750,48751,48752,48753,48754,48755,48756,48757,48758,48759,48760,48761,48762,48763,48764,48765,48766,48767,48768,48769,48770,48771,48772,48773,48774,48775,48776,48777,48778,48779,48780,48781,48782,48783,48784,48785,48786,48787,48788,48789,48790,48791,48792,48793,48794,48795,48796,48797,48798,48799,48800,48801,48802,48803,48804,48805,48806,48807,48808,48809,48810,48811,48812,48813,48814,48815,48816,48817,48818,48819,48820,48821,48822,48823,48824,48825,48826,48827,48828,48829,48830,48831,48832,48833,48834,48835,48836,48837,48838,48839,48840,48841,48842,48843,48844,48845,48846,48847,48848,48849,48850,48851,48852,48853,48854,48855,48856,48857,48858,48859,48860,48861,48862,48863,48864,48865,48866,48867,48868,48869,48870,48871,48872,48873,48874,48875,48876,48877,48878,48879,48880,48881,48882,48883,48884,48885,48886,48887,48888,48889,48890,48891,48892,48893,48894,48895,48896,48897,48898,48899,48900,48901,48902,48903,48904,48905,48906,48907,48908,48909,48910,48911,48912,48913,48914,48915,48916,48917,48918,48919,48920,48921,48922,48923,48924,48925,48926,48927,48928,48929,48930,48931,48932,48933,48934,48935,48936,48937,48938,48939,48940,48941,48942,48943,48944,48945,48946,48947,48948,48949,48950,48951,48952,48953,48954,48955,48956,48957,48958,48959,48960,48961,48962,48963,48964,48965,48966,48967,48968,48969,48970,48971,48972,48973,48974,48975,48976,48977,48978,48979,48980,48981,48982,48983,48984,48985,48986,48987,48988,48989,48990,48991,48992,48993,48994,48995,48996,48997,48998,48999,49000,49001,49002,49003,49004,49005,49006,49007,49008,49009,49010,49011,49012,49013,49014,49015,49016,49017,49018,49019,49020,49021,49022,49023,49024,49025,49026,49027,49028,49029,49030,49031,49032,49033,49034,49035,49036,49037,49038,49039,49040,49041,49042,49043,49044,49045,49046,49047,49048,49049,49050,49051,49052,49053,49054,49055,49056,49057,49058,49059,49060,49061,49062,49063,49064,49065,49066,49067,49068,49069,49070,49071,49072,49073,49074,49075,49076,49077,49078,49079,49080,49081,49082,49083,49084,49085,49086,49087,49088,49089,49090,49091,49092,49093,49094,49095,49096,49097,49098,49099,49100,49101,49102,49103,49104,49105,49106,49107,49108,49109,49110,49111,49112,49113,49114,49115,49116,49117,49118,49119,49120,49121,49122,49123,49124,49125,49126,49127,49128,49129,49130,49131,49132,49133,49134,49135,49136,49137,49138,49139,49140,49141,49142,49143,49144,49145,49146,49147,49148,49149,49150,49151,49152,49153,49154,49155,49156,49157,49158,49159,49160,49161,49162,49163,49164,49165,49166,49167,49168,49169,49170,49171,49172,49173,49174,49175,49176,49177,49178,49179,49180,49181,49182,49183,49184,49185,49186,49187,49188,49189,49190,49191,49192,49193,49194,49195,49196,49197,49198,49199,49200,49201,49202,49203,49204,49205,49206,49207,49208,49209,49210,49211,49212,49213,49214,49215,49216,49217,49218,49219,49220,49221,49222,49223,49224,49225,49226,49227,49228,49229,49230,49231,49232,49233,49234,49235,49236,49237,49238,49239,49240,49241,49242,49243,49244,49245,49246,49247,49248,49249,49250,49251,49252,49253,49254,49255,49256,49257,49258,49259,49260,49261,49262,49263,49264,49265,49266,49267,49268,49269,49270,49271,49272,49273,49274,49275,49276,49277,49278,49279,49280,49281,49282,49283,49284,49285,49286,49287,49288,49289,49290,49291,49292,49293,49294,49295,49296,49297,49298,49299,49300,49301,49302,49303,49304,49305,49306,49307,49308,49309,49310,49311,49312,49313,49314,49315,49316,49317,49318,49319,49320,49321,49322,49323,49324,49325,49326,49327,49328,49329,49330,49331,49332,49333,49334,49335,49336,49337,49338,49339,49340,49341,49342,49343,49344,49345,49346,49347,49348,49349,49350,49351,49352,49353,49354,49355,49356,49357,49358,49359,49360,49361,49362,49363,49364,49365,49366,49367,49368,49369,49370,49371,49372,49373,49374,49375,49376,49377,49378,49379,49380,49381,49382,49383,49384,49385,49386,49387,49388,49389,49390,49391,49392,49393,49394,49395,49396,49397,49398,49399,49400,49401,49402,49403,49404,49405,49406,49407,49408,49409,49410,49411,49412,49413,49414,49415,49416,49417,49418,49419,49420,49421,49422,49423,49424,49425,49426,49427,49428,49429,49430,49431,49432,49433,49434,49435,49436,49437,49438,49439,49440,49441,49442,49443,49444,49445,49446,49447,49448,49449,49450,49451,49452,49453,49454,49455,49456,49457,49458,49459,49460,49461,49462,49463,49464,49465,49466,49467,49468,49469,49470,49471,49472,49473,49474,49475,49476,49477,49478,49479,49480,49481,49482,49483,49484,49485,49486,49487,49488,49489,49490,49491,49492,49493,49494,49495,49496,49497,49498,49499,49500,49501,49502,49503,49504,49505,49506,49507,49508,49509,49510,49511,49512,49513,49514,49515,49516,49517,49518,49519,49520,49521,49522,49523,49524,49525,49526,49527,49528,49529,49530,49531,49532,49533,49534,49535,49536,49537,49538,49539,49540,49541,49542,49543,49544,49545,49546,49547,49548,49549,49550,49551,49552,49553,49554,49555,49556,49557,49558,49559,49560,49561,49562,49563,49564,49565,49566,49567,49568,49569,49570,49571,49572,49573,49574,49575,49576,49577,49578,49579,49580,49581,49582,49583,49584,49585,49586,49587,49588,49589,49590,49591,49592,49593,49594,49595,49596,49597,49598,49599,49600,49601,49602,49603,49604,49605,49606,49607,49608,49609,49610,49611,49612,49613,49614,49615,49616,49617,49618,49619,49620,49621,49622,49623,49624,49625,49626,49627,49628,49629,49630,49631,49632,49633,49634,49635,49636,49637,49638,49639,49640,49641,49642,49643,49644,49645,49646,49647,49648,49649,49650,49651,49652,49653,49654,49655,49656,49657,49658,49659,49660,49661,49662,49663,49664,49665,49666,49667,49668,49669,49670,49671,49672,49673,49674,49675,49676,49677,49678,49679,49680,49681,49682,49683,49684,49685,49686,49687,49688,49689,49690,49691,49692,49693,49694,49695,49696,49697,49698,49699,49700,49701,49702,49703,49704,49705,49706,49707,49708,49709,49710,49711,49712,49713,49714,49715,49716,49717,49718,49719,49720,49721,49722,49723,49724,49725,49726,49727,49728,49729,49730,49731,49732,49733,49734,49735,49736,49737,49738,49739,49740,49741,49742,49743,49744,49745,49746,49747,49748,49749,49750,49751,49752,49753,49754,49755,49756,49757,49758,49759,49760,49761,49762,49763,49764,49765,49766,49767,49768,49769,49770,49771,49772,49773,49774,49775,49776,49777,49778,49779,49780,49781,49782,49783,49784,49785,49786,49787,49788,49789,49790,49791,49792,49793,49794,49795,49796,49797,49798,49799,49800,49801,49802,49803,49804,49805,49806,49807,49808,49809,49810,49811,49812,49813,49814,49815,49816,49817,49818,49819,49820,49821,49822,49823,49824,49825,49826,49827,49828,49829,49830,49831,49832,49833,49834,49835,49836,49837,49838,49839,49840,49841,49842,49843,49844,49845,49846,49847,49848,49849,49850,49851,49852,49853,49854,49855,49856,49857,49858,49859,49860,49861,49862,49863,49864,49865,49866,49867,49868,49869,49870,49871,49872,49873,49874,49875,49876,49877,49878,49879,49880,49881,49882,49883,49884,49885,49886,49887,49888,49889,49890,49891,49892,49893,49894,49895,49896,49897,49898,49899,49900,49901,49902,49903,49904,49905,49906,49907,49908,49909,49910,49911,49912,49913,49914,49915,49916,49917,49918,49919,49920,49921,49922,49923,49924,49925,49926,49927,49928,49929,49930,49931,49932,49933,49934,49935,49936,49937,49938,49939,49940,49941,49942,49943,49944,49945,49946,49947,49948,49949,49950,49951,49952,49953,49954,49955,49956,49957,49958,49959,49960,49961,49962,49963,49964,49965,49966,49967,49968,49969,49970,49971,49972,49973,49974,49975,49976,49977,49978,49979,49980,49981,49982,49983,49984,49985,49986,49987,49988,49989,49990,49991,49992,49993,49994,49995,49996,49997,49998,49999]
-# code_output:
-# runtime_error:
-# last_testcase:[1,25001,3,37501,5,25003,7,43751,9,25005,11,37503,13,25007,15,49219,17,25009,19,37505,21,25011,23,43753,25,25013,27,37507,29,25015,31,46877,33,25017,35,37509,37,25019,39,43755,41,25021,43,37511,45,25023,47,48439,49,25025,51,37513,53,25027,55,43757,57,25029,59,37515,61,25031,63,46879,65,25033,67,37517,69,25035,71,43759,73,25037,75,37519,77,25039,79,49805,81,25041,83,37521,85,25043,87,43761,89,25045,91,37523,93,25047,95,46881,97,25049,99,37525,101,25051,103,43763,105,25053,107,37527,109,25055,111,48441,113,25057,115,37529,117,25059,119,43765,121,25061,123,37531,125,25063,127,46883,129,25065,131,37533,133,25067,135,43767,137,25069,139,37535,141,25071,143,49221,145,25073,147,37537,149,25075,151,43769,153,25077,155,37539,157,25079,159,46885,161,25081,163,37541,165,25083,167,43771,169,25085,171,37543,173,25087,175,48443,177,25089,179,37545,181,25091,183,43773,185,25093,187,37547,189,25095,191,46887,193,25097,195,37549,197,25099,199,43775,201,25101,203,37551,205,25103,207,49611,209,25105,211,37553,213,25107,215,43777,217,25109,219,37555,221,25111,223,46889,225,25113,227,37557,229,25115,231,43779,233,25117,235,37559,237,25119,239,48445,241,25121,243,37561,245,25123,247,43781,249,25125,251,37563,253,25127,255,46891,257,25129,259,37565,261,25131,263,43783,265,25133,267,37567,269,25135,271,49223,273,25137,275,37569,277,25139,279,43785,281,25141,283,37571,285,25143,287,46893,289,25145,291,37573,293,25147,295,43787,297,25149,299,37575,301,25151,303,48447,305,25153,307,37577,309,25155,311,43789,313,25157,315,37579,317,25159,319,46895,321,25161,323,37581,325,25163,327,43791,329,25165,331,37583,333,25167,335,49903,337,25169,339,37585,341,25171,343,43793,345,25173,347,37587,349,25175,351,46897,353,25177,355,37589,357,25179,359,43795,361,25181,363,37591,365,25183,367,48449,369,25185,371,37593,373,25187,375,43797,377,25189,379,37595,381,25191,383,46899,385,25193,387,37597,389,25195,391,43799,393,25197,395,37599,397,25199,399,49225,401,25201,403,37601,405,25203,407,43801,409,25205,411,37603,413,25207,415,46901,417,25209,419,37605,421,25211,423,43803,425,25213,427,37607,429,25215,431,48451,433,25217,435,37609,437,25219,439,43805,441,25221,443,37611,445,25223,447,46903,449,25225,451,37613,453,25227,455,43807,457,25229,459,37615,461,25231,463,49613,465,25233,467,37617,469,25235,471,43809,473,25237,475,37619,477,25239,479,46905,481,25241,483,37621,485,25243,487,43811,489,25245,491,37623,493,25247,495,48453,497,25249,499,37625,501,25251,503,43813,505,25253,507,37627,509,25255,511,46907,513,25257,515,37629,517,25259,519,43815,521,25261,523,37631,525,25263,527,49227,529,25265,531,37633,533,25267,535,43817,537,25269,539,37635,541,25271,543,46909,545,25273,547,37637,549,25275,551,43819,553,25277,555,37639,557,25279,559,48455,561,25281,563,37641,565,25283,567,43821,569,25285,571,37643,573,25287,575,46911,577,25289,579,37645,581,25291,583,43823,585,25293,587,37647,589,25295,591,49807,593,25297,595,37649,597,25299,599,43825,601,25301,603,37651,605,25303,607,46913,609,25305,611,37653,613,25307,615,43827,617,25309,619,37655,621,25311,623,48457,625,25313,627,37657,629,25315,631,43829,633,25317,635,37659,637,25319,639,46915,641,25321,643,37661,645,25323,647,43831,649,25325,651,37663,653,25327,655,49229,657,25329,659,37665,661,25331,663,43833,665,25333,667,37667,669,25335,671,46917,673,25337,675,37669,677,25339,679,43835,681,25341,683,37671,685,25343,687,48459,689,25345,691,37673,693,25347,695,43837,697,25349,699,37675,701,25351,703,46919,705,25353,707,37677,709,25355,711,43839,713,25357,715,37679,717,25359,719,49615,721,25361,723,37681,725,25363,727,43841,729,25365,731,37683,733,25367,735,46921,737,25369,739,37685,741,25371,743,43843,745,25373,747,37687,749,25375,751,48461,753,25377,755,37689,757,25379,759,43845,761,25381,763,37691,765,25383,767,46923,769,25385,771,37693,773,25387,775,43847,777,25389,779,37695,781,25391,783,49231,785,25393,787,37697,789,25395,791,43849,793,25397,795,37699,797,25399,799,46925,801,25401,803,37701,805,25403,807,43851,809,25405,811,37703,813,25407,815,48463,817,25409,819,37705,821,25411,823,43853,825,25413,827,37707,829,25415,831,46927,833,25417,835,37709,837,25419,839,43855,841,25421,843,37711,845,25423,847,49997,849,25425,851,37713,853,25427,855,43857,857,25429,859,37715,861,25431,863,46929,865,25433,867,37717,869,25435,871,43859,873,25437,875,37719,877,25439,879,48465,881,25441,883,37721,885,25443,887,43861,889,25445,891,37723,893,25447,895,46931,897,25449,899,37725,901,25451,903,43863,905,25453,907,37727,909,25455,911,49233,913,25457,915,37729,917,25459,919,43865,921,25461,923,37731,925,25463,927,46933,929,25465,931,37733,933,25467,935,43867,937,25469,939,37735,941,25471,943,48467,945,25473,947,37737,949,25475,951,43869,953,25477,955,37739,957,25479,959,46935,961,25481,963,37741,965,25483,967,43871,969,25485,971,37743,973,25487,975,49617,977,25489,979,37745,981,25491,983,43873,985,25493,987,37747,989,25495,991,46937,993,25497,995,37749,997,25499,999,43875,1001,25501,1003,37751,1005,25503,1007,48469,1009,25505,1011,37753,1013,25507,1015,43877,1017,25509,1019,37755,1021,25511,1023,46939,1025,25513,1027,37757,1029,25515,1031,43879,1033,25517,1035,37759,1037,25519,1039,49235,1041,25521,1043,37761,1045,25523,1047,43881,1049,25525,1051,37763,1053,25527,1055,46941,1057,25529,1059,37765,1061,25531,1063,43883,1065,25533,1067,37767,1069,25535,1071,48471,1073,25537,1075,37769,1077,25539,1079,43885,1081,25541,1083,37771,1085,25543,1087,46943,1089,25545,1091,37773,1093,25547,1095,43887,1097,25549,1099,37775,1101,25551,1103,49809,1105,25553,1107,37777,1109,25555,1111,43889,1113,25557,1115,37779,1117,25559,1119,46945,1121,25561,1123,37781,1125,25563,1127,43891,1129,25565,1131,37783,1133,25567,1135,48473,1137,25569,1139,37785,1141,25571,1143,43893,1145,25573,1147,37787,1149,25575,1151,46947,1153,25577,1155,37789,1157,25579,1159,43895,1161,25581,1163,37791,1165,25583,1167,49237,1169,25585,1171,37793,1173,25587,1175,43897,1177,25589,1179,37795,1181,25591,1183,46949,1185,25593,1187,37797,1189,25595,1191,43899,1193,25597,1195,37799,1197,25599,1199,48475,1201,25601,1203,37801,1205,25603,1207,43901,1209,25605,1211,37803,1213,25607,1215,46951,1217,25609,1219,37805,1221,25611,1223,43903,1225,25613,1227,37807,1229,25615,1231,49619,1233,25617,1235,37809,1237,25619,1239,43905,1241,25621,1243,37811,1245,25623,1247,46953,1249,25625,1251,37813,1253,25627,1255,43907,1257,25629,1259,37815,1261,25631,1263,48477,1265,25633,1267,37817,1269,25635,1271,43909,1273,25637,1275,37819,1277,25639,1279,46955,1281,25641,1283,37821,1285,25643,1287,43911,1289,25645,1291,37823,1293,25647,1295,49239,1297,25649,1299,37825,1301,25651,1303,43913,1305,25653,1307,37827,1309,25655,1311,46957,1313,25657,1315,37829,1317,25659,1319,43915,1321,25661,1323,37831,1325,25663,1327,48479,1329,25665,1331,37833,1333,25667,1335,43917,1337,25669,1339,37835,1341,25671,1343,46959,1345,25673,1347,37837,1349,25675,1351,43919,1353,25677,1355,37839,1357,25679,1359,49905,1361,25681,1363,37841,1365,25683,1367,43921,1369,25685,1371,37843,1373,25687,1375,46961,1377,25689,1379,37845,1381,25691,1383,43923,1385,25693,1387,37847,1389,25695,1391,48481,1393,25697,1395,37849,1397,25699,1399,43925,1401,25701,1403,37851,1405,25703,1407,46963,1409,25705,1411,37853,1413,25707,1415,43927,1417,25709,1419,37855,1421,25711,1423,49241,1425,25713,1427,37857,1429,25715,1431,43929,1433,25717,1435,37859,1437,25719,1439,46965,1441,25721,1443,37861,1445,25723,1447,43931,1449,25725,1451,37863,1453,25727,1455,48483,1457,25729,1459,37865,1461,25731,1463,43933,1465,25733,1467,37867,1469,25735,1471,46967,1473,25737,1475,37869,1477,25739,1479,43935,1481,25741,1483,37871,1485,25743,1487,49621,1489,25745,1491,37873,1493,25747,1495,43937,1497,25749,1499,37875,1501,25751,1503,46969,1505,25753,1507,37877,1509,25755,1511,43939,1513,25757,1515,37879,1517,25759,1519,48485,1521,25761,1523,37881,1525,25763,1527,43941,1529,25765,1531,37883,1533,25767,1535,46971,1537,25769,1539,37885,1541,25771,1543,43943,1545,25773,1547,37887,1549,25775,1551,49243,1553,25777,1555,37889,1557,25779,1559,43945,1561,25781,1563,37891,1565,25783,1567,46973,1569,25785,1571,37893,1573,25787,1575,43947,1577,25789,1579,37895,1581,25791,1583,48487,1585,25793,1587,37897,1589,25795,1591,43949,1593,25797,1595,37899,1597,25799,1599,46975,1601,25801,1603,37901,1605,25803,1607,43951,1609,25805,1611,37903,1613,25807,1615,49811,1617,25809,1619,37905,1621,25811,1623,43953,1625,25813,1627,37907,1629,25815,1631,46977,1633,25817,1635,37909,1637,25819,1639,43955,1641,25821,1643,37911,1645,25823,1647,48489,1649,25825,1651,37913,1653,25827,1655,43957,1657,25829,1659,37915,1661,25831,1663,46979,1665,25833,1667,37917,1669,25835,1671,43959,1673,25837,1675,37919,1677,25839,1679,49245,1681,25841,1683,37921,1685,25843,1687,43961,1689,25845,1691,37923,1693,25847,1695,46981,1697,25849,1699,37925,1701,25851,1703,43963,1705,25853,1707,37927,1709,25855,1711,48491,1713,25857,1715,37929,1717,25859,1719,43965,1721,25861,1723,37931,1725,25863,1727,46983,1729,25865,1731,37933,1733,25867,1735,43967,1737,25869,1739,37935,1741,25871,1743,49623,1745,25873,1747,37937,1749,25875,1751,43969,1753,25877,1755,37939,1757,25879,1759,46985,1761,25881,1763,37941,1765,25883,1767,43971,1769,25885,1771,37943,1773,25887,1775,48493,1777,25889,1779,37945,1781,25891,1783,43973,1785,25893,1787,37947,1789,25895,1791,46987,1793,25897,1795,37949,1797,25899,1799,43975,1801,25901,1803,37951,1805,25903,1807,49247,1809,25905,1811,37953,1813,25907,1815,43977,1817,25909,1819,37955,1821,25911,1823,46989,1825,25913,1827,37957,1829,25915,1831,43979,1833,25917,1835,37959,1837,25919,1839,48495,1841,25921,1843,37961,1845,25923,1847,43981,1849,25925,1851,37963,1853,25927,1855,46991,1857,25929,1859,37965,1861,25931,1863,43983,1865,25933,1867,37967,1869,25935,1871,49953,1873,25937,1875,37969,1877,25939,1879,43985,1881,25941,1883,37971,1885,25943,1887,46993,1889,25945,1891,37973,1893,25947,1895,43987,1897,25949,1899,37975,1901,25951,1903,48497,1905,25953,1907,37977,1909,25955,1911,43989,1913,25957,1915,37979,1917,25959,1919,46995,1921,25961,1923,37981,1925,25963,1927,43991,1929,25965,1931,37983,1933,25967,1935,49249,1937,25969,1939,37985,1941,25971,1943,43993,1945,25973,1947,37987,1949,25975,1951,46997,1953,25977,1955,37989,1957,25979,1959,43995,1961,25981,1963,37991,1965,25983,1967,48499,1969,25985,1971,37993,1973,25987,1975,43997,1977,25989,1979,37995,1981,25991,1983,46999,1985,25993,1987,37997,1989,25995,1991,43999,1993,25997,1995,37999,1997,25999,1999,49625,2001,26001,2003,38001,2005,26003,2007,44001,2009,26005,2011,38003,2013,26007,2015,47001,2017,26009,2019,38005,2021,26011,2023,44003,2025,26013,2027,38007,2029,26015,2031,48501,2033,26017,2035,38009,2037,26019,2039,44005,2041,26021,2043,38011,2045,26023,2047,47003,2049,26025,2051,38013,2053,26027,2055,44007,2057,26029,2059,38015,2061,26031,2063,49251,2065,26033,2067,38017,2069,26035,2071,44009,2073,26037,2075,38019,2077,26039,2079,47005,2081,26041,2083,38021,2085,26043,2087,44011,2089,26045,2091,38023,2093,26047,2095,48503,2097,26049,2099,38025,2101,26051,2103,44013,2105,26053,2107,38027,2109,26055,2111,47007,2113,26057,2115,38029,2117,26059,2119,44015,2121,26061,2123,38031,2125,26063,2127,49813,2129,26065,2131,38033,2133,26067,2135,44017,2137,26069,2139,38035,2141,26071,2143,47009,2145,26073,2147,38037,2149,26075,2151,44019,2153,26077,2155,38039,2157,26079,2159,48505,2161,26081,2163,38041,2165,26083,2167,44021,2169,26085,2171,38043,2173,26087,2175,47011,2177,26089,2179,38045,2181,26091,2183,44023,2185,26093,2187,38047,2189,26095,2191,49253,2193,26097,2195,38049,2197,26099,2199,44025,2201,26101,2203,38051,2205,26103,2207,47013,2209,26105,2211,38053,2213,26107,2215,44027,2217,26109,2219,38055,2221,26111,2223,48507,2225,26113,2227,38057,2229,26115,2231,44029,2233,26117,2235,38059,2237,26119,2239,47015,2241,26121,2243,38061,2245,26123,2247,44031,2249,26125,2251,38063,2253,26127,2255,49627,2257,26129,2259,38065,2261,26131,2263,44033,2265,26133,2267,38067,2269,26135,2271,47017,2273,26137,2275,38069,2277,26139,2279,44035,2281,26141,2283,38071,2285,26143,2287,48509,2289,26145,2291,38073,2293,26147,2295,44037,2297,26149,2299,38075,2301,26151,2303,47019,2305,26153,2307,38077,2309,26155,2311,44039,2313,26157,2315,38079,2317,26159,2319,49255,2321,26161,2323,38081,2325,26163,2327,44041,2329,26165,2331,38083,2333,26167,2335,47021,2337,26169,2339,38085,2341,26171,2343,44043,2345,26173,2347,38087,2349,26175,2351,48511,2353,26177,2355,38089,2357,26179,2359,44045,2361,26181,2363,38091,2365,26183,2367,47023,2369,26185,2371,38093,2373,26187,2375,44047,2377,26189,2379,38095,2381,26191,2383,49907,2385,26193,2387,38097,2389,26195,2391,44049,2393,26197,2395,38099,2397,26199,2399,47025,2401,26201,2403,38101,2405,26203,2407,44051,2409,26205,2411,38103,2413,26207,2415,48513,2417,26209,2419,38105,2421,26211,2423,44053,2425,26213,2427,38107,2429,26215,2431,47027,2433,26217,2435,38109,2437,26219,2439,44055,2441,26221,2443,38111,2445,26223,2447,49257,2449,26225,2451,38113,2453,26227,2455,44057,2457,26229,2459,38115,2461,26231,2463,47029,2465,26233,2467,38117,2469,26235,2471,44059,2473,26237,2475,38119,2477,26239,2479,48515,2481,26241,2483,38121,2485,26243,2487,44061,2489,26245,2491,38123,2493,26247,2495,47031,2497,26249,2499,38125,2501,26251,2503,44063,2505,26253,2507,38127,2509,26255,2511,49629,2513,26257,2515,38129,2517,26259,2519,44065,2521,26261,2523,38131,2525,26263,2527,47033,2529,26265,2531,38133,2533,26267,2535,44067,2537,26269,2539,38135,2541,26271,2543,48517,2545,26273,2547,38137,2549,26275,2551,44069,2553,26277,2555,38139,2557,26279,2559,47035,2561,26281,2563,38141,2565,26283,2567,44071,2569,26285,2571,38143,2573,26287,2575,49259,2577,26289,2579,38145,2581,26291,2583,44073,2585,26293,2587,38147,2589,26295,2591,47037,2593,26297,2595,38149,2597,26299,2599,44075,2601,26301,2603,38151,2605,26303,2607,48519,2609,26305,2611,38153,2613,26307,2615,44077,2617,26309,2619,38155,2621,26311,2623,47039,2625,26313,2627,38157,2629,26315,2631,44079,2633,26317,2635,38159,2637,26319,2639,49815,2641,26321,2643,38161,2645,26323,2647,44081,2649,26325,2651,38163,2653,26327,2655,47041,2657,26329,2659,38165,2661,26331,2663,44083,2665,26333,2667,38167,2669,26335,2671,48521,2673,26337,2675,38169,2677,26339,2679,44085,2681,26341,2683,38171,2685,26343,2687,47043,2689,26345,2691,38173,2693,26347,2695,44087,2697,26349,2699,38175,2701,26351,2703,49261,2705,26353,2707,38177,2709,26355,2711,44089,2713,26357,2715,38179,2717,26359,2719,47045,2721,26361,2723,38181,2725,26363,2727,44091,2729,26365,2731,38183,2733,26367,2735,48523,2737,26369,2739,38185,2741,26371,2743,44093,2745,26373,2747,38187,2749,26375,2751,47047,2753,26377,2755,38189,2757,26379,2759,44095,2761,26381,2763,38191,2765,26383,2767,49631,2769,26385,2771,38193,2773,26387,2775,44097,2777,26389,2779,38195,2781,26391,2783,47049,2785,26393,2787,38197,2789,26395,2791,44099,2793,26397,2795,38199,2797,26399,2799,48525,2801,26401,2803,38201,2805,26403,2807,44101,2809,26405,2811,38203,2813,26407,2815,47051,2817,26409,2819,38205,2821,26411,2823,44103,2825,26413,2827,38207,2829,26415,2831,49263,2833,26417,2835,38209,2837,26419,2839,44105,2841,26421,2843,38211,2845,26423,2847,47053,2849,26425,2851,38213,2853,26427,2855,44107,2857,26429,2859,38215,2861,26431,2863,48527,2865,26433,2867,38217,2869,26435,2871,44109,2873,26437,2875,38219,2877,26439,2879,47055,2881,26441,2883,38221,2885,26443,2887,44111,2889,26445,2891,38223,2893,26447,2895,49977,2897,26449,2899,38225,2901,26451,2903,44113,2905,26453,2907,38227,2909,26455,2911,47057,2913,26457,2915,38229,2917,26459,2919,44115,2921,26461,2923,38231,2925,26463,2927,48529,2929,26465,2931,38233,2933,26467,2935,44117,2937,26469,2939,38235,2941,26471,2943,47059,2945,26473,2947,38237,2949,26475,2951,44119,2953,26477,2955,38239,2957,26479,2959,49265,2961,26481,2963,38241,2965,26483,2967,44121,2969,26485,2971,38243,2973,26487,2975,47061,2977,26489,2979,38245,2981,26491,2983,44123,2985,26493,2987,38247,2989,26495,2991,48531,2993,26497,2995,38249,2997,26499,2999,44125,3001,26501,3003,38251,3005,26503,3007,47063,3009,26505,3011,38253,3013,26507,3015,44127,3017,26509,3019,38255,3021,26511,3023,49633,3025,26513,3027,38257,3029,26515,3031,44129,3033,26517,3035,38259,3037,26519,3039,47065,3041,26521,3043,38261,3045,26523,3047,44131,3049,26525,3051,38263,3053,26527,3055,48533,3057,26529,3059,38265,3061,26531,3063,44133,3065,26533,3067,38267,3069,26535,3071,47067,3073,26537,3075,38269,3077,26539,3079,44135,3081,26541,3083,38271,3085,26543,3087,49267,3089,26545,3091,38273,3093,26547,3095,44137,3097,26549,3099,38275,3101,26551,3103,47069,3105,26553,3107,38277,3109,26555,3111,44139,3113,26557,3115,38279,3117,26559,3119,48535,3121,26561,3123,38281,3125,26563,3127,44141,3129,26565,3131,38283,3133,26567,3135,47071,3137,26569,3139,38285,3141,26571,3143,44143,3145,26573,3147,38287,3149,26575,3151,49817,3153,26577,3155,38289,3157,26579,3159,44145,3161,26581,3163,38291,3165,26583,3167,47073,3169,26585,3171,38293,3173,26587,3175,44147,3177,26589,3179,38295,3181,26591,3183,48537,3185,26593,3187,38297,3189,26595,3191,44149,3193,26597,3195,38299,3197,26599,3199,47075,3201,26601,3203,38301,3205,26603,3207,44151,3209,26605,3211,38303,3213,26607,3215,49269,3217,26609,3219,38305,3221,26611,3223,44153,3225,26613,3227,38307,3229,26615,3231,47077,3233,26617,3235,38309,3237,26619,3239,44155,3241,26621,3243,38311,3245,26623,3247,48539,3249,26625,3251,38313,3253,26627,3255,44157,3257,26629,3259,38315,3261,26631,3263,47079,3265,26633,3267,38317,3269,26635,3271,44159,3273,26637,3275,38319,3277,26639,3279,49635,3281,26641,3283,38321,3285,26643,3287,44161,3289,26645,3291,38323,3293,26647,3295,47081,3297,26649,3299,38325,3301,26651,3303,44163,3305,26653,3307,38327,3309,26655,3311,48541,3313,26657,3315,38329,3317,26659,3319,44165,3321,26661,3323,38331,3325,26663,3327,47083,3329,26665,3331,38333,3333,26667,3335,44167,3337,26669,3339,38335,3341,26671,3343,49271,3345,26673,3347,38337,3349,26675,3351,44169,3353,26677,3355,38339,3357,26679,3359,47085,3361,26681,3363,38341,3365,26683,3367,44171,3369,26685,3371,38343,3373,26687,3375,48543,3377,26689,3379,38345,3381,26691,3383,44173,3385,26693,3387,38347,3389,26695,3391,47087,3393,26697,3395,38349,3397,26699,3399,44175,3401,26701,3403,38351,3405,26703,3407,49909,3409,26705,3411,38353,3413,26707,3415,44177,3417,26709,3419,38355,3421,26711,3423,47089,3425,26713,3427,38357,3429,26715,3431,44179,3433,26717,3435,38359,3437,26719,3439,48545,3441,26721,3443,38361,3445,26723,3447,44181,3449,26725,3451,38363,3453,26727,3455,47091,3457,26729,3459,38365,3461,26731,3463,44183,3465,26733,3467,38367,3469,26735,3471,49273,3473,26737,3475,38369,3477,26739,3479,44185,3481,26741,3483,38371,3485,26743,3487,47093,3489,26745,3491,38373,3493,26747,3495,44187,3497,26749,3499,38375,3501,26751,3503,48547,3505,26753,3507,38377,3509,26755,3511,44189,3513,26757,3515,38379,3517,26759,3519,47095,3521,26761,3523,38381,3525,26763,3527,44191,3529,26765,3531,38383,3533,26767,3535,49637,3537,26769,3539,38385,3541,26771,3543,44193,3545,26773,3547,38387,3549,26775,3551,47097,3553,26777,3555,38389,3557,26779,3559,44195,3561,26781,3563,38391,3565,26783,3567,48549,3569,26785,3571,38393,3573,26787,3575,44197,3577,26789,3579,38395,3581,26791,3583,47099,3585,26793,3587,38397,3589,26795,3591,44199,3593,26797,3595,38399,3597,26799,3599,49275,3601,26801,3603,38401,3605,26803,3607,44201,3609,26805,3611,38403,3613,26807,3615,47101,3617,26809,3619,38405,3621,26811,3623,44203,3625,26813,3627,38407,3629,26815,3631,48551,3633,26817,3635,38409,3637,26819,3639,44205,3641,26821,3643,38411,3645,26823,3647,47103,3649,26825,3651,38413,3653,26827,3655,44207,3657,26829,3659,38415,3661,26831,3663,49819,3665,26833,3667,38417,3669,26835,3671,44209,3673,26837,3675,38419,3677,26839,3679,47105,3681,26841,3683,38421,3685,26843,3687,44211,3689,26845,3691,38423,3693,26847,3695,48553,3697,26849,3699,38425,3701,26851,3703,44213,3705,26853,3707,38427,3709,26855,3711,47107,3713,26857,3715,38429,3717,26859,3719,44215,3721,26861,3723,38431,3725,26863,3727,49277,3729,26865,3731,38433,3733,26867,3735,44217,3737,26869,3739,38435,3741,26871,3743,47109,3745,26873,3747,38437,3749,26875,3751,44219,3753,26877,3755,38439,3757,26879,3759,48555,3761,26881,3763,38441,3765,26883,3767,44221,3769,26885,3771,38443,3773,26887,3775,47111,3777,26889,3779,38445,3781,26891,3783,44223,3785,26893,3787,38447,3789,26895,3791,49639,3793,26897,3795,38449,3797,26899,3799,44225,3801,26901,3803,38451,3805,26903,3807,47113,3809,26905,3811,38453,3813,26907,3815,44227,3817,26909,3819,38455,3821,26911,3823,48557,3825,26913,3827,38457,3829,26915,3831,44229,3833,26917,3835,38459,3837,26919,3839,47115,3841,26921,3843,38461,3845,26923,3847,44231,3849,26925,3851,38463,3853,26927,3855,49279,3857,26929,3859,38465,3861,26931,3863,44233,3865,26933,3867,38467,3869,26935,3871,47117,3873,26937,3875,38469,3877,26939,3879,44235,3881,26941,3883,38471,3885,26943,3887,48559,3889,26945,3891,38473,3893,26947,3895,44237,3897,26949,3899,38475,3901,26951,3903,47119,3905,26953,3907,38477,3909,26955,3911,44239,3913,26957,3915,38479,3917,26959,3919,49955,3921,26961,3923,38481,3925,26963,3927,44241,3929,26965,3931,38483,3933,26967,3935,47121,3937,26969,3939,38485,3941,26971,3943,44243,3945,26973,3947,38487,3949,26975,3951,48561,3953,26977,3955,38489,3957,26979,3959,44245,3961,26981,3963,38491,3965,26983,3967,47123,3969,26985,3971,38493,3973,26987,3975,44247,3977,26989,3979,38495,3981,26991,3983,49281,3985,26993,3987,38497,3989,26995,3991,44249,3993,26997,3995,38499,3997,26999,3999,47125,4001,27001,4003,38501,4005,27003,4007,44251,4009,27005,4011,38503,4013,27007,4015,48563,4017,27009,4019,38505,4021,27011,4023,44253,4025,27013,4027,38507,4029,27015,4031,47127,4033,27017,4035,38509,4037,27019,4039,44255,4041,27021,4043,38511,4045,27023,4047,49641,4049,27025,4051,38513,4053,27027,4055,44257,4057,27029,4059,38515,4061,27031,4063,47129,4065,27033,4067,38517,4069,27035,4071,44259,4073,27037,4075,38519,4077,27039,4079,48565,4081,27041,4083,38521,4085,27043,4087,44261,4089,27045,4091,38523,4093,27047,4095,47131,4097,27049,4099,38525,4101,27051,4103,44263,4105,27053,4107,38527,4109,27055,4111,49283,4113,27057,4115,38529,4117,27059,4119,44265,4121,27061,4123,38531,4125,27063,4127,47133,4129,27065,4131,38533,4133,27067,4135,44267,4137,27069,4139,38535,4141,27071,4143,48567,4145,27073,4147,38537,4149,27075,4151,44269,4153,27077,4155,38539,4157,27079,4159,47135,4161,27081,4163,38541,4165,27083,4167,44271,4169,27085,4171,38543,4173,27087,4175,49821,4177,27089,4179,38545,4181,27091,4183,44273,4185,27093,4187,38547,4189,27095,4191,47137,4193,27097,4195,38549,4197,27099,4199,44275,4201,27101,4203,38551,4205,27103,4207,48569,4209,27105,4211,38553,4213,27107,4215,44277,4217,27109,4219,38555,4221,27111,4223,47139,4225,27113,4227,38557,4229,27115,4231,44279,4233,27117,4235,38559,4237,27119,4239,49285,4241,27121,4243,38561,4245,27123,4247,44281,4249,27125,4251,38563,4253,27127,4255,47141,4257,27129,4259,38565,4261,27131,4263,44283,4265,27133,4267,38567,4269,27135,4271,48571,4273,27137,4275,38569,4277,27139,4279,44285,4281,27141,4283,38571,4285,27143,4287,47143,4289,27145,4291,38573,4293,27147,4295,44287,4297,27149,4299,38575,4301,27151,4303,49643,4305,27153,4307,38577,4309,27155,4311,44289,4313,27157,4315,38579,4317,27159,4319,47145,4321,27161,4323,38581,4325,27163,4327,44291,4329,27165,4331,38583,4333,27167,4335,48573,4337,27169,4339,38585,4341,27171,4343,44293,4345,27173,4347,38587,4349,27175,4351,47147,4353,27177,4355,38589,4357,27179,4359,44295,4361,27181,4363,38591,4365,27183,4367,49287,4369,27185,4371,38593,4373,27187,4375,44297,4377,27189,4379,38595,4381,27191,4383,47149,4385,27193,4387,38597,4389,27195,4391,44299,4393,27197,4395,38599,4397,27199,4399,48575,4401,27201,4403,38601,4405,27203,4407,44301,4409,27205,4411,38603,4413,27207,4415,47151,4417,27209,4419,38605,4421,27211,4423,44303,4425,27213,4427,38607,4429,27215,4431,49911,4433,27217,4435,38609,4437,27219,4439,44305,4441,27221,4443,38611,4445,27223,4447,47153,4449,27225,4451,38613,4453,27227,4455,44307,4457,27229,4459,38615,4461,27231,4463,48577,4465,27233,4467,38617,4469,27235,4471,44309,4473,27237,4475,38619,4477,27239,4479,47155,4481,27241,4483,38621,4485,27243,4487,44311,4489,27245,4491,38623,4493,27247,4495,49289,4497,27249,4499,38625,4501,27251,4503,44313,4505,27253,4507,38627,4509,27255,4511,47157,4513,27257,4515,38629,4517,27259,4519,44315,4521,27261,4523,38631,4525,27263,4527,48579,4529,27265,4531,38633,4533,27267,4535,44317,4537,27269,4539,38635,4541,27271,4543,47159,4545,27273,4547,38637,4549,27275,4551,44319,4553,27277,4555,38639,4557,27279,4559,49645,4561,27281,4563,38641,4565,27283,4567,44321,4569,27285,4571,38643,4573,27287,4575,47161,4577,27289,4579,38645,4581,27291,4583,44323,4585,27293,4587,38647,4589,27295,4591,48581,4593,27297,4595,38649,4597,27299,4599,44325,4601,27301,4603,38651,4605,27303,4607,47163,4609,27305,4611,38653,4613,27307,4615,44327,4617,27309,4619,38655,4621,27311,4623,49291,4625,27313,4627,38657,4629,27315,4631,44329,4633,27317,4635,38659,4637,27319,4639,47165,4641,27321,4643,38661,4645,27323,4647,44331,4649,27325,4651,38663,4653,27327,4655,48583,4657,27329,4659,38665,4661,27331,4663,44333,4665,27333,4667,38667,4669,27335,4671,47167,4673,27337,4675,38669,4677,27339,4679,44335,4681,27341,4683,38671,4685,27343,4687,49823,4689,27345,4691,38673,4693,27347,4695,44337,4697,27349,4699,38675,4701,27351,4703,47169,4705,27353,4707,38677,4709,27355,4711,44339,4713,27357,4715,38679,4717,27359,4719,48585,4721,27361,4723,38681,4725,27363,4727,44341,4729,27365,4731,38683,4733,27367,4735,47171,4737,27369,4739,38685,4741,27371,4743,44343,4745,27373,4747,38687,4749,27375,4751,49293,4753,27377,4755,38689,4757,27379,4759,44345,4761,27381,4763,38691,4765,27383,4767,47173,4769,27385,4771,38693,4773,27387,4775,44347,4777,27389,4779,38695,4781,27391,4783,48587,4785,27393,4787,38697,4789,27395,4791,44349,4793,27397,4795,38699,4797,27399,4799,47175,4801,27401,4803,38701,4805,27403,4807,44351,4809,27405,4811,38703,4813,27407,4815,49647,4817,27409,4819,38705,4821,27411,4823,44353,4825,27413,4827,38707,4829,27415,4831,47177,4833,27417,4835,38709,4837,27419,4839,44355,4841,27421,4843,38711,4845,27423,4847,48589,4849,27425,4851,38713,4853,27427,4855,44357,4857,27429,4859,38715,4861,27431,4863,47179,4865,27433,4867,38717,4869,27435,4871,44359,4873,27437,4875,38719,4877,27439,4879,49295,4881,27441,4883,38721,4885,27443,4887,44361,4889,27445,4891,38723,4893,27447,4895,47181,4897,27449,4899,38725,4901,27451,4903,44363,4905,27453,4907,38727,4909,27455,4911,48591,4913,27457,4915,38729,4917,27459,4919,44365,4921,27461,4923,38731,4925,27463,4927,47183,4929,27465,4931,38733,4933,27467,4935,44367,4937,27469,4939,38735,4941,27471,4943,49989,4945,27473,4947,38737,4949,27475,4951,44369,4953,27477,4955,38739,4957,27479,4959,47185,4961,27481,4963,38741,4965,27483,4967,44371,4969,27485,4971,38743,4973,27487,4975,48593,4977,27489,4979,38745,4981,27491,4983,44373,4985,27493,4987,38747,4989,27495,4991,47187,4993,27497,4995,38749,4997,27499,4999,44375,5001,27501,5003,38751,5005,27503,5007,49297,5009,27505,5011,38753,5013,27507,5015,44377,5017,27509,5019,38755,5021,27511,5023,47189,5025,27513,5027,38757,5029,27515,5031,44379,5033,27517,5035,38759,5037,27519,5039,48595,5041,27521,5043,38761,5045,27523,5047,44381,5049,27525,5051,38763,5053,27527,5055,47191,5057,27529,5059,38765,5061,27531,5063,44383,5065,27533,5067,38767,5069,27535,5071,49649,5073,27537,5075,38769,5077,27539,5079,44385,5081,27541,5083,38771,5085,27543,5087,47193,5089,27545,5091,38773,5093,27547,5095,44387,5097,27549,5099,38775,5101,27551,5103,48597,5105,27553,5107,38777,5109,27555,5111,44389,5113,27557,5115,38779,5117,27559,5119,47195,5121,27561,5123,38781,5125,27563,5127,44391,5129,27565,5131,38783,5133,27567,5135,49299,5137,27569,5139,38785,5141,27571,5143,44393,5145,27573,5147,38787,5149,27575,5151,47197,5153,27577,5155,38789,5157,27579,5159,44395,5161,27581,5163,38791,5165,27583,5167,48599,5169,27585,5171,38793,5173,27587,5175,44397,5177,27589,5179,38795,5181,27591,5183,47199,5185,27593,5187,38797,5189,27595,5191,44399,5193,27597,5195,38799,5197,27599,5199,49825,5201,27601,5203,38801,5205,27603,5207,44401,5209,27605,5211,38803,5213,27607,5215,47201,5217,27609,5219,38805,5221,27611,5223,44403,5225,27613,5227,38807,5229,27615,5231,48601,5233,27617,5235,38809,5237,27619,5239,44405,5241,27621,5243,38811,5245,27623,5247,47203,5249,27625,5251,38813,5253,27627,5255,44407,5257,27629,5259,38815,5261,27631,5263,49301,5265,27633,5267,38817,5269,27635,5271,44409,5273,27637,5275,38819,5277,27639,5279,47205,5281,27641,5283,38821,5285,27643,5287,44411,5289,27645,5291,38823,5293,27647,5295,48603,5297,27649,5299,38825,5301,27651,5303,44413,5305,27653,5307,38827,5309,27655,5311,47207,5313,27657,5315,38829,5317,27659,5319,44415,5321,27661,5323,38831,5325,27663,5327,49651,5329,27665,5331,38833,5333,27667,5335,44417,5337,27669,5339,38835,5341,27671,5343,47209,5345,27673,5347,38837,5349,27675,5351,44419,5353,27677,5355,38839,5357,27679,5359,48605,5361,27681,5363,38841,5365,27683,5367,44421,5369,27685,5371,38843,5373,27687,5375,47211,5377,27689,5379,38845,5381,27691,5383,44423,5385,27693,5387,38847,5389,27695,5391,49303,5393,27697,5395,38849,5397,27699,5399,44425,5401,27701,5403,38851,5405,27703,5407,47213,5409,27705,5411,38853,5413,27707,5415,44427,5417,27709,5419,38855,5421,27711,5423,48607,5425,27713,5427,38857,5429,27715,5431,44429,5433,27717,5435,38859,5437,27719,5439,47215,5441,27721,5443,38861,5445,27723,5447,44431,5449,27725,5451,38863,5453,27727,5455,49913,5457,27729,5459,38865,5461,27731,5463,44433,5465,27733,5467,38867,5469,27735,5471,47217,5473,27737,5475,38869,5477,27739,5479,44435,5481,27741,5483,38871,5485,27743,5487,48609,5489,27745,5491,38873,5493,27747,5495,44437,5497,27749,5499,38875,5501,27751,5503,47219,5505,27753,5507,38877,5509,27755,5511,44439,5513,27757,5515,38879,5517,27759,5519,49305,5521,27761,5523,38881,5525,27763,5527,44441,5529,27765,5531,38883,5533,27767,5535,47221,5537,27769,5539,38885,5541,27771,5543,44443,5545,27773,5547,38887,5549,27775,5551,48611,5553,27777,5555,38889,5557,27779,5559,44445,5561,27781,5563,38891,5565,27783,5567,47223,5569,27785,5571,38893,5573,27787,5575,44447,5577,27789,5579,38895,5581,27791,5583,49653,5585,27793,5587,38897,5589,27795,5591,44449,5593,27797,5595,38899,5597,27799,5599,47225,5601,27801,5603,38901,5605,27803,5607,44451,5609,27805,5611,38903,5613,27807,5615,48613,5617,27809,5619,38905,5621,27811,5623,44453,5625,27813,5627,38907,5629,27815,5631,47227,5633,27817,5635,38909,5637,27819,5639,44455,5641,27821,5643,38911,5645,27823,5647,49307,5649,27825,5651,38913,5653,27827,5655,44457,5657,27829,5659,38915,5661,27831,5663,47229,5665,27833,5667,38917,5669,27835,5671,44459,5673,27837,5675,38919,5677,27839,5679,48615,5681,27841,5683,38921,5685,27843,5687,44461,5689,27845,5691,38923,5693,27847,5695,47231,5697,27849,5699,38925,5701,27851,5703,44463,5705,27853,5707,38927,5709,27855,5711,49827,5713,27857,5715,38929,5717,27859,5719,44465,5721,27861,5723,38931,5725,27863,5727,47233,5729,27865,5731,38933,5733,27867,5735,44467,5737,27869,5739,38935,5741,27871,5743,48617,5745,27873,5747,38937,5749,27875,5751,44469,5753,27877,5755,38939,5757,27879,5759,47235,5761,27881,5763,38941,5765,27883,5767,44471,5769,27885,5771,38943,5773,27887,5775,49309,5777,27889,5779,38945,5781,27891,5783,44473,5785,27893,5787,38947,5789,27895,5791,47237,5793,27897,5795,38949,5797,27899,5799,44475,5801,27901,5803,38951,5805,27903,5807,48619,5809,27905,5811,38953,5813,27907,5815,44477,5817,27909,5819,38955,5821,27911,5823,47239,5825,27913,5827,38957,5829,27915,5831,44479,5833,27917,5835,38959,5837,27919,5839,49655,5841,27921,5843,38961,5845,27923,5847,44481,5849,27925,5851,38963,5853,27927,5855,47241,5857,27929,5859,38965,5861,27931,5863,44483,5865,27933,5867,38967,5869,27935,5871,48621,5873,27937,5875,38969,5877,27939,5879,44485,5881,27941,5883,38971,5885,27943,5887,47243,5889,27945,5891,38973,5893,27947,5895,44487,5897,27949,5899,38975,5901,27951,5903,49311,5905,27953,5907,38977,5909,27955,5911,44489,5913,27957,5915,38979,5917,27959,5919,47245,5921,27961,5923,38981,5925,27963,5927,44491,5929,27965,5931,38983,5933,27967,5935,48623,5937,27969,5939,38985,5941,27971,5943,44493,5945,27973,5947,38987,5949,27975,5951,47247,5953,27977,5955,38989,5957,27979,5959,44495,5961,27981,5963,38991,5965,27983,5967,49957,5969,27985,5971,38993,5973,27987,5975,44497,5977,27989,5979,38995,5981,27991,5983,47249,5985,27993,5987,38997,5989,27995,5991,44499,5993,27997,5995,38999,5997,27999,5999,48625,6001,28001,6003,39001,6005,28003,6007,44501,6009,28005,6011,39003,6013,28007,6015,47251,6017,28009,6019,39005,6021,28011,6023,44503,6025,28013,6027,39007,6029,28015,6031,49313,6033,28017,6035,39009,6037,28019,6039,44505,6041,28021,6043,39011,6045,28023,6047,47253,6049,28025,6051,39013,6053,28027,6055,44507,6057,28029,6059,39015,6061,28031,6063,48627,6065,28033,6067,39017,6069,28035,6071,44509,6073,28037,6075,39019,6077,28039,6079,47255,6081,28041,6083,39021,6085,28043,6087,44511,6089,28045,6091,39023,6093,28047,6095,49657,6097,28049,6099,39025,6101,28051,6103,44513,6105,28053,6107,39027,6109,28055,6111,47257,6113,28057,6115,39029,6117,28059,6119,44515,6121,28061,6123,39031,6125,28063,6127,48629,6129,28065,6131,39033,6133,28067,6135,44517,6137,28069,6139,39035,6141,28071,6143,47259,6145,28073,6147,39037,6149,28075,6151,44519,6153,28077,6155,39039,6157,28079,6159,49315,6161,28081,6163,39041,6165,28083,6167,44521,6169,28085,6171,39043,6173,28087,6175,47261,6177,28089,6179,39045,6181,28091,6183,44523,6185,28093,6187,39047,6189,28095,6191,48631,6193,28097,6195,39049,6197,28099,6199,44525,6201,28101,6203,39051,6205,28103,6207,47263,6209,28105,6211,39053,6213,28107,6215,44527,6217,28109,6219,39055,6221,28111,6223,49829,6225,28113,6227,39057,6229,28115,6231,44529,6233,28117,6235,39059,6237,28119,6239,47265,6241,28121,6243,39061,6245,28123,6247,44531,6249,28125,6251,39063,6253,28127,6255,48633,6257,28129,6259,39065,6261,28131,6263,44533,6265,28133,6267,39067,6269,28135,6271,47267,6273,28137,6275,39069,6277,28139,6279,44535,6281,28141,6283,39071,6285,28143,6287,49317,6289,28145,6291,39073,6293,28147,6295,44537,6297,28149,6299,39075,6301,28151,6303,47269,6305,28153,6307,39077,6309,28155,6311,44539,6313,28157,6315,39079,6317,28159,6319,48635,6321,28161,6323,39081,6325,28163,6327,44541,6329,28165,6331,39083,6333,28167,6335,47271,6337,28169,6339,39085,6341,28171,6343,44543,6345,28173,6347,39087,6349,28175,6351,49659,6353,28177,6355,39089,6357,28179,6359,44545,6361,28181,6363,39091,6365,28183,6367,47273,6369,28185,6371,39093,6373,28187,6375,44547,6377,28189,6379,39095,6381,28191,6383,48637,6385,28193,6387,39097,6389,28195,6391,44549,6393,28197,6395,39099,6397,28199,6399,47275,6401,28201,6403,39101,6405,28203,6407,44551,6409,28205,6411,39103,6413,28207,6415,49319,6417,28209,6419,39105,6421,28211,6423,44553,6425,28213,6427,39107,6429,28215,6431,47277,6433,28217,6435,39109,6437,28219,6439,44555,6441,28221,6443,39111,6445,28223,6447,48639,6449,28225,6451,39113,6453,28227,6455,44557,6457,28229,6459,39115,6461,28231,6463,47279,6465,28233,6467,39117,6469,28235,6471,44559,6473,28237,6475,39119,6477,28239,6479,49915,6481,28241,6483,39121,6485,28243,6487,44561,6489,28245,6491,39123,6493,28247,6495,47281,6497,28249,6499,39125,6501,28251,6503,44563,6505,28253,6507,39127,6509,28255,6511,48641,6513,28257,6515,39129,6517,28259,6519,44565,6521,28261,6523,39131,6525,28263,6527,47283,6529,28265,6531,39133,6533,28267,6535,44567,6537,28269,6539,39135,6541,28271,6543,49321,6545,28273,6547,39137,6549,28275,6551,44569,6553,28277,6555,39139,6557,28279,6559,47285,6561,28281,6563,39141,6565,28283,6567,44571,6569,28285,6571,39143,6573,28287,6575,48643,6577,28289,6579,39145,6581,28291,6583,44573,6585,28293,6587,39147,6589,28295,6591,47287,6593,28297,6595,39149,6597,28299,6599,44575,6601,28301,6603,39151,6605,28303,6607,49661,6609,28305,6611,39153,6613,28307,6615,44577,6617,28309,6619,39155,6621,28311,6623,47289,6625,28313,6627,39157,6629,28315,6631,44579,6633,28317,6635,39159,6637,28319,6639,48645,6641,28321,6643,39161,6645,28323,6647,44581,6649,28325,6651,39163,6653,28327,6655,47291,6657,28329,6659,39165,6661,28331,6663,44583,6665,28333,6667,39167,6669,28335,6671,49323,6673,28337,6675,39169,6677,28339,6679,44585,6681,28341,6683,39171,6685,28343,6687,47293,6689,28345,6691,39173,6693,28347,6695,44587,6697,28349,6699,39175,6701,28351,6703,48647,6705,28353,6707,39177,6709,28355,6711,44589,6713,28357,6715,39179,6717,28359,6719,47295,6721,28361,6723,39181,6725,28363,6727,44591,6729,28365,6731,39183,6733,28367,6735,49831,6737,28369,6739,39185,6741,28371,6743,44593,6745,28373,6747,39187,6749,28375,6751,47297,6753,28377,6755,39189,6757,28379,6759,44595,6761,28381,6763,39191,6765,28383,6767,48649,6769,28385,6771,39193,6773,28387,6775,44597,6777,28389,6779,39195,6781,28391,6783,47299,6785,28393,6787,39197,6789,28395,6791,44599,6793,28397,6795,39199,6797,28399,6799,49325,6801,28401,6803,39201,6805,28403,6807,44601,6809,28405,6811,39203,6813,28407,6815,47301,6817,28409,6819,39205,6821,28411,6823,44603,6825,28413,6827,39207,6829,28415,6831,48651,6833,28417,6835,39209,6837,28419,6839,44605,6841,28421,6843,39211,6845,28423,6847,47303,6849,28425,6851,39213,6853,28427,6855,44607,6857,28429,6859,39215,6861,28431,6863,49663,6865,28433,6867,39217,6869,28435,6871,44609,6873,28437,6875,39219,6877,28439,6879,47305,6881,28441,6883,39221,6885,28443,6887,44611,6889,28445,6891,39223,6893,28447,6895,48653,6897,28449,6899,39225,6901,28451,6903,44613,6905,28453,6907,39227,6909,28455,6911,47307,6913,28457,6915,39229,6917,28459,6919,44615,6921,28461,6923,39231,6925,28463,6927,49327,6929,28465,6931,39233,6933,28467,6935,44617,6937,28469,6939,39235,6941,28471,6943,47309,6945,28473,6947,39237,6949,28475,6951,44619,6953,28477,6955,39239,6957,28479,6959,48655,6961,28481,6963,39241,6965,28483,6967,44621,6969,28485,6971,39243,6973,28487,6975,47311,6977,28489,6979,39245,6981,28491,6983,44623,6985,28493,6987,39247,6989,28495,6991,49979,6993,28497,6995,39249,6997,28499,6999,44625,7001,28501,7003,39251,7005,28503,7007,47313,7009,28505,7011,39253,7013,28507,7015,44627,7017,28509,7019,39255,7021,28511,7023,48657,7025,28513,7027,39257,7029,28515,7031,44629,7033,28517,7035,39259,7037,28519,7039,47315,7041,28521,7043,39261,7045,28523,7047,44631,7049,28525,7051,39263,7053,28527,7055,49329,7057,28529,7059,39265,7061,28531,7063,44633,7065,28533,7067,39267,7069,28535,7071,47317,7073,28537,7075,39269,7077,28539,7079,44635,7081,28541,7083,39271,7085,28543,7087,48659,7089,28545,7091,39273,7093,28547,7095,44637,7097,28549,7099,39275,7101,28551,7103,47319,7105,28553,7107,39277,7109,28555,7111,44639,7113,28557,7115,39279,7117,28559,7119,49665,7121,28561,7123,39281,7125,28563,7127,44641,7129,28565,7131,39283,7133,28567,7135,47321,7137,28569,7139,39285,7141,28571,7143,44643,7145,28573,7147,39287,7149,28575,7151,48661,7153,28577,7155,39289,7157,28579,7159,44645,7161,28581,7163,39291,7165,28583,7167,47323,7169,28585,7171,39293,7173,28587,7175,44647,7177,28589,7179,39295,7181,28591,7183,49331,7185,28593,7187,39297,7189,28595,7191,44649,7193,28597,7195,39299,7197,28599,7199,47325,7201,28601,7203,39301,7205,28603,7207,44651,7209,28605,7211,39303,7213,28607,7215,48663,7217,28609,7219,39305,7221,28611,7223,44653,7225,28613,7227,39307,7229,28615,7231,47327,7233,28617,7235,39309,7237,28619,7239,44655,7241,28621,7243,39311,7245,28623,7247,49833,7249,28625,7251,39313,7253,28627,7255,44657,7257,28629,7259,39315,7261,28631,7263,47329,7265,28633,7267,39317,7269,28635,7271,44659,7273,28637,7275,39319,7277,28639,7279,48665,7281,28641,7283,39321,7285,28643,7287,44661,7289,28645,7291,39323,7293,28647,7295,47331,7297,28649,7299,39325,7301,28651,7303,44663,7305,28653,7307,39327,7309,28655,7311,49333,7313,28657,7315,39329,7317,28659,7319,44665,7321,28661,7323,39331,7325,28663,7327,47333,7329,28665,7331,39333,7333,28667,7335,44667,7337,28669,7339,39335,7341,28671,7343,48667,7345,28673,7347,39337,7349,28675,7351,44669,7353,28677,7355,39339,7357,28679,7359,47335,7361,28681,7363,39341,7365,28683,7367,44671,7369,28685,7371,39343,7373,28687,7375,49667,7377,28689,7379,39345,7381,28691,7383,44673,7385,28693,7387,39347,7389,28695,7391,47337,7393,28697,7395,39349,7397,28699,7399,44675,7401,28701,7403,39351,7405,28703,7407,48669,7409,28705,7411,39353,7413,28707,7415,44677,7417,28709,7419,39355,7421,28711,7423,47339,7425,28713,7427,39357,7429,28715,7431,44679,7433,28717,7435,39359,7437,28719,7439,49335,7441,28721,7443,39361,7445,28723,7447,44681,7449,28725,7451,39363,7453,28727,7455,47341,7457,28729,7459,39365,7461,28731,7463,44683,7465,28733,7467,39367,7469,28735,7471,48671,7473,28737,7475,39369,7477,28739,7479,44685,7481,28741,7483,39371,7485,28743,7487,47343,7489,28745,7491,39373,7493,28747,7495,44687,7497,28749,7499,39375,7501,28751,7503,49917,7505,28753,7507,39377,7509,28755,7511,44689,7513,28757,7515,39379,7517,28759,7519,47345,7521,28761,7523,39381,7525,28763,7527,44691,7529,28765,7531,39383,7533,28767,7535,48673,7537,28769,7539,39385,7541,28771,7543,44693,7545,28773,7547,39387,7549,28775,7551,47347,7553,28777,7555,39389,7557,28779,7559,44695,7561,28781,7563,39391,7565,28783,7567,49337,7569,28785,7571,39393,7573,28787,7575,44697,7577,28789,7579,39395,7581,28791,7583,47349,7585,28793,7587,39397,7589,28795,7591,44699,7593,28797,7595,39399,7597,28799,7599,48675,7601,28801,7603,39401,7605,28803,7607,44701,7609,28805,7611,39403,7613,28807,7615,47351,7617,28809,7619,39405,7621,28811,7623,44703,7625,28813,7627,39407,7629,28815,7631,49669,7633,28817,7635,39409,7637,28819,7639,44705,7641,28821,7643,39411,7645,28823,7647,47353,7649,28825,7651,39413,7653,28827,7655,44707,7657,28829,7659,39415,7661,28831,7663,48677,7665,28833,7667,39417,7669,28835,7671,44709,7673,28837,7675,39419,7677,28839,7679,47355,7681,28841,7683,39421,7685,28843,7687,44711,7689,28845,7691,39423,7693,28847,7695,49339,7697,28849,7699,39425,7701,28851,7703,44713,7705,28853,7707,39427,7709,28855,7711,47357,7713,28857,7715,39429,7717,28859,7719,44715,7721,28861,7723,39431,7725,28863,7727,48679,7729,28865,7731,39433,7733,28867,7735,44717,7737,28869,7739,39435,7741,28871,7743,47359,7745,28873,7747,39437,7749,28875,7751,44719,7753,28877,7755,39439,7757,28879,7759,49835,7761,28881,7763,39441,7765,28883,7767,44721,7769,28885,7771,39443,7773,28887,7775,47361,7777,28889,7779,39445,7781,28891,7783,44723,7785,28893,7787,39447,7789,28895,7791,48681,7793,28897,7795,39449,7797,28899,7799,44725,7801,28901,7803,39451,7805,28903,7807,47363,7809,28905,7811,39453,7813,28907,7815,44727,7817,28909,7819,39455,7821,28911,7823,49341,7825,28913,7827,39457,7829,28915,7831,44729,7833,28917,7835,39459,7837,28919,7839,47365,7841,28921,7843,39461,7845,28923,7847,44731,7849,28925,7851,39463,7853,28927,7855,48683,7857,28929,7859,39465,7861,28931,7863,44733,7865,28933,7867,39467,7869,28935,7871,47367,7873,28937,7875,39469,7877,28939,7879,44735,7881,28941,7883,39471,7885,28943,7887,49671,7889,28945,7891,39473,7893,28947,7895,44737,7897,28949,7899,39475,7901,28951,7903,47369,7905,28953,7907,39477,7909,28955,7911,44739,7913,28957,7915,39479,7917,28959,7919,48685,7921,28961,7923,39481,7925,28963,7927,44741,7929,28965,7931,39483,7933,28967,7935,47371,7937,28969,7939,39485,7941,28971,7943,44743,7945,28973,7947,39487,7949,28975,7951,49343,7953,28977,7955,39489,7957,28979,7959,44745,7961,28981,7963,39491,7965,28983,7967,47373,7969,28985,7971,39493,7973,28987,7975,44747,7977,28989,7979,39495,7981,28991,7983,48687,7985,28993,7987,39497,7989,28995,7991,44749,7993,28997,7995,39499,7997,28999,7999,47375,8001,29001,8003,39501,8005,29003,8007,44751,8009,29005,8011,39503,8013,29007,8015,49959,8017,29009,8019,39505,8021,29011,8023,44753,8025,29013,8027,39507,8029,29015,8031,47377,8033,29017,8035,39509,8037,29019,8039,44755,8041,29021,8043,39511,8045,29023,8047,48689,8049,29025,8051,39513,8053,29027,8055,44757,8057,29029,8059,39515,8061,29031,8063,47379,8065,29033,8067,39517,8069,29035,8071,44759,8073,29037,8075,39519,8077,29039,8079,49345,8081,29041,8083,39521,8085,29043,8087,44761,8089,29045,8091,39523,8093,29047,8095,47381,8097,29049,8099,39525,8101,29051,8103,44763,8105,29053,8107,39527,8109,29055,8111,48691,8113,29057,8115,39529,8117,29059,8119,44765,8121,29061,8123,39531,8125,29063,8127,47383,8129,29065,8131,39533,8133,29067,8135,44767,8137,29069,8139,39535,8141,29071,8143,49673,8145,29073,8147,39537,8149,29075,8151,44769,8153,29077,8155,39539,8157,29079,8159,47385,8161,29081,8163,39541,8165,29083,8167,44771,8169,29085,8171,39543,8173,29087,8175,48693,8177,29089,8179,39545,8181,29091,8183,44773,8185,29093,8187,39547,8189,29095,8191,47387,8193,29097,8195,39549,8197,29099,8199,44775,8201,29101,8203,39551,8205,29103,8207,49347,8209,29105,8211,39553,8213,29107,8215,44777,8217,29109,8219,39555,8221,29111,8223,47389,8225,29113,8227,39557,8229,29115,8231,44779,8233,29117,8235,39559,8237,29119,8239,48695,8241,29121,8243,39561,8245,29123,8247,44781,8249,29125,8251,39563,8253,29127,8255,47391,8257,29129,8259,39565,8261,29131,8263,44783,8265,29133,8267,39567,8269,29135,8271,49837,8273,29137,8275,39569,8277,29139,8279,44785,8281,29141,8283,39571,8285,29143,8287,47393,8289,29145,8291,39573,8293,29147,8295,44787,8297,29149,8299,39575,8301,29151,8303,48697,8305,29153,8307,39577,8309,29155,8311,44789,8313,29157,8315,39579,8317,29159,8319,47395,8321,29161,8323,39581,8325,29163,8327,44791,8329,29165,8331,39583,8333,29167,8335,49349,8337,29169,8339,39585,8341,29171,8343,44793,8345,29173,8347,39587,8349,29175,8351,47397,8353,29177,8355,39589,8357,29179,8359,44795,8361,29181,8363,39591,8365,29183,8367,48699,8369,29185,8371,39593,8373,29187,8375,44797,8377,29189,8379,39595,8381,29191,8383,47399,8385,29193,8387,39597,8389,29195,8391,44799,8393,29197,8395,39599,8397,29199,8399,49675,8401,29201,8403,39601,8405,29203,8407,44801,8409,29205,8411,39603,8413,29207,8415,47401,8417,29209,8419,39605,8421,29211,8423,44803,8425,29213,8427,39607,8429,29215,8431,48701,8433,29217,8435,39609,8437,29219,8439,44805,8441,29221,8443,39611,8445,29223,8447,47403,8449,29225,8451,39613,8453,29227,8455,44807,8457,29229,8459,39615,8461,29231,8463,49351,8465,29233,8467,39617,8469,29235,8471,44809,8473,29237,8475,39619,8477,29239,8479,47405,8481,29241,8483,39621,8485,29243,8487,44811,8489,29245,8491,39623,8493,29247,8495,48703,8497,29249,8499,39625,8501,29251,8503,44813,8505,29253,8507,39627,8509,29255,8511,47407,8513,29257,8515,39629,8517,29259,8519,44815,8521,29261,8523,39631,8525,29263,8527,49919,8529,29265,8531,39633,8533,29267,8535,44817,8537,29269,8539,39635,8541,29271,8543,47409,8545,29273,8547,39637,8549,29275,8551,44819,8553,29277,8555,39639,8557,29279,8559,48705,8561,29281,8563,39641,8565,29283,8567,44821,8569,29285,8571,39643,8573,29287,8575,47411,8577,29289,8579,39645,8581,29291,8583,44823,8585,29293,8587,39647,8589,29295,8591,49353,8593,29297,8595,39649,8597,29299,8599,44825,8601,29301,8603,39651,8605,29303,8607,47413,8609,29305,8611,39653,8613,29307,8615,44827,8617,29309,8619,39655,8621,29311,8623,48707,8625,29313,8627,39657,8629,29315,8631,44829,8633,29317,8635,39659,8637,29319,8639,47415,8641,29321,8643,39661,8645,29323,8647,44831,8649,29325,8651,39663,8653,29327,8655,49677,8657,29329,8659,39665,8661,29331,8663,44833,8665,29333,8667,39667,8669,29335,8671,47417,8673,29337,8675,39669,8677,29339,8679,44835,8681,29341,8683,39671,8685,29343,8687,48709,8689,29345,8691,39673,8693,29347,8695,44837,8697,29349,8699,39675,8701,29351,8703,47419,8705,29353,8707,39677,8709,29355,8711,44839,8713,29357,8715,39679,8717,29359,8719,49355,8721,29361,8723,39681,8725,29363,8727,44841,8729,29365,8731,39683,8733,29367,8735,47421,8737,29369,8739,39685,8741,29371,8743,44843,8745,29373,8747,39687,8749,29375,8751,48711,8753,29377,8755,39689,8757,29379,8759,44845,8761,29381,8763,39691,8765,29383,8767,47423,8769,29385,8771,39693,8773,29387,8775,44847,8777,29389,8779,39695,8781,29391,8783,49839,8785,29393,8787,39697,8789,29395,8791,44849,8793,29397,8795,39699,8797,29399,8799,47425,8801,29401,8803,39701,8805,29403,8807,44851,8809,29405,8811,39703,8813,29407,8815,48713,8817,29409,8819,39705,8821,29411,8823,44853,8825,29413,8827,39707,8829,29415,8831,47427,8833,29417,8835,39709,8837,29419,8839,44855,8841,29421,8843,39711,8845,29423,8847,49357,8849,29425,8851,39713,8853,29427,8855,44857,8857,29429,8859,39715,8861,29431,8863,47429,8865,29433,8867,39717,8869,29435,8871,44859,8873,29437,8875,39719,8877,29439,8879,48715,8881,29441,8883,39721,8885,29443,8887,44861,8889,29445,8891,39723,8893,29447,8895,47431,8897,29449,8899,39725,8901,29451,8903,44863,8905,29453,8907,39727,8909,29455,8911,49679,8913,29457,8915,39729,8917,29459,8919,44865,8921,29461,8923,39731,8925,29463,8927,47433,8929,29465,8931,39733,8933,29467,8935,44867,8937,29469,8939,39735,8941,29471,8943,48717,8945,29473,8947,39737,8949,29475,8951,44869,8953,29477,8955,39739,8957,29479,8959,47435,8961,29481,8963,39741,8965,29483,8967,44871,8969,29485,8971,39743,8973,29487,8975,49359,8977,29489,8979,39745,8981,29491,8983,44873,8985,29493,8987,39747,8989,29495,8991,47437,8993,29497,8995,39749,8997,29499,8999,44875,9001,29501,9003,39751,9005,29503,9007,48719,9009,29505,9011,39753,9013,29507,9015,44877,9017,29509,9019,39755,9021,29511,9023,47439,9025,29513,9027,39757,9029,29515,9031,44879,9033,29517,9035,39759,9037,29519,9039,49995,9041,29521,9043,39761,9045,29523,9047,44881,9049,29525,9051,39763,9053,29527,9055,47441,9057,29529,9059,39765,9061,29531,9063,44883,9065,29533,9067,39767,9069,29535,9071,48721,9073,29537,9075,39769,9077,29539,9079,44885,9081,29541,9083,39771,9085,29543,9087,47443,9089,29545,9091,39773,9093,29547,9095,44887,9097,29549,9099,39775,9101,29551,9103,49361,9105,29553,9107,39777,9109,29555,9111,44889,9113,29557,9115,39779,9117,29559,9119,47445,9121,29561,9123,39781,9125,29563,9127,44891,9129,29565,9131,39783,9133,29567,9135,48723,9137,29569,9139,39785,9141,29571,9143,44893,9145,29573,9147,39787,9149,29575,9151,47447,9153,29577,9155,39789,9157,29579,9159,44895,9161,29581,9163,39791,9165,29583,9167,49681,9169,29585,9171,39793,9173,29587,9175,44897,9177,29589,9179,39795,9181,29591,9183,47449,9185,29593,9187,39797,9189,29595,9191,44899,9193,29597,9195,39799,9197,29599,9199,48725,9201,29601,9203,39801,9205,29603,9207,44901,9209,29605,9211,39803,9213,29607,9215,47451,9217,29609,9219,39805,9221,29611,9223,44903,9225,29613,9227,39807,9229,29615,9231,49363,9233,29617,9235,39809,9237,29619,9239,44905,9241,29621,9243,39811,9245,29623,9247,47453,9249,29625,9251,39813,9253,29627,9255,44907,9257,29629,9259,39815,9261,29631,9263,48727,9265,29633,9267,39817,9269,29635,9271,44909,9273,29637,9275,39819,9277,29639,9279,47455,9281,29641,9283,39821,9285,29643,9287,44911,9289,29645,9291,39823,9293,29647,9295,49841,9297,29649,9299,39825,9301,29651,9303,44913,9305,29653,9307,39827,9309,29655,9311,47457,9313,29657,9315,39829,9317,29659,9319,44915,9321,29661,9323,39831,9325,29663,9327,48729,9329,29665,9331,39833,9333,29667,9335,44917,9337,29669,9339,39835,9341,29671,9343,47459,9345,29673,9347,39837,9349,29675,9351,44919,9353,29677,9355,39839,9357,29679,9359,49365,9361,29681,9363,39841,9365,29683,9367,44921,9369,29685,9371,39843,9373,29687,9375,47461,9377,29689,9379,39845,9381,29691,9383,44923,9385,29693,9387,39847,9389,29695,9391,48731,9393,29697,9395,39849,9397,29699,9399,44925,9401,29701,9403,39851,9405,29703,9407,47463,9409,29705,9411,39853,9413,29707,9415,44927,9417,29709,9419,39855,9421,29711,9423,49683,9425,29713,9427,39857,9429,29715,9431,44929,9433,29717,9435,39859,9437,29719,9439,47465,9441,29721,9443,39861,9445,29723,9447,44931,9449,29725,9451,39863,9453,29727,9455,48733,9457,29729,9459,39865,9461,29731,9463,44933,9465,29733,9467,39867,9469,29735,9471,47467,9473,29737,9475,39869,9477,29739,9479,44935,9481,29741,9483,39871,9485,29743,9487,49367,9489,29745,9491,39873,9493,29747,9495,44937,9497,29749,9499,39875,9501,29751,9503,47469,9505,29753,9507,39877,9509,29755,9511,44939,9513,29757,9515,39879,9517,29759,9519,48735,9521,29761,9523,39881,9525,29763,9527,44941,9529,29765,9531,39883,9533,29767,9535,47471,9537,29769,9539,39885,9541,29771,9543,44943,9545,29773,9547,39887,9549,29775,9551,49921,9553,29777,9555,39889,9557,29779,9559,44945,9561,29781,9563,39891,9565,29783,9567,47473,9569,29785,9571,39893,9573,29787,9575,44947,9577,29789,9579,39895,9581,29791,9583,48737,9585,29793,9587,39897,9589,29795,9591,44949,9593,29797,9595,39899,9597,29799,9599,47475,9601,29801,9603,39901,9605,29803,9607,44951,9609,29805,9611,39903,9613,29807,9615,49369,9617,29809,9619,39905,9621,29811,9623,44953,9625,29813,9627,39907,9629,29815,9631,47477,9633,29817,9635,39909,9637,29819,9639,44955,9641,29821,9643,39911,9645,29823,9647,48739,9649,29825,9651,39913,9653,29827,9655,44957,9657,29829,9659,39915,9661,29831,9663,47479,9665,29833,9667,39917,9669,29835,9671,44959,9673,29837,9675,39919,9677,29839,9679,49685,9681,29841,9683,39921,9685,29843,9687,44961,9689,29845,9691,39923,9693,29847,9695,47481,9697,29849,9699,39925,9701,29851,9703,44963,9705,29853,9707,39927,9709,29855,9711,48741,9713,29857,9715,39929,9717,29859,9719,44965,9721,29861,9723,39931,9725,29863,9727,47483,9729,29865,9731,39933,9733,29867,9735,44967,9737,29869,9739,39935,9741,29871,9743,49371,9745,29873,9747,39937,9749,29875,9751,44969,9753,29877,9755,39939,9757,29879,9759,47485,9761,29881,9763,39941,9765,29883,9767,44971,9769,29885,9771,39943,9773,29887,9775,48743,9777,29889,9779,39945,9781,29891,9783,44973,9785,29893,9787,39947,9789,29895,9791,47487,9793,29897,9795,39949,9797,29899,9799,44975,9801,29901,9803,39951,9805,29903,9807,49843,9809,29905,9811,39953,9813,29907,9815,44977,9817,29909,9819,39955,9821,29911,9823,47489,9825,29913,9827,39957,9829,29915,9831,44979,9833,29917,9835,39959,9837,29919,9839,48745,9841,29921,9843,39961,9845,29923,9847,44981,9849,29925,9851,39963,9853,29927,9855,47491,9857,29929,9859,39965,9861,29931,9863,44983,9865,29933,9867,39967,9869,29935,9871,49373,9873,29937,9875,39969,9877,29939,9879,44985,9881,29941,9883,39971,9885,29943,9887,47493,9889,29945,9891,39973,9893,29947,9895,44987,9897,29949,9899,39975,9901,29951,9903,48747,9905,29953,9907,39977,9909,29955,9911,44989,9913,29957,9915,39979,9917,29959,9919,47495,9921,29961,9923,39981,9925,29963,9927,44991,9929,29965,9931,39983,9933,29967,9935,49687,9937,29969,9939,39985,9941,29971,9943,44993,9945,29973,9947,39987,9949,29975,9951,47497,9953,29977,9955,39989,9957,29979,9959,44995,9961,29981,9963,39991,9965,29983,9967,48749,9969,29985,9971,39993,9973,29987,9975,44997,9977,29989,9979,39995,9981,29991,9983,47499,9985,29993,9987,39997,9989,29995,9991,44999,9993,29997,9995,39999,9997,29999,9999,49375,10001,30001,10003,40001,10005,30003,10007,45001,10009,30005,10011,40003,10013,30007,10015,47501,10017,30009,10019,40005,10021,30011,10023,45003,10025,30013,10027,40007,10029,30015,10031,48751,10033,30017,10035,40009,10037,30019,10039,45005,10041,30021,10043,40011,10045,30023,10047,47503,10049,30025,10051,40013,10053,30027,10055,45007,10057,30029,10059,40015,10061,30031,10063,49961,10065,30033,10067,40017,10069,30035,10071,45009,10073,30037,10075,40019,10077,30039,10079,47505,10081,30041,10083,40021,10085,30043,10087,45011,10089,30045,10091,40023,10093,30047,10095,48753,10097,30049,10099,40025,10101,30051,10103,45013,10105,30053,10107,40027,10109,30055,10111,47507,10113,30057,10115,40029,10117,30059,10119,45015,10121,30061,10123,40031,10125,30063,10127,49377,10129,30065,10131,40033,10133,30067,10135,45017,10137,30069,10139,40035,10141,30071,10143,47509,10145,30073,10147,40037,10149,30075,10151,45019,10153,30077,10155,40039,10157,30079,10159,48755,10161,30081,10163,40041,10165,30083,10167,45021,10169,30085,10171,40043,10173,30087,10175,47511,10177,30089,10179,40045,10181,30091,10183,45023,10185,30093,10187,40047,10189,30095,10191,49689,10193,30097,10195,40049,10197,30099,10199,45025,10201,30101,10203,40051,10205,30103,10207,47513,10209,30105,10211,40053,10213,30107,10215,45027,10217,30109,10219,40055,10221,30111,10223,48757,10225,30113,10227,40057,10229,30115,10231,45029,10233,30117,10235,40059,10237,30119,10239,47515,10241,30121,10243,40061,10245,30123,10247,45031,10249,30125,10251,40063,10253,30127,10255,49379,10257,30129,10259,40065,10261,30131,10263,45033,10265,30133,10267,40067,10269,30135,10271,47517,10273,30137,10275,40069,10277,30139,10279,45035,10281,30141,10283,40071,10285,30143,10287,48759,10289,30145,10291,40073,10293,30147,10295,45037,10297,30149,10299,40075,10301,30151,10303,47519,10305,30153,10307,40077,10309,30155,10311,45039,10313,30157,10315,40079,10317,30159,10319,49845,10321,30161,10323,40081,10325,30163,10327,45041,10329,30165,10331,40083,10333,30167,10335,47521,10337,30169,10339,40085,10341,30171,10343,45043,10345,30173,10347,40087,10349,30175,10351,48761,10353,30177,10355,40089,10357,30179,10359,45045,10361,30181,10363,40091,10365,30183,10367,47523,10369,30185,10371,40093,10373,30187,10375,45047,10377,30189,10379,40095,10381,30191,10383,49381,10385,30193,10387,40097,10389,30195,10391,45049,10393,30197,10395,40099,10397,30199,10399,47525,10401,30201,10403,40101,10405,30203,10407,45051,10409,30205,10411,40103,10413,30207,10415,48763,10417,30209,10419,40105,10421,30211,10423,45053,10425,30213,10427,40107,10429,30215,10431,47527,10433,30217,10435,40109,10437,30219,10439,45055,10441,30221,10443,40111,10445,30223,10447,49691,10449,30225,10451,40113,10453,30227,10455,45057,10457,30229,10459,40115,10461,30231,10463,47529,10465,30233,10467,40117,10469,30235,10471,45059,10473,30237,10475,40119,10477,30239,10479,48765,10481,30241,10483,40121,10485,30243,10487,45061,10489,30245,10491,40123,10493,30247,10495,47531,10497,30249,10499,40125,10501,30251,10503,45063,10505,30253,10507,40127,10509,30255,10511,49383,10513,30257,10515,40129,10517,30259,10519,45065,10521,30261,10523,40131,10525,30263,10527,47533,10529,30265,10531,40133,10533,30267,10535,45067,10537,30269,10539,40135,10541,30271,10543,48767,10545,30273,10547,40137,10549,30275,10551,45069,10553,30277,10555,40139,10557,30279,10559,47535,10561,30281,10563,40141,10565,30283,10567,45071,10569,30285,10571,40143,10573,30287,10575,49923,10577,30289,10579,40145,10581,30291,10583,45073,10585,30293,10587,40147,10589,30295,10591,47537,10593,30297,10595,40149,10597,30299,10599,45075,10601,30301,10603,40151,10605,30303,10607,48769,10609,30305,10611,40153,10613,30307,10615,45077,10617,30309,10619,40155,10621,30311,10623,47539,10625,30313,10627,40157,10629,30315,10631,45079,10633,30317,10635,40159,10637,30319,10639,49385,10641,30321,10643,40161,10645,30323,10647,45081,10649,30325,10651,40163,10653,30327,10655,47541,10657,30329,10659,40165,10661,30331,10663,45083,10665,30333,10667,40167,10669,30335,10671,48771,10673,30337,10675,40169,10677,30339,10679,45085,10681,30341,10683,40171,10685,30343,10687,47543,10689,30345,10691,40173,10693,30347,10695,45087,10697,30349,10699,40175,10701,30351,10703,49693,10705,30353,10707,40177,10709,30355,10711,45089,10713,30357,10715,40179,10717,30359,10719,47545,10721,30361,10723,40181,10725,30363,10727,45091,10729,30365,10731,40183,10733,30367,10735,48773,10737,30369,10739,40185,10741,30371,10743,45093,10745,30373,10747,40187,10749,30375,10751,47547,10753,30377,10755,40189,10757,30379,10759,45095,10761,30381,10763,40191,10765,30383,10767,49387,10769,30385,10771,40193,10773,30387,10775,45097,10777,30389,10779,40195,10781,30391,10783,47549,10785,30393,10787,40197,10789,30395,10791,45099,10793,30397,10795,40199,10797,30399,10799,48775,10801,30401,10803,40201,10805,30403,10807,45101,10809,30405,10811,40203,10813,30407,10815,47551,10817,30409,10819,40205,10821,30411,10823,45103,10825,30413,10827,40207,10829,30415,10831,49847,10833,30417,10835,40209,10837,30419,10839,45105,10841,30421,10843,40211,10845,30423,10847,47553,10849,30425,10851,40213,10853,30427,10855,45107,10857,30429,10859,40215,10861,30431,10863,48777,10865,30433,10867,40217,10869,30435,10871,45109,10873,30437,10875,40219,10877,30439,10879,47555,10881,30441,10883,40221,10885,30443,10887,45111,10889,30445,10891,40223,10893,30447,10895,49389,10897,30449,10899,40225,10901,30451,10903,45113,10905,30453,10907,40227,10909,30455,10911,47557,10913,30457,10915,40229,10917,30459,10919,45115,10921,30461,10923,40231,10925,30463,10927,48779,10929,30465,10931,40233,10933,30467,10935,45117,10937,30469,10939,40235,10941,30471,10943,47559,10945,30473,10947,40237,10949,30475,10951,45119,10953,30477,10955,40239,10957,30479,10959,49695,10961,30481,10963,40241,10965,30483,10967,45121,10969,30485,10971,40243,10973,30487,10975,47561,10977,30489,10979,40245,10981,30491,10983,45123,10985,30493,10987,40247,10989,30495,10991,48781,10993,30497,10995,40249,10997,30499,10999,45125,11001,30501,11003,40251,11005,30503,11007,47563,11009,30505,11011,40253,11013,30507,11015,45127,11017,30509,11019,40255,11021,30511,11023,49391,11025,30513,11027,40257,11029,30515,11031,45129,11033,30517,11035,40259,11037,30519,11039,47565,11041,30521,11043,40261,11045,30523,11047,45131,11049,30525,11051,40263,11053,30527,11055,48783,11057,30529,11059,40265,11061,30531,11063,45133,11065,30533,11067,40267,11069,30535,11071,47567,11073,30537,11075,40269,11077,30539,11079,45135,11081,30541,11083,40271,11085,30543,11087,49981,11089,30545,11091,40273,11093,30547,11095,45137,11097,30549,11099,40275,11101,30551,11103,47569,11105,30553,11107,40277,11109,30555,11111,45139,11113,30557,11115,40279,11117,30559,11119,48785,11121,30561,11123,40281,11125,30563,11127,45141,11129,30565,11131,40283,11133,30567,11135,47571,11137,30569,11139,40285,11141,30571,11143,45143,11145,30573,11147,40287,11149,30575,11151,49393,11153,30577,11155,40289,11157,30579,11159,45145,11161,30581,11163,40291,11165,30583,11167,47573,11169,30585,11171,40293,11173,30587,11175,45147,11177,30589,11179,40295,11181,30591,11183,48787,11185,30593,11187,40297,11189,30595,11191,45149,11193,30597,11195,40299,11197,30599,11199,47575,11201,30601,11203,40301,11205,30603,11207,45151,11209,30605,11211,40303,11213,30607,11215,49697,11217,30609,11219,40305,11221,30611,11223,45153,11225,30613,11227,40307,11229,30615,11231,47577,11233,30617,11235,40309,11237,30619,11239,45155,11241,30621,11243,40311,11245,30623,11247,48789,11249,30625,11251,40313,11253,30627,11255,45157,11257,30629,11259,40315,11261,30631,11263,47579,11265,30633,11267,40317,11269,30635,11271,45159,11273,30637,11275,40319,11277,30639,11279,49395,11281,30641,11283,40321,11285,30643,11287,45161,11289,30645,11291,40323,11293,30647,11295,47581,11297,30649,11299,40325,11301,30651,11303,45163,11305,30653,11307,40327,11309,30655,11311,48791,11313,30657,11315,40329,11317,30659,11319,45165,11321,30661,11323,40331,11325,30663,11327,47583,11329,30665,11331,40333,11333,30667,11335,45167,11337,30669,11339,40335,11341,30671,11343,49849,11345,30673,11347,40337,11349,30675,11351,45169,11353,30677,11355,40339,11357,30679,11359,47585,11361,30681,11363,40341,11365,30683,11367,45171,11369,30685,11371,40343,11373,30687,11375,48793,11377,30689,11379,40345,11381,30691,11383,45173,11385,30693,11387,40347,11389,30695,11391,47587,11393,30697,11395,40349,11397,30699,11399,45175,11401,30701,11403,40351,11405,30703,11407,49397,11409,30705,11411,40353,11413,30707,11415,45177,11417,30709,11419,40355,11421,30711,11423,47589,11425,30713,11427,40357,11429,30715,11431,45179,11433,30717,11435,40359,11437,30719,11439,48795,11441,30721,11443,40361,11445,30723,11447,45181,11449,30725,11451,40363,11453,30727,11455,47591,11457,30729,11459,40365,11461,30731,11463,45183,11465,30733,11467,40367,11469,30735,11471,49699,11473,30737,11475,40369,11477,30739,11479,45185,11481,30741,11483,40371,11485,30743,11487,47593,11489,30745,11491,40373,11493,30747,11495,45187,11497,30749,11499,40375,11501,30751,11503,48797,11505,30753,11507,40377,11509,30755,11511,45189,11513,30757,11515,40379,11517,30759,11519,47595,11521,30761,11523,40381,11525,30763,11527,45191,11529,30765,11531,40383,11533,30767,11535,49399,11537,30769,11539,40385,11541,30771,11543,45193,11545,30773,11547,40387,11549,30775,11551,47597,11553,30777,11555,40389,11557,30779,11559,45195,11561,30781,11563,40391,11565,30783,11567,48799,11569,30785,11571,40393,11573,30787,11575,45197,11577,30789,11579,40395,11581,30791,11583,47599,11585,30793,11587,40397,11589,30795,11591,45199,11593,30797,11595,40399,11597,30799,11599,49925,11601,30801,11603,40401,11605,30803,11607,45201,11609,30805,11611,40403,11613,30807,11615,47601,11617,30809,11619,40405,11621,30811,11623,45203,11625,30813,11627,40407,11629,30815,11631,48801,11633,30817,11635,40409,11637,30819,11639,45205,11641,30821,11643,40411,11645,30823,11647,47603,11649,30825,11651,40413,11653,30827,11655,45207,11657,30829,11659,40415,11661,30831,11663,49401,11665,30833,11667,40417,11669,30835,11671,45209,11673,30837,11675,40419,11677,30839,11679,47605,11681,30841,11683,40421,11685,30843,11687,45211,11689,30845,11691,40423,11693,30847,11695,48803,11697,30849,11699,40425,11701,30851,11703,45213,11705,30853,11707,40427,11709,30855,11711,47607,11713,30857,11715,40429,11717,30859,11719,45215,11721,30861,11723,40431,11725,30863,11727,49701,11729,30865,11731,40433,11733,30867,11735,45217,11737,30869,11739,40435,11741,30871,11743,47609,11745,30873,11747,40437,11749,30875,11751,45219,11753,30877,11755,40439,11757,30879,11759,48805,11761,30881,11763,40441,11765,30883,11767,45221,11769,30885,11771,40443,11773,30887,11775,47611,11777,30889,11779,40445,11781,30891,11783,45223,11785,30893,11787,40447,11789,30895,11791,49403,11793,30897,11795,40449,11797,30899,11799,45225,11801,30901,11803,40451,11805,30903,11807,47613,11809,30905,11811,40453,11813,30907,11815,45227,11817,30909,11819,40455,11821,30911,11823,48807,11825,30913,11827,40457,11829,30915,11831,45229,11833,30917,11835,40459,11837,30919,11839,47615,11841,30921,11843,40461,11845,30923,11847,45231,11849,30925,11851,40463,11853,30927,11855,49851,11857,30929,11859,40465,11861,30931,11863,45233,11865,30933,11867,40467,11869,30935,11871,47617,11873,30937,11875,40469,11877,30939,11879,45235,11881,30941,11883,40471,11885,30943,11887,48809,11889,30945,11891,40473,11893,30947,11895,45237,11897,30949,11899,40475,11901,30951,11903,47619,11905,30953,11907,40477,11909,30955,11911,45239,11913,30957,11915,40479,11917,30959,11919,49405,11921,30961,11923,40481,11925,30963,11927,45241,11929,30965,11931,40483,11933,30967,11935,47621,11937,30969,11939,40485,11941,30971,11943,45243,11945,30973,11947,40487,11949,30975,11951,48811,11953,30977,11955,40489,11957,30979,11959,45245,11961,30981,11963,40491,11965,30983,11967,47623,11969,30985,11971,40493,11973,30987,11975,45247,11977,30989,11979,40495,11981,30991,11983,49703,11985,30993,11987,40497,11989,30995,11991,45249,11993,30997,11995,40499,11997,30999,11999,47625,12001,31001,12003,40501,12005,31003,12007,45251,12009,31005,12011,40503,12013,31007,12015,48813,12017,31009,12019,40505,12021,31011,12023,45253,12025,31013,12027,40507,12029,31015,12031,47627,12033,31017,12035,40509,12037,31019,12039,45255,12041,31021,12043,40511,12045,31023,12047,49407,12049,31025,12051,40513,12053,31027,12055,45257,12057,31029,12059,40515,12061,31031,12063,47629,12065,31033,12067,40517,12069,31035,12071,45259,12073,31037,12075,40519,12077,31039,12079,48815,12081,31041,12083,40521,12085,31043,12087,45261,12089,31045,12091,40523,12093,31047,12095,47631,12097,31049,12099,40525,12101,31051,12103,45263,12105,31053,12107,40527,12109,31055,12111,49963,12113,31057,12115,40529,12117,31059,12119,45265,12121,31061,12123,40531,12125,31063,12127,47633,12129,31065,12131,40533,12133,31067,12135,45267,12137,31069,12139,40535,12141,31071,12143,48817,12145,31073,12147,40537,12149,31075,12151,45269,12153,31077,12155,40539,12157,31079,12159,47635,12161,31081,12163,40541,12165,31083,12167,45271,12169,31085,12171,40543,12173,31087,12175,49409,12177,31089,12179,40545,12181,31091,12183,45273,12185,31093,12187,40547,12189,31095,12191,47637,12193,31097,12195,40549,12197,31099,12199,45275,12201,31101,12203,40551,12205,31103,12207,48819,12209,31105,12211,40553,12213,31107,12215,45277,12217,31109,12219,40555,12221,31111,12223,47639,12225,31113,12227,40557,12229,31115,12231,45279,12233,31117,12235,40559,12237,31119,12239,49705,12241,31121,12243,40561,12245,31123,12247,45281,12249,31125,12251,40563,12253,31127,12255,47641,12257,31129,12259,40565,12261,31131,12263,45283,12265,31133,12267,40567,12269,31135,12271,48821,12273,31137,12275,40569,12277,31139,12279,45285,12281,31141,12283,40571,12285,31143,12287,47643,12289,31145,12291,40573,12293,31147,12295,45287,12297,31149,12299,40575,12301,31151,12303,49411,12305,31153,12307,40577,12309,31155,12311,45289,12313,31157,12315,40579,12317,31159,12319,47645,12321,31161,12323,40581,12325,31163,12327,45291,12329,31165,12331,40583,12333,31167,12335,48823,12337,31169,12339,40585,12341,31171,12343,45293,12345,31173,12347,40587,12349,31175,12351,47647,12353,31177,12355,40589,12357,31179,12359,45295,12361,31181,12363,40591,12365,31183,12367,49853,12369,31185,12371,40593,12373,31187,12375,45297,12377,31189,12379,40595,12381,31191,12383,47649,12385,31193,12387,40597,12389,31195,12391,45299,12393,31197,12395,40599,12397,31199,12399,48825,12401,31201,12403,40601,12405,31203,12407,45301,12409,31205,12411,40603,12413,31207,12415,47651,12417,31209,12419,40605,12421,31211,12423,45303,12425,31213,12427,40607,12429,31215,12431,49413,12433,31217,12435,40609,12437,31219,12439,45305,12441,31221,12443,40611,12445,31223,12447,47653,12449,31225,12451,40613,12453,31227,12455,45307,12457,31229,12459,40615,12461,31231,12463,48827,12465,31233,12467,40617,12469,31235,12471,45309,12473,31237,12475,40619,12477,31239,12479,47655,12481,31241,12483,40621,12485,31243,12487,45311,12489,31245,12491,40623,12493,31247,12495,49707,12497,31249,12499,40625,12501,31251,12503,45313,12505,31253,12507,40627,12509,31255,12511,47657,12513,31257,12515,40629,12517,31259,12519,45315,12521,31261,12523,40631,12525,31263,12527,48829,12529,31265,12531,40633,12533,31267,12535,45317,12537,31269,12539,40635,12541,31271,12543,47659,12545,31273,12547,40637,12549,31275,12551,45319,12553,31277,12555,40639,12557,31279,12559,49415,12561,31281,12563,40641,12565,31283,12567,45321,12569,31285,12571,40643,12573,31287,12575,47661,12577,31289,12579,40645,12581,31291,12583,45323,12585,31293,12587,40647,12589,31295,12591,48831,12593,31297,12595,40649,12597,31299,12599,45325,12601,31301,12603,40651,12605,31303,12607,47663,12609,31305,12611,40653,12613,31307,12615,45327,12617,31309,12619,40655,12621,31311,12623,49927,12625,31313,12627,40657,12629,31315,12631,45329,12633,31317,12635,40659,12637,31319,12639,47665,12641,31321,12643,40661,12645,31323,12647,45331,12649,31325,12651,40663,12653,31327,12655,48833,12657,31329,12659,40665,12661,31331,12663,45333,12665,31333,12667,40667,12669,31335,12671,47667,12673,31337,12675,40669,12677,31339,12679,45335,12681,31341,12683,40671,12685,31343,12687,49417,12689,31345,12691,40673,12693,31347,12695,45337,12697,31349,12699,40675,12701,31351,12703,47669,12705,31353,12707,40677,12709,31355,12711,45339,12713,31357,12715,40679,12717,31359,12719,48835,12721,31361,12723,40681,12725,31363,12727,45341,12729,31365,12731,40683,12733,31367,12735,47671,12737,31369,12739,40685,12741,31371,12743,45343,12745,31373,12747,40687,12749,31375,12751,49709,12753,31377,12755,40689,12757,31379,12759,45345,12761,31381,12763,40691,12765,31383,12767,47673,12769,31385,12771,40693,12773,31387,12775,45347,12777,31389,12779,40695,12781,31391,12783,48837,12785,31393,12787,40697,12789,31395,12791,45349,12793,31397,12795,40699,12797,31399,12799,47675,12801,31401,12803,40701,12805,31403,12807,45351,12809,31405,12811,40703,12813,31407,12815,49419,12817,31409,12819,40705,12821,31411,12823,45353,12825,31413,12827,40707,12829,31415,12831,47677,12833,31417,12835,40709,12837,31419,12839,45355,12841,31421,12843,40711,12845,31423,12847,48839,12849,31425,12851,40713,12853,31427,12855,45357,12857,31429,12859,40715,12861,31431,12863,47679,12865,31433,12867,40717,12869,31435,12871,45359,12873,31437,12875,40719,12877,31439,12879,49855,12881,31441,12883,40721,12885,31443,12887,45361,12889,31445,12891,40723,12893,31447,12895,47681,12897,31449,12899,40725,12901,31451,12903,45363,12905,31453,12907,40727,12909,31455,12911,48841,12913,31457,12915,40729,12917,31459,12919,45365,12921,31461,12923,40731,12925,31463,12927,47683,12929,31465,12931,40733,12933,31467,12935,45367,12937,31469,12939,40735,12941,31471,12943,49421,12945,31473,12947,40737,12949,31475,12951,45369,12953,31477,12955,40739,12957,31479,12959,47685,12961,31481,12963,40741,12965,31483,12967,45371,12969,31485,12971,40743,12973,31487,12975,48843,12977,31489,12979,40745,12981,31491,12983,45373,12985,31493,12987,40747,12989,31495,12991,47687,12993,31497,12995,40749,12997,31499,12999,45375,13001,31501,13003,40751,13005,31503,13007,49711,13009,31505,13011,40753,13013,31507,13015,45377,13017,31509,13019,40755,13021,31511,13023,47689,13025,31513,13027,40757,13029,31515,13031,45379,13033,31517,13035,40759,13037,31519,13039,48845,13041,31521,13043,40761,13045,31523,13047,45381,13049,31525,13051,40763,13053,31527,13055,47691,13057,31529,13059,40765,13061,31531,13063,45383,13065,31533,13067,40767,13069,31535,13071,49423,13073,31537,13075,40769,13077,31539,13079,45385,13081,31541,13083,40771,13085,31543,13087,47693,13089,31545,13091,40773,13093,31547,13095,45387,13097,31549,13099,40775,13101,31551,13103,48847,13105,31553,13107,40777,13109,31555,13111,45389,13113,31557,13115,40779,13117,31559,13119,47695,13121,31561,13123,40781,13125,31563,13127,45391,13129,31565,13131,40783,13133,31567,13135,49991,13137,31569,13139,40785,13141,31571,13143,45393,13145,31573,13147,40787,13149,31575,13151,47697,13153,31577,13155,40789,13157,31579,13159,45395,13161,31581,13163,40791,13165,31583,13167,48849,13169,31585,13171,40793,13173,31587,13175,45397,13177,31589,13179,40795,13181,31591,13183,47699,13185,31593,13187,40797,13189,31595,13191,45399,13193,31597,13195,40799,13197,31599,13199,49425,13201,31601,13203,40801,13205,31603,13207,45401,13209,31605,13211,40803,13213,31607,13215,47701,13217,31609,13219,40805,13221,31611,13223,45403,13225,31613,13227,40807,13229,31615,13231,48851,13233,31617,13235,40809,13237,31619,13239,45405,13241,31621,13243,40811,13245,31623,13247,47703,13249,31625,13251,40813,13253,31627,13255,45407,13257,31629,13259,40815,13261,31631,13263,49713,13265,31633,13267,40817,13269,31635,13271,45409,13273,31637,13275,40819,13277,31639,13279,47705,13281,31641,13283,40821,13285,31643,13287,45411,13289,31645,13291,40823,13293,31647,13295,48853,13297,31649,13299,40825,13301,31651,13303,45413,13305,31653,13307,40827,13309,31655,13311,47707,13313,31657,13315,40829,13317,31659,13319,45415,13321,31661,13323,40831,13325,31663,13327,49427,13329,31665,13331,40833,13333,31667,13335,45417,13337,31669,13339,40835,13341,31671,13343,47709,13345,31673,13347,40837,13349,31675,13351,45419,13353,31677,13355,40839,13357,31679,13359,48855,13361,31681,13363,40841,13365,31683,13367,45421,13369,31685,13371,40843,13373,31687,13375,47711,13377,31689,13379,40845,13381,31691,13383,45423,13385,31693,13387,40847,13389,31695,13391,49857,13393,31697,13395,40849,13397,31699,13399,45425,13401,31701,13403,40851,13405,31703,13407,47713,13409,31705,13411,40853,13413,31707,13415,45427,13417,31709,13419,40855,13421,31711,13423,48857,13425,31713,13427,40857,13429,31715,13431,45429,13433,31717,13435,40859,13437,31719,13439,47715,13441,31721,13443,40861,13445,31723,13447,45431,13449,31725,13451,40863,13453,31727,13455,49429,13457,31729,13459,40865,13461,31731,13463,45433,13465,31733,13467,40867,13469,31735,13471,47717,13473,31737,13475,40869,13477,31739,13479,45435,13481,31741,13483,40871,13485,31743,13487,48859,13489,31745,13491,40873,13493,31747,13495,45437,13497,31749,13499,40875,13501,31751,13503,47719,13505,31753,13507,40877,13509,31755,13511,45439,13513,31757,13515,40879,13517,31759,13519,49715,13521,31761,13523,40881,13525,31763,13527,45441,13529,31765,13531,40883,13533,31767,13535,47721,13537,31769,13539,40885,13541,31771,13543,45443,13545,31773,13547,40887,13549,31775,13551,48861,13553,31777,13555,40889,13557,31779,13559,45445,13561,31781,13563,40891,13565,31783,13567,47723,13569,31785,13571,40893,13573,31787,13575,45447,13577,31789,13579,40895,13581,31791,13583,49431,13585,31793,13587,40897,13589,31795,13591,45449,13593,31797,13595,40899,13597,31799,13599,47725,13601,31801,13603,40901,13605,31803,13607,45451,13609,31805,13611,40903,13613,31807,13615,48863,13617,31809,13619,40905,13621,31811,13623,45453,13625,31813,13627,40907,13629,31815,13631,47727,13633,31817,13635,40909,13637,31819,13639,45455,13641,31821,13643,40911,13645,31823,13647,49929,13649,31825,13651,40913,13653,31827,13655,45457,13657,31829,13659,40915,13661,31831,13663,47729,13665,31833,13667,40917,13669,31835,13671,45459,13673,31837,13675,40919,13677,31839,13679,48865,13681,31841,13683,40921,13685,31843,13687,45461,13689,31845,13691,40923,13693,31847,13695,47731,13697,31849,13699,40925,13701,31851,13703,45463,13705,31853,13707,40927,13709,31855,13711,49433,13713,31857,13715,40929,13717,31859,13719,45465,13721,31861,13723,40931,13725,31863,13727,47733,13729,31865,13731,40933,13733,31867,13735,45467,13737,31869,13739,40935,13741,31871,13743,48867,13745,31873,13747,40937,13749,31875,13751,45469,13753,31877,13755,40939,13757,31879,13759,47735,13761,31881,13763,40941,13765,31883,13767,45471,13769,31885,13771,40943,13773,31887,13775,49717,13777,31889,13779,40945,13781,31891,13783,45473,13785,31893,13787,40947,13789,31895,13791,47737,13793,31897,13795,40949,13797,31899,13799,45475,13801,31901,13803,40951,13805,31903,13807,48869,13809,31905,13811,40953,13813,31907,13815,45477,13817,31909,13819,40955,13821,31911,13823,47739,13825,31913,13827,40957,13829,31915,13831,45479,13833,31917,13835,40959,13837,31919,13839,49435,13841,31921,13843,40961,13845,31923,13847,45481,13849,31925,13851,40963,13853,31927,13855,47741,13857,31929,13859,40965,13861,31931,13863,45483,13865,31933,13867,40967,13869,31935,13871,48871,13873,31937,13875,40969,13877,31939,13879,45485,13881,31941,13883,40971,13885,31943,13887,47743,13889,31945,13891,40973,13893,31947,13895,45487,13897,31949,13899,40975,13901,31951,13903,49859,13905,31953,13907,40977,13909,31955,13911,45489,13913,31957,13915,40979,13917,31959,13919,47745,13921,31961,13923,40981,13925,31963,13927,45491,13929,31965,13931,40983,13933,31967,13935,48873,13937,31969,13939,40985,13941,31971,13943,45493,13945,31973,13947,40987,13949,31975,13951,47747,13953,31977,13955,40989,13957,31979,13959,45495,13961,31981,13963,40991,13965,31983,13967,49437,13969,31985,13971,40993,13973,31987,13975,45497,13977,31989,13979,40995,13981,31991,13983,47749,13985,31993,13987,40997,13989,31995,13991,45499,13993,31997,13995,40999,13997,31999,13999,48875,14001,32001,14003,41001,14005,32003,14007,45501,14009,32005,14011,41003,14013,32007,14015,47751,14017,32009,14019,41005,14021,32011,14023,45503,14025,32013,14027,41007,14029,32015,14031,49719,14033,32017,14035,41009,14037,32019,14039,45505,14041,32021,14043,41011,14045,32023,14047,47753,14049,32025,14051,41013,14053,32027,14055,45507,14057,32029,14059,41015,14061,32031,14063,48877,14065,32033,14067,41017,14069,32035,14071,45509,14073,32037,14075,41019,14077,32039,14079,47755,14081,32041,14083,41021,14085,32043,14087,45511,14089,32045,14091,41023,14093,32047,14095,49439,14097,32049,14099,41025,14101,32051,14103,45513,14105,32053,14107,41027,14109,32055,14111,47757,14113,32057,14115,41029,14117,32059,14119,45515,14121,32061,14123,41031,14125,32063,14127,48879,14129,32065,14131,41033,14133,32067,14135,45517,14137,32069,14139,41035,14141,32071,14143,47759,14145,32073,14147,41037,14149,32075,14151,45519,14153,32077,14155,41039,14157,32079,14159,49965,14161,32081,14163,41041,14165,32083,14167,45521,14169,32085,14171,41043,14173,32087,14175,47761,14177,32089,14179,41045,14181,32091,14183,45523,14185,32093,14187,41047,14189,32095,14191,48881,14193,32097,14195,41049,14197,32099,14199,45525,14201,32101,14203,41051,14205,32103,14207,47763,14209,32105,14211,41053,14213,32107,14215,45527,14217,32109,14219,41055,14221,32111,14223,49441,14225,32113,14227,41057,14229,32115,14231,45529,14233,32117,14235,41059,14237,32119,14239,47765,14241,32121,14243,41061,14245,32123,14247,45531,14249,32125,14251,41063,14253,32127,14255,48883,14257,32129,14259,41065,14261,32131,14263,45533,14265,32133,14267,41067,14269,32135,14271,47767,14273,32137,14275,41069,14277,32139,14279,45535,14281,32141,14283,41071,14285,32143,14287,49721,14289,32145,14291,41073,14293,32147,14295,45537,14297,32149,14299,41075,14301,32151,14303,47769,14305,32153,14307,41077,14309,32155,14311,45539,14313,32157,14315,41079,14317,32159,14319,48885,14321,32161,14323,41081,14325,32163,14327,45541,14329,32165,14331,41083,14333,32167,14335,47771,14337,32169,14339,41085,14341,32171,14343,45543,14345,32173,14347,41087,14349,32175,14351,49443,14353,32177,14355,41089,14357,32179,14359,45545,14361,32181,14363,41091,14365,32183,14367,47773,14369,32185,14371,41093,14373,32187,14375,45547,14377,32189,14379,41095,14381,32191,14383,48887,14385,32193,14387,41097,14389,32195,14391,45549,14393,32197,14395,41099,14397,32199,14399,47775,14401,32201,14403,41101,14405,32203,14407,45551,14409,32205,14411,41103,14413,32207,14415,49861,14417,32209,14419,41105,14421,32211,14423,45553,14425,32213,14427,41107,14429,32215,14431,47777,14433,32217,14435,41109,14437,32219,14439,45555,14441,32221,14443,41111,14445,32223,14447,48889,14449,32225,14451,41113,14453,32227,14455,45557,14457,32229,14459,41115,14461,32231,14463,47779,14465,32233,14467,41117,14469,32235,14471,45559,14473,32237,14475,41119,14477,32239,14479,49445,14481,32241,14483,41121,14485,32243,14487,45561,14489,32245,14491,41123,14493,32247,14495,47781,14497,32249,14499,41125,14501,32251,14503,45563,14505,32253,14507,41127,14509,32255,14511,48891,14513,32257,14515,41129,14517,32259,14519,45565,14521,32261,14523,41131,14525,32263,14527,47783,14529,32265,14531,41133,14533,32267,14535,45567,14537,32269,14539,41135,14541,32271,14543,49723,14545,32273,14547,41137,14549,32275,14551,45569,14553,32277,14555,41139,14557,32279,14559,47785,14561,32281,14563,41141,14565,32283,14567,45571,14569,32285,14571,41143,14573,32287,14575,48893,14577,32289,14579,41145,14581,32291,14583,45573,14585,32293,14587,41147,14589,32295,14591,47787,14593,32297,14595,41149,14597,32299,14599,45575,14601,32301,14603,41151,14605,32303,14607,49447,14609,32305,14611,41153,14613,32307,14615,45577,14617,32309,14619,41155,14621,32311,14623,47789,14625,32313,14627,41157,14629,32315,14631,45579,14633,32317,14635,41159,14637,32319,14639,48895,14641,32321,14643,41161,14645,32323,14647,45581,14649,32325,14651,41163,14653,32327,14655,47791,14657,32329,14659,41165,14661,32331,14663,45583,14665,32333,14667,41167,14669,32335,14671,49931,14673,32337,14675,41169,14677,32339,14679,45585,14681,32341,14683,41171,14685,32343,14687,47793,14689,32345,14691,41173,14693,32347,14695,45587,14697,32349,14699,41175,14701,32351,14703,48897,14705,32353,14707,41177,14709,32355,14711,45589,14713,32357,14715,41179,14717,32359,14719,47795,14721,32361,14723,41181,14725,32363,14727,45591,14729,32365,14731,41183,14733,32367,14735,49449,14737,32369,14739,41185,14741,32371,14743,45593,14745,32373,14747,41187,14749,32375,14751,47797,14753,32377,14755,41189,14757,32379,14759,45595,14761,32381,14763,41191,14765,32383,14767,48899,14769,32385,14771,41193,14773,32387,14775,45597,14777,32389,14779,41195,14781,32391,14783,47799,14785,32393,14787,41197,14789,32395,14791,45599,14793,32397,14795,41199,14797,32399,14799,49725,14801,32401,14803,41201,14805,32403,14807,45601,14809,32405,14811,41203,14813,32407,14815,47801,14817,32409,14819,41205,14821,32411,14823,45603,14825,32413,14827,41207,14829,32415,14831,48901,14833,32417,14835,41209,14837,32419,14839,45605,14841,32421,14843,41211,14845,32423,14847,47803,14849,32425,14851,41213,14853,32427,14855,45607,14857,32429,14859,41215,14861,32431,14863,49451,14865,32433,14867,41217,14869,32435,14871,45609,14873,32437,14875,41219,14877,32439,14879,47805,14881,32441,14883,41221,14885,32443,14887,45611,14889,32445,14891,41223,14893,32447,14895,48903,14897,32449,14899,41225,14901,32451,14903,45613,14905,32453,14907,41227,14909,32455,14911,47807,14913,32457,14915,41229,14917,32459,14919,45615,14921,32461,14923,41231,14925,32463,14927,49863,14929,32465,14931,41233,14933,32467,14935,45617,14937,32469,14939,41235,14941,32471,14943,47809,14945,32473,14947,41237,14949,32475,14951,45619,14953,32477,14955,41239,14957,32479,14959,48905,14961,32481,14963,41241,14965,32483,14967,45621,14969,32485,14971,41243,14973,32487,14975,47811,14977,32489,14979,41245,14981,32491,14983,45623,14985,32493,14987,41247,14989,32495,14991,49453,14993,32497,14995,41249,14997,32499,14999,45625,15001,32501,15003,41251,15005,32503,15007,47813,15009,32505,15011,41253,15013,32507,15015,45627,15017,32509,15019,41255,15021,32511,15023,48907,15025,32513,15027,41257,15029,32515,15031,45629,15033,32517,15035,41259,15037,32519,15039,47815,15041,32521,15043,41261,15045,32523,15047,45631,15049,32525,15051,41263,15053,32527,15055,49727,15057,32529,15059,41265,15061,32531,15063,45633,15065,32533,15067,41267,15069,32535,15071,47817,15073,32537,15075,41269,15077,32539,15079,45635,15081,32541,15083,41271,15085,32543,15087,48909,15089,32545,15091,41273,15093,32547,15095,45637,15097,32549,15099,41275,15101,32551,15103,47819,15105,32553,15107,41277,15109,32555,15111,45639,15113,32557,15115,41279,15117,32559,15119,49455,15121,32561,15123,41281,15125,32563,15127,45641,15129,32565,15131,41283,15133,32567,15135,47821,15137,32569,15139,41285,15141,32571,15143,45643,15145,32573,15147,41287,15149,32575,15151,48911,15153,32577,15155,41289,15157,32579,15159,45645,15161,32581,15163,41291,15165,32583,15167,47823,15169,32585,15171,41293,15173,32587,15175,45647,15177,32589,15179,41295,15181,32591,15183,49983,15185,32593,15187,41297,15189,32595,15191,45649,15193,32597,15195,41299,15197,32599,15199,47825,15201,32601,15203,41301,15205,32603,15207,45651,15209,32605,15211,41303,15213,32607,15215,48913,15217,32609,15219,41305,15221,32611,15223,45653,15225,32613,15227,41307,15229,32615,15231,47827,15233,32617,15235,41309,15237,32619,15239,45655,15241,32621,15243,41311,15245,32623,15247,49457,15249,32625,15251,41313,15253,32627,15255,45657,15257,32629,15259,41315,15261,32631,15263,47829,15265,32633,15267,41317,15269,32635,15271,45659,15273,32637,15275,41319,15277,32639,15279,48915,15281,32641,15283,41321,15285,32643,15287,45661,15289,32645,15291,41323,15293,32647,15295,47831,15297,32649,15299,41325,15301,32651,15303,45663,15305,32653,15307,41327,15309,32655,15311,49729,15313,32657,15315,41329,15317,32659,15319,45665,15321,32661,15323,41331,15325,32663,15327,47833,15329,32665,15331,41333,15333,32667,15335,45667,15337,32669,15339,41335,15341,32671,15343,48917,15345,32673,15347,41337,15349,32675,15351,45669,15353,32677,15355,41339,15357,32679,15359,47835,15361,32681,15363,41341,15365,32683,15367,45671,15369,32685,15371,41343,15373,32687,15375,49459,15377,32689,15379,41345,15381,32691,15383,45673,15385,32693,15387,41347,15389,32695,15391,47837,15393,32697,15395,41349,15397,32699,15399,45675,15401,32701,15403,41351,15405,32703,15407,48919,15409,32705,15411,41353,15413,32707,15415,45677,15417,32709,15419,41355,15421,32711,15423,47839,15425,32713,15427,41357,15429,32715,15431,45679,15433,32717,15435,41359,15437,32719,15439,49865,15441,32721,15443,41361,15445,32723,15447,45681,15449,32725,15451,41363,15453,32727,15455,47841,15457,32729,15459,41365,15461,32731,15463,45683,15465,32733,15467,41367,15469,32735,15471,48921,15473,32737,15475,41369,15477,32739,15479,45685,15481,32741,15483,41371,15485,32743,15487,47843,15489,32745,15491,41373,15493,32747,15495,45687,15497,32749,15499,41375,15501,32751,15503,49461,15505,32753,15507,41377,15509,32755,15511,45689,15513,32757,15515,41379,15517,32759,15519,47845,15521,32761,15523,41381,15525,32763,15527,45691,15529,32765,15531,41383,15533,32767,15535,48923,15537,32769,15539,41385,15541,32771,15543,45693,15545,32773,15547,41387,15549,32775,15551,47847,15553,32777,15555,41389,15557,32779,15559,45695,15561,32781,15563,41391,15565,32783,15567,49731,15569,32785,15571,41393,15573,32787,15575,45697,15577,32789,15579,41395,15581,32791,15583,47849,15585,32793,15587,41397,15589,32795,15591,45699,15593,32797,15595,41399,15597,32799,15599,48925,15601,32801,15603,41401,15605,32803,15607,45701,15609,32805,15611,41403,15613,32807,15615,47851,15617,32809,15619,41405,15621,32811,15623,45703,15625,32813,15627,41407,15629,32815,15631,49463,15633,32817,15635,41409,15637,32819,15639,45705,15641,32821,15643,41411,15645,32823,15647,47853,15649,32825,15651,41413,15653,32827,15655,45707,15657,32829,15659,41415,15661,32831,15663,48927,15665,32833,15667,41417,15669,32835,15671,45709,15673,32837,15675,41419,15677,32839,15679,47855,15681,32841,15683,41421,15685,32843,15687,45711,15689,32845,15691,41423,15693,32847,15695,49933,15697,32849,15699,41425,15701,32851,15703,45713,15705,32853,15707,41427,15709,32855,15711,47857,15713,32857,15715,41429,15717,32859,15719,45715,15721,32861,15723,41431,15725,32863,15727,48929,15729,32865,15731,41433,15733,32867,15735,45717,15737,32869,15739,41435,15741,32871,15743,47859,15745,32873,15747,41437,15749,32875,15751,45719,15753,32877,15755,41439,15757,32879,15759,49465,15761,32881,15763,41441,15765,32883,15767,45721,15769,32885,15771,41443,15773,32887,15775,47861,15777,32889,15779,41445,15781,32891,15783,45723,15785,32893,15787,41447,15789,32895,15791,48931,15793,32897,15795,41449,15797,32899,15799,45725,15801,32901,15803,41451,15805,32903,15807,47863,15809,32905,15811,41453,15813,32907,15815,45727,15817,32909,15819,41455,15821,32911,15823,49733,15825,32913,15827,41457,15829,32915,15831,45729,15833,32917,15835,41459,15837,32919,15839,47865,15841,32921,15843,41461,15845,32923,15847,45731,15849,32925,15851,41463,15853,32927,15855,48933,15857,32929,15859,41465,15861,32931,15863,45733,15865,32933,15867,41467,15869,32935,15871,47867,15873,32937,15875,41469,15877,32939,15879,45735,15881,32941,15883,41471,15885,32943,15887,49467,15889,32945,15891,41473,15893,32947,15895,45737,15897,32949,15899,41475,15901,32951,15903,47869,15905,32953,15907,41477,15909,32955,15911,45739,15913,32957,15915,41479,15917,32959,15919,48935,15921,32961,15923,41481,15925,32963,15927,45741,15929,32965,15931,41483,15933,32967,15935,47871,15937,32969,15939,41485,15941,32971,15943,45743,15945,32973,15947,41487,15949,32975,15951,49867,15953,32977,15955,41489,15957,32979,15959,45745,15961,32981,15963,41491,15965,32983,15967,47873,15969,32985,15971,41493,15973,32987,15975,45747,15977,32989,15979,41495,15981,32991,15983,48937,15985,32993,15987,41497,15989,32995,15991,45749,15993,32997,15995,41499,15997,32999,15999,47875,16001,33001,16003,41501,16005,33003,16007,45751,16009,33005,16011,41503,16013,33007,16015,49469,16017,33009,16019,41505,16021,33011,16023,45753,16025,33013,16027,41507,16029,33015,16031,47877,16033,33017,16035,41509,16037,33019,16039,45755,16041,33021,16043,41511,16045,33023,16047,48939,16049,33025,16051,41513,16053,33027,16055,45757,16057,33029,16059,41515,16061,33031,16063,47879,16065,33033,16067,41517,16069,33035,16071,45759,16073,33037,16075,41519,16077,33039,16079,49735,16081,33041,16083,41521,16085,33043,16087,45761,16089,33045,16091,41523,16093,33047,16095,47881,16097,33049,16099,41525,16101,33051,16103,45763,16105,33053,16107,41527,16109,33055,16111,48941,16113,33057,16115,41529,16117,33059,16119,45765,16121,33061,16123,41531,16125,33063,16127,47883,16129,33065,16131,41533,16133,33067,16135,45767,16137,33069,16139,41535,16141,33071,16143,49471,16145,33073,16147,41537,16149,33075,16151,45769,16153,33077,16155,41539,16157,33079,16159,47885,16161,33081,16163,41541,16165,33083,16167,45771,16169,33085,16171,41543,16173,33087,16175,48943,16177,33089,16179,41545,16181,33091,16183,45773,16185,33093,16187,41547,16189,33095,16191,47887,16193,33097,16195,41549,16197,33099,16199,45775,16201,33101,16203,41551,16205,33103,16207,49967,16209,33105,16211,41553,16213,33107,16215,45777,16217,33109,16219,41555,16221,33111,16223,47889,16225,33113,16227,41557,16229,33115,16231,45779,16233,33117,16235,41559,16237,33119,16239,48945,16241,33121,16243,41561,16245,33123,16247,45781,16249,33125,16251,41563,16253,33127,16255,47891,16257,33129,16259,41565,16261,33131,16263,45783,16265,33133,16267,41567,16269,33135,16271,49473,16273,33137,16275,41569,16277,33139,16279,45785,16281,33141,16283,41571,16285,33143,16287,47893,16289,33145,16291,41573,16293,33147,16295,45787,16297,33149,16299,41575,16301,33151,16303,48947,16305,33153,16307,41577,16309,33155,16311,45789,16313,33157,16315,41579,16317,33159,16319,47895,16321,33161,16323,41581,16325,33163,16327,45791,16329,33165,16331,41583,16333,33167,16335,49737,16337,33169,16339,41585,16341,33171,16343,45793,16345,33173,16347,41587,16349,33175,16351,47897,16353,33177,16355,41589,16357,33179,16359,45795,16361,33181,16363,41591,16365,33183,16367,48949,16369,33185,16371,41593,16373,33187,16375,45797,16377,33189,16379,41595,16381,33191,16383,47899,16385,33193,16387,41597,16389,33195,16391,45799,16393,33197,16395,41599,16397,33199,16399,49475,16401,33201,16403,41601,16405,33203,16407,45801,16409,33205,16411,41603,16413,33207,16415,47901,16417,33209,16419,41605,16421,33211,16423,45803,16425,33213,16427,41607,16429,33215,16431,48951,16433,33217,16435,41609,16437,33219,16439,45805,16441,33221,16443,41611,16445,33223,16447,47903,16449,33225,16451,41613,16453,33227,16455,45807,16457,33229,16459,41615,16461,33231,16463,49869,16465,33233,16467,41617,16469,33235,16471,45809,16473,33237,16475,41619,16477,33239,16479,47905,16481,33241,16483,41621,16485,33243,16487,45811,16489,33245,16491,41623,16493,33247,16495,48953,16497,33249,16499,41625,16501,33251,16503,45813,16505,33253,16507,41627,16509,33255,16511,47907,16513,33257,16515,41629,16517,33259,16519,45815,16521,33261,16523,41631,16525,33263,16527,49477,16529,33265,16531,41633,16533,33267,16535,45817,16537,33269,16539,41635,16541,33271,16543,47909,16545,33273,16547,41637,16549,33275,16551,45819,16553,33277,16555,41639,16557,33279,16559,48955,16561,33281,16563,41641,16565,33283,16567,45821,16569,33285,16571,41643,16573,33287,16575,47911,16577,33289,16579,41645,16581,33291,16583,45823,16585,33293,16587,41647,16589,33295,16591,49739,16593,33297,16595,41649,16597,33299,16599,45825,16601,33301,16603,41651,16605,33303,16607,47913,16609,33305,16611,41653,16613,33307,16615,45827,16617,33309,16619,41655,16621,33311,16623,48957,16625,33313,16627,41657,16629,33315,16631,45829,16633,33317,16635,41659,16637,33319,16639,47915,16641,33321,16643,41661,16645,33323,16647,45831,16649,33325,16651,41663,16653,33327,16655,49479,16657,33329,16659,41665,16661,33331,16663,45833,16665,33333,16667,41667,16669,33335,16671,47917,16673,33337,16675,41669,16677,33339,16679,45835,16681,33341,16683,41671,16685,33343,16687,48959,16689,33345,16691,41673,16693,33347,16695,45837,16697,33349,16699,41675,16701,33351,16703,47919,16705,33353,16707,41677,16709,33355,16711,45839,16713,33357,16715,41679,16717,33359,16719,49935,16721,33361,16723,41681,16725,33363,16727,45841,16729,33365,16731,41683,16733,33367,16735,47921,16737,33369,16739,41685,16741,33371,16743,45843,16745,33373,16747,41687,16749,33375,16751,48961,16753,33377,16755,41689,16757,33379,16759,45845,16761,33381,16763,41691,16765,33383,16767,47923,16769,33385,16771,41693,16773,33387,16775,45847,16777,33389,16779,41695,16781,33391,16783,49481,16785,33393,16787,41697,16789,33395,16791,45849,16793,33397,16795,41699,16797,33399,16799,47925,16801,33401,16803,41701,16805,33403,16807,45851,16809,33405,16811,41703,16813,33407,16815,48963,16817,33409,16819,41705,16821,33411,16823,45853,16825,33413,16827,41707,16829,33415,16831,47927,16833,33417,16835,41709,16837,33419,16839,45855,16841,33421,16843,41711,16845,33423,16847,49741,16849,33425,16851,41713,16853,33427,16855,45857,16857,33429,16859,41715,16861,33431,16863,47929,16865,33433,16867,41717,16869,33435,16871,45859,16873,33437,16875,41719,16877,33439,16879,48965,16881,33441,16883,41721,16885,33443,16887,45861,16889,33445,16891,41723,16893,33447,16895,47931,16897,33449,16899,41725,16901,33451,16903,45863,16905,33453,16907,41727,16909,33455,16911,49483,16913,33457,16915,41729,16917,33459,16919,45865,16921,33461,16923,41731,16925,33463,16927,47933,16929,33465,16931,41733,16933,33467,16935,45867,16937,33469,16939,41735,16941,33471,16943,48967,16945,33473,16947,41737,16949,33475,16951,45869,16953,33477,16955,41739,16957,33479,16959,47935,16961,33481,16963,41741,16965,33483,16967,45871,16969,33485,16971,41743,16973,33487,16975,49871,16977,33489,16979,41745,16981,33491,16983,45873,16985,33493,16987,41747,16989,33495,16991,47937,16993,33497,16995,41749,16997,33499,16999,45875,17001,33501,17003,41751,17005,33503,17007,48969,17009,33505,17011,41753,17013,33507,17015,45877,17017,33509,17019,41755,17021,33511,17023,47939,17025,33513,17027,41757,17029,33515,17031,45879,17033,33517,17035,41759,17037,33519,17039,49485,17041,33521,17043,41761,17045,33523,17047,45881,17049,33525,17051,41763,17053,33527,17055,47941,17057,33529,17059,41765,17061,33531,17063,45883,17065,33533,17067,41767,17069,33535,17071,48971,17073,33537,17075,41769,17077,33539,17079,45885,17081,33541,17083,41771,17085,33543,17087,47943,17089,33545,17091,41773,17093,33547,17095,45887,17097,33549,17099,41775,17101,33551,17103,49743,17105,33553,17107,41777,17109,33555,17111,45889,17113,33557,17115,41779,17117,33559,17119,47945,17121,33561,17123,41781,17125,33563,17127,45891,17129,33565,17131,41783,17133,33567,17135,48973,17137,33569,17139,41785,17141,33571,17143,45893,17145,33573,17147,41787,17149,33575,17151,47947,17153,33577,17155,41789,17157,33579,17159,45895,17161,33581,17163,41791,17165,33583,17167,49487,17169,33585,17171,41793,17173,33587,17175,45897,17177,33589,17179,41795,17181,33591,17183,47949,17185,33593,17187,41797,17189,33595,17191,45899,17193,33597,17195,41799,17197,33599,17199,48975,17201,33601,17203,41801,17205,33603,17207,45901,17209,33605,17211,41803,17213,33607,17215,47951,17217,33609,17219,41805,17221,33611,17223,45903,17225,33613,17227,41807,17229,33615,17231,49998,17233,33617,17235,41809,17237,33619,17239,45905,17241,33621,17243,41811,17245,33623,17247,47953,17249,33625,17251,41813,17253,33627,17255,45907,17257,33629,17259,41815,17261,33631,17263,48977,17265,33633,17267,41817,17269,33635,17271,45909,17273,33637,17275,41819,17277,33639,17279,47955,17281,33641,17283,41821,17285,33643,17287,45911,17289,33645,17291,41823,17293,33647,17295,49489,17297,33649,17299,41825,17301,33651,17303,45913,17305,33653,17307,41827,17309,33655,17311,47957,17313,33657,17315,41829,17317,33659,17319,45915,17321,33661,17323,41831,17325,33663,17327,48979,17329,33665,17331,41833,17333,33667,17335,45917,17337,33669,17339,41835,17341,33671,17343,47959,17345,33673,17347,41837,17349,33675,17351,45919,17353,33677,17355,41839,17357,33679,17359,49745,17361,33681,17363,41841,17365,33683,17367,45921,17369,33685,17371,41843,17373,33687,17375,47961,17377,33689,17379,41845,17381,33691,17383,45923,17385,33693,17387,41847,17389,33695,17391,48981,17393,33697,17395,41849,17397,33699,17399,45925,17401,33701,17403,41851,17405,33703,17407,47963,17409,33705,17411,41853,17413,33707,17415,45927,17417,33709,17419,41855,17421,33711,17423,49491,17425,33713,17427,41857,17429,33715,17431,45929,17433,33717,17435,41859,17437,33719,17439,47965,17441,33721,17443,41861,17445,33723,17447,45931,17449,33725,17451,41863,17453,33727,17455,48983,17457,33729,17459,41865,17461,33731,17463,45933,17465,33733,17467,41867,17469,33735,17471,47967,17473,33737,17475,41869,17477,33739,17479,45935,17481,33741,17483,41871,17485,33743,17487,49873,17489,33745,17491,41873,17493,33747,17495,45937,17497,33749,17499,41875,17501,33751,17503,47969,17505,33753,17507,41877,17509,33755,17511,45939,17513,33757,17515,41879,17517,33759,17519,48985,17521,33761,17523,41881,17525,33763,17527,45941,17529,33765,17531,41883,17533,33767,17535,47971,17537,33769,17539,41885,17541,33771,17543,45943,17545,33773,17547,41887,17549,33775,17551,49493,17553,33777,17555,41889,17557,33779,17559,45945,17561,33781,17563,41891,17565,33783,17567,47973,17569,33785,17571,41893,17573,33787,17575,45947,17577,33789,17579,41895,17581,33791,17583,48987,17585,33793,17587,41897,17589,33795,17591,45949,17593,33797,17595,41899,17597,33799,17599,47975,17601,33801,17603,41901,17605,33803,17607,45951,17609,33805,17611,41903,17613,33807,17615,49747,17617,33809,17619,41905,17621,33811,17623,45953,17625,33813,17627,41907,17629,33815,17631,47977,17633,33817,17635,41909,17637,33819,17639,45955,17641,33821,17643,41911,17645,33823,17647,48989,17649,33825,17651,41913,17653,33827,17655,45957,17657,33829,17659,41915,17661,33831,17663,47979,17665,33833,17667,41917,17669,33835,17671,45959,17673,33837,17675,41919,17677,33839,17679,49495,17681,33841,17683,41921,17685,33843,17687,45961,17689,33845,17691,41923,17693,33847,17695,47981,17697,33849,17699,41925,17701,33851,17703,45963,17705,33853,17707,41927,17709,33855,17711,48991,17713,33857,17715,41929,17717,33859,17719,45965,17721,33861,17723,41931,17725,33863,17727,47983,17729,33865,17731,41933,17733,33867,17735,45967,17737,33869,17739,41935,17741,33871,17743,49937,17745,33873,17747,41937,17749,33875,17751,45969,17753,33877,17755,41939,17757,33879,17759,47985,17761,33881,17763,41941,17765,33883,17767,45971,17769,33885,17771,41943,17773,33887,17775,48993,17777,33889,17779,41945,17781,33891,17783,45973,17785,33893,17787,41947,17789,33895,17791,47987,17793,33897,17795,41949,17797,33899,17799,45975,17801,33901,17803,41951,17805,33903,17807,49497,17809,33905,17811,41953,17813,33907,17815,45977,17817,33909,17819,41955,17821,33911,17823,47989,17825,33913,17827,41957,17829,33915,17831,45979,17833,33917,17835,41959,17837,33919,17839,48995,17841,33921,17843,41961,17845,33923,17847,45981,17849,33925,17851,41963,17853,33927,17855,47991,17857,33929,17859,41965,17861,33931,17863,45983,17865,33933,17867,41967,17869,33935,17871,49749,17873,33937,17875,41969,17877,33939,17879,45985,17881,33941,17883,41971,17885,33943,17887,47993,17889,33945,17891,41973,17893,33947,17895,45987,17897,33949,17899,41975,17901,33951,17903,48997,17905,33953,17907,41977,17909,33955,17911,45989,17913,33957,17915,41979,17917,33959,17919,47995,17921,33961,17923,41981,17925,33963,17927,45991,17929,33965,17931,41983,17933,33967,17935,49499,17937,33969,17939,41985,17941,33971,17943,45993,17945,33973,17947,41987,17949,33975,17951,47997,17953,33977,17955,41989,17957,33979,17959,45995,17961,33981,17963,41991,17965,33983,17967,48999,17969,33985,17971,41993,17973,33987,17975,45997,17977,33989,17979,41995,17981,33991,17983,47999,17985,33993,17987,41997,17989,33995,17991,45999,17993,33997,17995,41999,17997,33999,17999,49875,18001,34001,18003,42001,18005,34003,18007,46001,18009,34005,18011,42003,18013,34007,18015,48001,18017,34009,18019,42005,18021,34011,18023,46003,18025,34013,18027,42007,18029,34015,18031,49001,18033,34017,18035,42009,18037,34019,18039,46005,18041,34021,18043,42011,18045,34023,18047,48003,18049,34025,18051,42013,18053,34027,18055,46007,18057,34029,18059,42015,18061,34031,18063,49501,18065,34033,18067,42017,18069,34035,18071,46009,18073,34037,18075,42019,18077,34039,18079,48005,18081,34041,18083,42021,18085,34043,18087,46011,18089,34045,18091,42023,18093,34047,18095,49003,18097,34049,18099,42025,18101,34051,18103,46013,18105,34053,18107,42027,18109,34055,18111,48007,18113,34057,18115,42029,18117,34059,18119,46015,18121,34061,18123,42031,18125,34063,18127,49751,18129,34065,18131,42033,18133,34067,18135,46017,18137,34069,18139,42035,18141,34071,18143,48009,18145,34073,18147,42037,18149,34075,18151,46019,18153,34077,18155,42039,18157,34079,18159,49005,18161,34081,18163,42041,18165,34083,18167,46021,18169,34085,18171,42043,18173,34087,18175,48011,18177,34089,18179,42045,18181,34091,18183,46023,18185,34093,18187,42047,18189,34095,18191,49503,18193,34097,18195,42049,18197,34099,18199,46025,18201,34101,18203,42051,18205,34103,18207,48013,18209,34105,18211,42053,18213,34107,18215,46027,18217,34109,18219,42055,18221,34111,18223,49007,18225,34113,18227,42057,18229,34115,18231,46029,18233,34117,18235,42059,18237,34119,18239,48015,18241,34121,18243,42061,18245,34123,18247,46031,18249,34125,18251,42063,18253,34127,18255,49969,18257,34129,18259,42065,18261,34131,18263,46033,18265,34133,18267,42067,18269,34135,18271,48017,18273,34137,18275,42069,18277,34139,18279,46035,18281,34141,18283,42071,18285,34143,18287,49009,18289,34145,18291,42073,18293,34147,18295,46037,18297,34149,18299,42075,18301,34151,18303,48019,18305,34153,18307,42077,18309,34155,18311,46039,18313,34157,18315,42079,18317,34159,18319,49505,18321,34161,18323,42081,18325,34163,18327,46041,18329,34165,18331,42083,18333,34167,18335,48021,18337,34169,18339,42085,18341,34171,18343,46043,18345,34173,18347,42087,18349,34175,18351,49011,18353,34177,18355,42089,18357,34179,18359,46045,18361,34181,18363,42091,18365,34183,18367,48023,18369,34185,18371,42093,18373,34187,18375,46047,18377,34189,18379,42095,18381,34191,18383,49753,18385,34193,18387,42097,18389,34195,18391,46049,18393,34197,18395,42099,18397,34199,18399,48025,18401,34201,18403,42101,18405,34203,18407,46051,18409,34205,18411,42103,18413,34207,18415,49013,18417,34209,18419,42105,18421,34211,18423,46053,18425,34213,18427,42107,18429,34215,18431,48027,18433,34217,18435,42109,18437,34219,18439,46055,18441,34221,18443,42111,18445,34223,18447,49507,18449,34225,18451,42113,18453,34227,18455,46057,18457,34229,18459,42115,18461,34231,18463,48029,18465,34233,18467,42117,18469,34235,18471,46059,18473,34237,18475,42119,18477,34239,18479,49015,18481,34241,18483,42121,18485,34243,18487,46061,18489,34245,18491,42123,18493,34247,18495,48031,18497,34249,18499,42125,18501,34251,18503,46063,18505,34253,18507,42127,18509,34255,18511,49877,18513,34257,18515,42129,18517,34259,18519,46065,18521,34261,18523,42131,18525,34263,18527,48033,18529,34265,18531,42133,18533,34267,18535,46067,18537,34269,18539,42135,18541,34271,18543,49017,18545,34273,18547,42137,18549,34275,18551,46069,18553,34277,18555,42139,18557,34279,18559,48035,18561,34281,18563,42141,18565,34283,18567,46071,18569,34285,18571,42143,18573,34287,18575,49509,18577,34289,18579,42145,18581,34291,18583,46073,18585,34293,18587,42147,18589,34295,18591,48037,18593,34297,18595,42149,18597,34299,18599,46075,18601,34301,18603,42151,18605,34303,18607,49019,18609,34305,18611,42153,18613,34307,18615,46077,18617,34309,18619,42155,18621,34311,18623,48039,18625,34313,18627,42157,18629,34315,18631,46079,18633,34317,18635,42159,18637,34319,18639,49755,18641,34321,18643,42161,18645,34323,18647,46081,18649,34325,18651,42163,18653,34327,18655,48041,18657,34329,18659,42165,18661,34331,18663,46083,18665,34333,18667,42167,18669,34335,18671,49021,18673,34337,18675,42169,18677,34339,18679,46085,18681,34341,18683,42171,18685,34343,18687,48043,18689,34345,18691,42173,18693,34347,18695,46087,18697,34349,18699,42175,18701,34351,18703,49511,18705,34353,18707,42177,18709,34355,18711,46089,18713,34357,18715,42179,18717,34359,18719,48045,18721,34361,18723,42181,18725,34363,18727,46091,18729,34365,18731,42183,18733,34367,18735,49023,18737,34369,18739,42185,18741,34371,18743,46093,18745,34373,18747,42187,18749,34375,18751,48047,18753,34377,18755,42189,18757,34379,18759,46095,18761,34381,18763,42191,18765,34383,18767,49939,18769,34385,18771,42193,18773,34387,18775,46097,18777,34389,18779,42195,18781,34391,18783,48049,18785,34393,18787,42197,18789,34395,18791,46099,18793,34397,18795,42199,18797,34399,18799,49025,18801,34401,18803,42201,18805,34403,18807,46101,18809,34405,18811,42203,18813,34407,18815,48051,18817,34409,18819,42205,18821,34411,18823,46103,18825,34413,18827,42207,18829,34415,18831,49513,18833,34417,18835,42209,18837,34419,18839,46105,18841,34421,18843,42211,18845,34423,18847,48053,18849,34425,18851,42213,18853,34427,18855,46107,18857,34429,18859,42215,18861,34431,18863,49027,18865,34433,18867,42217,18869,34435,18871,46109,18873,34437,18875,42219,18877,34439,18879,48055,18881,34441,18883,42221,18885,34443,18887,46111,18889,34445,18891,42223,18893,34447,18895,49757,18897,34449,18899,42225,18901,34451,18903,46113,18905,34453,18907,42227,18909,34455,18911,48057,18913,34457,18915,42229,18917,34459,18919,46115,18921,34461,18923,42231,18925,34463,18927,49029,18929,34465,18931,42233,18933,34467,18935,46117,18937,34469,18939,42235,18941,34471,18943,48059,18945,34473,18947,42237,18949,34475,18951,46119,18953,34477,18955,42239,18957,34479,18959,49515,18961,34481,18963,42241,18965,34483,18967,46121,18969,34485,18971,42243,18973,34487,18975,48061,18977,34489,18979,42245,18981,34491,18983,46123,18985,34493,18987,42247,18989,34495,18991,49031,18993,34497,18995,42249,18997,34499,18999,46125,19001,34501,19003,42251,19005,34503,19007,48063,19009,34505,19011,42253,19013,34507,19015,46127,19017,34509,19019,42255,19021,34511,19023,49879,19025,34513,19027,42257,19029,34515,19031,46129,19033,34517,19035,42259,19037,34519,19039,48065,19041,34521,19043,42261,19045,34523,19047,46131,19049,34525,19051,42263,19053,34527,19055,49033,19057,34529,19059,42265,19061,34531,19063,46133,19065,34533,19067,42267,19069,34535,19071,48067,19073,34537,19075,42269,19077,34539,19079,46135,19081,34541,19083,42271,19085,34543,19087,49517,19089,34545,19091,42273,19093,34547,19095,46137,19097,34549,19099,42275,19101,34551,19103,48069,19105,34553,19107,42277,19109,34555,19111,46139,19113,34557,19115,42279,19117,34559,19119,49035,19121,34561,19123,42281,19125,34563,19127,46141,19129,34565,19131,42283,19133,34567,19135,48071,19137,34569,19139,42285,19141,34571,19143,46143,19145,34573,19147,42287,19149,34575,19151,49759,19153,34577,19155,42289,19157,34579,19159,46145,19161,34581,19163,42291,19165,34583,19167,48073,19169,34585,19171,42293,19173,34587,19175,46147,19177,34589,19179,42295,19181,34591,19183,49037,19185,34593,19187,42297,19189,34595,19191,46149,19193,34597,19195,42299,19197,34599,19199,48075,19201,34601,19203,42301,19205,34603,19207,46151,19209,34605,19211,42303,19213,34607,19215,49519,19217,34609,19219,42305,19221,34611,19223,46153,19225,34613,19227,42307,19229,34615,19231,48077,19233,34617,19235,42309,19237,34619,19239,46155,19241,34621,19243,42311,19245,34623,19247,49039,19249,34625,19251,42313,19253,34627,19255,46157,19257,34629,19259,42315,19261,34631,19263,48079,19265,34633,19267,42317,19269,34635,19271,46159,19273,34637,19275,42319,19277,34639,19279,49985,19281,34641,19283,42321,19285,34643,19287,46161,19289,34645,19291,42323,19293,34647,19295,48081,19297,34649,19299,42325,19301,34651,19303,46163,19305,34653,19307,42327,19309,34655,19311,49041,19313,34657,19315,42329,19317,34659,19319,46165,19321,34661,19323,42331,19325,34663,19327,48083,19329,34665,19331,42333,19333,34667,19335,46167,19337,34669,19339,42335,19341,34671,19343,49521,19345,34673,19347,42337,19349,34675,19351,46169,19353,34677,19355,42339,19357,34679,19359,48085,19361,34681,19363,42341,19365,34683,19367,46171,19369,34685,19371,42343,19373,34687,19375,49043,19377,34689,19379,42345,19381,34691,19383,46173,19385,34693,19387,42347,19389,34695,19391,48087,19393,34697,19395,42349,19397,34699,19399,46175,19401,34701,19403,42351,19405,34703,19407,49761,19409,34705,19411,42353,19413,34707,19415,46177,19417,34709,19419,42355,19421,34711,19423,48089,19425,34713,19427,42357,19429,34715,19431,46179,19433,34717,19435,42359,19437,34719,19439,49045,19441,34721,19443,42361,19445,34723,19447,46181,19449,34725,19451,42363,19453,34727,19455,48091,19457,34729,19459,42365,19461,34731,19463,46183,19465,34733,19467,42367,19469,34735,19471,49523,19473,34737,19475,42369,19477,34739,19479,46185,19481,34741,19483,42371,19485,34743,19487,48093,19489,34745,19491,42373,19493,34747,19495,46187,19497,34749,19499,42375,19501,34751,19503,49047,19505,34753,19507,42377,19509,34755,19511,46189,19513,34757,19515,42379,19517,34759,19519,48095,19521,34761,19523,42381,19525,34763,19527,46191,19529,34765,19531,42383,19533,34767,19535,49881,19537,34769,19539,42385,19541,34771,19543,46193,19545,34773,19547,42387,19549,34775,19551,48097,19553,34777,19555,42389,19557,34779,19559,46195,19561,34781,19563,42391,19565,34783,19567,49049,19569,34785,19571,42393,19573,34787,19575,46197,19577,34789,19579,42395,19581,34791,19583,48099,19585,34793,19587,42397,19589,34795,19591,46199,19593,34797,19595,42399,19597,34799,19599,49525,19601,34801,19603,42401,19605,34803,19607,46201,19609,34805,19611,42403,19613,34807,19615,48101,19617,34809,19619,42405,19621,34811,19623,46203,19625,34813,19627,42407,19629,34815,19631,49051,19633,34817,19635,42409,19637,34819,19639,46205,19641,34821,19643,42411,19645,34823,19647,48103,19649,34825,19651,42413,19653,34827,19655,46207,19657,34829,19659,42415,19661,34831,19663,49763,19665,34833,19667,42417,19669,34835,19671,46209,19673,34837,19675,42419,19677,34839,19679,48105,19681,34841,19683,42421,19685,34843,19687,46211,19689,34845,19691,42423,19693,34847,19695,49053,19697,34849,19699,42425,19701,34851,19703,46213,19705,34853,19707,42427,19709,34855,19711,48107,19713,34857,19715,42429,19717,34859,19719,46215,19721,34861,19723,42431,19725,34863,19727,49527,19729,34865,19731,42433,19733,34867,19735,46217,19737,34869,19739,42435,19741,34871,19743,48109,19745,34873,19747,42437,19749,34875,19751,46219,19753,34877,19755,42439,19757,34879,19759,49055,19761,34881,19763,42441,19765,34883,19767,46221,19769,34885,19771,42443,19773,34887,19775,48111,19777,34889,19779,42445,19781,34891,19783,46223,19785,34893,19787,42447,19789,34895,19791,49941,19793,34897,19795,42449,19797,34899,19799,46225,19801,34901,19803,42451,19805,34903,19807,48113,19809,34905,19811,42453,19813,34907,19815,46227,19817,34909,19819,42455,19821,34911,19823,49057,19825,34913,19827,42457,19829,34915,19831,46229,19833,34917,19835,42459,19837,34919,19839,48115,19841,34921,19843,42461,19845,34923,19847,46231,19849,34925,19851,42463,19853,34927,19855,49529,19857,34929,19859,42465,19861,34931,19863,46233,19865,34933,19867,42467,19869,34935,19871,48117,19873,34937,19875,42469,19877,34939,19879,46235,19881,34941,19883,42471,19885,34943,19887,49059,19889,34945,19891,42473,19893,34947,19895,46237,19897,34949,19899,42475,19901,34951,19903,48119,19905,34953,19907,42477,19909,34955,19911,46239,19913,34957,19915,42479,19917,34959,19919,49765,19921,34961,19923,42481,19925,34963,19927,46241,19929,34965,19931,42483,19933,34967,19935,48121,19937,34969,19939,42485,19941,34971,19943,46243,19945,34973,19947,42487,19949,34975,19951,49061,19953,34977,19955,42489,19957,34979,19959,46245,19961,34981,19963,42491,19965,34983,19967,48123,19969,34985,19971,42493,19973,34987,19975,46247,19977,34989,19979,42495,19981,34991,19983,49531,19985,34993,19987,42497,19989,34995,19991,46249,19993,34997,19995,42499,19997,34999,19999,48125,20001,35001,20003,42501,20005,35003,20007,46251,20009,35005,20011,42503,20013,35007,20015,49063,20017,35009,20019,42505,20021,35011,20023,46253,20025,35013,20027,42507,20029,35015,20031,48127,20033,35017,20035,42509,20037,35019,20039,46255,20041,35021,20043,42511,20045,35023,20047,49883,20049,35025,20051,42513,20053,35027,20055,46257,20057,35029,20059,42515,20061,35031,20063,48129,20065,35033,20067,42517,20069,35035,20071,46259,20073,35037,20075,42519,20077,35039,20079,49065,20081,35041,20083,42521,20085,35043,20087,46261,20089,35045,20091,42523,20093,35047,20095,48131,20097,35049,20099,42525,20101,35051,20103,46263,20105,35053,20107,42527,20109,35055,20111,49533,20113,35057,20115,42529,20117,35059,20119,46265,20121,35061,20123,42531,20125,35063,20127,48133,20129,35065,20131,42533,20133,35067,20135,46267,20137,35069,20139,42535,20141,35071,20143,49067,20145,35073,20147,42537,20149,35075,20151,46269,20153,35077,20155,42539,20157,35079,20159,48135,20161,35081,20163,42541,20165,35083,20167,46271,20169,35085,20171,42543,20173,35087,20175,49767,20177,35089,20179,42545,20181,35091,20183,46273,20185,35093,20187,42547,20189,35095,20191,48137,20193,35097,20195,42549,20197,35099,20199,46275,20201,35101,20203,42551,20205,35103,20207,49069,20209,35105,20211,42553,20213,35107,20215,46277,20217,35109,20219,42555,20221,35111,20223,48139,20225,35113,20227,42557,20229,35115,20231,46279,20233,35117,20235,42559,20237,35119,20239,49535,20241,35121,20243,42561,20245,35123,20247,46281,20249,35125,20251,42563,20253,35127,20255,48141,20257,35129,20259,42565,20261,35131,20263,46283,20265,35133,20267,42567,20269,35135,20271,49071,20273,35137,20275,42569,20277,35139,20279,46285,20281,35141,20283,42571,20285,35143,20287,48143,20289,35145,20291,42573,20293,35147,20295,46287,20297,35149,20299,42575,20301,35151,20303,49971,20305,35153,20307,42577,20309,35155,20311,46289,20313,35157,20315,42579,20317,35159,20319,48145,20321,35161,20323,42581,20325,35163,20327,46291,20329,35165,20331,42583,20333,35167,20335,49073,20337,35169,20339,42585,20341,35171,20343,46293,20345,35173,20347,42587,20349,35175,20351,48147,20353,35177,20355,42589,20357,35179,20359,46295,20361,35181,20363,42591,20365,35183,20367,49537,20369,35185,20371,42593,20373,35187,20375,46297,20377,35189,20379,42595,20381,35191,20383,48149,20385,35193,20387,42597,20389,35195,20391,46299,20393,35197,20395,42599,20397,35199,20399,49075,20401,35201,20403,42601,20405,35203,20407,46301,20409,35205,20411,42603,20413,35207,20415,48151,20417,35209,20419,42605,20421,35211,20423,46303,20425,35213,20427,42607,20429,35215,20431,49769,20433,35217,20435,42609,20437,35219,20439,46305,20441,35221,20443,42611,20445,35223,20447,48153,20449,35225,20451,42613,20453,35227,20455,46307,20457,35229,20459,42615,20461,35231,20463,49077,20465,35233,20467,42617,20469,35235,20471,46309,20473,35237,20475,42619,20477,35239,20479,48155,20481,35241,20483,42621,20485,35243,20487,46311,20489,35245,20491,42623,20493,35247,20495,49539,20497,35249,20499,42625,20501,35251,20503,46313,20505,35253,20507,42627,20509,35255,20511,48157,20513,35257,20515,42629,20517,35259,20519,46315,20521,35261,20523,42631,20525,35263,20527,49079,20529,35265,20531,42633,20533,35267,20535,46317,20537,35269,20539,42635,20541,35271,20543,48159,20545,35273,20547,42637,20549,35275,20551,46319,20553,35277,20555,42639,20557,35279,20559,49885,20561,35281,20563,42641,20565,35283,20567,46321,20569,35285,20571,42643,20573,35287,20575,48161,20577,35289,20579,42645,20581,35291,20583,46323,20585,35293,20587,42647,20589,35295,20591,49081,20593,35297,20595,42649,20597,35299,20599,46325,20601,35301,20603,42651,20605,35303,20607,48163,20609,35305,20611,42653,20613,35307,20615,46327,20617,35309,20619,42655,20621,35311,20623,49541,20625,35313,20627,42657,20629,35315,20631,46329,20633,35317,20635,42659,20637,35319,20639,48165,20641,35321,20643,42661,20645,35323,20647,46331,20649,35325,20651,42663,20653,35327,20655,49083,20657,35329,20659,42665,20661,35331,20663,46333,20665,35333,20667,42667,20669,35335,20671,48167,20673,35337,20675,42669,20677,35339,20679,46335,20681,35341,20683,42671,20685,35343,20687,49771,20689,35345,20691,42673,20693,35347,20695,46337,20697,35349,20699,42675,20701,35351,20703,48169,20705,35353,20707,42677,20709,35355,20711,46339,20713,35357,20715,42679,20717,35359,20719,49085,20721,35361,20723,42681,20725,35363,20727,46341,20729,35365,20731,42683,20733,35367,20735,48171,20737,35369,20739,42685,20741,35371,20743,46343,20745,35373,20747,42687,20749,35375,20751,49543,20753,35377,20755,42689,20757,35379,20759,46345,20761,35381,20763,42691,20765,35383,20767,48173,20769,35385,20771,42693,20773,35387,20775,46347,20777,35389,20779,42695,20781,35391,20783,49087,20785,35393,20787,42697,20789,35395,20791,46349,20793,35397,20795,42699,20797,35399,20799,48175,20801,35401,20803,42701,20805,35403,20807,46351,20809,35405,20811,42703,20813,35407,20815,49943,20817,35409,20819,42705,20821,35411,20823,46353,20825,35413,20827,42707,20829,35415,20831,48177,20833,35417,20835,42709,20837,35419,20839,46355,20841,35421,20843,42711,20845,35423,20847,49089,20849,35425,20851,42713,20853,35427,20855,46357,20857,35429,20859,42715,20861,35431,20863,48179,20865,35433,20867,42717,20869,35435,20871,46359,20873,35437,20875,42719,20877,35439,20879,49545,20881,35441,20883,42721,20885,35443,20887,46361,20889,35445,20891,42723,20893,35447,20895,48181,20897,35449,20899,42725,20901,35451,20903,46363,20905,35453,20907,42727,20909,35455,20911,49091,20913,35457,20915,42729,20917,35459,20919,46365,20921,35461,20923,42731,20925,35463,20927,48183,20929,35465,20931,42733,20933,35467,20935,46367,20937,35469,20939,42735,20941,35471,20943,49773,20945,35473,20947,42737,20949,35475,20951,46369,20953,35477,20955,42739,20957,35479,20959,48185,20961,35481,20963,42741,20965,35483,20967,46371,20969,35485,20971,42743,20973,35487,20975,49093,20977,35489,20979,42745,20981,35491,20983,46373,20985,35493,20987,42747,20989,35495,20991,48187,20993,35497,20995,42749,20997,35499,20999,46375,21001,35501,21003,42751,21005,35503,21007,49547,21009,35505,21011,42753,21013,35507,21015,46377,21017,35509,21019,42755,21021,35511,21023,48189,21025,35513,21027,42757,21029,35515,21031,46379,21033,35517,21035,42759,21037,35519,21039,49095,21041,35521,21043,42761,21045,35523,21047,46381,21049,35525,21051,42763,21053,35527,21055,48191,21057,35529,21059,42765,21061,35531,21063,46383,21065,35533,21067,42767,21069,35535,21071,49887,21073,35537,21075,42769,21077,35539,21079,46385,21081,35541,21083,42771,21085,35543,21087,48193,21089,35545,21091,42773,21093,35547,21095,46387,21097,35549,21099,42775,21101,35551,21103,49097,21105,35553,21107,42777,21109,35555,21111,46389,21113,35557,21115,42779,21117,35559,21119,48195,21121,35561,21123,42781,21125,35563,21127,46391,21129,35565,21131,42783,21133,35567,21135,49549,21137,35569,21139,42785,21141,35571,21143,46393,21145,35573,21147,42787,21149,35575,21151,48197,21153,35577,21155,42789,21157,35579,21159,46395,21161,35581,21163,42791,21165,35583,21167,49099,21169,35585,21171,42793,21173,35587,21175,46397,21177,35589,21179,42795,21181,35591,21183,48199,21185,35593,21187,42797,21189,35595,21191,46399,21193,35597,21195,42799,21197,35599,21199,49775,21201,35601,21203,42801,21205,35603,21207,46401,21209,35605,21211,42803,21213,35607,21215,48201,21217,35609,21219,42805,21221,35611,21223,46403,21225,35613,21227,42807,21229,35615,21231,49101,21233,35617,21235,42809,21237,35619,21239,46405,21241,35621,21243,42811,21245,35623,21247,48203,21249,35625,21251,42813,21253,35627,21255,46407,21257,35629,21259,42815,21261,35631,21263,49551,21265,35633,21267,42817,21269,35635,21271,46409,21273,35637,21275,42819,21277,35639,21279,48205,21281,35641,21283,42821,21285,35643,21287,46411,21289,35645,21291,42823,21293,35647,21295,49103,21297,35649,21299,42825,21301,35651,21303,46413,21305,35653,21307,42827,21309,35655,21311,48207,21313,35657,21315,42829,21317,35659,21319,46415,21321,35661,21323,42831,21325,35663,21327,49993,21329,35665,21331,42833,21333,35667,21335,46417,21337,35669,21339,42835,21341,35671,21343,48209,21345,35673,21347,42837,21349,35675,21351,46419,21353,35677,21355,42839,21357,35679,21359,49105,21361,35681,21363,42841,21365,35683,21367,46421,21369,35685,21371,42843,21373,35687,21375,48211,21377,35689,21379,42845,21381,35691,21383,46423,21385,35693,21387,42847,21389,35695,21391,49553,21393,35697,21395,42849,21397,35699,21399,46425,21401,35701,21403,42851,21405,35703,21407,48213,21409,35705,21411,42853,21413,35707,21415,46427,21417,35709,21419,42855,21421,35711,21423,49107,21425,35713,21427,42857,21429,35715,21431,46429,21433,35717,21435,42859,21437,35719,21439,48215,21441,35721,21443,42861,21445,35723,21447,46431,21449,35725,21451,42863,21453,35727,21455,49777,21457,35729,21459,42865,21461,35731,21463,46433,21465,35733,21467,42867,21469,35735,21471,48217,21473,35737,21475,42869,21477,35739,21479,46435,21481,35741,21483,42871,21485,35743,21487,49109,21489,35745,21491,42873,21493,35747,21495,46437,21497,35749,21499,42875,21501,35751,21503,48219,21505,35753,21507,42877,21509,35755,21511,46439,21513,35757,21515,42879,21517,35759,21519,49555,21521,35761,21523,42881,21525,35763,21527,46441,21529,35765,21531,42883,21533,35767,21535,48221,21537,35769,21539,42885,21541,35771,21543,46443,21545,35773,21547,42887,21549,35775,21551,49111,21553,35777,21555,42889,21557,35779,21559,46445,21561,35781,21563,42891,21565,35783,21567,48223,21569,35785,21571,42893,21573,35787,21575,46447,21577,35789,21579,42895,21581,35791,21583,49889,21585,35793,21587,42897,21589,35795,21591,46449,21593,35797,21595,42899,21597,35799,21599,48225,21601,35801,21603,42901,21605,35803,21607,46451,21609,35805,21611,42903,21613,35807,21615,49113,21617,35809,21619,42905,21621,35811,21623,46453,21625,35813,21627,42907,21629,35815,21631,48227,21633,35817,21635,42909,21637,35819,21639,46455,21641,35821,21643,42911,21645,35823,21647,49557,21649,35825,21651,42913,21653,35827,21655,46457,21657,35829,21659,42915,21661,35831,21663,48229,21665,35833,21667,42917,21669,35835,21671,46459,21673,35837,21675,42919,21677,35839,21679,49115,21681,35841,21683,42921,21685,35843,21687,46461,21689,35845,21691,42923,21693,35847,21695,48231,21697,35849,21699,42925,21701,35851,21703,46463,21705,35853,21707,42927,21709,35855,21711,49779,21713,35857,21715,42929,21717,35859,21719,46465,21721,35861,21723,42931,21725,35863,21727,48233,21729,35865,21731,42933,21733,35867,21735,46467,21737,35869,21739,42935,21741,35871,21743,49117,21745,35873,21747,42937,21749,35875,21751,46469,21753,35877,21755,42939,21757,35879,21759,48235,21761,35881,21763,42941,21765,35883,21767,46471,21769,35885,21771,42943,21773,35887,21775,49559,21777,35889,21779,42945,21781,35891,21783,46473,21785,35893,21787,42947,21789,35895,21791,48237,21793,35897,21795,42949,21797,35899,21799,46475,21801,35901,21803,42951,21805,35903,21807,49119,21809,35905,21811,42953,21813,35907,21815,46477,21817,35909,21819,42955,21821,35911,21823,48239,21825,35913,21827,42957,21829,35915,21831,46479,21833,35917,21835,42959,21837,35919,21839,49945,21841,35921,21843,42961,21845,35923,21847,46481,21849,35925,21851,42963,21853,35927,21855,48241,21857,35929,21859,42965,21861,35931,21863,46483,21865,35933,21867,42967,21869,35935,21871,49121,21873,35937,21875,42969,21877,35939,21879,46485,21881,35941,21883,42971,21885,35943,21887,48243,21889,35945,21891,42973,21893,35947,21895,46487,21897,35949,21899,42975,21901,35951,21903,49561,21905,35953,21907,42977,21909,35955,21911,46489,21913,35957,21915,42979,21917,35959,21919,48245,21921,35961,21923,42981,21925,35963,21927,46491,21929,35965,21931,42983,21933,35967,21935,49123,21937,35969,21939,42985,21941,35971,21943,46493,21945,35973,21947,42987,21949,35975,21951,48247,21953,35977,21955,42989,21957,35979,21959,46495,21961,35981,21963,42991,21965,35983,21967,49781,21969,35985,21971,42993,21973,35987,21975,46497,21977,35989,21979,42995,21981,35991,21983,48249,21985,35993,21987,42997,21989,35995,21991,46499,21993,35997,21995,42999,21997,35999,21999,49125,22001,36001,22003,43001,22005,36003,22007,46501,22009,36005,22011,43003,22013,36007,22015,48251,22017,36009,22019,43005,22021,36011,22023,46503,22025,36013,22027,43007,22029,36015,22031,49563,22033,36017,22035,43009,22037,36019,22039,46505,22041,36021,22043,43011,22045,36023,22047,48253,22049,36025,22051,43013,22053,36027,22055,46507,22057,36029,22059,43015,22061,36031,22063,49127,22065,36033,22067,43017,22069,36035,22071,46509,22073,36037,22075,43019,22077,36039,22079,48255,22081,36041,22083,43021,22085,36043,22087,46511,22089,36045,22091,43023,22093,36047,22095,49891,22097,36049,22099,43025,22101,36051,22103,46513,22105,36053,22107,43027,22109,36055,22111,48257,22113,36057,22115,43029,22117,36059,22119,46515,22121,36061,22123,43031,22125,36063,22127,49129,22129,36065,22131,43033,22133,36067,22135,46517,22137,36069,22139,43035,22141,36071,22143,48259,22145,36073,22147,43037,22149,36075,22151,46519,22153,36077,22155,43039,22157,36079,22159,49565,22161,36081,22163,43041,22165,36083,22167,46521,22169,36085,22171,43043,22173,36087,22175,48261,22177,36089,22179,43045,22181,36091,22183,46523,22185,36093,22187,43047,22189,36095,22191,49131,22193,36097,22195,43049,22197,36099,22199,46525,22201,36101,22203,43051,22205,36103,22207,48263,22209,36105,22211,43053,22213,36107,22215,46527,22217,36109,22219,43055,22221,36111,22223,49783,22225,36113,22227,43057,22229,36115,22231,46529,22233,36117,22235,43059,22237,36119,22239,48265,22241,36121,22243,43061,22245,36123,22247,46531,22249,36125,22251,43063,22253,36127,22255,49133,22257,36129,22259,43065,22261,36131,22263,46533,22265,36133,22267,43067,22269,36135,22271,48267,22273,36137,22275,43069,22277,36139,22279,46535,22281,36141,22283,43071,22285,36143,22287,49567,22289,36145,22291,43073,22293,36147,22295,46537,22297,36149,22299,43075,22301,36151,22303,48269,22305,36153,22307,43077,22309,36155,22311,46539,22313,36157,22315,43079,22317,36159,22319,49135,22321,36161,22323,43081,22325,36163,22327,46541,22329,36165,22331,43083,22333,36167,22335,48271,22337,36169,22339,43085,22341,36171,22343,46543,22345,36173,22347,43087,22349,36175,22351,49973,22353,36177,22355,43089,22357,36179,22359,46545,22361,36181,22363,43091,22365,36183,22367,48273,22369,36185,22371,43093,22373,36187,22375,46547,22377,36189,22379,43095,22381,36191,22383,49137,22385,36193,22387,43097,22389,36195,22391,46549,22393,36197,22395,43099,22397,36199,22399,48275,22401,36201,22403,43101,22405,36203,22407,46551,22409,36205,22411,43103,22413,36207,22415,49569,22417,36209,22419,43105,22421,36211,22423,46553,22425,36213,22427,43107,22429,36215,22431,48277,22433,36217,22435,43109,22437,36219,22439,46555,22441,36221,22443,43111,22445,36223,22447,49139,22449,36225,22451,43113,22453,36227,22455,46557,22457,36229,22459,43115,22461,36231,22463,48279,22465,36233,22467,43117,22469,36235,22471,46559,22473,36237,22475,43119,22477,36239,22479,49785,22481,36241,22483,43121,22485,36243,22487,46561,22489,36245,22491,43123,22493,36247,22495,48281,22497,36249,22499,43125,22501,36251,22503,46563,22505,36253,22507,43127,22509,36255,22511,49141,22513,36257,22515,43129,22517,36259,22519,46565,22521,36261,22523,43131,22525,36263,22527,48283,22529,36265,22531,43133,22533,36267,22535,46567,22537,36269,22539,43135,22541,36271,22543,49571,22545,36273,22547,43137,22549,36275,22551,46569,22553,36277,22555,43139,22557,36279,22559,48285,22561,36281,22563,43141,22565,36283,22567,46571,22569,36285,22571,43143,22573,36287,22575,49143,22577,36289,22579,43145,22581,36291,22583,46573,22585,36293,22587,43147,22589,36295,22591,48287,22593,36297,22595,43149,22597,36299,22599,46575,22601,36301,22603,43151,22605,36303,22607,49893,22609,36305,22611,43153,22613,36307,22615,46577,22617,36309,22619,43155,22621,36311,22623,48289,22625,36313,22627,43157,22629,36315,22631,46579,22633,36317,22635,43159,22637,36319,22639,49145,22641,36321,22643,43161,22645,36323,22647,46581,22649,36325,22651,43163,22653,36327,22655,48291,22657,36329,22659,43165,22661,36331,22663,46583,22665,36333,22667,43167,22669,36335,22671,49573,22673,36337,22675,43169,22677,36339,22679,46585,22681,36341,22683,43171,22685,36343,22687,48293,22689,36345,22691,43173,22693,36347,22695,46587,22697,36349,22699,43175,22701,36351,22703,49147,22705,36353,22707,43177,22709,36355,22711,46589,22713,36357,22715,43179,22717,36359,22719,48295,22721,36361,22723,43181,22725,36363,22727,46591,22729,36365,22731,43183,22733,36367,22735,49787,22737,36369,22739,43185,22741,36371,22743,46593,22745,36373,22747,43187,22749,36375,22751,48297,22753,36377,22755,43189,22757,36379,22759,46595,22761,36381,22763,43191,22765,36383,22767,49149,22769,36385,22771,43193,22773,36387,22775,46597,22777,36389,22779,43195,22781,36391,22783,48299,22785,36393,22787,43197,22789,36395,22791,46599,22793,36397,22795,43199,22797,36399,22799,49575,22801,36401,22803,43201,22805,36403,22807,46601,22809,36405,22811,43203,22813,36407,22815,48301,22817,36409,22819,43205,22821,36411,22823,46603,22825,36413,22827,43207,22829,36415,22831,49151,22833,36417,22835,43209,22837,36419,22839,46605,22841,36421,22843,43211,22845,36423,22847,48303,22849,36425,22851,43213,22853,36427,22855,46607,22857,36429,22859,43215,22861,36431,22863,49947,22865,36433,22867,43217,22869,36435,22871,46609,22873,36437,22875,43219,22877,36439,22879,48305,22881,36441,22883,43221,22885,36443,22887,46611,22889,36445,22891,43223,22893,36447,22895,49153,22897,36449,22899,43225,22901,36451,22903,46613,22905,36453,22907,43227,22909,36455,22911,48307,22913,36457,22915,43229,22917,36459,22919,46615,22921,36461,22923,43231,22925,36463,22927,49577,22929,36465,22931,43233,22933,36467,22935,46617,22937,36469,22939,43235,22941,36471,22943,48309,22945,36473,22947,43237,22949,36475,22951,46619,22953,36477,22955,43239,22957,36479,22959,49155,22961,36481,22963,43241,22965,36483,22967,46621,22969,36485,22971,43243,22973,36487,22975,48311,22977,36489,22979,43245,22981,36491,22983,46623,22985,36493,22987,43247,22989,36495,22991,49789,22993,36497,22995,43249,22997,36499,22999,46625,23001,36501,23003,43251,23005,36503,23007,48313,23009,36505,23011,43253,23013,36507,23015,46627,23017,36509,23019,43255,23021,36511,23023,49157,23025,36513,23027,43257,23029,36515,23031,46629,23033,36517,23035,43259,23037,36519,23039,48315,23041,36521,23043,43261,23045,36523,23047,46631,23049,36525,23051,43263,23053,36527,23055,49579,23057,36529,23059,43265,23061,36531,23063,46633,23065,36533,23067,43267,23069,36535,23071,48317,23073,36537,23075,43269,23077,36539,23079,46635,23081,36541,23083,43271,23085,36543,23087,49159,23089,36545,23091,43273,23093,36547,23095,46637,23097,36549,23099,43275,23101,36551,23103,48319,23105,36553,23107,43277,23109,36555,23111,46639,23113,36557,23115,43279,23117,36559,23119,49895,23121,36561,23123,43281,23125,36563,23127,46641,23129,36565,23131,43283,23133,36567,23135,48321,23137,36569,23139,43285,23141,36571,23143,46643,23145,36573,23147,43287,23149,36575,23151,49161,23153,36577,23155,43289,23157,36579,23159,46645,23161,36581,23163,43291,23165,36583,23167,48323,23169,36585,23171,43293,23173,36587,23175,46647,23177,36589,23179,43295,23181,36591,23183,49581,23185,36593,23187,43297,23189,36595,23191,46649,23193,36597,23195,43299,23197,36599,23199,48325,23201,36601,23203,43301,23205,36603,23207,46651,23209,36605,23211,43303,23213,36607,23215,49163,23217,36609,23219,43305,23221,36611,23223,46653,23225,36613,23227,43307,23229,36615,23231,48327,23233,36617,23235,43309,23237,36619,23239,46655,23241,36621,23243,43311,23245,36623,23247,49791,23249,36625,23251,43313,23253,36627,23255,46657,23257,36629,23259,43315,23261,36631,23263,48329,23265,36633,23267,43317,23269,36635,23271,46659,23273,36637,23275,43319,23277,36639,23279,49165,23281,36641,23283,43321,23285,36643,23287,46661,23289,36645,23291,43323,23293,36647,23295,48331,23297,36649,23299,43325,23301,36651,23303,46663,23305,36653,23307,43327,23309,36655,23311,49583,23313,36657,23315,43329,23317,36659,23319,46665,23321,36661,23323,43331,23325,36663,23327,48333,23329,36665,23331,43333,23333,36667,23335,46667,23337,36669,23339,43335,23341,36671,23343,49167,23345,36673,23347,43337,23349,36675,23351,46669,23353,36677,23355,43339,23357,36679,23359,48335,23361,36681,23363,43341,23365,36683,23367,46671,23369,36685,23371,43343,23373,36687,23375,49987,23377,36689,23379,43345,23381,36691,23383,46673,23385,36693,23387,43347,23389,36695,23391,48337,23393,36697,23395,43349,23397,36699,23399,46675,23401,36701,23403,43351,23405,36703,23407,49169,23409,36705,23411,43353,23413,36707,23415,46677,23417,36709,23419,43355,23421,36711,23423,48339,23425,36713,23427,43357,23429,36715,23431,46679,23433,36717,23435,43359,23437,36719,23439,49585,23441,36721,23443,43361,23445,36723,23447,46681,23449,36725,23451,43363,23453,36727,23455,48341,23457,36729,23459,43365,23461,36731,23463,46683,23465,36733,23467,43367,23469,36735,23471,49171,23473,36737,23475,43369,23477,36739,23479,46685,23481,36741,23483,43371,23485,36743,23487,48343,23489,36745,23491,43373,23493,36747,23495,46687,23497,36749,23499,43375,23501,36751,23503,49793,23505,36753,23507,43377,23509,36755,23511,46689,23513,36757,23515,43379,23517,36759,23519,48345,23521,36761,23523,43381,23525,36763,23527,46691,23529,36765,23531,43383,23533,36767,23535,49173,23537,36769,23539,43385,23541,36771,23543,46693,23545,36773,23547,43387,23549,36775,23551,48347,23553,36777,23555,43389,23557,36779,23559,46695,23561,36781,23563,43391,23565,36783,23567,49587,23569,36785,23571,43393,23573,36787,23575,46697,23577,36789,23579,43395,23581,36791,23583,48349,23585,36793,23587,43397,23589,36795,23591,46699,23593,36797,23595,43399,23597,36799,23599,49175,23601,36801,23603,43401,23605,36803,23607,46701,23609,36805,23611,43403,23613,36807,23615,48351,23617,36809,23619,43405,23621,36811,23623,46703,23625,36813,23627,43407,23629,36815,23631,49897,23633,36817,23635,43409,23637,36819,23639,46705,23641,36821,23643,43411,23645,36823,23647,48353,23649,36825,23651,43413,23653,36827,23655,46707,23657,36829,23659,43415,23661,36831,23663,49177,23665,36833,23667,43417,23669,36835,23671,46709,23673,36837,23675,43419,23677,36839,23679,48355,23681,36841,23683,43421,23685,36843,23687,46711,23689,36845,23691,43423,23693,36847,23695,49589,23697,36849,23699,43425,23701,36851,23703,46713,23705,36853,23707,43427,23709,36855,23711,48357,23713,36857,23715,43429,23717,36859,23719,46715,23721,36861,23723,43431,23725,36863,23727,49179,23729,36865,23731,43433,23733,36867,23735,46717,23737,36869,23739,43435,23741,36871,23743,48359,23745,36873,23747,43437,23749,36875,23751,46719,23753,36877,23755,43439,23757,36879,23759,49795,23761,36881,23763,43441,23765,36883,23767,46721,23769,36885,23771,43443,23773,36887,23775,48361,23777,36889,23779,43445,23781,36891,23783,46723,23785,36893,23787,43447,23789,36895,23791,49181,23793,36897,23795,43449,23797,36899,23799,46725,23801,36901,23803,43451,23805,36903,23807,48363,23809,36905,23811,43453,23813,36907,23815,46727,23817,36909,23819,43455,23821,36911,23823,49591,23825,36913,23827,43457,23829,36915,23831,46729,23833,36917,23835,43459,23837,36919,23839,48365,23841,36921,23843,43461,23845,36923,23847,46731,23849,36925,23851,43463,23853,36927,23855,49183,23857,36929,23859,43465,23861,36931,23863,46733,23865,36933,23867,43467,23869,36935,23871,48367,23873,36937,23875,43469,23877,36939,23879,46735,23881,36941,23883,43471,23885,36943,23887,49949,23889,36945,23891,43473,23893,36947,23895,46737,23897,36949,23899,43475,23901,36951,23903,48369,23905,36953,23907,43477,23909,36955,23911,46739,23913,36957,23915,43479,23917,36959,23919,49185,23921,36961,23923,43481,23925,36963,23927,46741,23929,36965,23931,43483,23933,36967,23935,48371,23937,36969,23939,43485,23941,36971,23943,46743,23945,36973,23947,43487,23949,36975,23951,49593,23953,36977,23955,43489,23957,36979,23959,46745,23961,36981,23963,43491,23965,36983,23967,48373,23969,36985,23971,43493,23973,36987,23975,46747,23977,36989,23979,43495,23981,36991,23983,49187,23985,36993,23987,43497,23989,36995,23991,46749,23993,36997,23995,43499,23997,36999,23999,48375,24001,37001,24003,43501,24005,37003,24007,46751,24009,37005,24011,43503,24013,37007,24015,49797,24017,37009,24019,43505,24021,37011,24023,46753,24025,37013,24027,43507,24029,37015,24031,48377,24033,37017,24035,43509,24037,37019,24039,46755,24041,37021,24043,43511,24045,37023,24047,49189,24049,37025,24051,43513,24053,37027,24055,46757,24057,37029,24059,43515,24061,37031,24063,48379,24065,37033,24067,43517,24069,37035,24071,46759,24073,37037,24075,43519,24077,37039,24079,49595,24081,37041,24083,43521,24085,37043,24087,46761,24089,37045,24091,43523,24093,37047,24095,48381,24097,37049,24099,43525,24101,37051,24103,46763,24105,37053,24107,43527,24109,37055,24111,49191,24113,37057,24115,43529,24117,37059,24119,46765,24121,37061,24123,43531,24125,37063,24127,48383,24129,37065,24131,43533,24133,37067,24135,46767,24137,37069,24139,43535,24141,37071,24143,49899,24145,37073,24147,43537,24149,37075,24151,46769,24153,37077,24155,43539,24157,37079,24159,48385,24161,37081,24163,43541,24165,37083,24167,46771,24169,37085,24171,43543,24173,37087,24175,49193,24177,37089,24179,43545,24181,37091,24183,46773,24185,37093,24187,43547,24189,37095,24191,48387,24193,37097,24195,43549,24197,37099,24199,46775,24201,37101,24203,43551,24205,37103,24207,49597,24209,37105,24211,43553,24213,37107,24215,46777,24217,37109,24219,43555,24221,37111,24223,48389,24225,37113,24227,43557,24229,37115,24231,46779,24233,37117,24235,43559,24237,37119,24239,49195,24241,37121,24243,43561,24245,37123,24247,46781,24249,37125,24251,43563,24253,37127,24255,48391,24257,37129,24259,43565,24261,37131,24263,46783,24265,37133,24267,43567,24269,37135,24271,49799,24273,37137,24275,43569,24277,37139,24279,46785,24281,37141,24283,43571,24285,37143,24287,48393,24289,37145,24291,43573,24293,37147,24295,46787,24297,37149,24299,43575,24301,37151,24303,49197,24305,37153,24307,43577,24309,37155,24311,46789,24313,37157,24315,43579,24317,37159,24319,48395,24321,37161,24323,43581,24325,37163,24327,46791,24329,37165,24331,43583,24333,37167,24335,49599,24337,37169,24339,43585,24341,37171,24343,46793,24345,37173,24347,43587,24349,37175,24351,48397,24353,37177,24355,43589,24357,37179,24359,46795,24361,37181,24363,43591,24365,37183,24367,49199,24369,37185,24371,43593,24373,37187,24375,46797,24377,37189,24379,43595,24381,37191,24383,48399,24385,37193,24387,43597,24389,37195,24391,46799,24393,37197,24395,43599,24397,37199,24399,49975,24401,37201,24403,43601,24405,37203,24407,46801,24409,37205,24411,43603,24413,37207,24415,48401,24417,37209,24419,43605,24421,37211,24423,46803,24425,37213,24427,43607,24429,37215,24431,49201,24433,37217,24435,43609,24437,37219,24439,46805,24441,37221,24443,43611,24445,37223,24447,48403,24449,37225,24451,43613,24453,37227,24455,46807,24457,37229,24459,43615,24461,37231,24463,49601,24465,37233,24467,43617,24469,37235,24471,46809,24473,37237,24475,43619,24477,37239,24479,48405,24481,37241,24483,43621,24485,37243,24487,46811,24489,37245,24491,43623,24493,37247,24495,49203,24497,37249,24499,43625,24501,37251,24503,46813,24505,37253,24507,43627,24509,37255,24511,48407,24513,37257,24515,43629,24517,37259,24519,46815,24521,37261,24523,43631,24525,37263,24527,49801,24529,37265,24531,43633,24533,37267,24535,46817,24537,37269,24539,43635,24541,37271,24543,48409,24545,37273,24547,43637,24549,37275,24551,46819,24553,37277,24555,43639,24557,37279,24559,49205,24561,37281,24563,43641,24565,37283,24567,46821,24569,37285,24571,43643,24573,37287,24575,48411,24577,37289,24579,43645,24581,37291,24583,46823,24585,37293,24587,43647,24589,37295,24591,49603,24593,37297,24595,43649,24597,37299,24599,46825,24601,37301,24603,43651,24605,37303,24607,48413,24609,37305,24611,43653,24613,37307,24615,46827,24617,37309,24619,43655,24621,37311,24623,49207,24625,37313,24627,43657,24629,37315,24631,46829,24633,37317,24635,43659,24637,37319,24639,48415,24641,37321,24643,43661,24645,37323,24647,46831,24649,37325,24651,43663,24653,37327,24655,49901,24657,37329,24659,43665,24661,37331,24663,46833,24665,37333,24667,43667,24669,37335,24671,48417,24673,37337,24675,43669,24677,37339,24679,46835,24681,37341,24683,43671,24685,37343,24687,49209,24689,37345,24691,43673,24693,37347,24695,46837,24697,37349,24699,43675,24701,37351,24703,48419,24705,37353,24707,43677,24709,37355,24711,46839,24713,37357,24715,43679,24717,37359,24719,49605,24721,37361,24723,43681,24725,37363,24727,46841,24729,37365,24731,43683,24733,37367,24735,48421,24737,37369,24739,43685,24741,37371,24743,46843,24745,37373,24747,43687,24749,37375,24751,49211,24753,37377,24755,43689,24757,37379,24759,46845,24761,37381,24763,43691,24765,37383,24767,48423,24769,37385,24771,43693,24773,37387,24775,46847,24777,37389,24779,43695,24781,37391,24783,49803,24785,37393,24787,43697,24789,37395,24791,46849,24793,37397,24795,43699,24797,37399,24799,48425,24801,37401,24803,43701,24805,37403,24807,46851,24809,37405,24811,43703,24813,37407,24815,49213,24817,37409,24819,43705,24821,37411,24823,46853,24825,37413,24827,43707,24829,37415,24831,48427,24833,37417,24835,43709,24837,37419,24839,46855,24841,37421,24843,43711,24845,37423,24847,49607,24849,37425,24851,43713,24853,37427,24855,46857,24857,37429,24859,43715,24861,37431,24863,48429,24865,37433,24867,43717,24869,37435,24871,46859,24873,37437,24875,43719,24877,37439,24879,49215,24881,37441,24883,43721,24885,37443,24887,46861,24889,37445,24891,43723,24893,37447,24895,48431,24897,37449,24899,43725,24901,37451,24903,46863,24905,37453,24907,43727,24909,37455,24911,49951,24913,37457,24915,43729,24917,37459,24919,46865,24921,37461,24923,43731,24925,37463,24927,48433,24929,37465,24931,43733,24933,37467,24935,46867,24937,37469,24939,43735,24941,37471,24943,49217,24945,37473,24947,43737,24949,37475,24951,46869,24953,37477,24955,43739,24957,37479,24959,48435,24961,37481,24963,43741,24965,37483,24967,46871,24969,37485,24971,43743,24973,37487,24975,49609,24977,37489,24979,43745,24981,37491,24983,46873,24985,37493,24987,43747,24989,37495,24991,48437,24993,37497,24995,43749,24997,37499,24999,46875,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194,196,198,200,202,204,206,208,210,212,214,216,218,220,222,224,226,228,230,232,234,236,238,240,242,244,246,248,250,252,254,256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,514,516,518,520,522,524,526,528,530,532,534,536,538,540,542,544,546,548,550,552,554,556,558,560,562,564,566,568,570,572,574,576,578,580,582,584,586,588,590,592,594,596,598,600,602,604,606,608,610,612,614,616,618,620,622,624,626,628,630,632,634,636,638,640,642,644,646,648,650,652,654,656,658,660,662,664,666,668,670,672,674,676,678,680,682,684,686,688,690,692,694,696,698,700,702,704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766,768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866,868,870,872,874,876,878,880,882,884,886,888,890,892,894,896,898,900,902,904,906,908,910,912,914,916,918,920,922,924,926,928,930,932,934,936,938,940,942,944,946,948,950,952,954,956,958,960,962,964,966,968,970,972,974,976,978,980,982,984,986,988,990,992,994,996,998,1000,1002,1004,1006,1008,1010,1012,1014,1016,1018,1020,1022,1024,1026,1028,1030,1032,1034,1036,1038,1040,1042,1044,1046,1048,1050,1052,1054,1056,1058,1060,1062,1064,1066,1068,1070,1072,1074,1076,1078,1080,1082,1084,1086,1088,1090,1092,1094,1096,1098,1100,1102,1104,1106,1108,1110,1112,1114,1116,1118,1120,1122,1124,1126,1128,1130,1132,1134,1136,1138,1140,1142,1144,1146,1148,1150,1152,1154,1156,1158,1160,1162,1164,1166,1168,1170,1172,1174,1176,1178,1180,1182,1184,1186,1188,1190,1192,1194,1196,1198,1200,1202,1204,1206,1208,1210,1212,1214,1216,1218,1220,1222,1224,1226,1228,1230,1232,1234,1236,1238,1240,1242,1244,1246,1248,1250,1252,1254,1256,1258,1260,1262,1264,1266,1268,1270,1272,1274,1276,1278,1280,1282,1284,1286,1288,1290,1292,1294,1296,1298,1300,1302,1304,1306,1308,1310,1312,1314,1316,1318,1320,1322,1324,1326,1328,1330,1332,1334,1336,1338,1340,1342,1344,1346,1348,1350,1352,1354,1356,1358,1360,1362,1364,1366,1368,1370,1372,1374,1376,1378,1380,1382,1384,1386,1388,1390,1392,1394,1396,1398,1400,1402,1404,1406,1408,1410,1412,1414,1416,1418,1420,1422,1424,1426,1428,1430,1432,1434,1436,1438,1440,1442,1444,1446,1448,1450,1452,1454,1456,1458,1460,1462,1464,1466,1468,1470,1472,1474,1476,1478,1480,1482,1484,1486,1488,1490,1492,1494,1496,1498,1500,1502,1504,1506,1508,1510,1512,1514,1516,1518,1520,1522,1524,1526,1528,1530,1532,1534,1536,1538,1540,1542,1544,1546,1548,1550,1552,1554,1556,1558,1560,1562,1564,1566,1568,1570,1572,1574,1576,1578,1580,1582,1584,1586,1588,1590,1592,1594,1596,1598,1600,1602,1604,1606,1608,1610,1612,1614,1616,1618,1620,1622,1624,1626,1628,1630,1632,1634,1636,1638,1640,1642,1644,1646,1648,1650,1652,1654,1656,1658,1660,1662,1664,1666,1668,1670,1672,1674,1676,1678,1680,1682,1684,1686,1688,1690,1692,1694,1696,1698,1700,1702,1704,1706,1708,1710,1712,1714,1716,1718,1720,1722,1724,1726,1728,1730,1732,1734,1736,1738,1740,1742,1744,1746,1748,1750,1752,1754,1756,1758,1760,1762,1764,1766,1768,1770,1772,1774,1776,1778,1780,1782,1784,1786,1788,1790,1792,1794,1796,1798,1800,1802,1804,1806,1808,1810,1812,1814,1816,1818,1820,1822,1824,1826,1828,1830,1832,1834,1836,1838,1840,1842,1844,1846,1848,1850,1852,1854,1856,1858,1860,1862,1864,1866,1868,1870,1872,1874,1876,1878,1880,1882,1884,1886,1888,1890,1892,1894,1896,1898,1900,1902,1904,1906,1908,1910,1912,1914,1916,1918,1920,1922,1924,1926,1928,1930,1932,1934,1936,1938,1940,1942,1944,1946,1948,1950,1952,1954,1956,1958,1960,1962,1964,1966,1968,1970,1972,1974,1976,1978,1980,1982,1984,1986,1988,1990,1992,1994,1996,1998,2000,2002,2004,2006,2008,2010,2012,2014,2016,2018,2020,2022,2024,2026,2028,2030,2032,2034,2036,2038,2040,2042,2044,2046,2048,2050,2052,2054,2056,2058,2060,2062,2064,2066,2068,2070,2072,2074,2076,2078,2080,2082,2084,2086,2088,2090,2092,2094,2096,2098,2100,2102,2104,2106,2108,2110,2112,2114,2116,2118,2120,2122,2124,2126,2128,2130,2132,2134,2136,2138,2140,2142,2144,2146,2148,2150,2152,2154,2156,2158,2160,2162,2164,2166,2168,2170,2172,2174,2176,2178,2180,2182,2184,2186,2188,2190,2192,2194,2196,2198,2200,2202,2204,2206,2208,2210,2212,2214,2216,2218,2220,2222,2224,2226,2228,2230,2232,2234,2236,2238,2240,2242,2244,2246,2248,2250,2252,2254,2256,2258,2260,2262,2264,2266,2268,2270,2272,2274,2276,2278,2280,2282,2284,2286,2288,2290,2292,2294,2296,2298,2300,2302,2304,2306,2308,2310,2312,2314,2316,2318,2320,2322,2324,2326,2328,2330,2332,2334,2336,2338,2340,2342,2344,2346,2348,2350,2352,2354,2356,2358,2360,2362,2364,2366,2368,2370,2372,2374,2376,2378,2380,2382,2384,2386,2388,2390,2392,2394,2396,2398,2400,2402,2404,2406,2408,2410,2412,2414,2416,2418,2420,2422,2424,2426,2428,2430,2432,2434,2436,2438,2440,2442,2444,2446,2448,2450,2452,2454,2456,2458,2460,2462,2464,2466,2468,2470,2472,2474,2476,2478,2480,2482,2484,2486,2488,2490,2492,2494,2496,2498,2500,2502,2504,2506,2508,2510,2512,2514,2516,2518,2520,2522,2524,2526,2528,2530,2532,2534,2536,2538,2540,2542,2544,2546,2548,2550,2552,2554,2556,2558,2560,2562,2564,2566,2568,2570,2572,2574,2576,2578,2580,2582,2584,2586,2588,2590,2592,2594,2596,2598,2600,2602,2604,2606,2608,2610,2612,2614,2616,2618,2620,2622,2624,2626,2628,2630,2632,2634,2636,2638,2640,2642,2644,2646,2648,2650,2652,2654,2656,2658,2660,2662,2664,2666,2668,2670,2672,2674,2676,2678,2680,2682,2684,2686,2688,2690,2692,2694,2696,2698,2700,2702,2704,2706,2708,2710,2712,2714,2716,2718,2720,2722,2724,2726,2728,2730,2732,2734,2736,2738,2740,2742,2744,2746,2748,2750,2752,2754,2756,2758,2760,2762,2764,2766,2768,2770,2772,2774,2776,2778,2780,2782,2784,2786,2788,2790,2792,2794,2796,2798,2800,2802,2804,2806,2808,2810,2812,2814,2816,2818,2820,2822,2824,2826,2828,2830,2832,2834,2836,2838,2840,2842,2844,2846,2848,2850,2852,2854,2856,2858,2860,2862,2864,2866,2868,2870,2872,2874,2876,2878,2880,2882,2884,2886,2888,2890,2892,2894,2896,2898,2900,2902,2904,2906,2908,2910,2912,2914,2916,2918,2920,2922,2924,2926,2928,2930,2932,2934,2936,2938,2940,2942,2944,2946,2948,2950,2952,2954,2956,2958,2960,2962,2964,2966,2968,2970,2972,2974,2976,2978,2980,2982,2984,2986,2988,2990,2992,2994,2996,2998,3000,3002,3004,3006,3008,3010,3012,3014,3016,3018,3020,3022,3024,3026,3028,3030,3032,3034,3036,3038,3040,3042,3044,3046,3048,3050,3052,3054,3056,3058,3060,3062,3064,3066,3068,3070,3072,3074,3076,3078,3080,3082,3084,3086,3088,3090,3092,3094,3096,3098,3100,3102,3104,3106,3108,3110,3112,3114,3116,3118,3120,3122,3124,3126,3128,3130,3132,3134,3136,3138,3140,3142,3144,3146,3148,3150,3152,3154,3156,3158,3160,3162,3164,3166,3168,3170,3172,3174,3176,3178,3180,3182,3184,3186,3188,3190,3192,3194,3196,3198,3200,3202,3204,3206,3208,3210,3212,3214,3216,3218,3220,3222,3224,3226,3228,3230,3232,3234,3236,3238,3240,3242,3244,3246,3248,3250,3252,3254,3256,3258,3260,3262,3264,3266,3268,3270,3272,3274,3276,3278,3280,3282,3284,3286,3288,3290,3292,3294,3296,3298,3300,3302,3304,3306,3308,3310,3312,3314,3316,3318,3320,3322,3324,3326,3328,3330,3332,3334,3336,3338,3340,3342,3344,3346,3348,3350,3352,3354,3356,3358,3360,3362,3364,3366,3368,3370,3372,3374,3376,3378,3380,3382,3384,3386,3388,3390,3392,3394,3396,3398,3400,3402,3404,3406,3408,3410,3412,3414,3416,3418,3420,3422,3424,3426,3428,3430,3432,3434,3436,3438,3440,3442,3444,3446,3448,3450,3452,3454,3456,3458,3460,3462,3464,3466,3468,3470,3472,3474,3476,3478,3480,3482,3484,3486,3488,3490,3492,3494,3496,3498,3500,3502,3504,3506,3508,3510,3512,3514,3516,3518,3520,3522,3524,3526,3528,3530,3532,3534,3536,3538,3540,3542,3544,3546,3548,3550,3552,3554,3556,3558,3560,3562,3564,3566,3568,3570,3572,3574,3576,3578,3580,3582,3584,3586,3588,3590,3592,3594,3596,3598,3600,3602,3604,3606,3608,3610,3612,3614,3616,3618,3620,3622,3624,3626,3628,3630,3632,3634,3636,3638,3640,3642,3644,3646,3648,3650,3652,3654,3656,3658,3660,3662,3664,3666,3668,3670,3672,3674,3676,3678,3680,3682,3684,3686,3688,3690,3692,3694,3696,3698,3700,3702,3704,3706,3708,3710,3712,3714,3716,3718,3720,3722,3724,3726,3728,3730,3732,3734,3736,3738,3740,3742,3744,3746,3748,3750,3752,3754,3756,3758,3760,3762,3764,3766,3768,3770,3772,3774,3776,3778,3780,3782,3784,3786,3788,3790,3792,3794,3796,3798,3800,3802,3804,3806,3808,3810,3812,3814,3816,3818,3820,3822,3824,3826,3828,3830,3832,3834,3836,3838,3840,3842,3844,3846,3848,3850,3852,3854,3856,3858,3860,3862,3864,3866,3868,3870,3872,3874,3876,3878,3880,3882,3884,3886,3888,3890,3892,3894,3896,3898,3900,3902,3904,3906,3908,3910,3912,3914,3916,3918,3920,3922,3924,3926,3928,3930,3932,3934,3936,3938,3940,3942,3944,3946,3948,3950,3952,3954,3956,3958,3960,3962,3964,3966,3968,3970,3972,3974,3976,3978,3980,3982,3984,3986,3988,3990,3992,3994,3996,3998,4000,4002,4004,4006,4008,4010,4012,4014,4016,4018,4020,4022,4024,4026,4028,4030,4032,4034,4036,4038,4040,4042,4044,4046,4048,4050,4052,4054,4056,4058,4060,4062,4064,4066,4068,4070,4072,4074,4076,4078,4080,4082,4084,4086,4088,4090,4092,4094,4096,4098,4100,4102,4104,4106,4108,4110,4112,4114,4116,4118,4120,4122,4124,4126,4128,4130,4132,4134,4136,4138,4140,4142,4144,4146,4148,4150,4152,4154,4156,4158,4160,4162,4164,4166,4168,4170,4172,4174,4176,4178,4180,4182,4184,4186,4188,4190,4192,4194,4196,4198,4200,4202,4204,4206,4208,4210,4212,4214,4216,4218,4220,4222,4224,4226,4228,4230,4232,4234,4236,4238,4240,4242,4244,4246,4248,4250,4252,4254,4256,4258,4260,4262,4264,4266,4268,4270,4272,4274,4276,4278,4280,4282,4284,4286,4288,4290,4292,4294,4296,4298,4300,4302,4304,4306,4308,4310,4312,4314,4316,4318,4320,4322,4324,4326,4328,4330,4332,4334,4336,4338,4340,4342,4344,4346,4348,4350,4352,4354,4356,4358,4360,4362,4364,4366,4368,4370,4372,4374,4376,4378,4380,4382,4384,4386,4388,4390,4392,4394,4396,4398,4400,4402,4404,4406,4408,4410,4412,4414,4416,4418,4420,4422,4424,4426,4428,4430,4432,4434,4436,4438,4440,4442,4444,4446,4448,4450,4452,4454,4456,4458,4460,4462,4464,4466,4468,4470,4472,4474,4476,4478,4480,4482,4484,4486,4488,4490,4492,4494,4496,4498,4500,4502,4504,4506,4508,4510,4512,4514,4516,4518,4520,4522,4524,4526,4528,4530,4532,4534,4536,4538,4540,4542,4544,4546,4548,4550,4552,4554,4556,4558,4560,4562,4564,4566,4568,4570,4572,4574,4576,4578,4580,4582,4584,4586,4588,4590,4592,4594,4596,4598,4600,4602,4604,4606,4608,4610,4612,4614,4616,4618,4620,4622,4624,4626,4628,4630,4632,4634,4636,4638,4640,4642,4644,4646,4648,4650,4652,4654,4656,4658,4660,4662,4664,4666,4668,4670,4672,4674,4676,4678,4680,4682,4684,4686,4688,4690,4692,4694,4696,4698,4700,4702,4704,4706,4708,4710,4712,4714,4716,4718,4720,4722,4724,4726,4728,4730,4732,4734,4736,4738,4740,4742,4744,4746,4748,4750,4752,4754,4756,4758,4760,4762,4764,4766,4768,4770,4772,4774,4776,4778,4780,4782,4784,4786,4788,4790,4792,4794,4796,4798,4800,4802,4804,4806,4808,4810,4812,4814,4816,4818,4820,4822,4824,4826,4828,4830,4832,4834,4836,4838,4840,4842,4844,4846,4848,4850,4852,4854,4856,4858,4860,4862,4864,4866,4868,4870,4872,4874,4876,4878,4880,4882,4884,4886,4888,4890,4892,4894,4896,4898,4900,4902,4904,4906,4908,4910,4912,4914,4916,4918,4920,4922,4924,4926,4928,4930,4932,4934,4936,4938,4940,4942,4944,4946,4948,4950,4952,4954,4956,4958,4960,4962,4964,4966,4968,4970,4972,4974,4976,4978,4980,4982,4984,4986,4988,4990,4992,4994,4996,4998,5000,5002,5004,5006,5008,5010,5012,5014,5016,5018,5020,5022,5024,5026,5028,5030,5032,5034,5036,5038,5040,5042,5044,5046,5048,5050,5052,5054,5056,5058,5060,5062,5064,5066,5068,5070,5072,5074,5076,5078,5080,5082,5084,5086,5088,5090,5092,5094,5096,5098,5100,5102,5104,5106,5108,5110,5112,5114,5116,5118,5120,5122,5124,5126,5128,5130,5132,5134,5136,5138,5140,5142,5144,5146,5148,5150,5152,5154,5156,5158,5160,5162,5164,5166,5168,5170,5172,5174,5176,5178,5180,5182,5184,5186,5188,5190,5192,5194,5196,5198,5200,5202,5204,5206,5208,5210,5212,5214,5216,5218,5220,5222,5224,5226,5228,5230,5232,5234,5236,5238,5240,5242,5244,5246,5248,5250,5252,5254,5256,5258,5260,5262,5264,5266,5268,5270,5272,5274,5276,5278,5280,5282,5284,5286,5288,5290,5292,5294,5296,5298,5300,5302,5304,5306,5308,5310,5312,5314,5316,5318,5320,5322,5324,5326,5328,5330,5332,5334,5336,5338,5340,5342,5344,5346,5348,5350,5352,5354,5356,5358,5360,5362,5364,5366,5368,5370,5372,5374,5376,5378,5380,5382,5384,5386,5388,5390,5392,5394,5396,5398,5400,5402,5404,5406,5408,5410,5412,5414,5416,5418,5420,5422,5424,5426,5428,5430,5432,5434,5436,5438,5440,5442,5444,5446,5448,5450,5452,5454,5456,5458,5460,5462,5464,5466,5468,5470,5472,5474,5476,5478,5480,5482,5484,5486,5488,5490,5492,5494,5496,5498,5500,5502,5504,5506,5508,5510,5512,5514,5516,5518,5520,5522,5524,5526,5528,5530,5532,5534,5536,5538,5540,5542,5544,5546,5548,5550,5552,5554,5556,5558,5560,5562,5564,5566,5568,5570,5572,5574,5576,5578,5580,5582,5584,5586,5588,5590,5592,5594,5596,5598,5600,5602,5604,5606,5608,5610,5612,5614,5616,5618,5620,5622,5624,5626,5628,5630,5632,5634,5636,5638,5640,5642,5644,5646,5648,5650,5652,5654,5656,5658,5660,5662,5664,5666,5668,5670,5672,5674,5676,5678,5680,5682,5684,5686,5688,5690,5692,5694,5696,5698,5700,5702,5704,5706,5708,5710,5712,5714,5716,5718,5720,5722,5724,5726,5728,5730,5732,5734,5736,5738,5740,5742,5744,5746,5748,5750,5752,5754,5756,5758,5760,5762,5764,5766,5768,5770,5772,5774,5776,5778,5780,5782,5784,5786,5788,5790,5792,5794,5796,5798,5800,5802,5804,5806,5808,5810,5812,5814,5816,5818,5820,5822,5824,5826,5828,5830,5832,5834,5836,5838,5840,5842,5844,5846,5848,5850,5852,5854,5856,5858,5860,5862,5864,5866,5868,5870,5872,5874,5876,5878,5880,5882,5884,5886,5888,5890,5892,5894,5896,5898,5900,5902,5904,5906,5908,5910,5912,5914,5916,5918,5920,5922,5924,5926,5928,5930,5932,5934,5936,5938,5940,5942,5944,5946,5948,5950,5952,5954,5956,5958,5960,5962,5964,5966,5968,5970,5972,5974,5976,5978,5980,5982,5984,5986,5988,5990,5992,5994,5996,5998,6000,6002,6004,6006,6008,6010,6012,6014,6016,6018,6020,6022,6024,6026,6028,6030,6032,6034,6036,6038,6040,6042,6044,6046,6048,6050,6052,6054,6056,6058,6060,6062,6064,6066,6068,6070,6072,6074,6076,6078,6080,6082,6084,6086,6088,6090,6092,6094,6096,6098,6100,6102,6104,6106,6108,6110,6112,6114,6116,6118,6120,6122,6124,6126,6128,6130,6132,6134,6136,6138,6140,6142,6144,6146,6148,6150,6152,6154,6156,6158,6160,6162,6164,6166,6168,6170,6172,6174,6176,6178,6180,6182,6184,6186,6188,6190,6192,6194,6196,6198,6200,6202,6204,6206,6208,6210,6212,6214,6216,6218,6220,6222,6224,6226,6228,6230,6232,6234,6236,6238,6240,6242,6244,6246,6248,6250,6252,6254,6256,6258,6260,6262,6264,6266,6268,6270,6272,6274,6276,6278,6280,6282,6284,6286,6288,6290,6292,6294,6296,6298,6300,6302,6304,6306,6308,6310,6312,6314,6316,6318,6320,6322,6324,6326,6328,6330,6332,6334,6336,6338,6340,6342,6344,6346,6348,6350,6352,6354,6356,6358,6360,6362,6364,6366,6368,6370,6372,6374,6376,6378,6380,6382,6384,6386,6388,6390,6392,6394,6396,6398,6400,6402,6404,6406,6408,6410,6412,6414,6416,6418,6420,6422,6424,6426,6428,6430,6432,6434,6436,6438,6440,6442,6444,6446,6448,6450,6452,6454,6456,6458,6460,6462,6464,6466,6468,6470,6472,6474,6476,6478,6480,6482,6484,6486,6488,6490,6492,6494,6496,6498,6500,6502,6504,6506,6508,6510,6512,6514,6516,6518,6520,6522,6524,6526,6528,6530,6532,6534,6536,6538,6540,6542,6544,6546,6548,6550,6552,6554,6556,6558,6560,6562,6564,6566,6568,6570,6572,6574,6576,6578,6580,6582,6584,6586,6588,6590,6592,6594,6596,6598,6600,6602,6604,6606,6608,6610,6612,6614,6616,6618,6620,6622,6624,6626,6628,6630,6632,6634,6636,6638,6640,6642,6644,6646,6648,6650,6652,6654,6656,6658,6660,6662,6664,6666,6668,6670,6672,6674,6676,6678,6680,6682,6684,6686,6688,6690,6692,6694,6696,6698,6700,6702,6704,6706,6708,6710,6712,6714,6716,6718,6720,6722,6724,6726,6728,6730,6732,6734,6736,6738,6740,6742,6744,6746,6748,6750,6752,6754,6756,6758,6760,6762,6764,6766,6768,6770,6772,6774,6776,6778,6780,6782,6784,6786,6788,6790,6792,6794,6796,6798,6800,6802,6804,6806,6808,6810,6812,6814,6816,6818,6820,6822,6824,6826,6828,6830,6832,6834,6836,6838,6840,6842,6844,6846,6848,6850,6852,6854,6856,6858,6860,6862,6864,6866,6868,6870,6872,6874,6876,6878,6880,6882,6884,6886,6888,6890,6892,6894,6896,6898,6900,6902,6904,6906,6908,6910,6912,6914,6916,6918,6920,6922,6924,6926,6928,6930,6932,6934,6936,6938,6940,6942,6944,6946,6948,6950,6952,6954,6956,6958,6960,6962,6964,6966,6968,6970,6972,6974,6976,6978,6980,6982,6984,6986,6988,6990,6992,6994,6996,6998,7000,7002,7004,7006,7008,7010,7012,7014,7016,7018,7020,7022,7024,7026,7028,7030,7032,7034,7036,7038,7040,7042,7044,7046,7048,7050,7052,7054,7056,7058,7060,7062,7064,7066,7068,7070,7072,7074,7076,7078,7080,7082,7084,7086,7088,7090,7092,7094,7096,7098,7100,7102,7104,7106,7108,7110,7112,7114,7116,7118,7120,7122,7124,7126,7128,7130,7132,7134,7136,7138,7140,7142,7144,7146,7148,7150,7152,7154,7156,7158,7160,7162,7164,7166,7168,7170,7172,7174,7176,7178,7180,7182,7184,7186,7188,7190,7192,7194,7196,7198,7200,7202,7204,7206,7208,7210,7212,7214,7216,7218,7220,7222,7224,7226,7228,7230,7232,7234,7236,7238,7240,7242,7244,7246,7248,7250,7252,7254,7256,7258,7260,7262,7264,7266,7268,7270,7272,7274,7276,7278,7280,7282,7284,7286,7288,7290,7292,7294,7296,7298,7300,7302,7304,7306,7308,7310,7312,7314,7316,7318,7320,7322,7324,7326,7328,7330,7332,7334,7336,7338,7340,7342,7344,7346,7348,7350,7352,7354,7356,7358,7360,7362,7364,7366,7368,7370,7372,7374,7376,7378,7380,7382,7384,7386,7388,7390,7392,7394,7396,7398,7400,7402,7404,7406,7408,7410,7412,7414,7416,7418,7420,7422,7424,7426,7428,7430,7432,7434,7436,7438,7440,7442,7444,7446,7448,7450,7452,7454,7456,7458,7460,7462,7464,7466,7468,7470,7472,7474,7476,7478,7480,7482,7484,7486,7488,7490,7492,7494,7496,7498,7500,7502,7504,7506,7508,7510,7512,7514,7516,7518,7520,7522,7524,7526,7528,7530,7532,7534,7536,7538,7540,7542,7544,7546,7548,7550,7552,7554,7556,7558,7560,7562,7564,7566,7568,7570,7572,7574,7576,7578,7580,7582,7584,7586,7588,7590,7592,7594,7596,7598,7600,7602,7604,7606,7608,7610,7612,7614,7616,7618,7620,7622,7624,7626,7628,7630,7632,7634,7636,7638,7640,7642,7644,7646,7648,7650,7652,7654,7656,7658,7660,7662,7664,7666,7668,7670,7672,7674,7676,7678,7680,7682,7684,7686,7688,7690,7692,7694,7696,7698,7700,7702,7704,7706,7708,7710,7712,7714,7716,7718,7720,7722,7724,7726,7728,7730,7732,7734,7736,7738,7740,7742,7744,7746,7748,7750,7752,7754,7756,7758,7760,7762,7764,7766,7768,7770,7772,7774,7776,7778,7780,7782,7784,7786,7788,7790,7792,7794,7796,7798,7800,7802,7804,7806,7808,7810,7812,7814,7816,7818,7820,7822,7824,7826,7828,7830,7832,7834,7836,7838,7840,7842,7844,7846,7848,7850,7852,7854,7856,7858,7860,7862,7864,7866,7868,7870,7872,7874,7876,7878,7880,7882,7884,7886,7888,7890,7892,7894,7896,7898,7900,7902,7904,7906,7908,7910,7912,7914,7916,7918,7920,7922,7924,7926,7928,7930,7932,7934,7936,7938,7940,7942,7944,7946,7948,7950,7952,7954,7956,7958,7960,7962,7964,7966,7968,7970,7972,7974,7976,7978,7980,7982,7984,7986,7988,7990,7992,7994,7996,7998,8000,8002,8004,8006,8008,8010,8012,8014,8016,8018,8020,8022,8024,8026,8028,8030,8032,8034,8036,8038,8040,8042,8044,8046,8048,8050,8052,8054,8056,8058,8060,8062,8064,8066,8068,8070,8072,8074,8076,8078,8080,8082,8084,8086,8088,8090,8092,8094,8096,8098,8100,8102,8104,8106,8108,8110,8112,8114,8116,8118,8120,8122,8124,8126,8128,8130,8132,8134,8136,8138,8140,8142,8144,8146,8148,8150,8152,8154,8156,8158,8160,8162,8164,8166,8168,8170,8172,8174,8176,8178,8180,8182,8184,8186,8188,8190,8192,8194,8196,8198,8200,8202,8204,8206,8208,8210,8212,8214,8216,8218,8220,8222,8224,8226,8228,8230,8232,8234,8236,8238,8240,8242,8244,8246,8248,8250,8252,8254,8256,8258,8260,8262,8264,8266,8268,8270,8272,8274,8276,8278,8280,8282,8284,8286,8288,8290,8292,8294,8296,8298,8300,8302,8304,8306,8308,8310,8312,8314,8316,8318,8320,8322,8324,8326,8328,8330,8332,8334,8336,8338,8340,8342,8344,8346,8348,8350,8352,8354,8356,8358,8360,8362,8364,8366,8368,8370,8372,8374,8376,8378,8380,8382,8384,8386,8388,8390,8392,8394,8396,8398,8400,8402,8404,8406,8408,8410,8412,8414,8416,8418,8420,8422,8424,8426,8428,8430,8432,8434,8436,8438,8440,8442,8444,8446,8448,8450,8452,8454,8456,8458,8460,8462,8464,8466,8468,8470,8472,8474,8476,8478,8480,8482,8484,8486,8488,8490,8492,8494,8496,8498,8500,8502,8504,8506,8508,8510,8512,8514,8516,8518,8520,8522,8524,8526,8528,8530,8532,8534,8536,8538,8540,8542,8544,8546,8548,8550,8552,8554,8556,8558,8560,8562,8564,8566,8568,8570,8572,8574,8576,8578,8580,8582,8584,8586,8588,8590,8592,8594,8596,8598,8600,8602,8604,8606,8608,8610,8612,8614,8616,8618,8620,8622,8624,8626,8628,8630,8632,8634,8636,8638,8640,8642,8644,8646,8648,8650,8652,8654,8656,8658,8660,8662,8664,8666,8668,8670,8672,8674,8676,8678,8680,8682,8684,8686,8688,8690,8692,8694,8696,8698,8700,8702,8704,8706,8708,8710,8712,8714,8716,8718,8720,8722,8724,8726,8728,8730,8732,8734,8736,8738,8740,8742,8744,8746,8748,8750,8752,8754,8756,8758,8760,8762,8764,8766,8768,8770,8772,8774,8776,8778,8780,8782,8784,8786,8788,8790,8792,8794,8796,8798,8800,8802,8804,8806,8808,8810,8812,8814,8816,8818,8820,8822,8824,8826,8828,8830,8832,8834,8836,8838,8840,8842,8844,8846,8848,8850,8852,8854,8856,8858,8860,8862,8864,8866,8868,8870,8872,8874,8876,8878,8880,8882,8884,8886,8888,8890,8892,8894,8896,8898,8900,8902,8904,8906,8908,8910,8912,8914,8916,8918,8920,8922,8924,8926,8928,8930,8932,8934,8936,8938,8940,8942,8944,8946,8948,8950,8952,8954,8956,8958,8960,8962,8964,8966,8968,8970,8972,8974,8976,8978,8980,8982,8984,8986,8988,8990,8992,8994,8996,8998,9000,9002,9004,9006,9008,9010,9012,9014,9016,9018,9020,9022,9024,9026,9028,9030,9032,9034,9036,9038,9040,9042,9044,9046,9048,9050,9052,9054,9056,9058,9060,9062,9064,9066,9068,9070,9072,9074,9076,9078,9080,9082,9084,9086,9088,9090,9092,9094,9096,9098,9100,9102,9104,9106,9108,9110,9112,9114,9116,9118,9120,9122,9124,9126,9128,9130,9132,9134,9136,9138,9140,9142,9144,9146,9148,9150,9152,9154,9156,9158,9160,9162,9164,9166,9168,9170,9172,9174,9176,9178,9180,9182,9184,9186,9188,9190,9192,9194,9196,9198,9200,9202,9204,9206,9208,9210,9212,9214,9216,9218,9220,9222,9224,9226,9228,9230,9232,9234,9236,9238,9240,9242,9244,9246,9248,9250,9252,9254,9256,9258,9260,9262,9264,9266,9268,9270,9272,9274,9276,9278,9280,9282,9284,9286,9288,9290,9292,9294,9296,9298,9300,9302,9304,9306,9308,9310,9312,9314,9316,9318,9320,9322,9324,9326,9328,9330,9332,9334,9336,9338,9340,9342,9344,9346,9348,9350,9352,9354,9356,9358,9360,9362,9364,9366,9368,9370,9372,9374,9376,9378,9380,9382,9384,9386,9388,9390,9392,9394,9396,9398,9400,9402,9404,9406,9408,9410,9412,9414,9416,9418,9420,9422,9424,9426,9428,9430,9432,9434,9436,9438,9440,9442,9444,9446,9448,9450,9452,9454,9456,9458,9460,9462,9464,9466,9468,9470,9472,9474,9476,9478,9480,9482,9484,9486,9488,9490,9492,9494,9496,9498,9500,9502,9504,9506,9508,9510,9512,9514,9516,9518,9520,9522,9524,9526,9528,9530,9532,9534,9536,9538,9540,9542,9544,9546,9548,9550,9552,9554,9556,9558,9560,9562,9564,9566,9568,9570,9572,9574,9576,9578,9580,9582,9584,9586,9588,9590,9592,9594,9596,9598,9600,9602,9604,9606,9608,9610,9612,9614,9616,9618,9620,9622,9624,9626,9628,9630,9632,9634,9636,9638,9640,9642,9644,9646,9648,9650,9652,9654,9656,9658,9660,9662,9664,9666,9668,9670,9672,9674,9676,9678,9680,9682,9684,9686,9688,9690,9692,9694,9696,9698,9700,9702,9704,9706,9708,9710,9712,9714,9716,9718,9720,9722,9724,9726,9728,9730,9732,9734,9736,9738,9740,9742,9744,9746,9748,9750,9752,9754,9756,9758,9760,9762,9764,9766,9768,9770,9772,9774,9776,9778,9780,9782,9784,9786,9788,9790,9792,9794,9796,9798,9800,9802,9804,9806,9808,9810,9812,9814,9816,9818,9820,9822,9824,9826,9828,9830,9832,9834,9836,9838,9840,9842,9844,9846,9848,9850,9852,9854,9856,9858,9860,9862,9864,9866,9868,9870,9872,9874,9876,9878,9880,9882,9884,9886,9888,9890,9892,9894,9896,9898,9900,9902,9904,9906,9908,9910,9912,9914,9916,9918,9920,9922,9924,9926,9928,9930,9932,9934,9936,9938,9940,9942,9944,9946,9948,9950,9952,9954,9956,9958,9960,9962,9964,9966,9968,9970,9972,9974,9976,9978,9980,9982,9984,9986,9988,9990,9992,9994,9996,9998,10000,10002,10004,10006,10008,10010,10012,10014,10016,10018,10020,10022,10024,10026,10028,10030,10032,10034,10036,10038,10040,10042,10044,10046,10048,10050,10052,10054,10056,10058,10060,10062,10064,10066,10068,10070,10072,10074,10076,10078,10080,10082,10084,10086,10088,10090,10092,10094,10096,10098,10100,10102,10104,10106,10108,10110,10112,10114,10116,10118,10120,10122,10124,10126,10128,10130,10132,10134,10136,10138,10140,10142,10144,10146,10148,10150,10152,10154,10156,10158,10160,10162,10164,10166,10168,10170,10172,10174,10176,10178,10180,10182,10184,10186,10188,10190,10192,10194,10196,10198,10200,10202,10204,10206,10208,10210,10212,10214,10216,10218,10220,10222,10224,10226,10228,10230,10232,10234,10236,10238,10240,10242,10244,10246,10248,10250,10252,10254,10256,10258,10260,10262,10264,10266,10268,10270,10272,10274,10276,10278,10280,10282,10284,10286,10288,10290,10292,10294,10296,10298,10300,10302,10304,10306,10308,10310,10312,10314,10316,10318,10320,10322,10324,10326,10328,10330,10332,10334,10336,10338,10340,10342,10344,10346,10348,10350,10352,10354,10356,10358,10360,10362,10364,10366,10368,10370,10372,10374,10376,10378,10380,10382,10384,10386,10388,10390,10392,10394,10396,10398,10400,10402,10404,10406,10408,10410,10412,10414,10416,10418,10420,10422,10424,10426,10428,10430,10432,10434,10436,10438,10440,10442,10444,10446,10448,10450,10452,10454,10456,10458,10460,10462,10464,10466,10468,10470,10472,10474,10476,10478,10480,10482,10484,10486,10488,10490,10492,10494,10496,10498,10500,10502,10504,10506,10508,10510,10512,10514,10516,10518,10520,10522,10524,10526,10528,10530,10532,10534,10536,10538,10540,10542,10544,10546,10548,10550,10552,10554,10556,10558,10560,10562,10564,10566,10568,10570,10572,10574,10576,10578,10580,10582,10584,10586,10588,10590,10592,10594,10596,10598,10600,10602,10604,10606,10608,10610,10612,10614,10616,10618,10620,10622,10624,10626,10628,10630,10632,10634,10636,10638,10640,10642,10644,10646,10648,10650,10652,10654,10656,10658,10660,10662,10664,10666,10668,10670,10672,10674,10676,10678,10680,10682,10684,10686,10688,10690,10692,10694,10696,10698,10700,10702,10704,10706,10708,10710,10712,10714,10716,10718,10720,10722,10724,10726,10728,10730,10732,10734,10736,10738,10740,10742,10744,10746,10748,10750,10752,10754,10756,10758,10760,10762,10764,10766,10768,10770,10772,10774,10776,10778,10780,10782,10784,10786,10788,10790,10792,10794,10796,10798,10800,10802,10804,10806,10808,10810,10812,10814,10816,10818,10820,10822,10824,10826,10828,10830,10832,10834,10836,10838,10840,10842,10844,10846,10848,10850,10852,10854,10856,10858,10860,10862,10864,10866,10868,10870,10872,10874,10876,10878,10880,10882,10884,10886,10888,10890,10892,10894,10896,10898,10900,10902,10904,10906,10908,10910,10912,10914,10916,10918,10920,10922,10924,10926,10928,10930,10932,10934,10936,10938,10940,10942,10944,10946,10948,10950,10952,10954,10956,10958,10960,10962,10964,10966,10968,10970,10972,10974,10976,10978,10980,10982,10984,10986,10988,10990,10992,10994,10996,10998,11000,11002,11004,11006,11008,11010,11012,11014,11016,11018,11020,11022,11024,11026,11028,11030,11032,11034,11036,11038,11040,11042,11044,11046,11048,11050,11052,11054,11056,11058,11060,11062,11064,11066,11068,11070,11072,11074,11076,11078,11080,11082,11084,11086,11088,11090,11092,11094,11096,11098,11100,11102,11104,11106,11108,11110,11112,11114,11116,11118,11120,11122,11124,11126,11128,11130,11132,11134,11136,11138,11140,11142,11144,11146,11148,11150,11152,11154,11156,11158,11160,11162,11164,11166,11168,11170,11172,11174,11176,11178,11180,11182,11184,11186,11188,11190,11192,11194,11196,11198,11200,11202,11204,11206,11208,11210,11212,11214,11216,11218,11220,11222,11224,11226,11228,11230,11232,11234,11236,11238,11240,11242,11244,11246,11248,11250,11252,11254,11256,11258,11260,11262,11264,11266,11268,11270,11272,11274,11276,11278,11280,11282,11284,11286,11288,11290,11292,11294,11296,11298,11300,11302,11304,11306,11308,11310,11312,11314,11316,11318,11320,11322,11324,11326,11328,11330,11332,11334,11336,11338,11340,11342,11344,11346,11348,11350,11352,11354,11356,11358,11360,11362,11364,11366,11368,11370,11372,11374,11376,11378,11380,11382,11384,11386,11388,11390,11392,11394,11396,11398,11400,11402,11404,11406,11408,11410,11412,11414,11416,11418,11420,11422,11424,11426,11428,11430,11432,11434,11436,11438,11440,11442,11444,11446,11448,11450,11452,11454,11456,11458,11460,11462,11464,11466,11468,11470,11472,11474,11476,11478,11480,11482,11484,11486,11488,11490,11492,11494,11496,11498,11500,11502,11504,11506,11508,11510,11512,11514,11516,11518,11520,11522,11524,11526,11528,11530,11532,11534,11536,11538,11540,11542,11544,11546,11548,11550,11552,11554,11556,11558,11560,11562,11564,11566,11568,11570,11572,11574,11576,11578,11580,11582,11584,11586,11588,11590,11592,11594,11596,11598,11600,11602,11604,11606,11608,11610,11612,11614,11616,11618,11620,11622,11624,11626,11628,11630,11632,11634,11636,11638,11640,11642,11644,11646,11648,11650,11652,11654,11656,11658,11660,11662,11664,11666,11668,11670,11672,11674,11676,11678,11680,11682,11684,11686,11688,11690,11692,11694,11696,11698,11700,11702,11704,11706,11708,11710,11712,11714,11716,11718,11720,11722,11724,11726,11728,11730,11732,11734,11736,11738,11740,11742,11744,11746,11748,11750,11752,11754,11756,11758,11760,11762,11764,11766,11768,11770,11772,11774,11776,11778,11780,11782,11784,11786,11788,11790,11792,11794,11796,11798,11800,11802,11804,11806,11808,11810,11812,11814,11816,11818,11820,11822,11824,11826,11828,11830,11832,11834,11836,11838,11840,11842,11844,11846,11848,11850,11852,11854,11856,11858,11860,11862,11864,11866,11868,11870,11872,11874,11876,11878,11880,11882,11884,11886,11888,11890,11892,11894,11896,11898,11900,11902,11904,11906,11908,11910,11912,11914,11916,11918,11920,11922,11924,11926,11928,11930,11932,11934,11936,11938,11940,11942,11944,11946,11948,11950,11952,11954,11956,11958,11960,11962,11964,11966,11968,11970,11972,11974,11976,11978,11980,11982,11984,11986,11988,11990,11992,11994,11996,11998,12000,12002,12004,12006,12008,12010,12012,12014,12016,12018,12020,12022,12024,12026,12028,12030,12032,12034,12036,12038,12040,12042,12044,12046,12048,12050,12052,12054,12056,12058,12060,12062,12064,12066,12068,12070,12072,12074,12076,12078,12080,12082,12084,12086,12088,12090,12092,12094,12096,12098,12100,12102,12104,12106,12108,12110,12112,12114,12116,12118,12120,12122,12124,12126,12128,12130,12132,12134,12136,12138,12140,12142,12144,12146,12148,12150,12152,12154,12156,12158,12160,12162,12164,12166,12168,12170,12172,12174,12176,12178,12180,12182,12184,12186,12188,12190,12192,12194,12196,12198,12200,12202,12204,12206,12208,12210,12212,12214,12216,12218,12220,12222,12224,12226,12228,12230,12232,12234,12236,12238,12240,12242,12244,12246,12248,12250,12252,12254,12256,12258,12260,12262,12264,12266,12268,12270,12272,12274,12276,12278,12280,12282,12284,12286,12288,12290,12292,12294,12296,12298,12300,12302,12304,12306,12308,12310,12312,12314,12316,12318,12320,12322,12324,12326,12328,12330,12332,12334,12336,12338,12340,12342,12344,12346,12348,12350,12352,12354,12356,12358,12360,12362,12364,12366,12368,12370,12372,12374,12376,12378,12380,12382,12384,12386,12388,12390,12392,12394,12396,12398,12400,12402,12404,12406,12408,12410,12412,12414,12416,12418,12420,12422,12424,12426,12428,12430,12432,12434,12436,12438,12440,12442,12444,12446,12448,12450,12452,12454,12456,12458,12460,12462,12464,12466,12468,12470,12472,12474,12476,12478,12480,12482,12484,12486,12488,12490,12492,12494,12496,12498,12500,12502,12504,12506,12508,12510,12512,12514,12516,12518,12520,12522,12524,12526,12528,12530,12532,12534,12536,12538,12540,12542,12544,12546,12548,12550,12552,12554,12556,12558,12560,12562,12564,12566,12568,12570,12572,12574,12576,12578,12580,12582,12584,12586,12588,12590,12592,12594,12596,12598,12600,12602,12604,12606,12608,12610,12612,12614,12616,12618,12620,12622,12624,12626,12628,12630,12632,12634,12636,12638,12640,12642,12644,12646,12648,12650,12652,12654,12656,12658,12660,12662,12664,12666,12668,12670,12672,12674,12676,12678,12680,12682,12684,12686,12688,12690,12692,12694,12696,12698,12700,12702,12704,12706,12708,12710,12712,12714,12716,12718,12720,12722,12724,12726,12728,12730,12732,12734,12736,12738,12740,12742,12744,12746,12748,12750,12752,12754,12756,12758,12760,12762,12764,12766,12768,12770,12772,12774,12776,12778,12780,12782,12784,12786,12788,12790,12792,12794,12796,12798,12800,12802,12804,12806,12808,12810,12812,12814,12816,12818,12820,12822,12824,12826,12828,12830,12832,12834,12836,12838,12840,12842,12844,12846,12848,12850,12852,12854,12856,12858,12860,12862,12864,12866,12868,12870,12872,12874,12876,12878,12880,12882,12884,12886,12888,12890,12892,12894,12896,12898,12900,12902,12904,12906,12908,12910,12912,12914,12916,12918,12920,12922,12924,12926,12928,12930,12932,12934,12936,12938,12940,12942,12944,12946,12948,12950,12952,12954,12956,12958,12960,12962,12964,12966,12968,12970,12972,12974,12976,12978,12980,12982,12984,12986,12988,12990,12992,12994,12996,12998,13000,13002,13004,13006,13008,13010,13012,13014,13016,13018,13020,13022,13024,13026,13028,13030,13032,13034,13036,13038,13040,13042,13044,13046,13048,13050,13052,13054,13056,13058,13060,13062,13064,13066,13068,13070,13072,13074,13076,13078,13080,13082,13084,13086,13088,13090,13092,13094,13096,13098,13100,13102,13104,13106,13108,13110,13112,13114,13116,13118,13120,13122,13124,13126,13128,13130,13132,13134,13136,13138,13140,13142,13144,13146,13148,13150,13152,13154,13156,13158,13160,13162,13164,13166,13168,13170,13172,13174,13176,13178,13180,13182,13184,13186,13188,13190,13192,13194,13196,13198,13200,13202,13204,13206,13208,13210,13212,13214,13216,13218,13220,13222,13224,13226,13228,13230,13232,13234,13236,13238,13240,13242,13244,13246,13248,13250,13252,13254,13256,13258,13260,13262,13264,13266,13268,13270,13272,13274,13276,13278,13280,13282,13284,13286,13288,13290,13292,13294,13296,13298,13300,13302,13304,13306,13308,13310,13312,13314,13316,13318,13320,13322,13324,13326,13328,13330,13332,13334,13336,13338,13340,13342,13344,13346,13348,13350,13352,13354,13356,13358,13360,13362,13364,13366,13368,13370,13372,13374,13376,13378,13380,13382,13384,13386,13388,13390,13392,13394,13396,13398,13400,13402,13404,13406,13408,13410,13412,13414,13416,13418,13420,13422,13424,13426,13428,13430,13432,13434,13436,13438,13440,13442,13444,13446,13448,13450,13452,13454,13456,13458,13460,13462,13464,13466,13468,13470,13472,13474,13476,13478,13480,13482,13484,13486,13488,13490,13492,13494,13496,13498,13500,13502,13504,13506,13508,13510,13512,13514,13516,13518,13520,13522,13524,13526,13528,13530,13532,13534,13536,13538,13540,13542,13544,13546,13548,13550,13552,13554,13556,13558,13560,13562,13564,13566,13568,13570,13572,13574,13576,13578,13580,13582,13584,13586,13588,13590,13592,13594,13596,13598,13600,13602,13604,13606,13608,13610,13612,13614,13616,13618,13620,13622,13624,13626,13628,13630,13632,13634,13636,13638,13640,13642,13644,13646,13648,13650,13652,13654,13656,13658,13660,13662,13664,13666,13668,13670,13672,13674,13676,13678,13680,13682,13684,13686,13688,13690,13692,13694,13696,13698,13700,13702,13704,13706,13708,13710,13712,13714,13716,13718,13720,13722,13724,13726,13728,13730,13732,13734,13736,13738,13740,13742,13744,13746,13748,13750,13752,13754,13756,13758,13760,13762,13764,13766,13768,13770,13772,13774,13776,13778,13780,13782,13784,13786,13788,13790,13792,13794,13796,13798,13800,13802,13804,13806,13808,13810,13812,13814,13816,13818,13820,13822,13824,13826,13828,13830,13832,13834,13836,13838,13840,13842,13844,13846,13848,13850,13852,13854,13856,13858,13860,13862,13864,13866,13868,13870,13872,13874,13876,13878,13880,13882,13884,13886,13888,13890,13892,13894,13896,13898,13900,13902,13904,13906,13908,13910,13912,13914,13916,13918,13920,13922,13924,13926,13928,13930,13932,13934,13936,13938,13940,13942,13944,13946,13948,13950,13952,13954,13956,13958,13960,13962,13964,13966,13968,13970,13972,13974,13976,13978,13980,13982,13984,13986,13988,13990,13992,13994,13996,13998,14000,14002,14004,14006,14008,14010,14012,14014,14016,14018,14020,14022,14024,14026,14028,14030,14032,14034,14036,14038,14040,14042,14044,14046,14048,14050,14052,14054,14056,14058,14060,14062,14064,14066,14068,14070,14072,14074,14076,14078,14080,14082,14084,14086,14088,14090,14092,14094,14096,14098,14100,14102,14104,14106,14108,14110,14112,14114,14116,14118,14120,14122,14124,14126,14128,14130,14132,14134,14136,14138,14140,14142,14144,14146,14148,14150,14152,14154,14156,14158,14160,14162,14164,14166,14168,14170,14172,14174,14176,14178,14180,14182,14184,14186,14188,14190,14192,14194,14196,14198,14200,14202,14204,14206,14208,14210,14212,14214,14216,14218,14220,14222,14224,14226,14228,14230,14232,14234,14236,14238,14240,14242,14244,14246,14248,14250,14252,14254,14256,14258,14260,14262,14264,14266,14268,14270,14272,14274,14276,14278,14280,14282,14284,14286,14288,14290,14292,14294,14296,14298,14300,14302,14304,14306,14308,14310,14312,14314,14316,14318,14320,14322,14324,14326,14328,14330,14332,14334,14336,14338,14340,14342,14344,14346,14348,14350,14352,14354,14356,14358,14360,14362,14364,14366,14368,14370,14372,14374,14376,14378,14380,14382,14384,14386,14388,14390,14392,14394,14396,14398,14400,14402,14404,14406,14408,14410,14412,14414,14416,14418,14420,14422,14424,14426,14428,14430,14432,14434,14436,14438,14440,14442,14444,14446,14448,14450,14452,14454,14456,14458,14460,14462,14464,14466,14468,14470,14472,14474,14476,14478,14480,14482,14484,14486,14488,14490,14492,14494,14496,14498,14500,14502,14504,14506,14508,14510,14512,14514,14516,14518,14520,14522,14524,14526,14528,14530,14532,14534,14536,14538,14540,14542,14544,14546,14548,14550,14552,14554,14556,14558,14560,14562,14564,14566,14568,14570,14572,14574,14576,14578,14580,14582,14584,14586,14588,14590,14592,14594,14596,14598,14600,14602,14604,14606,14608,14610,14612,14614,14616,14618,14620,14622,14624,14626,14628,14630,14632,14634,14636,14638,14640,14642,14644,14646,14648,14650,14652,14654,14656,14658,14660,14662,14664,14666,14668,14670,14672,14674,14676,14678,14680,14682,14684,14686,14688,14690,14692,14694,14696,14698,14700,14702,14704,14706,14708,14710,14712,14714,14716,14718,14720,14722,14724,14726,14728,14730,14732,14734,14736,14738,14740,14742,14744,14746,14748,14750,14752,14754,14756,14758,14760,14762,14764,14766,14768,14770,14772,14774,14776,14778,14780,14782,14784,14786,14788,14790,14792,14794,14796,14798,14800,14802,14804,14806,14808,14810,14812,14814,14816,14818,14820,14822,14824,14826,14828,14830,14832,14834,14836,14838,14840,14842,14844,14846,14848,14850,14852,14854,14856,14858,14860,14862,14864,14866,14868,14870,14872,14874,14876,14878,14880,14882,14884,14886,14888,14890,14892,14894,14896,14898,14900,14902,14904,14906,14908,14910,14912,14914,14916,14918,14920,14922,14924,14926,14928,14930,14932,14934,14936,14938,14940,14942,14944,14946,14948,14950,14952,14954,14956,14958,14960,14962,14964,14966,14968,14970,14972,14974,14976,14978,14980,14982,14984,14986,14988,14990,14992,14994,14996,14998,15000,15002,15004,15006,15008,15010,15012,15014,15016,15018,15020,15022,15024,15026,15028,15030,15032,15034,15036,15038,15040,15042,15044,15046,15048,15050,15052,15054,15056,15058,15060,15062,15064,15066,15068,15070,15072,15074,15076,15078,15080,15082,15084,15086,15088,15090,15092,15094,15096,15098,15100,15102,15104,15106,15108,15110,15112,15114,15116,15118,15120,15122,15124,15126,15128,15130,15132,15134,15136,15138,15140,15142,15144,15146,15148,15150,15152,15154,15156,15158,15160,15162,15164,15166,15168,15170,15172,15174,15176,15178,15180,15182,15184,15186,15188,15190,15192,15194,15196,15198,15200,15202,15204,15206,15208,15210,15212,15214,15216,15218,15220,15222,15224,15226,15228,15230,15232,15234,15236,15238,15240,15242,15244,15246,15248,15250,15252,15254,15256,15258,15260,15262,15264,15266,15268,15270,15272,15274,15276,15278,15280,15282,15284,15286,15288,15290,15292,15294,15296,15298,15300,15302,15304,15306,15308,15310,15312,15314,15316,15318,15320,15322,15324,15326,15328,15330,15332,15334,15336,15338,15340,15342,15344,15346,15348,15350,15352,15354,15356,15358,15360,15362,15364,15366,15368,15370,15372,15374,15376,15378,15380,15382,15384,15386,15388,15390,15392,15394,15396,15398,15400,15402,15404,15406,15408,15410,15412,15414,15416,15418,15420,15422,15424,15426,15428,15430,15432,15434,15436,15438,15440,15442,15444,15446,15448,15450,15452,15454,15456,15458,15460,15462,15464,15466,15468,15470,15472,15474,15476,15478,15480,15482,15484,15486,15488,15490,15492,15494,15496,15498,15500,15502,15504,15506,15508,15510,15512,15514,15516,15518,15520,15522,15524,15526,15528,15530,15532,15534,15536,15538,15540,15542,15544,15546,15548,15550,15552,15554,15556,15558,15560,15562,15564,15566,15568,15570,15572,15574,15576,15578,15580,15582,15584,15586,15588,15590,15592,15594,15596,15598,15600,15602,15604,15606,15608,15610,15612,15614,15616,15618,15620,15622,15624,15626,15628,15630,15632,15634,15636,15638,15640,15642,15644,15646,15648,15650,15652,15654,15656,15658,15660,15662,15664,15666,15668,15670,15672,15674,15676,15678,15680,15682,15684,15686,15688,15690,15692,15694,15696,15698,15700,15702,15704,15706,15708,15710,15712,15714,15716,15718,15720,15722,15724,15726,15728,15730,15732,15734,15736,15738,15740,15742,15744,15746,15748,15750,15752,15754,15756,15758,15760,15762,15764,15766,15768,15770,15772,15774,15776,15778,15780,15782,15784,15786,15788,15790,15792,15794,15796,15798,15800,15802,15804,15806,15808,15810,15812,15814,15816,15818,15820,15822,15824,15826,15828,15830,15832,15834,15836,15838,15840,15842,15844,15846,15848,15850,15852,15854,15856,15858,15860,15862,15864,15866,15868,15870,15872,15874,15876,15878,15880,15882,15884,15886,15888,15890,15892,15894,15896,15898,15900,15902,15904,15906,15908,15910,15912,15914,15916,15918,15920,15922,15924,15926,15928,15930,15932,15934,15936,15938,15940,15942,15944,15946,15948,15950,15952,15954,15956,15958,15960,15962,15964,15966,15968,15970,15972,15974,15976,15978,15980,15982,15984,15986,15988,15990,15992,15994,15996,15998,16000,16002,16004,16006,16008,16010,16012,16014,16016,16018,16020,16022,16024,16026,16028,16030,16032,16034,16036,16038,16040,16042,16044,16046,16048,16050,16052,16054,16056,16058,16060,16062,16064,16066,16068,16070,16072,16074,16076,16078,16080,16082,16084,16086,16088,16090,16092,16094,16096,16098,16100,16102,16104,16106,16108,16110,16112,16114,16116,16118,16120,16122,16124,16126,16128,16130,16132,16134,16136,16138,16140,16142,16144,16146,16148,16150,16152,16154,16156,16158,16160,16162,16164,16166,16168,16170,16172,16174,16176,16178,16180,16182,16184,16186,16188,16190,16192,16194,16196,16198,16200,16202,16204,16206,16208,16210,16212,16214,16216,16218,16220,16222,16224,16226,16228,16230,16232,16234,16236,16238,16240,16242,16244,16246,16248,16250,16252,16254,16256,16258,16260,16262,16264,16266,16268,16270,16272,16274,16276,16278,16280,16282,16284,16286,16288,16290,16292,16294,16296,16298,16300,16302,16304,16306,16308,16310,16312,16314,16316,16318,16320,16322,16324,16326,16328,16330,16332,16334,16336,16338,16340,16342,16344,16346,16348,16350,16352,16354,16356,16358,16360,16362,16364,16366,16368,16370,16372,16374,16376,16378,16380,16382,16384,16386,16388,16390,16392,16394,16396,16398,16400,16402,16404,16406,16408,16410,16412,16414,16416,16418,16420,16422,16424,16426,16428,16430,16432,16434,16436,16438,16440,16442,16444,16446,16448,16450,16452,16454,16456,16458,16460,16462,16464,16466,16468,16470,16472,16474,16476,16478,16480,16482,16484,16486,16488,16490,16492,16494,16496,16498,16500,16502,16504,16506,16508,16510,16512,16514,16516,16518,16520,16522,16524,16526,16528,16530,16532,16534,16536,16538,16540,16542,16544,16546,16548,16550,16552,16554,16556,16558,16560,16562,16564,16566,16568,16570,16572,16574,16576,16578,16580,16582,16584,16586,16588,16590,16592,16594,16596,16598,16600,16602,16604,16606,16608,16610,16612,16614,16616,16618,16620,16622,16624,16626,16628,16630,16632,16634,16636,16638,16640,16642,16644,16646,16648,16650,16652,16654,16656,16658,16660,16662,16664,16666,16668,16670,16672,16674,16676,16678,16680,16682,16684,16686,16688,16690,16692,16694,16696,16698,16700,16702,16704,16706,16708,16710,16712,16714,16716,16718,16720,16722,16724,16726,16728,16730,16732,16734,16736,16738,16740,16742,16744,16746,16748,16750,16752,16754,16756,16758,16760,16762,16764,16766,16768,16770,16772,16774,16776,16778,16780,16782,16784,16786,16788,16790,16792,16794,16796,16798,16800,16802,16804,16806,16808,16810,16812,16814,16816,16818,16820,16822,16824,16826,16828,16830,16832,16834,16836,16838,16840,16842,16844,16846,16848,16850,16852,16854,16856,16858,16860,16862,16864,16866,16868,16870,16872,16874,16876,16878,16880,16882,16884,16886,16888,16890,16892,16894,16896,16898,16900,16902,16904,16906,16908,16910,16912,16914,16916,16918,16920,16922,16924,16926,16928,16930,16932,16934,16936,16938,16940,16942,16944,16946,16948,16950,16952,16954,16956,16958,16960,16962,16964,16966,16968,16970,16972,16974,16976,16978,16980,16982,16984,16986,16988,16990,16992,16994,16996,16998,17000,17002,17004,17006,17008,17010,17012,17014,17016,17018,17020,17022,17024,17026,17028,17030,17032,17034,17036,17038,17040,17042,17044,17046,17048,17050,17052,17054,17056,17058,17060,17062,17064,17066,17068,17070,17072,17074,17076,17078,17080,17082,17084,17086,17088,17090,17092,17094,17096,17098,17100,17102,17104,17106,17108,17110,17112,17114,17116,17118,17120,17122,17124,17126,17128,17130,17132,17134,17136,17138,17140,17142,17144,17146,17148,17150,17152,17154,17156,17158,17160,17162,17164,17166,17168,17170,17172,17174,17176,17178,17180,17182,17184,17186,17188,17190,17192,17194,17196,17198,17200,17202,17204,17206,17208,17210,17212,17214,17216,17218,17220,17222,17224,17226,17228,17230,17232,17234,17236,17238,17240,17242,17244,17246,17248,17250,17252,17254,17256,17258,17260,17262,17264,17266,17268,17270,17272,17274,17276,17278,17280,17282,17284,17286,17288,17290,17292,17294,17296,17298,17300,17302,17304,17306,17308,17310,17312,17314,17316,17318,17320,17322,17324,17326,17328,17330,17332,17334,17336,17338,17340,17342,17344,17346,17348,17350,17352,17354,17356,17358,17360,17362,17364,17366,17368,17370,17372,17374,17376,17378,17380,17382,17384,17386,17388,17390,17392,17394,17396,17398,17400,17402,17404,17406,17408,17410,17412,17414,17416,17418,17420,17422,17424,17426,17428,17430,17432,17434,17436,17438,17440,17442,17444,17446,17448,17450,17452,17454,17456,17458,17460,17462,17464,17466,17468,17470,17472,17474,17476,17478,17480,17482,17484,17486,17488,17490,17492,17494,17496,17498,17500,17502,17504,17506,17508,17510,17512,17514,17516,17518,17520,17522,17524,17526,17528,17530,17532,17534,17536,17538,17540,17542,17544,17546,17548,17550,17552,17554,17556,17558,17560,17562,17564,17566,17568,17570,17572,17574,17576,17578,17580,17582,17584,17586,17588,17590,17592,17594,17596,17598,17600,17602,17604,17606,17608,17610,17612,17614,17616,17618,17620,17622,17624,17626,17628,17630,17632,17634,17636,17638,17640,17642,17644,17646,17648,17650,17652,17654,17656,17658,17660,17662,17664,17666,17668,17670,17672,17674,17676,17678,17680,17682,17684,17686,17688,17690,17692,17694,17696,17698,17700,17702,17704,17706,17708,17710,17712,17714,17716,17718,17720,17722,17724,17726,17728,17730,17732,17734,17736,17738,17740,17742,17744,17746,17748,17750,17752,17754,17756,17758,17760,17762,17764,17766,17768,17770,17772,17774,17776,17778,17780,17782,17784,17786,17788,17790,17792,17794,17796,17798,17800,17802,17804,17806,17808,17810,17812,17814,17816,17818,17820,17822,17824,17826,17828,17830,17832,17834,17836,17838,17840,17842,17844,17846,17848,17850,17852,17854,17856,17858,17860,17862,17864,17866,17868,17870,17872,17874,17876,17878,17880,17882,17884,17886,17888,17890,17892,17894,17896,17898,17900,17902,17904,17906,17908,17910,17912,17914,17916,17918,17920,17922,17924,17926,17928,17930,17932,17934,17936,17938,17940,17942,17944,17946,17948,17950,17952,17954,17956,17958,17960,17962,17964,17966,17968,17970,17972,17974,17976,17978,17980,17982,17984,17986,17988,17990,17992,17994,17996,17998,18000,18002,18004,18006,18008,18010,18012,18014,18016,18018,18020,18022,18024,18026,18028,18030,18032,18034,18036,18038,18040,18042,18044,18046,18048,18050,18052,18054,18056,18058,18060,18062,18064,18066,18068,18070,18072,18074,18076,18078,18080,18082,18084,18086,18088,18090,18092,18094,18096,18098,18100,18102,18104,18106,18108,18110,18112,18114,18116,18118,18120,18122,18124,18126,18128,18130,18132,18134,18136,18138,18140,18142,18144,18146,18148,18150,18152,18154,18156,18158,18160,18162,18164,18166,18168,18170,18172,18174,18176,18178,18180,18182,18184,18186,18188,18190,18192,18194,18196,18198,18200,18202,18204,18206,18208,18210,18212,18214,18216,18218,18220,18222,18224,18226,18228,18230,18232,18234,18236,18238,18240,18242,18244,18246,18248,18250,18252,18254,18256,18258,18260,18262,18264,18266,18268,18270,18272,18274,18276,18278,18280,18282,18284,18286,18288,18290,18292,18294,18296,18298,18300,18302,18304,18306,18308,18310,18312,18314,18316,18318,18320,18322,18324,18326,18328,18330,18332,18334,18336,18338,18340,18342,18344,18346,18348,18350,18352,18354,18356,18358,18360,18362,18364,18366,18368,18370,18372,18374,18376,18378,18380,18382,18384,18386,18388,18390,18392,18394,18396,18398,18400,18402,18404,18406,18408,18410,18412,18414,18416,18418,18420,18422,18424,18426,18428,18430,18432,18434,18436,18438,18440,18442,18444,18446,18448,18450,18452,18454,18456,18458,18460,18462,18464,18466,18468,18470,18472,18474,18476,18478,18480,18482,18484,18486,18488,18490,18492,18494,18496,18498,18500,18502,18504,18506,18508,18510,18512,18514,18516,18518,18520,18522,18524,18526,18528,18530,18532,18534,18536,18538,18540,18542,18544,18546,18548,18550,18552,18554,18556,18558,18560,18562,18564,18566,18568,18570,18572,18574,18576,18578,18580,18582,18584,18586,18588,18590,18592,18594,18596,18598,18600,18602,18604,18606,18608,18610,18612,18614,18616,18618,18620,18622,18624,18626,18628,18630,18632,18634,18636,18638,18640,18642,18644,18646,18648,18650,18652,18654,18656,18658,18660,18662,18664,18666,18668,18670,18672,18674,18676,18678,18680,18682,18684,18686,18688,18690,18692,18694,18696,18698,18700,18702,18704,18706,18708,18710,18712,18714,18716,18718,18720,18722,18724,18726,18728,18730,18732,18734,18736,18738,18740,18742,18744,18746,18748,18750,18752,18754,18756,18758,18760,18762,18764,18766,18768,18770,18772,18774,18776,18778,18780,18782,18784,18786,18788,18790,18792,18794,18796,18798,18800,18802,18804,18806,18808,18810,18812,18814,18816,18818,18820,18822,18824,18826,18828,18830,18832,18834,18836,18838,18840,18842,18844,18846,18848,18850,18852,18854,18856,18858,18860,18862,18864,18866,18868,18870,18872,18874,18876,18878,18880,18882,18884,18886,18888,18890,18892,18894,18896,18898,18900,18902,18904,18906,18908,18910,18912,18914,18916,18918,18920,18922,18924,18926,18928,18930,18932,18934,18936,18938,18940,18942,18944,18946,18948,18950,18952,18954,18956,18958,18960,18962,18964,18966,18968,18970,18972,18974,18976,18978,18980,18982,18984,18986,18988,18990,18992,18994,18996,18998,19000,19002,19004,19006,19008,19010,19012,19014,19016,19018,19020,19022,19024,19026,19028,19030,19032,19034,19036,19038,19040,19042,19044,19046,19048,19050,19052,19054,19056,19058,19060,19062,19064,19066,19068,19070,19072,19074,19076,19078,19080,19082,19084,19086,19088,19090,19092,19094,19096,19098,19100,19102,19104,19106,19108,19110,19112,19114,19116,19118,19120,19122,19124,19126,19128,19130,19132,19134,19136,19138,19140,19142,19144,19146,19148,19150,19152,19154,19156,19158,19160,19162,19164,19166,19168,19170,19172,19174,19176,19178,19180,19182,19184,19186,19188,19190,19192,19194,19196,19198,19200,19202,19204,19206,19208,19210,19212,19214,19216,19218,19220,19222,19224,19226,19228,19230,19232,19234,19236,19238,19240,19242,19244,19246,19248,19250,19252,19254,19256,19258,19260,19262,19264,19266,19268,19270,19272,19274,19276,19278,19280,19282,19284,19286,19288,19290,19292,19294,19296,19298,19300,19302,19304,19306,19308,19310,19312,19314,19316,19318,19320,19322,19324,19326,19328,19330,19332,19334,19336,19338,19340,19342,19344,19346,19348,19350,19352,19354,19356,19358,19360,19362,19364,19366,19368,19370,19372,19374,19376,19378,19380,19382,19384,19386,19388,19390,19392,19394,19396,19398,19400,19402,19404,19406,19408,19410,19412,19414,19416,19418,19420,19422,19424,19426,19428,19430,19432,19434,19436,19438,19440,19442,19444,19446,19448,19450,19452,19454,19456,19458,19460,19462,19464,19466,19468,19470,19472,19474,19476,19478,19480,19482,19484,19486,19488,19490,19492,19494,19496,19498,19500,19502,19504,19506,19508,19510,19512,19514,19516,19518,19520,19522,19524,19526,19528,19530,19532,19534,19536,19538,19540,19542,19544,19546,19548,19550,19552,19554,19556,19558,19560,19562,19564,19566,19568,19570,19572,19574,19576,19578,19580,19582,19584,19586,19588,19590,19592,19594,19596,19598,19600,19602,19604,19606,19608,19610,19612,19614,19616,19618,19620,19622,19624,19626,19628,19630,19632,19634,19636,19638,19640,19642,19644,19646,19648,19650,19652,19654,19656,19658,19660,19662,19664,19666,19668,19670,19672,19674,19676,19678,19680,19682,19684,19686,19688,19690,19692,19694,19696,19698,19700,19702,19704,19706,19708,19710,19712,19714,19716,19718,19720,19722,19724,19726,19728,19730,19732,19734,19736,19738,19740,19742,19744,19746,19748,19750,19752,19754,19756,19758,19760,19762,19764,19766,19768,19770,19772,19774,19776,19778,19780,19782,19784,19786,19788,19790,19792,19794,19796,19798,19800,19802,19804,19806,19808,19810,19812,19814,19816,19818,19820,19822,19824,19826,19828,19830,19832,19834,19836,19838,19840,19842,19844,19846,19848,19850,19852,19854,19856,19858,19860,19862,19864,19866,19868,19870,19872,19874,19876,19878,19880,19882,19884,19886,19888,19890,19892,19894,19896,19898,19900,19902,19904,19906,19908,19910,19912,19914,19916,19918,19920,19922,19924,19926,19928,19930,19932,19934,19936,19938,19940,19942,19944,19946,19948,19950,19952,19954,19956,19958,19960,19962,19964,19966,19968,19970,19972,19974,19976,19978,19980,19982,19984,19986,19988,19990,19992,19994,19996,19998,20000,20002,20004,20006,20008,20010,20012,20014,20016,20018,20020,20022,20024,20026,20028,20030,20032,20034,20036,20038,20040,20042,20044,20046,20048,20050,20052,20054,20056,20058,20060,20062,20064,20066,20068,20070,20072,20074,20076,20078,20080,20082,20084,20086,20088,20090,20092,20094,20096,20098,20100,20102,20104,20106,20108,20110,20112,20114,20116,20118,20120,20122,20124,20126,20128,20130,20132,20134,20136,20138,20140,20142,20144,20146,20148,20150,20152,20154,20156,20158,20160,20162,20164,20166,20168,20170,20172,20174,20176,20178,20180,20182,20184,20186,20188,20190,20192,20194,20196,20198,20200,20202,20204,20206,20208,20210,20212,20214,20216,20218,20220,20222,20224,20226,20228,20230,20232,20234,20236,20238,20240,20242,20244,20246,20248,20250,20252,20254,20256,20258,20260,20262,20264,20266,20268,20270,20272,20274,20276,20278,20280,20282,20284,20286,20288,20290,20292,20294,20296,20298,20300,20302,20304,20306,20308,20310,20312,20314,20316,20318,20320,20322,20324,20326,20328,20330,20332,20334,20336,20338,20340,20342,20344,20346,20348,20350,20352,20354,20356,20358,20360,20362,20364,20366,20368,20370,20372,20374,20376,20378,20380,20382,20384,20386,20388,20390,20392,20394,20396,20398,20400,20402,20404,20406,20408,20410,20412,20414,20416,20418,20420,20422,20424,20426,20428,20430,20432,20434,20436,20438,20440,20442,20444,20446,20448,20450,20452,20454,20456,20458,20460,20462,20464,20466,20468,20470,20472,20474,20476,20478,20480,20482,20484,20486,20488,20490,20492,20494,20496,20498,20500,20502,20504,20506,20508,20510,20512,20514,20516,20518,20520,20522,20524,20526,20528,20530,20532,20534,20536,20538,20540,20542,20544,20546,20548,20550,20552,20554,20556,20558,20560,20562,20564,20566,20568,20570,20572,20574,20576,20578,20580,20582,20584,20586,20588,20590,20592,20594,20596,20598,20600,20602,20604,20606,20608,20610,20612,20614,20616,20618,20620,20622,20624,20626,20628,20630,20632,20634,20636,20638,20640,20642,20644,20646,20648,20650,20652,20654,20656,20658,20660,20662,20664,20666,20668,20670,20672,20674,20676,20678,20680,20682,20684,20686,20688,20690,20692,20694,20696,20698,20700,20702,20704,20706,20708,20710,20712,20714,20716,20718,20720,20722,20724,20726,20728,20730,20732,20734,20736,20738,20740,20742,20744,20746,20748,20750,20752,20754,20756,20758,20760,20762,20764,20766,20768,20770,20772,20774,20776,20778,20780,20782,20784,20786,20788,20790,20792,20794,20796,20798,20800,20802,20804,20806,20808,20810,20812,20814,20816,20818,20820,20822,20824,20826,20828,20830,20832,20834,20836,20838,20840,20842,20844,20846,20848,20850,20852,20854,20856,20858,20860,20862,20864,20866,20868,20870,20872,20874,20876,20878,20880,20882,20884,20886,20888,20890,20892,20894,20896,20898,20900,20902,20904,20906,20908,20910,20912,20914,20916,20918,20920,20922,20924,20926,20928,20930,20932,20934,20936,20938,20940,20942,20944,20946,20948,20950,20952,20954,20956,20958,20960,20962,20964,20966,20968,20970,20972,20974,20976,20978,20980,20982,20984,20986,20988,20990,20992,20994,20996,20998,21000,21002,21004,21006,21008,21010,21012,21014,21016,21018,21020,21022,21024,21026,21028,21030,21032,21034,21036,21038,21040,21042,21044,21046,21048,21050,21052,21054,21056,21058,21060,21062,21064,21066,21068,21070,21072,21074,21076,21078,21080,21082,21084,21086,21088,21090,21092,21094,21096,21098,21100,21102,21104,21106,21108,21110,21112,21114,21116,21118,21120,21122,21124,21126,21128,21130,21132,21134,21136,21138,21140,21142,21144,21146,21148,21150,21152,21154,21156,21158,21160,21162,21164,21166,21168,21170,21172,21174,21176,21178,21180,21182,21184,21186,21188,21190,21192,21194,21196,21198,21200,21202,21204,21206,21208,21210,21212,21214,21216,21218,21220,21222,21224,21226,21228,21230,21232,21234,21236,21238,21240,21242,21244,21246,21248,21250,21252,21254,21256,21258,21260,21262,21264,21266,21268,21270,21272,21274,21276,21278,21280,21282,21284,21286,21288,21290,21292,21294,21296,21298,21300,21302,21304,21306,21308,21310,21312,21314,21316,21318,21320,21322,21324,21326,21328,21330,21332,21334,21336,21338,21340,21342,21344,21346,21348,21350,21352,21354,21356,21358,21360,21362,21364,21366,21368,21370,21372,21374,21376,21378,21380,21382,21384,21386,21388,21390,21392,21394,21396,21398,21400,21402,21404,21406,21408,21410,21412,21414,21416,21418,21420,21422,21424,21426,21428,21430,21432,21434,21436,21438,21440,21442,21444,21446,21448,21450,21452,21454,21456,21458,21460,21462,21464,21466,21468,21470,21472,21474,21476,21478,21480,21482,21484,21486,21488,21490,21492,21494,21496,21498,21500,21502,21504,21506,21508,21510,21512,21514,21516,21518,21520,21522,21524,21526,21528,21530,21532,21534,21536,21538,21540,21542,21544,21546,21548,21550,21552,21554,21556,21558,21560,21562,21564,21566,21568,21570,21572,21574,21576,21578,21580,21582,21584,21586,21588,21590,21592,21594,21596,21598,21600,21602,21604,21606,21608,21610,21612,21614,21616,21618,21620,21622,21624,21626,21628,21630,21632,21634,21636,21638,21640,21642,21644,21646,21648,21650,21652,21654,21656,21658,21660,21662,21664,21666,21668,21670,21672,21674,21676,21678,21680,21682,21684,21686,21688,21690,21692,21694,21696,21698,21700,21702,21704,21706,21708,21710,21712,21714,21716,21718,21720,21722,21724,21726,21728,21730,21732,21734,21736,21738,21740,21742,21744,21746,21748,21750,21752,21754,21756,21758,21760,21762,21764,21766,21768,21770,21772,21774,21776,21778,21780,21782,21784,21786,21788,21790,21792,21794,21796,21798,21800,21802,21804,21806,21808,21810,21812,21814,21816,21818,21820,21822,21824,21826,21828,21830,21832,21834,21836,21838,21840,21842,21844,21846,21848,21850,21852,21854,21856,21858,21860,21862,21864,21866,21868,21870,21872,21874,21876,21878,21880,21882,21884,21886,21888,21890,21892,21894,21896,21898,21900,21902,21904,21906,21908,21910,21912,21914,21916,21918,21920,21922,21924,21926,21928,21930,21932,21934,21936,21938,21940,21942,21944,21946,21948,21950,21952,21954,21956,21958,21960,21962,21964,21966,21968,21970,21972,21974,21976,21978,21980,21982,21984,21986,21988,21990,21992,21994,21996,21998,22000,22002,22004,22006,22008,22010,22012,22014,22016,22018,22020,22022,22024,22026,22028,22030,22032,22034,22036,22038,22040,22042,22044,22046,22048,22050,22052,22054,22056,22058,22060,22062,22064,22066,22068,22070,22072,22074,22076,22078,22080,22082,22084,22086,22088,22090,22092,22094,22096,22098,22100,22102,22104,22106,22108,22110,22112,22114,22116,22118,22120,22122,22124,22126,22128,22130,22132,22134,22136,22138,22140,22142,22144,22146,22148,22150,22152,22154,22156,22158,22160,22162,22164,22166,22168,22170,22172,22174,22176,22178,22180,22182,22184,22186,22188,22190,22192,22194,22196,22198,22200,22202,22204,22206,22208,22210,22212,22214,22216,22218,22220,22222,22224,22226,22228,22230,22232,22234,22236,22238,22240,22242,22244,22246,22248,22250,22252,22254,22256,22258,22260,22262,22264,22266,22268,22270,22272,22274,22276,22278,22280,22282,22284,22286,22288,22290,22292,22294,22296,22298,22300,22302,22304,22306,22308,22310,22312,22314,22316,22318,22320,22322,22324,22326,22328,22330,22332,22334,22336,22338,22340,22342,22344,22346,22348,22350,22352,22354,22356,22358,22360,22362,22364,22366,22368,22370,22372,22374,22376,22378,22380,22382,22384,22386,22388,22390,22392,22394,22396,22398,22400,22402,22404,22406,22408,22410,22412,22414,22416,22418,22420,22422,22424,22426,22428,22430,22432,22434,22436,22438,22440,22442,22444,22446,22448,22450,22452,22454,22456,22458,22460,22462,22464,22466,22468,22470,22472,22474,22476,22478,22480,22482,22484,22486,22488,22490,22492,22494,22496,22498,22500,22502,22504,22506,22508,22510,22512,22514,22516,22518,22520,22522,22524,22526,22528,22530,22532,22534,22536,22538,22540,22542,22544,22546,22548,22550,22552,22554,22556,22558,22560,22562,22564,22566,22568,22570,22572,22574,22576,22578,22580,22582,22584,22586,22588,22590,22592,22594,22596,22598,22600,22602,22604,22606,22608,22610,22612,22614,22616,22618,22620,22622,22624,22626,22628,22630,22632,22634,22636,22638,22640,22642,22644,22646,22648,22650,22652,22654,22656,22658,22660,22662,22664,22666,22668,22670,22672,22674,22676,22678,22680,22682,22684,22686,22688,22690,22692,22694,22696,22698,22700,22702,22704,22706,22708,22710,22712,22714,22716,22718,22720,22722,22724,22726,22728,22730,22732,22734,22736,22738,22740,22742,22744,22746,22748,22750,22752,22754,22756,22758,22760,22762,22764,22766,22768,22770,22772,22774,22776,22778,22780,22782,22784,22786,22788,22790,22792,22794,22796,22798,22800,22802,22804,22806,22808,22810,22812,22814,22816,22818,22820,22822,22824,22826,22828,22830,22832,22834,22836,22838,22840,22842,22844,22846,22848,22850,22852,22854,22856,22858,22860,22862,22864,22866,22868,22870,22872,22874,22876,22878,22880,22882,22884,22886,22888,22890,22892,22894,22896,22898,22900,22902,22904,22906,22908,22910,22912,22914,22916,22918,22920,22922,22924,22926,22928,22930,22932,22934,22936,22938,22940,22942,22944,22946,22948,22950,22952,22954,22956,22958,22960,22962,22964,22966,22968,22970,22972,22974,22976,22978,22980,22982,22984,22986,22988,22990,22992,22994,22996,22998,23000,23002,23004,23006,23008,23010,23012,23014,23016,23018,23020,23022,23024,23026,23028,23030,23032,23034,23036,23038,23040,23042,23044,23046,23048,23050,23052,23054,23056,23058,23060,23062,23064,23066,23068,23070,23072,23074,23076,23078,23080,23082,23084,23086,23088,23090,23092,23094,23096,23098,23100,23102,23104,23106,23108,23110,23112,23114,23116,23118,23120,23122,23124,23126,23128,23130,23132,23134,23136,23138,23140,23142,23144,23146,23148,23150,23152,23154,23156,23158,23160,23162,23164,23166,23168,23170,23172,23174,23176,23178,23180,23182,23184,23186,23188,23190,23192,23194,23196,23198,23200,23202,23204,23206,23208,23210,23212,23214,23216,23218,23220,23222,23224,23226,23228,23230,23232,23234,23236,23238,23240,23242,23244,23246,23248,23250,23252,23254,23256,23258,23260,23262,23264,23266,23268,23270,23272,23274,23276,23278,23280,23282,23284,23286,23288,23290,23292,23294,23296,23298,23300,23302,23304,23306,23308,23310,23312,23314,23316,23318,23320,23322,23324,23326,23328,23330,23332,23334,23336,23338,23340,23342,23344,23346,23348,23350,23352,23354,23356,23358,23360,23362,23364,23366,23368,23370,23372,23374,23376,23378,23380,23382,23384,23386,23388,23390,23392,23394,23396,23398,23400,23402,23404,23406,23408,23410,23412,23414,23416,23418,23420,23422,23424,23426,23428,23430,23432,23434,23436,23438,23440,23442,23444,23446,23448,23450,23452,23454,23456,23458,23460,23462,23464,23466,23468,23470,23472,23474,23476,23478,23480,23482,23484,23486,23488,23490,23492,23494,23496,23498,23500,23502,23504,23506,23508,23510,23512,23514,23516,23518,23520,23522,23524,23526,23528,23530,23532,23534,23536,23538,23540,23542,23544,23546,23548,23550,23552,23554,23556,23558,23560,23562,23564,23566,23568,23570,23572,23574,23576,23578,23580,23582,23584,23586,23588,23590,23592,23594,23596,23598,23600,23602,23604,23606,23608,23610,23612,23614,23616,23618,23620,23622,23624,23626,23628,23630,23632,23634,23636,23638,23640,23642,23644,23646,23648,23650,23652,23654,23656,23658,23660,23662,23664,23666,23668,23670,23672,23674,23676,23678,23680,23682,23684,23686,23688,23690,23692,23694,23696,23698,23700,23702,23704,23706,23708,23710,23712,23714,23716,23718,23720,23722,23724,23726,23728,23730,23732,23734,23736,23738,23740,23742,23744,23746,23748,23750,23752,23754,23756,23758,23760,23762,23764,23766,23768,23770,23772,23774,23776,23778,23780,23782,23784,23786,23788,23790,23792,23794,23796,23798,23800,23802,23804,23806,23808,23810,23812,23814,23816,23818,23820,23822,23824,23826,23828,23830,23832,23834,23836,23838,23840,23842,23844,23846,23848,23850,23852,23854,23856,23858,23860,23862,23864,23866,23868,23870,23872,23874,23876,23878,23880,23882,23884,23886,23888,23890,23892,23894,23896,23898,23900,23902,23904,23906,23908,23910,23912,23914,23916,23918,23920,23922,23924,23926,23928,23930,23932,23934,23936,23938,23940,23942,23944,23946,23948,23950,23952,23954,23956,23958,23960,23962,23964,23966,23968,23970,23972,23974,23976,23978,23980,23982,23984,23986,23988,23990,23992,23994,23996,23998,24000,24002,24004,24006,24008,24010,24012,24014,24016,24018,24020,24022,24024,24026,24028,24030,24032,24034,24036,24038,24040,24042,24044,24046,24048,24050,24052,24054,24056,24058,24060,24062,24064,24066,24068,24070,24072,24074,24076,24078,24080,24082,24084,24086,24088,24090,24092,24094,24096,24098,24100,24102,24104,24106,24108,24110,24112,24114,24116,24118,24120,24122,24124,24126,24128,24130,24132,24134,24136,24138,24140,24142,24144,24146,24148,24150,24152,24154,24156,24158,24160,24162,24164,24166,24168,24170,24172,24174,24176,24178,24180,24182,24184,24186,24188,24190,24192,24194,24196,24198,24200,24202,24204,24206,24208,24210,24212,24214,24216,24218,24220,24222,24224,24226,24228,24230,24232,24234,24236,24238,24240,24242,24244,24246,24248,24250,24252,24254,24256,24258,24260,24262,24264,24266,24268,24270,24272,24274,24276,24278,24280,24282,24284,24286,24288,24290,24292,24294,24296,24298,24300,24302,24304,24306,24308,24310,24312,24314,24316,24318,24320,24322,24324,24326,24328,24330,24332,24334,24336,24338,24340,24342,24344,24346,24348,24350,24352,24354,24356,24358,24360,24362,24364,24366,24368,24370,24372,24374,24376,24378,24380,24382,24384,24386,24388,24390,24392,24394,24396,24398,24400,24402,24404,24406,24408,24410,24412,24414,24416,24418,24420,24422,24424,24426,24428,24430,24432,24434,24436,24438,24440,24442,24444,24446,24448,24450,24452,24454,24456,24458,24460,24462,24464,24466,24468,24470,24472,24474,24476,24478,24480,24482,24484,24486,24488,24490,24492,24494,24496,24498,24500,24502,24504,24506,24508,24510,24512,24514,24516,24518,24520,24522,24524,24526,24528,24530,24532,24534,24536,24538,24540,24542,24544,24546,24548,24550,24552,24554,24556,24558,24560,24562,24564,24566,24568,24570,24572,24574,24576,24578,24580,24582,24584,24586,24588,24590,24592,24594,24596,24598,24600,24602,24604,24606,24608,24610,24612,24614,24616,24618,24620,24622,24624,24626,24628,24630,24632,24634,24636,24638,24640,24642,24644,24646,24648,24650,24652,24654,24656,24658,24660,24662,24664,24666,24668,24670,24672,24674,24676,24678,24680,24682,24684,24686,24688,24690,24692,24694,24696,24698,24700,24702,24704,24706,24708,24710,24712,24714,24716,24718,24720,24722,24724,24726,24728,24730,24732,24734,24736,24738,24740,24742,24744,24746,24748,24750,24752,24754,24756,24758,24760,24762,24764,24766,24768,24770,24772,24774,24776,24778,24780,24782,24784,24786,24788,24790,24792,24794,24796,24798,24800,24802,24804,24806,24808,24810,24812,24814,24816,24818,24820,24822,24824,24826,24828,24830,24832,24834,24836,24838,24840,24842,24844,24846,24848,24850,24852,24854,24856,24858,24860,24862,24864,24866,24868,24870,24872,24874,24876,24878,24880,24882,24884,24886,24888,24890,24892,24894,24896,24898,24900,24902,24904,24906,24908,24910,24912,24914,24916,24918,24920,24922,24924,24926,24928,24930,24932,24934,24936,24938,24940,24942,24944,24946,24948,24950,24952,24954,24956,24958,24960,24962,24964,24966,24968,24970,24972,24974,24976,24978,24980,24982,24984,24986,24988,24990,24992,24994,24996,24998,25000,25002,25004,25006,25008,25010,25012,25014,25016,25018,25020,25022,25024,25026,25028,25030,25032,25034,25036,25038,25040,25042,25044,25046,25048,25050,25052,25054,25056,25058,25060,25062,25064,25066,25068,25070,25072,25074,25076,25078,25080,25082,25084,25086,25088,25090,25092,25094,25096,25098,25100,25102,25104,25106,25108,25110,25112,25114,25116,25118,25120,25122,25124,25126,25128,25130,25132,25134,25136,25138,25140,25142,25144,25146,25148,25150,25152,25154,25156,25158,25160,25162,25164,25166,25168,25170,25172,25174,25176,25178,25180,25182,25184,25186,25188,25190,25192,25194,25196,25198,25200,25202,25204,25206,25208,25210,25212,25214,25216,25218,25220,25222,25224,25226,25228,25230,25232,25234,25236,25238,25240,25242,25244,25246,25248,25250,25252,25254,25256,25258,25260,25262,25264,25266,25268,25270,25272,25274,25276,25278,25280,25282,25284,25286,25288,25290,25292,25294,25296,25298,25300,25302,25304,25306,25308,25310,25312,25314,25316,25318,25320,25322,25324,25326,25328,25330,25332,25334,25336,25338,25340,25342,25344,25346,25348,25350,25352,25354,25356,25358,25360,25362,25364,25366,25368,25370,25372,25374,25376,25378,25380,25382,25384,25386,25388,25390,25392,25394,25396,25398,25400,25402,25404,25406,25408,25410,25412,25414,25416,25418,25420,25422,25424,25426,25428,25430,25432,25434,25436,25438,25440,25442,25444,25446,25448,25450,25452,25454,25456,25458,25460,25462,25464,25466,25468,25470,25472,25474,25476,25478,25480,25482,25484,25486,25488,25490,25492,25494,25496,25498,25500,25502,25504,25506,25508,25510,25512,25514,25516,25518,25520,25522,25524,25526,25528,25530,25532,25534,25536,25538,25540,25542,25544,25546,25548,25550,25552,25554,25556,25558,25560,25562,25564,25566,25568,25570,25572,25574,25576,25578,25580,25582,25584,25586,25588,25590,25592,25594,25596,25598,25600,25602,25604,25606,25608,25610,25612,25614,25616,25618,25620,25622,25624,25626,25628,25630,25632,25634,25636,25638,25640,25642,25644,25646,25648,25650,25652,25654,25656,25658,25660,25662,25664,25666,25668,25670,25672,25674,25676,25678,25680,25682,25684,25686,25688,25690,25692,25694,25696,25698,25700,25702,25704,25706,25708,25710,25712,25714,25716,25718,25720,25722,25724,25726,25728,25730,25732,25734,25736,25738,25740,25742,25744,25746,25748,25750,25752,25754,25756,25758,25760,25762,25764,25766,25768,25770,25772,25774,25776,25778,25780,25782,25784,25786,25788,25790,25792,25794,25796,25798,25800,25802,25804,25806,25808,25810,25812,25814,25816,25818,25820,25822,25824,25826,25828,25830,25832,25834,25836,25838,25840,25842,25844,25846,25848,25850,25852,25854,25856,25858,25860,25862,25864,25866,25868,25870,25872,25874,25876,25878,25880,25882,25884,25886,25888,25890,25892,25894,25896,25898,25900,25902,25904,25906,25908,25910,25912,25914,25916,25918,25920,25922,25924,25926,25928,25930,25932,25934,25936,25938,25940,25942,25944,25946,25948,25950,25952,25954,25956,25958,25960,25962,25964,25966,25968,25970,25972,25974,25976,25978,25980,25982,25984,25986,25988,25990,25992,25994,25996,25998,26000,26002,26004,26006,26008,26010,26012,26014,26016,26018,26020,26022,26024,26026,26028,26030,26032,26034,26036,26038,26040,26042,26044,26046,26048,26050,26052,26054,26056,26058,26060,26062,26064,26066,26068,26070,26072,26074,26076,26078,26080,26082,26084,26086,26088,26090,26092,26094,26096,26098,26100,26102,26104,26106,26108,26110,26112,26114,26116,26118,26120,26122,26124,26126,26128,26130,26132,26134,26136,26138,26140,26142,26144,26146,26148,26150,26152,26154,26156,26158,26160,26162,26164,26166,26168,26170,26172,26174,26176,26178,26180,26182,26184,26186,26188,26190,26192,26194,26196,26198,26200,26202,26204,26206,26208,26210,26212,26214,26216,26218,26220,26222,26224,26226,26228,26230,26232,26234,26236,26238,26240,26242,26244,26246,26248,26250,26252,26254,26256,26258,26260,26262,26264,26266,26268,26270,26272,26274,26276,26278,26280,26282,26284,26286,26288,26290,26292,26294,26296,26298,26300,26302,26304,26306,26308,26310,26312,26314,26316,26318,26320,26322,26324,26326,26328,26330,26332,26334,26336,26338,26340,26342,26344,26346,26348,26350,26352,26354,26356,26358,26360,26362,26364,26366,26368,26370,26372,26374,26376,26378,26380,26382,26384,26386,26388,26390,26392,26394,26396,26398,26400,26402,26404,26406,26408,26410,26412,26414,26416,26418,26420,26422,26424,26426,26428,26430,26432,26434,26436,26438,26440,26442,26444,26446,26448,26450,26452,26454,26456,26458,26460,26462,26464,26466,26468,26470,26472,26474,26476,26478,26480,26482,26484,26486,26488,26490,26492,26494,26496,26498,26500,26502,26504,26506,26508,26510,26512,26514,26516,26518,26520,26522,26524,26526,26528,26530,26532,26534,26536,26538,26540,26542,26544,26546,26548,26550,26552,26554,26556,26558,26560,26562,26564,26566,26568,26570,26572,26574,26576,26578,26580,26582,26584,26586,26588,26590,26592,26594,26596,26598,26600,26602,26604,26606,26608,26610,26612,26614,26616,26618,26620,26622,26624,26626,26628,26630,26632,26634,26636,26638,26640,26642,26644,26646,26648,26650,26652,26654,26656,26658,26660,26662,26664,26666,26668,26670,26672,26674,26676,26678,26680,26682,26684,26686,26688,26690,26692,26694,26696,26698,26700,26702,26704,26706,26708,26710,26712,26714,26716,26718,26720,26722,26724,26726,26728,26730,26732,26734,26736,26738,26740,26742,26744,26746,26748,26750,26752,26754,26756,26758,26760,26762,26764,26766,26768,26770,26772,26774,26776,26778,26780,26782,26784,26786,26788,26790,26792,26794,26796,26798,26800,26802,26804,26806,26808,26810,26812,26814,26816,26818,26820,26822,26824,26826,26828,26830,26832,26834,26836,26838,26840,26842,26844,26846,26848,26850,26852,26854,26856,26858,26860,26862,26864,26866,26868,26870,26872,26874,26876,26878,26880,26882,26884,26886,26888,26890,26892,26894,26896,26898,26900,26902,26904,26906,26908,26910,26912,26914,26916,26918,26920,26922,26924,26926,26928,26930,26932,26934,26936,26938,26940,26942,26944,26946,26948,26950,26952,26954,26956,26958,26960,26962,26964,26966,26968,26970,26972,26974,26976,26978,26980,26982,26984,26986,26988,26990,26992,26994,26996,26998,27000,27002,27004,27006,27008,27010,27012,27014,27016,27018,27020,27022,27024,27026,27028,27030,27032,27034,27036,27038,27040,27042,27044,27046,27048,27050,27052,27054,27056,27058,27060,27062,27064,27066,27068,27070,27072,27074,27076,27078,27080,27082,27084,27086,27088,27090,27092,27094,27096,27098,27100,27102,27104,27106,27108,27110,27112,27114,27116,27118,27120,27122,27124,27126,27128,27130,27132,27134,27136,27138,27140,27142,27144,27146,27148,27150,27152,27154,27156,27158,27160,27162,27164,27166,27168,27170,27172,27174,27176,27178,27180,27182,27184,27186,27188,27190,27192,27194,27196,27198,27200,27202,27204,27206,27208,27210,27212,27214,27216,27218,27220,27222,27224,27226,27228,27230,27232,27234,27236,27238,27240,27242,27244,27246,27248,27250,27252,27254,27256,27258,27260,27262,27264,27266,27268,27270,27272,27274,27276,27278,27280,27282,27284,27286,27288,27290,27292,27294,27296,27298,27300,27302,27304,27306,27308,27310,27312,27314,27316,27318,27320,27322,27324,27326,27328,27330,27332,27334,27336,27338,27340,27342,27344,27346,27348,27350,27352,27354,27356,27358,27360,27362,27364,27366,27368,27370,27372,27374,27376,27378,27380,27382,27384,27386,27388,27390,27392,27394,27396,27398,27400,27402,27404,27406,27408,27410,27412,27414,27416,27418,27420,27422,27424,27426,27428,27430,27432,27434,27436,27438,27440,27442,27444,27446,27448,27450,27452,27454,27456,27458,27460,27462,27464,27466,27468,27470,27472,27474,27476,27478,27480,27482,27484,27486,27488,27490,27492,27494,27496,27498,27500,27502,27504,27506,27508,27510,27512,27514,27516,27518,27520,27522,27524,27526,27528,27530,27532,27534,27536,27538,27540,27542,27544,27546,27548,27550,27552,27554,27556,27558,27560,27562,27564,27566,27568,27570,27572,27574,27576,27578,27580,27582,27584,27586,27588,27590,27592,27594,27596,27598,27600,27602,27604,27606,27608,27610,27612,27614,27616,27618,27620,27622,27624,27626,27628,27630,27632,27634,27636,27638,27640,27642,27644,27646,27648,27650,27652,27654,27656,27658,27660,27662,27664,27666,27668,27670,27672,27674,27676,27678,27680,27682,27684,27686,27688,27690,27692,27694,27696,27698,27700,27702,27704,27706,27708,27710,27712,27714,27716,27718,27720,27722,27724,27726,27728,27730,27732,27734,27736,27738,27740,27742,27744,27746,27748,27750,27752,27754,27756,27758,27760,27762,27764,27766,27768,27770,27772,27774,27776,27778,27780,27782,27784,27786,27788,27790,27792,27794,27796,27798,27800,27802,27804,27806,27808,27810,27812,27814,27816,27818,27820,27822,27824,27826,27828,27830,27832,27834,27836,27838,27840,27842,27844,27846,27848,27850,27852,27854,27856,27858,27860,27862,27864,27866,27868,27870,27872,27874,27876,27878,27880,27882,27884,27886,27888,27890,27892,27894,27896,27898,27900,27902,27904,27906,27908,27910,27912,27914,27916,27918,27920,27922,27924,27926,27928,27930,27932,27934,27936,27938,27940,27942,27944,27946,27948,27950,27952,27954,27956,27958,27960,27962,27964,27966,27968,27970,27972,27974,27976,27978,27980,27982,27984,27986,27988,27990,27992,27994,27996,27998,28000,28002,28004,28006,28008,28010,28012,28014,28016,28018,28020,28022,28024,28026,28028,28030,28032,28034,28036,28038,28040,28042,28044,28046,28048,28050,28052,28054,28056,28058,28060,28062,28064,28066,28068,28070,28072,28074,28076,28078,28080,28082,28084,28086,28088,28090,28092,28094,28096,28098,28100,28102,28104,28106,28108,28110,28112,28114,28116,28118,28120,28122,28124,28126,28128,28130,28132,28134,28136,28138,28140,28142,28144,28146,28148,28150,28152,28154,28156,28158,28160,28162,28164,28166,28168,28170,28172,28174,28176,28178,28180,28182,28184,28186,28188,28190,28192,28194,28196,28198,28200,28202,28204,28206,28208,28210,28212,28214,28216,28218,28220,28222,28224,28226,28228,28230,28232,28234,28236,28238,28240,28242,28244,28246,28248,28250,28252,28254,28256,28258,28260,28262,28264,28266,28268,28270,28272,28274,28276,28278,28280,28282,28284,28286,28288,28290,28292,28294,28296,28298,28300,28302,28304,28306,28308,28310,28312,28314,28316,28318,28320,28322,28324,28326,28328,28330,28332,28334,28336,28338,28340,28342,28344,28346,28348,28350,28352,28354,28356,28358,28360,28362,28364,28366,28368,28370,28372,28374,28376,28378,28380,28382,28384,28386,28388,28390,28392,28394,28396,28398,28400,28402,28404,28406,28408,28410,28412,28414,28416,28418,28420,28422,28424,28426,28428,28430,28432,28434,28436,28438,28440,28442,28444,28446,28448,28450,28452,28454,28456,28458,28460,28462,28464,28466,28468,28470,28472,28474,28476,28478,28480,28482,28484,28486,28488,28490,28492,28494,28496,28498,28500,28502,28504,28506,28508,28510,28512,28514,28516,28518,28520,28522,28524,28526,28528,28530,28532,28534,28536,28538,28540,28542,28544,28546,28548,28550,28552,28554,28556,28558,28560,28562,28564,28566,28568,28570,28572,28574,28576,28578,28580,28582,28584,28586,28588,28590,28592,28594,28596,28598,28600,28602,28604,28606,28608,28610,28612,28614,28616,28618,28620,28622,28624,28626,28628,28630,28632,28634,28636,28638,28640,28642,28644,28646,28648,28650,28652,28654,28656,28658,28660,28662,28664,28666,28668,28670,28672,28674,28676,28678,28680,28682,28684,28686,28688,28690,28692,28694,28696,28698,28700,28702,28704,28706,28708,28710,28712,28714,28716,28718,28720,28722,28724,28726,28728,28730,28732,28734,28736,28738,28740,28742,28744,28746,28748,28750,28752,28754,28756,28758,28760,28762,28764,28766,28768,28770,28772,28774,28776,28778,28780,28782,28784,28786,28788,28790,28792,28794,28796,28798,28800,28802,28804,28806,28808,28810,28812,28814,28816,28818,28820,28822,28824,28826,28828,28830,28832,28834,28836,28838,28840,28842,28844,28846,28848,28850,28852,28854,28856,28858,28860,28862,28864,28866,28868,28870,28872,28874,28876,28878,28880,28882,28884,28886,28888,28890,28892,28894,28896,28898,28900,28902,28904,28906,28908,28910,28912,28914,28916,28918,28920,28922,28924,28926,28928,28930,28932,28934,28936,28938,28940,28942,28944,28946,28948,28950,28952,28954,28956,28958,28960,28962,28964,28966,28968,28970,28972,28974,28976,28978,28980,28982,28984,28986,28988,28990,28992,28994,28996,28998,29000,29002,29004,29006,29008,29010,29012,29014,29016,29018,29020,29022,29024,29026,29028,29030,29032,29034,29036,29038,29040,29042,29044,29046,29048,29050,29052,29054,29056,29058,29060,29062,29064,29066,29068,29070,29072,29074,29076,29078,29080,29082,29084,29086,29088,29090,29092,29094,29096,29098,29100,29102,29104,29106,29108,29110,29112,29114,29116,29118,29120,29122,29124,29126,29128,29130,29132,29134,29136,29138,29140,29142,29144,29146,29148,29150,29152,29154,29156,29158,29160,29162,29164,29166,29168,29170,29172,29174,29176,29178,29180,29182,29184,29186,29188,29190,29192,29194,29196,29198,29200,29202,29204,29206,29208,29210,29212,29214,29216,29218,29220,29222,29224,29226,29228,29230,29232,29234,29236,29238,29240,29242,29244,29246,29248,29250,29252,29254,29256,29258,29260,29262,29264,29266,29268,29270,29272,29274,29276,29278,29280,29282,29284,29286,29288,29290,29292,29294,29296,29298,29300,29302,29304,29306,29308,29310,29312,29314,29316,29318,29320,29322,29324,29326,29328,29330,29332,29334,29336,29338,29340,29342,29344,29346,29348,29350,29352,29354,29356,29358,29360,29362,29364,29366,29368,29370,29372,29374,29376,29378,29380,29382,29384,29386,29388,29390,29392,29394,29396,29398,29400,29402,29404,29406,29408,29410,29412,29414,29416,29418,29420,29422,29424,29426,29428,29430,29432,29434,29436,29438,29440,29442,29444,29446,29448,29450,29452,29454,29456,29458,29460,29462,29464,29466,29468,29470,29472,29474,29476,29478,29480,29482,29484,29486,29488,29490,29492,29494,29496,29498,29500,29502,29504,29506,29508,29510,29512,29514,29516,29518,29520,29522,29524,29526,29528,29530,29532,29534,29536,29538,29540,29542,29544,29546,29548,29550,29552,29554,29556,29558,29560,29562,29564,29566,29568,29570,29572,29574,29576,29578,29580,29582,29584,29586,29588,29590,29592,29594,29596,29598,29600,29602,29604,29606,29608,29610,29612,29614,29616,29618,29620,29622,29624,29626,29628,29630,29632,29634,29636,29638,29640,29642,29644,29646,29648,29650,29652,29654,29656,29658,29660,29662,29664,29666,29668,29670,29672,29674,29676,29678,29680,29682,29684,29686,29688,29690,29692,29694,29696,29698,29700,29702,29704,29706,29708,29710,29712,29714,29716,29718,29720,29722,29724,29726,29728,29730,29732,29734,29736,29738,29740,29742,29744,29746,29748,29750,29752,29754,29756,29758,29760,29762,29764,29766,29768,29770,29772,29774,29776,29778,29780,29782,29784,29786,29788,29790,29792,29794,29796,29798,29800,29802,29804,29806,29808,29810,29812,29814,29816,29818,29820,29822,29824,29826,29828,29830,29832,29834,29836,29838,29840,29842,29844,29846,29848,29850,29852,29854,29856,29858,29860,29862,29864,29866,29868,29870,29872,29874,29876,29878,29880,29882,29884,29886,29888,29890,29892,29894,29896,29898,29900,29902,29904,29906,29908,29910,29912,29914,29916,29918,29920,29922,29924,29926,29928,29930,29932,29934,29936,29938,29940,29942,29944,29946,29948,29950,29952,29954,29956,29958,29960,29962,29964,29966,29968,29970,29972,29974,29976,29978,29980,29982,29984,29986,29988,29990,29992,29994,29996,29998,30000,30002,30004,30006,30008,30010,30012,30014,30016,30018,30020,30022,30024,30026,30028,30030,30032,30034,30036,30038,30040,30042,30044,30046,30048,30050,30052,30054,30056,30058,30060,30062,30064,30066,30068,30070,30072,30074,30076,30078,30080,30082,30084,30086,30088,30090,30092,30094,30096,30098,30100,30102,30104,30106,30108,30110,30112,30114,30116,30118,30120,30122,30124,30126,30128,30130,30132,30134,30136,30138,30140,30142,30144,30146,30148,30150,30152,30154,30156,30158,30160,30162,30164,30166,30168,30170,30172,30174,30176,30178,30180,30182,30184,30186,30188,30190,30192,30194,30196,30198,30200,30202,30204,30206,30208,30210,30212,30214,30216,30218,30220,30222,30224,30226,30228,30230,30232,30234,30236,30238,30240,30242,30244,30246,30248,30250,30252,30254,30256,30258,30260,30262,30264,30266,30268,30270,30272,30274,30276,30278,30280,30282,30284,30286,30288,30290,30292,30294,30296,30298,30300,30302,30304,30306,30308,30310,30312,30314,30316,30318,30320,30322,30324,30326,30328,30330,30332,30334,30336,30338,30340,30342,30344,30346,30348,30350,30352,30354,30356,30358,30360,30362,30364,30366,30368,30370,30372,30374,30376,30378,30380,30382,30384,30386,30388,30390,30392,30394,30396,30398,30400,30402,30404,30406,30408,30410,30412,30414,30416,30418,30420,30422,30424,30426,30428,30430,30432,30434,30436,30438,30440,30442,30444,30446,30448,30450,30452,30454,30456,30458,30460,30462,30464,30466,30468,30470,30472,30474,30476,30478,30480,30482,30484,30486,30488,30490,30492,30494,30496,30498,30500,30502,30504,30506,30508,30510,30512,30514,30516,30518,30520,30522,30524,30526,30528,30530,30532,30534,30536,30538,30540,30542,30544,30546,30548,30550,30552,30554,30556,30558,30560,30562,30564,30566,30568,30570,30572,30574,30576,30578,30580,30582,30584,30586,30588,30590,30592,30594,30596,30598,30600,30602,30604,30606,30608,30610,30612,30614,30616,30618,30620,30622,30624,30626,30628,30630,30632,30634,30636,30638,30640,30642,30644,30646,30648,30650,30652,30654,30656,30658,30660,30662,30664,30666,30668,30670,30672,30674,30676,30678,30680,30682,30684,30686,30688,30690,30692,30694,30696,30698,30700,30702,30704,30706,30708,30710,30712,30714,30716,30718,30720,30722,30724,30726,30728,30730,30732,30734,30736,30738,30740,30742,30744,30746,30748,30750,30752,30754,30756,30758,30760,30762,30764,30766,30768,30770,30772,30774,30776,30778,30780,30782,30784,30786,30788,30790,30792,30794,30796,30798,30800,30802,30804,30806,30808,30810,30812,30814,30816,30818,30820,30822,30824,30826,30828,30830,30832,30834,30836,30838,30840,30842,30844,30846,30848,30850,30852,30854,30856,30858,30860,30862,30864,30866,30868,30870,30872,30874,30876,30878,30880,30882,30884,30886,30888,30890,30892,30894,30896,30898,30900,30902,30904,30906,30908,30910,30912,30914,30916,30918,30920,30922,30924,30926,30928,30930,30932,30934,30936,30938,30940,30942,30944,30946,30948,30950,30952,30954,30956,30958,30960,30962,30964,30966,30968,30970,30972,30974,30976,30978,30980,30982,30984,30986,30988,30990,30992,30994,30996,30998,31000,31002,31004,31006,31008,31010,31012,31014,31016,31018,31020,31022,31024,31026,31028,31030,31032,31034,31036,31038,31040,31042,31044,31046,31048,31050,31052,31054,31056,31058,31060,31062,31064,31066,31068,31070,31072,31074,31076,31078,31080,31082,31084,31086,31088,31090,31092,31094,31096,31098,31100,31102,31104,31106,31108,31110,31112,31114,31116,31118,31120,31122,31124,31126,31128,31130,31132,31134,31136,31138,31140,31142,31144,31146,31148,31150,31152,31154,31156,31158,31160,31162,31164,31166,31168,31170,31172,31174,31176,31178,31180,31182,31184,31186,31188,31190,31192,31194,31196,31198,31200,31202,31204,31206,31208,31210,31212,31214,31216,31218,31220,31222,31224,31226,31228,31230,31232,31234,31236,31238,31240,31242,31244,31246,31248,31250,31252,31254,31256,31258,31260,31262,31264,31266,31268,31270,31272,31274,31276,31278,31280,31282,31284,31286,31288,31290,31292,31294,31296,31298,31300,31302,31304,31306,31308,31310,31312,31314,31316,31318,31320,31322,31324,31326,31328,31330,31332,31334,31336,31338,31340,31342,31344,31346,31348,31350,31352,31354,31356,31358,31360,31362,31364,31366,31368,31370,31372,31374,31376,31378,31380,31382,31384,31386,31388,31390,31392,31394,31396,31398,31400,31402,31404,31406,31408,31410,31412,31414,31416,31418,31420,31422,31424,31426,31428,31430,31432,31434,31436,31438,31440,31442,31444,31446,31448,31450,31452,31454,31456,31458,31460,31462,31464,31466,31468,31470,31472,31474,31476,31478,31480,31482,31484,31486,31488,31490,31492,31494,31496,31498,31500,31502,31504,31506,31508,31510,31512,31514,31516,31518,31520,31522,31524,31526,31528,31530,31532,31534,31536,31538,31540,31542,31544,31546,31548,31550,31552,31554,31556,31558,31560,31562,31564,31566,31568,31570,31572,31574,31576,31578,31580,31582,31584,31586,31588,31590,31592,31594,31596,31598,31600,31602,31604,31606,31608,31610,31612,31614,31616,31618,31620,31622,31624,31626,31628,31630,31632,31634,31636,31638,31640,31642,31644,31646,31648,31650,31652,31654,31656,31658,31660,31662,31664,31666,31668,31670,31672,31674,31676,31678,31680,31682,31684,31686,31688,31690,31692,31694,31696,31698,31700,31702,31704,31706,31708,31710,31712,31714,31716,31718,31720,31722,31724,31726,31728,31730,31732,31734,31736,31738,31740,31742,31744,31746,31748,31750,31752,31754,31756,31758,31760,31762,31764,31766,31768,31770,31772,31774,31776,31778,31780,31782,31784,31786,31788,31790,31792,31794,31796,31798,31800,31802,31804,31806,31808,31810,31812,31814,31816,31818,31820,31822,31824,31826,31828,31830,31832,31834,31836,31838,31840,31842,31844,31846,31848,31850,31852,31854,31856,31858,31860,31862,31864,31866,31868,31870,31872,31874,31876,31878,31880,31882,31884,31886,31888,31890,31892,31894,31896,31898,31900,31902,31904,31906,31908,31910,31912,31914,31916,31918,31920,31922,31924,31926,31928,31930,31932,31934,31936,31938,31940,31942,31944,31946,31948,31950,31952,31954,31956,31958,31960,31962,31964,31966,31968,31970,31972,31974,31976,31978,31980,31982,31984,31986,31988,31990,31992,31994,31996,31998,32000,32002,32004,32006,32008,32010,32012,32014,32016,32018,32020,32022,32024,32026,32028,32030,32032,32034,32036,32038,32040,32042,32044,32046,32048,32050,32052,32054,32056,32058,32060,32062,32064,32066,32068,32070,32072,32074,32076,32078,32080,32082,32084,32086,32088,32090,32092,32094,32096,32098,32100,32102,32104,32106,32108,32110,32112,32114,32116,32118,32120,32122,32124,32126,32128,32130,32132,32134,32136,32138,32140,32142,32144,32146,32148,32150,32152,32154,32156,32158,32160,32162,32164,32166,32168,32170,32172,32174,32176,32178,32180,32182,32184,32186,32188,32190,32192,32194,32196,32198,32200,32202,32204,32206,32208,32210,32212,32214,32216,32218,32220,32222,32224,32226,32228,32230,32232,32234,32236,32238,32240,32242,32244,32246,32248,32250,32252,32254,32256,32258,32260,32262,32264,32266,32268,32270,32272,32274,32276,32278,32280,32282,32284,32286,32288,32290,32292,32294,32296,32298,32300,32302,32304,32306,32308,32310,32312,32314,32316,32318,32320,32322,32324,32326,32328,32330,32332,32334,32336,32338,32340,32342,32344,32346,32348,32350,32352,32354,32356,32358,32360,32362,32364,32366,32368,32370,32372,32374,32376,32378,32380,32382,32384,32386,32388,32390,32392,32394,32396,32398,32400,32402,32404,32406,32408,32410,32412,32414,32416,32418,32420,32422,32424,32426,32428,32430,32432,32434,32436,32438,32440,32442,32444,32446,32448,32450,32452,32454,32456,32458,32460,32462,32464,32466,32468,32470,32472,32474,32476,32478,32480,32482,32484,32486,32488,32490,32492,32494,32496,32498,32500,32502,32504,32506,32508,32510,32512,32514,32516,32518,32520,32522,32524,32526,32528,32530,32532,32534,32536,32538,32540,32542,32544,32546,32548,32550,32552,32554,32556,32558,32560,32562,32564,32566,32568,32570,32572,32574,32576,32578,32580,32582,32584,32586,32588,32590,32592,32594,32596,32598,32600,32602,32604,32606,32608,32610,32612,32614,32616,32618,32620,32622,32624,32626,32628,32630,32632,32634,32636,32638,32640,32642,32644,32646,32648,32650,32652,32654,32656,32658,32660,32662,32664,32666,32668,32670,32672,32674,32676,32678,32680,32682,32684,32686,32688,32690,32692,32694,32696,32698,32700,32702,32704,32706,32708,32710,32712,32714,32716,32718,32720,32722,32724,32726,32728,32730,32732,32734,32736,32738,32740,32742,32744,32746,32748,32750,32752,32754,32756,32758,32760,32762,32764,32766,32768,32770,32772,32774,32776,32778,32780,32782,32784,32786,32788,32790,32792,32794,32796,32798,32800,32802,32804,32806,32808,32810,32812,32814,32816,32818,32820,32822,32824,32826,32828,32830,32832,32834,32836,32838,32840,32842,32844,32846,32848,32850,32852,32854,32856,32858,32860,32862,32864,32866,32868,32870,32872,32874,32876,32878,32880,32882,32884,32886,32888,32890,32892,32894,32896,32898,32900,32902,32904,32906,32908,32910,32912,32914,32916,32918,32920,32922,32924,32926,32928,32930,32932,32934,32936,32938,32940,32942,32944,32946,32948,32950,32952,32954,32956,32958,32960,32962,32964,32966,32968,32970,32972,32974,32976,32978,32980,32982,32984,32986,32988,32990,32992,32994,32996,32998,33000,33002,33004,33006,33008,33010,33012,33014,33016,33018,33020,33022,33024,33026,33028,33030,33032,33034,33036,33038,33040,33042,33044,33046,33048,33050,33052,33054,33056,33058,33060,33062,33064,33066,33068,33070,33072,33074,33076,33078,33080,33082,33084,33086,33088,33090,33092,33094,33096,33098,33100,33102,33104,33106,33108,33110,33112,33114,33116,33118,33120,33122,33124,33126,33128,33130,33132,33134,33136,33138,33140,33142,33144,33146,33148,33150,33152,33154,33156,33158,33160,33162,33164,33166,33168,33170,33172,33174,33176,33178,33180,33182,33184,33186,33188,33190,33192,33194,33196,33198,33200,33202,33204,33206,33208,33210,33212,33214,33216,33218,33220,33222,33224,33226,33228,33230,33232,33234,33236,33238,33240,33242,33244,33246,33248,33250,33252,33254,33256,33258,33260,33262,33264,33266,33268,33270,33272,33274,33276,33278,33280,33282,33284,33286,33288,33290,33292,33294,33296,33298,33300,33302,33304,33306,33308,33310,33312,33314,33316,33318,33320,33322,33324,33326,33328,33330,33332,33334,33336,33338,33340,33342,33344,33346,33348,33350,33352,33354,33356,33358,33360,33362,33364,33366,33368,33370,33372,33374,33376,33378,33380,33382,33384,33386,33388,33390,33392,33394,33396,33398,33400,33402,33404,33406,33408,33410,33412,33414,33416,33418,33420,33422,33424,33426,33428,33430,33432,33434,33436,33438,33440,33442,33444,33446,33448,33450,33452,33454,33456,33458,33460,33462,33464,33466,33468,33470,33472,33474,33476,33478,33480,33482,33484,33486,33488,33490,33492,33494,33496,33498,33500,33502,33504,33506,33508,33510,33512,33514,33516,33518,33520,33522,33524,33526,33528,33530,33532,33534,33536,33538,33540,33542,33544,33546,33548,33550,33552,33554,33556,33558,33560,33562,33564,33566,33568,33570,33572,33574,33576,33578,33580,33582,33584,33586,33588,33590,33592,33594,33596,33598,33600,33602,33604,33606,33608,33610,33612,33614,33616,33618,33620,33622,33624,33626,33628,33630,33632,33634,33636,33638,33640,33642,33644,33646,33648,33650,33652,33654,33656,33658,33660,33662,33664,33666,33668,33670,33672,33674,33676,33678,33680,33682,33684,33686,33688,33690,33692,33694,33696,33698,33700,33702,33704,33706,33708,33710,33712,33714,33716,33718,33720,33722,33724,33726,33728,33730,33732,33734,33736,33738,33740,33742,33744,33746,33748,33750,33752,33754,33756,33758,33760,33762,33764,33766,33768,33770,33772,33774,33776,33778,33780,33782,33784,33786,33788,33790,33792,33794,33796,33798,33800,33802,33804,33806,33808,33810,33812,33814,33816,33818,33820,33822,33824,33826,33828,33830,33832,33834,33836,33838,33840,33842,33844,33846,33848,33850,33852,33854,33856,33858,33860,33862,33864,33866,33868,33870,33872,33874,33876,33878,33880,33882,33884,33886,33888,33890,33892,33894,33896,33898,33900,33902,33904,33906,33908,33910,33912,33914,33916,33918,33920,33922,33924,33926,33928,33930,33932,33934,33936,33938,33940,33942,33944,33946,33948,33950,33952,33954,33956,33958,33960,33962,33964,33966,33968,33970,33972,33974,33976,33978,33980,33982,33984,33986,33988,33990,33992,33994,33996,33998,34000,34002,34004,34006,34008,34010,34012,34014,34016,34018,34020,34022,34024,34026,34028,34030,34032,34034,34036,34038,34040,34042,34044,34046,34048,34050,34052,34054,34056,34058,34060,34062,34064,34066,34068,34070,34072,34074,34076,34078,34080,34082,34084,34086,34088,34090,34092,34094,34096,34098,34100,34102,34104,34106,34108,34110,34112,34114,34116,34118,34120,34122,34124,34126,34128,34130,34132,34134,34136,34138,34140,34142,34144,34146,34148,34150,34152,34154,34156,34158,34160,34162,34164,34166,34168,34170,34172,34174,34176,34178,34180,34182,34184,34186,34188,34190,34192,34194,34196,34198,34200,34202,34204,34206,34208,34210,34212,34214,34216,34218,34220,34222,34224,34226,34228,34230,34232,34234,34236,34238,34240,34242,34244,34246,34248,34250,34252,34254,34256,34258,34260,34262,34264,34266,34268,34270,34272,34274,34276,34278,34280,34282,34284,34286,34288,34290,34292,34294,34296,34298,34300,34302,34304,34306,34308,34310,34312,34314,34316,34318,34320,34322,34324,34326,34328,34330,34332,34334,34336,34338,34340,34342,34344,34346,34348,34350,34352,34354,34356,34358,34360,34362,34364,34366,34368,34370,34372,34374,34376,34378,34380,34382,34384,34386,34388,34390,34392,34394,34396,34398,34400,34402,34404,34406,34408,34410,34412,34414,34416,34418,34420,34422,34424,34426,34428,34430,34432,34434,34436,34438,34440,34442,34444,34446,34448,34450,34452,34454,34456,34458,34460,34462,34464,34466,34468,34470,34472,34474,34476,34478,34480,34482,34484,34486,34488,34490,34492,34494,34496,34498,34500,34502,34504,34506,34508,34510,34512,34514,34516,34518,34520,34522,34524,34526,34528,34530,34532,34534,34536,34538,34540,34542,34544,34546,34548,34550,34552,34554,34556,34558,34560,34562,34564,34566,34568,34570,34572,34574,34576,34578,34580,34582,34584,34586,34588,34590,34592,34594,34596,34598,34600,34602,34604,34606,34608,34610,34612,34614,34616,34618,34620,34622,34624,34626,34628,34630,34632,34634,34636,34638,34640,34642,34644,34646,34648,34650,34652,34654,34656,34658,34660,34662,34664,34666,34668,34670,34672,34674,34676,34678,34680,34682,34684,34686,34688,34690,34692,34694,34696,34698,34700,34702,34704,34706,34708,34710,34712,34714,34716,34718,34720,34722,34724,34726,34728,34730,34732,34734,34736,34738,34740,34742,34744,34746,34748,34750,34752,34754,34756,34758,34760,34762,34764,34766,34768,34770,34772,34774,34776,34778,34780,34782,34784,34786,34788,34790,34792,34794,34796,34798,34800,34802,34804,34806,34808,34810,34812,34814,34816,34818,34820,34822,34824,34826,34828,34830,34832,34834,34836,34838,34840,34842,34844,34846,34848,34850,34852,34854,34856,34858,34860,34862,34864,34866,34868,34870,34872,34874,34876,34878,34880,34882,34884,34886,34888,34890,34892,34894,34896,34898,34900,34902,34904,34906,34908,34910,34912,34914,34916,34918,34920,34922,34924,34926,34928,34930,34932,34934,34936,34938,34940,34942,34944,34946,34948,34950,34952,34954,34956,34958,34960,34962,34964,34966,34968,34970,34972,34974,34976,34978,34980,34982,34984,34986,34988,34990,34992,34994,34996,34998,35000,35002,35004,35006,35008,35010,35012,35014,35016,35018,35020,35022,35024,35026,35028,35030,35032,35034,35036,35038,35040,35042,35044,35046,35048,35050,35052,35054,35056,35058,35060,35062,35064,35066,35068,35070,35072,35074,35076,35078,35080,35082,35084,35086,35088,35090,35092,35094,35096,35098,35100,35102,35104,35106,35108,35110,35112,35114,35116,35118,35120,35122,35124,35126,35128,35130,35132,35134,35136,35138,35140,35142,35144,35146,35148,35150,35152,35154,35156,35158,35160,35162,35164,35166,35168,35170,35172,35174,35176,35178,35180,35182,35184,35186,35188,35190,35192,35194,35196,35198,35200,35202,35204,35206,35208,35210,35212,35214,35216,35218,35220,35222,35224,35226,35228,35230,35232,35234,35236,35238,35240,35242,35244,35246,35248,35250,35252,35254,35256,35258,35260,35262,35264,35266,35268,35270,35272,35274,35276,35278,35280,35282,35284,35286,35288,35290,35292,35294,35296,35298,35300,35302,35304,35306,35308,35310,35312,35314,35316,35318,35320,35322,35324,35326,35328,35330,35332,35334,35336,35338,35340,35342,35344,35346,35348,35350,35352,35354,35356,35358,35360,35362,35364,35366,35368,35370,35372,35374,35376,35378,35380,35382,35384,35386,35388,35390,35392,35394,35396,35398,35400,35402,35404,35406,35408,35410,35412,35414,35416,35418,35420,35422,35424,35426,35428,35430,35432,35434,35436,35438,35440,35442,35444,35446,35448,35450,35452,35454,35456,35458,35460,35462,35464,35466,35468,35470,35472,35474,35476,35478,35480,35482,35484,35486,35488,35490,35492,35494,35496,35498,35500,35502,35504,35506,35508,35510,35512,35514,35516,35518,35520,35522,35524,35526,35528,35530,35532,35534,35536,35538,35540,35542,35544,35546,35548,35550,35552,35554,35556,35558,35560,35562,35564,35566,35568,35570,35572,35574,35576,35578,35580,35582,35584,35586,35588,35590,35592,35594,35596,35598,35600,35602,35604,35606,35608,35610,35612,35614,35616,35618,35620,35622,35624,35626,35628,35630,35632,35634,35636,35638,35640,35642,35644,35646,35648,35650,35652,35654,35656,35658,35660,35662,35664,35666,35668,35670,35672,35674,35676,35678,35680,35682,35684,35686,35688,35690,35692,35694,35696,35698,35700,35702,35704,35706,35708,35710,35712,35714,35716,35718,35720,35722,35724,35726,35728,35730,35732,35734,35736,35738,35740,35742,35744,35746,35748,35750,35752,35754,35756,35758,35760,35762,35764,35766,35768,35770,35772,35774,35776,35778,35780,35782,35784,35786,35788,35790,35792,35794,35796,35798,35800,35802,35804,35806,35808,35810,35812,35814,35816,35818,35820,35822,35824,35826,35828,35830,35832,35834,35836,35838,35840,35842,35844,35846,35848,35850,35852,35854,35856,35858,35860,35862,35864,35866,35868,35870,35872,35874,35876,35878,35880,35882,35884,35886,35888,35890,35892,35894,35896,35898,35900,35902,35904,35906,35908,35910,35912,35914,35916,35918,35920,35922,35924,35926,35928,35930,35932,35934,35936,35938,35940,35942,35944,35946,35948,35950,35952,35954,35956,35958,35960,35962,35964,35966,35968,35970,35972,35974,35976,35978,35980,35982,35984,35986,35988,35990,35992,35994,35996,35998,36000,36002,36004,36006,36008,36010,36012,36014,36016,36018,36020,36022,36024,36026,36028,36030,36032,36034,36036,36038,36040,36042,36044,36046,36048,36050,36052,36054,36056,36058,36060,36062,36064,36066,36068,36070,36072,36074,36076,36078,36080,36082,36084,36086,36088,36090,36092,36094,36096,36098,36100,36102,36104,36106,36108,36110,36112,36114,36116,36118,36120,36122,36124,36126,36128,36130,36132,36134,36136,36138,36140,36142,36144,36146,36148,36150,36152,36154,36156,36158,36160,36162,36164,36166,36168,36170,36172,36174,36176,36178,36180,36182,36184,36186,36188,36190,36192,36194,36196,36198,36200,36202,36204,36206,36208,36210,36212,36214,36216,36218,36220,36222,36224,36226,36228,36230,36232,36234,36236,36238,36240,36242,36244,36246,36248,36250,36252,36254,36256,36258,36260,36262,36264,36266,36268,36270,36272,36274,36276,36278,36280,36282,36284,36286,36288,36290,36292,36294,36296,36298,36300,36302,36304,36306,36308,36310,36312,36314,36316,36318,36320,36322,36324,36326,36328,36330,36332,36334,36336,36338,36340,36342,36344,36346,36348,36350,36352,36354,36356,36358,36360,36362,36364,36366,36368,36370,36372,36374,36376,36378,36380,36382,36384,36386,36388,36390,36392,36394,36396,36398,36400,36402,36404,36406,36408,36410,36412,36414,36416,36418,36420,36422,36424,36426,36428,36430,36432,36434,36436,36438,36440,36442,36444,36446,36448,36450,36452,36454,36456,36458,36460,36462,36464,36466,36468,36470,36472,36474,36476,36478,36480,36482,36484,36486,36488,36490,36492,36494,36496,36498,36500,36502,36504,36506,36508,36510,36512,36514,36516,36518,36520,36522,36524,36526,36528,36530,36532,36534,36536,36538,36540,36542,36544,36546,36548,36550,36552,36554,36556,36558,36560,36562,36564,36566,36568,36570,36572,36574,36576,36578,36580,36582,36584,36586,36588,36590,36592,36594,36596,36598,36600,36602,36604,36606,36608,36610,36612,36614,36616,36618,36620,36622,36624,36626,36628,36630,36632,36634,36636,36638,36640,36642,36644,36646,36648,36650,36652,36654,36656,36658,36660,36662,36664,36666,36668,36670,36672,36674,36676,36678,36680,36682,36684,36686,36688,36690,36692,36694,36696,36698,36700,36702,36704,36706,36708,36710,36712,36714,36716,36718,36720,36722,36724,36726,36728,36730,36732,36734,36736,36738,36740,36742,36744,36746,36748,36750,36752,36754,36756,36758,36760,36762,36764,36766,36768,36770,36772,36774,36776,36778,36780,36782,36784,36786,36788,36790,36792,36794,36796,36798,36800,36802,36804,36806,36808,36810,36812,36814,36816,36818,36820,36822,36824,36826,36828,36830,36832,36834,36836,36838,36840,36842,36844,36846,36848,36850,36852,36854,36856,36858,36860,36862,36864,36866,36868,36870,36872,36874,36876,36878,36880,36882,36884,36886,36888,36890,36892,36894,36896,36898,36900,36902,36904,36906,36908,36910,36912,36914,36916,36918,36920,36922,36924,36926,36928,36930,36932,36934,36936,36938,36940,36942,36944,36946,36948,36950,36952,36954,36956,36958,36960,36962,36964,36966,36968,36970,36972,36974,36976,36978,36980,36982,36984,36986,36988,36990,36992,36994,36996,36998,37000,37002,37004,37006,37008,37010,37012,37014,37016,37018,37020,37022,37024,37026,37028,37030,37032,37034,37036,37038,37040,37042,37044,37046,37048,37050,37052,37054,37056,37058,37060,37062,37064,37066,37068,37070,37072,37074,37076,37078,37080,37082,37084,37086,37088,37090,37092,37094,37096,37098,37100,37102,37104,37106,37108,37110,37112,37114,37116,37118,37120,37122,37124,37126,37128,37130,37132,37134,37136,37138,37140,37142,37144,37146,37148,37150,37152,37154,37156,37158,37160,37162,37164,37166,37168,37170,37172,37174,37176,37178,37180,37182,37184,37186,37188,37190,37192,37194,37196,37198,37200,37202,37204,37206,37208,37210,37212,37214,37216,37218,37220,37222,37224,37226,37228,37230,37232,37234,37236,37238,37240,37242,37244,37246,37248,37250,37252,37254,37256,37258,37260,37262,37264,37266,37268,37270,37272,37274,37276,37278,37280,37282,37284,37286,37288,37290,37292,37294,37296,37298,37300,37302,37304,37306,37308,37310,37312,37314,37316,37318,37320,37322,37324,37326,37328,37330,37332,37334,37336,37338,37340,37342,37344,37346,37348,37350,37352,37354,37356,37358,37360,37362,37364,37366,37368,37370,37372,37374,37376,37378,37380,37382,37384,37386,37388,37390,37392,37394,37396,37398,37400,37402,37404,37406,37408,37410,37412,37414,37416,37418,37420,37422,37424,37426,37428,37430,37432,37434,37436,37438,37440,37442,37444,37446,37448,37450,37452,37454,37456,37458,37460,37462,37464,37466,37468,37470,37472,37474,37476,37478,37480,37482,37484,37486,37488,37490,37492,37494,37496,37498,37500,37502,37504,37506,37508,37510,37512,37514,37516,37518,37520,37522,37524,37526,37528,37530,37532,37534,37536,37538,37540,37542,37544,37546,37548,37550,37552,37554,37556,37558,37560,37562,37564,37566,37568,37570,37572,37574,37576,37578,37580,37582,37584,37586,37588,37590,37592,37594,37596,37598,37600,37602,37604,37606,37608,37610,37612,37614,37616,37618,37620,37622,37624,37626,37628,37630,37632,37634,37636,37638,37640,37642,37644,37646,37648,37650,37652,37654,37656,37658,37660,37662,37664,37666,37668,37670,37672,37674,37676,37678,37680,37682,37684,37686,37688,37690,37692,37694,37696,37698,37700,37702,37704,37706,37708,37710,37712,37714,37716,37718,37720,37722,37724,37726,37728,37730,37732,37734,37736,37738,37740,37742,37744,37746,37748,37750,37752,37754,37756,37758,37760,37762,37764,37766,37768,37770,37772,37774,37776,37778,37780,37782,37784,37786,37788,37790,37792,37794,37796,37798,37800,37802,37804,37806,37808,37810,37812,37814,37816,37818,37820,37822,37824,37826,37828,37830,37832,37834,37836,37838,37840,37842,37844,37846,37848,37850,37852,37854,37856,37858,37860,37862,37864,37866,37868,37870,37872,37874,37876,37878,37880,37882,37884,37886,37888,37890,37892,37894,37896,37898,37900,37902,37904,37906,37908,37910,37912,37914,37916,37918,37920,37922,37924,37926,37928,37930,37932,37934,37936,37938,37940,37942,37944,37946,37948,37950,37952,37954,37956,37958,37960,37962,37964,37966,37968,37970,37972,37974,37976,37978,37980,37982,37984,37986,37988,37990,37992,37994,37996,37998,38000,38002,38004,38006,38008,38010,38012,38014,38016,38018,38020,38022,38024,38026,38028,38030,38032,38034,38036,38038,38040,38042,38044,38046,38048,38050,38052,38054,38056,38058,38060,38062,38064,38066,38068,38070,38072,38074,38076,38078,38080,38082,38084,38086,38088,38090,38092,38094,38096,38098,38100,38102,38104,38106,38108,38110,38112,38114,38116,38118,38120,38122,38124,38126,38128,38130,38132,38134,38136,38138,38140,38142,38144,38146,38148,38150,38152,38154,38156,38158,38160,38162,38164,38166,38168,38170,38172,38174,38176,38178,38180,38182,38184,38186,38188,38190,38192,38194,38196,38198,38200,38202,38204,38206,38208,38210,38212,38214,38216,38218,38220,38222,38224,38226,38228,38230,38232,38234,38236,38238,38240,38242,38244,38246,38248,38250,38252,38254,38256,38258,38260,38262,38264,38266,38268,38270,38272,38274,38276,38278,38280,38282,38284,38286,38288,38290,38292,38294,38296,38298,38300,38302,38304,38306,38308,38310,38312,38314,38316,38318,38320,38322,38324,38326,38328,38330,38332,38334,38336,38338,38340,38342,38344,38346,38348,38350,38352,38354,38356,38358,38360,38362,38364,38366,38368,38370,38372,38374,38376,38378,38380,38382,38384,38386,38388,38390,38392,38394,38396,38398,38400,38402,38404,38406,38408,38410,38412,38414,38416,38418,38420,38422,38424,38426,38428,38430,38432,38434,38436,38438,38440,38442,38444,38446,38448,38450,38452,38454,38456,38458,38460,38462,38464,38466,38468,38470,38472,38474,38476,38478,38480,38482,38484,38486,38488,38490,38492,38494,38496,38498,38500,38502,38504,38506,38508,38510,38512,38514,38516,38518,38520,38522,38524,38526,38528,38530,38532,38534,38536,38538,38540,38542,38544,38546,38548,38550,38552,38554,38556,38558,38560,38562,38564,38566,38568,38570,38572,38574,38576,38578,38580,38582,38584,38586,38588,38590,38592,38594,38596,38598,38600,38602,38604,38606,38608,38610,38612,38614,38616,38618,38620,38622,38624,38626,38628,38630,38632,38634,38636,38638,38640,38642,38644,38646,38648,38650,38652,38654,38656,38658,38660,38662,38664,38666,38668,38670,38672,38674,38676,38678,38680,38682,38684,38686,38688,38690,38692,38694,38696,38698,38700,38702,38704,38706,38708,38710,38712,38714,38716,38718,38720,38722,38724,38726,38728,38730,38732,38734,38736,38738,38740,38742,38744,38746,38748,38750,38752,38754,38756,38758,38760,38762,38764,38766,38768,38770,38772,38774,38776,38778,38780,38782,38784,38786,38788,38790,38792,38794,38796,38798,38800,38802,38804,38806,38808,38810,38812,38814,38816,38818,38820,38822,38824,38826,38828,38830,38832,38834,38836,38838,38840,38842,38844,38846,38848,38850,38852,38854,38856,38858,38860,38862,38864,38866,38868,38870,38872,38874,38876,38878,38880,38882,38884,38886,38888,38890,38892,38894,38896,38898,38900,38902,38904,38906,38908,38910,38912,38914,38916,38918,38920,38922,38924,38926,38928,38930,38932,38934,38936,38938,38940,38942,38944,38946,38948,38950,38952,38954,38956,38958,38960,38962,38964,38966,38968,38970,38972,38974,38976,38978,38980,38982,38984,38986,38988,38990,38992,38994,38996,38998,39000,39002,39004,39006,39008,39010,39012,39014,39016,39018,39020,39022,39024,39026,39028,39030,39032,39034,39036,39038,39040,39042,39044,39046,39048,39050,39052,39054,39056,39058,39060,39062,39064,39066,39068,39070,39072,39074,39076,39078,39080,39082,39084,39086,39088,39090,39092,39094,39096,39098,39100,39102,39104,39106,39108,39110,39112,39114,39116,39118,39120,39122,39124,39126,39128,39130,39132,39134,39136,39138,39140,39142,39144,39146,39148,39150,39152,39154,39156,39158,39160,39162,39164,39166,39168,39170,39172,39174,39176,39178,39180,39182,39184,39186,39188,39190,39192,39194,39196,39198,39200,39202,39204,39206,39208,39210,39212,39214,39216,39218,39220,39222,39224,39226,39228,39230,39232,39234,39236,39238,39240,39242,39244,39246,39248,39250,39252,39254,39256,39258,39260,39262,39264,39266,39268,39270,39272,39274,39276,39278,39280,39282,39284,39286,39288,39290,39292,39294,39296,39298,39300,39302,39304,39306,39308,39310,39312,39314,39316,39318,39320,39322,39324,39326,39328,39330,39332,39334,39336,39338,39340,39342,39344,39346,39348,39350,39352,39354,39356,39358,39360,39362,39364,39366,39368,39370,39372,39374,39376,39378,39380,39382,39384,39386,39388,39390,39392,39394,39396,39398,39400,39402,39404,39406,39408,39410,39412,39414,39416,39418,39420,39422,39424,39426,39428,39430,39432,39434,39436,39438,39440,39442,39444,39446,39448,39450,39452,39454,39456,39458,39460,39462,39464,39466,39468,39470,39472,39474,39476,39478,39480,39482,39484,39486,39488,39490,39492,39494,39496,39498,39500,39502,39504,39506,39508,39510,39512,39514,39516,39518,39520,39522,39524,39526,39528,39530,39532,39534,39536,39538,39540,39542,39544,39546,39548,39550,39552,39554,39556,39558,39560,39562,39564,39566,39568,39570,39572,39574,39576,39578,39580,39582,39584,39586,39588,39590,39592,39594,39596,39598,39600,39602,39604,39606,39608,39610,39612,39614,39616,39618,39620,39622,39624,39626,39628,39630,39632,39634,39636,39638,39640,39642,39644,39646,39648,39650,39652,39654,39656,39658,39660,39662,39664,39666,39668,39670,39672,39674,39676,39678,39680,39682,39684,39686,39688,39690,39692,39694,39696,39698,39700,39702,39704,39706,39708,39710,39712,39714,39716,39718,39720,39722,39724,39726,39728,39730,39732,39734,39736,39738,39740,39742,39744,39746,39748,39750,39752,39754,39756,39758,39760,39762,39764,39766,39768,39770,39772,39774,39776,39778,39780,39782,39784,39786,39788,39790,39792,39794,39796,39798,39800,39802,39804,39806,39808,39810,39812,39814,39816,39818,39820,39822,39824,39826,39828,39830,39832,39834,39836,39838,39840,39842,39844,39846,39848,39850,39852,39854,39856,39858,39860,39862,39864,39866,39868,39870,39872,39874,39876,39878,39880,39882,39884,39886,39888,39890,39892,39894,39896,39898,39900,39902,39904,39906,39908,39910,39912,39914,39916,39918,39920,39922,39924,39926,39928,39930,39932,39934,39936,39938,39940,39942,39944,39946,39948,39950,39952,39954,39956,39958,39960,39962,39964,39966,39968,39970,39972,39974,39976,39978,39980,39982,39984,39986,39988,39990,39992,39994,39996,39998,40000,40002,40004,40006,40008,40010,40012,40014,40016,40018,40020,40022,40024,40026,40028,40030,40032,40034,40036,40038,40040,40042,40044,40046,40048,40050,40052,40054,40056,40058,40060,40062,40064,40066,40068,40070,40072,40074,40076,40078,40080,40082,40084,40086,40088,40090,40092,40094,40096,40098,40100,40102,40104,40106,40108,40110,40112,40114,40116,40118,40120,40122,40124,40126,40128,40130,40132,40134,40136,40138,40140,40142,40144,40146,40148,40150,40152,40154,40156,40158,40160,40162,40164,40166,40168,40170,40172,40174,40176,40178,40180,40182,40184,40186,40188,40190,40192,40194,40196,40198,40200,40202,40204,40206,40208,40210,40212,40214,40216,40218,40220,40222,40224,40226,40228,40230,40232,40234,40236,40238,40240,40242,40244,40246,40248,40250,40252,40254,40256,40258,40260,40262,40264,40266,40268,40270,40272,40274,40276,40278,40280,40282,40284,40286,40288,40290,40292,40294,40296,40298,40300,40302,40304,40306,40308,40310,40312,40314,40316,40318,40320,40322,40324,40326,40328,40330,40332,40334,40336,40338,40340,40342,40344,40346,40348,40350,40352,40354,40356,40358,40360,40362,40364,40366,40368,40370,40372,40374,40376,40378,40380,40382,40384,40386,40388,40390,40392,40394,40396,40398,40400,40402,40404,40406,40408,40410,40412,40414,40416,40418,40420,40422,40424,40426,40428,40430,40432,40434,40436,40438,40440,40442,40444,40446,40448,40450,40452,40454,40456,40458,40460,40462,40464,40466,40468,40470,40472,40474,40476,40478,40480,40482,40484,40486,40488,40490,40492,40494,40496,40498,40500,40502,40504,40506,40508,40510,40512,40514,40516,40518,40520,40522,40524,40526,40528,40530,40532,40534,40536,40538,40540,40542,40544,40546,40548,40550,40552,40554,40556,40558,40560,40562,40564,40566,40568,40570,40572,40574,40576,40578,40580,40582,40584,40586,40588,40590,40592,40594,40596,40598,40600,40602,40604,40606,40608,40610,40612,40614,40616,40618,40620,40622,40624,40626,40628,40630,40632,40634,40636,40638,40640,40642,40644,40646,40648,40650,40652,40654,40656,40658,40660,40662,40664,40666,40668,40670,40672,40674,40676,40678,40680,40682,40684,40686,40688,40690,40692,40694,40696,40698,40700,40702,40704,40706,40708,40710,40712,40714,40716,40718,40720,40722,40724,40726,40728,40730,40732,40734,40736,40738,40740,40742,40744,40746,40748,40750,40752,40754,40756,40758,40760,40762,40764,40766,40768,40770,40772,40774,40776,40778,40780,40782,40784,40786,40788,40790,40792,40794,40796,40798,40800,40802,40804,40806,40808,40810,40812,40814,40816,40818,40820,40822,40824,40826,40828,40830,40832,40834,40836,40838,40840,40842,40844,40846,40848,40850,40852,40854,40856,40858,40860,40862,40864,40866,40868,40870,40872,40874,40876,40878,40880,40882,40884,40886,40888,40890,40892,40894,40896,40898,40900,40902,40904,40906,40908,40910,40912,40914,40916,40918,40920,40922,40924,40926,40928,40930,40932,40934,40936,40938,40940,40942,40944,40946,40948,40950,40952,40954,40956,40958,40960,40962,40964,40966,40968,40970,40972,40974,40976,40978,40980,40982,40984,40986,40988,40990,40992,40994,40996,40998,41000,41002,41004,41006,41008,41010,41012,41014,41016,41018,41020,41022,41024,41026,41028,41030,41032,41034,41036,41038,41040,41042,41044,41046,41048,41050,41052,41054,41056,41058,41060,41062,41064,41066,41068,41070,41072,41074,41076,41078,41080,41082,41084,41086,41088,41090,41092,41094,41096,41098,41100,41102,41104,41106,41108,41110,41112,41114,41116,41118,41120,41122,41124,41126,41128,41130,41132,41134,41136,41138,41140,41142,41144,41146,41148,41150,41152,41154,41156,41158,41160,41162,41164,41166,41168,41170,41172,41174,41176,41178,41180,41182,41184,41186,41188,41190,41192,41194,41196,41198,41200,41202,41204,41206,41208,41210,41212,41214,41216,41218,41220,41222,41224,41226,41228,41230,41232,41234,41236,41238,41240,41242,41244,41246,41248,41250,41252,41254,41256,41258,41260,41262,41264,41266,41268,41270,41272,41274,41276,41278,41280,41282,41284,41286,41288,41290,41292,41294,41296,41298,41300,41302,41304,41306,41308,41310,41312,41314,41316,41318,41320,41322,41324,41326,41328,41330,41332,41334,41336,41338,41340,41342,41344,41346,41348,41350,41352,41354,41356,41358,41360,41362,41364,41366,41368,41370,41372,41374,41376,41378,41380,41382,41384,41386,41388,41390,41392,41394,41396,41398,41400,41402,41404,41406,41408,41410,41412,41414,41416,41418,41420,41422,41424,41426,41428,41430,41432,41434,41436,41438,41440,41442,41444,41446,41448,41450,41452,41454,41456,41458,41460,41462,41464,41466,41468,41470,41472,41474,41476,41478,41480,41482,41484,41486,41488,41490,41492,41494,41496,41498,41500,41502,41504,41506,41508,41510,41512,41514,41516,41518,41520,41522,41524,41526,41528,41530,41532,41534,41536,41538,41540,41542,41544,41546,41548,41550,41552,41554,41556,41558,41560,41562,41564,41566,41568,41570,41572,41574,41576,41578,41580,41582,41584,41586,41588,41590,41592,41594,41596,41598,41600,41602,41604,41606,41608,41610,41612,41614,41616,41618,41620,41622,41624,41626,41628,41630,41632,41634,41636,41638,41640,41642,41644,41646,41648,41650,41652,41654,41656,41658,41660,41662,41664,41666,41668,41670,41672,41674,41676,41678,41680,41682,41684,41686,41688,41690,41692,41694,41696,41698,41700,41702,41704,41706,41708,41710,41712,41714,41716,41718,41720,41722,41724,41726,41728,41730,41732,41734,41736,41738,41740,41742,41744,41746,41748,41750,41752,41754,41756,41758,41760,41762,41764,41766,41768,41770,41772,41774,41776,41778,41780,41782,41784,41786,41788,41790,41792,41794,41796,41798,41800,41802,41804,41806,41808,41810,41812,41814,41816,41818,41820,41822,41824,41826,41828,41830,41832,41834,41836,41838,41840,41842,41844,41846,41848,41850,41852,41854,41856,41858,41860,41862,41864,41866,41868,41870,41872,41874,41876,41878,41880,41882,41884,41886,41888,41890,41892,41894,41896,41898,41900,41902,41904,41906,41908,41910,41912,41914,41916,41918,41920,41922,41924,41926,41928,41930,41932,41934,41936,41938,41940,41942,41944,41946,41948,41950,41952,41954,41956,41958,41960,41962,41964,41966,41968,41970,41972,41974,41976,41978,41980,41982,41984,41986,41988,41990,41992,41994,41996,41998,42000,42002,42004,42006,42008,42010,42012,42014,42016,42018,42020,42022,42024,42026,42028,42030,42032,42034,42036,42038,42040,42042,42044,42046,42048,42050,42052,42054,42056,42058,42060,42062,42064,42066,42068,42070,42072,42074,42076,42078,42080,42082,42084,42086,42088,42090,42092,42094,42096,42098,42100,42102,42104,42106,42108,42110,42112,42114,42116,42118,42120,42122,42124,42126,42128,42130,42132,42134,42136,42138,42140,42142,42144,42146,42148,42150,42152,42154,42156,42158,42160,42162,42164,42166,42168,42170,42172,42174,42176,42178,42180,42182,42184,42186,42188,42190,42192,42194,42196,42198,42200,42202,42204,42206,42208,42210,42212,42214,42216,42218,42220,42222,42224,42226,42228,42230,42232,42234,42236,42238,42240,42242,42244,42246,42248,42250,42252,42254,42256,42258,42260,42262,42264,42266,42268,42270,42272,42274,42276,42278,42280,42282,42284,42286,42288,42290,42292,42294,42296,42298,42300,42302,42304,42306,42308,42310,42312,42314,42316,42318,42320,42322,42324,42326,42328,42330,42332,42334,42336,42338,42340,42342,42344,42346,42348,42350,42352,42354,42356,42358,42360,42362,42364,42366,42368,42370,42372,42374,42376,42378,42380,42382,42384,42386,42388,42390,42392,42394,42396,42398,42400,42402,42404,42406,42408,42410,42412,42414,42416,42418,42420,42422,42424,42426,42428,42430,42432,42434,42436,42438,42440,42442,42444,42446,42448,42450,42452,42454,42456,42458,42460,42462,42464,42466,42468,42470,42472,42474,42476,42478,42480,42482,42484,42486,42488,42490,42492,42494,42496,42498,42500,42502,42504,42506,42508,42510,42512,42514,42516,42518,42520,42522,42524,42526,42528,42530,42532,42534,42536,42538,42540,42542,42544,42546,42548,42550,42552,42554,42556,42558,42560,42562,42564,42566,42568,42570,42572,42574,42576,42578,42580,42582,42584,42586,42588,42590,42592,42594,42596,42598,42600,42602,42604,42606,42608,42610,42612,42614,42616,42618,42620,42622,42624,42626,42628,42630,42632,42634,42636,42638,42640,42642,42644,42646,42648,42650,42652,42654,42656,42658,42660,42662,42664,42666,42668,42670,42672,42674,42676,42678,42680,42682,42684,42686,42688,42690,42692,42694,42696,42698,42700,42702,42704,42706,42708,42710,42712,42714,42716,42718,42720,42722,42724,42726,42728,42730,42732,42734,42736,42738,42740,42742,42744,42746,42748,42750,42752,42754,42756,42758,42760,42762,42764,42766,42768,42770,42772,42774,42776,42778,42780,42782,42784,42786,42788,42790,42792,42794,42796,42798,42800,42802,42804,42806,42808,42810,42812,42814,42816,42818,42820,42822,42824,42826,42828,42830,42832,42834,42836,42838,42840,42842,42844,42846,42848,42850,42852,42854,42856,42858,42860,42862,42864,42866,42868,42870,42872,42874,42876,42878,42880,42882,42884,42886,42888,42890,42892,42894,42896,42898,42900,42902,42904,42906,42908,42910,42912,42914,42916,42918,42920,42922,42924,42926,42928,42930,42932,42934,42936,42938,42940,42942,42944,42946,42948,42950,42952,42954,42956,42958,42960,42962,42964,42966,42968,42970,42972,42974,42976,42978,42980,42982,42984,42986,42988,42990,42992,42994,42996,42998,43000,43002,43004,43006,43008,43010,43012,43014,43016,43018,43020,43022,43024,43026,43028,43030,43032,43034,43036,43038,43040,43042,43044,43046,43048,43050,43052,43054,43056,43058,43060,43062,43064,43066,43068,43070,43072,43074,43076,43078,43080,43082,43084,43086,43088,43090,43092,43094,43096,43098,43100,43102,43104,43106,43108,43110,43112,43114,43116,43118,43120,43122,43124,43126,43128,43130,43132,43134,43136,43138,43140,43142,43144,43146,43148,43150,43152,43154,43156,43158,43160,43162,43164,43166,43168,43170,43172,43174,43176,43178,43180,43182,43184,43186,43188,43190,43192,43194,43196,43198,43200,43202,43204,43206,43208,43210,43212,43214,43216,43218,43220,43222,43224,43226,43228,43230,43232,43234,43236,43238,43240,43242,43244,43246,43248,43250,43252,43254,43256,43258,43260,43262,43264,43266,43268,43270,43272,43274,43276,43278,43280,43282,43284,43286,43288,43290,43292,43294,43296,43298,43300,43302,43304,43306,43308,43310,43312,43314,43316,43318,43320,43322,43324,43326,43328,43330,43332,43334,43336,43338,43340,43342,43344,43346,43348,43350,43352,43354,43356,43358,43360,43362,43364,43366,43368,43370,43372,43374,43376,43378,43380,43382,43384,43386,43388,43390,43392,43394,43396,43398,43400,43402,43404,43406,43408,43410,43412,43414,43416,43418,43420,43422,43424,43426,43428,43430,43432,43434,43436,43438,43440,43442,43444,43446,43448,43450,43452,43454,43456,43458,43460,43462,43464,43466,43468,43470,43472,43474,43476,43478,43480,43482,43484,43486,43488,43490,43492,43494,43496,43498,43500,43502,43504,43506,43508,43510,43512,43514,43516,43518,43520,43522,43524,43526,43528,43530,43532,43534,43536,43538,43540,43542,43544,43546,43548,43550,43552,43554,43556,43558,43560,43562,43564,43566,43568,43570,43572,43574,43576,43578,43580,43582,43584,43586,43588,43590,43592,43594,43596,43598,43600,43602,43604,43606,43608,43610,43612,43614,43616,43618,43620,43622,43624,43626,43628,43630,43632,43634,43636,43638,43640,43642,43644,43646,43648,43650,43652,43654,43656,43658,43660,43662,43664,43666,43668,43670,43672,43674,43676,43678,43680,43682,43684,43686,43688,43690,43692,43694,43696,43698,43700,43702,43704,43706,43708,43710,43712,43714,43716,43718,43720,43722,43724,43726,43728,43730,43732,43734,43736,43738,43740,43742,43744,43746,43748,43750,43752,43754,43756,43758,43760,43762,43764,43766,43768,43770,43772,43774,43776,43778,43780,43782,43784,43786,43788,43790,43792,43794,43796,43798,43800,43802,43804,43806,43808,43810,43812,43814,43816,43818,43820,43822,43824,43826,43828,43830,43832,43834,43836,43838,43840,43842,43844,43846,43848,43850,43852,43854,43856,43858,43860,43862,43864,43866,43868,43870,43872,43874,43876,43878,43880,43882,43884,43886,43888,43890,43892,43894,43896,43898,43900,43902,43904,43906,43908,43910,43912,43914,43916,43918,43920,43922,43924,43926,43928,43930,43932,43934,43936,43938,43940,43942,43944,43946,43948,43950,43952,43954,43956,43958,43960,43962,43964,43966,43968,43970,43972,43974,43976,43978,43980,43982,43984,43986,43988,43990,43992,43994,43996,43998,44000,44002,44004,44006,44008,44010,44012,44014,44016,44018,44020,44022,44024,44026,44028,44030,44032,44034,44036,44038,44040,44042,44044,44046,44048,44050,44052,44054,44056,44058,44060,44062,44064,44066,44068,44070,44072,44074,44076,44078,44080,44082,44084,44086,44088,44090,44092,44094,44096,44098,44100,44102,44104,44106,44108,44110,44112,44114,44116,44118,44120,44122,44124,44126,44128,44130,44132,44134,44136,44138,44140,44142,44144,44146,44148,44150,44152,44154,44156,44158,44160,44162,44164,44166,44168,44170,44172,44174,44176,44178,44180,44182,44184,44186,44188,44190,44192,44194,44196,44198,44200,44202,44204,44206,44208,44210,44212,44214,44216,44218,44220,44222,44224,44226,44228,44230,44232,44234,44236,44238,44240,44242,44244,44246,44248,44250,44252,44254,44256,44258,44260,44262,44264,44266,44268,44270,44272,44274,44276,44278,44280,44282,44284,44286,44288,44290,44292,44294,44296,44298,44300,44302,44304,44306,44308,44310,44312,44314,44316,44318,44320,44322,44324,44326,44328,44330,44332,44334,44336,44338,44340,44342,44344,44346,44348,44350,44352,44354,44356,44358,44360,44362,44364,44366,44368,44370,44372,44374,44376,44378,44380,44382,44384,44386,44388,44390,44392,44394,44396,44398,44400,44402,44404,44406,44408,44410,44412,44414,44416,44418,44420,44422,44424,44426,44428,44430,44432,44434,44436,44438,44440,44442,44444,44446,44448,44450,44452,44454,44456,44458,44460,44462,44464,44466,44468,44470,44472,44474,44476,44478,44480,44482,44484,44486,44488,44490,44492,44494,44496,44498,44500,44502,44504,44506,44508,44510,44512,44514,44516,44518,44520,44522,44524,44526,44528,44530,44532,44534,44536,44538,44540,44542,44544,44546,44548,44550,44552,44554,44556,44558,44560,44562,44564,44566,44568,44570,44572,44574,44576,44578,44580,44582,44584,44586,44588,44590,44592,44594,44596,44598,44600,44602,44604,44606,44608,44610,44612,44614,44616,44618,44620,44622,44624,44626,44628,44630,44632,44634,44636,44638,44640,44642,44644,44646,44648,44650,44652,44654,44656,44658,44660,44662,44664,44666,44668,44670,44672,44674,44676,44678,44680,44682,44684,44686,44688,44690,44692,44694,44696,44698,44700,44702,44704,44706,44708,44710,44712,44714,44716,44718,44720,44722,44724,44726,44728,44730,44732,44734,44736,44738,44740,44742,44744,44746,44748,44750,44752,44754,44756,44758,44760,44762,44764,44766,44768,44770,44772,44774,44776,44778,44780,44782,44784,44786,44788,44790,44792,44794,44796,44798,44800,44802,44804,44806,44808,44810,44812,44814,44816,44818,44820,44822,44824,44826,44828,44830,44832,44834,44836,44838,44840,44842,44844,44846,44848,44850,44852,44854,44856,44858,44860,44862,44864,44866,44868,44870,44872,44874,44876,44878,44880,44882,44884,44886,44888,44890,44892,44894,44896,44898,44900,44902,44904,44906,44908,44910,44912,44914,44916,44918,44920,44922,44924,44926,44928,44930,44932,44934,44936,44938,44940,44942,44944,44946,44948,44950,44952,44954,44956,44958,44960,44962,44964,44966,44968,44970,44972,44974,44976,44978,44980,44982,44984,44986,44988,44990,44992,44994,44996,44998,45000,45002,45004,45006,45008,45010,45012,45014,45016,45018,45020,45022,45024,45026,45028,45030,45032,45034,45036,45038,45040,45042,45044,45046,45048,45050,45052,45054,45056,45058,45060,45062,45064,45066,45068,45070,45072,45074,45076,45078,45080,45082,45084,45086,45088,45090,45092,45094,45096,45098,45100,45102,45104,45106,45108,45110,45112,45114,45116,45118,45120,45122,45124,45126,45128,45130,45132,45134,45136,45138,45140,45142,45144,45146,45148,45150,45152,45154,45156,45158,45160,45162,45164,45166,45168,45170,45172,45174,45176,45178,45180,45182,45184,45186,45188,45190,45192,45194,45196,45198,45200,45202,45204,45206,45208,45210,45212,45214,45216,45218,45220,45222,45224,45226,45228,45230,45232,45234,45236,45238,45240,45242,45244,45246,45248,45250,45252,45254,45256,45258,45260,45262,45264,45266,45268,45270,45272,45274,45276,45278,45280,45282,45284,45286,45288,45290,45292,45294,45296,45298,45300,45302,45304,45306,45308,45310,45312,45314,45316,45318,45320,45322,45324,45326,45328,45330,45332,45334,45336,45338,45340,45342,45344,45346,45348,45350,45352,45354,45356,45358,45360,45362,45364,45366,45368,45370,45372,45374,45376,45378,45380,45382,45384,45386,45388,45390,45392,45394,45396,45398,45400,45402,45404,45406,45408,45410,45412,45414,45416,45418,45420,45422,45424,45426,45428,45430,45432,45434,45436,45438,45440,45442,45444,45446,45448,45450,45452,45454,45456,45458,45460,45462,45464,45466,45468,45470,45472,45474,45476,45478,45480,45482,45484,45486,45488,45490,45492,45494,45496,45498,45500,45502,45504,45506,45508,45510,45512,45514,45516,45518,45520,45522,45524,45526,45528,45530,45532,45534,45536,45538,45540,45542,45544,45546,45548,45550,45552,45554,45556,45558,45560,45562,45564,45566,45568,45570,45572,45574,45576,45578,45580,45582,45584,45586,45588,45590,45592,45594,45596,45598,45600,45602,45604,45606,45608,45610,45612,45614,45616,45618,45620,45622,45624,45626,45628,45630,45632,45634,45636,45638,45640,45642,45644,45646,45648,45650,45652,45654,45656,45658,45660,45662,45664,45666,45668,45670,45672,45674,45676,45678,45680,45682,45684,45686,45688,45690,45692,45694,45696,45698,45700,45702,45704,45706,45708,45710,45712,45714,45716,45718,45720,45722,45724,45726,45728,45730,45732,45734,45736,45738,45740,45742,45744,45746,45748,45750,45752,45754,45756,45758,45760,45762,45764,45766,45768,45770,45772,45774,45776,45778,45780,45782,45784,45786,45788,45790,45792,45794,45796,45798,45800,45802,45804,45806,45808,45810,45812,45814,45816,45818,45820,45822,45824,45826,45828,45830,45832,45834,45836,45838,45840,45842,45844,45846,45848,45850,45852,45854,45856,45858,45860,45862,45864,45866,45868,45870,45872,45874,45876,45878,45880,45882,45884,45886,45888,45890,45892,45894,45896,45898,45900,45902,45904,45906,45908,45910,45912,45914,45916,45918,45920,45922,45924,45926,45928,45930,45932,45934,45936,45938,45940,45942,45944,45946,45948,45950,45952,45954,45956,45958,45960,45962,45964,45966,45968,45970,45972,45974,45976,45978,45980,45982,45984,45986,45988,45990,45992,45994,45996,45998,46000,46002,46004,46006,46008,46010,46012,46014,46016,46018,46020,46022,46024,46026,46028,46030,46032,46034,46036,46038,46040,46042,46044,46046,46048,46050,46052,46054,46056,46058,46060,46062,46064,46066,46068,46070,46072,46074,46076,46078,46080,46082,46084,46086,46088,46090,46092,46094,46096,46098,46100,46102,46104,46106,46108,46110,46112,46114,46116,46118,46120,46122,46124,46126,46128,46130,46132,46134,46136,46138,46140,46142,46144,46146,46148,46150,46152,46154,46156,46158,46160,46162,46164,46166,46168,46170,46172,46174,46176,46178,46180,46182,46184,46186,46188,46190,46192,46194,46196,46198,46200,46202,46204,46206,46208,46210,46212,46214,46216,46218,46220,46222,46224,46226,46228,46230,46232,46234,46236,46238,46240,46242,46244,46246,46248,46250,46252,46254,46256,46258,46260,46262,46264,46266,46268,46270,46272,46274,46276,46278,46280,46282,46284,46286,46288,46290,46292,46294,46296,46298,46300,46302,46304,46306,46308,46310,46312,46314,46316,46318,46320,46322,46324,46326,46328,46330,46332,46334,46336,46338,46340,46342,46344,46346,46348,46350,46352,46354,46356,46358,46360,46362,46364,46366,46368,46370,46372,46374,46376,46378,46380,46382,46384,46386,46388,46390,46392,46394,46396,46398,46400,46402,46404,46406,46408,46410,46412,46414,46416,46418,46420,46422,46424,46426,46428,46430,46432,46434,46436,46438,46440,46442,46444,46446,46448,46450,46452,46454,46456,46458,46460,46462,46464,46466,46468,46470,46472,46474,46476,46478,46480,46482,46484,46486,46488,46490,46492,46494,46496,46498,46500,46502,46504,46506,46508,46510,46512,46514,46516,46518,46520,46522,46524,46526,46528,46530,46532,46534,46536,46538,46540,46542,46544,46546,46548,46550,46552,46554,46556,46558,46560,46562,46564,46566,46568,46570,46572,46574,46576,46578,46580,46582,46584,46586,46588,46590,46592,46594,46596,46598,46600,46602,46604,46606,46608,46610,46612,46614,46616,46618,46620,46622,46624,46626,46628,46630,46632,46634,46636,46638,46640,46642,46644,46646,46648,46650,46652,46654,46656,46658,46660,46662,46664,46666,46668,46670,46672,46674,46676,46678,46680,46682,46684,46686,46688,46690,46692,46694,46696,46698,46700,46702,46704,46706,46708,46710,46712,46714,46716,46718,46720,46722,46724,46726,46728,46730,46732,46734,46736,46738,46740,46742,46744,46746,46748,46750,46752,46754,46756,46758,46760,46762,46764,46766,46768,46770,46772,46774,46776,46778,46780,46782,46784,46786,46788,46790,46792,46794,46796,46798,46800,46802,46804,46806,46808,46810,46812,46814,46816,46818,46820,46822,46824,46826,46828,46830,46832,46834,46836,46838,46840,46842,46844,46846,46848,46850,46852,46854,46856,46858,46860,46862,46864,46866,46868,46870,46872,46874,46876,46878,46880,46882,46884,46886,46888,46890,46892,46894,46896,46898,46900,46902,46904,46906,46908,46910,46912,46914,46916,46918,46920,46922,46924,46926,46928,46930,46932,46934,46936,46938,46940,46942,46944,46946,46948,46950,46952,46954,46956,46958,46960,46962,46964,46966,46968,46970,46972,46974,46976,46978,46980,46982,46984,46986,46988,46990,46992,46994,46996,46998,47000,47002,47004,47006,47008,47010,47012,47014,47016,47018,47020,47022,47024,47026,47028,47030,47032,47034,47036,47038,47040,47042,47044,47046,47048,47050,47052,47054,47056,47058,47060,47062,47064,47066,47068,47070,47072,47074,47076,47078,47080,47082,47084,47086,47088,47090,47092,47094,47096,47098,47100,47102,47104,47106,47108,47110,47112,47114,47116,47118,47120,47122,47124,47126,47128,47130,47132,47134,47136,47138,47140,47142,47144,47146,47148,47150,47152,47154,47156,47158,47160,47162,47164,47166,47168,47170,47172,47174,47176,47178,47180,47182,47184,47186,47188,47190,47192,47194,47196,47198,47200,47202,47204,47206,47208,47210,47212,47214,47216,47218,47220,47222,47224,47226,47228,47230,47232,47234,47236,47238,47240,47242,47244,47246,47248,47250,47252,47254,47256,47258,47260,47262,47264,47266,47268,47270,47272,47274,47276,47278,47280,47282,47284,47286,47288,47290,47292,47294,47296,47298,47300,47302,47304,47306,47308,47310,47312,47314,47316,47318,47320,47322,47324,47326,47328,47330,47332,47334,47336,47338,47340,47342,47344,47346,47348,47350,47352,47354,47356,47358,47360,47362,47364,47366,47368,47370,47372,47374,47376,47378,47380,47382,47384,47386,47388,47390,47392,47394,47396,47398,47400,47402,47404,47406,47408,47410,47412,47414,47416,47418,47420,47422,47424,47426,47428,47430,47432,47434,47436,47438,47440,47442,47444,47446,47448,47450,47452,47454,47456,47458,47460,47462,47464,47466,47468,47470,47472,47474,47476,47478,47480,47482,47484,47486,47488,47490,47492,47494,47496,47498,47500,47502,47504,47506,47508,47510,47512,47514,47516,47518,47520,47522,47524,47526,47528,47530,47532,47534,47536,47538,47540,47542,47544,47546,47548,47550,47552,47554,47556,47558,47560,47562,47564,47566,47568,47570,47572,47574,47576,47578,47580,47582,47584,47586,47588,47590,47592,47594,47596,47598,47600,47602,47604,47606,47608,47610,47612,47614,47616,47618,47620,47622,47624,47626,47628,47630,47632,47634,47636,47638,47640,47642,47644,47646,47648,47650,47652,47654,47656,47658,47660,47662,47664,47666,47668,47670,47672,47674,47676,47678,47680,47682,47684,47686,47688,47690,47692,47694,47696,47698,47700,47702,47704,47706,47708,47710,47712,47714,47716,47718,47720,47722,47724,47726,47728,47730,47732,47734,47736,47738,47740,47742,47744,47746,47748,47750,47752,47754,47756,47758,47760,47762,47764,47766,47768,47770,47772,47774,47776,47778,47780,47782,47784,47786,47788,47790,47792,47794,47796,47798,47800,47802,47804,47806,47808,47810,47812,47814,47816,47818,47820,47822,47824,47826,47828,47830,47832,47834,47836,47838,47840,47842,47844,47846,47848,47850,47852,47854,47856,47858,47860,47862,47864,47866,47868,47870,47872,47874,47876,47878,47880,47882,47884,47886,47888,47890,47892,47894,47896,47898,47900,47902,47904,47906,47908,47910,47912,47914,47916,47918,47920,47922,47924,47926,47928,47930,47932,47934,47936,47938,47940,47942,47944,47946,47948,47950,47952,47954,47956,47958,47960,47962,47964,47966,47968,47970,47972,47974,47976,47978,47980,47982,47984,47986,47988,47990,47992,47994,47996,47998,48000,48002,48004,48006,48008,48010,48012,48014,48016,48018,48020,48022,48024,48026,48028,48030,48032,48034,48036,48038,48040,48042,48044,48046,48048,48050,48052,48054,48056,48058,48060,48062,48064,48066,48068,48070,48072,48074,48076,48078,48080,48082,48084,48086,48088,48090,48092,48094,48096,48098,48100,48102,48104,48106,48108,48110,48112,48114,48116,48118,48120,48122,48124,48126,48128,48130,48132,48134,48136,48138,48140,48142,48144,48146,48148,48150,48152,48154,48156,48158,48160,48162,48164,48166,48168,48170,48172,48174,48176,48178,48180,48182,48184,48186,48188,48190,48192,48194,48196,48198,48200,48202,48204,48206,48208,48210,48212,48214,48216,48218,48220,48222,48224,48226,48228,48230,48232,48234,48236,48238,48240,48242,48244,48246,48248,48250,48252,48254,48256,48258,48260,48262,48264,48266,48268,48270,48272,48274,48276,48278,48280,48282,48284,48286,48288,48290,48292,48294,48296,48298,48300,48302,48304,48306,48308,48310,48312,48314,48316,48318,48320,48322,48324,48326,48328,48330,48332,48334,48336,48338,48340,48342,48344,48346,48348,48350,48352,48354,48356,48358,48360,48362,48364,48366,48368,48370,48372,48374,48376,48378,48380,48382,48384,48386,48388,48390,48392,48394,48396,48398,48400,48402,48404,48406,48408,48410,48412,48414,48416,48418,48420,48422,48424,48426,48428,48430,48432,48434,48436,48438,48440,48442,48444,48446,48448,48450,48452,48454,48456,48458,48460,48462,48464,48466,48468,48470,48472,48474,48476,48478,48480,48482,48484,48486,48488,48490,48492,48494,48496,48498,48500,48502,48504,48506,48508,48510,48512,48514,48516,48518,48520,48522,48524,48526,48528,48530,48532,48534,48536,48538,48540,48542,48544,48546,48548,48550,48552,48554,48556,48558,48560,48562,48564,48566,48568,48570,48572,48574,48576,48578,48580,48582,48584,48586,48588,48590,48592,48594,48596,48598,48600,48602,48604,48606,48608,48610,48612,48614,48616,48618,48620,48622,48624,48626,48628,48630,48632,48634,48636,48638,48640,48642,48644,48646,48648,48650,48652,48654,48656,48658,48660,48662,48664,48666,48668,48670,48672,48674,48676,48678,48680,48682,48684,48686,48688,48690,48692,48694,48696,48698,48700,48702,48704,48706,48708,48710,48712,48714,48716,48718,48720,48722,48724,48726,48728,48730,48732,48734,48736,48738,48740,48742,48744,48746,48748,48750,48752,48754,48756,48758,48760,48762,48764,48766,48768,48770,48772,48774,48776,48778,48780,48782,48784,48786,48788,48790,48792,48794,48796,48798,48800,48802,48804,48806,48808,48810,48812,48814,48816,48818,48820,48822,48824,48826,48828,48830,48832,48834,48836,48838,48840,48842,48844,48846,48848,48850,48852,48854,48856,48858,48860,48862,48864,48866,48868,48870,48872,48874,48876,48878,48880,48882,48884,48886,48888,48890,48892,48894,48896,48898,48900,48902,48904,48906,48908,48910,48912,48914,48916,48918,48920,48922,48924,48926,48928,48930,48932,48934,48936,48938,48940,48942,48944,48946,48948,48950,48952,48954,48956,48958,48960,48962,48964,48966,48968,48970,48972,48974,48976,48978,48980,48982,48984,48986,48988,48990,48992,48994,48996,48998,49000,49002,49004,49006,49008,49010,49012,49014,49016,49018,49020,49022,49024,49026,49028,49030,49032,49034,49036,49038,49040,49042,49044,49046,49048,49050,49052,49054,49056,49058,49060,49062,49064,49066,49068,49070,49072,49074,49076,49078,49080,49082,49084,49086,49088,49090,49092,49094,49096,49098,49100,49102,49104,49106,49108,49110,49112,49114,49116,49118,49120,49122,49124,49126,49128,49130,49132,49134,49136,49138,49140,49142,49144,49146,49148,49150,49152,49154,49156,49158,49160,49162,49164,49166,49168,49170,49172,49174,49176,49178,49180,49182,49184,49186,49188,49190,49192,49194,49196,49198,49200,49202,49204,49206,49208,49210,49212,49214,49216,49218,49220,49222,49224,49226,49228,49230,49232,49234,49236,49238,49240,49242,49244,49246,49248,49250,49252,49254,49256,49258,49260,49262,49264,49266,49268,49270,49272,49274,49276,49278,49280,49282,49284,49286,49288,49290,49292,49294,49296,49298,49300,49302,49304,49306,49308,49310,49312,49314,49316,49318,49320,49322,49324,49326,49328,49330,49332,49334,49336,49338,49340,49342,49344,49346,49348,49350,49352,49354,49356,49358,49360,49362,49364,49366,49368,49370,49372,49374,49376,49378,49380,49382,49384,49386,49388,49390,49392,49394,49396,49398,49400,49402,49404,49406,49408,49410,49412,49414,49416,49418,49420,49422,49424,49426,49428,49430,49432,49434,49436,49438,49440,49442,49444,49446,49448,49450,49452,49454,49456,49458,49460,49462,49464,49466,49468,49470,49472,49474,49476,49478,49480,49482,49484,49486,49488,49490,49492,49494,49496,49498,49500,49502,49504,49506,49508,49510,49512,49514,49516,49518,49520,49522,49524,49526,49528,49530,49532,49534,49536,49538,49540,49542,49544,49546,49548,49550,49552,49554,49556,49558,49560,49562,49564,49566,49568,49570,49572,49574,49576,49578,49580,49582,49584,49586,49588,49590,49592,49594,49596,49598,49600,49602,49604,49606,49608,49610,49612,49614,49616,49618,49620,49622,49624,49626,49628,49630,49632,49634,49636,49638,49640,49642,49644,49646,49648,49650,49652,49654,49656,49658,49660,49662,49664,49666,49668,49670,49672,49674,49676,49678,49680,49682,49684,49686,49688,49690,49692,49694,49696,49698,49700,49702,49704,49706,49708,49710,49712,49714,49716,49718,49720,49722,49724,49726,49728,49730,49732,49734,49736,49738,49740,49742,49744,49746,49748,49750,49752,49754,49756,49758,49760,49762,49764,49766,49768,49770,49772,49774,49776,49778,49780,49782,49784,49786,49788,49790,49792,49794,49796,49798,49800,49802,49804,49806,49808,49810,49812,49814,49816,49818,49820,49822,49824,49826,49828,49830,49832,49834,49836,49838,49840,49842,49844,49846,49848,49850,49852,49854,49856,49858,49860,49862,49864,49866,49868,49870,49872,49874,49876,49878,49880,49882,49884,49886,49888,49890,49892,49894,49896,49898,49900,49902,49904,49906,49908,49910,49912,49914,49916,49918,49920,49922,49924,49926,49928,49930,49932,49934,49936,49938,49940,49942,49944,49946,49948,49950,49952,49954,49956,49958,49960,49962,49964,49966,49968,49970,49972,49974,49976,49978,49980,49982,49984,49986,49988,49990,49992,49994,49996,49999]
diff --git "a/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204378551237.txt" "b/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204378551237.txt"
deleted file mode 100644
index 34927444..00000000
--- "a/leetcode/editor/cn/doc/submission/[912]\346\216\222\345\272\217\346\225\260\347\273\204378551237.txt"
+++ /dev/null
@@ -1,103 +0,0 @@
-class Solution:
- def quick_sort(self, nums, left, right):
- flag = nums[random.randint(left, right)]
- i, j = left, right
- while i < j:
- while nums[i] < flag: i += 1
- while nums[j] > flag: j -= 1
-
- if i <= j:
- nums[i], nums[j] = nums[j], nums[i]
- i += 1
- j -= 1
- if i < right: self.quick_sort(nums, i, right)
- if j > left: self.quick_sort(nums, left, j)
-
- def sortArray(self, nums: List[int]) -> List[int]:
- # 实现一个快速排序
- self.quick_sort(nums, 0, len(nums) - 1)
- return nums
-
-
-class Solution3:
- def sortArray(self, nums: List[int]) -> List[int]:
- import random # 导入随机数函数库
- def quicksort(nums, left, right):
- flag = nums[random.randint(left, right)] # 随机初始化哨兵位置
- i, j = left, right # 设定从左到右的指针i,从右到左的指针j
- while i <= j:
- while nums[i] < flag: i += 1 # i从左往右扫,找到大于等于flag的数。
- while nums[j] > flag: j -= 1 # j从右往左扫,找到小于等于flag的数。
- if i <= j:
- nums[i], nums[j] = nums[j], nums[i] # 交换左右指针下标对应的数值
- i += 1 # 左指针继续往右走
- j -= 1 # 右指针继续往左走
- if i < right: quicksort(nums, i, right) # 递归解决flag左边的低位数组的排序
- if j > left: quicksort(nums, left, j) # 递归解决flag右边的低位数组的排序
-
- quicksort(nums, 0, len(nums) - 1) # 函数入口,将整个数组的信息传入
- return nums # 返回修改后的nums
-
-
-class Solution4:
-
- def sortArray(self, nums: List[int]) -> List[int]:
- if len(nums) == 1:
- return nums
-
- mid = len(nums) // 2
- left_list = self.sortArray(nums[:mid])
- right_list = self.sortArray(nums[mid:])
-
- res = []
- left_idx = 0
- right_idx = 0
- left_count = len(left_list)
- right_count = len(right_list)
-
- while left_idx < left_count and right_idx < right_count:
- if left_list[left_idx] < right_list[right_idx]:
- res.append(left_list[left_idx])
- left_idx += 1
- else:
- res.append(right_list[right_idx])
- right_idx += 1
-
- if left_idx < left_count:
- res.extend(left_list[left_idx:])
-
- if right_idx < right_count:
- res.extend(right_list[right_idx:])
-
- return res
-
-
-class Solution4:
- def merge_sort(self, nums, l, r):
- # 两侧都是闭合的
- if l == r:
- return
- mid = (l + r) // 2
- self.merge_sort(nums, l, mid)
- self.merge_sort(nums, mid + 1, r)
- tmp = []
- i, j = l, mid + 1
- while i <= mid or j <= r:
- if i > mid or (j <= r and nums[j] < nums[i]):
- # 左半边数组已全部被合并
- tmp.append(nums[j])
- j += 1
- else:
- # 右半边数组已全部被合并
- tmp.append(nums[i])
- i += 1
- nums[l: r + 1] = tmp
-
- def sortArray(self, nums: List[int]) -> List[int]:
- self.merge_sort(nums, 0, len(nums) - 1)
- return nums
-
-
-
-# runtime:812 ms
-# memory:21.9 MB
diff --git a/machine_learning_algorithm/__init__.py b/machine_learning_algorithm/__init__.py
deleted file mode 100644
index dd9db8ca..00000000
--- a/machine_learning_algorithm/__init__.py
+++ /dev/null
@@ -1,6 +0,0 @@
-# !/usr/bin/python
-# -*- coding: utf-8 -*-
-#
-# @date: 2022/11/24
-#
-""""""
diff --git a/machine_learning_algorithm/kmeans/README.md b/machine_learning_algorithm/kmeans/README.md
deleted file mode 100644
index 14d6f756..00000000
--- a/machine_learning_algorithm/kmeans/README.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# 实现 kmeans
-
-输入数据为:
-
-data_list = [[0,5],[0,6],[4,0],[5,0]]
-k =2
-
-对应图为:
-
-
-
-输出的结果为:
-[[0,5],[0,6]] 和 [[4,0],[5,0]]
\ No newline at end of file
diff --git a/machine_learning_algorithm/kmeans/__init__.py b/machine_learning_algorithm/kmeans/__init__.py
deleted file mode 100644
index dd9db8ca..00000000
--- a/machine_learning_algorithm/kmeans/__init__.py
+++ /dev/null
@@ -1,6 +0,0 @@
-# !/usr/bin/python
-# -*- coding: utf-8 -*-
-#
-# @date: 2022/11/24
-#
-""""""
diff --git a/machine_learning_algorithm/kmeans/kmeans.py b/machine_learning_algorithm/kmeans/kmeans.py
deleted file mode 100644
index 12ec61b4..00000000
--- a/machine_learning_algorithm/kmeans/kmeans.py
+++ /dev/null
@@ -1,66 +0,0 @@
-# !/usr/bin/python
-# -*- coding: utf-8 -*-
-#
-# @date: 2022/11/24
-#
-""""""
-import math
-
-
-class Solution:
- def distance(self, node1, node2):
- return math.sqrt(math.pow(node1[0] - node2[0], 2) + math.pow(node1[1] - node2[1], 2))
-
- def point_mean(self, point_list):
- point_x = sum([point[0] for point in point_list]) / len(point_list)
- point_y = sum([point[1] for point in point_list]) / len(point_list)
- return (point_x, point_y)
-
- def kmeans(self, data_list, k):
- # 1、随机初始化点
- k_cluster = {}
- for i in range(k):
- k_cluster[tuple(data_list[i])] = []
-
- # 2、根据距离加入质心
- for point in data_list:
- min_distance = math.inf
- min_kernel = None
- for kernel in k_cluster:
- if min_distance > self.distance(point, kernel):
- min_distance = self.distance(point, kernel)
- min_kernel = kernel
-
- k_cluster[min_kernel].append(point)
-
- # 3、开始循环迭代
- k_kernel_old = k_cluster.copy()
- while True:
- # 新一轮的迭代
- # 1、寻找当前的质心
- k_cluster = {}
- for kernel in k_kernel_old:
- kernel_mean = self.point_mean(k_kernel_old[kernel])
- k_cluster[kernel_mean] = []
-
- # 2、根据距离加入质心
- for point in data_list:
- min_distance = math.inf
- min_kernel = None
- for kernel in k_cluster:
- if min_distance > self.distance(point, kernel):
- min_distance = self.distance(point, kernel)
- min_kernel = kernel
- k_cluster[min_kernel].append(point)
-
- if k_cluster == k_kernel_old:
- print("final kmeans:", k_cluster)
- break
- else:
- k_kernel_old = k_cluster.copy()
- print("now kmeans:", k_cluster)
-
-
-if __name__ == "__main__":
- solution = Solution()
- print(solution.kmeans([[0, 5], [0, 6], [4, 0], [5, 0]], 2))
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 00000000..0d46948b
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,16 @@
+
+
+ 4.0.0
+
+ com.mmmwhy
+ algorithm_code
+ 1.0-SNAPSHOT
+
+
+ 8
+ 8
+
+
+
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/cn/MergeTwoSortedLists.java b/src/main/java/com/mmmwhy/leetcode/editor/cn/MergeTwoSortedLists.java
new file mode 100644
index 00000000..4157e7bc
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/cn/MergeTwoSortedLists.java
@@ -0,0 +1,120 @@
+/**
+将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
+
+
+
+ 示例 1:
+
+
+输入:l1 = [1,2,4], l2 = [1,3,4]
+输出:[1,1,2,3,4,4]
+
+
+ 示例 2:
+
+
+输入:l1 = [], l2 = []
+输出:[]
+
+
+ 示例 3:
+
+
+输入:l1 = [], l2 = [0]
+输出:[0]
+
+
+
+
+ 提示:
+
+
+ 两个链表的节点数目范围是 [0, 50]
+ -100 <= Node.val <= 100
+ l1 和 l2 均按 非递减顺序 排列
+
+
+ Related Topics 递归 链表 👍 2729 👎 0
+
+*/
+
+package com.mmmwhy.leetcode.editor.cn;
+public class MergeTwoSortedLists{
+ public static void main(String[] args) {
+ int[] nums1 = new int[] {1, 4, 5};
+
+ ListNode l1Start = new ListNode();
+ ListNode l1Current = l1Start;
+ for (int i : nums1) {
+ ListNode tempNode = new ListNode(i);
+ l1Current.next = tempNode;
+ l1Current = tempNode;
+ }
+
+
+ ListNode l2Start = new ListNode();
+ ListNode l2Current = l2Start;
+ for (int i : nums1) {
+ ListNode tempNode = new ListNode(i);
+ l2Current.next = tempNode;
+ l2Current = tempNode;
+ }
+
+
+
+ Solution solution = new MergeTwoSortedLists().new Solution();
+ solution.mergeTwoLists(l1Start,l2Start);
+
+ }
+ public static class ListNode {
+ int val;
+ ListNode next;
+ ListNode() {}
+ ListNode(int val) { this.val = val; }
+ ListNode(int val, ListNode next) { this.val = val; this.next = next; }
+ }
+
+ //leetcode submit region begin(Prohibit modification and deletion)
+/**
+ * Definition for singly-linked list.
+ * public class ListNode {
+ * int val;
+ * ListNode next;
+ * ListNode() {}
+ * ListNode(int val) { this.val = val; }
+ * ListNode(int val, ListNode next) { this.val = val; this.next = next; }
+ * }
+ */
+class Solution {
+ public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
+ // 构造一个虚拟的表头
+ ListNode head = new ListNode(-1);
+ ListNode p = head;
+
+ ListNode p1 = list1,p2 = list2;
+ while(p1 != null && p2 != null){
+ if(p1.val < p2.val){
+ p.next = p1;
+ p1 = p1.next;
+ }else{
+ p.next = p2;
+ p2 = p2.next;
+ }
+ p = p.next;
+ }
+
+ // 直接链接到后边
+ if(p1 != null){
+ p.next = p1;
+ }
+
+ if(p2 != null){
+ p.next = p2;
+ }
+
+ return head.next;
+ }
+}
+//leetcode submit region end(Prohibit modification and deletion)
+
+}
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/cn/PartitionList.java b/src/main/java/com/mmmwhy/leetcode/editor/cn/PartitionList.java
new file mode 100644
index 00000000..8092d45c
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/cn/PartitionList.java
@@ -0,0 +1,128 @@
+/**
+ 给你一个链表的头节点 head 和一个特定值 x ,请你对链表进行分隔,使得所有 小于 x 的节点都出现在 大于或等于 x 的节点之前。
+
+ 你应当 保留 两个分区中每个节点的初始相对位置。
+
+
+
+ 示例 1:
+
+
+ 输入:head = [1,4,3,2,5,2], x = 3
+ 输出:[1,2,2,4,3,5]
+
+
+ 示例 2:
+
+
+ 输入:head = [2,1], x = 2
+ 输出:[1,2]
+
+
+
+
+ 提示:
+
+
+ 链表中节点的数目在范围 [0, 200] 内
+ -100 <= Node.val <= 100
+ -200 <= x <= 200
+
+
+ Related Topics 链表 双指针 👍 630 👎 0
+
+ */
+
+package com.mmmwhy.leetcode.editor.cn;
+
+
+public class PartitionList{
+
+ public static void main(String[] args) {
+ Solution solution = new PartitionList().new Solution();
+
+ int[] nums1 = new int[] {1, 4, 5};
+
+ ListNode l1Start = new ListNode();
+ ListNode l1Current = l1Start;
+ for (int i : nums1) {
+ ListNode tempNode = new ListNode(i);
+ l1Current.next = tempNode;
+ l1Current = tempNode;
+ }
+
+
+ ListNode result = solution.partition(l1Start.next,1);
+ while (result != null) {
+ System.out.println(result.val);
+ result = result.next;
+ }
+ }
+ public static class ListNode {
+ int val;
+ ListNode next;
+ ListNode() {}
+ ListNode(int val) { this.val = val; }
+ ListNode(int val, ListNode next) { this.val = val; this.next = next; }
+ }
+ //leetcode submit region begin(Prohibit modification and deletion)
+ /**
+ * Definition for singly-linked list.
+ * public class ListNode {
+ * int val;
+ * ListNode next;
+ * ListNode() {}
+ * ListNode(int val) { this.val = val; }
+ * ListNode(int val, ListNode next) { this.val = val; this.next = next; }
+ * }
+ */
+ class Solution {
+ public ListNode partition(ListNode head, int x) {
+ // 构造一个虚拟的头,避免越界
+ ListNode dummy = new ListNode(-1);
+ dummy.next = head;
+
+ ListNode left = dummy;
+
+ // 先找到第一个大于等于 x 节点的左边节点
+ while(left.next != null){
+ if(left.next.val >= x){
+ // 找到了
+ break;
+ }
+ left = left.next;
+ }
+
+ // 边界情况, 所有结果都小于 x,直接返回。 或最后一位大于等于 x 。
+ if(left.next == null ){
+ return dummy.next;
+ }
+
+ // 从 left 的下一个位置出发,找到所有 小于 x 节点的左边节点
+ ListNode right = left.next;
+ while(right.next != null){
+ if(right.next.val < x){
+ // 开始给 point 换位置
+ ListNode point = right.next;
+ right.next = point.next;
+
+ // 换到 left 的左边
+ point.next = left.next;
+ left.next = point;
+ left = point; // 保证位置不变
+ }
+ // 否则继续处理后边的数字
+ if(right.next != null &&right.next.val >= x){
+ right = right.next;
+ }
+ }
+
+ return dummy.next;
+
+
+ }
+ }
+
+//leetcode submit region end(Prohibit modification and deletion)
+
+}
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/cn/doc/content/MergeTwoSortedLists.md b/src/main/java/com/mmmwhy/leetcode/editor/cn/doc/content/MergeTwoSortedLists.md
new file mode 100644
index 00000000..c417bc76
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/cn/doc/content/MergeTwoSortedLists.md
@@ -0,0 +1,36 @@
+将两个升序链表合并为一个新的 升序 链表并返回。新链表是通过拼接给定的两个链表的所有节点组成的。
+
+
+
+示例 1:
+
+
+输入:l1 = [1,2,4], l2 = [1,3,4]
+输出:[1,1,2,3,4,4]
+
+
+示例 2:
+
+
+输入:l1 = [], l2 = []
+输出:[]
+
+
+示例 3:
+
+
+输入:l1 = [], l2 = [0]
+输出:[0]
+
+
+
+
+提示:
+
+
+ - 两个链表的节点数目范围是
[0, 50]
+ -100 <= Node.val <= 100
+ l1 和 l2 均按 非递减顺序 排列
+
+
+
👍 2729👎 0
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/cn/doc/content/PartitionList.md b/src/main/java/com/mmmwhy/leetcode/editor/cn/doc/content/PartitionList.md
new file mode 100644
index 00000000..da28bafd
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/cn/doc/content/PartitionList.md
@@ -0,0 +1,31 @@
+给你一个链表的头节点 head 和一个特定值 x ,请你对链表进行分隔,使得所有 小于 x 的节点都出现在 大于或等于 x 的节点之前。
+
+你应当 保留 两个分区中每个节点的初始相对位置。
+
+
+
+示例 1:
+
+
+输入:head = [1,4,3,2,5,2], x = 3
+输出:[1,2,2,4,3,5]
+
+
+示例 2:
+
+
+输入:head = [2,1], x = 2
+输出:[1,2]
+
+
+
+
+提示:
+
+
+ - 链表中节点的数目在范围
[0, 200] 内
+ -100 <= Node.val <= 100
+ -200 <= x <= 200
+
+
+
👍 630👎 0
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/content/[1]\344\270\244\346\225\260\344\271\213\345\222\214.md" b/src/main/java/com/mmmwhy/leetcode/editor/cn/doc/content/TwoSum.md
similarity index 95%
rename from "leetcode/editor/cn/doc/content/[1]\344\270\244\346\225\260\344\271\213\345\222\214.md"
rename to src/main/java/com/mmmwhy/leetcode/editor/cn/doc/content/TwoSum.md
index ddf3e88b..130820e9 100644
--- "a/leetcode/editor/cn/doc/content/[1]\344\270\244\346\225\260\344\271\213\345\222\214.md"
+++ b/src/main/java/com/mmmwhy/leetcode/editor/cn/doc/content/TwoSum.md
@@ -41,4 +41,4 @@
进阶:你可以想出一个时间复杂度小于 O(n2) 的算法吗?
-
👍 15847👎 0
\ No newline at end of file
+
👍 15538👎 0
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P10_RegularExpressionMatching.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P10_RegularExpressionMatching.java
new file mode 100644
index 00000000..0de70e22
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P10_RegularExpressionMatching.java
@@ -0,0 +1,102 @@
+// Given an input string s and a pattern p, implement regular expression
+// matching with support for '.' and '*' where:
+//
+//
+// '.' Matches any single character.
+// '*' Matches zero or more of the preceding element.
+//
+//
+// The matching should cover the entire input string (not partial).
+//
+//
+// Example 1:
+//
+//
+// Input: s = "aa", p = "a"
+// Output: false
+// Explanation: "a" does not match the entire string "aa".
+//
+//
+// Example 2:
+//
+//
+// Input: s = "aa", p = "a*"
+// Output: true
+// Explanation: '*' means zero or more of the preceding element, 'a'. Therefore,
+// by repeating 'a' once, it becomes "aa".
+//
+//
+// Example 3:
+//
+//
+// Input: s = "ab", p = ".*"
+// Output: true
+// Explanation: ".*" means "zero or more (*) of any character (.)".
+//
+//
+//
+// Constraints:
+//
+//
+// 1 <= s.length <= 20
+// 1 <= p.length <= 30
+// s contains only lowercase English letters.
+// p contains only lowercase English letters, '.', and '*'.
+// It is guaranteed for each appearance of the character '*', there will be a
+// previous valid character to match.
+//
+// Related Topics String Dynamic Programming Recursion 👍 7608 👎 1096
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P10_RegularExpressionMatching {
+ public static void main(String[] args) {
+ Solution solution = new P10_RegularExpressionMatching().new Solution();
+ System.out.println(solution.isMatch("aa", "a"));
+ System.out.println(solution.isMatch("a", "a*"));
+ System.out.println(solution.isMatch("ab", ".*"));
+ System.out.println(solution.isMatch("aaasdfasdf", ".*"));
+ System.out.println(solution.isMatch("aab", "c*a*b"));
+ System.out.println(solution.isMatch("mississippi", "mis*is*p*."));
+ System.out.println(solution.isMatch("aaa", "ab*a*c*a"));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+
+ public boolean isMatch(String s, String p) {
+ if (s == null || p == null) return false;
+
+ // 动态规划
+ // 0、如果 s[0:i) 可以匹配上 p[0:j) ,则将 dp[i][j] 定义为 true;
+ // 1、dp[i][j] = dp[i-1][j-1], if (p[i-1]==s[j-1] || p[j-1]=='.') && p[j-1] != '*'
+ // 2、dp[i][j] = dp[i][j-2], if p[j-1] == '*',在只匹配0次的时候触发
+ // 3、dp[i][j] = dp[i-1][j] && (s[i-1] == p[j-2] || p[j-2] == '.'),在 p[j-1] == '*' 的时候触发,至少重复一次
+ int m = s.length();
+ int n = p.length();
+ boolean[][] dp = new boolean[m + 1][n + 1];
+ dp[0][0] = true;
+ for (int i = 0; i <= m; i++) {
+ for (int j = 1; j <= n; j++) {
+ if (p.charAt(j - 1) == '*') {
+ // 匹配 0 次 和至少一次
+ dp[i][j] =
+ dp[i][j - 2]
+ || (i != 0
+ && dp[i - 1][j]
+ && (p.charAt(j - 2) == '.' || s.charAt(i - 1) == p.charAt(j - 2)));
+ } else {
+ dp[i][j] =
+ i != 0
+ && dp[i - 1][j - 1]
+ && (s.charAt(i - 1) == p.charAt(j - 1) || p.charAt(j - 1) == '.');
+ }
+ }
+ }
+
+ return dp[m][n];
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P11_ContainerWithMostWater.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P11_ContainerWithMostWater.java
new file mode 100644
index 00000000..a3f4b367
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P11_ContainerWithMostWater.java
@@ -0,0 +1,108 @@
+// You are given an integer array height of length n. There are n vertical lines
+// drawn such that the two endpoints of the iᵗʰ line are (i, 0) and (i, height[i]).
+//
+//
+// Find two lines that together with the x-axis form a container, such that the
+// container contains the most water.
+//
+// Return the maximum amount of water a container can store.
+//
+// Notice that you may not slant the container.
+//
+//
+// Example 1:
+//
+//
+// Input: height = [1,8,6,2,5,4,8,3,7]
+// Output: 49
+// Explanation: The above vertical lines are represented by array [1,8,6,2,5,4,8,
+// 3,7]. In this case, the max area of water (blue section) the container can
+// contain is 49.
+//
+//
+// Example 2:
+//
+//
+// Input: height = [1,1]
+// Output: 1
+//
+//
+//
+// Constraints:
+//
+//
+// n == height.length
+// 2 <= n <= 10⁵
+// 0 <= height[i] <= 10⁴
+//
+// Related Topics Array Two Pointers Greedy 👍 14656 👎 878
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.Arrays;
+
+public class P11_ContainerWithMostWater {
+ public static void main(String[] args) {
+ Solution solution = new P11_ContainerWithMostWater().new Solution();
+ // 49
+ System.out.println(solution.maxArea(new int[] {1, 8, 6, 2, 5, 4, 8, 3, 7}));
+ // 1
+ System.out.println(solution.maxArea(new int[] {1, 1}));
+ // 18048
+ System.out.println(
+ solution.maxArea(
+ new int[] {
+ 76, 155, 15, 188, 180, 154, 84, 34, 187, 142, 22, 5, 27, 183, 111, 128, 50, 58, 2,
+ 112, 179, 2, 100, 111, 115, 76, 134, 120, 118, 103, 31, 146, 58, 198, 134, 38, 104,
+ 170, 25, 92, 112, 199, 49, 140, 135, 160, 20, 185, 171, 23, 98, 150, 177, 198, 61, 92,
+ 26, 147, 164, 144, 51, 196, 42, 109, 194, 177, 100, 99, 99, 125, 143, 12, 76, 192,
+ 152, 11, 152, 124, 197, 123, 147, 95, 73, 124, 45, 86, 168, 24, 34, 133, 120, 85, 81,
+ 163, 146, 75, 92, 198, 126, 191
+ }));
+ // 4
+ System.out.println(solution.maxArea(new int[] {1, 2, 4, 3}));
+ // 6
+ System.out.println(solution.maxArea(new int[] {1, 4, 2, 3}));
+ // 24
+ System.out.println(solution.maxArea(new int[] {1, 3, 2, 5, 25, 24, 5}));
+ // 200
+ System.out.println(solution.maxArea(new int[] {1, 8, 100, 2, 100, 4, 8, 3, 7}));
+ // 62
+ System.out.println(solution.maxArea(new int[] {6, 4, 3, 1, 4, 6, 99, 62, 1, 2, 6}));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public int maxArea(int[] height) {
+ // 那一边小,调整那一边
+ // if height[left] < height[right], left ++
+ // else right --
+
+ int nowArea = 0;
+ int left = 0, right = height.length - 1;
+
+ while (left < right) {
+ nowArea = Math.max(nowArea, (right - left) * (Math.min(height[left], height[right])));
+ if (height[left] < height[right]) {
+ left++;
+ } else {
+ right--;
+ }
+ }
+ return nowArea;
+ }
+
+ // 递归,目测会超时。
+ public int maxArea2(int[] height) {
+ int nowArea = (height.length - 1) * (Math.min(height[0], height[height.length - 1]));
+ if (height.length >= 2) {
+ int leftMoveArea = maxArea(Arrays.copyOfRange(height, 1, height.length));
+ int rightMoveArea = maxArea(Arrays.copyOfRange(height, 0, height.length - 1));
+ nowArea = Math.max(nowArea, Math.max(leftMoveArea, rightMoveArea));
+ }
+ return nowArea;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P12_IntegerToRoman.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P12_IntegerToRoman.java
new file mode 100644
index 00000000..07053ce2
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P12_IntegerToRoman.java
@@ -0,0 +1,144 @@
+// Roman numerals are represented by seven different symbols: I, V, X, L, C, D
+// and M.
+//
+//
+// Symbol Value
+// I 1
+// V 5
+// X 10
+// L 50
+// C 100
+// D 500
+// M 1000
+//
+// For example, 2 is written as II in Roman numeral, just two one's added
+// together. 12 is written as XII, which is simply X + II. The number 27 is written as
+// XXVII, which is XX + V + II.
+//
+// Roman numerals are usually written largest to smallest from left to right.
+// However, the numeral for four is not IIII. Instead, the number four is written as
+// IV. Because the one is before the five we subtract it making four. The same
+// principle applies to the number nine, which is written as IX. There are six
+// instances where subtraction is used:
+//
+//
+// I can be placed before V (5) and X (10) to make 4 and 9.
+// X can be placed before L (50) and C (100) to make 40 and 90.
+// C can be placed before D (500) and M (1000) to make 400 and 900.
+//
+//
+// Given an integer, convert it to a roman numeral.
+//
+//
+// Example 1:
+//
+//
+// Input: num = 3
+// Output: "III"
+// Explanation: 3 is represented as 3 ones.
+//
+//
+// Example 2:
+//
+//
+// Input: num = 58
+// Output: "LVIII"
+// Explanation: L = 50, V = 5, III = 3.
+//
+//
+// Example 3:
+//
+//
+// Input: num = 1994
+// Output: "MCMXCIV"
+// Explanation: M = 1000, CM = 900, XC = 90 and IV = 4.
+//
+//
+//
+// Constraints:
+//
+//
+// 1 <= num <= 3999
+//
+// Related Topics Hash Table Math String 👍 2850 👎 3841
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P12_IntegerToRoman {
+ public static void main(String[] args) {
+ Solution solution = new P12_IntegerToRoman().new Solution();
+ System.out.println(solution.intToRoman(3));
+ System.out.println(solution.intToRoman(40));
+ System.out.println(solution.intToRoman(58));
+ System.out.println(solution.intToRoman(1994));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public String intToRoman(int num) {
+ StringBuilder result = new StringBuilder();
+ // 大于 1000 的部分
+ while (num >= 1000) {
+ num = num - 1000;
+ result.append("M");
+ }
+
+ // 1000 ~ 100 的部分
+ if (num >= 900) {
+ num -= 900;
+ result.append("CM");
+ }
+ if (num >= 500) {
+ num -= 500;
+ result.append("D");
+ }
+ if (num >= 400) {
+ num -= 400;
+ result.append("CD");
+ }
+ while (num >= 100) {
+ num -= 100;
+ result.append("C");
+ }
+
+ // 100 ~ 10 的部分
+ if (num >= 90) {
+ num -= 90;
+ result.append("XC");
+ }
+ if (num >= 50) {
+ num -= 50;
+ result.append("L");
+ }
+ if (num >= 40) {
+ num -= 40;
+ result.append("XL");
+ }
+ while (num >= 10) {
+ num -= 10;
+ result.append("X");
+ }
+
+ // 10 ~ 0 的部分
+ if (num >= 9) {
+ num -= 9;
+ result.append("IX");
+ }
+ if (num >= 5) {
+ num -= 5;
+ result.append("V");
+ }
+ if (num >= 4) {
+ num -= 4;
+ result.append("IV");
+ }
+ while (num >= 1) {
+ num -= 1;
+ result.append("I");
+ }
+ return result.toString();
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P13_RomanToInteger.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P13_RomanToInteger.java
new file mode 100644
index 00000000..2268b30b
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P13_RomanToInteger.java
@@ -0,0 +1,165 @@
+// Roman numerals are represented by seven different symbols: I, V, X, L, C, D
+// and M.
+//
+//
+// Symbol Value
+// I 1
+// V 5
+// X 10
+// L 50
+// C 100
+// D 500
+// M 1000
+//
+// For example, 2 is written as II in Roman numeral, just two one's added
+// together. 12 is written as XII, which is simply X + II. The number 27 is written as
+// XXVII, which is XX + V + II.
+//
+// Roman numerals are usually written largest to smallest from left to right.
+// However, the numeral for four is not IIII. Instead, the number four is written as
+// IV. Because the one is before the five we subtract it making four. The same
+// principle applies to the number nine, which is written as IX. There are six
+// instances where subtraction is used:
+//
+//
+// I can be placed before V (5) and X (10) to make 4 and 9.
+// X can be placed before L (50) and C (100) to make 40 and 90.
+// C can be placed before D (500) and M (1000) to make 400 and 900.
+//
+//
+// Given a roman numeral, convert it to an integer.
+//
+//
+// Example 1:
+//
+//
+// Input: s = "III"
+// Output: 3
+// Explanation: III = 3.
+//
+//
+// Example 2:
+//
+//
+// Input: s = "LVIII"
+// Output: 58
+// Explanation: L = 50, V= 5, III = 3.
+//
+//
+// Example 3:
+//
+//
+// Input: s = "MCMXCIV"
+// Output: 1994
+// Explanation: M = 1000, CM = 900, XC = 90 and IV = 4.
+//
+//
+//
+// Constraints:
+//
+//
+// 1 <= s.length <= 15
+// s contains only the characters ('I', 'V', 'X', 'L', 'C', 'D', 'M').
+// It is guaranteed that s is a valid roman numeral in the range [1, 3999].
+//
+// Related Topics Hash Table Math String 👍 3304 👎 233
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P13_RomanToInteger {
+ public static void main(String[] args) {
+ Solution solution = new P13_RomanToInteger().new Solution();
+ System.out.println(solution.romanToInt("III"));
+ System.out.println(solution.romanToInt("XL"));
+ System.out.println(solution.romanToInt("LVIII"));
+ System.out.println(solution.romanToInt("MCMXCIV"));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public int romanToInt(String s) {
+ int left = 0;
+ int result = 0;
+
+ // 计算 M 位 (1000)
+ while (left < s.length() && s.charAt(left) == 'M') {
+ left++;
+ result += 1000;
+ }
+ // 计算 CM 位 (900)
+ while (left + 1 < s.length() && s.startsWith("CM", left)) {
+ left += 2;
+ result += 900;
+ }
+
+ // 计算 D 位 (500)
+ while (left < s.length() && s.charAt(left) == 'D') {
+ left++;
+ result += 500;
+ }
+
+ // 计算 CD 位 (400)
+ while (left + 1 < s.length() && s.startsWith("CD", left)) {
+ left += 2;
+ result += 400;
+ }
+
+ // 计算 M 位 (100)
+ while (left < s.length() && s.charAt(left) == 'C') {
+ left++;
+ result += 100;
+ }
+
+ // 计算 XC 位 (90)
+ while (left + 1 < s.length() && s.startsWith("XC", left)) {
+ left += 2;
+ result += 90;
+ }
+
+ // 计算 L 位 (50)
+ while (left < s.length() && s.charAt(left) == 'L') {
+ left++;
+ result += 50;
+ }
+
+ // 计算 XC 位 (40)
+ while (left + 1 < s.length() && s.startsWith("XL", left)) {
+ left += 2;
+ result += 40;
+ }
+
+ // 计算 L 位 (10)
+ while (left < s.length() && s.charAt(left) == 'X') {
+ left++;
+ result += 10;
+ }
+
+ // 计算 XC 位 (9)
+ while (left + 1 < s.length() && s.startsWith("IX", left)) {
+ left += 2;
+ result += 9;
+ }
+
+ // 计算 L 位 (5)
+ while (left < s.length() && s.charAt(left) == 'V') {
+ left++;
+ result += 5;
+ }
+
+ // 计算 XC 位 (4)
+ while (left + 1 < s.length() && s.startsWith("IV", left)) {
+ left += 2;
+ result += 4;
+ }
+
+ // 计算 L 位 (1)
+ while (left < s.length() && s.charAt(left) == 'I') {
+ left++;
+ result += 1;
+ }
+ return result;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P14_LongestCommonPrefix.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P14_LongestCommonPrefix.java
new file mode 100644
index 00000000..884b6074
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P14_LongestCommonPrefix.java
@@ -0,0 +1,76 @@
+// Write a function to find the longest common prefix string amongst an array of
+// strings.
+//
+// If there is no common prefix, return an empty string "".
+//
+//
+// Example 1:
+//
+//
+// Input: strs = ["flower","flow","flight"]
+// Output: "fl"
+//
+//
+// Example 2:
+//
+//
+// Input: strs = ["dog","racecar","car"]
+// Output: ""
+// Explanation: There is no common prefix among the input strings.
+//
+//
+//
+// Constraints:
+//
+//
+// 1 <= strs.length <= 200
+// 0 <= strs[i].length <= 200
+// strs[i] consists of only lower-case English letters.
+//
+// Related Topics String 👍 7154 👎 2843
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P14_LongestCommonPrefix {
+ public static void main(String[] args) {
+ Solution solution = new P14_LongestCommonPrefix().new Solution();
+ System.out.println(solution.longestCommonPrefix(new String[] {"flower", "flow", "flight"}));
+ System.out.println(solution.longestCommonPrefix(new String[] {"fower", "flow", "flight"}));
+ System.out.println(solution.longestCommonPrefix(new String[] {"f", "f", "f"}));
+ System.out.println(solution.longestCommonPrefix(new String[] {"a", "", "b"}));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public String longestCommonPrefix(String[] strs) {
+ int minLength = Integer.MAX_VALUE;
+ for (String str : strs) {
+ minLength = Math.min(minLength, str.length());
+ }
+
+ StringBuffer res = new StringBuffer();
+
+ for (int i = 0; i < minLength; i++) {
+ // i 表示的是每一个字
+ int j = 1;
+ for (; j < strs.length; j++) {
+ // j 表示的是每一个句子,从第二个句子开始
+ if (strs[j].charAt(i) != strs[j - 1].charAt(i)) {
+ break;
+ }
+ }
+ // 如果这个字循环结束了
+ if (j == strs.length) {
+ res.append(strs[0].charAt(i));
+ } else {
+ // 后续的也不用看了
+ break;
+ }
+ }
+
+ return res.toString();
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P15_ThreeSum.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P15_ThreeSum.java
new file mode 100644
index 00000000..d4725b1f
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P15_ThreeSum.java
@@ -0,0 +1,251 @@
+// Given an integer array nums, return all the triplets [nums[i], nums[j], nums[
+// k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0.
+//
+// Notice that the solution set must not contain duplicate triplets.
+//
+//
+// Example 1:
+// Input: nums = [-1,0,1,2,-1,-4]
+// Output: [[-1,-1,2],[-1,0,1]]
+// Example 2:
+// Input: nums = []
+// Output: []
+// Example 3:
+// Input: nums = [0]
+// Output: []
+//
+//
+// Constraints:
+//
+//
+// 0 <= nums.length <= 3000
+// -10⁵ <= nums[i] <= 10⁵
+//
+// Related Topics Array Two Pointers Sorting 👍 16384 👎 1569
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.*;
+
+public class P15_ThreeSum {
+ public static void main(String[] args) {
+ Solution solution = new P15_ThreeSum().new Solution();
+ System.out.println(solution.threeSum(new int[] {0, 0, 0}));
+ System.out.println(solution.threeSum(new int[] {-1, 0, 1, 2, -1, -4}));
+ System.out.println(solution.threeSum(new int[] {}));
+ System.out.println(
+ solution.threeSum(
+ new int[] {
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1
+ }));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public List> threeSum(int[] nums) {
+ Arrays.sort(nums);
+ List> result = new ArrayList<>();
+ for (int i = 0; i < nums.length - 2; i++) {
+ // 因为数组是有序的,nums[i] 如果大于 0 了,则后边的元素更大于 0 了。
+ // 两个 i 没必要一样,因为上一个 i 已经考虑过现在的情况了
+ if (nums[i] <= 0 && (i == 0 || nums[i] != nums[i - 1])) {
+ // 留两个位置给 j 和 k
+ int j = i + 1, k = nums.length - 1, target = -nums[i];
+
+ while (j < k) {
+ if (nums[j] + nums[k] == target) {
+ result.add(Arrays.asList(nums[i], nums[j], nums[k]));
+ // 重复的地方跳跃过
+ while (j < k && nums[j + 1] == nums[j]) j++;
+ while (j < k && nums[k - 1] == nums[k]) k--;
+ k--;
+ j++;
+ } else if (nums[j] + nums[k] < target) {
+ j++;
+ } else {
+ k--;
+ }
+ }
+ }
+ }
+ return result;
+ }
+
+ public List> threeSum2(int[] nums) {
+ // 我们尝试实现 n^2 的算法
+
+ List> result = new ArrayList<>();
+ Map map = new HashMap();
+ // 构建一个 set ,用于 string 后去重
+ Set set = new HashSet<>();
+
+ for (int i = 0; i < nums.length; i++) {
+ // 需要 -i 的时候,可以用 i 了
+ map.put(-nums[i], i);
+ }
+
+ for (int j = 0; j < nums.length; j++) {
+ for (int k = j + 1; k < nums.length; k++) {
+ // 如果存在需要的元素,且需要的元素不能是自身
+ int remain = nums[j] + nums[k];
+ if (map.containsKey(remain) && map.get(remain) != j && map.get(remain) != k) {
+ List singleResult =
+ new ArrayList<>(Arrays.asList(nums[j], nums[k], nums[map.get(remain)]));
+ Collections.sort(singleResult);
+ if (!set.contains(singleResult.toString())) {
+ result.add(singleResult);
+ set.add(singleResult.toString());
+ }
+ }
+ }
+ }
+
+ return result;
+ }
+
+ // 三次循环
+ public List> threeSum3(int[] nums) {
+ List> result = new ArrayList<>();
+ // 构建一个 set ,用于 string 后去重
+ Set set = new HashSet<>();
+
+ for (int i = 0; i < nums.length; i++) {
+ int i_remain = -nums[i];
+ for (int j = i + 1; j < nums.length; j++) {
+ int j_remain = i_remain - nums[j];
+ for (int k = j + 1; k < nums.length; k++) {
+ if (j_remain == nums[k]) {
+ // 这里只有三个数排序,耗时应该是可以接受的
+ List singleResult =
+ new ArrayList<>(Arrays.asList(nums[i], nums[j], nums[k]));
+ Collections.sort(singleResult);
+ if (!set.contains(singleResult.toString())) {
+ result.add(singleResult);
+ set.add(singleResult.toString());
+ }
+ }
+ }
+ }
+ }
+ return result;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P16_ThreeSumClosest.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P16_ThreeSumClosest.java
new file mode 100644
index 00000000..ed90302f
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P16_ThreeSumClosest.java
@@ -0,0 +1,87 @@
+// Given an integer array nums of length n and an integer target, find three
+// integers in nums such that the sum is closest to target.
+//
+// Return the sum of the three integers.
+//
+// You may assume that each input would have exactly one solution.
+//
+//
+// Example 1:
+//
+//
+// Input: nums = [-1,2,1,-4], target = 1
+// Output: 2
+// Explanation: The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).
+//
+//
+// Example 2:
+//
+//
+// Input: nums = [0,0,0], target = 1
+// Output: 0
+//
+//
+//
+// Constraints:
+//
+//
+// 3 <= nums.length <= 1000
+// -1000 <= nums[i] <= 1000
+// -10⁴ <= target <= 10⁴
+//
+// Related Topics Array Two Pointers Sorting 👍 5370 👎 234
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.Arrays;
+
+public class P16_ThreeSumClosest {
+ public static void main(String[] args) {
+ Solution solution = new P16_ThreeSumClosest().new Solution();
+ System.out.println(solution.threeSumClosest(new int[] {-1, 2, 1, -4}, 1));
+ System.out.println(solution.threeSumClosest(new int[] {0, 0, 0}, 1));
+ System.out.println(solution.threeSumClosest(new int[] {1, 1, 5}, 7));
+ System.out.println(solution.threeSumClosest(new int[] {1, 1, -1, -1, 3}, -1));
+ System.out.println(solution.threeSumClosest(new int[] {1, 2, 4, 8, 16, 32, 64, 128}, 82));
+ System.out.println(solution.threeSumClosest(new int[] {4, 0, 5, -5, 3, 3, 0, -4, -5}, -2));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public int threeSumClosest(int[] nums, int target) {
+ // 对于每一个元素,都转化为 twosum
+ Arrays.sort(nums);
+ int finalClosest = 10000000;
+ for (int i = 0; i < nums.length - 2; i++) {
+ // 给后边两个元素留位置, tempClosest 是计算在这一次 twosum 中最相近的结果
+ int tempClosest = 10000000;
+ int j = i + 1, k = nums.length - 1;
+ while (j < k) {
+ int tempSum = nums[i] + nums[j] + nums[k];
+ // update
+ if (Math.abs(target - tempSum) < Math.abs(target - tempClosest)) {
+ tempClosest = tempSum;
+ }
+
+ // 根据 tempSum 的结果修正左右指针的位置
+ if (tempSum == target) {
+ // 完美情况,目标直接达成,不考虑后续情况,直接返回;
+ return target;
+ } else if (tempSum < target) {
+ j++;
+ } else {
+ k--;
+ }
+ }
+
+ // 外部更新
+ if (Math.abs(target - tempClosest) < Math.abs(target - finalClosest)) {
+ finalClosest = tempClosest;
+ }
+ }
+ return finalClosest;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P17_LetterCombinationsOfAPhoneNumber.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P17_LetterCombinationsOfAPhoneNumber.java
new file mode 100644
index 00000000..e5776e85
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P17_LetterCombinationsOfAPhoneNumber.java
@@ -0,0 +1,138 @@
+// Given a string containing digits from 2-9 inclusive, return all possible
+// letter combinations that the number could represent. Return the answer in any order.
+//
+//
+// A mapping of digit to letters (just like on the telephone buttons) is given
+// below. Note that 1 does not map to any letters.
+//
+//
+//
+//
+// Example 1:
+//
+//
+// Input: digits = "23"
+// Output: ["ad","ae","af","bd","be","bf","cd","ce","cf"]
+//
+//
+// Example 2:
+//
+//
+// Input: digits = ""
+// Output: []
+//
+//
+// Example 3:
+//
+//
+// Input: digits = "2"
+// Output: ["a","b","c"]
+//
+//
+//
+// Constraints:
+//
+//
+// 0 <= digits.length <= 4
+// digits[i] is a digit in the range ['2', '9'].
+//
+// Related Topics Hash Table String Backtracking 👍 9187 👎 640
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+public class P17_LetterCombinationsOfAPhoneNumber {
+ public static void main(String[] args) {
+ Solution solution = new P17_LetterCombinationsOfAPhoneNumber().new Solution();
+ System.out.println(solution.letterCombinations("23"));
+ System.out.println(solution.letterCombinations("2345"));
+ System.out.println(solution.letterCombinations("2"));
+ System.out.println(solution.letterCombinations(""));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public List letterCombinations(String digits) {
+
+ return helper(new ArrayList<>(), digits);
+ }
+
+ public List helper(List lastResult, String remainDigits) {
+ Map map = new HashMap();
+ map.put('2', "abc");
+ map.put('3', "def");
+ map.put('4', "ghi");
+ map.put('5', "jkl");
+ map.put('6', "mno");
+ map.put('7', "pqrs");
+ map.put('8', "tuv");
+ map.put('9', "wxyz");
+
+ // 到头了
+ if (remainDigits.length() == 0) {
+ return lastResult;
+ }
+ // 第一个字
+ if (lastResult.isEmpty()) {
+ ArrayList result = new ArrayList<>();
+ for (int j = 0; j < map.get(remainDigits.charAt(0)).length(); j++) {
+ // 每个数字对应的字符
+ result.add(String.valueOf(map.get(remainDigits.charAt(0)).charAt(j)));
+ }
+ return helper(result, remainDigits.substring(1));
+ }
+
+ // 其余字
+ ArrayList resultList = new ArrayList();
+ for (String line : lastResult) {
+ for (int j = 0; j < map.get(remainDigits.charAt(0)).length(); j++) {
+ // 每个数字对应的字符
+ resultList.add(line + map.get(remainDigits.charAt(0)).charAt(j));
+ }
+ }
+ return helper(resultList, remainDigits.substring(1));
+ }
+
+ public List letterCombinations2(String digits) {
+ Map map = new HashMap();
+ map.put('2', "abc");
+ map.put('3', "def");
+ map.put('4', "ghi");
+ map.put('5', "jkl");
+ map.put('6', "mno");
+ map.put('7', "pqrs");
+ map.put('8', "tuv");
+ map.put('9', "wxyz");
+
+ ArrayList result = new ArrayList<>();
+ ArrayList newResult = new ArrayList<>();
+
+ for (int i = 0; i < digits.length(); i++) {
+ if (i == 0) {
+ // 第一个数字肯定会命中
+ for (int j = 0; j < map.get(digits.charAt(i)).length(); j++) {
+ // 每个数字对应的字符
+ result.add(String.valueOf(map.get(digits.charAt(i)).charAt(j)));
+ }
+ } else {
+ for (int k = 0; k < result.size(); k++) {
+ for (int j = 0; j < map.get(digits.charAt(i)).length(); j++) {
+ // 每个数字对应的字符
+ newResult.add(result.get(k) + map.get(digits.charAt(i)).charAt(j));
+ }
+ }
+ result = (ArrayList) newResult.clone();
+ newResult.clear();
+ }
+ }
+
+ return result;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P18_FourSum.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P18_FourSum.java
new file mode 100644
index 00000000..92bdcffb
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P18_FourSum.java
@@ -0,0 +1,86 @@
+// Given an array nums of n integers, return an array of all the unique
+// quadruplets [nums[a], nums[b], nums[c], nums[d]] such that:
+//
+//
+// 0 <= a, b, c, d < n
+// a, b, c, and d are distinct.
+// nums[a] + nums[b] + nums[c] + nums[d] == target
+//
+//
+// You may return the answer in any order.
+//
+//
+// Example 1:
+//
+//
+// Input: nums = [1,0,-1,0,-2,2], target = 0
+// Output: [[-2,-1,1,2],[-2,0,0,2],[-1,0,0,1]]
+//
+//
+// Example 2:
+//
+//
+// Input: nums = [2,2,2,2,2], target = 8
+// Output: [[2,2,2,2]]
+//
+//
+//
+// Constraints:
+//
+//
+// 1 <= nums.length <= 200
+// -10⁹ <= nums[i] <= 10⁹
+// -10⁹ <= target <= 10⁹
+//
+// Related Topics Array Two Pointers Sorting 👍 5726 👎 653
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.*;
+
+public class P18_FourSum {
+ public static void main(String[] args) {
+ Solution solution = new P18_FourSum().new Solution();
+ System.out.println(solution.fourSum(new int[] {1, 0, -1, 0, -2, 2}, 0));
+ System.out.println(solution.fourSum(new int[] {2, 2, 2, 2, 2}, 8));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public List> fourSum(int[] nums, int target) {
+ // 构造一个 set string,避免重复
+ Set set = new HashSet<>();
+
+ // 对于每一个元素,都转化为 threesum
+ Arrays.sort(nums);
+ List> result = new ArrayList<>();
+ for (int i = 0; i < nums.length - 3; i++) {
+ // 保留三个位置给 j,k,l
+ // 结果不重复,因此重复位置直接跳过;
+ for (int j = i + 1; j < nums.length - 2; j++) {
+ // 保留两个位置给 k,l
+ // 结果不重复,重复位置直接跳过
+ int k = j + 1, l = nums.length - 1;
+ while (k < l) {
+ if (nums[i] + nums[j] + nums[k] + nums[l] == target) {
+ List tempResult = Arrays.asList(nums[i], nums[j], nums[k], nums[l]);
+ if (!set.contains(tempResult.toString())) {
+ result.add(Arrays.asList(nums[i], nums[j], nums[k], nums[l]));
+ set.add(tempResult.toString());
+ }
+ k++;
+ l--;
+ } else if (nums[i] + nums[j] + nums[k] + nums[l] < target) {
+ k++;
+ } else {
+ l--;
+ }
+ }
+ }
+ }
+ return result;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P19_RemoveNthNodeFromEndOfList.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P19_RemoveNthNodeFromEndOfList.java
new file mode 100644
index 00000000..fa9c70bd
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P19_RemoveNthNodeFromEndOfList.java
@@ -0,0 +1,119 @@
+// Given the head of a linked list, remove the nᵗʰ node from the end of the list
+// and return its head.
+//
+//
+// Example 1:
+//
+//
+// Input: head = [1,2,3,4,5], n = 2
+// Output: [1,2,3,5]
+//
+//
+// Example 2:
+//
+//
+// Input: head = [1], n = 1
+// Output: []
+//
+//
+// Example 3:
+//
+//
+// Input: head = [1,2], n = 1
+// Output: [1]
+//
+//
+//
+// Constraints:
+//
+//
+// The number of nodes in the list is sz.
+// 1 <= sz <= 30
+// 0 <= Node.val <= 100
+// 1 <= n <= sz
+//
+//
+//
+// Follow up: Could you do this in one pass?
+// Related Topics Linked List Two Pointers 👍 9105 👎 431
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P19_RemoveNthNodeFromEndOfList {
+ public static void main(String[] args) {
+ Solution solution = new P19_RemoveNthNodeFromEndOfList().new Solution();
+ int[] nums = new int[] {1};
+
+ ListNode l1Start = new ListNode();
+ ListNode l1Current = l1Start;
+ for (int i : nums) {
+ ListNode temp_node = new ListNode(i);
+ l1Current.next = temp_node;
+ l1Current = temp_node;
+ }
+ ListNode result = solution.removeNthFromEnd(l1Start.next, 1);
+ while (result != null) {
+ System.out.println(result.val);
+ result = result.next;
+ }
+ }
+
+ public static class ListNode {
+ int val;
+ ListNode next;
+
+ ListNode() {}
+
+ ListNode(int val) {
+ this.val = val;
+ }
+
+ ListNode(int val, ListNode next) {
+ this.val = val;
+ this.next = next;
+ }
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+
+ /**
+ * Definition for singly-linked list. public class ListNode { int val; ListNode next; ListNode()
+ * {} ListNode(int val) { this.val = val; } ListNode(int val, ListNode next) { this.val = val;
+ * this.next = next; } }
+ */
+ class Solution {
+ public ListNode removeNthFromEnd(ListNode head, int n) {
+ // 边界条件 head 为空时
+ if (head == null) {
+ return null;
+ }
+ // 让快结点先走 n 步
+ ListNode quickNode = head;
+
+ // 慢结点在快结点走了 n 步后,跟着继续走
+ ListNode slowNode = head;
+
+ // 先让快的先走
+ while (quickNode != null && n > 0) {
+ quickNode = quickNode.next;
+ n--;
+ }
+ // 如果 quick 已经是 null 了, 说明 n >= sz (node 的长度), 而给过限制条件,说明 n <= sz
+ // 则此时边界条件 n = sz 了
+ if (quickNode == null) {
+ return head.next;
+ }
+
+ while (quickNode.next != null) {
+ quickNode = quickNode.next;
+ slowNode = slowNode.next;
+ }
+ // 对位置开始调整
+ slowNode.next = slowNode.next.next;
+
+ return head;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P1_TwoSum.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P1_TwoSum.java
new file mode 100644
index 00000000..e9e9a872
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P1_TwoSum.java
@@ -0,0 +1,76 @@
+// Given an array of integers nums and an integer target, return indices of the t
+// wo numbers such that they add up to target.
+//
+// You may assume that each input would have exactly one solution, and you may n
+// ot use the same element twice.
+//
+// You can return the answer in any order.
+//
+//
+// Example 1:
+//
+//
+// Input: nums = [2,7,11,15], target = 9
+// Output: [0,1]
+// Output: Because nums[0] + nums[1] == 9, we return [0, 1].
+//
+//
+// Example 2:
+//
+//
+// Input: nums = [3,2,4], target = 6
+// Output: [1,2]
+//
+//
+// Example 3:
+//
+//
+// Input: nums = [3,3], target = 6
+// Output: [0,1]
+//
+//
+//
+// Constraints:
+//
+//
+// 2 <= nums.length <= 104
+// -109 <= nums[i] <= 109
+// -109 <= target <= 109
+// Only one valid answer exists.
+//
+//
+//
+// Follow-up: Can you come up with an algorithm that is less than O(n2) time comp
+// lexity? Related Topics Array Hash Table
+// 👍 26752 👎 861
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.Arrays;
+import java.util.HashMap;
+import java.util.Map;
+
+public class P1_TwoSum {
+ public static void main(String[] args) {
+ Solution solution = new P1_TwoSum().new Solution();
+ int[] result = solution.twoSum(new int[] {2, 7, 11, 15}, 9);
+ System.out.println(Arrays.toString(result));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public int[] twoSum(int[] nums, int target) {
+ Map map = new HashMap();
+ for (int i = 0; i < nums.length; i++) {
+ int need = target - nums[i];
+ if (map.containsKey(need)) {
+ return new int[] {map.get(need), i};
+ }
+ map.put(nums[i], i);
+ }
+ throw new IllegalArgumentException("No two sum solution");
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P20_ValidParentheses.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P20_ValidParentheses.java
new file mode 100644
index 00000000..c718280f
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P20_ValidParentheses.java
@@ -0,0 +1,87 @@
+// Given a string s containing just the characters '(', ')', '{', '}', '[' and ']
+// ', determine if the input string is valid.
+//
+// An input string is valid if:
+//
+//
+// Open brackets must be closed by the same type of brackets.
+// Open brackets must be closed in the correct order.
+//
+//
+//
+// Example 1:
+//
+//
+// Input: s = "()"
+// Output: true
+//
+//
+// Example 2:
+//
+//
+// Input: s = "()[]{}"
+// Output: true
+//
+//
+// Example 3:
+//
+//
+// Input: s = "(]"
+// Output: false
+//
+//
+//
+// Constraints:
+//
+//
+// 1 <= s.length <= 10⁴
+// s consists of parentheses only '()[]{}'.
+//
+// Related Topics String Stack 👍 11826 👎 517
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.Stack;
+
+public class P20_ValidParentheses {
+ public static void main(String[] args) {
+ Solution solution = new P20_ValidParentheses().new Solution();
+ System.out.println(solution.isValid("()"));
+ System.out.println(solution.isValid("()[]{}"));
+ System.out.println(solution.isValid("(]"));
+ System.out.println(solution.isValid("("));
+ System.out.println(solution.isValid("]"));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public boolean isValid(String s) {
+ // 需要使用到 Stack 栈
+ Stack stack = new Stack<>();
+ for (int i = 0; i < s.length(); i++) {
+ if (stack.isEmpty()) {
+ stack.push(s.charAt(i));
+ } else {
+
+ char popChar = stack.peek();
+
+ // 合并的情况
+ if (popChar == '(' && s.charAt(i) == ')'
+ || popChar == '[' && s.charAt(i) == ']'
+ || popChar == '{' && s.charAt(i) == '}') {
+ stack.pop();
+ }
+ // 继续入栈
+ else if (popChar == '(' || popChar == '[' || popChar == '{') {
+ stack.push(s.charAt(i));
+ } else {
+ return false;
+ }
+ }
+ }
+ return stack.isEmpty();
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P21_MergeTwoSortedLists.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P21_MergeTwoSortedLists.java
new file mode 100644
index 00000000..0ab17a25
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P21_MergeTwoSortedLists.java
@@ -0,0 +1,129 @@
+// You are given the heads of two sorted linked lists list1 and list2.
+//
+// Merge the two lists in a one sorted list. The list should be made by
+// splicing together the nodes of the first two lists.
+//
+// Return the head of the merged linked list.
+//
+//
+// Example 1:
+//
+//
+// Input: list1 = [1,2,4], list2 = [1,3,4]
+// Output: [1,1,2,3,4,4]
+//
+//
+// Example 2:
+//
+//
+// Input: list1 = [], list2 = []
+// Output: []
+//
+//
+// Example 3:
+//
+//
+// Input: list1 = [], list2 = [0]
+// Output: [0]
+//
+//
+//
+// Constraints:
+//
+//
+// The number of nodes in both lists is in the range [0, 50].
+// -100 <= Node.val <= 100
+// Both list1 and list2 are sorted in non-decreasing order.
+//
+// Related Topics Linked List Recursion 👍 11344 👎 1020
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P21_MergeTwoSortedLists {
+ public static void main(String[] args) {
+ int[] nums1 = new int[] {};
+
+ ListNode l1_start = new ListNode();
+ ListNode l1_current = l1_start;
+ for (int i : nums1) {
+ ListNode temp_node = new ListNode(i);
+ l1_current.next = temp_node;
+ l1_current = temp_node;
+ }
+
+ int[] nums2 = new int[] {};
+
+ ListNode l2_start = new ListNode();
+ ListNode l2_current = l2_start;
+ for (int i : nums2) {
+ ListNode temp_node = new ListNode(i);
+ l2_current.next = temp_node;
+ l2_current = temp_node;
+ }
+
+ Solution solution = new P21_MergeTwoSortedLists().new Solution();
+ ListNode result = solution.mergeTwoLists(l1_start.next, l2_start.next);
+ while (result != null) {
+ System.out.println(result.val);
+ result = result.next;
+ }
+ }
+
+ public static class ListNode {
+ int val;
+ ListNode next;
+
+ ListNode() {}
+
+ ListNode(int val) {
+ this.val = val;
+ }
+
+ ListNode(int val, ListNode next) {
+ this.val = val;
+ this.next = next;
+ }
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+
+ /**
+ * Definition for singly-linked list. public class ListNode { int val; ListNode next; ListNode()
+ * {} ListNode(int val) { this.val = val; } ListNode(int val, ListNode next) { this.val = val;
+ * this.next = next; } }
+ */
+ class Solution {
+ public ListNode mergeTwoLists(ListNode list1, ListNode list2) {
+
+ ListNode current = new ListNode();
+ ListNode result = new ListNode();
+ result.next = current;
+
+ while (list1 != null && list2 != null) {
+ if (list1.val < list2.val) {
+ current.next = list1;
+ current = current.next;
+ list1 = list1.next;
+ } else {
+ current.next = list2;
+ current = current.next;
+ list2 = list2.next;
+ }
+ }
+ while (list1 != null) {
+ current.next = list1;
+ current = current.next;
+ list1 = list1.next;
+ }
+ while (list2 != null) {
+ current.next = list2;
+ current = current.next;
+ list2 = list2.next;
+ }
+
+ return result.next.next;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P22_GenerateParentheses.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P22_GenerateParentheses.java
new file mode 100644
index 00000000..ddfd49eb
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P22_GenerateParentheses.java
@@ -0,0 +1,92 @@
+// Given n pairs of parentheses, write a function to generate all combinations
+// of well-formed parentheses.
+//
+//
+// Example 1:
+// Input: n = 3
+// Output: ["((()))","(()())","(())()","()(())","()()()"]
+// Example 2:
+// Input: n = 1
+// Output: ["()"]
+//
+//
+// Constraints:
+//
+//
+// 1 <= n <= 8
+//
+// Related Topics String Dynamic Programming Backtracking 👍 12091 👎 471
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.ArrayList;
+import java.util.List;
+
+public class P22_GenerateParentheses {
+ public static void main(String[] args) {
+ Solution solution = new P22_GenerateParentheses().new Solution();
+ System.out.println(solution.generateParenthesis(1));
+ System.out.println(solution.generateParenthesis(2));
+ System.out.println(solution.generateParenthesis(3));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public List generateParenthesis(int n) {
+ return helper(new ArrayList<>(), n, n);
+ }
+
+ public List helper(List resultList, int countLeft, int countRight) {
+ // 左括号的数据必须时刻大于右括号的数量
+ if (countLeft == countRight) {
+ // 相等的时候需要注入 (
+ ArrayList tempResult = new ArrayList();
+ if (resultList.isEmpty()) {
+ tempResult.add("(");
+ } else {
+ for (String line : resultList) {
+ tempResult.add(line + "(");
+ }
+ }
+ return helper(tempResult, countLeft - 1, countRight);
+ }
+
+ if (countLeft == 0) {
+ // 只能出了
+ ArrayList tempResult = new ArrayList();
+ for (String line : resultList) {
+ StringBuilder right = new StringBuilder();
+ while (countRight > 0) {
+ countRight--;
+ right.append(')');
+ }
+ tempResult.add(line + right);
+ }
+ return tempResult;
+ }
+
+ // 其余 countLeft < countRight 的情况
+ // 我们先增加 ( 括号
+ ArrayList tempResult2 = new ArrayList();
+ for (String line : resultList) {
+ tempResult2.add(line + "(");
+ }
+ List result2 = helper(tempResult2, countLeft - 1, countRight);
+
+ // 我们再增加 ) 括号
+ ArrayList tempResult3 = new ArrayList();
+ for (String line : resultList) {
+ tempResult3.add(line + ")");
+ }
+ List result3 = helper(tempResult3, countLeft, countRight - 1);
+
+ ArrayList tempResult4 = new ArrayList();
+ tempResult4.addAll(result2);
+ tempResult4.addAll(result3);
+
+ return tempResult4;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P23_MergeKSortedLists.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P23_MergeKSortedLists.java
new file mode 100644
index 00000000..0751605c
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P23_MergeKSortedLists.java
@@ -0,0 +1,151 @@
+// You are given an array of k linked-lists lists, each linked-list is sorted in
+// ascending order.
+//
+// Merge all the linked-lists into one sorted linked-list and return it.
+//
+//
+// Example 1:
+//
+//
+// Input: lists = [[1,4,5],[1,3,4],[2,6]]
+// Output: [1,1,2,3,4,4,5,6]
+// Explanation: The linked-lists are:
+// [
+// 1->4->5,
+// 1->3->4,
+// 2->6
+// ]
+// merging them into one sorted list:
+// 1->1->2->3->4->4->5->6
+//
+//
+// Example 2:
+//
+//
+// Input: lists = []
+// Output: []
+//
+//
+// Example 3:
+//
+//
+// Input: lists = [[]]
+// Output: []
+//
+//
+//
+// Constraints:
+//
+//
+// k == lists.length
+// 0 <= k <= 10⁴
+// 0 <= lists[i].length <= 500
+// -10⁴ <= lists[i][j] <= 10⁴
+// lists[i] is sorted in ascending order.
+// The sum of lists[i].length will not exceed 10⁴.
+//
+// Related Topics Linked List Divide and Conquer Heap (Priority Queue) Merge
+// Sort 👍 11526 👎 457
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P23_MergeKSortedLists {
+
+ public static void main(String[] args) {
+ int[] nums1 = new int[] {1, 4, 5};
+
+ ListNode l1Start = new ListNode();
+ ListNode l1Current = l1Start;
+ for (int i : nums1) {
+ ListNode tempNode = new ListNode(i);
+ l1Current.next = tempNode;
+ l1Current = tempNode;
+ }
+
+ int[] nums2 = new int[] {1, 3, 4};
+ ListNode l2Start = new ListNode();
+ ListNode l2Current = l2Start;
+ for (int i : nums2) {
+ ListNode tempNode = new ListNode(i);
+ l2Current.next = tempNode;
+ l2Current = tempNode;
+ }
+
+ int[] nums3 = new int[] {2, 6};
+ ListNode l3Start = new ListNode();
+ ListNode l3Current = l3Start;
+ for (int i : nums3) {
+ ListNode tempNode = new ListNode(i);
+ l3Current.next = tempNode;
+ l3Current = tempNode;
+ }
+
+ Solution solution = new P23_MergeKSortedLists().new Solution();
+ ListNode result = solution.mergeKLists(new ListNode[] {l1Start.next, l2Start.next});
+ while (result != null) {
+ System.out.println(result.val);
+ result = result.next;
+ }
+ }
+
+ public static class ListNode {
+ int val;
+ ListNode next;
+
+ ListNode() {}
+
+ ListNode(int val) {
+ this.val = val;
+ }
+
+ ListNode(int val, ListNode next) {
+ this.val = val;
+ this.next = next;
+ }
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+
+ /**
+ * Definition for singly-linked list. public class ListNode { int val; ListNode next; ListNode()
+ * {} ListNode(int val) { this.val = val; } ListNode(int val, ListNode next) { this.val = val;
+ * this.next = next; } }
+ */
+ class Solution {
+ public ListNode mergeKLists(ListNode[] lists) {
+ ListNode result = new ListNode();
+ ListNode resultCurrent = result;
+ // 只有当所有 ListNode 都为空的时候才可以 break
+ while (true) {
+ // 是否全都是 null
+ boolean flagNotAllNull = false;
+ ListNode smallestNode = new ListNode(Integer.MAX_VALUE);
+ for (ListNode tempNode : lists) {
+ if (tempNode != null) {
+ flagNotAllNull = true;
+ if (tempNode.val < smallestNode.val) {
+ smallestNode = tempNode;
+ }
+ }
+ }
+ // 全为空的时候,就不需要往后走了
+ if (!flagNotAllNull) break;
+
+ // 找到了最小的 node
+ resultCurrent.next = new ListNode(smallestNode.val);
+ resultCurrent = resultCurrent.next;
+
+ // 最小 node 所在的 listNode 需要向前一步;
+ for (int i = 0; i < lists.length; i++) {
+ if (lists[i] == smallestNode) {
+ lists[i] = lists[i].next;
+ }
+ }
+ }
+
+ return result.next;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P24_SwapNodesInPairs.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P24_SwapNodesInPairs.java
new file mode 100644
index 00000000..30d6f552
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P24_SwapNodesInPairs.java
@@ -0,0 +1,117 @@
+// Given a linked list, swap every two adjacent nodes and return its head. You
+// must solve the problem without modifying the values in the list's nodes (i.e.,
+// only nodes themselves may be changed.)
+//
+//
+// Example 1:
+//
+//
+// Input: head = [1,2,3,4]
+// Output: [2,1,4,3]
+//
+//
+// Example 2:
+//
+//
+// Input: head = []
+// Output: []
+//
+//
+// Example 3:
+//
+//
+// Input: head = [1]
+// Output: [1]
+//
+//
+//
+// Constraints:
+//
+//
+// The number of nodes in the list is in the range [0, 100].
+// 0 <= Node.val <= 100
+//
+// Related Topics Linked List Recursion 👍 6569 👎 283
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P24_SwapNodesInPairs {
+ public static void main(String[] args) {
+ int[] nums = new int[] {1};
+ ListNode l1Start = new ListNode();
+ ListNode l1Current = l1Start;
+ for (int i : nums) {
+ l1Current.next = new ListNode(i);
+ l1Current = l1Current.next;
+ }
+
+ Solution solution = new P24_SwapNodesInPairs().new Solution();
+ ListNode result = solution.swapPairs(l1Start.next);
+ while (result != null) {
+ System.out.println(result.val);
+ result = result.next;
+ }
+ }
+
+ public static class ListNode {
+ int val;
+ ListNode next;
+
+ ListNode() {}
+
+ ListNode(int val) {
+ this.val = val;
+ }
+
+ ListNode(int val, ListNode next) {
+ this.val = val;
+ this.next = next;
+ }
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+
+ /**
+ * Definition for singly-linked list. public class ListNode { int val; ListNode next; ListNode()
+ * {} ListNode(int val) { this.val = val; } ListNode(int val, ListNode next) { this.val = val;
+ * this.next = next; } }
+ */
+ class Solution {
+ public ListNode swapPairs(ListNode head) {
+ ListNode result = new ListNode(0, head);
+
+ // 初始化,顺便处理边界条件
+ ListNode i = result, j = result, k = result;
+
+ j = i.next;
+ if (j == null) {
+ // head 为空
+ return result.next;
+ }
+ k = j.next;
+ if (k == null) {
+ // head 只有一个节点
+ return result.next;
+ }
+
+ while (true) {
+ i.next = k;
+ j.next = k.next;
+ k.next = j;
+
+ i = i.next.next;
+ j = i.next;
+ if (j == null) {
+ break;
+ }
+ k = j.next;
+ if (k == null) {
+ break;
+ }
+ }
+ return result.next;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P25_ReverseNodesInKGroup.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P25_ReverseNodesInKGroup.java
new file mode 100644
index 00000000..bc5924a4
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P25_ReverseNodesInKGroup.java
@@ -0,0 +1,121 @@
+// Given the head of a linked list, reverse the nodes of the list k at a time,
+// and return the modified list.
+//
+// k is a positive integer and is less than or equal to the length of the
+// linked list. If the number of nodes is not a multiple of k then left-out nodes, in
+// the end, should remain as it is.
+//
+// You may not alter the values in the list's nodes, only nodes themselves may
+// be changed.
+//
+//
+// Example 1:
+//
+//
+// Input: head = [1,2,3,4,5], k = 2
+// Output: [2,1,4,3,5]
+//
+//
+// Example 2:
+//
+//
+// Input: head = [1,2,3,4,5], k = 3
+// Output: [3,2,1,4,5]
+//
+//
+//
+// Constraints:
+//
+//
+// The number of nodes in the list is n.
+// 1 <= k <= n <= 5000
+// 0 <= Node.val <= 1000
+//
+//
+//
+// Follow-up: Can you solve the problem in O(1) extra memory space?
+// Related Topics Linked List Recursion 👍 6595 👎 476
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.Stack;
+
+public class P25_ReverseNodesInKGroup {
+ public static void main(String[] args) {
+ int[] nums = new int[] {1, 2};
+ ListNode l1Start = new ListNode();
+ ListNode l1Current = l1Start;
+ for (int i : nums) {
+ l1Current.next = new ListNode(i);
+ l1Current = l1Current.next;
+ }
+ Solution solution = new P25_ReverseNodesInKGroup().new Solution();
+ ListNode result = solution.reverseKGroup(l1Start.next, 2);
+ while (result != null) {
+ System.out.println(result.val);
+ result = result.next;
+ }
+ }
+
+ public static class ListNode {
+ int val;
+ ListNode next;
+
+ ListNode() {}
+
+ ListNode(int val) {
+ this.val = val;
+ }
+
+ ListNode(int val, ListNode next) {
+ this.val = val;
+ this.next = next;
+ }
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+
+ /**
+ * Definition for singly-linked list. public class ListNode { int val; ListNode next; ListNode()
+ * {} ListNode(int val) { this.val = val; } ListNode(int val, ListNode next) { this.val = val;
+ * this.next = next; } }
+ */
+ class Solution {
+ public ListNode reverseKGroup(ListNode head, int k) {
+ ListNode result = new ListNode(0, head);
+ ListNode current = result;
+ Stack stack = new Stack<>();
+ while (head != null) {
+ // 将 list 放入栈中
+ for (int i = 0; i < k; i++) {
+ stack.push(head);
+ head = head.next;
+ if (head == null && i < k - 1) {
+ // 发现长度不够 k 了,把 stack 清理到 stackReverse 去
+ Stack stackReverse = new Stack<>();
+ while (!stack.isEmpty()) {
+ stackReverse.push(stack.pop());
+ }
+ while (!stackReverse.isEmpty()) {
+ current.next = stackReverse.pop();
+ current = current.next;
+ }
+ break;
+ }
+ }
+ // 然后将 stack 的结果依次取出,从而完成一次循环
+ while (!stack.isEmpty()) {
+ current.next = stack.pop();
+ current = current.next;
+ }
+ }
+
+ // 最后一个位置
+ current.next = null;
+
+ return result.next;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P26_RemoveDuplicatesFromSortedArray.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P26_RemoveDuplicatesFromSortedArray.java
new file mode 100644
index 00000000..bf7ef644
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P26_RemoveDuplicatesFromSortedArray.java
@@ -0,0 +1,101 @@
+// Given an integer array nums sorted in non-decreasing order, remove the
+// duplicates in-place such that each unique element appears only once. The relative
+// order of the elements should be kept the same.
+//
+// Since it is impossible to change the length of the array in some languages,
+// you must instead have the result be placed in the first part of the array nums.
+// More formally, if there are k elements after removing the duplicates, then the
+// first k elements of nums should hold the final result. It does not matter what
+// you leave beyond the first k elements.
+//
+// Return k after placing the final result in the first k slots of nums.
+//
+// Do not allocate extra space for another array. You must do this by modifying
+// the input array in-place with O(1) extra memory.
+//
+// Custom Judge:
+//
+// The judge will test your solution with the following code:
+//
+//
+// int[] nums = [...]; // Input array
+// int[] expectedNums = [...]; // The expected answer with correct length
+//
+// int k = removeDuplicates(nums); // Calls your implementation
+//
+// assert k == expectedNums.length;
+// for (int i = 0; i < k; i++) {
+// assert nums[i] == expectedNums[i];
+// }
+//
+//
+// If all assertions pass, then your solution will be accepted.
+//
+//
+// Example 1:
+//
+//
+// Input: nums = [1,1,2]
+// Output: 2, nums = [1,2,_]
+// Explanation: Your function should return k = 2, with the first two elements
+// of nums being 1 and 2 respectively.
+// It does not matter what you leave beyond the returned k (hence they are
+// underscores).
+//
+//
+// Example 2:
+//
+//
+// Input: nums = [0,0,1,1,1,2,2,3,3,4]
+// Output: 5, nums = [0,1,2,3,4,_,_,_,_,_]
+// Explanation: Your function should return k = 5, with the first five elements
+// of nums being 0, 1, 2, 3, and 4 respectively.
+// It does not matter what you leave beyond the returned k (hence they are
+// underscores).
+//
+//
+//
+// Constraints:
+//
+//
+// 1 <= nums.length <= 3 * 10⁴
+// -100 <= nums[i] <= 100
+// nums is sorted in non-decreasing order.
+//
+// Related Topics Array Two Pointers 👍 6153 👎 9648
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.Arrays;
+
+public class P26_RemoveDuplicatesFromSortedArray {
+ public static void main(String[] args) {
+ Solution solution = new P26_RemoveDuplicatesFromSortedArray().new Solution();
+ int[] nums = new int[] {1, 2, 3};
+ System.out.println(solution.removeDuplicates(nums));
+ System.out.println(Arrays.toString(nums));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public int removeDuplicates(int[] nums) {
+ int slowFlag = 0, quickFlag = 0;
+ while (quickFlag < nums.length) {
+ // 如果 slow 和 quick 是同一个位置
+ // quick 移动, slow 的位置占住了
+ if (slowFlag == quickFlag) {
+ quickFlag++;
+ } else if (nums[slowFlag] != nums[quickFlag]) {
+ slowFlag++;
+ nums[slowFlag] = nums[quickFlag];
+ quickFlag++;
+ } else {
+ quickFlag++;
+ }
+ }
+ return slowFlag + 1;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P27_RemoveElement.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P27_RemoveElement.java
new file mode 100644
index 00000000..12ff329c
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P27_RemoveElement.java
@@ -0,0 +1,102 @@
+// Given an integer array nums and an integer val, remove all occurrences of val
+// in nums in-place. The relative order of the elements may be changed.
+//
+// Since it is impossible to change the length of the array in some languages,
+// you must instead have the result be placed in the first part of the array nums.
+// More formally, if there are k elements after removing the duplicates, then the
+// first k elements of nums should hold the final result. It does not matter what
+// you leave beyond the first k elements.
+//
+// Return k after placing the final result in the first k slots of nums.
+//
+// Do not allocate extra space for another array. You must do this by modifying
+// the input array in-place with O(1) extra memory.
+//
+// Custom Judge:
+//
+// The judge will test your solution with the following code:
+//
+//
+// int[] nums = [...]; // Input array
+// int val = ...; // Value to remove
+// int[] expectedNums = [...]; // The expected answer with correct length.
+// // It is sorted with no values equaling val.
+//
+// int k = removeElement(nums, val); // Calls your implementation
+//
+// assert k == expectedNums.length;
+// sort(nums, 0, k); // Sort the first k elements of nums
+// for (int i = 0; i < actualLength; i++) {
+// assert nums[i] == expectedNums[i];
+// }
+//
+//
+// If all assertions pass, then your solution will be accepted.
+//
+//
+// Example 1:
+//
+//
+// Input: nums = [3,2,2,3], val = 3
+// Output: 2, nums = [2,2,_,_]
+// Explanation: Your function should return k = 2, with the first two elements
+// of nums being 2.
+// It does not matter what you leave beyond the returned k (hence they are
+// underscores).
+//
+//
+// Example 2:
+//
+//
+// Input: nums = [0,1,2,2,3,0,4,2], val = 2
+// Output: 5, nums = [0,1,4,0,3,_,_,_]
+// Explanation: Your function should return k = 5, with the first five elements
+// of nums containing 0, 0, 1, 3, and 4.
+// Note that the five elements can be returned in any order.
+// It does not matter what you leave beyond the returned k (hence they are
+// underscores).
+//
+//
+//
+// Constraints:
+//
+//
+// 0 <= nums.length <= 100
+// 0 <= nums[i] <= 50
+// 0 <= val <= 100
+//
+// Related Topics Array Two Pointers 👍 3328 👎 5009
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.Arrays;
+
+public class P27_RemoveElement {
+ public static void main(String[] args) {
+ Solution solution = new P27_RemoveElement().new Solution();
+ int[] nums = new int[] {0, 1, 2, 2, 3, 0, 4, 2};
+ System.out.println(solution.removeElement(nums, 2));
+ System.out.println(Arrays.toString(nums));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public int removeElement(int[] nums, int val) {
+ // slow 是预期的答案, quick 是当前的指针
+ int slowFlag = 0, quickFlag = 0;
+ for (int i : nums) {
+ if (i == val) {
+ // 如果遇到了 val
+ quickFlag++;
+ } else {
+ nums[slowFlag] = nums[quickFlag];
+ slowFlag++;
+ quickFlag++;
+ }
+ }
+ return slowFlag;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P28_ImplementStrstr.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P28_ImplementStrstr.java
new file mode 100644
index 00000000..a158f219
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P28_ImplementStrstr.java
@@ -0,0 +1,67 @@
+// Implement strStr().
+//
+// Return the index of the first occurrence of needle in haystack, or -1 if
+// needle is not part of haystack.
+//
+// Clarification:
+//
+// What should we return when needle is an empty string? This is a great
+// question to ask during an interview.
+//
+// For the purpose of this problem, we will return 0 when needle is an empty
+// string. This is consistent to C's strstr() and Java's indexOf().
+//
+//
+// Example 1:
+// Input: haystack = "hello", needle = "ll"
+// Output: 2
+// Example 2:
+// Input: haystack = "aaaaa", needle = "bba"
+// Output: -1
+// Example 3:
+// Input: haystack = "", needle = ""
+// Output: 0
+//
+//
+// Constraints:
+//
+//
+// 0 <= haystack.length, needle.length <= 5 * 10⁴
+// haystack and needle consist of only lower-case English characters.
+//
+// Related Topics Two Pointers String String Matching 👍 3724 👎 3510
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P28_ImplementStrstr {
+ public static void main(String[] args) {
+ Solution solution = new P28_ImplementStrstr().new Solution();
+ System.out.println(solution.strStr("hello", "ll"));
+ System.out.println(solution.strStr("hello", ""));
+ System.out.println(solution.strStr("", ""));
+ System.out.println(solution.strStr("a", "a"));
+ System.out.println(solution.strStr("aaaaa", "bba"));
+ System.out.println(solution.strStr("abc", "c"));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public int strStr(String haystack, String needle) {
+
+ // 边界条件
+ if (needle.isEmpty()) {
+ return 0;
+ }
+ // 挨个匹配就可以了
+ for (int i = 0; i <= (haystack.length() - needle.length()); i++) {
+ if (haystack.startsWith(needle, i)) {
+ return i;
+ }
+ }
+
+ return -1;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P29_DivideTwoIntegers.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P29_DivideTwoIntegers.java
new file mode 100644
index 00000000..570bdd3c
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P29_DivideTwoIntegers.java
@@ -0,0 +1,77 @@
+// Given two integers dividend and divisor, divide two integers without using
+// multiplication, division, and mod operator.
+//
+// The integer division should truncate toward zero, which means losing its
+// fractional part. For example, 8.345 would be truncated to 8, and -2.7335 would be
+// truncated to -2.
+//
+// Return the quotient after dividing dividend by divisor.
+//
+// Note: Assume we are dealing with an environment that could only store
+// integers within the 32-bit signed integer range: [−2³¹, 2³¹ − 1]. For this problem, if
+// the quotient is strictly greater than 2³¹ - 1, then return 2³¹ - 1, and if the
+// quotient is strictly less than -2³¹, then return -2³¹.
+//
+//
+// Example 1:
+//
+//
+// Input: dividend = 10, divisor = 3
+// Output: 3
+// Explanation: 10/3 = 3.33333.. which is truncated to 3.
+//
+//
+// Example 2:
+//
+//
+// Input: dividend = 7, divisor = -3
+// Output: -2
+// Explanation: 7/-3 = -2.33333.. which is truncated to -2.
+//
+//
+//
+// Constraints:
+//
+//
+// -2³¹ <= dividend, divisor <= 2³¹ - 1
+// divisor != 0
+//
+// Related Topics Math Bit Manipulation 👍 2601 👎 9155
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.Arrays;
+
+public class P29_DivideTwoIntegers {
+ public static void main(String[] args) {
+ Solution solution = new P29_DivideTwoIntegers().new Solution();
+ System.out.println(Arrays.asList(solution.divide(10, -3), 3));
+ System.out.println(Arrays.asList(solution.divide(7, -3), -2));
+ System.out.println(Arrays.asList(solution.divide(7, 3), 2));
+ System.out.println(Arrays.asList(solution.divide(6, -3), 0));
+ System.out.println(Arrays.asList(solution.divide(6, 3), 0));
+ System.out.println(Arrays.asList(solution.divide(-2147483648, -1), 0));
+ System.out.println(Arrays.asList(solution.divide(-2147483648, 1), 0));
+ System.out.println(Arrays.asList(solution.divide(-2147483648, -2147483648), 1));
+ System.out.println(Arrays.asList(solution.divide(2147483647, -2147483648), -1));
+ System.out.println(Arrays.asList(solution.divide(1, -1), 0));
+ System.out.println(Arrays.asList(solution.divide(-2147483648, -1), 2147483647));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public int divide(int dividend, int divisor) {
+ if (dividend == 1 << 31 && divisor == -1) return (1 << 31) - 1;
+ int dvd = Math.abs(dividend), dvs = Math.abs(divisor), res = 0, x = 0;
+ while (dvd - dvs >= 0) {
+ for (x = 0; dvd - (dvs << x << 1) >= 0; x++)
+ ;
+ res += 1 << x;
+ dvd -= dvs << x;
+ }
+ return (dividend > 0) == (divisor > 0) ? res : -res;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P2_AddTwoNumbers.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P2_AddTwoNumbers.java
new file mode 100644
index 00000000..fb3b0575
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P2_AddTwoNumbers.java
@@ -0,0 +1,136 @@
+// You are given two non-empty linked lists representing two non-negative integer
+// s. The digits are stored in reverse order, and each of their nodes contains a si
+// ngle digit. Add the two numbers and return the sum as a linked list.
+//
+// You may assume the two numbers do not contain any leading zero, except the nu
+// mber 0 itself.
+//
+//
+// Example 1:
+//
+//
+// Input: l1 = [2,4,3], l2 = [5,6,4]
+// Output: [7,0,8]
+// Explanation: 342 + 465 = 807.
+//
+//
+// Example 2:
+//
+//
+// Input: l1 = [0], l2 = [0]
+// Output: [0]
+//
+//
+// Example 3:
+//
+//
+// Input: l1 = [9,9,9,9,9,9,9], l2 = [9,9,9,9]
+// Output: [8,9,9,9,0,0,0,1]
+//
+//
+//
+// Constraints:
+//
+//
+// The number of nodes in each linked list is in the range [1, 100].
+// 0 <= Node.val <= 9
+// It is guaranteed that the list represents a number that does not have leading
+// zeros.
+//
+// Related Topics Linked List Math Recursion
+// 👍 15033 👎 3282
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P2_AddTwoNumbers {
+ public static void main(String[] args) {
+ Solution solution = new P2_AddTwoNumbers().new Solution();
+
+ int[] l1_data = new int[] {9, 9, 9, 9, 9, 9, 9};
+ int[] l2_data = new int[] {9, 9, 9, 9};
+
+ ListNode l1_start = new ListNode();
+ ListNode l1_current = l1_start;
+
+ ListNode l2_start = new ListNode();
+ ListNode l2_current = l2_start;
+
+ for (int num : l1_data) {
+ ListNode temp_node = new ListNode(num);
+ l1_current.next = temp_node;
+ l1_current = temp_node;
+ }
+
+ for (int num : l2_data) {
+ ListNode temp_node = new ListNode(num);
+ l2_current.next = temp_node;
+ l2_current = temp_node;
+ }
+
+ ListNode result = solution.addTwoNumbers(l1_start.next, l2_start.next);
+ while (result != null) {
+ System.out.println(result.val);
+ result = result.next;
+ }
+ }
+
+ public static class ListNode {
+ int val;
+ ListNode next;
+
+ ListNode() {}
+
+ ListNode(int val) {
+ this.val = val;
+ }
+
+ ListNode(int val, ListNode next) {
+ this.val = val;
+ this.next = next;
+ }
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+
+ /**
+ * Definition for singly-linked list. public class ListNode { int val; ListNode next; ListNode()
+ * {} ListNode(int val) { this.val = val; } ListNode(int val, ListNode next) { this.val = val;
+ * this.next = next; } }
+ */
+ class Solution {
+ public ListNode addTwoNumbers(ListNode l1, ListNode l2) {
+ // 用于保存进位
+ int flag = 0;
+ ListNode start_of_node = new ListNode();
+ ListNode current_node = start_of_node;
+ while (l1 != null || l2 != null) {
+ int value = flag;
+ // 注入到 value 后,flag 需要根据计算结束的 value 来确定新的值
+ flag = 0;
+ if (l1 != null) {
+ value += l1.val;
+ l1 = l1.next;
+ }
+ if (l2 != null) {
+ value += l2.val;
+ l2 = l2.next;
+ }
+ if (value > 9) {
+ flag = 1;
+ value = value % 10;
+ }
+ ListNode temp_node = new ListNode(value);
+ current_node.next = temp_node;
+ current_node = temp_node;
+ }
+
+ if (flag != 0) {
+ current_node.next = new ListNode(flag);
+ }
+
+ return start_of_node.next;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P30_SubstringWithConcatenationOfAllWords.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P30_SubstringWithConcatenationOfAllWords.java
new file mode 100644
index 00000000..ec9393e0
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P30_SubstringWithConcatenationOfAllWords.java
@@ -0,0 +1,120 @@
+// You are given a string s and an array of strings words of the same length.
+// Return all starting indices of substring(s) in s that is a concatenation of each
+// word in words exactly once, in any order, and without any intervening characters.
+//
+//
+// You can return the answer in any order.
+//
+//
+// Example 1:
+//
+//
+// Input: s = "barfoothefoobarman", words = ["foo","bar"]
+// Output: [0,9]
+// Explanation: Substrings starting at index 0 and 9 are "barfoo" and "foobar"
+// respectively.
+// The output order does not matter, returning [9,0] is fine too.
+//
+//
+// Example 2:
+//
+//
+// Input: s = "wordgoodgoodgoodbestword", words = ["word","good","best","word"]
+// Output: []
+//
+//
+// Example 3:
+//
+//
+// Input: s = "barfoofoobarthefoobarman", words = ["bar","foo","the"]
+// Output: [6,9,12]
+//
+//
+//
+// Constraints:
+//
+//
+// 1 <= s.length <= 10⁴
+// s consists of lower-case English letters.
+// 1 <= words.length <= 5000
+// 1 <= words[i].length <= 30
+// words[i] consists of lower-case English letters.
+//
+// Related Topics Hash Table String Sliding Window 👍 1842 👎 1810
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+
+public class P30_SubstringWithConcatenationOfAllWords {
+ public static void main(String[] args) {
+ Solution solution = new P30_SubstringWithConcatenationOfAllWords().new Solution();
+ // [0,9]
+ System.out.println(solution.findSubstring("barfoothefoobarman", new String[] {"foo", "bar"}));
+
+ // []
+ System.out.println(
+ solution.findSubstring(
+ "wordgoodgoodgoodbestword", new String[] {"word", "good", "best", "word"}));
+
+ // [6,9,12]
+ System.out.println(
+ solution.findSubstring("barfoofoobarthefoobarman", new String[] {"bar", "foo", "the"}));
+
+ // [8]
+ System.out.println(
+ solution.findSubstring(
+ "wordgoodgoodgoodbestword", new String[] {"word", "good", "best", "good"}));
+
+ // [13]
+ System.out.println(
+ solution.findSubstring(
+ "lingmindraboofooowingdingbarrwingmonkeypoundcake",
+ new String[] {"fooo", "barr", "wing", "ding", "wing"}));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public List findSubstring(String s, String[] words) {
+ ArrayList resultStartList = new ArrayList<>();
+ int word_length = words[0].length() * words.length;
+ int left = 0, right = left + word_length;
+
+ while (right <= s.length()) {
+ if (checkSubString(s.substring(left, right), words)) {
+ resultStartList.add(left);
+ }
+ left++;
+ right++;
+ }
+
+ return resultStartList;
+ }
+
+ public boolean checkSubString(String s, String[] words) {
+ // 给定 "barfoo" 和 ["foo","bar"], 判断是否符合条件
+ int start = 0;
+
+ List arrayWords =
+ new ArrayList<>(Arrays.asList("fooo", "barr", "wing", "ding", "wing"));
+
+ while (start < s.length()) {
+ // 取指定长度的 subString, 判断是否在 words 内
+ String subS = s.substring(start, start + words[0].length());
+ int index = arrayWords.indexOf(subS);
+ if (index != -1) {
+ start += words[0].length();
+ // 只能用一次;
+ arrayWords.remove(index);
+ } else {
+ return false;
+ }
+ }
+ return true;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P31_NextPermutation.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P31_NextPermutation.java
new file mode 100644
index 00000000..d4da3993
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P31_NextPermutation.java
@@ -0,0 +1,159 @@
+// A permutation of an array of integers is an arrangement of its members into a
+// sequence or linear order.
+//
+//
+// For example, for arr = [1,2,3], the following are considered permutations of
+// arr: [1,2,3], [1,3,2], [3,1,2], [2,3,1].
+//
+//
+// The next permutation of an array of integers is the next lexicographically
+// greater permutation of its integer. More formally, if all the permutations of the
+// array are sorted in one container according to their lexicographical order,
+// then the next permutation of that array is the permutation that follows it in the
+// sorted container. If such arrangement is not possible, the array must be
+// rearranged as the lowest possible order (i.e., sorted in ascending order).
+//
+//
+// For example, the next permutation of arr = [1,2,3] is [1,3,2].
+// Similarly, the next permutation of arr = [2,3,1] is [3,1,2].
+// While the next permutation of arr = [3,2,1] is [1,2,3] because [3,2,1] does
+// not have a lexicographical larger rearrangement.
+//
+//
+// Given an array of integers nums, find the next permutation of nums.
+//
+// The replacement must be in place and use only constant extra memory.
+//
+//
+// Example 1:
+//
+//
+// Input: nums = [1,2,3]
+// Output: [1,3,2]
+//
+//
+// Example 2:
+//
+//
+// Input: nums = [3,2,1]
+// Output: [1,2,3]
+//
+//
+// Example 3:
+//
+//
+// Input: nums = [1,1,5]
+// Output: [1,5,1]
+//
+//
+//
+// Constraints:
+//
+//
+// 1 <= nums.length <= 100
+// 0 <= nums[i] <= 100
+//
+// Related Topics Array Two Pointers 👍 10591 👎 3413
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.Arrays;
+
+public class P31_NextPermutation {
+ public static void main(String[] args) {
+ Solution solution = new P31_NextPermutation().new Solution();
+ // 1,3,2
+ int[] nums = {1, 2, 3};
+ solution.nextPermutation(nums);
+ System.out.println(Arrays.toString(nums));
+
+ // 1,2,3
+ int[] nums1 = {3, 2, 1};
+ solution.nextPermutation(nums1);
+ System.out.println(Arrays.toString(nums1));
+
+ // 1,5,1
+ int[] nums2 = {1, 1, 5};
+ solution.nextPermutation(nums2);
+ System.out.println(Arrays.toString(nums2));
+
+ // 3,1,2
+ int[] nums3 = {2, 3, 1};
+ solution.nextPermutation(nums3);
+ System.out.println(Arrays.toString(nums3));
+
+ // 2,1,3
+ int[] nums4 = {1, 3, 2};
+ solution.nextPermutation(nums4);
+ System.out.println(Arrays.toString(nums4));
+
+ // 5,5,2,3,4,7
+ int[] nums5 = {5, 4, 7, 5, 3, 2};
+ solution.nextPermutation(nums5);
+ System.out.println(Arrays.toString(nums5));
+
+ // 4,2,0,3,0,2,2
+ int[] nums6 = {4, 2, 0, 2, 3, 2, 0};
+ solution.nextPermutation(nums6);
+ System.out.println(Arrays.toString(nums6));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public void nextPermutation(int[] nums) {
+ // 从后向前,找到满足: k > k - n 的位置
+ int left = nums.length - 1, right = nums.length - 1;
+ // flag 是哪个元素小于当前元素,left 是当前元素的位置
+ int flag = -1;
+ int final_left = right;
+ while (left > 0) {
+ // 找出第一个大于 left 位置的元素
+ // 不是第一个了,是最小的那个 flag
+ for (int i = left - 1; i >= 0; i--) {
+ if (nums[i] < nums[left]) {
+ if (i > flag) {
+ flag = i;
+ final_left = left;
+ break;
+ }
+ }
+ }
+ left--;
+ }
+
+ // 从 left 到 right 之间的元素开始向前自动
+ if (flag == -1) {
+ reverse(nums);
+ } else {
+ // 将 left 插入到 flag 前边去
+ for (int j = final_left; j > flag; j--) {
+ int temp = nums[j];
+ nums[j] = nums[j - 1];
+ nums[j - 1] = temp;
+ }
+ // flag 位置后的元素全部原地排序
+ // 从 flag + 1 到 right 之间的元素
+ // 写一个冒泡排序
+ for (int k = right; k > flag; k--) {
+ for (int l = k - 1; l > flag; l--) {
+ if (nums[l] > nums[k]) {
+ int temp = nums[l];
+ nums[l] = nums[k];
+ nums[k] = temp;
+ }
+ }
+ }
+ }
+ }
+
+ public void reverse(int[] nums) {
+ for (int i = 0; i < nums.length / 2; i++) {
+ int temp = nums[i];
+ nums[i] = nums[nums.length - i - 1];
+ nums[nums.length - i - 1] = temp;
+ }
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P32_LongestValidParentheses.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P32_LongestValidParentheses.java
new file mode 100644
index 00000000..3253c5f8
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P32_LongestValidParentheses.java
@@ -0,0 +1,141 @@
+// Given a string containing just the characters '(' and ')', find the length of
+// the longest valid (well-formed) parentheses substring.
+//
+//
+// Example 1:
+//
+//
+// Input: s = "(()"
+// Output: 2
+// Explanation: The longest valid parentheses substring is "()".
+//
+//
+// Example 2:
+//
+//
+// Input: s = ")()())"
+// Output: 4
+// Explanation: The longest valid parentheses substring is "()()".
+//
+//
+// Example 3:
+//
+//
+// Input: s = ""
+// Output: 0
+//
+//
+//
+// Constraints:
+//
+//
+// 0 <= s.length <= 3 * 10⁴
+// s[i] is '(', or ')'.
+//
+// Related Topics String Dynamic Programming Stack 👍 7665 👎 264
+
+package com.mmmwhy.leetcode.editor.en;
+
+import java.util.Stack;
+
+public class P32_LongestValidParentheses {
+ public static void main(String[] args) {
+ Solution solution = new P32_LongestValidParentheses().new Solution();
+ // 2
+ System.out.println(solution.longestValidParentheses("(()"));
+ // 4
+ System.out.println(solution.longestValidParentheses(")()())"));
+ // 0
+ System.out.println(solution.longestValidParentheses(""));
+ // 2
+ System.out.println(solution.longestValidParentheses("()(()"));
+ // 6
+ System.out.println(solution.longestValidParentheses("()(())"));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class SolutionBrute {
+ public boolean isVaild(String s) {
+ Stack stack = new Stack<>();
+ for (int i = 0; i < s.length(); i++) {
+ if (s.charAt(i) == '(') {
+ stack.push('(');
+ } else if (!stack.empty() && s.charAt(i) == ')') {
+ stack.pop();
+ } else {
+ return false;
+ }
+ }
+ return stack.empty();
+ }
+
+ public int longestValidParentheses(String s) {
+ int maxLen = 0;
+ for (int i = 0; i < s.length(); i++) {
+ for (int j = i + 2; j <= s.length(); j += 2) {
+ if (isVaild(s.substring(i, j))) {
+ maxLen = Math.max(maxLen, j - i);
+ }
+ }
+ }
+ return maxLen;
+ }
+ }
+
+ class Solution {
+ public int longestValidParentheses(String s) {
+ int maxLen = 0;
+ // 截止 i 位置,连续的有效字符串, 初始化为 0
+ int dp[] = new int[s.length()];
+ for (int i = 1; i < s.length(); i++) {
+ if (s.charAt(i) == ')') {
+ if (s.charAt(i - 1) == '(') {
+ // 如果 i-1 是 (
+ if (i - 2 >= 0) {
+ dp[i] = dp[i - 2] + 2;
+ } else {
+ dp[i] = 2;
+ }
+ } else if (i - dp[i - 1] - 1 >= 0 && s.charAt(i - dp[i - 1] - 1) == '(') {
+ // 如果 i-1 是 ),且 xxx
+ if (i - dp[i - 1] - 2 >= 0) {
+ dp[i] = dp[i - 1] + dp[i - dp[i - 1] - 2] + 2;
+ } else {
+ dp[i] = dp[i - 1] + 2;
+ }
+
+ }
+ maxLen = Math.max(maxLen, dp[i]);
+ }
+ }
+ return maxLen;
+ }
+ }
+
+ class SolutionStack {
+ public int longestValidParentheses(String s) {
+ if (s.length() <= 1) {
+ return 0;
+ }
+
+ int maxAns = 0;
+ Stack stack = new Stack<>();
+ stack.push(-1);
+ for (int i = 0; i < s.length(); i++) {
+ if (s.charAt(i) == '(') {
+ stack.push(i);
+ } else {
+ stack.pop();
+ if (stack.empty()) {
+ stack.push(i);
+ } else {
+ maxAns = Math.max(maxAns, i - stack.peek());
+ }
+ }
+ }
+ return maxAns;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P3_LongestSubstringWithoutRepeatingCharacters.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P3_LongestSubstringWithoutRepeatingCharacters.java
new file mode 100644
index 00000000..313cdf73
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P3_LongestSubstringWithoutRepeatingCharacters.java
@@ -0,0 +1,77 @@
+// Given a string s, find the length of the longest substring without repeating c
+// haracters.
+//
+//
+// Example 1:
+//
+//
+// Input: s = "abcabcbb"
+// Output: 3
+// Explanation: The answer is "abc", with the length of 3.
+//
+//
+// Example 2:
+//
+//
+// Input: s = "bbbbb"
+// Output: 1
+// Explanation: The answer is "b", with the length of 1.
+//
+//
+// Example 3:
+//
+//
+// Input: s = "pwwkew"
+// Output: 3
+// Explanation: The answer is "wke", with the length of 3.
+// Notice that the answer must be a substring, "pwke" is a subsequence and not a
+// substring.
+//
+//
+// Example 4:
+//
+//
+// Input: s = ""
+// Output: 0
+//
+//
+//
+// Constraints:
+//
+//
+// 0 <= s.length <= 5 * 104
+// s consists of English letters, digits, symbols and spaces.
+//
+// Related Topics Hash Table String Sliding Window
+// 👍 19258 👎 880
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P3_LongestSubstringWithoutRepeatingCharacters {
+ public static void main(String[] args) {
+ Solution solution = new P3_LongestSubstringWithoutRepeatingCharacters().new Solution();
+ String demo = "abcabcbb";
+ int result = solution.lengthOfLongestSubstring(demo);
+ System.out.println(result);
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public int lengthOfLongestSubstring(String s) {
+ int left_point = 0;
+ int right_point = 0;
+ int biggest_num = 0;
+ for (; right_point < s.length(); right_point++) {
+ char c = s.charAt(right_point);
+ while (s.substring(left_point, right_point).indexOf(c) != -1) {
+ left_point += 1;
+ }
+ if (right_point - left_point + 1 > biggest_num) biggest_num = right_point - left_point + 1;
+ }
+
+ return biggest_num;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P4_MedianOfTwoSortedArrays.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P4_MedianOfTwoSortedArrays.java
new file mode 100644
index 00000000..467e7803
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P4_MedianOfTwoSortedArrays.java
@@ -0,0 +1,110 @@
+// Given two sorted arrays nums1 and nums2 of size m and n respectively, return t
+// he median of the two sorted arrays.
+//
+// The overall run time complexity should be O(log (m+n)).
+//
+//
+// Example 1:
+//
+//
+// Input: nums1 = [1,3], nums2 = [2]
+// Output: 2.00000
+// Explanation: merged array = [1,2,3] and median is 2.
+//
+//
+// Example 2:
+//
+//
+// Input: nums1 = [1,2], nums2 = [3,4]
+// Output: 2.50000
+// Explanation: merged array = [1,2,3,4] and median is (2 + 3) / 2 = 2.5.
+//
+//
+// Example 3:
+//
+//
+// Input: nums1 = [0,0], nums2 = [0,0]
+// Output: 0.00000
+//
+//
+// Example 4:
+//
+//
+// Input: nums1 = [], nums2 = [1]
+// Output: 1.00000
+//
+//
+// Example 5:
+//
+//
+// Input: nums1 = [2], nums2 = []
+// Output: 2.00000
+//
+//
+//
+// Constraints:
+//
+//
+// nums1.length == m
+// nums2.length == n
+// 0 <= m <= 1000
+// 0 <= n <= 1000
+// 1 <= m + n <= 2000
+// -106 <= nums1[i], nums2[i] <= 106
+//
+// Related Topics Array Binary Search Divide and Conquer
+// 👍 13623 👎 1767
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P4_MedianOfTwoSortedArrays {
+ // 题目困难的原因在于时间限制为 O(log (m+n)), 因此不能合并后找中间位置;
+
+ public static void main(String[] args) {
+ Solution solution = new P4_MedianOfTwoSortedArrays().new Solution();
+ int[] nums1 = new int[] {1, 3};
+ int[] nums2 = new int[] {2};
+ System.out.println(solution.findMedianSortedArrays(nums1, nums2));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public double findMedianSortedArrays(int[] nums1, int[] nums2) {
+ int n = nums1.length;
+ int m = nums2.length;
+ int left = (n + m + 1) / 2;
+ int right = (n + m + 2) / 2;
+ // 将偶数和奇数的情况合并,如果是奇数,会求两次同样的 k 。
+ return (getKthMin(nums1, 0, n, nums2, 0, m, left)
+ + getKthMin(nums1, 0, n, nums2, 0, m, right))
+ * 0.5;
+ }
+
+ private int getKthMin(
+ int[] nums1, int start1, int end1, int[] nums2, int start2, int end2, int k) {
+ int len1 = end1 - start1;
+ int len2 = end2 - start2;
+
+ // 为了方便计算,我们使 nums1 的长度总小余 nums2
+ if (len1 > len2) return getKthMin(nums2, start2, end2, nums1, start1, end1, k);
+ if (len1 == 0) return nums2[start2 + k - 1];
+
+ if (k == 1) return Math.min(nums1[start1], nums2[start2]);
+
+ // 在每个数组内,找到 start + k/2 的位置
+ int nums1_move_step = Math.min(len1, k / 2);
+ int nums2_move_step = Math.min(len2, k / 2);
+
+ int nums1_temp_mid = start1 + nums1_move_step;
+ int nums2_temp_mid = start2 + nums2_move_step;
+
+ if (nums1[nums1_temp_mid - 1] < nums2[nums2_temp_mid - 1]) {
+ return getKthMin(nums1, nums1_temp_mid, end1, nums2, start2, end2, k - nums1_move_step);
+ } else {
+ return getKthMin(nums1, start1, end1, nums2, nums2_temp_mid, end2, k - nums2_move_step);
+ }
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P5_LongestPalindromicSubstring.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P5_LongestPalindromicSubstring.java
new file mode 100644
index 00000000..0149e0bd
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P5_LongestPalindromicSubstring.java
@@ -0,0 +1,87 @@
+// Given a string s, return the longest palindromic substring in s.
+//
+//
+// Example 1:
+//
+//
+// Input: s = "babad"
+// Output: "bab"
+// Explanation: "aba" is also a valid answer.
+//
+//
+// Example 2:
+//
+//
+// Input: s = "cbbd"
+// Output: "bb"
+//
+//
+//
+// Constraints:
+//
+//
+// 1 <= s.length <= 1000
+// s consist of only digits and English letters.
+//
+// Related Topics String Dynamic Programming
+// 👍 16064 👎 949
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P5_LongestPalindromicSubstring {
+ public static void main(String[] args) {
+ Solution solution = new P5_LongestPalindromicSubstring().new Solution();
+ System.out.println(solution.longestPalindrome("babad"));
+ System.out.println(solution.longestPalindrome("cbbd"));
+
+ System.out.println("123456".substring(1, 5));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public String longestPalindrome(String s) {
+ if (s.length() == 0) {
+ return "";
+ }
+ if (s.length() == 1) {
+ return s;
+ }
+ String longest_result = "";
+ for (int left = 0; left < s.length() - 1; left++) {
+
+ // s[left] == s[left] -> count_1 >= 1 -> 单核心
+ int count_1 = checkPalindrome(s, left, left) - 1;
+ // 比如 bab 中的 a
+ String s1 = s.substring(left - count_1, left + count_1 + 1);
+ if (s1.length() > longest_result.length()) {
+ longest_result = s1;
+ }
+
+ // 如果 s[left] == s[left + 1] -> 出现双核心
+ if (left < s.length() - 1 && s.charAt(left) == s.charAt(left + 1)) {
+ int count_2 = checkPalindrome(s, left, left + 1) - 1;
+ // 比如 abba 中的 bb
+ String s2 = s.substring(left - count_2, left + count_2 + 2);
+ if (s2.length() > longest_result.length()) {
+ longest_result = s2;
+ }
+ }
+ }
+ return longest_result;
+ }
+
+ public int checkPalindrome(String s, int left, int right) {
+ int count = 0;
+ while (left - count >= 0 && right + count < s.length()) {
+ if (s.charAt(left - count) == s.charAt(right + count)) {
+ count += 1;
+ } else {
+ break;
+ }
+ }
+ return count;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P6_ZigzagConversion.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P6_ZigzagConversion.java
new file mode 100644
index 00000000..10a29261
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P6_ZigzagConversion.java
@@ -0,0 +1,100 @@
+// The string "PAYPALISHIRING" is written in a zigzag pattern on a given number
+// of rows like this: (you may want to display this pattern in a fixed font for
+// better legibility)
+//
+//
+// P A H N
+// A P L S I I G
+// Y I R
+//
+//
+// And then read line by line: "PAHNAPLSIIGYIR"
+//
+// Write the code that will take a string and make this conversion given a
+// number of rows:
+//
+//
+// string convert(string s, int numRows);
+//
+//
+//
+// Example 1:
+//
+//
+// Input: s = "PAYPALISHIRING", numRows = 3
+// Output: "PAHNAPLSIIGYIR"
+//
+//
+// Example 2:
+//
+//
+// Input: s = "PAYPALISHIRING", numRows = 4
+// Output: "PINALSIGYAHRPI"
+// Explanation:
+// P I N
+// A L S I G
+// Y A H R
+// P I
+//
+//
+// Example 3:
+//
+//
+// Input: s = "A", numRows = 1
+// Output: "A"
+//
+//
+//
+// Constraints:
+//
+//
+// 1 <= s.length <= 1000
+// s consists of English letters (lower-case and upper-case), ',' and '.'.
+// 1 <= numRows <= 1000
+//
+// Related Topics String 👍 3371 👎 7826
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P6_ZigzagConversion {
+ public static void main(String[] args) {
+ Solution solution = new P6_ZigzagConversion().new Solution();
+ System.out.println(solution.convert("ABC", 5));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public String convert(String s, int numRows) {
+ if (s.length() <= numRows || numRows == 1) {
+ return s;
+ }
+
+ StringBuilder newString = new StringBuilder();
+ for (int i = 0; i < numRows; i++) {
+ int j = i;
+ newString.append(s.charAt(j));
+ while (j < s.length()) {
+ int newJ = j + 2 * (numRows - 1 - i);
+ if (newJ >= s.length()) {
+ break;
+ }
+ if (newJ != j) {
+ j = newJ;
+ newString.append(s.charAt(j));
+ }
+ newJ = j + 2 * i;
+ if (newJ >= s.length()) {
+ break;
+ }
+ if (newJ != j) {
+ j = newJ;
+ newString.append(s.charAt(j));
+ }
+ }
+ }
+ return String.valueOf(newString);
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P7_ReverseInteger.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P7_ReverseInteger.java
new file mode 100644
index 00000000..95db1389
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P7_ReverseInteger.java
@@ -0,0 +1,80 @@
+// Given a signed 32-bit integer x, return x with its digits reversed. If
+// reversing x causes the value to go outside the signed 32-bit integer range [-2³¹, 2³¹ -
+// 1], then return 0.
+//
+// Assume the environment does not allow you to store 64-bit integers (signed
+// or unsigned).
+//
+//
+// Example 1:
+//
+//
+// Input: x = 123
+// Output: 321
+//
+//
+// Example 2:
+//
+//
+// Input: x = -123
+// Output: -321
+//
+//
+// Example 3:
+//
+//
+// Input: x = 120
+// Output: 21
+//
+//
+//
+// Constraints:
+//
+//
+// -2³¹ <= x <= 2³¹ - 1
+//
+// Related Topics Math 👍 6630 👎 9320
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P7_ReverseInteger {
+ public static void main(String[] args) {
+ Solution solution = new P7_ReverseInteger().new Solution();
+ // 2147483648
+ System.out.println(solution.reverse(-2147483648));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public int reverse(int x) {
+ if (x == -2147483648) {
+ return 0;
+ }
+
+ // 默认认为是正数
+ boolean negative = false;
+ if (x < 0) {
+ negative = true;
+ x = -x;
+ }
+
+ int result = 0;
+ while (x != 0) {
+ // 如果满足了这一步,后边不可能出现比 7 大的数,要不然输入的就不是 int
+ if (result > 214748364) {
+ return 0;
+ }
+ result = result * 10 + (x % 10);
+ x /= 10;
+ }
+
+ if (negative) {
+ return -result;
+ } else {
+ return result;
+ }
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P8_StringToIntegerAtoi.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P8_StringToIntegerAtoi.java
new file mode 100644
index 00000000..ba5ddb07
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P8_StringToIntegerAtoi.java
@@ -0,0 +1,183 @@
+// Implement the myAtoi(string s) function, which converts a string to a 32-bit
+// signed integer (similar to C/C++'s atoi function).
+//
+// The algorithm for myAtoi(string s) is as follows:
+//
+//
+// Read in and ignore any leading whitespace.
+// Check if the next character (if not already at the end of the string) is '-'
+// or '+'. Read this character in if it is either. This determines if the final
+// result is negative or positive respectively. Assume the result is positive if
+// neither is present.
+// Read in next the characters until the next non-digit character or the end of
+// the input is reached. The rest of the string is ignored.
+// Convert these digits into an integer (i.e. "123" -> 123, "0032" -> 32). If
+// no digits were read, then the integer is 0. Change the sign as necessary (from
+// step 2).
+// If the integer is out of the 32-bit signed integer range [-2³¹, 2³¹ - 1],
+// then clamp the integer so that it remains in the range. Specifically, integers
+// less than -2³¹ should be clamped to -2³¹, and integers greater than 2³¹ - 1 should
+// be clamped to 2³¹ - 1.
+// Return the integer as the final result.
+//
+//
+// Note:
+//
+//
+// Only the space character ' ' is considered a whitespace character.
+// Do not ignore any characters other than the leading whitespace or the rest
+// of the string after the digits.
+//
+//
+//
+// Example 1:
+//
+//
+// Input: s = "42"
+// Output: 42
+// Explanation: The underlined characters are what is read in, the caret is the
+// current reader position.
+// Step 1: "42" (no characters read because there is no leading whitespace)
+// ^
+// Step 2: "42" (no characters read because there is neither a '-' nor '+')
+// ^
+// Step 3: "42" ("42" is read in)
+// ^
+// The parsed integer is 42.
+// Since 42 is in the range [-2³¹, 2³¹ - 1], the final result is 42.
+//
+//
+// Example 2:
+//
+//
+// Input: s = " -42"
+// Output: -42
+// Explanation:
+// Step 1: " -42" (leading whitespace is read and ignored)
+// ^
+// Step 2: " -42" ('-' is read, so the result should be negative)
+// ^
+// Step 3: " -42" ("42" is read in)
+// ^
+// The parsed integer is -42.
+// Since -42 is in the range [-2³¹, 2³¹ - 1], the final result is -42.
+//
+//
+// Example 3:
+//
+//
+// Input: s = "4193 with words"
+// Output: 4193
+// Explanation:
+// Step 1: "4193 with words" (no characters read because there is no leading
+// whitespace)
+// ^
+// Step 2: "4193 with words" (no characters read because there is neither a '-'
+// nor '+')
+// ^
+// Step 3: "4193 with words" ("4193" is read in; reading stops because the next
+// character is a non-digit)
+// ^
+// The parsed integer is 4193.
+// Since 4193 is in the range [-2³¹, 2³¹ - 1], the final result is 4193.
+//
+//
+//
+// Constraints:
+//
+//
+// 0 <= s.length <= 200
+// s consists of English letters (lower-case and upper-case), digits (0-9), ' ',
+// '+', '-', and '.'.
+//
+// Related Topics String 👍 1397 👎 3967
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P8_StringToIntegerAtoi {
+ public static void main(String[] args) {
+ Solution solution = new P8_StringToIntegerAtoi().new Solution();
+ // System.out.println(solution.myAtoi(""));
+ // System.out.println(solution.myAtoi(" "));
+ // System.out.println(solution.myAtoi(" +-"));
+ // System.out.println(solution.myAtoi("+-"));
+ // System.out.println(solution.myAtoi("+-42"));
+ // System.out.println(solution.myAtoi("42"));
+ // System.out.println(solution.myAtoi(" -0"));
+ // System.out.println(solution.myAtoi(" +0"));
+ // System.out.println(solution.myAtoi(" -42"));
+ // System.out.println(solution.myAtoi("4193 with words"));
+ // System.out.println(solution.myAtoi("214748364")); // 不越界
+ // System.out.println(solution.myAtoi("2147483647")); // 不越界
+ // System.out.println(solution.myAtoi(" -2147483648")); // 不越界
+ // System.out.println(solution.myAtoi(" -2147483649")); // 越界
+ // System.out.println(solution.myAtoi(" -91283472332")); // 越界
+ // System.out.println(solution.myAtoi("-6147483648")); // 越界
+ // System.out.println(solution.myAtoi(" 2147483647")); // 越界
+ // System.out.println(solution.myAtoi(" 2147483648")); // 越界
+ // System.out.println(solution.myAtoi(" 2147483649")); // 越界
+ System.out.println(solution.myAtoi(" 2147483800")); // 越界
+ System.out.println(solution.myAtoi(" 21474836460")); // 越界
+ System.out.println(solution.myAtoi("-2147483647")); // 不越界
+ System.out.println(solution.myAtoi(" -2147483648")); // 不越界
+ System.out.println(solution.myAtoi(" -2147483649")); // 不越界
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public int myAtoi(String s) {
+ String javaDigit = "0123456789";
+ // 跳过所有空格
+ int i = 0;
+ while (i < s.length() && s.charAt(i) == ' ') {
+ i++;
+ }
+
+ // 判断符号,只能在这里判断符号
+ boolean positive = true;
+ if (i < s.length() && s.charAt(i) == '+') {
+ i++;
+ } else if (i < s.length() && s.charAt(i) == '-') {
+ i++;
+ positive = false;
+ }
+
+ int result = 0;
+ // 从非空出开始进行
+ for (; i < s.length(); i++) {
+ if (javaDigit.contains(s.subSequence(i, i + 1))) {
+ int digit = javaDigit.indexOf(s.charAt(i));
+ // 校验当前 result,还能不能继续增加
+ if (Integer.MAX_VALUE / 10 < result) {
+ if (positive) {
+ return Integer.MAX_VALUE;
+ } else {
+ return Integer.MIN_VALUE;
+ }
+ }
+ // 正好相等的时候,需要看 digit 新给的数有没有越界
+ if (Integer.MAX_VALUE / 10 == result) {
+ // 正负分别处理
+ if (positive && (digit >= Integer.MAX_VALUE % 10 || i < s.length() - 1)) {
+ return Integer.MAX_VALUE;
+ }
+ if (!positive && (digit >= -(Integer.MIN_VALUE % 10) || i < s.length() - 1)) {
+ return Integer.MIN_VALUE;
+ }
+ }
+ result = result * 10 + digit;
+ } else {
+ // 中途出现了别的字符,报错处理
+ break;
+ }
+ }
+ if (positive) {
+ return result;
+ } else {
+ return -result;
+ }
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/P9_PalindromeNumber.java b/src/main/java/com/mmmwhy/leetcode/editor/en/P9_PalindromeNumber.java
new file mode 100644
index 00000000..2cd2ee7b
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/P9_PalindromeNumber.java
@@ -0,0 +1,80 @@
+// Given an integer x, return true if x is palindrome integer.
+//
+// An integer is a palindrome when it reads the same backward as forward.
+//
+//
+// For example, 121 is a palindrome while 123 is not.
+//
+//
+//
+// Example 1:
+//
+//
+// Input: x = 121
+// Output: true
+// Explanation: 121 reads as 121 from left to right and from right to left.
+//
+//
+// Example 2:
+//
+//
+// Input: x = -121
+// Output: false
+// Explanation: From left to right, it reads -121. From right to left, it
+// becomes 121-. Therefore it is not a palindrome.
+//
+//
+// Example 3:
+//
+//
+// Input: x = 10
+// Output: false
+// Explanation: Reads 01 from right to left. Therefore it is not a palindrome.
+//
+//
+//
+// Constraints:
+//
+//
+// -2³¹ <= x <= 2³¹ - 1
+//
+//
+//
+// Follow up: Could you solve it without converting the integer to a string?
+// Related Topics Math 👍 5215 👎 2041
+
+package com.mmmwhy.leetcode.editor.en;
+
+public class P9_PalindromeNumber {
+ public static void main(String[] args) {
+ Solution solution = new P9_PalindromeNumber().new Solution();
+ System.out.println(solution.isPalindrome(0));
+ System.out.println(solution.isPalindrome(-0));
+ System.out.println(solution.isPalindrome(123));
+ System.out.println(solution.isPalindrome(121));
+ System.out.println(solution.isPalindrome(-121));
+ System.out.println(solution.isPalindrome(-10));
+ }
+
+ // leetcode submit region begin(Prohibit modification and deletion)
+ class Solution {
+ public boolean isPalindrome(int x) {
+ if (x < 0) {
+ return false;
+ }
+ String xStr = String.valueOf(x);
+ int left = 0;
+ int right = xStr.length() - 1;
+ while (left < right) {
+ if (xStr.charAt(left) != xStr.charAt(right)) {
+ return false;
+ }
+ left++;
+ right--;
+ }
+ return true;
+ }
+ }
+ // leetcode submit region end(Prohibit modification and deletion)
+
+}
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P10_RegularExpressionMatching.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P10_RegularExpressionMatching.md
new file mode 100644
index 00000000..7fa0d741
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P10_RegularExpressionMatching.md
@@ -0,0 +1,45 @@
+Given an input string s and a pattern p, implement regular expression matching with support for '.' and '*' where:
+
+
+ '.' Matches any single character.
+ '*' Matches zero or more of the preceding element.
+
+
+The matching should cover the entire input string (not partial).
+
+
+Example 1:
+
+
+Input: s = "aa", p = "a"
+Output: false
+Explanation: "a" does not match the entire string "aa".
+
+
+Example 2:
+
+
+Input: s = "aa", p = "a*"
+Output: true
+Explanation: '*' means zero or more of the preceding element, 'a'. Therefore, by repeating 'a' once, it becomes "aa".
+
+
+Example 3:
+
+
+Input: s = "ab", p = ".*"
+Output: true
+Explanation: ".*" means "zero or more (*) of any character (.)".
+
+
+
+Constraints:
+
+
+ 1 <= s.length <= 20
+ 1 <= p.length <= 30
+ s contains only lowercase English letters.
+ p contains only lowercase English letters, '.', and '*'.
+ - It is guaranteed for each appearance of the character
'*', there will be a previous valid character to match.
+
+Related Topics
StringDynamic ProgrammingRecursion
👍 7608👎 1096
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P11_ContainerWithMostWater.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P11_ContainerWithMostWater.md
new file mode 100644
index 00000000..c2d065b5
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P11_ContainerWithMostWater.md
@@ -0,0 +1,33 @@
+You are given an integer array height of length n. There are n vertical lines drawn such that the two endpoints of the ith line are (i, 0) and (i, height[i]).
+
+Find two lines that together with the x-axis form a container, such that the container contains the most water.
+
+Return the maximum amount of water a container can store.
+
+Notice that you may not slant the container.
+
+
+Example 1:
+
+
+Input: height = [1,8,6,2,5,4,8,3,7]
+Output: 49
+Explanation: The above vertical lines are represented by array [1,8,6,2,5,4,8,3,7]. In this case, the max area of water (blue section) the container can contain is 49.
+
+
+Example 2:
+
+
+Input: height = [1,1]
+Output: 1
+
+
+
+Constraints:
+
+
+ n == height.length
+ 2 <= n <= 105
+ 0 <= height[i] <= 104
+
+Related Topics
ArrayTwo PointersGreedy
👍 14656👎 878
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P12_IntegerToRoman.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P12_IntegerToRoman.md
new file mode 100644
index 00000000..9f674c0c
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P12_IntegerToRoman.md
@@ -0,0 +1,56 @@
+Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M.
+
+
+Symbol Value
+I 1
+V 5
+X 10
+L 50
+C 100
+D 500
+M 1000
+
+For example, 2 is written as II in Roman numeral, just two one's added together. 12 is written as XII, which is simply X + II. The number 27 is written as XXVII, which is XX + V + II.
+
+Roman numerals are usually written largest to smallest from left to right. However, the numeral for four is not IIII. Instead, the number four is written as IV. Because the one is before the five we subtract it making four. The same principle applies to the number nine, which is written as IX. There are six instances where subtraction is used:
+
+
+ I can be placed before V (5) and X (10) to make 4 and 9.
+ X can be placed before L (50) and C (100) to make 40 and 90.
+ C can be placed before D (500) and M (1000) to make 400 and 900.
+
+
+Given an integer, convert it to a roman numeral.
+
+
+Example 1:
+
+
+Input: num = 3
+Output: "III"
+Explanation: 3 is represented as 3 ones.
+
+
+Example 2:
+
+
+Input: num = 58
+Output: "LVIII"
+Explanation: L = 50, V = 5, III = 3.
+
+
+Example 3:
+
+
+Input: num = 1994
+Output: "MCMXCIV"
+Explanation: M = 1000, CM = 900, XC = 90 and IV = 4.
+
+
+
+Constraints:
+
+
+Related Topics
Hash TableMathString
👍 2850👎 3841
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P13_RomanToInteger.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P13_RomanToInteger.md
new file mode 100644
index 00000000..0a9829bd
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P13_RomanToInteger.md
@@ -0,0 +1,58 @@
+Roman numerals are represented by seven different symbols: I, V, X, L, C, D and M.
+
+
+Symbol Value
+I 1
+V 5
+X 10
+L 50
+C 100
+D 500
+M 1000
+
+For example, 2 is written as II in Roman numeral, just two one's added together. 12 is written as XII, which is simply X + II. The number 27 is written as XXVII, which is XX + V + II.
+
+Roman numerals are usually written largest to smallest from left to right. However, the numeral for four is not IIII. Instead, the number four is written as IV. Because the one is before the five we subtract it making four. The same principle applies to the number nine, which is written as IX. There are six instances where subtraction is used:
+
+
+ I can be placed before V (5) and X (10) to make 4 and 9.
+ X can be placed before L (50) and C (100) to make 40 and 90.
+ C can be placed before D (500) and M (1000) to make 400 and 900.
+
+
+Given a roman numeral, convert it to an integer.
+
+
+Example 1:
+
+
+Input: s = "III"
+Output: 3
+Explanation: III = 3.
+
+
+Example 2:
+
+
+Input: s = "LVIII"
+Output: 58
+Explanation: L = 50, V= 5, III = 3.
+
+
+Example 3:
+
+
+Input: s = "MCMXCIV"
+Output: 1994
+Explanation: M = 1000, CM = 900, XC = 90 and IV = 4.
+
+
+
+Constraints:
+
+
+ 1 <= s.length <= 15
+ s contains only the characters ('I', 'V', 'X', 'L', 'C', 'D', 'M').
+ - It is guaranteed that
s is a valid roman numeral in the range [1, 3999].
+
+Related Topics
Hash TableMathString
👍 3304👎 233
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P14_LongestCommonPrefix.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P14_LongestCommonPrefix.md
new file mode 100644
index 00000000..96c405de
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P14_LongestCommonPrefix.md
@@ -0,0 +1,29 @@
+Write a function to find the longest common prefix string amongst an array of strings.
+
+If there is no common prefix, return an empty string "".
+
+
+Example 1:
+
+
+Input: strs = ["flower","flow","flight"]
+Output: "fl"
+
+
+Example 2:
+
+
+Input: strs = ["dog","racecar","car"]
+Output: ""
+Explanation: There is no common prefix among the input strings.
+
+
+
+Constraints:
+
+
+ 1 <= strs.length <= 200
+ 0 <= strs[i].length <= 200
+ strs[i] consists of only lower-case English letters.
+
+
👍 7154👎 2843
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P15_ThreeSum.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P15_ThreeSum.md
new file mode 100644
index 00000000..7b00cd77
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P15_ThreeSum.md
@@ -0,0 +1,23 @@
+Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0.
+
+Notice that the solution set must not contain duplicate triplets.
+
+
+Example 1:
+Input: nums = [-1,0,1,2,-1,-4]
+Output: [[-1,-1,2],[-1,0,1]]
+
Example 2:
+Input: nums = []
+Output: []
+
Example 3:
+Input: nums = [0]
+Output: []
+
+
+Constraints:
+
+
+ 0 <= nums.length <= 3000
+ -105 <= nums[i] <= 105
+
+Related Topics
ArrayTwo PointersSorting
👍 16384👎 1569
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P16_ThreeSumClosest.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P16_ThreeSumClosest.md
new file mode 100644
index 00000000..edb8e469
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P16_ThreeSumClosest.md
@@ -0,0 +1,31 @@
+Given an integer array nums of length n and an integer target, find three integers in nums such that the sum is closest to target.
+
+Return the sum of the three integers.
+
+You may assume that each input would have exactly one solution.
+
+
+Example 1:
+
+
+Input: nums = [-1,2,1,-4], target = 1
+Output: 2
+Explanation: The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).
+
+
+Example 2:
+
+
+Input: nums = [0,0,0], target = 1
+Output: 0
+
+
+
+Constraints:
+
+
+ 3 <= nums.length <= 1000
+ -1000 <= nums[i] <= 1000
+ -104 <= target <= 104
+
+Related Topics
ArrayTwo PointersSorting
👍 5370👎 234
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P17_LetterCombinationsOfAPhoneNumber.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P17_LetterCombinationsOfAPhoneNumber.md
new file mode 100644
index 00000000..c47a1b05
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P17_LetterCombinationsOfAPhoneNumber.md
@@ -0,0 +1,36 @@
+Given a string containing digits from 2-9 inclusive, return all possible letter combinations that the number could represent. Return the answer in any order.
+
+A mapping of digit to letters (just like on the telephone buttons) is given below. Note that 1 does not map to any letters.
+
+
+
+
+Example 1:
+
+
+Input: digits = "23"
+Output: ["ad","ae","af","bd","be","bf","cd","ce","cf"]
+
+
+Example 2:
+
+
+Input: digits = ""
+Output: []
+
+
+Example 3:
+
+
+Input: digits = "2"
+Output: ["a","b","c"]
+
+
+
+Constraints:
+
+
+ 0 <= digits.length <= 4
+ digits[i] is a digit in the range ['2', '9'].
+
+Related Topics
Hash TableStringBacktracking
👍 9187👎 640
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P18_FourSum.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P18_FourSum.md
new file mode 100644
index 00000000..e5b2143f
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P18_FourSum.md
@@ -0,0 +1,34 @@
+Given an array nums of n integers, return an array of all the unique quadruplets [nums[a], nums[b], nums[c], nums[d]] such that:
+
+
+ 0 <= a, b, c, d < n
+ a, b, c, and d are distinct.
+ nums[a] + nums[b] + nums[c] + nums[d] == target
+
+
+You may return the answer in any order.
+
+
+Example 1:
+
+
+Input: nums = [1,0,-1,0,-2,2], target = 0
+Output: [[-2,-1,1,2],[-2,0,0,2],[-1,0,0,1]]
+
+
+Example 2:
+
+
+Input: nums = [2,2,2,2,2], target = 8
+Output: [[2,2,2,2]]
+
+
+
+Constraints:
+
+
+ 1 <= nums.length <= 200
+ -109 <= nums[i] <= 109
+ -109 <= target <= 109
+
+Related Topics
ArrayTwo PointersSorting
👍 5726👎 653
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P19_RemoveNthNodeFromEndOfList.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P19_RemoveNthNodeFromEndOfList.md
new file mode 100644
index 00000000..e5418fc2
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P19_RemoveNthNodeFromEndOfList.md
@@ -0,0 +1,37 @@
+Given the head of a linked list, remove the nth node from the end of the list and return its head.
+
+
+Example 1:
+
+
+Input: head = [1,2,3,4,5], n = 2
+Output: [1,2,3,5]
+
+
+Example 2:
+
+
+Input: head = [1], n = 1
+Output: []
+
+
+Example 3:
+
+
+Input: head = [1,2], n = 1
+Output: [1]
+
+
+
+Constraints:
+
+
+ - The number of nodes in the list is
sz.
+ 1 <= sz <= 30
+ 0 <= Node.val <= 100
+ 1 <= n <= sz
+
+
+
+Follow up: Could you do this in one pass?
+Related Topics
Linked ListTwo Pointers
👍 9105👎 431
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P1_TwoSum.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P1_TwoSum.md
new file mode 100644
index 00000000..5be01306
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P1_TwoSum.md
@@ -0,0 +1,41 @@
+Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.
+
+You may assume that each input would have exactly one solution, and you may not use the same element twice.
+
+You can return the answer in any order.
+
+
+Example 1:
+
+
+Input: nums = [2,7,11,15], target = 9
+Output: [0,1]
+Explanation: Because nums[0] + nums[1] == 9, we return [0, 1].
+
+
+Example 2:
+
+
+Input: nums = [3,2,4], target = 6
+Output: [1,2]
+
+
+Example 3:
+
+
+Input: nums = [3,3], target = 6
+Output: [0,1]
+
+
+
+Constraints:
+
+
+ 2 <= nums.length <= 104
+ -109 <= nums[i] <= 109
+ -109 <= target <= 109
+ - Only one valid answer exists.
+
+
+
+Follow-up: Can you come up with an algorithm that is less than O(n2) time complexity?Related Topics
ArrayHash Table
👍 29437👎 935
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P20_ValidParentheses.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P20_ValidParentheses.md
new file mode 100644
index 00000000..dce795ca
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P20_ValidParentheses.md
@@ -0,0 +1,39 @@
+Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
+
+An input string is valid if:
+
+
+ - Open brackets must be closed by the same type of brackets.
+ - Open brackets must be closed in the correct order.
+
+
+
+Example 1:
+
+
+Input: s = "()"
+Output: true
+
+
+Example 2:
+
+
+Input: s = "()[]{}"
+Output: true
+
+
+Example 3:
+
+
+Input: s = "(]"
+Output: false
+
+
+
+Constraints:
+
+
+ 1 <= s.length <= 104
+ s consists of parentheses only '()[]{}'.
+
+Related Topics
StringStack
👍 11826👎 517
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P21_MergeTwoSortedLists.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P21_MergeTwoSortedLists.md
new file mode 100644
index 00000000..7e8599de
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P21_MergeTwoSortedLists.md
@@ -0,0 +1,37 @@
+You are given the heads of two sorted linked lists list1 and list2.
+
+Merge the two lists in a one sorted list. The list should be made by splicing together the nodes of the first two lists.
+
+Return the head of the merged linked list.
+
+
+Example 1:
+
+
+Input: list1 = [1,2,4], list2 = [1,3,4]
+Output: [1,1,2,3,4,4]
+
+
+Example 2:
+
+
+Input: list1 = [], list2 = []
+Output: []
+
+
+Example 3:
+
+
+Input: list1 = [], list2 = [0]
+Output: [0]
+
+
+
+Constraints:
+
+
+ - The number of nodes in both lists is in the range
[0, 50].
+ -100 <= Node.val <= 100
+ - Both
list1 and list2 are sorted in non-decreasing order.
+
+Related Topics
Linked ListRecursion
👍 11344👎 1020
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P22_GenerateParentheses.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P22_GenerateParentheses.md
new file mode 100644
index 00000000..01d312b8
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P22_GenerateParentheses.md
@@ -0,0 +1,17 @@
+Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.
+
+
+Example 1:
+Input: n = 3
+Output: ["((()))","(()())","(())()","()(())","()()()"]
+
Example 2:
+Input: n = 1
+Output: ["()"]
+
+
+Constraints:
+
+
+Related Topics
StringDynamic ProgrammingBacktracking
👍 12091👎 471
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P23_MergeKSortedLists.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P23_MergeKSortedLists.md
new file mode 100644
index 00000000..8a0ecc8b
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P23_MergeKSortedLists.md
@@ -0,0 +1,46 @@
+You are given an array of k linked-lists lists, each linked-list is sorted in ascending order.
+
+Merge all the linked-lists into one sorted linked-list and return it.
+
+
+Example 1:
+
+
+Input: lists = [[1,4,5],[1,3,4],[2,6]]
+Output: [1,1,2,3,4,4,5,6]
+Explanation: The linked-lists are:
+[
+ 1->4->5,
+ 1->3->4,
+ 2->6
+]
+merging them into one sorted list:
+1->1->2->3->4->4->5->6
+
+
+Example 2:
+
+
+Input: lists = []
+Output: []
+
+
+Example 3:
+
+
+Input: lists = [[]]
+Output: []
+
+
+
+Constraints:
+
+
+ k == lists.length
+ 0 <= k <= 104
+ 0 <= lists[i].length <= 500
+ -104 <= lists[i][j] <= 104
+ lists[i] is sorted in ascending order.
+ - The sum of
lists[i].length will not exceed 104.
+
+Related Topics
Linked ListDivide and ConquerHeap (Priority Queue)Merge Sort
👍 11526👎 457
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P24_SwapNodesInPairs.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P24_SwapNodesInPairs.md
new file mode 100644
index 00000000..d3be7f22
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P24_SwapNodesInPairs.md
@@ -0,0 +1,32 @@
+Given a linked list, swap every two adjacent nodes and return its head. You must solve the problem without modifying the values in the list's nodes (i.e., only nodes themselves may be changed.)
+
+
+Example 1:
+
+
+Input: head = [1,2,3,4]
+Output: [2,1,4,3]
+
+
+Example 2:
+
+
+Input: head = []
+Output: []
+
+
+Example 3:
+
+
+Input: head = [1]
+Output: [1]
+
+
+
+Constraints:
+
+
+ - The number of nodes in the list is in the range
[0, 100].
+ 0 <= Node.val <= 100
+
+Related Topics
Linked ListRecursion
👍 6569👎 283
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P25_ReverseNodesInKGroup.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P25_ReverseNodesInKGroup.md
new file mode 100644
index 00000000..5d3c63a8
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P25_ReverseNodesInKGroup.md
@@ -0,0 +1,33 @@
+Given the head of a linked list, reverse the nodes of the list k at a time, and return the modified list.
+
+k is a positive integer and is less than or equal to the length of the linked list. If the number of nodes is not a multiple of k then left-out nodes, in the end, should remain as it is.
+
+You may not alter the values in the list's nodes, only nodes themselves may be changed.
+
+
+Example 1:
+
+
+Input: head = [1,2,3,4,5], k = 2
+Output: [2,1,4,3,5]
+
+
+Example 2:
+
+
+Input: head = [1,2,3,4,5], k = 3
+Output: [3,2,1,4,5]
+
+
+
+Constraints:
+
+
+ - The number of nodes in the list is
n.
+ 1 <= k <= n <= 5000
+ 0 <= Node.val <= 1000
+
+
+
+Follow-up: Can you solve the problem in O(1) extra memory space?
+Related Topics
Linked ListRecursion
👍 6595👎 476
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P26_RemoveDuplicatesFromSortedArray.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P26_RemoveDuplicatesFromSortedArray.md
new file mode 100644
index 00000000..e712590d
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P26_RemoveDuplicatesFromSortedArray.md
@@ -0,0 +1,54 @@
+Given an integer array nums sorted in non-decreasing order, remove the duplicates in-place such that each unique element appears only once. The relative order of the elements should be kept the same.
+
+Since it is impossible to change the length of the array in some languages, you must instead have the result be placed in the first part of the array nums. More formally, if there are k elements after removing the duplicates, then the first k elements of nums should hold the final result. It does not matter what you leave beyond the first k elements.
+
+Return k after placing the final result in the first k slots of nums.
+
+Do not allocate extra space for another array. You must do this by modifying the input array in-place with O(1) extra memory.
+
+Custom Judge:
+
+The judge will test your solution with the following code:
+
+
+int[] nums = [...]; // Input array
+int[] expectedNums = [...]; // The expected answer with correct length
+
+int k = removeDuplicates(nums); // Calls your implementation
+
+assert k == expectedNums.length;
+for (int i = 0; i < k; i++) {
+ assert nums[i] == expectedNums[i];
+}
+
+
+If all assertions pass, then your solution will be accepted.
+
+
+Example 1:
+
+
+Input: nums = [1,1,2]
+Output: 2, nums = [1,2,_]
+Explanation: Your function should return k = 2, with the first two elements of nums being 1 and 2 respectively.
+It does not matter what you leave beyond the returned k (hence they are underscores).
+
+
+Example 2:
+
+
+Input: nums = [0,0,1,1,1,2,2,3,3,4]
+Output: 5, nums = [0,1,2,3,4,_,_,_,_,_]
+Explanation: Your function should return k = 5, with the first five elements of nums being 0, 1, 2, 3, and 4 respectively.
+It does not matter what you leave beyond the returned k (hence they are underscores).
+
+
+
+Constraints:
+
+
+ 1 <= nums.length <= 3 * 104
+ -100 <= nums[i] <= 100
+ nums is sorted in non-decreasing order.
+
+Related Topics
ArrayTwo Pointers
👍 6153👎 9648
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P27_RemoveElement.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P27_RemoveElement.md
new file mode 100644
index 00000000..52becda0
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P27_RemoveElement.md
@@ -0,0 +1,58 @@
+Given an integer array nums and an integer val, remove all occurrences of val in nums in-place. The relative order of the elements may be changed.
+
+Since it is impossible to change the length of the array in some languages, you must instead have the result be placed in the first part of the array nums. More formally, if there are k elements after removing the duplicates, then the first k elements of nums should hold the final result. It does not matter what you leave beyond the first k elements.
+
+Return k after placing the final result in the first k slots of nums.
+
+Do not allocate extra space for another array. You must do this by modifying the input array in-place with O(1) extra memory.
+
+Custom Judge:
+
+The judge will test your solution with the following code:
+
+
+int[] nums = [...]; // Input array
+int val = ...; // Value to remove
+int[] expectedNums = [...]; // The expected answer with correct length.
+ // It is sorted with no values equaling val.
+
+int k = removeElement(nums, val); // Calls your implementation
+
+assert k == expectedNums.length;
+sort(nums, 0, k); // Sort the first k elements of nums
+for (int i = 0; i < actualLength; i++) {
+ assert nums[i] == expectedNums[i];
+}
+
+
+If all assertions pass, then your solution will be accepted.
+
+
+Example 1:
+
+
+Input: nums = [3,2,2,3], val = 3
+Output: 2, nums = [2,2,_,_]
+Explanation: Your function should return k = 2, with the first two elements of nums being 2.
+It does not matter what you leave beyond the returned k (hence they are underscores).
+
+
+Example 2:
+
+
+Input: nums = [0,1,2,2,3,0,4,2], val = 2
+Output: 5, nums = [0,1,4,0,3,_,_,_]
+Explanation: Your function should return k = 5, with the first five elements of nums containing 0, 0, 1, 3, and 4.
+Note that the five elements can be returned in any order.
+It does not matter what you leave beyond the returned k (hence they are underscores).
+
+
+
+Constraints:
+
+
+ 0 <= nums.length <= 100
+ 0 <= nums[i] <= 50
+ 0 <= val <= 100
+
+Related Topics
ArrayTwo Pointers
👍 3328👎 5009
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P28_ImplementStrstr.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P28_ImplementStrstr.md
new file mode 100644
index 00000000..5611ebba
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P28_ImplementStrstr.md
@@ -0,0 +1,29 @@
+Implement strStr().
+
+Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
+
+Clarification:
+
+What should we return when needle is an empty string? This is a great question to ask during an interview.
+
+For the purpose of this problem, we will return 0 when needle is an empty string. This is consistent to C's strstr() and Java's indexOf().
+
+
+Example 1:
+Input: haystack = "hello", needle = "ll"
+Output: 2
+
Example 2:
+Input: haystack = "aaaaa", needle = "bba"
+Output: -1
+
Example 3:
+Input: haystack = "", needle = ""
+Output: 0
+
+
+Constraints:
+
+
+ 0 <= haystack.length, needle.length <= 5 * 104
+ haystack and needle consist of only lower-case English characters.
+
+Related Topics
Two PointersStringString Matching
👍 3724👎 3510
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P29_DivideTwoIntegers.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P29_DivideTwoIntegers.md
new file mode 100644
index 00000000..8120e400
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P29_DivideTwoIntegers.md
@@ -0,0 +1,33 @@
+Given two integers dividend and divisor, divide two integers without using multiplication, division, and mod operator.
+
+The integer division should truncate toward zero, which means losing its fractional part. For example, 8.345 would be truncated to 8, and -2.7335 would be truncated to -2.
+
+Return the quotient after dividing dividend by divisor.
+
+Note: Assume we are dealing with an environment that could only store integers within the 32-bit signed integer range: [−231, 231 − 1]. For this problem, if the quotient is strictly greater than 231 - 1, then return 231 - 1, and if the quotient is strictly less than -231, then return -231.
+
+
+Example 1:
+
+
+Input: dividend = 10, divisor = 3
+Output: 3
+Explanation: 10/3 = 3.33333.. which is truncated to 3.
+
+
+Example 2:
+
+
+Input: dividend = 7, divisor = -3
+Output: -2
+Explanation: 7/-3 = -2.33333.. which is truncated to -2.
+
+
+
+Constraints:
+
+
+ -231 <= dividend, divisor <= 231 - 1
+ divisor != 0
+
+Related Topics
MathBit Manipulation
👍 2601👎 9155
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P2_AddTwoNumbers.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P2_AddTwoNumbers.md
new file mode 100644
index 00000000..4dcac686
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P2_AddTwoNumbers.md
@@ -0,0 +1,36 @@
+You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order, and each of their nodes contains a single digit. Add the two numbers and return the sum as a linked list.
+
+You may assume the two numbers do not contain any leading zero, except the number 0 itself.
+
+
+Example 1:
+
+
+Input: l1 = [2,4,3], l2 = [5,6,4]
+Output: [7,0,8]
+Explanation: 342 + 465 = 807.
+
+
+Example 2:
+
+
+Input: l1 = [0], l2 = [0]
+Output: [0]
+
+
+Example 3:
+
+
+Input: l1 = [9,9,9,9,9,9,9], l2 = [9,9,9,9]
+Output: [8,9,9,9,0,0,0,1]
+
+
+
+Constraints:
+
+
+ - The number of nodes in each linked list is in the range
[1, 100].
+ 0 <= Node.val <= 9
+ - It is guaranteed that the list represents a number that does not have leading zeros.
+
+Related Topics
Linked ListMathRecursion
👍 16503👎 3519
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P30_SubstringWithConcatenationOfAllWords.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P30_SubstringWithConcatenationOfAllWords.md
new file mode 100644
index 00000000..d226d7ef
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P30_SubstringWithConcatenationOfAllWords.md
@@ -0,0 +1,39 @@
+You are given a string s and an array of strings words of the same length. Return all starting indices of substring(s) in s that is a concatenation of each word in words exactly once, in any order, and without any intervening characters.
+
+You can return the answer in any order.
+
+
+Example 1:
+
+
+Input: s = "barfoothefoobarman", words = ["foo","bar"]
+Output: [0,9]
+Explanation: Substrings starting at index 0 and 9 are "barfoo" and "foobar" respectively.
+The output order does not matter, returning [9,0] is fine too.
+
+
+Example 2:
+
+
+Input: s = "wordgoodgoodgoodbestword", words = ["word","good","best","word"]
+Output: []
+
+
+Example 3:
+
+
+Input: s = "barfoofoobarthefoobarman", words = ["bar","foo","the"]
+Output: [6,9,12]
+
+
+
+Constraints:
+
+
+ 1 <= s.length <= 104
+ s consists of lower-case English letters.
+ 1 <= words.length <= 5000
+ 1 <= words[i].length <= 30
+ words[i] consists of lower-case English letters.
+
+Related Topics
Hash TableStringSliding Window
👍 1842👎 1810
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P31_NextPermutation.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P31_NextPermutation.md
new file mode 100644
index 00000000..d8517eb5
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P31_NextPermutation.md
@@ -0,0 +1,48 @@
+A permutation of an array of integers is an arrangement of its members into a sequence or linear order.
+
+
+ - For example, for
arr = [1,2,3], the following are considered permutations of arr: [1,2,3], [1,3,2], [3,1,2], [2,3,1].
+
+
+The next permutation of an array of integers is the next lexicographically greater permutation of its integer. More formally, if all the permutations of the array are sorted in one container according to their lexicographical order, then the next permutation of that array is the permutation that follows it in the sorted container. If such arrangement is not possible, the array must be rearranged as the lowest possible order (i.e., sorted in ascending order).
+
+
+ - For example, the next permutation of
arr = [1,2,3] is [1,3,2].
+ - Similarly, the next permutation of
arr = [2,3,1] is [3,1,2].
+ - While the next permutation of
arr = [3,2,1] is [1,2,3] because [3,2,1] does not have a lexicographical larger rearrangement.
+
+
+Given an array of integers nums, find the next permutation of nums.
+
+The replacement must be in place and use only constant extra memory.
+
+
+Example 1:
+
+
+Input: nums = [1,2,3]
+Output: [1,3,2]
+
+
+Example 2:
+
+
+Input: nums = [3,2,1]
+Output: [1,2,3]
+
+
+Example 3:
+
+
+Input: nums = [1,1,5]
+Output: [1,5,1]
+
+
+
+Constraints:
+
+
+ 1 <= nums.length <= 100
+ 0 <= nums[i] <= 100
+
+Related Topics
ArrayTwo Pointers
👍 10591👎 3413
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P32_LongestValidParentheses.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P32_LongestValidParentheses.md
new file mode 100644
index 00000000..719b2b4c
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P32_LongestValidParentheses.md
@@ -0,0 +1,34 @@
+Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring.
+
+
+Example 1:
+
+
+Input: s = "(()"
+Output: 2
+Explanation: The longest valid parentheses substring is "()".
+
+
+Example 2:
+
+
+Input: s = ")()())"
+Output: 4
+Explanation: The longest valid parentheses substring is "()()".
+
+
+Example 3:
+
+
+Input: s = ""
+Output: 0
+
+
+
+Constraints:
+
+
+ 0 <= s.length <= 3 * 104
+ s[i] is '(', or ')'.
+
+Related Topics
StringDynamic ProgrammingStack
👍 7665👎 264
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P34_FindFirstAndLastPositionOfElementInSortedArray.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P34_FindFirstAndLastPositionOfElementInSortedArray.md
new file mode 100644
index 00000000..64425007
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P34_FindFirstAndLastPositionOfElementInSortedArray.md
@@ -0,0 +1,30 @@
+Given an array of integers nums sorted in non-decreasing order, find the starting and ending position of a given target value.
+
+If target is not found in the array, return [-1, -1].
+
+You must write an algorithm with O(log n) runtime complexity.
+
+
+Example 1:
+Input: nums = [5,7,7,8,8,10], target = 8
+Output: [3,4]
+
+Example 2:
+Input: nums = [5,7,7,8,8,10], target = 6
+Output: [-1,-1]
+
+Example 3:
+Input: nums = [], target = 0
+Output: [-1,-1]
+
+
+Constraints:
+
+
+ 0 <= nums.length <= 105
+ -109 <= nums[i] <= 109
+ nums is a non-decreasing array.
+ -109 <= target <= 109
+
+
+Related Topics
ArrayBinary Search
👍 14181👎 347
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P3_LongestSubstringWithoutRepeatingCharacters.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P3_LongestSubstringWithoutRepeatingCharacters.md
new file mode 100644
index 00000000..203b3936
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P3_LongestSubstringWithoutRepeatingCharacters.md
@@ -0,0 +1,36 @@
+Given a string s, find the length of the longest substring without repeating characters.
+
+
+Example 1:
+
+
+Input: s = "abcabcbb"
+Output: 3
+Explanation: The answer is "abc", with the length of 3.
+
+
+Example 2:
+
+
+Input: s = "bbbbb"
+Output: 1
+Explanation: The answer is "b", with the length of 1.
+
+
+Example 3:
+
+
+Input: s = "pwwkew"
+Output: 3
+Explanation: The answer is "wke", with the length of 3.
+Notice that the answer must be a substring, "pwke" is a subsequence and not a substring.
+
+
+
+Constraints:
+
+
+ 0 <= s.length <= 5 * 104
+ s consists of English letters, digits, symbols and spaces.
+
+Related Topics
Hash TableStringSliding Window
👍 21503👎 962
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P4_MedianOfTwoSortedArrays.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P4_MedianOfTwoSortedArrays.md
new file mode 100644
index 00000000..da24020a
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P4_MedianOfTwoSortedArrays.md
@@ -0,0 +1,33 @@
+Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays.
+
+The overall run time complexity should be O(log (m+n)).
+
+
+Example 1:
+
+
+Input: nums1 = [1,3], nums2 = [2]
+Output: 2.00000
+Explanation: merged array = [1,2,3] and median is 2.
+
+
+Example 2:
+
+
+Input: nums1 = [1,2], nums2 = [3,4]
+Output: 2.50000
+Explanation: merged array = [1,2,3,4] and median is (2 + 3) / 2 = 2.5.
+
+
+
+Constraints:
+
+
+ nums1.length == m
+ nums2.length == n
+ 0 <= m <= 1000
+ 0 <= n <= 1000
+ 1 <= m + n <= 2000
+ -106 <= nums1[i], nums2[i] <= 106
+
+Related Topics
ArrayBinary SearchDivide and Conquer
👍 15005👎 1886
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P5_LongestPalindromicSubstring.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P5_LongestPalindromicSubstring.md
new file mode 100644
index 00000000..cec0dade
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P5_LongestPalindromicSubstring.md
@@ -0,0 +1,26 @@
+Given a string s, return the longest palindromic substring in s.
+
+
+Example 1:
+
+
+Input: s = "babad"
+Output: "bab"
+Explanation: "aba" is also a valid answer.
+
+
+Example 2:
+
+
+Input: s = "cbbd"
+Output: "bb"
+
+
+
+Constraints:
+
+
+ 1 <= s.length <= 1000
+ s consist of only digits and English letters.
+
+Related Topics
StringDynamic Programming
👍 16064👎 949
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P6_ZigzagConversion.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P6_ZigzagConversion.md
new file mode 100644
index 00000000..8fccb5c9
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P6_ZigzagConversion.md
@@ -0,0 +1,52 @@
+The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font for better legibility)
+
+
+P A H N
+A P L S I I G
+Y I R
+
+
+And then read line by line: "PAHNAPLSIIGYIR"
+
+Write the code that will take a string and make this conversion given a number of rows:
+
+
+string convert(string s, int numRows);
+
+
+
+Example 1:
+
+
+Input: s = "PAYPALISHIRING", numRows = 3
+Output: "PAHNAPLSIIGYIR"
+
+
+Example 2:
+
+
+Input: s = "PAYPALISHIRING", numRows = 4
+Output: "PINALSIGYAHRPI"
+Explanation:
+P I N
+A L S I G
+Y A H R
+P I
+
+
+Example 3:
+
+
+Input: s = "A", numRows = 1
+Output: "A"
+
+
+
+Constraints:
+
+
+ 1 <= s.length <= 1000
+ s consists of English letters (lower-case and upper-case), ',' and '.'.
+ 1 <= numRows <= 1000
+
+
👍 3371👎 7826
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P7_ReverseInteger.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P7_ReverseInteger.md
new file mode 100644
index 00000000..4f763c02
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P7_ReverseInteger.md
@@ -0,0 +1,33 @@
+Given a signed 32-bit integer x, return x with its digits reversed. If reversing x causes the value to go outside the signed 32-bit integer range [-231, 231 - 1], then return 0.
+
+Assume the environment does not allow you to store 64-bit integers (signed or unsigned).
+
+
+Example 1:
+
+
+Input: x = 123
+Output: 321
+
+
+Example 2:
+
+
+Input: x = -123
+Output: -321
+
+
+Example 3:
+
+
+Input: x = 120
+Output: 21
+
+
+
+Constraints:
+
+
+
👍 6630👎 9320
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P8_StringToIntegerAtoi.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P8_StringToIntegerAtoi.md
new file mode 100644
index 00000000..984ea3b7
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P8_StringToIntegerAtoi.md
@@ -0,0 +1,77 @@
+Implement the myAtoi(string s) function, which converts a string to a 32-bit signed integer (similar to C/C++'s atoi function).
+
+The algorithm for myAtoi(string s) is as follows:
+
+
+ - Read in and ignore any leading whitespace.
+ - Check if the next character (if not already at the end of the string) is
'-' or '+'. Read this character in if it is either. This determines if the final result is negative or positive respectively. Assume the result is positive if neither is present.
+ - Read in next the characters until the next non-digit character or the end of the input is reached. The rest of the string is ignored.
+ - Convert these digits into an integer (i.e.
"123" -> 123, "0032" -> 32). If no digits were read, then the integer is 0. Change the sign as necessary (from step 2).
+ - If the integer is out of the 32-bit signed integer range
[-231, 231 - 1], then clamp the integer so that it remains in the range. Specifically, integers less than -231 should be clamped to -231, and integers greater than 231 - 1 should be clamped to 231 - 1.
+ - Return the integer as the final result.
+
+
+Note:
+
+
+ - Only the space character
' ' is considered a whitespace character.
+ - Do not ignore any characters other than the leading whitespace or the rest of the string after the digits.
+
+
+
+Example 1:
+
+
+Input: s = "42"
+Output: 42
+Explanation: The underlined characters are what is read in, the caret is the current reader position.
+Step 1: "42" (no characters read because there is no leading whitespace)
+ ^
+Step 2: "42" (no characters read because there is neither a '-' nor '+')
+ ^
+Step 3: "42" ("42" is read in)
+ ^
+The parsed integer is 42.
+Since 42 is in the range [-231, 231 - 1], the final result is 42.
+
+
+Example 2:
+
+
+Input: s = " -42"
+Output: -42
+Explanation:
+Step 1: " -42" (leading whitespace is read and ignored)
+ ^
+Step 2: " -42" ('-' is read, so the result should be negative)
+ ^
+Step 3: " -42" ("42" is read in)
+ ^
+The parsed integer is -42.
+Since -42 is in the range [-231, 231 - 1], the final result is -42.
+
+
+Example 3:
+
+
+Input: s = "4193 with words"
+Output: 4193
+Explanation:
+Step 1: "4193 with words" (no characters read because there is no leading whitespace)
+ ^
+Step 2: "4193 with words" (no characters read because there is neither a '-' nor '+')
+ ^
+Step 3: "4193 with words" ("4193" is read in; reading stops because the next character is a non-digit)
+ ^
+The parsed integer is 4193.
+Since 4193 is in the range [-231, 231 - 1], the final result is 4193.
+
+
+
+Constraints:
+
+
+ 0 <= s.length <= 200
+ s consists of English letters (lower-case and upper-case), digits (0-9), ' ', '+', '-', and '.'.
+
+
👍 1397👎 3967
\ No newline at end of file
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P9_PalindromeNumber.md b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P9_PalindromeNumber.md
new file mode 100644
index 00000000..9fca4600
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/content/P9_PalindromeNumber.md
@@ -0,0 +1,42 @@
+Given an integer x, return true if x is palindrome integer.
+
+An integer is a palindrome when it reads the same backward as forward.
+
+
+ - For example,
121 is a palindrome while 123 is not.
+
+
+
+Example 1:
+
+
+Input: x = 121
+Output: true
+Explanation: 121 reads as 121 from left to right and from right to left.
+
+
+Example 2:
+
+
+Input: x = -121
+Output: false
+Explanation: From left to right, it reads -121. From right to left, it becomes 121-. Therefore it is not a palindrome.
+
+
+Example 3:
+
+
+Input: x = 10
+Output: false
+Explanation: Reads 01 from right to left. Therefore it is not a palindrome.
+
+
+
+Constraints:
+
+
+
+
+Follow up: Could you solve it without converting the integer to a string?
👍 5215👎 2041
\ No newline at end of file
diff --git "a/leetcode/editor/cn/doc/note/[215]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254K\344\270\252\346\234\200\345\244\247\345\205\203\347\264\240.md" b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/note/P34_FindFirstAndLastPositionOfElementInSortedArray.md
similarity index 100%
rename from "leetcode/editor/cn/doc/note/[215]\346\225\260\347\273\204\344\270\255\347\232\204\347\254\254K\344\270\252\346\234\200\345\244\247\345\205\203\347\264\240.md"
rename to src/main/java/com/mmmwhy/leetcode/editor/en/doc/note/P34_FindFirstAndLastPositionOfElementInSortedArray.md
diff --git a/src/main/java/com/mmmwhy/leetcode/editor/en/doc/solution/longest-valid-parentheses.lcv b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/solution/longest-valid-parentheses.lcv
new file mode 100644
index 00000000..b5d599bc
--- /dev/null
+++ b/src/main/java/com/mmmwhy/leetcode/editor/en/doc/solution/longest-valid-parentheses.lcv
@@ -0,0 +1,150 @@
+[TOC]
+
+## Summary
+
+We need to determine the length of the largest valid substring of parentheses from a given string.
+
+## Solution
+
+---
+
+#### Approach 1: Brute Force
+
+**Algorithm**
+
+In this approach, we consider every possible non-empty even length substring from the given string and check whether it's
+a valid string of parentheses or not. In order to check the validity, we use the Stack's Method.
+
+Every time we
+encounter a $\text{‘(’}$, we push it onto the stack. For every $\text{‘)’}$ encountered, we pop a $\text{‘(’}$ from the stack. If $\text{‘(’}$ isn't
+available on the stack for popping at anytime or if stack contains some elements after processing complete substring, the substring of parentheses is invalid. In this way, we repeat the
+process for every possible substring and we keep on
+storing the length of the longest valid string found so far.
+
+*
+
+```
+Example:
+"((())"
+
+(( --> invalid
+(( --> invalid
+() --> valid, length=2
+)) --> invalid
+((()--> invalid
+(())--> valid, length=4
+maxlength=4
+```
+
+
+
+**Complexity Analysis**
+
+* Time complexity: $O(n^3)$. Generating every possible substring from a string of length $n$ requires $O(n^2)$. Checking validity of a string of length $n$ requires $O(n)$.
+
+* Space complexity: $O(n)$. A stack of depth $n$ will be required for the longest substring.
+
+
+
---
+
+#### Approach 2: Using Dynamic Programming
+
+**Algorithm**
+
+This problem can be solved by using Dynamic Programming. We make use of a $\text{dp}$ array where $i$th element of $\text{dp}$ represents the length of the longest valid substring ending at $i$th index. We initialize the complete $\text{dp}$ array with 0's. Now, it's obvious that the valid substrings must end with $\text{‘)’}$. This further leads to the conclusion that the substrings ending with $\text{‘(’}$ will always contain '0' at their corresponding $\text{dp}$ indices. Thus, we update the $\text{dp}$ array only when $\text{‘)’}$ is encountered.
+
+To fill $\text{dp}$ array we will check every two consecutive characters of the string and if
+
+1. $\text{s}[i] = \text{‘)’}$ and $\text{s}[i - 1] = \text{‘(’}$, i.e. string looks like $``.......()" \Rightarrow$
+
+ $$
+ \text{dp}[i]=\text{dp}[i-2]+2
+ $$
+
+ We do so because the ending "()" portion is a valid substring anyhow and leads to an increment of 2 in the length of the just previous valid substring's length.
+
+2. $\text{s}[i] = \text{‘)’}$ and $\text{s}[i - 1] = \text{‘)’}$, i.e. string looks like $``.......))" \Rightarrow$
+
+ if $\text{s}[i - \text{dp}[i - 1] - 1] = \text{‘(’}$ then
+
+ $$
+ \text{dp}[i]=\text{dp}[i-1]+\text{dp}[i-\text{dp}[i-1]-2]+2
+ $$
+
+ The reason behind this is that if the 2nd last $\text{‘)’}$ was a part of a valid substring (say $sub_s$), for the last $\text{‘)’}$ to be a part of a larger substring, there must be a corresponding starting $\text{‘(’}$ which lies before the valid substring of which the 2nd last $\text{‘)’}$ is a part (i.e. before $sub_s$). Thus, if the character before $sub_s$ happens to be $\text{‘(’}$, we update the $\text{dp}[i]$ as an addition of $2$ in the length of $sub_s$ which is $\text{dp}[i-1]$. To this, we also add the length of the valid substring just before the term "(,sub_s,)" , i.e. $\text{dp}[i-\text{dp}[i-1]-2]$.
+
+For better understanding of this method, see this example:
+
+
+
+!?!../Documents/32_Longest_Valid2.json:1000,563!?!
+
+
+
+**Complexity Analysis**
+
+* Time complexity: $O(n)$. Single traversal of string to fill dp array is done.
+
+* Space complexity: $O(n)$. dp array of size $n$ is used.
+
+
+
+
+---
+
+#### Approach 3: Using Stack
+
+**Algorithm**
+
+Instead of finding every possible string and checking its validity, we can make use of a stack while scanning the given string to:
+
+1. Check if the string scanned so far is valid.
+2. Find the length of the longest valid string.
+
+In order to do so, we start by pushing $-1$ onto the stack. For every $\text{‘(’}$ encountered, we push its index onto the stack.
+
+For every $\text{‘)’}$ encountered, we pop the topmost element. Then, the length of the currently encountered valid string of parentheses will be the difference between the current element's index and the top element of the stack.
+
+If, while popping the element, the stack becomes empty, we will push the current element's index onto the stack. In this way, we can continue to calculate the length of the valid substrings and return the length of the longest valid string at the end.
+
+See this example for a better understanding.
+
+
+
+!?!../Documents/32_Longest_Valid_stack_new.json:1000,563!?!
+
+
+
+**Complexity Analysis**
+
+* Time complexity: $O(n)$. $n$ is the length of the given string.
+
+* Space complexity: $O(n)$. The size of stack can go up to $n$.
+
+
+
+
+---
+
+#### Approach 4: Without extra space
+
+**Algorithm**
+
+In this approach, we make use of two counters $left$ and $right$. First, we start traversing the string from the left towards the right and for every $\text{‘(’}$ encountered, we increment the $left$ counter and for every $\text{‘)’}$ encountered, we increment the $right$ counter. Whenever $left$ becomes equal to $right$, we calculate the length of the current valid string and keep track of maximum length substring found so far. If $right$ becomes greater than $left$ we reset $left$ and $right$ to $0$.
+
+Next, we start traversing the string from right to left and similar procedure is applied.
+
+Example of this approach:
+
+
+
+!?!../Documents/32_Longest_Validlr.json:1000,563!?!
+
+
+
+**Complexity Analysis**
+
+* Time complexity: $O(n)$. Two traversals of the string.
+
+* Space complexity: $O(1)$. Only two extra variables $left$ and $right$ are needed.
+